Last Updated: 2023-06-15

はじめに

データサイエンス?

データから情報を得るときには、大体次のような手順をとります。

  1. 準備 Setup
  2. データを取得 Import data
  3. データ構造の確認 View data
  4. 必要に応じて整形 Transform data
  5. 視覚化 Visualize data
  6. データを理解 Understand data
  7. レポートなどにまとめる Communicate data

問いをもちデータを取得し、視覚化などを通して、データを理解し、さらに問いを深めるサイクルが、データサイエンスの核だと思います。

R を使った分析の一つの例を、見て行きます。一つ一つのコード(コンピュータ・プログラム)の簡単な説明は、加えますが、あまりそれに捉われず、データサイエンスとは何かを考えながら、雰囲気を味わってください。

R のパッケージを活用

準備 Setup

世界銀行(World Bank)の、世界開発指標(WDI: World Development Indicators)の一つの、GDP(Gross Domestic Product 国内総生産)のデータから始めます。GDP にも何種類かの尺度がありますが、次のものを見てみます。

  • NY.GDP.MKTP.CD: GDP (current US$)

NY.GDP.MKTP.CD は、データコードと言われるもので、世界開発指標(WDI)には、一つづつ決まっています。

World Development Indicators のサイトの下にある、Data Themes(テーマ)からテーマを選択し、下にスクロールすると、Code をみることができます。ちなみに、ここで利用する NY.GDP.MKTP.CD: GDP (current US$) は、テーマの Economy(経済)の、一番上にあります。

経済用語の英語はよく知らないという方は、ブラウザー(Edge, Google Chrome, Safari など)の翻訳機能を使うのも良いでしょう。ただ、そのページの対話型の機能(interactive function)を利用するときは、翻訳機能をOFF にする必要がある場合もありますので、注意してください。

エラーメッセージを調べるときなどに、英語のほうが情報がたくさん得られますから、言語を、英語に変更しておきます。

R には、WDI のデータを取得する R のツール(パッケージ)WDI がありますから、それを使います。また、データを取り扱うための基本的なツール(パッケージ)tidyverse を使いますので、次のコードで、これらを読み込みます。

Sys.setenv(LANG = "en")
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.2     ✔ readr     2.1.4
## ✔ forcats   1.0.0     ✔ stringr   1.5.0
## ✔ ggplot2   3.4.2     ✔ tibble    3.2.1
## ✔ lubridate 1.9.2     ✔ tidyr     1.3.0
## ✔ purrr     1.0.1     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(WDI)

データを保存する場所を作成しておくことをお勧めします。保存しておくときは、このディレクトリを使います。

dir.create("./data")

データ取得 Import data

データを取得します。少し時間がかかります。取得したデータに、df_gdp などと、わかりやすい名前をつけます。dfdata frame の略で、R で標準的なデータの形式です。

df_gdp <- WDI(country = "all", 
              indicator = c(gdp = "NY.GDP.MKTP.CD"), 
              extra = TRUE)

このコードで、全ての国の GDP を取得できます。GDP の値は、NY.GDP.MKTP.CD という名前の列にありますが、覚えやすいように、gdp という名前に変更しておきます。extra = TRUE とすることによって、それぞれの国についての情報などが追加されます。

データ構造の確認

最初の数行だけを見るには、head(df_dgp) とします。

head(df_gdp)
##       country iso2c iso3c year        gdp status lastupdated     region capital
## 1 Afghanistan    AF   AFG 1963  751111191         2023-05-10 South Asia   Kabul
## 2 Afghanistan    AF   AFG 1962  546666678         2023-05-10 South Asia   Kabul
## 3 Afghanistan    AF   AFG 1961  548888896         2023-05-10 South Asia   Kabul
## 4 Afghanistan    AF   AFG 1960  537777811         2023-05-10 South Asia   Kabul
## 5 Afghanistan    AF   AFG 2003 4539500884         2023-05-10 South Asia   Kabul
## 6 Afghanistan    AF   AFG 2002 3854235264         2023-05-10 South Asia   Kabul
##   longitude latitude     income lending
## 1   69.1761  34.5228 Low income     IDA
## 2   69.1761  34.5228 Low income     IDA
## 3   69.1761  34.5228 Low income     IDA
## 4   69.1761  34.5228 Low income     IDA
## 5   69.1761  34.5228 Low income     IDA
## 6   69.1761  34.5228 Low income     IDA

データの構造を見るときには、str(df_gdp) もよく使われます。今度は、列が縦に並んで表示されます。

str(df_gdp)
## 'data.frame':    16758 obs. of  13 variables:
##  $ country    : chr  "Afghanistan" "Afghanistan" "Afghanistan" "Afghanistan" ...
##  $ iso2c      : chr  "AF" "AF" "AF" "AF" ...
##  $ iso3c      : chr  "AFG" "AFG" "AFG" "AFG" ...
##  $ year       : int  1963 1962 1961 1960 2003 2002 2001 2000 1995 1994 ...
##  $ gdp        : num  7.51e+08 5.47e+08 5.49e+08 5.38e+08 4.54e+09 ...
##   ..- attr(*, "label")= chr "GDP (current US$)"
##  $ status     : chr  "" "" "" "" ...
##  $ lastupdated: chr  "2023-05-10" "2023-05-10" "2023-05-10" "2023-05-10" ...
##  $ region     : chr  "South Asia" "South Asia" "South Asia" "South Asia" ...
##  $ capital    : chr  "Kabul" "Kabul" "Kabul" "Kabul" ...
##  $ longitude  : chr  "69.1761" "69.1761" "69.1761" "69.1761" ...
##  $ latitude   : chr  "34.5228" "34.5228" "34.5228" "34.5228" ...
##  $ income     : chr  "Low income" "Low income" "Low income" "Low income" ...
##  $ lending    : chr  "IDA" "IDA" "IDA" "IDA" ...

概要 (summary(df_gdp)) からもある程度わかります。

summary(df_gdp) 
##    country             iso2c              iso3c                year     
##  Length:16758       Length:16758       Length:16758       Min.   :1960  
##  Class :character   Class :character   Class :character   1st Qu.:1975  
##  Mode  :character   Mode  :character   Mode  :character   Median :1991  
##                                                           Mean   :1991  
##                                                           3rd Qu.:2007  
##                                                           Max.   :2022  
##                                                                         
##       gdp               status          lastupdated           region         
##  Min.   :8.824e+06   Length:16758       Length:16758       Length:16758      
##  1st Qu.:2.442e+09   Class :character   Class :character   Class :character  
##  Median :1.784e+10   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :1.161e+12                                                           
##  3rd Qu.:2.156e+11                                                           
##  Max.   :9.653e+13                                                           
##  NA's   :3602                                                                
##    capital           longitude           latitude            income         
##  Length:16758       Length:16758       Length:16758       Length:16758      
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##    lending         
##  Length:16758      
##  Class :character  
##  Mode  :character  
##                    
##                    
##                    
## 

国のリストをみてみましょう。とても長いリストの中には、地域名も含まれています。

df_gdp %>% distinct(country) %>% pull()
##   [1] "Afghanistan"                                         
##   [2] "Africa Eastern and Southern"                         
##   [3] "Africa Western and Central"                          
##   [4] "Albania"                                             
##   [5] "Algeria"                                             
##   [6] "American Samoa"                                      
##   [7] "Andorra"                                             
##   [8] "Angola"                                              
##   [9] "Antigua and Barbuda"                                 
##  [10] "Arab World"                                          
##  [11] "Argentina"                                           
##  [12] "Armenia"                                             
##  [13] "Aruba"                                               
##  [14] "Australia"                                           
##  [15] "Austria"                                             
##  [16] "Azerbaijan"                                          
##  [17] "Bahamas, The"                                        
##  [18] "Bahrain"                                             
##  [19] "Bangladesh"                                          
##  [20] "Barbados"                                            
##  [21] "Belarus"                                             
##  [22] "Belgium"                                             
##  [23] "Belize"                                              
##  [24] "Benin"                                               
##  [25] "Bermuda"                                             
##  [26] "Bhutan"                                              
##  [27] "Bolivia"                                             
##  [28] "Bosnia and Herzegovina"                              
##  [29] "Botswana"                                            
##  [30] "Brazil"                                              
##  [31] "British Virgin Islands"                              
##  [32] "Brunei Darussalam"                                   
##  [33] "Bulgaria"                                            
##  [34] "Burkina Faso"                                        
##  [35] "Burundi"                                             
##  [36] "Cabo Verde"                                          
##  [37] "Cambodia"                                            
##  [38] "Cameroon"                                            
##  [39] "Canada"                                              
##  [40] "Caribbean small states"                              
##  [41] "Cayman Islands"                                      
##  [42] "Central African Republic"                            
##  [43] "Central Europe and the Baltics"                      
##  [44] "Chad"                                                
##  [45] "Channel Islands"                                     
##  [46] "Chile"                                               
##  [47] "China"                                               
##  [48] "Colombia"                                            
##  [49] "Comoros"                                             
##  [50] "Congo, Dem. Rep."                                    
##  [51] "Congo, Rep."                                         
##  [52] "Costa Rica"                                          
##  [53] "Cote d'Ivoire"                                       
##  [54] "Croatia"                                             
##  [55] "Cuba"                                                
##  [56] "Curacao"                                             
##  [57] "Cyprus"                                              
##  [58] "Czechia"                                             
##  [59] "Denmark"                                             
##  [60] "Djibouti"                                            
##  [61] "Dominica"                                            
##  [62] "Dominican Republic"                                  
##  [63] "Early-demographic dividend"                          
##  [64] "East Asia & Pacific"                                 
##  [65] "East Asia & Pacific (IDA & IBRD countries)"          
##  [66] "East Asia & Pacific (excluding high income)"         
##  [67] "Ecuador"                                             
##  [68] "Egypt, Arab Rep."                                    
##  [69] "El Salvador"                                         
##  [70] "Equatorial Guinea"                                   
##  [71] "Eritrea"                                             
##  [72] "Estonia"                                             
##  [73] "Eswatini"                                            
##  [74] "Ethiopia"                                            
##  [75] "Euro area"                                           
##  [76] "Europe & Central Asia"                               
##  [77] "Europe & Central Asia (IDA & IBRD countries)"        
##  [78] "Europe & Central Asia (excluding high income)"       
##  [79] "European Union"                                      
##  [80] "Faroe Islands"                                       
##  [81] "Fiji"                                                
##  [82] "Finland"                                             
##  [83] "Fragile and conflict affected situations"            
##  [84] "France"                                              
##  [85] "French Polynesia"                                    
##  [86] "Gabon"                                               
##  [87] "Gambia, The"                                         
##  [88] "Georgia"                                             
##  [89] "Germany"                                             
##  [90] "Ghana"                                               
##  [91] "Gibraltar"                                           
##  [92] "Greece"                                              
##  [93] "Greenland"                                           
##  [94] "Grenada"                                             
##  [95] "Guam"                                                
##  [96] "Guatemala"                                           
##  [97] "Guinea"                                              
##  [98] "Guinea-Bissau"                                       
##  [99] "Guyana"                                              
## [100] "Haiti"                                               
## [101] "Heavily indebted poor countries (HIPC)"              
## [102] "High income"                                         
## [103] "Honduras"                                            
## [104] "Hong Kong SAR, China"                                
## [105] "Hungary"                                             
## [106] "IBRD only"                                           
## [107] "IDA & IBRD total"                                    
## [108] "IDA blend"                                           
## [109] "IDA only"                                            
## [110] "IDA total"                                           
## [111] "Iceland"                                             
## [112] "India"                                               
## [113] "Indonesia"                                           
## [114] "Iran, Islamic Rep."                                  
## [115] "Iraq"                                                
## [116] "Ireland"                                             
## [117] "Isle of Man"                                         
## [118] "Israel"                                              
## [119] "Italy"                                               
## [120] "Jamaica"                                             
## [121] "Japan"                                               
## [122] "Jordan"                                              
## [123] "Kazakhstan"                                          
## [124] "Kenya"                                               
## [125] "Kiribati"                                            
## [126] "Korea, Dem. People's Rep."                           
## [127] "Korea, Rep."                                         
## [128] "Kosovo"                                              
## [129] "Kuwait"                                              
## [130] "Kyrgyz Republic"                                     
## [131] "Lao PDR"                                             
## [132] "Late-demographic dividend"                           
## [133] "Latin America & Caribbean"                           
## [134] "Latin America & Caribbean (excluding high income)"   
## [135] "Latin America & the Caribbean (IDA & IBRD countries)"
## [136] "Latvia"                                              
## [137] "Least developed countries: UN classification"        
## [138] "Lebanon"                                             
## [139] "Lesotho"                                             
## [140] "Liberia"                                             
## [141] "Libya"                                               
## [142] "Liechtenstein"                                       
## [143] "Lithuania"                                           
## [144] "Low & middle income"                                 
## [145] "Low income"                                          
## [146] "Lower middle income"                                 
## [147] "Luxembourg"                                          
## [148] "Macao SAR, China"                                    
## [149] "Madagascar"                                          
## [150] "Malawi"                                              
## [151] "Malaysia"                                            
## [152] "Maldives"                                            
## [153] "Mali"                                                
## [154] "Malta"                                               
## [155] "Marshall Islands"                                    
## [156] "Mauritania"                                          
## [157] "Mauritius"                                           
## [158] "Mexico"                                              
## [159] "Micronesia, Fed. Sts."                               
## [160] "Middle East & North Africa"                          
## [161] "Middle East & North Africa (IDA & IBRD countries)"   
## [162] "Middle East & North Africa (excluding high income)"  
## [163] "Middle income"                                       
## [164] "Moldova"                                             
## [165] "Monaco"                                              
## [166] "Mongolia"                                            
## [167] "Montenegro"                                          
## [168] "Morocco"                                             
## [169] "Mozambique"                                          
## [170] "Myanmar"                                             
## [171] "Namibia"                                             
## [172] "Nauru"                                               
## [173] "Nepal"                                               
## [174] "Netherlands"                                         
## [175] "New Caledonia"                                       
## [176] "New Zealand"                                         
## [177] "Nicaragua"                                           
## [178] "Niger"                                               
## [179] "Nigeria"                                             
## [180] "North America"                                       
## [181] "North Macedonia"                                     
## [182] "Northern Mariana Islands"                            
## [183] "Norway"                                              
## [184] "Not classified"                                      
## [185] "OECD members"                                        
## [186] "Oman"                                                
## [187] "Other small states"                                  
## [188] "Pacific island small states"                         
## [189] "Pakistan"                                            
## [190] "Palau"                                               
## [191] "Panama"                                              
## [192] "Papua New Guinea"                                    
## [193] "Paraguay"                                            
## [194] "Peru"                                                
## [195] "Philippines"                                         
## [196] "Poland"                                              
## [197] "Portugal"                                            
## [198] "Post-demographic dividend"                           
## [199] "Pre-demographic dividend"                            
## [200] "Puerto Rico"                                         
## [201] "Qatar"                                               
## [202] "Romania"                                             
## [203] "Russian Federation"                                  
## [204] "Rwanda"                                              
## [205] "Samoa"                                               
## [206] "San Marino"                                          
## [207] "Sao Tome and Principe"                               
## [208] "Saudi Arabia"                                        
## [209] "Senegal"                                             
## [210] "Serbia"                                              
## [211] "Seychelles"                                          
## [212] "Sierra Leone"                                        
## [213] "Singapore"                                           
## [214] "Sint Maarten (Dutch part)"                           
## [215] "Slovak Republic"                                     
## [216] "Slovenia"                                            
## [217] "Small states"                                        
## [218] "Solomon Islands"                                     
## [219] "Somalia"                                             
## [220] "South Africa"                                        
## [221] "South Asia"                                          
## [222] "South Asia (IDA & IBRD)"                             
## [223] "South Sudan"                                         
## [224] "Spain"                                               
## [225] "Sri Lanka"                                           
## [226] "St. Kitts and Nevis"                                 
## [227] "St. Lucia"                                           
## [228] "St. Martin (French part)"                            
## [229] "St. Vincent and the Grenadines"                      
## [230] "Sub-Saharan Africa"                                  
## [231] "Sub-Saharan Africa (IDA & IBRD countries)"           
## [232] "Sub-Saharan Africa (excluding high income)"          
## [233] "Sudan"                                               
## [234] "Suriname"                                            
## [235] "Sweden"                                              
## [236] "Switzerland"                                         
## [237] "Syrian Arab Republic"                                
## [238] "Tajikistan"                                          
## [239] "Tanzania"                                            
## [240] "Thailand"                                            
## [241] "Timor-Leste"                                         
## [242] "Togo"                                                
## [243] "Tonga"                                               
## [244] "Trinidad and Tobago"                                 
## [245] "Tunisia"                                             
## [246] "Turkiye"                                             
## [247] "Turkmenistan"                                        
## [248] "Turks and Caicos Islands"                            
## [249] "Tuvalu"                                              
## [250] "Uganda"                                              
## [251] "Ukraine"                                             
## [252] "United Arab Emirates"                                
## [253] "United Kingdom"                                      
## [254] "United States"                                       
## [255] "Upper middle income"                                 
## [256] "Uruguay"                                             
## [257] "Uzbekistan"                                          
## [258] "Vanuatu"                                             
## [259] "Venezuela, RB"                                       
## [260] "Vietnam"                                             
## [261] "Virgin Islands (U.S.)"                               
## [262] "West Bank and Gaza"                                  
## [263] "World"                                               
## [264] "Yemen, Rep."                                         
## [265] "Zambia"                                              
## [266] "Zimbabwe"

今回は下のように、%>%(パイプと呼びます) で繋げてコードを書きました。

df_gdp %>% distinct(country) %>% pull()

最初は、データ、その中の、異なる国を選択して、書き出してくださいというものです。

これは、

pull(distinct(df_gdp, country))

と同じです。どんどん、かっこの中に入れ子になって複雑になるので、一つ一つのステップを、順に書いたものが、最初のものになります。

df_gdp %>% head()
df_gdp %>% str()

なども可能です。かっこの中に最初に入るものが直前のもの、ここでは、データになっています。

必要に応じて整形 Transform data

変数が多いので、日本の部分だけ filter を使って選択します。country が Japan と一致する場合のみを選択するときは、== を使います。数値ではないので、引用符をつけます。半角を使ってください。

df_gdp %>% filter(country == "Japan")
##    country iso2c iso3c year          gdp status lastupdated              region
## 1    Japan    JP   JPN 2022           NA         2023-05-10 East Asia & Pacific
## 2    Japan    JP   JPN 2021 4.940878e+12         2023-05-10 East Asia & Pacific
## 3    Japan    JP   JPN 2020 5.040108e+12         2023-05-10 East Asia & Pacific
## 4    Japan    JP   JPN 2019 5.123318e+12         2023-05-10 East Asia & Pacific
## 5    Japan    JP   JPN 2018 5.037835e+12         2023-05-10 East Asia & Pacific
## 6    Japan    JP   JPN 2017 4.930837e+12         2023-05-10 East Asia & Pacific
## 7    Japan    JP   JPN 2016 5.003678e+12         2023-05-10 East Asia & Pacific
## 8    Japan    JP   JPN 2015 4.444931e+12         2023-05-10 East Asia & Pacific
## 9    Japan    JP   JPN 2014 4.896994e+12         2023-05-10 East Asia & Pacific
## 10   Japan    JP   JPN 2013 5.212328e+12         2023-05-10 East Asia & Pacific
## 11   Japan    JP   JPN 2012 6.272363e+12         2023-05-10 East Asia & Pacific
## 12   Japan    JP   JPN 2011 6.233147e+12         2023-05-10 East Asia & Pacific
## 13   Japan    JP   JPN 2010 5.759072e+12         2023-05-10 East Asia & Pacific
## 14   Japan    JP   JPN 2009 5.289493e+12         2023-05-10 East Asia & Pacific
## 15   Japan    JP   JPN 2008 5.106679e+12         2023-05-10 East Asia & Pacific
## 16   Japan    JP   JPN 2007 4.579751e+12         2023-05-10 East Asia & Pacific
## 17   Japan    JP   JPN 2006 4.601663e+12         2023-05-10 East Asia & Pacific
## 18   Japan    JP   JPN 2005 4.831467e+12         2023-05-10 East Asia & Pacific
## 19   Japan    JP   JPN 2004 4.893116e+12         2023-05-10 East Asia & Pacific
## 20   Japan    JP   JPN 2003 4.519562e+12         2023-05-10 East Asia & Pacific
## 21   Japan    JP   JPN 2002 4.182846e+12         2023-05-10 East Asia & Pacific
## 22   Japan    JP   JPN 2001 4.374712e+12         2023-05-10 East Asia & Pacific
## 23   Japan    JP   JPN 2000 4.968359e+12         2023-05-10 East Asia & Pacific
## 24   Japan    JP   JPN 1999 4.635982e+12         2023-05-10 East Asia & Pacific
## 25   Japan    JP   JPN 1998 4.098363e+12         2023-05-10 East Asia & Pacific
## 26   Japan    JP   JPN 1997 4.492449e+12         2023-05-10 East Asia & Pacific
## 27   Japan    JP   JPN 1996 4.923392e+12         2023-05-10 East Asia & Pacific
## 28   Japan    JP   JPN 1995 5.545564e+12         2023-05-10 East Asia & Pacific
## 29   Japan    JP   JPN 1994 4.998798e+12         2023-05-10 East Asia & Pacific
## 30   Japan    JP   JPN 1993 4.454144e+12         2023-05-10 East Asia & Pacific
## 31   Japan    JP   JPN 1992 3.908809e+12         2023-05-10 East Asia & Pacific
## 32   Japan    JP   JPN 1991 3.584420e+12         2023-05-10 East Asia & Pacific
## 33   Japan    JP   JPN 1990 3.132818e+12         2023-05-10 East Asia & Pacific
## 34   Japan    JP   JPN 1989 3.054914e+12         2023-05-10 East Asia & Pacific
## 35   Japan    JP   JPN 1988 3.071683e+12         2023-05-10 East Asia & Pacific
## 36   Japan    JP   JPN 1987 2.532809e+12         2023-05-10 East Asia & Pacific
## 37   Japan    JP   JPN 1986 2.078953e+12         2023-05-10 East Asia & Pacific
## 38   Japan    JP   JPN 1985 1.398893e+12         2023-05-10 East Asia & Pacific
## 39   Japan    JP   JPN 1984 1.318382e+12         2023-05-10 East Asia & Pacific
## 40   Japan    JP   JPN 1983 1.243324e+12         2023-05-10 East Asia & Pacific
## 41   Japan    JP   JPN 1982 1.134518e+12         2023-05-10 East Asia & Pacific
## 42   Japan    JP   JPN 1981 1.218989e+12         2023-05-10 East Asia & Pacific
## 43   Japan    JP   JPN 1980 1.105386e+12         2023-05-10 East Asia & Pacific
## 44   Japan    JP   JPN 1979 1.055012e+12         2023-05-10 East Asia & Pacific
## 45   Japan    JP   JPN 1978 1.013612e+12         2023-05-10 East Asia & Pacific
## 46   Japan    JP   JPN 1977 7.214118e+11         2023-05-10 East Asia & Pacific
## 47   Japan    JP   JPN 1976 5.861619e+11         2023-05-10 East Asia & Pacific
## 48   Japan    JP   JPN 1975 5.215419e+11         2023-05-10 East Asia & Pacific
## 49   Japan    JP   JPN 1974 4.796260e+11         2023-05-10 East Asia & Pacific
## 50   Japan    JP   JPN 1973 4.320827e+11         2023-05-10 East Asia & Pacific
## 51   Japan    JP   JPN 1972 3.180313e+11         2023-05-10 East Asia & Pacific
## 52   Japan    JP   JPN 1971 2.401518e+11         2023-05-10 East Asia & Pacific
## 53   Japan    JP   JPN 1970 2.126092e+11         2023-05-10 East Asia & Pacific
## 54   Japan    JP   JPN 1969 1.722042e+11         2023-05-10 East Asia & Pacific
## 55   Japan    JP   JPN 1968 1.466011e+11         2023-05-10 East Asia & Pacific
## 56   Japan    JP   JPN 1967 1.237819e+11         2023-05-10 East Asia & Pacific
## 57   Japan    JP   JPN 1966 1.056281e+11         2023-05-10 East Asia & Pacific
## 58   Japan    JP   JPN 1965 9.095028e+10         2023-05-10 East Asia & Pacific
## 59   Japan    JP   JPN 1964 8.174901e+10         2023-05-10 East Asia & Pacific
## 60   Japan    JP   JPN 1963 6.949813e+10         2023-05-10 East Asia & Pacific
## 61   Japan    JP   JPN 1962 6.072302e+10         2023-05-10 East Asia & Pacific
## 62   Japan    JP   JPN 1961 5.350862e+10         2023-05-10 East Asia & Pacific
## 63   Japan    JP   JPN 1960 4.430734e+10         2023-05-10 East Asia & Pacific
##    capital longitude latitude      income        lending
## 1    Tokyo    139.77    35.67 High income Not classified
## 2    Tokyo    139.77    35.67 High income Not classified
## 3    Tokyo    139.77    35.67 High income Not classified
## 4    Tokyo    139.77    35.67 High income Not classified
## 5    Tokyo    139.77    35.67 High income Not classified
## 6    Tokyo    139.77    35.67 High income Not classified
## 7    Tokyo    139.77    35.67 High income Not classified
## 8    Tokyo    139.77    35.67 High income Not classified
## 9    Tokyo    139.77    35.67 High income Not classified
## 10   Tokyo    139.77    35.67 High income Not classified
## 11   Tokyo    139.77    35.67 High income Not classified
## 12   Tokyo    139.77    35.67 High income Not classified
## 13   Tokyo    139.77    35.67 High income Not classified
## 14   Tokyo    139.77    35.67 High income Not classified
## 15   Tokyo    139.77    35.67 High income Not classified
## 16   Tokyo    139.77    35.67 High income Not classified
## 17   Tokyo    139.77    35.67 High income Not classified
## 18   Tokyo    139.77    35.67 High income Not classified
## 19   Tokyo    139.77    35.67 High income Not classified
## 20   Tokyo    139.77    35.67 High income Not classified
## 21   Tokyo    139.77    35.67 High income Not classified
## 22   Tokyo    139.77    35.67 High income Not classified
## 23   Tokyo    139.77    35.67 High income Not classified
## 24   Tokyo    139.77    35.67 High income Not classified
## 25   Tokyo    139.77    35.67 High income Not classified
## 26   Tokyo    139.77    35.67 High income Not classified
## 27   Tokyo    139.77    35.67 High income Not classified
## 28   Tokyo    139.77    35.67 High income Not classified
## 29   Tokyo    139.77    35.67 High income Not classified
## 30   Tokyo    139.77    35.67 High income Not classified
## 31   Tokyo    139.77    35.67 High income Not classified
## 32   Tokyo    139.77    35.67 High income Not classified
## 33   Tokyo    139.77    35.67 High income Not classified
## 34   Tokyo    139.77    35.67 High income Not classified
## 35   Tokyo    139.77    35.67 High income Not classified
## 36   Tokyo    139.77    35.67 High income Not classified
## 37   Tokyo    139.77    35.67 High income Not classified
## 38   Tokyo    139.77    35.67 High income Not classified
## 39   Tokyo    139.77    35.67 High income Not classified
## 40   Tokyo    139.77    35.67 High income Not classified
## 41   Tokyo    139.77    35.67 High income Not classified
## 42   Tokyo    139.77    35.67 High income Not classified
## 43   Tokyo    139.77    35.67 High income Not classified
## 44   Tokyo    139.77    35.67 High income Not classified
## 45   Tokyo    139.77    35.67 High income Not classified
## 46   Tokyo    139.77    35.67 High income Not classified
## 47   Tokyo    139.77    35.67 High income Not classified
## 48   Tokyo    139.77    35.67 High income Not classified
## 49   Tokyo    139.77    35.67 High income Not classified
## 50   Tokyo    139.77    35.67 High income Not classified
## 51   Tokyo    139.77    35.67 High income Not classified
## 52   Tokyo    139.77    35.67 High income Not classified
## 53   Tokyo    139.77    35.67 High income Not classified
## 54   Tokyo    139.77    35.67 High income Not classified
## 55   Tokyo    139.77    35.67 High income Not classified
## 56   Tokyo    139.77    35.67 High income Not classified
## 57   Tokyo    139.77    35.67 High income Not classified
## 58   Tokyo    139.77    35.67 High income Not classified
## 59   Tokyo    139.77    35.67 High income Not classified
## 60   Tokyo    139.77    35.67 High income Not classified
## 61   Tokyo    139.77    35.67 High income Not classified
## 62   Tokyo    139.77    35.67 High income Not classified
## 63   Tokyo    139.77    35.67 High income Not classified
df_gdp %>% filter(country == "Japan") %>% head(2)
##   country iso2c iso3c year          gdp status lastupdated              region
## 1   Japan    JP   JPN 2022           NA         2023-05-10 East Asia & Pacific
## 2   Japan    JP   JPN 2021 4.940878e+12         2023-05-10 East Asia & Pacific
##   capital longitude latitude      income        lending
## 1   Tokyo    139.77    35.67 High income Not classified
## 2   Tokyo    139.77    35.67 High income Not classified

2行目の、gdp の、4.940878e+12 は、Scientific notation と言われるもので、 \[4.940878 \times 10^{12} = 4,940,887,800,000\] を意味します。e+3 は千(thousand)、e+6 は百万(million)、e+9 は、10億(billion)、e+12 は、兆(trillion)ですから、日本の、2021 年の GDP は、約5兆ドルとなります。

視覚化 data visualization

Fig 1. 日本のGDP の経年変化を折線グラフ(line graph)

df_gdp %>% filter(country == "Japan") %>%
  ggplot(aes(x = year, y = gdp)) + geom_line()
## Warning: Removed 1 row containing missing values (`geom_line()`).

df_gdp %>% filter(country == "Japan") %>%
  ggplot(aes(x = year, y = gdp)) + geom_line()

日本を選択したときに、それに名前をつけておいて、それを使うこともできますが、名前がどんどん増えるので、それに続けて、コードを書いていく方法をとっています。

ggplot(aes(x = year, y = gdp)) + geom_line()

の部分が、グラフを描く部分で、「x 軸を、year、y 軸を、gdp として、それを、折線グラフで描いてください」というコードです。

Warning: [38;5;238mRemoved 1 row containing missing values

と表示されています。値がない年があることを言っています。2022年のデータがないことがわかっていますから、最初から削除してこくことも可能です。

データの理解 Understand data

視覚化によって見えてくることがいくつもありますね。どんなことがわかりますか。気づいたこと(observation)をあげてみましょう。

コードを描くことではなく、この部分が、データサイエンスの核の部分です。気づいたことを列挙してみましょう。

さまざまな視覚化

Fig 2. 各年ごとのデータの数

summary(df_gdp) で、データ自体は、1960年から2022年までのようですが、日本も、2022年のデータはありませんでしたから、年によって、どの程度データがあるか、調べてみます。

df_gdp %>% drop_na(gdp) %>% ggplot(aes(x = year)) + geom_bar()

df_gdp %>% drop_na(gdp) %>% ggplot(aes(x = year)) + geom_bar()

バー・グラフを使いますが、gdp の値が、欠損値(NA: not available)のデータを削除してから、グラフを描きます。

2021年のGDPの降順での表示(1)

最新の2021年のデータはすべてあるわけではなさそうですが、gdp の値が大きい順に並べてみましょう。

df_gdp %>% filter(year == 2021) %>% drop_na(gdp) %>% arrange(desc(gdp))
##                                                  country iso2c iso3c year
## 1                                                  World    1W   WLD 2021
## 2                                            High income    XD       2021
## 3                                           OECD members    OE   OED 2021
## 4                              Post-demographic dividend    V4   PST 2021
## 5                                       IDA & IBRD total    ZT   IBT 2021
## 6                                    Low & middle income    XO   LMY 2021
## 7                                          Middle income    XP   MIC 2021
## 8                                              IBRD only    XF   IBD 2021
## 9                                    East Asia & Pacific    Z4   EAS 2021
## 10                                   Upper middle income    XT       2021
## 11                             Late-demographic dividend    V3   LTE 2021
## 12                                         North America    XU   NAC 2021
## 13                                 Europe & Central Asia    Z7   ECS 2021
## 14                                         United States    US   USA 2021
## 15           East Asia & Pacific (excluding high income)    4E   EAP 2021
## 16            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021
## 17                                                 China    CN   CHN 2021
## 18                                        European Union    EU   EUU 2021
## 19                                             Euro area    XC   EMU 2021
## 20                            Early-demographic dividend    V2   EAR 2021
## 21                                   Lower middle income    XN       2021
## 22                             Latin America & Caribbean    ZJ   LCN 2021
## 23  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2021
## 24                                                 Japan    JP   JPN 2021
## 25     Latin America & Caribbean (excluding high income)    XJ   LAC 2021
## 26          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021
## 27                                               Germany    DE   DEU 2021
## 28                                            South Asia    8S   SAS 2021
## 29                               South Asia (IDA & IBRD)    T5   TSA 2021
## 30                            Middle East & North Africa    ZQ   MEA 2021
## 31         Europe & Central Asia (excluding high income)    7E   ECA 2021
## 32                                                 India    IN   IND 2021
## 33                                        United Kingdom    GB   GBR 2021
## 34                                                France    FR   FRA 2021
## 35                                            Arab World    1A   ARB 2021
## 36                                             IDA total    XG   IDA 2021
## 37                                                 Italy    IT   ITA 2021
## 38                                                Canada    CA   CAN 2021
## 39                                    Sub-Saharan Africa    ZG   SSF 2021
## 40             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2021
## 41            Sub-Saharan Africa (excluding high income)    ZF   SSA 2021
## 42                        Central Europe and the Baltics    B8   CEB 2021
## 43                                           Korea, Rep.    KR   KOR 2021
## 44              Fragile and conflict affected situations    F1   FCS 2021
## 45                                    Russian Federation    RU   RUS 2021
## 46                                                Brazil    BR   BRA 2021
## 47                                             Australia    AU   AUS 2021
## 48                                              IDA only    XI   IDX 2021
## 49    Middle East & North Africa (excluding high income)    XQ   MNA 2021
## 50     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2021
## 51                              Pre-demographic dividend    V1   PRE 2021
## 52                                                 Spain    ES   ESP 2021
## 53          Least developed countries: UN classification    XL   LDC 2021
## 54                                                Mexico    MX   MEX 2021
## 55                                             Indonesia    ID   IDN 2021
## 56                                             IDA blend    XH   IDB 2021
## 57                           Africa Eastern and Southern    ZH   AFE 2021
## 58                                           Netherlands    NL   NLD 2021
## 59                Heavily indebted poor countries (HIPC)    XE   HPC 2021
## 60                            Africa Western and Central    ZI   AFW 2021
## 61                                          Saudi Arabia    SA   SAU 2021
## 62                                               Turkiye    TR   TUR 2021
## 63                                           Switzerland    CH   CHE 2021
## 64                                                Poland    PL   POL 2021
## 65                                                Sweden    SE   SWE 2021
## 66                                               Belgium    BE   BEL 2021
## 67                                            Low income    XM       2021
## 68                                          Small states    S1   SST 2021
## 69                                              Thailand    TH   THA 2021
## 70                                               Ireland    IE   IRL 2021
## 71                                                Israel    IL   ISR 2021
## 72                                             Argentina    AR   ARG 2021
## 73                                                Norway    NO   NOR 2021
## 74                                               Austria    AT   AUT 2021
## 75                                    Other small states    S4   OSS 2021
## 76                                               Nigeria    NG   NGA 2021
## 77                                          South Africa    ZA   ZAF 2021
## 78                                            Bangladesh    BD   BGD 2021
## 79                                  United Arab Emirates    AE   ARE 2021
## 80                                      Egypt, Arab Rep.    EG   EGY 2021
## 81                                               Denmark    DK   DNK 2021
## 82                                             Singapore    SG   SGP 2021
## 83                                           Philippines    PH   PHL 2021
## 84                                              Malaysia    MY   MYS 2021
## 85                                  Hong Kong SAR, China    HK   HKG 2021
## 86                                               Vietnam    VN   VNM 2021
## 87                                    Iran, Islamic Rep.    IR   IRN 2021
## 88                                              Pakistan    PK   PAK 2021
## 89                                                 Chile    CL   CHL 2021
## 90                                              Colombia    CO   COL 2021
## 91                                               Finland    FI   FIN 2021
## 92                                               Romania    RO   ROU 2021
## 93                                               Czechia    CZ   CZE 2021
## 94                                              Portugal    PT   PRT 2021
## 95                                           New Zealand    NZ   NZL 2021
## 96                                                  Peru    PE   PER 2021
## 97                                                Greece    GR   GRC 2021
## 98                                                  Iraq    IQ   IRQ 2021
## 99                                               Ukraine    UA   UKR 2021
## 100                                           Kazakhstan    KZ   KAZ 2021
## 101                                              Hungary    HU   HUN 2021
## 102                                                Qatar    QA   QAT 2021
## 103                                              Algeria    DZ   DZA 2021
## 104                                              Morocco    MA   MAR 2021
## 105                                      Slovak Republic    SK   SVK 2021
## 106                                             Ethiopia    ET   ETH 2021
## 107                                                Kenya    KE   KEN 2021
## 108                                          Puerto Rico    PR   PRI 2021
## 109                                              Ecuador    EC   ECU 2021
## 110                                   Dominican Republic    DO   DOM 2021
## 111                                            Sri Lanka    LK   LKA 2021
## 112                                                 Oman    OM   OMN 2021
## 113                                            Guatemala    GT   GTM 2021
## 114                                           Luxembourg    LU   LUX 2021
## 115                                             Bulgaria    BG   BGR 2021
## 116                                                Ghana    GH   GHA 2021
## 117                               Caribbean small states    S3   CSS 2021
## 118                                        Cote d'Ivoire    CI   CIV 2021
## 119                                           Uzbekistan    UZ   UZB 2021
## 120                                              Croatia    HR   HRV 2021
## 121                                              Belarus    BY   BLR 2021
## 122                                             Tanzania    TZ   TZA 2021
## 123                                               Angola    AO   AGO 2021
## 124                                            Lithuania    LT   LTU 2021
## 125                                              Myanmar    MM   MMR 2021
## 126                                           Costa Rica    CR   CRI 2021
## 127                                               Panama    PA   PAN 2021
## 128                                               Serbia    RS   SRB 2021
## 129                                             Slovenia    SI   SVN 2021
## 130                                              Uruguay    UY   URY 2021
## 131                                     Congo, Dem. Rep.    CD   COD 2021
## 132                                           Azerbaijan    AZ   AZE 2021
## 133                                              Tunisia    TN   TUN 2021
## 134                                               Jordan    JO   JOR 2021
## 135                                             Cameroon    CM   CMR 2021
## 136                                                Libya    LY   LBY 2021
## 137                                               Uganda    UG   UGA 2021
## 138                                              Bolivia    BO   BOL 2021
## 139                                               Latvia    LV   LVA 2021
## 140                                             Paraguay    PY   PRY 2021
## 141                                              Bahrain    BH   BHR 2021
## 142                                              Estonia    EE   EST 2021
## 143                                                Nepal    NP   NPL 2021
## 144                                                Sudan    SD   SDN 2021
## 145                                     Macao SAR, China    MO   MAC 2021
## 146                                          El Salvador    SV   SLV 2021
## 147                                             Honduras    HN   HND 2021
## 148                                               Cyprus    CY   CYP 2021
## 149                                             Zimbabwe    ZW   ZWE 2021
## 150                                              Senegal    SN   SEN 2021
## 151                                             Cambodia    KH   KHM 2021
## 152                                     Papua New Guinea    PG   PNG 2021
## 153                                              Iceland    IS   ISL 2021
## 154                                  Trinidad and Tobago    TT   TTO 2021
## 155                               Bosnia and Herzegovina    BA   BIH 2021
## 156                                              Lebanon    LB   LBN 2021
## 157                                               Zambia    ZM   ZMB 2021
## 158                                                Haiti    HT   HTI 2021
## 159                                                Gabon    GA   GAB 2021
## 160                                         Burkina Faso    BF   BFA 2021
## 161                                                 Mali    ML   MLI 2021
## 162                                              Lao PDR    LA   LAO 2021
## 163                                              Georgia    GE   GEO 2021
## 164                                              Albania    AL   ALB 2021
## 165                                   West Bank and Gaza    PS   PSE 2021
## 166                                             Botswana    BW   BWA 2021
## 167                                                Malta    MT   MLT 2021
## 168                                                Benin    BJ   BEN 2021
## 169                                               Guinea    GN   GIN 2021
## 170                                           Mozambique    MZ   MOZ 2021
## 171                                             Mongolia    MN   MNG 2021
## 172                                                Niger    NE   NER 2021
## 173                                          Afghanistan    AF   AFG 2021
## 174                                              Jamaica    JM   JAM 2021
## 175                                           Madagascar    MG   MDG 2021
## 176                                            Nicaragua    NI   NIC 2021
## 177                                    Brunei Darussalam    BN   BRN 2021
## 178                                              Armenia    AM   ARM 2021
## 179                                      North Macedonia    MK   MKD 2021
## 180                                              Moldova    MD   MDA 2021
## 181                                          Congo, Rep.    CG   COG 2021
## 182                                               Malawi    MW   MWI 2021
## 183                                              Namibia    NA   NAM 2021
## 184                                    Equatorial Guinea    GQ   GNQ 2021
## 185                                                 Chad    TD   TCD 2021
## 186                                            Mauritius    MU   MUS 2021
## 187                                         Bahamas, The    BS   BHS 2021
## 188                                               Rwanda    RW   RWA 2021
## 189                                        New Caledonia    NC   NCL 2021
## 190                                           Mauritania    MR   MRT 2021
## 191                          Pacific island small states    S2   PSS 2021
## 192                                               Kosovo    XK   XKX 2021
## 193                                           Tajikistan    TJ   TJK 2021
## 194                                               Monaco    MC   MCO 2021
## 195                                      Kyrgyz Republic    KG   KGZ 2021
## 196                                                 Togo    TG   TGO 2021
## 197                                               Guyana    GY   GUY 2021
## 198                                              Somalia    SO   SOM 2021
## 199                                              Bermuda    BM   BMU 2021
## 200                                                 Guam    GU   GUM 2021
## 201                                     French Polynesia    PF   PYF 2021
## 202                                       Cayman Islands    KY   CYM 2021
## 203                                           Montenegro    ME   MNE 2021
## 204                                             Maldives    MV   MDV 2021
## 205                                             Barbados    BB   BRB 2021
## 206                                             Eswatini    SZ   SWZ 2021
## 207                                                 Fiji    FJ   FJI 2021
## 208                                         Sierra Leone    SL   SLE 2021
## 209                                        Faroe Islands    FO   FRO 2021
## 210                                          Timor-Leste    TL   TLS 2021
## 211                                              Liberia    LR   LBR 2021
## 212                                             Djibouti    DJ   DJI 2021
## 213                                              Andorra    AD   AND 2021
## 214                                                Aruba    AW   ABW 2021
## 215                                             Suriname    SR   SUR 2021
## 216                                              Burundi    BI   BDI 2021
## 217                                              Curacao    CW   CUW 2021
## 218                                               Bhutan    BT   BTN 2021
## 219                             Central African Republic    CF   CAF 2021
## 220                                              Lesotho    LS   LSO 2021
## 221                                               Belize    BZ   BLZ 2021
## 222                                          Gambia, The    GM   GMB 2021
## 223                                           Cabo Verde    CV   CPV 2021
## 224                                            St. Lucia    LC   LCA 2021
## 225                                        Guinea-Bissau    GW   GNB 2021
## 226                                      Solomon Islands    SB   SLB 2021
## 227                                  Antigua and Barbuda    AG   ATG 2021
## 228                                           Seychelles    SC   SYC 2021
## 229                                              Comoros    KM   COM 2021
## 230                                              Grenada    GD   GRD 2021
## 231                                              Vanuatu    VU   VUT 2021
## 232                             Turks and Caicos Islands    TC   TCA 2021
## 233                       St. Vincent and the Grenadines    VC   VCT 2021
## 234                                  St. Kitts and Nevis    KN   KNA 2021
## 235                                                Samoa    WS   WSM 2021
## 236                                       American Samoa    AS   ASM 2021
## 237                                             Dominica    DM   DMA 2021
## 238                                Sao Tome and Principe    ST   STP 2021
## 239                                                Tonga    TO   TON 2021
## 240                                Micronesia, Fed. Sts.    FM   FSM 2021
## 241                                     Marshall Islands    MH   MHL 2021
## 242                                                Palau    PW   PLW 2021
## 243                                             Kiribati    KI   KIR 2021
## 244                                                Nauru    NR   NRU 2021
## 245                                               Tuvalu    TV   TUV 2021
##              gdp status lastupdated                     region
## 1   9.652743e+13         2023-05-10                 Aggregates
## 2   5.982967e+13         2023-05-10                       <NA>
## 3   5.826835e+13         2023-05-10                 Aggregates
## 4   5.497273e+13         2023-05-10                 Aggregates
## 5   3.806285e+13         2023-05-10                 Aggregates
## 6   3.637059e+13         2023-05-10                 Aggregates
## 7   3.584514e+13         2023-05-10                 Aggregates
## 8   3.542267e+13         2023-05-10                 Aggregates
## 9   3.091169e+13         2023-05-10                 Aggregates
## 10  2.710409e+13         2023-05-10                       <NA>
## 11  2.662214e+13         2023-05-10                 Aggregates
## 12  2.531070e+13         2023-05-10                 Aggregates
## 13  2.508283e+13         2023-05-10                 Aggregates
## 14  2.331508e+13         2023-05-10              North America
## 15  2.075179e+13         2023-05-10                 Aggregates
## 16  2.072517e+13         2023-05-10                 Aggregates
## 17  1.773406e+13         2023-05-10        East Asia & Pacific
## 18  1.717742e+13         2023-05-10                 Aggregates
## 19  1.456328e+13         2023-05-10                 Aggregates
## 20  1.263730e+13         2023-05-10                 Aggregates
## 21  8.742535e+12         2023-05-10                       <NA>
## 22  5.454429e+12         2023-05-10                       <NA>
## 23  5.183127e+12         2023-05-10                 Aggregates
## 24  4.940878e+12         2023-05-10        East Asia & Pacific
## 25  4.585104e+12         2023-05-10                 Aggregates
## 26  4.550386e+12         2023-05-10                 Aggregates
## 27  4.259935e+12         2023-05-10      Europe & Central Asia
## 28  4.088771e+12         2023-05-10                 Aggregates
## 29  4.088771e+12         2023-05-10                 Aggregates
## 30  3.679844e+12         2023-05-10                 Aggregates
## 31  3.517373e+12         2023-05-10                 Aggregates
## 32  3.176295e+12         2023-05-10                 South Asia
## 33  3.131378e+12         2023-05-10      Europe & Central Asia
## 34  2.957880e+12         2023-05-10      Europe & Central Asia
## 35  2.862987e+12         2023-05-10                 Aggregates
## 36  2.637762e+12         2023-05-10                 Aggregates
## 37  2.107703e+12         2023-05-10      Europe & Central Asia
## 38  1.988336e+12         2023-05-10              North America
## 39  1.929052e+12         2023-05-10                       <NA>
## 40  1.929052e+12         2023-05-10                 Aggregates
## 41  1.927599e+12         2023-05-10                 Aggregates
## 42  1.901935e+12         2023-05-10                 Aggregates
## 43  1.810956e+12         2023-05-10        East Asia & Pacific
## 44  1.799023e+12         2023-05-10                 Aggregates
## 45  1.778783e+12         2023-05-10      Europe & Central Asia
## 46  1.608981e+12         2023-05-10  Latin America & Caribbean
## 47  1.552667e+12         2023-05-10        East Asia & Pacific
## 48  1.544392e+12         2023-05-10                 Aggregates
## 49  1.493752e+12         2023-05-10                 Aggregates
## 50  1.475708e+12         2023-05-10                 Aggregates
## 51  1.434259e+12         2023-05-10                 Aggregates
## 52  1.427381e+12         2023-05-10      Europe & Central Asia
## 53  1.280908e+12         2023-05-10                 Aggregates
## 54  1.272839e+12         2023-05-10  Latin America & Caribbean
## 55  1.186093e+12         2023-05-10        East Asia & Pacific
## 56  1.096478e+12         2023-05-10                 Aggregates
## 57  1.089454e+12         2023-05-10                 Aggregates
## 58  1.012847e+12         2023-05-10      Europe & Central Asia
## 59  8.919015e+11         2023-05-10                 Aggregates
## 60  8.401873e+11         2023-05-10                 Aggregates
## 61  8.335412e+11         2023-05-10 Middle East & North Africa
## 62  8.190352e+11         2023-05-10      Europe & Central Asia
## 63  8.006402e+11         2023-05-10      Europe & Central Asia
## 64  6.794448e+11         2023-05-10      Europe & Central Asia
## 65  6.356638e+11         2023-05-10      Europe & Central Asia
## 66  5.941042e+11         2023-05-10      Europe & Central Asia
## 67  5.629778e+11         2023-05-10                       <NA>
## 68  5.387061e+11         2023-05-10                 Aggregates
## 69  5.059470e+11         2023-05-10        East Asia & Pacific
## 70  5.041826e+11         2023-05-10      Europe & Central Asia
## 71  4.885265e+11         2023-05-10 Middle East & North Africa
## 72  4.872273e+11         2023-05-10  Latin America & Caribbean
## 73  4.821749e+11         2023-05-10      Europe & Central Asia
## 74  4.803684e+11         2023-05-10      Europe & Central Asia
## 75  4.539483e+11         2023-05-10                 Aggregates
## 76  4.408336e+11         2023-05-10         Sub-Saharan Africa
## 77  4.190150e+11         2023-05-10         Sub-Saharan Africa
## 78  4.162649e+11         2023-05-10                 South Asia
## 79  4.150216e+11         2023-05-10 Middle East & North Africa
## 80  4.041428e+11         2023-05-10 Middle East & North Africa
## 81  3.983033e+11         2023-05-10      Europe & Central Asia
## 82  3.969869e+11         2023-05-10        East Asia & Pacific
## 83  3.940864e+11         2023-05-10        East Asia & Pacific
## 84  3.729810e+11         2023-05-10        East Asia & Pacific
## 85  3.691764e+11         2023-05-10        East Asia & Pacific
## 86  3.661376e+11         2023-05-10        East Asia & Pacific
## 87  3.597132e+11         2023-05-10 Middle East & North Africa
## 88  3.482625e+11         2023-05-10                 South Asia
## 89  3.170585e+11         2023-05-10  Latin America & Caribbean
## 90  3.144641e+11         2023-05-10  Latin America & Caribbean
## 91  2.973019e+11         2023-05-10      Europe & Central Asia
## 92  2.840876e+11         2023-05-10      Europe & Central Asia
## 93  2.817779e+11         2023-05-10                       <NA>
## 94  2.536631e+11         2023-05-10      Europe & Central Asia
## 95  2.498857e+11         2023-05-10        East Asia & Pacific
## 96  2.232495e+11         2023-05-10  Latin America & Caribbean
## 97  2.148739e+11         2023-05-10      Europe & Central Asia
## 98  2.078893e+11         2023-05-10 Middle East & North Africa
## 99  2.000855e+11         2023-05-10      Europe & Central Asia
## 100 1.971123e+11         2023-05-10      Europe & Central Asia
## 101 1.818480e+11         2023-05-10      Europe & Central Asia
## 102 1.796772e+11         2023-05-10 Middle East & North Africa
## 103 1.630444e+11         2023-05-10 Middle East & North Africa
## 104 1.428663e+11         2023-05-10 Middle East & North Africa
## 105 1.165271e+11         2023-05-10      Europe & Central Asia
## 106 1.112711e+11         2023-05-10         Sub-Saharan Africa
## 107 1.103471e+11         2023-05-10         Sub-Saharan Africa
## 108 1.065257e+11         2023-05-10  Latin America & Caribbean
## 109 1.061659e+11         2023-05-10  Latin America & Caribbean
## 110 9.424345e+10         2023-05-10  Latin America & Caribbean
## 111 8.892726e+10         2023-05-10                 South Asia
## 112 8.819198e+10         2023-05-10 Middle East & North Africa
## 113 8.598575e+10         2023-05-10  Latin America & Caribbean
## 114 8.550624e+10         2023-05-10      Europe & Central Asia
## 115 8.405631e+10         2023-05-10      Europe & Central Asia
## 116 7.759428e+10         2023-05-10         Sub-Saharan Africa
## 117 7.529530e+10         2023-05-10                 Aggregates
## 118 7.004319e+10         2023-05-10         Sub-Saharan Africa
## 119 6.923890e+10         2023-05-10      Europe & Central Asia
## 120 6.895508e+10         2023-05-10      Europe & Central Asia
## 121 6.820538e+10         2023-05-10      Europe & Central Asia
## 122 6.784105e+10         2023-05-10         Sub-Saharan Africa
## 123 6.740429e+10         2023-05-10         Sub-Saharan Africa
## 124 6.644526e+10         2023-05-10      Europe & Central Asia
## 125 6.509175e+10         2023-05-10        East Asia & Pacific
## 126 6.428244e+10         2023-05-10  Latin America & Caribbean
## 127 6.360510e+10         2023-05-10  Latin America & Caribbean
## 128 6.308205e+10         2023-05-10      Europe & Central Asia
## 129 6.174859e+10         2023-05-10      Europe & Central Asia
## 130 5.931948e+10         2023-05-10  Latin America & Caribbean
## 131 5.535097e+10         2023-05-10         Sub-Saharan Africa
## 132 5.462218e+10         2023-05-10      Europe & Central Asia
## 133 4.668674e+10         2023-05-10 Middle East & North Africa
## 134 4.574427e+10         2023-05-10 Middle East & North Africa
## 135 4.533828e+10         2023-05-10         Sub-Saharan Africa
## 136 4.281747e+10         2023-05-10 Middle East & North Africa
## 137 4.052979e+10         2023-05-10         Sub-Saharan Africa
## 138 4.040821e+10         2023-05-10  Latin America & Caribbean
## 139 3.985350e+10         2023-05-10      Europe & Central Asia
## 140 3.949543e+10         2023-05-10  Latin America & Caribbean
## 141 3.886866e+10         2023-05-10 Middle East & North Africa
## 142 3.719117e+10         2023-05-10      Europe & Central Asia
## 143 3.628883e+10         2023-05-10                 South Asia
## 144 3.432606e+10         2023-05-10         Sub-Saharan Africa
## 145 3.012391e+10         2023-05-10        East Asia & Pacific
## 146 2.873694e+10         2023-05-10  Latin America & Caribbean
## 147 2.848867e+10         2023-05-10  Latin America & Caribbean
## 148 2.840787e+10         2023-05-10      Europe & Central Asia
## 149 2.837124e+10         2023-05-10         Sub-Saharan Africa
## 150 2.762539e+10         2023-05-10         Sub-Saharan Africa
## 151 2.696106e+10         2023-05-10        East Asia & Pacific
## 152 2.659431e+10         2023-05-10        East Asia & Pacific
## 153 2.560242e+10         2023-05-10      Europe & Central Asia
## 154 2.446020e+10         2023-05-10  Latin America & Caribbean
## 155 2.336536e+10         2023-05-10      Europe & Central Asia
## 156 2.313194e+10         2023-05-10 Middle East & North Africa
## 157 2.214763e+10         2023-05-10         Sub-Saharan Africa
## 158 2.094439e+10         2023-05-10  Latin America & Caribbean
## 159 2.021684e+10         2023-05-10         Sub-Saharan Africa
## 160 1.973762e+10         2023-05-10         Sub-Saharan Africa
## 161 1.914046e+10         2023-05-10         Sub-Saharan Africa
## 162 1.882715e+10         2023-05-10        East Asia & Pacific
## 163 1.862937e+10         2023-05-10      Europe & Central Asia
## 164 1.825579e+10         2023-05-10      Europe & Central Asia
## 165 1.803680e+10         2023-05-10 Middle East & North Africa
## 166 1.761479e+10         2023-05-10         Sub-Saharan Africa
## 167 1.736404e+10         2023-05-10 Middle East & North Africa
## 168 1.714492e+10         2023-05-10         Sub-Saharan Africa
## 169 1.609182e+10         2023-05-10         Sub-Saharan Africa
## 170 1.577676e+10         2023-05-10         Sub-Saharan Africa
## 171 1.528644e+10         2023-05-10        East Asia & Pacific
## 172 1.491500e+10         2023-05-10         Sub-Saharan Africa
## 173 1.478686e+10         2023-05-10                 South Asia
## 174 1.465759e+10         2023-05-10  Latin America & Caribbean
## 175 1.447260e+10         2023-05-10         Sub-Saharan Africa
## 176 1.401302e+10         2023-05-10  Latin America & Caribbean
## 177 1.400657e+10         2023-05-10        East Asia & Pacific
## 178 1.386141e+10         2023-05-10      Europe & Central Asia
## 179 1.382505e+10         2023-05-10      Europe & Central Asia
## 180 1.367922e+10         2023-05-10      Europe & Central Asia
## 181 1.336623e+10         2023-05-10         Sub-Saharan Africa
## 182 1.262672e+10         2023-05-10         Sub-Saharan Africa
## 183 1.231060e+10         2023-05-10         Sub-Saharan Africa
## 184 1.226939e+10         2023-05-10         Sub-Saharan Africa
## 185 1.177998e+10         2023-05-10         Sub-Saharan Africa
## 186 1.152904e+10         2023-05-10         Sub-Saharan Africa
## 187 1.120860e+10         2023-05-10  Latin America & Caribbean
## 188 1.107036e+10         2023-05-10         Sub-Saharan Africa
## 189 1.007135e+10         2023-05-10        East Asia & Pacific
## 190 9.996250e+09         2023-05-10         Sub-Saharan Africa
## 191 9.481916e+09         2023-05-10                 Aggregates
## 192 9.412034e+09         2023-05-10      Europe & Central Asia
## 193 8.746271e+09         2023-05-10      Europe & Central Asia
## 194 8.596097e+09         2023-05-10      Europe & Central Asia
## 195 8.543424e+09         2023-05-10      Europe & Central Asia
## 196 8.413201e+09         2023-05-10         Sub-Saharan Africa
## 197 8.044499e+09         2023-05-10  Latin America & Caribbean
## 198 7.628000e+09         2023-05-10         Sub-Saharan Africa
## 199 7.286607e+09         2023-05-10              North America
## 200 6.123000e+09         2023-05-10        East Asia & Pacific
## 201 6.054677e+09         2023-05-10        East Asia & Pacific
## 202 5.898450e+09         2023-05-10  Latin America & Caribbean
## 203 5.861268e+09         2023-05-10      Europe & Central Asia
## 204 5.405576e+09         2023-05-10                 South Asia
## 205 4.843800e+09         2023-05-10  Latin America & Caribbean
## 206 4.743335e+09         2023-05-10         Sub-Saharan Africa
## 207 4.296305e+09         2023-05-10        East Asia & Pacific
## 208 4.042238e+09         2023-05-10         Sub-Saharan Africa
## 209 3.649886e+09         2023-05-10      Europe & Central Asia
## 210 3.621222e+09         2023-05-10        East Asia & Pacific
## 211 3.509000e+09         2023-05-10         Sub-Saharan Africa
## 212 3.482987e+09         2023-05-10 Middle East & North Africa
## 213 3.330282e+09         2023-05-10      Europe & Central Asia
## 214 3.126019e+09         2023-05-10  Latin America & Caribbean
## 215 2.984706e+09         2023-05-10  Latin America & Caribbean
## 216 2.779813e+09         2023-05-10         Sub-Saharan Africa
## 217 2.699612e+09         2023-05-10  Latin America & Caribbean
## 218 2.539553e+09         2023-05-10                 South Asia
## 219 2.516498e+09         2023-05-10         Sub-Saharan Africa
## 220 2.496135e+09         2023-05-10         Sub-Saharan Africa
## 221 2.491500e+09         2023-05-10  Latin America & Caribbean
## 222 2.038417e+09         2023-05-10         Sub-Saharan Africa
## 223 1.936174e+09         2023-05-10         Sub-Saharan Africa
## 224 1.691275e+09         2023-05-10  Latin America & Caribbean
## 225 1.638518e+09         2023-05-10         Sub-Saharan Africa
## 226 1.631487e+09         2023-05-10        East Asia & Pacific
## 227 1.471126e+09         2023-05-10  Latin America & Caribbean
## 228 1.454458e+09         2023-05-10         Sub-Saharan Africa
## 229 1.296090e+09         2023-05-10         Sub-Saharan Africa
## 230 1.122807e+09         2023-05-10  Latin America & Caribbean
## 231 9.563327e+08         2023-05-10        East Asia & Pacific
## 232 9.432698e+08         2023-05-10  Latin America & Caribbean
## 233 9.041815e+08         2023-05-10  Latin America & Caribbean
## 234 8.608407e+08         2023-05-10  Latin America & Caribbean
## 235 8.438424e+08         2023-05-10        East Asia & Pacific
## 236 7.090000e+08         2023-05-10        East Asia & Pacific
## 237 5.541815e+08         2023-05-10  Latin America & Caribbean
## 238 5.266538e+08         2023-05-10         Sub-Saharan Africa
## 239 4.692313e+08         2023-05-10        East Asia & Pacific
## 240 4.040289e+08         2023-05-10        East Asia & Pacific
## 241 2.595387e+08         2023-05-10        East Asia & Pacific
## 242 2.178000e+08         2023-05-10        East Asia & Pacific
## 243 2.070312e+08         2023-05-10        East Asia & Pacific
## 244 1.332189e+08         2023-05-10        East Asia & Pacific
## 245 6.310096e+07         2023-05-10        East Asia & Pacific
##                 capital  longitude   latitude              income
## 1                                                      Aggregates
## 2                  <NA>       <NA>       <NA>                <NA>
## 3                                                      Aggregates
## 4                                                      Aggregates
## 5                                                      Aggregates
## 6                                                      Aggregates
## 7                                                      Aggregates
## 8                                                      Aggregates
## 9                                                      Aggregates
## 10                 <NA>       <NA>       <NA>                <NA>
## 11                                                     Aggregates
## 12                                                     Aggregates
## 13                                                     Aggregates
## 14      Washington D.C.    -77.032    38.8895         High income
## 15                                                     Aggregates
## 16                                                     Aggregates
## 17              Beijing    116.286    40.0495 Upper middle income
## 18                                                     Aggregates
## 19                                                     Aggregates
## 20                                                     Aggregates
## 21                 <NA>       <NA>       <NA>                <NA>
## 22                 <NA>       <NA>       <NA>                <NA>
## 23                                                     Aggregates
## 24                Tokyo     139.77      35.67         High income
## 25                                                     Aggregates
## 26                                                     Aggregates
## 27               Berlin    13.4115    52.5235         High income
## 28                                                     Aggregates
## 29                                                     Aggregates
## 30                                                     Aggregates
## 31                                                     Aggregates
## 32            New Delhi     77.225    28.6353 Lower middle income
## 33               London  -0.126236    51.5002         High income
## 34                Paris    2.35097    48.8566         High income
## 35                                                     Aggregates
## 36                                                     Aggregates
## 37                 Rome    12.4823    41.8955         High income
## 38               Ottawa   -75.6919    45.4215         High income
## 39                 <NA>       <NA>       <NA>                <NA>
## 40                                                     Aggregates
## 41                                                     Aggregates
## 42                                                     Aggregates
## 43                Seoul    126.957    37.5323         High income
## 44                                                     Aggregates
## 45               Moscow    37.6176    55.7558 Upper middle income
## 46             Brasilia   -47.9292   -15.7801 Upper middle income
## 47             Canberra    149.129    -35.282         High income
## 48                                                     Aggregates
## 49                                                     Aggregates
## 50                                                     Aggregates
## 51                                                     Aggregates
## 52               Madrid   -3.70327    40.4167         High income
## 53                                                     Aggregates
## 54          Mexico City   -99.1276     19.427 Upper middle income
## 55              Jakarta     106.83   -6.19752 Lower middle income
## 56                                                     Aggregates
## 57                                                     Aggregates
## 58            Amsterdam    4.89095    52.3738         High income
## 59                                                     Aggregates
## 60                                                     Aggregates
## 61               Riyadh    46.6977    24.6748         High income
## 62               Ankara    32.3606    39.7153 Upper middle income
## 63                 Bern    7.44821     46.948         High income
## 64               Warsaw      21.02      52.26         High income
## 65            Stockholm    18.0645    59.3327         High income
## 66             Brussels    4.36761    50.8371         High income
## 67                 <NA>       <NA>       <NA>                <NA>
## 68                                                     Aggregates
## 69              Bangkok    100.521    13.7308 Upper middle income
## 70               Dublin   -6.26749    53.3441         High income
## 71                         35.2035    31.7717         High income
## 72         Buenos Aires   -58.4173   -34.6118 Upper middle income
## 73                 Oslo    10.7387    59.9138         High income
## 74               Vienna    16.3798    48.2201         High income
## 75                                                     Aggregates
## 76                Abuja    7.48906    9.05804 Lower middle income
## 77             Pretoria    28.1871    -25.746 Upper middle income
## 78                Dhaka    90.4113    23.7055 Lower middle income
## 79            Abu Dhabi    54.3705    24.4764         High income
## 80                Cairo    31.2461    30.0982 Lower middle income
## 81           Copenhagen    12.5681    55.6763         High income
## 82            Singapore     103.85    1.28941         High income
## 83               Manila    121.035    14.5515 Lower middle income
## 84         Kuala Lumpur    101.684    3.12433 Upper middle income
## 85                         114.109    22.3964         High income
## 86                Hanoi    105.825    21.0069 Lower middle income
## 87               Tehran    51.4447    35.6878 Lower middle income
## 88            Islamabad       72.8    30.5167 Lower middle income
## 89             Santiago   -70.6475    -33.475         High income
## 90               Bogota    -74.082    4.60987 Upper middle income
## 91             Helsinki    24.9525    60.1608         High income
## 92            Bucharest    26.0979    44.4479         High income
## 93                 <NA>       <NA>       <NA>                <NA>
## 94               Lisbon   -9.13552    38.7072         High income
## 95           Wellington    174.776   -41.2865         High income
## 96                 Lima   -77.0465   -12.0931 Upper middle income
## 97               Athens    23.7166    37.9792         High income
## 98              Baghdad     44.394    33.3302 Upper middle income
## 99                 Kiev    30.5038    50.4536 Lower middle income
## 100              Astana    71.4382    51.1879 Upper middle income
## 101            Budapest    19.0408    47.4984         High income
## 102                Doha    51.5082    25.2948         High income
## 103             Algiers    3.05097    36.7397 Lower middle income
## 104               Rabat    -6.8704    33.9905 Lower middle income
## 105          Bratislava    17.1073    48.1484         High income
## 106         Addis Ababa    38.7468    9.02274          Low income
## 107             Nairobi    36.8126   -1.27975 Lower middle income
## 108            San Juan        -66      18.23         High income
## 109               Quito   -78.5243  -0.229498 Upper middle income
## 110       Santo Domingo   -69.8908     18.479 Upper middle income
## 111             Colombo    79.8528    6.92148 Lower middle income
## 112              Muscat    58.5874    23.6105         High income
## 113      Guatemala City   -90.5328    14.6248 Upper middle income
## 114          Luxembourg     6.1296      49.61         High income
## 115               Sofia    23.3238    42.7105 Upper middle income
## 116               Accra   -0.20795    5.57045 Lower middle income
## 117                                                    Aggregates
## 118        Yamoussoukro    -4.0305      5.332 Lower middle income
## 119            Tashkent     69.269    41.3052 Lower middle income
## 120              Zagreb    15.9614    45.8069         High income
## 121               Minsk    27.5766    53.9678 Upper middle income
## 122              Dodoma    35.7382   -6.17486 Lower middle income
## 123              Luanda     13.242   -8.81155 Lower middle income
## 124             Vilnius    25.2799    54.6896         High income
## 125           Naypyidaw    95.9562     21.914 Lower middle income
## 126            San Jose   -84.0089    9.63701 Upper middle income
## 127         Panama City   -79.5188    8.99427         High income
## 128            Belgrade    20.4656    44.8024 Upper middle income
## 129           Ljubljana    14.5044    46.0546         High income
## 130          Montevideo   -56.0675   -34.8941         High income
## 131            Kinshasa    15.3222     -4.325          Low income
## 132                Baku    49.8932    40.3834 Upper middle income
## 133               Tunis      10.21    36.7899 Lower middle income
## 134               Amman    35.9263    31.9497 Upper middle income
## 135             Yaounde    11.5174     3.8721 Lower middle income
## 136             Tripoli    13.1072    32.8578 Upper middle income
## 137             Kampala    32.5729   0.314269          Low income
## 138              La Paz   -66.1936   -13.9908 Lower middle income
## 139                Riga    24.1048    56.9465         High income
## 140            Asuncion   -57.6362   -25.3005 Upper middle income
## 141              Manama    50.5354    26.1921         High income
## 142             Tallinn    24.7586    59.4392         High income
## 143           Kathmandu    85.3157    27.6939 Lower middle income
## 144            Khartoum    32.5363    15.5932          Low income
## 145                         113.55    22.1667         High income
## 146        San Salvador   -89.2073    13.7034 Lower middle income
## 147         Tegucigalpa   -87.4667    15.1333 Lower middle income
## 148             Nicosia    33.3736    35.1676         High income
## 149              Harare    31.0672   -17.8312 Lower middle income
## 150               Dakar   -17.4734    14.7247 Lower middle income
## 151          Phnom Penh    104.874    11.5556 Lower middle income
## 152        Port Moresby    147.194   -9.47357 Lower middle income
## 153           Reykjavik   -21.8952    64.1353         High income
## 154       Port-of-Spain   -61.4789    10.6596         High income
## 155            Sarajevo    18.4214    43.8607 Upper middle income
## 156              Beirut    35.5134    33.8872 Lower middle income
## 157              Lusaka    28.2937   -15.3982          Low income
## 158      Port-au-Prince   -72.3288    18.5392 Lower middle income
## 159          Libreville    9.45162    0.38832 Upper middle income
## 160         Ouagadougou   -1.53395    12.3605          Low income
## 161              Bamako   -7.50034    13.5667          Low income
## 162           Vientiane    102.177    18.5826 Lower middle income
## 163             Tbilisi     44.793      41.71 Upper middle income
## 164              Tirane    19.8172    41.3317 Upper middle income
## 165                                           Lower middle income
## 166            Gaborone    25.9201   -24.6544 Upper middle income
## 167            Valletta    14.5189    35.9042         High income
## 168          Porto-Novo     2.6323     6.4779 Lower middle income
## 169             Conakry      -13.7    9.51667          Low income
## 170              Maputo    32.5713   -25.9664          Low income
## 171         Ulaanbaatar    106.937    47.9129 Lower middle income
## 172              Niamey     2.1073     13.514          Low income
## 173               Kabul    69.1761    34.5228          Low income
## 174            Kingston    -76.792    17.9927 Upper middle income
## 175        Antananarivo    45.7167   -20.4667          Low income
## 176             Managua   -86.2734    12.1475 Lower middle income
## 177 Bandar Seri Begawan    114.946    4.94199         High income
## 178             Yerevan     44.509    40.1596 Upper middle income
## 179              Skopje    21.4361    42.0024 Upper middle income
## 180            Chisinau    28.8497    47.0167 Upper middle income
## 181         Brazzaville    15.2662    -4.2767 Lower middle income
## 182            Lilongwe    33.7703   -13.9899          Low income
## 183            Windhoek    17.0931   -22.5648 Upper middle income
## 184              Malabo     8.7741     3.7523 Upper middle income
## 185           N'Djamena    15.0445    12.1048          Low income
## 186          Port Louis    57.4977   -20.1605 Upper middle income
## 187              Nassau    -77.339    25.0661         High income
## 188              Kigali    30.0587   -1.95325          Low income
## 189             Noum'ea    166.464   -22.2677         High income
## 190          Nouakchott   -15.9824    18.2367 Lower middle income
## 191                                                    Aggregates
## 192            Pristina     20.926     42.565 Upper middle income
## 193            Dushanbe    68.7864    38.5878 Lower middle income
## 194              Monaco    7.41891    43.7325         High income
## 195             Bishkek    74.6057    42.8851 Lower middle income
## 196                Lome     1.2255     6.1228          Low income
## 197          Georgetown   -58.1548    6.80461 Upper middle income
## 198           Mogadishu    45.3254    2.07515          Low income
## 199            Hamilton    -64.706    32.3293         High income
## 200               Agana    144.794    13.4443         High income
## 201             Papeete    -149.57    -17.535         High income
## 202         George Town   -81.3857    19.3022         High income
## 203           Podgorica    19.2595    42.4602 Upper middle income
## 204                Male    73.5109     4.1742 Upper middle income
## 205          Bridgetown   -59.6105    13.0935         High income
## 206             Mbabane    31.4659   -26.5225 Lower middle income
## 207                Suva    178.399   -18.1149 Upper middle income
## 208            Freetown   -13.2134     8.4821          Low income
## 209            Torshavn   -6.91181    61.8926         High income
## 210                Dili    125.567   -8.56667 Lower middle income
## 211            Monrovia   -10.7957    6.30039          Low income
## 212            Djibouti    43.1425    11.5806 Lower middle income
## 213    Andorra la Vella     1.5218    42.5075         High income
## 214          Oranjestad   -70.0167    12.5167         High income
## 215          Paramaribo   -55.1679     5.8232 Upper middle income
## 216           Bujumbura    29.3639    -3.3784          Low income
## 217          Willemstad                               High income
## 218             Thimphu    89.6177    27.5768 Lower middle income
## 219              Bangui    21.6407    5.63056          Low income
## 220              Maseru    27.7167   -29.5208 Lower middle income
## 221            Belmopan   -88.7713    17.2534 Upper middle income
## 222              Banjul   -16.5885    13.4495          Low income
## 223               Praia   -23.5087    14.9218 Lower middle income
## 224            Castries   -60.9832         14 Upper middle income
## 225              Bissau   -15.1804    11.8037          Low income
## 226             Honiara    159.949   -9.42676 Lower middle income
## 227        Saint John's   -61.8456    17.1175         High income
## 228            Victoria    55.4466    -4.6309         High income
## 229              Moroni    43.2418   -11.6986 Lower middle income
## 230      Saint George's   -61.7449    12.0653 Upper middle income
## 231           Port-Vila    168.321   -17.7404 Lower middle income
## 232          Grand Turk -71.141389 21.4602778         High income
## 233           Kingstown   -61.2653    13.2035 Upper middle income
## 234          Basseterre   -62.7309       17.3         High income
## 235                Apia   -171.752   -13.8314 Lower middle income
## 236           Pago Pago   -170.691   -14.2846 Upper middle income
## 237              Roseau     -61.39    15.2976 Upper middle income
## 238            Sao Tome     6.6071    0.20618 Lower middle income
## 239          Nuku'alofa   -175.216    -21.136 Upper middle income
## 240             Palikir    158.185    6.91771 Lower middle income
## 241              Majuro    171.135    7.11046 Upper middle income
## 242               Koror    134.479    7.34194 Upper middle income
## 243              Tarawa    172.979    1.32905 Lower middle income
## 244      Yaren District 166.920867    -0.5477         High income
## 245            Funafuti 179.089567 -8.6314877 Upper middle income
##            lending
## 1       Aggregates
## 2             <NA>
## 3       Aggregates
## 4       Aggregates
## 5       Aggregates
## 6       Aggregates
## 7       Aggregates
## 8       Aggregates
## 9       Aggregates
## 10            <NA>
## 11      Aggregates
## 12      Aggregates
## 13      Aggregates
## 14  Not classified
## 15      Aggregates
## 16      Aggregates
## 17            IBRD
## 18      Aggregates
## 19      Aggregates
## 20      Aggregates
## 21            <NA>
## 22            <NA>
## 23      Aggregates
## 24  Not classified
## 25      Aggregates
## 26      Aggregates
## 27  Not classified
## 28      Aggregates
## 29      Aggregates
## 30      Aggregates
## 31      Aggregates
## 32            IBRD
## 33  Not classified
## 34  Not classified
## 35      Aggregates
## 36      Aggregates
## 37  Not classified
## 38  Not classified
## 39            <NA>
## 40      Aggregates
## 41      Aggregates
## 42      Aggregates
## 43  Not classified
## 44      Aggregates
## 45            IBRD
## 46            IBRD
## 47  Not classified
## 48      Aggregates
## 49      Aggregates
## 50      Aggregates
## 51      Aggregates
## 52  Not classified
## 53      Aggregates
## 54            IBRD
## 55            IBRD
## 56      Aggregates
## 57      Aggregates
## 58  Not classified
## 59      Aggregates
## 60      Aggregates
## 61  Not classified
## 62            IBRD
## 63  Not classified
## 64            IBRD
## 65  Not classified
## 66  Not classified
## 67            <NA>
## 68      Aggregates
## 69            IBRD
## 70  Not classified
## 71  Not classified
## 72            IBRD
## 73  Not classified
## 74  Not classified
## 75      Aggregates
## 76           Blend
## 77            IBRD
## 78             IDA
## 79  Not classified
## 80            IBRD
## 81  Not classified
## 82  Not classified
## 83            IBRD
## 84            IBRD
## 85  Not classified
## 86            IBRD
## 87            IBRD
## 88           Blend
## 89            IBRD
## 90            IBRD
## 91  Not classified
## 92            IBRD
## 93            <NA>
## 94  Not classified
## 95  Not classified
## 96            IBRD
## 97  Not classified
## 98            IBRD
## 99            IBRD
## 100           IBRD
## 101 Not classified
## 102 Not classified
## 103           IBRD
## 104           IBRD
## 105 Not classified
## 106            IDA
## 107          Blend
## 108 Not classified
## 109           IBRD
## 110           IBRD
## 111           IBRD
## 112 Not classified
## 113           IBRD
## 114 Not classified
## 115           IBRD
## 116            IDA
## 117     Aggregates
## 118            IDA
## 119          Blend
## 120           IBRD
## 121           IBRD
## 122            IDA
## 123           IBRD
## 124 Not classified
## 125            IDA
## 126           IBRD
## 127           IBRD
## 128           IBRD
## 129 Not classified
## 130           IBRD
## 131            IDA
## 132           IBRD
## 133           IBRD
## 134           IBRD
## 135          Blend
## 136           IBRD
## 137            IDA
## 138           IBRD
## 139 Not classified
## 140           IBRD
## 141 Not classified
## 142 Not classified
## 143            IDA
## 144            IDA
## 145 Not classified
## 146           IBRD
## 147            IDA
## 148 Not classified
## 149          Blend
## 150            IDA
## 151            IDA
## 152          Blend
## 153 Not classified
## 154           IBRD
## 155           IBRD
## 156           IBRD
## 157            IDA
## 158            IDA
## 159           IBRD
## 160            IDA
## 161            IDA
## 162            IDA
## 163           IBRD
## 164           IBRD
## 165 Not classified
## 166           IBRD
## 167 Not classified
## 168            IDA
## 169            IDA
## 170            IDA
## 171           IBRD
## 172            IDA
## 173            IDA
## 174           IBRD
## 175            IDA
## 176            IDA
## 177 Not classified
## 178           IBRD
## 179           IBRD
## 180           IBRD
## 181          Blend
## 182            IDA
## 183           IBRD
## 184           IBRD
## 185            IDA
## 186           IBRD
## 187 Not classified
## 188            IDA
## 189 Not classified
## 190            IDA
## 191     Aggregates
## 192            IDA
## 193            IDA
## 194 Not classified
## 195            IDA
## 196            IDA
## 197            IDA
## 198            IDA
## 199 Not classified
## 200 Not classified
## 201 Not classified
## 202 Not classified
## 203           IBRD
## 204            IDA
## 205 Not classified
## 206           IBRD
## 207          Blend
## 208            IDA
## 209 Not classified
## 210          Blend
## 211            IDA
## 212            IDA
## 213 Not classified
## 214 Not classified
## 215           IBRD
## 216            IDA
## 217 Not classified
## 218            IDA
## 219            IDA
## 220            IDA
## 221           IBRD
## 222            IDA
## 223          Blend
## 224          Blend
## 225            IDA
## 226            IDA
## 227           IBRD
## 228           IBRD
## 229            IDA
## 230          Blend
## 231            IDA
## 232 Not classified
## 233          Blend
## 234           IBRD
## 235            IDA
## 236 Not classified
## 237          Blend
## 238            IDA
## 239            IDA
## 240            IDA
## 241            IDA
## 242           IBRD
## 243            IDA
## 244           IBRD
## 245            IDA

2021年のGDPの降順での表示(2)

最初に、World と表示され、グループや、カテゴリーのデータもあるようですから、それを、まず、削除することが必要です。region の列を見ると、World などは、Aggregates となっているので、そのようなものを削除すればよさそうです。数値の大きい順に並べたいので、desc 降順(descending order)にします。

df_gdp %>% filter(year == 2021, region != "Aggregates") %>% 
  drop_na(gdp) %>% arrange(desc(gdp))
##                            country iso2c iso3c year          gdp status
## 1                    United States    US   USA 2021 2.331508e+13       
## 2                            China    CN   CHN 2021 1.773406e+13       
## 3                            Japan    JP   JPN 2021 4.940878e+12       
## 4                          Germany    DE   DEU 2021 4.259935e+12       
## 5                            India    IN   IND 2021 3.176295e+12       
## 6                   United Kingdom    GB   GBR 2021 3.131378e+12       
## 7                           France    FR   FRA 2021 2.957880e+12       
## 8                            Italy    IT   ITA 2021 2.107703e+12       
## 9                           Canada    CA   CAN 2021 1.988336e+12       
## 10                     Korea, Rep.    KR   KOR 2021 1.810956e+12       
## 11              Russian Federation    RU   RUS 2021 1.778783e+12       
## 12                          Brazil    BR   BRA 2021 1.608981e+12       
## 13                       Australia    AU   AUS 2021 1.552667e+12       
## 14                           Spain    ES   ESP 2021 1.427381e+12       
## 15                          Mexico    MX   MEX 2021 1.272839e+12       
## 16                       Indonesia    ID   IDN 2021 1.186093e+12       
## 17                     Netherlands    NL   NLD 2021 1.012847e+12       
## 18                    Saudi Arabia    SA   SAU 2021 8.335412e+11       
## 19                         Turkiye    TR   TUR 2021 8.190352e+11       
## 20                     Switzerland    CH   CHE 2021 8.006402e+11       
## 21                          Poland    PL   POL 2021 6.794448e+11       
## 22                          Sweden    SE   SWE 2021 6.356638e+11       
## 23                         Belgium    BE   BEL 2021 5.941042e+11       
## 24                        Thailand    TH   THA 2021 5.059470e+11       
## 25                         Ireland    IE   IRL 2021 5.041826e+11       
## 26                          Israel    IL   ISR 2021 4.885265e+11       
## 27                       Argentina    AR   ARG 2021 4.872273e+11       
## 28                          Norway    NO   NOR 2021 4.821749e+11       
## 29                         Austria    AT   AUT 2021 4.803684e+11       
## 30                         Nigeria    NG   NGA 2021 4.408336e+11       
## 31                    South Africa    ZA   ZAF 2021 4.190150e+11       
## 32                      Bangladesh    BD   BGD 2021 4.162649e+11       
## 33            United Arab Emirates    AE   ARE 2021 4.150216e+11       
## 34                Egypt, Arab Rep.    EG   EGY 2021 4.041428e+11       
## 35                         Denmark    DK   DNK 2021 3.983033e+11       
## 36                       Singapore    SG   SGP 2021 3.969869e+11       
## 37                     Philippines    PH   PHL 2021 3.940864e+11       
## 38                        Malaysia    MY   MYS 2021 3.729810e+11       
## 39            Hong Kong SAR, China    HK   HKG 2021 3.691764e+11       
## 40                         Vietnam    VN   VNM 2021 3.661376e+11       
## 41              Iran, Islamic Rep.    IR   IRN 2021 3.597132e+11       
## 42                        Pakistan    PK   PAK 2021 3.482625e+11       
## 43                           Chile    CL   CHL 2021 3.170585e+11       
## 44                        Colombia    CO   COL 2021 3.144641e+11       
## 45                         Finland    FI   FIN 2021 2.973019e+11       
## 46                         Romania    RO   ROU 2021 2.840876e+11       
## 47                        Portugal    PT   PRT 2021 2.536631e+11       
## 48                     New Zealand    NZ   NZL 2021 2.498857e+11       
## 49                            Peru    PE   PER 2021 2.232495e+11       
## 50                          Greece    GR   GRC 2021 2.148739e+11       
## 51                            Iraq    IQ   IRQ 2021 2.078893e+11       
## 52                         Ukraine    UA   UKR 2021 2.000855e+11       
## 53                      Kazakhstan    KZ   KAZ 2021 1.971123e+11       
## 54                         Hungary    HU   HUN 2021 1.818480e+11       
## 55                           Qatar    QA   QAT 2021 1.796772e+11       
## 56                         Algeria    DZ   DZA 2021 1.630444e+11       
## 57                         Morocco    MA   MAR 2021 1.428663e+11       
## 58                 Slovak Republic    SK   SVK 2021 1.165271e+11       
## 59                        Ethiopia    ET   ETH 2021 1.112711e+11       
## 60                           Kenya    KE   KEN 2021 1.103471e+11       
## 61                     Puerto Rico    PR   PRI 2021 1.065257e+11       
## 62                         Ecuador    EC   ECU 2021 1.061659e+11       
## 63              Dominican Republic    DO   DOM 2021 9.424345e+10       
## 64                       Sri Lanka    LK   LKA 2021 8.892726e+10       
## 65                            Oman    OM   OMN 2021 8.819198e+10       
## 66                       Guatemala    GT   GTM 2021 8.598575e+10       
## 67                      Luxembourg    LU   LUX 2021 8.550624e+10       
## 68                        Bulgaria    BG   BGR 2021 8.405631e+10       
## 69                           Ghana    GH   GHA 2021 7.759428e+10       
## 70                   Cote d'Ivoire    CI   CIV 2021 7.004319e+10       
## 71                      Uzbekistan    UZ   UZB 2021 6.923890e+10       
## 72                         Croatia    HR   HRV 2021 6.895508e+10       
## 73                         Belarus    BY   BLR 2021 6.820538e+10       
## 74                        Tanzania    TZ   TZA 2021 6.784105e+10       
## 75                          Angola    AO   AGO 2021 6.740429e+10       
## 76                       Lithuania    LT   LTU 2021 6.644526e+10       
## 77                         Myanmar    MM   MMR 2021 6.509175e+10       
## 78                      Costa Rica    CR   CRI 2021 6.428244e+10       
## 79                          Panama    PA   PAN 2021 6.360510e+10       
## 80                          Serbia    RS   SRB 2021 6.308205e+10       
## 81                        Slovenia    SI   SVN 2021 6.174859e+10       
## 82                         Uruguay    UY   URY 2021 5.931948e+10       
## 83                Congo, Dem. Rep.    CD   COD 2021 5.535097e+10       
## 84                      Azerbaijan    AZ   AZE 2021 5.462218e+10       
## 85                         Tunisia    TN   TUN 2021 4.668674e+10       
## 86                          Jordan    JO   JOR 2021 4.574427e+10       
## 87                        Cameroon    CM   CMR 2021 4.533828e+10       
## 88                           Libya    LY   LBY 2021 4.281747e+10       
## 89                          Uganda    UG   UGA 2021 4.052979e+10       
## 90                         Bolivia    BO   BOL 2021 4.040821e+10       
## 91                          Latvia    LV   LVA 2021 3.985350e+10       
## 92                        Paraguay    PY   PRY 2021 3.949543e+10       
## 93                         Bahrain    BH   BHR 2021 3.886866e+10       
## 94                         Estonia    EE   EST 2021 3.719117e+10       
## 95                           Nepal    NP   NPL 2021 3.628883e+10       
## 96                           Sudan    SD   SDN 2021 3.432606e+10       
## 97                Macao SAR, China    MO   MAC 2021 3.012391e+10       
## 98                     El Salvador    SV   SLV 2021 2.873694e+10       
## 99                        Honduras    HN   HND 2021 2.848867e+10       
## 100                         Cyprus    CY   CYP 2021 2.840787e+10       
## 101                       Zimbabwe    ZW   ZWE 2021 2.837124e+10       
## 102                        Senegal    SN   SEN 2021 2.762539e+10       
## 103                       Cambodia    KH   KHM 2021 2.696106e+10       
## 104               Papua New Guinea    PG   PNG 2021 2.659431e+10       
## 105                        Iceland    IS   ISL 2021 2.560242e+10       
## 106            Trinidad and Tobago    TT   TTO 2021 2.446020e+10       
## 107         Bosnia and Herzegovina    BA   BIH 2021 2.336536e+10       
## 108                        Lebanon    LB   LBN 2021 2.313194e+10       
## 109                         Zambia    ZM   ZMB 2021 2.214763e+10       
## 110                          Haiti    HT   HTI 2021 2.094439e+10       
## 111                          Gabon    GA   GAB 2021 2.021684e+10       
## 112                   Burkina Faso    BF   BFA 2021 1.973762e+10       
## 113                           Mali    ML   MLI 2021 1.914046e+10       
## 114                        Lao PDR    LA   LAO 2021 1.882715e+10       
## 115                        Georgia    GE   GEO 2021 1.862937e+10       
## 116                        Albania    AL   ALB 2021 1.825579e+10       
## 117             West Bank and Gaza    PS   PSE 2021 1.803680e+10       
## 118                       Botswana    BW   BWA 2021 1.761479e+10       
## 119                          Malta    MT   MLT 2021 1.736404e+10       
## 120                          Benin    BJ   BEN 2021 1.714492e+10       
## 121                         Guinea    GN   GIN 2021 1.609182e+10       
## 122                     Mozambique    MZ   MOZ 2021 1.577676e+10       
## 123                       Mongolia    MN   MNG 2021 1.528644e+10       
## 124                          Niger    NE   NER 2021 1.491500e+10       
## 125                    Afghanistan    AF   AFG 2021 1.478686e+10       
## 126                        Jamaica    JM   JAM 2021 1.465759e+10       
## 127                     Madagascar    MG   MDG 2021 1.447260e+10       
## 128                      Nicaragua    NI   NIC 2021 1.401302e+10       
## 129              Brunei Darussalam    BN   BRN 2021 1.400657e+10       
## 130                        Armenia    AM   ARM 2021 1.386141e+10       
## 131                North Macedonia    MK   MKD 2021 1.382505e+10       
## 132                        Moldova    MD   MDA 2021 1.367922e+10       
## 133                    Congo, Rep.    CG   COG 2021 1.336623e+10       
## 134                         Malawi    MW   MWI 2021 1.262672e+10       
## 135                        Namibia    NA   NAM 2021 1.231060e+10       
## 136              Equatorial Guinea    GQ   GNQ 2021 1.226939e+10       
## 137                           Chad    TD   TCD 2021 1.177998e+10       
## 138                      Mauritius    MU   MUS 2021 1.152904e+10       
## 139                   Bahamas, The    BS   BHS 2021 1.120860e+10       
## 140                         Rwanda    RW   RWA 2021 1.107036e+10       
## 141                  New Caledonia    NC   NCL 2021 1.007135e+10       
## 142                     Mauritania    MR   MRT 2021 9.996250e+09       
## 143                         Kosovo    XK   XKX 2021 9.412034e+09       
## 144                     Tajikistan    TJ   TJK 2021 8.746271e+09       
## 145                         Monaco    MC   MCO 2021 8.596097e+09       
## 146                Kyrgyz Republic    KG   KGZ 2021 8.543424e+09       
## 147                           Togo    TG   TGO 2021 8.413201e+09       
## 148                         Guyana    GY   GUY 2021 8.044499e+09       
## 149                        Somalia    SO   SOM 2021 7.628000e+09       
## 150                        Bermuda    BM   BMU 2021 7.286607e+09       
## 151                           Guam    GU   GUM 2021 6.123000e+09       
## 152               French Polynesia    PF   PYF 2021 6.054677e+09       
## 153                 Cayman Islands    KY   CYM 2021 5.898450e+09       
## 154                     Montenegro    ME   MNE 2021 5.861268e+09       
## 155                       Maldives    MV   MDV 2021 5.405576e+09       
## 156                       Barbados    BB   BRB 2021 4.843800e+09       
## 157                       Eswatini    SZ   SWZ 2021 4.743335e+09       
## 158                           Fiji    FJ   FJI 2021 4.296305e+09       
## 159                   Sierra Leone    SL   SLE 2021 4.042238e+09       
## 160                  Faroe Islands    FO   FRO 2021 3.649886e+09       
## 161                    Timor-Leste    TL   TLS 2021 3.621222e+09       
## 162                        Liberia    LR   LBR 2021 3.509000e+09       
## 163                       Djibouti    DJ   DJI 2021 3.482987e+09       
## 164                        Andorra    AD   AND 2021 3.330282e+09       
## 165                          Aruba    AW   ABW 2021 3.126019e+09       
## 166                       Suriname    SR   SUR 2021 2.984706e+09       
## 167                        Burundi    BI   BDI 2021 2.779813e+09       
## 168                        Curacao    CW   CUW 2021 2.699612e+09       
## 169                         Bhutan    BT   BTN 2021 2.539553e+09       
## 170       Central African Republic    CF   CAF 2021 2.516498e+09       
## 171                        Lesotho    LS   LSO 2021 2.496135e+09       
## 172                         Belize    BZ   BLZ 2021 2.491500e+09       
## 173                    Gambia, The    GM   GMB 2021 2.038417e+09       
## 174                     Cabo Verde    CV   CPV 2021 1.936174e+09       
## 175                      St. Lucia    LC   LCA 2021 1.691275e+09       
## 176                  Guinea-Bissau    GW   GNB 2021 1.638518e+09       
## 177                Solomon Islands    SB   SLB 2021 1.631487e+09       
## 178            Antigua and Barbuda    AG   ATG 2021 1.471126e+09       
## 179                     Seychelles    SC   SYC 2021 1.454458e+09       
## 180                        Comoros    KM   COM 2021 1.296090e+09       
## 181                        Grenada    GD   GRD 2021 1.122807e+09       
## 182                        Vanuatu    VU   VUT 2021 9.563327e+08       
## 183       Turks and Caicos Islands    TC   TCA 2021 9.432698e+08       
## 184 St. Vincent and the Grenadines    VC   VCT 2021 9.041815e+08       
## 185            St. Kitts and Nevis    KN   KNA 2021 8.608407e+08       
## 186                          Samoa    WS   WSM 2021 8.438424e+08       
## 187                 American Samoa    AS   ASM 2021 7.090000e+08       
## 188                       Dominica    DM   DMA 2021 5.541815e+08       
## 189          Sao Tome and Principe    ST   STP 2021 5.266538e+08       
## 190                          Tonga    TO   TON 2021 4.692313e+08       
## 191          Micronesia, Fed. Sts.    FM   FSM 2021 4.040289e+08       
## 192               Marshall Islands    MH   MHL 2021 2.595387e+08       
## 193                          Palau    PW   PLW 2021 2.178000e+08       
## 194                       Kiribati    KI   KIR 2021 2.070312e+08       
## 195                          Nauru    NR   NRU 2021 1.332189e+08       
## 196                         Tuvalu    TV   TUV 2021 6.310096e+07       
##     lastupdated                     region             capital  longitude
## 1    2023-05-10              North America     Washington D.C.    -77.032
## 2    2023-05-10        East Asia & Pacific             Beijing    116.286
## 3    2023-05-10        East Asia & Pacific               Tokyo     139.77
## 4    2023-05-10      Europe & Central Asia              Berlin    13.4115
## 5    2023-05-10                 South Asia           New Delhi     77.225
## 6    2023-05-10      Europe & Central Asia              London  -0.126236
## 7    2023-05-10      Europe & Central Asia               Paris    2.35097
## 8    2023-05-10      Europe & Central Asia                Rome    12.4823
## 9    2023-05-10              North America              Ottawa   -75.6919
## 10   2023-05-10        East Asia & Pacific               Seoul    126.957
## 11   2023-05-10      Europe & Central Asia              Moscow    37.6176
## 12   2023-05-10  Latin America & Caribbean            Brasilia   -47.9292
## 13   2023-05-10        East Asia & Pacific            Canberra    149.129
## 14   2023-05-10      Europe & Central Asia              Madrid   -3.70327
## 15   2023-05-10  Latin America & Caribbean         Mexico City   -99.1276
## 16   2023-05-10        East Asia & Pacific             Jakarta     106.83
## 17   2023-05-10      Europe & Central Asia           Amsterdam    4.89095
## 18   2023-05-10 Middle East & North Africa              Riyadh    46.6977
## 19   2023-05-10      Europe & Central Asia              Ankara    32.3606
## 20   2023-05-10      Europe & Central Asia                Bern    7.44821
## 21   2023-05-10      Europe & Central Asia              Warsaw      21.02
## 22   2023-05-10      Europe & Central Asia           Stockholm    18.0645
## 23   2023-05-10      Europe & Central Asia            Brussels    4.36761
## 24   2023-05-10        East Asia & Pacific             Bangkok    100.521
## 25   2023-05-10      Europe & Central Asia              Dublin   -6.26749
## 26   2023-05-10 Middle East & North Africa                        35.2035
## 27   2023-05-10  Latin America & Caribbean        Buenos Aires   -58.4173
## 28   2023-05-10      Europe & Central Asia                Oslo    10.7387
## 29   2023-05-10      Europe & Central Asia              Vienna    16.3798
## 30   2023-05-10         Sub-Saharan Africa               Abuja    7.48906
## 31   2023-05-10         Sub-Saharan Africa            Pretoria    28.1871
## 32   2023-05-10                 South Asia               Dhaka    90.4113
## 33   2023-05-10 Middle East & North Africa           Abu Dhabi    54.3705
## 34   2023-05-10 Middle East & North Africa               Cairo    31.2461
## 35   2023-05-10      Europe & Central Asia          Copenhagen    12.5681
## 36   2023-05-10        East Asia & Pacific           Singapore     103.85
## 37   2023-05-10        East Asia & Pacific              Manila    121.035
## 38   2023-05-10        East Asia & Pacific        Kuala Lumpur    101.684
## 39   2023-05-10        East Asia & Pacific                        114.109
## 40   2023-05-10        East Asia & Pacific               Hanoi    105.825
## 41   2023-05-10 Middle East & North Africa              Tehran    51.4447
## 42   2023-05-10                 South Asia           Islamabad       72.8
## 43   2023-05-10  Latin America & Caribbean            Santiago   -70.6475
## 44   2023-05-10  Latin America & Caribbean              Bogota    -74.082
## 45   2023-05-10      Europe & Central Asia            Helsinki    24.9525
## 46   2023-05-10      Europe & Central Asia           Bucharest    26.0979
## 47   2023-05-10      Europe & Central Asia              Lisbon   -9.13552
## 48   2023-05-10        East Asia & Pacific          Wellington    174.776
## 49   2023-05-10  Latin America & Caribbean                Lima   -77.0465
## 50   2023-05-10      Europe & Central Asia              Athens    23.7166
## 51   2023-05-10 Middle East & North Africa             Baghdad     44.394
## 52   2023-05-10      Europe & Central Asia                Kiev    30.5038
## 53   2023-05-10      Europe & Central Asia              Astana    71.4382
## 54   2023-05-10      Europe & Central Asia            Budapest    19.0408
## 55   2023-05-10 Middle East & North Africa                Doha    51.5082
## 56   2023-05-10 Middle East & North Africa             Algiers    3.05097
## 57   2023-05-10 Middle East & North Africa               Rabat    -6.8704
## 58   2023-05-10      Europe & Central Asia          Bratislava    17.1073
## 59   2023-05-10         Sub-Saharan Africa         Addis Ababa    38.7468
## 60   2023-05-10         Sub-Saharan Africa             Nairobi    36.8126
## 61   2023-05-10  Latin America & Caribbean            San Juan        -66
## 62   2023-05-10  Latin America & Caribbean               Quito   -78.5243
## 63   2023-05-10  Latin America & Caribbean       Santo Domingo   -69.8908
## 64   2023-05-10                 South Asia             Colombo    79.8528
## 65   2023-05-10 Middle East & North Africa              Muscat    58.5874
## 66   2023-05-10  Latin America & Caribbean      Guatemala City   -90.5328
## 67   2023-05-10      Europe & Central Asia          Luxembourg     6.1296
## 68   2023-05-10      Europe & Central Asia               Sofia    23.3238
## 69   2023-05-10         Sub-Saharan Africa               Accra   -0.20795
## 70   2023-05-10         Sub-Saharan Africa        Yamoussoukro    -4.0305
## 71   2023-05-10      Europe & Central Asia            Tashkent     69.269
## 72   2023-05-10      Europe & Central Asia              Zagreb    15.9614
## 73   2023-05-10      Europe & Central Asia               Minsk    27.5766
## 74   2023-05-10         Sub-Saharan Africa              Dodoma    35.7382
## 75   2023-05-10         Sub-Saharan Africa              Luanda     13.242
## 76   2023-05-10      Europe & Central Asia             Vilnius    25.2799
## 77   2023-05-10        East Asia & Pacific           Naypyidaw    95.9562
## 78   2023-05-10  Latin America & Caribbean            San Jose   -84.0089
## 79   2023-05-10  Latin America & Caribbean         Panama City   -79.5188
## 80   2023-05-10      Europe & Central Asia            Belgrade    20.4656
## 81   2023-05-10      Europe & Central Asia           Ljubljana    14.5044
## 82   2023-05-10  Latin America & Caribbean          Montevideo   -56.0675
## 83   2023-05-10         Sub-Saharan Africa            Kinshasa    15.3222
## 84   2023-05-10      Europe & Central Asia                Baku    49.8932
## 85   2023-05-10 Middle East & North Africa               Tunis      10.21
## 86   2023-05-10 Middle East & North Africa               Amman    35.9263
## 87   2023-05-10         Sub-Saharan Africa             Yaounde    11.5174
## 88   2023-05-10 Middle East & North Africa             Tripoli    13.1072
## 89   2023-05-10         Sub-Saharan Africa             Kampala    32.5729
## 90   2023-05-10  Latin America & Caribbean              La Paz   -66.1936
## 91   2023-05-10      Europe & Central Asia                Riga    24.1048
## 92   2023-05-10  Latin America & Caribbean            Asuncion   -57.6362
## 93   2023-05-10 Middle East & North Africa              Manama    50.5354
## 94   2023-05-10      Europe & Central Asia             Tallinn    24.7586
## 95   2023-05-10                 South Asia           Kathmandu    85.3157
## 96   2023-05-10         Sub-Saharan Africa            Khartoum    32.5363
## 97   2023-05-10        East Asia & Pacific                         113.55
## 98   2023-05-10  Latin America & Caribbean        San Salvador   -89.2073
## 99   2023-05-10  Latin America & Caribbean         Tegucigalpa   -87.4667
## 100  2023-05-10      Europe & Central Asia             Nicosia    33.3736
## 101  2023-05-10         Sub-Saharan Africa              Harare    31.0672
## 102  2023-05-10         Sub-Saharan Africa               Dakar   -17.4734
## 103  2023-05-10        East Asia & Pacific          Phnom Penh    104.874
## 104  2023-05-10        East Asia & Pacific        Port Moresby    147.194
## 105  2023-05-10      Europe & Central Asia           Reykjavik   -21.8952
## 106  2023-05-10  Latin America & Caribbean       Port-of-Spain   -61.4789
## 107  2023-05-10      Europe & Central Asia            Sarajevo    18.4214
## 108  2023-05-10 Middle East & North Africa              Beirut    35.5134
## 109  2023-05-10         Sub-Saharan Africa              Lusaka    28.2937
## 110  2023-05-10  Latin America & Caribbean      Port-au-Prince   -72.3288
## 111  2023-05-10         Sub-Saharan Africa          Libreville    9.45162
## 112  2023-05-10         Sub-Saharan Africa         Ouagadougou   -1.53395
## 113  2023-05-10         Sub-Saharan Africa              Bamako   -7.50034
## 114  2023-05-10        East Asia & Pacific           Vientiane    102.177
## 115  2023-05-10      Europe & Central Asia             Tbilisi     44.793
## 116  2023-05-10      Europe & Central Asia              Tirane    19.8172
## 117  2023-05-10 Middle East & North Africa                               
## 118  2023-05-10         Sub-Saharan Africa            Gaborone    25.9201
## 119  2023-05-10 Middle East & North Africa            Valletta    14.5189
## 120  2023-05-10         Sub-Saharan Africa          Porto-Novo     2.6323
## 121  2023-05-10         Sub-Saharan Africa             Conakry      -13.7
## 122  2023-05-10         Sub-Saharan Africa              Maputo    32.5713
## 123  2023-05-10        East Asia & Pacific         Ulaanbaatar    106.937
## 124  2023-05-10         Sub-Saharan Africa              Niamey     2.1073
## 125  2023-05-10                 South Asia               Kabul    69.1761
## 126  2023-05-10  Latin America & Caribbean            Kingston    -76.792
## 127  2023-05-10         Sub-Saharan Africa        Antananarivo    45.7167
## 128  2023-05-10  Latin America & Caribbean             Managua   -86.2734
## 129  2023-05-10        East Asia & Pacific Bandar Seri Begawan    114.946
## 130  2023-05-10      Europe & Central Asia             Yerevan     44.509
## 131  2023-05-10      Europe & Central Asia              Skopje    21.4361
## 132  2023-05-10      Europe & Central Asia            Chisinau    28.8497
## 133  2023-05-10         Sub-Saharan Africa         Brazzaville    15.2662
## 134  2023-05-10         Sub-Saharan Africa            Lilongwe    33.7703
## 135  2023-05-10         Sub-Saharan Africa            Windhoek    17.0931
## 136  2023-05-10         Sub-Saharan Africa              Malabo     8.7741
## 137  2023-05-10         Sub-Saharan Africa           N'Djamena    15.0445
## 138  2023-05-10         Sub-Saharan Africa          Port Louis    57.4977
## 139  2023-05-10  Latin America & Caribbean              Nassau    -77.339
## 140  2023-05-10         Sub-Saharan Africa              Kigali    30.0587
## 141  2023-05-10        East Asia & Pacific             Noum'ea    166.464
## 142  2023-05-10         Sub-Saharan Africa          Nouakchott   -15.9824
## 143  2023-05-10      Europe & Central Asia            Pristina     20.926
## 144  2023-05-10      Europe & Central Asia            Dushanbe    68.7864
## 145  2023-05-10      Europe & Central Asia              Monaco    7.41891
## 146  2023-05-10      Europe & Central Asia             Bishkek    74.6057
## 147  2023-05-10         Sub-Saharan Africa                Lome     1.2255
## 148  2023-05-10  Latin America & Caribbean          Georgetown   -58.1548
## 149  2023-05-10         Sub-Saharan Africa           Mogadishu    45.3254
## 150  2023-05-10              North America            Hamilton    -64.706
## 151  2023-05-10        East Asia & Pacific               Agana    144.794
## 152  2023-05-10        East Asia & Pacific             Papeete    -149.57
## 153  2023-05-10  Latin America & Caribbean         George Town   -81.3857
## 154  2023-05-10      Europe & Central Asia           Podgorica    19.2595
## 155  2023-05-10                 South Asia                Male    73.5109
## 156  2023-05-10  Latin America & Caribbean          Bridgetown   -59.6105
## 157  2023-05-10         Sub-Saharan Africa             Mbabane    31.4659
## 158  2023-05-10        East Asia & Pacific                Suva    178.399
## 159  2023-05-10         Sub-Saharan Africa            Freetown   -13.2134
## 160  2023-05-10      Europe & Central Asia            Torshavn   -6.91181
## 161  2023-05-10        East Asia & Pacific                Dili    125.567
## 162  2023-05-10         Sub-Saharan Africa            Monrovia   -10.7957
## 163  2023-05-10 Middle East & North Africa            Djibouti    43.1425
## 164  2023-05-10      Europe & Central Asia    Andorra la Vella     1.5218
## 165  2023-05-10  Latin America & Caribbean          Oranjestad   -70.0167
## 166  2023-05-10  Latin America & Caribbean          Paramaribo   -55.1679
## 167  2023-05-10         Sub-Saharan Africa           Bujumbura    29.3639
## 168  2023-05-10  Latin America & Caribbean          Willemstad           
## 169  2023-05-10                 South Asia             Thimphu    89.6177
## 170  2023-05-10         Sub-Saharan Africa              Bangui    21.6407
## 171  2023-05-10         Sub-Saharan Africa              Maseru    27.7167
## 172  2023-05-10  Latin America & Caribbean            Belmopan   -88.7713
## 173  2023-05-10         Sub-Saharan Africa              Banjul   -16.5885
## 174  2023-05-10         Sub-Saharan Africa               Praia   -23.5087
## 175  2023-05-10  Latin America & Caribbean            Castries   -60.9832
## 176  2023-05-10         Sub-Saharan Africa              Bissau   -15.1804
## 177  2023-05-10        East Asia & Pacific             Honiara    159.949
## 178  2023-05-10  Latin America & Caribbean        Saint John's   -61.8456
## 179  2023-05-10         Sub-Saharan Africa            Victoria    55.4466
## 180  2023-05-10         Sub-Saharan Africa              Moroni    43.2418
## 181  2023-05-10  Latin America & Caribbean      Saint George's   -61.7449
## 182  2023-05-10        East Asia & Pacific           Port-Vila    168.321
## 183  2023-05-10  Latin America & Caribbean          Grand Turk -71.141389
## 184  2023-05-10  Latin America & Caribbean           Kingstown   -61.2653
## 185  2023-05-10  Latin America & Caribbean          Basseterre   -62.7309
## 186  2023-05-10        East Asia & Pacific                Apia   -171.752
## 187  2023-05-10        East Asia & Pacific           Pago Pago   -170.691
## 188  2023-05-10  Latin America & Caribbean              Roseau     -61.39
## 189  2023-05-10         Sub-Saharan Africa            Sao Tome     6.6071
## 190  2023-05-10        East Asia & Pacific          Nuku'alofa   -175.216
## 191  2023-05-10        East Asia & Pacific             Palikir    158.185
## 192  2023-05-10        East Asia & Pacific              Majuro    171.135
## 193  2023-05-10        East Asia & Pacific               Koror    134.479
## 194  2023-05-10        East Asia & Pacific              Tarawa    172.979
## 195  2023-05-10        East Asia & Pacific      Yaren District 166.920867
## 196  2023-05-10        East Asia & Pacific            Funafuti 179.089567
##       latitude              income        lending
## 1      38.8895         High income Not classified
## 2      40.0495 Upper middle income           IBRD
## 3        35.67         High income Not classified
## 4      52.5235         High income Not classified
## 5      28.6353 Lower middle income           IBRD
## 6      51.5002         High income Not classified
## 7      48.8566         High income Not classified
## 8      41.8955         High income Not classified
## 9      45.4215         High income Not classified
## 10     37.5323         High income Not classified
## 11     55.7558 Upper middle income           IBRD
## 12    -15.7801 Upper middle income           IBRD
## 13     -35.282         High income Not classified
## 14     40.4167         High income Not classified
## 15      19.427 Upper middle income           IBRD
## 16    -6.19752 Lower middle income           IBRD
## 17     52.3738         High income Not classified
## 18     24.6748         High income Not classified
## 19     39.7153 Upper middle income           IBRD
## 20      46.948         High income Not classified
## 21       52.26         High income           IBRD
## 22     59.3327         High income Not classified
## 23     50.8371         High income Not classified
## 24     13.7308 Upper middle income           IBRD
## 25     53.3441         High income Not classified
## 26     31.7717         High income Not classified
## 27    -34.6118 Upper middle income           IBRD
## 28     59.9138         High income Not classified
## 29     48.2201         High income Not classified
## 30     9.05804 Lower middle income          Blend
## 31     -25.746 Upper middle income           IBRD
## 32     23.7055 Lower middle income            IDA
## 33     24.4764         High income Not classified
## 34     30.0982 Lower middle income           IBRD
## 35     55.6763         High income Not classified
## 36     1.28941         High income Not classified
## 37     14.5515 Lower middle income           IBRD
## 38     3.12433 Upper middle income           IBRD
## 39     22.3964         High income Not classified
## 40     21.0069 Lower middle income           IBRD
## 41     35.6878 Lower middle income           IBRD
## 42     30.5167 Lower middle income          Blend
## 43     -33.475         High income           IBRD
## 44     4.60987 Upper middle income           IBRD
## 45     60.1608         High income Not classified
## 46     44.4479         High income           IBRD
## 47     38.7072         High income Not classified
## 48    -41.2865         High income Not classified
## 49    -12.0931 Upper middle income           IBRD
## 50     37.9792         High income Not classified
## 51     33.3302 Upper middle income           IBRD
## 52     50.4536 Lower middle income           IBRD
## 53     51.1879 Upper middle income           IBRD
## 54     47.4984         High income Not classified
## 55     25.2948         High income Not classified
## 56     36.7397 Lower middle income           IBRD
## 57     33.9905 Lower middle income           IBRD
## 58     48.1484         High income Not classified
## 59     9.02274          Low income            IDA
## 60    -1.27975 Lower middle income          Blend
## 61       18.23         High income Not classified
## 62   -0.229498 Upper middle income           IBRD
## 63      18.479 Upper middle income           IBRD
## 64     6.92148 Lower middle income           IBRD
## 65     23.6105         High income Not classified
## 66     14.6248 Upper middle income           IBRD
## 67       49.61         High income Not classified
## 68     42.7105 Upper middle income           IBRD
## 69     5.57045 Lower middle income            IDA
## 70       5.332 Lower middle income            IDA
## 71     41.3052 Lower middle income          Blend
## 72     45.8069         High income           IBRD
## 73     53.9678 Upper middle income           IBRD
## 74    -6.17486 Lower middle income            IDA
## 75    -8.81155 Lower middle income           IBRD
## 76     54.6896         High income Not classified
## 77      21.914 Lower middle income            IDA
## 78     9.63701 Upper middle income           IBRD
## 79     8.99427         High income           IBRD
## 80     44.8024 Upper middle income           IBRD
## 81     46.0546         High income Not classified
## 82    -34.8941         High income           IBRD
## 83      -4.325          Low income            IDA
## 84     40.3834 Upper middle income           IBRD
## 85     36.7899 Lower middle income           IBRD
## 86     31.9497 Upper middle income           IBRD
## 87      3.8721 Lower middle income          Blend
## 88     32.8578 Upper middle income           IBRD
## 89    0.314269          Low income            IDA
## 90    -13.9908 Lower middle income           IBRD
## 91     56.9465         High income Not classified
## 92    -25.3005 Upper middle income           IBRD
## 93     26.1921         High income Not classified
## 94     59.4392         High income Not classified
## 95     27.6939 Lower middle income            IDA
## 96     15.5932          Low income            IDA
## 97     22.1667         High income Not classified
## 98     13.7034 Lower middle income           IBRD
## 99     15.1333 Lower middle income            IDA
## 100    35.1676         High income Not classified
## 101   -17.8312 Lower middle income          Blend
## 102    14.7247 Lower middle income            IDA
## 103    11.5556 Lower middle income            IDA
## 104   -9.47357 Lower middle income          Blend
## 105    64.1353         High income Not classified
## 106    10.6596         High income           IBRD
## 107    43.8607 Upper middle income           IBRD
## 108    33.8872 Lower middle income           IBRD
## 109   -15.3982          Low income            IDA
## 110    18.5392 Lower middle income            IDA
## 111    0.38832 Upper middle income           IBRD
## 112    12.3605          Low income            IDA
## 113    13.5667          Low income            IDA
## 114    18.5826 Lower middle income            IDA
## 115      41.71 Upper middle income           IBRD
## 116    41.3317 Upper middle income           IBRD
## 117            Lower middle income Not classified
## 118   -24.6544 Upper middle income           IBRD
## 119    35.9042         High income Not classified
## 120     6.4779 Lower middle income            IDA
## 121    9.51667          Low income            IDA
## 122   -25.9664          Low income            IDA
## 123    47.9129 Lower middle income           IBRD
## 124     13.514          Low income            IDA
## 125    34.5228          Low income            IDA
## 126    17.9927 Upper middle income           IBRD
## 127   -20.4667          Low income            IDA
## 128    12.1475 Lower middle income            IDA
## 129    4.94199         High income Not classified
## 130    40.1596 Upper middle income           IBRD
## 131    42.0024 Upper middle income           IBRD
## 132    47.0167 Upper middle income           IBRD
## 133    -4.2767 Lower middle income          Blend
## 134   -13.9899          Low income            IDA
## 135   -22.5648 Upper middle income           IBRD
## 136     3.7523 Upper middle income           IBRD
## 137    12.1048          Low income            IDA
## 138   -20.1605 Upper middle income           IBRD
## 139    25.0661         High income Not classified
## 140   -1.95325          Low income            IDA
## 141   -22.2677         High income Not classified
## 142    18.2367 Lower middle income            IDA
## 143     42.565 Upper middle income            IDA
## 144    38.5878 Lower middle income            IDA
## 145    43.7325         High income Not classified
## 146    42.8851 Lower middle income            IDA
## 147     6.1228          Low income            IDA
## 148    6.80461 Upper middle income            IDA
## 149    2.07515          Low income            IDA
## 150    32.3293         High income Not classified
## 151    13.4443         High income Not classified
## 152    -17.535         High income Not classified
## 153    19.3022         High income Not classified
## 154    42.4602 Upper middle income           IBRD
## 155     4.1742 Upper middle income            IDA
## 156    13.0935         High income Not classified
## 157   -26.5225 Lower middle income           IBRD
## 158   -18.1149 Upper middle income          Blend
## 159     8.4821          Low income            IDA
## 160    61.8926         High income Not classified
## 161   -8.56667 Lower middle income          Blend
## 162    6.30039          Low income            IDA
## 163    11.5806 Lower middle income            IDA
## 164    42.5075         High income Not classified
## 165    12.5167         High income Not classified
## 166     5.8232 Upper middle income           IBRD
## 167    -3.3784          Low income            IDA
## 168                    High income Not classified
## 169    27.5768 Lower middle income            IDA
## 170    5.63056          Low income            IDA
## 171   -29.5208 Lower middle income            IDA
## 172    17.2534 Upper middle income           IBRD
## 173    13.4495          Low income            IDA
## 174    14.9218 Lower middle income          Blend
## 175         14 Upper middle income          Blend
## 176    11.8037          Low income            IDA
## 177   -9.42676 Lower middle income            IDA
## 178    17.1175         High income           IBRD
## 179    -4.6309         High income           IBRD
## 180   -11.6986 Lower middle income            IDA
## 181    12.0653 Upper middle income          Blend
## 182   -17.7404 Lower middle income            IDA
## 183 21.4602778         High income Not classified
## 184    13.2035 Upper middle income          Blend
## 185       17.3         High income           IBRD
## 186   -13.8314 Lower middle income            IDA
## 187   -14.2846 Upper middle income Not classified
## 188    15.2976 Upper middle income          Blend
## 189    0.20618 Lower middle income            IDA
## 190    -21.136 Upper middle income            IDA
## 191    6.91771 Lower middle income            IDA
## 192    7.11046 Upper middle income            IDA
## 193    7.34194 Upper middle income           IBRD
## 194    1.32905 Lower middle income            IDA
## 195    -0.5477         High income           IBRD
## 196 -8.6314877 Upper middle income            IDA

これは、グラフではありませんが、これも一つの視覚化とも考えられないことはありません。

上位7カ国は、United States, China, Japan, Germany, India, United Kingdom, France であることがわかりました。8番目は、Italy でここまでが、GDP が 2兆ドルを越している国となります。

Fig 3. 2021年時のGDP上位7カ国のGDP経年変化

df_gdp %>% filter(iso2c %in% c("US", "CN", "JP", "DE", "IN", "GB", "FR")) %>%
  ggplot(aes(x = year, y = gdp, col = iso2c)) + geom_line()
## Warning: Removed 17 rows containing missing values (`geom_line()`).

df_gdp %>% filter(iso2c %in% c("US", "CN", "JP", "DE", "IN", "GB", "FR")) %>%
  ggplot(aes(x = year, y = gdp, col = iso2c)) + geom_line()

ここでは、最初に、filter を使って、7カ国のデータを選択しています。 そのときには、%in% として、国名を、combine するといういみで、c() とひとまとめにします。数字ではなく、文字なので、引用符で囲んでいます。この場合は、single quote でも構いませんが、半角を使ってください。

このグラフからは、どのようなことがわかりますか。気づいたことを書いてみましょう。

もう少し、このようなグラフをみてみたいというような、メモも大切です。

Fig 4. 世界のGDP における割合(1)

df_gdp %>% 
  filter(region != "Aggregates") %>% drop_na(gdp) %>% 
  group_by(year) %>% mutate(gdp_ratio = gdp/sum(gdp)) %>% ungroup() %>%
  filter(iso2c %in% c("US", "CN", "JP", "DE", "IN", "GB", "FR"))  %>%
  ggplot(aes(x = year, y = gdp_ratio, fill = iso2c)) + geom_area() +
  geom_line(col = "black", position = "stack", linewidth = 0.3) + 
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

まず、下の部分が新しいですが、ここでは、年毎にグループにして、その上で、新しい dgp_ratio という名前の列を追加し、その gdp の値を、gdp 合計で割っています。すなわち、世界の、GDP における割合が計算されています。

  group_by(year) %>% mutate(gdp_ratio = gdp/sum(gdp)) %>% ungroup() %>%

下の部分では、geom_area を使って、fill=iso2c により、iso2c ごとに、違う色を塗って、position = “stack” により、積み上げ型の、グラフを描き、境目がわかりやすいように、0.3 の太さの黒の線を描いてください。また、y 軸は、小数点以下を省いたパーセント表示に変えてください。というコードです。

  ggplot(aes(x = year, y = gdp_ratio, fill = iso2c)) + geom_area() +
  geom_line(col = "black", position = "stack", linewidth = 0.3) + 
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

Fig 4. 世界のGDP における割合(2)

これは、上から、iso2c の アルファベットの順番になっていますが、積み上げの順序を変更することもできます。

df_gdp %>% 
  filter(region != "Aggregates") %>% drop_na(gdp) %>% 
  group_by(year) %>% mutate(gdp_ratio = gdp/sum(gdp)) %>% ungroup() %>%
  filter(iso2c %in% c("US", "CN", "JP", "DE", "IN", "GB", "FR"))  %>%
  mutate(iso2co = factor(iso2c, levels = c("IN", "CN", "FR", "GB", "DE", "JP", "US"))) %>%
  ggplot(aes(x = year, y = gdp_ratio, fill = iso2co)) + geom_area() +
  geom_line(col = "black", position = "stack", linewidth = 0.3) + 
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

これらは、世界全体の GPT における割合です。

どのようなことがわかりますか。

主要国で、60%〜70% を占めていることがわかります。それぞれの国や、幾つかの国の影響力も、ある程度みることができるように見えます。

気づいたこと、疑問に思ったことなどを、書き出してみてください。

GDP が大きな国と、小さな国があるのはわかりますが、それは、どのように分布しているのでしょうか。

Fig 5. 2021年の世界の国のGDPの分布(1)

df_gdp %>% drop_na(gdp) %>% 
  filter(year == 2021) %>% filter(region != "Aggregates") %>%
  ggplot(aes(gdp)) + geom_histogram()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

小さいところに集中していることがわかりますが、scale_x_log10() を加え、対数軸をとってみます。

\(log10(1000) = 3\), \(log10(1000000) = 6\), \(log10(1000000000) = 9\) などになります。

Fig 6. 2021年の世界の国のGDPの分布(2)

df_gdp %>% drop_na(gdp) %>% 
  filter(year == 2021) %>% filter(region != "Aggregates") %>%
  ggplot(aes(gdp)) + geom_histogram() + scale_x_log10()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

幅を変更したり、分ける個数を変更するには binwidth = 0.5 や、bins = 20 を、geom_histogram() のかっこの中に入れます。

Fig 7. 2021年の世界の国のGDPの分布(3)

また、密度曲線に変えるには、geom_density を使います。

df_gdp %>% drop_na(gdp) %>% 
  filter(year == 2021) %>% filter(region != "Aggregates") %>%
  ggplot(aes(gdp)) + geom_density() + scale_x_log10()

Fig 8. 2021年の世界の国のGDPの分布(4)

これは、2021年のデータですが、density の変化を見てみます。alpha の値は透明度です。

df_gdp %>% drop_na(gdp) %>% 
  filter(year %in% c(1961, 1971, 1981, 1991, 2001, 2011, 2021)) %>%
  ggplot(aes(gdp, fill = factor(year))) + geom_density(alpha = 0.4) + scale_x_log10()

Fig 9. 2021年の世界の国のGDPの分布(5)

少しみにくいので、分けてみます。

df_gdp %>% drop_na(gdp) %>% 
  filter(year %in% c(1971, 1981, 1991, 2001, 2011, 2021)) %>%
  ggplot(aes(gdp, fill = factor(year))) + 
  geom_density() + scale_x_log10() + facet_wrap(~year)

Fig 10. 地域ごとの GDP の分布

いくつかのグループごとに分布をみてみることも可能です。それには、Boxplot が有効です。

df_gdp %>% drop_na(gdp) %>% filter(region != "Aggregates") %>%
  drop_na(region) %>% filter(year %in% c(2021)) %>%
  ggplot(aes(gdp, region, fill = region)) + 
  geom_boxplot() + scale_x_log10() + labs(y = "") + 
  theme(legend.position = "none")

Fig 11. 収入の多寡による分類ごとの GDP 分布

df_gdp %>% drop_na(gdp) %>% filter(region != "Aggregates") %>%
  drop_na(income) %>% filter(year %in% c(2021)) %>%
  mutate(level = factor(income, c("High income", "Upper middle income", "Lower middle income", "Low income"))) %>%
  ggplot(aes(gdp, level, fill = income)) + 
  geom_boxplot() + scale_x_log10() + labs(y = "") + 
  theme(legend.position = "none")

これからも、いろいろなことがわかりますね。

世界地図の準備

地図で、国の income level をみてみましょう。

library(maps)
## 
## Attaching package: 'maps'
## The following object is masked from 'package:purrr':
## 
##     map
gdp_short <- df_gdp %>% filter(year == 2021, region != "Aggregates") %>%
  select(iso2c, gdp, income)
map_world <- map_data('world')
map_gdp <- map_world %>% 
  mutate(iso2c = iso.alpha(region, n=2)) %>% 
  left_join(gdp_short, by = "iso2c") 
head(map_gdp)
##        long      lat group order region subregion iso2c        gdp      income
## 1 -69.89912 12.45200     1     1  Aruba      <NA>    AW 3126019399 High income
## 2 -69.89571 12.42300     1     2  Aruba      <NA>    AW 3126019399 High income
## 3 -69.94219 12.43853     1     3  Aruba      <NA>    AW 3126019399 High income
## 4 -70.00415 12.50049     1     4  Aruba      <NA>    AW 3126019399 High income
## 5 -70.06612 12.54697     1     5  Aruba      <NA>    AW 3126019399 High income
## 6 -70.05088 12.59707     1     6  Aruba      <NA>    AW 3126019399 High income

Fig 12. Income Level による色分け地図

map_gdp %>% mutate(income_level = factor(income, levels = c("High income", "Upper middle income", "Lower middle income", "Low income", "Not classified", NA))) %>%
  ggplot() +
  geom_map(aes(long, lat, map_id = region, fill = income_level), map = map_world, col = "black", size = 0.1) 
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## Warning in geom_map(aes(long, lat, map_id = region, fill = income_level), :
## Ignoring unknown aesthetics: x and y

Fig 13. GDP による色分け地図

map_gdp %>% 
  ggplot() +
  geom_map(aes(x=long, y=lat, map_id = region, fill = gdp), map = map_world, col = "black", size = 0.1) 
## Warning in geom_map(aes(x = long, y = lat, map_id = region, fill = gdp), :
## Ignoring unknown aesthetics: x and y

練習

  1. それぞれのグラフから、わかったこと、問いなどを列挙してみましょう。
  2. Fig 1 の Japan の部分を他の国や、グループ(World など)に変えてみてください。何がわかりますか。
  3. Fig 3 の iso2c で選択する、国を変更してください。何がわかりますか。
  4. Fig 4 または Fig 5 の iso2c の部分を他の国に変更してください。何がわかりますか。
  5. Fig 5 または Fig 6 の、区間の幅や、数を 変更してみてください。何がわかりますか。
  6. Fig 7, Fig 8, Fig 9 の年を変更してみてください。何がわかりますか。
  7. Fig 12, Fig 13 の年を変更してみてください。何がわかりますか。

まとめ

今回は、経済指標である、GDP を使いました。データサイエンスについて少しずつ、学んでいきます。

コードの説明は、簡単にしかしていませんから、理解するのは難しいと思いますが、いくつかのことは、ご理解いただけると思います。

  • それほど、長くはない、コードで、データを見ていく。R は対話型(interactive)のプログラミング言語と言われています。

  • コードに続けて、結果が表示されるので、コードと出力の対応が見やすい。また、コメントや説明も併記することができる。これは、RMarkdown という形式の中で、コードを書いていることによるものです。RMarkdown は、再現性(reproducibility)と、プログラム・コードの内容をコンピュータにわかるようにでなく、人間にもわかるように記述する(Literate Programming)を実現しています。

  • 視覚化(Visualization)によって、わかることが色々とある。また、視覚化の方法もたくさんあり、いろいろな見方をすることで、データについての理解が深まっていく。

  • 視覚化を通して、データを理解すること、問いを持ち、他の視覚化などを用いて、さらに、理解を深めることがたいせつ。

  • 理解したことを元にして、さらに、そのデータ、または、他のデータを使って、新たな発見をしていく。

統計的な指標も用いますが、それらによって、新しい知識を生み出すとも表現しますが、そのような営み全体が、データサイエンスの核をなす部分だと思います。

World Bank: WDI

世界銀行(World Bank)の WDI を使いました。どのようなものか確認しておきましょう。

世界銀行(World Bank

世界開発指標は、世界銀行が提供している、オープンデータの一つで、他にも、たくさんのデータを提供しています。また、オープンデータについて、世界銀行は、厳密な定義をしています。

オープンデータの定義(Open Data Defined

オープンデータという言葉は、厳密な意味を持っています。データまたはコンテンツは、出所が明示されオープンという性質が維持されれば、誰でも自由に利用、再利用、再配布できるものを言います。

  1. データは法的にオープンでなければなりません。つまり、パブリックドメインに置かれ、最小限の制限で自由に使用できなければなりません。

  2. データは技術的にオープンでなければなりません。つまり、誰でも自由に使える一般的なソフトウェアツールを使ってデータにアクセスし、機械で読み取ることが可読な電子フォーマットで提供されていなければならなりません。パスワードやファイアウォールによる制限を受けずに、公共のサーバーで、だれでもアクセスできなければなりません。また、オープンデータを見つけやすくするために、さまざまな組織がオープンデータカタログを作成し管理してく必要があります。

データはだれのものでしょうか? パブリックデータのパブリックとは?

世界開発指標(WDI)

  • World Development Indicators (WDI) : 世界銀行が開発に関する各国間比較可能なデータの集大成である1400の時系列指標(the World Bank’s premier compilation of cross-country comparable data on development; 1400 time series indicators)
    • テーマ別(Themes): 貧困と格差、人間、環境、経済、国家と市場、グローバルリンク集(Poverty and Inequality, People, Environment, Economy, States and Markets, Global Links)
    • オープンデータとデータバンク(Open Data & DataBank): Explore data, Query database
    • Bulk Download: Excel, CSV
    • API Documentation

世界のさまざまな課題

https://datatopics.worldbank.org/world-development-indicators/

  1. 貧困と不平等(Poverty and Inequality):貧困、繁栄、消費、所得分配
  2. 人々(People):人口動態、教育、労働、健康、ジェンダー
  3. 環境(Environment):農業、気候変動、エネルギー、生物多様性、水、衛生
  4. 経済(Economy):成長、経済構造、所得と貯蓄、貿易、労働生産性
  5. 国家と市場(States and Markets):ビジネス、株式市場、軍事、通信、輸送、テクノロジー
  6. グローバルリンク(Global Links):債務、貿易、援助への依存、難民、観光、移住

ダッシュボード・データの取得・データコード

さまざまな国際機関では、データを、Excel 形式や、CSV (Comma Separated Values)形式などで、提供する以外に、ダッシュボード形式で、グラフを生成するなどして、データを視覚化をある程度できるようにしています。さらに、コンピュータのアプリケーションでデータを直接取得できるように、API (Application Program Interface) を提供しています。

世界開発指標(WDI)は、これらを、すべて統一した形で提供しているために、非常に使いやすいデータベースになっています。また、上にリストしているように、1400余のさまざまなデータを提供しているために、最初に調べてみることをお勧めするデータベースです。

分析を考えると、Excel や、CSV でダウンロードして、それから、データを読み込むよりも、R で直接データを取得する方が、便利ですので、このコースでは、その方法を、説明しています。

データを探すことも、R の中ですることが可能ですが、データベースに慣れるためにも、WDI のホームページから、トピックを選択して、データを探し、説明も調べて、取得したいデータ・コードを調べることも非常に有効です。

いろいろなトピックに、どのような指標があるか調べて、興味のある、データ・コードをリストしてください。データの名前も同時に、記録しておくと良いでしょう。

世界銀行以外の国際機関のパブリックデータ

世界銀行以外にも、それぞれの機関がデータを提供しています。どれも、少しずつ使いやすくなってきています。少しずつ、いくつかのデータベースに、アクセスして、できれば、API の利用の仕方も、習得して、データを調べることに少しずつ慣れていっていただければと思います。

下のリストは、私が個人的に、何度か使ったことのある、データベースです。他にも、たくさんのデータベースがありますので、ぜひ、調べてみてください。

  • 国際連合 UNdata
  • 経済協力開発機構 OECD data
  • 世界格差データベース(World Inequality Database)WID
  • 欧州連合の統計局 Eurostat
  • データで見る私たちの世界 Our World in Data

なども、同様の、ダッシュボードを備えており、データの提供もしている。

日本では、

持続的開発目標(SDGs) データ

課題

世界開発指標(WDI)の、データで、調べてみたい データコードをいくつか見つけて、書き出してください。

R の パッケージ WDI の活用

WDI パッケージで、データをダウンロードしたり、探したり、詳細情報を得たりできます。

検索や、ダウンロード方法が理解できるように、例示してありますが、ざっと確認して、3.3 のテンプレートを利用すると、グラフを描くこともできます。

指標 WDI 検索

WDI のホームページで、データコードを調べることができますが、R の WDI のパッケージにも、WDIsearch() という関数があり、これを利用して、検索することが可能です。

string に、検索語を入れ、field には、name または、indicator とします。すると、indicator と、name を調べられます。

RStudio の右下の窓の、Help に、WDIsearch と入れると、使い方を示してくれます。

下の Code でも WDIsearch の Help を開いてくれます。

?WDIsearch

下にいくつか例を挙げてみましょう。

検索例 1(WDI名)

WDIsearch(string = "gdp", field = "name", short = TRUE, cache = NULL)
##                        indicator
## 712               5.51.01.10.gdp
## 714              6.0.GDP_current
## 715               6.0.GDP_growth
## 716                  6.0.GDP_usd
## 717           6.0.GDPpc_constant
## 1557           BG.GSR.NFSV.GD.ZS
## 1558        BG.KAC.FNEI.GD.PP.ZS
## 1559           BG.KAC.FNEI.GD.ZS
## 1560        BG.KLT.DINV.GD.PP.ZS
## 1561           BG.KLT.DINV.GD.ZS
## 1752           BI.WAG.TOTL.GD.ZS
## 1772              BM.GSR.MRCH.ZS
## 1784           BM.KLT.DINV.GD.ZS
## 1785        BM.KLT.DINV.WD.GD.ZS
## 1798           BN.CAB.XOKA.GD.ZS
## 1799          BN.CAB.XOKA.GDP.ZS
## 1802              BN.CAB.XOTR.ZS
## 1805              BN.CUR.GDPM.ZS
## 1811           BN.GSR.FCTY.CD.ZS
## 1820           BN.KLT.DINV.CD.ZS
## 1822      BN.KLT.DINV.DRS.GDP.ZS
## 1828           BN.KLT.PRVT.GD.ZS
## 1839           BN.TRF.CURR.CD.ZS
## 1875              BX.GSR.MRCH.ZS
## 1887        BX.KLT.DINV.DT.GD.ZS
## 1889        BX.KLT.DINV.WD.GD.ZS
## 1898         BX.TRF.MGR.DT.GD.ZS
## 1904        BX.TRF.PWKR.DT.GD.ZS
## 1905           BX.TRF.PWKR.GD.ZS
## 2198              CC.ENTX.ENE.ZS
## 2270              CC.GHG.MEMG.EI
## 2271              CC.GHG.MEMG.GC
## 2293                CC.INCP.ALRS
## 2294                CC.INCP.KRGC
## 2295                CC.INCP.SPMC
## 2356              CC.RISK.AST.ZS
## 2357             CC.RISK.WELL.ZS
## 2364                CC.SP.EXP.ZS
## 2401           CM.FIN.INTL.GD.ZS
## 2404           CM.MKT.LCAP.GD.ZS
## 2407           CM.MKT.TRAD.GD.ZS
## 2559        DP.DOD.DECD.CR.BC.Z1
## 2562        DP.DOD.DECD.CR.CG.Z1
## 2565        DP.DOD.DECD.CR.FC.Z1
## 2568        DP.DOD.DECD.CR.GG.Z1
## 2571        DP.DOD.DECD.CR.NF.Z1
## 2576        DP.DOD.DECF.CR.BC.Z1
## 2579        DP.DOD.DECF.CR.CG.Z1
## 2582        DP.DOD.DECF.CR.FC.Z1
## 2585        DP.DOD.DECF.CR.GG.Z1
## 2588        DP.DOD.DECF.CR.NF.Z1
## 2593        DP.DOD.DECN.CR.BC.Z1
## 2596        DP.DOD.DECN.CR.CG.Z1
## 2599        DP.DOD.DECN.CR.FC.Z1
## 2602        DP.DOD.DECN.CR.GG.Z1
## 2605        DP.DOD.DECN.CR.NF.Z1
## 2610        DP.DOD.DECT.CR.BC.Z1
## 2613        DP.DOD.DECT.CR.CG.Z1
## 2616        DP.DOD.DECT.CR.FC.Z1
## 2619        DP.DOD.DECT.CR.GG.Z1
## 2622        DP.DOD.DECT.CR.NF.Z1
## 2627        DP.DOD.DECX.CR.BC.Z1
## 2630        DP.DOD.DECX.CR.CG.Z1
## 2633        DP.DOD.DECX.CR.FC.Z1
## 2636        DP.DOD.DECX.CR.GG.Z1
## 2639        DP.DOD.DECX.CR.NF.Z1
## 2644        DP.DOD.DLCD.CR.BC.Z1
## 2647        DP.DOD.DLCD.CR.CG.Z1
## 2650        DP.DOD.DLCD.CR.FC.Z1
## 2653        DP.DOD.DLCD.CR.GG.Z1
## 2656     DP.DOD.DLCD.CR.L1.BC.Z1
## 2659     DP.DOD.DLCD.CR.L1.CG.Z1
## 2662     DP.DOD.DLCD.CR.L1.FC.Z1
## 2665     DP.DOD.DLCD.CR.L1.GG.Z1
## 2668     DP.DOD.DLCD.CR.L1.NF.Z1
## 2673     DP.DOD.DLCD.CR.M1.BC.Z1
## 2676     DP.DOD.DLCD.CR.M1.CG.Z1
## 2679     DP.DOD.DLCD.CR.M1.FC.Z1
## 2682     DP.DOD.DLCD.CR.M1.GG.Z1
## 2685     DP.DOD.DLCD.CR.M1.NF.Z1
## 2690        DP.DOD.DLCD.CR.NF.Z1
## 2694        DP.DOD.DLD1.CR.CG.Z1
## 2696        DP.DOD.DLD1.CR.GG.Z1
## 2698        DP.DOD.DLD2.CR.CG.Z1
## 2700        DP.DOD.DLD2.CR.GG.Z1
## 2702       DP.DOD.DLD2A.CR.CG.Z1
## 2704       DP.DOD.DLD2A.CR.GG.Z1
## 2706        DP.DOD.DLD3.CR.CG.Z1
## 2708        DP.DOD.DLD3.CR.GG.Z1
## 2710        DP.DOD.DLD4.CR.CG.Z1
## 2712        DP.DOD.DLD4.CR.GG.Z1
## 2715        DP.DOD.DLDS.CR.BC.Z1
## 2718        DP.DOD.DLDS.CR.CG.Z1
## 2721        DP.DOD.DLDS.CR.FC.Z1
## 2724        DP.DOD.DLDS.CR.GG.Z1
## 2727     DP.DOD.DLDS.CR.L1.BC.Z1
## 2730     DP.DOD.DLDS.CR.L1.CG.Z1
## 2733     DP.DOD.DLDS.CR.L1.FC.Z1
## 2736     DP.DOD.DLDS.CR.L1.GG.Z1
## 2739     DP.DOD.DLDS.CR.L1.NF.Z1
## 2744     DP.DOD.DLDS.CR.M1.BC.Z1
## 2747     DP.DOD.DLDS.CR.M1.CG.Z1
## 2750     DP.DOD.DLDS.CR.M1.FC.Z1
## 2753     DP.DOD.DLDS.CR.M1.GG.Z1
## 2756     DP.DOD.DLDS.CR.M1.NF.Z1
## 2761     DP.DOD.DLDS.CR.MV.BC.Z1
## 2764     DP.DOD.DLDS.CR.MV.CG.Z1
## 2767     DP.DOD.DLDS.CR.MV.FC.Z1
## 2770     DP.DOD.DLDS.CR.MV.GG.Z1
## 2773     DP.DOD.DLDS.CR.MV.NF.Z1
## 2778        DP.DOD.DLDS.CR.NF.Z1
## 2783        DP.DOD.DLIN.CR.BC.Z1
## 2786        DP.DOD.DLIN.CR.CG.Z1
## 2789        DP.DOD.DLIN.CR.FC.Z1
## 2792        DP.DOD.DLIN.CR.GG.Z1
## 2795     DP.DOD.DLIN.CR.L1.BC.Z1
## 2798     DP.DOD.DLIN.CR.L1.CG.Z1
## 2801     DP.DOD.DLIN.CR.L1.FC.Z1
## 2804     DP.DOD.DLIN.CR.L1.GG.Z1
## 2807     DP.DOD.DLIN.CR.L1.NF.Z1
## 2812     DP.DOD.DLIN.CR.M1.BC.Z1
## 2815     DP.DOD.DLIN.CR.M1.CG.Z1
## 2818     DP.DOD.DLIN.CR.M1.FC.Z1
## 2821     DP.DOD.DLIN.CR.M1.GG.Z1
## 2824     DP.DOD.DLIN.CR.M1.NF.Z1
## 2829        DP.DOD.DLIN.CR.NF.Z1
## 2834        DP.DOD.DLLO.CR.BC.Z1
## 2837        DP.DOD.DLLO.CR.CG.Z1
## 2840        DP.DOD.DLLO.CR.FC.Z1
## 2843        DP.DOD.DLLO.CR.GG.Z1
## 2846     DP.DOD.DLLO.CR.L1.BC.Z1
## 2849     DP.DOD.DLLO.CR.L1.CG.Z1
## 2852     DP.DOD.DLLO.CR.L1.FC.Z1
## 2855     DP.DOD.DLLO.CR.L1.GG.Z1
## 2858     DP.DOD.DLLO.CR.L1.NF.Z1
## 2863     DP.DOD.DLLO.CR.M1.BC.Z1
## 2866     DP.DOD.DLLO.CR.M1.CG.Z1
## 2869     DP.DOD.DLLO.CR.M1.FC.Z1
## 2872     DP.DOD.DLLO.CR.M1.GG.Z1
## 2875     DP.DOD.DLLO.CR.M1.NF.Z1
## 2880        DP.DOD.DLLO.CR.NF.Z1
## 2885        DP.DOD.DLOA.CR.BC.Z1
## 2888        DP.DOD.DLOA.CR.CG.Z1
## 2891        DP.DOD.DLOA.CR.FC.Z1
## 2894        DP.DOD.DLOA.CR.GG.Z1
## 2897     DP.DOD.DLOA.CR.L1.BC.Z1
## 2900     DP.DOD.DLOA.CR.L1.CG.Z1
## 2903     DP.DOD.DLOA.CR.L1.FC.Z1
## 2906     DP.DOD.DLOA.CR.L1.GG.Z1
## 2909     DP.DOD.DLOA.CR.L1.NF.Z1
## 2914     DP.DOD.DLOA.CR.M1.BC.Z1
## 2917     DP.DOD.DLOA.CR.M1.CG.Z1
## 2920     DP.DOD.DLOA.CR.M1.FC.Z1
## 2923     DP.DOD.DLOA.CR.M1.GG.Z1
## 2926     DP.DOD.DLOA.CR.M1.NF.Z1
## 2931        DP.DOD.DLOA.CR.NF.Z1
## 2936        DP.DOD.DLSD.CR.BC.Z1
## 2939        DP.DOD.DLSD.CR.CG.Z1
## 2942        DP.DOD.DLSD.CR.FC.Z1
## 2945        DP.DOD.DLSD.CR.GG.Z1
## 2948     DP.DOD.DLSD.CR.M1.BC.Z1
## 2951     DP.DOD.DLSD.CR.M1.CG.Z1
## 2954     DP.DOD.DLSD.CR.M1.FC.Z1
## 2957     DP.DOD.DLSD.CR.M1.GG.Z1
## 2960     DP.DOD.DLSD.CR.M1.NF.Z1
## 2965        DP.DOD.DLSD.CR.NF.Z1
## 2970        DP.DOD.DLTC.CR.BC.Z1
## 2973        DP.DOD.DLTC.CR.CG.Z1
## 2976        DP.DOD.DLTC.CR.FC.Z1
## 2979        DP.DOD.DLTC.CR.GG.Z1
## 2982     DP.DOD.DLTC.CR.L1.BC.Z1
## 2985     DP.DOD.DLTC.CR.L1.CG.Z1
## 2988     DP.DOD.DLTC.CR.L1.FC.Z1
## 2991     DP.DOD.DLTC.CR.L1.GG.Z1
## 2994     DP.DOD.DLTC.CR.L1.NF.Z1
## 2999     DP.DOD.DLTC.CR.M1.BC.Z1
## 3002     DP.DOD.DLTC.CR.M1.CG.Z1
## 3005     DP.DOD.DLTC.CR.M1.FC.Z1
## 3008     DP.DOD.DLTC.CR.M1.GG.Z1
## 3011     DP.DOD.DLTC.CR.M1.NF.Z1
## 3016        DP.DOD.DLTC.CR.NF.Z1
## 3022        DP.DOD.DSCD.CR.BC.Z1
## 3025        DP.DOD.DSCD.CR.CG.Z1
## 3028        DP.DOD.DSCD.CR.FC.Z1
## 3031        DP.DOD.DSCD.CR.GG.Z1
## 3034        DP.DOD.DSCD.CR.NF.Z1
## 3039        DP.DOD.DSDS.CR.BC.Z1
## 3042        DP.DOD.DSDS.CR.CG.Z1
## 3045        DP.DOD.DSDS.CR.FC.Z1
## 3048        DP.DOD.DSDS.CR.GG.Z1
## 3051        DP.DOD.DSDS.CR.NF.Z1
## 3056        DP.DOD.DSIN.CR.BC.Z1
## 3059        DP.DOD.DSIN.CR.CG.Z1
## 3062        DP.DOD.DSIN.CR.FC.Z1
## 3065        DP.DOD.DSIN.CR.GG.Z1
## 3068        DP.DOD.DSIN.CR.NF.Z1
## 3073        DP.DOD.DSLO.CR.BC.Z1
## 3076        DP.DOD.DSLO.CR.CG.Z1
## 3079        DP.DOD.DSLO.CR.FC.Z1
## 3082        DP.DOD.DSLO.CR.GG.Z1
## 3085        DP.DOD.DSLO.CR.NF.Z1
## 3090        DP.DOD.DSOA.CR.BC.Z1
## 3093        DP.DOD.DSOA.CR.CG.Z1
## 3096        DP.DOD.DSOA.CR.FC.Z1
## 3099        DP.DOD.DSOA.CR.GG.Z1
## 3102        DP.DOD.DSOA.CR.NF.Z1
## 3107        DP.DOD.DSTC.CR.BC.Z1
## 3110        DP.DOD.DSTC.CR.CG.Z1
## 3113        DP.DOD.DSTC.CR.FC.Z1
## 3116        DP.DOD.DSTC.CR.GG.Z1
## 3119        DP.DOD.DSTC.CR.NF.Z1
## 3615             DT.DOD.ALLC.ZSG
## 3618             DT.DOD.ALLN.ZSG
## 3773          DT.DOD.DECT.CD.ZSG
## 5376           DT.ODA.ALLD.GD.ZS
## 5447             DT.ODA.DACD.ZSG
## 5452             DT.ODA.MULT.ZSG
## 5460             DT.ODA.NDAC.ZSG
## 5466           DT.ODA.ODAT.GD.ZS
## 5616           DT.TDS.DECT.GD.ZS
## 5969           EG.EGY.PRIM.PP.KD
## 5993           EG.GDP.PUSE.KO.87
## 5994           EG.GDP.PUSE.KO.KD
## 5995           EG.GDP.PUSE.KO.PP
## 5996        EG.GDP.PUSE.KO.PP.KD
## 6004        EG.USE.COMM.GD.PP.KD
## 6023             EN.ATM.CO2E.GDP
## 6027        EN.ATM.CO2E.KD.87.GD
## 6028           EN.ATM.CO2E.KD.GD
## 6033           EN.ATM.CO2E.PP.GD
## 6034        EN.ATM.CO2E.PP.GD.KD
## 6164           ER.GDP.FWTL.M3.KD
## 6182             EU.EGY.USES.GDP
## 6236           FB.DPT.INSU.PC.ZS
## 6589           FD.AST.PRVT.GD.ZS
## 6595           FI.RES.TOTL.CD.ZS
## 7389           FM.AST.GOVT.CN.ZS
## 7398           FM.AST.PRVT.GD.ZS
## 7407           FM.LBL.BMNY.GD.ZS
## 7414           FM.LBL.MQMY.GD.ZS
## 7415          FM.LBL.MQMY.GDP.ZS
## 7417              FM.LBL.MQMY.XD
## 7422          FM.LBL.QMNY.GDP.ZS
## 7423          FM.LBL.SEIG.GDP.ZS
## 7462           FS.AST.CGOV.GD.ZS
## 7463           FS.AST.DOMO.GD.ZS
## 7464           FS.AST.DOMS.GD.ZS
## 7465              FS.AST.DTOT.ZS
## 7467           FS.AST.PRVT.GD.ZS
## 7468          FS.AST.PRVT.GDP.ZS
## 7469           FS.LBL.LIQU.GD.ZS
## 7470          FS.LBL.LIQU.GDP.ZS
## 7471           FS.LBL.QLIQ.GD.ZS
## 7530           GB.BAL.OVRL.GD.ZS
## 7531          GB.BAL.OVRL.GDP.ZS
## 7540           GB.DOD.TOTL.GD.ZS
## 7541          GB.DOD.TOTL.GDP.ZS
## 7545           GB.FIN.ABRD.GD.ZS
## 7546          GB.FIN.ABRD.GDP.ZS
## 7550           GB.FIN.DOMS.GD.ZS
## 7551          GB.FIN.DOMS.GDP.ZS
## 7561           GB.REV.CTOT.GD.ZS
## 7564          GB.REV.TOTL.GDP.ZS
## 7566           GB.REV.XAGT.CN.ZS
## 7569           GB.RVC.TOTL.GD.ZS
## 7571              GB.SOE.DECT.ZS
## 7573           GB.SOE.ECON.GD.ZS
## 7574          GB.SOE.ECON.GDP.ZS
## 7577           GB.SOE.NFLW.GD.ZS
## 7578          GB.SOE.NFLW.GDP.ZS
## 7579           GB.SOE.OVRL.GD.ZS
## 7605           GB.TAX.TOTL.GD.ZS
## 7606          GB.TAX.TOTL.GDP.ZS
## 7624          GB.XPD.DEFN.GDP.ZS
## 7627           GB.XPD.RSDV.GD.ZS
## 7630           GB.XPD.TOTL.GD.ZS
## 7631          GB.XPD.TOTL.GDP.ZS
## 7638           GC.AST.TOTL.GD.ZS
## 7641           GC.BAL.CASH.GD.ZS
## 7646           GC.DOD.TOTL.GD.ZS
## 7650           GC.FIN.DOMS.GD.ZS
## 7652           GC.FIN.FRGN.GD.ZS
## 7654           GC.LBL.TOTL.GD.ZS
## 7656           GC.NFN.TOTL.GD.ZS
## 7658           GC.NLD.TOTL.GD.ZS
## 7669           GC.REV.XGRT.GD.ZS
## 7684           GC.TAX.TOTL.GD.ZS
## 7701           GC.XPN.TOTL.GD.ZS
## 7792                  GFDD.DI.01
## 7793                  GFDD.DI.02
## 7794                  GFDD.DI.03
## 7796                  GFDD.DI.05
## 7797                  GFDD.DI.06
## 7798                  GFDD.DI.07
## 7799                  GFDD.DI.08
## 7800                  GFDD.DI.09
## 7801                  GFDD.DI.10
## 7802                  GFDD.DI.11
## 7803                  GFDD.DI.12
## 7804                  GFDD.DI.13
## 7805                  GFDD.DI.14
## 7806                  GFDD.DM.01
## 7807                  GFDD.DM.02
## 7808                  GFDD.DM.03
## 7809                  GFDD.DM.04
## 7810                  GFDD.DM.05
## 7811                  GFDD.DM.06
## 7812                  GFDD.DM.07
## 7813                  GFDD.DM.08
## 7814                  GFDD.DM.09
## 7815                  GFDD.DM.10
## 7816                  GFDD.DM.11
## 7817                  GFDD.DM.12
## 7818                  GFDD.DM.13
## 7821                  GFDD.DM.16
## 7822                  GFDD.DM.16
## 7830                  GFDD.EI.08
## 7837                  GFDD.OI.02
## 7843                  GFDD.OI.08
## 7844                  GFDD.OI.09
## 7848                  GFDD.OI.13
## 7849                  GFDD.OI.14
## 7854                  GFDD.OI.17
## 7855                  GFDD.OI.18
## 8686           IE.ICT.TOTL.GD.ZS
## 8959        IS.RRS.GOOD.KM.PP.ZS
## 8961        IS.RRS.PASG.K2.PP.ZS
## 9068           IT.TEL.REVN.GD.ZS
## 10943          MS.MIL.XPND.GD.ZS
## 10948     NA.GDP.ACC.FB.SNA08.CR
## 10949     NA.GDP.ACC.FB.SNA08.KR
## 10950              NA.GDP.AGR.CR
## 10951              NA.GDP.AGR.KR
## 10952        NA.GDP.AGR.SNA08.CR
## 10953        NA.GDP.AGR.SNA08.KR
## 10954       NA.GDP.BUSS.SNA08.CR
## 10955       NA.GDP.BUSS.SNA08.KR
## 10956             NA.GDP.CNST.CR
## 10957             NA.GDP.CNST.KR
## 10958       NA.GDP.CNST.SNA08.CR
## 10959       NA.GDP.CNST.SNA08.KR
## 10960       NA.GDP.EDUS.SNA08.CR
## 10961       NA.GDP.EDUS.SNA08.KR
## 10962   NA.GDP.ELEC.GAS.SNA08.CR
## 10963   NA.GDP.ELEC.GAS.SNA08.KR
## 10964           NA.GDP.EXC.OG.CR
## 10965           NA.GDP.EXC.OG.KR
## 10966             NA.GDP.FINS.CR
## 10967             NA.GDP.FINS.KR
## 10968       NA.GDP.FINS.SNA08.CR
## 10969       NA.GDP.FINS.SNA08.KR
## 10970  NA.GDP.HLTH.SOCW.SNA08.CR
## 10971  NA.GDP.HLTH.SOCW.SNA08.KR
## 10972           NA.GDP.INC.OG.CR
## 10973           NA.GDP.INC.OG.KR
## 10974     NA.GDP.INC.OG.SNA08.CR
## 10975     NA.GDP.INC.OG.SNA08.KR
## 10976   NA.GDP.INF.COMM.SNA08.CR
## 10977   NA.GDP.INF.COMM.SNA08.KR
## 10978             NA.GDP.MINQ.CR
## 10979             NA.GDP.MINQ.KR
## 10980       NA.GDP.MINQ.SNA08.CR
## 10981       NA.GDP.MINQ.SNA08.KR
## 10982              NA.GDP.MNF.CR
## 10983              NA.GDP.MNF.KR
## 10984        NA.GDP.MNF.SNA08.CR
## 10985        NA.GDP.MNF.SNA08.KR
## 10986   NA.GDP.PADM.DEF.SNA08.CR
## 10987   NA.GDP.PADM.DEF.SNA08.KR
## 10988       NA.GDP.REST.SNA08.CR
## 10989       NA.GDP.REST.SNA08.KR
## 10990         NA.GDP.SRV.OTHR.CR
## 10991         NA.GDP.SRV.OTHR.KR
## 10992   NA.GDP.SRV.OTHR.SNA08.CR
## 10993   NA.GDP.SRV.OTHR.SNA08.KR
## 10994        NA.GDP.TRAN.COMM.CR
## 10995        NA.GDP.TRAN.COMM.KR
## 10996  NA.GDP.TRAN.STOR.SNA08.CR
## 10997  NA.GDP.TRAN.STOR.SNA08.KR
## 10998          NA.GDP.TRD.HTL.CR
## 10999          NA.GDP.TRD.HTL.KR
## 11000        NA.GDP.TRD.SNA08.CR
## 11001        NA.GDP.TRD.SNA08.KR
## 11002              NA.GDP.UTL.CR
## 11003              NA.GDP.UTL.KR
## 11004    NA.GDP.WTR.WST.SNA08.CR
## 11005    NA.GDP.WTR.WST.SNA08.KR
## 11014             NE.CON.GOVT.ZS
## 11025             NE.CON.PETC.ZS
## 11042             NE.CON.PRVT.ZS
## 11052             NE.CON.TETC.ZS
## 11060             NE.CON.TOTL.ZG
## 11061             NE.CON.TOTL.ZS
## 11071             NE.DAB.TOTL.ZS
## 11083             NE.EXP.GNFS.ZS
## 11085         NE.GDI.CON.GOVT.CR
## 11086   NE.GDI.CON.GOVT.SNA08.CR
## 11087          NE.GDI.CON.NPI.CR
## 11088    NE.GDI.CON.NPI.SNA08.CR
## 11089         NE.GDI.CON.PRVT.CR
## 11090   NE.GDI.CON.PRVT.SNA08.CR
## 11091             NE.GDI.EXPT.CR
## 11092       NE.GDI.EXPT.SNA08.CR
## 11117             NE.GDI.FPRV.ZS
## 11122             NE.GDI.FPUB.ZS
## 11125             NE.GDI.FTOT.CR
## 11132       NE.GDI.FTOT.SNA08.CR
## 11133             NE.GDI.FTOT.ZS
## 11134             NE.GDI.IMPT.CR
## 11135       NE.GDI.IMPT.SNA08.CR
## 11136       NE.GDI.INEX.SNA08.CR
## 11141             NE.GDI.STKB.CR
## 11145       NE.GDI.STKB.SNA08.CR
## 11154             NE.GDI.TOTL.CR
## 11161       NE.GDI.TOTL.SNA08.CR
## 11162             NE.GDI.TOTL.ZG
## 11163             NE.GDI.TOTL.ZS
## 11173             NE.IMP.GNFS.ZS
## 11174             NE.MRCH.GDP.ZS
## 11180             NE.RSB.GNFS.ZG
## 11181             NE.RSB.GNFS.ZS
## 11184             NE.TRD.GNFS.ZS
## 11191             NP.AGR.TOTL.ZG
## 11195             NP.IND.TOTL.ZG
## 11201             NP.SRV.TOTL.ZG
## 11209          NV.AGR.PCAP.KD.ZG
## 11219             NV.AGR.TOTL.ZG
## 11220             NV.AGR.TOTL.ZS
## 11240             NV.IND.MANF.ZS
## 11254             NV.IND.TOTL.ZG
## 11255             NV.IND.TOTL.ZS
## 11273             NV.SRV.DISC.CD
## 11274             NV.SRV.DISC.CN
## 11275             NV.SRV.DISC.KN
## 11292             NV.SRV.TETC.ZG
## 11293             NV.SRV.TETC.ZS
## 11299             NV.SRV.TOTL.ZS
## 11388          NY.AGR.SUBS.GD.ZS
## 11392          NY.GDP.COAL.RT.ZS
## 11393          NY.GDP.DEFL.87.ZG
## 11394          NY.GDP.DEFL.KD.ZG
## 11395       NY.GDP.DEFL.KD.ZG.AD
## 11396             NY.GDP.DEFL.ZS
## 11397          NY.GDP.DEFL.ZS.87
## 11398          NY.GDP.DEFL.ZS.AD
## 11399             NY.GDP.DISC.CD
## 11400             NY.GDP.DISC.CN
## 11401             NY.GDP.DISC.KN
## 11405          NY.GDP.FCST.KD.87
## 11407          NY.GDP.FCST.KN.87
## 11408          NY.GDP.FRST.RT.ZS
## 11409          NY.GDP.MINR.RT.ZS
## 11410             NY.GDP.MKTP.CD
## 11411          NY.GDP.MKTP.CD.XD
## 11412             NY.GDP.MKTP.CN
## 11413          NY.GDP.MKTP.CN.AD
## 11414          NY.GDP.MKTP.CN.XD
## 11415             NY.GDP.MKTP.IN
## 11416             NY.GDP.MKTP.KD
## 11417          NY.GDP.MKTP.KD.87
## 11418          NY.GDP.MKTP.KD.ZG
## 11419             NY.GDP.MKTP.KN
## 11420          NY.GDP.MKTP.KN.87
## 11421       NY.GDP.MKTP.KN.87.ZG
## 11422          NY.GDP.MKTP.PP.CD
## 11423          NY.GDP.MKTP.PP.KD
## 11424       NY.GDP.MKTP.PP.KD.87
## 11425             NY.GDP.MKTP.XD
## 11426           NY.GDP.MKTP.XU.E
## 11428          NY.GDP.NGAS.RT.ZS
## 11429             NY.GDP.PCAP.CD
## 11430             NY.GDP.PCAP.CN
## 11431             NY.GDP.PCAP.KD
## 11432          NY.GDP.PCAP.KD.ZG
## 11433             NY.GDP.PCAP.KN
## 11434          NY.GDP.PCAP.PP.CD
## 11435          NY.GDP.PCAP.PP.KD
## 11436       NY.GDP.PCAP.PP.KD.87
## 11437       NY.GDP.PCAP.PP.KD.ZG
## 11438          NY.GDP.PETR.RT.ZS
## 11439          NY.GDP.TOTL.RT.ZS
## 11452             NY.GDS.TOTL.ZS
## 11457          NY.GEN.AEDU.GD.ZS
## 11458          NY.GEN.DCO2.GD.ZS
## 11459          NY.GEN.DFOR.GD.ZS
## 11460          NY.GEN.DKAP.GD.ZS
## 11461          NY.GEN.DMIN.GD.ZS
## 11462          NY.GEN.DNGY.GD.ZS
## 11463          NY.GEN.NDOM.GD.ZS
## 11464          NY.GEN.SVNG.GD.ZS
## 11497             NY.GNS.ICTR.ZS
## 11535               NYGDPMKTPKDZ
## 11536              NYGDPMKTPSACD
## 11537              NYGDPMKTPSACN
## 11538              NYGDPMKTPSAKD
## 11539              NYGDPMKTPSAKN
## 11564                 PA.NUS.PPP
## 11565              PA.NUS.PPP.05
## 11566             PA.NUS.PPPC.RF
## 15599              SE.PRM.SATT.2
## 15663              SE.PRM.TATT.1
## 15890             SE.XPD.EDUC.ZS
## 15895         SE.XPD.PRIM.GDP.ZS
## 15896          SE.XPD.PRIM.PC.ZS
## 15899         SE.XPD.SECO.GDP.ZS
## 15900          SE.XPD.SECO.PC.ZS
## 15904         SE.XPD.TERT.GDP.ZS
## 15905          SE.XPD.TERT.PC.ZS
## 15908          SE.XPD.TOTL.GD.ZS
## 15928          SF.TRN.RAIL.KM.ZS
## 16886          SH.XPD.CHEX.GD.ZS
## 16895          SH.XPD.GHED.GD.ZS
## 16899             SH.XPD.HLTH.ZS
## 16900          SH.XPD.KHEX.GD.ZS
## 16912             SH.XPD.PRIV.ZS
## 16915             SH.XPD.PUBL.ZS
## 16921             SH.XPD.TOTL.ZS
## 17073          SL.GDP.PCAP.EM.KD
## 17074       SL.GDP.PCAP.EM.KD.ZG
## 17075          SL.GDP.PCAP.EM.XD
## 17833       TG.VAL.TOTL.GD.PP.ZS
## 17834          TG.VAL.TOTL.GD.ZS
## 17835          TG.VAL.TOTL.GG.ZS
## 20066           UIS.XGDP.0.FSGOV
## 20067           UIS.XGDP.1.FSGOV
## 20068           UIS.XGDP.2.FSGOV
## 20069          UIS.XGDP.23.FSGOV
## 20070       UIS.XGDP.2T4.V.FSGOV
## 20071           UIS.XGDP.3.FSGOV
## 20072           UIS.XGDP.4.FSGOV
## 20073          UIS.XGDP.56.FSGOV
## 20123  UIS.XUNIT.GDPCAP.02.FSGOV
## 20124   UIS.XUNIT.GDPCAP.1.FSGOV
## 20125    UIS.XUNIT.GDPCAP.1.FSHH
## 20126   UIS.XUNIT.GDPCAP.2.FSGOV
## 20127  UIS.XUNIT.GDPCAP.23.FSGOV
## 20128   UIS.XUNIT.GDPCAP.23.FSHH
## 20129   UIS.XUNIT.GDPCAP.3.FSGOV
## 20130 UIS.XUNIT.GDPCAP.5T8.FSGOV
## 20131  UIS.XUNIT.GDPCAP.5T8.FSHH
##                                                                                                                                                                            name
## 712                                                                                                                                                       Per capita GDP growth
## 714                                                                                                                                                             GDP (current $)
## 715                                                                                                                                                       GDP growth (annual %)
## 716                                                                                                                                                       GDP (constant 2005 $)
## 717                                                                                                                        GDP per capita, PPP (constant 2011 international $) 
## 1557                                                                                                                                               Trade in services (% of GDP)
## 1558                                                                                                                                Gross private capital flows (% of GDP, PPP)
## 1559                                                                                                                                     Gross private capital flows (% of GDP)
## 1560                                                                                                                            Gross foreign direct investment (% of GDP, PPP)
## 1561                                                                                                                                 Gross foreign direct investment (% of GDP)
## 1752                                                                                                                                           Wage bill as a percentage of GDP
## 1772                                                                                                                           Merchandise imports (BOP): percentage of GDP (%)
## 1784                                                                                                                         Foreign direct investment, net outflows (% of GDP)
## 1785                                                                                                                         Foreign direct investment, net outflows (% of GDP)
## 1798                                                                                                                                         Current account balance (% of GDP)
## 1799                                                                                                                                         Current account balance (% of GDP)
## 1802                                                                                                                         Curr. acc. bal. before official transf. (% of GDP)
## 1805                                                                                                   Current account balance excluding net official capital grants (% of GDP)
## 1811                                                                                                                                                      Net income (% of GDP)
## 1820                                                                                                                                       Foreign direct investment (% of GDP)
## 1822                                                                                                                          Foreign direct investment, net inflows (% of GDP)
## 1828                                                                                                                                    Private capital flows, total (% of GDP)
## 1839                                                                                                                                           Net current transfers (% of GDP)
## 1875                                                                                                                           Merchandise exports (BOP): percentage of GDP (%)
## 1887                                                                                                                          Foreign direct investment, net inflows (% of GDP)
## 1889                                                                                                                          Foreign direct investment, net inflows (% of GDP)
## 1898                                                                                                                                      Migrant remittance inflows (% of GDP)
## 1904                                                                                                                                  Personal remittances, received (% of GDP)
## 1905                                                                                                                                  Workers' remittances, receipts (% of GDP)
## 2198                                                                                                                                        Total energy tax revenue (% of GDP)
## 2270                                                                                  Macro drivers of GHG emissions growth in the period 2012-2018 - Emission Intensity of GDP
## 2271                                                                                             Macro drivers of GHG emissions growth in the period 2012-2018 - GDP per capita
## 2293                                                                           Annual investment needs for coastal protection, by risk strategy (% of GDP) - low risk tolerance
## 2294                                                                 Annual investment needs for coastal protection, by risk strategy (% of GDP) - constant relative flood risk
## 2295                                                                           Annual investment needs for coastal protection, by risk strategy (% of GDP) - optimal protection
## 2356                                                                                                                          Risk to asset (average annual losses as % of GDP)
## 2357                                                                                                                      Risk to wellbeing (average annual losses as % of GDP)
## 2364                                                                                                                             Public social protection expenditure (%of GDP)
## 2401                                                                                                      Financing via international capital markets (gross inflows, % of GDP)
## 2404                                                                                                              Market capitalization of listed domestic companies (% of GDP)
## 2407                                                                                                                                      Stocks traded, total value (% of GDP)
## 2559                                                            Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2562                                                                      Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2565                                                            Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2568                                                                      Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2571                                                         Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2576                                                              Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2579                                                                        Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2582                                                              Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2585                                                                        Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2588                                                           Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2593                                                             Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2596                                                                       Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2599                                                             Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2602                                                                       Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2605                                                          Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2610                                                                                Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2613                                                                                          Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2616                                                                                Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2619                                                                                          Gross PSD, General Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2622                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2627                                                            Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2630                                                                      Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2633                                                            Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2636                                                                      Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2639                                                         Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2644                                                                          Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2647                                                                                    Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2650                                                                          Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2653                                                                                    Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2656                                         Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2659                                                   Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2662                                         Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2665                                                   Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2668                                      Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2673                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2676                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2679                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2682                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2685                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2690                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2694                                                                               Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2696                                                                               Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2698                                                                      Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2700                                                                      Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2702                                                                          Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2704                                                                          Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2706                                                                             Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2708                                                                             Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2710                                                   Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2712                                                   Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2715                                                                                Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2718                                                                                          Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2721                                                                                Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2724                                                                                          Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2727                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2730                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2733                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2736                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2739                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2744                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2747                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2750                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2753                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2756                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2761                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2764                                                                                           Gross PSD, Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2767                                                                                 Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2770                                                                                           Gross PSD, General Gov., All maturities, Debt Securities, Market value, % of GDP
## 2773                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2778                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2783                                        Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2786                                                  Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2789                                        Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2792                                                  Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2795       Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2798                 Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2801       Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2804                 Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2807    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2812     Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2815               Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2818     Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2821               Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2824  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2829                                     Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2834                                                                                          Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2837                                                                                                    Gross PSD, Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2840                                                                                          Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2843                                                                                                    Gross PSD, General Gov., All maturities, Loans, Nominal Value, % of GDP
## 2846                                                         Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2849                                                                   Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2852                                                         Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2855                                                                   Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2858                                                      Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2863                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2866                                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2869                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2872                                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2875                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2880                                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2885                                                                         Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2888                                                                                   Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2891                                                                         Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2894                                                                                   Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2897                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2900                                                  Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2903                                        Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2906                                                  Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2909                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2914                                      Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2917                                                Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2920                                      Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2923                                                Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2926                                   Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2931                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2936                                                                         Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2939                                                                                   Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2942                                                                         Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2945                                                                                   Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2948                                      Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2951                                                Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2954                                      Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2957                                                Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2960                                   Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2965                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2970                                                                                     Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2973                                                                                               Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2976                                                                                     Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 2979                                                                                               Gross PSD, General Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2982                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2985                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2988                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2991                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2994                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2999                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3002                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3005                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3008                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3011                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3016                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 3022                                                                              Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3025                                                                                        Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3028                                                                              Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3031                                                                                        Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3034                                                                           Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3039                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3042                                                                                              Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3045                                                                                    Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3048                                                                                              Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3051                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3056                                            Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3059                                                      Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3062                                            Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3065                                                      Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3068                                         Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3073                                                                                              Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3076                                                                                                        Gross PSD, Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3079                                                                                              Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3082                                                                                                        Gross PSD, General Gov., Short-term, Loans, Nominal Value, % of GDP
## 3085                                                                                           Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3090                                                                             Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3093                                                                                       Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3096                                                                             Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3099                                                                                       Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3102                                                                          Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3107                                                                                    Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3110                                                                                              Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3113                                                                                    Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3116                                                                                              Gross PSD, General Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3119                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3615                                                                                                                               Debt on Concessional terms to GDP (% of GDP)
## 3618                                                                                                                           Debt on Non-concessional terms to GDP (% of GDP)
## 3773                                                                                                                    Debt outstanding and disbursed, Total to GDP (% of GDP)
## 5376                                                                                                                                                Net ODA received (% of GDP)
## 5447                                                                                                                    Net ODA received from DAC donors (% of recipient's GDP)
## 5452                                                                                                                       Net ODA received from multilateral donors (% of GDP)
## 5460                                                                                                                  Net ODA received from non-DAC bilateral donors (% of GDP)
## 5466                                                                                                                                                Net ODA received (% of GDP)
## 5616                                                                                                                                              Total debt service (% of GDP)
## 5969                                                                                                                Energy intensity level of primary energy (MJ/$2017 PPP GDP)
## 5993                                                                                                             GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 5994                                                                                                             GDP per unit of energy use (2000 US$ per kg of oil equivalent)
## 5995                                                                                                                GDP per unit of energy use (PPP $ per kg of oil equivalent)
## 5996                                                                                                  GDP per unit of energy use (constant 2017 PPP $ per kg of oil equivalent)
## 6004                                                                                                       Energy use (kg of oil equivalent) per $1,000 GDP (constant 2017 PPP)
## 6023                                                                                                                         CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6027                                                                                                                         CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6028                                                                                                                                     CO2 emissions (kg per 2015 US$ of GDP)
## 6033                                                                                                                                        CO2 emissions (kg per PPP $ of GDP)
## 6034                                                                                                                                   CO2 emissions (kg per 2017 PPP $ of GDP)
## 6164                                                                           Water productivity, total (constant 2015 US$ GDP per cubic meter of total freshwater withdrawal)
## 6182                                                                                                             GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 6236                                                                                                                           Deposit insurance coverage (% of GDP per capita)
## 6589                                                                                                                      Domestic credit to private sector by banks (% of GDP)
## 6595                                                                                                                                    Total reserves includes gold (% of GDP)
## 7389                                                                                                                 Claims on governments and other public entities (% of GDP)
## 7398                                                                                                                           Monetary Sector credit to private sector (% GDP)
## 7407                                                                                                                                                     Broad money (% of GDP)
## 7414                                                                                                                                     Money and quasi money (M2) as % of GDP
## 7415                                                                                                                                     Money and quasi money (M2) as % of GDP
## 7417                                                                                                                                          Income velocity of money (GDP/M2)
## 7422                                                                                                                                        Quasi-liquid liabilities (% of GDP)
## 7423                                                                                                                                                      Seignorage (% of GDP)
## 7462                                                                                                                                 Claims on central government, etc. (% GDP)
## 7463                                                                                                                 Claims on other sectors of the domestic economy (% of GDP)
## 7464                                                                                                                    Domestic credit provided by financial sector (% of GDP)
## 7465                                                                                                                      Domestic credit provided by banking sector (% of GDP)
## 7467                                                                                                                               Domestic credit to private sector (% of GDP)
## 7468                                                                                                                                        Credit to private sector (% of GDP)
## 7469                                                                                                                                        Liquid liabilities (M3) as % of GDP
## 7470                                                                                                                                        Liquid liabilities (M3) as % of GDP
## 7471                                                                                                                                        Quasi-liquid liabilities (% of GDP)
## 7530                                                                                                                        Overall budget balance, including grants (% of GDP)
## 7531                                                                                                                        Overall budget deficit, including grants (% of GDP)
## 7540                                                                                                                                  Central government debt, total (% of GDP)
## 7541                                                                                                                                  Central government debt, total (% of GDP)
## 7545                                                                                                                                           Financing from abroad (% of GDP)
## 7546                                                                                                                                           Financing from abroad (% of GDP)
## 7550                                                                                                                                       Domestic financing, total (% of GDP)
## 7551                                                                                                                                             Domestic finanacing (% of GDP)
## 7561                                                                                                                               Current revenue, excluding grants (% of GDP)
## 7564                                                                                                                                                 Current revenue (% of GDP)
## 7566                                                                                                               Central government revenues, excluding all grants (% of GDP)
## 7569                                                                                                                               Current revenue, excluding grants (% of GDP)
## 7571                                                                                                                                               SOE external debt (% of GDP)
## 7573                                                                                                                      State-owned enterprises, economic activity (% of GDP)
## 7574                                                                                                                                           SOE economic activity (% of GDP)
## 7577                                                                                                    State-owned enterprises, net financial flows from government (% of GDP)
## 7578                                                                                                                         SOE net financial flows from government (% of GDP)
## 7579                                                                                                       State-owned enterprises, overall balance before transfers (% of GDP)
## 7605                                                                                                                                                     Tax revenue (% of GDP)
## 7606                                                                                                                                                     Tax revenue (% of GDP)
## 7624                                                                                                                                             Defense expenditure (% of GDP)
## 7627                                                                                                                            Research and development expenditure (% of GDP)
## 7630                                                                                                                                              Expenditure, total (% of GDP)
## 7631                                                                                                                                               Total expenditure (% of GDP)
## 7638                                                                                                                             Net acquisition of financial assets (% of GDP)
## 7641                                                                                                                                            Cash surplus/deficit (% of GDP)
## 7646                                                                                                                                  Central government debt, total (% of GDP)
## 7650                                                                                                                         Net incurrence of liabilities, domestic (% of GDP)
## 7652                                                                                                                          Net incurrence of liabilities, foreign (% of GDP)
## 7654                                                                                                                            Net incurrence of liabilities, total (% of GDP)
## 7656                                                                                                                           Net investment in nonfinancial assets (% of GDP)
## 7658                                                                                                                             Net lending (+) / net borrowing (-) (% of GDP)
## 7669                                                                                                                                       Revenue, excluding grants (% of GDP)
## 7684                                                                                                                                                     Tax revenue (% of GDP)
## 7701                                                                                                                                                         Expense (% of GDP)
## 7792                                                                                                                           Private credit by deposit money banks to GDP (%)
## 7793                                                                                                                                    Deposit money banks'' assets to GDP (%)
## 7794                                                                                                                          Nonbank financial institutions’ assets to GDP (%)
## 7796                                                                                                                                              Liquid liabilities to GDP (%)
## 7797                                                                                                                                             Central bank assets to GDP (%)
## 7798                                                                                                                                              Mutual fund assets to GDP (%)
## 7799                                                                                                                                       Financial system deposits to GDP (%)
## 7800                                                                                                                                   Life insurance premium volume to GDP (%)
## 7801                                                                                                                               Non-life insurance premium volume to GDP (%)
## 7802                                                                                                                                        Insurance company assets to GDP (%)
## 7803                                                                                          Private credit by deposit money banks and other financial institutions to GDP (%)
## 7804                                                                                                                                             Pension fund assets to GDP (%)
## 7805                                                                                                                               Domestic credit to private sector (% of GDP)
## 7806                                                                                                                                     Stock market capitalization to GDP (%)
## 7807                                                                                                                                 Stock market total value traded to GDP (%)
## 7808                                                                                                                    Outstanding domestic private debt securities to GDP (%)
## 7809                                                                                                                     Outstanding domestic public debt securities to GDP (%)
## 7810                                                                                                               Outstanding international private debt securities to GDP (%)
## 7811                                                                                                                Outstanding international public debt securities to GDP (%)
## 7812                                                                                                                                       International debt issues to GDP (%)
## 7813                                                                                                                              Gross portfolio equity liabilities to GDP (%)
## 7814                                                                                                                                   Gross portfolio equity assets to GDP (%)
## 7815                                                                                                                                Gross portfolio debt liabilities to GDP (%)
## 7816                                                                                                                                     Gross portfolio debt assets to GDP (%)
## 7817                                                                                                                                 Syndicated loan issuance volume to GDP (%)
## 7818                                                                                                                                  Corporate bond issuance volume to GDP (%)
## 7821                                                                                                                   Credit flows by fintech and bigtech companies to GDP (%)
## 7822                                                                                                                   Credit flows by fintech and bigtech companies to GDP (%)
## 7830                                                                                                                Credit to government and state-owned enterprises to GDP (%)
## 7837                                                                                                                                                   Bank deposits to GDP (%)
## 7843                                                                                                                              Loans from nonresident banks (net) to GDP (%)
## 7844                                                                                                              Loans from nonresident banks (amounts outstanding) to GDP (%)
## 7848                                                                                                                                              Remittance inflows to GDP (%)
## 7849                                                                                                              Consolidated foreign claims of BIS reporting banks to GDP (%)
## 7854                                                                                                                                           Global leasing volume to GDP (%)
## 7855                                                                                                                                          Total factoring volume to GDP (%)
## 8686                                                                                                            Information and communication technology expenditure (% of GDP)
## 8959                                                                                                              Railways, goods transported (ton-km per PPP $ million of GDP)
## 8961                                                                                                                          Railways, passenger-km (per PPP $ million of GDP)
## 9068                                                                                                                                         Telecommunications revenue (% GDP)
## 10943                                                                                                                                           Military expenditure (% of GDP)
## 10948                                                                           GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Current Price
## 10949                                                                          GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10950                                                                                                                 GDP on Agriculture Sector (in IDR Million), Current Price
## 10951                                                                                                                GDP on Agriculture Sector (in IDR Million), Constant Price
## 10952                                                                                 GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Current Price
## 10953                                                                                GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Constant Price
## 10954                                                                                                 GDP on Business Services Sector (in IDR Million), SNA 2008, Current Price
## 10955                                                                                                GDP on Business Services Sector (in IDR Million), SNA 2008, Constant Price
## 10956                                                                                                                GDP on Construction Sector (in IDR Million), Current Price
## 10957                                                                                                               GDP on Construction Sector (in IDR Million), Constant Price
## 10958                                                                                                      GDP on Construction Sector (in IDR Million), SNA 2008, Current Price
## 10959                                                                                                     GDP on Construction Sector (in IDR Million), SNA 2008, Constant Price
## 10960                                                                                                GDP on Education Services Sector (in IDR Million), SNA 2008, Current Price
## 10961                                                                                               GDP on Education Services Sector (in IDR Million), SNA 2008, Constant Price
## 10962                                                                                          GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Current Price
## 10963                                                                                         GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Constant Price
## 10964                                                                                                           Total GDP excluding Oil and Gas (in IDR Million), Current Price
## 10965                                                                                                          Total GDP excluding Oil and Gas (in IDR Million), Constant Price
## 10966                                                                                                           GDP on Financial Service Sector (in IDR Million), Current Price
## 10967                                                                                                          GDP on Financial Service Sector (in IDR Million), Constant Price
## 10968                                                                                    GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Current Price
## 10969                                                                                   GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10970                                                                               GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Current Price
## 10971                                                                              GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10972                                                                                                           Total GDP including Oil and Gas (in IDR Million), Current Price
## 10973                                                                                                          Total GDP including Oil and Gas (in IDR Million), Constant Price
## 10974                                                                                                 Total GDP including Oil and Gas (in IDR Million), SNA 2008, Current Price
## 10975                                                                                                Total GDP including Oil and Gas (in IDR Million), SNA 2008, Constant Price
## 10976                                                                                       GDP on Information & Communication Sector (in IDR Million), SNA 2008, Current Price
## 10977                                                                                      GDP on Information & Communication Sector (in IDR Million), SNA 2008, Constant Price
## 10978                                                                                                        GDP on Mining and Quarrying Sector (in IDR Million), Current Price
## 10979                                                                                                       GDP on Mining and Quarrying Sector (in IDR Million), Constant Price
## 10980                                                                                                GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Current Price
## 10981                                                                                               GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Constant Price
## 10982                                                                                                               GDP on Manufacturing Sector (in IDR Million), Current Price
## 10983                                                                                                              GDP on Manufacturing Sector (in IDR Million), Constant Price
## 10984                                                                                            GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Current Price
## 10985                                                                                           GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Constant Price
## 10986                                                       GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Current Price
## 10987                                                      GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Constant Price
## 10988                                                                                                       GDP on Real Estate Sector (in IDR Million), SNA 2008, Current Price
## 10989                                                                                                      GDP on Real Estate Sector (in IDR Million), SNA 2008, Constant Price
## 10990                                                                                                               GDP on Other Service Sector (in IDR Million), Current Price
## 10991                                                                                                              GDP on Other Service Sector (in IDR Million), Constant Price
## 10992                                                                                                    GDP on Other Services Sector (in IDR Million), SNA 2008, Current Price
## 10993                                                                                                   GDP on Other Services Sector (in IDR Million), SNA 2008, Constant Price
## 10994                                                                                        GDP on Transportation and Telecommunication Sector (in IDR Million), Current Price
## 10995                                                                                       GDP on Transportation and Telecommunication Sector (in IDR Million), Constant Price
## 10996                                                                                          GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Current Price
## 10997                                                                                         GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Constant Price
## 10998                                                                                                 GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Current Price
## 10999                                                                                                GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Constant Price
## 11000                                                 GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Current Price
## 11001                                                GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Constant Price
## 11002                                                                                                                   GDP on Utilities Sector (in IDR Million), Current Price
## 11003                                                                                                                  GDP on Utilities Sector (in IDR Million), Constant Price
## 11004                                                              GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Current Price
## 11005                                                             GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Constant Price
## 11014                                                                                                               General government final consumption expenditure (% of GDP)
## 11025                                                                                                                  Household final consumption expenditure, etc. (% of GDP)
## 11042                                                                                                            Households and NPISHs final consumption expenditure (% of GDP)
## 11052                                                                                                                            Final consumption expenditure, etc. (% of GDP)
## 11060                                                                                                                      Total consumption: contribution to growth of GDP (%)
## 11061                                                                                                                                  Final consumption expenditure (% of GDP)
## 11071                                                                                                                                     Gross national expenditure (% of GDP)
## 11083                                                                                                                                  Exports of goods and services (% of GDP)
## 11085                                                                                                        GDP expenditure on general government consumption (in IDR Million)
## 11086                                                                               GDP expenditure on general government consumption (in IDR Million), SNA 2008, Current Price
## 11087                                                                                            GDP expenditure on non profit private institution consumption (in IDR Million)
## 11088                                                                   GDP expenditure on non profit private institution consumption (in IDR Million), SNA 2008, Current Price
## 11089                                                                                                                   GDP expenditure on private consumption (in IDR Million)
## 11090                                                                                          GDP expenditure on private consumption (in IDR Million), SNA 2008, Current Price
## 11091                                                                                                                               GDP expenditure on exports (in IDR Million)
## 11092                                                                                                      GDP expenditure on exports (in IDR Million), SNA 2008, Current Price
## 11117                                                                                                                  Gross fixed capital formation, private sector (% of GDP)
## 11122                                                                                                                                        Gross public investment (% of GDP)
## 11125                                                                                                         GDP expenditure on gross fixed capital formation (in IDR Million)
## 11132                                                                                GDP expenditure on gross fixed capital formation (in IDR Million), SNA 2008, Current Price
## 11133                                                                                                                                  Gross fixed capital formation (% of GDP)
## 11134                                                                                                                               GDP expenditure on imports (in IDR Million)
## 11135                                                                                                      GDP expenditure on imports (in IDR Million), SNA 2008, Current Price
## 11136                                                                                     GDP expenditure on inter-region net exports (in IDR Million), SNA 2008, Current Price
## 11141                                                                                                                      GDP expenditure on changes in stock (in IDR Million)
## 11145                                                                                             GDP expenditure on changes in stock (in IDR Million), SNA 2008, Current Price
## 11154                                                                                                                           Total GDP based on expenditure (in IDR Million)
## 11161                                                                                                  Total GDP based on expenditure (in IDR Million), SNA 2008, Current Price
## 11162                                                                                                                     Gross domestic investment: contr. to growth of GDP(%)
## 11163                                                                                                                                        Gross capital formation (% of GDP)
## 11173                                                                                                                                  Imports of goods and services (% of GDP)
## 11174                                                                                                                                        Merchandise trade to GDP ratio (%)
## 11180                                                                                                                       Resource balance: contribution to growth of GDP (%)
## 11181                                                                                                                         External balance on goods and services (% of GDP)
## 11184                                                                                                                                                          Trade (% of GDP)
## 11191                                                                                                                            Agriculture: contribution to growth of GDP (%)
## 11195                                                                                                                               Industry: contribution to growth of GDP (%)
## 11201                                                                                                                               Services: contribution to growth of GDP (%)
## 11209                                                                                                                          Real agricultural GDP per capita growth rate (%)
## 11219                                                                                                                                    Real agricultural GDP growth rates (%)
## 11220                                                                                                                Agriculture, forestry, and fishing, value added (% of GDP)
## 11240                                                                                                                                     Manufacturing, value added (% of GDP)
## 11254                                                                                                                               Industry: contribution to growth of GDP (%)
## 11255                                                                                                                 Industry (including construction), value added (% of GDP)
## 11273                                                                                                                             Discrepancy in GDP, value added (current US$)
## 11274                                                                                                                             Discrepancy in GDP, value added (current LCU)
## 11275                                                                                                                            Discrepancy in GDP, value added (constant LCU)
## 11292                                                                                                                               Services: contribution to growth of GDP (%)
## 11293                                                                                                                                    Services, etc., value added (% of GDP)
## 11299                                                                                                                                          Services, value added (% of GDP)
## 11388                                                                                                                                  Agricultural support estimate (% of GDP)
## 11392                                                                                                                                                     Coal rents (% of GDP)
## 11393                                                                                                                                        Inflation, GDP deflator (annual %)
## 11394                                                                                                                                        Inflation, GDP deflator (annual %)
## 11395                                                                                                                         Inflation, GDP deflator: linked series (annual %)
## 11396                                                                                                                                GDP deflator (base year varies by country)
## 11397                                                                                                                                                 GDP deflator (1987 = 100)
## 11398                                                                                                                 GDP deflator: linked series (base year varies by country)
## 11399                                                                                                                  Discrepancy in expenditure estimate of GDP (current US$)
## 11400                                                                                                                  Discrepancy in expenditure estimate of GDP (current LCU)
## 11401                                                                                                                 Discrepancy in expenditure estimate of GDP (constant LCU)
## 11405                                                                                                                                    GDP at factor cost (constant 1987 US$)
## 11407                                                                                                                                    GDP at factor cost (constant 1987 LCU)
## 11408                                                                                                                                                   Forest rents (% of GDP)
## 11409                                                                                                                                                  Mineral rents (% of GDP)
## 11410                                                                                                                                                         GDP (current US$)
## 11411                                                                                                                                GDP deflator, index (2000=100; US$ series)
## 11412                                                                                                                                                         GDP (current LCU)
## 11413                                                                                                                                          GDP: linked series (current LCU)
## 11414                                                                                                                         GDP deflator, period average (LCU index 2000=100)
## 11415                                                                                                                                                              GDP Deflator
## 11416                                                                                                                                                   GDP (constant 2015 US$)
## 11417                                                                                                                                  GDP at market prices (constant 1987 US$)
## 11418                                                                                                                                                     GDP growth (annual %)
## 11419                                                                                                                                                        GDP (constant LCU)
## 11420                                                                                                                                  GDP at market prices (constant 1987 LCU)
## 11421                                                                                                                                                     GDP growth (annual %)
## 11422                                                                                                                                        GDP, PPP (current international $)
## 11423                                                                                                                                  GDP, PPP (constant 2017 international $)
## 11424                                                                                                                                  GDP, PPP (constant 1987 international $)
## 11425                                                                                                                                             GDP deflator (1987=100,Index)
## 11426                                                                                                                    GDP deflator, end period (base year varies by country)
## 11428                                                                                                                                              Natural gas rents (% of GDP)
## 11429                                                                                                                                              GDP per capita (current US$)
## 11430                                                                                                                                              GDP per capita (current LCU)
## 11431                                                                                                                                        GDP per capita (constant 2015 US$)
## 11432                                                                                                                                          GDP per capita growth (annual %)
## 11433                                                                                                                                             GDP per capita (constant LCU)
## 11434                                                                                                                             GDP per capita, PPP (current international $)
## 11435                                                                                                                       GDP per capita, PPP (constant 2017 international $)
## 11436                                                                                                                       GDP per capita, PPP (constant 1987 international $)
## 11437                                                                                                                                     GDP per capita, PPP annual growth (%)
## 11438                                                                                                                                                      Oil rents (% of GDP)
## 11439                                                                                                                                  Total natural resources rents (% of GDP)
## 11452                                                                                                                                         Gross domestic savings (% of GDP)
## 11457                                                                                                                         Genuine savings: education expenditure (% of GDP)
## 11458                                                                                                                         Genuine savings: carbon dioxide damage (% of GDP)
## 11459                                                                                                                          Genuine savings: net forest depletion (% of GDP)
## 11460                                                                                                                  Genuine savings: consumption of fixed capital (% of GDP)
## 11461                                                                                                                             Genuine savings: mineral depletion (% of GDP)
## 11462                                                                                                                              Genuine savings: energy depletion (% of GDP)
## 11463                                                                                                                          Genuine savings: net domestic savings (% of GDP)
## 11464                                                                                                                                       Genuine domestic savings (% of GDP)
## 11497                                                                                                                                                  Gross savings (% of GDP)
## 11535                                                                                  Annual percentage growth rate of GDP at market prices based on constant 2010 US Dollars.
## 11536                                                                                                                                      GDP,current US$,millions,seas. adj.,
## 11537                                                                                                                                      GDP,current LCU,millions,seas. adj.,
## 11538                                                                                                                                GDP,constant 2010 US$,millions,seas. adj.,
## 11539                                                                                                                                GDP,constant 2010 LCU,millions,seas. adj.,
## 11564                                                                                                                      PPP conversion factor, GDP (LCU per international $)
## 11565                                                                                                                 2005 PPP conversion factor, GDP (LCU per international $)
## 11566                                                                                                  Price level ratio of PPP conversion factor (GDP) to market exchange rate
## 15599                                                                                                          (De Facto) Average principal salary as percent of GDP per capita
## 15663                                                                                      (De Jure) Average starting public-school teacher salary as percent of GDP per capita
## 15890                                                                                                                                  Public Expenditure on Education  (% GDP)
## 15895                                                                                                                          Public spending on education, primary (% of GDP)
## 15896                                                                                                         Government expenditure per student, primary (% of GDP per capita)
## 15899                                                                                                                        Public spending on education, secondary (% of GDP)
## 15900                                                                                                       Government expenditure per student, secondary (% of GDP per capita)
## 15904                                                                                                                         Public spending on education, tertiary (% of GDP)
## 15905                                                                                                        Government expenditure per student, tertiary (% of GDP per capita)
## 15908                                                                                                                     Government expenditure on education, total (% of GDP)
## 15928                                                                                                                                     Rail traffic (km per million US$ GDP)
## 16886                                                                                                                                     Current health expenditure (% of GDP)
## 16895                                                                                                                 Domestic general government health expenditure (% of GDP)
## 16899                                                                                                                                      Public Expenditure on Health (% GDP)
## 16900                                                                                                                                     Capital health expenditure (% of GDP)
## 16912                                                                                                                                    Health expenditure, private (% of GDP)
## 16915                                                                                                                                     Health expenditure, public (% of GDP)
## 16921                                                                                                                                      Health expenditure, total (% of GDP)
## 17073                                                                                                                             GDP per person employed (constant 2017 PPP $)
## 17074                                                                                                                                 GDP per person employed (annual % growth)
## 17075                                                                                                                               GDP per person employed, index (1980 = 100)
## 17833                                                                                                                                                     Trade (% of GDP, PPP)
## 17834                                                                                                                                              Merchandise trade (% of GDP)
## 17835                                                                                                                                           Trade in goods (% of goods GDP)
## 20066                                                                                                           Government expenditure on pre-primary education as % of GDP (%)
## 20067                                                                                                               Government expenditure on primary education as % of GDP (%)
## 20068                                                                                            Government expenditure on lower secondary education as a percentage of GDP (%)
## 20069                                                                                                             Government expenditure on secondary education as % of GDP (%)
## 20070                                                                  Government expenditure on secondary and post-secondary non-tertiary vocational education as % of GDP (%)
## 20071                                                                                            Government expenditure on upper secondary education as a percentage of GDP (%)
## 20072                                                                                           Government expenditure on post-secondary non-tertiary education as % of GDP (%)
## 20073                                                                                                              Government expenditure on tertiary education as % of GDP (%)
## 20123                                                                                      Initial government funding per pre-primary student as a percentage of GDP per capita
## 20124                                                                                          Initial government funding per primary student as a percentage of GDP per capita
## 20125                                                                                           Initial household funding per primary student as a percentage of GDP per capita
## 20126                                                                                  Initial government funding per lower secondary student as a percentage of GDP per capita
## 20127                                                                                        Initial government funding per secondary student as a percentage of GDP per capita
## 20128                                                                                         Initial household funding per secondary student as a percentage of GDP per capita
## 20129                                                                                  Initial government funding per upper secondary student as a percentage of GDP per capita
## 20130                                                                                         Initial government funding per tertiary student as a percentage of GDP per capita
## 20131                                                                                          Initial household funding per tertiary student as a percentage of GDP per capita
WDIsearch(string = "military expenditure", field = "name", short = TRUE, cache = NULL)
##               indicator
## 10941    MS.MIL.XPND.CD
## 10942    MS.MIL.XPND.CN
## 10943 MS.MIL.XPND.GD.ZS
## 10944 MS.MIL.XPND.GN.ZS
## 10945    MS.MIL.XPND.ZS
##                                                             name
## 10941                         Military expenditure (current USD)
## 10942                         Military expenditure (current LCU)
## 10943                            Military expenditure (% of GDP)
## 10944                            Military expenditure (% of GNI)
## 10945 Military expenditure (% of general government expenditure)

検索例 2(WDI)

WDIsearch(string = "NY.GDP.MKTP.CD", field = "indicator", short = TRUE, cache = NULL)
##               indicator                                       name
## 11410    NY.GDP.MKTP.CD                          GDP (current US$)
## 11411 NY.GDP.MKTP.CD.XD GDP deflator, index (2000=100; US$ series)

練習 2. - 検索(short)

名前で検索(“” の間に、(なるべく簡単な)検索文字列を入れてください。)

WDIsearch(string = "", field = "name", short = TRUE, cache = NULL)
##                                               indicator
## 1                                    1.0.HCount.1.90usd
## 2                                     1.0.HCount.2.5usd
## 3                                  1.0.HCount.Mid10to50
## 4                                       1.0.HCount.Ofcl
## 5                                   1.0.HCount.Poor4uds
## 6                                   1.0.HCount.Vul4to10
## 7                                      1.0.PGap.1.90usd
## 8                                       1.0.PGap.2.5usd
## 9                                     1.0.PGap.Poor4uds
## 10                                     1.0.PSev.1.90usd
## 11                                      1.0.PSev.2.5usd
## 12                                    1.0.PSev.Poor4uds
## 13                                   1.1.HCount.1.90usd
## 14                                    1.1.HCount.2.5usd
## 15                                 1.1.HCount.Mid10to50
## 16                                      1.1.HCount.Ofcl
## 17                                  1.1.HCount.Poor4uds
## 18                                  1.1.HCount.Vul4to10
## 19                                     1.1.PGap.1.90usd
## 20                                      1.1.PGap.2.5usd
## 21                                    1.1.PGap.Poor4uds
## 22                                     1.1.PSev.1.90usd
## 23                                      1.1.PSev.2.5usd
## 24                                    1.1.PSev.Poor4uds
## 25                           1.1_ACCESS.ELECTRICITY.TOT
## 26                        1.1_TOTAL.FINAL.ENERGY.CONSUM
## 27                              1.1_YOUTH.LITERACY.RATE
## 28                                   1.2.HCount.1.90usd
## 29                                    1.2.HCount.2.5usd
## 30                                 1.2.HCount.Mid10to50
## 31                                      1.2.HCount.Ofcl
## 32                                  1.2.HCount.Poor4uds
## 33                                  1.2.HCount.Vul4to10
## 34                                     1.2.PGap.1.90usd
## 35                                      1.2.PGap.2.5usd
## 36                                    1.2.PGap.Poor4uds
## 37                                     1.2.PSev.1.90usd
## 38                                      1.2.PSev.2.5usd
## 39                                    1.2.PSev.Poor4uds
## 40                         1.2_ACCESS.ELECTRICITY.RURAL
## 41                         1.3_ACCESS.ELECTRICITY.URBAN
## 42                                               100000
## 43                                              1000000
## 44                                               110000
## 45                                               110100
## 46                                              1101000
## 47                                               110110
## 48                                              1101100
## 49                                               110111
## 50                                              1101110
## 51                                               110112
## 52                                              1101120
## 53                                               110113
## 54                                              1101130
## 55                                               110114
## 56                                              1101140
## 57                                               110115
## 58                                              1101150
## 59                                               110116
## 60                                              1101160
## 61                                               110117
## 62                                              1101170
## 63                                               110118
## 64                                              1101180
## 65                                               110119
## 66                                              1101190
## 67                                               110120
## 68                                              1101200
## 69                                               110200
## 70                                              1102000
## 71                                               110210
## 72                                              1102100
## 73                                               110220
## 74                                              1102200
## 75                                               110300
## 76                                              1103000
## 77                                               110400
## 78                                               110500
## 79                                              1105000
## 80                                               110600
## 81                                               110700
## 82                                              1107000
## 83                                               110710
## 84                                              1107100
## 85                                               110730
## 86                                              1107300
## 87                                               110800
## 88                                              1108000
## 89                                               111100
## 90                                              1111000
## 91                                               111300
## 92                                              1113000
## 93                                               130000
## 94                                              1300000
## 95                                               140000
## 96                                              1400000
## 97                                               150000
## 98                                              1500000
## 99                                               150100
## 100                                             1501000
## 101                                             1501100
## 102                                             1501200
## 103                                             1501300
## 104                                              150200
## 105                                             1502000
## 106                                              150300
## 107                                             1503000
## 108                                             1600000
## 109                                              160100
## 110                                              160200
## 111                                              170000
## 112                                         2.0.cov.Cel
## 113                                         2.0.cov.Ele
## 114                                         2.0.cov.FPS
## 115                                         2.0.cov.Int
## 116                               2.0.cov.Math.pl_2.all
## 117                               2.0.cov.Math.pl_2.prv
## 118                               2.0.cov.Math.pl_2.pub
## 119                               2.0.cov.Math.pl_3.all
## 120                               2.0.cov.Math.pl_3.prv
## 121                               2.0.cov.Math.pl_3.pub
## 122                               2.0.cov.Read.pl_2.all
## 123                               2.0.cov.Read.pl_2.prv
## 124                               2.0.cov.Read.pl_2.pub
## 125                               2.0.cov.Read.pl_3.all
## 126                               2.0.cov.Read.pl_3.prv
## 127                               2.0.cov.Read.pl_3.pub
## 128                                         2.0.cov.San
## 129                                         2.0.cov.Sch
## 130                               2.0.cov.Scie.pl_2.all
## 131                               2.0.cov.Scie.pl_2.prv
## 132                               2.0.cov.Scie.pl_2.pub
## 133                               2.0.cov.Scie.pl_3.all
## 134                               2.0.cov.Scie.pl_3.prv
## 135                               2.0.cov.Scie.pl_3.pub
## 136                                         2.0.cov.Wat
## 137                                         2.0.hoi.Cel
## 138                                         2.0.hoi.Ele
## 139                                         2.0.hoi.FPS
## 140                                         2.0.hoi.Int
## 141                               2.0.hoi.Math.pl_2.all
## 142                               2.0.hoi.Math.pl_2.prv
## 143                               2.0.hoi.Math.pl_2.pub
## 144                               2.0.hoi.Math.pl_3.all
## 145                               2.0.hoi.Math.pl_3.prv
## 146                               2.0.hoi.Math.pl_3.pub
## 147                               2.0.hoi.Read.pl_2.all
## 148                               2.0.hoi.Read.pl_2.prv
## 149                               2.0.hoi.Read.pl_2.pub
## 150                               2.0.hoi.Read.pl_3.all
## 151                               2.0.hoi.Read.pl_3.prv
## 152                               2.0.hoi.Read.pl_3.pub
## 153                                         2.0.hoi.San
## 154                                         2.0.hoi.Sch
## 155                               2.0.hoi.Scie.pl_2.all
## 156                               2.0.hoi.Scie.pl_2.prv
## 157                               2.0.hoi.Scie.pl_2.pub
## 158                               2.0.hoi.Scie.pl_3.all
## 159                               2.0.hoi.Scie.pl_3.prv
## 160                               2.0.hoi.Scie.pl_3.pub
## 161                                         2.0.hoi.Wat
## 162                                   2.01.01.02.nabase
## 163                                 2.01.03.01.prcpbase
## 164                                  2.04.01.01.excncpt
## 165                                  2.1_ACCESS.CFT.TOT
## 166                                 2.1_PRE.PRIMARY.GER
## 167                          2.1_SHARE.TOTAL.RE.IN.TFEC
## 168                                             2.2_GIR
## 169                                         2.3_GIR.GPI
## 170                                       2.4_OOSC.RATE
## 171                                             2.5_PCR
## 172                                         2.6_PCR.GPI
## 173                         2.7_PRI.SEC.TRANSITION.RATE
## 174                         2.8_LOW.SEC.COMPLETION.RATE
## 175                                       3.0.Atkin.0.5
## 176                                         3.0.Atkin.1
## 177                                         3.0.Atkin.2
## 178                                        3.0.GenEnt-1
## 179                                         3.0.GenEnt2
## 180                                            3.0.Gini
## 181                                     3.0.Gini_nozero
## 182                                       3.0.IncShr.q1
## 183                                       3.0.IncShr.q2
## 184                                       3.0.IncShr.q3
## 185                                       3.0.IncShr.q4
## 186                                       3.0.IncShr.q5
## 187                                       3.0.MLongDev0
## 188                                       3.0.Rate75-25
## 189                                       3.0.Rate90-10
## 190                                       3.0.TheilInd1
## 191                                    3.01.04.01.agcen
## 192                                    3.02.01.02.fscov
## 193                                            3.1.Gini
## 194                                       3.1.MLongDev0
## 195                                       3.1.TheilInd1
## 196                            3.1_LOW.SEC.NEW.TEACHERS
## 197                                3.1_PRI.NEW.ENTRANTS
## 198                                  3.1_RE.CONSUMPTION
## 199                                   3.11.01.01.popcen
## 200                                   3.11.01.03.popreg
## 201                             3.11_LOW.SEC.CLASSROOMS
## 202                         3.12_LOW.SEC.NEW.CLASSROOMS
## 203                        3.13_PRI.MATH.BOOK.PER.PUPIL
## 204                       3.14_PRI.LANGU.BOOK.PER.PUPIL
## 205                       3.15_LEARN.TIME.TEACHER.STUDY
## 206                                            3.2.Gini
## 207                                       3.2.MLongDev0
## 208                                       3.2.TheilInd1
## 209                                    3.2_PRI.STUDENTS
## 210                                    3.3_PRI.TEACHERS
## 211                                3.4_PRI.NEW.TEACHERS
## 212                                  3.5_PRI.CLASSROOMS
## 213                              3.6_PRI.NEW.CLASSROOMS
## 214                            3.7_LOW.SEC.NEW.ENTRANTS
## 215                                3.8_LOW.SEC.STUDENTS
## 216                                3.9_LOW.SEC.TEACHERS
## 217                                      4.0.nini.15a18
## 218                                      4.0.nini.15a24
## 219                                      4.0.nini.19a24
## 220                                      4.0.stud.15a18
## 221                                      4.0.stud.15a24
## 222                                      4.0.stud.19a24
## 223                                  4.0.studwork.15a18
## 224                                  4.0.studwork.15a24
## 225                                  4.0.studwork.19a24
## 226                                      4.0.work.15a18
## 227                                      4.0.work.15a24
## 228                                      4.0.work.19a24
## 229                      4.1.1_TOTAL.ELECTRICITY.OUTPUT
## 230                        4.1.2_REN.ELECTRICITY.OUTPUT
## 231                                      4.1.nini.15a18
## 232                                      4.1.nini.15a24
## 233                                      4.1.nini.19a24
## 234                                      4.1.stud.15a18
## 235                                      4.1.stud.15a24
## 236                                      4.1.stud.19a24
## 237                                  4.1.studwork.15a18
## 238                                  4.1.studwork.15a24
## 239                                  4.1.studwork.19a24
## 240                                      4.1.work.15a18
## 241                                      4.1.work.15a24
## 242                                      4.1.work.19a24
## 243                         4.1_SHARE.RE.IN.ELECTRICITY
## 244                              4.1_TOTAL.EDU.SPENDING
## 245                                      4.2.nini.15a18
## 246                                      4.2.nini.15a24
## 247                                      4.2.nini.19a24
## 248                                      4.2.stud.15a18
## 249                                      4.2.stud.15a24
## 250                                      4.2.stud.19a24
## 251                                  4.2.studwork.15a18
## 252                                  4.2.studwork.15a24
## 253                                  4.2.studwork.19a24
## 254                                      4.2.work.15a18
## 255                                      4.2.work.15a24
## 256                                      4.2.work.19a24
## 257                              4.2_BASIC.EDU.SPENDING
## 258                             4.3_TOTAL.EDU.RECURRENT
## 259                             4.4_BASIC.EDU.RECURRENT
## 260                                  5.0.AMeanIncGr.All
## 261                                  5.0.AMeanIncGr.B40
## 262                                   5.01.01.01.indust
## 263                                   5.04.01.01.exdebt
## 264                                   5.04.01.02.impexp
## 265                             5.1.1_AFG.TOTA.AID.CIDA
## 266                               5.1.1_ALB.TOTA.AID.WB
## 267                             5.1.1_BFA.TOTA.AID.CIDA
## 268                               5.1.1_CAF.TOT.AID.GPE
## 269                             5.1.1_CIV.TOTA.AID.AFDB
## 270                              5.1.1_CMR.TOTA.AID.BAD
## 271                               5.1.1_DJI.TOTA.AID.WB
## 272                              5.1.1_ETH.TOTA.AID.ADB
## 273                               5.1.1_GEO.TOTA.AID.EC
## 274                             5.1.1_GHA.TOTA.AID.DFID
## 275                         5.1.1_GIN.TOTA.AID.ADPP.AFD
## 276                          5.1.1_GNB.TOTA.AID.ADPP.EU
## 277                          5.1.1_KGZ.TOTA.AID.ADPP.EU
## 278                              5.1.1_KHM.TOTA.AID.BAD
## 279                              5.1.1_LAO.TOTA.AID.ADB
## 280                           5.1.1_LBR.TOTA.AID.UNICEF
## 281                           5.1.1_MDA.TOTA.AID.UNICEF
## 282                               5.1.1_MDG.TOTA.AID.WB
## 283                              5.1.1_MOZ.TOTA.AID.CAN
## 284                              5.1.1_MRT.TOTA.AID.AFD
## 285                             5.1.1_MWI.TOTA.AID.AFDB
## 286                              5.1.1_NER.TOTA.AID.AFD
## 287                             5.1.1_RWA.TOTA.AID.DFID
## 288                             5.1.1_SEN.TOTA.AID.CIDA
## 289                             5.1.1_SLE.TOTA.AID.DFID
## 290                              5.1.1_VNM.TOTA.AID.BEL
## 291                              5.1.1_ZMB.TOTA.AID.DNK
## 292                            5.1.10_AFG.TOTA.AID.SIDA
## 293                             5.1.10_ETH.TOTA.AID.JPN
## 294                             5.1.10_KHM.TOTA.AID.WFP
## 295                              5.1.10_LAO.TOTA.AID.WB
## 296                              5.1.10_MDG.TOTA.AID.EC
## 297                             5.1.10_MOZ.TOTA.AID.JPN
## 298                             5.1.10_MWI.TOTA.AID.WFP
## 299                          5.1.10_NER.TOTA.AID.UNICEF
## 300                              5.1.10_TJK.TOTA.AID.WB
## 301                          5.1.11_AFG.TOTA.AID.UNESCO
## 302                            5.1.11_ETH.TOTA.AID.JICA
## 303                              5.1.11_KHM.TOTA.AID.WB
## 304                           5.1.11_LAO.TOTA.AID.INGOS
## 305                             5.1.11_MOZ.TOTA.AID.NLD
## 306                              5.1.11_MWI.TOTA.AID.WB
## 307                           5.1.12_AFG.TOTA.AID.USAID
## 308                             5.1.12_ETH.TOTA.AID.KFW
## 309                             5.1.12_MOZ.TOTA.AID.PRT
## 310                              5.1.13_AFG.TOTA.AID.WB
## 311                             5.1.13_ETH.TOTA.AID.NLD
## 312                             5.1.13_MOZ.TOTA.AID.ESP
## 313                            5.1.14_ETH.TOTA.AID.SIDA
## 314                          5.1.14_MOZ.TOTA.AID.UNICEF
## 315                          5.1.15_ETH.TOTA.AID.UNICEF
## 316                           5.1.15_MOZ.TOTA.AID.USAID
## 317                           5.1.16_ETH.TOTA.AID.USAID
## 318                              5.1.16_MOZ.TOTA.AID.WB
## 319                             5.1.17_ETH.TOTA.AID.WFP
## 320                              5.1.18_ETH.TOTA.AID.WB
## 321                           5.1.2_AFG.TOTA.AID.DANIDA
## 322                              5.1.2_ALB.TOTA.AID.BEI
## 323                              5.1.2_BFA.TOTA.AID.AFD
## 324                            5.1.2_CIV.TOTA.AID.BADEA
## 325                               5.1.2_CMR.TOTA.AID.WB
## 326                              5.1.2_DJI.TOTA.AID.FSD
## 327                              5.1.2_ETH.TOTA.AID.BEL
## 328                           5.1.2_GEO.TOTA.AID.UNICEF
## 329                              5.1.2_GHA.TOTA.AID.GPE
## 330                        5.1.2_GIN.TOTA.AID.ADPP.AFDB
## 331                         5.1.2_GNB.TOTA.AID.ADPP.HUM
## 332                         5.1.2_KGZ.TOTA.AID.ADPP.GIZ
## 333                              5.1.2_KHM.TOTA.AID.BEL
## 334                              5.1.2_LAO.TOTA.AID.AUS
## 335                            5.1.2_LBR.TOTA.AID.USAID
## 336                               5.1.2_MDA.TOTA.AID.WB
## 337                              5.1.2_MDG.TOTA.AID.ILO
## 338                           5.1.2_MOZ.TOTA.AID.DANIDA
## 339                             5.1.2_MRT.TOTA.AID.ISDB
## 340                             5.1.2_MWI.TOTA.AID.CIDA
## 341                              5.1.2_NER.TOTA.AID.BEL
## 342                              5.1.2_RWA.TOTA.AID.GPE
## 343                               5.1.2_SEN.TOTA.AID.FR
## 344                               5.1.2_SLE.TOTA.AID.EC
## 345                             5.1.2_TJK.TOTA.AID.AGAK
## 346                             5.1.2_VNM.TOTA.AID.CIDA
## 347                              5.1.2_ZMB.TOTA.AID.IRL
## 348                              5.1.3_AFG.TOTA.AID.FRA
## 349                             5.1.3_ALB.TOTA.AID.CEIB
## 350                              5.1.3_BFA.TOTA.AID.CHE
## 351                               5.1.3_CIV.TOTA.AID.WB
## 352                               5.1.3_CMR.TOTA.AID.FR
## 353                              5.1.3_DJI.TOTA.AID.AFD
## 354                             5.1.3_ETH.TOTA.AID.DFID
## 355                            5.1.3_GEO.TOTA.AID.USAID
## 356                             5.1.3_GHA.TOTA.AID.JICA
## 357                          5.1.3_GIN.TOTA.AID.ADPP.WB
## 358                         5.1.3_GNB.TOTA.AID.ADPP.OTH
## 359                      5.1.3_KGZ.TOTA.AID.ADPP.UNICEF
## 360                              5.1.3_KHM.TOTA.AID.GPE
## 361                               5.1.3_LAO.TOTA.AID.EC
## 362                               5.1.3_LBR.TOTA.AID.WB
## 363                               5.1.3_MDG.TOTA.AID.FR
## 364                             5.1.3_MOZ.TOTA.AID.DFID
## 365                               5.1.3_MRT.TOTA.AID.SP
## 366                             5.1.3_MWI.TOTA.AID.DFID
## 367                               5.1.3_NER.TOTA.AID.FR
## 368                           5.1.3_RWA.TOTA.AID.UNICEF
## 369                              5.1.3_SEN.TOTA.AID.GPE
## 370                              5.1.3_SLE.TOTA.AID.GIZ
## 371                            5.1.3_TJK.TOTA.AID.OPENS
## 372                             5.1.3_VNM.TOTA.AID.DFID
## 373                              5.1.3_ZMB.TOTA.AID.ILO
## 374                              5.1.4_AFG.TOTA.AID.DEU
## 375                              5.1.4_BFA.TOTA.AID.DNK
## 376                             5.1.4_CIV.TOTA.AID.ISDB
## 377                             5.1.4_CMR.TOTA.AID.JICA
## 378                             5.1.4_DJI.TOTA.AID.AFDB
## 379                              5.1.4_ETH.TOTA.AID.DVV
## 380                               5.1.4_GEO.TOTA.AID.WB
## 381                           5.1.4_GHA.TOTA.AID.UNICEF
## 382                         5.1.4_GIN.TOTA.AID.ADPP.GPE
## 383                               5.1.4_GNB.TOTA.AID.EU
## 384                          5.1.4_KGZ.TOTA.AID.ADPP.WB
## 385                               5.1.4_KHM.TOTA.AID.EC
## 386                              5.1.4_LAO.TOTA.AID.DEU
## 387                             5.1.4_MDG.TOTA.AID.JICA
## 388                              5.1.4_MOZ.TOTA.AID.FIN
## 389                           5.1.4_MRT.TOTA.AID.UNESCO
## 390                              5.1.4_MWI.TOTA.AID.GIZ
## 391                            5.1.4_NER.TOTA.AID.JAPAN
## 392                            5.1.4_RWA.TOTA.AID.USAID
## 393                               5.1.4_SEN.TOTA.AID.IT
## 394                             5.1.4_SLE.TOTA.AID.JICA
## 395                               5.1.4_TJK.TOTA.AID.EC
## 396                             5.1.4_VNM.TOTA.AID.JICA
## 397                              5.1.4_ZMB.TOTA.AID.JPN
## 398                              5.1.5_AFG.TOTA.AID.IND
## 399                             5.1.5_BFA.TOTA.AID.JICA
## 400                              5.1.5_CIV.TOTA.AID.FSD
## 401                           5.1.5_CMR.TOTA.AID.UNESCO
## 402                             5.1.5_DJI.TOTA.AID.ISDB
## 403                               5.1.5_ETH.TOTA.AID.EC
## 404                            5.1.5_GHA.TOTA.AID.USAID
## 405                         5.1.5_GIN.TOTA.AID.ADPP.GIZ
## 406                               5.1.5_GNB.TOTA.AID.FR
## 407                              5.1.5_KHM.TOTA.AID.JPN
## 408                              5.1.5_LAO.TOTA.AID.GPE
## 409                              5.1.5_MDG.TOTA.AID.NOR
## 410                            5.1.5_MOZ.TOTA.AID.FLAND
## 411                           5.1.5_MRT.TOTA.AID.UNICEF
## 412                              5.1.5_MWI.TOTA.AID.GPE
## 413                              5.1.5_NER.TOTA.AID.KFW
## 414                               5.1.5_RWA.TOTA.AID.WB
## 415                           5.1.5_SEN.TOTA.AID.UNICEF
## 416                             5.1.5_SLE.TOTA.AID.SIDA
## 417                              5.1.5_TJK.TOTA.AID.GIZ
## 418                           5.1.5_VNM.TOTA.AID.UNESCO
## 419                              5.1.5_ZMB.TOTA.AID.ZMB
## 420                              5.1.6_AFG.TOTA.AID.JPN
## 421                              5.1.6_BFA.TOTA.AID.NLD
## 422                              5.1.6_CIV.TOTA.AID.KFW
## 423                           5.1.6_CMR.TOTA.AID.UNICEF
## 424                             5.1.6_DJI.TOTA.AID.IMOA
## 425                              5.1.6_ETH.TOTA.AID.FIN
## 426                              5.1.6_GHA.TOTA.AID.WFP
## 427                         5.1.6_GIN.TOTA.AID.ADPP.KFW
## 428                             5.1.6_GNB.TOTA.AID.PORT
## 429                              5.1.6_KHM.TOTA.AID.SWE
## 430                             5.1.6_LAO.TOTA.AID.JICA
## 431                              5.1.6_MDG.TOTA.AID.WFP
## 432                              5.1.6_MOZ.TOTA.AID.DEU
## 433                             5.1.6_MWI.TOTA.AID.JICA
## 434                              5.1.6_NER.TOTA.AID.WFP
## 435                            5.1.6_SEN.TOTA.AID.USAID
## 436                           5.1.6_SLE.TOTA.AID.UNICEF
## 437                              5.1.6_TJK.TOTA.AID.GPE
## 438                           5.1.6_VNM.TOTA.AID.UNICEF
## 439                           5.1.6_ZMB.TOTA.AID.UNICEF
## 440                             5.1.7_AFG.TOTA.AID.JICA
## 441                           5.1.7_BFA.TOTA.AID.UNICEF
## 442                           5.1.7_CIV.TOTA.AID.UNICEF
## 443                              5.1.7_ETH.TOTA.AID.GIZ
## 444                               5.1.7_GHA.TOTA.AID.WB
## 445                      5.1.7_GIN.TOTA.AID.ADPP.UNICEF
## 446                           5.1.7_GNB.TOTA.AID.UNICEF
## 447                           5.1.7_KHM.TOTA.AID.UNESCO
## 448                           5.1.7_LAO.TOTA.AID.UNESCO
## 449                           5.1.7_MDG.TOTA.AID.UNESCO
## 450                              5.1.7_MOZ.TOTA.AID.GPE
## 451                              5.1.7_MWI.TOTA.AID.KFW
## 452                             5.1.7_NER.TOTA.AID.DFID
## 453                               5.1.7_SLE.TOTA.AID.WB
## 454                           5.1.7_TJK.TOTA.AID.UNICEF
## 455                            5.1.7_VNM.TOTA.AID.USAID
## 456                            5.1.7_ZMB.TOTA.AID.USAID
## 457                              5.1.8_AFG.TOTA.AID.NLD
## 458                               5.1.8_BFA.TOTA.AID.EC
## 459                            5.1.8_CIV.TOTA.AID.USAID
## 460                              5.1.8_ETH.TOTA.AID.GPE
## 461                              5.1.8_GNB.TOTA.AID.JAP
## 462                           5.1.8_KHM.TOTA.AID.UNICEF
## 463                           5.1.8_LAO.TOTA.AID.UNICEF
## 464                           5.1.8_MDG.TOTA.AID.UNICEF
## 465                              5.1.8_MOZ.TOTA.AID.IRL
## 466                           5.1.8_MWI.TOTA.AID.UNICEF
## 467                              5.1.8_NER.TOTA.AID.CHE
## 468                              5.1.8_SLE.TOTA.AID.WFP
## 469                            5.1.8_TJK.TOTA.AID.USAID
## 470                               5.1.8_VNM.TOTA.AID.WB
## 471                              5.1.9_AFG.TOTA.AID.NZL
## 472                              5.1.9_ETH.TOTA.AID.ITA
## 473                            5.1.9_KHM.TOTA.AID.USAID
## 474                              5.1.9_LAO.TOTA.AID.WFP
## 475                              5.1.9_MDG.TOTA.AID.GPE
## 476                              5.1.9_MOZ.TOTA.AID.ITA
## 477                            5.1.9_MWI.TOTA.AID.USAID
## 478                              5.1.9_NER.TOTA.AID.LUX
## 479                              5.1.9_TJK.TOTA.AID.WFP
## 480                                  5.1.AMeanIncGr.All
## 481                                  5.1.AMeanIncGr.B40
## 482                                   5.1_TOTAL.EDU.AID
## 483                                   5.12.01.01.unesco
## 484                                 5.13.01.01.hlthsurv
## 485                                      5.13.01.01.who
## 486                                  5.14.01.01.povsurv
## 487                              5.2.1_AFG.BAS.AID.CIDA
## 488                                5.2.1_ALB.BAS.AID.WB
## 489                              5.2.1_BFA.BAS.AID.CIDA
## 490                               5.2.1_CAF.BAS.AID.GPE
## 491                              5.2.1_CIV.BAS.AID.AFDB
## 492                               5.2.1_CMR.BAS.AID.BAD
## 493                                5.2.1_DJI.BAS.AID.WB
## 494                               5.2.1_ETH.BAS.AID.ADB
## 495                                5.2.1_GEO.BAS.AID.EC
## 496                              5.2.1_GHA.BAS.AID.DFID
## 497                          5.2.1_GIN.BAS.AID.ADPP.AFD
## 498                           5.2.1_GNB.BAS.AID.ADPP.EU
## 499                           5.2.1_KGZ.BAS.AID.ADPP.EU
## 500                               5.2.1_KHM.BAS.AID.BAD
## 501                               5.2.1_LAO.BAS.AID.ADB
## 502                            5.2.1_LBR.BAS.AID.UNICEF
## 503                            5.2.1_MDA.BAS.AID.UNICEF
## 504                                5.2.1_MDG.BAS.AID.WB
## 505                              5.2.1_MRT.TOTA.AID.WFP
## 506                              5.2.1_MWI.BAS.AID.AFDB
## 507                               5.2.1_NER.BAS.AID.AFD
## 508                              5.2.1_RWA.BAS.AID.DFID
## 509                              5.2.1_SEN.BAS.AID.CIDA
## 510                              5.2.1_SLE.BAS.AID.DFID
## 511                              5.2.1_TJK.BAS.AID.AGAK
## 512                      5.2.1_TLS.TOT.AID.AUSAID.CFAUS
## 513                              5.2.1_VNM.BAS.AID.CIDA
## 514                               5.2.1_ZMB.BAS.AID.DNK
## 515                             5.2.10_AFG.BAS.AID.SIDA
## 516                              5.2.10_ETH.BAS.AID.JPN
## 517                              5.2.10_KHM.BAS.AID.WFP
## 518                               5.2.10_LAO.BAS.AID.WB
## 519                               5.2.10_MDG.BAS.AID.EC
## 520                              5.2.10_MWI.BAS.AID.WFP
## 521                           5.2.10_NER.BAS.AID.UNICEF
## 522                             5.2.10_TLS.TOT.AID.PRIV
## 523                           5.2.11_AFG.BAS.AID.UNESCO
## 524                             5.2.11_ETH.BAS.AID.JICA
## 525                               5.2.11_KHM.BAS.AID.WB
## 526                            5.2.11_LAO.BAS.AID.INGOS
## 527                               5.2.11_MWI.BAS.AID.WB
## 528                           5.2.11_TLS.TOT.AID.UNICEF
## 529                            5.2.12_AFG.BAS.AID.USAID
## 530                              5.2.12_ETH.BAS.AID.KFW
## 531                            5.2.12_TLS.TOT.AID.USAID
## 532                               5.2.13_AFG.BAS.AID.WB
## 533                              5.2.13_ETH.BAS.AID.NLD
## 534                             5.2.14_ETH.BAS.AID.SIDA
## 535                           5.2.15_ETH.BAS.AID.UNICEF
## 536                            5.2.16_ETH.BAS.AID.USAID
## 537                              5.2.17_ETH.BAS.AID.WFP
## 538                               5.2.18_ETH.BAS.AID.WB
## 539                            5.2.2_AFG.BAS.AID.DANIDA
## 540                               5.2.2_ALB.BAS.AID.BEI
## 541                               5.2.2_BFA.BAS.AID.AFD
## 542                             5.2.2_CIV.BAS.AID.BADEA
## 543                                5.2.2_CMR.BAS.AID.WB
## 544                               5.2.2_DJI.BAS.AID.FSD
## 545                               5.2.2_ETH.BAS.AID.BEL
## 546                            5.2.2_GEO.BAS.AID.UNICEF
## 547                               5.2.2_GHA.BAS.AID.GPE
## 548                         5.2.2_GIN.BAS.AID.ADPP.AFDB
## 549                          5.2.2_GNB.BAS.AID.ADPP.HUM
## 550                          5.2.2_KGZ.BAS.AID.ADPP.GIZ
## 551                               5.2.2_KHM.BAS.AID.BEL
## 552                               5.2.2_LAO.BAS.AID.AUS
## 553                             5.2.2_LBR.BAS.AID.USAID
## 554                                5.2.2_MDA.BAS.AID.WB
## 555                               5.2.2_MDG.BAS.AID.ILO
## 556                               5.2.2_MRT.BAS.AID.AFD
## 557                              5.2.2_MWI.BAS.AID.CIDA
## 558                               5.2.2_NER.BAS.AID.BEL
## 559                               5.2.2_RWA.BAS.AID.GPE
## 560                                5.2.2_SEN.BAS.AID.FR
## 561                                5.2.2_SLE.BAS.AID.EC
## 562                             5.2.2_TJK.BAS.AID.OPENS
## 563                         5.2.2_TLS.TOT.AID.AUSAID.WB
## 564                              5.2.2_VNM.BAS.AID.DFID
## 565                               5.2.2_ZMB.BAS.AID.IRL
## 566                               5.2.3_AFG.BAS.AID.FRA
## 567                              5.2.3_ALB.BAS.AID.CEIB
## 568                               5.2.3_BFA.BAS.AID.CHE
## 569                                5.2.3_CIV.BAS.AID.WB
## 570                                5.2.3_CMR.BAS.AID.FR
## 571                               5.2.3_DJI.BAS.AID.AFD
## 572                              5.2.3_ETH.BAS.AID.DFID
## 573                             5.2.3_GEO.BAS.AID.USAID
## 574                              5.2.3_GHA.BAS.AID.JICA
## 575                           5.2.3_GIN.BAS.AID.ADPP.WB
## 576                          5.2.3_GNB.BAS.AID.ADPP.OTH
## 577                       5.2.3_KGZ.BAS.AID.ADPP.UNICEF
## 578                               5.2.3_KHM.BAS.AID.GPE
## 579                                5.2.3_LAO.BAS.AID.EC
## 580                                5.2.3_LBR.BAS.AID.WB
## 581                                5.2.3_MDG.BAS.AID.FR
## 582                              5.2.3_MRT.BAS.AID.ISDB
## 583                              5.2.3_MWI.BAS.AID.DFID
## 584                                5.2.3_NER.BAS.AID.FR
## 585                            5.2.3_RWA.BAS.AID.UNICEF
## 586                               5.2.3_SEN.BAS.AID.GPE
## 587                               5.2.3_SLE.BAS.AID.GIZ
## 588                                5.2.3_TJK.BAS.AID.EC
## 589                               5.2.3_TLS.TOT.AID.AUS
## 590                              5.2.3_VNM.BAS.AID.JICA
## 591                               5.2.3_ZMB.BAS.AID.ILO
## 592                               5.2.4_AFG.BAS.AID.DEU
## 593                               5.2.4_BFA.BAS.AID.DNK
## 594                              5.2.4_CIV.BAS.AID.ISDB
## 595                              5.2.4_CMR.BAS.AID.JICA
## 596                              5.2.4_DJI.BAS.AID.AFDB
## 597                               5.2.4_ETH.BAS.AID.DVV
## 598                                5.2.4_GEO.BAS.AID.WB
## 599                            5.2.4_GHA.BAS.AID.UNICEF
## 600                          5.2.4_GIN.BAS.AID.ADPP.GPE
## 601                                5.2.4_GNB.BAS.AID.EU
## 602                           5.2.4_KGZ.BAS.AID.ADPP.WB
## 603                                5.2.4_KHM.BAS.AID.EC
## 604                               5.2.4_LAO.BAS.AID.DEU
## 605                              5.2.4_MDG.BAS.AID.JICA
## 606                                5.2.4_MRT.BAS.AID.SP
## 607                               5.2.4_MWI.BAS.AID.GIZ
## 608                             5.2.4_NER.BAS.AID.JAPAN
## 609                             5.2.4_RWA.BAS.AID.USAID
## 610                                5.2.4_SEN.BAS.AID.IT
## 611                              5.2.4_SLE.BAS.AID.JICA
## 612                               5.2.4_TJK.BAS.AID.GIZ
## 613                                5.2.4_TLS.TOT.AID.WB
## 614                            5.2.4_VNM.BAS.AID.UNESCO
## 615                               5.2.4_ZMB.BAS.AID.JPN
## 616                               5.2.5_AFG.BAS.AID.IND
## 617                              5.2.5_BFA.BAS.AID.JICA
## 618                               5.2.5_CIV.BAS.AID.FSD
## 619                            5.2.5_CMR.BAS.AID.UNESCO
## 620                              5.2.5_DJI.BAS.AID.ISDB
## 621                                5.2.5_ETH.BAS.AID.EC
## 622                             5.2.5_GHA.BAS.AID.USAID
## 623                          5.2.5_GIN.BAS.AID.ADPP.GIZ
## 624                                5.2.5_GNB.BAS.AID.FR
## 625                               5.2.5_KHM.BAS.AID.JPN
## 626                               5.2.5_LAO.BAS.AID.GPE
## 627                               5.2.5_MDG.BAS.AID.NOR
## 628                            5.2.5_MRT.BAS.AID.UNESCO
## 629                               5.2.5_MWI.BAS.AID.GPE
## 630                               5.2.5_NER.BAS.AID.KFW
## 631                                5.2.5_RWA.BAS.AID.WB
## 632                            5.2.5_SEN.BAS.AID.UNICEF
## 633                              5.2.5_SLE.BAS.AID.SIDA
## 634                               5.2.5_TJK.BAS.AID.GPE
## 635                               5.2.5_TLS.TOT.AID.JPN
## 636                            5.2.5_VNM.BAS.AID.UNICEF
## 637                               5.2.5_ZMB.BAS.AID.ZMB
## 638                               5.2.6_AFG.BAS.AID.JPN
## 639                               5.2.6_BFA.BAS.AID.NLD
## 640                               5.2.6_CIV.BAS.AID.KFW
## 641                            5.2.6_CMR.BAS.AID.UNICEF
## 642                              5.2.6_DJI.BAS.AID.IMOA
## 643                               5.2.6_ETH.BAS.AID.FIN
## 644                               5.2.6_GHA.BAS.AID.WFP
## 645                          5.2.6_GIN.BAS.AID.ADPP.KFW
## 646                              5.2.6_GNB.BAS.AID.PORT
## 647                               5.2.6_KHM.BAS.AID.SWE
## 648                              5.2.6_LAO.BAS.AID.JICA
## 649                               5.2.6_MDG.BAS.AID.WFP
## 650                            5.2.6_MRT.BAS.AID.UNICEF
## 651                              5.2.6_MWI.BAS.AID.JICA
## 652                               5.2.6_NER.BAS.AID.WFP
## 653                             5.2.6_SEN.BAS.AID.USAID
## 654                            5.2.6_SLE.BAS.AID.UNICEF
## 655                            5.2.6_TJK.BAS.AID.UNICEF
## 656                               5.2.6_TLS.TOT.AID.KOR
## 657                             5.2.6_VNM.BAS.AID.USAID
## 658                            5.2.6_ZMB.BAS.AID.UNICEF
## 659                              5.2.7_AFG.BAS.AID.JICA
## 660                            5.2.7_BFA.BAS.AID.UNICEF
## 661                            5.2.7_CIV.BAS.AID.UNICEF
## 662                               5.2.7_ETH.BAS.AID.GIZ
## 663                                5.2.7_GHA.BAS.AID.WB
## 664                       5.2.7_GIN.BAS.AID.ADPP.UNICEF
## 665                            5.2.7_GNB.BAS.AID.UNICEF
## 666                            5.2.7_KHM.BAS.AID.UNESCO
## 667                            5.2.7_LAO.BAS.AID.UNESCO
## 668                            5.2.7_MDG.BAS.AID.UNESCO
## 669                               5.2.7_MRT.BAS.AID.WFP
## 670                               5.2.7_MWI.BAS.AID.KFW
## 671                              5.2.7_NER.BAS.AID.DFID
## 672                                5.2.7_SLE.BAS.AID.WB
## 673                             5.2.7_TJK.BAS.AID.USAID
## 674                               5.2.7_TLS.TOT.AID.NZL
## 675                                5.2.7_VNM.BAS.AID.WB
## 676                             5.2.7_ZMB.BAS.AID.USAID
## 677                               5.2.8_AFG.BAS.AID.NLD
## 678                                5.2.8_BFA.BAS.AID.EC
## 679                             5.2.8_CIV.BAS.AID.USAID
## 680                               5.2.8_ETH.BAS.AID.GPE
## 681                               5.2.8_GNB.BAS.AID.JAP
## 682                            5.2.8_KHM.BAS.AID.UNICEF
## 683                            5.2.8_LAO.BAS.AID.UNICEF
## 684                            5.2.8_MDG.BAS.AID.UNICEF
## 685                            5.2.8_MWI.BAS.AID.UNICEF
## 686                               5.2.8_NER.BAS.AID.CHE
## 687                               5.2.8_SLE.BAS.AID.WFP
## 688                               5.2.8_TJK.BAS.AID.WFP
## 689                             5.2.8_TLS.TOT.AID.CFNZL
## 690                               5.2.9_AFG.BAS.AID.NZL
## 691                               5.2.9_ETH.BAS.AID.ITA
## 692                             5.2.9_KHM.BAS.AID.USAID
## 693                               5.2.9_LAO.BAS.AID.WFP
## 694                               5.2.9_MDG.BAS.AID.GPE
## 695                             5.2.9_MWI.BAS.AID.USAID
## 696                               5.2.9_NER.BAS.AID.LUX
## 697                                5.2.9_TJK.BAS.AID.WB
## 698                               5.2.9_TLS.TOT.AID.PRT
## 699                                  5.2.AMeanIncGr.All
## 700                                  5.2.AMeanIncGr.B40
## 701                                   5.2_BASIC.EDU.AID
## 702                                     5.21.01.01.sdds
## 703                                  5.51.01.01.poverty
## 704                                   5.51.01.02.malnut
## 705                                   5.51.01.03.mortal
## 706                                    5.51.01.04.immun
## 707                                      5.51.01.05.hiv
## 708                                   5.51.01.06.matern
## 709                                   5.51.01.07.gender
## 710                                 5.51.01.08.primcomp
## 711                                    5.51.01.09.water
## 712                                      5.51.01.10.gdp
## 713                                          6.0.Conspc
## 714                                     6.0.GDP_current
## 715                                      6.0.GDP_growth
## 716                                         6.0.GDP_usd
## 717                                  6.0.GDPpc_constant
## 718                                           6.0.GNIpc
## 719                                          6.1_LEG.CA
## 720                        6.1_PRIMARY.ENERGY.INTENSITY
## 721                                6.2_LEG.OTHER.DONORS
## 722                                         6.3_LEG.CSO
## 723                                        6.4_LAST.JSR
## 724                                        6.5_NEXT.JSR
## 725                              7.1.1_ESP.PERIOD.START
## 726                                7.1.2_ESP.PERIOD.END
## 727                              7.1_CURR.ALLOCATION.SE
## 728                       7.11_CURR.ALLOCATION.MODALITY
## 729                      7.12_CURR.ALLOCATION.2011.DISB
## 730                           7.13_CURR.ALLOCATION.DISB
## 731                                 7.2_ESP.ENDORSEMENT
## 732                            7.3_PREV.ALLOCATION.YEAR
## 733                          7.4_PREV.ALLOCATION.AMOUNT
## 734                            7.5_CURR.ALLOCATION.YEAR
## 735                          7.6_CURR.ALLOCATION.AMOUNT
## 736                  7.7.1_CURR.ALLOCATION.PERIOD.START
## 737                    7.7.2_CURR.ALLOCATION.PERIOD.END
## 738                       7.8_CURR.ALLOCATION.SIGNATURE
## 739                         7.9_CURR.ALLOCATION.CLOSURE
## 740                                            8.0.LIPI
## 741                               8.1_SCH.LEAVING.EXAMS
## 742                                       8.2_INT.TESTS
## 743                     8.3.1_ALB.LEAR.TEST.9.LANG.MEAN
## 744                              8.3.1_BFA.PASEC.CP2.FR
## 745                               8.3.1_CAF.BREVET.SUCC
## 746                   8.3.1_CIV.LEAR.TEST.PRIM.ALL.MEAN
## 747                              8.3.1_CMR.PASEC.25.FRE
## 748                      8.3.1_ETH.LEAR.TEST.10.ENG.OPT
## 749                         8.3.1_GEO.PIRLS.4.READ.MEAN
## 750                8.3.1_GHA.LEAR.TEST.P3.ENG.ABOV.MEAN
## 751                         8.3.1_GIN.PASEC.CP2.FR.MEAN
## 752                             8.3.1_KGZ.PISA.89.READ1
## 753                     8.3.1_KHM.LEAR.TEST.3.LANG.MEAN
## 754                     8.3.1_LAO.LEAR.TEST.5.LANG.MEAN
## 755                          8.3.1_MDA.LEAR.TEST.4.MEAN
## 756                             8.3.1_MDG.PASEC.CM2.FRE
## 757                        8.3.1_MOZ.SACMEQ.TEST.6.READ
## 758                                8.3.1_MRT.PASEC.5.FR
## 759                           8.3.1_MWI.SACMEQ.357.READ
## 760                      8.3.1_NER.LEAR.TEST.CP.FR.MEAN
## 761                    8.3.1_SEN.LEAR.TEST.CE2.MATH.MIN
## 762                          8.3.1_VNM.LEAR.TEST.5.MAT1
## 763                         8.3.1_VNM.LEAR.TEST.5.READ1
## 764                          8.3.1_ZMB.LEAR.TEST.5.READ
## 765                     8.3.10_ETH.LEAR.TEST.12.CHE.OPT
## 766                  8.3.10_GEO.LEAR.TEST.9.LANG.LOWEST
## 767               8.3.10_GHA.LEAR.TEST.P6.ENG.ABOV.PROF
## 768               8.3.10_GIN.PASEC.CM1.FR.MATH.MEAN.BEG
## 769                 8.3.10_NER.LEAR.TEST.CP.FR.UNDERMIN
## 770                     8.3.11_ETH.LEAR.TEST.12.PHY.OPT
## 771                   8.3.11_GEO.LEAR.TEST.9.MAT.LOWEST
## 772               8.3.11_GHA.LEAR.TEST.P3.MAT.ABOV.PROF
## 773                      8.3.11_GIN.LEAR.TEST.CEPE.MEAN
## 774                8.3.11_NER.LEAR.TEST.CE2.FR.UNDERMIN
## 775                     8.3.12_ETH.LEAR.TEST.12.AVR.OPT
## 776                      8.3.12_GEO.LEAR.TEST.1.ENG.MED
## 777               8.3.12_GHA.LEAR.TEST.P6.MAT.ABOV.PROF
## 778                      8.3.12_GIN.LEAR.TEST.BEPC.MEAN
## 779                8.3.12_NER.LEAR.TEST.CM2.FR.UNDERMIN
## 780                     8.3.13_GEO.LEAR.TEST.9.LANG.MED
## 781                         8.3.13_GHA.TIMSS.8.MAT.MEAN
## 782                       8.3.13_GIN.LEAR.TEST.BAC.MEAN
## 783                   8.3.13_NER.LEAR.TEST.CP.MATH.MEAN
## 784                      8.3.14_GEO.LEAR.TEST.9.MAT.MED
## 785                         8.3.14_GHA.TIMSS.8.SCI.MEAN
## 786                       8.3.14_GIN.LEAR.TEST.CEPE.MIN
## 787                  8.3.14_NER.LEAR.TEST.CE2.MATH.MEAN
## 788                     8.3.15_GEO.LEAR.TEST.1.ENG.HIGH
## 789                      8.3.15_GHA.LITERACY.P3.LETTERS
## 790                       8.3.15_GIN.LEAR.TEST.BEPC.MIN
## 791                  8.3.15_NER.LEAR.TEST.CM2.MATH.MEAN
## 792                    8.3.16_GEO.LEAR.TEST.9.LANG.HIGH
## 793                      8.3.16_GHA.LITERACY.P5.LETTERS
## 794                        8.3.16_GIN.LEAR.TEST.BAC.MIN
## 795                  8.3.16_NER.LEAR.TEST.CP.MATH.OPTIM
## 796                     8.3.17_GEO.LEAR.TEST.9.MAT.HIGH
## 797                        8.3.17_GHA.LITERACY.P3.WORDS
## 798                     8.3.17_GIN.LEAR.TEST.CEPE.OPTIM
## 799                 8.3.17_NER.LEAR.TEST.CE2.MATH.OPTIM
## 800                  8.3.18_GEO.LEAR.TEST.9.LAG.HIGHEST
## 801                        8.3.18_GHA.LITERACY.P5.WORDS
## 802                     8.3.18_GIN.LEAR.TEST.BEPC.OPTIM
## 803                 8.3.18_NER.LEAR.TEST.CM2.MATH.OPTIM
## 804                  8.3.19_GEO.LEAR.TEST.9.MAT.HIGHEST
## 805                         8.3.19_GHA.LITERACY.P3.ZERO
## 806                      8.3.19_GIN.LEAR.TEST.BAC.OPTIM
## 807                    8.3.19_NER.LEAR.TEST.CP.MATH.MIN
## 808                      8.3.2_ALB.LEAR.TEST.9.MAT.MEAN
## 809                              8.3.2_BFA.PASEC.CM1.FR
## 810                                  8.3.2_CAF.BAC.SUCC
## 811                    8.3.2_CIV.LEAR.TEST.SEC.ALL.MEAN
## 812                              8.3.2_CMR.PASEC.25.MAT
## 813                      8.3.2_ETH.LEAR.TEST.10.MAT.OPT
## 814                          8.3.2_GEO.TIMSS.4.MAT.MEAN
## 815                8.3.2_GHA.LEAR.TEST.P6.ENG.ABOV.MEAN
## 816                        8.3.2_GIN.PASEC.CP2.MAT.MEAN
## 817                             8.3.2_KGZ.PISA.89.READ2
## 818                      8.3.2_KHM.LEAR.TEST.3.MAT.MEAN
## 819                      8.3.2_LAO.LEAR.TEST.5.LANG.MIN
## 820                          8.3.2_MDA.LEAR.TEST.9.MEAN
## 821                             8.3.2_MDG.PASEC.CM2.MAT
## 822                         8.3.2_MOZ.SACMEQ.TEST.6.MAT
## 823                               8.3.2_MRT.PASEC.5.MAT
## 824                            8.3.2_MWI.SACMEQ.357.MAT
## 825                     8.3.2_NER.LEAR.TEST.CE2.FR.MEAN
## 826                      8.3.2_SEN.LEAR.TEST.CE2.FR.MIN
## 827                          8.3.2_VNM.LEAR.TEST.5.MAT2
## 828                         8.3.2_VNM.LEAR.TEST.5.READ2
## 829                           8.3.2_ZMB.LEAR.TEST.5.MAT
## 830                         8.3.20_GHA.LITERACY.P5.ZERO
## 831                       8.3.20_GIN.LEAR.TEST.CEPE.MAX
## 832                   8.3.20_NER.LEAR.TEST.CE2.MATH.MIN
## 833                      8.3.21_GHA.NUMERACY.P3.ADDITIO
## 834                       8.3.21_GIN.LEAR.TEST.BEPC.MAX
## 835                   8.3.21_NER.LEAR.TEST.CM2.MATH.MIN
## 836                      8.3.22_GHA.NUMERACY.P5.ADDITIO
## 837                        8.3.22_GIN.LEAR.TEST.BAC.MAX
## 838               8.3.22_NER.LEAR.TEST.CP.MATH.UNDERMIN
## 839                     8.3.23_GHA.NUMERACY.P3.MULTIPLI
## 840                      8.3.23_GIN.LEAR.TEST.CEPE.SUCC
## 841              8.3.23_NER.LEAR.TEST.CE2.MATH.UNDERMIN
## 842                     8.3.24_GHA.NUMERACY.P5.MULTIPLI
## 843                      8.3.24_GIN.LEAR.TEST.BEPC.SUCC
## 844              8.3.24_NER.LEAR.TEST.CM2.MATH.UNDERMIN
## 845                         8.3.25_GHA.NUMERACY.P3.ZERO
## 846                       8.3.25_GIN.LEAR.TEST.BAC.SUCC
## 847               8.3.25_NER.LEAR.TEST.CERTIFICATE.SUCC
## 848                         8.3.26_GHA.NUMERACY.P5.ZERO
## 849                             8.3.3_ALB.PISA.910.READ
## 850                             8.3.3_BFA.PASEC.CP2.MAT
## 851               8.3.3_CIV.LEAR.TEST.PRIM.ALL.MIN.COMP
## 852                      8.3.3_ETH.LEAR.TEST.10.BIO.OPT
## 853                          8.3.3_GEO.TIMSS.4.SCI.MEAN
## 854                8.3.3_GHA.LEAR.TEST.P3.MAT.ABOV.MEAN
## 855                     8.3.3_GIN.PASEC.CP2.FR.MAT.MEAN
## 856                             8.3.3_KGZ.PISA.89.READ3
## 857                     8.3.3_KHM.LEAR.TEST.6.LANG.MEAN
## 858                     8.3.3_LAO.LEAR.TEST.5.LANG.PROF
## 859                           8.3.3_MDA.LEAR.TEST.4.MIN
## 860                     8.3.3_NER.LEAR.TEST.CM2.FR.MEAN
## 861                    8.3.3_SEN.LEAR.TEST.CE2.MATH.OPT
## 862                          8.3.3_VNM.LEAR.TEST.5.MAT3
## 863                         8.3.3_VNM.LEAR.TEST.5.READ3
## 864                        8.3.3_ZMB.SACMEQ.TEST.5.READ
## 865                              8.3.4_ALB.PISA.910.MAT
## 866                             8.3.4_BFA.PASEC.CM1.MAT
## 867                8.3.4_CIV.LEAR.TEST.SEC.ALL.MIN.COMP
## 868                      8.3.4_ETH.LEAR.TEST.10.CHE.OPT
## 869                          8.3.4_GEO.TIMSS.8.MAT.MEAN
## 870                8.3.4_GHA.LEAR.TEST.P6.MAT.ABOV.MEAN
## 871                         8.3.4_GIN.PASEC.CM1.FR.MEAN
## 872                             8.3.4_KGZ.PISA.89.READ4
## 873                      8.3.4_KHM.LEAR.TEST.6.MAT.MEAN
## 874                      8.3.4_LAO.LEAR.TEST.5.MAT.MEAN
## 875                           8.3.4_MDA.LEAR.TEST.9.MIN
## 876                     8.3.4_NER.LEAR.TEST.CP.FR.OPTIM
## 877                      8.3.4_SEN.LEAR.TEST.CE2.FR.OPT
## 878                          8.3.4_VNM.LEAR.TEST.5.MAT4
## 879                         8.3.4_VNM.LEAR.TEST.5.READ4
## 880                         8.3.4_ZMB.SACMEQ.TEST.5.MAT
## 881                          8.3.5_ALB.PISA.910.SCIENCE
## 882               8.3.5_CIV.LEAR.TEST.PRIM.ALL.OPT.COMP
## 883                      8.3.5_ETH.LEAR.TEST.10.PHY.OPT
## 884                          8.3.5_GEO.TIMSS.8.SCI.MEAN
## 885                 8.3.5_GHA.LEAR.TEST.P3.ENG.ABOV.MIN
## 886                        8.3.5_GIN.PASEC.CM1.MAT.MEAN
## 887                             8.3.5_KGZ.PISA.89.READ5
## 888                     8.3.5_KHM.LEAR.TEST.9.LANG.MEAN
## 889                       8.3.5_LAO.LEAR.TEST.5.MAT.MIN
## 890                          8.3.5_MDA.LEAR.TEST.4.PROF
## 891                    8.3.5_NER.LEAR.TEST.CE2.FR.OPTIM
## 892                       8.3.5_SEN.PASEC.CM1.MATH.MEAN
## 893                          8.3.5_VNM.LEAR.TEST.5.MAT5
## 894                         8.3.5_VNM.LEAR.TEST.5.READ5
## 895                8.3.6_CIV.LEAR.TEST.SEC.ALL.OPT.COMP
## 896                      8.3.6_ETH.LEAR.TEST.10.AVR.OPT
## 897                          8.3.6_GEO.PISA.9.READ.MEAN
## 898                 8.3.6_GHA.LEAR.TEST.P6.ENG.ABOV.MIN
## 899                     8.3.6_GIN.PASEC.CM1.FR.MAT.MEAN
## 900                             8.3.6_KGZ.PISA.89.READ6
## 901                      8.3.6_KHM.LEAR.TEST.9.MAT.MEAN
## 902                      8.3.6_LAO.LEAR.TEST.5.MAT.PROF
## 903                          8.3.6_MDA.LEAR.TEST.9.PROF
## 904                    8.3.6_NER.LEAR.TEST.CM2.FR.OPTIM
## 905                         8.3.6_SEN.PASEC.CM1.FR.MEAN
## 906                          8.3.6_VNM.LEAR.TEST.5.MAT6
## 907                         8.3.6_VNM.LEAR.TEST.5.READ6
## 908                         8.3.7_CIV.PASEC.PRI.FRE.MAT
## 909                      8.3.7_ETH.LEAR.TEST.12.ENG.OPT
## 910                           8.3.7_GEO.PISA.9.MAT.MEAN
## 911                 8.3.7_GHA.LEAR.TEST.P3.MAT.ABOV.MIN
## 912                8.3.7_GIN.PASEC.CP2.FR.MATH.MEAN.END
## 913                             8.3.7_KGZ.PISA.89.READ7
## 914                    8.3.7_LAO.LEAR.TEST.5.WORLD.MEAN
## 915                         8.3.7_MDA.PIRLS.READ.4.MEAN
## 916                       8.3.7_NER.LEAR.TEST.CP.FR.MIN
## 917                           8.3.7_SEN.PASEC.MATH.MEAN
## 918                      8.3.8_ETH.LEAR.TEST.12.MAT.OPT
## 919                           8.3.8_GEO.PISA.9.SCI.MEAN
## 920                 8.3.8_GHA.LEAR.TEST.P6.MAT.ABOV.MIN
## 921                8.3.8_GIN.PASEC.CM1.FR.MATH.MEAN.END
## 922                             8.3.8_KGZ.PISA.89.READ8
## 923                     8.3.8_LAO.LEAR.TEST.5.WORLD.MIN
## 924                            8.3.8_MDA.TIMSS.MAT.MEAN
## 925                      8.3.8_NER.LEAR.TEST.CE2.FR.MIN
## 926                             8.3.8_SEN.PASEC.FR.MEAN
## 927                      8.3.9_ETH.LEAR.TEST.12.BIO.OPT
## 928                    8.3.9_GEO.LEAR.TEST.1.ENG.LOWEST
## 929                8.3.9_GHA.LEAR.TEST.P3.ENG.ABOV.PROF
## 930                8.3.9_GIN.PASEC.CP2.FR.MATH.MEAN.BEG
## 931                    8.3.9_LAO.LEAR.TEST.5.WORLD.PROF
## 932                          8.3.9_MDA.TIMSS.SCIEN.MEAN
## 933                      8.3.9_NER.LEAR.TEST.CM2.FR.MIN
## 934                            8.3_NATIONAL.ASSESSMENTS
## 935                               8.4_ORAL.READING.TEST
## 936                                    9.0.Employee.All
## 937                                    9.0.Employee.B40
## 938                                    9.0.Employee.T60
## 939                                    9.0.Employer.All
## 940                                    9.0.Employer.B40
## 941                                    9.0.Employer.T60
## 942                                       9.0.Labor.All
## 943                                       9.0.Labor.B40
## 944                                       9.0.Labor.T60
## 945                                     9.0.SelfEmp.All
## 946                                     9.0.SelfEmp.B40
## 947                                     9.0.SelfEmp.T60
## 948                                       9.0.Unemp.All
## 949                                       9.0.Unemp.B40
## 950                                       9.0.Unemp.T60
## 951                                      9.0.Unpaid.All
## 952                                      9.0.Unpaid.B40
## 953                                      9.0.Unpaid.T60
## 954                                    9.1.Employee.All
## 955                                    9.1.Employee.B40
## 956                                    9.1.Employee.T60
## 957                                    9.1.Employer.All
## 958                                    9.1.Employer.B40
## 959                                    9.1.Employer.T60
## 960                                       9.1.Labor.All
## 961                                       9.1.Labor.B40
## 962                                       9.1.Labor.T60
## 963                                     9.1.SelfEmp.All
## 964                                     9.1.SelfEmp.B40
## 965                                     9.1.SelfEmp.T60
## 966                                       9.1.Unemp.All
## 967                                       9.1.Unemp.B40
## 968                                       9.1.Unemp.T60
## 969                                      9.1.Unpaid.All
## 970                                      9.1.Unpaid.B40
## 971                                      9.1.Unpaid.T60
## 972                                   9.1_AID.ALIGNMENT
## 973                                    9.2.Employee.All
## 974                                    9.2.Employee.B40
## 975                                    9.2.Employee.T60
## 976                                    9.2.Employer.All
## 977                                    9.2.Employer.B40
## 978                                    9.2.Employer.T60
## 979                                       9.2.Labor.All
## 980                                       9.2.Labor.B40
## 981                                       9.2.Labor.T60
## 982                                     9.2.SelfEmp.All
## 983                                     9.2.SelfEmp.B40
## 984                                     9.2.SelfEmp.T60
## 985                                       9.2.Unemp.All
## 986                                       9.2.Unemp.B40
## 987                                       9.2.Unemp.T60
## 988                                      9.2.Unpaid.All
## 989                                      9.2.Unpaid.B40
## 990                                      9.2.Unpaid.T60
## 991                           9.2_COORDINATED.TECH.COOP
## 992                             9.3_PFM.COUNTRY.SYSTEMS
## 993                     9.4_PROCUREMENT.COUNTRY.SYSTEMS
## 994                                             9.5_PIU
## 995                                             9.6_PBA
## 996                                             9020000
## 997                                             9060000
## 998                                             9080000
## 999                                             9100000
## 1000                                            9110000
## 1001                                            9120000
## 1002                                            9140000
## 1003                                            9250000
## 1004                                            9260000
## 1005                                            9270000
## 1006                                                 A1
## 1007                                               A10i
## 1008                                              A10ii
## 1009                                             A10iii
## 1010                                              A10iv
## 1011                                               A10v
## 1012                                               A11i
## 1013                                              A11ii
## 1014                                             A11iii
## 1015                                              A11iv
## 1016                                               A11v
## 1017                                               A12i
## 1018                                              A12ii
## 1019                                             A12iii
## 1020                                              A12iv
## 1021                                               A12v
## 1022                                                 A2
## 1023                                                 A3
## 1024                                                 A4
## 1025                                                 A5
## 1026                                                A6i
## 1027                                               A6ii
## 1028                                              A6iii
## 1029                                               A6iv
## 1030                                                A6v
## 1031                                                A7i
## 1032                                               A7ii
## 1033                                              A7iii
## 1034                                               A7iv
## 1035                                                A7v
## 1036                                                A8i
## 1037                                               A8ii
## 1038                                              A8iii
## 1039                                               A8iv
## 1040                                                A8v
## 1041                                                A9i
## 1042                                               A9ii
## 1043                                              A9iii
## 1044                                               A9iv
## 1045                                                A9v
## 1046                                        account.t.d
## 1047                                      account.t.d.1
## 1048                                     account.t.d.10
## 1049                                     account.t.d.11
## 1050                                      account.t.d.2
## 1051                                      account.t.d.3
## 1052                                      account.t.d.4
## 1053                                      account.t.d.5
## 1054                                      account.t.d.6
## 1055                                      account.t.d.7
## 1056                                      account.t.d.8
## 1057                                      account.t.d.9
## 1058                                        account_t_d
## 1059                                      account_t_d_1
## 1060                                      account_t_d_2
## 1061                                      account_t_d_3
## 1062                                      account_t_d_4
## 1063                                      account_t_d_5
## 1064                                      account_t_d_6
## 1065                                      account_t_d_7
## 1066                                     AG.AGR.TRAC.NO
## 1067                                     AG.AID.CREL.MT
## 1068                                     AG.AID.FOOD.MT
## 1069                                    AG.AID.NCREL.MT
## 1070                                     AG.CON.FERT.MT
## 1071                                  AG.CON.FERT.PT.ZS
## 1072                                     AG.CON.FERT.ZS
## 1073                                     AG.CON.PEST.MT
## 1074                                      AG.CRP.BLY.CD
## 1075                                      AG.CRP.BLY.CN
## 1076                                      AG.CRP.FNO.CD
## 1077                                      AG.CRP.FNO.CN
## 1078                                      AG.CRP.MLT.CD
## 1079                                      AG.CRP.MLT.CN
## 1080                                      AG.CRP.MZE.CD
## 1081                                      AG.CRP.MZE.CN
## 1082                                     AG.CRP.RICE.CD
## 1083                                     AG.CRP.RICE.CN
## 1084                                      AG.CRP.SGM.CD
## 1085                                      AG.CRP.SGM.CN
## 1086                                      AG.CRP.WHT.CD
## 1087                                      AG.CRP.WHT.CN
## 1088                                  AG.FRST.PROD.CHAR
## 1089                                  AG.FRST.PROD.WOOD
## 1090                                     AG.IMP.CREL.MT
## 1091                                     AG.LND.AGRI.HA
## 1092                                     AG.LND.AGRI.K2
## 1093                                     AG.LND.AGRI.ZS
## 1094                                     AG.LND.ARBL.HA
## 1095                                  AG.LND.ARBL.HA.PC
## 1096                                     AG.LND.ARBL.ZS
## 1097                                      AG.LND.BLY.HA
## 1098                                     AG.LND.CERE.ZS
## 1099                                     AG.LND.CREL.HA
## 1100                                     AG.LND.CROP.HA
## 1101                                     AG.LND.CROP.ZS
## 1102                                     AG.LND.CRPA.HA
## 1103                                  AG.LND.EL5M.RU.K2
## 1104                                  AG.LND.EL5M.RU.ZS
## 1105                                  AG.LND.EL5M.UR.K2
## 1106                                  AG.LND.EL5M.UR.ZS
## 1107                                     AG.LND.EL5M.ZS
## 1108                                      AG.LND.FNO.HA
## 1109                                     AG.LND.FRST.HA
## 1110                                     AG.LND.FRST.K2
## 1111                                     AG.LND.FRST.ZS
## 1112                                  AG.LND.IRIG.AG.ZS
## 1113                                     AG.LND.IRIG.HA
## 1114                                  AG.LND.IRIG.HA.AG
## 1115                                  AG.LND.IRIG.PO.HA
## 1116                                     AG.LND.IRIG.ZS
## 1117                                      AG.LND.MLT.HA
## 1118                                      AG.LND.MZE.HA
## 1119                                     AG.LND.OTHR.ZS
## 1120                                      AG.LND.POP.ZS
## 1121                                     AG.LND.PPAS.ZS
## 1122                                     AG.LND.PRCP.MM
## 1123                                     AG.LND.RICE.HA
## 1124                                      AG.LND.SGM.HA
## 1125                                     AG.LND.TOTL.HA
## 1126                                     AG.LND.TOTL.K2
## 1127                                  AG.LND.TOTL.RU.K2
## 1128                                  AG.LND.TOTL.UR.K2
## 1129                                     AG.LND.TRAC.ZS
## 1130                                      AG.LND.WHT.HA
## 1131                                     AG.PRD.AGRI.XD
## 1132                                      AG.PRD.BLY.MT
## 1133                                     AG.PRD.CREL.MT
## 1134                                     AG.PRD.CREL.XD
## 1135                                     AG.PRD.CROP.XD
## 1136                                      AG.PRD.FNO.MT
## 1137                                     AG.PRD.FOOD.XD
## 1138                                    AG.PRD.GAGRI.XD
## 1139                                    AG.PRD.GCREL.XD
## 1140                                    AG.PRD.GCROP.XD
## 1141                                    AG.PRD.GFOOD.XD
## 1142                                    AG.PRD.GLVSK.XD
## 1143                                   AG.PRD.GNFOOD.XD
## 1144                                     AG.PRD.LVSK.XD
## 1145                                      AG.PRD.MLT.MT
## 1146                                      AG.PRD.MZE.MT
## 1147                                    AG.PRD.NFOOD.XD
## 1148                                     AG.PRD.RICE.MT
## 1149                                     AG.PRD.RTTB.MT
## 1150                                      AG.PRD.SGM.MT
## 1151                                      AG.PRD.WHT.MT
## 1152                                      AG.SED.BLY.MT
## 1153                                     AG.SED.CREL.MT
## 1154                                      AG.SED.FNO.MT
## 1155                                      AG.SED.MLT.MT
## 1156                                      AG.SED.MZE.MT
## 1157                                     AG.SED.RICE.MT
## 1158                                      AG.SED.SGM.MT
## 1159                                      AG.SED.WHT.MT
## 1160                                     AG.SRF.TOTL.HA
## 1161                                     AG.SRF.TOTL.K2
## 1162                                     AG.TRC.EMPL.ZS
## 1163                                     AG.USE.PEST.ZS
## 1164                                      AG.YLD.BLY.KG
## 1165                                     AG.YLD.CREL.KG
## 1166                                      AG.YLD.FNO.KG
## 1167                                      AG.YLD.MLT.KG
## 1168                                      AG.YLD.MZE.KG
## 1169                                     AG.YLD.RICE.KG
## 1170                                      AG.YLD.SGM.KG
## 1171                                      AG.YLD.WHT.KG
## 1172                                        allsa.bi_q1
## 1173                                      allsa.cov_pop
## 1174                                      allsa.gen_pop
## 1175                                        allsi.bi_q1
## 1176                                      allsi.cov_pop
## 1177                                      allsi.gen_pop
## 1178                                        allsp.bi_q1
## 1179                                      allsp.cov_pop
## 1180                                      allsp.gen_pop
## 1181                                                 B1
## 1182                                                B2i
## 1183                                               B2ii
## 1184                                              B2iii
## 1185                                                B3i
## 1186                                               B3ii
## 1187                                              B3iii
## 1188                                                B4i
## 1189                                               B4ii
## 1190                                              B4iii
## 1191                                                B5i
## 1192                                               B5ii
## 1193                                              B5iii
## 1194                                                B6i
## 1195                                               B6ii
## 1196                                              B6iii
## 1197                                BAR.NOED.1519.FE.ZS
## 1198                                   BAR.NOED.1519.ZS
## 1199                                BAR.NOED.15UP.FE.ZS
## 1200                                   BAR.NOED.15UP.ZS
## 1201                                BAR.NOED.2024.FE.ZS
## 1202                                   BAR.NOED.2024.ZS
## 1203                                BAR.NOED.2529.FE.ZS
## 1204                                   BAR.NOED.2529.ZS
## 1205                                BAR.NOED.25UP.FE.ZS
## 1206                                   BAR.NOED.25UP.ZS
## 1207                                BAR.NOED.3034.FE.ZS
## 1208                                   BAR.NOED.3034.ZS
## 1209                                BAR.NOED.3539.FE.ZS
## 1210                                   BAR.NOED.3539.ZS
## 1211                                BAR.NOED.4044.FE.ZS
## 1212                                   BAR.NOED.4044.ZS
## 1213                                BAR.NOED.4549.FE.ZS
## 1214                                   BAR.NOED.4549.ZS
## 1215                                BAR.NOED.5054.FE.ZS
## 1216                                   BAR.NOED.5054.ZS
## 1217                                BAR.NOED.5559.FE.ZS
## 1218                                   BAR.NOED.5559.ZS
## 1219                                BAR.NOED.6064.FE.ZS
## 1220                                   BAR.NOED.6064.ZS
## 1221                                BAR.NOED.6569.FE.ZS
## 1222                                   BAR.NOED.6569.ZS
## 1223                                BAR.NOED.7074.FE.ZS
## 1224                                   BAR.NOED.7074.ZS
## 1225                                BAR.NOED.75UP.FE.ZS
## 1226                                   BAR.NOED.75UP.ZS
## 1227                                       BAR.POP.1519
## 1228                                    BAR.POP.1519.FE
## 1229                                       BAR.POP.15UP
## 1230                                    BAR.POP.15UP.FE
## 1231                                       BAR.POP.2024
## 1232                                    BAR.POP.2024.FE
## 1233                                       BAR.POP.2529
## 1234                                    BAR.POP.2529.FE
## 1235                                       BAR.POP.25UP
## 1236                                    BAR.POP.25UP.FE
## 1237                                       BAR.POP.3034
## 1238                                    BAR.POP.3034.FE
## 1239                                       BAR.POP.3539
## 1240                                    BAR.POP.3539.FE
## 1241                                       BAR.POP.4044
## 1242                                    BAR.POP.4044.FE
## 1243                                       BAR.POP.4549
## 1244                                    BAR.POP.4549.FE
## 1245                                       BAR.POP.5054
## 1246                                    BAR.POP.5054.FE
## 1247                                       BAR.POP.5559
## 1248                                    BAR.POP.5559.FE
## 1249                                       BAR.POP.6064
## 1250                                    BAR.POP.6064.FE
## 1251                                       BAR.POP.6569
## 1252                                    BAR.POP.6569.FE
## 1253                                       BAR.POP.7074
## 1254                                    BAR.POP.7074.FE
## 1255                                       BAR.POP.75UP
## 1256                                    BAR.POP.75UP.FE
## 1257                            BAR.PRM.CMPT.1519.FE.ZS
## 1258                               BAR.PRM.CMPT.1519.ZS
## 1259                            BAR.PRM.CMPT.15UP.FE.ZS
## 1260                               BAR.PRM.CMPT.15UP.ZS
## 1261                            BAR.PRM.CMPT.2024.FE.ZS
## 1262                               BAR.PRM.CMPT.2024.ZS
## 1263                            BAR.PRM.CMPT.2529.FE.ZS
## 1264                               BAR.PRM.CMPT.2529.ZS
## 1265                            BAR.PRM.CMPT.25UP.FE.ZS
## 1266                               BAR.PRM.CMPT.25UP.ZS
## 1267                            BAR.PRM.CMPT.3034.FE.ZS
## 1268                               BAR.PRM.CMPT.3034.ZS
## 1269                            BAR.PRM.CMPT.3539.FE.ZS
## 1270                               BAR.PRM.CMPT.3539.ZS
## 1271                            BAR.PRM.CMPT.4044.FE.ZS
## 1272                               BAR.PRM.CMPT.4044.ZS
## 1273                            BAR.PRM.CMPT.4549.FE.ZS
## 1274                               BAR.PRM.CMPT.4549.ZS
## 1275                            BAR.PRM.CMPT.5054.FE.ZS
## 1276                               BAR.PRM.CMPT.5054.ZS
## 1277                            BAR.PRM.CMPT.5559.FE.ZS
## 1278                               BAR.PRM.CMPT.5559.ZS
## 1279                            BAR.PRM.CMPT.6064.FE.ZS
## 1280                               BAR.PRM.CMPT.6064.ZS
## 1281                            BAR.PRM.CMPT.6569.FE.ZS
## 1282                               BAR.PRM.CMPT.6569.ZS
## 1283                            BAR.PRM.CMPT.7074.FE.ZS
## 1284                               BAR.PRM.CMPT.7074.ZS
## 1285                            BAR.PRM.CMPT.75UP.FE.ZS
## 1286                               BAR.PRM.CMPT.75UP.ZS
## 1287                            BAR.PRM.ICMP.1519.FE.ZS
## 1288                               BAR.PRM.ICMP.1519.ZS
## 1289                            BAR.PRM.ICMP.15UP.FE.ZS
## 1290                               BAR.PRM.ICMP.15UP.ZS
## 1291                            BAR.PRM.ICMP.2024.FE.ZS
## 1292                               BAR.PRM.ICMP.2024.ZS
## 1293                            BAR.PRM.ICMP.2529.FE.ZS
## 1294                               BAR.PRM.ICMP.2529.ZS
## 1295                            BAR.PRM.ICMP.25UP.FE.ZS
## 1296                               BAR.PRM.ICMP.25UP.ZS
## 1297                            BAR.PRM.ICMP.3034.FE.ZS
## 1298                               BAR.PRM.ICMP.3034.ZS
## 1299                            BAR.PRM.ICMP.3539.FE.ZS
## 1300                               BAR.PRM.ICMP.3539.ZS
## 1301                            BAR.PRM.ICMP.4044.FE.ZS
## 1302                               BAR.PRM.ICMP.4044.ZS
## 1303                            BAR.PRM.ICMP.4549.FE.ZS
## 1304                               BAR.PRM.ICMP.4549.ZS
## 1305                            BAR.PRM.ICMP.5054.FE.ZS
## 1306                               BAR.PRM.ICMP.5054.ZS
## 1307                            BAR.PRM.ICMP.5559.FE.ZS
## 1308                               BAR.PRM.ICMP.5559.ZS
## 1309                            BAR.PRM.ICMP.6064.FE.ZS
## 1310                               BAR.PRM.ICMP.6064.ZS
## 1311                            BAR.PRM.ICMP.6569.FE.ZS
## 1312                               BAR.PRM.ICMP.6569.ZS
## 1313                            BAR.PRM.ICMP.7074.FE.ZS
## 1314                               BAR.PRM.ICMP.7074.ZS
## 1315                            BAR.PRM.ICMP.75UP.FE.ZS
## 1316                               BAR.PRM.ICMP.75UP.ZS
## 1317                                  BAR.PRM.SCHL.1519
## 1318                               BAR.PRM.SCHL.1519.FE
## 1319                                  BAR.PRM.SCHL.15UP
## 1320                               BAR.PRM.SCHL.15UP.FE
## 1321                                  BAR.PRM.SCHL.2024
## 1322                               BAR.PRM.SCHL.2024.FE
## 1323                                  BAR.PRM.SCHL.2529
## 1324                               BAR.PRM.SCHL.2529.FE
## 1325                                  BAR.PRM.SCHL.25UP
## 1326                               BAR.PRM.SCHL.25UP.FE
## 1327                                  BAR.PRM.SCHL.3034
## 1328                               BAR.PRM.SCHL.3034.FE
## 1329                                  BAR.PRM.SCHL.3539
## 1330                               BAR.PRM.SCHL.3539.FE
## 1331                                  BAR.PRM.SCHL.4044
## 1332                               BAR.PRM.SCHL.4044.FE
## 1333                                  BAR.PRM.SCHL.4549
## 1334                               BAR.PRM.SCHL.4549.FE
## 1335                                  BAR.PRM.SCHL.5054
## 1336                               BAR.PRM.SCHL.5054.FE
## 1337                                  BAR.PRM.SCHL.5559
## 1338                               BAR.PRM.SCHL.5559.FE
## 1339                                  BAR.PRM.SCHL.6064
## 1340                               BAR.PRM.SCHL.6064.FE
## 1341                                  BAR.PRM.SCHL.6569
## 1342                               BAR.PRM.SCHL.6569.FE
## 1343                                  BAR.PRM.SCHL.7074
## 1344                               BAR.PRM.SCHL.7074.FE
## 1345                                  BAR.PRM.SCHL.75UP
## 1346                               BAR.PRM.SCHL.75UP.FE
## 1347                                      BAR.SCHL.1519
## 1348                                   BAR.SCHL.1519.FE
## 1349                                      BAR.SCHL.15UP
## 1350                                   BAR.SCHL.15UP.FE
## 1351                                      BAR.SCHL.2024
## 1352                                   BAR.SCHL.2024.FE
## 1353                                      BAR.SCHL.2529
## 1354                                   BAR.SCHL.2529.FE
## 1355                                      BAR.SCHL.25UP
## 1356                                   BAR.SCHL.25UP.FE
## 1357                                      BAR.SCHL.3034
## 1358                                   BAR.SCHL.3034.FE
## 1359                                      BAR.SCHL.3539
## 1360                                   BAR.SCHL.3539.FE
## 1361                                      BAR.SCHL.4044
## 1362                                   BAR.SCHL.4044.FE
## 1363                                      BAR.SCHL.4549
## 1364                                   BAR.SCHL.4549.FE
## 1365                                      BAR.SCHL.5054
## 1366                                   BAR.SCHL.5054.FE
## 1367                                      BAR.SCHL.5559
## 1368                                   BAR.SCHL.5559.FE
## 1369                                      BAR.SCHL.6064
## 1370                                   BAR.SCHL.6064.FE
## 1371                                      BAR.SCHL.6569
## 1372                                   BAR.SCHL.6569.FE
## 1373                                      BAR.SCHL.7074
## 1374                                   BAR.SCHL.7074.FE
## 1375                                      BAR.SCHL.75UP
## 1376                                   BAR.SCHL.75UP.FE
## 1377                            BAR.SEC.CMPT.1519.FE.ZS
## 1378                               BAR.SEC.CMPT.1519.ZS
## 1379                            BAR.SEC.CMPT.15UP.FE.ZS
## 1380                               BAR.SEC.CMPT.15UP.ZS
## 1381                            BAR.SEC.CMPT.2024.FE.ZS
## 1382                               BAR.SEC.CMPT.2024.ZS
## 1383                            BAR.SEC.CMPT.2529.FE.ZS
## 1384                               BAR.SEC.CMPT.2529.ZS
## 1385                            BAR.SEC.CMPT.25UP.FE.ZS
## 1386                               BAR.SEC.CMPT.25UP.ZS
## 1387                            BAR.SEC.CMPT.3034.FE.ZS
## 1388                               BAR.SEC.CMPT.3034.ZS
## 1389                            BAR.SEC.CMPT.3539.FE.ZS
## 1390                               BAR.SEC.CMPT.3539.ZS
## 1391                            BAR.SEC.CMPT.4044.FE.ZS
## 1392                               BAR.SEC.CMPT.4044.ZS
## 1393                            BAR.SEC.CMPT.4549.FE.ZS
## 1394                               BAR.SEC.CMPT.4549.ZS
## 1395                            BAR.SEC.CMPT.5054.FE.ZS
## 1396                               BAR.SEC.CMPT.5054.ZS
## 1397                            BAR.SEC.CMPT.5559.FE.ZS
## 1398                               BAR.SEC.CMPT.5559.ZS
## 1399                            BAR.SEC.CMPT.6064.FE.ZS
## 1400                               BAR.SEC.CMPT.6064.ZS
## 1401                            BAR.SEC.CMPT.6569.FE.ZS
## 1402                               BAR.SEC.CMPT.6569.ZS
## 1403                            BAR.SEC.CMPT.7074.FE.ZS
## 1404                               BAR.SEC.CMPT.7074.ZS
## 1405                            BAR.SEC.CMPT.75UP.FE.ZS
## 1406                               BAR.SEC.CMPT.75UP.ZS
## 1407                            BAR.SEC.ICMP.1519.FE.ZS
## 1408                               BAR.SEC.ICMP.1519.ZS
## 1409                            BAR.SEC.ICMP.15UP.FE.ZS
## 1410                               BAR.SEC.ICMP.15UP.ZS
## 1411                            BAR.SEC.ICMP.2024.FE.ZS
## 1412                               BAR.SEC.ICMP.2024.ZS
## 1413                            BAR.SEC.ICMP.2529.FE.ZS
## 1414                               BAR.SEC.ICMP.2529.ZS
## 1415                            BAR.SEC.ICMP.25UP.FE.ZS
## 1416                               BAR.SEC.ICMP.25UP.ZS
## 1417                            BAR.SEC.ICMP.3034.FE.ZS
## 1418                               BAR.SEC.ICMP.3034.ZS
## 1419                            BAR.SEC.ICMP.3539.FE.ZS
## 1420                               BAR.SEC.ICMP.3539.ZS
## 1421                            BAR.SEC.ICMP.4044.FE.ZS
## 1422                               BAR.SEC.ICMP.4044.ZS
## 1423                            BAR.SEC.ICMP.4549.FE.ZS
## 1424                               BAR.SEC.ICMP.4549.ZS
## 1425                            BAR.SEC.ICMP.5054.FE.ZS
## 1426                               BAR.SEC.ICMP.5054.ZS
## 1427                            BAR.SEC.ICMP.5559.FE.ZS
## 1428                               BAR.SEC.ICMP.5559.ZS
## 1429                            BAR.SEC.ICMP.6064.FE.ZS
## 1430                               BAR.SEC.ICMP.6064.ZS
## 1431                            BAR.SEC.ICMP.6569.FE.ZS
## 1432                               BAR.SEC.ICMP.6569.ZS
## 1433                            BAR.SEC.ICMP.7074.FE.ZS
## 1434                               BAR.SEC.ICMP.7074.ZS
## 1435                            BAR.SEC.ICMP.75UP.FE.ZS
## 1436                               BAR.SEC.ICMP.75UP.ZS
## 1437                                  BAR.SEC.SCHL.1519
## 1438                               BAR.SEC.SCHL.1519.FE
## 1439                                  BAR.SEC.SCHL.15UP
## 1440                               BAR.SEC.SCHL.15UP.FE
## 1441                                  BAR.SEC.SCHL.2024
## 1442                               BAR.SEC.SCHL.2024.FE
## 1443                                  BAR.SEC.SCHL.2529
## 1444                               BAR.SEC.SCHL.2529.FE
## 1445                                  BAR.SEC.SCHL.25UP
## 1446                               BAR.SEC.SCHL.25UP.FE
## 1447                                  BAR.SEC.SCHL.3034
## 1448                               BAR.SEC.SCHL.3034.FE
## 1449                                  BAR.SEC.SCHL.3539
## 1450                               BAR.SEC.SCHL.3539.FE
## 1451                                  BAR.SEC.SCHL.4044
## 1452                               BAR.SEC.SCHL.4044.FE
## 1453                                  BAR.SEC.SCHL.4549
## 1454                               BAR.SEC.SCHL.4549.FE
## 1455                                  BAR.SEC.SCHL.5054
## 1456                               BAR.SEC.SCHL.5054.FE
## 1457                                  BAR.SEC.SCHL.5559
## 1458                               BAR.SEC.SCHL.5559.FE
## 1459                                  BAR.SEC.SCHL.6064
## 1460                               BAR.SEC.SCHL.6064.FE
## 1461                                  BAR.SEC.SCHL.6569
## 1462                               BAR.SEC.SCHL.6569.FE
## 1463                                  BAR.SEC.SCHL.7074
## 1464                               BAR.SEC.SCHL.7074.FE
## 1465                                  BAR.SEC.SCHL.75UP
## 1466                               BAR.SEC.SCHL.75UP.FE
## 1467                            BAR.TER.CMPT.1519.FE.ZS
## 1468                               BAR.TER.CMPT.1519.ZS
## 1469                            BAR.TER.CMPT.15UP.FE.ZS
## 1470                               BAR.TER.CMPT.15UP.ZS
## 1471                            BAR.TER.CMPT.2024.FE.ZS
## 1472                               BAR.TER.CMPT.2024.ZS
## 1473                            BAR.TER.CMPT.2529.FE.ZS
## 1474                               BAR.TER.CMPT.2529.ZS
## 1475                            BAR.TER.CMPT.25UP.FE.ZS
## 1476                               BAR.TER.CMPT.25UP.ZS
## 1477                            BAR.TER.CMPT.3034.FE.ZS
## 1478                               BAR.TER.CMPT.3034.ZS
## 1479                            BAR.TER.CMPT.3539.FE.ZS
## 1480                               BAR.TER.CMPT.3539.ZS
## 1481                            BAR.TER.CMPT.4044.FE.ZS
## 1482                               BAR.TER.CMPT.4044.ZS
## 1483                            BAR.TER.CMPT.4549.FE.ZS
## 1484                               BAR.TER.CMPT.4549.ZS
## 1485                            BAR.TER.CMPT.5054.FE.ZS
## 1486                               BAR.TER.CMPT.5054.ZS
## 1487                            BAR.TER.CMPT.5559.FE.ZS
## 1488                               BAR.TER.CMPT.5559.ZS
## 1489                            BAR.TER.CMPT.6064.FE.ZS
## 1490                               BAR.TER.CMPT.6064.ZS
## 1491                            BAR.TER.CMPT.6569.FE.ZS
## 1492                               BAR.TER.CMPT.6569.ZS
## 1493                            BAR.TER.CMPT.7074.FE.ZS
## 1494                               BAR.TER.CMPT.7074.ZS
## 1495                            BAR.TER.CMPT.75UP.FE.ZS
## 1496                               BAR.TER.CMPT.75UP.ZS
## 1497                            BAR.TER.ICMP.1519.FE.ZS
## 1498                               BAR.TER.ICMP.1519.ZS
## 1499                            BAR.TER.ICMP.15UP.FE.ZS
## 1500                               BAR.TER.ICMP.15UP.ZS
## 1501                            BAR.TER.ICMP.2024.FE.ZS
## 1502                               BAR.TER.ICMP.2024.ZS
## 1503                            BAR.TER.ICMP.2529.FE.ZS
## 1504                               BAR.TER.ICMP.2529.ZS
## 1505                            BAR.TER.ICMP.25UP.FE.ZS
## 1506                               BAR.TER.ICMP.25UP.ZS
## 1507                            BAR.TER.ICMP.3034.FE.ZS
## 1508                               BAR.TER.ICMP.3034.ZS
## 1509                            BAR.TER.ICMP.3539.FE.ZS
## 1510                               BAR.TER.ICMP.3539.ZS
## 1511                            BAR.TER.ICMP.4044.FE.ZS
## 1512                               BAR.TER.ICMP.4044.ZS
## 1513                            BAR.TER.ICMP.4549.FE.ZS
## 1514                               BAR.TER.ICMP.4549.ZS
## 1515                            BAR.TER.ICMP.5054.FE.ZS
## 1516                               BAR.TER.ICMP.5054.ZS
## 1517                            BAR.TER.ICMP.5559.FE.ZS
## 1518                               BAR.TER.ICMP.5559.ZS
## 1519                            BAR.TER.ICMP.6064.FE.ZS
## 1520                               BAR.TER.ICMP.6064.ZS
## 1521                            BAR.TER.ICMP.6569.FE.ZS
## 1522                               BAR.TER.ICMP.6569.ZS
## 1523                            BAR.TER.ICMP.7074.FE.ZS
## 1524                               BAR.TER.ICMP.7074.ZS
## 1525                            BAR.TER.ICMP.75UP.FE.ZS
## 1526                               BAR.TER.ICMP.75UP.ZS
## 1527                                  BAR.TER.SCHL.1519
## 1528                               BAR.TER.SCHL.1519.FE
## 1529                                  BAR.TER.SCHL.15UP
## 1530                               BAR.TER.SCHL.15UP.FE
## 1531                                  BAR.TER.SCHL.2024
## 1532                               BAR.TER.SCHL.2024.FE
## 1533                                  BAR.TER.SCHL.2529
## 1534                               BAR.TER.SCHL.2529.FE
## 1535                                  BAR.TER.SCHL.25UP
## 1536                               BAR.TER.SCHL.25UP.FE
## 1537                                  BAR.TER.SCHL.3034
## 1538                               BAR.TER.SCHL.3034.FE
## 1539                                  BAR.TER.SCHL.3539
## 1540                               BAR.TER.SCHL.3539.FE
## 1541                                  BAR.TER.SCHL.4044
## 1542                               BAR.TER.SCHL.4044.FE
## 1543                                  BAR.TER.SCHL.4549
## 1544                               BAR.TER.SCHL.4549.FE
## 1545                                  BAR.TER.SCHL.5054
## 1546                               BAR.TER.SCHL.5054.FE
## 1547                                  BAR.TER.SCHL.5559
## 1548                               BAR.TER.SCHL.5559.FE
## 1549                                  BAR.TER.SCHL.6064
## 1550                               BAR.TER.SCHL.6064.FE
## 1551                                  BAR.TER.SCHL.6569
## 1552                               BAR.TER.SCHL.6569.FE
## 1553                                  BAR.TER.SCHL.7074
## 1554                               BAR.TER.SCHL.7074.FE
## 1555                                  BAR.TER.SCHL.75UP
## 1556                               BAR.TER.SCHL.75UP.FE
## 1557                                  BG.GSR.NFSV.GD.ZS
## 1558                               BG.KAC.FNEI.GD.PP.ZS
## 1559                                  BG.KAC.FNEI.GD.ZS
## 1560                               BG.KLT.DINV.GD.PP.ZS
## 1561                                  BG.KLT.DINV.GD.ZS
## 1562                               BI.EMP.FRML.ED.PB.ZS
## 1563                               BI.EMP.FRML.HE.PB.ZS
## 1564                               BI.EMP.FRML.PB.ED.ZS
## 1565                               BI.EMP.FRML.PB.HE.ZS
## 1566                               BI.EMP.FRML.PB.PA.ZS
## 1567                                  BI.EMP.FRML.PB.ZS
## 1568                               BI.EMP.PUBS.FE.ED.ZS
## 1569                               BI.EMP.PUBS.FE.HE.ZS
## 1570                               BI.EMP.PWRK.ED.PB.ZS
## 1571                               BI.EMP.PWRK.HE.PB.ZS
## 1572                               BI.EMP.PWRK.PB.ED.ZS
## 1573                               BI.EMP.PWRK.PB.FE.ZS
## 1574                               BI.EMP.PWRK.PB.HE.ZS
## 1575                               BI.EMP.PWRK.PB.MA.ZS
## 1576                               BI.EMP.PWRK.PB.PA.ZS
## 1577                               BI.EMP.PWRK.PB.RU.ZS
## 1578                               BI.EMP.PWRK.PB.UR.ZS
## 1579                                  BI.EMP.PWRK.PB.ZS
## 1580                               BI.EMP.TOTL.ED.PB.ZS
## 1581                               BI.EMP.TOTL.HE.PB.ZS
## 1582                                     BI.EMP.TOTL.NO
## 1583                                  BI.EMP.TOTL.NO.ED
## 1584                                  BI.EMP.TOTL.NO.HE
## 1585                                  BI.EMP.TOTL.NO.PA
## 1586                               BI.EMP.TOTL.PB.ED.ZS
## 1587                               BI.EMP.TOTL.PB.FE.ZS
## 1588                               BI.EMP.TOTL.PB.HE.ZS
## 1589                               BI.EMP.TOTL.PB.MA.ZS
## 1590                               BI.EMP.TOTL.PB.PA.ZS
## 1591                               BI.EMP.TOTL.PB.RU.ZS
## 1592                               BI.EMP.TOTL.PB.TT.ZS
## 1593                               BI.EMP.TOTL.PB.UR.ZS
## 1594                                  BI.EMP.TOTL.PB.ZS
## 1595                                     BI.POP.TOTL.CV
## 1596                               BI.PWK.AGES.PB.ED.MD
## 1597                               BI.PWK.AGES.PB.ED.SM
## 1598                               BI.PWK.AGES.PB.HE.MD
## 1599                               BI.PWK.AGES.PB.HE.SM
## 1600                                  BI.PWK.AGES.PB.MD
## 1601                               BI.PWK.AGES.PB.PA.MD
## 1602                               BI.PWK.AGES.PB.PA.SM
## 1603                                  BI.PWK.AGES.PB.SM
## 1604                               BI.PWK.AGES.PV.ED.MD
## 1605                               BI.PWK.AGES.PV.ED.SM
## 1606                               BI.PWK.AGES.PV.HE.MD
## 1607                               BI.PWK.AGES.PV.HE.SM
## 1608                                  BI.PWK.AGES.PV.MD
## 1609                                  BI.PWK.AGES.PV.SM
## 1610                                  BI.PWK.CMPA.GE.MD
## 1611                                  BI.PWK.CMPA.GE.SM
## 1612                                  BI.PWK.CMPA.HD.MD
## 1613                                  BI.PWK.CMPA.HD.SM
## 1614                                  BI.PWK.CMPA.HN.MD
## 1615                                  BI.PWK.CMPA.HN.SM
## 1616                                  BI.PWK.CMPA.JU.MD
## 1617                                  BI.PWK.CMPA.JU.SM
## 1618                                  BI.PWK.CMPA.PO.MD
## 1619                                  BI.PWK.CMPA.PO.SM
## 1620                                  BI.PWK.CMPA.PT.MD
## 1621                                  BI.PWK.CMPA.PT.SM
## 1622                                  BI.PWK.CMPA.SN.MD
## 1623                                  BI.PWK.CMPA.SN.SM
## 1624                                  BI.PWK.CMPA.ST.MD
## 1625                                  BI.PWK.CMPA.ST.SM
## 1626                                  BI.PWK.CMPA.UT.MD
## 1627                                  BI.PWK.CMPA.UT.SM
## 1628                               BI.PWK.PRVS.CK.FE.ZS
## 1629                                  BI.PWK.PRVS.CT.ZS
## 1630                               BI.PWK.PRVS.EO.FE.ZS
## 1631                               BI.PWK.PRVS.FE.Q1.ZS
## 1632                               BI.PWK.PRVS.FE.Q2.ZS
## 1633                               BI.PWK.PRVS.FE.Q3.ZS
## 1634                               BI.PWK.PRVS.FE.Q4.ZS
## 1635                               BI.PWK.PRVS.FE.Q5.ZS
## 1636                                  BI.PWK.PRVS.FE.ZS
## 1637                                  BI.PWK.PRVS.HS.ZS
## 1638                                  BI.PWK.PRVS.NN.ZS
## 1639                               BI.PWK.PRVS.PN.FE.ZS
## 1640                                  BI.PWK.PRVS.PR.ZS
## 1641                                  BI.PWK.PRVS.RU.ZS
## 1642                                  BI.PWK.PRVS.SG.ZS
## 1643                               BI.PWK.PRVS.SN.FE.ZS
## 1644                                  BI.PWK.PRVS.SY.ZS
## 1645                               BI.PWK.PRVS.TN.FE.ZS
## 1646                               BI.PWK.PRVS.TT.ED.ZS
## 1647                               BI.PWK.PRVS.TT.HE.ZS
## 1648                                  BI.PWK.PRVS.TT.ZS
## 1649                                  BI.PWK.PRVS.UM.ZS
## 1650                               BI.PWK.PUBS.CK.FE.ZS
## 1651                                  BI.PWK.PUBS.CT.ZS
## 1652                               BI.PWK.PUBS.ED.FE.ZS
## 1653                               BI.PWK.PUBS.EO.FE.ZS
## 1654                               BI.PWK.PUBS.FE.Q1.ZS
## 1655                               BI.PWK.PUBS.FE.Q2.ZS
## 1656                               BI.PWK.PUBS.FE.Q3.ZS
## 1657                               BI.PWK.PUBS.FE.Q4.ZS
## 1658                               BI.PWK.PUBS.FE.Q5.ZS
## 1659                                  BI.PWK.PUBS.FE.ZS
## 1660                               BI.PWK.PUBS.HE.FE.ZS
## 1661                                  BI.PWK.PUBS.HS.ZS
## 1662                                  BI.PWK.PUBS.NN.ZS
## 1663                                     BI.PWK.PUBS.NO
## 1664                                  BI.PWK.PUBS.NO.ED
## 1665                                  BI.PWK.PUBS.NO.HE
## 1666                                  BI.PWK.PUBS.NO.PA
## 1667                               BI.PWK.PUBS.PA.FE.ZS
## 1668                               BI.PWK.PUBS.PN.FE.ZS
## 1669                                  BI.PWK.PUBS.PR.ZS
## 1670                               BI.PWK.PUBS.RU.ED.ZS
## 1671                               BI.PWK.PUBS.RU.HE.ZS
## 1672                               BI.PWK.PUBS.RU.PA.ZS
## 1673                                  BI.PWK.PUBS.RU.ZS
## 1674                                  BI.PWK.PUBS.SG.ZS
## 1675                               BI.PWK.PUBS.SN.FE.ZS
## 1676                                  BI.PWK.PUBS.SY.ZS
## 1677                               BI.PWK.PUBS.TN.FE.ZS
## 1678                               BI.PWK.PUBS.TT.ED.ZS
## 1679                               BI.PWK.PUBS.TT.HE.ZS
## 1680                               BI.PWK.PUBS.TT.PA.ZS
## 1681                                  BI.PWK.PUBS.TT.ZS
## 1682                                  BI.PWK.PUBS.UM.ZS
## 1683                                     BI.PWK.TOTL.NO
## 1684                                  BI.PWK.TOTL.NO.ED
## 1685                                  BI.PWK.TOTL.NO.HE
## 1686                                  BI.PWK.TOTL.NO.PA
## 1687                               BI.WAG.CPRS.PB.GE.ZS
## 1688                               BI.WAG.CPRS.PB.HD.ZS
## 1689                               BI.WAG.CPRS.PB.HN.ZS
## 1690                               BI.WAG.CPRS.PB.JU.ZS
## 1691                               BI.WAG.CPRS.PB.PO.ZS
## 1692                               BI.WAG.CPRS.PB.PT.ZS
## 1693                               BI.WAG.CPRS.PB.SN.ZS
## 1694                               BI.WAG.CPRS.PB.ST.ZS
## 1695                               BI.WAG.CPRS.PB.UT.ZS
## 1696                                  BI.WAG.CPRS.PB.ZS
## 1697                                  BI.WAG.CPRS.PV.ZS
## 1698                                     BI.WAG.PREM.ED
## 1699                                  BI.WAG.PREM.ED.GP
## 1700                                  BI.WAG.PREM.FE.ED
## 1701                                  BI.WAG.PREM.FE.HE
## 1702                                     BI.WAG.PREM.HE
## 1703                                  BI.WAG.PREM.HE.GP
## 1704                                  BI.WAG.PREM.MA.ED
## 1705                                  BI.WAG.PREM.MA.HE
## 1706                                     BI.WAG.PREM.PB
## 1707                                  BI.WAG.PREM.PB.CK
## 1708                                  BI.WAG.PREM.PB.ED
## 1709                               BI.WAG.PREM.PB.ED.PE
## 1710                               BI.WAG.PREM.PB.ED.WE
## 1711                                  BI.WAG.PREM.PB.EO
## 1712                                  BI.WAG.PREM.PB.FE
## 1713                               BI.WAG.PREM.PB.FE.ED
## 1714                               BI.WAG.PREM.PB.FE.HE
## 1715                                  BI.WAG.PREM.PB.FL
## 1716                                  BI.WAG.PREM.PB.FM
## 1717                               BI.WAG.PREM.PB.FM.ED
## 1718                               BI.WAG.PREM.PB.FM.HE
## 1719                               BI.WAG.PREM.PB.FM.PA
## 1720                                  BI.WAG.PREM.PB.GP
## 1721                               BI.WAG.PREM.PB.HE.PE
## 1722                               BI.WAG.PREM.PB.HE.WE
## 1723                                  BI.WAG.PREM.PB.MA
## 1724                               BI.WAG.PREM.PB.MA.ED
## 1725                               BI.WAG.PREM.PB.MA.HE
## 1726                                  BI.WAG.PREM.PB.NN
## 1727                                  BI.WAG.PREM.PB.OC
## 1728                                  BI.WAG.PREM.PB.PN
## 1729                                  BI.WAG.PREM.PB.PR
## 1730                                  BI.WAG.PREM.PB.PV
## 1731                                  BI.WAG.PREM.PB.SG
## 1732                                  BI.WAG.PREM.PB.SN
## 1733                                  BI.WAG.PREM.PB.TN
## 1734                                  BI.WAG.PREM.PB.TT
## 1735                               BI.WAG.PREM.PV.FM.ED
## 1736                               BI.WAG.PREM.PV.FM.HE
## 1737                                  BI.WAG.PRVS.ED.FM
## 1738                                  BI.WAG.PRVS.FM.MD
## 1739                                  BI.WAG.PRVS.FM.SM
## 1740                                  BI.WAG.PRVS.HE.FM
## 1741                                     BI.WAG.PRVS.PN
## 1742                                     BI.WAG.PRVS.SN
## 1743                                     BI.WAG.PRVS.TN
## 1744                                  BI.WAG.PUBS.ED.FM
## 1745                                  BI.WAG.PUBS.FM.MD
## 1746                                  BI.WAG.PUBS.FM.SM
## 1747                                  BI.WAG.PUBS.HE.FM
## 1748                                  BI.WAG.PUBS.PA.FM
## 1749                                     BI.WAG.PUBS.PN
## 1750                                     BI.WAG.PUBS.SN
## 1751                                     BI.WAG.PUBS.TN
## 1752                                  BI.WAG.TOTL.GD.ZS
## 1753                                  BI.WAG.TOTL.PB.ZS
## 1754                                  BM.AG.AGR.TRAC.CD
## 1755                                  BM.AG.AGR.TRAC.NO
## 1756                                      BM.AG.CREL.CD
## 1757                                      BM.AG.CREL.MT
## 1758                                      BM.AG.FRST.CD
## 1759                                   BM.AG.HZ.PEST.CD
## 1760                                      BM.AG.PEST.CD
## 1761                                     BM.FOD.AGRI.CD
## 1762                                     BM.GSR.AGRI.CD
## 1763                                     BM.GSR.CMCP.ZS
## 1764                                     BM.GSR.COMM.CD
## 1765                                     BM.GSR.FCTY.CD
## 1766                                     BM.GSR.FINS.CD
## 1767                                     BM.GSR.FXAI.CD
## 1768                                     BM.GSR.GNFS.CD
## 1769                                     BM.GSR.INSF.ZS
## 1770                                     BM.GSR.INSU.CD
## 1771                                     BM.GSR.MRCH.CD
## 1772                                     BM.GSR.MRCH.ZS
## 1773                                     BM.GSR.NFSV.CD
## 1774                                     BM.GSR.OSRV.CD
## 1775                                     BM.GSR.ROYL.CD
## 1776                                     BM.GSR.SERV.CD
## 1777                                     BM.GSR.TOTL.CD
## 1778                                     BM.GSR.TRAN.CD
## 1779                                     BM.GSR.TRAN.ZS
## 1780                                     BM.GSR.TRVL.CD
## 1781                                     BM.GSR.TRVL.ZS
## 1782                                     BM.KLT.DINV.CD
## 1783                                  BM.KLT.DINV.CD.WD
## 1784                                  BM.KLT.DINV.GD.ZS
## 1785                               BM.KLT.DINV.WD.GD.ZS
## 1786                                     BM.SVF.TOTL.CD
## 1787                                     BM.SVN.TOTL.CD
## 1788                                     BM.TRF.CURR.CD
## 1789                                      BM.TRF.MGR.CD
## 1790                                     BM.TRF.OFDC.CD
## 1791                                     BM.TRF.PRVT.CD
## 1792                                     BM.TRF.PWKR.CD
## 1793                                  BM.TRF.PWKR.CD.DT
## 1794                                     BM.TRF.XOKA.CD
## 1795                                     BN.CAB.FUND.CD
## 1796                                     BN.CAB.IOTR.CD
## 1797                                     BN.CAB.XOKA.CD
## 1798                                  BN.CAB.XOKA.GD.ZS
## 1799                                 BN.CAB.XOKA.GDP.ZS
## 1800                                  BN.CAB.XOKA.GN.ZS
## 1801                                     BN.CAB.XOTR.CD
## 1802                                     BN.CAB.XOTR.ZS
## 1803                                     BN.CUR.ACTN.CD
## 1804                                     BN.CUR.ACTX.CD
## 1805                                     BN.CUR.GDPM.ZS
## 1806                                     BN.DSR.UNPD.CD
## 1807                                     BN.FAC.ARAC.CD
## 1808                                     BN.FIN.TOTL.CD
## 1809                                     BN.FIN.TOTP.CD
## 1810                                     BN.GSR.FCTY.CD
## 1811                                  BN.GSR.FCTY.CD.ZS
## 1812                                     BN.GSR.GNFS.CD
## 1813                                     BN.GSR.MRCH.CD
## 1814                                     BN.KAC.EOMS.CD
## 1815                                     BN.KAC.FNEI.CD
## 1816                                     BN.KAC.OTHR.CD
## 1817                                     BN.KAP.RSDL.CD
## 1818                                     BN.KLT.DINV.CD
## 1819                                 BN.KLT.DINV.CD.DRS
## 1820                                  BN.KLT.DINV.CD.ZS
## 1821                             BN.KLT.DINV.DRS.GDI.ZS
## 1822                             BN.KLT.DINV.DRS.GDP.ZS
## 1823                                     BN.KLT.NFLW.CD
## 1824                                     BN.KLT.OINV.CD
## 1825                                     BN.KLT.OTHR.CD
## 1826                                     BN.KLT.PRVT.CD
## 1827                                  BN.KLT.PRVT.CD.DT
## 1828                                  BN.KLT.PRVT.GD.ZS
## 1829                                     BN.KLT.PTXL.CD
## 1830                                     BN.KLT.RSDL.CD
## 1831                                     BN.KLT.TOTL.CD
## 1832                                     BN.KLT.TOTX.CD
## 1833                                     BN.KLT.XRSL.CD
## 1834                                     BN.PEF.TOTL.CD
## 1835                                     BN.RES.4040.CD
## 1836                                     BN.RES.INCL.CD
## 1837                                     BN.RES.LFAR.CD
## 1838                                     BN.TRF.CURR.CD
## 1839                                  BN.TRF.CURR.CD.ZS
## 1840                                     BN.TRF.KOGT.CD
## 1841                                     BN.TRF.OFDC.CD
## 1842                                     BN.TRF.OFFK.CD
## 1843                                     BN.TRF.OFFN.CD
## 1844                                     BN.TRF.OFFT.CD
## 1845                                     BN.TRF.PRVT.CD
## 1846                                     BN.TRF.PWKR.CD
## 1847                                  BN.TRF.PWKR.CD.DT
## 1848                                     BN.TRF.XOKA.CD
## 1849                                     BN.TRN.KOGT.CD
## 1850                                       BPK.AUD.SUBN
## 1851                                  BX.AG.AGR.TRAC.CD
## 1852                                  BX.AG.AGR.TRAC.NO
## 1853                                      BX.AG.CREL.CD
## 1854                                      BX.AG.CREL.MT
## 1855                                      BX.AG.FRST.CD
## 1856                                   BX.AG.HZ.PEST.CD
## 1857                                      BX.AG.PEST.CD
## 1858                                     BX.FOD.AGRI.CD
## 1859                                  BX.GRT.EXTA.CD.DT
## 1860                                  BX.GRT.EXTA.CD.WD
## 1861                                  BX.GRT.TECH.CD.DT
## 1862                                  BX.GRT.TECH.CD.WD
## 1863                                     BX.GSR.AGRI.CD
## 1864                                     BX.GSR.CCIS.CD
## 1865                                     BX.GSR.CCIS.ZS
## 1866                                     BX.GSR.CMCP.ZS
## 1867                                     BX.GSR.COMM.CD
## 1868                                     BX.GSR.FCTY.CD
## 1869                                     BX.GSR.FINS.CD
## 1870                                     BX.GSR.GNFS.CD
## 1871                                     BX.GSR.INCL.CD
## 1872                                     BX.GSR.INSF.ZS
## 1873                                     BX.GSR.INSU.CD
## 1874                                     BX.GSR.MRCH.CD
## 1875                                     BX.GSR.MRCH.ZS
## 1876                                     BX.GSR.NFSV.CD
## 1877                                     BX.GSR.OSRV.CD
## 1878                                     BX.GSR.ROYL.CD
## 1879                                     BX.GSR.TOTL.CD
## 1880                                     BX.GSR.TRAN.CD
## 1881                                     BX.GSR.TRAN.ZS
## 1882                                     BX.GSR.TRVL.CD
## 1883                                     BX.GSR.TRVL.ZS
## 1884                                     BX.KLT.DINV.CD
## 1885                                  BX.KLT.DINV.CD.DT
## 1886                                  BX.KLT.DINV.CD.WD
## 1887                               BX.KLT.DINV.DT.GD.ZS
## 1888                               BX.KLT.DINV.DT.GI.ZS
## 1889                               BX.KLT.DINV.WD.GD.ZS
## 1890                                  BX.KLT.DREM.CD.DT
## 1891                                     BX.PEF.TOTL.CD
## 1892                                  BX.PEF.TOTL.CD.DT
## 1893                                  BX.PEF.TOTL.CD.WD
## 1894                                     BX.SVF.TOTL.CD
## 1895                                     BX.SVN.TOTL.CD
## 1896                                     BX.TRF.CURR.CD
## 1897                                      BX.TRF.MGR.CD
## 1898                                BX.TRF.MGR.DT.GD.ZS
## 1899                                     BX.TRF.OFDC.CD
## 1900                                     BX.TRF.OFFT.CD
## 1901                                     BX.TRF.PRVT.CD
## 1902                                     BX.TRF.PWKR.CD
## 1903                                  BX.TRF.PWKR.CD.DT
## 1904                               BX.TRF.PWKR.DT.GD.ZS
## 1905                                  BX.TRF.PWKR.GD.ZS
## 1906                                     BX.TRF.XOKA.CD
## 1907                                              C0.01
## 1908                                              C0.02
## 1909                                              C0.5a
## 1910                                              C0.6a
## 1911                                              C0.6b
## 1912                                                 C1
## 1913                                              C1.10
## 1914                                             C1.11b
## 1915                                              C1.12
## 1916                                               C1.2
## 1917                                               C1.4
## 1918                                               C1.5
## 1919                                               C1.6
## 1920                                               C1.7
## 1921                                               C1.8
## 1922                                               C1.9
## 1923                                                 C2
## 1924                                               C2.1
## 1925                                               C2.2
## 1926                                               C2.3
## 1927                                              C2.4a
## 1928                                              C2.4b
## 1929                                              C2.5a
## 1930                                              C2.5b
## 1931                                              C2.5c
## 1932                                              C2.5d
## 1933                                              C2.5e
## 1934                                               C2.6
## 1935                                              C2.7a
## 1936                                              C2.7b
## 1937                                              C2.7c
## 1938                                              C2.7d
## 1939                                              C2.7e
## 1940                                              C2.7f
## 1941                                              C2.7g
## 1942                                              C2.7h
## 1943                                              C2.7i
## 1944                                              C2.7j
## 1945                                             C2.7ka
## 1946                                             C2.7kb
## 1947                                             C2.7kc
## 1948                                             C2.7la
## 1949                                             C2.7lb
## 1950                                             C2.7lc
## 1951                                              C2.7m
## 1952                                              C2.7n
## 1953                                             C2.7oa
## 1954                                             C2.7ob
## 1955                                             C2.7oc
## 1956                                             C2.7pa
## 1957                                             C2.7pb
## 1958                                             C2.7pc
## 1959                                                 C3
## 1960                                              C3.1a
## 1961                                              C3.1b
## 1962                                              C3.1c
## 1963                                              C3.1d
## 1964                                              C3.1e
## 1965                                             C3.1fa
## 1966                                             C3.1fb
## 1967                                              C3.1g
## 1968                                              C3.1h
## 1969                                              C3.1i
## 1970                                              C3.1j
## 1971                                              C3.1k
## 1972                                              C3.1l
## 1973                                              C3.1m
## 1974                                               C3.2
## 1975                                               C3.3
## 1976                                              C3.4a
## 1977                                              C3.4b
## 1978                                               C3.5
## 1979                                              C3.6a
## 1980                                              C3.6b
## 1981                                              C3.6c
## 1982                                                 C4
## 1983                                               C4.1
## 1984                                             C4.10a
## 1985                                             C4.10b
## 1986                                             C4.10c
## 1987                                             C4.11a
## 1988                                             C4.11b
## 1989                                             C4.11c
## 1990                                              C4.12
## 1991                                              C4.13
## 1992                                              C4.14
## 1993                                              C4.15
## 1994                                              C4.2a
## 1995                                              C4.2b
## 1996                                              C4.3a
## 1997                                              C4.3b
## 1998                                              C4.4a
## 1999                                              C4.4b
## 2000                                              C4.4c
## 2001                                              C4.4d
## 2002                                              C4.4e
## 2003                                              C4.4f
## 2004                                              C4.5a
## 2005                                              C4.5b
## 2006                                              C4.5c
## 2007                                              C4.5d
## 2008                                              C4.6a
## 2009                                              C4.6b
## 2010                                              C4.6c
## 2011                                              C4.6d
## 2012                                              C4.7a
## 2013                                              C4.7b
## 2014                                              C4.8a
## 2015                                              C4.8b
## 2016                                              C4.9a
## 2017                                              C4.9b
## 2018                                              C4.9c
## 2019                                              C4.9d
## 2020                                                 C5
## 2021                                               C5.1
## 2022                                               C5.2
## 2023                                                 C6
## 2024                                    CC.ADPO.MAEX.AA
## 2025                                    CC.ADPO.MAEX.BB
## 2026                                    CC.ADPO.MIEX.AA
## 2027                                    CC.ADPO.MIEX.BB
## 2028                                     CC.AG.NTR.TOHA
## 2029                                    CC.AVPB.PTPI.AI
## 2030                                    CC.AVPB.PTPI.AR
## 2031                                    CC.AVPB.PTPI.DI
## 2032                                    CC.AVPB.PTPI.FP
## 2033                                    CC.AVPB.PTPI.HE
## 2034                                    CC.AVPB.PTPI.LP
## 2035                                    CC.AVPB.TPOP.AG
## 2036                                    CC.AVPB.TPOP.AI
## 2037                                    CC.AVPB.TPOP.DI
## 2038                                    CC.AVPB.TPOP.HE
## 2039                                    CC.AVPB.TPOP.TE
## 2040                                    CC.CHIC.BTFP.AG
## 2041                                    CC.CHIC.BTFP.AI
## 2042                                    CC.CHIC.BTFP.DI
## 2043                                    CC.CHIC.BTFP.HE
## 2044                                    CC.CHIC.BTFP.TE
## 2045                                    CC.CHIC.CFPI.AG
## 2046                                    CC.CHIC.CFPI.AI
## 2047                                    CC.CHIC.CFPI.DI
## 2048                                    CC.CHIC.CFPI.FP
## 2049                                    CC.CHIC.CFPI.HE
## 2050                                    CC.CHIC.CFPI.LP
## 2051                                     CC.CO2.EMSE.BF
## 2052                                     CC.CO2.EMSE.BL
## 2053                                     CC.CO2.EMSE.EL
## 2054                                     CC.CO2.EMSE.EN
## 2055                                     CC.CO2.EMSE.FE
## 2056                                     CC.CO2.EMSE.IL
## 2057                                     CC.CO2.EMSE.IP
## 2058                                     CC.CO2.EMSE.LU
## 2059                                     CC.CO2.EMSE.MC
## 2060                                     CC.CO2.EMSE.TR
## 2061                                    CC.COAL.EMIS.CH
## 2062                                    CC.COAL.EMIS.CO
## 2063                                    CC.COAL.EMPR.CH
## 2064                                    CC.COAL.PROD.OP
## 2065                                    CC.COAL.PROD.PR
## 2066                                        CC.CUF.STUN
## 2067                                         CC.DEN.AFO
## 2068                                         CC.DEN.AGS
## 2069                                         CC.DEN.CRE
## 2070                                         CC.DEN.EAL
## 2071                                         CC.DEN.FGE
## 2072                                         CC.DEN.IPA
## 2073                                         CC.DEN.MLP
## 2074                                         CC.DEN.SAS
## 2075                                         CC.DEN.SFE
## 2076                                         CC.EAR.AFO
## 2077                                         CC.EAR.AGS
## 2078                                         CC.EAR.BCR
## 2079                                         CC.EAR.CRE
## 2080                                         CC.EAR.DOC
## 2081                                         CC.EAR.DON
## 2082                                         CC.EAR.DOS
## 2083                                         CC.EAR.EAL
## 2084                                         CC.EAR.EFE
## 2085                                         CC.EAR.FFR
## 2086                                         CC.EAR.FGE
## 2087                                         CC.EAR.FOR
## 2088                                         CC.EAR.FOS
## 2089                                         CC.EAR.FTR
## 2090                                         CC.EAR.IPA
## 2091                                         CC.EAR.LUC
## 2092                                         CC.EAR.LUL
## 2093                                         CC.EAR.MLP
## 2094                                         CC.EAR.MMA
## 2095                                         CC.EAR.NFC
## 2096                                         CC.EAR.OEU
## 2097                                         CC.EAR.RCA
## 2098                                         CC.EAR.SAS
## 2099                                         CC.EAR.SFE
## 2100                                         CC.EAR.SVF
## 2101                                         CC.ECA.AFO
## 2102                                         CC.ECA.BCR
## 2103                                         CC.ECA.EAL
## 2104                                         CC.ECA.EFE
## 2105                                         CC.ECA.FFR
## 2106                                         CC.ECA.FGE
## 2107                                         CC.ECA.FOS
## 2108                                         CC.ECA.FTR
## 2109                                     CC.ECA.GAEX.CA
## 2110                                     CC.ECA.GAEX.ID
## 2111                                     CC.ECA.GAEX.OP
## 2112                                     CC.ECA.GAEX.SH
## 2113                                     CC.ECA.GAIM.CA
## 2114                                     CC.ECA.GAIM.ID
## 2115                                     CC.ECA.GAIM.OP
## 2116                                     CC.ECA.GAIM.SH
## 2117                                         CC.ECA.IPA
## 2118                                         CC.ECA.LUC
## 2119                                         CC.ECA.LUL
## 2120                                         CC.ECA.MMA
## 2121                                         CC.ECA.OEU
## 2122                                         CC.ECA.RCA
## 2123                                         CC.ECA.SVF
## 2124                                         CC.ECH.AFO
## 2125                                         CC.ECH.BCR
## 2126                                         CC.ECH.EAL
## 2127                                         CC.ECH.EFE
## 2128                                         CC.ECH.FFR
## 2129                                         CC.ECH.FGE
## 2130                                         CC.ECH.FOS
## 2131                                         CC.ECH.FTR
## 2132                                         CC.ECH.IPA
## 2133                                         CC.ECH.LUC
## 2134                                         CC.ECH.LUL
## 2135                                         CC.ECH.MMA
## 2136                                         CC.ECH.OEU
## 2137                                         CC.ECH.RCA
## 2138                                         CC.ECH.SVF
## 2139                                         CC.ECO.AFO
## 2140                                         CC.ECO.DOC
## 2141                                         CC.ECO.EAL
## 2142                                         CC.ECO.FGE
## 2143                                         CC.ECO.FOR
## 2144                                         CC.ECO.FOS
## 2145                                         CC.ECO.LUC
## 2146                                         CC.ECO.LUL
## 2147                                         CC.ECO.NFC
## 2148                                         CC.ECO.OEU
## 2149                                 CC.EG.CONS.COAL.PC
## 2150                                  CC.EG.CONS.GAS.PC
## 2151                                  CC.EG.CONS.OIL.PC
## 2152                                     CC.EG.EMIS.MAN
## 2153                                      CC.EG.INTS.KW
## 2154                                      CC.EG.SOLR.KW
## 2155                                     CC.EG.STL.PROD
## 2156                                      CC.EG.SUBF.PC
## 2157                                      CC.EG.WIND.PC
## 2158                                    CC.EG.WIND.TOTL
## 2159                                        CC.ELEC.CON
## 2160                                        CC.ELEC.GEN
## 2161                                  CC.EN.ATM.COAL.CE
## 2162                                         CC.ENA.AFO
## 2163                                         CC.ENA.AGS
## 2164                                         CC.ENA.BCR
## 2165                                         CC.ENA.CRE
## 2166                                         CC.ENA.DON
## 2167                                         CC.ENA.EAL
## 2168                                         CC.ENA.FFR
## 2169                                         CC.ENA.FGE
## 2170                                         CC.ENA.FTR
## 2171                                         CC.ENA.IPA
## 2172                                         CC.ENA.LUC
## 2173                                         CC.ENA.LUL
## 2174                                         CC.ENA.MLP
## 2175                                         CC.ENA.MMA
## 2176                                         CC.ENA.OEU
## 2177                                         CC.ENA.SAS
## 2178                                         CC.ENA.SFE
## 2179                                         CC.ENA.SVF
## 2180                                         CC.ENO.AFO
## 2181                                         CC.ENO.AGS
## 2182                                         CC.ENO.BCR
## 2183                                         CC.ENO.CRE
## 2184                                         CC.ENO.DON
## 2185                                         CC.ENO.EAL
## 2186                                         CC.ENO.FFR
## 2187                                         CC.ENO.FGE
## 2188                                         CC.ENO.FTR
## 2189                                         CC.ENO.IPA
## 2190                                         CC.ENO.LUC
## 2191                                         CC.ENO.LUL
## 2192                                         CC.ENO.MLP
## 2193                                         CC.ENO.MMA
## 2194                                         CC.ENO.OEU
## 2195                                         CC.ENO.SAS
## 2196                                         CC.ENO.SFE
## 2197                                         CC.ENO.SVF
## 2198                                     CC.ENTX.ENE.ZS
## 2199                                    CC.ENV.GDS.CADV
## 2200                                     CC.ENV.TRAD.EX
## 2201                                     CC.ENV.TRAD.IM
## 2202                                        CC.ESG.AGFE
## 2203                                        CC.ESG.AGMA
## 2204                                        CC.ESG.CMFE
## 2205                                        CC.ESG.CMMA
## 2206                                        CC.ESG.CNFE
## 2207                                        CC.ESG.CNMA
## 2208                                        CC.ESG.EUFE
## 2209                                        CC.ESG.EUMA
## 2210                                        CC.ESG.FBFE
## 2211                                        CC.ESG.FBMA
## 2212                                        CC.ESG.INFE
## 2213                                        CC.ESG.INMA
## 2214                                        CC.ESG.MAFE
## 2215                                        CC.ESG.MAMA
## 2216                                        CC.ESG.MIFE
## 2217                                        CC.ESG.MIMA
## 2218                                        CC.ESG.OSFE
## 2219                                        CC.ESG.OSMA
## 2220                                        CC.ESG.PAFE
## 2221                                        CC.ESG.PAMA
## 2222                                        CC.ESG.PSFE
## 2223                                        CC.ESG.PSMA
## 2224                                        CC.ESG.SEFE
## 2225                                        CC.ESG.SEMA
## 2226                                        CC.ESG.TCFE
## 2227                                        CC.ESG.TCMA
## 2228                                             CC.EST
## 2229                                     CC.FGHG.SYS.CS
## 2230                                     CC.FGHG.SYS.EO
## 2231                                     CC.FGHG.SYS.LU
## 2232                                     CC.FGHG.SYS.PC
## 2233                                     CC.FGHG.SYS.PD
## 2234                                     CC.FGHG.SYS.RE
## 2235                                     CC.FGHG.SYS.TR
## 2236                                     CC.FLD.BELW.ZS
## 2237                                     CC.FLD.TOTL.ZS
## 2238                                    CC.FOOD.ANIM.ZS
## 2239                                    CC.FOOD.VEGT.ZS
## 2240                                    CC.FRVOL.MOD.AI
## 2241                                    CC.FRVOL.MOD.IW
## 2242                                    CC.FRVOL.MOD.RA
## 2243                                    CC.FRVOL.MOD.RO
## 2244                                     CC.GAS.PPBC.CN
## 2245                                     CC.GAS.PPBC.CO
## 2246                                     CC.GAS.PPBC.ID
## 2247                                     CC.GAS.PPBC.MB
## 2248                                     CC.GAS.PPBC.OP
## 2249                                     CC.GAS.PPBC.PR
## 2250                                     CC.GAS.PPBC.SH
## 2251                                     CC.GHG.EMSE.AG
## 2252                                     CC.GHG.EMSE.BF
## 2253                                     CC.GHG.EMSE.BL
## 2254                                     CC.GHG.EMSE.EH
## 2255                                     CC.GHG.EMSE.EL
## 2256                                     CC.GHG.EMSE.EN
## 2257                                     CC.GHG.EMSE.FE
## 2258                                     CC.GHG.EMSE.IL
## 2259                                     CC.GHG.EMSE.IP
## 2260                                     CC.GHG.EMSE.LU
## 2261                                     CC.GHG.EMSE.MC
## 2262                                     CC.GHG.EMSE.OF
## 2263                                     CC.GHG.EMSE.TR
## 2264                                     CC.GHG.EMSE.WA
## 2265                                     CC.GHG.FSYS.CH
## 2266                                     CC.GHG.FSYS.CO
## 2267                                     CC.GHG.FSYS.FG
## 2268                                     CC.GHG.FSYS.NO
## 2269                                        CC.GHG.GRPE
## 2270                                     CC.GHG.MEMG.EI
## 2271                                     CC.GHG.MEMG.GC
## 2272                                     CC.GHG.MEMG.PO
## 2273                                        CC.GHG.PECA
## 2274                                     CC.GHG.SDEG.AG
## 2275                                     CC.GHG.SDEG.BU
## 2276                                     CC.GHG.SDEG.EH
## 2277                                     CC.GHG.SDEG.FE
## 2278                                     CC.GHG.SDEG.LU
## 2279                                     CC.GHG.SDEG.MC
## 2280                                     CC.GHG.SDEG.OF
## 2281                                     CC.GHG.SDEG.TR
## 2282                                     CC.GHG.SDEG.WA
## 2283                                     CC.GNBD.ISS.BD
## 2284                                         CC.IEN.AFO
## 2285                                         CC.IEN.AGS
## 2286                                         CC.IEN.CRE
## 2287                                         CC.IEN.EAL
## 2288                                         CC.IEN.FGE
## 2289                                         CC.IEN.IPA
## 2290                                         CC.IEN.MLP
## 2291                                         CC.IEN.SAS
## 2292                                         CC.IEN.SFE
## 2293                                       CC.INCP.ALRS
## 2294                                       CC.INCP.KRGC
## 2295                                       CC.INCP.SPMC
## 2296                                        CC.ISG.FFFE
## 2297                                        CC.ISG.FFMA
## 2298                                        CC.ISG.NAFE
## 2299                                        CC.ISG.NAMA
## 2300                                        CC.ISG.NBFE
## 2301                                        CC.ISG.NBMA
## 2302                                      CC.KBA.MRN.ZS
## 2303                                     CC.KBA.TERR.ZS
## 2304                                      CC.NCO.GHG.AG
## 2305                                      CC.NCO.GHG.EL
## 2306                                      CC.NCO.GHG.EN
## 2307                                      CC.NCO.GHG.FE
## 2308                                      CC.NCO.GHG.IL
## 2309                                      CC.NCO.GHG.IP
## 2310                                      CC.NCO.GHG.OF
## 2311                                      CC.NCO.GHG.WA
## 2312                                    CC.NEFO.IMCR.BA
## 2313                                    CC.NEFO.IMCR.BP
## 2314                                    CC.NEFO.IMCR.MA
## 2315                                    CC.NEFO.IMCR.RB
## 2316                                    CC.NEFO.IMCR.RE
## 2317                                    CC.NEFO.IMCR.RH
## 2318                                    CC.NEFO.IMCR.RI
## 2319                                    CC.NEFO.IMCR.RM
## 2320                                    CC.NEFO.IMCR.SB
## 2321                                    CC.NEFO.IMCR.WH
## 2322                                          CC.NO.SRC
## 2323                                     CC.OIL.PSBC.CN
## 2324                                     CC.OIL.PSBC.CO
## 2325                                     CC.OIL.PSBC.ID
## 2326                                     CC.OIL.PSBC.OP
## 2327                                     CC.OIL.PSBC.PR
## 2328                                     CC.OIL.PSBC.RT
## 2329                                     CC.OIL.PSBC.SH
## 2330                                     CC.OPCO.AG.CA1
## 2331                                     CC.OPCO.AG.CA2
## 2332                                     CC.OPCO.AG.CA3
## 2333                                     CC.OPCO.AG.CA4
## 2334                                     CC.OPCO.AG.CA5
## 2335                                     CC.OPCO.AG.CA6
## 2336                                    CC.OPCO.PLTY.CC
## 2337                                    CC.OPCO.PLTY.CF
## 2338                                    CC.OPCO.PLTY.IG
## 2339                                    CC.OPCO.PLTY.SC
## 2340                                    CC.OPCO.PLTY.SU
## 2341                                    CC.OPCO.PLTY.UK
## 2342                                    CC.OPCO.PLTY.US
## 2343                                         CC.PER.RNK
## 2344                                   CC.PER.RNK.LOWER
## 2345                                   CC.PER.RNK.UPPER
## 2346                                    CC.PRNX.CAT1.ZS
## 2347                                    CC.PRNX.CAT2.ZS
## 2348                                    CC.PRNX.CAT3.ZS
## 2349                                    CC.PRNX.CAT4.ZS
## 2350                                    CC.PRNX.CAT5.ZS
## 2351                                         CC.PRO.ANI
## 2352                                    CC.PSVOL.MOD.RA
## 2353                                    CC.PSVOL.MOD.RO
## 2354                                        CC.PUN.TOTL
## 2355                                        CC.RIC.PECA
## 2356                                     CC.RISK.AST.ZS
## 2357                                    CC.RISK.WELL.ZS
## 2358                                      CC.SE.CAT2.ZS
## 2359                                      CC.SE.CAT3.ZS
## 2360                                     CC.SE.NYRS.AVG
## 2361                                     CC.SH.AIRP.AIR
## 2362                                     CC.SH.AIRP.AMB
## 2363                                       CC.SP.COV.ZS
## 2364                                       CC.SP.EXP.ZS
## 2365                                         CC.STD.ERR
## 2366                                    CC.TCFD.COMP.CB
## 2367                                    CC.TCFD.COMP.CD
## 2368                                    CC.TCFD.COMP.CM
## 2369                                    CC.TCFD.COMP.CS
## 2370                                    CC.TCFD.COMP.FI
## 2371                                    CC.TCFD.COMP.GO
## 2372                                    CC.TCFD.COMP.HC
## 2373                                    CC.TCFD.COMP.IT
## 2374                                    CC.TCFD.COMP.MT
## 2375                                    CC.TCFD.COMP.OT
## 2376                                    CC.TCFD.COMP.RE
## 2377                                    CC.TCFD.COMP.TR
## 2378                                    CC.TCFD.COMP.UT
## 2379                                    CC.THHZ.RANK.CF
## 2380                                    CC.THHZ.RANK.CY
## 2381                                    CC.THHZ.RANK.EH
## 2382                                    CC.THHZ.RANK.EQ
## 2383                                    CC.THHZ.RANK.LS
## 2384                                    CC.THHZ.RANK.RF
## 2385                                    CC.THHZ.RANK.TS
## 2386                                    CC.THHZ.RANK.UF
## 2387                                    CC.THHZ.RANK.WF
## 2388                                     CC.TNET.CYC.ZS
## 2389                                     CC.TNET.EAR.ZS
## 2390                                     CC.TNET.FLD.ZS
## 2391                                     CC.TNET.NAT.ZS
## 2392                                      CC.TOT.GHG.GR
## 2393                                    CC.TOTL.COCA.CA
## 2394                                    CC.TOTL.COCA.CO
## 2395                                    CC.TOTL.COCA.MB
## 2396                                    CC.TOTL.COCA.OP
## 2397                                    CC.TOTL.COCA.PE
## 2398                                    CC.TOTL.COCA.PP
## 2399                                    CC.TOTL.COCA.RE
## 2400                                    CC.TOTL.COCA.SH
## 2401                                  CM.FIN.INTL.GD.ZS
## 2402                                     CM.MKT.INDX.ZG
## 2403                                     CM.MKT.LCAP.CD
## 2404                                  CM.MKT.LCAP.GD.ZS
## 2405                                     CM.MKT.LDOM.NO
## 2406                                     CM.MKT.TRAD.CD
## 2407                                  CM.MKT.TRAD.GD.ZS
## 2408                                        CM.MKT.TRNR
## 2409                                               CoCA
## 2410                                          CoCA_fexp
## 2411                                     CoCA_headcount
## 2412                                           CoCA_pov
## 2413                                    CoCA_unafford_n
## 2414                                               CoHD
## 2415                                           CoHD_asf
## 2416                                      CoHD_asf_prop
## 2417                                        CoHD_asf_ss
## 2418                                          CoHD_CoCA
## 2419                                             CoHD_f
## 2420                                        CoHD_f_prop
## 2421                                          CoHD_f_ss
## 2422                                          CoHD_fexp
## 2423                                     CoHD_headcount
## 2424                                           CoHD_lns
## 2425                                      CoHD_lns_prop
## 2426                                        CoHD_lns_ss
## 2427                                            CoHD_of
## 2428                                       CoHD_of_prop
## 2429                                         CoHD_of_ss
## 2430                                           CoHD_pov
## 2431                                            CoHD_ss
## 2432                                       CoHD_ss_prop
## 2433                                    CoHD_unafford_n
## 2434                                             CoHD_v
## 2435                                        CoHD_v_prop
## 2436                                          CoHD_v_ss
## 2437                                               CoNA
## 2438                                          CoNA_fexp
## 2439                                     CoNA_headcount
## 2440                                           CoNA_pov
## 2441                                    CoNA_unafford_n
## 2442                                             CORENS
## 2443                                             CORESA
## 2444                                          CPTOTNSXN
## 2445                                       CPTOTSAXMZGY
## 2446                                          CPTOTSAXN
## 2447                                       CPTOTSAXNZGY
## 2448                                                D-1
## 2449                                              D-1.1
## 2450                                              D-1.2
## 2451                                                D-2
## 2452                                              D-2.1
## 2453                                              D-2.2
## 2454                                                D-3
## 2455                                                D1i
## 2456                                               D1ii
## 2457                                              D1iii
## 2458                                                D2i
## 2459                                               D2ii
## 2460                                              D2iii
## 2461                                                D3i
## 2462                                               D3ii
## 2463                                              D3iii
## 2464                                                D4i
## 2465                                               D4ii
## 2466                                              D4iii
## 2467                                                D5i
## 2468                                               D5ii
## 2469                                              D5iii
## 2470                                                D6i
## 2471                                               D6ii
## 2472                                              D6iii
## 2473                                         DAK.AGR.CR
## 2474                                         DAK.EDU.CR
## 2475                                        DAK.ENVR.CR
## 2476                                        DAK.FRST.CR
## 2477                                         DAK.FSH.CR
## 2478                                        DAK.GOVT.CR
## 2479                                     DAK.HE.BSRV.CR
## 2480                                          DAK.HE.CR
## 2481                                     DAK.HE.RSRV.CR
## 2482                                        DAK.INFR.CR
## 2483                                    DAK.INFR.H2O.CR
## 2484                                   DAK.INFR.IRIG.CR
## 2485                                    DAK.INFR.ROD.CR
## 2486                                         DAK.POP.CR
## 2487                                        DAK.TRAD.CR
## 2488                                        DAK.VILG.CR
## 2489                                     DB.DOD.DLXF.CD
## 2490                                     DC.AID.TOTL.CD
## 2491                                     DC.DAC.AUSL.CD
## 2492                                     DC.DAC.AUTL.CD
## 2493                                     DC.DAC.BELL.CD
## 2494                                     DC.DAC.CANL.CD
## 2495                                     DC.DAC.CECL.CD
## 2496                                     DC.DAC.CHEL.CD
## 2497                                     DC.DAC.CZEL.CD
## 2498                                     DC.DAC.DEUL.CD
## 2499                                     DC.DAC.DNKL.CD
## 2500                                     DC.DAC.ESPL.CD
## 2501                                     DC.DAC.FINL.CD
## 2502                                     DC.DAC.FRAL.CD
## 2503                                     DC.DAC.GBRL.CD
## 2504                                     DC.DAC.GRCL.CD
## 2505                                     DC.DAC.HUNL.CD
## 2506                                     DC.DAC.IRLL.CD
## 2507                                     DC.DAC.ISLL.CD
## 2508                                     DC.DAC.ITAL.CD
## 2509                                     DC.DAC.JPNL.CD
## 2510                                     DC.DAC.KORL.CD
## 2511                                     DC.DAC.LUXL.CD
## 2512                                     DC.DAC.NLDL.CD
## 2513                                     DC.DAC.NORL.CD
## 2514                                     DC.DAC.NZLL.CD
## 2515                                     DC.DAC.POLL.CD
## 2516                                     DC.DAC.PRTL.CD
## 2517                                     DC.DAC.SVKL.CD
## 2518                                     DC.DAC.SVNL.CD
## 2519                                     DC.DAC.SWEL.CD
## 2520                                     DC.DAC.TOTL.CD
## 2521                                     DC.DAC.USAL.CD
## 2522                                     DC.ODA.COMM.CD
## 2523                                  DC.ODA.COMM.SA.CD
## 2524                                     DC.ODA.SOCL.CD
## 2525                                     DC.ODA.SOCL.ZS
## 2526                                     DC.ODA.TLDC.CD
## 2527                                  DC.ODA.TLDC.GN.ZS
## 2528                                     DC.ODA.TOTL.CD
## 2529                                  DC.ODA.TOTL.GN.ZS
## 2530                                     DC.ODA.TOTL.KD
## 2531                                     DC.ODA.UNTD.CD
## 2532                                     DC.ODA.UNTD.ZS
## 2533                                     DE.DOD.DLXF.CD
## 2534                                     DG.DOD.MWBG.CD
## 2535                                     DG.DOD.OFFL.CD
## 2536                                     DG.DOD.PRVT.CD
## 2537                                     DG.DOD.TOTL.CD
## 2538                                     DI.DOD.TOTL.CD
## 2539                                     DL.AMT.TOTL.CD
## 2540                                     DL.DIS.TOTL.CD
## 2541                                     DL.DOD.CBNK.CD
## 2542                                     DL.DOD.CGOV.CD
## 2543                                     DL.DOD.LTRM.CD
## 2544                                     DL.DOD.NFPE.CD
## 2545                                     DL.DOD.PRSC.CD
## 2546                                     DL.DOD.ROGG.CD
## 2547                                     DL.INT.TOTL.CD
## 2548                                     DL.NFL.TOTL.CD
## 2549                                     DM.DOD.DLTF.CD
## 2550                                      DMGSRMRCHNSCD
## 2551                                      DMGSRMRCHNSKD
## 2552                                      DMGSRMRCHNSXD
## 2553                                      DMGSRMRCHSACD
## 2554                                      DMGSRMRCHSAKD
## 2555                                      DMGSRMRCHSAXD
## 2556                                     DN.DOD.TOTL.CD
## 2557                                  DP.DOD.DECD.CR.BC
## 2558                               DP.DOD.DECD.CR.BC.CD
## 2559                               DP.DOD.DECD.CR.BC.Z1
## 2560                                  DP.DOD.DECD.CR.CG
## 2561                               DP.DOD.DECD.CR.CG.CD
## 2562                               DP.DOD.DECD.CR.CG.Z1
## 2563                                  DP.DOD.DECD.CR.FC
## 2564                               DP.DOD.DECD.CR.FC.CD
## 2565                               DP.DOD.DECD.CR.FC.Z1
## 2566                                  DP.DOD.DECD.CR.GG
## 2567                               DP.DOD.DECD.CR.GG.CD
## 2568                               DP.DOD.DECD.CR.GG.Z1
## 2569                                  DP.DOD.DECD.CR.NF
## 2570                               DP.DOD.DECD.CR.NF.CD
## 2571                               DP.DOD.DECD.CR.NF.Z1
## 2572                                  DP.DOD.DECD.CR.PS
## 2573                               DP.DOD.DECD.CR.PS.CD
## 2574                                  DP.DOD.DECF.CR.BC
## 2575                               DP.DOD.DECF.CR.BC.CD
## 2576                               DP.DOD.DECF.CR.BC.Z1
## 2577                                  DP.DOD.DECF.CR.CG
## 2578                               DP.DOD.DECF.CR.CG.CD
## 2579                               DP.DOD.DECF.CR.CG.Z1
## 2580                                  DP.DOD.DECF.CR.FC
## 2581                               DP.DOD.DECF.CR.FC.CD
## 2582                               DP.DOD.DECF.CR.FC.Z1
## 2583                                  DP.DOD.DECF.CR.GG
## 2584                               DP.DOD.DECF.CR.GG.CD
## 2585                               DP.DOD.DECF.CR.GG.Z1
## 2586                                  DP.DOD.DECF.CR.NF
## 2587                               DP.DOD.DECF.CR.NF.CD
## 2588                               DP.DOD.DECF.CR.NF.Z1
## 2589                                  DP.DOD.DECF.CR.PS
## 2590                               DP.DOD.DECF.CR.PS.CD
## 2591                                  DP.DOD.DECN.CR.BC
## 2592                               DP.DOD.DECN.CR.BC.CD
## 2593                               DP.DOD.DECN.CR.BC.Z1
## 2594                                  DP.DOD.DECN.CR.CG
## 2595                               DP.DOD.DECN.CR.CG.CD
## 2596                               DP.DOD.DECN.CR.CG.Z1
## 2597                                  DP.DOD.DECN.CR.FC
## 2598                               DP.DOD.DECN.CR.FC.CD
## 2599                               DP.DOD.DECN.CR.FC.Z1
## 2600                                  DP.DOD.DECN.CR.GG
## 2601                               DP.DOD.DECN.CR.GG.CD
## 2602                               DP.DOD.DECN.CR.GG.Z1
## 2603                                  DP.DOD.DECN.CR.NF
## 2604                               DP.DOD.DECN.CR.NF.CD
## 2605                               DP.DOD.DECN.CR.NF.Z1
## 2606                                  DP.DOD.DECN.CR.PS
## 2607                               DP.DOD.DECN.CR.PS.CD
## 2608                                  DP.DOD.DECT.CR.BC
## 2609                               DP.DOD.DECT.CR.BC.CD
## 2610                               DP.DOD.DECT.CR.BC.Z1
## 2611                                  DP.DOD.DECT.CR.CG
## 2612                               DP.DOD.DECT.CR.CG.CD
## 2613                               DP.DOD.DECT.CR.CG.Z1
## 2614                                  DP.DOD.DECT.CR.FC
## 2615                               DP.DOD.DECT.CR.FC.CD
## 2616                               DP.DOD.DECT.CR.FC.Z1
## 2617                                  DP.DOD.DECT.CR.GG
## 2618                               DP.DOD.DECT.CR.GG.CD
## 2619                               DP.DOD.DECT.CR.GG.Z1
## 2620                                  DP.DOD.DECT.CR.NF
## 2621                               DP.DOD.DECT.CR.NF.CD
## 2622                               DP.DOD.DECT.CR.NF.Z1
## 2623                                  DP.DOD.DECT.CR.PS
## 2624                               DP.DOD.DECT.CR.PS.CD
## 2625                                  DP.DOD.DECX.CR.BC
## 2626                               DP.DOD.DECX.CR.BC.CD
## 2627                               DP.DOD.DECX.CR.BC.Z1
## 2628                                  DP.DOD.DECX.CR.CG
## 2629                               DP.DOD.DECX.CR.CG.CD
## 2630                               DP.DOD.DECX.CR.CG.Z1
## 2631                                  DP.DOD.DECX.CR.FC
## 2632                               DP.DOD.DECX.CR.FC.CD
## 2633                               DP.DOD.DECX.CR.FC.Z1
## 2634                                  DP.DOD.DECX.CR.GG
## 2635                               DP.DOD.DECX.CR.GG.CD
## 2636                               DP.DOD.DECX.CR.GG.Z1
## 2637                                  DP.DOD.DECX.CR.NF
## 2638                               DP.DOD.DECX.CR.NF.CD
## 2639                               DP.DOD.DECX.CR.NF.Z1
## 2640                                  DP.DOD.DECX.CR.PS
## 2641                               DP.DOD.DECX.CR.PS.CD
## 2642                                  DP.DOD.DLCD.CR.BC
## 2643                               DP.DOD.DLCD.CR.BC.CD
## 2644                               DP.DOD.DLCD.CR.BC.Z1
## 2645                                  DP.DOD.DLCD.CR.CG
## 2646                               DP.DOD.DLCD.CR.CG.CD
## 2647                               DP.DOD.DLCD.CR.CG.Z1
## 2648                                  DP.DOD.DLCD.CR.FC
## 2649                               DP.DOD.DLCD.CR.FC.CD
## 2650                               DP.DOD.DLCD.CR.FC.Z1
## 2651                                  DP.DOD.DLCD.CR.GG
## 2652                               DP.DOD.DLCD.CR.GG.CD
## 2653                               DP.DOD.DLCD.CR.GG.Z1
## 2654                               DP.DOD.DLCD.CR.L1.BC
## 2655                            DP.DOD.DLCD.CR.L1.BC.CD
## 2656                            DP.DOD.DLCD.CR.L1.BC.Z1
## 2657                               DP.DOD.DLCD.CR.L1.CG
## 2658                            DP.DOD.DLCD.CR.L1.CG.CD
## 2659                            DP.DOD.DLCD.CR.L1.CG.Z1
## 2660                               DP.DOD.DLCD.CR.L1.FC
## 2661                            DP.DOD.DLCD.CR.L1.FC.CD
## 2662                            DP.DOD.DLCD.CR.L1.FC.Z1
## 2663                               DP.DOD.DLCD.CR.L1.GG
## 2664                            DP.DOD.DLCD.CR.L1.GG.CD
## 2665                            DP.DOD.DLCD.CR.L1.GG.Z1
## 2666                               DP.DOD.DLCD.CR.L1.NF
## 2667                            DP.DOD.DLCD.CR.L1.NF.CD
## 2668                            DP.DOD.DLCD.CR.L1.NF.Z1
## 2669                               DP.DOD.DLCD.CR.L1.PS
## 2670                            DP.DOD.DLCD.CR.L1.PS.CD
## 2671                               DP.DOD.DLCD.CR.M1.BC
## 2672                            DP.DOD.DLCD.CR.M1.BC.CD
## 2673                            DP.DOD.DLCD.CR.M1.BC.Z1
## 2674                               DP.DOD.DLCD.CR.M1.CG
## 2675                            DP.DOD.DLCD.CR.M1.CG.CD
## 2676                            DP.DOD.DLCD.CR.M1.CG.Z1
## 2677                               DP.DOD.DLCD.CR.M1.FC
## 2678                            DP.DOD.DLCD.CR.M1.FC.CD
## 2679                            DP.DOD.DLCD.CR.M1.FC.Z1
## 2680                               DP.DOD.DLCD.CR.M1.GG
## 2681                            DP.DOD.DLCD.CR.M1.GG.CD
## 2682                            DP.DOD.DLCD.CR.M1.GG.Z1
## 2683                               DP.DOD.DLCD.CR.M1.NF
## 2684                            DP.DOD.DLCD.CR.M1.NF.CD
## 2685                            DP.DOD.DLCD.CR.M1.NF.Z1
## 2686                               DP.DOD.DLCD.CR.M1.PS
## 2687                            DP.DOD.DLCD.CR.M1.PS.CD
## 2688                                  DP.DOD.DLCD.CR.NF
## 2689                               DP.DOD.DLCD.CR.NF.CD
## 2690                               DP.DOD.DLCD.CR.NF.Z1
## 2691                                  DP.DOD.DLCD.CR.PS
## 2692                               DP.DOD.DLCD.CR.PS.CD
## 2693                               DP.DOD.DLD1.CR.CG.CD
## 2694                               DP.DOD.DLD1.CR.CG.Z1
## 2695                               DP.DOD.DLD1.CR.GG.CD
## 2696                               DP.DOD.DLD1.CR.GG.Z1
## 2697                               DP.DOD.DLD2.CR.CG.CD
## 2698                               DP.DOD.DLD2.CR.CG.Z1
## 2699                               DP.DOD.DLD2.CR.GG.CD
## 2700                               DP.DOD.DLD2.CR.GG.Z1
## 2701                              DP.DOD.DLD2A.CR.CG.CD
## 2702                              DP.DOD.DLD2A.CR.CG.Z1
## 2703                              DP.DOD.DLD2A.CR.GG.CD
## 2704                              DP.DOD.DLD2A.CR.GG.Z1
## 2705                               DP.DOD.DLD3.CR.CG.CD
## 2706                               DP.DOD.DLD3.CR.CG.Z1
## 2707                               DP.DOD.DLD3.CR.GG.CD
## 2708                               DP.DOD.DLD3.CR.GG.Z1
## 2709                               DP.DOD.DLD4.CR.CG.CD
## 2710                               DP.DOD.DLD4.CR.CG.Z1
## 2711                               DP.DOD.DLD4.CR.GG.CD
## 2712                               DP.DOD.DLD4.CR.GG.Z1
## 2713                                  DP.DOD.DLDS.CR.BC
## 2714                               DP.DOD.DLDS.CR.BC.CD
## 2715                               DP.DOD.DLDS.CR.BC.Z1
## 2716                                  DP.DOD.DLDS.CR.CG
## 2717                               DP.DOD.DLDS.CR.CG.CD
## 2718                               DP.DOD.DLDS.CR.CG.Z1
## 2719                                  DP.DOD.DLDS.CR.FC
## 2720                               DP.DOD.DLDS.CR.FC.CD
## 2721                               DP.DOD.DLDS.CR.FC.Z1
## 2722                                  DP.DOD.DLDS.CR.GG
## 2723                               DP.DOD.DLDS.CR.GG.CD
## 2724                               DP.DOD.DLDS.CR.GG.Z1
## 2725                               DP.DOD.DLDS.CR.L1.BC
## 2726                            DP.DOD.DLDS.CR.L1.BC.CD
## 2727                            DP.DOD.DLDS.CR.L1.BC.Z1
## 2728                               DP.DOD.DLDS.CR.L1.CG
## 2729                            DP.DOD.DLDS.CR.L1.CG.CD
## 2730                            DP.DOD.DLDS.CR.L1.CG.Z1
## 2731                               DP.DOD.DLDS.CR.L1.FC
## 2732                            DP.DOD.DLDS.CR.L1.FC.CD
## 2733                            DP.DOD.DLDS.CR.L1.FC.Z1
## 2734                               DP.DOD.DLDS.CR.L1.GG
## 2735                            DP.DOD.DLDS.CR.L1.GG.CD
## 2736                            DP.DOD.DLDS.CR.L1.GG.Z1
## 2737                               DP.DOD.DLDS.CR.L1.NF
## 2738                            DP.DOD.DLDS.CR.L1.NF.CD
## 2739                            DP.DOD.DLDS.CR.L1.NF.Z1
## 2740                               DP.DOD.DLDS.CR.L1.PS
## 2741                            DP.DOD.DLDS.CR.L1.PS.CD
## 2742                               DP.DOD.DLDS.CR.M1.BC
## 2743                            DP.DOD.DLDS.CR.M1.BC.CD
## 2744                            DP.DOD.DLDS.CR.M1.BC.Z1
## 2745                               DP.DOD.DLDS.CR.M1.CG
## 2746                            DP.DOD.DLDS.CR.M1.CG.CD
## 2747                            DP.DOD.DLDS.CR.M1.CG.Z1
## 2748                               DP.DOD.DLDS.CR.M1.FC
## 2749                            DP.DOD.DLDS.CR.M1.FC.CD
## 2750                            DP.DOD.DLDS.CR.M1.FC.Z1
## 2751                               DP.DOD.DLDS.CR.M1.GG
## 2752                            DP.DOD.DLDS.CR.M1.GG.CD
## 2753                            DP.DOD.DLDS.CR.M1.GG.Z1
## 2754                               DP.DOD.DLDS.CR.M1.NF
## 2755                            DP.DOD.DLDS.CR.M1.NF.CD
## 2756                            DP.DOD.DLDS.CR.M1.NF.Z1
## 2757                               DP.DOD.DLDS.CR.M1.PS
## 2758                            DP.DOD.DLDS.CR.M1.PS.CD
## 2759                               DP.DOD.DLDS.CR.MV.BC
## 2760                            DP.DOD.DLDS.CR.MV.BC.CD
## 2761                            DP.DOD.DLDS.CR.MV.BC.Z1
## 2762                               DP.DOD.DLDS.CR.MV.CG
## 2763                            DP.DOD.DLDS.CR.MV.CG.CD
## 2764                            DP.DOD.DLDS.CR.MV.CG.Z1
## 2765                               DP.DOD.DLDS.CR.MV.FC
## 2766                            DP.DOD.DLDS.CR.MV.FC.CD
## 2767                            DP.DOD.DLDS.CR.MV.FC.Z1
## 2768                               DP.DOD.DLDS.CR.MV.GG
## 2769                            DP.DOD.DLDS.CR.MV.GG.CD
## 2770                            DP.DOD.DLDS.CR.MV.GG.Z1
## 2771                               DP.DOD.DLDS.CR.MV.NF
## 2772                            DP.DOD.DLDS.CR.MV.NF.CD
## 2773                            DP.DOD.DLDS.CR.MV.NF.Z1
## 2774                               DP.DOD.DLDS.CR.MV.PS
## 2775                            DP.DOD.DLDS.CR.MV.PS.CD
## 2776                                  DP.DOD.DLDS.CR.NF
## 2777                               DP.DOD.DLDS.CR.NF.CD
## 2778                               DP.DOD.DLDS.CR.NF.Z1
## 2779                                  DP.DOD.DLDS.CR.PS
## 2780                               DP.DOD.DLDS.CR.PS.CD
## 2781                                  DP.DOD.DLIN.CR.BC
## 2782                               DP.DOD.DLIN.CR.BC.CD
## 2783                               DP.DOD.DLIN.CR.BC.Z1
## 2784                                  DP.DOD.DLIN.CR.CG
## 2785                               DP.DOD.DLIN.CR.CG.CD
## 2786                               DP.DOD.DLIN.CR.CG.Z1
## 2787                                  DP.DOD.DLIN.CR.FC
## 2788                               DP.DOD.DLIN.CR.FC.CD
## 2789                               DP.DOD.DLIN.CR.FC.Z1
## 2790                                  DP.DOD.DLIN.CR.GG
## 2791                               DP.DOD.DLIN.CR.GG.CD
## 2792                               DP.DOD.DLIN.CR.GG.Z1
## 2793                               DP.DOD.DLIN.CR.L1.BC
## 2794                            DP.DOD.DLIN.CR.L1.BC.CD
## 2795                            DP.DOD.DLIN.CR.L1.BC.Z1
## 2796                               DP.DOD.DLIN.CR.L1.CG
## 2797                            DP.DOD.DLIN.CR.L1.CG.CD
## 2798                            DP.DOD.DLIN.CR.L1.CG.Z1
## 2799                               DP.DOD.DLIN.CR.L1.FC
## 2800                            DP.DOD.DLIN.CR.L1.FC.CD
## 2801                            DP.DOD.DLIN.CR.L1.FC.Z1
## 2802                               DP.DOD.DLIN.CR.L1.GG
## 2803                            DP.DOD.DLIN.CR.L1.GG.CD
## 2804                            DP.DOD.DLIN.CR.L1.GG.Z1
## 2805                               DP.DOD.DLIN.CR.L1.NF
## 2806                            DP.DOD.DLIN.CR.L1.NF.CD
## 2807                            DP.DOD.DLIN.CR.L1.NF.Z1
## 2808                               DP.DOD.DLIN.CR.L1.PS
## 2809                            DP.DOD.DLIN.CR.L1.PS.CD
## 2810                               DP.DOD.DLIN.CR.M1.BC
## 2811                            DP.DOD.DLIN.CR.M1.BC.CD
## 2812                            DP.DOD.DLIN.CR.M1.BC.Z1
## 2813                               DP.DOD.DLIN.CR.M1.CG
## 2814                            DP.DOD.DLIN.CR.M1.CG.CD
## 2815                            DP.DOD.DLIN.CR.M1.CG.Z1
## 2816                               DP.DOD.DLIN.CR.M1.FC
## 2817                            DP.DOD.DLIN.CR.M1.FC.CD
## 2818                            DP.DOD.DLIN.CR.M1.FC.Z1
## 2819                               DP.DOD.DLIN.CR.M1.GG
## 2820                            DP.DOD.DLIN.CR.M1.GG.CD
## 2821                            DP.DOD.DLIN.CR.M1.GG.Z1
## 2822                               DP.DOD.DLIN.CR.M1.NF
## 2823                            DP.DOD.DLIN.CR.M1.NF.CD
## 2824                            DP.DOD.DLIN.CR.M1.NF.Z1
## 2825                               DP.DOD.DLIN.CR.M1.PS
## 2826                            DP.DOD.DLIN.CR.M1.PS.CD
## 2827                                  DP.DOD.DLIN.CR.NF
## 2828                               DP.DOD.DLIN.CR.NF.CD
## 2829                               DP.DOD.DLIN.CR.NF.Z1
## 2830                                  DP.DOD.DLIN.CR.PS
## 2831                               DP.DOD.DLIN.CR.PS.CD
## 2832                                  DP.DOD.DLLO.CR.BC
## 2833                               DP.DOD.DLLO.CR.BC.CD
## 2834                               DP.DOD.DLLO.CR.BC.Z1
## 2835                                  DP.DOD.DLLO.CR.CG
## 2836                               DP.DOD.DLLO.CR.CG.CD
## 2837                               DP.DOD.DLLO.CR.CG.Z1
## 2838                                  DP.DOD.DLLO.CR.FC
## 2839                               DP.DOD.DLLO.CR.FC.CD
## 2840                               DP.DOD.DLLO.CR.FC.Z1
## 2841                                  DP.DOD.DLLO.CR.GG
## 2842                               DP.DOD.DLLO.CR.GG.CD
## 2843                               DP.DOD.DLLO.CR.GG.Z1
## 2844                               DP.DOD.DLLO.CR.L1.BC
## 2845                            DP.DOD.DLLO.CR.L1.BC.CD
## 2846                            DP.DOD.DLLO.CR.L1.BC.Z1
## 2847                               DP.DOD.DLLO.CR.L1.CG
## 2848                            DP.DOD.DLLO.CR.L1.CG.CD
## 2849                            DP.DOD.DLLO.CR.L1.CG.Z1
## 2850                               DP.DOD.DLLO.CR.L1.FC
## 2851                            DP.DOD.DLLO.CR.L1.FC.CD
## 2852                            DP.DOD.DLLO.CR.L1.FC.Z1
## 2853                               DP.DOD.DLLO.CR.L1.GG
## 2854                            DP.DOD.DLLO.CR.L1.GG.CD
## 2855                            DP.DOD.DLLO.CR.L1.GG.Z1
## 2856                               DP.DOD.DLLO.CR.L1.NF
## 2857                            DP.DOD.DLLO.CR.L1.NF.CD
## 2858                            DP.DOD.DLLO.CR.L1.NF.Z1
## 2859                               DP.DOD.DLLO.CR.L1.PS
## 2860                            DP.DOD.DLLO.CR.L1.PS.CD
## 2861                               DP.DOD.DLLO.CR.M1.BC
## 2862                            DP.DOD.DLLO.CR.M1.BC.CD
## 2863                            DP.DOD.DLLO.CR.M1.BC.Z1
## 2864                               DP.DOD.DLLO.CR.M1.CG
## 2865                            DP.DOD.DLLO.CR.M1.CG.CD
## 2866                            DP.DOD.DLLO.CR.M1.CG.Z1
## 2867                               DP.DOD.DLLO.CR.M1.FC
## 2868                            DP.DOD.DLLO.CR.M1.FC.CD
## 2869                            DP.DOD.DLLO.CR.M1.FC.Z1
## 2870                               DP.DOD.DLLO.CR.M1.GG
## 2871                            DP.DOD.DLLO.CR.M1.GG.CD
## 2872                            DP.DOD.DLLO.CR.M1.GG.Z1
## 2873                               DP.DOD.DLLO.CR.M1.NF
## 2874                            DP.DOD.DLLO.CR.M1.NF.CD
## 2875                            DP.DOD.DLLO.CR.M1.NF.Z1
## 2876                               DP.DOD.DLLO.CR.M1.PS
## 2877                            DP.DOD.DLLO.CR.M1.PS.CD
## 2878                                  DP.DOD.DLLO.CR.NF
## 2879                               DP.DOD.DLLO.CR.NF.CD
## 2880                               DP.DOD.DLLO.CR.NF.Z1
## 2881                                  DP.DOD.DLLO.CR.PS
## 2882                               DP.DOD.DLLO.CR.PS.CD
## 2883                                  DP.DOD.DLOA.CR.BC
## 2884                               DP.DOD.DLOA.CR.BC.CD
## 2885                               DP.DOD.DLOA.CR.BC.Z1
## 2886                                  DP.DOD.DLOA.CR.CG
## 2887                               DP.DOD.DLOA.CR.CG.CD
## 2888                               DP.DOD.DLOA.CR.CG.Z1
## 2889                                  DP.DOD.DLOA.CR.FC
## 2890                               DP.DOD.DLOA.CR.FC.CD
## 2891                               DP.DOD.DLOA.CR.FC.Z1
## 2892                                  DP.DOD.DLOA.CR.GG
## 2893                               DP.DOD.DLOA.CR.GG.CD
## 2894                               DP.DOD.DLOA.CR.GG.Z1
## 2895                               DP.DOD.DLOA.CR.L1.BC
## 2896                            DP.DOD.DLOA.CR.L1.BC.CD
## 2897                            DP.DOD.DLOA.CR.L1.BC.Z1
## 2898                               DP.DOD.DLOA.CR.L1.CG
## 2899                            DP.DOD.DLOA.CR.L1.CG.CD
## 2900                            DP.DOD.DLOA.CR.L1.CG.Z1
## 2901                               DP.DOD.DLOA.CR.L1.FC
## 2902                            DP.DOD.DLOA.CR.L1.FC.CD
## 2903                            DP.DOD.DLOA.CR.L1.FC.Z1
## 2904                               DP.DOD.DLOA.CR.L1.GG
## 2905                            DP.DOD.DLOA.CR.L1.GG.CD
## 2906                            DP.DOD.DLOA.CR.L1.GG.Z1
## 2907                               DP.DOD.DLOA.CR.L1.NF
## 2908                            DP.DOD.DLOA.CR.L1.NF.CD
## 2909                            DP.DOD.DLOA.CR.L1.NF.Z1
## 2910                               DP.DOD.DLOA.CR.L1.PS
## 2911                            DP.DOD.DLOA.CR.L1.PS.CD
## 2912                               DP.DOD.DLOA.CR.M1.BC
## 2913                            DP.DOD.DLOA.CR.M1.BC.CD
## 2914                            DP.DOD.DLOA.CR.M1.BC.Z1
## 2915                               DP.DOD.DLOA.CR.M1.CG
## 2916                            DP.DOD.DLOA.CR.M1.CG.CD
## 2917                            DP.DOD.DLOA.CR.M1.CG.Z1
## 2918                               DP.DOD.DLOA.CR.M1.FC
## 2919                            DP.DOD.DLOA.CR.M1.FC.CD
## 2920                            DP.DOD.DLOA.CR.M1.FC.Z1
## 2921                               DP.DOD.DLOA.CR.M1.GG
## 2922                            DP.DOD.DLOA.CR.M1.GG.CD
## 2923                            DP.DOD.DLOA.CR.M1.GG.Z1
## 2924                               DP.DOD.DLOA.CR.M1.NF
## 2925                            DP.DOD.DLOA.CR.M1.NF.CD
## 2926                            DP.DOD.DLOA.CR.M1.NF.Z1
## 2927                               DP.DOD.DLOA.CR.M1.PS
## 2928                            DP.DOD.DLOA.CR.M1.PS.CD
## 2929                                  DP.DOD.DLOA.CR.NF
## 2930                               DP.DOD.DLOA.CR.NF.CD
## 2931                               DP.DOD.DLOA.CR.NF.Z1
## 2932                                  DP.DOD.DLOA.CR.PS
## 2933                               DP.DOD.DLOA.CR.PS.CD
## 2934                                  DP.DOD.DLSD.CR.BC
## 2935                               DP.DOD.DLSD.CR.BC.CD
## 2936                               DP.DOD.DLSD.CR.BC.Z1
## 2937                                  DP.DOD.DLSD.CR.CG
## 2938                               DP.DOD.DLSD.CR.CG.CD
## 2939                               DP.DOD.DLSD.CR.CG.Z1
## 2940                                  DP.DOD.DLSD.CR.FC
## 2941                               DP.DOD.DLSD.CR.FC.CD
## 2942                               DP.DOD.DLSD.CR.FC.Z1
## 2943                                  DP.DOD.DLSD.CR.GG
## 2944                               DP.DOD.DLSD.CR.GG.CD
## 2945                               DP.DOD.DLSD.CR.GG.Z1
## 2946                               DP.DOD.DLSD.CR.M1.BC
## 2947                            DP.DOD.DLSD.CR.M1.BC.CD
## 2948                            DP.DOD.DLSD.CR.M1.BC.Z1
## 2949                               DP.DOD.DLSD.CR.M1.CG
## 2950                            DP.DOD.DLSD.CR.M1.CG.CD
## 2951                            DP.DOD.DLSD.CR.M1.CG.Z1
## 2952                               DP.DOD.DLSD.CR.M1.FC
## 2953                            DP.DOD.DLSD.CR.M1.FC.CD
## 2954                            DP.DOD.DLSD.CR.M1.FC.Z1
## 2955                               DP.DOD.DLSD.CR.M1.GG
## 2956                            DP.DOD.DLSD.CR.M1.GG.CD
## 2957                            DP.DOD.DLSD.CR.M1.GG.Z1
## 2958                               DP.DOD.DLSD.CR.M1.NF
## 2959                            DP.DOD.DLSD.CR.M1.NF.CD
## 2960                            DP.DOD.DLSD.CR.M1.NF.Z1
## 2961                               DP.DOD.DLSD.CR.M1.PS
## 2962                            DP.DOD.DLSD.CR.M1.PS.CD
## 2963                                  DP.DOD.DLSD.CR.NF
## 2964                               DP.DOD.DLSD.CR.NF.CD
## 2965                               DP.DOD.DLSD.CR.NF.Z1
## 2966                                  DP.DOD.DLSD.CR.PS
## 2967                               DP.DOD.DLSD.CR.PS.CD
## 2968                                  DP.DOD.DLTC.CR.BC
## 2969                               DP.DOD.DLTC.CR.BC.CD
## 2970                               DP.DOD.DLTC.CR.BC.Z1
## 2971                                  DP.DOD.DLTC.CR.CG
## 2972                               DP.DOD.DLTC.CR.CG.CD
## 2973                               DP.DOD.DLTC.CR.CG.Z1
## 2974                                  DP.DOD.DLTC.CR.FC
## 2975                               DP.DOD.DLTC.CR.FC.CD
## 2976                               DP.DOD.DLTC.CR.FC.Z1
## 2977                                  DP.DOD.DLTC.CR.GG
## 2978                               DP.DOD.DLTC.CR.GG.CD
## 2979                               DP.DOD.DLTC.CR.GG.Z1
## 2980                               DP.DOD.DLTC.CR.L1.BC
## 2981                            DP.DOD.DLTC.CR.L1.BC.CD
## 2982                            DP.DOD.DLTC.CR.L1.BC.Z1
## 2983                               DP.DOD.DLTC.CR.L1.CG
## 2984                            DP.DOD.DLTC.CR.L1.CG.CD
## 2985                            DP.DOD.DLTC.CR.L1.CG.Z1
## 2986                               DP.DOD.DLTC.CR.L1.FC
## 2987                            DP.DOD.DLTC.CR.L1.FC.CD
## 2988                            DP.DOD.DLTC.CR.L1.FC.Z1
## 2989                               DP.DOD.DLTC.CR.L1.GG
## 2990                            DP.DOD.DLTC.CR.L1.GG.CD
## 2991                            DP.DOD.DLTC.CR.L1.GG.Z1
## 2992                               DP.DOD.DLTC.CR.L1.NF
## 2993                            DP.DOD.DLTC.CR.L1.NF.CD
## 2994                            DP.DOD.DLTC.CR.L1.NF.Z1
## 2995                               DP.DOD.DLTC.CR.L1.PS
## 2996                            DP.DOD.DLTC.CR.L1.PS.CD
## 2997                               DP.DOD.DLTC.CR.M1.BC
## 2998                            DP.DOD.DLTC.CR.M1.BC.CD
## 2999                            DP.DOD.DLTC.CR.M1.BC.Z1
## 3000                               DP.DOD.DLTC.CR.M1.CG
## 3001                            DP.DOD.DLTC.CR.M1.CG.CD
## 3002                            DP.DOD.DLTC.CR.M1.CG.Z1
## 3003                               DP.DOD.DLTC.CR.M1.FC
## 3004                            DP.DOD.DLTC.CR.M1.FC.CD
## 3005                            DP.DOD.DLTC.CR.M1.FC.Z1
## 3006                               DP.DOD.DLTC.CR.M1.GG
## 3007                            DP.DOD.DLTC.CR.M1.GG.CD
## 3008                            DP.DOD.DLTC.CR.M1.GG.Z1
## 3009                               DP.DOD.DLTC.CR.M1.NF
## 3010                            DP.DOD.DLTC.CR.M1.NF.CD
## 3011                            DP.DOD.DLTC.CR.M1.NF.Z1
## 3012                               DP.DOD.DLTC.CR.M1.PS
## 3013                            DP.DOD.DLTC.CR.M1.PS.CD
## 3014                                  DP.DOD.DLTC.CR.NF
## 3015                               DP.DOD.DLTC.CR.NF.CD
## 3016                               DP.DOD.DLTC.CR.NF.Z1
## 3017                                  DP.DOD.DLTC.CR.PS
## 3018                               DP.DOD.DLTC.CR.PS.CD
## 3019                                     DP.DOD.DLXF.CD
## 3020                                  DP.DOD.DSCD.CR.BC
## 3021                               DP.DOD.DSCD.CR.BC.CD
## 3022                               DP.DOD.DSCD.CR.BC.Z1
## 3023                                  DP.DOD.DSCD.CR.CG
## 3024                               DP.DOD.DSCD.CR.CG.CD
## 3025                               DP.DOD.DSCD.CR.CG.Z1
## 3026                                  DP.DOD.DSCD.CR.FC
## 3027                               DP.DOD.DSCD.CR.FC.CD
## 3028                               DP.DOD.DSCD.CR.FC.Z1
## 3029                                  DP.DOD.DSCD.CR.GG
## 3030                               DP.DOD.DSCD.CR.GG.CD
## 3031                               DP.DOD.DSCD.CR.GG.Z1
## 3032                                  DP.DOD.DSCD.CR.NF
## 3033                               DP.DOD.DSCD.CR.NF.CD
## 3034                               DP.DOD.DSCD.CR.NF.Z1
## 3035                                  DP.DOD.DSCD.CR.PS
## 3036                               DP.DOD.DSCD.CR.PS.CD
## 3037                                  DP.DOD.DSDS.CR.BC
## 3038                               DP.DOD.DSDS.CR.BC.CD
## 3039                               DP.DOD.DSDS.CR.BC.Z1
## 3040                                  DP.DOD.DSDS.CR.CG
## 3041                               DP.DOD.DSDS.CR.CG.CD
## 3042                               DP.DOD.DSDS.CR.CG.Z1
## 3043                                  DP.DOD.DSDS.CR.FC
## 3044                               DP.DOD.DSDS.CR.FC.CD
## 3045                               DP.DOD.DSDS.CR.FC.Z1
## 3046                                  DP.DOD.DSDS.CR.GG
## 3047                               DP.DOD.DSDS.CR.GG.CD
## 3048                               DP.DOD.DSDS.CR.GG.Z1
## 3049                                  DP.DOD.DSDS.CR.NF
## 3050                               DP.DOD.DSDS.CR.NF.CD
## 3051                               DP.DOD.DSDS.CR.NF.Z1
## 3052                                  DP.DOD.DSDS.CR.PS
## 3053                               DP.DOD.DSDS.CR.PS.CD
## 3054                                  DP.DOD.DSIN.CR.BC
## 3055                               DP.DOD.DSIN.CR.BC.CD
## 3056                               DP.DOD.DSIN.CR.BC.Z1
## 3057                                  DP.DOD.DSIN.CR.CG
## 3058                               DP.DOD.DSIN.CR.CG.CD
## 3059                               DP.DOD.DSIN.CR.CG.Z1
## 3060                                  DP.DOD.DSIN.CR.FC
## 3061                               DP.DOD.DSIN.CR.FC.CD
## 3062                               DP.DOD.DSIN.CR.FC.Z1
## 3063                                  DP.DOD.DSIN.CR.GG
## 3064                               DP.DOD.DSIN.CR.GG.CD
## 3065                               DP.DOD.DSIN.CR.GG.Z1
## 3066                                  DP.DOD.DSIN.CR.NF
## 3067                               DP.DOD.DSIN.CR.NF.CD
## 3068                               DP.DOD.DSIN.CR.NF.Z1
## 3069                                  DP.DOD.DSIN.CR.PS
## 3070                               DP.DOD.DSIN.CR.PS.CD
## 3071                                  DP.DOD.DSLO.CR.BC
## 3072                               DP.DOD.DSLO.CR.BC.CD
## 3073                               DP.DOD.DSLO.CR.BC.Z1
## 3074                                  DP.DOD.DSLO.CR.CG
## 3075                               DP.DOD.DSLO.CR.CG.CD
## 3076                               DP.DOD.DSLO.CR.CG.Z1
## 3077                                  DP.DOD.DSLO.CR.FC
## 3078                               DP.DOD.DSLO.CR.FC.CD
## 3079                               DP.DOD.DSLO.CR.FC.Z1
## 3080                                  DP.DOD.DSLO.CR.GG
## 3081                               DP.DOD.DSLO.CR.GG.CD
## 3082                               DP.DOD.DSLO.CR.GG.Z1
## 3083                                  DP.DOD.DSLO.CR.NF
## 3084                               DP.DOD.DSLO.CR.NF.CD
## 3085                               DP.DOD.DSLO.CR.NF.Z1
## 3086                                  DP.DOD.DSLO.CR.PS
## 3087                               DP.DOD.DSLO.CR.PS.CD
## 3088                                  DP.DOD.DSOA.CR.BC
## 3089                               DP.DOD.DSOA.CR.BC.CD
## 3090                               DP.DOD.DSOA.CR.BC.Z1
## 3091                                  DP.DOD.DSOA.CR.CG
## 3092                               DP.DOD.DSOA.CR.CG.CD
## 3093                               DP.DOD.DSOA.CR.CG.Z1
## 3094                                  DP.DOD.DSOA.CR.FC
## 3095                               DP.DOD.DSOA.CR.FC.CD
## 3096                               DP.DOD.DSOA.CR.FC.Z1
## 3097                                  DP.DOD.DSOA.CR.GG
## 3098                               DP.DOD.DSOA.CR.GG.CD
## 3099                               DP.DOD.DSOA.CR.GG.Z1
## 3100                                  DP.DOD.DSOA.CR.NF
## 3101                               DP.DOD.DSOA.CR.NF.CD
## 3102                               DP.DOD.DSOA.CR.NF.Z1
## 3103                                  DP.DOD.DSOA.CR.PS
## 3104                               DP.DOD.DSOA.CR.PS.CD
## 3105                                  DP.DOD.DSTC.CR.BC
## 3106                               DP.DOD.DSTC.CR.BC.CD
## 3107                               DP.DOD.DSTC.CR.BC.Z1
## 3108                                  DP.DOD.DSTC.CR.CG
## 3109                               DP.DOD.DSTC.CR.CG.CD
## 3110                               DP.DOD.DSTC.CR.CG.Z1
## 3111                                  DP.DOD.DSTC.CR.FC
## 3112                               DP.DOD.DSTC.CR.FC.CD
## 3113                               DP.DOD.DSTC.CR.FC.Z1
## 3114                                  DP.DOD.DSTC.CR.GG
## 3115                               DP.DOD.DSTC.CR.GG.CD
## 3116                               DP.DOD.DSTC.CR.GG.Z1
## 3117                                  DP.DOD.DSTC.CR.NF
## 3118                               DP.DOD.DSTC.CR.NF.CD
## 3119                               DP.DOD.DSTC.CR.NF.Z1
## 3120                                  DP.DOD.DSTC.CR.PS
## 3121                               DP.DOD.DSTC.CR.PS.CD
## 3122                                          DPANUSLCU
## 3123                                          DPANUSSPB
## 3124                                          DPANUSSPF
## 3125                                     DS.DOD.DLXF.CD
## 3126                                     DS.DOD.STRM.CD
## 3127                                     DS.DOD.TOTL.CD
## 3128                                          DSTKMKTXD
## 3129                                          DSTKMKTXN
## 3130                                     DT.AMD.DLXF.CD
## 3131                                  DT.AMT.BLAT.CB.CD
## 3132                                     DT.AMT.BLAT.CD
## 3133                                  DT.AMT.BLAT.GG.CD
## 3134                                 DT.AMT.BLAT.OPS.CD
## 3135                                DT.AMT.BLAT.PRVG.CD
## 3136                                  DT.AMT.BLAT.PS.CD
## 3137                                  DT.AMT.BLTC.CB.CD
## 3138                                     DT.AMT.BLTC.CD
## 3139                                  DT.AMT.BLTC.GG.CD
## 3140                                 DT.AMT.BLTC.OPS.CD
## 3141                                DT.AMT.BLTC.PRVG.CD
## 3142                                  DT.AMT.BLTC.PS.CD
## 3143                            DT.AMT.DEAE.CD.IL.03.US
## 3144                          DT.AMT.DEAE.CD.IL.0912.US
## 3145                          DT.AMT.DEAE.CD.IL.1218.US
## 3146                          DT.AMT.DEAE.CD.IL.1824.US
## 3147                           DT.AMT.DEAE.CD.IL.24P.US
## 3148                            DT.AMT.DEAE.CD.IL.36.US
## 3149                            DT.AMT.DEAE.CD.IL.69.US
## 3150                            DT.AMT.DEAE.CD.IL.IQ.US
## 3151                                     DT.AMT.DECB.CD
## 3152                                     DT.AMT.DECT.CD
## 3153                         DT.AMT.DECT.CD.00.03.MO.US
## 3154                               DT.AMT.DECT.CD.03.US
## 3155                            DT.AMT.DECT.CD.03.YR.US
## 3156                         DT.AMT.DECT.CD.04.06.MO.US
## 3157                            DT.AMT.DECT.CD.04.YR.US
## 3158                         DT.AMT.DECT.CD.05.10.YR.US
## 3159                            DT.AMT.DECT.CD.05.YR.US
## 3160                         DT.AMT.DECT.CD.07.09.MO.US
## 3161                             DT.AMT.DECT.CD.0912.US
## 3162                         DT.AMT.DECT.CD.10.12.MO.US
## 3163                         DT.AMT.DECT.CD.10.15.YR.US
## 3164                             DT.AMT.DECT.CD.1218.US
## 3165                         DT.AMT.DECT.CD.13.18.MO.US
## 3166                         DT.AMT.DECT.CD.15.UP.YR.US
## 3167                             DT.AMT.DECT.CD.1824.US
## 3168                         DT.AMT.DECT.CD.19.24.MO.US
## 3169                              DT.AMT.DECT.CD.24P.US
## 3170                               DT.AMT.DECT.CD.36.US
## 3171                               DT.AMT.DECT.CD.69.US
## 3172                            DT.AMT.DECT.CD.AR.03.US
## 3173                          DT.AMT.DECT.CD.AR.0912.US
## 3174                          DT.AMT.DECT.CD.AR.1218.US
## 3175                          DT.AMT.DECT.CD.AR.1824.US
## 3176                           DT.AMT.DECT.CD.AR.24P.US
## 3177                            DT.AMT.DECT.CD.AR.36.US
## 3178                            DT.AMT.DECT.CD.AR.69.US
## 3179                            DT.AMT.DECT.CD.AR.IQ.US
## 3180                            DT.AMT.DECT.CD.CB.03.US
## 3181                          DT.AMT.DECT.CD.CB.0912.US
## 3182                          DT.AMT.DECT.CD.CB.1218.US
## 3183                          DT.AMT.DECT.CD.CB.1824.US
## 3184                           DT.AMT.DECT.CD.CB.24P.US
## 3185                            DT.AMT.DECT.CD.CB.36.US
## 3186                            DT.AMT.DECT.CD.CB.69.US
## 3187                            DT.AMT.DECT.CD.CB.IQ.US
## 3188                            DT.AMT.DECT.CD.CB.RM.US
## 3189                            DT.AMT.DECT.CD.GG.03.US
## 3190                          DT.AMT.DECT.CD.GG.0912.US
## 3191                          DT.AMT.DECT.CD.GG.1218.US
## 3192                          DT.AMT.DECT.CD.GG.1824.US
## 3193                           DT.AMT.DECT.CD.GG.24P.US
## 3194                            DT.AMT.DECT.CD.GG.36.US
## 3195                            DT.AMT.DECT.CD.GG.69.US
## 3196                            DT.AMT.DECT.CD.GG.IQ.US
## 3197                            DT.AMT.DECT.CD.GG.RM.US
## 3198                            DT.AMT.DECT.CD.IL.03.US
## 3199                          DT.AMT.DECT.CD.IL.0912.US
## 3200                          DT.AMT.DECT.CD.IL.1218.US
## 3201                          DT.AMT.DECT.CD.IL.1824.US
## 3202                           DT.AMT.DECT.CD.IL.24P.US
## 3203                            DT.AMT.DECT.CD.IL.36.US
## 3204                            DT.AMT.DECT.CD.IL.69.US
## 3205                            DT.AMT.DECT.CD.IL.IQ.US
## 3206                            DT.AMT.DECT.CD.IL.RM.US
## 3207                            DT.AMT.DECT.CD.IQ.00.US
## 3208                               DT.AMT.DECT.CD.IQ.US
## 3209                            DT.AMT.DECT.CD.MA.03.US
## 3210                          DT.AMT.DECT.CD.MA.0912.US
## 3211                          DT.AMT.DECT.CD.MA.1218.US
## 3212                          DT.AMT.DECT.CD.MA.1824.US
## 3213                           DT.AMT.DECT.CD.MA.24P.US
## 3214                            DT.AMT.DECT.CD.MA.36.US
## 3215                            DT.AMT.DECT.CD.MA.69.US
## 3216                            DT.AMT.DECT.CD.MA.IQ.US
## 3217                            DT.AMT.DECT.CD.MA.RM.US
## 3218                            DT.AMT.DECT.CD.OS.03.US
## 3219                          DT.AMT.DECT.CD.OS.0912.US
## 3220                          DT.AMT.DECT.CD.OS.1218.US
## 3221                          DT.AMT.DECT.CD.OS.1824.US
## 3222                           DT.AMT.DECT.CD.OS.24P.US
## 3223                            DT.AMT.DECT.CD.OS.36.US
## 3224                            DT.AMT.DECT.CD.OS.69.US
## 3225                            DT.AMT.DECT.CD.OS.IQ.US
## 3226                            DT.AMT.DECT.CD.OS.RM.US
## 3227                               DT.AMT.DECT.CD.RM.US
## 3228                            DT.AMT.DEFE.CD.IL.03.US
## 3229                          DT.AMT.DEFE.CD.IL.0912.US
## 3230                          DT.AMT.DEFE.CD.IL.1218.US
## 3231                          DT.AMT.DEFE.CD.IL.1824.US
## 3232                           DT.AMT.DEFE.CD.IL.24P.US
## 3233                            DT.AMT.DEFE.CD.IL.36.US
## 3234                            DT.AMT.DEFE.CD.IL.69.US
## 3235                            DT.AMT.DEFE.CD.IL.IQ.US
## 3236                                     DT.AMT.DEGG.CD
## 3237                                     DT.AMT.DEPS.CD
## 3238                            DT.AMT.DILD.CD.IL.03.US
## 3239                          DT.AMT.DILD.CD.IL.0912.US
## 3240                          DT.AMT.DILD.CD.IL.1218.US
## 3241                          DT.AMT.DILD.CD.IL.1824.US
## 3242                           DT.AMT.DILD.CD.IL.24P.US
## 3243                            DT.AMT.DILD.CD.IL.36.US
## 3244                            DT.AMT.DILD.CD.IL.69.US
## 3245                            DT.AMT.DILD.CD.IL.IQ.US
## 3246                                     DT.AMT.DIMF.CD
## 3247                         DT.AMT.DLBN.CD.CB.AR.03.US
## 3248                       DT.AMT.DLBN.CD.CB.AR.0912.US
## 3249                       DT.AMT.DLBN.CD.CB.AR.1218.US
## 3250                       DT.AMT.DLBN.CD.CB.AR.1824.US
## 3251                        DT.AMT.DLBN.CD.CB.AR.24P.US
## 3252                         DT.AMT.DLBN.CD.CB.AR.36.US
## 3253                         DT.AMT.DLBN.CD.CB.AR.69.US
## 3254                         DT.AMT.DLBN.CD.CB.AR.IQ.US
## 3255                         DT.AMT.DLBN.CD.GG.AR.03.US
## 3256                       DT.AMT.DLBN.CD.GG.AR.0912.US
## 3257                       DT.AMT.DLBN.CD.GG.AR.1218.US
## 3258                       DT.AMT.DLBN.CD.GG.AR.1824.US
## 3259                        DT.AMT.DLBN.CD.GG.AR.24P.US
## 3260                         DT.AMT.DLBN.CD.GG.AR.36.US
## 3261                         DT.AMT.DLBN.CD.GG.AR.69.US
## 3262                         DT.AMT.DLBN.CD.GG.AR.IQ.US
## 3263                         DT.AMT.DLBN.CD.MA.AR.03.US
## 3264                       DT.AMT.DLBN.CD.MA.AR.0912.US
## 3265                       DT.AMT.DLBN.CD.MA.AR.1218.US
## 3266                       DT.AMT.DLBN.CD.MA.AR.1824.US
## 3267                        DT.AMT.DLBN.CD.MA.AR.24P.US
## 3268                         DT.AMT.DLBN.CD.MA.AR.36.US
## 3269                         DT.AMT.DLBN.CD.MA.AR.69.US
## 3270                         DT.AMT.DLBN.CD.MA.AR.IQ.US
## 3271                         DT.AMT.DLBN.CD.OT.AR.03.US
## 3272                       DT.AMT.DLBN.CD.OT.AR.0912.US
## 3273                       DT.AMT.DLBN.CD.OT.AR.1218.US
## 3274                       DT.AMT.DLBN.CD.OT.AR.1824.US
## 3275                        DT.AMT.DLBN.CD.OT.AR.24P.US
## 3276                         DT.AMT.DLBN.CD.OT.AR.36.US
## 3277                         DT.AMT.DLBN.CD.OT.AR.69.US
## 3278                         DT.AMT.DLBN.CD.OT.AR.IQ.US
## 3279                         DT.AMT.DLCD.CD.CB.AR.03.US
## 3280                       DT.AMT.DLCD.CD.CB.AR.0912.US
## 3281                       DT.AMT.DLCD.CD.CB.AR.1218.US
## 3282                       DT.AMT.DLCD.CD.CB.AR.1824.US
## 3283                        DT.AMT.DLCD.CD.CB.AR.24P.US
## 3284                         DT.AMT.DLCD.CD.CB.AR.36.US
## 3285                         DT.AMT.DLCD.CD.CB.AR.69.US
## 3286                         DT.AMT.DLCD.CD.CB.AR.IQ.US
## 3287                         DT.AMT.DLCD.CD.GG.AR.03.US
## 3288                       DT.AMT.DLCD.CD.GG.AR.0912.US
## 3289                       DT.AMT.DLCD.CD.GG.AR.1218.US
## 3290                       DT.AMT.DLCD.CD.GG.AR.1824.US
## 3291                        DT.AMT.DLCD.CD.GG.AR.24P.US
## 3292                         DT.AMT.DLCD.CD.GG.AR.36.US
## 3293                         DT.AMT.DLCD.CD.GG.AR.69.US
## 3294                         DT.AMT.DLCD.CD.GG.AR.IQ.US
## 3295                         DT.AMT.DLCD.CD.MA.AR.03.US
## 3296                       DT.AMT.DLCD.CD.MA.AR.0912.US
## 3297                       DT.AMT.DLCD.CD.MA.AR.1218.US
## 3298                       DT.AMT.DLCD.CD.MA.AR.1824.US
## 3299                        DT.AMT.DLCD.CD.MA.AR.24P.US
## 3300                         DT.AMT.DLCD.CD.MA.AR.36.US
## 3301                         DT.AMT.DLCD.CD.MA.AR.69.US
## 3302                         DT.AMT.DLCD.CD.MA.AR.IQ.US
## 3303                         DT.AMT.DLCD.CD.OT.AR.03.US
## 3304                       DT.AMT.DLCD.CD.OT.AR.0912.US
## 3305                       DT.AMT.DLCD.CD.OT.AR.1218.US
## 3306                       DT.AMT.DLCD.CD.OT.AR.1824.US
## 3307                        DT.AMT.DLCD.CD.OT.AR.24P.US
## 3308                         DT.AMT.DLCD.CD.OT.AR.36.US
## 3309                         DT.AMT.DLCD.CD.OT.AR.69.US
## 3310                         DT.AMT.DLCD.CD.OT.AR.IQ.US
## 3311                                     DT.AMT.DLTF.CD
## 3312                         DT.AMT.DLTL.CD.CB.AR.03.US
## 3313                       DT.AMT.DLTL.CD.CB.AR.0912.US
## 3314                       DT.AMT.DLTL.CD.CB.AR.1218.US
## 3315                       DT.AMT.DLTL.CD.CB.AR.1824.US
## 3316                        DT.AMT.DLTL.CD.CB.AR.24P.US
## 3317                         DT.AMT.DLTL.CD.CB.AR.36.US
## 3318                         DT.AMT.DLTL.CD.CB.AR.69.US
## 3319                         DT.AMT.DLTL.CD.CB.AR.IQ.US
## 3320                         DT.AMT.DLTL.CD.GG.AR.03.US
## 3321                       DT.AMT.DLTL.CD.GG.AR.0912.US
## 3322                       DT.AMT.DLTL.CD.GG.AR.1218.US
## 3323                       DT.AMT.DLTL.CD.GG.AR.1824.US
## 3324                        DT.AMT.DLTL.CD.GG.AR.24P.US
## 3325                         DT.AMT.DLTL.CD.GG.AR.36.US
## 3326                         DT.AMT.DLTL.CD.GG.AR.69.US
## 3327                         DT.AMT.DLTL.CD.GG.AR.IQ.US
## 3328                         DT.AMT.DLTL.CD.MA.AR.03.US
## 3329                       DT.AMT.DLTL.CD.MA.AR.0912.US
## 3330                       DT.AMT.DLTL.CD.MA.AR.1218.US
## 3331                       DT.AMT.DLTL.CD.MA.AR.1824.US
## 3332                        DT.AMT.DLTL.CD.MA.AR.24P.US
## 3333                         DT.AMT.DLTL.CD.MA.AR.36.US
## 3334                         DT.AMT.DLTL.CD.MA.AR.69.US
## 3335                         DT.AMT.DLTL.CD.MA.AR.IQ.US
## 3336                         DT.AMT.DLTL.CD.OT.AR.03.US
## 3337                       DT.AMT.DLTL.CD.OT.AR.0912.US
## 3338                       DT.AMT.DLTL.CD.OT.AR.1218.US
## 3339                       DT.AMT.DLTL.CD.OT.AR.1824.US
## 3340                        DT.AMT.DLTL.CD.OT.AR.24P.US
## 3341                         DT.AMT.DLTL.CD.OT.AR.36.US
## 3342                         DT.AMT.DLTL.CD.OT.AR.69.US
## 3343                         DT.AMT.DLTL.CD.OT.AR.IQ.US
## 3344                         DT.AMT.DLTO.CD.CB.AR.03.US
## 3345                       DT.AMT.DLTO.CD.CB.AR.0912.US
## 3346                       DT.AMT.DLTO.CD.CB.AR.1218.US
## 3347                       DT.AMT.DLTO.CD.CB.AR.1824.US
## 3348                        DT.AMT.DLTO.CD.CB.AR.24P.US
## 3349                         DT.AMT.DLTO.CD.CB.AR.36.US
## 3350                         DT.AMT.DLTO.CD.CB.AR.69.US
## 3351                         DT.AMT.DLTO.CD.CB.AR.IQ.US
## 3352                         DT.AMT.DLTO.CD.GG.AR.03.US
## 3353                       DT.AMT.DLTO.CD.GG.AR.0912.US
## 3354                       DT.AMT.DLTO.CD.GG.AR.1218.US
## 3355                       DT.AMT.DLTO.CD.GG.AR.1824.US
## 3356                        DT.AMT.DLTO.CD.GG.AR.24P.US
## 3357                         DT.AMT.DLTO.CD.GG.AR.36.US
## 3358                         DT.AMT.DLTO.CD.GG.AR.69.US
## 3359                         DT.AMT.DLTO.CD.GG.AR.IQ.US
## 3360                         DT.AMT.DLTO.CD.MA.AR.03.US
## 3361                       DT.AMT.DLTO.CD.MA.AR.0912.US
## 3362                       DT.AMT.DLTO.CD.MA.AR.1218.US
## 3363                       DT.AMT.DLTO.CD.MA.AR.1824.US
## 3364                        DT.AMT.DLTO.CD.MA.AR.24P.US
## 3365                         DT.AMT.DLTO.CD.MA.AR.36.US
## 3366                         DT.AMT.DLTO.CD.MA.AR.69.US
## 3367                         DT.AMT.DLTO.CD.MA.AR.IQ.US
## 3368                         DT.AMT.DLTO.CD.OT.AR.03.US
## 3369                       DT.AMT.DLTO.CD.OT.AR.0912.US
## 3370                       DT.AMT.DLTO.CD.OT.AR.1218.US
## 3371                       DT.AMT.DLTO.CD.OT.AR.1824.US
## 3372                        DT.AMT.DLTO.CD.OT.AR.24P.US
## 3373                         DT.AMT.DLTO.CD.OT.AR.36.US
## 3374                         DT.AMT.DLTO.CD.OT.AR.69.US
## 3375                         DT.AMT.DLTO.CD.OT.AR.IQ.US
## 3376                            DT.AMT.DLTS.CD.GG.03.US
## 3377                          DT.AMT.DLTS.CD.GG.0912.US
## 3378                          DT.AMT.DLTS.CD.GG.1218.US
## 3379                          DT.AMT.DLTS.CD.GG.1824.US
## 3380                           DT.AMT.DLTS.CD.GG.24P.US
## 3381                            DT.AMT.DLTS.CD.GG.36.US
## 3382                            DT.AMT.DLTS.CD.GG.69.US
## 3383                            DT.AMT.DLTS.CD.GG.IQ.US
## 3384                         DT.AMT.DLTS.CD.MA.AR.03.US
## 3385                       DT.AMT.DLTS.CD.MA.AR.0912.US
## 3386                       DT.AMT.DLTS.CD.MA.AR.1218.US
## 3387                       DT.AMT.DLTS.CD.MA.AR.1824.US
## 3388                        DT.AMT.DLTS.CD.MA.AR.24P.US
## 3389                         DT.AMT.DLTS.CD.MA.AR.36.US
## 3390                         DT.AMT.DLTS.CD.MA.AR.69.US
## 3391                         DT.AMT.DLTS.CD.MA.AR.IQ.US
## 3392                         DT.AMT.DLTT.CD.CB.AR.03.US
## 3393                       DT.AMT.DLTT.CD.CB.AR.0912.US
## 3394                       DT.AMT.DLTT.CD.CB.AR.1218.US
## 3395                       DT.AMT.DLTT.CD.CB.AR.1824.US
## 3396                        DT.AMT.DLTT.CD.CB.AR.24P.US
## 3397                         DT.AMT.DLTT.CD.CB.AR.36.US
## 3398                         DT.AMT.DLTT.CD.CB.AR.69.US
## 3399                         DT.AMT.DLTT.CD.CB.AR.IQ.US
## 3400                         DT.AMT.DLTT.CD.GG.AR.03.US
## 3401                       DT.AMT.DLTT.CD.GG.AR.0912.US
## 3402                       DT.AMT.DLTT.CD.GG.AR.1218.US
## 3403                       DT.AMT.DLTT.CD.GG.AR.1824.US
## 3404                        DT.AMT.DLTT.CD.GG.AR.24P.US
## 3405                         DT.AMT.DLTT.CD.GG.AR.36.US
## 3406                         DT.AMT.DLTT.CD.GG.AR.69.US
## 3407                         DT.AMT.DLTT.CD.GG.AR.IQ.US
## 3408                         DT.AMT.DLTT.CD.MA.AR.03.US
## 3409                       DT.AMT.DLTT.CD.MA.AR.0912.US
## 3410                       DT.AMT.DLTT.CD.MA.AR.1218.US
## 3411                       DT.AMT.DLTT.CD.MA.AR.1824.US
## 3412                        DT.AMT.DLTT.CD.MA.AR.24P.US
## 3413                         DT.AMT.DLTT.CD.MA.AR.36.US
## 3414                         DT.AMT.DLTT.CD.MA.AR.69.US
## 3415                         DT.AMT.DLTT.CD.MA.AR.IQ.US
## 3416                         DT.AMT.DLTT.CD.OT.AR.03.US
## 3417                       DT.AMT.DLTT.CD.OT.AR.0912.US
## 3418                       DT.AMT.DLTT.CD.OT.AR.1218.US
## 3419                       DT.AMT.DLTT.CD.OT.AR.1824.US
## 3420                        DT.AMT.DLTT.CD.OT.AR.24P.US
## 3421                         DT.AMT.DLTT.CD.OT.AR.36.US
## 3422                         DT.AMT.DLTT.CD.OT.AR.69.US
## 3423                         DT.AMT.DLTT.CD.OT.AR.IQ.US
## 3424                                     DT.AMT.DLXF.CD
## 3425                                     DT.AMT.DOPS.CD
## 3426                                     DT.AMT.DPNG.CD
## 3427                                     DT.AMT.DPPG.CD
## 3428                                     DT.AMT.MIBR.CD
## 3429                                     DT.AMT.MIDA.CD
## 3430                                  DT.AMT.MLAT.CB.CD
## 3431                                     DT.AMT.MLAT.CD
## 3432                                  DT.AMT.MLAT.GG.CD
## 3433                                 DT.AMT.MLAT.OPS.CD
## 3434                                DT.AMT.MLAT.PRVG.CD
## 3435                                  DT.AMT.MLAT.PS.CD
## 3436                                  DT.AMT.MLTC.CB.CD
## 3437                                     DT.AMT.MLTC.CD
## 3438                                  DT.AMT.MLTC.GG.CD
## 3439                                 DT.AMT.MLTC.OPS.CD
## 3440                                DT.AMT.MLTC.PRVG.CD
## 3441                                  DT.AMT.MLTC.PS.CD
## 3442                                  DT.AMT.OFFT.CB.CD
## 3443                                     DT.AMT.OFFT.CD
## 3444                                  DT.AMT.OFFT.GG.CD
## 3445                                 DT.AMT.OFFT.OPS.CD
## 3446                                DT.AMT.OFFT.PRVG.CD
## 3447                                  DT.AMT.OFFT.PS.CD
## 3448                                  DT.AMT.PBND.CB.CD
## 3449                                     DT.AMT.PBND.CD
## 3450                                  DT.AMT.PBND.GG.CD
## 3451                                 DT.AMT.PBND.OPS.CD
## 3452                                DT.AMT.PBND.PRVG.CD
## 3453                                  DT.AMT.PBND.PS.CD
## 3454                                  DT.AMT.PCBK.CB.CD
## 3455                                     DT.AMT.PCBK.CD
## 3456                                  DT.AMT.PCBK.GG.CD
## 3457                                 DT.AMT.PCBK.OPS.CD
## 3458                                DT.AMT.PCBK.PRVG.CD
## 3459                                  DT.AMT.PCBK.PS.CD
## 3460                                     DT.AMT.PGNG.CD
## 3461                                     DT.AMT.PNGB.CD
## 3462                                     DT.AMT.PNGC.CD
## 3463                                  DT.AMT.PROP.CB.CD
## 3464                                     DT.AMT.PROP.CD
## 3465                                  DT.AMT.PROP.GG.CD
## 3466                                 DT.AMT.PROP.OPS.CD
## 3467                                DT.AMT.PROP.PRVG.CD
## 3468                                  DT.AMT.PROP.PS.CD
## 3469                                     DT.AMT.PRPG.CD
## 3470                         DT.AMT.PRVS.CD.00.03.MO.US
## 3471                            DT.AMT.PRVS.CD.03.YR.US
## 3472                         DT.AMT.PRVS.CD.04.06.MO.US
## 3473                            DT.AMT.PRVS.CD.04.YR.US
## 3474                         DT.AMT.PRVS.CD.05.10.YR.US
## 3475                            DT.AMT.PRVS.CD.05.YR.US
## 3476                         DT.AMT.PRVS.CD.07.09.MO.US
## 3477                         DT.AMT.PRVS.CD.10.12.MO.US
## 3478                         DT.AMT.PRVS.CD.10.15.YR.US
## 3479                         DT.AMT.PRVS.CD.13.18.MO.US
## 3480                         DT.AMT.PRVS.CD.15.UP.YR.US
## 3481                         DT.AMT.PRVS.CD.19.24.MO.US
## 3482                            DT.AMT.PRVS.CD.IQ.00.US
## 3483                                  DT.AMT.PRVT.CB.CD
## 3484                                     DT.AMT.PRVT.CD
## 3485                                  DT.AMT.PRVT.GG.CD
## 3486                                 DT.AMT.PRVT.OPS.CD
## 3487                                DT.AMT.PRVT.PRVG.CD
## 3488                                  DT.AMT.PRVT.PS.CD
## 3489                         DT.AMT.PUBS.CD.00.03.MO.US
## 3490                            DT.AMT.PUBS.CD.03.YR.US
## 3491                         DT.AMT.PUBS.CD.04.06.MO.US
## 3492                            DT.AMT.PUBS.CD.04.YR.US
## 3493                         DT.AMT.PUBS.CD.05.10.YR.US
## 3494                            DT.AMT.PUBS.CD.05.YR.US
## 3495                         DT.AMT.PUBS.CD.07.09.MO.US
## 3496                         DT.AMT.PUBS.CD.10.12.MO.US
## 3497                         DT.AMT.PUBS.CD.10.15.YR.US
## 3498                         DT.AMT.PUBS.CD.13.18.MO.US
## 3499                         DT.AMT.PUBS.CD.15.UP.YR.US
## 3500                         DT.AMT.PUBS.CD.19.24.MO.US
## 3501                            DT.AMT.PUBS.CD.IQ.00.US
## 3502                               DT.AXA.DECT.CD.CB.US
## 3503                               DT.AXA.DECT.CD.GG.US
## 3504                               DT.AXA.DECT.CD.MA.US
## 3505                            DT.AXA.DECT.CD.OT.HH.US
## 3506                            DT.AXA.DECT.CD.OT.NB.US
## 3507                            DT.AXA.DECT.CD.OT.NF.US
## 3508                               DT.AXA.DECT.CD.OT.US
## 3509                               DT.AXA.DIDI.CD.IL.US
## 3510                               DT.AXA.DIFE.CD.IL.US
## 3511                               DT.AXA.DIIE.CD.IL.US
## 3512                                     DT.AXA.DLXF.CD
## 3513                                     DT.AXA.DPPG.CD
## 3514                                     DT.AXA.OFFT.CD
## 3515                                     DT.AXA.PRVT.CD
## 3516                                     DT.AXF.DPPG.CD
## 3517                                     DT.AXR.DPPG.CD
## 3518                                     DT.AXR.OFFT.CD
## 3519                                     DT.AXR.PRVT.CD
## 3520                                     DT.COM.BLAT.CD
## 3521                                     DT.COM.DPPG.CD
## 3522                                     DT.COM.MIBR.CD
## 3523                                     DT.COM.MIDA.CD
## 3524                                     DT.COM.MLAT.CD
## 3525                                     DT.COM.OFFT.CD
## 3526                                     DT.COM.PRVT.CD
## 3527                                     DT.CUR.CCVL.CD
## 3528                                     DT.CUR.DMAK.ZS
## 3529                                     DT.CUR.EURO.ZS
## 3530                                     DT.CUR.FFRC.ZS
## 3531                                     DT.CUR.JYEN.ZS
## 3532                                     DT.CUR.MULC.ZS
## 3533                                     DT.CUR.OTHC.ZS
## 3534                                     DT.CUR.SDRW.ZS
## 3535                                     DT.CUR.SWFR.ZS
## 3536                                     DT.CUR.UKPS.ZS
## 3537                                     DT.CUR.USDL.ZS
## 3538                                     DT.DFR.DPPG.CD
## 3539                                  DT.DIS.BLAT.CB.CD
## 3540                                     DT.DIS.BLAT.CD
## 3541                                  DT.DIS.BLAT.GG.CD
## 3542                                 DT.DIS.BLAT.OPS.CD
## 3543                                DT.DIS.BLAT.PRVG.CD
## 3544                                  DT.DIS.BLAT.PS.CD
## 3545                                     DT.DIS.BLCT.CD
## 3546                                  DT.DIS.BLTC.CB.CD
## 3547                                     DT.DIS.BLTC.CD
## 3548                                  DT.DIS.BLTC.GG.CD
## 3549                                 DT.DIS.BLTC.OPS.CD
## 3550                                DT.DIS.BLTC.PRVG.CD
## 3551                                  DT.DIS.BLTC.PS.CD
## 3552                                     DT.DIS.DECB.CD
## 3553                                     DT.DIS.DECT.CD
## 3554                                     DT.DIS.DEGG.CD
## 3555                                     DT.DIS.DEPS.CD
## 3556                                     DT.DIS.DIMF.CD
## 3557                                     DT.DIS.DLTF.CD
## 3558                                     DT.DIS.DLXF.CD
## 3559                                     DT.DIS.DOPS.CD
## 3560                                     DT.DIS.DPNG.CD
## 3561                                     DT.DIS.DPPG.CD
## 3562                                     DT.DIS.DSTC.CD
## 3563                                     DT.DIS.IDAG.CD
## 3564                                     DT.DIS.MIBR.CD
## 3565                                     DT.DIS.MIDA.CD
## 3566                                  DT.DIS.MLAT.CB.CD
## 3567                                     DT.DIS.MLAT.CD
## 3568                                  DT.DIS.MLAT.GG.CD
## 3569                                 DT.DIS.MLAT.OPS.CD
## 3570                                DT.DIS.MLAT.PRVG.CD
## 3571                                  DT.DIS.MLAT.PS.CD
## 3572                                     DT.DIS.MLCT.CD
## 3573                                  DT.DIS.MLTC.CB.CD
## 3574                                     DT.DIS.MLTC.CD
## 3575                                  DT.DIS.MLTC.GG.CD
## 3576                                 DT.DIS.MLTC.OPS.CD
## 3577                                DT.DIS.MLTC.PRVG.CD
## 3578                                  DT.DIS.MLTC.PS.CD
## 3579                                  DT.DIS.OFFT.CB.CD
## 3580                                     DT.DIS.OFFT.CD
## 3581                                  DT.DIS.OFFT.GG.CD
## 3582                                 DT.DIS.OFFT.OPS.CD
## 3583                                DT.DIS.OFFT.PRVG.CD
## 3584                                  DT.DIS.OFFT.PS.CD
## 3585                                  DT.DIS.PBND.CB.CD
## 3586                                     DT.DIS.PBND.CD
## 3587                                  DT.DIS.PBND.GG.CD
## 3588                                 DT.DIS.PBND.OPS.CD
## 3589                                DT.DIS.PBND.PRVG.CD
## 3590                                  DT.DIS.PBND.PS.CD
## 3591                                  DT.DIS.PCBK.CB.CD
## 3592                                     DT.DIS.PCBK.CD
## 3593                                  DT.DIS.PCBK.GG.CD
## 3594                                 DT.DIS.PCBK.OPS.CD
## 3595                                DT.DIS.PCBK.PRVG.CD
## 3596                                  DT.DIS.PCBK.PS.CD
## 3597                                     DT.DIS.PGNG.CD
## 3598                                     DT.DIS.PNGB.CD
## 3599                                     DT.DIS.PNGC.CD
## 3600                                  DT.DIS.PROP.CB.CD
## 3601                                     DT.DIS.PROP.CD
## 3602                                  DT.DIS.PROP.GG.CD
## 3603                                 DT.DIS.PROP.OPS.CD
## 3604                                DT.DIS.PROP.PRVG.CD
## 3605                                  DT.DIS.PROP.PS.CD
## 3606                                     DT.DIS.PRPG.CD
## 3607                                  DT.DIS.PRVT.CB.CD
## 3608                                     DT.DIS.PRVT.CD
## 3609                                  DT.DIS.PRVT.GG.CD
## 3610                                 DT.DIS.PRVT.OPS.CD
## 3611                                DT.DIS.PRVT.PRVG.CD
## 3612                                  DT.DIS.PRVT.PS.CD
## 3613                                     DT.DOD.ALLC.CD
## 3614                                     DT.DOD.ALLC.ZS
## 3615                                    DT.DOD.ALLC.ZSG
## 3616                                    DT.DOD.ALLC.ZSX
## 3617                                     DT.DOD.ALLN.CD
## 3618                                    DT.DOD.ALLN.ZSG
## 3619                                    DT.DOD.ALLN.ZSX
## 3620                                  DT.DOD.BLAT.CB.CD
## 3621                                     DT.DOD.BLAT.CD
## 3622                                  DT.DOD.BLAT.GG.CD
## 3623                                 DT.DOD.BLAT.OPS.CD
## 3624                                DT.DOD.BLAT.PRVG.CD
## 3625                                  DT.DOD.BLAT.PS.CD
## 3626                                  DT.DOD.BLTC.CB.CD
## 3627                                     DT.DOD.BLTC.CD
## 3628                                  DT.DOD.BLTC.GG.CD
## 3629                                 DT.DOD.BLTC.OPS.CD
## 3630                                DT.DOD.BLTC.PRVG.CD
## 3631                                  DT.DOD.BLTC.PS.CD
## 3632                                     DT.DOD.BLTN.CD
## 3633                            DT.DOD.BNLT.CD.PR.AR.US
## 3634                            DT.DOD.BNLT.CD.PU.AR.US
## 3635                            DT.DOD.CDLT.CD.PR.AR.US
## 3636                            DT.DOD.CDLT.CD.PU.AR.US
## 3637                            DT.DOD.CDST.CD.PR.AR.US
## 3638                            DT.DOD.CDST.CD.PU.AR.US
## 3639                                     DT.DOD.DECB.CD
## 3640                               DT.DOD.DECT.AR.T4.US
## 3641                                  DT.DOD.DECT.AR.US
## 3642                               DT.DOD.DECT.CB.AR.US
## 3643                               DT.DOD.DECT.CB.DS.US
## 3644                                     DT.DOD.DECT.CD
## 3645                            DT.DOD.DECT.CD.AR.BE.US
## 3646                            DT.DOD.DECT.CD.AR.EA.US
## 3647                            DT.DOD.DECT.CD.AR.EN.US
## 3648                            DT.DOD.DECT.CD.AR.EX.US
## 3649                            DT.DOD.DECT.CD.AR.GE.US
## 3650                            DT.DOD.DECT.CD.AR.NE.US
## 3651                            DT.DOD.DECT.CD.AR.OC.US
## 3652                            DT.DOD.DECT.CD.AR.PX.US
## 3653                            DT.DOD.DECT.CD.AR.TL.US
## 3654                            DT.DOD.DECT.CD.AR.TR.US
## 3655                               DT.DOD.DECT.CD.AR.US
## 3656                         DT.DOD.DECT.CD.CB.AR.BE.US
## 3657                         DT.DOD.DECT.CD.CB.AR.EA.US
## 3658                         DT.DOD.DECT.CD.CB.AR.EN.US
## 3659                         DT.DOD.DECT.CD.CB.AR.EX.US
## 3660                         DT.DOD.DECT.CD.CB.AR.GE.US
## 3661                         DT.DOD.DECT.CD.CB.AR.NE.US
## 3662                         DT.DOD.DECT.CD.CB.AR.OC.US
## 3663                         DT.DOD.DECT.CD.CB.AR.PX.US
## 3664                         DT.DOD.DECT.CD.CB.AR.TR.US
## 3665                            DT.DOD.DECT.CD.CB.AR.US
## 3666                         DT.DOD.DECT.CD.CB.TD.MP.US
## 3667                         DT.DOD.DECT.CD.CB.TD.MV.US
## 3668                         DT.DOD.DECT.CD.CB.TD.NV.US
## 3669                                  DT.DOD.DECT.CD.CG
## 3670                            DT.DOD.DECT.CD.DC.T5.US
## 3671                               DT.DOD.DECT.CD.DC.US
## 3672                               DT.DOD.DECT.CD.DT.US
## 3673                         DT.DOD.DECT.CD.FC.CB.EU.US
## 3674                         DT.DOD.DECT.CD.FC.CB.JY.US
## 3675                         DT.DOD.DECT.CD.FC.CB.OT.US
## 3676                         DT.DOD.DECT.CD.FC.CB.TO.US
## 3677                         DT.DOD.DECT.CD.FC.CB.US.US
## 3678                         DT.DOD.DECT.CD.FC.GG.EU.US
## 3679                         DT.DOD.DECT.CD.FC.GG.JY.US
## 3680                         DT.DOD.DECT.CD.FC.GG.OT.US
## 3681                         DT.DOD.DECT.CD.FC.GG.TO.US
## 3682                         DT.DOD.DECT.CD.FC.GG.US.US
## 3683                         DT.DOD.DECT.CD.FC.IL.EU.US
## 3684                         DT.DOD.DECT.CD.FC.IL.JY.US
## 3685                         DT.DOD.DECT.CD.FC.IL.OT.US
## 3686                         DT.DOD.DECT.CD.FC.IL.TO.US
## 3687                         DT.DOD.DECT.CD.FC.IL.US.US
## 3688                         DT.DOD.DECT.CD.FC.MA.EU.US
## 3689                         DT.DOD.DECT.CD.FC.MA.JY.US
## 3690                         DT.DOD.DECT.CD.FC.MA.OT.US
## 3691                         DT.DOD.DECT.CD.FC.MA.TO.US
## 3692                         DT.DOD.DECT.CD.FC.MA.US.US
## 3693                         DT.DOD.DECT.CD.FC.OT.EU.US
## 3694                         DT.DOD.DECT.CD.FC.OT.JY.US
## 3695                         DT.DOD.DECT.CD.FC.OT.OT.US
## 3696                         DT.DOD.DECT.CD.FC.OT.TO.US
## 3697                         DT.DOD.DECT.CD.FC.OT.US.US
## 3698                            DT.DOD.DECT.CD.FC.T5.US
## 3699                               DT.DOD.DECT.CD.FC.US
## 3700                            DT.DOD.DECT.CD.FF.ER.US
## 3701                            DT.DOD.DECT.CD.FF.OD.US
## 3702                            DT.DOD.DECT.CD.FF.TT.US
## 3703                            DT.DOD.DECT.CD.FF.UD.US
## 3704                            DT.DOD.DECT.CD.FF.YE.US
## 3705                         DT.DOD.DECT.CD.GG.AR.BE.US
## 3706                         DT.DOD.DECT.CD.GG.AR.EA.US
## 3707                         DT.DOD.DECT.CD.GG.AR.EN.US
## 3708                         DT.DOD.DECT.CD.GG.AR.EX.US
## 3709                         DT.DOD.DECT.CD.GG.AR.GE.US
## 3710                         DT.DOD.DECT.CD.GG.AR.NE.US
## 3711                         DT.DOD.DECT.CD.GG.AR.OC.US
## 3712                         DT.DOD.DECT.CD.GG.AR.PX.US
## 3713                         DT.DOD.DECT.CD.GG.AR.TR.US
## 3714                            DT.DOD.DECT.CD.GG.AR.US
## 3715                         DT.DOD.DECT.CD.GG.TD.MP.US
## 3716                         DT.DOD.DECT.CD.GG.TD.MV.US
## 3717                         DT.DOD.DECT.CD.GG.TD.NV.US
## 3718                               DT.DOD.DECT.CD.HN.US
## 3719                         DT.DOD.DECT.CD.IL.AR.BE.US
## 3720                         DT.DOD.DECT.CD.IL.AR.EA.US
## 3721                         DT.DOD.DECT.CD.IL.AR.EN.US
## 3722                         DT.DOD.DECT.CD.IL.AR.EX.US
## 3723                         DT.DOD.DECT.CD.IL.AR.GE.US
## 3724                         DT.DOD.DECT.CD.IL.AR.NE.US
## 3725                         DT.DOD.DECT.CD.IL.AR.OC.US
## 3726                         DT.DOD.DECT.CD.IL.AR.PX.US
## 3727                         DT.DOD.DECT.CD.IL.AR.TR.US
## 3728                               DT.DOD.DECT.CD.IL.US
## 3729                         DT.DOD.DECT.CD.LT.TD.MP.US
## 3730                         DT.DOD.DECT.CD.LT.TD.MV.US
## 3731                         DT.DOD.DECT.CD.LT.TD.NV.US
## 3732                               DT.DOD.DECT.CD.LT.US
## 3733                         DT.DOD.DECT.CD.MA.AR.BE.US
## 3734                         DT.DOD.DECT.CD.MA.AR.EA.US
## 3735                         DT.DOD.DECT.CD.MA.AR.EN.US
## 3736                         DT.DOD.DECT.CD.MA.AR.EX.US
## 3737                         DT.DOD.DECT.CD.MA.AR.GE.US
## 3738                         DT.DOD.DECT.CD.MA.AR.NE.US
## 3739                         DT.DOD.DECT.CD.MA.AR.OC.US
## 3740                         DT.DOD.DECT.CD.MA.AR.PX.US
## 3741                         DT.DOD.DECT.CD.MA.AR.TR.US
## 3742                            DT.DOD.DECT.CD.MA.AR.US
## 3743                         DT.DOD.DECT.CD.MA.TD.MP.US
## 3744                         DT.DOD.DECT.CD.MA.TD.MV.US
## 3745                         DT.DOD.DECT.CD.MA.TD.NV.US
## 3746                               DT.DOD.DECT.CD.NC.US
## 3747                               DT.DOD.DECT.CD.OF.US
## 3748                         DT.DOD.DECT.CD.OT.AR.BE.US
## 3749                         DT.DOD.DECT.CD.OT.AR.EA.US
## 3750                         DT.DOD.DECT.CD.OT.AR.EN.US
## 3751                         DT.DOD.DECT.CD.OT.AR.EX.US
## 3752                         DT.DOD.DECT.CD.OT.AR.GE.US
## 3753                         DT.DOD.DECT.CD.OT.AR.NE.US
## 3754                         DT.DOD.DECT.CD.OT.AR.OC.US
## 3755                         DT.DOD.DECT.CD.OT.AR.PX.US
## 3756                         DT.DOD.DECT.CD.OT.AR.TR.US
## 3757                            DT.DOD.DECT.CD.OT.AR.US
## 3758                         DT.DOD.DECT.CD.OT.TD.MP.US
## 3759                         DT.DOD.DECT.CD.OT.TD.MV.US
## 3760                         DT.DOD.DECT.CD.OT.TD.NV.US
## 3761                                  DT.DOD.DECT.CD.PC
## 3762                         DT.DOD.DECT.CD.ST.TD.MP.US
## 3763                         DT.DOD.DECT.CD.ST.TD.MV.US
## 3764                         DT.DOD.DECT.CD.ST.TD.NV.US
## 3765                               DT.DOD.DECT.CD.ST.US
## 3766                            DT.DOD.DECT.CD.TD.MP.US
## 3767                            DT.DOD.DECT.CD.TD.MV.US
## 3768                            DT.DOD.DECT.CD.TD.NV.US
## 3769                               DT.DOD.DECT.CD.TL.US
## 3770                               DT.DOD.DECT.CD.TO.US
## 3771                            DT.DOD.DECT.CD.UC.T5.US
## 3772                               DT.DOD.DECT.CD.UC.US
## 3773                                 DT.DOD.DECT.CD.ZSG
## 3774                               DT.DOD.DECT.DS.T4.US
## 3775                                  DT.DOD.DECT.DS.US
## 3776                                  DT.DOD.DECT.EX.ZS
## 3777                               DT.DOD.DECT.GG.AR.US
## 3778                               DT.DOD.DECT.GG.DS.US
## 3779                                  DT.DOD.DECT.GN.ZS
## 3780                               DT.DOD.DECT.IL.AR.US
## 3781                               DT.DOD.DECT.MA.AR.US
## 3782                               DT.DOD.DECT.MA.DS.US
## 3783                               DT.DOD.DECT.OT.AR.US
## 3784                               DT.DOD.DECT.OT.DS.US
## 3785                               DT.DOD.DECT.T4.AR.US
## 3786                                     DT.DOD.DEGG.CD
## 3787                                     DT.DOD.DEPS.CD
## 3788                         DT.DOD.DIDI.CD.FC.IL.EU.US
## 3789                         DT.DOD.DIDI.CD.FC.IL.JY.US
## 3790                         DT.DOD.DIDI.CD.FC.IL.OT.US
## 3791                         DT.DOD.DIDI.CD.FC.IL.TO.US
## 3792                         DT.DOD.DIDI.CD.FC.IL.US.US
## 3793                            DT.DOD.DIDI.CD.IL.BE.US
## 3794                            DT.DOD.DIDI.CD.IL.EA.US
## 3795                            DT.DOD.DIDI.CD.IL.EN.US
## 3796                            DT.DOD.DIDI.CD.IL.EX.US
## 3797                            DT.DOD.DIDI.CD.IL.GE.US
## 3798                            DT.DOD.DIDI.CD.IL.NE.US
## 3799                            DT.DOD.DIDI.CD.IL.OC.US
## 3800                            DT.DOD.DIDI.CD.IL.PX.US
## 3801                            DT.DOD.DIDI.CD.IL.TR.US
## 3802                               DT.DOD.DIDI.CD.IL.US
## 3803                               DT.DOD.DIDI.CD.PR.US
## 3804                               DT.DOD.DIDI.CD.PU.US
## 3805                         DT.DOD.DIFE.CD.FC.IL.EU.US
## 3806                         DT.DOD.DIFE.CD.FC.IL.JY.US
## 3807                         DT.DOD.DIFE.CD.FC.IL.OT.US
## 3808                         DT.DOD.DIFE.CD.FC.IL.TO.US
## 3809                         DT.DOD.DIFE.CD.FC.IL.US.US
## 3810                            DT.DOD.DIFE.CD.IL.BE.US
## 3811                            DT.DOD.DIFE.CD.IL.EA.US
## 3812                            DT.DOD.DIFE.CD.IL.EN.US
## 3813                            DT.DOD.DIFE.CD.IL.EX.US
## 3814                            DT.DOD.DIFE.CD.IL.GE.US
## 3815                            DT.DOD.DIFE.CD.IL.NE.US
## 3816                            DT.DOD.DIFE.CD.IL.OC.US
## 3817                            DT.DOD.DIFE.CD.IL.PX.US
## 3818                            DT.DOD.DIFE.CD.IL.TR.US
## 3819                               DT.DOD.DIFE.CD.IL.US
## 3820                               DT.DOD.DIFE.CD.PR.US
## 3821                               DT.DOD.DIFE.CD.PU.US
## 3822                         DT.DOD.DIIE.CD.FC.IL.EU.US
## 3823                         DT.DOD.DIIE.CD.FC.IL.JY.US
## 3824                         DT.DOD.DIIE.CD.FC.IL.OT.US
## 3825                         DT.DOD.DIIE.CD.FC.IL.TO.US
## 3826                         DT.DOD.DIIE.CD.FC.IL.US.US
## 3827                            DT.DOD.DIIE.CD.IL.BE.US
## 3828                            DT.DOD.DIIE.CD.IL.EA.US
## 3829                            DT.DOD.DIIE.CD.IL.EN.US
## 3830                            DT.DOD.DIIE.CD.IL.EX.US
## 3831                            DT.DOD.DIIE.CD.IL.GE.US
## 3832                            DT.DOD.DIIE.CD.IL.NE.US
## 3833                            DT.DOD.DIIE.CD.IL.OC.US
## 3834                            DT.DOD.DIIE.CD.IL.PX.US
## 3835                            DT.DOD.DIIE.CD.IL.TR.US
## 3836                               DT.DOD.DIIE.CD.IL.US
## 3837                               DT.DOD.DIIE.CD.PR.US
## 3838                               DT.DOD.DIIE.CD.PU.US
## 3839                               DT.DOD.DIIL.CD.PR.US
## 3840                               DT.DOD.DIIL.CD.PU.US
## 3841                                     DT.DOD.DIMF.CD
## 3842                         DT.DOD.DLBN.CD.CB.AR.BE.US
## 3843                         DT.DOD.DLBN.CD.CB.AR.EA.US
## 3844                         DT.DOD.DLBN.CD.CB.AR.EN.US
## 3845                         DT.DOD.DLBN.CD.CB.AR.EX.US
## 3846                         DT.DOD.DLBN.CD.CB.AR.GE.US
## 3847                         DT.DOD.DLBN.CD.CB.AR.NE.US
## 3848                         DT.DOD.DLBN.CD.CB.AR.OC.US
## 3849                         DT.DOD.DLBN.CD.CB.AR.PX.US
## 3850                         DT.DOD.DLBN.CD.CB.AR.TR.US
## 3851                            DT.DOD.DLBN.CD.CB.AR.US
## 3852                         DT.DOD.DLBN.CD.GG.AR.BE.US
## 3853                         DT.DOD.DLBN.CD.GG.AR.EA.US
## 3854                         DT.DOD.DLBN.CD.GG.AR.EN.US
## 3855                         DT.DOD.DLBN.CD.GG.AR.EX.US
## 3856                         DT.DOD.DLBN.CD.GG.AR.GE.US
## 3857                         DT.DOD.DLBN.CD.GG.AR.NE.US
## 3858                         DT.DOD.DLBN.CD.GG.AR.OC.US
## 3859                         DT.DOD.DLBN.CD.GG.AR.PX.US
## 3860                         DT.DOD.DLBN.CD.GG.AR.TR.US
## 3861                            DT.DOD.DLBN.CD.GG.AR.US
## 3862                               DT.DOD.DLBN.CD.HN.US
## 3863                         DT.DOD.DLBN.CD.MA.AR.BE.US
## 3864                         DT.DOD.DLBN.CD.MA.AR.EA.US
## 3865                         DT.DOD.DLBN.CD.MA.AR.EN.US
## 3866                         DT.DOD.DLBN.CD.MA.AR.EX.US
## 3867                         DT.DOD.DLBN.CD.MA.AR.GE.US
## 3868                         DT.DOD.DLBN.CD.MA.AR.NE.US
## 3869                         DT.DOD.DLBN.CD.MA.AR.OC.US
## 3870                         DT.DOD.DLBN.CD.MA.AR.PX.US
## 3871                         DT.DOD.DLBN.CD.MA.AR.TR.US
## 3872                            DT.DOD.DLBN.CD.MA.AR.US
## 3873                               DT.DOD.DLBN.CD.NC.US
## 3874                               DT.DOD.DLBN.CD.OF.US
## 3875                         DT.DOD.DLBN.CD.OT.AR.BE.US
## 3876                         DT.DOD.DLBN.CD.OT.AR.EA.US
## 3877                         DT.DOD.DLBN.CD.OT.AR.EN.US
## 3878                         DT.DOD.DLBN.CD.OT.AR.EX.US
## 3879                         DT.DOD.DLBN.CD.OT.AR.GE.US
## 3880                         DT.DOD.DLBN.CD.OT.AR.NE.US
## 3881                         DT.DOD.DLBN.CD.OT.AR.OC.US
## 3882                         DT.DOD.DLBN.CD.OT.AR.PX.US
## 3883                         DT.DOD.DLBN.CD.OT.AR.TR.US
## 3884                            DT.DOD.DLBN.CD.OT.AR.US
## 3885                         DT.DOD.DLCD.CD.CB.AR.BE.US
## 3886                         DT.DOD.DLCD.CD.CB.AR.EA.US
## 3887                         DT.DOD.DLCD.CD.CB.AR.EN.US
## 3888                         DT.DOD.DLCD.CD.CB.AR.EX.US
## 3889                         DT.DOD.DLCD.CD.CB.AR.GE.US
## 3890                         DT.DOD.DLCD.CD.CB.AR.NE.US
## 3891                         DT.DOD.DLCD.CD.CB.AR.OC.US
## 3892                         DT.DOD.DLCD.CD.CB.AR.PX.US
## 3893                         DT.DOD.DLCD.CD.CB.AR.TR.US
## 3894                            DT.DOD.DLCD.CD.CB.AR.US
## 3895                         DT.DOD.DLCD.CD.GG.AR.BE.US
## 3896                         DT.DOD.DLCD.CD.GG.AR.EA.US
## 3897                         DT.DOD.DLCD.CD.GG.AR.EN.US
## 3898                         DT.DOD.DLCD.CD.GG.AR.EX.US
## 3899                         DT.DOD.DLCD.CD.GG.AR.GE.US
## 3900                         DT.DOD.DLCD.CD.GG.AR.NE.US
## 3901                         DT.DOD.DLCD.CD.GG.AR.OC.US
## 3902                         DT.DOD.DLCD.CD.GG.AR.PX.US
## 3903                         DT.DOD.DLCD.CD.GG.AR.TR.US
## 3904                            DT.DOD.DLCD.CD.GG.AR.US
## 3905                               DT.DOD.DLCD.CD.HN.US
## 3906                         DT.DOD.DLCD.CD.MA.AR.BE.US
## 3907                         DT.DOD.DLCD.CD.MA.AR.EA.US
## 3908                         DT.DOD.DLCD.CD.MA.AR.EN.US
## 3909                         DT.DOD.DLCD.CD.MA.AR.EX.US
## 3910                         DT.DOD.DLCD.CD.MA.AR.GE.US
## 3911                         DT.DOD.DLCD.CD.MA.AR.NE.US
## 3912                         DT.DOD.DLCD.CD.MA.AR.OC.US
## 3913                         DT.DOD.DLCD.CD.MA.AR.PX.US
## 3914                         DT.DOD.DLCD.CD.MA.AR.TR.US
## 3915                            DT.DOD.DLCD.CD.MA.AR.US
## 3916                               DT.DOD.DLCD.CD.NC.US
## 3917                               DT.DOD.DLCD.CD.OF.US
## 3918                         DT.DOD.DLCD.CD.OT.AR.BE.US
## 3919                         DT.DOD.DLCD.CD.OT.AR.EA.US
## 3920                         DT.DOD.DLCD.CD.OT.AR.EN.US
## 3921                         DT.DOD.DLCD.CD.OT.AR.EX.US
## 3922                         DT.DOD.DLCD.CD.OT.AR.GE.US
## 3923                         DT.DOD.DLCD.CD.OT.AR.NE.US
## 3924                         DT.DOD.DLCD.CD.OT.AR.OC.US
## 3925                         DT.DOD.DLCD.CD.OT.AR.PX.US
## 3926                         DT.DOD.DLCD.CD.OT.AR.TR.US
## 3927                            DT.DOD.DLCD.CD.OT.AR.US
## 3928                                     DT.DOD.DLTF.CD
## 3929                         DT.DOD.DLTL.CD.CB.AR.BE.US
## 3930                         DT.DOD.DLTL.CD.CB.AR.EA.US
## 3931                         DT.DOD.DLTL.CD.CB.AR.EN.US
## 3932                         DT.DOD.DLTL.CD.CB.AR.EX.US
## 3933                         DT.DOD.DLTL.CD.CB.AR.GE.US
## 3934                         DT.DOD.DLTL.CD.CB.AR.NE.US
## 3935                         DT.DOD.DLTL.CD.CB.AR.OC.US
## 3936                         DT.DOD.DLTL.CD.CB.AR.PX.US
## 3937                         DT.DOD.DLTL.CD.CB.AR.TR.US
## 3938                            DT.DOD.DLTL.CD.CB.AR.US
## 3939                         DT.DOD.DLTL.CD.GG.AR.BE.US
## 3940                         DT.DOD.DLTL.CD.GG.AR.EA.US
## 3941                         DT.DOD.DLTL.CD.GG.AR.EN.US
## 3942                         DT.DOD.DLTL.CD.GG.AR.EX.US
## 3943                         DT.DOD.DLTL.CD.GG.AR.GE.US
## 3944                         DT.DOD.DLTL.CD.GG.AR.NE.US
## 3945                         DT.DOD.DLTL.CD.GG.AR.OC.US
## 3946                         DT.DOD.DLTL.CD.GG.AR.PX.US
## 3947                         DT.DOD.DLTL.CD.GG.AR.TR.US
## 3948                            DT.DOD.DLTL.CD.GG.AR.US
## 3949                               DT.DOD.DLTL.CD.HN.US
## 3950                         DT.DOD.DLTL.CD.MA.AR.BE.US
## 3951                         DT.DOD.DLTL.CD.MA.AR.EA.US
## 3952                         DT.DOD.DLTL.CD.MA.AR.EN.US
## 3953                         DT.DOD.DLTL.CD.MA.AR.EX.US
## 3954                         DT.DOD.DLTL.CD.MA.AR.GE.US
## 3955                         DT.DOD.DLTL.CD.MA.AR.NE.US
## 3956                         DT.DOD.DLTL.CD.MA.AR.OC.US
## 3957                         DT.DOD.DLTL.CD.MA.AR.PX.US
## 3958                         DT.DOD.DLTL.CD.MA.AR.TR.US
## 3959                            DT.DOD.DLTL.CD.MA.AR.US
## 3960                               DT.DOD.DLTL.CD.NC.US
## 3961                               DT.DOD.DLTL.CD.OF.US
## 3962                         DT.DOD.DLTL.CD.OT.AR.BE.US
## 3963                         DT.DOD.DLTL.CD.OT.AR.EA.US
## 3964                         DT.DOD.DLTL.CD.OT.AR.EN.US
## 3965                         DT.DOD.DLTL.CD.OT.AR.EX.US
## 3966                         DT.DOD.DLTL.CD.OT.AR.GE.US
## 3967                         DT.DOD.DLTL.CD.OT.AR.NE.US
## 3968                         DT.DOD.DLTL.CD.OT.AR.OC.US
## 3969                         DT.DOD.DLTL.CD.OT.AR.PX.US
## 3970                         DT.DOD.DLTL.CD.OT.AR.TR.US
## 3971                            DT.DOD.DLTL.CD.OT.AR.US
## 3972                         DT.DOD.DLTO.CD.CB.AR.BE.US
## 3973                         DT.DOD.DLTO.CD.CB.AR.EA.US
## 3974                         DT.DOD.DLTO.CD.CB.AR.EN.US
## 3975                         DT.DOD.DLTO.CD.CB.AR.EX.US
## 3976                         DT.DOD.DLTO.CD.CB.AR.GE.US
## 3977                         DT.DOD.DLTO.CD.CB.AR.NE.US
## 3978                         DT.DOD.DLTO.CD.CB.AR.OC.US
## 3979                         DT.DOD.DLTO.CD.CB.AR.PX.US
## 3980                         DT.DOD.DLTO.CD.CB.AR.TR.US
## 3981                            DT.DOD.DLTO.CD.CB.AR.US
## 3982                         DT.DOD.DLTO.CD.GG.AR.BE.US
## 3983                         DT.DOD.DLTO.CD.GG.AR.EA.US
## 3984                         DT.DOD.DLTO.CD.GG.AR.EN.US
## 3985                         DT.DOD.DLTO.CD.GG.AR.EX.US
## 3986                         DT.DOD.DLTO.CD.GG.AR.GE.US
## 3987                         DT.DOD.DLTO.CD.GG.AR.NE.US
## 3988                         DT.DOD.DLTO.CD.GG.AR.OC.US
## 3989                         DT.DOD.DLTO.CD.GG.AR.PX.US
## 3990                         DT.DOD.DLTO.CD.GG.AR.TR.US
## 3991                            DT.DOD.DLTO.CD.GG.AR.US
## 3992                               DT.DOD.DLTO.CD.HN.US
## 3993                         DT.DOD.DLTO.CD.MA.AR.BE.US
## 3994                         DT.DOD.DLTO.CD.MA.AR.EA.US
## 3995                         DT.DOD.DLTO.CD.MA.AR.EN.US
## 3996                         DT.DOD.DLTO.CD.MA.AR.EX.US
## 3997                         DT.DOD.DLTO.CD.MA.AR.GE.US
## 3998                         DT.DOD.DLTO.CD.MA.AR.NE.US
## 3999                         DT.DOD.DLTO.CD.MA.AR.OC.US
## 4000                         DT.DOD.DLTO.CD.MA.AR.PX.US
## 4001                         DT.DOD.DLTO.CD.MA.AR.TR.US
## 4002                            DT.DOD.DLTO.CD.MA.AR.US
## 4003                               DT.DOD.DLTO.CD.NC.US
## 4004                               DT.DOD.DLTO.CD.OF.US
## 4005                         DT.DOD.DLTO.CD.OT.AR.BE.US
## 4006                         DT.DOD.DLTO.CD.OT.AR.EA.US
## 4007                         DT.DOD.DLTO.CD.OT.AR.EN.US
## 4008                         DT.DOD.DLTO.CD.OT.AR.EX.US
## 4009                         DT.DOD.DLTO.CD.OT.AR.GE.US
## 4010                         DT.DOD.DLTO.CD.OT.AR.NE.US
## 4011                         DT.DOD.DLTO.CD.OT.AR.OC.US
## 4012                         DT.DOD.DLTO.CD.OT.AR.PX.US
## 4013                         DT.DOD.DLTO.CD.OT.AR.TR.US
## 4014                            DT.DOD.DLTO.CD.OT.AR.US
## 4015                            DT.DOD.DLTS.CD.GG.BE.US
## 4016                            DT.DOD.DLTS.CD.GG.EA.US
## 4017                            DT.DOD.DLTS.CD.GG.EN.US
## 4018                            DT.DOD.DLTS.CD.GG.EX.US
## 4019                            DT.DOD.DLTS.CD.GG.GE.US
## 4020                            DT.DOD.DLTS.CD.GG.NE.US
## 4021                            DT.DOD.DLTS.CD.GG.OC.US
## 4022                            DT.DOD.DLTS.CD.GG.PX.US
## 4023                            DT.DOD.DLTS.CD.GG.TR.US
## 4024                               DT.DOD.DLTS.CD.GG.US
## 4025                         DT.DOD.DLTS.CD.MA.AR.BE.US
## 4026                         DT.DOD.DLTS.CD.MA.AR.EA.US
## 4027                         DT.DOD.DLTS.CD.MA.AR.EN.US
## 4028                         DT.DOD.DLTS.CD.MA.AR.EX.US
## 4029                         DT.DOD.DLTS.CD.MA.AR.GE.US
## 4030                         DT.DOD.DLTS.CD.MA.AR.NE.US
## 4031                         DT.DOD.DLTS.CD.MA.AR.OC.US
## 4032                         DT.DOD.DLTS.CD.MA.AR.PX.US
## 4033                         DT.DOD.DLTS.CD.MA.AR.TR.US
## 4034                            DT.DOD.DLTS.CD.MA.AR.US
## 4035                         DT.DOD.DLTT.CD.CB.AR.BE.US
## 4036                         DT.DOD.DLTT.CD.CB.AR.EA.US
## 4037                         DT.DOD.DLTT.CD.CB.AR.EN.US
## 4038                         DT.DOD.DLTT.CD.CB.AR.EX.US
## 4039                         DT.DOD.DLTT.CD.CB.AR.GE.US
## 4040                         DT.DOD.DLTT.CD.CB.AR.NE.US
## 4041                         DT.DOD.DLTT.CD.CB.AR.OC.US
## 4042                         DT.DOD.DLTT.CD.CB.AR.PX.US
## 4043                         DT.DOD.DLTT.CD.CB.AR.TR.US
## 4044                            DT.DOD.DLTT.CD.CB.AR.US
## 4045                         DT.DOD.DLTT.CD.GG.AR.BE.US
## 4046                         DT.DOD.DLTT.CD.GG.AR.EA.US
## 4047                         DT.DOD.DLTT.CD.GG.AR.EN.US
## 4048                         DT.DOD.DLTT.CD.GG.AR.EX.US
## 4049                         DT.DOD.DLTT.CD.GG.AR.GE.US
## 4050                         DT.DOD.DLTT.CD.GG.AR.NE.US
## 4051                         DT.DOD.DLTT.CD.GG.AR.OC.US
## 4052                         DT.DOD.DLTT.CD.GG.AR.PX.US
## 4053                         DT.DOD.DLTT.CD.GG.AR.TR.US
## 4054                            DT.DOD.DLTT.CD.GG.AR.US
## 4055                               DT.DOD.DLTT.CD.HN.US
## 4056                         DT.DOD.DLTT.CD.MA.AR.BE.US
## 4057                         DT.DOD.DLTT.CD.MA.AR.EA.US
## 4058                         DT.DOD.DLTT.CD.MA.AR.EN.US
## 4059                         DT.DOD.DLTT.CD.MA.AR.EX.US
## 4060                         DT.DOD.DLTT.CD.MA.AR.GE.US
## 4061                         DT.DOD.DLTT.CD.MA.AR.NE.US
## 4062                         DT.DOD.DLTT.CD.MA.AR.OC.US
## 4063                         DT.DOD.DLTT.CD.MA.AR.PX.US
## 4064                         DT.DOD.DLTT.CD.MA.AR.TR.US
## 4065                            DT.DOD.DLTT.CD.MA.AR.US
## 4066                               DT.DOD.DLTT.CD.NC.US
## 4067                               DT.DOD.DLTT.CD.OF.US
## 4068                         DT.DOD.DLTT.CD.OT.AR.BE.US
## 4069                         DT.DOD.DLTT.CD.OT.AR.EA.US
## 4070                         DT.DOD.DLTT.CD.OT.AR.EN.US
## 4071                         DT.DOD.DLTT.CD.OT.AR.EX.US
## 4072                         DT.DOD.DLTT.CD.OT.AR.GE.US
## 4073                         DT.DOD.DLTT.CD.OT.AR.NE.US
## 4074                         DT.DOD.DLTT.CD.OT.AR.OC.US
## 4075                         DT.DOD.DLTT.CD.OT.AR.PX.US
## 4076                         DT.DOD.DLTT.CD.OT.AR.TR.US
## 4077                            DT.DOD.DLTT.CD.OT.AR.US
## 4078                                     DT.DOD.DLXF.CD
## 4079                         DT.DOD.DLXF.CD.CB.AR.BE.US
## 4080                         DT.DOD.DLXF.CD.CB.AR.EA.US
## 4081                         DT.DOD.DLXF.CD.CB.AR.EN.US
## 4082                         DT.DOD.DLXF.CD.CB.AR.EX.US
## 4083                         DT.DOD.DLXF.CD.CB.AR.GE.US
## 4084                         DT.DOD.DLXF.CD.CB.AR.NE.US
## 4085                         DT.DOD.DLXF.CD.CB.AR.OC.US
## 4086                         DT.DOD.DLXF.CD.CB.AR.PX.US
## 4087                         DT.DOD.DLXF.CD.CB.AR.TR.US
## 4088                            DT.DOD.DLXF.CD.CB.AR.US
## 4089                         DT.DOD.DLXF.CD.CB.TD.MP.US
## 4090                         DT.DOD.DLXF.CD.CB.TD.MV.US
## 4091                         DT.DOD.DLXF.CD.CB.TD.NV.US
## 4092                            DT.DOD.DLXF.CD.DC.T5.US
## 4093                               DT.DOD.DLXF.CD.DC.US
## 4094                                  DT.DOD.DLXF.CD.DR
## 4095                         DT.DOD.DLXF.CD.FC.CB.EU.US
## 4096                         DT.DOD.DLXF.CD.FC.CB.JY.US
## 4097                         DT.DOD.DLXF.CD.FC.CB.OT.US
## 4098                         DT.DOD.DLXF.CD.FC.CB.TO.US
## 4099                         DT.DOD.DLXF.CD.FC.CB.US.US
## 4100                         DT.DOD.DLXF.CD.FC.GG.EU.US
## 4101                         DT.DOD.DLXF.CD.FC.GG.JY.US
## 4102                         DT.DOD.DLXF.CD.FC.GG.OT.US
## 4103                         DT.DOD.DLXF.CD.FC.GG.TO.US
## 4104                         DT.DOD.DLXF.CD.FC.GG.US.US
## 4105                         DT.DOD.DLXF.CD.FC.MA.EU.US
## 4106                         DT.DOD.DLXF.CD.FC.MA.JY.US
## 4107                         DT.DOD.DLXF.CD.FC.MA.OT.US
## 4108                         DT.DOD.DLXF.CD.FC.MA.TO.US
## 4109                         DT.DOD.DLXF.CD.FC.MA.US.US
## 4110                         DT.DOD.DLXF.CD.FC.OT.EU.US
## 4111                         DT.DOD.DLXF.CD.FC.OT.JY.US
## 4112                         DT.DOD.DLXF.CD.FC.OT.OT.US
## 4113                         DT.DOD.DLXF.CD.FC.OT.TO.US
## 4114                         DT.DOD.DLXF.CD.FC.OT.US.US
## 4115                            DT.DOD.DLXF.CD.FC.T5.US
## 4116                               DT.DOD.DLXF.CD.FC.US
## 4117                         DT.DOD.DLXF.CD.GG.AR.BE.US
## 4118                         DT.DOD.DLXF.CD.GG.AR.EA.US
## 4119                         DT.DOD.DLXF.CD.GG.AR.EN.US
## 4120                         DT.DOD.DLXF.CD.GG.AR.EX.US
## 4121                         DT.DOD.DLXF.CD.GG.AR.GE.US
## 4122                         DT.DOD.DLXF.CD.GG.AR.NE.US
## 4123                         DT.DOD.DLXF.CD.GG.AR.OC.US
## 4124                         DT.DOD.DLXF.CD.GG.AR.PX.US
## 4125                         DT.DOD.DLXF.CD.GG.AR.TR.US
## 4126                            DT.DOD.DLXF.CD.GG.AR.US
## 4127                         DT.DOD.DLXF.CD.GG.TD.MP.US
## 4128                         DT.DOD.DLXF.CD.GG.TD.MV.US
## 4129                         DT.DOD.DLXF.CD.GG.TD.NV.US
## 4130                               DT.DOD.DLXF.CD.HN.US
## 4131                         DT.DOD.DLXF.CD.MA.AR.BE.US
## 4132                         DT.DOD.DLXF.CD.MA.AR.EA.US
## 4133                         DT.DOD.DLXF.CD.MA.AR.EN.US
## 4134                         DT.DOD.DLXF.CD.MA.AR.EX.US
## 4135                         DT.DOD.DLXF.CD.MA.AR.GE.US
## 4136                         DT.DOD.DLXF.CD.MA.AR.NE.US
## 4137                         DT.DOD.DLXF.CD.MA.AR.OC.US
## 4138                         DT.DOD.DLXF.CD.MA.AR.PX.US
## 4139                         DT.DOD.DLXF.CD.MA.AR.TR.US
## 4140                            DT.DOD.DLXF.CD.MA.AR.US
## 4141                         DT.DOD.DLXF.CD.MA.TD.MP.US
## 4142                         DT.DOD.DLXF.CD.MA.TD.MV.US
## 4143                         DT.DOD.DLXF.CD.MA.TD.NV.US
## 4144                               DT.DOD.DLXF.CD.NC.US
## 4145                               DT.DOD.DLXF.CD.OF.US
## 4146                         DT.DOD.DLXF.CD.OT.AR.BE.US
## 4147                         DT.DOD.DLXF.CD.OT.AR.EA.US
## 4148                         DT.DOD.DLXF.CD.OT.AR.EN.US
## 4149                         DT.DOD.DLXF.CD.OT.AR.EX.US
## 4150                         DT.DOD.DLXF.CD.OT.AR.GE.US
## 4151                         DT.DOD.DLXF.CD.OT.AR.NE.US
## 4152                         DT.DOD.DLXF.CD.OT.AR.OC.US
## 4153                         DT.DOD.DLXF.CD.OT.AR.PX.US
## 4154                         DT.DOD.DLXF.CD.OT.AR.TR.US
## 4155                            DT.DOD.DLXF.CD.OT.AR.US
## 4156                         DT.DOD.DLXF.CD.OT.TD.MP.US
## 4157                         DT.DOD.DLXF.CD.OT.TD.MV.US
## 4158                         DT.DOD.DLXF.CD.OT.TD.NV.US
## 4159                                  DT.DOD.DLXF.CD.US
## 4160                               DT.DOD.DLXF.PR.DS.US
## 4161                               DT.DOD.DLXF.PU.DS.US
## 4162                              DT.DOD.DLXF.PV.GNP.ZS
## 4163                              DT.DOD.DLXF.PV.XGS.ZS
## 4164                                     DT.DOD.DOPS.CD
## 4165                                     DT.DOD.DPNG.CD
## 4166                               DT.DOD.DPNG.CD.AR.US
## 4167                               DT.DOD.DPNG.CD.LT.US
## 4168                               DT.DOD.DPNG.CD.ST.US
## 4169                                  DT.DOD.DPNG.CD.US
## 4170                                     DT.DOD.DPNG.ZS
## 4171                            DT.DOD.DPPC.CD.DT.T5.US
## 4172                               DT.DOD.DPPC.CD.TO.US
## 4173                                  DT.DOD.DPPG.AR.US
## 4174                                     DT.DOD.DPPG.CD
## 4175                               DT.DOD.DPPG.CD.AR.US
## 4176                                  DT.DOD.DPPG.DS.US
## 4177                         DT.DOD.DSCD.CD.CB.AR.BE.US
## 4178                         DT.DOD.DSCD.CD.CB.AR.EA.US
## 4179                         DT.DOD.DSCD.CD.CB.AR.EN.US
## 4180                         DT.DOD.DSCD.CD.CB.AR.EX.US
## 4181                         DT.DOD.DSCD.CD.CB.AR.GE.US
## 4182                         DT.DOD.DSCD.CD.CB.AR.NE.US
## 4183                         DT.DOD.DSCD.CD.CB.AR.OC.US
## 4184                         DT.DOD.DSCD.CD.CB.AR.PX.US
## 4185                         DT.DOD.DSCD.CD.CB.AR.TR.US
## 4186                            DT.DOD.DSCD.CD.CB.AR.US
## 4187                         DT.DOD.DSCD.CD.GG.AR.BE.US
## 4188                         DT.DOD.DSCD.CD.GG.AR.EA.US
## 4189                         DT.DOD.DSCD.CD.GG.AR.EN.US
## 4190                         DT.DOD.DSCD.CD.GG.AR.EX.US
## 4191                         DT.DOD.DSCD.CD.GG.AR.GE.US
## 4192                         DT.DOD.DSCD.CD.GG.AR.NE.US
## 4193                         DT.DOD.DSCD.CD.GG.AR.OC.US
## 4194                         DT.DOD.DSCD.CD.GG.AR.PX.US
## 4195                         DT.DOD.DSCD.CD.GG.AR.TR.US
## 4196                            DT.DOD.DSCD.CD.GG.AR.US
## 4197                               DT.DOD.DSCD.CD.HN.US
## 4198                         DT.DOD.DSCD.CD.MA.AR.BE.US
## 4199                         DT.DOD.DSCD.CD.MA.AR.EA.US
## 4200                         DT.DOD.DSCD.CD.MA.AR.EN.US
## 4201                         DT.DOD.DSCD.CD.MA.AR.EX.US
## 4202                         DT.DOD.DSCD.CD.MA.AR.GE.US
## 4203                         DT.DOD.DSCD.CD.MA.AR.NE.US
## 4204                         DT.DOD.DSCD.CD.MA.AR.OC.US
## 4205                         DT.DOD.DSCD.CD.MA.AR.PX.US
## 4206                         DT.DOD.DSCD.CD.MA.AR.TR.US
## 4207                            DT.DOD.DSCD.CD.MA.AR.US
## 4208                               DT.DOD.DSCD.CD.NC.US
## 4209                               DT.DOD.DSCD.CD.OF.US
## 4210                         DT.DOD.DSCD.CD.OT.AR.BE.US
## 4211                         DT.DOD.DSCD.CD.OT.AR.EA.US
## 4212                         DT.DOD.DSCD.CD.OT.AR.EN.US
## 4213                         DT.DOD.DSCD.CD.OT.AR.EX.US
## 4214                         DT.DOD.DSCD.CD.OT.AR.GE.US
## 4215                         DT.DOD.DSCD.CD.OT.AR.NE.US
## 4216                         DT.DOD.DSCD.CD.OT.AR.OC.US
## 4217                         DT.DOD.DSCD.CD.OT.AR.PX.US
## 4218                         DT.DOD.DSCD.CD.OT.AR.TR.US
## 4219                            DT.DOD.DSCD.CD.OT.AR.US
## 4220                                     DT.DOD.DSDR.CD
## 4221                         DT.DOD.DSOO.CD.CB.AR.BE.US
## 4222                         DT.DOD.DSOO.CD.CB.AR.EA.US
## 4223                         DT.DOD.DSOO.CD.CB.AR.EN.US
## 4224                         DT.DOD.DSOO.CD.CB.AR.EX.US
## 4225                         DT.DOD.DSOO.CD.CB.AR.GE.US
## 4226                         DT.DOD.DSOO.CD.CB.AR.NE.US
## 4227                         DT.DOD.DSOO.CD.CB.AR.OC.US
## 4228                         DT.DOD.DSOO.CD.CB.AR.PX.US
## 4229                         DT.DOD.DSOO.CD.CB.AR.TR.US
## 4230                            DT.DOD.DSOO.CD.CB.AR.US
## 4231                         DT.DOD.DSOO.CD.GG.AR.BE.US
## 4232                         DT.DOD.DSOO.CD.GG.AR.EA.US
## 4233                         DT.DOD.DSOO.CD.GG.AR.EN.US
## 4234                         DT.DOD.DSOO.CD.GG.AR.EX.US
## 4235                         DT.DOD.DSOO.CD.GG.AR.GE.US
## 4236                         DT.DOD.DSOO.CD.GG.AR.NE.US
## 4237                         DT.DOD.DSOO.CD.GG.AR.OC.US
## 4238                         DT.DOD.DSOO.CD.GG.AR.PX.US
## 4239                         DT.DOD.DSOO.CD.GG.AR.TR.US
## 4240                            DT.DOD.DSOO.CD.GG.AR.US
## 4241                         DT.DOD.DSOO.CD.MA.AR.BE.US
## 4242                         DT.DOD.DSOO.CD.MA.AR.EA.US
## 4243                         DT.DOD.DSOO.CD.MA.AR.EN.US
## 4244                         DT.DOD.DSOO.CD.MA.AR.EX.US
## 4245                         DT.DOD.DSOO.CD.MA.AR.GE.US
## 4246                         DT.DOD.DSOO.CD.MA.AR.NE.US
## 4247                         DT.DOD.DSOO.CD.MA.AR.OC.US
## 4248                         DT.DOD.DSOO.CD.MA.AR.PX.US
## 4249                         DT.DOD.DSOO.CD.MA.AR.TR.US
## 4250                            DT.DOD.DSOO.CD.MA.AR.US
## 4251                         DT.DOD.DSOO.CD.OT.AR.BE.US
## 4252                         DT.DOD.DSOO.CD.OT.AR.EA.US
## 4253                         DT.DOD.DSOO.CD.OT.AR.EN.US
## 4254                         DT.DOD.DSOO.CD.OT.AR.EX.US
## 4255                         DT.DOD.DSOO.CD.OT.AR.GE.US
## 4256                         DT.DOD.DSOO.CD.OT.AR.NE.US
## 4257                         DT.DOD.DSOO.CD.OT.AR.OC.US
## 4258                         DT.DOD.DSOO.CD.OT.AR.PX.US
## 4259                         DT.DOD.DSOO.CD.OT.AR.TR.US
## 4260                            DT.DOD.DSOO.CD.OT.AR.US
## 4261                                     DT.DOD.DSTC.CD
## 4262                         DT.DOD.DSTC.CD.CB.AR.BE.US
## 4263                         DT.DOD.DSTC.CD.CB.AR.EA.US
## 4264                         DT.DOD.DSTC.CD.CB.AR.EN.US
## 4265                         DT.DOD.DSTC.CD.CB.AR.EX.US
## 4266                         DT.DOD.DSTC.CD.CB.AR.GE.US
## 4267                         DT.DOD.DSTC.CD.CB.AR.NE.US
## 4268                         DT.DOD.DSTC.CD.CB.AR.OC.US
## 4269                         DT.DOD.DSTC.CD.CB.AR.PX.US
## 4270                         DT.DOD.DSTC.CD.CB.AR.TR.US
## 4271                            DT.DOD.DSTC.CD.CB.AR.US
## 4272                         DT.DOD.DSTC.CD.CB.TD.MP.US
## 4273                         DT.DOD.DSTC.CD.CB.TD.MV.US
## 4274                         DT.DOD.DSTC.CD.CB.TD.NV.US
## 4275                            DT.DOD.DSTC.CD.DC.T5.US
## 4276                               DT.DOD.DSTC.CD.DC.US
## 4277                                  DT.DOD.DSTC.CD.DR
## 4278                         DT.DOD.DSTC.CD.FC.CB.EU.US
## 4279                         DT.DOD.DSTC.CD.FC.CB.JY.US
## 4280                         DT.DOD.DSTC.CD.FC.CB.OT.US
## 4281                         DT.DOD.DSTC.CD.FC.CB.TO.US
## 4282                         DT.DOD.DSTC.CD.FC.CB.US.US
## 4283                         DT.DOD.DSTC.CD.FC.GG.EU.US
## 4284                         DT.DOD.DSTC.CD.FC.GG.JY.US
## 4285                         DT.DOD.DSTC.CD.FC.GG.OT.US
## 4286                         DT.DOD.DSTC.CD.FC.GG.TO.US
## 4287                         DT.DOD.DSTC.CD.FC.GG.US.US
## 4288                         DT.DOD.DSTC.CD.FC.MA.EU.US
## 4289                         DT.DOD.DSTC.CD.FC.MA.JY.US
## 4290                         DT.DOD.DSTC.CD.FC.MA.OT.US
## 4291                         DT.DOD.DSTC.CD.FC.MA.TO.US
## 4292                         DT.DOD.DSTC.CD.FC.MA.US.US
## 4293                         DT.DOD.DSTC.CD.FC.OT.EU.US
## 4294                         DT.DOD.DSTC.CD.FC.OT.JY.US
## 4295                         DT.DOD.DSTC.CD.FC.OT.OT.US
## 4296                         DT.DOD.DSTC.CD.FC.OT.TO.US
## 4297                         DT.DOD.DSTC.CD.FC.OT.US.US
## 4298                            DT.DOD.DSTC.CD.FC.T5.US
## 4299                               DT.DOD.DSTC.CD.FC.US
## 4300                         DT.DOD.DSTC.CD.GG.AR.BE.US
## 4301                         DT.DOD.DSTC.CD.GG.AR.EA.US
## 4302                         DT.DOD.DSTC.CD.GG.AR.EN.US
## 4303                         DT.DOD.DSTC.CD.GG.AR.EX.US
## 4304                         DT.DOD.DSTC.CD.GG.AR.GE.US
## 4305                         DT.DOD.DSTC.CD.GG.AR.NE.US
## 4306                         DT.DOD.DSTC.CD.GG.AR.OC.US
## 4307                         DT.DOD.DSTC.CD.GG.AR.PX.US
## 4308                         DT.DOD.DSTC.CD.GG.AR.TR.US
## 4309                            DT.DOD.DSTC.CD.GG.AR.US
## 4310                         DT.DOD.DSTC.CD.GG.TD.MP.US
## 4311                         DT.DOD.DSTC.CD.GG.TD.MV.US
## 4312                         DT.DOD.DSTC.CD.GG.TD.NV.US
## 4313                               DT.DOD.DSTC.CD.HN.US
## 4314                         DT.DOD.DSTC.CD.MA.AR.BE.US
## 4315                         DT.DOD.DSTC.CD.MA.AR.EA.US
## 4316                         DT.DOD.DSTC.CD.MA.AR.EN.US
## 4317                         DT.DOD.DSTC.CD.MA.AR.EX.US
## 4318                         DT.DOD.DSTC.CD.MA.AR.GE.US
## 4319                         DT.DOD.DSTC.CD.MA.AR.NE.US
## 4320                         DT.DOD.DSTC.CD.MA.AR.OC.US
## 4321                         DT.DOD.DSTC.CD.MA.AR.PX.US
## 4322                         DT.DOD.DSTC.CD.MA.AR.TR.US
## 4323                            DT.DOD.DSTC.CD.MA.AR.US
## 4324                         DT.DOD.DSTC.CD.MA.TD.MP.US
## 4325                         DT.DOD.DSTC.CD.MA.TD.MV.US
## 4326                         DT.DOD.DSTC.CD.MA.TD.NV.US
## 4327                               DT.DOD.DSTC.CD.NC.US
## 4328                               DT.DOD.DSTC.CD.OF.US
## 4329                         DT.DOD.DSTC.CD.OT.AR.BE.US
## 4330                         DT.DOD.DSTC.CD.OT.AR.EA.US
## 4331                         DT.DOD.DSTC.CD.OT.AR.EN.US
## 4332                         DT.DOD.DSTC.CD.OT.AR.EX.US
## 4333                         DT.DOD.DSTC.CD.OT.AR.GE.US
## 4334                         DT.DOD.DSTC.CD.OT.AR.NE.US
## 4335                         DT.DOD.DSTC.CD.OT.AR.OC.US
## 4336                         DT.DOD.DSTC.CD.OT.AR.PX.US
## 4337                         DT.DOD.DSTC.CD.OT.AR.TR.US
## 4338                            DT.DOD.DSTC.CD.OT.AR.US
## 4339                                  DT.DOD.DSTC.CD.US
## 4340                                  DT.DOD.DSTC.IR.ZS
## 4341                               DT.DOD.DSTC.PR.DS.US
## 4342                               DT.DOD.DSTC.PU.DS.US
## 4343                                  DT.DOD.DSTC.XP.ZS
## 4344                                     DT.DOD.DSTC.ZS
## 4345                         DT.DOD.DSTL.CD.CB.AR.BE.US
## 4346                         DT.DOD.DSTL.CD.CB.AR.EA.US
## 4347                         DT.DOD.DSTL.CD.CB.AR.EN.US
## 4348                         DT.DOD.DSTL.CD.CB.AR.EX.US
## 4349                         DT.DOD.DSTL.CD.CB.AR.GE.US
## 4350                         DT.DOD.DSTL.CD.CB.AR.NE.US
## 4351                         DT.DOD.DSTL.CD.CB.AR.OC.US
## 4352                         DT.DOD.DSTL.CD.CB.AR.PX.US
## 4353                         DT.DOD.DSTL.CD.CB.AR.TR.US
## 4354                            DT.DOD.DSTL.CD.CB.AR.US
## 4355                         DT.DOD.DSTL.CD.GG.AR.BE.US
## 4356                         DT.DOD.DSTL.CD.GG.AR.EA.US
## 4357                         DT.DOD.DSTL.CD.GG.AR.EN.US
## 4358                         DT.DOD.DSTL.CD.GG.AR.EX.US
## 4359                         DT.DOD.DSTL.CD.GG.AR.GE.US
## 4360                         DT.DOD.DSTL.CD.GG.AR.NE.US
## 4361                         DT.DOD.DSTL.CD.GG.AR.OC.US
## 4362                         DT.DOD.DSTL.CD.GG.AR.PX.US
## 4363                         DT.DOD.DSTL.CD.GG.AR.TR.US
## 4364                            DT.DOD.DSTL.CD.GG.AR.US
## 4365                               DT.DOD.DSTL.CD.HN.US
## 4366                         DT.DOD.DSTL.CD.MA.AR.BE.US
## 4367                         DT.DOD.DSTL.CD.MA.AR.EA.US
## 4368                         DT.DOD.DSTL.CD.MA.AR.EN.US
## 4369                         DT.DOD.DSTL.CD.MA.AR.EX.US
## 4370                         DT.DOD.DSTL.CD.MA.AR.GE.US
## 4371                         DT.DOD.DSTL.CD.MA.AR.NE.US
## 4372                         DT.DOD.DSTL.CD.MA.AR.OC.US
## 4373                         DT.DOD.DSTL.CD.MA.AR.PX.US
## 4374                         DT.DOD.DSTL.CD.MA.AR.TR.US
## 4375                            DT.DOD.DSTL.CD.MA.AR.US
## 4376                               DT.DOD.DSTL.CD.NC.US
## 4377                               DT.DOD.DSTL.CD.OF.US
## 4378                         DT.DOD.DSTL.CD.OT.AR.BE.US
## 4379                         DT.DOD.DSTL.CD.OT.AR.EA.US
## 4380                         DT.DOD.DSTL.CD.OT.AR.EN.US
## 4381                         DT.DOD.DSTL.CD.OT.AR.EX.US
## 4382                         DT.DOD.DSTL.CD.OT.AR.GE.US
## 4383                         DT.DOD.DSTL.CD.OT.AR.NE.US
## 4384                         DT.DOD.DSTL.CD.OT.AR.OC.US
## 4385                         DT.DOD.DSTL.CD.OT.AR.PX.US
## 4386                         DT.DOD.DSTL.CD.OT.AR.TR.US
## 4387                            DT.DOD.DSTL.CD.OT.AR.US
## 4388                         DT.DOD.DSTM.CD.CB.AR.BE.US
## 4389                         DT.DOD.DSTM.CD.CB.AR.EA.US
## 4390                         DT.DOD.DSTM.CD.CB.AR.EN.US
## 4391                         DT.DOD.DSTM.CD.CB.AR.EX.US
## 4392                         DT.DOD.DSTM.CD.CB.AR.GE.US
## 4393                         DT.DOD.DSTM.CD.CB.AR.NE.US
## 4394                         DT.DOD.DSTM.CD.CB.AR.OC.US
## 4395                         DT.DOD.DSTM.CD.CB.AR.PX.US
## 4396                         DT.DOD.DSTM.CD.CB.AR.TR.US
## 4397                            DT.DOD.DSTM.CD.CB.AR.US
## 4398                         DT.DOD.DSTM.CD.GG.AR.BE.US
## 4399                         DT.DOD.DSTM.CD.GG.AR.EA.US
## 4400                         DT.DOD.DSTM.CD.GG.AR.EN.US
## 4401                         DT.DOD.DSTM.CD.GG.AR.EX.US
## 4402                         DT.DOD.DSTM.CD.GG.AR.GE.US
## 4403                         DT.DOD.DSTM.CD.GG.AR.NE.US
## 4404                         DT.DOD.DSTM.CD.GG.AR.OC.US
## 4405                         DT.DOD.DSTM.CD.GG.AR.PX.US
## 4406                         DT.DOD.DSTM.CD.GG.AR.TR.US
## 4407                            DT.DOD.DSTM.CD.GG.AR.US
## 4408                               DT.DOD.DSTM.CD.HN.US
## 4409                         DT.DOD.DSTM.CD.MA.AR.BE.US
## 4410                         DT.DOD.DSTM.CD.MA.AR.EA.US
## 4411                         DT.DOD.DSTM.CD.MA.AR.EN.US
## 4412                         DT.DOD.DSTM.CD.MA.AR.EX.US
## 4413                         DT.DOD.DSTM.CD.MA.AR.GE.US
## 4414                         DT.DOD.DSTM.CD.MA.AR.NE.US
## 4415                         DT.DOD.DSTM.CD.MA.AR.OC.US
## 4416                         DT.DOD.DSTM.CD.MA.AR.PX.US
## 4417                         DT.DOD.DSTM.CD.MA.AR.TR.US
## 4418                            DT.DOD.DSTM.CD.MA.AR.US
## 4419                               DT.DOD.DSTM.CD.NC.US
## 4420                               DT.DOD.DSTM.CD.OF.US
## 4421                         DT.DOD.DSTM.CD.OT.AR.BE.US
## 4422                         DT.DOD.DSTM.CD.OT.AR.EA.US
## 4423                         DT.DOD.DSTM.CD.OT.AR.EN.US
## 4424                         DT.DOD.DSTM.CD.OT.AR.EX.US
## 4425                         DT.DOD.DSTM.CD.OT.AR.GE.US
## 4426                         DT.DOD.DSTM.CD.OT.AR.NE.US
## 4427                         DT.DOD.DSTM.CD.OT.AR.OC.US
## 4428                         DT.DOD.DSTM.CD.OT.AR.PX.US
## 4429                         DT.DOD.DSTM.CD.OT.AR.TR.US
## 4430                            DT.DOD.DSTM.CD.OT.AR.US
## 4431                               DT.DOD.DSTO.CD.HN.US
## 4432                               DT.DOD.DSTO.CD.NC.US
## 4433                               DT.DOD.DSTO.CD.OF.US
## 4434                         DT.DOD.DSTT.CD.CB.AR.BE.US
## 4435                         DT.DOD.DSTT.CD.CB.AR.EA.US
## 4436                         DT.DOD.DSTT.CD.CB.AR.EN.US
## 4437                         DT.DOD.DSTT.CD.CB.AR.EX.US
## 4438                         DT.DOD.DSTT.CD.CB.AR.GE.US
## 4439                         DT.DOD.DSTT.CD.CB.AR.NE.US
## 4440                         DT.DOD.DSTT.CD.CB.AR.OC.US
## 4441                         DT.DOD.DSTT.CD.CB.AR.PX.US
## 4442                         DT.DOD.DSTT.CD.CB.AR.TR.US
## 4443                            DT.DOD.DSTT.CD.CB.AR.US
## 4444                         DT.DOD.DSTT.CD.GG.AR.BE.US
## 4445                         DT.DOD.DSTT.CD.GG.AR.EA.US
## 4446                         DT.DOD.DSTT.CD.GG.AR.EN.US
## 4447                         DT.DOD.DSTT.CD.GG.AR.EX.US
## 4448                         DT.DOD.DSTT.CD.GG.AR.GE.US
## 4449                         DT.DOD.DSTT.CD.GG.AR.NE.US
## 4450                         DT.DOD.DSTT.CD.GG.AR.OC.US
## 4451                         DT.DOD.DSTT.CD.GG.AR.PX.US
## 4452                         DT.DOD.DSTT.CD.GG.AR.TR.US
## 4453                            DT.DOD.DSTT.CD.GG.AR.US
## 4454                               DT.DOD.DSTT.CD.HN.US
## 4455                         DT.DOD.DSTT.CD.MA.AR.BE.US
## 4456                         DT.DOD.DSTT.CD.MA.AR.EA.US
## 4457                         DT.DOD.DSTT.CD.MA.AR.EN.US
## 4458                         DT.DOD.DSTT.CD.MA.AR.EX.US
## 4459                         DT.DOD.DSTT.CD.MA.AR.GE.US
## 4460                         DT.DOD.DSTT.CD.MA.AR.NE.US
## 4461                         DT.DOD.DSTT.CD.MA.AR.OC.US
## 4462                         DT.DOD.DSTT.CD.MA.AR.PX.US
## 4463                         DT.DOD.DSTT.CD.MA.AR.TR.US
## 4464                            DT.DOD.DSTT.CD.MA.AR.US
## 4465                               DT.DOD.DSTT.CD.NC.US
## 4466                               DT.DOD.DSTT.CD.OF.US
## 4467                         DT.DOD.DSTT.CD.OT.AR.BE.US
## 4468                         DT.DOD.DSTT.CD.OT.AR.EA.US
## 4469                         DT.DOD.DSTT.CD.OT.AR.EN.US
## 4470                         DT.DOD.DSTT.CD.OT.AR.EX.US
## 4471                         DT.DOD.DSTT.CD.OT.AR.GE.US
## 4472                         DT.DOD.DSTT.CD.OT.AR.NE.US
## 4473                         DT.DOD.DSTT.CD.OT.AR.OC.US
## 4474                         DT.DOD.DSTT.CD.OT.AR.PX.US
## 4475                         DT.DOD.DSTT.CD.OT.AR.TR.US
## 4476                            DT.DOD.DSTT.CD.OT.AR.US
## 4477                         DT.DOD.DSTT.CD.OT.TD.MP.US
## 4478                         DT.DOD.DSTT.CD.OT.TD.MV.US
## 4479                         DT.DOD.DSTT.CD.OT.TD.NV.US
## 4480                         DT.DOD.DSUN.CD.GG.AR.EA.US
## 4481                         DT.DOD.DSUN.CD.GG.AR.GE.US
## 4482                         DT.DOD.DSUN.CD.GG.AR.NE.US
## 4483                         DT.DOD.DSUN.CD.MA.AR.EA.US
## 4484                         DT.DOD.DSUN.CD.MA.AR.GE.US
## 4485                         DT.DOD.DSUN.CD.MA.AR.NE.US
## 4486                            DT.DOD.LOLT.CD.PR.AR.US
## 4487                            DT.DOD.LOLT.CD.PU.AR.US
## 4488                            DT.DOD.LOST.CD.PR.AR.US
## 4489                            DT.DOD.LOST.CD.PU.AR.US
## 4490                                     DT.DOD.LTST.CD
## 4491                                     DT.DOD.MDRI.CD
## 4492                                     DT.DOD.MIBR.CD
## 4493                                     DT.DOD.MIDA.CD
## 4494                                  DT.DOD.MLAT.CB.CD
## 4495                                     DT.DOD.MLAT.CD
## 4496                                  DT.DOD.MLAT.GG.CD
## 4497                                 DT.DOD.MLAT.OPS.CD
## 4498                                DT.DOD.MLAT.PRVG.CD
## 4499                                  DT.DOD.MLAT.PS.CD
## 4500                                     DT.DOD.MLAT.ZS
## 4501                                  DT.DOD.MLTC.CB.CD
## 4502                                     DT.DOD.MLTC.CD
## 4503                                  DT.DOD.MLTC.GG.CD
## 4504                                 DT.DOD.MLTC.OPS.CD
## 4505                                DT.DOD.MLTC.PRVG.CD
## 4506                                  DT.DOD.MLTC.PS.CD
## 4507                                     DT.DOD.MLTN.CD
## 4508                            DT.DOD.MMST.CD.PR.AR.US
## 4509                            DT.DOD.MMST.CD.PU.AR.US
## 4510                                     DT.DOD.MWBG.CD
## 4511                                  DT.DOD.OFFT.CB.CD
## 4512                                     DT.DOD.OFFT.CD
## 4513                            DT.DOD.OFFT.CD.PR.AR.US
## 4514                            DT.DOD.OFFT.CD.PU.AR.US
## 4515                                  DT.DOD.OFFT.GG.CD
## 4516                                 DT.DOD.OFFT.OPS.CD
## 4517                               DT.DOD.OFFT.PR.AR.US
## 4518                               DT.DOD.OFFT.PR.DS.US
## 4519                            DT.DOD.OFFT.PR.IN.AR.US
## 4520                            DT.DOD.OFFT.PR.PR.AR.US
## 4521                                DT.DOD.OFFT.PRVG.CD
## 4522                                  DT.DOD.OFFT.PS.CD
## 4523                               DT.DOD.OFFT.PU.AR.US
## 4524                               DT.DOD.OFFT.PU.DS.US
## 4525                            DT.DOD.OFFT.PU.IN.AR.US
## 4526                            DT.DOD.OFFT.PU.PR.AR.US
## 4527                            DT.DOD.OLLT.CD.PR.AR.US
## 4528                            DT.DOD.OLLT.CD.PU.AR.US
## 4529                            DT.DOD.OOST.CD.PR.AR.US
## 4530                            DT.DOD.OOST.CD.PU.AR.US
## 4531                                  DT.DOD.PBND.CB.CD
## 4532                                     DT.DOD.PBND.CD
## 4533                                  DT.DOD.PBND.GG.CD
## 4534                                 DT.DOD.PBND.OPS.CD
## 4535                                DT.DOD.PBND.PRVG.CD
## 4536                                  DT.DOD.PBND.PS.CD
## 4537                                  DT.DOD.PCBK.CB.CD
## 4538                                     DT.DOD.PCBK.CD
## 4539                                  DT.DOD.PCBK.GG.CD
## 4540                                 DT.DOD.PCBK.OPS.CD
## 4541                                DT.DOD.PCBK.PRVG.CD
## 4542                                  DT.DOD.PCBK.PS.CD
## 4543                                     DT.DOD.PCCR.US
## 4544                                  DT.DOD.PCPR.LT.US
## 4545                                  DT.DOD.PCPR.ST.US
## 4546                                     DT.DOD.PCPR.US
## 4547                                  DT.DOD.PCPU.LT.US
## 4548                                  DT.DOD.PCPU.ST.US
## 4549                                     DT.DOD.PCPU.US
## 4550                                     DT.DOD.PGNG.CD
## 4551                                     DT.DOD.PNGB.CD
## 4552                                     DT.DOD.PNGC.CD
## 4553                                  DT.DOD.PRAE.IL.US
## 4554                               DT.DOD.PRBA.CD.LT.US
## 4555                               DT.DOD.PRBA.CD.ST.US
## 4556                                  DT.DOD.PRBA.CD.US
## 4557                               DT.DOD.PRBL.CD.LT.US
## 4558                               DT.DOD.PRBL.CD.ST.US
## 4559                                  DT.DOD.PRBL.CD.US
## 4560                               DT.DOD.PRBN.LT.AR.US
## 4561                               DT.DOD.PRCD.LT.AR.US
## 4562                               DT.DOD.PRCD.ST.AR.US
## 4563                                  DT.DOD.PRDI.IL.US
## 4564                                  DT.DOD.PRFE.IL.US
## 4565                               DT.DOD.PRLO.LT.AR.US
## 4566                               DT.DOD.PRLO.ST.AR.US
## 4567                            DT.DOD.PRLT.CD.PR.AR.US
## 4568                               DT.DOD.PRMM.ST.AR.US
## 4569                               DT.DOD.PRMU.CD.LT.US
## 4570                               DT.DOD.PRMU.CD.ST.US
## 4571                                  DT.DOD.PRMU.CD.US
## 4572                               DT.DOD.PROD.LT.AR.US
## 4573                               DT.DOD.PROD.ST.AR.US
## 4574                                  DT.DOD.PROP.CB.CD
## 4575                                     DT.DOD.PROP.CD
## 4576                                  DT.DOD.PROP.GG.CD
## 4577                                 DT.DOD.PROP.OPS.CD
## 4578                                DT.DOD.PROP.PRVG.CD
## 4579                                  DT.DOD.PROP.PS.CD
## 4580                               DT.DOD.PROT.CD.LT.US
## 4581                               DT.DOD.PROT.CD.ST.US
## 4582                                  DT.DOD.PROT.CD.US
## 4583                                     DT.DOD.PRPG.CD
## 4584                            DT.DOD.PRST.CD.PR.AR.US
## 4585                               DT.DOD.PRTC.LT.AR.US
## 4586                               DT.DOD.PRTC.ST.AR.US
## 4587                               DT.DOD.PRTD.CD.LT.US
## 4588                               DT.DOD.PRTD.CD.ST.US
## 4589                                  DT.DOD.PRTD.CD.US
## 4590                               DT.DOD.PRVS.AR.T4.US
## 4591                                     DT.DOD.PRVS.CD
## 4592                               DT.DOD.PRVS.CD.AR.US
## 4593                               DT.DOD.PRVS.CD.LT.US
## 4594                               DT.DOD.PRVS.CD.ST.US
## 4595                               DT.DOD.PRVS.CD.T3.US
## 4596                                  DT.DOD.PRVS.CD.US
## 4597                                  DT.DOD.PRVS.DI.US
## 4598                            DT.DOD.PRVS.DS.LT.T4.US
## 4599                            DT.DOD.PRVS.DS.ST.T4.US
## 4600                               DT.DOD.PRVS.DS.T4.US
## 4601                               DT.DOD.PRVS.IR.T4.US
## 4602                               DT.DOD.PRVS.LT.TO.US
## 4603                               DT.DOD.PRVS.PR.T4.US
## 4604                               DT.DOD.PRVS.ST.AR.US
## 4605                               DT.DOD.PRVS.TO.T4.US
## 4606                                  DT.DOD.PRVT.CB.CD
## 4607                                     DT.DOD.PRVT.CD
## 4608                                  DT.DOD.PRVT.GG.CD
## 4609                                 DT.DOD.PRVT.OPS.CD
## 4610                                DT.DOD.PRVT.PRVG.CD
## 4611                                  DT.DOD.PRVT.PS.CD
## 4612                               DT.DOD.PSDR.LT.AR.US
## 4613                                  DT.DOD.PUAE.IL.US
## 4614                               DT.DOD.PUBA.CD.LT.US
## 4615                               DT.DOD.PUBA.CD.ST.US
## 4616                                  DT.DOD.PUBA.CD.US
## 4617                               DT.DOD.PUBL.CD.LT.US
## 4618                               DT.DOD.PUBL.CD.ST.US
## 4619                                  DT.DOD.PUBL.CD.US
## 4620                               DT.DOD.PUBN.LT.AR.US
## 4621                               DT.DOD.PUBS.AR.T4.US
## 4622                                     DT.DOD.PUBS.CD
## 4623                               DT.DOD.PUBS.CD.AR.US
## 4624                               DT.DOD.PUBS.CD.LT.US
## 4625                               DT.DOD.PUBS.CD.ST.US
## 4626                               DT.DOD.PUBS.CD.T3.US
## 4627                                  DT.DOD.PUBS.CD.US
## 4628                                  DT.DOD.PUBS.DI.US
## 4629                            DT.DOD.PUBS.DS.LT.T4.US
## 4630                            DT.DOD.PUBS.DS.ST.T4.US
## 4631                               DT.DOD.PUBS.DS.T4.US
## 4632                               DT.DOD.PUBS.IR.T4.US
## 4633                               DT.DOD.PUBS.LT.TO.US
## 4634                               DT.DOD.PUBS.PR.T4.US
## 4635                               DT.DOD.PUBS.ST.AR.US
## 4636                               DT.DOD.PUBS.TO.T4.US
## 4637                               DT.DOD.PUCD.LT.AR.US
## 4638                               DT.DOD.PUCD.ST.AR.US
## 4639                                  DT.DOD.PUDI.IL.US
## 4640                                  DT.DOD.PUFE.IL.US
## 4641                               DT.DOD.PULO.LT.AR.US
## 4642                               DT.DOD.PULO.ST.AR.US
## 4643                            DT.DOD.PULT.CD.PU.AR.US
## 4644                               DT.DOD.PUMM.ST.AR.US
## 4645                               DT.DOD.PUMU.CD.LT.US
## 4646                               DT.DOD.PUMU.CD.ST.US
## 4647                                  DT.DOD.PUMU.CD.US
## 4648                               DT.DOD.PUOD.LT.AR.US
## 4649                               DT.DOD.PUOO.ST.AR.US
## 4650                               DT.DOD.PUOT.CD.LT.US
## 4651                               DT.DOD.PUOT.CD.ST.US
## 4652                                  DT.DOD.PUOT.CD.US
## 4653                            DT.DOD.PUST.CD.PU.AR.US
## 4654                               DT.DOD.PUTC.LT.AR.US
## 4655                               DT.DOD.PUTC.ST.AR.US
## 4656                               DT.DOD.PUTD.CD.LT.US
## 4657                               DT.DOD.PUTD.CD.ST.US
## 4658                                  DT.DOD.PUTD.CD.US
## 4659                                     DT.DOD.PVLT.CD
## 4660                                     DT.DOD.PVLX.CD
## 4661                                  DT.DOD.PVLX.EX.ZS
## 4662                                  DT.DOD.PVLX.GN.ZS
## 4663                                  DT.DOD.PVLX.ND.ZS
## 4664                                     DT.DOD.RSDL.CD
## 4665                               DT.DOD.SDLT.CD.PU.US
## 4666                            DT.DOD.TCLT.CD.PR.AR.US
## 4667                            DT.DOD.TCLT.CD.PU.AR.US
## 4668                            DT.DOD.TCST.CD.PR.AR.US
## 4669                            DT.DOD.TCST.CD.PU.AR.US
## 4670                                     DT.DOD.VTOT.CD
## 4671                                  DT.DOR.DECT.AR.US
## 4672                               DT.DOR.DECT.CB.AR.US
## 4673                               DT.DOR.DECT.CB.DS.US
## 4674                            DT.DOR.DECT.CD.CB.AR.US
## 4675                            DT.DOR.DECT.CD.GG.AR.US
## 4676                               DT.DOR.DECT.CD.IL.US
## 4677                            DT.DOR.DECT.CD.MA.AR.US
## 4678                            DT.DOR.DECT.CD.OT.AR.US
## 4679                                  DT.DOR.DECT.DS.US
## 4680                               DT.DOR.DECT.GG.AR.US
## 4681                               DT.DOR.DECT.GG.DS.US
## 4682                               DT.DOR.DECT.IL.AR.US
## 4683                               DT.DOR.DECT.MA.AR.US
## 4684                               DT.DOR.DECT.MA.DS.US
## 4685                               DT.DOR.DECT.OT.AR.US
## 4686                               DT.DOR.DECT.OT.DS.US
## 4687                                  DT.DOR.DECT.RL.US
## 4688                               DT.DOR.DIDI.CD.IL.US
## 4689                               DT.DOR.DIFE.CD.IL.US
## 4690                               DT.DOR.DIIE.CD.IL.US
## 4691                            DT.DOR.DLBN.CD.CB.AR.US
## 4692                            DT.DOR.DLBN.CD.GG.AR.US
## 4693                            DT.DOR.DLBN.CD.MA.AR.US
## 4694                            DT.DOR.DLBN.CD.OT.AR.US
## 4695                            DT.DOR.DLCD.CD.CB.AR.US
## 4696                            DT.DOR.DLCD.CD.MA.AR.US
## 4697                            DT.DOR.DLCD.CD.OT.AR.US
## 4698                            DT.DOR.DLTC.CD.GG.AR.US
## 4699                            DT.DOR.DLTL.CD.CB.AR.US
## 4700                            DT.DOR.DLTL.CD.GG.AR.US
## 4701                            DT.DOR.DLTL.CD.MA.AR.US
## 4702                            DT.DOR.DLTL.CD.OT.AR.US
## 4703                            DT.DOR.DLTO.CD.CB.AR.US
## 4704                            DT.DOR.DLTO.CD.GG.AR.US
## 4705                            DT.DOR.DLTO.CD.MA.AR.US
## 4706                            DT.DOR.DLTO.CD.OT.AR.US
## 4707                               DT.DOR.DLTT.CD.CB.US
## 4708                            DT.DOR.DLTT.CD.GG.AR.US
## 4709                            DT.DOR.DLTT.CD.MA.AR.US
## 4710                            DT.DOR.DLTT.CD.OT.AR.US
## 4711                            DT.DOR.DLXF.CD.CB.AR.US
## 4712                            DT.DOR.DLXF.CD.GG.AR.US
## 4713                            DT.DOR.DLXF.CD.MA.AR.US
## 4714                            DT.DOR.DLXF.CD.OT.AR.US
## 4715                            DT.DOR.DSCD.CD.CB.AR.US
## 4716                            DT.DOR.DSCD.CD.GG.AR.US
## 4717                            DT.DOR.DSCD.CD.MA.AR.US
## 4718                            DT.DOR.DSCD.CD.OT.AR.US
## 4719                            DT.DOR.DSOO.CD.CB.AR.US
## 4720                            DT.DOR.DSOO.CD.GG.AR.US
## 4721                            DT.DOR.DSOO.CD.MA.AR.US
## 4722                            DT.DOR.DSOO.CD.OT.AR.US
## 4723                            DT.DOR.DSTC.CD.CB.AR.US
## 4724                            DT.DOR.DSTC.CD.GG.AR.US
## 4725                            DT.DOR.DSTC.CD.IL.AR.US
## 4726                            DT.DOR.DSTC.CD.MA.AR.US
## 4727                            DT.DOR.DSTC.CD.OT.AR.US
## 4728                            DT.DOR.DSTC.CD.RM.AR.US
## 4729                            DT.DOR.DSTL.CD.CB.AR.US
## 4730                            DT.DOR.DSTL.CD.GG.AR.US
## 4731                            DT.DOR.DSTL.CD.MA.AR.US
## 4732                            DT.DOR.DSTL.CD.OT.AR.US
## 4733                            DT.DOR.DSTM.CD.CB.AR.US
## 4734                            DT.DOR.DSTM.CD.GG.AR.US
## 4735                            DT.DOR.DSTM.CD.MA.AR.US
## 4736                            DT.DOR.DSTM.CD.OT.AR.US
## 4737                            DT.DOR.DSTT.CD.CB.AR.US
## 4738                            DT.DOR.DSTT.CD.GG.AR.US
## 4739                            DT.DOR.DSTT.CD.MA.AR.US
## 4740                            DT.DOR.DSTT.CD.OT.AR.US
## 4741                         DT.DOR.LTDI.CD.IL.RM.AR.US
## 4742                            DT.DOR.LTFE.CD.IL.RM.US
## 4743                         DT.DOR.LTIE.CD.IL.RM.AR.US
## 4744                         DT.DOR.LTOT.CD.IL.RM.AR.US
## 4745                                     DT.DSB.DPPG.CD
## 4746                                     DT.DSF.DPPG.CD
## 4747                                     DT.DTA.DLXF.CD
## 4748                                     DT.DTA.OADJ.CD
## 4749                                     DT.DXR.DPPG.CD
## 4750                                        DT.GPA.DPPG
## 4751                                        DT.GPA.OFFT
## 4752                                        DT.GPA.PRVT
## 4753                                        DT.GRE.DPPG
## 4754                                        DT.GRE.OFFT
## 4755                                        DT.GRE.PRVT
## 4756                                     DT.HPC.COMR.PV
## 4757                                     DT.HPC.MDRI.PV
## 4758                                        DT.HPC.STTS
## 4759                                     DT.HPC.TOTL.PV
## 4760                                     DT.INA.DECT.CD
## 4761                                     DT.IND.DEXF.CD
## 4762                         DT.INP.DECT.00.03.MO.SA.US
## 4763                            DT.INP.DECT.03.YR.SA.US
## 4764                         DT.INP.DECT.04.06.MO.SA.US
## 4765                            DT.INP.DECT.04.YR.SA.US
## 4766                         DT.INP.DECT.05.10.YR.SA.US
## 4767                            DT.INP.DECT.05.YR.SA.US
## 4768                         DT.INP.DECT.07.09.MO.SA.US
## 4769                         DT.INP.DECT.10.12.MO.SA.US
## 4770                         DT.INP.DECT.10.15.YR.SA.US
## 4771                         DT.INP.DECT.13.18.MO.SA.US
## 4772                         DT.INP.DECT.19.24.MO.SA.US
## 4773                            DT.INP.DECT.CD.SA.03.US
## 4774                          DT.INP.DECT.CD.SA.0912.US
## 4775                          DT.INP.DECT.CD.SA.1218.US
## 4776                          DT.INP.DECT.CD.SA.1824.US
## 4777                            DT.INP.DECT.CD.SA.36.US
## 4778                            DT.INP.DECT.CD.SA.69.US
## 4779                         DT.INP.DECT.CD.SA.AR.03.US
## 4780                       DT.INP.DECT.CD.SA.AR.0912.US
## 4781                       DT.INP.DECT.CD.SA.AR.1218.US
## 4782                       DT.INP.DECT.CD.SA.AR.1824.US
## 4783                         DT.INP.DECT.CD.SA.AR.36.US
## 4784                         DT.INP.DECT.CD.SA.AR.69.US
## 4785                         DT.INP.DECT.CD.SA.AR.IQ.US
## 4786                            DT.INP.DECT.CD.SA.IQ.US
## 4787                            DT.INP.DECT.IQ.SA.00.US
## 4788                         DT.INR.DECT.00.03.MO.SA.US
## 4789                            DT.INR.DECT.03.YR.SA.US
## 4790                         DT.INR.DECT.04.06.MO.SA.US
## 4791                            DT.INR.DECT.04.YR.SA.US
## 4792                         DT.INR.DECT.05.10.YR.SA.US
## 4793                            DT.INR.DECT.05.YR.SA.US
## 4794                         DT.INR.DECT.07.09.MO.SA.US
## 4795                         DT.INR.DECT.10.12.MO.SA.US
## 4796                         DT.INR.DECT.10.15.YR.SA.US
## 4797                         DT.INR.DECT.13.18.MO.SA.US
## 4798                         DT.INR.DECT.19.24.MO.SA.US
## 4799                            DT.INR.DECT.CD.SA.03.US
## 4800                          DT.INR.DECT.CD.SA.0912.US
## 4801                          DT.INR.DECT.CD.SA.1218.US
## 4802                          DT.INR.DECT.CD.SA.1824.US
## 4803                            DT.INR.DECT.CD.SA.36.US
## 4804                            DT.INR.DECT.CD.SA.69.US
## 4805                         DT.INR.DECT.CD.SA.AR.03.US
## 4806                       DT.INR.DECT.CD.SA.AR.0912.US
## 4807                       DT.INR.DECT.CD.SA.AR.1218.US
## 4808                       DT.INR.DECT.CD.SA.AR.1824.US
## 4809                         DT.INR.DECT.CD.SA.AR.36.US
## 4810                         DT.INR.DECT.CD.SA.AR.69.US
## 4811                         DT.INR.DECT.CD.SA.AR.IQ.US
## 4812                            DT.INR.DECT.CD.SA.IQ.US
## 4813                            DT.INR.DECT.IQ.SA.00.US
## 4814                                        DT.INR.DPPG
## 4815                                        DT.INR.OFFT
## 4816                                        DT.INR.PRVT
## 4817                                  DT.INT.BLAT.CB.CD
## 4818                                     DT.INT.BLAT.CD
## 4819                                  DT.INT.BLAT.GG.CD
## 4820                                 DT.INT.BLAT.OPS.CD
## 4821                                DT.INT.BLAT.PRVG.CD
## 4822                                  DT.INT.BLAT.PS.CD
## 4823                                  DT.INT.BLTC.CB.CD
## 4824                                     DT.INT.BLTC.CD
## 4825                                  DT.INT.BLTC.GG.CD
## 4826                                 DT.INT.BLTC.OPS.CD
## 4827                                DT.INT.BLTC.PRVG.CD
## 4828                                  DT.INT.BLTC.PS.CD
## 4829                            DT.INT.DEAE.CD.IL.03.US
## 4830                          DT.INT.DEAE.CD.IL.0912.US
## 4831                          DT.INT.DEAE.CD.IL.1218.US
## 4832                          DT.INT.DEAE.CD.IL.1824.US
## 4833                           DT.INT.DEAE.CD.IL.24P.US
## 4834                            DT.INT.DEAE.CD.IL.36.US
## 4835                            DT.INT.DEAE.CD.IL.69.US
## 4836                            DT.INT.DEAE.CD.IL.IQ.US
## 4837                                     DT.INT.DECB.CD
## 4838                                     DT.INT.DECT.CD
## 4839                         DT.INT.DECT.CD.00.03.MO.US
## 4840                               DT.INT.DECT.CD.03.US
## 4841                            DT.INT.DECT.CD.03.YR.US
## 4842                         DT.INT.DECT.CD.04.06.MO.US
## 4843                            DT.INT.DECT.CD.04.YR.US
## 4844                         DT.INT.DECT.CD.05.10.YR.US
## 4845                            DT.INT.DECT.CD.05.YR.US
## 4846                         DT.INT.DECT.CD.07.09.MO.US
## 4847                             DT.INT.DECT.CD.0912.US
## 4848                         DT.INT.DECT.CD.10.12.MO.US
## 4849                         DT.INT.DECT.CD.10.15.YR.US
## 4850                             DT.INT.DECT.CD.1218.US
## 4851                         DT.INT.DECT.CD.13.18.MO.US
## 4852                         DT.INT.DECT.CD.15.UP.YR.US
## 4853                             DT.INT.DECT.CD.1824.US
## 4854                         DT.INT.DECT.CD.19.24.MO.US
## 4855                              DT.INT.DECT.CD.24P.US
## 4856                               DT.INT.DECT.CD.36.US
## 4857                               DT.INT.DECT.CD.69.US
## 4858                            DT.INT.DECT.CD.AR.03.US
## 4859                          DT.INT.DECT.CD.AR.0912.US
## 4860                          DT.INT.DECT.CD.AR.1218.US
## 4861                          DT.INT.DECT.CD.AR.1824.US
## 4862                           DT.INT.DECT.CD.AR.24P.US
## 4863                            DT.INT.DECT.CD.AR.36.US
## 4864                            DT.INT.DECT.CD.AR.69.US
## 4865                            DT.INT.DECT.CD.AR.IQ.US
## 4866                            DT.INT.DECT.CD.CB.03.US
## 4867                          DT.INT.DECT.CD.CB.0912.US
## 4868                          DT.INT.DECT.CD.CB.1218.US
## 4869                          DT.INT.DECT.CD.CB.1824.US
## 4870                           DT.INT.DECT.CD.CB.24P.US
## 4871                            DT.INT.DECT.CD.CB.36.US
## 4872                            DT.INT.DECT.CD.CB.69.US
## 4873                            DT.INT.DECT.CD.CB.IQ.US
## 4874                            DT.INT.DECT.CD.CB.RM.US
## 4875                            DT.INT.DECT.CD.GG.03.US
## 4876                          DT.INT.DECT.CD.GG.0912.US
## 4877                          DT.INT.DECT.CD.GG.1218.US
## 4878                          DT.INT.DECT.CD.GG.1824.US
## 4879                           DT.INT.DECT.CD.GG.24P.US
## 4880                            DT.INT.DECT.CD.GG.36.US
## 4881                            DT.INT.DECT.CD.GG.69.US
## 4882                            DT.INT.DECT.CD.GG.IQ.US
## 4883                            DT.INT.DECT.CD.GG.RM.US
## 4884                            DT.INT.DECT.CD.IL.03.US
## 4885                          DT.INT.DECT.CD.IL.0912.US
## 4886                          DT.INT.DECT.CD.IL.1218.US
## 4887                          DT.INT.DECT.CD.IL.1824.US
## 4888                           DT.INT.DECT.CD.IL.24P.US
## 4889                            DT.INT.DECT.CD.IL.36.US
## 4890                            DT.INT.DECT.CD.IL.69.US
## 4891                            DT.INT.DECT.CD.IL.IQ.US
## 4892                            DT.INT.DECT.CD.IL.RM.US
## 4893                            DT.INT.DECT.CD.IQ.00.US
## 4894                               DT.INT.DECT.CD.IQ.US
## 4895                            DT.INT.DECT.CD.MA.03.US
## 4896                          DT.INT.DECT.CD.MA.0912.US
## 4897                          DT.INT.DECT.CD.MA.1218.US
## 4898                          DT.INT.DECT.CD.MA.1824.US
## 4899                           DT.INT.DECT.CD.MA.24P.US
## 4900                            DT.INT.DECT.CD.MA.36.US
## 4901                            DT.INT.DECT.CD.MA.69.US
## 4902                            DT.INT.DECT.CD.MA.IQ.US
## 4903                            DT.INT.DECT.CD.MA.RM.US
## 4904                            DT.INT.DECT.CD.OS.03.US
## 4905                          DT.INT.DECT.CD.OS.0912.US
## 4906                          DT.INT.DECT.CD.OS.1218.US
## 4907                          DT.INT.DECT.CD.OS.1824.US
## 4908                           DT.INT.DECT.CD.OS.24P.US
## 4909                            DT.INT.DECT.CD.OS.36.US
## 4910                            DT.INT.DECT.CD.OS.69.US
## 4911                            DT.INT.DECT.CD.OS.IQ.US
## 4912                            DT.INT.DECT.CD.OS.RM.US
## 4913                               DT.INT.DECT.CD.RM.US
## 4914                                  DT.INT.DECT.EX.ZS
## 4915                                  DT.INT.DECT.GN.ZS
## 4916                            DT.INT.DEFE.CD.IL.03.US
## 4917                          DT.INT.DEFE.CD.IL.0912.US
## 4918                          DT.INT.DEFE.CD.IL.1218.US
## 4919                          DT.INT.DEFE.CD.IL.1824.US
## 4920                           DT.INT.DEFE.CD.IL.24P.US
## 4921                            DT.INT.DEFE.CD.IL.36.US
## 4922                            DT.INT.DEFE.CD.IL.69.US
## 4923                            DT.INT.DEFE.CD.IL.IQ.US
## 4924                                     DT.INT.DEGG.CD
## 4925                                     DT.INT.DEPS.CD
## 4926                            DT.INT.DILD.CD.IL.03.US
## 4927                          DT.INT.DILD.CD.IL.0912.US
## 4928                          DT.INT.DILD.CD.IL.1218.US
## 4929                          DT.INT.DILD.CD.IL.1824.US
## 4930                           DT.INT.DILD.CD.IL.24P.US
## 4931                            DT.INT.DILD.CD.IL.36.US
## 4932                            DT.INT.DILD.CD.IL.69.US
## 4933                            DT.INT.DILD.CD.IL.IQ.US
## 4934                                     DT.INT.DIMF.CD
## 4935                         DT.INT.DLBN.CD.CB.AR.03.US
## 4936                       DT.INT.DLBN.CD.CB.AR.0912.US
## 4937                       DT.INT.DLBN.CD.CB.AR.1218.US
## 4938                       DT.INT.DLBN.CD.CB.AR.1824.US
## 4939                        DT.INT.DLBN.CD.CB.AR.24P.US
## 4940                         DT.INT.DLBN.CD.CB.AR.36.US
## 4941                         DT.INT.DLBN.CD.CB.AR.69.US
## 4942                         DT.INT.DLBN.CD.CB.AR.IQ.US
## 4943                         DT.INT.DLBN.CD.GG.AR.03.US
## 4944                       DT.INT.DLBN.CD.GG.AR.0912.US
## 4945                       DT.INT.DLBN.CD.GG.AR.1218.US
## 4946                       DT.INT.DLBN.CD.GG.AR.1824.US
## 4947                        DT.INT.DLBN.CD.GG.AR.24P.US
## 4948                         DT.INT.DLBN.CD.GG.AR.36.US
## 4949                         DT.INT.DLBN.CD.GG.AR.69.US
## 4950                         DT.INT.DLBN.CD.GG.AR.IQ.US
## 4951                         DT.INT.DLBN.CD.MA.AR.03.US
## 4952                       DT.INT.DLBN.CD.MA.AR.0912.US
## 4953                       DT.INT.DLBN.CD.MA.AR.1218.US
## 4954                       DT.INT.DLBN.CD.MA.AR.1824.US
## 4955                        DT.INT.DLBN.CD.MA.AR.24P.US
## 4956                         DT.INT.DLBN.CD.MA.AR.36.US
## 4957                         DT.INT.DLBN.CD.MA.AR.69.US
## 4958                         DT.INT.DLBN.CD.MA.AR.IQ.US
## 4959                         DT.INT.DLBN.CD.OT.AR.03.US
## 4960                       DT.INT.DLBN.CD.OT.AR.0912.US
## 4961                       DT.INT.DLBN.CD.OT.AR.1218.US
## 4962                       DT.INT.DLBN.CD.OT.AR.1824.US
## 4963                        DT.INT.DLBN.CD.OT.AR.24P.US
## 4964                         DT.INT.DLBN.CD.OT.AR.36.US
## 4965                         DT.INT.DLBN.CD.OT.AR.69.US
## 4966                         DT.INT.DLBN.CD.OT.AR.IQ.US
## 4967                         DT.INT.DLCD.CD.CB.AR.03.US
## 4968                       DT.INT.DLCD.CD.CB.AR.0912.US
## 4969                       DT.INT.DLCD.CD.CB.AR.1218.US
## 4970                       DT.INT.DLCD.CD.CB.AR.1824.US
## 4971                        DT.INT.DLCD.CD.CB.AR.24P.US
## 4972                         DT.INT.DLCD.CD.CB.AR.36.US
## 4973                         DT.INT.DLCD.CD.CB.AR.69.US
## 4974                         DT.INT.DLCD.CD.CB.AR.IQ.US
## 4975                         DT.INT.DLCD.CD.GG.AR.03.US
## 4976                       DT.INT.DLCD.CD.GG.AR.0912.US
## 4977                       DT.INT.DLCD.CD.GG.AR.1218.US
## 4978                       DT.INT.DLCD.CD.GG.AR.1824.US
## 4979                        DT.INT.DLCD.CD.GG.AR.24P.US
## 4980                         DT.INT.DLCD.CD.GG.AR.36.US
## 4981                         DT.INT.DLCD.CD.GG.AR.69.US
## 4982                         DT.INT.DLCD.CD.GG.AR.IQ.US
## 4983                         DT.INT.DLCD.CD.MA.AR.03.US
## 4984                       DT.INT.DLCD.CD.MA.AR.0912.US
## 4985                       DT.INT.DLCD.CD.MA.AR.1218.US
## 4986                       DT.INT.DLCD.CD.MA.AR.1824.US
## 4987                        DT.INT.DLCD.CD.MA.AR.24P.US
## 4988                         DT.INT.DLCD.CD.MA.AR.36.US
## 4989                         DT.INT.DLCD.CD.MA.AR.69.US
## 4990                         DT.INT.DLCD.CD.MA.AR.IQ.US
## 4991                         DT.INT.DLCD.CD.OT.AR.03.US
## 4992                       DT.INT.DLCD.CD.OT.AR.0912.US
## 4993                       DT.INT.DLCD.CD.OT.AR.1218.US
## 4994                       DT.INT.DLCD.CD.OT.AR.1824.US
## 4995                        DT.INT.DLCD.CD.OT.AR.24P.US
## 4996                         DT.INT.DLCD.CD.OT.AR.36.US
## 4997                         DT.INT.DLCD.CD.OT.AR.69.US
## 4998                         DT.INT.DLCD.CD.OT.AR.IQ.US
## 4999                                     DT.INT.DLTF.CD
## 5000                         DT.INT.DLTL.CD.CB.AR.03.US
## 5001                       DT.INT.DLTL.CD.CB.AR.0912.US
## 5002                       DT.INT.DLTL.CD.CB.AR.1218.US
## 5003                       DT.INT.DLTL.CD.CB.AR.1824.US
## 5004                        DT.INT.DLTL.CD.CB.AR.24P.US
## 5005                         DT.INT.DLTL.CD.CB.AR.36.US
## 5006                         DT.INT.DLTL.CD.CB.AR.69.US
## 5007                         DT.INT.DLTL.CD.CB.AR.IQ.US
## 5008                         DT.INT.DLTL.CD.MA.AR.03.US
## 5009                       DT.INT.DLTL.CD.MA.AR.0912.US
## 5010                       DT.INT.DLTL.CD.MA.AR.1218.US
## 5011                       DT.INT.DLTL.CD.MA.AR.1824.US
## 5012                        DT.INT.DLTL.CD.MA.AR.24P.US
## 5013                         DT.INT.DLTL.CD.MA.AR.36.US
## 5014                         DT.INT.DLTL.CD.MA.AR.69.US
## 5015                         DT.INT.DLTL.CD.MA.AR.IQ.US
## 5016                         DT.INT.DLTL.CD.OT.AR.03.US
## 5017                       DT.INT.DLTL.CD.OT.AR.0912.US
## 5018                       DT.INT.DLTL.CD.OT.AR.1218.US
## 5019                       DT.INT.DLTL.CD.OT.AR.1824.US
## 5020                        DT.INT.DLTL.CD.OT.AR.24P.US
## 5021                         DT.INT.DLTL.CD.OT.AR.36.US
## 5022                         DT.INT.DLTL.CD.OT.AR.69.US
## 5023                         DT.INT.DLTL.CD.OT.AR.IQ.US
## 5024                         DT.INT.DLTO.CD.CB.AR.03.US
## 5025                       DT.INT.DLTO.CD.CB.AR.0912.US
## 5026                       DT.INT.DLTO.CD.CB.AR.1218.US
## 5027                       DT.INT.DLTO.CD.CB.AR.1824.US
## 5028                        DT.INT.DLTO.CD.CB.AR.24P.US
## 5029                         DT.INT.DLTO.CD.CB.AR.36.US
## 5030                         DT.INT.DLTO.CD.CB.AR.69.US
## 5031                         DT.INT.DLTO.CD.CB.AR.IQ.US
## 5032                         DT.INT.DLTO.CD.GG.AR.03.US
## 5033                       DT.INT.DLTO.CD.GG.AR.0912.US
## 5034                       DT.INT.DLTO.CD.GG.AR.1218.US
## 5035                       DT.INT.DLTO.CD.GG.AR.1824.US
## 5036                        DT.INT.DLTO.CD.GG.AR.24P.US
## 5037                         DT.INT.DLTO.CD.GG.AR.36.US
## 5038                         DT.INT.DLTO.CD.GG.AR.69.US
## 5039                         DT.INT.DLTO.CD.GG.AR.IQ.US
## 5040                         DT.INT.DLTO.CD.MA.AR.03.US
## 5041                       DT.INT.DLTO.CD.MA.AR.0912.US
## 5042                       DT.INT.DLTO.CD.MA.AR.1218.US
## 5043                       DT.INT.DLTO.CD.MA.AR.1824.US
## 5044                        DT.INT.DLTO.CD.MA.AR.24P.US
## 5045                         DT.INT.DLTO.CD.MA.AR.36.US
## 5046                         DT.INT.DLTO.CD.MA.AR.69.US
## 5047                         DT.INT.DLTO.CD.MA.AR.IQ.US
## 5048                         DT.INT.DLTO.CD.OT.AR.03.US
## 5049                       DT.INT.DLTO.CD.OT.AR.0912.US
## 5050                       DT.INT.DLTO.CD.OT.AR.1218.US
## 5051                       DT.INT.DLTO.CD.OT.AR.1824.US
## 5052                        DT.INT.DLTO.CD.OT.AR.24P.US
## 5053                         DT.INT.DLTO.CD.OT.AR.36.US
## 5054                         DT.INT.DLTO.CD.OT.AR.69.US
## 5055                         DT.INT.DLTO.CD.OT.AR.IQ.US
## 5056                            DT.INT.DLTS.CD.GG.03.US
## 5057                          DT.INT.DLTS.CD.GG.0912.US
## 5058                          DT.INT.DLTS.CD.GG.1218.US
## 5059                          DT.INT.DLTS.CD.GG.1824.US
## 5060                           DT.INT.DLTS.CD.GG.24P.US
## 5061                            DT.INT.DLTS.CD.GG.36.US
## 5062                            DT.INT.DLTS.CD.GG.69.US
## 5063                            DT.INT.DLTS.CD.GG.IQ.US
## 5064                         DT.INT.DLTS.CD.MA.AR.03.US
## 5065                       DT.INT.DLTS.CD.MA.AR.0912.US
## 5066                       DT.INT.DLTS.CD.MA.AR.1218.US
## 5067                       DT.INT.DLTS.CD.MA.AR.1824.US
## 5068                        DT.INT.DLTS.CD.MA.AR.24P.US
## 5069                         DT.INT.DLTS.CD.MA.AR.36.US
## 5070                         DT.INT.DLTS.CD.MA.AR.69.US
## 5071                         DT.INT.DLTS.CD.MA.AR.IQ.US
## 5072                         DT.INT.DLTT.CD.CB.AR.03.US
## 5073                       DT.INT.DLTT.CD.CB.AR.0912.US
## 5074                       DT.INT.DLTT.CD.CB.AR.1218.US
## 5075                       DT.INT.DLTT.CD.CB.AR.1824.US
## 5076                        DT.INT.DLTT.CD.CB.AR.24P.US
## 5077                         DT.INT.DLTT.CD.CB.AR.36.US
## 5078                         DT.INT.DLTT.CD.CB.AR.69.US
## 5079                         DT.INT.DLTT.CD.CB.AR.IQ.US
## 5080                         DT.INT.DLTT.CD.GG.AR.03.US
## 5081                       DT.INT.DLTT.CD.GG.AR.0912.US
## 5082                       DT.INT.DLTT.CD.GG.AR.1218.US
## 5083                       DT.INT.DLTT.CD.GG.AR.1824.US
## 5084                        DT.INT.DLTT.CD.GG.AR.24P.US
## 5085                         DT.INT.DLTT.CD.GG.AR.36.US
## 5086                         DT.INT.DLTT.CD.GG.AR.69.US
## 5087                         DT.INT.DLTT.CD.GG.AR.IQ.US
## 5088                         DT.INT.DLTT.CD.MA.AR.03.US
## 5089                       DT.INT.DLTT.CD.MA.AR.0912.US
## 5090                       DT.INT.DLTT.CD.MA.AR.1218.US
## 5091                       DT.INT.DLTT.CD.MA.AR.1824.US
## 5092                        DT.INT.DLTT.CD.MA.AR.24P.US
## 5093                         DT.INT.DLTT.CD.MA.AR.36.US
## 5094                         DT.INT.DLTT.CD.MA.AR.69.US
## 5095                         DT.INT.DLTT.CD.MA.AR.IQ.US
## 5096                                     DT.INT.DLXF.CD
## 5097                                     DT.INT.DOPS.CD
## 5098                                     DT.INT.DPNG.CD
## 5099                                     DT.INT.DPPG.CD
## 5100                                     DT.INT.DSTC.CD
## 5101                                     DT.INT.MIBR.CD
## 5102                                     DT.INT.MIDA.CD
## 5103                                  DT.INT.MLAT.CB.CD
## 5104                                     DT.INT.MLAT.CD
## 5105                                  DT.INT.MLAT.GG.CD
## 5106                                 DT.INT.MLAT.OPS.CD
## 5107                                DT.INT.MLAT.PRVG.CD
## 5108                                  DT.INT.MLAT.PS.CD
## 5109                                  DT.INT.MLTC.CB.CD
## 5110                                     DT.INT.MLTC.CD
## 5111                                  DT.INT.MLTC.GG.CD
## 5112                                 DT.INT.MLTC.OPS.CD
## 5113                                DT.INT.MLTC.PRVG.CD
## 5114                                  DT.INT.MLTC.PS.CD
## 5115                                  DT.INT.OFFT.CB.CD
## 5116                                     DT.INT.OFFT.CD
## 5117                                  DT.INT.OFFT.GG.CD
## 5118                                 DT.INT.OFFT.OPS.CD
## 5119                                DT.INT.OFFT.PRVG.CD
## 5120                                  DT.INT.OFFT.PS.CD
## 5121                                  DT.INT.PBND.CB.CD
## 5122                                     DT.INT.PBND.CD
## 5123                                  DT.INT.PBND.GG.CD
## 5124                                 DT.INT.PBND.OPS.CD
## 5125                                DT.INT.PBND.PRVG.CD
## 5126                                  DT.INT.PBND.PS.CD
## 5127                                  DT.INT.PCBK.CB.CD
## 5128                                     DT.INT.PCBK.CD
## 5129                                  DT.INT.PCBK.GG.CD
## 5130                                 DT.INT.PCBK.OPS.CD
## 5131                                DT.INT.PCBK.PRVG.CD
## 5132                                  DT.INT.PCBK.PS.CD
## 5133                                     DT.INT.PGNG.CD
## 5134                                     DT.INT.PNGB.CD
## 5135                                     DT.INT.PNGC.CD
## 5136                                  DT.INT.PROP.CB.CD
## 5137                                     DT.INT.PROP.CD
## 5138                                  DT.INT.PROP.GG.CD
## 5139                                 DT.INT.PROP.OPS.CD
## 5140                                DT.INT.PROP.PRVG.CD
## 5141                                  DT.INT.PROP.PS.CD
## 5142                                     DT.INT.PRPG.CD
## 5143                         DT.INT.PRVS.CD.00.03.MO.US
## 5144                            DT.INT.PRVS.CD.03.YR.US
## 5145                         DT.INT.PRVS.CD.04.06.MO.US
## 5146                            DT.INT.PRVS.CD.04.YR.US
## 5147                         DT.INT.PRVS.CD.05.10.YR.US
## 5148                            DT.INT.PRVS.CD.05.YR.US
## 5149                         DT.INT.PRVS.CD.07.09.MO.US
## 5150                         DT.INT.PRVS.CD.10.12.MO.US
## 5151                         DT.INT.PRVS.CD.10.15.YR.US
## 5152                         DT.INT.PRVS.CD.13.18.MO.US
## 5153                         DT.INT.PRVS.CD.15.UP.YR.US
## 5154                         DT.INT.PRVS.CD.19.24.MO.US
## 5155                            DT.INT.PRVS.CD.IQ.00.US
## 5156                                  DT.INT.PRVT.CB.CD
## 5157                                     DT.INT.PRVT.CD
## 5158                                  DT.INT.PRVT.GG.CD
## 5159                                 DT.INT.PRVT.OPS.CD
## 5160                                DT.INT.PRVT.PRVG.CD
## 5161                                  DT.INT.PRVT.PS.CD
## 5162                         DT.INT.PUBS.CD.00.03.MO.US
## 5163                            DT.INT.PUBS.CD.03.YR.US
## 5164                         DT.INT.PUBS.CD.04.06.MO.US
## 5165                            DT.INT.PUBS.CD.04.YR.US
## 5166                         DT.INT.PUBS.CD.05.10.YR.US
## 5167                            DT.INT.PUBS.CD.05.YR.US
## 5168                         DT.INT.PUBS.CD.07.09.MO.US
## 5169                         DT.INT.PUBS.CD.10.12.MO.US
## 5170                         DT.INT.PUBS.CD.10.15.YR.US
## 5171                         DT.INT.PUBS.CD.13.18.MO.US
## 5172                         DT.INT.PUBS.CD.15.UP.YR.US
## 5173                         DT.INT.PUBS.CD.19.24.MO.US
## 5174                            DT.INT.PUBS.CD.IQ.00.US
## 5175                        DT.INTS.DLTL.CD.GG.AR.03.US
## 5176                      DT.INTS.DLTL.CD.GG.AR.0912.US
## 5177                      DT.INTS.DLTL.CD.GG.AR.1218.US
## 5178                      DT.INTS.DLTL.CD.GG.AR.1824.US
## 5179                       DT.INTS.DLTL.CD.GG.AR.24P.US
## 5180                        DT.INTS.DLTL.CD.GG.AR.36.US
## 5181                        DT.INTS.DLTL.CD.GG.AR.69.US
## 5182                        DT.INTS.DLTL.CD.GG.AR.IQ.US
## 5183                        DT.INTS.DLTT.CD.OT.AR.03.US
## 5184                      DT.INTS.DLTT.CD.OT.AR.0912.US
## 5185                      DT.INTS.DLTT.CD.OT.AR.1218.US
## 5186                      DT.INTS.DLTT.CD.OT.AR.1824.US
## 5187                       DT.INTS.DLTT.CD.OT.AR.24P.US
## 5188                        DT.INTS.DLTT.CD.OT.AR.36.US
## 5189                        DT.INTS.DLTT.CD.OT.AR.69.US
## 5190                        DT.INTS.DLTT.CD.OT.AR.IQ.US
## 5191                         DT.IWA.DECT.CD.OT.HH.AR.US
## 5192                         DT.IWA.DECT.CD.OT.NB.AR.US
## 5193                         DT.IWA.DECT.CD.OT.NF.AR.US
## 5194                            DT.IXA.DECT.CD.CB.AR.US
## 5195                            DT.IXA.DECT.CD.GG.AR.US
## 5196                            DT.IXA.DECT.CD.MA.AR.US
## 5197                            DT.IXA.DECT.CD.OT.AR.US
## 5198                               DT.IXA.DIDI.CD.IL.US
## 5199                               DT.IXA.DIFE.CD.IL.US
## 5200                               DT.IXA.DIIE.CD.IL.US
## 5201                                     DT.IXA.DLXF.CD
## 5202                                     DT.IXA.DPPG.CD
## 5203                                  DT.IXA.DPPG.CD.CG
## 5204                                     DT.IXA.OFFT.CD
## 5205                                     DT.IXA.PRVT.CD
## 5206                                     DT.IXF.DPPG.CD
## 5207                                     DT.IXR.DPPG.CD
## 5208                                     DT.IXR.OFFT.CD
## 5209                                     DT.IXR.PRVT.CD
## 5210                                        DT.MAT.DPPG
## 5211                                        DT.MAT.OFFT
## 5212                                        DT.MAT.PRVT
## 5213                                  DT.NFL.BLAT.CB.CD
## 5214                                     DT.NFL.BLAT.CD
## 5215                                  DT.NFL.BLAT.GG.CD
## 5216                                 DT.NFL.BLAT.OPS.CD
## 5217                                DT.NFL.BLAT.PRVG.CD
## 5218                                  DT.NFL.BLAT.PS.CD
## 5219                                  DT.NFL.BLTC.CB.CD
## 5220                                     DT.NFL.BLTC.CD
## 5221                                  DT.NFL.BLTC.GG.CD
## 5222                                 DT.NFL.BLTC.OPS.CD
## 5223                                DT.NFL.BLTC.PRVG.CD
## 5224                                  DT.NFL.BLTC.PS.CD
## 5225                                     DT.NFL.BOND.CD
## 5226                                     DT.NFL.DECB.CD
## 5227                                     DT.NFL.DECT.CD
## 5228                                     DT.NFL.DEGG.CD
## 5229                                     DT.NFL.DEPS.CD
## 5230                                     DT.NFL.DLXF.CD
## 5231                                     DT.NFL.DOPS.CD
## 5232                                     DT.NFL.DPNG.CD
## 5233                                     DT.NFL.DPPG.CD
## 5234                                     DT.NFL.DSTC.CD
## 5235                                     DT.NFL.FAOG.CD
## 5236                                     DT.NFL.IAEA.CD
## 5237                                     DT.NFL.IFAD.CD
## 5238                                     DT.NFL.ILOG.CD
## 5239                                     DT.NFL.IMFC.CD
## 5240                                     DT.NFL.IMFN.CD
## 5241                                     DT.NFL.MIBR.CD
## 5242                                     DT.NFL.MIDA.CD
## 5243                                  DT.NFL.MLAT.CB.CD
## 5244                                     DT.NFL.MLAT.CD
## 5245                                  DT.NFL.MLAT.GG.CD
## 5246                                 DT.NFL.MLAT.OPS.CD
## 5247                                DT.NFL.MLAT.PRVG.CD
## 5248                                  DT.NFL.MLAT.PS.CD
## 5249                                  DT.NFL.MLTC.CB.CD
## 5250                                     DT.NFL.MLTC.CD
## 5251                                  DT.NFL.MLTC.GG.CD
## 5252                                 DT.NFL.MLTC.OPS.CD
## 5253                                DT.NFL.MLTC.PRVG.CD
## 5254                                  DT.NFL.MLTC.PS.CD
## 5255                                     DT.NFL.MOTH.CD
## 5256                                     DT.NFL.NEBR.CD
## 5257                                     DT.NFL.NIFC.CD
## 5258                                  DT.NFL.OFFT.CB.CD
## 5259                                     DT.NFL.OFFT.CD
## 5260                                  DT.NFL.OFFT.GG.CD
## 5261                                 DT.NFL.OFFT.OPS.CD
## 5262                                DT.NFL.OFFT.PRVG.CD
## 5263                                  DT.NFL.OFFT.PS.CD
## 5264                                  DT.NFL.PBND.CB.CD
## 5265                                     DT.NFL.PBND.CD
## 5266                                  DT.NFL.PBND.GG.CD
## 5267                                 DT.NFL.PBND.OPS.CD
## 5268                                DT.NFL.PBND.PRVG.CD
## 5269                                  DT.NFL.PBND.PS.CD
## 5270                                  DT.NFL.PCBK.CB.CD
## 5271                                     DT.NFL.PCBK.CD
## 5272                                  DT.NFL.PCBK.GG.CD
## 5273                                 DT.NFL.PCBK.OPS.CD
## 5274                                DT.NFL.PCBK.PRVG.CD
## 5275                                  DT.NFL.PCBK.PS.CD
## 5276                                     DT.NFL.PCBO.CD
## 5277                                     DT.NFL.PNGB.CD
## 5278                                     DT.NFL.PNGC.CD
## 5279                                  DT.NFL.PROP.CB.CD
## 5280                                     DT.NFL.PROP.CD
## 5281                                  DT.NFL.PROP.GG.CD
## 5282                                 DT.NFL.PROP.OPS.CD
## 5283                                DT.NFL.PROP.PRVG.CD
## 5284                                  DT.NFL.PROP.PS.CD
## 5285                                     DT.NFL.PRPG.CD
## 5286                                  DT.NFL.PRVT.CB.CD
## 5287                                     DT.NFL.PRVT.CD
## 5288                                  DT.NFL.PRVT.GG.CD
## 5289                                 DT.NFL.PRVT.OPS.CD
## 5290                                DT.NFL.PRVT.PRVG.CD
## 5291                                  DT.NFL.PRVT.PS.CD
## 5292                                     DT.NFL.RDBC.CD
## 5293                                     DT.NFL.RDBN.CD
## 5294                                     DT.NFL.UNAI.CD
## 5295                                     DT.NFL.UNCF.CD
## 5296                                     DT.NFL.UNCR.CD
## 5297                                     DT.NFL.UNDP.CD
## 5298                                     DT.NFL.UNEC.CD
## 5299                                     DT.NFL.UNEP.CD
## 5300                                     DT.NFL.UNFP.CD
## 5301                                     DT.NFL.UNID.CD
## 5302                                     DT.NFL.UNPB.CD
## 5303                                     DT.NFL.UNRW.CD
## 5304                                     DT.NFL.UNTA.CD
## 5305                                     DT.NFL.UNWT.CD
## 5306                                     DT.NFL.WFPG.CD
## 5307                                     DT.NFL.WHOL.CD
## 5308                                  DT.NTR.BLAT.CB.CD
## 5309                                     DT.NTR.BLAT.CD
## 5310                                  DT.NTR.BLAT.GG.CD
## 5311                                 DT.NTR.BLAT.OPS.CD
## 5312                                DT.NTR.BLAT.PRVG.CD
## 5313                                  DT.NTR.BLAT.PS.CD
## 5314                                  DT.NTR.BLTC.CB.CD
## 5315                                     DT.NTR.BLTC.CD
## 5316                                  DT.NTR.BLTC.GG.CD
## 5317                                 DT.NTR.BLTC.OPS.CD
## 5318                                DT.NTR.BLTC.PRVG.CD
## 5319                                  DT.NTR.BLTC.PS.CD
## 5320                                     DT.NTR.DECB.CD
## 5321                                     DT.NTR.DECT.CD
## 5322                                     DT.NTR.DEGG.CD
## 5323                                     DT.NTR.DEPS.CD
## 5324                                     DT.NTR.DLXF.CD
## 5325                                     DT.NTR.DOPS.CD
## 5326                                     DT.NTR.DPNG.CD
## 5327                                     DT.NTR.DPPG.CD
## 5328                                     DT.NTR.MIBR.CD
## 5329                                     DT.NTR.MIDA.CD
## 5330                                  DT.NTR.MLAT.CB.CD
## 5331                                     DT.NTR.MLAT.CD
## 5332                                  DT.NTR.MLAT.GG.CD
## 5333                                 DT.NTR.MLAT.OPS.CD
## 5334                                DT.NTR.MLAT.PRVG.CD
## 5335                                  DT.NTR.MLAT.PS.CD
## 5336                                  DT.NTR.MLTC.CB.CD
## 5337                                     DT.NTR.MLTC.CD
## 5338                                  DT.NTR.MLTC.GG.CD
## 5339                                 DT.NTR.MLTC.OPS.CD
## 5340                                DT.NTR.MLTC.PRVG.CD
## 5341                                  DT.NTR.MLTC.PS.CD
## 5342                                  DT.NTR.OFFT.CB.CD
## 5343                                     DT.NTR.OFFT.CD
## 5344                                  DT.NTR.OFFT.GG.CD
## 5345                                 DT.NTR.OFFT.OPS.CD
## 5346                                DT.NTR.OFFT.PRVG.CD
## 5347                                  DT.NTR.OFFT.PS.CD
## 5348                                  DT.NTR.PBND.CB.CD
## 5349                                     DT.NTR.PBND.CD
## 5350                                  DT.NTR.PBND.GG.CD
## 5351                                 DT.NTR.PBND.OPS.CD
## 5352                                DT.NTR.PBND.PRVG.CD
## 5353                                  DT.NTR.PBND.PS.CD
## 5354                                  DT.NTR.PCBK.CB.CD
## 5355                                     DT.NTR.PCBK.CD
## 5356                                  DT.NTR.PCBK.GG.CD
## 5357                                 DT.NTR.PCBK.OPS.CD
## 5358                                DT.NTR.PCBK.PRVG.CD
## 5359                                  DT.NTR.PCBK.PS.CD
## 5360                                     DT.NTR.PNGB.CD
## 5361                                     DT.NTR.PNGC.CD
## 5362                                  DT.NTR.PROP.CB.CD
## 5363                                     DT.NTR.PROP.CD
## 5364                                  DT.NTR.PROP.GG.CD
## 5365                                 DT.NTR.PROP.OPS.CD
## 5366                                DT.NTR.PROP.PRVG.CD
## 5367                                  DT.NTR.PROP.PS.CD
## 5368                                     DT.NTR.PRPG.CD
## 5369                                  DT.NTR.PRVT.CB.CD
## 5370                                     DT.NTR.PRVT.CD
## 5371                                  DT.NTR.PRVT.GG.CD
## 5372                                 DT.NTR.PRVT.OPS.CD
## 5373                                DT.NTR.PRVT.PRVG.CD
## 5374                                  DT.NTR.PRVT.PS.CD
## 5375                                     DT.ODA.ALLD.CD
## 5376                                  DT.ODA.ALLD.GD.ZS
## 5377                                 DT.ODA.ALLD.GDI.ZS
## 5378                                  DT.ODA.ALLD.GI.ZS
## 5379                                  DT.ODA.ALLD.GN.ZS
## 5380                                 DT.ODA.ALLD.GNP.ZS
## 5381                           DT.ODA.ALLD.HIV.CNTRL.CD
## 5382                            DT.ODA.ALLD.HIV.MITI.CD
## 5383                                 DT.ODA.ALLD.IMP.ZS
## 5384                                     DT.ODA.ALLD.KD
## 5385                           DT.ODA.ALLD.MLR.CNTRL.CD
## 5386                                  DT.ODA.ALLD.MP.ZS
## 5387                                  DT.ODA.ALLD.PC.ZS
## 5388                                 DT.ODA.ALLD.POP.ZS
## 5389                                DT.ODA.ALLD.PRVT.CD
## 5390                                  DT.ODA.ALLD.XP.ZS
## 5391                                 DT.ODA.ALLD.XPD.ZS
## 5392                                DT.ODA.DACD.ADMN.CD
## 5393                           DT.ODA.DACD.AGPA.BDGT.CD
## 5394                                DT.ODA.DACD.AGPA.CD
## 5395                           DT.ODA.DACD.AGPA.FOOD.CD
## 5396                           DT.ODA.DACD.AGPA.OCOM.CD
## 5397                                DT.ODA.DACD.ALLS.CD
## 5398                                     DT.ODA.DACD.CD
## 5399                                  DT.ODA.DACD.CD.PC
## 5400                                DT.ODA.DACD.DEBT.CD
## 5401                           DT.ODA.DACD.ECON.BKFN.CD
## 5402                           DT.ODA.DACD.ECON.BUSN.CD
## 5403                                DT.ODA.DACD.ECON.CD
## 5404                           DT.ODA.DACD.ECON.COMM.CD
## 5405                           DT.ODA.DACD.ECON.NRGY.CD
## 5406                           DT.ODA.DACD.ECON.TRSP.CD
## 5407                             DT.ODA.DACD.EDU.BAS.CD
## 5408                                 DT.ODA.DACD.EDU.CD
## 5409                            DT.ODA.DACD.EDU.PSEC.CD
## 5410                             DT.ODA.DACD.EDU.SEC.CD
## 5411                            DT.ODA.DACD.EDU.UNKN.CD
## 5412                                DT.ODA.DACD.EMRC.CD
## 5413                           DT.ODA.DACD.EMRC.DISA.CD
## 5414                           DT.ODA.DACD.EMRC.OTHR.CD
## 5415                           DT.ODA.DACD.EMRC.RCST.CD
## 5416                                DT.ODA.DACD.GVCS.CD
## 5417                            DT.ODA.DACD.GVCS.CPS.CD
## 5418                            DT.ODA.DACD.GVCS.GEN.CD
## 5419                           DT.ODA.DACD.HIV.CNTRL.CD
## 5420                            DT.ODA.DACD.HIV.MITI.CD
## 5421                            DT.ODA.DACD.HLTH.BAS.CD
## 5422                                DT.ODA.DACD.HLTH.CD
## 5423                            DT.ODA.DACD.HLTH.GEN.CD
## 5424                                     DT.ODA.DACD.KD
## 5425                           DT.ODA.DACD.MLR.CNTRL.CD
## 5426                                DT.ODA.DACD.MSEC.CD
## 5427                           DT.ODA.DACD.MSEC.GENV.CD
## 5428                          DT.ODA.DACD.MSEC.OMSEC.CD
## 5429                                 DT.ODA.DACD.POP.CD
## 5430                       DT.ODA.DACD.PROD.AGRI.AGR.CD
## 5431                           DT.ODA.DACD.PROD.AGRI.CD
## 5432                      DT.ODA.DACD.PROD.AGRI.FISH.CD
## 5433                      DT.ODA.DACD.PROD.AGRI.FORS.CD
## 5434                                DT.ODA.DACD.PROD.CD
## 5435                           DT.ODA.DACD.PROD.INDS.CD
## 5436                       DT.ODA.DACD.PROD.INDS.CON.CD
## 5437                       DT.ODA.DACD.PROD.INDS.IND.CD
## 5438                       DT.ODA.DACD.PROD.INDS.MIN.CD
## 5439                           DT.ODA.DACD.PROD.TRDP.CD
## 5440                           DT.ODA.DACD.PROD.TRSM.CD
## 5441                                DT.ODA.DACD.PRVT.CD
## 5442                                DT.ODA.DACD.RFGE.CD
## 5443                                DT.ODA.DACD.SOCI.CD
## 5444                                DT.ODA.DACD.TSEC.CD
## 5445                                DT.ODA.DACD.UNAL.CD
## 5446                                 DT.ODA.DACD.WSS.CD
## 5447                                    DT.ODA.DACD.ZSG
## 5448                                    DT.ODA.DACD.ZSI
## 5449                                     DT.ODA.MULT.CD
## 5450                                  DT.ODA.MULT.CD.PC
## 5451                                     DT.ODA.MULT.KD
## 5452                                    DT.ODA.MULT.ZSG
## 5453                                    DT.ODA.MULT.ZSI
## 5454                          DT.ODA.MULTI.HIV.CNTRL.CD
## 5455                           DT.ODA.MULTI.HIV.MITI.CD
## 5456                          DT.ODA.MULTI.MLR.CNTRL.CD
## 5457                                     DT.ODA.NDAC.CD
## 5458                                     DT.ODA.NDAC.KD
## 5459                                DT.ODA.NDAC.PRVT.CD
## 5460                                    DT.ODA.NDAC.ZSG
## 5461                                    DT.ODA.NDAC.ZSI
## 5462                                     DT.ODA.OATL.CD
## 5463                                     DT.ODA.OATL.KD
## 5464                                     DT.ODA.ODAT.CD
## 5465                                    DT.ODA.ODAT.CD1
## 5466                                  DT.ODA.ODAT.GD.ZS
## 5467                                  DT.ODA.ODAT.GI.ZS
## 5468                                  DT.ODA.ODAT.GN.ZS
## 5469                                     DT.ODA.ODAT.KD
## 5470                                  DT.ODA.ODAT.MP.ZS
## 5471                                  DT.ODA.ODAT.PC.ZS
## 5472                                  DT.ODA.ODAT.XP.ZS
## 5473                                     DT.SRV.POST.ZS
## 5474                                     DT.TDA.DECT.CD
## 5475                                  DT.TDS.BLAT.CB.CD
## 5476                                     DT.TDS.BLAT.CD
## 5477                                  DT.TDS.BLAT.GG.CD
## 5478                                 DT.TDS.BLAT.OPS.CD
## 5479                                DT.TDS.BLAT.PRVG.CD
## 5480                                  DT.TDS.BLAT.PS.CD
## 5481                                  DT.TDS.BLTC.CB.CD
## 5482                                     DT.TDS.BLTC.CD
## 5483                                  DT.TDS.BLTC.GG.CD
## 5484                                 DT.TDS.BLTC.OPS.CD
## 5485                                DT.TDS.BLTC.PRVG.CD
## 5486                                  DT.TDS.BLTC.PS.CD
## 5487                            DT.TDS.DEAE.CD.IL.03.US
## 5488                          DT.TDS.DEAE.CD.IL.0912.US
## 5489                          DT.TDS.DEAE.CD.IL.1218.US
## 5490                          DT.TDS.DEAE.CD.IL.1824.US
## 5491                           DT.TDS.DEAE.CD.IL.24P.US
## 5492                            DT.TDS.DEAE.CD.IL.36.US
## 5493                            DT.TDS.DEAE.CD.IL.69.US
## 5494                            DT.TDS.DEAE.CD.IL.IQ.US
## 5495                                  DT.TDS.DECA.XP.ZS
## 5496                                     DT.TDS.DECB.CD
## 5497                         DT.TDS.DECT.15.UP.YR.SA.US
## 5498                                     DT.TDS.DECT.CD
## 5499                         DT.TDS.DECT.CD.00.03.MO.US
## 5500                               DT.TDS.DECT.CD.03.US
## 5501                            DT.TDS.DECT.CD.03.YR.US
## 5502                         DT.TDS.DECT.CD.04.06.MO.US
## 5503                            DT.TDS.DECT.CD.04.YR.US
## 5504                         DT.TDS.DECT.CD.05.10.YR.US
## 5505                            DT.TDS.DECT.CD.05.YR.US
## 5506                         DT.TDS.DECT.CD.07.09.MO.US
## 5507                             DT.TDS.DECT.CD.0912.US
## 5508                         DT.TDS.DECT.CD.10.12.MO.US
## 5509                         DT.TDS.DECT.CD.10.15.YR.US
## 5510                             DT.TDS.DECT.CD.1218.US
## 5511                         DT.TDS.DECT.CD.13.18.MO.US
## 5512                         DT.TDS.DECT.CD.15.UP.YR.US
## 5513                             DT.TDS.DECT.CD.1824.US
## 5514                         DT.TDS.DECT.CD.19.24.MO.US
## 5515                              DT.TDS.DECT.CD.24P.US
## 5516                               DT.TDS.DECT.CD.36.US
## 5517                               DT.TDS.DECT.CD.69.US
## 5518                            DT.TDS.DECT.CD.AR.03.US
## 5519                          DT.TDS.DECT.CD.AR.0912.US
## 5520                          DT.TDS.DECT.CD.AR.1218.US
## 5521                          DT.TDS.DECT.CD.AR.1824.US
## 5522                           DT.TDS.DECT.CD.AR.24P.US
## 5523                            DT.TDS.DECT.CD.AR.36.US
## 5524                            DT.TDS.DECT.CD.AR.69.US
## 5525                            DT.TDS.DECT.CD.AR.IQ.US
## 5526                            DT.TDS.DECT.CD.CB.03.US
## 5527                          DT.TDS.DECT.CD.CB.0912.US
## 5528                          DT.TDS.DECT.CD.CB.1218.US
## 5529                          DT.TDS.DECT.CD.CB.1824.US
## 5530                           DT.TDS.DECT.CD.CB.24P.US
## 5531                            DT.TDS.DECT.CD.CB.36.US
## 5532                            DT.TDS.DECT.CD.CB.69.US
## 5533                         DT.TDS.DECT.CD.CB.AR.03.US
## 5534                       DT.TDS.DECT.CD.CB.AR.0912.US
## 5535                       DT.TDS.DECT.CD.CB.AR.1218.US
## 5536                       DT.TDS.DECT.CD.CB.AR.1824.US
## 5537                        DT.TDS.DECT.CD.CB.AR.24P.US
## 5538                         DT.TDS.DECT.CD.CB.AR.36.US
## 5539                         DT.TDS.DECT.CD.CB.AR.69.US
## 5540                         DT.TDS.DECT.CD.CB.AR.IQ.US
## 5541                            DT.TDS.DECT.CD.CB.IQ.US
## 5542                            DT.TDS.DECT.CD.CB.RM.US
## 5543                            DT.TDS.DECT.CD.GG.03.US
## 5544                          DT.TDS.DECT.CD.GG.0912.US
## 5545                          DT.TDS.DECT.CD.GG.1218.US
## 5546                          DT.TDS.DECT.CD.GG.1824.US
## 5547                           DT.TDS.DECT.CD.GG.24P.US
## 5548                            DT.TDS.DECT.CD.GG.36.US
## 5549                            DT.TDS.DECT.CD.GG.69.US
## 5550                         DT.TDS.DECT.CD.GG.AR.03.US
## 5551                       DT.TDS.DECT.CD.GG.AR.0912.US
## 5552                       DT.TDS.DECT.CD.GG.AR.1218.US
## 5553                       DT.TDS.DECT.CD.GG.AR.1824.US
## 5554                        DT.TDS.DECT.CD.GG.AR.24P.US
## 5555                         DT.TDS.DECT.CD.GG.AR.36.US
## 5556                         DT.TDS.DECT.CD.GG.AR.69.US
## 5557                         DT.TDS.DECT.CD.GG.AR.IQ.US
## 5558                            DT.TDS.DECT.CD.GG.IQ.US
## 5559                            DT.TDS.DECT.CD.GG.RM.US
## 5560                            DT.TDS.DECT.CD.IL.03.US
## 5561                          DT.TDS.DECT.CD.IL.0912.US
## 5562                          DT.TDS.DECT.CD.IL.1218.US
## 5563                          DT.TDS.DECT.CD.IL.1824.US
## 5564                           DT.TDS.DECT.CD.IL.24P.US
## 5565                            DT.TDS.DECT.CD.IL.36.US
## 5566                            DT.TDS.DECT.CD.IL.69.US
## 5567                         DT.TDS.DECT.CD.IL.AR.03.US
## 5568                       DT.TDS.DECT.CD.IL.AR.0912.US
## 5569                       DT.TDS.DECT.CD.IL.AR.1218.US
## 5570                       DT.TDS.DECT.CD.IL.AR.1824.US
## 5571                        DT.TDS.DECT.CD.IL.AR.24P.US
## 5572                         DT.TDS.DECT.CD.IL.AR.36.US
## 5573                         DT.TDS.DECT.CD.IL.AR.69.US
## 5574                         DT.TDS.DECT.CD.IL.AR.IQ.US
## 5575                            DT.TDS.DECT.CD.IL.IQ.US
## 5576                            DT.TDS.DECT.CD.IL.RM.US
## 5577                            DT.TDS.DECT.CD.IQ.00.US
## 5578                               DT.TDS.DECT.CD.IQ.US
## 5579                            DT.TDS.DECT.CD.MA.03.US
## 5580                          DT.TDS.DECT.CD.MA.0912.US
## 5581                          DT.TDS.DECT.CD.MA.1218.US
## 5582                          DT.TDS.DECT.CD.MA.1824.US
## 5583                           DT.TDS.DECT.CD.MA.24P.US
## 5584                            DT.TDS.DECT.CD.MA.36.US
## 5585                            DT.TDS.DECT.CD.MA.69.US
## 5586                         DT.TDS.DECT.CD.MA.AR.03.US
## 5587                       DT.TDS.DECT.CD.MA.AR.0912.US
## 5588                       DT.TDS.DECT.CD.MA.AR.1218.US
## 5589                       DT.TDS.DECT.CD.MA.AR.1824.US
## 5590                        DT.TDS.DECT.CD.MA.AR.24P.US
## 5591                         DT.TDS.DECT.CD.MA.AR.36.US
## 5592                         DT.TDS.DECT.CD.MA.AR.69.US
## 5593                         DT.TDS.DECT.CD.MA.AR.IQ.US
## 5594                            DT.TDS.DECT.CD.MA.IQ.US
## 5595                            DT.TDS.DECT.CD.MA.RM.US
## 5596                            DT.TDS.DECT.CD.OS.03.US
## 5597                          DT.TDS.DECT.CD.OS.0912.US
## 5598                          DT.TDS.DECT.CD.OS.1218.US
## 5599                          DT.TDS.DECT.CD.OS.1824.US
## 5600                           DT.TDS.DECT.CD.OS.24P.US
## 5601                            DT.TDS.DECT.CD.OS.36.US
## 5602                            DT.TDS.DECT.CD.OS.69.US
## 5603                            DT.TDS.DECT.CD.OS.IQ.US
## 5604                            DT.TDS.DECT.CD.OS.RM.US
## 5605                         DT.TDS.DECT.CD.OT.AR.03.US
## 5606                       DT.TDS.DECT.CD.OT.AR.0912.US
## 5607                       DT.TDS.DECT.CD.OT.AR.1218.US
## 5608                       DT.TDS.DECT.CD.OT.AR.1824.US
## 5609                        DT.TDS.DECT.CD.OT.AR.24P.US
## 5610                         DT.TDS.DECT.CD.OT.AR.36.US
## 5611                         DT.TDS.DECT.CD.OT.AR.69.US
## 5612                         DT.TDS.DECT.CD.OT.AR.IQ.US
## 5613                               DT.TDS.DECT.CD.RM.US
## 5614                           DT.TDS.DECT.CD.SA.24P.US
## 5615                                  DT.TDS.DECT.EX.ZS
## 5616                                  DT.TDS.DECT.GD.ZS
## 5617                                  DT.TDS.DECT.GN.ZS
## 5618                                 DT.TDS.DECT.GNP.ZS
## 5619                                 DT.TDS.DECT.XGS.ZS
## 5620                            DT.TDS.DEFE.CD.IL.03.US
## 5621                          DT.TDS.DEFE.CD.IL.0912.US
## 5622                          DT.TDS.DEFE.CD.IL.1218.US
## 5623                          DT.TDS.DEFE.CD.IL.1824.US
## 5624                           DT.TDS.DEFE.CD.IL.24P.US
## 5625                            DT.TDS.DEFE.CD.IL.36.US
## 5626                            DT.TDS.DEFE.CD.IL.69.US
## 5627                            DT.TDS.DEFE.CD.IL.IQ.US
## 5628                                     DT.TDS.DEGG.CD
## 5629                                     DT.TDS.DEPS.CD
## 5630                            DT.TDS.DILD.CD.IL.03.US
## 5631                          DT.TDS.DILD.CD.IL.0912.US
## 5632                          DT.TDS.DILD.CD.IL.1218.US
## 5633                          DT.TDS.DILD.CD.IL.1824.US
## 5634                           DT.TDS.DILD.CD.IL.24P.US
## 5635                            DT.TDS.DILD.CD.IL.36.US
## 5636                            DT.TDS.DILD.CD.IL.69.US
## 5637                            DT.TDS.DILD.CD.IL.IQ.US
## 5638                                     DT.TDS.DIMF.CD
## 5639                         DT.TDS.DLBN.CD.CB.AR.03.US
## 5640                       DT.TDS.DLBN.CD.CB.AR.0912.US
## 5641                       DT.TDS.DLBN.CD.CB.AR.1218.US
## 5642                       DT.TDS.DLBN.CD.CB.AR.1824.US
## 5643                        DT.TDS.DLBN.CD.CB.AR.24P.US
## 5644                         DT.TDS.DLBN.CD.CB.AR.36.US
## 5645                         DT.TDS.DLBN.CD.CB.AR.69.US
## 5646                         DT.TDS.DLBN.CD.CB.AR.IQ.US
## 5647                         DT.TDS.DLBN.CD.GG.AR.03.US
## 5648                       DT.TDS.DLBN.CD.GG.AR.0912.US
## 5649                       DT.TDS.DLBN.CD.GG.AR.1218.US
## 5650                       DT.TDS.DLBN.CD.GG.AR.1824.US
## 5651                        DT.TDS.DLBN.CD.GG.AR.24P.US
## 5652                         DT.TDS.DLBN.CD.GG.AR.36.US
## 5653                         DT.TDS.DLBN.CD.GG.AR.69.US
## 5654                         DT.TDS.DLBN.CD.GG.AR.IQ.US
## 5655                         DT.TDS.DLBN.CD.MA.AR.03.US
## 5656                       DT.TDS.DLBN.CD.MA.AR.0912.US
## 5657                       DT.TDS.DLBN.CD.MA.AR.1218.US
## 5658                       DT.TDS.DLBN.CD.MA.AR.1824.US
## 5659                        DT.TDS.DLBN.CD.MA.AR.24P.US
## 5660                         DT.TDS.DLBN.CD.MA.AR.36.US
## 5661                         DT.TDS.DLBN.CD.MA.AR.69.US
## 5662                         DT.TDS.DLBN.CD.MA.AR.IQ.US
## 5663                         DT.TDS.DLBN.CD.OT.AR.03.US
## 5664                       DT.TDS.DLBN.CD.OT.AR.0912.US
## 5665                       DT.TDS.DLBN.CD.OT.AR.1218.US
## 5666                       DT.TDS.DLBN.CD.OT.AR.1824.US
## 5667                        DT.TDS.DLBN.CD.OT.AR.24P.US
## 5668                         DT.TDS.DLBN.CD.OT.AR.36.US
## 5669                         DT.TDS.DLBN.CD.OT.AR.69.US
## 5670                         DT.TDS.DLBN.CD.OT.AR.IQ.US
## 5671                         DT.TDS.DLCD.CD.CB.AR.03.US
## 5672                       DT.TDS.DLCD.CD.CB.AR.0912.US
## 5673                       DT.TDS.DLCD.CD.CB.AR.1218.US
## 5674                       DT.TDS.DLCD.CD.CB.AR.1824.US
## 5675                        DT.TDS.DLCD.CD.CB.AR.24P.US
## 5676                         DT.TDS.DLCD.CD.CB.AR.36.US
## 5677                         DT.TDS.DLCD.CD.CB.AR.69.US
## 5678                         DT.TDS.DLCD.CD.CB.AR.IQ.US
## 5679                         DT.TDS.DLCD.CD.GG.AR.03.US
## 5680                       DT.TDS.DLCD.CD.GG.AR.0912.US
## 5681                       DT.TDS.DLCD.CD.GG.AR.1218.US
## 5682                       DT.TDS.DLCD.CD.GG.AR.1824.US
## 5683                        DT.TDS.DLCD.CD.GG.AR.24P.US
## 5684                         DT.TDS.DLCD.CD.GG.AR.36.US
## 5685                         DT.TDS.DLCD.CD.GG.AR.69.US
## 5686                         DT.TDS.DLCD.CD.GG.AR.IQ.US
## 5687                         DT.TDS.DLCD.CD.MA.AR.03.US
## 5688                       DT.TDS.DLCD.CD.MA.AR.0912.US
## 5689                       DT.TDS.DLCD.CD.MA.AR.1218.US
## 5690                       DT.TDS.DLCD.CD.MA.AR.1824.US
## 5691                        DT.TDS.DLCD.CD.MA.AR.24P.US
## 5692                         DT.TDS.DLCD.CD.MA.AR.36.US
## 5693                         DT.TDS.DLCD.CD.MA.AR.69.US
## 5694                         DT.TDS.DLCD.CD.MA.AR.IQ.US
## 5695                         DT.TDS.DLCD.CD.OT.AR.03.US
## 5696                       DT.TDS.DLCD.CD.OT.AR.0912.US
## 5697                       DT.TDS.DLCD.CD.OT.AR.1218.US
## 5698                       DT.TDS.DLCD.CD.OT.AR.1824.US
## 5699                        DT.TDS.DLCD.CD.OT.AR.24P.US
## 5700                         DT.TDS.DLCD.CD.OT.AR.36.US
## 5701                         DT.TDS.DLCD.CD.OT.AR.69.US
## 5702                         DT.TDS.DLCD.CD.OT.AR.IQ.US
## 5703                         DT.TDS.DLTL.CD.CB.AR.03.US
## 5704                       DT.TDS.DLTL.CD.CB.AR.0912.US
## 5705                       DT.TDS.DLTL.CD.CB.AR.1218.US
## 5706                       DT.TDS.DLTL.CD.CB.AR.1824.US
## 5707                        DT.TDS.DLTL.CD.CB.AR.24P.US
## 5708                         DT.TDS.DLTL.CD.CB.AR.36.US
## 5709                         DT.TDS.DLTL.CD.CB.AR.69.US
## 5710                         DT.TDS.DLTL.CD.CB.AR.IQ.US
## 5711                         DT.TDS.DLTL.CD.GG.AR.03.US
## 5712                       DT.TDS.DLTL.CD.GG.AR.0912.US
## 5713                       DT.TDS.DLTL.CD.GG.AR.1218.US
## 5714                       DT.TDS.DLTL.CD.GG.AR.1824.US
## 5715                        DT.TDS.DLTL.CD.GG.AR.24P.US
## 5716                         DT.TDS.DLTL.CD.GG.AR.36.US
## 5717                         DT.TDS.DLTL.CD.GG.AR.69.US
## 5718                         DT.TDS.DLTL.CD.GG.AR.IQ.US
## 5719                         DT.TDS.DLTL.CD.MA.AR.03.US
## 5720                       DT.TDS.DLTL.CD.MA.AR.0912.US
## 5721                       DT.TDS.DLTL.CD.MA.AR.1218.US
## 5722                       DT.TDS.DLTL.CD.MA.AR.1824.US
## 5723                        DT.TDS.DLTL.CD.MA.AR.24P.US
## 5724                         DT.TDS.DLTL.CD.MA.AR.36.US
## 5725                         DT.TDS.DLTL.CD.MA.AR.69.US
## 5726                         DT.TDS.DLTL.CD.MA.AR.IQ.US
## 5727                         DT.TDS.DLTL.CD.OT.AR.03.US
## 5728                       DT.TDS.DLTL.CD.OT.AR.0912.US
## 5729                       DT.TDS.DLTL.CD.OT.AR.1218.US
## 5730                       DT.TDS.DLTL.CD.OT.AR.1824.US
## 5731                        DT.TDS.DLTL.CD.OT.AR.24P.US
## 5732                         DT.TDS.DLTL.CD.OT.AR.36.US
## 5733                         DT.TDS.DLTL.CD.OT.AR.69.US
## 5734                         DT.TDS.DLTL.CD.OT.AR.IQ.US
## 5735                         DT.TDS.DLTO.CD.CB.AR.03.US
## 5736                       DT.TDS.DLTO.CD.CB.AR.0912.US
## 5737                       DT.TDS.DLTO.CD.CB.AR.1218.US
## 5738                       DT.TDS.DLTO.CD.CB.AR.1824.US
## 5739                        DT.TDS.DLTO.CD.CB.AR.24P.US
## 5740                         DT.TDS.DLTO.CD.CB.AR.36.US
## 5741                         DT.TDS.DLTO.CD.CB.AR.69.US
## 5742                         DT.TDS.DLTO.CD.CB.AR.IQ.US
## 5743                         DT.TDS.DLTO.CD.GG.AR.03.US
## 5744                       DT.TDS.DLTO.CD.GG.AR.0912.US
## 5745                       DT.TDS.DLTO.CD.GG.AR.1218.US
## 5746                       DT.TDS.DLTO.CD.GG.AR.1824.US
## 5747                        DT.TDS.DLTO.CD.GG.AR.24P.US
## 5748                         DT.TDS.DLTO.CD.GG.AR.36.US
## 5749                         DT.TDS.DLTO.CD.GG.AR.69.US
## 5750                         DT.TDS.DLTO.CD.GG.AR.IQ.US
## 5751                         DT.TDS.DLTO.CD.MA.AR.03.US
## 5752                       DT.TDS.DLTO.CD.MA.AR.0912.US
## 5753                       DT.TDS.DLTO.CD.MA.AR.1218.US
## 5754                       DT.TDS.DLTO.CD.MA.AR.1824.US
## 5755                        DT.TDS.DLTO.CD.MA.AR.24P.US
## 5756                         DT.TDS.DLTO.CD.MA.AR.36.US
## 5757                         DT.TDS.DLTO.CD.MA.AR.69.US
## 5758                         DT.TDS.DLTO.CD.MA.AR.IQ.US
## 5759                         DT.TDS.DLTO.CD.OT.AR.03.US
## 5760                       DT.TDS.DLTO.CD.OT.AR.0912.US
## 5761                       DT.TDS.DLTO.CD.OT.AR.1218.US
## 5762                       DT.TDS.DLTO.CD.OT.AR.1824.US
## 5763                        DT.TDS.DLTO.CD.OT.AR.24P.US
## 5764                         DT.TDS.DLTO.CD.OT.AR.36.US
## 5765                         DT.TDS.DLTO.CD.OT.AR.69.US
## 5766                         DT.TDS.DLTO.CD.OT.AR.IQ.US
## 5767                            DT.TDS.DLTS.CD.GG.03.US
## 5768                          DT.TDS.DLTS.CD.GG.0912.US
## 5769                          DT.TDS.DLTS.CD.GG.1218.US
## 5770                          DT.TDS.DLTS.CD.GG.1824.US
## 5771                           DT.TDS.DLTS.CD.GG.24P.US
## 5772                            DT.TDS.DLTS.CD.GG.36.US
## 5773                            DT.TDS.DLTS.CD.GG.69.US
## 5774                            DT.TDS.DLTS.CD.GG.IQ.US
## 5775                         DT.TDS.DLTS.CD.MA.AR.03.US
## 5776                       DT.TDS.DLTS.CD.MA.AR.0912.US
## 5777                       DT.TDS.DLTS.CD.MA.AR.1218.US
## 5778                       DT.TDS.DLTS.CD.MA.AR.1824.US
## 5779                        DT.TDS.DLTS.CD.MA.AR.24P.US
## 5780                         DT.TDS.DLTS.CD.MA.AR.36.US
## 5781                         DT.TDS.DLTS.CD.MA.AR.69.US
## 5782                         DT.TDS.DLTS.CD.MA.AR.IQ.US
## 5783                         DT.TDS.DLTT.CD.CB.AR.03.US
## 5784                       DT.TDS.DLTT.CD.CB.AR.0912.US
## 5785                       DT.TDS.DLTT.CD.CB.AR.1218.US
## 5786                       DT.TDS.DLTT.CD.CB.AR.1824.US
## 5787                        DT.TDS.DLTT.CD.CB.AR.24P.US
## 5788                         DT.TDS.DLTT.CD.CB.AR.36.US
## 5789                         DT.TDS.DLTT.CD.CB.AR.69.US
## 5790                         DT.TDS.DLTT.CD.CB.AR.IQ.US
## 5791                         DT.TDS.DLTT.CD.GG.AR.03.US
## 5792                       DT.TDS.DLTT.CD.GG.AR.0912.US
## 5793                       DT.TDS.DLTT.CD.GG.AR.1218.US
## 5794                       DT.TDS.DLTT.CD.GG.AR.1824.US
## 5795                        DT.TDS.DLTT.CD.GG.AR.24P.US
## 5796                         DT.TDS.DLTT.CD.GG.AR.36.US
## 5797                         DT.TDS.DLTT.CD.GG.AR.69.US
## 5798                         DT.TDS.DLTT.CD.GG.AR.IQ.US
## 5799                         DT.TDS.DLTT.CD.MA.AR.03.US
## 5800                       DT.TDS.DLTT.CD.MA.AR.0912.US
## 5801                       DT.TDS.DLTT.CD.MA.AR.1218.US
## 5802                       DT.TDS.DLTT.CD.MA.AR.1824.US
## 5803                        DT.TDS.DLTT.CD.MA.AR.24P.US
## 5804                         DT.TDS.DLTT.CD.MA.AR.36.US
## 5805                         DT.TDS.DLTT.CD.MA.AR.69.US
## 5806                         DT.TDS.DLTT.CD.MA.AR.IQ.US
## 5807                         DT.TDS.DLTT.CD.OT.AR.03.US
## 5808                       DT.TDS.DLTT.CD.OT.AR.0912.US
## 5809                       DT.TDS.DLTT.CD.OT.AR.1218.US
## 5810                       DT.TDS.DLTT.CD.OT.AR.1824.US
## 5811                        DT.TDS.DLTT.CD.OT.AR.24P.US
## 5812                         DT.TDS.DLTT.CD.OT.AR.36.US
## 5813                         DT.TDS.DLTT.CD.OT.AR.69.US
## 5814                         DT.TDS.DLTT.CD.OT.AR.IQ.US
## 5815                                     DT.TDS.DLXF.CD
## 5816                                     DT.TDS.DOPS.CD
## 5817                                     DT.TDS.DPNG.CD
## 5818                                  DT.TDS.DPPF.XP.ZS
## 5819                                     DT.TDS.DPPG.CD
## 5820                                  DT.TDS.DPPG.GN.ZS
## 5821                                 DT.TDS.DPPG.REV.ZS
## 5822                                  DT.TDS.DPPG.RV.ZS
## 5823                                  DT.TDS.DPPG.XP.ZS
## 5824                                     DT.TDS.MIBR.CD
## 5825                                     DT.TDS.MIDA.CD
## 5826                                  DT.TDS.MLAT.CB.CD
## 5827                                     DT.TDS.MLAT.CD
## 5828                                  DT.TDS.MLAT.GG.CD
## 5829                                 DT.TDS.MLAT.OPS.CD
## 5830                                  DT.TDS.MLAT.PG.ZS
## 5831                                DT.TDS.MLAT.PRVG.CD
## 5832                                  DT.TDS.MLAT.PS.CD
## 5833                                  DT.TDS.MLTC.CB.CD
## 5834                                     DT.TDS.MLTC.CD
## 5835                                  DT.TDS.MLTC.GG.CD
## 5836                                 DT.TDS.MLTC.OPS.CD
## 5837                                DT.TDS.MLTC.PRVG.CD
## 5838                                  DT.TDS.MLTC.PS.CD
## 5839                                  DT.TDS.OFFT.CB.CD
## 5840                                     DT.TDS.OFFT.CD
## 5841                                  DT.TDS.OFFT.GG.CD
## 5842                                 DT.TDS.OFFT.OPS.CD
## 5843                                DT.TDS.OFFT.PRVG.CD
## 5844                                  DT.TDS.OFFT.PS.CD
## 5845                                  DT.TDS.PBND.CB.CD
## 5846                                     DT.TDS.PBND.CD
## 5847                                  DT.TDS.PBND.GG.CD
## 5848                                 DT.TDS.PBND.OPS.CD
## 5849                                DT.TDS.PBND.PRVG.CD
## 5850                                  DT.TDS.PBND.PS.CD
## 5851                                  DT.TDS.PCBK.CB.CD
## 5852                                     DT.TDS.PCBK.CD
## 5853                                  DT.TDS.PCBK.GG.CD
## 5854                                 DT.TDS.PCBK.OPS.CD
## 5855                                DT.TDS.PCBK.PRVG.CD
## 5856                                  DT.TDS.PCBK.PS.CD
## 5857                                     DT.TDS.PGNG.CD
## 5858                                     DT.TDS.PNGB.CD
## 5859                                     DT.TDS.PNGC.CD
## 5860                                  DT.TDS.PROP.CB.CD
## 5861                                     DT.TDS.PROP.CD
## 5862                                  DT.TDS.PROP.GG.CD
## 5863                                 DT.TDS.PROP.OPS.CD
## 5864                                DT.TDS.PROP.PRVG.CD
## 5865                                  DT.TDS.PROP.PS.CD
## 5866                                     DT.TDS.PRPG.CD
## 5867                         DT.TDS.PRVS.CD.00.03.MO.US
## 5868                            DT.TDS.PRVS.CD.03.YR.US
## 5869                         DT.TDS.PRVS.CD.04.06.MO.US
## 5870                            DT.TDS.PRVS.CD.04.YR.US
## 5871                         DT.TDS.PRVS.CD.05.10.YR.US
## 5872                            DT.TDS.PRVS.CD.05.YR.US
## 5873                         DT.TDS.PRVS.CD.07.09.MO.US
## 5874                         DT.TDS.PRVS.CD.10.12.MO.US
## 5875                         DT.TDS.PRVS.CD.10.15.YR.US
## 5876                         DT.TDS.PRVS.CD.13.18.MO.US
## 5877                         DT.TDS.PRVS.CD.15.UP.YR.US
## 5878                         DT.TDS.PRVS.CD.19.24.MO.US
## 5879                            DT.TDS.PRVS.CD.IQ.00.US
## 5880                                  DT.TDS.PRVT.CB.CD
## 5881                                     DT.TDS.PRVT.CD
## 5882                                  DT.TDS.PRVT.GG.CD
## 5883                                 DT.TDS.PRVT.OPS.CD
## 5884                                DT.TDS.PRVT.PRVG.CD
## 5885                                  DT.TDS.PRVT.PS.CD
## 5886                         DT.TDS.PUBS.CD.00.03.MO.US
## 5887                            DT.TDS.PUBS.CD.03.YR.US
## 5888                         DT.TDS.PUBS.CD.04.06.MO.US
## 5889                            DT.TDS.PUBS.CD.04.YR.US
## 5890                         DT.TDS.PUBS.CD.05.10.YR.US
## 5891                            DT.TDS.PUBS.CD.05.YR.US
## 5892                         DT.TDS.PUBS.CD.07.09.MO.US
## 5893                         DT.TDS.PUBS.CD.10.12.MO.US
## 5894                         DT.TDS.PUBS.CD.10.15.YR.US
## 5895                         DT.TDS.PUBS.CD.13.18.MO.US
## 5896                         DT.TDS.PUBS.CD.15.UP.YR.US
## 5897                         DT.TDS.PUBS.CD.19.24.MO.US
## 5898                            DT.TDS.PUBS.CD.IQ.00.US
## 5899                                     DT.TRA.DECT.CD
## 5900                               DT.TXA.DECT.CD.CB.US
## 5901                               DT.TXA.DECT.CD.GG.US
## 5902                            DT.TXA.DECT.CD.IL.IN.US
## 5903                            DT.TXA.DECT.CD.IL.PR.US
## 5904                               DT.TXA.DECT.CD.IL.US
## 5905                               DT.TXA.DECT.CD.MA.US
## 5906                            DT.TXA.DECT.CD.OT.HH.US
## 5907                            DT.TXA.DECT.CD.OT.NB.US
## 5908                            DT.TXA.DECT.CD.OT.NF.US
## 5909                               DT.TXA.DECT.CD.OT.US
## 5910                               DT.TXA.DECT.CD.TO.US
## 5911                               DT.TXA.DIDI.CD.IL.US
## 5912                               DT.TXA.DIFE.CD.IL.US
## 5913                               DT.TXA.DIIE.CD.IL.US
## 5914                                     DT.TXR.DPPG.CD
## 5915                                     DT.UND.DPPG.CD
## 5916                                     DT.UND.OFFT.CD
## 5917                                     DT.UND.PRVT.CD
## 5918                                      DXGSRMRCHNSCD
## 5919                                      DXGSRMRCHNSKD
## 5920                                      DXGSRMRCHNSXD
## 5921                                      DXGSRMRCHSACD
## 5922                                      DXGSRMRCHSAKD
## 5923                                      DXGSRMRCHSAXD
## 5924                                                E1i
## 5925                                               E1ii
## 5926                                              E1iii
## 5927                                                E2i
## 5928                                               E2ii
## 5929                                              E2iii
## 5930                                                E3i
## 5931                                               E3ii
## 5932                                              E3iii
## 5933                                                E4i
## 5934                                               E4ii
## 5935                                              E4iii
## 5936                                                E5i
## 5937                                               E5ii
## 5938                                              E5iii
## 5939                                                E6i
## 5940                                               E6ii
## 5941                                              E6iii
## 5942                                  EA.AGR.TOTL.IN.ZS
## 5943                                        EA.NUS.ATLS
## 5944                                        EA.NUS.FCRF
## 5945                                     EA.PRD.AGRI.KD
## 5946                                     EA.PRD.LAND.KD
## 5947                                      EC.XPD.CAP.CR
## 5948                                      EC.XPD.GSR.CR
## 5949                                     EC.XPD.OTHR.CR
## 5950                                     EC.XPD.STAF.CR
## 5951                                     EC.XPD.TOTL.CR
## 5952                                     EE.BOD.CGLS.ZS
## 5953                                     EE.BOD.CHEM.ZS
## 5954                                     EE.BOD.FOOD.ZS
## 5955                                     EE.BOD.MTAL.ZS
## 5956                                     EE.BOD.OTHR.ZS
## 5957                                     EE.BOD.PAPR.ZS
## 5958                                     EE.BOD.TOTL.KG
## 5959                                     EE.BOD.TXTL.ZS
## 5960                                     EE.BOD.WOOD.ZS
## 5961                                     EE.BOD.WRKR.KG
## 5962                                     EF.EFM.OVRL.XD
## 5963                                     EF.EFM.PROD.XD
## 5964                                     EF.EFM.RANK.XD
## 5965                                     EF.EFM.UNIV.XD
## 5966                                  EG.CFT.ACCS.RU.ZS
## 5967                                  EG.CFT.ACCS.UR.ZS
## 5968                                     EG.CFT.ACCS.ZS
## 5969                                  EG.EGY.PRIM.PP.KD
## 5970                                  EG.EGY.PROD.KT.OE
## 5971                                  EG.ELC.ACCS.RU.ZS
## 5972                                  EG.ELC.ACCS.UR.ZS
## 5973                                     EG.ELC.ACCS.ZS
## 5974                                     EG.ELC.COAL.KH
## 5975                                     EG.ELC.COAL.ZS
## 5976                                     EG.ELC.FOSL.ZS
## 5977                                     EG.ELC.HYRO.KH
## 5978                                     EG.ELC.HYRO.ZS
## 5979                                     EG.ELC.LOSS.KH
## 5980                                     EG.ELC.LOSS.ZS
## 5981                                     EG.ELC.NGAS.KH
## 5982                                     EG.ELC.NGAS.ZS
## 5983                                     EG.ELC.NUCL.KH
## 5984                                     EG.ELC.NUCL.ZS
## 5985                                     EG.ELC.PETR.KH
## 5986                                     EG.ELC.PETR.ZS
## 5987                                     EG.ELC.PROD.KH
## 5988                                     EG.ELC.RNEW.KH
## 5989                                     EG.ELC.RNEW.ZS
## 5990                                     EG.ELC.RNWX.KH
## 5991                                     EG.ELC.RNWX.ZS
## 5992                                     EG.FEC.RNEW.ZS
## 5993                                  EG.GDP.PUSE.KO.87
## 5994                                  EG.GDP.PUSE.KO.KD
## 5995                                  EG.GDP.PUSE.KO.PP
## 5996                               EG.GDP.PUSE.KO.PP.KD
## 5997                                     EG.IMP.CONS.ZS
## 5998                                  EG.IMP.TOTL.KT.OE
## 5999                                  EG.NSF.ACCS.RU.ZS
## 6000                                  EG.NSF.ACCS.UR.ZS
## 6001                                     EG.NSF.ACCS.ZS
## 6002                                  EG.USE.COMM.CL.ZS
## 6003                                  EG.USE.COMM.FO.ZS
## 6004                               EG.USE.COMM.GD.PP.KD
## 6005                                  EG.USE.COMM.KT.OE
## 6006                                  EG.USE.CRNW.KT.OE
## 6007                                     EG.USE.CRNW.ZS
## 6008                                     EG.USE.ELEC.KH
## 6009                                  EG.USE.ELEC.KH.PC
## 6010                                  EG.USE.PCAP.KG.OE
## 6011                                              EMBIG
## 6012                                             EMBIGI
## 6013                                        EN.AGR.EMPL
## 6014                                     EN.AGR.EMPL.FE
## 6015                                     EN.AGR.EMPL.IN
## 6016                                     EN.AGR.EMPL.MA
## 6017                                     EN.ANM.THRD.NO
## 6018                                     EN.ARE.LAND.ZS
## 6019                                  EN.ATM.CO2E.CP.KT
## 6020                                  EN.ATM.CO2E.EG.ZS
## 6021                                  EN.ATM.CO2E.FF.KT
## 6022                                  EN.ATM.CO2E.FF.ZS
## 6023                                    EN.ATM.CO2E.GDP
## 6024                                  EN.ATM.CO2E.GF.KT
## 6025                                  EN.ATM.CO2E.GF.ZS
## 6026                                  EN.ATM.CO2E.GL.KT
## 6027                               EN.ATM.CO2E.KD.87.GD
## 6028                                  EN.ATM.CO2E.KD.GD
## 6029                                     EN.ATM.CO2E.KT
## 6030                                  EN.ATM.CO2E.LF.KT
## 6031                                  EN.ATM.CO2E.LF.ZS
## 6032                                     EN.ATM.CO2E.PC
## 6033                                  EN.ATM.CO2E.PP.GD
## 6034                               EN.ATM.CO2E.PP.GD.KD
## 6035                                  EN.ATM.CO2E.SF.KT
## 6036                                  EN.ATM.CO2E.SF.ZS
## 6037                                  EN.ATM.GHGO.KT.CE
## 6038                                     EN.ATM.GHGO.ZG
## 6039                                  EN.ATM.GHGT.KT.CE
## 6040                                     EN.ATM.GHGT.ZG
## 6041                                  EN.ATM.HFCG.KT.CE
## 6042                               EN.ATM.METH.AG.KT.CE
## 6043                                  EN.ATM.METH.AG.ZS
## 6044                               EN.ATM.METH.EG.KT.CE
## 6045                                  EN.ATM.METH.EG.ZS
## 6046                                  EN.ATM.METH.IN.ZS
## 6047                                  EN.ATM.METH.KT.CE
## 6048                                     EN.ATM.METH.PC
## 6049                                     EN.ATM.METH.ZG
## 6050                               EN.ATM.NOXE.AG.KT.CE
## 6051                                  EN.ATM.NOXE.AG.ZS
## 6052                               EN.ATM.NOXE.EG.KT.CE
## 6053                                  EN.ATM.NOXE.EG.ZS
## 6054                                  EN.ATM.NOXE.EI.ZS
## 6055                               EN.ATM.NOXE.IN.KT.CE
## 6056                                  EN.ATM.NOXE.IN.ZS
## 6057                                  EN.ATM.NOXE.KT.CE
## 6058                                  EN.ATM.NOXE.MT.CE
## 6059                                     EN.ATM.NOXE.PC
## 6060                                     EN.ATM.NOXE.ZG
## 6061                                  EN.ATM.PFCG.KT.CE
## 6062                                  EN.ATM.PM10.MC.M3
## 6063                                  EN.ATM.PM25.MC.M3
## 6064                               EN.ATM.PM25.MC.T1.ZS
## 6065                               EN.ATM.PM25.MC.T2.ZS
## 6066                               EN.ATM.PM25.MC.T3.ZS
## 6067                                  EN.ATM.PM25.MC.ZS
## 6068                                  EN.ATM.SF6G.KT.CE
## 6069                                     EN.BIR.THRD.NO
## 6070                                     EN.BIR.TOTL.NO
## 6071                                     EN.CLC.CDDY.XD
## 6072                                     EN.CLC.DRSK.XQ
## 6073                                  EN.CLC.GHGR.MT.CE
## 6074                                     EN.CLC.HEAT.XD
## 6075                                     EN.CLC.MDAT.ZS
## 6076                                     EN.CLC.PRCP.XD
## 6077                                     EN.CLC.SPEI.XD
## 6078                                     EN.CO2.BLDG.MT
## 6079                                     EN.CO2.BLDG.ZS
## 6080                                     EN.CO2.ETOT.MT
## 6081                                     EN.CO2.ETOT.ZS
## 6082                                     EN.CO2.MANF.MT
## 6083                                     EN.CO2.MANF.ZS
## 6084                                     EN.CO2.OTHX.MT
## 6085                                     EN.CO2.OTHX.ZS
## 6086                                     EN.CO2.TRAN.MT
## 6087                                     EN.CO2.TRAN.ZS
## 6088                                  EN.EGY.PROD.KT.OE
## 6089                                    EN.ELC.PROD.GWH
## 6090                                EN.ELC.PROD.LOSS.ZS
## 6091                                     EN.FSH.THRD.NO
## 6092                                     EN.HPT.THRD.NO
## 6093                                     EN.HPT.TOTL.NO
## 6094                                        EN.LAND.CRP
## 6095                                     EN.LAND.CRP.ZS
## 6096                                        EN.LAND.OTH
## 6097                                     EN.LAND.OTH.ZS
## 6098                                        EN.LAND.PPS
## 6099                                     EN.LAND.PPS.ZS
## 6100                                       EN.LAND.TOTL
## 6101                                  EN.LND.IRIG.AR.ZS
## 6102                                     EN.MAM.THRD.NO
## 6103                                    EN.NAGR.EMPL.IN
## 6104                                        EN.POP.DNST
## 6105                                  EN.POP.EL5M.RU.ZS
## 6106                                  EN.POP.EL5M.UR.ZS
## 6107                                     EN.POP.EL5M.ZS
## 6108                                  EN.POP.SLUM.UR.ZS
## 6109                                        EN.PRD.ELEC
## 6110                                 EN.PRD.ELEC.POP.ZS
## 6111                                        EN.ROD.ACCT
## 6112                                        EN.ROD.TRAF
## 6113                                        EN.RUR.DNST
## 6114                                   EN.RUR.DNST.TOTL
## 6115                                        EN.TDF.COMP
## 6116                                     EN.TDF.COMP.ZS
## 6117                                 EN.TRN.ACCT.VEH.ZS
## 6118                                     EN.TRN.NVEH.1K
## 6119                                     EN.TRN.NVEH.KM
## 6120                                        EN.URB.LCTY
## 6121                                  EN.URB.LCTY.UR.ZS
## 6122                                        EN.URB.MCTY
## 6123                                  EN.URB.MCTY.TL.ZS
## 6124                                 ENF.CONT.COEN.ATDR
## 6125                              ENF.CONT.COEN.ATFE.PR
## 6126                              ENF.CONT.COEN.COST.ZS
## 6127                         ENF.CONT.COEN.COST.ZS.DFRN
## 6128                                 ENF.CONT.COEN.CSMG
## 6129                                 ENF.CONT.COEN.CTAU
## 6130                              ENF.CONT.COEN.CTFE.PR
## 6131                            ENF.CONT.COEN.CTSP.DB16
## 6132                          ENF.CONT.COEN.CTSP.DB1719
## 6133                          ENF.CONT.COEN.DB0415.DFRN
## 6134                            ENF.CONT.COEN.DB16.DFRN
## 6135                          ENF.CONT.COEN.DB1719.DFRN
## 6136                              ENF.CONT.COEN.ENFE.PR
## 6137                              ENF.CONT.COEN.ENJU.DY
## 6138                              ENF.CONT.COEN.FLSR.DY
## 6139                              ENF.CONT.COEN.PROC.NO
## 6140                         ENF.CONT.COEN.PROC.NO.DFRN
## 6141                       ENF.CONT.COEN.QUJP.DB16.DFRN
## 6142                     ENF.CONT.COEN.QUJP.DB1719.DFRN
## 6143                              ENF.CONT.COEN.QUJP.XD
## 6144                              ENF.CONT.COEN.RK.DB19
## 6145                              ENF.CONT.COEN.TRJU.DY
## 6146                                   ENF.CONT.DURS.DY
## 6147                              ENF.CONT.DURS.DY.DFRN
## 6148                                   ENF.CONT.EC.QJPI
## 6149                                        EP.CPI.1996
## 6150                                        EP.CPI.2002
## 6151                                        EP.CPI.2007
## 6152                                        EP.CPI.2012
## 6153                                     EP.PMP.DESL.CD
## 6154                                     EP.PMP.SGAS.CD
## 6155                                     EP.PPR.BRED.XD
## 6156                                     EP.PPR.MAIZ.CD
## 6157                                     EP.PPR.MEAT.XD
## 6158                                     EP.PPR.WHEA.CD
## 6159                                     ER.BDV.TOTL.XQ
## 6160                                     ER.FSH.AQUA.MT
## 6161                                     ER.FSH.CAPT.MT
## 6162                                     ER.FSH.PROD.MT
## 6163                                     ER.FST.DFST.ZG
## 6164                                  ER.GDP.FWTL.M3.KD
## 6165                                     ER.H2O.FWAG.ZS
## 6166                                     ER.H2O.FWDM.ZS
## 6167                                     ER.H2O.FWIN.ZS
## 6168                                     ER.H2O.FWST.ZS
## 6169                                     ER.H2O.FWTL.K3
## 6170                                     ER.H2O.FWTL.ZS
## 6171                                     ER.H2O.INTR.K3
## 6172                                     ER.H2O.INTR.PC
## 6173                                     ER.LND.PTLD.K2
## 6174                                  ER.LND.PTLD.TR.NO
## 6175                                  ER.LND.PTLD.TR.ZS
## 6176                                     ER.LND.PTLD.ZS
## 6177                                     ER.MRN.PTMR.K2
## 6178                                     ER.MRN.PTMR.NO
## 6179                                     ER.MRN.PTMR.ZS
## 6180                                     ER.PTD.TOTL.ZS
## 6181                                  EU.EGY.IMPT.CO.ZS
## 6182                                    EU.EGY.USES.GDP
## 6183                               EU.EGY.USES.KG.OE.PC
## 6184                                  EU.EGY.USES.KT.OE
## 6185                                     FA.LBL.RCUR.CN
## 6186                                     FB.AST.FRNO.ZS
## 6187                                  FB.AST.LOAN.CB.P3
## 6188                                  FB.AST.LOAN.CO.P3
## 6189                                  FB.AST.LOAN.MF.P3
## 6190                                  FB.AST.LOAN.SF.P3
## 6191                                     FB.AST.NPER.ZS
## 6192                                     FB.AST.PUBO.ZS
## 6193                                     FB.ATM.TOTL.P5
## 6194                                  FB.BNK.BRCH.CB.P5
## 6195                                  FB.BNK.BRCH.CO.P5
## 6196                                  FB.BNK.BRCH.MF.P5
## 6197                                     FB.BNK.BRCH.P5
## 6198                                  FB.BNK.BRCH.SF.P5
## 6199                                     FB.BNK.CAPA.ZS
## 6200                                  FB.CAP.INST.ST.DM
## 6201                               FB.CAP.INST.ST.MS.AL
## 6202                               FB.CAP.INST.ST.MS.GI
## 6203                               FB.CAP.INST.ST.MS.GP
## 6204                               FB.CAP.INST.ST.MS.IO
## 6205                               FB.CAP.INST.ST.MS.WB
## 6206                                  FB.CAP.INST.ST.MU
## 6207                                  FB.CAP.INST.ST.SG
## 6208                                  FB.CAP.LEGL.DF.FE
## 6209                              FB.CAP.POLI.FE.CTR.WS
## 6210                                 FB.CAP.POLI.G2P.FE
## 6211                                  FB.CAP.POLI.GL.AP
## 6212                                  FB.CAP.POLI.GL.SP
## 6213                                  FB.CAP.POLI.GL.WP
## 6214                                  FB.CAP.POLI.NM.5Y
## 6215                               FB.CAP.POLI.NS.BF.5Y
## 6216                               FB.CAP.POLI.NS.FC.5Y
## 6217                              FB.CAP.POLI.PSC.CD.2Y
## 6218                              FB.CAP.POLI.PSC.DT.FE
## 6219                              FB.CAP.POLI.PSC.IP.2Y
## 6220                              FB.CAP.POLI.PSC.JS.FE
## 6221                                 FB.CAP.POLI.PSC.NI
## 6222                              FB.CAP.POLI.PSC.PR.FE
## 6223                              FB.CAP.POLI.PSC.SS.FE
## 6224                              FB.CAP.POLI.PSC.ST.FE
## 6225                              FB.CAP.POLI.PSC.UN.FE
## 6226                             FB.CAP.POLI.PTC.INF.WS
## 6227                                  FB.CAP.POLI.RE.AP
## 6228                                  FB.CAP.POLI.RE.SP
## 6229                                  FB.CAP.POLI.RE.WP
## 6230                               FB.CAP.POLI.RG.DC.AP
## 6231                               FB.CAP.POLI.RG.DC.SP
## 6232                               FB.CAP.POLI.RG.DC.WP
## 6233                                     FB.CBK.BRCH.P5
## 6234                                     FB.CBK.BRWR.P3
## 6235                                     FB.CBK.DPTR.P3
## 6236                                  FB.DPT.INSU.PC.ZS
## 6237                               FB.FCP.BREG.AL.CO.NP
## 6238                                  FB.FCP.BREG.EB.AR
## 6239                                  FB.FCP.BREG.EB.EL
## 6240                                  FB.FCP.BREG.EB.NP
## 6241                                  FB.FCP.BREG.EB.OR
## 6242                               FB.FCP.BREG.ML.PC.AG
## 6243                               FB.FCP.BREG.ML.PC.AP
## 6244                               FB.FCP.BREG.ML.PC.CO
## 6245                               FB.FCP.BREG.ML.PC.CR
## 6246                               FB.FCP.BREG.ML.PC.CS
## 6247                               FB.FCP.BREG.ML.PC.MS
## 6248                               FB.FCP.BREG.ML.PC.RO
## 6249                                  FB.FCP.BREG.MS.DC
## 6250                               FB.FCP.BREG.PR.BU.ND
## 6251                               FB.FCP.BREG.PR.DI.SC
## 6252                               FB.FCP.BREG.PR.EF.AC
## 6253                               FB.FCP.BREG.PR.EF.RP
## 6254                               FB.FCP.BREG.PR.EP.AC
## 6255                               FB.FCP.BREG.PR.TC.RC
## 6256                               FB.FCP.BREG.PR.TC.RL
## 6257                               FB.FCP.BREG.PR.TC.UF
## 6258                                  FB.FCP.DISR.AS.AD
## 6259                                  FB.FCP.DISR.AS.AN
## 6260                                  FB.FCP.DISR.AS.BM
## 6261                                  FB.FCP.DISR.AS.BO
## 6262                                  FB.FCP.DISR.AS.CI
## 6263                                  FB.FCP.DISR.AS.CT
## 6264                                  FB.FCP.DISR.AS.DC
## 6265                                  FB.FCP.DISR.AS.FA
## 6266                                  FB.FCP.DISR.AS.FC
## 6267                                  FB.FCP.DISR.AS.FG
## 6268                                  FB.FCP.DISR.AS.FI
## 6269                                  FB.FCP.DISR.AS.FM
## 6270                                  FB.FCP.DISR.AS.FO
## 6271                               FB.FCP.DISR.AS.IC.AG
## 6272                               FB.FCP.DISR.AS.IC.AT
## 6273                               FB.FCP.DISR.AS.IC.BL
## 6274                               FB.FCP.DISR.AS.IC.CA
## 6275                               FB.FCP.DISR.AS.IC.CC
## 6276                               FB.FCP.DISR.AS.IC.CL
## 6277                               FB.FCP.DISR.AS.IC.DA
## 6278                               FB.FCP.DISR.AS.IC.DC
## 6279                               FB.FCP.DISR.AS.IC.EC
## 6280                               FB.FCP.DISR.AS.IC.EM
## 6281                               FB.FCP.DISR.AS.IC.FD
## 6282                               FB.FCP.DISR.AS.IC.HL
## 6283                               FB.FCP.DISR.AS.IC.LI
## 6284                               FB.FCP.DISR.AS.IC.ML
## 6285                               FB.FCP.DISR.AS.IC.NI
## 6286                               FB.FCP.DISR.AS.IC.OT
## 6287                               FB.FCP.DISR.AS.IC.PC
## 6288                               FB.FCP.DISR.AS.IC.UC
## 6289                               FB.FCP.DISR.AS.IC.UI
## 6290                               FB.FCP.DISR.AS.IC.UT
## 6291                                  FB.FCP.DISR.AS.IR
## 6292                                  FB.FCP.DISR.AS.MI
## 6293                                  FB.FCP.DISR.AS.MO
## 6294                                  FB.FCP.DISR.AS.PS
## 6295                                  FB.FCP.DISR.AS.RS
## 6296                                  FB.FCP.DISR.AS.RT
## 6297                                  FB.FCP.DISR.AS.SE
## 6298                                  FB.FCP.DISR.AS.VI
## 6299                                  FB.FCP.DISR.AS.WR
## 6300                                  FB.FCP.DISR.CH.AC
## 6301                                  FB.FCP.DISR.CH.DU
## 6302                                  FB.FCP.DISR.CH.EM
## 6303                                  FB.FCP.DISR.CH.IP
## 6304                                  FB.FCP.DISR.CH.RG
## 6305                                  FB.FCP.DISR.CH.RK
## 6306                                  FB.FCP.DISR.CH.ST
## 6307                                  FB.FCP.DISR.CH.TR
## 6308                               FB.FCP.INST.CB.DR.AF
## 6309                               FB.FCP.INST.CB.DR.LL
## 6310                               FB.FCP.INST.CB.DR.PL
## 6311                               FB.FCP.INST.CB.DR.RR
## 6312                               FB.FCP.INST.CB.DS.AS
## 6313                               FB.FCP.INST.CB.DS.CS
## 6314                               FB.FCP.INST.CB.DS.PS
## 6315                               FB.FCP.INST.CB.DS.SS
## 6316                               FB.FCP.INST.CB.DS.UR
## 6317                               FB.FCP.INST.CB.PD.CF
## 6318                               FB.FCP.INST.CB.PD.CM
## 6319                               FB.FCP.INST.CB.PD.DI
## 6320                               FB.FCP.INST.CB.PD.ER
## 6321                               FB.FCP.INST.CB.PD.FP
## 6322                               FB.FCP.INST.CB.PD.MB
## 6323                               FB.FCP.INST.CB.PD.MF
## 6324                               FB.FCP.INST.CB.PD.OF
## 6325                               FB.FCP.INST.CB.PD.RI
## 6326                               FB.FCP.INST.CB.PD.SW
## 6327                               FB.FCP.INST.CB.SF.AS
## 6328                                  FB.FCP.INST.EP.IF
## 6329                                  FB.FCP.INST.EP.IN
## 6330                                  FB.FCP.INST.EP.IS
## 6331                                  FB.FCP.INST.EP.IW
## 6332                                  FB.FCP.INST.EP.RF
## 6333                                  FB.FCP.INST.EP.RL
## 6334                                  FB.FCP.INST.EP.WA
## 6335                               FB.FCP.INST.ES.AF.10
## 6336                               FB.FCP.INST.ES.BF.2K
## 6337                               FB.FCP.INST.ES.BW.01
## 6338                               FB.FCP.INST.ES.WH.EN
## 6339                               FB.FCP.INST.FC.SF.AS
## 6340                               FB.FCP.INST.MC.SF.AS
## 6341                               FB.FCP.INST.NB.SF.AS
## 6342                               FB.FCP.INST.NS.BW.LC
## 6343                               FB.FCP.INST.NS.BW.XL
## 6344                               FB.FCP.INST.NS.HW.MY
## 6345                               FB.FCP.INST.NS.LS.XP
## 6346                               FB.FCP.INST.NS.MT.CM
## 6347                               FB.FCP.INST.OB.SF.AS
## 6348                               FB.FCP.INST.OD.SF.AS
## 6349                               FB.FCP.INST.SA.MA.CH
## 6350                               FB.FCP.INST.SA.MA.EI
## 6351                               FB.FCP.INST.SA.MA.FE
## 6352                               FB.FCP.INST.SA.MA.II
## 6353                               FB.FCP.INST.SA.MA.IR
## 6354                               FB.FCP.INST.SA.MA.MM
## 6355                               FB.FCP.INST.SA.MA.MR
## 6356                               FB.FCP.INST.SA.MA.MS
## 6357                               FB.FCP.INST.SA.MA.NC
## 6358                               FB.FCP.INST.SA.MA.RF
## 6359                               FB.FCP.INST.SA.MA.TR
## 6360                               FB.FCP.INST.SI.SF.AS
## 6361                               FB.FCP.INST.ST.RS.DP
## 6362                               FB.FCP.INST.ST.RS.GP
## 6363                               FB.FCP.INST.ST.RS.IA
## 6364                               FB.FCP.INST.ST.RS.IS
## 6365                               FB.FCP.INST.ST.RS.SH
## 6366                               FB.FCP.INST.ST.RS.WT
## 6367                               FB.FCP.INST.ST.UA.DF
## 6368                               FB.FCP.LEGL.FL.SA.EX
## 6369                               FB.FCP.LEGL.FR.CP.EX
## 6370                               FB.FCP.LEGL.GL.EF.EX
## 6371                               FB.FCP.LEGL.GL.NF.EX
## 6372                               FB.FCP.LEGL.NP.NF.NE
## 6373                               FB.FCP.LEGL.PR.SA.EX
## 6374                               FB.FCP.LEGL.SL.PP.EX
## 6375                                     FB.FIN.INFO.XQ
## 6376                               FB.INC.BNKG.AC.SC.MC
## 6377                               FB.INC.BNKG.AC.SC.MM
## 6378                               FB.INC.BNKG.AC.SC.MO
## 6379                               FB.INC.BNKG.AC.SC.MX
## 6380                               FB.INC.BNKG.AC.SC.NC
## 6381                               FB.INC.BNKG.AC.SC.NL
## 6382                               FB.INC.BNKG.AC.SC.OF
## 6383                               FB.INC.EMNY.NB.IN.PM
## 6384                               FB.INC.EMNY.NB.IP.NP
## 6385                               FB.INC.EMNY.NB.PU.RR
## 6386                               FB.INC.EMNY.NB.SP.PM
## 6387                               FB.INC.EMNY.SF.TA.CB
## 6388                               FB.INC.EMNY.SF.TA.EA
## 6389                               FB.INC.EMNY.SF.TA.ND
## 6390                               FB.INC.EMNY.SF.TA.OT
## 6391                               FB.INC.EMNY.SF.TA.RA
## 6392                               FB.INC.EMNY.SF.TA.TA
## 6393                               FB.INC.EMNY.SP.IF.AM
## 6394                               FB.INC.EMNY.SP.IF.AO
## 6395                               FB.INC.EMNY.SP.IF.NR
## 6396                               FB.INC.EMNY.SP.IF.SM
## 6397                               FB.INC.EMNY.SP.IF.WH
## 6398                               FB.INC.INST.CB.AU.AR
## 6399                               FB.INC.INST.CB.AU.NR
## 6400                               FB.INC.INST.CB.AU.SR
## 6401                               FB.INC.INST.CB.AU.WR
## 6402                               FB.INC.INST.CB.CD.SE
## 6403                              FB.INC.INST.CB.CRB.CR
## 6404                               FB.INC.INST.CB.LN.AL
## 6405                               FB.INC.INST.CB.LN.NL
## 6406                               FB.INC.INST.CB.LN.SL
## 6407                               FB.INC.INST.CB.LN.WL
## 6408                               FB.INC.INST.CB.LT.NF
## 6409                               FB.INC.INST.CB.LT.NI
## 6410                               FB.INC.INST.CB.LT.OE
## 6411                               FB.INC.INST.CB.LT.SM
## 6412                               FB.INC.INST.CB.TP.LI
## 6413                               FB.INC.INST.FC.AU.AR
## 6414                               FB.INC.INST.FC.AU.NR
## 6415                               FB.INC.INST.FC.AU.SR
## 6416                               FB.INC.INST.FC.AU.WR
## 6417                               FB.INC.INST.FC.CD.SE
## 6418                              FB.INC.INST.FC.CRB.CR
## 6419                               FB.INC.INST.FC.LN.AL
## 6420                               FB.INC.INST.FC.LN.NL
## 6421                               FB.INC.INST.FC.LN.SL
## 6422                               FB.INC.INST.FC.LN.WL
## 6423                               FB.INC.INST.FC.LT.NF
## 6424                               FB.INC.INST.FC.LT.NI
## 6425                               FB.INC.INST.FC.LT.OE
## 6426                               FB.INC.INST.FC.LT.SM
## 6427                               FB.INC.INST.FC.TP.LI
## 6428                               FB.INC.INST.FP.AU.CR
## 6429                               FB.INC.INST.FP.AU.LR
## 6430                               FB.INC.INST.FP.AU.OR
## 6431                                  FB.INC.INST.FW.CB
## 6432                                  FB.INC.INST.FW.FC
## 6433                                  FB.INC.INST.FW.MC
## 6434                                  FB.INC.INST.FW.NB
## 6435                                  FB.INC.INST.FW.OB
## 6436                                  FB.INC.INST.FW.OD
## 6437                               FB.INC.INST.MC.AU.AR
## 6438                               FB.INC.INST.MC.AU.NR
## 6439                               FB.INC.INST.MC.AU.SR
## 6440                               FB.INC.INST.MC.AU.WR
## 6441                              FB.INC.INST.MC.CRB.CR
## 6442                               FB.INC.INST.MC.LN.AL
## 6443                               FB.INC.INST.MC.LN.NL
## 6444                               FB.INC.INST.MC.LN.SL
## 6445                               FB.INC.INST.MC.LN.WL
## 6446                               FB.INC.INST.MC.TP.LI
## 6447                               FB.INC.INST.NB.AU.AR
## 6448                               FB.INC.INST.NB.AU.NR
## 6449                               FB.INC.INST.NB.AU.SR
## 6450                               FB.INC.INST.NB.AU.WR
## 6451                              FB.INC.INST.NB.CRB.CR
## 6452                               FB.INC.INST.NB.TP.LI
## 6453                               FB.INC.INST.OB.AU.AR
## 6454                               FB.INC.INST.OB.AU.NR
## 6455                               FB.INC.INST.OB.AU.SR
## 6456                               FB.INC.INST.OB.AU.WR
## 6457                               FB.INC.INST.OB.CD.SE
## 6458                              FB.INC.INST.OB.CRB.CR
## 6459                               FB.INC.INST.OB.LN.AL
## 6460                               FB.INC.INST.OB.LN.NL
## 6461                               FB.INC.INST.OB.LN.SL
## 6462                               FB.INC.INST.OB.LN.WL
## 6463                               FB.INC.INST.OB.LT.NF
## 6464                               FB.INC.INST.OB.LT.NI
## 6465                               FB.INC.INST.OB.LT.OE
## 6466                               FB.INC.INST.OB.LT.SM
## 6467                               FB.INC.INST.OB.TP.LI
## 6468                               FB.INC.INST.OD.AU.AR
## 6469                               FB.INC.INST.OD.AU.NR
## 6470                               FB.INC.INST.OD.AU.SR
## 6471                               FB.INC.INST.OD.AU.WR
## 6472                               FB.INC.INST.OD.CD.SE
## 6473                              FB.INC.INST.OD.CRB.CR
## 6474                               FB.INC.INST.OD.LN.AL
## 6475                               FB.INC.INST.OD.LN.NL
## 6476                               FB.INC.INST.OD.LN.SL
## 6477                               FB.INC.INST.OD.LN.WL
## 6478                               FB.INC.INST.OD.LT.NF
## 6479                               FB.INC.INST.OD.LT.NI
## 6480                               FB.INC.INST.OD.LT.OE
## 6481                               FB.INC.INST.OD.LT.SM
## 6482                               FB.INC.INST.OD.TP.LI
## 6483                               FB.INC.INST.PA.CB.AG
## 6484                               FB.INC.INST.PA.CB.CA
## 6485                               FB.INC.INST.PA.CB.EM
## 6486                               FB.INC.INST.PA.CB.IN
## 6487                               FB.INC.INST.PA.CB.PC
## 6488                               FB.INC.INST.PA.CB.PN
## 6489                               FB.INC.INST.PA.CB.TP
## 6490                               FB.INC.INST.PA.FC.AG
## 6491                               FB.INC.INST.PA.FC.CA
## 6492                               FB.INC.INST.PA.FC.EM
## 6493                               FB.INC.INST.PA.FC.IN
## 6494                               FB.INC.INST.PA.FC.PC
## 6495                               FB.INC.INST.PA.FC.PN
## 6496                               FB.INC.INST.PA.FC.TP
## 6497                               FB.INC.INST.PA.MC.AG
## 6498                               FB.INC.INST.PA.MC.CA
## 6499                               FB.INC.INST.PA.MC.EM
## 6500                               FB.INC.INST.PA.MC.IN
## 6501                               FB.INC.INST.PA.MC.PC
## 6502                               FB.INC.INST.PA.MC.PN
## 6503                               FB.INC.INST.PA.MC.TP
## 6504                               FB.INC.INST.PA.NB.AG
## 6505                               FB.INC.INST.PA.NB.CA
## 6506                               FB.INC.INST.PA.NB.EM
## 6507                               FB.INC.INST.PA.NB.IN
## 6508                               FB.INC.INST.PA.NB.PC
## 6509                               FB.INC.INST.PA.NB.PN
## 6510                               FB.INC.INST.PA.NB.TP
## 6511                               FB.INC.INST.PA.OB.AG
## 6512                               FB.INC.INST.PA.OB.CA
## 6513                               FB.INC.INST.PA.OB.EM
## 6514                               FB.INC.INST.PA.OB.IN
## 6515                               FB.INC.INST.PA.OB.PC
## 6516                               FB.INC.INST.PA.OB.PN
## 6517                               FB.INC.INST.PA.OB.TP
## 6518                               FB.INC.INST.PA.OD.AG
## 6519                               FB.INC.INST.PA.OD.CA
## 6520                               FB.INC.INST.PA.OD.EM
## 6521                               FB.INC.INST.PA.OD.IN
## 6522                               FB.INC.INST.PA.OD.PC
## 6523                               FB.INC.INST.PA.OD.PN
## 6524                               FB.INC.INST.PA.OD.TP
## 6525                               FB.INC.INST.SU.MN.NB
## 6526                               FB.INC.INST.TP.CB.ID
## 6527                               FB.INC.INST.TP.CB.LA
## 6528                               FB.INC.INST.TP.CB.OA
## 6529                               FB.INC.INST.TP.CB.RD
## 6530                               FB.INC.INST.TP.FC.ID
## 6531                               FB.INC.INST.TP.FC.LA
## 6532                               FB.INC.INST.TP.FC.OA
## 6533                               FB.INC.INST.TP.FC.RD
## 6534                               FB.INC.INST.TP.MC.ID
## 6535                               FB.INC.INST.TP.MC.LA
## 6536                               FB.INC.INST.TP.MC.OA
## 6537                               FB.INC.INST.TP.MC.RD
## 6538                               FB.INC.INST.TP.NB.ID
## 6539                               FB.INC.INST.TP.NB.LA
## 6540                               FB.INC.INST.TP.NB.OA
## 6541                               FB.INC.INST.TP.NB.RD
## 6542                               FB.INC.INST.TP.OB.ID
## 6543                               FB.INC.INST.TP.OB.LA
## 6544                               FB.INC.INST.TP.OB.OA
## 6545                               FB.INC.INST.TP.OB.RD
## 6546                               FB.INC.INST.TP.OD.ID
## 6547                               FB.INC.INST.TP.OD.LA
## 6548                               FB.INC.INST.TP.OD.OA
## 6549                               FB.INC.INST.TP.OD.RD
## 6550                                  FB.INC.INST.TP.RA
## 6551                                  FB.INC.LEGL.DF.MC
## 6552                                  FB.INC.LEGL.DF.MF
## 6553                                  FB.INC.LEGL.DF.MS
## 6554                                  FB.INC.NSTR.FC.DV
## 6555                                  FB.INC.NSTR.FC.LN
## 6556                                  FB.INC.NSTR.FI.DV
## 6557                                  FB.INC.NSTR.FI.LN
## 6558                               FB.INC.NSTR.GF.FI.DV
## 6559                               FB.INC.NSTR.GF.FI.LN
## 6560                                  FB.INC.NSTR.MF.DV
## 6561                                  FB.INC.NSTR.MF.LN
## 6562                               FB.INC.NSTR.ND.FI.DV
## 6563                               FB.INC.NSTR.ND.FI.LN
## 6564                               FB.INC.POLI.FI.DT.BP
## 6565                               FB.INC.POLI.FI.GT.FA
## 6566                                  FB.INC.POLI.FI.PL
## 6567                                  FB.INC.POLI.FI.RE
## 6568                                  FB.INC.POLI.FI.TI
## 6569                                  FB.INC.SURV.AF.FR
## 6570                                  FB.INC.SURV.AF.HH
## 6571                                  FB.LBL.DDPT.CB.P3
## 6572                                  FB.LBL.DDPT.CO.P3
## 6573                                  FB.LBL.DDPT.MF.P3
## 6574                                     FB.LBL.DDPT.P3
## 6575                                  FB.LBL.DDPT.SF.P3
## 6576                                     FB.POS.TOTL.P5
## 6577                                     FC.XPD.ADMN.CR
## 6578                                      FC.XPD.AGR.CR
## 6579                                     FC.XPD.ECON.CR
## 6580                                      FC.XPD.EDU.CR
## 6581                                     FC.XPD.ENVR.CR
## 6582                                       FC.XPD.HE.CR
## 6583                                     FC.XPD.HOUS.CR
## 6584                                     FC.XPD.INFR.CR
## 6585                                     FC.XPD.PROT.CR
## 6586                                     FC.XPD.PUBL.CR
## 6587                                     FC.XPD.RELG.CR
## 6588                                     FC.XPD.TOUR.CR
## 6589                                  FD.AST.PRVT.GD.ZS
## 6590                                  FD.RES.LIQU.AS.ZS
## 6591                                     FI.RES.GOLD.CD
## 6592                                  FI.RES.GOLD.CD.WB
## 6593                                     FI.RES.TOTL.CD
## 6594                                  FI.RES.TOTL.CD.WB
## 6595                                  FI.RES.TOTL.CD.ZS
## 6596                                  FI.RES.TOTL.DT.ZS
## 6597                                     FI.RES.TOTL.MO
## 6598                                  FI.RES.TOTL.MO.WB
## 6599                                     FI.RES.XGLD.CD
## 6600                                           fin1.t.a
## 6601                                         fin1.t.a.1
## 6602                                        fin1.t.a.10
## 6603                                        fin1.t.a.11
## 6604                                         fin1.t.a.2
## 6605                                         fin1.t.a.3
## 6606                                         fin1.t.a.4
## 6607                                         fin1.t.a.5
## 6608                                         fin1.t.a.6
## 6609                                         fin1.t.a.7
## 6610                                         fin1.t.a.8
## 6611                                         fin1.t.a.9
## 6612                                        fin10.t.a.s
## 6613                                           fin11a.a
## 6614                                         fin11a.a.s
## 6615                                           fin11b.a
## 6616                                         fin11b.a.s
## 6617                                           fin11c.a
## 6618                                         fin11c.a.s
## 6619                                           fin11d.a
## 6620                                         fin11d.a.s
## 6621                                           fin11e.a
## 6622                                         fin11e.a.s
## 6623                                           fin11f.a
## 6624                                         fin11f.a.s
## 6625                                           fin11g.a
## 6626                                         fin11g.a.s
## 6627                                           fin11h.a
## 6628                                         fin11h.a.s
## 6629                                            fin11q1
## 6630                                            fin11q2
## 6631                                    fin13a.t.14.a.s
## 6632                                    fin13b.t.14.a.s
## 6633                                           fin14a.a
## 6634                                         fin14a.a.1
## 6635                                        fin14a.a.10
## 6636                                        fin14a.a.11
## 6637                                         fin14a.a.2
## 6638                                         fin14a.a.3
## 6639                                         fin14a.a.4
## 6640                                         fin14a.a.5
## 6641                                         fin14a.a.6
## 6642                                         fin14a.a.7
## 6643                                         fin14a.a.8
## 6644                                         fin14a.a.9
## 6645                                      fin14abca.t.d
## 6646                                    fin14abca.t.d.1
## 6647                                   fin14abca.t.d.10
## 6648                                   fin14abca.t.d.11
## 6649                                    fin14abca.t.d.2
## 6650                                    fin14abca.t.d.3
## 6651                                    fin14abca.t.d.4
## 6652                                    fin14abca.t.d.5
## 6653                                    fin14abca.t.d.6
## 6654                                    fin14abca.t.d.7
## 6655                                    fin14abca.t.d.8
## 6656                                    fin14abca.t.d.9
## 6657                                           fin14b.a
## 6658                                         fin14b.a.1
## 6659                                        fin14b.a.10
## 6660                                        fin14b.a.11
## 6661                                         fin14b.a.2
## 6662                                         fin14b.a.3
## 6663                                         fin14b.a.4
## 6664                                         fin14b.a.5
## 6665                                         fin14b.a.6
## 6666                                         fin14b.a.7
## 6667                                         fin14b.a.8
## 6668                                         fin14b.a.9
## 6669                                        fin14ca.a.s
## 6670                                        fin14cb.a.s
## 6671                                            fin14q1
## 6672                                            fin14q2
## 6673                                          fin15.t.a
## 6674                                        fin15.t.a.1
## 6675                                       fin15.t.a.10
## 6676                                       fin15.t.a.11
## 6677                                        fin15.t.a.2
## 6678                                        fin15.t.a.3
## 6679                                        fin15.t.a.4
## 6680                                        fin15.t.a.5
## 6681                                        fin15.t.a.6
## 6682                                        fin15.t.a.7
## 6683                                        fin15.t.a.8
## 6684                                        fin15.t.a.9
## 6685                                            fin15q1
## 6686                                            fin15q2
## 6687                                          fin16.t.a
## 6688                                        fin16.t.a.1
## 6689                                       fin16.t.a.10
## 6690                                       fin16.t.a.11
## 6691                                        fin16.t.a.2
## 6692                                        fin16.t.a.3
## 6693                                        fin16.t.a.4
## 6694                                        fin16.t.a.5
## 6695                                        fin16.t.a.6
## 6696                                        fin16.t.a.7
## 6697                                        fin16.t.a.8
## 6698                                        fin16.t.a.9
## 6699                                          fin16_t_a
## 6700                                        fin16_t_a_1
## 6701                                        fin16_t_a_2
## 6702                                        fin16_t_a_3
## 6703                                        fin16_t_a_4
## 6704                                        fin16_t_a_5
## 6705                                        fin16_t_a_6
## 6706                                        fin16_t_a_7
## 6707                                         fin17a.t.a
## 6708                                       fin17a.t.a.1
## 6709                                      fin17a.t.a.10
## 6710                                      fin17a.t.a.11
## 6711                                       fin17a.t.a.2
## 6712                                       fin17a.t.a.3
## 6713                                       fin17a.t.a.4
## 6714                                       fin17a.t.a.5
## 6715                                       fin17a.t.a.6
## 6716                                       fin17a.t.a.7
## 6717                                       fin17a.t.a.8
## 6718                                       fin17a.t.a.9
## 6719                                         fin17a_t_a
## 6720                                       fin17a_t_a_1
## 6721                                       fin17a_t_a_2
## 6722                                       fin17a_t_a_3
## 6723                                       fin17a_t_a_4
## 6724                                       fin17a_t_a_5
## 6725                                       fin17a_t_a_6
## 6726                                       fin17a_t_a_7
## 6727                                         fin17b.t.a
## 6728                                       fin17b.t.a.1
## 6729                                      fin17b.t.a.10
## 6730                                      fin17b.t.a.11
## 6731                                       fin17b.t.a.2
## 6732                                       fin17b.t.a.3
## 6733                                       fin17b.t.a.4
## 6734                                       fin17b.t.a.5
## 6735                                       fin17b.t.a.6
## 6736                                       fin17b.t.a.7
## 6737                                       fin17b.t.a.8
## 6738                                       fin17b.t.a.9
## 6739                                        fin17c.14.a
## 6740                                      fin17c.14.a.1
## 6741                                     fin17c.14.a.10
## 6742                                     fin17c.14.a.11
## 6743                                      fin17c.14.a.2
## 6744                                      fin17c.14.a.3
## 6745                                      fin17c.14.a.4
## 6746                                      fin17c.14.a.5
## 6747                                      fin17c.14.a.6
## 6748                                      fin17c.14.a.7
## 6749                                      fin17c.14.a.8
## 6750                                      fin17c.14.a.9
## 6751                                          fin18.t.d
## 6752                                        fin18.t.d.1
## 6753                                       fin18.t.d.10
## 6754                                       fin18.t.d.11
## 6755                                        fin18.t.d.2
## 6756                                        fin18.t.d.3
## 6757                                        fin18.t.d.4
## 6758                                        fin18.t.d.5
## 6759                                        fin18.t.d.6
## 6760                                        fin18.t.d.7
## 6761                                        fin18.t.d.8
## 6762                                        fin18.t.d.9
## 6763                                          fin19.t.a
## 6764                                        fin19.t.a.1
## 6765                                       fin19.t.a.10
## 6766                                       fin19.t.a.11
## 6767                                        fin19.t.a.2
## 6768                                        fin19.t.a.3
## 6769                                        fin19.t.a.4
## 6770                                        fin19.t.a.5
## 6771                                        fin19.t.a.6
## 6772                                        fin19.t.a.7
## 6773                                        fin19.t.a.8
## 6774                                        fin19.t.a.9
## 6775                                           fin2.t.a
## 6776                                         fin2.t.a.1
## 6777                                        fin2.t.a.10
## 6778                                        fin2.t.a.11
## 6779                                         fin2.t.a.2
## 6780                                         fin2.t.a.3
## 6781                                         fin2.t.a.4
## 6782                                         fin2.t.a.5
## 6783                                         fin2.t.a.6
## 6784                                         fin2.t.a.7
## 6785                                         fin2.t.a.8
## 6786                                         fin2.t.a.9
## 6787                                         fin20b.t.a
## 6788                                       fin20b.t.a.1
## 6789                                      fin20b.t.a.10
## 6790                                      fin20b.t.a.11
## 6791                                       fin20b.t.a.2
## 6792                                       fin20b.t.a.3
## 6793                                       fin20b.t.a.4
## 6794                                       fin20b.t.a.5
## 6795                                       fin20b.t.a.6
## 6796                                       fin20b.t.a.7
## 6797                                       fin20b.t.a.8
## 6798                                       fin20b.t.a.9
## 6799                                          fin21.t.a
## 6800                                        fin21.t.a.1
## 6801                                       fin21.t.a.10
## 6802                                       fin21.t.a.11
## 6803                                        fin21.t.a.2
## 6804                                        fin21.t.a.3
## 6805                                        fin21.t.a.4
## 6806                                        fin21.t.a.5
## 6807                                        fin21.t.a.6
## 6808                                        fin21.t.a.7
## 6809                                        fin21.t.a.8
## 6810                                        fin21.t.a.9
## 6811                                      fin21b.t.14.a
## 6812                                    fin21b.t.14.a.1
## 6813                                   fin21b.t.14.a.10
## 6814                                   fin21b.t.14.a.11
## 6815                                    fin21b.t.14.a.2
## 6816                                    fin21b.t.14.a.3
## 6817                                    fin21b.t.14.a.4
## 6818                                    fin21b.t.14.a.5
## 6819                                    fin21b.t.14.a.6
## 6820                                    fin21b.t.14.a.7
## 6821                                    fin21b.t.14.a.8
## 6822                                    fin21b.t.14.a.9
## 6823                                        fin22a.14.a
## 6824                                      fin22a.14.a.1
## 6825                                     fin22a.14.a.10
## 6826                                     fin22a.14.a.11
## 6827                                      fin22a.14.a.2
## 6828                                      fin22a.14.a.3
## 6829                                      fin22a.14.a.4
## 6830                                      fin22a.14.a.5
## 6831                                      fin22a.14.a.6
## 6832                                      fin22a.14.a.7
## 6833                                      fin22a.14.a.8
## 6834                                      fin22a.14.a.9
## 6835                                         fin22a.t.a
## 6836                                       fin22a.t.a.1
## 6837                                      fin22a.t.a.10
## 6838                                      fin22a.t.a.11
## 6839                                       fin22a.t.a.2
## 6840                                       fin22a.t.a.3
## 6841                                       fin22a.t.a.4
## 6842                                       fin22a.t.a.5
## 6843                                       fin22a.t.a.6
## 6844                                       fin22a.t.a.7
## 6845                                       fin22a.t.a.8
## 6846                                       fin22a.t.a.9
## 6847                                         fin22a.t.d
## 6848                                       fin22a.t.d.1
## 6849                                      fin22a.t.d.10
## 6850                                      fin22a.t.d.11
## 6851                                       fin22a.t.d.2
## 6852                                       fin22a.t.d.3
## 6853                                       fin22a.t.d.4
## 6854                                       fin22a.t.d.5
## 6855                                       fin22a.t.d.6
## 6856                                       fin22a.t.d.7
## 6857                                       fin22a.t.d.8
## 6858                                       fin22a.t.d.9
## 6859                                         fin22a_t_d
## 6860                                       fin22a_t_d_1
## 6861                                       fin22a_t_d_2
## 6862                                       fin22a_t_d_3
## 6863                                       fin22a_t_d_4
## 6864                                       fin22a_t_d_5
## 6865                                       fin22a_t_d_6
## 6866                                       fin22a_t_d_7
## 6867                                         fin22b.t.a
## 6868                                       fin22b.t.a.1
## 6869                                      fin22b.t.a.10
## 6870                                      fin22b.t.a.11
## 6871                                       fin22b.t.a.2
## 6872                                       fin22b.t.a.3
## 6873                                       fin22b.t.a.4
## 6874                                       fin22b.t.a.5
## 6875                                       fin22b.t.a.6
## 6876                                       fin22b.t.a.7
## 6877                                       fin22b.t.a.8
## 6878                                       fin22b.t.a.9
## 6879                                           fin22c.a
## 6880                                         fin22c.a.1
## 6881                                        fin22c.a.10
## 6882                                        fin22c.a.11
## 6883                                         fin22c.a.2
## 6884                                         fin22c.a.3
## 6885                                         fin22c.a.4
## 6886                                         fin22c.a.5
## 6887                                         fin22c.a.6
## 6888                                         fin22c.a.7
## 6889                                         fin22c.a.8
## 6890                                         fin22c.a.9
## 6891                                          fin23.t.d
## 6892                                        fin23.t.d.1
## 6893                                       fin23.t.d.10
## 6894                                       fin23.t.d.11
## 6895                                        fin23.t.d.2
## 6896                                        fin23.t.d.3
## 6897                                        fin23.t.d.4
## 6898                                        fin23.t.d.5
## 6899                                        fin23.t.d.6
## 6900                                        fin23.t.d.7
## 6901                                        fin23.t.d.8
## 6902                                        fin23.t.d.9
## 6903                                         fin24a.t.a
## 6904                                       fin24a.t.a.1
## 6905                                      fin24a.t.a.10
## 6906                                      fin24a.t.a.11
## 6907                                       fin24a.t.a.2
## 6908                                       fin24a.t.a.3
## 6909                                       fin24a.t.a.4
## 6910                                       fin24a.t.a.5
## 6911                                       fin24a.t.a.6
## 6912                                       fin24a.t.a.7
## 6913                                       fin24a.t.a.8
## 6914                                       fin24a.t.a.9
## 6915                                         fin24b.t.a
## 6916                                       fin24b.t.a.1
## 6917                                      fin24b.t.a.10
## 6918                                      fin24b.t.a.11
## 6919                                       fin24b.t.a.2
## 6920                                       fin24b.t.a.3
## 6921                                       fin24b.t.a.4
## 6922                                       fin24b.t.a.5
## 6923                                       fin24b.t.a.6
## 6924                                       fin24b.t.a.7
## 6925                                       fin24b.t.a.8
## 6926                                       fin24b.t.a.9
## 6927                                       fin25a.t.a.s
## 6928                                     fin25a.t.a.s.1
## 6929                                    fin25a.t.a.s.10
## 6930                                    fin25a.t.a.s.11
## 6931                                     fin25a.t.a.s.2
## 6932                                     fin25a.t.a.s.3
## 6933                                     fin25a.t.a.s.4
## 6934                                     fin25a.t.a.s.5
## 6935                                     fin25a.t.a.s.6
## 6936                                     fin25a.t.a.s.7
## 6937                                     fin25a.t.a.s.8
## 6938                                     fin25a.t.a.s.9
## 6939                                       fin25a_t_a_s
## 6940                                     fin25a_t_a_s_1
## 6941                                     fin25a_t_a_s_2
## 6942                                     fin25a_t_a_s_3
## 6943                                     fin25a_t_a_s_4
## 6944                                     fin25a_t_a_s_5
## 6945                                     fin25a_t_a_s_6
## 6946                                     fin25a_t_a_s_7
## 6947                                       fin25b.t.a.s
## 6948                                     fin25b.t.a.s.1
## 6949                                    fin25b.t.a.s.10
## 6950                                    fin25b.t.a.s.11
## 6951                                     fin25b.t.a.s.2
## 6952                                     fin25b.t.a.s.3
## 6953                                     fin25b.t.a.s.4
## 6954                                     fin25b.t.a.s.5
## 6955                                     fin25b.t.a.s.6
## 6956                                     fin25b.t.a.s.7
## 6957                                     fin25b.t.a.s.8
## 6958                                     fin25b.t.a.s.9
## 6959                                         fin25c.a.s
## 6960                                       fin25c.a.s.1
## 6961                                      fin25c.a.s.10
## 6962                                      fin25c.a.s.11
## 6963                                       fin25c.a.s.2
## 6964                                       fin25c.a.s.3
## 6965                                       fin25c.a.s.4
## 6966                                       fin25c.a.s.5
## 6967                                       fin25c.a.s.6
## 6968                                       fin25c.a.s.7
## 6969                                       fin25c.a.s.8
## 6970                                       fin25c.a.s.9
## 6971                                         fin25d.a.s
## 6972                                       fin25d.a.s.1
## 6973                                      fin25d.a.s.10
## 6974                                      fin25d.a.s.11
## 6975                                       fin25d.a.s.2
## 6976                                       fin25d.a.s.3
## 6977                                       fin25d.a.s.4
## 6978                                       fin25d.a.s.5
## 6979                                       fin25d.a.s.6
## 6980                                       fin25d.a.s.7
## 6981                                       fin25d.a.s.8
## 6982                                       fin25d.a.s.9
## 6983                                         fin25e.a.s
## 6984                                       fin25e.a.s.1
## 6985                                      fin25e.a.s.10
## 6986                                      fin25e.a.s.11
## 6987                                       fin25e.a.s.2
## 6988                                       fin25e.a.s.3
## 6989                                       fin25e.a.s.4
## 6990                                       fin25e.a.s.5
## 6991                                       fin25e.a.s.6
## 6992                                       fin25e.a.s.7
## 6993                                       fin25e.a.s.8
## 6994                                       fin25e.a.s.9
## 6995                                         fin25f.a.s
## 6996                                       fin25f.a.s.1
## 6997                                      fin25f.a.s.10
## 6998                                      fin25f.a.s.11
## 6999                                       fin25f.a.s.2
## 7000                                       fin25f.a.s.3
## 7001                                       fin25f.a.s.4
## 7002                                       fin25f.a.s.5
## 7003                                       fin25f.a.s.6
## 7004                                       fin25f.a.s.7
## 7005                                       fin25f.a.s.8
## 7006                                       fin25f.a.s.9
## 7007                                       fin26.28.t.a
## 7008                                     fin26.28.t.a.1
## 7009                                    fin26.28.t.a.10
## 7010                                    fin26.28.t.a.11
## 7011                                     fin26.28.t.a.2
## 7012                                     fin26.28.t.a.3
## 7013                                     fin26.28.t.a.4
## 7014                                     fin26.28.t.a.5
## 7015                                     fin26.28.t.a.6
## 7016                                     fin26.28.t.a.7
## 7017                                     fin26.28.t.a.8
## 7018                                     fin26.28.t.a.9
## 7019                                          fin26.t.a
## 7020                                        fin26.t.a.1
## 7021                                       fin26.t.a.10
## 7022                                       fin26.t.a.11
## 7023                                        fin26.t.a.2
## 7024                                        fin26.t.a.3
## 7025                                        fin26.t.a.4
## 7026                                        fin26.t.a.5
## 7027                                        fin26.t.a.6
## 7028                                        fin26.t.a.7
## 7029                                        fin26.t.a.8
## 7030                                        fin26.t.a.9
## 7031                                      fin27.29a.t.a
## 7032                                    fin27.29a.t.a.s
## 7033                                      fin27.29a.t.d
## 7034                                    fin27.29a.t.d.s
## 7035                                      fin27.29b.t.a
## 7036                                    fin27.29b.t.a.s
## 7037                                     fin27.29c1.t.d
## 7038                                   fin27.29c1.t.d.s
## 7039                                     fin27.29c2.t.a
## 7040                                   fin27.29c2.t.a.s
## 7041                                     fin27.29c2.t.d
## 7042                                   fin27.29c2.t.d.s
## 7043                                         fin27a.t.a
## 7044                                       fin27a.t.a.s
## 7045                                         fin27a.t.d
## 7046                                       fin27a.t.d.s
## 7047                                         fin27b.t.a
## 7048                                       fin27b.t.a.s
## 7049                                        fin27c1.t.d
## 7050                                      fin27c1.t.d.s
## 7051                                        fin27c2.t.a
## 7052                                      fin27c2.t.a.s
## 7053                                        fin27c2.t.d
## 7054                                      fin27c2.t.d.s
## 7055                                          fin28.t.a
## 7056                                        fin28.t.a.1
## 7057                                       fin28.t.a.10
## 7058                                       fin28.t.a.11
## 7059                                        fin28.t.a.2
## 7060                                        fin28.t.a.3
## 7061                                        fin28.t.a.4
## 7062                                        fin28.t.a.5
## 7063                                        fin28.t.a.6
## 7064                                        fin28.t.a.7
## 7065                                        fin28.t.a.8
## 7066                                        fin28.t.a.9
## 7067                                         fin29a.t.a
## 7068                                       fin29a.t.a.s
## 7069                                         fin29a.t.d
## 7070                                       fin29a.t.d.s
## 7071                                         fin29b.t.a
## 7072                                       fin29b.t.a.s
## 7073                                        fin29c1.t.d
## 7074                                      fin29c1.t.d.s
## 7075                                        fin29c2.t.a
## 7076                                      fin29c2.t.a.s
## 7077                                        fin29c2.t.d
## 7078                                      fin29c2.t.d.s
## 7079                                          fin30.t.a
## 7080                                        fin30.t.a.1
## 7081                                       fin30.t.a.10
## 7082                                       fin30.t.a.11
## 7083                                        fin30.t.a.2
## 7084                                        fin30.t.a.3
## 7085                                        fin30.t.a.4
## 7086                                        fin30.t.a.5
## 7087                                        fin30.t.a.6
## 7088                                        fin30.t.a.7
## 7089                                        fin30.t.a.8
## 7090                                        fin30.t.a.9
## 7091                                         fin31a.t.a
## 7092                                       fin31a.t.a.s
## 7093                                         fin31a.t.d
## 7094                                       fin31a.t.d.s
## 7095                                         fin31b.t.a
## 7096                                       fin31b.t.a.s
## 7097                                         fin31c.t.a
## 7098                                       fin31c.t.a.s
## 7099                                          fin32.t.a
## 7100                                        fin32.t.a.1
## 7101                                       fin32.t.a.10
## 7102                                       fin32.t.a.11
## 7103                                        fin32.t.a.2
## 7104                                        fin32.t.a.3
## 7105                                        fin32.t.a.4
## 7106                                        fin32.t.a.5
## 7107                                        fin32.t.a.6
## 7108                                        fin32.t.a.7
## 7109                                        fin32.t.a.8
## 7110                                        fin32.t.a.9
## 7111                                         fin33.14.a
## 7112                                       fin33.14.a.1
## 7113                                      fin33.14.a.10
## 7114                                      fin33.14.a.11
## 7115                                       fin33.14.a.2
## 7116                                       fin33.14.a.3
## 7117                                       fin33.14.a.4
## 7118                                       fin33.14.a.5
## 7119                                       fin33.14.a.6
## 7120                                       fin33.14.a.7
## 7121                                       fin33.14.a.8
## 7122                                       fin33.14.a.9
## 7123                                         fin33n.t.a
## 7124                                       fin33n.t.a.1
## 7125                                      fin33n.t.a.10
## 7126                                      fin33n.t.a.11
## 7127                                       fin33n.t.a.2
## 7128                                       fin33n.t.a.3
## 7129                                       fin33n.t.a.4
## 7130                                       fin33n.t.a.5
## 7131                                       fin33n.t.a.6
## 7132                                       fin33n.t.a.7
## 7133                                       fin33n.t.a.8
## 7134                                       fin33n.t.a.9
## 7135                                         fin33y.t.a
## 7136                                       fin33y.t.a.1
## 7137                                      fin33y.t.a.10
## 7138                                      fin33y.t.a.11
## 7139                                       fin33y.t.a.2
## 7140                                       fin33y.t.a.3
## 7141                                       fin33y.t.a.4
## 7142                                       fin33y.t.a.5
## 7143                                       fin33y.t.a.6
## 7144                                       fin33y.t.a.7
## 7145                                       fin33y.t.a.8
## 7146                                       fin33y.t.a.9
## 7147                                        fin34a.14.a
## 7148                                      fin34a.14.a.s
## 7149                                         fin34a.t.a
## 7150                                       fin34a.t.a.s
## 7151                                         fin34a.t.d
## 7152                                       fin34a.t.d.s
## 7153                                        fin34an.t.a
## 7154                                      fin34an.t.a.s
## 7155                                        fin34an.t.d
## 7156                                      fin34an.t.d.s
## 7157                                        fin34ay.t.a
## 7158                                      fin34ay.t.a.s
## 7159                                        fin34ay.t.d
## 7160                                      fin34ay.t.d.s
## 7161                                        fin34b.14.a
## 7162                                      fin34b.14.a.s
## 7163                                        fin34b.14.d
## 7164                                      fin34b.14.d.s
## 7165                                         fin34b.t.a
## 7166                                       fin34b.t.a.s
## 7167                                        fin34bn.t.a
## 7168                                      fin34bn.t.a.s
## 7169                                        fin34by.t.a
## 7170                                      fin34by.t.a.s
## 7171                                        fin34c.14.a
## 7172                                      fin34c.14.a.s
## 7173                                        fin34c2.t.a
## 7174                                      fin34c2.t.a.s
## 7175                                       fin34c2n.t.a
## 7176                                     fin34c2n.t.a.s
## 7177                                       fin34c2y.t.a
## 7178                                     fin34c2y.t.a.s
## 7179                                          fin36.t.a
## 7180                                        fin36.t.a.s
## 7181                                         fin36n.t.a
## 7182                                       fin36n.t.a.s
## 7183                                         fin36y.t.a
## 7184                                       fin36y.t.a.s
## 7185                                          fin37.t.a
## 7186                                        fin37.t.a.1
## 7187                                       fin37.t.a.10
## 7188                                       fin37.t.a.11
## 7189                                        fin37.t.a.2
## 7190                                        fin37.t.a.3
## 7191                                        fin37.t.a.4
## 7192                                        fin37.t.a.5
## 7193                                        fin37.t.a.6
## 7194                                        fin37.t.a.7
## 7195                                        fin37.t.a.8
## 7196                                        fin37.t.a.9
## 7197                                        fin38.39a.a
## 7198                                      fin38.39a.a.s
## 7199                                       fin38.39c1.a
## 7200                                     fin38.39c1.a.s
## 7201                                         fin38.41.d
## 7202                                       fin38.41.d.s
## 7203                                            fin38.a
## 7204                                          fin38.a.1
## 7205                                         fin38.a.10
## 7206                                         fin38.a.11
## 7207                                          fin38.a.2
## 7208                                          fin38.a.3
## 7209                                          fin38.a.4
## 7210                                          fin38.a.5
## 7211                                          fin38.a.6
## 7212                                          fin38.a.7
## 7213                                          fin38.a.8
## 7214                                          fin38.a.9
## 7215                                           fin39a.d
## 7216                                         fin39a.d.s
## 7217                                         fin39a.t.a
## 7218                                       fin39a.t.a.s
## 7219                                         fin39a.t.d
## 7220                                       fin39a.t.d.s
## 7221                                           fin39b.a
## 7222                                         fin39b.a.s
## 7223                                         fin39b.t.a
## 7224                                       fin39b.t.a.s
## 7225                                        fin39c1.t.a
## 7226                                      fin39c1.t.a.s
## 7227                                           fin4.t.a
## 7228                                           fin4.t.d
## 7229                                           fin4_t_d
## 7230                                          fin41.t.d
## 7231                                        fin41.t.d.s
## 7232                                          fin42.t.a
## 7233                                        fin42.t.a.1
## 7234                                       fin42.t.a.10
## 7235                                       fin42.t.a.11
## 7236                                        fin42.t.a.2
## 7237                                        fin42.t.a.3
## 7238                                        fin42.t.a.4
## 7239                                        fin42.t.a.5
## 7240                                        fin42.t.a.6
## 7241                                        fin42.t.a.7
## 7242                                        fin42.t.a.8
## 7243                                        fin42.t.a.9
## 7244                                         fin43a.t.a
## 7245                                       fin43a.t.a.s
## 7246                                         fin43a.t.d
## 7247                                       fin43a.t.d.s
## 7248                                         fin43b.t.a
## 7249                                       fin43b.t.a.s
## 7250                                        fin43c1.t.a
## 7251                                      fin43c1.t.a.s
## 7252                                            fin45.d
## 7253                                          fin45.d.s
## 7254                                            fin46.a
## 7255                                          fin46.a.1
## 7256                                         fin46.a.10
## 7257                                         fin46.a.11
## 7258                                          fin46.a.2
## 7259                                          fin46.a.3
## 7260                                          fin46.a.4
## 7261                                          fin46.a.5
## 7262                                          fin46.a.6
## 7263                                          fin46.a.7
## 7264                                          fin46.a.8
## 7265                                          fin46.a.9
## 7266                                           fin47a.a
## 7267                                         fin47a.a.s
## 7268                                           fin47a.t
## 7269                                         fin47a.t.s
## 7270                                           fin47b.t
## 7271                                         fin47b.t.s
## 7272                                          fin47c2.a
## 7273                                        fin47c2.a.s
## 7274                                            fin48.a
## 7275                                            fin48_a
## 7276                                          fin48_a_1
## 7277                                          fin48_a_2
## 7278                                          fin48_a_3
## 7279                                          fin48_a_4
## 7280                                          fin48_a_5
## 7281                                          fin48_a_6
## 7282                                          fin48_a_7
## 7283                                             fin5.a
## 7284                                           fin5.a.s
## 7285                                             fin5.d
## 7286                                           fin5.d.1
## 7287                                          fin5.d.10
## 7288                                          fin5.d.11
## 7289                                           fin5.d.2
## 7290                                           fin5.d.3
## 7291                                           fin5.d.4
## 7292                                           fin5.d.5
## 7293                                           fin5.d.6
## 7294                                           fin5.d.7
## 7295                                           fin5.d.8
## 7296                                           fin5.d.9
## 7297                                           fin5.d.s
## 7298                                             fin6.a
## 7299                                             fin6_a
## 7300                                           fin6_a_1
## 7301                                           fin6_a_2
## 7302                                           fin6_a_3
## 7303                                           fin6_a_4
## 7304                                           fin6_a_5
## 7305                                           fin6_a_6
## 7306                                           fin6_a_7
## 7307                                        fin65e.11.a
## 7308                                      fin65e.11.a.1
## 7309                                     fin65e.11.a.10
## 7310                                     fin65e.11.a.11
## 7311                                      fin65e.11.a.2
## 7312                                      fin65e.11.a.3
## 7313                                      fin65e.11.a.4
## 7314                                      fin65e.11.a.5
## 7315                                      fin65e.11.a.6
## 7316                                      fin65e.11.a.7
## 7317                                      fin65e.11.a.8
## 7318                                      fin65e.11.a.9
## 7319                                        fin68a.11.a
## 7320                                           fin7.t.a
## 7321                                         fin7.t.a.1
## 7322                                        fin7.t.a.10
## 7323                                        fin7.t.a.11
## 7324                                         fin7.t.a.2
## 7325                                         fin7.t.a.3
## 7326                                         fin7.t.a.4
## 7327                                         fin7.t.a.5
## 7328                                         fin7.t.a.6
## 7329                                         fin7.t.a.7
## 7330                                         fin7.t.a.8
## 7331                                         fin7.t.a.9
## 7332                                           fin8.t.a
## 7333                                         fin9.t.a.s
## 7334                                           fin9.t.d
## 7335                                         fin9.t.d.s
## 7336                                          fin9.t.d1
## 7337                                        fin9.t.d1.1
## 7338                                       fin9.t.d1.10
## 7339                                       fin9.t.d1.11
## 7340                                        fin9.t.d1.2
## 7341                                        fin9.t.d1.3
## 7342                                        fin9.t.d1.4
## 7343                                        fin9.t.d1.5
## 7344                                        fin9.t.d1.6
## 7345                                        fin9.t.d1.7
## 7346                                        fin9.t.d1.8
## 7347                                        fin9.t.d1.9
## 7348                                        fin9.t.d1.s
## 7349                                     fing2p.39a.t.d
## 7350                                   fing2p.39a.t.d.s
## 7351                                     fing2p.39b.t.d
## 7352                                   fing2p.39b.t.d.s
## 7353                                     fing2p.39c.t.d
## 7354                                   fing2p.39c.t.d.s
## 7355                                     fing2p.39d.t.d
## 7356                                   fing2p.39d.t.d.s
## 7357                                      fing2p.40.t.d
## 7358                                    fing2p.40.t.d.s
## 7359                                         fing2p.t.d
## 7360                                       fing2p.t.d.1
## 7361                                      fing2p.t.d.10
## 7362                                      fing2p.t.d.11
## 7363                                       fing2p.t.d.2
## 7364                                       fing2p.t.d.3
## 7365                                       fing2p.t.d.4
## 7366                                       fing2p.t.d.5
## 7367                                       fing2p.t.d.6
## 7368                                       fing2p.t.d.7
## 7369                                       fing2p.t.d.8
## 7370                                       fing2p.t.d.9
## 7371                                     FM.ASC.DOMO.CN
## 7372                                     FM.ASC.DOMS.CN
## 7373                                     FM.ASC.DOMS.ZS
## 7374                                     FM.ASC.GOVT.CN
## 7375                                     FM.ASC.GOVT.ZS
## 7376                                     FM.ASC.NCGV.CN
## 7377                                     FM.ASC.NFGD.CN
## 7378                                     FM.ASC.NFRG.CN
## 7379                                     FM.ASC.NFRG.ZS
## 7380                                     FM.ASC.OFFO.CN
## 7381                                     FM.ASC.OFIN.CN
## 7382                                     FM.ASC.PRVT.ZS
## 7383                                     FM.ASC.TOTP.CN
## 7384                                  FM.AST.CGOV.ZG.M3
## 7385                                     FM.AST.DOMO.CN
## 7386                                  FM.AST.DOMO.ZG.M3
## 7387                                     FM.AST.DOMS.CN
## 7388                                     FM.AST.GOVT.CN
## 7389                                  FM.AST.GOVT.CN.ZS
## 7390                                  FM.AST.GOVT.ZG.M2
## 7391                                     FM.AST.NCGV.CN
## 7392                                     FM.AST.NFGD.CN
## 7393                                     FM.AST.NFRG.CD
## 7394                                     FM.AST.NFRG.CN
## 7395                                     FM.AST.OFFO.CN
## 7396                                     FM.AST.OFIN.CN
## 7397                                     FM.AST.PRVT.CN
## 7398                                  FM.AST.PRVT.GD.ZS
## 7399                                  FM.AST.PRVT.ZG.M2
## 7400                                  FM.AST.PRVT.ZG.M3
## 7401                                     FM.AST.PUBL.CN
## 7402                                  FM.AST.PUBL.ZG.M2
## 7403                                     FM.AST.TOTP.CN
## 7404                                     FM.LBC.MQMY.CN
## 7405                                     FM.LBC.XMQM.CN
## 7406                                     FM.LBL.BMNY.CN
## 7407                                  FM.LBL.BMNY.GD.ZS
## 7408                                  FM.LBL.BMNY.IR.ZS
## 7409                                     FM.LBL.BMNY.ZG
## 7410                                     FM.LBL.DDPT.CN
## 7411                                     FM.LBL.MONY.CN
## 7412                                     FM.LBL.MQMY.CN
## 7413                                  FM.LBL.MQMY.CN.WB
## 7414                                  FM.LBL.MQMY.GD.ZS
## 7415                                 FM.LBL.MQMY.GDP.ZS
## 7416                                  FM.LBL.MQMY.IR.ZS
## 7417                                     FM.LBL.MQMY.XD
## 7418                                     FM.LBL.MQMY.ZG
## 7419                                     FM.LBL.NBNK.CN
## 7420                                     FM.LBL.QMNY.CN
## 7421                                  FM.LBL.QMNY.CN.WB
## 7422                                 FM.LBL.QMNY.GDP.ZS
## 7423                                 FM.LBL.SEIG.GDP.ZS
## 7424                                     FM.LBL.XMQM.CN
## 7425                                   FN.CRED.AGR.TOTL
## 7426                                   FN.CRED.BUS.TOTL
## 7427                                  FN.CRED.CNSP.TOTL
## 7428                                  FN.CRED.CNST.TOTL
## 7429                                  FN.CRED.INVS.TOTL
## 7430                                  FN.CRED.MINQ.TOTL
## 7431                                   FN.CRED.MNF.TOTL
## 7432                              FN.CRED.SRV.OTHR.TOTL
## 7433                              FN.CRED.SRV.SOCL.TOTL
## 7434                                  FN.CRED.TRAD.TOTL
## 7435                                  FN.CRED.TRAN.TOTL
## 7436                                   FN.CRED.UTL.TOTL
## 7437                                  FN.CRED.WCAP.TOTL
## 7438                                       FN.DPST.TOTL
## 7439                                        FN.INR.CBIR
## 7440                                   FN.LOAN.CBK.TOTL
## 7441                                        FP.CPI.TOTL
## 7442                                     FP.CPI.TOTL.ZG
## 7443                                        FP.FPI.TOTL
## 7444                                     FP.FPI.TOTL.ZG
## 7445                                        FP.WPI.TOTL
## 7446                                     FP.WPI.TOTL.ZG
## 7447                                        FR.INR.DPST
## 7448                                     FR.INR.DPST.DP
## 7449                                        FR.INR.GBND
## 7450                                        FR.INR.IMPL
## 7451                                        FR.INR.LEND
## 7452                                FR.INR.LEND.DPST.DF
## 7453                              FR.INR.LEND.LIBOR3.DF
## 7454                                        FR.INR.LNDP
## 7455                                        FR.INR.LNLB
## 7456                                        FR.INR.MMKT
## 7457                                        FR.INR.RINR
## 7458                                        FR.INR.RISK
## 7459                                        FR.INR.TDPT
## 7460                                     FR.INR.TDPT.RL
## 7461                                  FR.INR.USA.LIBOR3
## 7462                                  FS.AST.CGOV.GD.ZS
## 7463                                  FS.AST.DOMO.GD.ZS
## 7464                                  FS.AST.DOMS.GD.ZS
## 7465                                     FS.AST.DTOT.ZS
## 7466                                     FS.AST.PRVT.CN
## 7467                                  FS.AST.PRVT.GD.ZS
## 7468                                 FS.AST.PRVT.GDP.ZS
## 7469                                  FS.LBL.LIQU.GD.ZS
## 7470                                 FS.LBL.LIQU.GDP.ZS
## 7471                                  FS.LBL.QLIQ.GD.ZS
## 7472                                     FS.XPC.DDPT.CN
## 7473                                     FS.XPC.TDPT.CN
## 7474                                  FX.OWN.TOTL.40.ZS
## 7475                                  FX.OWN.TOTL.60.ZS
## 7476                                  FX.OWN.TOTL.FE.ZS
## 7477                                  FX.OWN.TOTL.MA.ZS
## 7478                                  FX.OWN.TOTL.OL.ZS
## 7479                                  FX.OWN.TOTL.PL.ZS
## 7480                                  FX.OWN.TOTL.SO.ZS
## 7481                                  FX.OWN.TOTL.YG.ZS
## 7482                                     FX.OWN.TOTL.ZS
## 7483                                              g20.t
## 7484                                            g20.t.1
## 7485                                           g20.t.10
## 7486                                           g20.t.11
## 7487                                            g20.t.2
## 7488                                            g20.t.3
## 7489                                            g20.t.4
## 7490                                            g20.t.5
## 7491                                            g20.t.6
## 7492                                            g20.t.7
## 7493                                            g20.t.8
## 7494                                            g20.t.9
## 7495                                         g20.t.made
## 7496                                       g20.t.made.1
## 7497                                      g20.t.made.10
## 7498                                      g20.t.made.11
## 7499                                       g20.t.made.2
## 7500                                       g20.t.made.3
## 7501                                       g20.t.made.4
## 7502                                       g20.t.made.5
## 7503                                       g20.t.made.6
## 7504                                       g20.t.made.7
## 7505                                       g20.t.made.8
## 7506                                       g20.t.made.9
## 7507                                      g20.t.receive
## 7508                                    g20.t.receive.1
## 7509                                   g20.t.receive.10
## 7510                                   g20.t.receive.11
## 7511                                    g20.t.receive.2
## 7512                                    g20.t.receive.3
## 7513                                    g20.t.receive.4
## 7514                                    g20.t.receive.5
## 7515                                    g20.t.receive.6
## 7516                                    g20.t.receive.7
## 7517                                    g20.t.receive.8
## 7518                                    g20.t.receive.9
## 7519                                              g20_t
## 7520                                            g20_t_1
## 7521                                            g20_t_2
## 7522                                            g20_t_3
## 7523                                            g20_t_4
## 7524                                            g20_t_5
## 7525                                            g20_t_6
## 7526                                            g20_t_7
## 7527                                     GB.AMA.ABRD.CN
## 7528                                     GB.BAL.CIGR.CN
## 7529                                     GB.BAL.OVRL.CN
## 7530                                  GB.BAL.OVRL.GD.ZS
## 7531                                 GB.BAL.OVRL.GDP.ZS
## 7532                                     GB.BAL.OVRX.CN
## 7533                                     GB.BAL.OVXG.CN
## 7534                                     GB.BAL.XINT.CN
## 7535                                     GB.DOD.DMSY.CN
## 7536                                     GB.DOD.DNMS.CN
## 7537                                     GB.DOD.FRGN.CD
## 7538                                     GB.DOD.FRGN.CN
## 7539                                     GB.DOD.TOTL.CN
## 7540                                  GB.DOD.TOTL.GD.ZS
## 7541                                 GB.DOD.TOTL.GDP.ZS
## 7542                                     GB.DTA.DOMS.CN
## 7543                                     GB.DTA.FRGN.CN
## 7544                                     GB.FIN.ABRD.CN
## 7545                                  GB.FIN.ABRD.GD.ZS
## 7546                                 GB.FIN.ABRD.GDP.ZS
## 7547                                     GB.FIN.DMSY.CN
## 7548                                     GB.FIN.DNMS.CN
## 7549                                     GB.FIN.DOMS.CN
## 7550                                  GB.FIN.DOMS.GD.ZS
## 7551                                 GB.FIN.DOMS.GDP.ZS
## 7552                                     GB.FIN.IKFR.CN
## 7553                                     GB.GRT.CTOT.CN
## 7554                                     GB.GRT.KFRN.CN
## 7555                                     GB.GRT.TOTL.CN
## 7556                                  GB.INT.DECT.RV.ZS
## 7557                                     GB.NTX.CIGR.CN
## 7558                                  GB.NTX.TOTL.RV.ZS
## 7559                                     GB.NTX.TOTL.ZS
## 7560                                     GB.REV.CTOT.CN
## 7561                                  GB.REV.CTOT.GD.ZS
## 7562                                     GB.REV.IGRT.CN
## 7563                                     GB.REV.TOTL.CN
## 7564                                 GB.REV.TOTL.GDP.ZS
## 7565                                     GB.REV.XAGT.CN
## 7566                                  GB.REV.XAGT.CN.ZS
## 7567                                     GB.RVC.IGRT.CN
## 7568                                     GB.RVC.TOTL.CN
## 7569                                  GB.RVC.TOTL.GD.ZS
## 7570                                     GB.RVK.TOTL.CN
## 7571                                     GB.SOE.DECT.ZS
## 7572                                     GB.SOE.DOMS.ZS
## 7573                                  GB.SOE.ECON.GD.ZS
## 7574                                 GB.SOE.ECON.GDP.ZS
## 7575                                     GB.SOE.EMPL.ZS
## 7576                                     GB.SOE.GDIV.ZS
## 7577                                  GB.SOE.NFLW.GD.ZS
## 7578                                 GB.SOE.NFLW.GDP.ZS
## 7579                                  GB.SOE.OVRL.GD.ZS
## 7580                                 GB.SOE.OVRL.GDP.ZS
## 7581                                     GB.SOE.PRVZ.CD
## 7582                                     GB.TAX.CMAR.ZS
## 7583                                     GB.TAX.DRCT.CN
## 7584                                  GB.TAX.EXPT.BX.ZS
## 7585                                     GB.TAX.EXPT.ZS
## 7586                                     GB.TAX.GSRV.CN
## 7587                                GB.TAX.GSRV.NAGR.ZS
## 7588                                  GB.TAX.GSRV.RV.ZS
## 7589                                  GB.TAX.GSRV.VA.ZS
## 7590                                     GB.TAX.GSRV.ZS
## 7591                                     GB.TAX.IDRT.CN
## 7592                                     GB.TAX.IMAR.CD
## 7593                                     GB.TAX.IMAR.ZS
## 7594                                  GB.TAX.IMPT.BM.ZS
## 7595                                     GB.TAX.IMPT.ZS
## 7596                                     GB.TAX.INCM.ZS
## 7597                                     GB.TAX.INTT.CN
## 7598                                  GB.TAX.INTT.RV.ZS
## 7599                                     GB.TAX.INTT.ZS
## 7600                                  GB.TAX.OTHR.RV.ZS
## 7601                                     GB.TAX.OTHR.ZS
## 7602                                  GB.TAX.SSEC.RV.ZS
## 7603                                     GB.TAX.SSEC.ZS
## 7604                                     GB.TAX.TOTL.CN
## 7605                                  GB.TAX.TOTL.GD.ZS
## 7606                                 GB.TAX.TOTL.GDP.ZS
## 7607                                  GB.TAX.YPKG.RV.ZS
## 7608                                     GB.TAX.YPKG.ZS
## 7609                                     GB.TDS.ABRD.CN
## 7610                                     GB.TDS.FRGN.CN
## 7611                                     GB.XPC.GSRV.CN
## 7612                                     GB.XPC.GSRV.ZS
## 7613                                     GB.XPC.INTD.CN
## 7614                                     GB.XPC.INTE.CN
## 7615                                 GB.XPC.INTP.REV.ZS
## 7616                                     GB.XPC.INTP.ZS
## 7617                                     GB.XPC.SUBS.CN
## 7618                                     GB.XPC.TOTL.CN
## 7619                                     GB.XPC.TRFO.CN
## 7620                                     GB.XPC.TRFT.ZS
## 7621                                     GB.XPC.WAGE.CN
## 7622                                     GB.XPC.WAGE.ZS
## 7623                                     GB.XPD.DEFN.CN
## 7624                                 GB.XPD.DEFN.GDP.ZS
## 7625                                     GB.XPD.INLD.CN
## 7626                                   GB.XPD.RD.GNP.ZS
## 7627                                  GB.XPD.RSDV.GD.ZS
## 7628                                  GB.XPD.RSDV.GN.ZS
## 7629                                     GB.XPD.TOTL.CN
## 7630                                  GB.XPD.TOTL.GD.ZS
## 7631                                 GB.XPD.TOTL.GDP.ZS
## 7632                                     GB.XPK.INLD.CN
## 7633                                     GB.XPK.RINV.CN
## 7634                                     GB.XPK.TOTL.CN
## 7635                                     GB.XPK.TOTL.ZS
## 7636                                     GB.XPL.TRNL.CN
## 7637                                     GC.AST.TOTL.CN
## 7638                                  GC.AST.TOTL.GD.ZS
## 7639                                     GC.BAL.CASH.CD
## 7640                                     GC.BAL.CASH.CN
## 7641                                  GC.BAL.CASH.GD.ZS
## 7642                                     GC.BAL.CIGR.CN
## 7643                                     GC.BAL.CURI.CN
## 7644                                     GC.BAL.OVRL.CN
## 7645                                     GC.DOD.TOTL.CN
## 7646                                  GC.DOD.TOTL.GD.ZS
## 7647                                     GC.EKL.TOTL.CN
## 7648                                     GC.EXC.TOTL.CN
## 7649                                     GC.FIN.DOMS.CN
## 7650                                  GC.FIN.DOMS.GD.ZS
## 7651                                     GC.FIN.FRGN.CN
## 7652                                  GC.FIN.FRGN.GD.ZS
## 7653                                     GC.LBL.TOTL.CN
## 7654                                  GC.LBL.TOTL.GD.ZS
## 7655                                     GC.NFN.TOTL.CN
## 7656                                  GC.NFN.TOTL.GD.ZS
## 7657                                     GC.NLD.TOTL.CN
## 7658                                  GC.NLD.TOTL.GD.ZS
## 7659                                     GC.REV.CIGR.CN
## 7660                                     GC.REV.GOTR.CN
## 7661                                     GC.REV.GOTR.ZS
## 7662                                     GC.REV.KTOT.CN
## 7663                                     GC.REV.SOCL.CN
## 7664                                     GC.REV.SOCL.ZS
## 7665                                     GC.REV.TOTL.CD
## 7666                                     GC.REV.TOTL.CN
## 7667                                     GC.REV.XGRT.CD
## 7668                                     GC.REV.XGRT.CN
## 7669                                  GC.REV.XGRT.GD.ZS
## 7670                                     GC.RVG.CURI.CN
## 7671                                     GC.RVK.TOTL.CN
## 7672                                     GC.TAX.EXPT.CN
## 7673                                     GC.TAX.EXPT.ZS
## 7674                                     GC.TAX.GSRV.CN
## 7675                                  GC.TAX.GSRV.RV.ZS
## 7676                                  GC.TAX.GSRV.VA.ZS
## 7677                                     GC.TAX.IMPT.CN
## 7678                                     GC.TAX.IMPT.ZS
## 7679                                     GC.TAX.INTT.CN
## 7680                                  GC.TAX.INTT.RV.ZS
## 7681                                     GC.TAX.OTHR.CN
## 7682                                  GC.TAX.OTHR.RV.ZS
## 7683                                     GC.TAX.TOTL.CN
## 7684                                  GC.TAX.TOTL.GD.ZS
## 7685                                     GC.TAX.YPKG.CN
## 7686                                  GC.TAX.YPKG.RV.ZS
## 7687                                     GC.TAX.YPKG.ZS
## 7688                                     GC.XPC.TOTL.CN
## 7689                                     GC.XPK.INLD.CN
## 7690                                     GC.XPN.COMP.CN
## 7691                                     GC.XPN.COMP.ZS
## 7692                                     GC.XPN.GSRV.CN
## 7693                                     GC.XPN.GSRV.ZS
## 7694                                     GC.XPN.INTP.CN
## 7695                                  GC.XPN.INTP.RV.ZS
## 7696                                     GC.XPN.INTP.ZS
## 7697                                     GC.XPN.OTHR.CN
## 7698                                     GC.XPN.OTHR.ZS
## 7699                                     GC.XPN.TOTL.CD
## 7700                                     GC.XPN.TOTL.CN
## 7701                                  GC.XPN.TOTL.GD.ZS
## 7702                                     GC.XPN.TRFT.CN
## 7703                                     GC.XPN.TRFT.ZS
## 7704                                  GCI.10THPILLAR.XQ
## 7705                                  GCI.11THPILLAR.XQ
## 7706                                  GCI.12THPILLAR.XQ
## 7707                                   GCI.1STPILLAR.XQ
## 7708                                   GCI.2NDPILLAR.XQ
## 7709                                   GCI.3RDPILLAR.XQ
## 7710                                   GCI.4THPILLAR.XQ
## 7711                                   GCI.5THPILLAR.XQ
## 7712                                   GCI.6THPILLAR.XQ
## 7713                                   GCI.7THPILLAR.XQ
## 7714                                   GCI.8THPILLAR.XQ
## 7715                                   GCI.9THPILLAR.XQ
## 7716                                       GCI.INDEX.XQ
## 7717                                GCI.PILLAR11TO12.XQ
## 7718                                  GCI.PILLAR1TO4.XQ
## 7719                                 GCI.PILLAR5TO10.XQ
## 7720                                        GCI.RANK.XQ
## 7721                                             GE.EST
## 7722                                          GE.NO.SRC
## 7723                                         GE.PER.RNK
## 7724                                   GE.PER.RNK.LOWER
## 7725                                   GE.PER.RNK.UPPER
## 7726                                         GE.STD.ERR
## 7727                                     GF.XPD.BUDG.ZS
## 7728                                             gf10_n
## 7729                                           gf10_n_1
## 7730                                           gf10_n_2
## 7731                                           gf10_n_3
## 7732                                           gf10_n_4
## 7733                                           gf10_n_5
## 7734                                           gf10_n_6
## 7735                                           gf10_n_7
## 7736                                              gf4_n
## 7737                                            gf4_n_1
## 7738                                            gf4_n_2
## 7739                                            gf4_n_3
## 7740                                            gf4_n_4
## 7741                                            gf4_n_5
## 7742                                            gf4_n_6
## 7743                                            gf4_n_7
## 7744                                              gf7_n
## 7745                                            gf7_n_1
## 7746                                            gf7_n_2
## 7747                                            gf7_n_3
## 7748                                            gf7_n_4
## 7749                                            gf7_n_5
## 7750                                            gf7_n_6
## 7751                                            gf7_n_7
## 7752                                         GFDD.AI.01
## 7753                                         GFDD.AI.02
## 7754                                         GFDD.AI.03
## 7755                                         GFDD.AI.04
## 7756                                         GFDD.AI.05
## 7757                                         GFDD.AI.06
## 7758                                         GFDD.AI.07
## 7759                                         GFDD.AI.08
## 7760                                         GFDD.AI.09
## 7761                                         GFDD.AI.10
## 7762                                         GFDD.AI.11
## 7763                                         GFDD.AI.12
## 7764                                         GFDD.AI.13
## 7765                                         GFDD.AI.14
## 7766                                         GFDD.AI.15
## 7767                                         GFDD.AI.16
## 7768                                         GFDD.AI.17
## 7769                                         GFDD.AI.18
## 7770                                         GFDD.AI.19
## 7771                                         GFDD.AI.20
## 7772                                         GFDD.AI.21
## 7773                                         GFDD.AI.22
## 7774                                         GFDD.AI.23
## 7775                                         GFDD.AI.24
## 7776                                         GFDD.AI.25
## 7777                                         GFDD.AI.26
## 7778                                         GFDD.AI.27
## 7779                                         GFDD.AI.28
## 7780                                         GFDD.AI.29
## 7781                                         GFDD.AI.30
## 7782                                         GFDD.AI.31
## 7783                                         GFDD.AI.32
## 7784                                         GFDD.AI.33
## 7785                                         GFDD.AI.34
## 7786                                         GFDD.AI.35
## 7787                                         GFDD.AI.36
## 7788                                         GFDD.AM.01
## 7789                                         GFDD.AM.02
## 7790                                         GFDD.AM.03
## 7791                                         GFDD.AM.04
## 7792                                         GFDD.DI.01
## 7793                                         GFDD.DI.02
## 7794                                         GFDD.DI.03
## 7795                                         GFDD.DI.04
## 7796                                         GFDD.DI.05
## 7797                                         GFDD.DI.06
## 7798                                         GFDD.DI.07
## 7799                                         GFDD.DI.08
## 7800                                         GFDD.DI.09
## 7801                                         GFDD.DI.10
## 7802                                         GFDD.DI.11
## 7803                                         GFDD.DI.12
## 7804                                         GFDD.DI.13
## 7805                                         GFDD.DI.14
## 7806                                         GFDD.DM.01
## 7807                                         GFDD.DM.02
## 7808                                         GFDD.DM.03
## 7809                                         GFDD.DM.04
## 7810                                         GFDD.DM.05
## 7811                                         GFDD.DM.06
## 7812                                         GFDD.DM.07
## 7813                                         GFDD.DM.08
## 7814                                         GFDD.DM.09
## 7815                                         GFDD.DM.10
## 7816                                         GFDD.DM.11
## 7817                                         GFDD.DM.12
## 7818                                         GFDD.DM.13
## 7819                                         GFDD.DM.14
## 7820                                         GFDD.DM.15
## 7821                                         GFDD.DM.16
## 7822                                         GFDD.DM.16
## 7823                                         GFDD.EI.01
## 7824                                         GFDD.EI.02
## 7825                                         GFDD.EI.03
## 7826                                         GFDD.EI.04
## 7827                                         GFDD.EI.05
## 7828                                         GFDD.EI.06
## 7829                                         GFDD.EI.07
## 7830                                         GFDD.EI.08
## 7831                                         GFDD.EI.09
## 7832                                         GFDD.EI.10
## 7833                                         GFDD.EM.01
## 7834                                         GFDD.OE.01
## 7835                                         GFDD.OE.02
## 7836                                         GFDD.OI.01
## 7837                                         GFDD.OI.02
## 7838                                         GFDD.OI.03
## 7839                                         GFDD.OI.04
## 7840                                         GFDD.OI.05
## 7841                                         GFDD.OI.06
## 7842                                         GFDD.OI.07
## 7843                                         GFDD.OI.08
## 7844                                         GFDD.OI.09
## 7845                                         GFDD.OI.10
## 7846                                         GFDD.OI.11
## 7847                                         GFDD.OI.12
## 7848                                         GFDD.OI.13
## 7849                                         GFDD.OI.14
## 7850                                         GFDD.OI.15
## 7851                                         GFDD.OI.16
## 7852                                        GFDD.OI.16a
## 7853                                        GFDD.OI.16a
## 7854                                         GFDD.OI.17
## 7855                                         GFDD.OI.18
## 7856                                         GFDD.OI.19
## 7857                                        GFDD.OI.20a
## 7858                                        GFDD.OI.20a
## 7859                                         GFDD.OM.01
## 7860                                         GFDD.OM.02
## 7861                                         GFDD.SI.01
## 7862                                         GFDD.SI.02
## 7863                                         GFDD.SI.03
## 7864                                         GFDD.SI.04
## 7865                                         GFDD.SI.05
## 7866                                         GFDD.SI.06
## 7867                                         GFDD.SI.07
## 7868                                         GFDD.SM.01
## 7869                                         GPFI1_TOTL
## 7870                                              GPFI2
## 7871                                              GPFI3
## 7872                                              GPFI4
## 7873                                               GPSS
## 7874                                             GPSS_1
## 7875                                             GPSS_2
## 7876                                             GPSS_3
## 7877                                             GPSS_4
## 7878                                             GPSS_5
## 7879                                    gtap10VACapital
## 7880                                      gtap10VALabor
## 7881                                     GV.BAL.OVRL.CN
## 7882                                      GV.CONT.CO.ES
## 7883                                      GV.CONT.CO.NO
## 7884                                      GV.CONT.CO.SE
## 7885                                      GV.GOVT.EF.ES
## 7886                                      GV.GOVT.EF.NO
## 7887                                      GV.GOVT.EF.SE
## 7888                                      GV.POLI.ST.ES
## 7889                                      GV.POLI.ST.NO
## 7890                                      GV.POLI.ST.SE
## 7891                                      GV.REGL.LA.ES
## 7892                                      GV.REGL.LA.NO
## 7893                                      GV.REGL.LA.SE
## 7894                                      GV.RULE.LW.ES
## 7895                                      GV.RULE.LW.NO
## 7896                                      GV.RULE.LW.SE
## 7897                                     GV.TI.RANK.IDX
## 7898                                     GV.TI.SCOR.IDX
## 7899                                      GV.VOIC.AC.ES
## 7900                                      GV.VOIC.AC.NO
## 7901                                      GV.VOIC.AC.SE
## 7902                                             gwp1_n
## 7903                                           gwp1_n_1
## 7904                                           gwp1_n_2
## 7905                                           gwp1_n_3
## 7906                                           gwp1_n_4
## 7907                                           gwp1_n_5
## 7908                                           gwp1_n_6
## 7909                                           gwp1_n_7
## 7910                                             gwp2_n
## 7911                                           gwp2_n_1
## 7912                                           gwp2_n_2
## 7913                                           gwp2_n_3
## 7914                                           gwp2_n_4
## 7915                                           gwp2_n_5
## 7916                                           gwp2_n_6
## 7917                                           gwp2_n_7
## 7918                                        HD.HCI.AMRT
## 7919                                     HD.HCI.AMRT.FE
## 7920                                     HD.HCI.AMRT.MA
## 7921                                        HD.HCI.EYRS
## 7922                                     HD.HCI.EYRS.FE
## 7923                                     HD.HCI.EYRS.MA
## 7924                                        HD.HCI.HLOS
## 7925                                     HD.HCI.HLOS.FE
## 7926                                     HD.HCI.HLOS.MA
## 7927                                        HD.HCI.LAYS
## 7928                                     HD.HCI.LAYS.FE
## 7929                                     HD.HCI.LAYS.MA
## 7930                                        HD.HCI.MORT
## 7931                                     HD.HCI.MORT.FE
## 7932                                     HD.HCI.MORT.MA
## 7933                                        HD.HCI.OVRL
## 7934                                     HD.HCI.OVRL.FE
## 7935                                     HD.HCI.OVRL.LB
## 7936                                  HD.HCI.OVRL.LB.FE
## 7937                                  HD.HCI.OVRL.LB.MA
## 7938                                     HD.HCI.OVRL.MA
## 7939                                     HD.HCI.OVRL.UB
## 7940                                  HD.HCI.OVRL.UB.FE
## 7941                                  HD.HCI.OVRL.UB.MA
## 7942                                        HD.HCI.STNT
## 7943                                     HD.HCI.STNT.FE
## 7944                                     HD.HCI.STNT.MA
## 7945                                  HF.CON.AIDS.FE.ZS
## 7946                               HF.CON.AIDS.FE.ZS.Q1
## 7947                               HF.CON.AIDS.FE.ZS.Q2
## 7948                               HF.CON.AIDS.FE.ZS.Q3
## 7949                               HF.CON.AIDS.FE.ZS.Q4
## 7950                               HF.CON.AIDS.FE.ZS.Q5
## 7951                                     HF.DYN.AIDS.ZS
## 7952                                  HF.DYN.AIDS.ZS.Q1
## 7953                                  HF.DYN.AIDS.ZS.Q2
## 7954                                  HF.DYN.AIDS.ZS.Q3
## 7955                                  HF.DYN.AIDS.ZS.Q4
## 7956                                  HF.DYN.AIDS.ZS.Q5
## 7957                                     HF.DYN.CONM.ZS
## 7958                                  HF.DYN.CONM.ZS.Q1
## 7959                                  HF.DYN.CONM.ZS.Q2
## 7960                                  HF.DYN.CONM.ZS.Q3
## 7961                                  HF.DYN.CONM.ZS.Q4
## 7962                                  HF.DYN.CONM.ZS.Q5
## 7963                                     HF.DYN.IMRT.IN
## 7964                                  HF.DYN.IMRT.IN.Q1
## 7965                                  HF.DYN.IMRT.IN.Q2
## 7966                                  HF.DYN.IMRT.IN.Q3
## 7967                                  HF.DYN.IMRT.IN.Q4
## 7968                                  HF.DYN.IMRT.IN.Q5
## 7969                                        HF.DYN.MORT
## 7970                                     HF.DYN.MORT.Q1
## 7971                                     HF.DYN.MORT.Q2
## 7972                                     HF.DYN.MORT.Q3
## 7973                                     HF.DYN.MORT.Q4
## 7974                                     HF.DYN.MORT.Q5
## 7975                                        HF.DYN.SMEA
## 7976                                     HF.DYN.SMEA.Q1
## 7977                                     HF.DYN.SMEA.Q2
## 7978                                     HF.DYN.SMEA.Q3
## 7979                                     HF.DYN.SMEA.Q4
## 7980                                     HF.DYN.SMEA.Q5
## 7981                                        HF.IMM.FULL
## 7982                                     HF.IMM.FULL.Q1
## 7983                                     HF.IMM.FULL.Q2
## 7984                                     HF.IMM.FULL.Q3
## 7985                                     HF.IMM.FULL.Q4
## 7986                                     HF.IMM.FULL.Q5
## 7987                                        HF.IMM.MEAS
## 7988                                     HF.IMM.MEAS.Q1
## 7989                                     HF.IMM.MEAS.Q2
## 7990                                     HF.IMM.MEAS.Q3
## 7991                                     HF.IMM.MEAS.Q4
## 7992                                     HF.IMM.MEAS.Q5
## 7993                                     HF.MLR.NETS.ZS
## 7994                                  HF.MLR.NETS.ZS.Q1
## 7995                                  HF.MLR.NETS.ZS.Q2
## 7996                                  HF.MLR.NETS.ZS.Q3
## 7997                                  HF.MLR.NETS.ZS.Q4
## 7998                                  HF.MLR.NETS.ZS.Q5
## 7999                                     HF.STA.ANV4.ZS
## 8000                                  HF.STA.ANV4.ZS.Q1
## 8001                                  HF.STA.ANV4.ZS.Q2
## 8002                                  HF.STA.ANV4.ZS.Q3
## 8003                                  HF.STA.ANV4.ZS.Q4
## 8004                                  HF.STA.ANV4.ZS.Q5
## 8005                                     HF.STA.ARIC.ZS
## 8006                                  HF.STA.ARIC.ZS.Q1
## 8007                                  HF.STA.ARIC.ZS.Q2
## 8008                                  HF.STA.ARIC.ZS.Q3
## 8009                                  HF.STA.ARIC.ZS.Q4
## 8010                                  HF.STA.ARIC.ZS.Q5
## 8011                                     HF.STA.BLSG.ZS
## 8012                                  HF.STA.BLSG.ZS.Q1
## 8013                                  HF.STA.BLSG.ZS.Q2
## 8014                                  HF.STA.BLSG.ZS.Q3
## 8015                                  HF.STA.BLSG.ZS.Q4
## 8016                                  HF.STA.BLSG.ZS.Q5
## 8017                                     HF.STA.BM15.FE
## 8018                                  HF.STA.BM15.FE.Q1
## 8019                                  HF.STA.BM15.FE.Q2
## 8020                                  HF.STA.BM15.FE.Q3
## 8021                                  HF.STA.BM15.FE.Q4
## 8022                                  HF.STA.BM15.FE.Q5
## 8023                                        HF.STA.BM18
## 8024                                     HF.STA.BM18.FE
## 8025                                  HF.STA.BM18.FE.Q1
## 8026                                  HF.STA.BM18.FE.Q2
## 8027                                  HF.STA.BM18.FE.Q3
## 8028                                  HF.STA.BM18.FE.Q4
## 8029                                  HF.STA.BM18.FE.Q5
## 8030                                     HF.STA.BM18.Q1
## 8031                                     HF.STA.BM18.Q2
## 8032                                     HF.STA.BM18.Q3
## 8033                                     HF.STA.BM18.Q4
## 8034                                     HF.STA.BM18.Q5
## 8035                                     HF.STA.BMIN.MA
## 8036                                  HF.STA.BMIN.MA.Q1
## 8037                                  HF.STA.BMIN.MA.Q2
## 8038                                  HF.STA.BMIN.MA.Q3
## 8039                                  HF.STA.BMIN.MA.Q4
## 8040                                  HF.STA.BMIN.MA.Q5
## 8041                                     HF.STA.BP18.ZS
## 8042                                  HF.STA.BP18.ZS.Q1
## 8043                                  HF.STA.BP18.ZS.Q2
## 8044                                  HF.STA.BP18.ZS.Q3
## 8045                                  HF.STA.BP18.ZS.Q4
## 8046                                  HF.STA.BP18.ZS.Q5
## 8047                                        HF.STA.BPDI
## 8048                                     HF.STA.BPDI.Q1
## 8049                                     HF.STA.BPDI.Q2
## 8050                                     HF.STA.BPDI.Q3
## 8051                                     HF.STA.BPDI.Q4
## 8052                                     HF.STA.BPDI.Q5
## 8053                                     HF.STA.BPHT.ZS
## 8054                                  HF.STA.BPHT.ZS.Q1
## 8055                                  HF.STA.BPHT.ZS.Q2
## 8056                                  HF.STA.BPHT.ZS.Q3
## 8057                                  HF.STA.BPHT.ZS.Q4
## 8058                                  HF.STA.BPHT.ZS.Q5
## 8059                                        HF.STA.BPSY
## 8060                                     HF.STA.BPSY.Q1
## 8061                                     HF.STA.BPSY.Q2
## 8062                                     HF.STA.BPSY.Q3
## 8063                                     HF.STA.BPSY.Q4
## 8064                                     HF.STA.BPSY.Q5
## 8065                                     HF.STA.BPTR.ZS
## 8066                                  HF.STA.BPTR.ZS.Q1
## 8067                                  HF.STA.BPTR.ZS.Q2
## 8068                                  HF.STA.BPTR.ZS.Q3
## 8069                                  HF.STA.BPTR.ZS.Q4
## 8070                                  HF.STA.BPTR.ZS.Q5
## 8071                                     HF.STA.BRTC.ZS
## 8072                                  HF.STA.BRTC.ZS.Q1
## 8073                                  HF.STA.BRTC.ZS.Q2
## 8074                                  HF.STA.BRTC.ZS.Q3
## 8075                                  HF.STA.BRTC.ZS.Q4
## 8076                                  HF.STA.BRTC.ZS.Q5
## 8077                                        HF.STA.CHOL
## 8078                                     HF.STA.CHOL.ZS
## 8079                                     HF.STA.CHOM.ZS
## 8080                                  HF.STA.CHOM.ZS.Q1
## 8081                                  HF.STA.CHOM.ZS.Q2
## 8082                                  HF.STA.CHOM.ZS.Q3
## 8083                                  HF.STA.CHOM.ZS.Q4
## 8084                                  HF.STA.CHOM.ZS.Q5
## 8085                                     HF.STA.DIAB.ZS
## 8086                                  HF.STA.DIAB.ZS.Q1
## 8087                                  HF.STA.DIAB.ZS.Q2
## 8088                                  HF.STA.DIAB.ZS.Q3
## 8089                                  HF.STA.DIAB.ZS.Q4
## 8090                                  HF.STA.DIAB.ZS.Q5
## 8091                                        HF.STA.GLUC
## 8092                                     HF.STA.GLYC.ZS
## 8093                                     HF.STA.HE15.FE
## 8094                                  HF.STA.HE15.FE.Q1
## 8095                                  HF.STA.HE15.FE.Q2
## 8096                                  HF.STA.HE15.FE.Q3
## 8097                                  HF.STA.HE15.FE.Q4
## 8098                                  HF.STA.HE15.FE.Q5
## 8099                                        HF.STA.HE18
## 8100                                     HF.STA.HE18.FE
## 8101                                  HF.STA.HE18.FE.Q1
## 8102                                  HF.STA.HE18.FE.Q2
## 8103                                  HF.STA.HE18.FE.Q3
## 8104                                  HF.STA.HE18.FE.Q4
## 8105                                  HF.STA.HE18.FE.Q5
## 8106                                     HF.STA.HE18.MA
## 8107                                  HF.STA.HE18.MA.Q1
## 8108                                  HF.STA.HE18.MA.Q2
## 8109                                  HF.STA.HE18.MA.Q3
## 8110                                  HF.STA.HE18.MA.Q4
## 8111                                  HF.STA.HE18.MA.Q5
## 8112                                     HF.STA.HE18.Q1
## 8113                                     HF.STA.HE18.Q2
## 8114                                     HF.STA.HE18.Q3
## 8115                                     HF.STA.HE18.Q4
## 8116                                     HF.STA.HE18.Q5
## 8117                                     HF.STA.INPT.ZS
## 8118                                  HF.STA.INPT.ZS.Q1
## 8119                                  HF.STA.INPT.ZS.Q2
## 8120                                  HF.STA.INPT.ZS.Q3
## 8121                                  HF.STA.INPT.ZS.Q4
## 8122                                  HF.STA.INPT.ZS.Q5
## 8123                                     HF.STA.MALN.ZS
## 8124                                  HF.STA.MALN.ZS.Q1
## 8125                                  HF.STA.MALN.ZS.Q2
## 8126                                  HF.STA.MALN.ZS.Q3
## 8127                                  HF.STA.MALN.ZS.Q4
## 8128                                  HF.STA.MALN.ZS.Q5
## 8129                                     HF.STA.MAMO.ZS
## 8130                                  HF.STA.MAMO.ZS.Q1
## 8131                                  HF.STA.MAMO.ZS.Q2
## 8132                                  HF.STA.MAMO.ZS.Q3
## 8133                                  HF.STA.MAMO.ZS.Q4
## 8134                                  HF.STA.MAMO.ZS.Q5
## 8135                                  HF.STA.OB15.FE.ZS
## 8136                               HF.STA.OB15.FE.ZS.Q1
## 8137                               HF.STA.OB15.FE.ZS.Q2
## 8138                               HF.STA.OB15.FE.ZS.Q3
## 8139                               HF.STA.OB15.FE.ZS.Q4
## 8140                               HF.STA.OB15.FE.ZS.Q5
## 8141                                  HF.STA.OB18.FE.ZS
## 8142                               HF.STA.OB18.FE.ZS.Q1
## 8143                               HF.STA.OB18.FE.ZS.Q2
## 8144                               HF.STA.OB18.FE.ZS.Q3
## 8145                               HF.STA.OB18.FE.ZS.Q4
## 8146                               HF.STA.OB18.FE.ZS.Q5
## 8147                                  HF.STA.OB18.MA.ZS
## 8148                               HF.STA.OB18.MA.ZS.Q1
## 8149                               HF.STA.OB18.MA.ZS.Q2
## 8150                               HF.STA.OB18.MA.ZS.Q3
## 8151                               HF.STA.OB18.MA.ZS.Q4
## 8152                               HF.STA.OB18.MA.ZS.Q5
## 8153                                     HF.STA.OB18.ZS
## 8154                                  HF.STA.OB18.ZS.Q1
## 8155                                  HF.STA.OB18.ZS.Q2
## 8156                                  HF.STA.OB18.ZS.Q3
## 8157                                  HF.STA.OB18.ZS.Q4
## 8158                                  HF.STA.OB18.ZS.Q5
## 8159                                     HF.STA.ORTH.ZS
## 8160                                  HF.STA.ORTH.ZS.Q1
## 8161                                  HF.STA.ORTH.ZS.Q2
## 8162                                  HF.STA.ORTH.ZS.Q3
## 8163                                  HF.STA.ORTH.ZS.Q4
## 8164                                  HF.STA.ORTH.ZS.Q5
## 8165                                  HF.STA.OW15.FE.ZS
## 8166                               HF.STA.OW15.FE.ZS.Q1
## 8167                               HF.STA.OW15.FE.ZS.Q2
## 8168                               HF.STA.OW15.FE.ZS.Q3
## 8169                               HF.STA.OW15.FE.ZS.Q4
## 8170                               HF.STA.OW15.FE.ZS.Q5
## 8171                                  HF.STA.OW18.FE.ZS
## 8172                               HF.STA.OW18.FE.ZS.Q1
## 8173                               HF.STA.OW18.FE.ZS.Q2
## 8174                               HF.STA.OW18.FE.ZS.Q3
## 8175                               HF.STA.OW18.FE.ZS.Q4
## 8176                               HF.STA.OW18.FE.ZS.Q5
## 8177                                  HF.STA.OW18.MA.ZS
## 8178                               HF.STA.OW18.MA.ZS.Q1
## 8179                               HF.STA.OW18.MA.ZS.Q2
## 8180                               HF.STA.OW18.MA.ZS.Q3
## 8181                               HF.STA.OW18.MA.ZS.Q4
## 8182                               HF.STA.OW18.MA.ZS.Q5
## 8183                                     HF.STA.OW18.ZS
## 8184                                  HF.STA.OW18.ZS.Q1
## 8185                                  HF.STA.OW18.ZS.Q2
## 8186                                  HF.STA.OW18.ZS.Q3
## 8187                                  HF.STA.OW18.ZS.Q4
## 8188                                  HF.STA.OW18.ZS.Q5
## 8189                                     HF.STA.STNT.ZS
## 8190                                  HF.STA.STNT.ZS.Q1
## 8191                                  HF.STA.STNT.ZS.Q2
## 8192                                  HF.STA.STNT.ZS.Q3
## 8193                                  HF.STA.STNT.ZS.Q4
## 8194                                  HF.STA.STNT.ZS.Q5
## 8195                                     HF.UHC.CONS.ZS
## 8196                                  HF.UHC.CONS.ZS.Q1
## 8197                                  HF.UHC.CONS.ZS.Q2
## 8198                                  HF.UHC.CONS.ZS.Q3
## 8199                                  HF.UHC.CONS.ZS.Q4
## 8200                                  HF.UHC.CONS.ZS.Q5
## 8201                                     HF.UHC.NOP1.CG
## 8202                                     HF.UHC.NOP1.ZS
## 8203                                  HF.UHC.NOP1.ZS.Q1
## 8204                                  HF.UHC.NOP1.ZS.Q2
## 8205                                  HF.UHC.NOP1.ZS.Q3
## 8206                                  HF.UHC.NOP1.ZS.Q4
## 8207                                  HF.UHC.NOP1.ZS.Q5
## 8208                                     HF.UHC.NOP2.CG
## 8209                                     HF.UHC.NOP2.ZS
## 8210                                  HF.UHC.NOP2.ZS.Q1
## 8211                                  HF.UHC.NOP2.ZS.Q2
## 8212                                  HF.UHC.NOP2.ZS.Q3
## 8213                                  HF.UHC.NOP2.ZS.Q4
## 8214                                  HF.UHC.NOP2.ZS.Q5
## 8215                                     HF.UHC.NOP3.CG
## 8216                                     HF.UHC.NOP3.ZS
## 8217                                  HF.UHC.NOP3.ZS.Q1
## 8218                                  HF.UHC.NOP3.ZS.Q2
## 8219                                  HF.UHC.NOP3.ZS.Q3
## 8220                                  HF.UHC.NOP3.ZS.Q4
## 8221                                  HF.UHC.NOP3.ZS.Q5
## 8222                                     HF.UHC.NOP4.CG
## 8223                                     HF.UHC.NOP4.ZS
## 8224                                  HF.UHC.NOP4.ZS.Q1
## 8225                                  HF.UHC.NOP4.ZS.Q2
## 8226                                  HF.UHC.NOP4.ZS.Q3
## 8227                                  HF.UHC.NOP4.ZS.Q4
## 8228                                  HF.UHC.NOP4.ZS.Q5
## 8229                                     HF.UHC.NOPX.ZS
## 8230                                  HF.UHC.NOPX.ZS.Q1
## 8231                                  HF.UHC.NOPX.ZS.Q2
## 8232                                  HF.UHC.NOPX.ZS.Q3
## 8233                                  HF.UHC.NOPX.ZS.Q4
## 8234                                  HF.UHC.NOPX.ZS.Q5
## 8235                                      HF.UHC.OOP.CG
## 8236                                      HF.UHC.OOP.ZS
## 8237                                   HF.UHC.OOP.ZS.Q1
## 8238                                   HF.UHC.OOP.ZS.Q2
## 8239                                   HF.UHC.OOP.ZS.Q3
## 8240                                   HF.UHC.OOP.ZS.Q4
## 8241                                   HF.UHC.OOP.ZS.Q5
## 8242                                  HF.UHC.OOPC.10.ZS
## 8243                               HF.UHC.OOPC.10.ZS.Q1
## 8244                               HF.UHC.OOPC.10.ZS.Q2
## 8245                               HF.UHC.OOPC.10.ZS.Q3
## 8246                               HF.UHC.OOPC.10.ZS.Q4
## 8247                               HF.UHC.OOPC.10.ZS.Q5
## 8248                                  HF.UHC.OOPC.25.ZS
## 8249                               HF.UHC.OOPC.25.ZS.Q1
## 8250                               HF.UHC.OOPC.25.ZS.Q2
## 8251                               HF.UHC.OOPC.25.ZS.Q3
## 8252                               HF.UHC.OOPC.25.ZS.Q4
## 8253                               HF.UHC.OOPC.25.ZS.Q5
## 8254                                        HF.UWT.TFRT
## 8255                                     HF.UWT.TFRT.Q1
## 8256                                     HF.UWT.TFRT.Q2
## 8257                                     HF.UWT.TFRT.Q3
## 8258                                     HF.UWT.TFRT.Q4
## 8259                                     HF.UWT.TFRT.Q5
## 8260                                              HLG-1
## 8261                                            HLG-1.1
## 8262                                            HLG-1.2
## 8263                                            HLG-1.3
## 8264                                    HOU.ELC.ACSN.ZS
## 8265                                    HOU.H2O.ACSN.ZS
## 8266                                    HOU.MLT.MAIN.ZS
## 8267                                    HOU.STA.ACSN.ZS
## 8268                                  HOU.XPD.EDU.PC.CR
## 8269                                   HOU.XPD.HE.PC.CR
## 8270                                      HOU.XPD.PC.CR
## 8271                             HOU.XPD.TOTL.20POOR.CR
## 8272                                         i_ATMs_pop
## 8273                                  i_branches_A1_pop
## 8274                               i_deposit_acc_A1_pop
## 8275                        i_deposit_acc_A1_sme_perNFC
## 8276                           i_loan_acc_A1_sme_perNFC
## 8277                         i_mob_agent_pop_registered
## 8278                      i_mob_transactions_number_pop
## 8279                                         IBP.OBI.XQ
## 8280                                     IC.BUS.DFRN.XQ
## 8281                                      IC.BUS.DIR.XQ
## 8282                                     IC.BUS.DISC.XQ
## 8283                            IC.BUS.EASE.DFRN.DB1014
## 8284                              IC.BUS.EASE.DFRN.DB15
## 8285                              IC.BUS.EASE.DFRN.DB16
## 8286                         IC.BUS.EASE.DFRN.XQ.DB1719
## 8287                                     IC.BUS.EASE.XQ
## 8288                                     IC.BUS.INVS.XQ
## 8289                                     IC.BUS.NDNS.ZS
## 8290                                        IC.BUS.NREG
## 8291                                     IC.BUS.NREG.ZS
## 8292                                      IC.BUS.SHR.XQ
## 8293                                        IC.BUS.TOTL
## 8294                                          IC.BUS.XQ
## 8295                                 IC.CLS.COST.EST.ZS
## 8296                                        IC.CLS.DURS
## 8297                                      IC.CLS.REC.CD
## 8298                                          IC.CLS.XQ
## 8299                                     IC.CNS.CORR.ZS
## 8300                                     IC.CNS.CRIM.ZS
## 8301                                     IC.CNS.ELEC.ZS
## 8302                                     IC.CNS.FINA.ZS
## 8303                                      IC.CNS.GEN.ZS
## 8304                                    IC.CNS.IMP.DURS
## 8305                                     IC.CNS.INFM.ZS
## 8306                                     IC.CNS.LAND.ZS
## 8307                                     IC.CNS.LBRG.ZS
## 8308                                     IC.CNS.LBSK.ZS
## 8309                                     IC.CNS.LEGL.ZS
## 8310                                      IC.CNS.LIC.ZS
## 8311                                     IC.CNS.LOSS.ZS
## 8312                                    IC.CNS.PER.DURS
## 8313                                     IC.CNS.POLC.ZS
## 8314                                    IC.CNS.TAXAD.ZS
## 8315                                     IC.CNS.TAXR.ZS
## 8316                                     IC.CNS.TRAD.ZS
## 8317                                     IC.CNS.TRSP.ZS
## 8318                           IC.CNST.LIR.XD.02.DB1619
## 8319                            IC.CNST.PC.XD.04.DB1619
## 8320                  IC.CNST.PRMT.BQCI.015.DB1619.DFRN
## 8321                          IC.CNST.PRMT.COST.WRH.VAL
## 8322                     IC.CNST.PRMT.COST.WRH.VAL.DFRN
## 8323                           IC.CNST.PRMT.DFRN.DB0615
## 8324                           IC.CNST.PRMT.DFRN.DB1619
## 8325                               IC.CNST.PRMT.PROC.NO
## 8326                          IC.CNST.PRMT.PROC.NO.DFRN
## 8327                      IC.CNST.PRMT.QBR.XD.02.DB1619
## 8328                        IC.CNST.PRMT.QCAC.XD.DB1619
## 8329                     IC.CNST.PRMT.QCBC.XD.01.DB1619
## 8330                     IC.CNST.PRMT.QCDC.XD.03.DB1619
## 8331                                    IC.CNST.PRMT.RK
## 8332                                 IC.CNST.PRMT.TM.DY
## 8333                            IC.CNST.PRMT.TM.DY.DFRN
## 8334                                     IC.CON.GIFT.ZS
## 8335                                     IC.CRD.INFO.XQ
## 8336                                      IC.CRD.LGL.XQ
## 8337                                     IC.CRD.PRVT.P3
## 8338                                     IC.CRD.PRVT.ZS
## 8339                                     IC.CRD.PUBL.P3
## 8340                                     IC.CRD.PUBL.ZS
## 8341                                          IC.CRD.XQ
## 8342                            IC.CRED.ACC.ACES.DB0514
## 8343                            IC.CRED.ACC.ACES.DB1519
## 8344                        IC.CRED.ACC.CRD.DB0514.DFRN
## 8345                        IC.CRED.ACC.CRD.DB1519.DFRN
## 8346                                 IC.CRED.ACC.CRD.RK
## 8347                 IC.CRED.ACC.DPTH.CISI.XD.06.DB0514
## 8348            IC.CRED.ACC.DPTH.CISI.XD.06.DB0514.DFRN
## 8349                 IC.CRED.ACC.DPTH.CISI.XD.08.DB1519
## 8350            IC.CRED.ACC.DPTH.CISI.XD.08.DB1519.DFRN
## 8351            IC.CRED.ACC.LGL.RGHT.010.XD.DB0514.DFRN
## 8352            IC.CRED.ACC.LGL.RGHT.012.XD.DB1519.DFRN
## 8353                 IC.CRED.ACC.LGL.RGHT.XD.010.DB0514
## 8354                 IC.CRED.ACC.LGL.RGHT.XD.012.DB1519
## 8355                            IC.CRED.ACC.PRVT.CRD.ZS
## 8356                   IC.CRED.ACC.PUBL.CRD.REG.COVR.ZS
## 8357                                     IC.CUS.DURS.EX
## 8358                                     IC.CUS.DURS.IM
## 8359                           IC.DCP.BQC.XD.015.DB1619
## 8360                                     IC.DMKT.BRK.ZS
## 8361                                    IC.DMKT.LOSS.ZS
## 8362                            IC.ELC.ACES.DFRN.DB1015
## 8363                            IC.ELC.ACES.DFRN.DB1619
## 8364                                IC.ELC.ACES.RK.DB19
## 8365                                    IC.ELC.ACS.COST
## 8366                               IC.ELC.ACS.COST.DFRN
## 8367                      IC.ELC.COMM.TRFF.CG.01.DB1619
## 8368                                        IC.ELC.DURS
## 8369                                      IC.ELC.GEN.ZS
## 8370                                     IC.ELC.GIFT.ZS
## 8371                         IC.ELC.LMTG.OUTG.01.DB1619
## 8372                         IC.ELC.MONT.OUTG.01.DB1619
## 8373                                        IC.ELC.OUTG
## 8374                                     IC.ELC.OUTG.DY
## 8375                    IC.ELC.OUTG.FREQ.DURS.03.DB1619
## 8376                                     IC.ELC.OUTG.HR
## 8377                              IC.ELC.OUTG.MN.DB1619
## 8378                                     IC.ELC.OUTG.ZS
## 8379                               IC.ELC.PRI.KH.DB1619
## 8380                                     IC.ELC.PROC.NO
## 8381                                IC.ELC.PROC.NO.DFRN
## 8382                         IC.ELC.REGU.MONT.01.DB1619
## 8383                             IC.ELC.RSTOR.01.DB1619
## 8384                           IC.ELC.RSTT.XD.08.DB1619
## 8385                      IC.ELC.RSTT.XD.08.DFRN.DB1619
## 8386                              IC.ELC.SAID.XD.DB1619
## 8387                              IC.ELC.SAIF.XD.DB1619
## 8388                                        IC.ELC.TIME
## 8389                                   IC.ELC.TIME.DFRN
## 8390                                 IC.ELEC.COST.PC.ZS
## 8391                                       IC.ELEC.PROC
## 8392                                       IC.ELEC.TIME
## 8393                                         IC.ELEC.XQ
## 8394                                     IC.EMP.FIRE.WK
## 8395                                   IC.EMPL.FTRNG.ZS
## 8396                                     IC.EXP.COST.CD
## 8397                                     IC.EXP.CSBC.CD
## 8398                                     IC.EXP.CSDC.CD
## 8399                                        IC.EXP.DOCS
## 8400                                        IC.EXP.DURS
## 8401                                        IC.EXP.TMBC
## 8402                                        IC.EXP.TMDC
## 8403                                      IC.FRM.ACC.ZS
## 8404                                      IC.FRM.AGE.YR
## 8405                                    IC.FRM.AUDIT.ZS
## 8406                                     IC.FRM.BKWC.ZS
## 8407                                     IC.FRM.BNKS.ZS
## 8408                                 IC.FRM.BRIB.GRAFT2
## 8409                                 IC.FRM.BRIB.GRAFT3
## 8410                                     IC.FRM.BRIB.ZS
## 8411                                     IC.FRM.CMPU.ZS
## 8412                                     IC.FRM.COMP.ZS
## 8413                                      IC.FRM.COR.ZS
## 8414                                  IC.FRM.CORR.CORR1
## 8415                                 IC.FRM.CORR.CORR10
## 8416                                 IC.FRM.CORR.CORR11
## 8417                                  IC.FRM.CORR.CORR2
## 8418                                  IC.FRM.CORR.CORR3
## 8419                                  IC.FRM.CORR.CORR4
## 8420                                  IC.FRM.CORR.CORR6
## 8421                                  IC.FRM.CORR.CORR7
## 8422                                  IC.FRM.CORR.CORR8
## 8423                                  IC.FRM.CORR.CORR9
## 8424                                 IC.FRM.CORR.CRIME9
## 8425                                     IC.FRM.CORR.ZS
## 8426                                  IC.FRM.COST.PC.ZS
## 8427                                      IC.FRM.CRD.ZS
## 8428                                     IC.FRM.CRIM.ZS
## 8429                                  IC.FRM.CRM.CRIME1
## 8430                                 IC.FRM.CRM.CRIME10
## 8431                                IC.FRM.CRM.CRIME2_C
## 8432                                IC.FRM.CRM.CRIME3_C
## 8433                                  IC.FRM.CRM.CRIME5
## 8434                                  IC.FRM.CRM.CRIME8
## 8435                                      IC.FRM.CRT.ZS
## 8436                                      IC.FRM.CUS.ZS
## 8437                                        IC.FRM.DURS
## 8438                                     IC.FRM.ELEC.ZS
## 8439                                    IC.FRM.EMAIL.ZS
## 8440                              IC.FRM.EMP.GROW.PEFT2
## 8441                                   IC.FRM.EMPL.PERM
## 8442                                  IC.FRM.EMPL.SKILL
## 8443                                   IC.FRM.EMPL.TEMP
## 8444                                IC.FRM.EMPL.UNSKILL
## 8445                                      IC.FRM.EXP.ZS
## 8446                                  IC.FRM.FCHAR.CAR1
## 8447                                  IC.FRM.FCHAR.CAR2
## 8448                                  IC.FRM.FCHAR.CAR7
## 8449                                  IC.FRM.FCHAR.CAR8
## 8450                                IC.FRM.FCHAR.LFORM3
## 8451                                     IC.FRM.FEMM.ZS
## 8452                                     IC.FRM.FEMO.ZS
## 8453                                     IC.FRM.FEMW.ZS
## 8454                                  IC.FRM.FIAS.PEFT4
## 8455                                    IC.FRM.FIN.FIN1
## 8456                                   IC.FRM.FIN.FIN10
## 8457                                   IC.FRM.FIN.FIN11
## 8458                                   IC.FRM.FIN.FIN12
## 8459                                   IC.FRM.FIN.FIN13
## 8460                                   IC.FRM.FIN.FIN14
## 8461                                   IC.FRM.FIN.FIN15
## 8462                                   IC.FRM.FIN.FIN16
## 8463                                    IC.FRM.FIN.FIN2
## 8464                                   IC.FRM.FIN.FIN20
## 8465                                   IC.FRM.FIN.FIN21
## 8466                                   IC.FRM.FIN.FIN22
## 8467                                    IC.FRM.FIN.FIN7
## 8468                                     IC.FRM.FINA.ZS
## 8469                                   IC.FRM.FINPUT.ZS
## 8470                                     IC.FRM.FREG.ZS
## 8471                                   IC.FRM.GEN.GEND1
## 8472                                   IC.FRM.GEN.GEND2
## 8473                                   IC.FRM.GEN.GEND3
## 8474                                   IC.FRM.GEN.GEND4
## 8475                                   IC.FRM.GEN.GEND5
## 8476                                   IC.FRM.GEN.GEND6
## 8477                                     IC.FRM.INFM.ZS
## 8478                                IC.FRM.INFOR.INFOR1
## 8479                                IC.FRM.INFOR.INFOR2
## 8480                                IC.FRM.INFOR.INFOR4
## 8481                                IC.FRM.INFOR.INFOR5
## 8482                                   IC.FRM.INFRA.IN1
## 8483                                IC.FRM.INFRA.IN10_C
## 8484                                  IC.FRM.INFRA.IN11
## 8485                                  IC.FRM.INFRA.IN12
## 8486                                  IC.FRM.INFRA.IN14
## 8487                                  IC.FRM.INFRA.IN16
## 8488                                  IC.FRM.INFRA.IN17
## 8489                                   IC.FRM.INFRA.IN2
## 8490                                 IC.FRM.INFRA.IN3_C
## 8491                                 IC.FRM.INFRA.IN4_C
## 8492                                   IC.FRM.INFRA.IN6
## 8493                                   IC.FRM.INFRA.IN9
## 8494                                    IC.FRM.INFRM.ZS
## 8495                                    IC.FRM.INNOV.T1
## 8496                                   IC.FRM.INNOV.T10
## 8497                                    IC.FRM.INNOV.T2
## 8498                                    IC.FRM.INNOV.T3
## 8499                                    IC.FRM.INNOV.T4
## 8500                                    IC.FRM.INNOV.T5
## 8501                                    IC.FRM.INNOV.T6
## 8502                                    IC.FRM.INNOV.T7
## 8503                                    IC.FRM.INNOV.T8
## 8504                                    IC.FRM.INNOV.T9
## 8505                                     IC.FRM.ISOC.ZS
## 8506                                     IC.FRM.LBRG.ZS
## 8507                                     IC.FRM.LBSK.ZS
## 8508                                      IC.FRM.LIC.ZS
## 8509                                     IC.FRM.METG.ZS
## 8510                                     IC.FRM.MGR.EXP
## 8511                                   IC.FRM.OBS.OBST1
## 8512                                  IC.FRM.OBS.OBST10
## 8513                                  IC.FRM.OBS.OBST11
## 8514                                  IC.FRM.OBS.OBST12
## 8515                                  IC.FRM.OBS.OBST13
## 8516                                  IC.FRM.OBS.OBST14
## 8517                                  IC.FRM.OBS.OBST15
## 8518                                   IC.FRM.OBS.OBST2
## 8519                                   IC.FRM.OBS.OBST3
## 8520                                   IC.FRM.OBS.OBST4
## 8521                                   IC.FRM.OBS.OBST5
## 8522                                   IC.FRM.OBS.OBST6
## 8523                                   IC.FRM.OBS.OBST7
## 8524                                   IC.FRM.OBS.OBST8
## 8525                                   IC.FRM.OBS.OBST9
## 8526                                     IC.FRM.OUTG.ZS
## 8527                                  IC.FRM.OWN.GOV.ZS
## 8528                                 IC.FRM.OWN.PFOR.ZS
## 8529                                 IC.FRM.OWN.PLOC.ZS
## 8530                                      IC.FRM.OWN.ZS
## 8531                                        IC.FRM.PROC
## 8532                             IC.FRM.PROD.GROW.PEFT3
## 8533                                    IC.FRM.REG.BUS1
## 8534                                    IC.FRM.REG.BUS2
## 8535                                    IC.FRM.REG.BUS3
## 8536                                    IC.FRM.REG.BUS5
## 8537                                    IC.FRM.REG.REG1
## 8538                                  IC.FRM.REG.REG2_C
## 8539                                    IC.FRM.REG.REG4
## 8540                                    IC.FRM.REG.REG5
## 8541                                    IC.FRM.REG.REG6
## 8542                                      IC.FRM.REG.ZS
## 8543                                     IC.FRM.RSDV.ZS
## 8544                                      IC.FRM.SEC.ZS
## 8545                                     IC.FRM.SECR.ZS
## 8546                              IC.FRM.SLS.GROW.PEFT1
## 8547                                    IC.FRM.TAXAD.ZS
## 8548                                     IC.FRM.TAXR.ZS
## 8549                                     IC.FRM.TECH.ZS
## 8550                                     IC.FRM.THEV.ZS
## 8551                                        IC.FRM.TIME
## 8552                                     IC.FRM.TRD.TR1
## 8553                                    IC.FRM.TRD.TR11
## 8554                                    IC.FRM.TRD.TR16
## 8555                                    IC.FRM.TRD.TR17
## 8556                                     IC.FRM.TRD.TR2
## 8557                                     IC.FRM.TRD.TR5
## 8558                                     IC.FRM.TRD.TR8
## 8559                                     IC.FRM.TRD.TR9
## 8560                                     IC.FRM.TRNG.ZS
## 8561                                     IC.FRM.TRSP.ZS
## 8562                                      IC.FRM.WEB.ZS
## 8563                                    IC.FRM.WRKF.WK1
## 8564                                   IC.FRM.WRKF.WK10
## 8565                                   IC.FRM.WRKF.WK14
## 8566                                   IC.FRM.WRKF.WK15
## 8567                                   IC.FRM.WRKF.WK17
## 8568                                   IC.FRM.WRKF.WK18
## 8569                                   IC.FRM.WRKF.WK19
## 8570                                    IC.FRM.WRKF.WK2
## 8571                                    IC.FRM.WRKF.WK8
## 8572                                    IC.FRM.WRKF.WK9
## 8573                                  IC.FRM.WTLIC.DURS
## 8574                                          IC.FRM.XQ
## 8575                                    IC.GCON.GIFT.ZS
## 8576                                     IC.GOV.DURS.ZS
## 8577                                        IC.GRAFT.XQ
## 8578                                     IC.IMP.COST.CD
## 8579                                     IC.IMP.CSBC.CD
## 8580                                     IC.IMP.CSDC.CD
## 8581                                        IC.IMP.DOCS
## 8582                                        IC.IMP.DURS
## 8583                                     IC.IMP.GIFT.ZS
## 8584                                        IC.IMP.TMBC
## 8585                                        IC.IMP.TMDC
## 8586                                        IC.ISV.DURS
## 8587                                     IC.LGL.CONT.XQ
## 8588                                IC.LGL.COST.DEBT.ZS
## 8589                                     IC.LGL.CRED.XQ
## 8590                                        IC.LGL.DURS
## 8591                                     IC.LGL.EMPL.XQ
## 8592                                     IC.LGL.LACK.ZS
## 8593                                        IC.LGL.PROC
## 8594                                     IC.LOAN.COL.ZS
## 8595                                    IC.OPER.GIFT.ZS
## 8596                                IC.PRP.COST.PROP.ZS
## 8597                                        IC.PRP.DURS
## 8598                                        IC.PRP.PROC
## 8599                                          IC.PRP.XQ
## 8600                                   IC.REG.CAP.PC.ZS
## 8601                               IC.REG.COST.PC.FE.ZS
## 8602                          IC.REG.COST.PC.FE.ZS.DRFN
## 8603                               IC.REG.COST.PC.MA.ZS
## 8604                          IC.REG.COST.PC.MA.ZS.DFRN
## 8605                                  IC.REG.COST.PC.ZS
## 8606                                IC.REG.DFRN.PC.DFRN
## 8607                                        IC.REG.DURS
## 8608                                     IC.REG.DURS.FE
## 8609                                  IC.REG.DURS.FE.DY
## 8610                             IC.REG.DURS.FE.DY.DRFN
## 8611                                     IC.REG.DURS.MA
## 8612                                  IC.REG.DURS.MA.DY
## 8613                             IC.REG.DURS.MA.DY.DFRN
## 8614                                     IC.REG.MIN.CAP
## 8615                                        IC.REG.PROC
## 8616                                     IC.REG.PROC.FE
## 8617                                  IC.REG.PROC.FE.NO
## 8618                             IC.REG.PROC.FE.NO.DFRN
## 8619                                     IC.REG.PROC.MA
## 8620                                  IC.REG.PROC.MA.NO
## 8621                             IC.REG.PROC.MA.NO.DFRN
## 8622                           IC.REG.PRRT.COST.PRT.VAL
## 8623                      IC.REG.PRRT.COST.PRT.VAL.DFRN
## 8624                            IC.REG.PRRT.DFRN.DB0515
## 8625                              IC.REG.PRRT.DFRN.DB16
## 8626                            IC.REG.PRRT.DFRN.DB1719
## 8627                                IC.REG.PRRT.DURS.TM
## 8628                           IC.REG.PRRT.DURS.TM.DRFN
## 8629                    IC.REG.PRRT.EQACCS.XD.08.DB1619
## 8630                  IC.REG.PRRT.GEO.COVR.XD.08.DB1619
## 8631                 IC.REG.PRRT.LAND.DISP.XD.08.DB1619
## 8632          IC.REG.PRRT.LNDADM.GEN.XD.030.DB1719.DFRN
## 8633                                IC.REG.PRRT.PROC.NO
## 8634                           IC.REG.PRRT.PROC.NO.DFRN
## 8635                IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16
## 8636           IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16.DFRN
## 8637              IC.REG.PRRT.QUAL.LNDADM.XD.030.DB1719
## 8638                            IC.REG.PRRT.REG.RK.DB19
## 8639                 IC.REG.PRRT.RELI.INFR.XD.09.DB1619
## 8640                 IC.REG.PRRT.TRAP.INFO.XD.06.DB1619
## 8641                               IC.REG.STRT.BUS.DFRN
## 8642                            IC.REG.STRT.BUS.RK.DB19
## 8643                                          IC.REG.XQ
## 8644                                     IC.SALE.DOM.ZS
## 8645                                     IC.SME.EMPL.ZS
## 8646                                        IC.SME.TOTL
## 8647                                     IC.SME.TOTL.P3
## 8648                                        IC.TAX.DURS
## 8649                                     IC.TAX.GIFT.ZS
## 8650                                  IC.TAX.LABR.CP.ZS
## 8651                                      IC.TAX.LBR.ZS
## 8652                                        IC.TAX.METG
## 8653                                      IC.TAX.OTH.ZS
## 8654                                  IC.TAX.OTHR.CP.ZS
## 8655                                        IC.TAX.PAYM
## 8656                                      IC.TAX.PFT.ZS
## 8657                                  IC.TAX.PRFT.CP.ZS
## 8658                                  IC.TAX.TOTL.CP.ZS
## 8659                                  IC.TAX.TOTL.GP.ZS
## 8660                                          IC.TAX.XQ
## 8661                                        IC.TEL.DURS
## 8662                                     IC.TEL.GIFT.ZS
## 8663                                          IC.TRD.XQ
## 8664                                      IC.VAL.COL.ZS
## 8665                                    IC.VALG.GIFT.ZS
## 8666                                        IC.WAT.DURS
## 8667                                     IC.WAT.GIFT.ZS
## 8668                                     IC.WEF.LLCD.FE
## 8669                                  IC.WEF.LLCD.FE.ZS
## 8670                                     IC.WEF.LLCD.MA
## 8671                                  IC.WEF.LLCD.MA.ZS
## 8672                                     IC.WEF.LLCO.FE
## 8673                                  IC.WEF.LLCO.FE.ZS
## 8674                                     IC.WEF.LLCO.MA
## 8675                                  IC.WEF.LLCO.MA.ZS
## 8676                                     IC.WEF.SOLO.FE
## 8677                                  IC.WEF.SOLO.FE.ZS
## 8678                                     IC.WEF.SOLO.MA
## 8679                                  IC.WEF.SOLO.MA.ZS
## 8680                                        IC.WRH.DURS
## 8681                                        IC.WRH.PROC
## 8682                                            IDX.HDI
## 8683                                        IDX.HDI.REV
## 8684                                     IE.ICT.PCAP.CD
## 8685                                     IE.ICT.TOTL.CD
## 8686                                  IE.ICT.TOTL.GD.ZS
## 8687                                     IE.PPI.ENGY.CD
## 8688                                     IE.PPI.ICTI.CD
## 8689                                     IE.PPI.TELE.CD
## 8690                                     IE.PPI.TRAN.CD
## 8691                                     IE.PPI.WATR.CD
## 8692                                     IE.PPN.ENGY.CD
## 8693                                     IE.PPN.ICTI.CD
## 8694                                     IE.PPN.TELE.CD
## 8695                                     IE.PPN.TRAN.CD
## 8696                                     IE.PPN.WATR.CD
## 8697                                             IMPCOV
## 8698                               IN.AGR.GR.IRRIG.AREA
## 8699                                     IN.AGR.YLD.ALL
## 8700                                    IN.AGR.YLD.RICE
## 8701                                IN.AGR.YLD.SUGRCANE
## 8702                          IN.EC.GSDP.PERCAP.NOM.INR
## 8703                          IN.EC.GSDP.PERCAP.NOM.USD
## 8704                         IN.EC.GSDP.PERCAP.REAL.INR
## 8705                IN.EC.GSDP.PERCAP.REAL.INR.GRWTHRAT
## 8706                         IN.EC.GSDP.PERCAP.REAL.USD
## 8707                IN.EC.GSDP.PERCAP.REAL.USD.GRWTHRAT
## 8708                                 IN.EC.POP.GRWTHRAT
## 8709                            IN.EC.POP.GRWTHRAT.RURL
## 8710                            IN.EC.POP.GRWTHRAT.URBN
## 8711                                     IN.EC.POP.RURL
## 8712                                 IN.EC.POP.RURL.PCT
## 8713                                     IN.EC.POP.TOTL
## 8714                                 IN.EC.POP.URBN.PCT
## 8715                                   IN.EDU.ENROL.GEN
## 8716                                  IN.EDU.ENROL.MSLM
## 8717                                   IN.EDU.ENROL.OBC
## 8718                                    IN.EDU.ENROL.SC
## 8719                                    IN.EDU.ENROL.ST
## 8720                               IN.EDU.GR.ENRL.RATIO
## 8721                              IN.EDU.NET.ENRL.RATIO
## 8722                                  IN.EDU.PUPIL.TCHR
## 8723                                    IN.EDU.TCHR.NUM
## 8724                                IN.EDU.TCHRTRNG.NUM
## 8725                                  IN.ENRGY.ELEC.CAP
## 8726                                  IN.ENRGY.ELEC.GEN
## 8727                       IN.ENRGY.ELEC.PERCAP.CONSMPN
## 8728              IN.ENRGY.ELEC.PERCAP.CONSMPN.NONUTLTS
## 8729                  IN.ENRGY.ELEC.PERCAP.CONSMPN.TOTL
## 8730                            IN.ENRGY.GRID.RENEW.CAP
## 8731                      IN.ENRGY.TOWNS.ELECTRFIED.NUM
## 8732                  IN.ENRGY.TOWNS.ELECTRFIED.PERCENT
## 8733                                IN.ENRGY.TOWNS.TOTL
## 8734                         IN.ENRGY.VILLAG.ELECTRFIED
## 8735                 IN.ENRGY.VILLAG.ELECTRFIED.PERCENT
## 8736                               IN.ENRGY.VILLAG.TOTL
## 8737                                    IN.ENV.CO2.CONC
## 8738                             IN.ENV.CO2.PERCAP.CONC
## 8739                   IN.ENV.COASTALZONE.AGRILAND.AREA
## 8740                    IN.ENV.COASTALZONE.AGRILAND.PCT
## 8741                      IN.ENV.COASTALZONE.BUILT.AREA
## 8742                       IN.ENV.COASTALZONE.BUILT.PCT
## 8743                     IN.ENV.COASTALZONE.FOREST.AREA
## 8744                      IN.ENV.COASTALZONE.FOREST.PCT
## 8745                IN.ENV.COASTALZONE.OTHFEATURES.AREA
## 8746                 IN.ENV.COASTALZONE.OTHFEATURES.PCT
## 8747                  IN.ENV.COASTALZONE.SHORELAND.AREA
## 8748                   IN.ENV.COASTALZONE.SHORELAND.PCT
## 8749                  IN.ENV.COASTALZONE.WASTELAND.AREA
## 8750                   IN.ENV.COASTALZONE.WASTELAND.PCT
## 8751                IN.ENV.COASTALZONE.WATERBODIES.AREA
## 8752                 IN.ENV.COASTALZONE.WATERBODIES.PCT
## 8753                    IN.ENV.COASTALZONE.WETLAND.AREA
## 8754                     IN.ENV.COASTALZONE.WETLAND.PCT
## 8755                            IN.ENV.CROPINTENSIT.PCT
## 8756                                 IN.ENV.FOREST.AREA
## 8757                                  IN.ENV.FOREST.PCT
## 8758                                    IN.ENV.GEO.AREA
## 8759                            IN.ENV.GROSS.IRRIG.AREA
## 8760                          IN.ENV.IRRIGTOCROPPED.PCT
## 8761                              IN.ENV.NET.IRRIG.AREA
## 8762                                    IN.ENV.NO2.CONC
## 8763                          IN.ENV.NOCULTIVATION.AREA
## 8764                       IN.ENV.OTHR.UNCULTIVABL.AREA
## 8765                                     IN.ENV.PM.CONC
## 8766                                    IN.ENV.SO2.CONC
## 8767                                IN.FIN.COMMBANK.NUM
## 8768                                IN.FIN.FININCL.INDX
## 8769                           IN.FIN.HH.BNKG.SRVC.RURL
## 8770                           IN.FIN.HH.BNKG.SRVC.TOTL
## 8771                           IN.FIN.HH.BNKG.SRVC.URBN
## 8772                                     IN.FIN.HH.RURL
## 8773                                     IN.FIN.HH.TOTL
## 8774                                     IN.FIN.HH.URBN
## 8775                                 IN.FIN.POP.PERBANK
## 8776                               IN.HLTH.AUXNURSE.NUM
## 8777                                    IN.HLTH.CHC.NUM
## 8778                             IN.HLTH.DISTHOSPTL.NUM
## 8779                               IN.HLTH.DOCS.PER100K
## 8780                         IN.HLTH.GOVHOSPTL.BEDS.NUM
## 8781                     IN.HLTH.GOVHOSPTL.BEDS.PER100K
## 8782                              IN.HLTH.GOVHOSPTL.NUM
## 8783                          IN.HLTH.GOVHOSPTL.PER100K
## 8784                               IN.HLTH.HIVDEATH.EST
## 8785                           IN.HLTH.HIVINFECTION.EST
## 8786                              IN.HLTH.HLTHSTAFF.NUM
## 8787                              IN.HLTH.MALARIA.CASES
## 8788                              IN.HLTH.MALARIA.DEATH
## 8789                                 IN.HLTH.SUBCTR.NUM
## 8790                                  IN.IS.RRS.ELEC.KM
## 8791                                IN.IS.RRS.FRGT.LEAD
## 8792                                IN.IS.RRS.FRGT.RATE
## 8793                    IN.IS.RRS.FRGT.RVENU.NET.TON.KM
## 8794                               IN.IS.RRS.FRGT.SPEED
## 8795                           IN.IS.RRS.FRGT.TONS.ORIG
## 8796                                  IN.IS.RRS.LOCO.NO
## 8797                           IN.IS.RRS.LOCO.TRACT.KG3
## 8798                           IN.IS.RRS.PASG.KM.NONSUB
## 8799                              IN.IS.RRS.PASG.KM.SUB
## 8800                             IN.IS.RRS.PASG.KM.TOTL
## 8801                                   IN.IS.RRS.RUN.KM
## 8802                                  IN.IS.RRS.TOTL.KM
## 8803                          IN.IS.RRS.TRKDENSITY.NTKM
## 8804                         IN.IS.RRS.TRKDENSITY.TRAIN
## 8805                                IN.IS.RRS.WAGN.LEAD
## 8806                    IN.IS.RRS.WAGN.NTKM.PER.WAGNDAY
## 8807                               IN.IS.RRS.WAGN.USAGE
## 8808                                 IN.IS.RRS.WAGON.NO
## 8809                           IN.IS.RRSTRKDENSITY.PASG
## 8810                                   IN.LABR.LABR.MYS
## 8811                                  IN.LABR.LFPR.TOTL
## 8812                             IN.LABR.LFPR.TOTL.DIPL
## 8813                          IN.LABR.LFPR.TOTL.HSCNDRY
## 8814                            IN.LABR.LFPR.TOTL.MIDDL
## 8815                         IN.LABR.LFPR.TOTL.NOTLITRT
## 8816                               IN.LABR.LFPR.TOTL.PG
## 8817                           IN.LABR.LFPR.TOTL.PRIMRY
## 8818                           IN.LABR.LFPR.TOTL.SCNDRY
## 8819                       IN.POV.ASSETS.LANDMOBILE.PCT
## 8820                                IN.POV.HCR.EST.RURL
## 8821                                IN.POV.HCR.EST.TOTL
## 8822                                IN.POV.HCR.EST.URBN
## 8823                 IN.POV.HH.ASSETS.COMP.INTERNET.PCT
## 8824               IN.POV.HH.ASSETS.COMP.NOINTERNET.PCT
## 8825                     IN.POV.HH.ASSETS.COMPUTERS.PCT
## 8826                 IN.POV.HH.ASSETS.LANDLINEPHONE.PCT
## 8827                   IN.POV.HH.ASSETS.MOBILEPHONE.PCT
## 8828                               IN.POV.HH.ASSETS.NUM
## 8829                         IN.POV.HH.ASSETS.PHONE.PCT
## 8830                               IN.POV.HH.DRKNGWATER
## 8831                          IN.POV.HH.DRKNGWATER.AWAY
## 8832                          IN.POV.HH.DRKNGWATER.NEAR
## 8833                        IN.POV.HH.DRKNGWATER.WITHIN
## 8834                     IN.POV.HH.DRNKNGWATER.RURL.PCT
## 8835                     IN.POV.HH.DRNKNGWATER.TOTL.PCT
## 8836                     IN.POV.HH.DRNKNGWATER.URBN.PCT
## 8837                                IN.POV.HH.SLUMS.NUM
## 8838                             IN.POV.HOUSNG.URBN.NUM
## 8839                                IN.POV.INF.MORTRATE
## 8840                          IN.POV.INF.MORTRATE.UNDR5
## 8841                              IN.POV.LIT.RAT.FEMALE
## 8842                                IN.POV.LIT.RAT.MALE
## 8843                                IN.POV.LIT.RAT.RURL
## 8844                    IN.POV.LIT.RAT.SLUMS.FEMALE.PCT
## 8845                      IN.POV.LIT.RAT.SLUMS.MALE.PCT
## 8846                      IN.POV.LIT.RAT.SLUMS.TOTL.PCT
## 8847                                IN.POV.LIT.RAT.TOTL
## 8848                                IN.POV.LIT.RAT.URBN
## 8849                              IN.POV.LTRIN.POV.AWAY
## 8850                            IN.POV.LTRIN.POV.WITHIN
## 8851                       IN.POV.MIGRNTS.5TO9YEARS.NUM
## 8852                IN.POV.MIGRNTS.FEMALE.1TO4YEARS.NUM
## 8853                IN.POV.MIGRNTS.FEMALE.5TO9YEARS.NUM
## 8854                          IN.POV.MIGRNTS.FEMALE.NUM
## 8855               IN.POV.MIGRNTS.FEMALE.UNDER1YEAR.NUM
## 8856                  IN.POV.MIGRNTS.MALE.1TO4YEARS.NUM
## 8857                  IN.POV.MIGRNTS.MALE.5TO9YEARS.NUM
## 8858                            IN.POV.MIGRNTS.MALE.NUM
## 8859                 IN.POV.MIGRNTS.MALE.UNDER1YEAR.NUM
## 8860                  IN.POV.MIGRNTS.TOTL.1TO4YEARS.NUM
## 8861                            IN.POV.MIGRNTS.TOTL.NUM
## 8862                 IN.POV.MIGRNTS.TOTL.UNDER1YEAR.NUM
## 8863                         IN.POV.SLUM.POP.FEMALE.NUM
## 8864                           IN.POV.SLUM.POP.MALE.NUM
## 8865                           IN.POV.SLUM.POP.TOTL.NUM
## 8866                    IN.POV.WORKERS.SLUMS.FEMALE.NUM
## 8867                      IN.POV.WORKERS.SLUMS.MALE.NUM
## 8868                      IN.POV.WORKERS.SLUMS.TOTL.NUM
## 8869                      IN.TRANSPORT.NATLHWY.BELOWSTD
## 8870                       IN.TRANSPORT.NATLHWY.DBLLANE
## 8871                      IN.TRANSPORT.NATLHWY.MULTLANE
## 8872                    IN.TRANSPORT.NATLHWY.ONELANESTD
## 8873                          IN.TRANSPORT.NATLHWY.TOTL
## 8874                               IN.TRANSPORT.RD.URBN
## 8875                  IN.TRANSPORT.RD.URBN.BTCC.SURFACE
## 8876                      IN.TRANSPORT.RD.URBN.SURFACED
## 8877                   IN.TRANSPORT.RD.URBN.WBM.SURFACE
## 8878                    IN.TRANSPORT.RDCRASH.INJURD.NUM
## 8879                           IN.TRANSPORT.RDCRASH.NUM
## 8880                         IN.TRANSPORT.RURLRD.DENSIT
## 8881                         IN.TRANSPORT.TRAFDEATH.NUM
## 8882                         IN.TRANSPORT.URBNRD.DENSIT
## 8883                                        IP.IDS.NRCT
## 8884                                        IP.IDS.RSCT
## 8885                                     IP.JRN.ARTC.SC
## 8886                                        IP.PAT.NRES
## 8887                                        IP.PAT.RESD
## 8888                                        IP.TMK.AGGD
## 8889                                        IP.TMK.MDRD
## 8890                                        IP.TMK.NRCT
## 8891                                        IP.TMK.NRES
## 8892                                        IP.TMK.RESD
## 8893                                        IP.TMK.RSCT
## 8894                                        IP.TMK.TOTL
## 8895                                          IPTOTNSKD
## 8896                                          IPTOTSAKD
## 8897                                     IQ.CPA.BREG.XQ
## 8898                                     IQ.CPA.DEBT.XQ
## 8899                                     IQ.CPA.ECON.XQ
## 8900                                     IQ.CPA.ENVR.XQ
## 8901                                     IQ.CPA.FINQ.XQ
## 8902                                     IQ.CPA.FINS.XQ
## 8903                                     IQ.CPA.FISP.XQ
## 8904                                     IQ.CPA.GNDR.XQ
## 8905                                     IQ.CPA.HRES.XQ
## 8906                                     IQ.CPA.IRAI.XQ
## 8907                                     IQ.CPA.MACR.XQ
## 8908                                     IQ.CPA.PADM.XQ
## 8909                                     IQ.CPA.PRES.XQ
## 8910                                     IQ.CPA.PROP.XQ
## 8911                                     IQ.CPA.PROT.XQ
## 8912                                     IQ.CPA.PUBS.XQ
## 8913                                     IQ.CPA.REVN.XQ
## 8914                                     IQ.CPA.SOCI.XQ
## 8915                                     IQ.CPA.STRC.XQ
## 8916                                     IQ.CPA.TRAD.XQ
## 8917                                     IQ.CPA.TRAN.XQ
## 8918                                     IQ.ICR.RISK.XQ
## 8919                                     IQ.PPN.REGQ.S0
## 8920                                     IQ.PPN.REGQ.S1
## 8921                                     IQ.PPN.REGQ.S2
## 8922                                     IQ.PPN.REGQ.S3
## 8923                                        IQ.SCI.MTHD
## 8924                                        IQ.SCI.OVRL
## 8925                                        IQ.SCI.PRDC
## 8926                                        IQ.SCI.SRCE
## 8927                                        IQ.SPI.OVRL
## 8928                                        IQ.SPI.PIL1
## 8929                                        IQ.SPI.PIL2
## 8930                                        IQ.SPI.PIL3
## 8931                                        IQ.SPI.PIL4
## 8932                                        IQ.SPI.PIL5
## 8933                                     IQ.WEF.CUST.XQ
## 8934                                     IQ.WEF.PORT.XQ
## 8935                                        IS.AIR.DPRT
## 8936                                     IS.AIR.DPRT.P3
## 8937                                  IS.AIR.GOOD.MT.K1
## 8938                                        IS.AIR.PSGR
## 8939                                     IS.AIR.PSGR.P3
## 8940                                     IS.ROD.DESL.KT
## 8941                                     IS.ROD.DESL.PC
## 8942                                     IS.ROD.DNST.K2
## 8943                                     IS.ROD.ENGY.KT
## 8944                                     IS.ROD.ENGY.PC
## 8945                                     IS.ROD.ENGY.ZS
## 8946                                  IS.ROD.GOOD.MT.K6
## 8947                                     IS.ROD.NORM.XD
## 8948                                     IS.ROD.PAVE.ZS
## 8949                                     IS.ROD.PSGR.K6
## 8950                                     IS.ROD.SGAS.KT
## 8951                                     IS.ROD.SGAS.PC
## 8952                                     IS.ROD.TOTL.KM
## 8953                                        IS.ROD.TRAF
## 8954                                     IS.RRS.DESL.ZS
## 8955                                        IS.RRS.DNST
## 8956                                     IS.RRS.ELEC.KM
## 8957                                  IS.RRS.EMPL.TU.ZS
## 8958                                     IS.RRS.GOOD.KM
## 8959                               IS.RRS.GOOD.KM.PP.ZS
## 8960                                  IS.RRS.GOOD.MT.K6
## 8961                               IS.RRS.PASG.K2.PP.ZS
## 8962                                     IS.RRS.PASG.KM
## 8963                                     IS.RRS.TOTL.KM
## 8964                                     IS.RRS.TRFF.PF
## 8965                                     IS.SHP.GCNW.XQ
## 8966                                     IS.SHP.GOOD.TU
## 8967                                     IS.VEH.2CYL.P3
## 8968                                     IS.VEH.NVEH.P3
## 8969                                     IS.VEH.PCAR.P3
## 8970                                     IS.VEH.ROAD.K1
## 8971                                     IT.BBD.USEC.CD
## 8972                                     IT.CEL.COVR.ZS
## 8973                                        IT.CEL.SETS
## 8974                                     IT.CEL.SETS.P2
## 8975                                     IT.CEL.SETS.P3
## 8976                                     IT.CEL.USEC.CD
## 8977                                 IT.CELL.3MIN.CD.OP
## 8978                                 IT.CELL.3MIN.CD.PK
## 8979                                 IT.CELL.3MIN.CN.OP
## 8980                                 IT.CELL.3MIN.CN.PK
## 8981                                    IT.CELL.MSUB.CD
## 8982                                    IT.CELL.MSUB.CN
## 8983                                 IT.CELL.PO.CONN.CD
## 8984                                 IT.CELL.PO.CONN.CN
## 8985                                 IT.CELL.PR.CONN.CD
## 8986                                 IT.CELL.PR.CONN.CN
## 8987                                        IT.CMP.PCMP
## 8988                                     IT.CMP.PCMP.ED
## 8989                                     IT.CMP.PCMP.P2
## 8990                                     IT.CMP.PCMP.P3
## 8991                                     IT.FAX.MACH.P3
## 8992                                     IT.INT.TRAF.MN
## 8993                                  IT.INT.TRAF.MN.PS
## 8994                                     IT.INT.TTRF.MN
## 8995                                  IT.INT.TTRF.MN.PC
## 8996                                     IT.MBL.USEC.CD
## 8997                                  IT.MLT.3MIN.CD.OP
## 8998                                  IT.MLT.3MIN.CD.PK
## 8999                                  IT.MLT.3MIN.CD.US
## 9000                                  IT.MLT.3MIN.CN.OP
## 9001                                  IT.MLT.3MIN.CN.PK
## 9002                                    IT.MLT.BCONN.CD
## 9003                                    IT.MLT.BCONN.CN
## 9004                                     IT.MLT.BSUB.CD
## 9005                                     IT.MLT.BSUB.CN
## 9006                                     IT.MLT.CLCL.CD
## 9007                                     IT.MLT.CONN.CD
## 9008                                     IT.MLT.CONN.CN
## 9009                                        IT.MLT.EMPL
## 9010                                     IT.MLT.FALT.CL
## 9011                                     IT.MLT.FALT.M2
## 9012                                     IT.MLT.INVS.CD
## 9013                                     IT.MLT.INVS.CN
## 9014                                     IT.MLT.LCTY.P3
## 9015                                        IT.MLT.MAIN
## 9016                                     IT.MLT.MAIN.P2
## 9017                                     IT.MLT.MAIN.P3
## 9018                                     IT.MLT.REVN.CD
## 9019                                     IT.MLT.REVN.CN
## 9020                                     IT.MLT.REVN.ZS
## 9021                                     IT.MLT.RSUB.CD
## 9022                                     IT.MLT.RSUB.CN
## 9023                                     IT.MLT.USEC.CD
## 9024                                        IT.MLT.WAIT
## 9025                                     IT.MLT.WAIT.P3
## 9026                                     IT.MLT.WAIT.YR
## 9027                                      IT.MOB.COV.ZS
## 9028                                     IT.MOB.INVS.CD
## 9029                                     IT.MOB.INVS.CN
## 9030                                     IT.MOB.REVN.CD
## 9031                                     IT.MOB.REVN.CN
## 9032                                        IT.NET.BBND
## 9033                                     IT.NET.BBND.P2
## 9034                                     IT.NET.BBND.P3
## 9035                                        IT.NET.BNDW
## 9036                                     IT.NET.BNDW.PC
## 9037                                     IT.NET.CONN.CD
## 9038                                     IT.NET.CONN.CN
## 9039                                     IT.NET.EDUC.ZS
## 9040                                     IT.NET.HOST.P4
## 9041                                     IT.NET.ISPC.CD
## 9042                                        IT.NET.SECR
## 9043                                     IT.NET.SECR.P6
## 9044                                      IT.NET.SUB.CD
## 9045                                      IT.NET.SUB.CN
## 9046                                     IT.NET.TELC.CD
## 9047                                     IT.NET.USEC.CD
## 9048                                     IT.NET.USEC.ZS
## 9049                                        IT.NET.USER
## 9050                                     IT.NET.USER.P2
## 9051                                     IT.NET.USER.P3
## 9052                                     IT.NET.USER.ZS
## 9053                                      IT.PAY.PHONES
## 9054                                   IT.PAY.PHONES.P3
## 9055                                      IT.PC.HOUS.ZS
## 9056                                     IT.PRT.NEWS.P3
## 9057                                     IT.RAD.HOUS.ZS
## 9058                                        IT.RAD.SETS
## 9059                                     IT.RAD.SETS.P3
## 9060                                     IT.RES.USEC.CD
## 9061                                     IT.TEL.EMPL.TO
## 9062                                     IT.TEL.HOUS.ZS
## 9063                                     IT.TEL.INVS.CD
## 9064                                     IT.TEL.INVS.CN
## 9065                                  IT.TEL.INVS.RV.ZS
## 9066                                     IT.TEL.REVN.CD
## 9067                                     IT.TEL.REVN.CN
## 9068                                  IT.TEL.REVN.GD.ZS
## 9069                                        IT.TEL.TOTL
## 9070                                     IT.TEL.TOTL.EM
## 9071                                     IT.TEL.TOTL.P2
## 9072                                     IT.TEL.TOTL.P3
## 9073                                     IT.TEL.UNMT.ZS
## 9074                                      IT.TELC.IM.CD
## 9075                                      IT.TELC.XP.CD
## 9076                                     IT.TVS.CABL.P3
## 9077                                     IT.TVS.HOUS.ZS
## 9078                                     IT.TVS.SETS.P3
## 9079                                        JI.AGE.MPYR
## 9080                                     JI.AGE.MPYR.FE
## 9081                                     JI.AGE.MPYR.HE
## 9082                                     JI.AGE.MPYR.LE
## 9083                                     JI.AGE.MPYR.MA
## 9084                                     JI.AGE.MPYR.OL
## 9085                                     JI.AGE.MPYR.RU
## 9086                                     JI.AGE.MPYR.UR
## 9087                                     JI.AGE.MPYR.YG
## 9088                                        JI.AGE.SELF
## 9089                                     JI.AGE.SELF.FE
## 9090                                     JI.AGE.SELF.HE
## 9091                                     JI.AGE.SELF.LE
## 9092                                     JI.AGE.SELF.MA
## 9093                                     JI.AGE.SELF.OL
## 9094                                     JI.AGE.SELF.RU
## 9095                                     JI.AGE.SELF.UR
## 9096                                     JI.AGE.SELF.YG
## 9097                                        JI.AGE.TOTL
## 9098                                     JI.AGE.TOTL.FE
## 9099                                     JI.AGE.TOTL.HE
## 9100                                     JI.AGE.TOTL.LE
## 9101                                     JI.AGE.TOTL.MA
## 9102                                     JI.AGE.TOTL.OL
## 9103                                     JI.AGE.TOTL.RU
## 9104                                     JI.AGE.TOTL.UR
## 9105                                     JI.AGE.TOTL.YG
## 9106                                        JI.AGE.WAGE
## 9107                                     JI.AGE.WAGE.FE
## 9108                                     JI.AGE.WAGE.HE
## 9109                                     JI.AGE.WAGE.LE
## 9110                                     JI.AGE.WAGE.MA
## 9111                                     JI.AGE.WAGE.OL
## 9112                                     JI.AGE.WAGE.RU
## 9113                                     JI.AGE.WAGE.UR
## 9114                                     JI.AGE.WAGE.YG
## 9115                                        JI.AGE.WORK
## 9116                                     JI.AGE.WORK.FE
## 9117                                     JI.AGE.WORK.HE
## 9118                                     JI.AGE.WORK.LE
## 9119                                     JI.AGE.WORK.MA
## 9120                                     JI.AGE.WORK.OL
## 9121                                     JI.AGE.WORK.RU
## 9122                                     JI.AGE.WORK.UR
## 9123                                     JI.AGE.WORK.YG
## 9124                                        JI.AGR.AGES
## 9125                                     JI.AGR.AGES.FE
## 9126                                     JI.AGR.AGES.HE
## 9127                                     JI.AGR.AGES.LE
## 9128                                     JI.AGR.AGES.MA
## 9129                                     JI.AGR.AGES.OL
## 9130                                     JI.AGR.AGES.RU
## 9131                                     JI.AGR.AGES.UR
## 9132                                     JI.AGR.AGES.YG
## 9133                                  JI.AGR.WAGE.FE.ZS
## 9134                                  JI.AGR.WAGE.HE.ZS
## 9135                                  JI.AGR.WAGE.LE.ZS
## 9136                                  JI.AGR.WAGE.MA.ZS
## 9137                                  JI.AGR.WAGE.MD.CN
## 9138                               JI.AGR.WAGE.MD.FE.CN
## 9139                               JI.AGR.WAGE.MD.HE.CN
## 9140                               JI.AGR.WAGE.MD.LE.CN
## 9141                               JI.AGR.WAGE.MD.MA.CN
## 9142                               JI.AGR.WAGE.MD.OL.CN
## 9143                               JI.AGR.WAGE.MD.RU.CN
## 9144                               JI.AGR.WAGE.MD.UR.CN
## 9145                               JI.AGR.WAGE.MD.YG.CN
## 9146                                  JI.AGR.WAGE.OL.ZS
## 9147                                  JI.AGR.WAGE.RU.ZS
## 9148                                  JI.AGR.WAGE.UR.ZS
## 9149                                  JI.AGR.WAGE.YG.ZS
## 9150                                     JI.AGR.WAGE.ZS
## 9151                                        JI.EDU.17UP
## 9152                                     JI.EDU.17UP.FE
## 9153                                     JI.EDU.17UP.HE
## 9154                                     JI.EDU.17UP.LE
## 9155                                     JI.EDU.17UP.MA
## 9156                                     JI.EDU.17UP.OL
## 9157                                     JI.EDU.17UP.RU
## 9158                                     JI.EDU.17UP.UR
## 9159                                     JI.EDU.17UP.YG
## 9160                                  JI.EMP.1524.FE.ZS
## 9161                                  JI.EMP.1524.HE.ZS
## 9162                                  JI.EMP.1524.LE.ZS
## 9163                                  JI.EMP.1524.MA.ZS
## 9164                                  JI.EMP.1524.RU.ZS
## 9165                                  JI.EMP.1524.UR.ZS
## 9166                                     JI.EMP.1524.ZS
## 9167                                  JI.EMP.1564.FE.ZS
## 9168                                  JI.EMP.1564.HE.ZS
## 9169                                  JI.EMP.1564.LE.ZS
## 9170                                  JI.EMP.1564.MA.ZS
## 9171                                  JI.EMP.1564.OL.ZS
## 9172                                  JI.EMP.1564.RU.ZS
## 9173                                  JI.EMP.1564.UR.ZS
## 9174                                  JI.EMP.1564.YG.ZS
## 9175                                     JI.EMP.1564.ZS
## 9176                                  JI.EMP.AGRI.FE.ZS
## 9177                                  JI.EMP.AGRI.HE.ZS
## 9178                                  JI.EMP.AGRI.LE.ZS
## 9179                                  JI.EMP.AGRI.MA.ZS
## 9180                                  JI.EMP.AGRI.OL.ZS
## 9181                                  JI.EMP.AGRI.RU.ZS
## 9182                                  JI.EMP.AGRI.UR.ZS
## 9183                                  JI.EMP.AGRI.YG.ZS
## 9184                                     JI.EMP.AGRI.ZS
## 9185                                  JI.EMP.ARFC.FE.ZS
## 9186                                  JI.EMP.ARFC.HE.ZS
## 9187                                  JI.EMP.ARFC.LE.ZS
## 9188                                  JI.EMP.ARFC.MA.ZS
## 9189                                  JI.EMP.ARFC.OL.ZS
## 9190                                  JI.EMP.ARFC.RU.ZS
## 9191                                  JI.EMP.ARFC.UR.ZS
## 9192                                  JI.EMP.ARFC.YG.ZS
## 9193                                     JI.EMP.ARFC.ZS
## 9194                                  JI.EMP.CLRK.FE.ZS
## 9195                                  JI.EMP.CLRK.HE.ZS
## 9196                                  JI.EMP.CLRK.LE.ZS
## 9197                                  JI.EMP.CLRK.MA.ZS
## 9198                                  JI.EMP.CLRK.OL.ZS
## 9199                                  JI.EMP.CLRK.RU.ZS
## 9200                                  JI.EMP.CLRK.UR.ZS
## 9201                                  JI.EMP.CLRK.YG.ZS
## 9202                                     JI.EMP.CLRK.ZS
## 9203                                  JI.EMP.CNST.FE.ZS
## 9204                                  JI.EMP.CNST.HE.ZS
## 9205                                  JI.EMP.CNST.LE.ZS
## 9206                                  JI.EMP.CNST.MA.ZS
## 9207                                  JI.EMP.CNST.OL.ZS
## 9208                                  JI.EMP.CNST.RU.ZS
## 9209                                  JI.EMP.CNST.UR.ZS
## 9210                                  JI.EMP.CNST.YG.ZS
## 9211                                     JI.EMP.CNST.ZS
## 9212                                  JI.EMP.COME.FE.ZS
## 9213                                  JI.EMP.COME.HE.ZS
## 9214                                  JI.EMP.COME.LE.ZS
## 9215                                  JI.EMP.COME.MA.ZS
## 9216                                  JI.EMP.COME.OL.ZS
## 9217                                  JI.EMP.COME.RU.ZS
## 9218                                  JI.EMP.COME.UR.ZS
## 9219                                  JI.EMP.COME.YG.ZS
## 9220                                     JI.EMP.COME.ZS
## 9221                                  JI.EMP.CONT.FE.ZS
## 9222                                  JI.EMP.CONT.HE.ZS
## 9223                                  JI.EMP.CONT.LE.ZS
## 9224                                  JI.EMP.CONT.MA.ZS
## 9225                                  JI.EMP.CONT.OL.ZS
## 9226                                  JI.EMP.CONT.RU.ZS
## 9227                                  JI.EMP.CONT.UR.ZS
## 9228                                  JI.EMP.CONT.YG.ZS
## 9229                                     JI.EMP.CONT.ZS
## 9230                                  JI.EMP.CRFT.FE.ZS
## 9231                                  JI.EMP.CRFT.HE.ZS
## 9232                                  JI.EMP.CRFT.LE.ZS
## 9233                                  JI.EMP.CRFT.MA.ZS
## 9234                                  JI.EMP.CRFT.OL.ZS
## 9235                                  JI.EMP.CRFT.RU.ZS
## 9236                                  JI.EMP.CRFT.UR.ZS
## 9237                                  JI.EMP.CRFT.YG.ZS
## 9238                                     JI.EMP.CRFT.ZS
## 9239                                  JI.EMP.ELEC.FE.ZS
## 9240                                  JI.EMP.ELEC.HE.ZS
## 9241                                  JI.EMP.ELEC.LE.ZS
## 9242                                  JI.EMP.ELEC.MA.ZS
## 9243                                  JI.EMP.ELEC.OL.ZS
## 9244                                  JI.EMP.ELEC.RU.ZS
## 9245                                  JI.EMP.ELEC.UR.ZS
## 9246                                  JI.EMP.ELEC.YG.ZS
## 9247                                     JI.EMP.ELEC.ZS
## 9248                                  JI.EMP.ELEM.FE.ZS
## 9249                                  JI.EMP.ELEM.HE.ZS
## 9250                                  JI.EMP.ELEM.LE.ZS
## 9251                                  JI.EMP.ELEM.MA.ZS
## 9252                                  JI.EMP.ELEM.OL.ZS
## 9253                                  JI.EMP.ELEM.RU.ZS
## 9254                                  JI.EMP.ELEM.UR.ZS
## 9255                                  JI.EMP.ELEM.YG.ZS
## 9256                                     JI.EMP.ELEM.ZS
## 9257                                  JI.EMP.FABU.FE.ZS
## 9258                                  JI.EMP.FABU.HE.ZS
## 9259                                  JI.EMP.FABU.LE.ZS
## 9260                                  JI.EMP.FABU.MA.ZS
## 9261                                  JI.EMP.FABU.OL.ZS
## 9262                                  JI.EMP.FABU.RU.ZS
## 9263                                  JI.EMP.FABU.UR.ZS
## 9264                                  JI.EMP.FABU.YG.ZS
## 9265                                     JI.EMP.FABU.ZS
## 9266                                  JI.EMP.HINS.FE.ZS
## 9267                                  JI.EMP.HINS.HE.ZS
## 9268                                  JI.EMP.HINS.LE.ZS
## 9269                                  JI.EMP.HINS.MA.ZS
## 9270                                  JI.EMP.HINS.OL.ZS
## 9271                                  JI.EMP.HINS.RU.ZS
## 9272                                  JI.EMP.HINS.UR.ZS
## 9273                                  JI.EMP.HINS.YG.ZS
## 9274                                     JI.EMP.HINS.ZS
## 9275                                  JI.EMP.IFRM.FE.ZS
## 9276                                  JI.EMP.IFRM.HE.ZS
## 9277                                  JI.EMP.IFRM.LE.ZS
## 9278                                  JI.EMP.IFRM.MA.ZS
## 9279                                  JI.EMP.IFRM.OL.ZS
## 9280                                  JI.EMP.IFRM.RU.ZS
## 9281                                  JI.EMP.IFRM.UR.ZS
## 9282                                  JI.EMP.IFRM.YG.ZS
## 9283                                     JI.EMP.IFRM.ZS
## 9284                                  JI.EMP.INDU.FE.ZS
## 9285                                  JI.EMP.INDU.HE.ZS
## 9286                                  JI.EMP.INDU.LE.ZS
## 9287                                  JI.EMP.INDU.MA.ZS
## 9288                                  JI.EMP.INDU.OL.ZS
## 9289                                  JI.EMP.INDU.RU.ZS
## 9290                                  JI.EMP.INDU.UR.ZS
## 9291                                  JI.EMP.INDU.YG.ZS
## 9292                                     JI.EMP.INDU.ZS
## 9293                                  JI.EMP.MACH.FE.ZS
## 9294                                  JI.EMP.MACH.HE.ZS
## 9295                                  JI.EMP.MACH.LE.ZS
## 9296                                  JI.EMP.MACH.MA.ZS
## 9297                                  JI.EMP.MACH.OL.ZS
## 9298                                  JI.EMP.MACH.RU.ZS
## 9299                                  JI.EMP.MACH.UR.ZS
## 9300                                  JI.EMP.MACH.YG.ZS
## 9301                                     JI.EMP.MACH.ZS
## 9302                                  JI.EMP.MANF.FE.ZS
## 9303                                  JI.EMP.MANF.HE.ZS
## 9304                                  JI.EMP.MANF.LE.ZS
## 9305                                  JI.EMP.MANF.MA.ZS
## 9306                                  JI.EMP.MANF.OL.ZS
## 9307                                  JI.EMP.MANF.RU.ZS
## 9308                                  JI.EMP.MANF.UR.ZS
## 9309                                  JI.EMP.MANF.YG.ZS
## 9310                                     JI.EMP.MANF.ZS
## 9311                                  JI.EMP.MINQ.FE.ZS
## 9312                                  JI.EMP.MINQ.HE.ZS
## 9313                                  JI.EMP.MINQ.LE.ZS
## 9314                                  JI.EMP.MINQ.MA.ZS
## 9315                                  JI.EMP.MINQ.OL.ZS
## 9316                                  JI.EMP.MINQ.RU.ZS
## 9317                                  JI.EMP.MINQ.UR.ZS
## 9318                                  JI.EMP.MINQ.YG.ZS
## 9319                                     JI.EMP.MINQ.ZS
## 9320                                  JI.EMP.MPYR.FE.ZS
## 9321                                  JI.EMP.MPYR.HE.ZS
## 9322                                  JI.EMP.MPYR.LE.ZS
## 9323                                  JI.EMP.MPYR.MA.ZS
## 9324                               JI.EMP.MPYR.NA.FE.ZS
## 9325                               JI.EMP.MPYR.NA.HE.ZS
## 9326                               JI.EMP.MPYR.NA.LE.ZS
## 9327                               JI.EMP.MPYR.NA.MA.ZS
## 9328                               JI.EMP.MPYR.NA.OL.ZS
## 9329                               JI.EMP.MPYR.NA.RU.ZS
## 9330                               JI.EMP.MPYR.NA.UR.ZS
## 9331                               JI.EMP.MPYR.NA.YG.ZS
## 9332                                  JI.EMP.MPYR.NA.ZS
## 9333                                  JI.EMP.MPYR.OL.ZS
## 9334                                  JI.EMP.MPYR.RU.ZS
## 9335                                  JI.EMP.MPYR.UR.ZS
## 9336                                  JI.EMP.MPYR.YG.ZS
## 9337                                     JI.EMP.MPYR.ZS
## 9338                               JI.EMP.NAGR.FE.HE.ZS
## 9339                               JI.EMP.NAGR.FE.LE.ZS
## 9340                               JI.EMP.NAGR.FE.OL.ZS
## 9341                               JI.EMP.NAGR.FE.RU.ZS
## 9342                               JI.EMP.NAGR.FE.UR.ZS
## 9343                               JI.EMP.NAGR.FE.YG.ZS
## 9344                                  JI.EMP.NAGR.FE.ZS
## 9345                               JI.EMP.NAGR.YG.FE.ZS
## 9346                               JI.EMP.NAGR.YG.HE.ZS
## 9347                               JI.EMP.NAGR.YG.LE.ZS
## 9348                               JI.EMP.NAGR.YG.MA.ZS
## 9349                               JI.EMP.NAGR.YG.RU.ZS
## 9350                               JI.EMP.NAGR.YG.UR.ZS
## 9351                                  JI.EMP.NAGR.YG.ZS
## 9352                                  JI.EMP.OSRV.FE.ZS
## 9353                                  JI.EMP.OSRV.HE.ZS
## 9354                                  JI.EMP.OSRV.LE.ZS
## 9355                                  JI.EMP.OSRV.MA.ZS
## 9356                                  JI.EMP.OSRV.OL.ZS
## 9357                                  JI.EMP.OSRV.RU.ZS
## 9358                                  JI.EMP.OSRV.UR.ZS
## 9359                                  JI.EMP.OSRV.YG.ZS
## 9360                                     JI.EMP.OSRV.ZS
## 9361                                  JI.EMP.PADM.FE.ZS
## 9362                                  JI.EMP.PADM.HE.ZS
## 9363                                  JI.EMP.PADM.LE.ZS
## 9364                                  JI.EMP.PADM.MA.ZS
## 9365                                  JI.EMP.PADM.OL.ZS
## 9366                                  JI.EMP.PADM.RU.ZS
## 9367                                  JI.EMP.PADM.UR.ZS
## 9368                                  JI.EMP.PADM.YG.ZS
## 9369                                     JI.EMP.PADM.ZS
## 9370                                  JI.EMP.PROF.FE.ZS
## 9371                                  JI.EMP.PROF.HE.ZS
## 9372                                  JI.EMP.PROF.LE.ZS
## 9373                                  JI.EMP.PROF.MA.ZS
## 9374                                  JI.EMP.PROF.OL.ZS
## 9375                                  JI.EMP.PROF.RU.ZS
## 9376                                  JI.EMP.PROF.UR.ZS
## 9377                                  JI.EMP.PROF.YG.ZS
## 9378                                     JI.EMP.PROF.ZS
## 9379                                  JI.EMP.PUBS.FE.ZS
## 9380                                  JI.EMP.PUBS.HE.ZS
## 9381                                  JI.EMP.PUBS.LE.ZS
## 9382                                  JI.EMP.PUBS.MA.ZS
## 9383                                  JI.EMP.PUBS.OL.ZS
## 9384                                  JI.EMP.PUBS.RU.ZS
## 9385                                  JI.EMP.PUBS.UR.ZS
## 9386                                  JI.EMP.PUBS.YG.ZS
## 9387                                     JI.EMP.PUBS.ZS
## 9388                                  JI.EMP.SELF.FE.ZS
## 9389                                  JI.EMP.SELF.HE.ZS
## 9390                                  JI.EMP.SELF.LE.ZS
## 9391                                  JI.EMP.SELF.MA.ZS
## 9392                               JI.EMP.SELF.NA.FE.ZS
## 9393                               JI.EMP.SELF.NA.HE.ZS
## 9394                               JI.EMP.SELF.NA.LE.ZS
## 9395                               JI.EMP.SELF.NA.MA.ZS
## 9396                               JI.EMP.SELF.NA.OL.ZS
## 9397                               JI.EMP.SELF.NA.RU.ZS
## 9398                               JI.EMP.SELF.NA.UR.ZS
## 9399                               JI.EMP.SELF.NA.YG.ZS
## 9400                                  JI.EMP.SELF.NA.ZS
## 9401                                  JI.EMP.SELF.OL.ZS
## 9402                                  JI.EMP.SELF.RU.ZS
## 9403                                  JI.EMP.SELF.UR.ZS
## 9404                                  JI.EMP.SELF.YG.ZS
## 9405                                     JI.EMP.SELF.ZS
## 9406                                  JI.EMP.SEOF.FE.ZS
## 9407                                  JI.EMP.SEOF.HE.ZS
## 9408                                  JI.EMP.SEOF.LE.ZS
## 9409                                  JI.EMP.SEOF.MA.ZS
## 9410                                  JI.EMP.SEOF.OL.ZS
## 9411                                  JI.EMP.SEOF.RU.ZS
## 9412                                  JI.EMP.SEOF.UR.ZS
## 9413                                  JI.EMP.SEOF.YG.ZS
## 9414                                     JI.EMP.SEOF.ZS
## 9415                                  JI.EMP.SERV.FE.ZS
## 9416                                  JI.EMP.SERV.HE.ZS
## 9417                                  JI.EMP.SERV.LE.ZS
## 9418                                  JI.EMP.SERV.MA.ZS
## 9419                                  JI.EMP.SERV.OL.ZS
## 9420                                  JI.EMP.SERV.RU.ZS
## 9421                                  JI.EMP.SERV.UR.ZS
## 9422                                  JI.EMP.SERV.YG.ZS
## 9423                                     JI.EMP.SERV.ZS
## 9424                                  JI.EMP.SKAG.FE.ZS
## 9425                                  JI.EMP.SKAG.HE.ZS
## 9426                                  JI.EMP.SKAG.LE.ZS
## 9427                                  JI.EMP.SKAG.MA.ZS
## 9428                                  JI.EMP.SKAG.OL.ZS
## 9429                                  JI.EMP.SKAG.RU.ZS
## 9430                                  JI.EMP.SKAG.UR.ZS
## 9431                                  JI.EMP.SKAG.YG.ZS
## 9432                                     JI.EMP.SKAG.ZS
## 9433                                  JI.EMP.SSEC.FE.ZS
## 9434                                  JI.EMP.SSEC.HE.ZS
## 9435                                  JI.EMP.SSEC.LE.ZS
## 9436                                  JI.EMP.SSEC.MA.ZS
## 9437                                  JI.EMP.SSEC.OL.ZS
## 9438                                  JI.EMP.SSEC.RU.ZS
## 9439                                  JI.EMP.SSEC.UR.ZS
## 9440                                  JI.EMP.SSEC.YG.ZS
## 9441                                     JI.EMP.SSEC.ZS
## 9442                                  JI.EMP.SVMK.FE.ZS
## 9443                                  JI.EMP.SVMK.HE.ZS
## 9444                                  JI.EMP.SVMK.LE.ZS
## 9445                                  JI.EMP.SVMK.MA.ZS
## 9446                                  JI.EMP.SVMK.OL.ZS
## 9447                                  JI.EMP.SVMK.RU.ZS
## 9448                                  JI.EMP.SVMK.UR.ZS
## 9449                                  JI.EMP.SVMK.YG.ZS
## 9450                                     JI.EMP.SVMK.ZS
## 9451                                  JI.EMP.TECH.FE.ZS
## 9452                                  JI.EMP.TECH.HE.ZS
## 9453                                  JI.EMP.TECH.LE.ZS
## 9454                                  JI.EMP.TECH.MA.ZS
## 9455                                  JI.EMP.TECH.OL.ZS
## 9456                                  JI.EMP.TECH.RU.ZS
## 9457                                  JI.EMP.TECH.UR.ZS
## 9458                                  JI.EMP.TECH.YG.ZS
## 9459                                     JI.EMP.TECH.ZS
## 9460                               JI.EMP.TOTL.SP.FE.ZS
## 9461                               JI.EMP.TOTL.SP.HE.ZS
## 9462                               JI.EMP.TOTL.SP.LE.ZS
## 9463                               JI.EMP.TOTL.SP.MA.ZS
## 9464                               JI.EMP.TOTL.SP.OL.ZS
## 9465                               JI.EMP.TOTL.SP.RU.ZS
## 9466                               JI.EMP.TOTL.SP.UR.ZS
## 9467                               JI.EMP.TOTL.SP.YG.ZS
## 9468                                  JI.EMP.TOTL.SP.ZS
## 9469                                  JI.EMP.TRCM.FE.ZS
## 9470                                  JI.EMP.TRCM.HE.ZS
## 9471                                  JI.EMP.TRCM.LE.ZS
## 9472                                  JI.EMP.TRCM.MA.ZS
## 9473                                  JI.EMP.TRCM.OL.ZS
## 9474                                  JI.EMP.TRCM.RU.ZS
## 9475                                  JI.EMP.TRCM.UR.ZS
## 9476                                  JI.EMP.TRCM.YG.ZS
## 9477                                     JI.EMP.TRCM.ZS
## 9478                                  JI.EMP.UNPD.FE.ZS
## 9479                                  JI.EMP.UNPD.HE.ZS
## 9480                                  JI.EMP.UNPD.LE.ZS
## 9481                                  JI.EMP.UNPD.MA.ZS
## 9482                               JI.EMP.UNPD.NA.FE.ZS
## 9483                               JI.EMP.UNPD.NA.HE.ZS
## 9484                               JI.EMP.UNPD.NA.LE.ZS
## 9485                               JI.EMP.UNPD.NA.MA.ZS
## 9486                               JI.EMP.UNPD.NA.OL.ZS
## 9487                               JI.EMP.UNPD.NA.RU.ZS
## 9488                               JI.EMP.UNPD.NA.UR.ZS
## 9489                               JI.EMP.UNPD.NA.YG.ZS
## 9490                                  JI.EMP.UNPD.NA.ZS
## 9491                                  JI.EMP.UNPD.OL.ZS
## 9492                                  JI.EMP.UNPD.RU.ZS
## 9493                                  JI.EMP.UNPD.UR.ZS
## 9494                                  JI.EMP.UNPD.YG.ZS
## 9495                                     JI.EMP.UNPD.ZS
## 9496                                  JI.EMP.UPSE.FE.ZS
## 9497                                  JI.EMP.UPSE.HE.ZS
## 9498                                  JI.EMP.UPSE.LE.ZS
## 9499                                  JI.EMP.UPSE.MA.ZS
## 9500                                  JI.EMP.UPSE.OL.ZS
## 9501                                  JI.EMP.UPSE.RU.ZS
## 9502                                  JI.EMP.UPSE.UR.ZS
## 9503                                  JI.EMP.UPSE.YG.ZS
## 9504                                     JI.EMP.UPSE.ZS
## 9505                          JI.EMP.WAGE.1524.NA.FE.ZS
## 9506                          JI.EMP.WAGE.1524.NA.HE.ZS
## 9507                          JI.EMP.WAGE.1524.NA.LE.ZS
## 9508                          JI.EMP.WAGE.1524.NA.MA.ZS
## 9509                          JI.EMP.WAGE.1524.NA.RU.ZS
## 9510                          JI.EMP.WAGE.1524.NA.UR.ZS
## 9511                             JI.EMP.WAGE.1524.NA.ZS
## 9512                                  JI.EMP.WAGE.FE.ZS
## 9513                                  JI.EMP.WAGE.HE.ZS
## 9514                                  JI.EMP.WAGE.LE.ZS
## 9515                                  JI.EMP.WAGE.MA.ZS
## 9516                               JI.EMP.WAGE.NA.FE.ZS
## 9517                               JI.EMP.WAGE.NA.HE.ZS
## 9518                               JI.EMP.WAGE.NA.LE.ZS
## 9519                               JI.EMP.WAGE.NA.MA.ZS
## 9520                               JI.EMP.WAGE.NA.OL.ZS
## 9521                               JI.EMP.WAGE.NA.RU.ZS
## 9522                               JI.EMP.WAGE.NA.UR.ZS
## 9523                               JI.EMP.WAGE.NA.YG.ZS
## 9524                                  JI.EMP.WAGE.NA.ZS
## 9525                                  JI.EMP.WAGE.OL.ZS
## 9526                                  JI.EMP.WAGE.RU.ZS
## 9527                                  JI.EMP.WAGE.UR.ZS
## 9528                                  JI.EMP.WAGE.YG.ZS
## 9529                                     JI.EMP.WAGE.ZS
## 9530                                  JI.ENR.0616.FE.ZS
## 9531                                  JI.ENR.0616.HE.ZS
## 9532                                  JI.ENR.0616.LE.ZS
## 9533                                  JI.ENR.0616.MA.ZS
## 9534                                  JI.ENR.0616.RU.ZS
## 9535                                  JI.ENR.0616.UR.ZS
## 9536                                  JI.ENR.0616.YG.ZS
## 9537                                     JI.ENR.0616.ZS
## 9538                                        JI.IND.AGES
## 9539                                     JI.IND.AGES.FE
## 9540                                     JI.IND.AGES.HE
## 9541                                     JI.IND.AGES.LE
## 9542                                     JI.IND.AGES.MA
## 9543                                     JI.IND.AGES.OL
## 9544                                     JI.IND.AGES.RU
## 9545                                     JI.IND.AGES.UR
## 9546                                     JI.IND.AGES.YG
## 9547                                  JI.IND.WAGE.FE.ZS
## 9548                                  JI.IND.WAGE.HE.ZS
## 9549                                  JI.IND.WAGE.LE.ZS
## 9550                                  JI.IND.WAGE.MA.ZS
## 9551                                  JI.IND.WAGE.MD.CN
## 9552                               JI.IND.WAGE.MD.FE.CN
## 9553                               JI.IND.WAGE.MD.HE.CN
## 9554                               JI.IND.WAGE.MD.LE.CN
## 9555                               JI.IND.WAGE.MD.MA.CN
## 9556                               JI.IND.WAGE.MD.OL.CN
## 9557                               JI.IND.WAGE.MD.RU.CN
## 9558                               JI.IND.WAGE.MD.UR.CN
## 9559                               JI.IND.WAGE.MD.YG.CN
## 9560                                  JI.IND.WAGE.OL.ZS
## 9561                                  JI.IND.WAGE.RU.ZS
## 9562                                  JI.IND.WAGE.UR.ZS
## 9563                                  JI.IND.WAGE.YG.ZS
## 9564                                     JI.IND.WAGE.ZS
## 9565                                  JI.JOB.MLTP.FE.ZS
## 9566                                  JI.JOB.MLTP.HE.ZS
## 9567                                  JI.JOB.MLTP.LE.ZS
## 9568                                  JI.JOB.MLTP.MA.ZS
## 9569                                  JI.JOB.MLTP.OL.ZS
## 9570                                  JI.JOB.MLTP.RU.ZS
## 9571                                  JI.JOB.MLTP.UR.ZS
## 9572                                  JI.JOB.MLTP.YG.ZS
## 9573                                     JI.JOB.MLTP.ZS
## 9574                                  JI.POP.0014.FE.ZS
## 9575                                  JI.POP.0014.HE.ZS
## 9576                                  JI.POP.0014.LE.ZS
## 9577                                  JI.POP.0014.MA.ZS
## 9578                                  JI.POP.0014.RU.ZS
## 9579                                  JI.POP.0014.UR.ZS
## 9580                                     JI.POP.0014.ZS
## 9581                                  JI.POP.1524.FE.ZS
## 9582                                  JI.POP.1524.HE.ZS
## 9583                                  JI.POP.1524.LE.ZS
## 9584                                  JI.POP.1524.MA.ZS
## 9585                                  JI.POP.1524.RU.ZS
## 9586                                  JI.POP.1524.UR.ZS
## 9587                                     JI.POP.1524.ZS
## 9588                                  JI.POP.1564.FE.ZS
## 9589                                  JI.POP.1564.HE.ZS
## 9590                                  JI.POP.1564.LE.ZS
## 9591                                  JI.POP.1564.MA.ZS
## 9592                                  JI.POP.1564.RU.ZS
## 9593                                  JI.POP.1564.UR.ZS
## 9594                                     JI.POP.1564.ZS
## 9595                                  JI.POP.2564.FE.ZS
## 9596                                  JI.POP.2564.HE.ZS
## 9597                                  JI.POP.2564.LE.ZS
## 9598                                  JI.POP.2564.MA.ZS
## 9599                                  JI.POP.2564.RU.ZS
## 9600                                  JI.POP.2564.UR.ZS
## 9601                                     JI.POP.2564.ZS
## 9602                                  JI.POP.65UP.FE.ZS
## 9603                                  JI.POP.65UP.HE.ZS
## 9604                                  JI.POP.65UP.LE.ZS
## 9605                                  JI.POP.65UP.MA.ZS
## 9606                                  JI.POP.65UP.RU.ZS
## 9607                                  JI.POP.65UP.UR.ZS
## 9608                                     JI.POP.65UP.ZS
## 9609                                        JI.POP.DPND
## 9610                                     JI.POP.DPND.OL
## 9611                                     JI.POP.DPND.YG
## 9612                                  JI.POP.NEDU.FE.ZS
## 9613                                  JI.POP.NEDU.LE.ZS
## 9614                                  JI.POP.NEDU.MA.ZS
## 9615                                  JI.POP.NEDU.OL.ZS
## 9616                                  JI.POP.NEDU.RU.ZS
## 9617                                  JI.POP.NEDU.UR.ZS
## 9618                                  JI.POP.NEDU.YG.ZS
## 9619                                     JI.POP.NEDU.ZS
## 9620                                  JI.POP.PRIM.FE.ZS
## 9621                                  JI.POP.PRIM.LE.ZS
## 9622                                  JI.POP.PRIM.MA.ZS
## 9623                                  JI.POP.PRIM.OL.ZS
## 9624                                  JI.POP.PRIM.RU.ZS
## 9625                                  JI.POP.PRIM.UR.ZS
## 9626                                  JI.POP.PRIM.YG.ZS
## 9627                                     JI.POP.PRIM.ZS
## 9628                                  JI.POP.SECO.FE.ZS
## 9629                                  JI.POP.SECO.HE.ZS
## 9630                                  JI.POP.SECO.MA.ZS
## 9631                                  JI.POP.SECO.OL.ZS
## 9632                               JI.POP.SECO.PO.FE.ZS
## 9633                               JI.POP.SECO.PO.HE.ZS
## 9634                               JI.POP.SECO.PO.MA.ZS
## 9635                               JI.POP.SECO.PO.OL.ZS
## 9636                               JI.POP.SECO.PO.RU.ZS
## 9637                               JI.POP.SECO.PO.UR.ZS
## 9638                               JI.POP.SECO.PO.YG.ZS
## 9639                                  JI.POP.SECO.PO.ZS
## 9640                                  JI.POP.SECO.RU.ZS
## 9641                                  JI.POP.SECO.UR.ZS
## 9642                                  JI.POP.SECO.YG.ZS
## 9643                                     JI.POP.SECO.ZS
## 9644                                        JI.POP.TOTL
## 9645                                     JI.POP.TOTL.FE
## 9646                                     JI.POP.TOTL.HE
## 9647                                     JI.POP.TOTL.LE
## 9648                                     JI.POP.TOTL.MA
## 9649                                     JI.POP.TOTL.OL
## 9650                                     JI.POP.TOTL.RU
## 9651                                     JI.POP.TOTL.UR
## 9652                                     JI.POP.TOTL.YG
## 9653                                  JI.POP.URBN.FE.ZS
## 9654                                  JI.POP.URBN.HE.ZS
## 9655                                  JI.POP.URBN.LE.ZS
## 9656                                  JI.POP.URBN.MA.ZS
## 9657                                  JI.POP.URBN.OL.ZS
## 9658                                  JI.POP.URBN.YG.ZS
## 9659                                     JI.POP.URBN.ZS
## 9660                                        JI.SRV.AGES
## 9661                                     JI.SRV.AGES.FE
## 9662                                     JI.SRV.AGES.HE
## 9663                                     JI.SRV.AGES.LE
## 9664                                     JI.SRV.AGES.MA
## 9665                                     JI.SRV.AGES.OL
## 9666                                     JI.SRV.AGES.RU
## 9667                                     JI.SRV.AGES.UR
## 9668                                     JI.SRV.AGES.YG
## 9669                                  JI.SRV.WAGE.FE.ZS
## 9670                                  JI.SRV.WAGE.HE.ZS
## 9671                                  JI.SRV.WAGE.LE.ZS
## 9672                                  JI.SRV.WAGE.MA.ZS
## 9673                                  JI.SRV.WAGE.MD.CN
## 9674                               JI.SRV.WAGE.MD.FE.CN
## 9675                               JI.SRV.WAGE.MD.HE.CN
## 9676                               JI.SRV.WAGE.MD.LE.CN
## 9677                               JI.SRV.WAGE.MD.MA.CN
## 9678                               JI.SRV.WAGE.MD.OL.CN
## 9679                               JI.SRV.WAGE.MD.RU.CN
## 9680                               JI.SRV.WAGE.MD.UR.CN
## 9681                               JI.SRV.WAGE.MD.YG.CN
## 9682                                  JI.SRV.WAGE.OL.ZS
## 9683                                  JI.SRV.WAGE.RU.ZS
## 9684                                  JI.SRV.WAGE.UR.ZS
## 9685                                  JI.SRV.WAGE.YG.ZS
## 9686                                     JI.SRV.WAGE.ZS
## 9687                               JI.TLF.1564.WK.FE.TM
## 9688                               JI.TLF.1564.WK.HE.TM
## 9689                               JI.TLF.1564.WK.LE.TM
## 9690                               JI.TLF.1564.WK.MA.TM
## 9691                               JI.TLF.1564.WK.OL.TM
## 9692                               JI.TLF.1564.WK.RU.TM
## 9693                                  JI.TLF.1564.WK.TM
## 9694                               JI.TLF.1564.WK.UR.TM
## 9695                               JI.TLF.1564.WK.YG.TM
## 9696                               JI.TLF.35BL.TM.FE.ZS
## 9697                               JI.TLF.35BL.TM.HE.ZS
## 9698                               JI.TLF.35BL.TM.LE.ZS
## 9699                               JI.TLF.35BL.TM.MA.ZS
## 9700                               JI.TLF.35BL.TM.OL.ZS
## 9701                               JI.TLF.35BL.TM.RU.ZS
## 9702                               JI.TLF.35BL.TM.UR.ZS
## 9703                               JI.TLF.35BL.TM.YG.ZS
## 9704                                  JI.TLF.35BL.TM.ZS
## 9705                               JI.TLF.48UP.TM.FE.ZS
## 9706                               JI.TLF.48UP.TM.HE.ZS
## 9707                               JI.TLF.48UP.TM.LE.ZS
## 9708                               JI.TLF.48UP.TM.MA.ZS
## 9709                               JI.TLF.48UP.TM.OL.ZS
## 9710                               JI.TLF.48UP.TM.RU.ZS
## 9711                               JI.TLF.48UP.TM.UR.ZS
## 9712                               JI.TLF.48UP.TM.YG.ZS
## 9713                                  JI.TLF.48UP.TM.ZS
## 9714                                  JI.TLF.ACTI.FE.ZS
## 9715                                  JI.TLF.ACTI.HE.ZS
## 9716                                  JI.TLF.ACTI.LE.ZS
## 9717                                  JI.TLF.ACTI.MA.ZS
## 9718                                  JI.TLF.ACTI.OL.ZS
## 9719                                  JI.TLF.ACTI.RU.ZS
## 9720                                  JI.TLF.ACTI.UR.ZS
## 9721                                  JI.TLF.ACTI.YG.ZS
## 9722                                     JI.TLF.ACTI.ZS
## 9723                                        JI.TLF.TOTL
## 9724                                     JI.TLF.TOTL.FE
## 9725                                     JI.TLF.TOTL.HE
## 9726                                     JI.TLF.TOTL.LE
## 9727                                     JI.TLF.TOTL.MA
## 9728                                     JI.TLF.TOTL.OL
## 9729                                     JI.TLF.TOTL.RU
## 9730                                     JI.TLF.TOTL.UR
## 9731                                     JI.TLF.TOTL.YG
## 9732                                  JI.UEM.1524.FE.ZS
## 9733                                  JI.UEM.1524.HE.ZS
## 9734                                  JI.UEM.1524.LE.ZS
## 9735                                  JI.UEM.1524.MA.ZS
## 9736                                  JI.UEM.1524.RU.ZS
## 9737                                  JI.UEM.1524.UR.ZS
## 9738                                     JI.UEM.1524.ZS
## 9739                                  JI.UEM.1564.FE.ZS
## 9740                                  JI.UEM.1564.HE.ZS
## 9741                                  JI.UEM.1564.LE.ZS
## 9742                                  JI.UEM.1564.MA.ZS
## 9743                                  JI.UEM.1564.OL.ZS
## 9744                                  JI.UEM.1564.RU.ZS
## 9745                                  JI.UEM.1564.UR.ZS
## 9746                                  JI.UEM.1564.YG.ZS
## 9747                                     JI.UEM.1564.ZS
## 9748                                  JI.UEM.NEET.FE.ZS
## 9749                                  JI.UEM.NEET.HE.ZS
## 9750                                  JI.UEM.NEET.LE.ZS
## 9751                                  JI.UEM.NEET.MA.ZS
## 9752                                  JI.UEM.NEET.RU.ZS
## 9753                                  JI.UEM.NEET.UR.ZS
## 9754                                     JI.UEM.NEET.ZS
## 9755                                        JI.WAG.GNDR
## 9756                                     JI.WAG.GNDR.HE
## 9757                                     JI.WAG.GNDR.LE
## 9758                                     JI.WAG.GNDR.OL
## 9759                                     JI.WAG.GNDR.RU
## 9760                                     JI.WAG.GNDR.UR
## 9761                                     JI.WAG.GNDR.YG
## 9762                                  JI.WAG.HOUR.MD.10
## 9763                                  JI.WAG.HOUR.MD.CN
## 9764                                  JI.WAG.HOUR.MD.DF
## 9765                               JI.WAG.HOUR.MD.FE.10
## 9766                               JI.WAG.HOUR.MD.FE.CN
## 9767                               JI.WAG.HOUR.MD.FE.DF
## 9768                               JI.WAG.HOUR.MD.HE.10
## 9769                               JI.WAG.HOUR.MD.HE.CN
## 9770                               JI.WAG.HOUR.MD.HE.DF
## 9771                               JI.WAG.HOUR.MD.LE.10
## 9772                               JI.WAG.HOUR.MD.LE.CN
## 9773                               JI.WAG.HOUR.MD.LE.DF
## 9774                               JI.WAG.HOUR.MD.MA.10
## 9775                               JI.WAG.HOUR.MD.MA.CN
## 9776                               JI.WAG.HOUR.MD.MA.DF
## 9777                               JI.WAG.HOUR.MD.OL.10
## 9778                               JI.WAG.HOUR.MD.OL.CN
## 9779                               JI.WAG.HOUR.MD.OL.DF
## 9780                               JI.WAG.HOUR.MD.RU.10
## 9781                               JI.WAG.HOUR.MD.RU.CN
## 9782                               JI.WAG.HOUR.MD.RU.DF
## 9783                               JI.WAG.HOUR.MD.UR.10
## 9784                               JI.WAG.HOUR.MD.UR.CN
## 9785                               JI.WAG.HOUR.MD.UR.DF
## 9786                               JI.WAG.HOUR.MD.YG.10
## 9787                               JI.WAG.HOUR.MD.YG.CN
## 9788                               JI.WAG.HOUR.MD.YG.DF
## 9789                                  JI.WAG.MONT.MD.10
## 9790                                  JI.WAG.MONT.MD.CN
## 9791                                  JI.WAG.MONT.MD.DF
## 9792                               JI.WAG.MONT.MD.FE.10
## 9793                               JI.WAG.MONT.MD.FE.CN
## 9794                               JI.WAG.MONT.MD.FE.DF
## 9795                               JI.WAG.MONT.MD.HE.10
## 9796                               JI.WAG.MONT.MD.HE.CN
## 9797                               JI.WAG.MONT.MD.HE.DF
## 9798                               JI.WAG.MONT.MD.LE.10
## 9799                               JI.WAG.MONT.MD.LE.CN
## 9800                               JI.WAG.MONT.MD.LE.DF
## 9801                               JI.WAG.MONT.MD.MA.10
## 9802                               JI.WAG.MONT.MD.MA.CN
## 9803                               JI.WAG.MONT.MD.MA.DF
## 9804                               JI.WAG.MONT.MD.OL.10
## 9805                               JI.WAG.MONT.MD.OL.CN
## 9806                               JI.WAG.MONT.MD.OL.DF
## 9807                               JI.WAG.MONT.MD.RU.10
## 9808                               JI.WAG.MONT.MD.RU.CN
## 9809                               JI.WAG.MONT.MD.RU.DF
## 9810                               JI.WAG.MONT.MD.UR.10
## 9811                               JI.WAG.MONT.MD.UR.CN
## 9812                               JI.WAG.MONT.MD.UR.DF
## 9813                               JI.WAG.MONT.MD.YG.10
## 9814                               JI.WAG.MONT.MD.YG.CN
## 9815                               JI.WAG.MONT.MD.YG.DF
## 9816                                        JI.WAG.PBPV
## 9817                                     JI.WAG.PBPV.FE
## 9818                                     JI.WAG.PBPV.HE
## 9819                                     JI.WAG.PBPV.LE
## 9820                                     JI.WAG.PBPV.MA
## 9821                                     JI.WAG.PBPV.OL
## 9822                                     JI.WAG.PBPV.RU
## 9823                                     JI.WAG.PBPV.UR
## 9824                                     JI.WAG.PBPV.YG
## 9825                                        lm_ub.bi_q1
## 9826                                      lm_ub.cov_pop
## 9827                                      lm_ub.gen_pop
## 9828                                        LND.TOTL.K2
## 9829                              LO.EGRA.CLPM.AFA.2GRD
## 9830                              LO.EGRA.CLPM.AFA.3GRD
## 9831                              LO.EGRA.CLPM.AMH.2GRD
## 9832                              LO.EGRA.CLPM.AMH.3GRD
## 9833                              LO.EGRA.CLPM.BMN.2GRD
## 9834                              LO.EGRA.CLPM.BOM.2GRD
## 9835                              LO.EGRA.CLPM.CHC.2GRD
## 9836                              LO.EGRA.CLPM.CHC.4GRD
## 9837                              LO.EGRA.CLPM.ENG.2GRD
## 9838                              LO.EGRA.CLPM.ENG.3GRD
## 9839                              LO.EGRA.CLPM.ENG.4GRD
## 9840                              LO.EGRA.CLPM.FLF.2GRD
## 9841                              LO.EGRA.CLPM.FRN.3GRD
## 9842                              LO.EGRA.CLPM.HAR.2GRD
## 9843                              LO.EGRA.CLPM.HAR.3GRD
## 9844                              LO.EGRA.CLPM.SID.2GRD
## 9845                              LO.EGRA.CLPM.SID.3GRD
## 9846                              LO.EGRA.CLPM.SNG.2GRD
## 9847                              LO.EGRA.CLPM.SOM.2GRD
## 9848                              LO.EGRA.CLPM.SOM.3GRD
## 9849                              LO.EGRA.CLPM.SPN.2GRD
## 9850                              LO.EGRA.CLPM.SPN.3GRD
## 9851                              LO.EGRA.CLPM.SPN.4GRD
## 9852                              LO.EGRA.CLPM.TIG.2GRD
## 9853                              LO.EGRA.CLPM.TIG.3GRD
## 9854                             LO.EGRA.CLSPM.AKU.2GRD
## 9855                             LO.EGRA.CLSPM.ARB.2GRD
## 9856                             LO.EGRA.CLSPM.ARB.3GRD
## 9857                             LO.EGRA.CLSPM.AST.2GRD
## 9858                             LO.EGRA.CLSPM.CHI.2GRD
## 9859                             LO.EGRA.CLSPM.CIN.2GRD
## 9860                             LO.EGRA.CLSPM.DAG.2GRD
## 9861                            LO.EGRA.CLSPM.DAGB.2GRD
## 9862                             LO.EGRA.CLSPM.DAN.2GRD
## 9863                             LO.EGRA.CLSPM.ENG.2GRD
## 9864                             LO.EGRA.CLSPM.ENG.3GRD
## 9865                             LO.EGRA.CLSPM.ENG.4GRD
## 9866                             LO.EGRA.CLSPM.ENG.6GRD
## 9867                             LO.EGRA.CLSPM.EWE.2GRD
## 9868                             LO.EGRA.CLSPM.FAN.2GRD
## 9869                             LO.EGRA.CLSPM.FLP.3GRD
## 9870                              LO.EGRA.CLSPM.GA.2GRD
## 9871                             LO.EGRA.CLSPM.GON.2GRD
## 9872                             LO.EGRA.CLSPM.ICI.2GRD
## 9873                             LO.EGRA.CLSPM.IND.2GRD
## 9874                             LO.EGRA.CLSPM.KAS.2GRD
## 9875                             LO.EGRA.CLSPM.KII.2GRD
## 9876                             LO.EGRA.CLSPM.KNY.4GRD
## 9877                             LO.EGRA.CLSPM.KNY.6GRD
## 9878                             LO.EGRA.CLSPM.LUN.2GRD
## 9879                             LO.EGRA.CLSPM.LUV.2GRD
## 9880                             LO.EGRA.CLSPM.NZE.2GRD
## 9881                             LO.EGRA.CLSPM.SIL.2GRD
## 9882                              LO.EGRA.CWPM.AFA.2GRD
## 9883                              LO.EGRA.CWPM.AFA.3GRD
## 9884                              LO.EGRA.CWPM.AMH.2GRD
## 9885                              LO.EGRA.CWPM.AMH.3GRD
## 9886                              LO.EGRA.CWPM.ARB.2GRD
## 9887                              LO.EGRA.CWPM.BMN.2GRD
## 9888                              LO.EGRA.CWPM.BOM.2GRD
## 9889                              LO.EGRA.CWPM.CHC.2GRD
## 9890                              LO.EGRA.CWPM.CHC.4GRD
## 9891                              LO.EGRA.CWPM.ENG.2GRD
## 9892                              LO.EGRA.CWPM.ENG.3GRD
## 9893                              LO.EGRA.CWPM.ENG.4GRD
## 9894                              LO.EGRA.CWPM.ENG.6GRD
## 9895                              LO.EGRA.CWPM.FLF.2GRD
## 9896                              LO.EGRA.CWPM.FLP.3GRD
## 9897                              LO.EGRA.CWPM.HAR.2GRD
## 9898                              LO.EGRA.CWPM.HAR.3GRD
## 9899                              LO.EGRA.CWPM.KIS.2GRD
## 9900                              LO.EGRA.CWPM.KNY.4GRD
## 9901                              LO.EGRA.CWPM.KNY.6GRD
## 9902                              LO.EGRA.CWPM.SID.2GRD
## 9903                              LO.EGRA.CWPM.SID.3GRD
## 9904                              LO.EGRA.CWPM.SNG.2GRD
## 9905                              LO.EGRA.CWPM.SOM.2GRD
## 9906                              LO.EGRA.CWPM.SOM.3GRD
## 9907                              LO.EGRA.CWPM.SPN.2GRD
## 9908                              LO.EGRA.CWPM.SPN.3GRD
## 9909                              LO.EGRA.CWPM.SPN.4GRD
## 9910                              LO.EGRA.CWPM.TIG.2GRD
## 9911                              LO.EGRA.CWPM.TIG.3GRD
## 9912                         LO.EGRA.CWPM.ZERO.AFA.2GRD
## 9913                         LO.EGRA.CWPM.ZERO.AFA.3GRD
## 9914                         LO.EGRA.CWPM.ZERO.AKU.2GRD
## 9915                         LO.EGRA.CWPM.ZERO.AMH.2GRD
## 9916                         LO.EGRA.CWPM.ZERO.AMH.3GRD
## 9917                         LO.EGRA.CWPM.ZERO.ARB.2GRD
## 9918                         LO.EGRA.CWPM.ZERO.ARB.3GRD
## 9919                         LO.EGRA.CWPM.ZERO.AST.2GRD
## 9920                         LO.EGRA.CWPM.ZERO.BMN.2GRD
## 9921                         LO.EGRA.CWPM.ZERO.BOM.2GRD
## 9922                         LO.EGRA.CWPM.ZERO.CHC.2GRD
## 9923                         LO.EGRA.CWPM.ZERO.CHC.4GRD
## 9924                         LO.EGRA.CWPM.ZERO.CHI.2GRD
## 9925                         LO.EGRA.CWPM.ZERO.CIN.2GRD
## 9926                         LO.EGRA.CWPM.ZERO.DAG.2GRD
## 9927                        LO.EGRA.CWPM.ZERO.DAGB.2GRD
## 9928                         LO.EGRA.CWPM.ZERO.DAN.2GRD
## 9929                         LO.EGRA.CWPM.ZERO.ENG.2GRD
## 9930                         LO.EGRA.CWPM.ZERO.ENG.3GRD
## 9931                         LO.EGRA.CWPM.ZERO.ENG.4GRD
## 9932                         LO.EGRA.CWPM.ZERO.ENG.6GRD
## 9933                         LO.EGRA.CWPM.ZERO.EWE.2GRD
## 9934                         LO.EGRA.CWPM.ZERO.FAN.2GRD
## 9935                         LO.EGRA.CWPM.ZERO.FLF.2GRD
## 9936                         LO.EGRA.CWPM.ZERO.FLP.3GRD
## 9937                         LO.EGRA.CWPM.ZERO.FRN.3GRD
## 9938                          LO.EGRA.CWPM.ZERO.GA.2GRD
## 9939                         LO.EGRA.CWPM.ZERO.GON.2GRD
## 9940                         LO.EGRA.CWPM.ZERO.HAR.2GRD
## 9941                         LO.EGRA.CWPM.ZERO.HAR.3GRD
## 9942                         LO.EGRA.CWPM.ZERO.ICI.2GRD
## 9943                         LO.EGRA.CWPM.ZERO.IND.2GRD
## 9944                         LO.EGRA.CWPM.ZERO.KAS.2GRD
## 9945                         LO.EGRA.CWPM.ZERO.KII.2GRD
## 9946                         LO.EGRA.CWPM.ZERO.KIS.2GRD
## 9947                         LO.EGRA.CWPM.ZERO.KNY.4GRD
## 9948                         LO.EGRA.CWPM.ZERO.KNY.6GRD
## 9949                         LO.EGRA.CWPM.ZERO.LUN.2GRD
## 9950                         LO.EGRA.CWPM.ZERO.LUV.2GRD
## 9951                         LO.EGRA.CWPM.ZERO.NZE.2GRD
## 9952                         LO.EGRA.CWPM.ZERO.SID.2GRD
## 9953                         LO.EGRA.CWPM.ZERO.SID.3GRD
## 9954                         LO.EGRA.CWPM.ZERO.SIL.2GRD
## 9955                         LO.EGRA.CWPM.ZERO.SNG.2GRD
## 9956                         LO.EGRA.CWPM.ZERO.SOM.2GRD
## 9957                         LO.EGRA.CWPM.ZERO.SOM.3GRD
## 9958                         LO.EGRA.CWPM.ZERO.SPN.2GRD
## 9959                         LO.EGRA.CWPM.ZERO.SPN.3GRD
## 9960                         LO.EGRA.CWPM.ZERO.SPN.4GRD
## 9961                         LO.EGRA.CWPM.ZERO.TIG.2GRD
## 9962                         LO.EGRA.CWPM.ZERO.TIG.3GRD
## 9963                            LO.EGRA.INIT.0.BMN.2GRD
## 9964                            LO.EGRA.INIT.0.BOM.2GRD
## 9965                            LO.EGRA.INIT.0.CHC.2GRD
## 9966                            LO.EGRA.INIT.0.CHC.4GRD
## 9967                            LO.EGRA.INIT.0.ENG.2GRD
## 9968                            LO.EGRA.INIT.0.ENG.3GRD
## 9969                            LO.EGRA.INIT.0.ENG.4GRD
## 9970                            LO.EGRA.INIT.0.ENG.6GRD
## 9971                            LO.EGRA.INIT.0.FLF.2GRD
## 9972                            LO.EGRA.INIT.0.KNY.4GRD
## 9973                            LO.EGRA.INIT.0.KNY.6GRD
## 9974                            LO.EGRA.INIT.0.SNG.2GRD
## 9975                            LO.EGRA.INIT.0.SPN.2GRD
## 9976                            LO.EGRA.INIT.0.SPN.3GRD
## 9977                            LO.EGRA.INIT.0.SPN.4GRD
## 9978                            LO.EGRA.LSTN.0.AFA.2GRD
## 9979                            LO.EGRA.LSTN.0.AFA.3GRD
## 9980                            LO.EGRA.LSTN.0.AKU.2GRD
## 9981                            LO.EGRA.LSTN.0.AMH.2GRD
## 9982                            LO.EGRA.LSTN.0.AMH.3GRD
## 9983                            LO.EGRA.LSTN.0.ARB.2GRD
## 9984                            LO.EGRA.LSTN.0.ARB.3GRD
## 9985                            LO.EGRA.LSTN.0.AST.2GRD
## 9986                            LO.EGRA.LSTN.0.BMN.2GRD
## 9987                            LO.EGRA.LSTN.0.BOM.2GRD
## 9988                            LO.EGRA.LSTN.0.CHC.2GRD
## 9989                            LO.EGRA.LSTN.0.CHC.4GRD
## 9990                            LO.EGRA.LSTN.0.CHI.2GRD
## 9991                            LO.EGRA.LSTN.0.CIN.2GRD
## 9992                            LO.EGRA.LSTN.0.DAG.2GRD
## 9993                           LO.EGRA.LSTN.0.DAGB.2GRD
## 9994                            LO.EGRA.LSTN.0.DAN.2GRD
## 9995                            LO.EGRA.LSTN.0.ENG.2GRD
## 9996                            LO.EGRA.LSTN.0.ENG.3GRD
## 9997                            LO.EGRA.LSTN.0.ENG.4GRD
## 9998                            LO.EGRA.LSTN.0.ENG.6GRD
## 9999                            LO.EGRA.LSTN.0.EWE.2GRD
## 10000                           LO.EGRA.LSTN.0.FAN.2GRD
## 10001                           LO.EGRA.LSTN.0.FLF.2GRD
## 10002                           LO.EGRA.LSTN.0.FLP.3GRD
## 10003                            LO.EGRA.LSTN.0.GA.2GRD
## 10004                           LO.EGRA.LSTN.0.GON.2GRD
## 10005                           LO.EGRA.LSTN.0.HAR.2GRD
## 10006                           LO.EGRA.LSTN.0.HAR.3GRD
## 10007                           LO.EGRA.LSTN.0.ICI.2GRD
## 10008                           LO.EGRA.LSTN.0.IND.2GRD
## 10009                           LO.EGRA.LSTN.0.KAS.2GRD
## 10010                           LO.EGRA.LSTN.0.KII.2GRD
## 10011                           LO.EGRA.LSTN.0.KIS.2GRD
## 10012                           LO.EGRA.LSTN.0.KNY.4GRD
## 10013                           LO.EGRA.LSTN.0.KNY.6GRD
## 10014                           LO.EGRA.LSTN.0.LUN.2GRD
## 10015                           LO.EGRA.LSTN.0.LUV.2GRD
## 10016                           LO.EGRA.LSTN.0.NZE.2GRD
## 10017                           LO.EGRA.LSTN.0.SID.2GRD
## 10018                           LO.EGRA.LSTN.0.SID.3GRD
## 10019                           LO.EGRA.LSTN.0.SIL.2GRD
## 10020                           LO.EGRA.LSTN.0.SNG.2GRD
## 10021                           LO.EGRA.LSTN.0.SOM.2GRD
## 10022                           LO.EGRA.LSTN.0.SOM.3GRD
## 10023                           LO.EGRA.LSTN.0.SPN.2GRD
## 10024                           LO.EGRA.LSTN.0.SPN.3GRD
## 10025                           LO.EGRA.LSTN.0.SPN.4GRD
## 10026                           LO.EGRA.LSTN.0.TIG.2GRD
## 10027                           LO.EGRA.LSTN.0.TIG.3GRD
## 10028                            LO.EGRA.NCWPM.AFA.2GRD
## 10029                            LO.EGRA.NCWPM.AFA.3GRD
## 10030                            LO.EGRA.NCWPM.AKU.2GRD
## 10031                            LO.EGRA.NCWPM.AMH.2GRD
## 10032                            LO.EGRA.NCWPM.AMH.3GRD
## 10033                            LO.EGRA.NCWPM.ARB.2GRD
## 10034                            LO.EGRA.NCWPM.ARB.3GRD
## 10035                            LO.EGRA.NCWPM.AST.2GRD
## 10036                            LO.EGRA.NCWPM.BMN.2GRD
## 10037                            LO.EGRA.NCWPM.BOM.2GRD
## 10038                            LO.EGRA.NCWPM.CHC.2GRD
## 10039                            LO.EGRA.NCWPM.CHC.4GRD
## 10040                            LO.EGRA.NCWPM.CHI.2GRD
## 10041                            LO.EGRA.NCWPM.CIN.2GRD
## 10042                            LO.EGRA.NCWPM.DAG.2GRD
## 10043                           LO.EGRA.NCWPM.DAGB.2GRD
## 10044                            LO.EGRA.NCWPM.DAN.2GRD
## 10045                            LO.EGRA.NCWPM.ENG.2GRD
## 10046                            LO.EGRA.NCWPM.ENG.3GRD
## 10047                            LO.EGRA.NCWPM.ENG.4GRD
## 10048                            LO.EGRA.NCWPM.ENG.6GRD
## 10049                            LO.EGRA.NCWPM.EWE.2GRD
## 10050                            LO.EGRA.NCWPM.FAN.2GRD
## 10051                            LO.EGRA.NCWPM.FLF.2GRD
## 10052                            LO.EGRA.NCWPM.FLP.3GRD
## 10053                            LO.EGRA.NCWPM.FRN.3GRD
## 10054                             LO.EGRA.NCWPM.GA.2GRD
## 10055                            LO.EGRA.NCWPM.GON.2GRD
## 10056                            LO.EGRA.NCWPM.HAR.2GRD
## 10057                            LO.EGRA.NCWPM.HAR.3GRD
## 10058                            LO.EGRA.NCWPM.ICI.2GRD
## 10059                            LO.EGRA.NCWPM.IND.2GRD
## 10060                            LO.EGRA.NCWPM.KAS.2GRD
## 10061                            LO.EGRA.NCWPM.KII.2GRD
## 10062                            LO.EGRA.NCWPM.KIS.2GRD
## 10063                            LO.EGRA.NCWPM.KNY.4GRD
## 10064                            LO.EGRA.NCWPM.KNY.6GRD
## 10065                            LO.EGRA.NCWPM.LUN.2GRD
## 10066                            LO.EGRA.NCWPM.LUV.2GRD
## 10067                            LO.EGRA.NCWPM.NZE.2GRD
## 10068                            LO.EGRA.NCWPM.SID.2GRD
## 10069                            LO.EGRA.NCWPM.SID.3GRD
## 10070                            LO.EGRA.NCWPM.SIL.2GRD
## 10071                            LO.EGRA.NCWPM.SNG.2GRD
## 10072                            LO.EGRA.NCWPM.SOM.2GRD
## 10073                            LO.EGRA.NCWPM.SOM.3GRD
## 10074                            LO.EGRA.NCWPM.SPN.2GRD
## 10075                            LO.EGRA.NCWPM.SPN.3GRD
## 10076                            LO.EGRA.NCWPM.SPN.4GRD
## 10077                            LO.EGRA.NCWPM.TIG.2GRD
## 10078                            LO.EGRA.NCWPM.TIG.3GRD
## 10079                              LO.EGRA.ORF.AFA.2GRD
## 10080                              LO.EGRA.ORF.AFA.3GRD
## 10081                              LO.EGRA.ORF.AKU.2GRD
## 10082                              LO.EGRA.ORF.AMH.2GRD
## 10083                              LO.EGRA.ORF.AMH.3GRD
## 10084                              LO.EGRA.ORF.ARB.2GRD
## 10085                              LO.EGRA.ORF.ARB.3GRD
## 10086                              LO.EGRA.ORF.AST.2GRD
## 10087                              LO.EGRA.ORF.BMN.2GRD
## 10088                              LO.EGRA.ORF.BOM.2GRD
## 10089                              LO.EGRA.ORF.CHC.2GRD
## 10090                              LO.EGRA.ORF.CHC.4GRD
## 10091                              LO.EGRA.ORF.CHI.2GRD
## 10092                              LO.EGRA.ORF.CIN.2GRD
## 10093                              LO.EGRA.ORF.DAG.2GRD
## 10094                             LO.EGRA.ORF.DAGB.2GRD
## 10095                              LO.EGRA.ORF.DAN.2GRD
## 10096                              LO.EGRA.ORF.ENG.2GRD
## 10097                              LO.EGRA.ORF.ENG.3GRD
## 10098                              LO.EGRA.ORF.ENG.4GRD
## 10099                              LO.EGRA.ORF.ENG.6GRD
## 10100                              LO.EGRA.ORF.EWE.2GRD
## 10101                              LO.EGRA.ORF.FAN.2GRD
## 10102                              LO.EGRA.ORF.FLF.2GRD
## 10103                              LO.EGRA.ORF.FLP.3GRD
## 10104                              LO.EGRA.ORF.FRN.3GRD
## 10105                               LO.EGRA.ORF.GA.2GRD
## 10106                              LO.EGRA.ORF.GON.2GRD
## 10107                              LO.EGRA.ORF.HAR.2GRD
## 10108                              LO.EGRA.ORF.HAR.3GRD
## 10109                              LO.EGRA.ORF.ICI.2GRD
## 10110                              LO.EGRA.ORF.IND.2GRD
## 10111                              LO.EGRA.ORF.KAS.2GRD
## 10112                              LO.EGRA.ORF.KII.2GRD
## 10113                              LO.EGRA.ORF.KIS.2GRD
## 10114                              LO.EGRA.ORF.KNY.4GRD
## 10115                              LO.EGRA.ORF.KNY.6GRD
## 10116                              LO.EGRA.ORF.LUN.2GRD
## 10117                              LO.EGRA.ORF.LUV.2GRD
## 10118                              LO.EGRA.ORF.NZE.2GRD
## 10119                              LO.EGRA.ORF.SID.2GRD
## 10120                              LO.EGRA.ORF.SID.3GRD
## 10121                              LO.EGRA.ORF.SIL.2GRD
## 10122                              LO.EGRA.ORF.SNG.2GRD
## 10123                              LO.EGRA.ORF.SOM.2GRD
## 10124                              LO.EGRA.ORF.SOM.3GRD
## 10125                              LO.EGRA.ORF.SPN.2GRD
## 10126                              LO.EGRA.ORF.SPN.3GRD
## 10127                              LO.EGRA.ORF.SPN.4GRD
## 10128                              LO.EGRA.ORF.TIG.2GRD
## 10129                              LO.EGRA.ORF.TIG.3GRD
## 10130                           LO.EGRA.READ.0.AFA.2GRD
## 10131                           LO.EGRA.READ.0.AFA.3GRD
## 10132                           LO.EGRA.READ.0.AKU.2GRD
## 10133                           LO.EGRA.READ.0.AMH.2GRD
## 10134                           LO.EGRA.READ.0.AMH.3GRD
## 10135                           LO.EGRA.READ.0.ARB.2GRD
## 10136                           LO.EGRA.READ.0.ARB.3GRD
## 10137                           LO.EGRA.READ.0.AST.2GRD
## 10138                           LO.EGRA.READ.0.BMN.2GRD
## 10139                           LO.EGRA.READ.0.BOM.2GRD
## 10140                           LO.EGRA.READ.0.CHC.2GRD
## 10141                           LO.EGRA.READ.0.CHC.4GRD
## 10142                           LO.EGRA.READ.0.CHI.2GRD
## 10143                           LO.EGRA.READ.0.CIN.2GRD
## 10144                           LO.EGRA.READ.0.DAG.2GRD
## 10145                          LO.EGRA.READ.0.DAGB.2GRD
## 10146                           LO.EGRA.READ.0.DAN.2GRD
## 10147                           LO.EGRA.READ.0.ENG.2GRD
## 10148                           LO.EGRA.READ.0.ENG.3GRD
## 10149                           LO.EGRA.READ.0.ENG.4GRD
## 10150                           LO.EGRA.READ.0.ENG.6GRD
## 10151                           LO.EGRA.READ.0.EWE.2GRD
## 10152                           LO.EGRA.READ.0.FAN.2GRD
## 10153                           LO.EGRA.READ.0.FLF.2GRD
## 10154                           LO.EGRA.READ.0.FLP.3GRD
## 10155                           LO.EGRA.READ.0.FRN.3GRD
## 10156                            LO.EGRA.READ.0.GA.2GRD
## 10157                           LO.EGRA.READ.0.GON.2GRD
## 10158                           LO.EGRA.READ.0.HAR.2GRD
## 10159                           LO.EGRA.READ.0.HAR.3GRD
## 10160                           LO.EGRA.READ.0.ICI.2GRD
## 10161                           LO.EGRA.READ.0.IND.2GRD
## 10162                           LO.EGRA.READ.0.KAS.2GRD
## 10163                           LO.EGRA.READ.0.KII.2GRD
## 10164                           LO.EGRA.READ.0.KIS.2GRD
## 10165                           LO.EGRA.READ.0.KNY.4GRD
## 10166                           LO.EGRA.READ.0.KNY.6GRD
## 10167                           LO.EGRA.READ.0.LUN.2GRD
## 10168                           LO.EGRA.READ.0.LUV.2GRD
## 10169                           LO.EGRA.READ.0.NZE.2GRD
## 10170                           LO.EGRA.READ.0.SID.2GRD
## 10171                           LO.EGRA.READ.0.SID.3GRD
## 10172                           LO.EGRA.READ.0.SIL.2GRD
## 10173                           LO.EGRA.READ.0.SNG.2GRD
## 10174                           LO.EGRA.READ.0.SOM.2GRD
## 10175                           LO.EGRA.READ.0.SOM.3GRD
## 10176                           LO.EGRA.READ.0.SPN.2GRD
## 10177                           LO.EGRA.READ.0.SPN.3GRD
## 10178                           LO.EGRA.READ.0.SPN.4GRD
## 10179                           LO.EGRA.READ.0.TIG.2GRD
## 10180                           LO.EGRA.READ.0.TIG.3GRD
## 10181                         LO.EGRA.READ.AFA.ADV.2GRD
## 10182                         LO.EGRA.READ.AFA.ADV.3GRD
## 10183                         LO.EGRA.READ.AKU.ADV.2GRD
## 10184                         LO.EGRA.READ.AMH.ADV.2GRD
## 10185                         LO.EGRA.READ.AMH.ADV.3GRD
## 10186                         LO.EGRA.READ.ARB.ADV.2GRD
## 10187                         LO.EGRA.READ.ARB.ADV.3GRD
## 10188                         LO.EGRA.READ.AST.ADV.2GRD
## 10189                         LO.EGRA.READ.BMN.ADV.2GRD
## 10190                         LO.EGRA.READ.BOM.ADV.2GRD
## 10191                         LO.EGRA.READ.CHC.ADV.2GRD
## 10192                         LO.EGRA.READ.CHC.ADV.4GRD
## 10193                         LO.EGRA.READ.CHI.ADV.2GRD
## 10194                         LO.EGRA.READ.CIN.ADV.2GRD
## 10195                         LO.EGRA.READ.DAG.ADV.2GRD
## 10196                        LO.EGRA.READ.DAGB.ADV.2GRD
## 10197                         LO.EGRA.READ.DAN.ADV.2GRD
## 10198                         LO.EGRA.READ.ENG.ADV.2GRD
## 10199                         LO.EGRA.READ.ENG.ADV.3GRD
## 10200                         LO.EGRA.READ.ENG.ADV.4GRD
## 10201                         LO.EGRA.READ.ENG.ADV.6GRD
## 10202                         LO.EGRA.READ.EWE.ADV.2GRD
## 10203                         LO.EGRA.READ.FAN.ADV.2GRD
## 10204                         LO.EGRA.READ.FLF.ADV.2GRD
## 10205                         LO.EGRA.READ.FLP.ADV.3GRD
## 10206                         LO.EGRA.READ.FRN.ADV.3GRD
## 10207                          LO.EGRA.READ.GA.ADV.2GRD
## 10208                         LO.EGRA.READ.GON.ADV.2GRD
## 10209                         LO.EGRA.READ.HAR.ADV.2GRD
## 10210                         LO.EGRA.READ.HAR.ADV.3GRD
## 10211                         LO.EGRA.READ.ICI.ADV.2GRD
## 10212                         LO.EGRA.READ.IND.ADV.3GRD
## 10213                         LO.EGRA.READ.KAS.ADV.2GRD
## 10214                         LO.EGRA.READ.KII.ADV.2GRD
## 10215                         LO.EGRA.READ.KIS.ADV.2GRD
## 10216                         LO.EGRA.READ.KNY.ADV.4GRD
## 10217                         LO.EGRA.READ.KNY.ADV.6GRD
## 10218                         LO.EGRA.READ.LUN.ADV.2GRD
## 10219                         LO.EGRA.READ.LUV.ADV.2GRD
## 10220                         LO.EGRA.READ.NZE.ADV.2GRD
## 10221                         LO.EGRA.READ.SID.ADV.2GRD
## 10222                         LO.EGRA.READ.SID.ADV.3GRD
## 10223                         LO.EGRA.READ.SIL.ADV.2GRD
## 10224                         LO.EGRA.READ.SNG.ADV.2GRD
## 10225                         LO.EGRA.READ.SOM.ADV.2GRD
## 10226                         LO.EGRA.READ.SOM.ADV.3GRD
## 10227                         LO.EGRA.READ.SPN.ADV.2GRD
## 10228                         LO.EGRA.READ.SPN.ADV.3GRD
## 10229                         LO.EGRA.READ.SPN.ADV.4GRD
## 10230                         LO.EGRA.READ.TIG.ADV.2GRD
## 10231                         LO.EGRA.READ.TIG.ADV.3GRD
## 10232                                     LO.LLECE.MAT3
## 10233                                   LO.LLECE.MAT3.0
## 10234                                LO.LLECE.MAT3.0.FE
## 10235                                LO.LLECE.MAT3.0.MA
## 10236                                   LO.LLECE.MAT3.1
## 10237                                LO.LLECE.MAT3.1.FE
## 10238                                LO.LLECE.MAT3.1.MA
## 10239                                   LO.LLECE.MAT3.2
## 10240                                LO.LLECE.MAT3.2.FE
## 10241                                LO.LLECE.MAT3.2.MA
## 10242                                   LO.LLECE.MAT3.3
## 10243                                LO.LLECE.MAT3.3.FE
## 10244                                LO.LLECE.MAT3.3.MA
## 10245                                   LO.LLECE.MAT3.4
## 10246                                LO.LLECE.MAT3.4.FE
## 10247                                LO.LLECE.MAT3.4.MA
## 10248                                  LO.LLECE.MAT3.FE
## 10249                                  LO.LLECE.MAT3.MA
## 10250                                 LO.LLECE.MAT3.P10
## 10251                                 LO.LLECE.MAT3.P25
## 10252                                 LO.LLECE.MAT3.P50
## 10253                                 LO.LLECE.MAT3.P75
## 10254                                 LO.LLECE.MAT3.P90
## 10255                                     LO.LLECE.MAT4
## 10256                                 LO.LLECE.MAT4.P10
## 10257                                 LO.LLECE.MAT4.P25
## 10258                                 LO.LLECE.MAT4.P50
## 10259                                 LO.LLECE.MAT4.P75
## 10260                                 LO.LLECE.MAT4.P90
## 10261                                     LO.LLECE.MAT6
## 10262                                   LO.LLECE.MAT6.0
## 10263                                LO.LLECE.MAT6.0.FE
## 10264                                LO.LLECE.MAT6.0.MA
## 10265                                   LO.LLECE.MAT6.1
## 10266                                LO.LLECE.MAT6.1.FE
## 10267                                LO.LLECE.MAT6.1.MA
## 10268                                   LO.LLECE.MAT6.2
## 10269                                LO.LLECE.MAT6.2.FE
## 10270                                LO.LLECE.MAT6.2.MA
## 10271                                   LO.LLECE.MAT6.3
## 10272                                LO.LLECE.MAT6.3.FE
## 10273                                LO.LLECE.MAT6.3.MA
## 10274                                   LO.LLECE.MAT6.4
## 10275                                LO.LLECE.MAT6.4.FE
## 10276                                LO.LLECE.MAT6.4.MA
## 10277                                  LO.LLECE.MAT6.FE
## 10278                                  LO.LLECE.MAT6.MA
## 10279                                 LO.LLECE.MAT6.P10
## 10280                                 LO.LLECE.MAT6.P25
## 10281                                 LO.LLECE.MAT6.P50
## 10282                                 LO.LLECE.MAT6.P75
## 10283                                 LO.LLECE.MAT6.P90
## 10284                                     LO.LLECE.REA3
## 10285                                   LO.LLECE.REA3.0
## 10286                                LO.LLECE.REA3.0.FE
## 10287                                LO.LLECE.REA3.0.MA
## 10288                                   LO.LLECE.REA3.1
## 10289                                LO.LLECE.REA3.1.FE
## 10290                                LO.LLECE.REA3.1.MA
## 10291                                   LO.LLECE.REA3.2
## 10292                                LO.LLECE.REA3.2.FE
## 10293                                LO.LLECE.REA3.2.MA
## 10294                                   LO.LLECE.REA3.3
## 10295                                LO.LLECE.REA3.3.FE
## 10296                                LO.LLECE.REA3.3.MA
## 10297                                   LO.LLECE.REA3.4
## 10298                                LO.LLECE.REA3.4.FE
## 10299                                LO.LLECE.REA3.4.MA
## 10300                                  LO.LLECE.REA3.FE
## 10301                                  LO.LLECE.REA3.MA
## 10302                                 LO.LLECE.REA3.P10
## 10303                                 LO.LLECE.REA3.P25
## 10304                                 LO.LLECE.REA3.P50
## 10305                                 LO.LLECE.REA3.P75
## 10306                                 LO.LLECE.REA3.P90
## 10307                                     LO.LLECE.REA4
## 10308                                 LO.LLECE.REA4.P10
## 10309                                 LO.LLECE.REA4.P25
## 10310                                 LO.LLECE.REA4.P50
## 10311                                 LO.LLECE.REA4.P75
## 10312                                 LO.LLECE.REA4.P90
## 10313                                     LO.LLECE.REA6
## 10314                                   LO.LLECE.REA6.0
## 10315                                LO.LLECE.REA6.0.FE
## 10316                                LO.LLECE.REA6.0.MA
## 10317                                   LO.LLECE.REA6.1
## 10318                                LO.LLECE.REA6.1.FE
## 10319                                LO.LLECE.REA6.1.MA
## 10320                                   LO.LLECE.REA6.2
## 10321                                LO.LLECE.REA6.2.FE
## 10322                                LO.LLECE.REA6.2.MA
## 10323                                   LO.LLECE.REA6.3
## 10324                                LO.LLECE.REA6.3.FE
## 10325                                LO.LLECE.REA6.3.MA
## 10326                                   LO.LLECE.REA6.4
## 10327                                LO.LLECE.REA6.4.FE
## 10328                                LO.LLECE.REA6.4.MA
## 10329                                  LO.LLECE.REA6.FE
## 10330                                  LO.LLECE.REA6.MA
## 10331                                 LO.LLECE.REA6.P10
## 10332                                 LO.LLECE.REA6.P25
## 10333                                 LO.LLECE.REA6.P50
## 10334                                 LO.LLECE.REA6.P75
## 10335                                 LO.LLECE.REA6.P90
## 10336                                     LO.LLECE.SCI6
## 10337                                   LO.LLECE.SCI6.0
## 10338                                LO.LLECE.SCI6.0.FE
## 10339                                LO.LLECE.SCI6.0.MA
## 10340                                   LO.LLECE.SCI6.1
## 10341                                LO.LLECE.SCI6.1.FE
## 10342                                LO.LLECE.SCI6.1.MA
## 10343                                   LO.LLECE.SCI6.2
## 10344                                LO.LLECE.SCI6.2.FE
## 10345                                LO.LLECE.SCI6.2.MA
## 10346                                   LO.LLECE.SCI6.3
## 10347                                LO.LLECE.SCI6.3.FE
## 10348                                LO.LLECE.SCI6.3.MA
## 10349                                   LO.LLECE.SCI6.4
## 10350                                LO.LLECE.SCI6.4.FE
## 10351                                LO.LLECE.SCI6.4.MA
## 10352                                  LO.LLECE.SCI6.FE
## 10353                                  LO.LLECE.SCI6.MA
## 10354                                 LO.LLECE.SCI6.P10
## 10355                                 LO.LLECE.SCI6.P25
## 10356                                 LO.LLECE.SCI6.P50
## 10357                                 LO.LLECE.SCI6.P75
## 10358                                 LO.LLECE.SCI6.P90
## 10359                                  LO.PASEC.FRE.P05
## 10360                                  LO.PASEC.FRE.P10
## 10361                                  LO.PASEC.FRE.P25
## 10362                                  LO.PASEC.FRE.P50
## 10363                                  LO.PASEC.FRE.P75
## 10364                                  LO.PASEC.FRE.P90
## 10365                                  LO.PASEC.FRE.P95
## 10366                                     LO.PASEC.FRE5
## 10367                                  LO.PASEC.FRE5.FE
## 10368                                 LO.PASEC.FRE5.HIG
## 10369                              LO.PASEC.FRE5.HIG.FE
## 10370                              LO.PASEC.FRE5.HIG.MA
## 10371                                  LO.PASEC.FRE5.LO
## 10372                               LO.PASEC.FRE5.LO.FE
## 10373                               LO.PASEC.FRE5.LO.MA
## 10374                                  LO.PASEC.FRE5.MA
## 10375                                    LO.PASEC.MAT.2
## 10376                               LO.PASEC.MAT.2.ADD1
## 10377                               LO.PASEC.MAT.2.ADD2
## 10378                               LO.PASEC.MAT.2.ADD3
## 10379                           LO.PASEC.MAT.2.CNT.0T60
## 10380                          LO.PASEC.MAT.2.CNT.61T80
## 10381                           LO.PASEC.MAT.2.CNT.80UP
## 10382                                 LO.PASEC.MAT.2.FE
## 10383                                 LO.PASEC.MAT.2.L0
## 10384                                 LO.PASEC.MAT.2.L1
## 10385                                 LO.PASEC.MAT.2.L2
## 10386                                 LO.PASEC.MAT.2.L3
## 10387                                 LO.PASEC.MAT.2.MA
## 10388                             LO.PASEC.MAT.2.MG.GAP
## 10389                                LO.PASEC.MAT.2.NPP
## 10390                                LO.PASEC.MAT.2.P05
## 10391                                 LO.PASEC.MAT.2.P1
## 10392                                LO.PASEC.MAT.2.P10
## 10393                                LO.PASEC.MAT.2.P25
## 10394                                LO.PASEC.MAT.2.P50
## 10395                                LO.PASEC.MAT.2.P75
## 10396                                LO.PASEC.MAT.2.P90
## 10397                                LO.PASEC.MAT.2.P95
## 10398                                LO.PASEC.MAT.2.P99
## 10399                                 LO.PASEC.MAT.2.PP
## 10400                             LO.PASEC.MAT.2.PP.GAP
## 10401                            LO.PASEC.MAT.2.PRI.GAP
## 10402                             LO.PASEC.MAT.2.RU.GAP
## 10403                               LO.PASEC.MAT.2.SUB1
## 10404                               LO.PASEC.MAT.2.SUB2
## 10405                               LO.PASEC.MAT.2.SUB3
## 10406                                    LO.PASEC.MAT.6
## 10407                                 LO.PASEC.MAT.6.FE
## 10408                                 LO.PASEC.MAT.6.L0
## 10409                                 LO.PASEC.MAT.6.L1
## 10410                                 LO.PASEC.MAT.6.L2
## 10411                                 LO.PASEC.MAT.6.L3
## 10412                                 LO.PASEC.MAT.6.MA
## 10413                             LO.PASEC.MAT.6.MG.GAP
## 10414                                LO.PASEC.MAT.6.NPP
## 10415                                LO.PASEC.MAT.6.P05
## 10416                                 LO.PASEC.MAT.6.P1
## 10417                                LO.PASEC.MAT.6.P10
## 10418                                LO.PASEC.MAT.6.P25
## 10419                                LO.PASEC.MAT.6.P50
## 10420                                LO.PASEC.MAT.6.P75
## 10421                                LO.PASEC.MAT.6.P90
## 10422                                LO.PASEC.MAT.6.P95
## 10423                                LO.PASEC.MAT.6.P99
## 10424                                 LO.PASEC.MAT.6.PP
## 10425                             LO.PASEC.MAT.6.PP.GAP
## 10426                            LO.PASEC.MAT.6.PRI.GAP
## 10427                             LO.PASEC.MAT.6.RU.GAP
## 10428                                  LO.PASEC.MAT.P05
## 10429                                  LO.PASEC.MAT.P10
## 10430                                  LO.PASEC.MAT.P25
## 10431                                  LO.PASEC.MAT.P50
## 10432                                  LO.PASEC.MAT.P75
## 10433                                  LO.PASEC.MAT.P90
## 10434                                  LO.PASEC.MAT.P95
## 10435                                     LO.PASEC.MAT5
## 10436                                  LO.PASEC.MAT5.FE
## 10437                                 LO.PASEC.MAT5.HIG
## 10438                              LO.PASEC.MAT5.HIG.FE
## 10439                              LO.PASEC.MAT5.HIG.MA
## 10440                                  LO.PASEC.MAT5.LO
## 10441                               LO.PASEC.MAT5.LO.FE
## 10442                               LO.PASEC.MAT5.LO.MA
## 10443                                  LO.PASEC.MAT5.MA
## 10444                                    LO.PASEC.REA.2
## 10445                                 LO.PASEC.REA.2.FE
## 10446                                 LO.PASEC.REA.2.L0
## 10447                                 LO.PASEC.REA.2.L1
## 10448                                 LO.PASEC.REA.2.L2
## 10449                                 LO.PASEC.REA.2.L3
## 10450                                 LO.PASEC.REA.2.L4
## 10451                            LO.PASEC.REA.2.LTR.0T5
## 10452                          LO.PASEC.REA.2.LTR.11T20
## 10453                           LO.PASEC.REA.2.LTR.20UP
## 10454                           LO.PASEC.REA.2.LTR.6T10
## 10455                                 LO.PASEC.REA.2.MA
## 10456                             LO.PASEC.REA.2.MG.GAP
## 10457                                LO.PASEC.REA.2.NPP
## 10458                                LO.PASEC.REA.2.P05
## 10459                                 LO.PASEC.REA.2.P1
## 10460                                LO.PASEC.REA.2.P10
## 10461                                LO.PASEC.REA.2.P25
## 10462                                LO.PASEC.REA.2.P50
## 10463                                LO.PASEC.REA.2.P75
## 10464                                LO.PASEC.REA.2.P90
## 10465                                LO.PASEC.REA.2.P95
## 10466                                LO.PASEC.REA.2.P99
## 10467                                 LO.PASEC.REA.2.PP
## 10468                             LO.PASEC.REA.2.PP.GAP
## 10469                            LO.PASEC.REA.2.PRI.GAP
## 10470                             LO.PASEC.REA.2.RU.GAP
## 10471                              LO.PASEC.REA.2.WRD.0
## 10472                          LO.PASEC.REA.2.WRD.11T20
## 10473                            LO.PASEC.REA.2.WRD.1T5
## 10474                           LO.PASEC.REA.2.WRD.20UP
## 10475                           LO.PASEC.REA.2.WRD.6T10
## 10476                                    LO.PASEC.REA.6
## 10477                                 LO.PASEC.REA.6.FE
## 10478                                 LO.PASEC.REA.6.L0
## 10479                                 LO.PASEC.REA.6.L1
## 10480                                 LO.PASEC.REA.6.L2
## 10481                                 LO.PASEC.REA.6.L3
## 10482                                 LO.PASEC.REA.6.L4
## 10483                                 LO.PASEC.REA.6.MA
## 10484                             LO.PASEC.REA.6.MG.GAP
## 10485                                LO.PASEC.REA.6.NPP
## 10486                                LO.PASEC.REA.6.P05
## 10487                                 LO.PASEC.REA.6.P1
## 10488                                LO.PASEC.REA.6.P10
## 10489                                LO.PASEC.REA.6.P25
## 10490                                LO.PASEC.REA.6.P50
## 10491                                LO.PASEC.REA.6.P75
## 10492                                LO.PASEC.REA.6.P90
## 10493                                LO.PASEC.REA.6.P95
## 10494                                LO.PASEC.REA.6.P99
## 10495                                 LO.PASEC.REA.6.PP
## 10496                             LO.PASEC.REA.6.PP.GAP
## 10497                            LO.PASEC.REA.6.PRI.GAP
## 10498                             LO.PASEC.REA.6.RU.GAP
## 10499                                      LO.PIAAC.LIT
## 10500                                    LO.PIAAC.LIT.1
## 10501                                    LO.PIAAC.LIT.2
## 10502                                    LO.PIAAC.LIT.3
## 10503                                    LO.PIAAC.LIT.4
## 10504                                    LO.PIAAC.LIT.5
## 10505                                   LO.PIAAC.LIT.BE
## 10506                                   LO.PIAAC.LIT.FE
## 10507                                 LO.PIAAC.LIT.FE.1
## 10508                                 LO.PIAAC.LIT.FE.2
## 10509                                 LO.PIAAC.LIT.FE.3
## 10510                                 LO.PIAAC.LIT.FE.4
## 10511                                LO.PIAAC.LIT.FE.45
## 10512                                 LO.PIAAC.LIT.FE.5
## 10513                                LO.PIAAC.LIT.FE.BE
## 10514                                   LO.PIAAC.LIT.MA
## 10515                                 LO.PIAAC.LIT.MA.1
## 10516                                 LO.PIAAC.LIT.MA.2
## 10517                                 LO.PIAAC.LIT.MA.3
## 10518                                 LO.PIAAC.LIT.MA.4
## 10519                                LO.PIAAC.LIT.MA.45
## 10520                                 LO.PIAAC.LIT.MA.5
## 10521                                LO.PIAAC.LIT.MA.BE
## 10522                                  LO.PIAAC.LIT.P05
## 10523                                  LO.PIAAC.LIT.P10
## 10524                                  LO.PIAAC.LIT.P25
## 10525                                  LO.PIAAC.LIT.P50
## 10526                                  LO.PIAAC.LIT.P75
## 10527                                  LO.PIAAC.LIT.P90
## 10528                                  LO.PIAAC.LIT.P95
## 10529                                  LO.PIAAC.LIT.YOU
## 10530                                LO.PIAAC.LIT.YOU.1
## 10531                                LO.PIAAC.LIT.YOU.2
## 10532                                LO.PIAAC.LIT.YOU.3
## 10533                                LO.PIAAC.LIT.YOU.4
## 10534                               LO.PIAAC.LIT.YOU.45
## 10535                                LO.PIAAC.LIT.YOU.5
## 10536                               LO.PIAAC.LIT.YOU.BE
## 10537                               LO.PIAAC.LIT.YOU.FE
## 10538                               LO.PIAAC.LIT.YOU.MA
## 10539                                      LO.PIAAC.NUM
## 10540                                    LO.PIAAC.NUM.1
## 10541                                    LO.PIAAC.NUM.2
## 10542                                    LO.PIAAC.NUM.3
## 10543                                    LO.PIAAC.NUM.4
## 10544                                    LO.PIAAC.NUM.5
## 10545                                   LO.PIAAC.NUM.BE
## 10546                                   LO.PIAAC.NUM.FE
## 10547                                 LO.PIAAC.NUM.FE.1
## 10548                                 LO.PIAAC.NUM.FE.2
## 10549                                 LO.PIAAC.NUM.FE.3
## 10550                                 LO.PIAAC.NUM.FE.4
## 10551                                LO.PIAAC.NUM.FE.45
## 10552                                 LO.PIAAC.NUM.FE.5
## 10553                                LO.PIAAC.NUM.FE.BE
## 10554                                   LO.PIAAC.NUM.MA
## 10555                                 LO.PIAAC.NUM.MA.1
## 10556                                 LO.PIAAC.NUM.MA.2
## 10557                                 LO.PIAAC.NUM.MA.3
## 10558                                 LO.PIAAC.NUM.MA.4
## 10559                                LO.PIAAC.NUM.MA.45
## 10560                                 LO.PIAAC.NUM.MA.5
## 10561                                LO.PIAAC.NUM.MA.BE
## 10562                                  LO.PIAAC.NUM.P05
## 10563                                  LO.PIAAC.NUM.P10
## 10564                                  LO.PIAAC.NUM.P25
## 10565                                  LO.PIAAC.NUM.P50
## 10566                                  LO.PIAAC.NUM.P75
## 10567                                  LO.PIAAC.NUM.P90
## 10568                                  LO.PIAAC.NUM.P95
## 10569                                  LO.PIAAC.NUM.YOU
## 10570                                LO.PIAAC.NUM.YOU.1
## 10571                                LO.PIAAC.NUM.YOU.2
## 10572                                LO.PIAAC.NUM.YOU.3
## 10573                                LO.PIAAC.NUM.YOU.4
## 10574                               LO.PIAAC.NUM.YOU.45
## 10575                                LO.PIAAC.NUM.YOU.5
## 10576                               LO.PIAAC.NUM.YOU.BE
## 10577                               LO.PIAAC.NUM.YOU.FE
## 10578                               LO.PIAAC.NUM.YOU.MA
## 10579                                    LO.PIAAC.TEC.1
## 10580                                    LO.PIAAC.TEC.2
## 10581                                    LO.PIAAC.TEC.3
## 10582                                   LO.PIAAC.TEC.BE
## 10583                                 LO.PIAAC.TEC.FAIL
## 10584                                 LO.PIAAC.TEC.FE.1
## 10585                                 LO.PIAAC.TEC.FE.2
## 10586                                 LO.PIAAC.TEC.FE.3
## 10587                                LO.PIAAC.TEC.FE.BE
## 10588                              LO.PIAAC.TEC.FE.FAIL
## 10589                            LO.PIAAC.TEC.FE.FAILNO
## 10590                                LO.PIAAC.TEC.FE.NO
## 10591                               LO.PIAAC.TEC.FE.OPT
## 10592                                 LO.PIAAC.TEC.MA.1
## 10593                                 LO.PIAAC.TEC.MA.2
## 10594                                 LO.PIAAC.TEC.MA.3
## 10595                                LO.PIAAC.TEC.MA.BE
## 10596                              LO.PIAAC.TEC.MA.FAIL
## 10597                            LO.PIAAC.TEC.MA.FAILNO
## 10598                                LO.PIAAC.TEC.MA.NO
## 10599                               LO.PIAAC.TEC.MA.OPT
## 10600                                   LO.PIAAC.TEC.NO
## 10601                                  LO.PIAAC.TEC.OPT
## 10602                                  LO.PIAAC.TEC.P05
## 10603                                  LO.PIAAC.TEC.P10
## 10604                                  LO.PIAAC.TEC.P25
## 10605                                  LO.PIAAC.TEC.P50
## 10606                                  LO.PIAAC.TEC.P75
## 10607                                  LO.PIAAC.TEC.P90
## 10608                                  LO.PIAAC.TEC.P95
## 10609                                LO.PIAAC.TEC.YOU.1
## 10610                                LO.PIAAC.TEC.YOU.2
## 10611                                LO.PIAAC.TEC.YOU.3
## 10612                               LO.PIAAC.TEC.YOU.BE
## 10613                             LO.PIAAC.TEC.YOU.FAIL
## 10614                           LO.PIAAC.TEC.YOU.FAILNO
## 10615                               LO.PIAAC.TEC.YOU.NO
## 10616                              LO.PIAAC.TEC.YOU.OPT
## 10617                                      LO.PIRLS.REA
## 10618                                  LO.PIRLS.REA.ADV
## 10619                               LO.PIRLS.REA.ADV.FE
## 10620                               LO.PIRLS.REA.ADV.MA
## 10621                                   LO.PIRLS.REA.BL
## 10622                                LO.PIRLS.REA.BL.FE
## 10623                                LO.PIRLS.REA.BL.MA
## 10624                                   LO.PIRLS.REA.FE
## 10625                                   LO.PIRLS.REA.HI
## 10626                                LO.PIRLS.REA.HI.FE
## 10627                                LO.PIRLS.REA.HI.MA
## 10628                                  LO.PIRLS.REA.INT
## 10629                               LO.PIRLS.REA.INT.FE
## 10630                               LO.PIRLS.REA.INT.MA
## 10631                                  LO.PIRLS.REA.LOW
## 10632                               LO.PIRLS.REA.LOW.FE
## 10633                               LO.PIRLS.REA.LOW.MA
## 10634                                   LO.PIRLS.REA.MA
## 10635                                  LO.PIRLS.REA.P05
## 10636                                  LO.PIRLS.REA.P10
## 10637                                  LO.PIRLS.REA.P25
## 10638                                  LO.PIRLS.REA.P50
## 10639                                  LO.PIRLS.REA.P75
## 10640                                  LO.PIRLS.REA.P90
## 10641                                  LO.PIRLS.REA.P95
## 10642                                       LO.PISA.MAT
## 10643                                     LO.PISA.MAT.0
## 10644                                  LO.PISA.MAT.0.FE
## 10645                                  LO.PISA.MAT.0.MA
## 10646                                     LO.PISA.MAT.1
## 10647                                  LO.PISA.MAT.1.FE
## 10648                                  LO.PISA.MAT.1.MA
## 10649                                     LO.PISA.MAT.2
## 10650                                  LO.PISA.MAT.2.FE
## 10651                                  LO.PISA.MAT.2.MA
## 10652                                     LO.PISA.MAT.3
## 10653                                  LO.PISA.MAT.3.FE
## 10654                                  LO.PISA.MAT.3.MA
## 10655                                     LO.PISA.MAT.4
## 10656                                  LO.PISA.MAT.4.FE
## 10657                                  LO.PISA.MAT.4.MA
## 10658                                     LO.PISA.MAT.5
## 10659                                  LO.PISA.MAT.5.FE
## 10660                                  LO.PISA.MAT.5.MA
## 10661                                     LO.PISA.MAT.6
## 10662                                  LO.PISA.MAT.6.FE
## 10663                                  LO.PISA.MAT.6.MA
## 10664                                    LO.PISA.MAT.FE
## 10665                                    LO.PISA.MAT.MA
## 10666                                   LO.PISA.MAT.P05
## 10667                                   LO.PISA.MAT.P10
## 10668                                   LO.PISA.MAT.P25
## 10669                                   LO.PISA.MAT.P50
## 10670                                   LO.PISA.MAT.P75
## 10671                                   LO.PISA.MAT.P90
## 10672                                   LO.PISA.MAT.P95
## 10673                                       LO.PISA.REA
## 10674                                     LO.PISA.REA.0
## 10675                                 LO.PISA.REA.0.B1C
## 10676                              LO.PISA.REA.0.B1C.FE
## 10677                              LO.PISA.REA.0.B1C.MA
## 10678                                    LO.PISA.REA.1A
## 10679                                 LO.PISA.REA.1A.FE
## 10680                                 LO.PISA.REA.1A.MA
## 10681                                    LO.PISA.REA.1B
## 10682                                 LO.PISA.REA.1B.FE
## 10683                                 LO.PISA.REA.1B.MA
## 10684                                    LO.PISA.REA.1C
## 10685                                 LO.PISA.REA.1C.FE
## 10686                                 LO.PISA.REA.1C.MA
## 10687                                     LO.PISA.REA.2
## 10688                                  LO.PISA.REA.2.FE
## 10689                                  LO.PISA.REA.2.MA
## 10690                                     LO.PISA.REA.3
## 10691                                  LO.PISA.REA.3.FE
## 10692                                  LO.PISA.REA.3.MA
## 10693                                     LO.PISA.REA.4
## 10694                                  LO.PISA.REA.4.FE
## 10695                                  LO.PISA.REA.4.MA
## 10696                                     LO.PISA.REA.5
## 10697                                  LO.PISA.REA.5.FE
## 10698                                  LO.PISA.REA.5.MA
## 10699                                     LO.PISA.REA.6
## 10700                                  LO.PISA.REA.6.FE
## 10701                                  LO.PISA.REA.6.MA
## 10702                                    LO.PISA.REA.FE
## 10703                                    LO.PISA.REA.MA
## 10704                                   LO.PISA.REA.P05
## 10705                                   LO.PISA.REA.P10
## 10706                                   LO.PISA.REA.P25
## 10707                                   LO.PISA.REA.P50
## 10708                                   LO.PISA.REA.P75
## 10709                                   LO.PISA.REA.P90
## 10710                                   LO.PISA.REA.P95
## 10711                                       LO.PISA.SCI
## 10712                                     LO.PISA.SCI.0
## 10713                                  LO.PISA.SCI.0.FE
## 10714                                  LO.PISA.SCI.0.MA
## 10715                                    LO.PISA.SCI.1A
## 10716                                 LO.PISA.SCI.1A.FE
## 10717                                 LO.PISA.SCI.1A.MA
## 10718                                    LO.PISA.SCI.1B
## 10719                                 LO.PISA.SCI.1B.FE
## 10720                                 LO.PISA.SCI.1B.MA
## 10721                                     LO.PISA.SCI.2
## 10722                                  LO.PISA.SCI.2.FE
## 10723                                  LO.PISA.SCI.2.MA
## 10724                                     LO.PISA.SCI.3
## 10725                                  LO.PISA.SCI.3.FE
## 10726                                  LO.PISA.SCI.3.MA
## 10727                                     LO.PISA.SCI.4
## 10728                                  LO.PISA.SCI.4.FE
## 10729                                  LO.PISA.SCI.4.MA
## 10730                                     LO.PISA.SCI.5
## 10731                                  LO.PISA.SCI.5.FE
## 10732                                  LO.PISA.SCI.5.MA
## 10733                                     LO.PISA.SCI.6
## 10734                                  LO.PISA.SCI.6.FE
## 10735                                  LO.PISA.SCI.6.MA
## 10736                                    LO.PISA.SCI.FE
## 10737                                    LO.PISA.SCI.MA
## 10738                                   LO.PISA.SCI.P05
## 10739                                   LO.PISA.SCI.P10
## 10740                                   LO.PISA.SCI.P25
## 10741                                   LO.PISA.SCI.P50
## 10742                                   LO.PISA.SCI.P75
## 10743                                   LO.PISA.SCI.P90
## 10744                                   LO.PISA.SCI.P95
## 10745                                     LO.SACMEQ.MAT
## 10746                                  LO.SACMEQ.MAT.FE
## 10747                                  LO.SACMEQ.MAT.L1
## 10748                               LO.SACMEQ.MAT.L1.FE
## 10749                               LO.SACMEQ.MAT.L1.MA
## 10750                                  LO.SACMEQ.MAT.L2
## 10751                               LO.SACMEQ.MAT.L2.FE
## 10752                               LO.SACMEQ.MAT.L2.MA
## 10753                                  LO.SACMEQ.MAT.L3
## 10754                               LO.SACMEQ.MAT.L3.FE
## 10755                               LO.SACMEQ.MAT.L3.MA
## 10756                                  LO.SACMEQ.MAT.L4
## 10757                               LO.SACMEQ.MAT.L4.FE
## 10758                               LO.SACMEQ.MAT.L4.MA
## 10759                                  LO.SACMEQ.MAT.L5
## 10760                               LO.SACMEQ.MAT.L5.FE
## 10761                               LO.SACMEQ.MAT.L5.MA
## 10762                                  LO.SACMEQ.MAT.L6
## 10763                               LO.SACMEQ.MAT.L6.FE
## 10764                               LO.SACMEQ.MAT.L6.MA
## 10765                                  LO.SACMEQ.MAT.L7
## 10766                               LO.SACMEQ.MAT.L7.FE
## 10767                               LO.SACMEQ.MAT.L7.MA
## 10768                                  LO.SACMEQ.MAT.L8
## 10769                               LO.SACMEQ.MAT.L8.FE
## 10770                               LO.SACMEQ.MAT.L8.MA
## 10771                                  LO.SACMEQ.MAT.MA
## 10772                                     LO.SACMEQ.REA
## 10773                                  LO.SACMEQ.REA.FE
## 10774                                  LO.SACMEQ.REA.L1
## 10775                               LO.SACMEQ.REA.L1.FE
## 10776                               LO.SACMEQ.REA.L1.MA
## 10777                                  LO.SACMEQ.REA.L2
## 10778                               LO.SACMEQ.REA.L2.FE
## 10779                               LO.SACMEQ.REA.L2.MA
## 10780                                  LO.SACMEQ.REA.L3
## 10781                               LO.SACMEQ.REA.L3.FE
## 10782                               LO.SACMEQ.REA.L3.MA
## 10783                                  LO.SACMEQ.REA.L4
## 10784                               LO.SACMEQ.REA.L4.FE
## 10785                               LO.SACMEQ.REA.L4.MA
## 10786                                  LO.SACMEQ.REA.L5
## 10787                               LO.SACMEQ.REA.L5.FE
## 10788                               LO.SACMEQ.REA.L5.MA
## 10789                                  LO.SACMEQ.REA.L6
## 10790                               LO.SACMEQ.REA.L6.FE
## 10791                               LO.SACMEQ.REA.L6.MA
## 10792                                  LO.SACMEQ.REA.L7
## 10793                               LO.SACMEQ.REA.L7.FE
## 10794                               LO.SACMEQ.REA.L7.MA
## 10795                                  LO.SACMEQ.REA.L8
## 10796                               LO.SACMEQ.REA.L8.FE
## 10797                               LO.SACMEQ.REA.L8.MA
## 10798                                  LO.SACMEQ.REA.MA
## 10799                                     LO.TIMSS.MAT4
## 10800                                 LO.TIMSS.MAT4.ADV
## 10801                              LO.TIMSS.MAT4.ADV.FE
## 10802                              LO.TIMSS.MAT4.ADV.MA
## 10803                                  LO.TIMSS.MAT4.BL
## 10804                               LO.TIMSS.MAT4.BL.FE
## 10805                               LO.TIMSS.MAT4.BL.MA
## 10806                                  LO.TIMSS.MAT4.FE
## 10807                                  LO.TIMSS.MAT4.HI
## 10808                               LO.TIMSS.MAT4.HI.FE
## 10809                               LO.TIMSS.MAT4.HI.MA
## 10810                                 LO.TIMSS.MAT4.INT
## 10811                              LO.TIMSS.MAT4.INT.FE
## 10812                              LO.TIMSS.MAT4.INT.MA
## 10813                                 LO.TIMSS.MAT4.LOW
## 10814                              LO.TIMSS.MAT4.LOW.FE
## 10815                              LO.TIMSS.MAT4.LOW.MA
## 10816                                  LO.TIMSS.MAT4.MA
## 10817                                 LO.TIMSS.MAT4.P05
## 10818                                 LO.TIMSS.MAT4.P10
## 10819                                 LO.TIMSS.MAT4.P25
## 10820                                 LO.TIMSS.MAT4.P50
## 10821                                 LO.TIMSS.MAT4.P75
## 10822                                 LO.TIMSS.MAT4.P90
## 10823                                 LO.TIMSS.MAT4.P95
## 10824                                     LO.TIMSS.MAT8
## 10825                                 LO.TIMSS.MAT8.ADV
## 10826                              LO.TIMSS.MAT8.ADV.FE
## 10827                              LO.TIMSS.MAT8.ADV.MA
## 10828                                  LO.TIMSS.MAT8.BL
## 10829                               LO.TIMSS.MAT8.BL.FE
## 10830                               LO.TIMSS.MAT8.BL.MA
## 10831                                  LO.TIMSS.MAT8.FE
## 10832                                  LO.TIMSS.MAT8.HI
## 10833                               LO.TIMSS.MAT8.HI.FE
## 10834                               LO.TIMSS.MAT8.HI.MA
## 10835                                 LO.TIMSS.MAT8.INT
## 10836                              LO.TIMSS.MAT8.INT.FE
## 10837                              LO.TIMSS.MAT8.INT.MA
## 10838                                 LO.TIMSS.MAT8.LOW
## 10839                              LO.TIMSS.MAT8.LOW.FE
## 10840                              LO.TIMSS.MAT8.LOW.MA
## 10841                                  LO.TIMSS.MAT8.MA
## 10842                                 LO.TIMSS.MAT8.P05
## 10843                                 LO.TIMSS.MAT8.P10
## 10844                                 LO.TIMSS.MAT8.P25
## 10845                                 LO.TIMSS.MAT8.P50
## 10846                                 LO.TIMSS.MAT8.P75
## 10847                                 LO.TIMSS.MAT8.P90
## 10848                                 LO.TIMSS.MAT8.P95
## 10849                                     LO.TIMSS.SCI4
## 10850                                 LO.TIMSS.SCI4.ADV
## 10851                              LO.TIMSS.SCI4.ADV.FE
## 10852                              LO.TIMSS.SCI4.ADV.MA
## 10853                                  LO.TIMSS.SCI4.BL
## 10854                               LO.TIMSS.SCI4.BL.FE
## 10855                               LO.TIMSS.SCI4.BL.MA
## 10856                                  LO.TIMSS.SCI4.FE
## 10857                                  LO.TIMSS.SCI4.HI
## 10858                               LO.TIMSS.SCI4.HI.FE
## 10859                               LO.TIMSS.SCI4.HI.MA
## 10860                                 LO.TIMSS.SCI4.INT
## 10861                              LO.TIMSS.SCI4.INT.FE
## 10862                              LO.TIMSS.SCI4.INT.MA
## 10863                                 LO.TIMSS.SCI4.LOW
## 10864                              LO.TIMSS.SCI4.LOW.FE
## 10865                              LO.TIMSS.SCI4.LOW.MA
## 10866                                  LO.TIMSS.SCI4.MA
## 10867                                 LO.TIMSS.SCI4.P05
## 10868                                 LO.TIMSS.SCI4.P10
## 10869                                 LO.TIMSS.SCI4.P25
## 10870                                 LO.TIMSS.SCI4.P50
## 10871                                 LO.TIMSS.SCI4.P75
## 10872                                 LO.TIMSS.SCI4.P90
## 10873                                 LO.TIMSS.SCI4.P95
## 10874                                     LO.TIMSS.SCI8
## 10875                                 LO.TIMSS.SCI8.ADV
## 10876                              LO.TIMSS.SCI8.ADV.FE
## 10877                              LO.TIMSS.SCI8.ADV.MA
## 10878                                  LO.TIMSS.SCI8.BL
## 10879                               LO.TIMSS.SCI8.BL.FE
## 10880                               LO.TIMSS.SCI8.BL.MA
## 10881                                  LO.TIMSS.SCI8.FE
## 10882                                  LO.TIMSS.SCI8.HI
## 10883                               LO.TIMSS.SCI8.HI.FE
## 10884                               LO.TIMSS.SCI8.HI.MA
## 10885                                 LO.TIMSS.SCI8.INT
## 10886                              LO.TIMSS.SCI8.INT.FE
## 10887                              LO.TIMSS.SCI8.INT.MA
## 10888                                 LO.TIMSS.SCI8.LOW
## 10889                              LO.TIMSS.SCI8.LOW.FE
## 10890                              LO.TIMSS.SCI8.LOW.MA
## 10891                                  LO.TIMSS.SCI8.MA
## 10892                                 LO.TIMSS.SCI8.P05
## 10893                                 LO.TIMSS.SCI8.P10
## 10894                                 LO.TIMSS.SCI8.P25
## 10895                                 LO.TIMSS.SCI8.P50
## 10896                                 LO.TIMSS.SCI8.P75
## 10897                                 LO.TIMSS.SCI8.P90
## 10898                                 LO.TIMSS.SCI8.P95
## 10899                                    LP.EXP.DURS.MD
## 10900                                    LP.IMP.DURS.MD
## 10901                                    LP.LPI.CUST.RK
## 10902                                    LP.LPI.CUST.XQ
## 10903                                    LP.LPI.INFR.RK
## 10904                                    LP.LPI.INFR.XQ
## 10905                                    LP.LPI.ITRN.RK
## 10906                                    LP.LPI.ITRN.XQ
## 10907                                    LP.LPI.LOGS.RK
## 10908                                    LP.LPI.LOGS.XQ
## 10909                                    LP.LPI.OVRL.RK
## 10910                                 LP.LPI.OVRL.RK.LB
## 10911                                 LP.LPI.OVRL.RK.UB
## 10912                                 LP.LPI.OVRL.RK.ZS
## 10913                                    LP.LPI.OVRL.XQ
## 10914                                 LP.LPI.OVRL.XQ.LB
## 10915                                 LP.LPI.OVRL.XQ.UB
## 10916                                    LP.LPI.TIME.RK
## 10917                                    LP.LPI.TIME.XQ
## 10918                                    LP.LPI.TRAC.RK
## 10919                                    LP.LPI.TRAC.XQ
## 10920                                  MO.INDEX.ECON.XQ
## 10921                                  MO.INDEX.HDEV.XQ
## 10922                                   MO.INDEX.PHR.XQ
## 10923                                  MO.INDEX.SRLW.XQ
## 10924                                       MO.INDEX.XQ
## 10925                                 mobileaccount.t.d
## 10926                               mobileaccount.t.d.1
## 10927                              mobileaccount.t.d.10
## 10928                              mobileaccount.t.d.11
## 10929                               mobileaccount.t.d.2
## 10930                               mobileaccount.t.d.3
## 10931                               mobileaccount.t.d.4
## 10932                               mobileaccount.t.d.5
## 10933                               mobileaccount.t.d.6
## 10934                               mobileaccount.t.d.7
## 10935                               mobileaccount.t.d.8
## 10936                               mobileaccount.t.d.9
## 10937                                    MS.MIL.MPRT.KD
## 10938                                    MS.MIL.MPRT.ZS
## 10939                                    MS.MIL.TOTL.P1
## 10940                                 MS.MIL.TOTL.TF.ZS
## 10941                                    MS.MIL.XPND.CD
## 10942                                    MS.MIL.XPND.CN
## 10943                                 MS.MIL.XPND.GD.ZS
## 10944                                 MS.MIL.XPND.GN.ZS
## 10945                                    MS.MIL.XPND.ZS
## 10946                                    MS.MIL.XPRT.KD
## 10947                                    MS.MIL.XPRT.ZS
## 10948                            NA.GDP.ACC.FB.SNA08.CR
## 10949                            NA.GDP.ACC.FB.SNA08.KR
## 10950                                     NA.GDP.AGR.CR
## 10951                                     NA.GDP.AGR.KR
## 10952                               NA.GDP.AGR.SNA08.CR
## 10953                               NA.GDP.AGR.SNA08.KR
## 10954                              NA.GDP.BUSS.SNA08.CR
## 10955                              NA.GDP.BUSS.SNA08.KR
## 10956                                    NA.GDP.CNST.CR
## 10957                                    NA.GDP.CNST.KR
## 10958                              NA.GDP.CNST.SNA08.CR
## 10959                              NA.GDP.CNST.SNA08.KR
## 10960                              NA.GDP.EDUS.SNA08.CR
## 10961                              NA.GDP.EDUS.SNA08.KR
## 10962                          NA.GDP.ELEC.GAS.SNA08.CR
## 10963                          NA.GDP.ELEC.GAS.SNA08.KR
## 10964                                  NA.GDP.EXC.OG.CR
## 10965                                  NA.GDP.EXC.OG.KR
## 10966                                    NA.GDP.FINS.CR
## 10967                                    NA.GDP.FINS.KR
## 10968                              NA.GDP.FINS.SNA08.CR
## 10969                              NA.GDP.FINS.SNA08.KR
## 10970                         NA.GDP.HLTH.SOCW.SNA08.CR
## 10971                         NA.GDP.HLTH.SOCW.SNA08.KR
## 10972                                  NA.GDP.INC.OG.CR
## 10973                                  NA.GDP.INC.OG.KR
## 10974                            NA.GDP.INC.OG.SNA08.CR
## 10975                            NA.GDP.INC.OG.SNA08.KR
## 10976                          NA.GDP.INF.COMM.SNA08.CR
## 10977                          NA.GDP.INF.COMM.SNA08.KR
## 10978                                    NA.GDP.MINQ.CR
## 10979                                    NA.GDP.MINQ.KR
## 10980                              NA.GDP.MINQ.SNA08.CR
## 10981                              NA.GDP.MINQ.SNA08.KR
## 10982                                     NA.GDP.MNF.CR
## 10983                                     NA.GDP.MNF.KR
## 10984                               NA.GDP.MNF.SNA08.CR
## 10985                               NA.GDP.MNF.SNA08.KR
## 10986                          NA.GDP.PADM.DEF.SNA08.CR
## 10987                          NA.GDP.PADM.DEF.SNA08.KR
## 10988                              NA.GDP.REST.SNA08.CR
## 10989                              NA.GDP.REST.SNA08.KR
## 10990                                NA.GDP.SRV.OTHR.CR
## 10991                                NA.GDP.SRV.OTHR.KR
## 10992                          NA.GDP.SRV.OTHR.SNA08.CR
## 10993                          NA.GDP.SRV.OTHR.SNA08.KR
## 10994                               NA.GDP.TRAN.COMM.CR
## 10995                               NA.GDP.TRAN.COMM.KR
## 10996                         NA.GDP.TRAN.STOR.SNA08.CR
## 10997                         NA.GDP.TRAN.STOR.SNA08.KR
## 10998                                 NA.GDP.TRD.HTL.CR
## 10999                                 NA.GDP.TRD.HTL.KR
## 11000                               NA.GDP.TRD.SNA08.CR
## 11001                               NA.GDP.TRD.SNA08.KR
## 11002                                     NA.GDP.UTL.CR
## 11003                                     NA.GDP.UTL.KR
## 11004                           NA.GDP.WTR.WST.SNA08.CR
## 11005                           NA.GDP.WTR.WST.SNA08.KR
## 11006                                    NE.CON.GOVT.CD
## 11007                                    NE.CON.GOVT.CN
## 11008                                    NE.CON.GOVT.KD
## 11009                                 NE.CON.GOVT.KD.87
## 11010                                 NE.CON.GOVT.KD.ZG
## 11011                                    NE.CON.GOVT.KN
## 11012                                 NE.CON.GOVT.KN.87
## 11013                              NE.CON.GOVT.KN.87.ZG
## 11014                                    NE.CON.GOVT.ZS
## 11015                                    NE.CON.PCAP.CD
## 11016                                    NE.CON.PEPC.KD
## 11017                                    NE.CON.PETC.CD
## 11018                                    NE.CON.PETC.CN
## 11019                                    NE.CON.PETC.KD
## 11020                                 NE.CON.PETC.KD.87
## 11021                                 NE.CON.PETC.KD.ZG
## 11022                                    NE.CON.PETC.KN
## 11023                                 NE.CON.PETC.KN.87
## 11024                              NE.CON.PETC.KN.87.ZG
## 11025                                    NE.CON.PETC.ZS
## 11026                                    NE.CON.PRVT.CD
## 11027                                    NE.CON.PRVT.CN
## 11028                                 NE.CON.PRVT.CN.AD
## 11029                                    NE.CON.PRVT.KD
## 11030                                 NE.CON.PRVT.KD.87
## 11031                                 NE.CON.PRVT.KD.ZG
## 11032                                    NE.CON.PRVT.KN
## 11033                                 NE.CON.PRVT.KN.87
## 11034                              NE.CON.PRVT.KN.87.ZG
## 11035                                 NE.CON.PRVT.PC.KD
## 11036                              NE.CON.PRVT.PC.KD.ZG
## 11037                                 NE.CON.PRVT.PC.ZG
## 11038                                 NE.CON.PRVT.PC.ZS
## 11039                                NE.CON.PRVT.POP.ZG
## 11040                                 NE.CON.PRVT.PP.CD
## 11041                                 NE.CON.PRVT.PP.KD
## 11042                                    NE.CON.PRVT.ZS
## 11043                                    NE.CON.PVPC.KD
## 11044                                    NE.CON.TETC.CD
## 11045                                    NE.CON.TETC.CN
## 11046                                    NE.CON.TETC.KD
## 11047                                 NE.CON.TETC.KD.87
## 11048                                 NE.CON.TETC.KD.ZG
## 11049                                    NE.CON.TETC.KN
## 11050                                 NE.CON.TETC.KN.87
## 11051                              NE.CON.TETC.KN.87.ZG
## 11052                                    NE.CON.TETC.ZS
## 11053                                    NE.CON.TOTL.CD
## 11054                                    NE.CON.TOTL.CN
## 11055                                    NE.CON.TOTL.KD
## 11056                                 NE.CON.TOTL.KD.87
## 11057                                 NE.CON.TOTL.KD.ZG
## 11058                                    NE.CON.TOTL.KN
## 11059                                 NE.CON.TOTL.KN.87
## 11060                                    NE.CON.TOTL.ZG
## 11061                                    NE.CON.TOTL.ZS
## 11062                                    NE.DAB.DEFL.ZS
## 11063                                    NE.DAB.TOTL.CD
## 11064                                    NE.DAB.TOTL.CN
## 11065                                    NE.DAB.TOTL.IN
## 11066                                    NE.DAB.TOTL.KD
## 11067                                 NE.DAB.TOTL.KD.87
## 11068                                    NE.DAB.TOTL.KN
## 11069                                 NE.DAB.TOTL.KN.87
## 11070                                    NE.DAB.TOTL.XD
## 11071                                    NE.DAB.TOTL.ZS
## 11072                                    NE.EXP.CAPM.KN
## 11073                                    NE.EXP.GNFS.CD
## 11074                                    NE.EXP.GNFS.CN
## 11075                                    NE.EXP.GNFS.KD
## 11076                                 NE.EXP.GNFS.KD.87
## 11077                                 NE.EXP.GNFS.KD.ZG
## 11078                                    NE.EXP.GNFS.KN
## 11079                                 NE.EXP.GNFS.KN.87
## 11080                              NE.EXP.GNFS.KN.87.ZG
## 11081                                 NE.EXP.GNFS.KN.ZG
## 11082                                    NE.EXP.GNFS.XN
## 11083                                    NE.EXP.GNFS.ZS
## 11084                                    NE.EXP.TTEF.KN
## 11085                                NE.GDI.CON.GOVT.CR
## 11086                          NE.GDI.CON.GOVT.SNA08.CR
## 11087                                 NE.GDI.CON.NPI.CR
## 11088                           NE.GDI.CON.NPI.SNA08.CR
## 11089                                NE.GDI.CON.PRVT.CR
## 11090                          NE.GDI.CON.PRVT.SNA08.CR
## 11091                                    NE.GDI.EXPT.CR
## 11092                              NE.GDI.EXPT.SNA08.CR
## 11093                                    NE.GDI.FCGV.CD
## 11094                                    NE.GDI.FCGV.CN
## 11095                                    NE.GDI.FCGV.KD
## 11096                                    NE.GDI.FCGV.KN
## 11097                                    NE.GDI.FGOV.CD
## 11098                                    NE.GDI.FGOV.CN
## 11099                                    NE.GDI.FGOV.KD
## 11100                                    NE.GDI.FGOV.KN
## 11101                                    NE.GDI.FIXD.CN
## 11102                                    NE.GDI.FIXD.KN
## 11103                                    NE.GDI.FLGV.CD
## 11104                                    NE.GDI.FLGV.CN
## 11105                                    NE.GDI.FLGV.KN
## 11106                                    NE.GDI.FPBE.CD
## 11107                                    NE.GDI.FPBE.CN
## 11108                                    NE.GDI.FPBE.KN
## 11109                                    NE.GDI.FPRV.CD
## 11110                                    NE.GDI.FPRV.CN
## 11111                                 NE.GDI.FPRV.GI.ZS
## 11112                              NE.GDI.FPRV.GI.ZS.IC
## 11113                                 NE.GDI.FPRV.IC.ZS
## 11114                                NE.GDI.FPRV.IFC.ZS
## 11115                                    NE.GDI.FPRV.KD
## 11116                                    NE.GDI.FPRV.KN
## 11117                                    NE.GDI.FPRV.ZS
## 11118                                    NE.GDI.FPUB.CD
## 11119                                    NE.GDI.FPUB.CN
## 11120                                    NE.GDI.FPUB.KD
## 11121                                    NE.GDI.FPUB.KN
## 11122                                    NE.GDI.FPUB.ZS
## 11123                                    NE.GDI.FTOT.CD
## 11124                                    NE.GDI.FTOT.CN
## 11125                                    NE.GDI.FTOT.CR
## 11126                                    NE.GDI.FTOT.KD
## 11127                                 NE.GDI.FTOT.KD.87
## 11128                                 NE.GDI.FTOT.KD.ZG
## 11129                                    NE.GDI.FTOT.KN
## 11130                                 NE.GDI.FTOT.KN.87
## 11131                              NE.GDI.FTOT.KN.87.ZG
## 11132                              NE.GDI.FTOT.SNA08.CR
## 11133                                    NE.GDI.FTOT.ZS
## 11134                                    NE.GDI.IMPT.CR
## 11135                              NE.GDI.IMPT.SNA08.CR
## 11136                              NE.GDI.INEX.SNA08.CR
## 11137                                    NE.GDI.PCAP.KD
## 11138                                 NE.GDI.PCAP.KD.87
## 11139                                    NE.GDI.STKB.CD
## 11140                                    NE.GDI.STKB.CN
## 11141                                    NE.GDI.STKB.CR
## 11142                                 NE.GDI.STKB.KD.87
## 11143                                    NE.GDI.STKB.KN
## 11144                                 NE.GDI.STKB.KN.87
## 11145                              NE.GDI.STKB.SNA08.CR
## 11146                                    NE.GDI.STPB.CD
## 11147                                    NE.GDI.STPB.CN
## 11148                                    NE.GDI.STPB.KN
## 11149                                    NE.GDI.STPV.CD
## 11150                                    NE.GDI.STPV.CN
## 11151                                    NE.GDI.STPV.KN
## 11152                                    NE.GDI.TOTL.CD
## 11153                                    NE.GDI.TOTL.CN
## 11154                                    NE.GDI.TOTL.CR
## 11155                                    NE.GDI.TOTL.KD
## 11156                                 NE.GDI.TOTL.KD.87
## 11157                                 NE.GDI.TOTL.KD.ZG
## 11158                                    NE.GDI.TOTL.KN
## 11159                                 NE.GDI.TOTL.KN.87
## 11160                              NE.GDI.TOTL.KN.87.ZG
## 11161                              NE.GDI.TOTL.SNA08.CR
## 11162                                    NE.GDI.TOTL.ZG
## 11163                                    NE.GDI.TOTL.ZS
## 11164                                    NE.IMP.GNFS.CD
## 11165                                    NE.IMP.GNFS.CN
## 11166                                    NE.IMP.GNFS.KD
## 11167                                 NE.IMP.GNFS.KD.87
## 11168                                 NE.IMP.GNFS.KD.ZG
## 11169                                    NE.IMP.GNFS.KN
## 11170                                 NE.IMP.GNFS.KN.87
## 11171                              NE.IMP.GNFS.KN.87.ZG
## 11172                                    NE.IMP.GNFS.XN
## 11173                                    NE.IMP.GNFS.ZS
## 11174                                    NE.MRCH.GDP.ZS
## 11175                                    NE.RSB.GNFS.CD
## 11176                                    NE.RSB.GNFS.CN
## 11177                                 NE.RSB.GNFS.KD.87
## 11178                                    NE.RSB.GNFS.KN
## 11179                                 NE.RSB.GNFS.KN.87
## 11180                                    NE.RSB.GNFS.ZG
## 11181                                    NE.RSB.GNFS.ZS
## 11182                                    NE.RSB.TOTL.KN
## 11183                                    NE.TRD.GNFS.CD
## 11184                                    NE.TRD.GNFS.ZS
## 11185                                    NE.TRM.TRAD.XN
## 11186                                    NE.TRM.TRAD.XU
## 11187                                              NEER
## 11188                                    NP.AGR.TOTL.CN
## 11189                                    NP.AGR.TOTL.IN
## 11190                                    NP.AGR.TOTL.KN
## 11191                                    NP.AGR.TOTL.ZG
## 11192                                    NP.IND.TOTL.CN
## 11193                                    NP.IND.TOTL.IN
## 11194                                    NP.IND.TOTL.KN
## 11195                                    NP.IND.TOTL.ZG
## 11196                                    NP.MAN.TOTL.CN
## 11197                                    NP.MAN.TOTL.IN
## 11198                                    NP.MAN.TOTL.KN
## 11199                                    NP.SRV.TOTL.CN
## 11200                                    NP.SRV.TOTL.KN
## 11201                                    NP.SRV.TOTL.ZG
## 11202                                  NRRV.SHR.FRST.CR
## 11203                                   NRRV.SHR.FSH.CR
## 11204                                   NRRV.SHR.GAS.CR
## 11205                                  NRRV.SHR.GEOT.CR
## 11206                                   NRRV.SHR.MIN.CR
## 11207                                  NRRV.SHR.PETR.CR
## 11208                                    NV.AGR.EMPL.KD
## 11209                                 NV.AGR.PCAP.KD.ZG
## 11210                                    NV.AGR.TOTL.CD
## 11211                                    NV.AGR.TOTL.CN
## 11212                                    NV.AGR.TOTL.KD
## 11213                                 NV.AGR.TOTL.KD.87
## 11214                                 NV.AGR.TOTL.KD.ZG
## 11215                                    NV.AGR.TOTL.KN
## 11216                                 NV.AGR.TOTL.KN.87
## 11217                              NV.AGR.TOTL.KN.87.ZG
## 11218                                    NV.AGR.TOTL.XD
## 11219                                    NV.AGR.TOTL.ZG
## 11220                                    NV.AGR.TOTL.ZS
## 11221                                    NV.FSM.TOTL.CN
## 11222                                    NV.FSM.TOTL.KN
## 11223                                    NV.IND.CNST.CD
## 11224                                    NV.IND.CNST.CN
## 11225                                    NV.IND.CNST.KN
## 11226                                    NV.IND.EMPL.KD
## 11227                                    NV.IND.GELW.CD
## 11228                                    NV.IND.GELW.CN
## 11229                                    NV.IND.GELW.KN
## 11230                                    NV.IND.MANF.CD
## 11231                                    NV.IND.MANF.CN
## 11232                                    NV.IND.MANF.KD
## 11233                                 NV.IND.MANF.KD.87
## 11234                                 NV.IND.MANF.KD.ZG
## 11235                                    NV.IND.MANF.KN
## 11236                                 NV.IND.MANF.KN.87
## 11237                              NV.IND.MANF.KN.87.ZG
## 11238                                 NV.IND.MANF.KN.ZG
## 11239                                    NV.IND.MANF.XD
## 11240                                    NV.IND.MANF.ZS
## 11241                                    NV.IND.MINQ.CD
## 11242                                    NV.IND.MINQ.CN
## 11243                                    NV.IND.MINQ.KD
## 11244                                    NV.IND.MINQ.KN
## 11245                                    NV.IND.TOTL.CD
## 11246                                    NV.IND.TOTL.CN
## 11247                                    NV.IND.TOTL.KD
## 11248                                 NV.IND.TOTL.KD.87
## 11249                                 NV.IND.TOTL.KD.ZG
## 11250                                    NV.IND.TOTL.KN
## 11251                                 NV.IND.TOTL.KN.87
## 11252                              NV.IND.TOTL.KN.87.ZG
## 11253                                    NV.IND.TOTL.XD
## 11254                                    NV.IND.TOTL.ZG
## 11255                                    NV.IND.TOTL.ZS
## 11256                                 NV.MNF.CHEM.UN.ZS
## 11257                                 NV.MNF.CHEM.ZS.UN
## 11258                                 NV.MNF.FBTO.UN.ZS
## 11259                                 NV.MNF.FBTO.ZS.UN
## 11260                                 NV.MNF.MTRN.UN.ZS
## 11261                                 NV.MNF.MTRN.ZS.UN
## 11262                                 NV.MNF.OTHR.UN.ZS
## 11263                                 NV.MNF.OTHR.ZS.UN
## 11264                                 NV.MNF.TECH.ZS.UN
## 11265                                 NV.MNF.TXTL.UN.ZS
## 11266                                 NV.MNF.TXTL.ZS.UN
## 11267                                    NV.SRV.ADMN.CD
## 11268                                    NV.SRV.ADMN.CN
## 11269                                    NV.SRV.ADMN.KN
## 11270                                    NV.SRV.BNKG.CD
## 11271                                    NV.SRV.BNKG.CN
## 11272                                    NV.SRV.BNKG.KN
## 11273                                    NV.SRV.DISC.CD
## 11274                                    NV.SRV.DISC.CN
## 11275                                    NV.SRV.DISC.KN
## 11276                                    NV.SRV.DWEL.CD
## 11277                                    NV.SRV.DWEL.CN
## 11278                                    NV.SRV.DWEL.KN
## 11279                                    NV.SRV.EMPL.KD
## 11280                                    NV.SRV.OTHR.CD
## 11281                                    NV.SRV.OTHR.CN
## 11282                                    NV.SRV.OTHR.KN
## 11283                                    NV.SRV.TETC.CD
## 11284                                    NV.SRV.TETC.CN
## 11285                                    NV.SRV.TETC.KD
## 11286                                 NV.SRV.TETC.KD.87
## 11287                                 NV.SRV.TETC.KD.ZG
## 11288                                    NV.SRV.TETC.KN
## 11289                                 NV.SRV.TETC.KN.87
## 11290                              NV.SRV.TETC.KN.87.ZG
## 11291                                 NV.SRV.TETC.KN.ZG
## 11292                                    NV.SRV.TETC.ZG
## 11293                                    NV.SRV.TETC.ZS
## 11294                                    NV.SRV.TOTL.CD
## 11295                                    NV.SRV.TOTL.CN
## 11296                                    NV.SRV.TOTL.KD
## 11297                                 NV.SRV.TOTL.KD.ZG
## 11298                                    NV.SRV.TOTL.KN
## 11299                                    NV.SRV.TOTL.ZS
## 11300                                    NV.SRV.TRAD.CD
## 11301                                    NV.SRV.TRAD.CN
## 11302                                    NV.SRV.TRAD.KN
## 11303                                    NV.SRV.TRAN.CD
## 11304                                    NV.SRV.TRAN.CN
## 11305                                    NV.SRV.TRAN.KN
## 11306                                    NW.HCA.FEMA.PC
## 11307                                    NW.HCA.FEMA.TO
## 11308                                    NW.HCA.FEMP.PC
## 11309                                    NW.HCA.FEMP.TO
## 11310                                    NW.HCA.FSEM.PC
## 11311                                    NW.HCA.FSEM.TO
## 11312                                    NW.HCA.MALE.PC
## 11313                                    NW.HCA.MALE.TO
## 11314                                    NW.HCA.MEMP.PC
## 11315                                    NW.HCA.MEMP.TO
## 11316                                    NW.HCA.MSEM.PC
## 11317                                    NW.HCA.MSEM.TO
## 11318                                         NW.HCA.PC
## 11319                                         NW.HCA.TO
## 11320                                    NW.NCA.AGRI.PC
## 11321                                    NW.NCA.AGRI.TO
## 11322                                    NW.NCA.CROL.PC
## 11323                                    NW.NCA.CROL.TO
## 11324                                    NW.NCA.FECO.PC
## 11325                                    NW.NCA.FECO.TO
## 11326                                    NW.NCA.FISH.PC
## 11327                                    NW.NCA.FISH.TO
## 11328                                    NW.NCA.FOSL.PC
## 11329                                    NW.NCA.FOSL.TO
## 11330                                    NW.NCA.FTIM.PC
## 11331                                    NW.NCA.FTIM.TO
## 11332                                    NW.NCA.MANG.PC
## 11333                                    NW.NCA.MANG.TO
## 11334                                    NW.NCA.MINR.PC
## 11335                                    NW.NCA.MINR.TO
## 11336                                    NW.NCA.PASL.PC
## 11337                                    NW.NCA.PASL.TO
## 11338                                         NW.NCA.PC
## 11339                                    NW.NCA.PRAR.PC
## 11340                                    NW.NCA.PRAR.TO
## 11341                                    NW.NCA.RNEW.PC
## 11342                                    NW.NCA.RNEW.TO
## 11343                                    NW.NCA.SACO.PC
## 11344                                    NW.NCA.SACO.TO
## 11345                                    NW.NCA.SAGA.PC
## 11346                                    NW.NCA.SAGA.TO
## 11347                                    NW.NCA.SAOI.PC
## 11348                                    NW.NCA.SAOI.TO
## 11349                                    NW.NCA.SSOI.PC
## 11350                                    NW.NCA.SSOI.TO
## 11351                                         NW.NCA.TO
## 11352                                         NW.NFA.PC
## 11353                                         NW.NFA.TO
## 11354                                         NW.PCA.PC
## 11355                                         NW.PCA.TO
## 11356                                         NW.TOW.PC
## 11357                                         NW.TOW.TO
## 11358                                    NY.ADJ.AEDU.CD
## 11359                                 NY.ADJ.AEDU.GN.ZS
## 11360                                    NY.ADJ.DCO2.CD
## 11361                                 NY.ADJ.DCO2.GN.ZS
## 11362                                    NY.ADJ.DFOR.CD
## 11363                                 NY.ADJ.DFOR.GN.ZS
## 11364                                    NY.ADJ.DKAP.CD
## 11365                                 NY.ADJ.DKAP.GN.ZS
## 11366                                    NY.ADJ.DMIN.CD
## 11367                                 NY.ADJ.DMIN.GN.ZS
## 11368                                    NY.ADJ.DNGY.CD
## 11369                                 NY.ADJ.DNGY.GN.ZS
## 11370                                    NY.ADJ.DPEM.CD
## 11371                                 NY.ADJ.DPEM.GN.ZS
## 11372                                 NY.ADJ.DRES.GN.ZS
## 11373                                    NY.ADJ.ICTR.CD
## 11374                                 NY.ADJ.ICTR.GN.ZS
## 11375                                    NY.ADJ.NNAT.CD
## 11376                                 NY.ADJ.NNAT.GN.ZS
## 11377                                    NY.ADJ.NNTY.CD
## 11378                                    NY.ADJ.NNTY.KD
## 11379                                 NY.ADJ.NNTY.KD.ZG
## 11380                                 NY.ADJ.NNTY.PC.CD
## 11381                                 NY.ADJ.NNTY.PC.KD
## 11382                              NY.ADJ.NNTY.PC.KD.ZG
## 11383                                    NY.ADJ.SVNG.CD
## 11384                                 NY.ADJ.SVNG.GN.ZS
## 11385                                 NY.ADJ.SVNG.PC.CD
## 11386                                    NY.ADJ.SVNX.CD
## 11387                                 NY.ADJ.SVNX.GN.ZS
## 11388                                 NY.AGR.SUBS.GD.ZS
## 11389                                 NY.EXP.CAPM.KD.87
## 11390                                    NY.EXP.CAPM.KN
## 11391                                 NY.EXP.CAPM.KN.87
## 11392                                 NY.GDP.COAL.RT.ZS
## 11393                                 NY.GDP.DEFL.87.ZG
## 11394                                 NY.GDP.DEFL.KD.ZG
## 11395                              NY.GDP.DEFL.KD.ZG.AD
## 11396                                    NY.GDP.DEFL.ZS
## 11397                                 NY.GDP.DEFL.ZS.87
## 11398                                 NY.GDP.DEFL.ZS.AD
## 11399                                    NY.GDP.DISC.CD
## 11400                                    NY.GDP.DISC.CN
## 11401                                    NY.GDP.DISC.KN
## 11402                                    NY.GDP.FCST.CD
## 11403                                    NY.GDP.FCST.CN
## 11404                                    NY.GDP.FCST.KD
## 11405                                 NY.GDP.FCST.KD.87
## 11406                                    NY.GDP.FCST.KN
## 11407                                 NY.GDP.FCST.KN.87
## 11408                                 NY.GDP.FRST.RT.ZS
## 11409                                 NY.GDP.MINR.RT.ZS
## 11410                                    NY.GDP.MKTP.CD
## 11411                                 NY.GDP.MKTP.CD.XD
## 11412                                    NY.GDP.MKTP.CN
## 11413                                 NY.GDP.MKTP.CN.AD
## 11414                                 NY.GDP.MKTP.CN.XD
## 11415                                    NY.GDP.MKTP.IN
## 11416                                    NY.GDP.MKTP.KD
## 11417                                 NY.GDP.MKTP.KD.87
## 11418                                 NY.GDP.MKTP.KD.ZG
## 11419                                    NY.GDP.MKTP.KN
## 11420                                 NY.GDP.MKTP.KN.87
## 11421                              NY.GDP.MKTP.KN.87.ZG
## 11422                                 NY.GDP.MKTP.PP.CD
## 11423                                 NY.GDP.MKTP.PP.KD
## 11424                              NY.GDP.MKTP.PP.KD.87
## 11425                                    NY.GDP.MKTP.XD
## 11426                                  NY.GDP.MKTP.XU.E
## 11427                                    NY.GDP.MKTP.ZG
## 11428                                 NY.GDP.NGAS.RT.ZS
## 11429                                    NY.GDP.PCAP.CD
## 11430                                    NY.GDP.PCAP.CN
## 11431                                    NY.GDP.PCAP.KD
## 11432                                 NY.GDP.PCAP.KD.ZG
## 11433                                    NY.GDP.PCAP.KN
## 11434                                 NY.GDP.PCAP.PP.CD
## 11435                                 NY.GDP.PCAP.PP.KD
## 11436                              NY.GDP.PCAP.PP.KD.87
## 11437                              NY.GDP.PCAP.PP.KD.ZG
## 11438                                 NY.GDP.PETR.RT.ZS
## 11439                                 NY.GDP.TOTL.RT.ZS
## 11440                                    NY.GDS.PRVT.CD
## 11441                                    NY.GDS.PRVT.CN
## 11442                                    NY.GDS.PRVT.KN
## 11443                                    NY.GDS.PUBL.CD
## 11444                                    NY.GDS.PUBL.CN
## 11445                                    NY.GDS.PUBL.KN
## 11446                                    NY.GDS.TOTL.CD
## 11447                                    NY.GDS.TOTL.CN
## 11448                                    NY.GDS.TOTL.KD
## 11449                                 NY.GDS.TOTL.KD.87
## 11450                                    NY.GDS.TOTL.KN
## 11451                                 NY.GDS.TOTL.KN.87
## 11452                                    NY.GDS.TOTL.ZS
## 11453                                    NY.GDY.TOTL.KD
## 11454                                 NY.GDY.TOTL.KD.87
## 11455                                    NY.GDY.TOTL.KN
## 11456                                 NY.GDY.TOTL.KN.87
## 11457                                 NY.GEN.AEDU.GD.ZS
## 11458                                 NY.GEN.DCO2.GD.ZS
## 11459                                 NY.GEN.DFOR.GD.ZS
## 11460                                 NY.GEN.DKAP.GD.ZS
## 11461                                 NY.GEN.DMIN.GD.ZS
## 11462                                 NY.GEN.DNGY.GD.ZS
## 11463                                 NY.GEN.NDOM.GD.ZS
## 11464                                 NY.GEN.SVNG.GD.ZS
## 11465                                    NY.GNP.ATLS.CD
## 11466                                    NY.GNP.MKTP.CD
## 11467                                    NY.GNP.MKTP.CN
## 11468                                 NY.GNP.MKTP.CN.AD
## 11469                                    NY.GNP.MKTP.KD
## 11470                                 NY.GNP.MKTP.KD.87
## 11471                                 NY.GNP.MKTP.KD.ZG
## 11472                                    NY.GNP.MKTP.KN
## 11473                                 NY.GNP.MKTP.KN.87
## 11474                              NY.GNP.MKTP.KN.87.ZG
## 11475                                 NY.GNP.MKTP.PC.CD
## 11476                                 NY.GNP.MKTP.PP.CD
## 11477                                 NY.GNP.MKTP.PP.KD
## 11478                              NY.GNP.MKTP.PP.KD.87
## 11479                                    NY.GNP.PCAP.CD
## 11480                                 NY.GNP.PCAP.CD.AT
## 11481                                    NY.GNP.PCAP.CN
## 11482                                    NY.GNP.PCAP.KD
## 11483                                 NY.GNP.PCAP.KD.87
## 11484                                 NY.GNP.PCAP.KD.ZG
## 11485                                    NY.GNP.PCAP.KN
## 11486                                 NY.GNP.PCAP.KN.87
## 11487                                 NY.GNP.PCAP.PP.CD
## 11488                                 NY.GNP.PCAP.PP.KD
## 11489                              NY.GNP.PCAP.PP.KD.87
## 11490                                    NY.GNP.PCAP.ZG
## 11491                                    NY.GNP.PCAT.CD
## 11492                                    NY.GNS.ICTR.CD
## 11493                                    NY.GNS.ICTR.CN
## 11494                                 NY.GNS.ICTR.GN.ZS
## 11495                                    NY.GNS.ICTR.KD
## 11496                                    NY.GNS.ICTR.KN
## 11497                                    NY.GNS.ICTR.ZS
## 11498                                    NY.GNS.PRVT.CD
## 11499                                    NY.GNS.PRVT.CN
## 11500                                    NY.GNS.PRVT.KN
## 11501                                    NY.GNS.PUBL.CD
## 11502                                    NY.GNS.PUBL.CN
## 11503                                    NY.GNS.PUBL.KN
## 11504                                    NY.GNS.TOTL.CN
## 11505                                    NY.GNY.PCAP.KD
## 11506                                 NY.GNY.PCAP.KD.87
## 11507                                    NY.GNY.TOTL.CN
## 11508                                    NY.GNY.TOTL.KD
## 11509                                 NY.GNY.TOTL.KD.87
## 11510                                    NY.GNY.TOTL.KN
## 11511                                 NY.GNY.TOTL.KN.87
## 11512                                    NY.GNY.TOTL.ZG
## 11513                                    NY.GSR.NFCY.CD
## 11514                                    NY.GSR.NFCY.CN
## 11515                                 NY.GSR.NFCY.KD.87
## 11516                                    NY.GSR.NFCY.KN
## 11517                                 NY.GSR.NFCY.KN.87
## 11518                                    NY.SVF.NFSY.CN
## 11519                                    NY.TAX.IDRT.CD
## 11520                                    NY.TAX.IDRT.CN
## 11521                                    NY.TAX.NIND.CD
## 11522                                    NY.TAX.NIND.CN
## 11523                                 NY.TAX.NIND.KD.87
## 11524                                    NY.TAX.NIND.KN
## 11525                                 NY.TAX.NIND.KN.87
## 11526                                    NY.TAX.SUBS.CD
## 11527                                    NY.TAX.SUBS.CN
## 11528                                    NY.TRF.NCTR.CD
## 11529                                    NY.TRF.NCTR.CN
## 11530                                    NY.TRF.NCTR.KN
## 11531                                 NY.TTF.GNFS.KD.87
## 11532                                    NY.TTF.GNFS.KN
## 11533                                 NY.TTF.GNFS.KN.87
## 11534                                    NY.TTF.MRCH.KN
## 11535                                      NYGDPMKTPKDZ
## 11536                                     NYGDPMKTPSACD
## 11537                                     NYGDPMKTPSACN
## 11538                                     NYGDPMKTPSAKD
## 11539                                     NYGDPMKTPSAKN
## 11540                                    OECD.TSAL.0.E0
## 11541                                   OECD.TSAL.0.E10
## 11542                                   OECD.TSAL.0.E15
## 11543                                  OECD.TSAL.0.ETOP
## 11544                                    OECD.TSAL.1.E0
## 11545                                   OECD.TSAL.1.E10
## 11546                                   OECD.TSAL.1.E15
## 11547                                  OECD.TSAL.1.ETOP
## 11548                                    OECD.TSAL.2.E0
## 11549                                   OECD.TSAL.2.E10
## 11550                                   OECD.TSAL.2.E15
## 11551                                  OECD.TSAL.2.ETOP
## 11552                                    OECD.TSAL.3.E0
## 11553                                   OECD.TSAL.3.E10
## 11554                                   OECD.TSAL.3.E15
## 11555                                  OECD.TSAL.3.ETOP
## 11556                                  OTHR.TAX.PAID.ZS
## 11557                                           p_F_nsk
## 11558                                           p_F_skl
## 11559                                           p_M_nsk
## 11560                                           p_M_skl
## 11561                                       PA.NUS.ATLS
## 11562                                       PA.NUS.FCRF
## 11563                                    PA.NUS.FCRF.XR
## 11564                                        PA.NUS.PPP
## 11565                                     PA.NUS.PPP.05
## 11566                                    PA.NUS.PPPC.RF
## 11567                                    PA.NUS.PRVT.PP
## 11568                                 PA.NUS.PRVT.PP.05
## 11569                                    PA.PPR.MAIZ.CD
## 11570                                    PA.PPR.MAIZ.CN
## 11571                                    PA.PPR.WHEA.CD
## 11572                                    PA.PPR.WHEA.CN
## 11573                                      PALM.LND.DMG
## 11574                                      PALM.LND.IMM
## 11575                                      PALM.LND.MTR
## 11576                                     PALM.LND.PRVT
## 11577                                     PALM.LND.SMHD
## 11578                                      PALM.LND.SOE
## 11579                                     PALM.LND.TOTL
## 11580                                     PALM.PRD.PRVT
## 11581                                     PALM.PRD.SMHD
## 11582                                      PALM.PRD.SOE
## 11583                                     PALM.PRD.TOTL
## 11584                                     PALM.YLD.PRVT
## 11585                                     PALM.YLD.SMHD
## 11586                                      PALM.YLD.SOE
## 11587                        PAY.TAX.COIT.AU.HRS.DB1719
## 11588                PAY.TAX.COIT.AU.HRS.TM.DB1719.DFRN
## 11589                        PAY.TAX.COIT.AU.WKS.DB1719
## 11590                   PAY.TAX.COIT.WKS.TM.DB1719.DFRN
## 11591                               PAY.TAX.DB0616.DFRN
## 11592                               PAY.TAX.DB1719.DRFN
## 11593                         PAY.TAX.LABR.TAX.CONTR.ZS
## 11594              PAY.TAX.POST.FIL.XD.0100.DB1719.DFRN
## 11595                                PAY.TAX.PRFT.CP.ZS
## 11596                              PAY.TAX.PYMT.FREQ.NO
## 11597                              PAY.TAX.PYMT.NO.DFRN
## 11598                                   PAY.TAX.RK.DB19
## 11599                                        PAY.TAX.TM
## 11600                                   PAY.TAX.TM.DFRN
## 11601                             PAY.TAX.TOT.TAX.RT.ZS
## 11602                       PAY.TAX.TOT.TAX.RT.ZS.DRFRN
## 11603                 PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719
## 11604            PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719.DFRN
## 11605               PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719
## 11606          PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719.DFRN
## 11607                                       PE.NUS.FCAE
## 11608                                       PE.USG.LNDN
## 11609                         per_allsp.adq_ep_preT_tot
## 11610                              per_allsp.adq_ep_tot
## 11611                        per_allsp.adq_pop_preT_tot
## 11612                             per_allsp.adq_pop_rur
## 11613                             per_allsp.adq_pop_tot
## 11614                             per_allsp.adq_pop_urb
## 11615                         per_allsp.adq_q1_preT_tot
## 11616                              per_allsp.adq_q1_rur
## 11617                              per_allsp.adq_q1_tot
## 11618                              per_allsp.adq_q1_urb
## 11619                         per_allsp.adq_q2_preT_tot
## 11620                              per_allsp.adq_q2_rur
## 11621                              per_allsp.adq_q2_tot
## 11622                              per_allsp.adq_q2_urb
## 11623                         per_allsp.adq_q3_preT_tot
## 11624                              per_allsp.adq_q3_rur
## 11625                              per_allsp.adq_q3_tot
## 11626                              per_allsp.adq_q3_urb
## 11627                         per_allsp.adq_q4_preT_tot
## 11628                              per_allsp.adq_q4_rur
## 11629                              per_allsp.adq_q4_tot
## 11630                              per_allsp.adq_q4_urb
## 11631                         per_allsp.adq_q5_preT_tot
## 11632                              per_allsp.adq_q5_rur
## 11633                              per_allsp.adq_q5_tot
## 11634                              per_allsp.adq_q5_urb
## 11635                         per_allsp.avt_ep_preT_tot
## 11636                              per_allsp.avt_ep_tot
## 11637                        per_allsp.avt_pop_preT_tot
## 11638                             per_allsp.avt_pop_rur
## 11639                             per_allsp.avt_pop_tot
## 11640                             per_allsp.avt_pop_urb
## 11641                         per_allsp.avt_q1_preT_tot
## 11642                              per_allsp.avt_q1_rur
## 11643                              per_allsp.avt_q1_tot
## 11644                              per_allsp.avt_q1_urb
## 11645                         per_allsp.avt_q2_preT_tot
## 11646                              per_allsp.avt_q2_rur
## 11647                              per_allsp.avt_q2_tot
## 11648                              per_allsp.avt_q2_urb
## 11649                         per_allsp.avt_q3_preT_tot
## 11650                              per_allsp.avt_q3_rur
## 11651                              per_allsp.avt_q3_tot
## 11652                              per_allsp.avt_q3_urb
## 11653                         per_allsp.avt_q4_preT_tot
## 11654                              per_allsp.avt_q4_rur
## 11655                              per_allsp.avt_q4_tot
## 11656                              per_allsp.avt_q4_urb
## 11657                         per_allsp.avt_q5_preT_tot
## 11658                              per_allsp.avt_q5_rur
## 11659                              per_allsp.avt_q5_tot
## 11660                              per_allsp.avt_q5_urb
## 11661                         per_allsp.ben_ep_preT_tot
## 11662                              per_allsp.ben_ep_tot
## 11663                         per_allsp.ben_q1_preT_tot
## 11664                              per_allsp.ben_q1_rur
## 11665                              per_allsp.ben_q1_tot
## 11666                              per_allsp.ben_q1_urb
## 11667                         per_allsp.ben_q2_preT_tot
## 11668                              per_allsp.ben_q2_rur
## 11669                              per_allsp.ben_q2_tot
## 11670                              per_allsp.ben_q2_urb
## 11671                         per_allsp.ben_q3_preT_tot
## 11672                              per_allsp.ben_q3_rur
## 11673                              per_allsp.ben_q3_tot
## 11674                              per_allsp.ben_q3_urb
## 11675                         per_allsp.ben_q4_preT_tot
## 11676                              per_allsp.ben_q4_rur
## 11677                              per_allsp.ben_q4_tot
## 11678                              per_allsp.ben_q4_urb
## 11679                         per_allsp.ben_q5_preT_tot
## 11680                              per_allsp.ben_q5_rur
## 11681                              per_allsp.ben_q5_tot
## 11682                              per_allsp.ben_q5_urb
## 11683                         per_allsp.bry_ep_preT_tot
## 11684                              per_allsp.bry_ep_tot
## 11685                         per_allsp.bry_q1_preT_tot
## 11686                              per_allsp.bry_q1_rur
## 11687                              per_allsp.bry_q1_tot
## 11688                              per_allsp.bry_q1_urb
## 11689                         per_allsp.bry_q2_preT_tot
## 11690                              per_allsp.bry_q2_rur
## 11691                              per_allsp.bry_q2_tot
## 11692                              per_allsp.bry_q2_urb
## 11693                         per_allsp.bry_q3_preT_tot
## 11694                              per_allsp.bry_q3_rur
## 11695                              per_allsp.bry_q3_tot
## 11696                              per_allsp.bry_q3_urb
## 11697                         per_allsp.bry_q4_preT_tot
## 11698                              per_allsp.bry_q4_rur
## 11699                              per_allsp.bry_q4_tot
## 11700                              per_allsp.bry_q4_urb
## 11701                         per_allsp.bry_q5_preT_tot
## 11702                              per_allsp.bry_q5_rur
## 11703                              per_allsp.bry_q5_tot
## 11704                              per_allsp.bry_q5_urb
## 11705                         per_allsp.cba_ep_preT_tot
## 11706                              per_allsp.cba_ep_tot
## 11707                         per_allsp.cba_q1_preT_tot
## 11708                              per_allsp.cba_q1_rur
## 11709                              per_allsp.cba_q1_tot
## 11710                              per_allsp.cba_q1_urb
## 11711                         per_allsp.cov_ep_preT_tot
## 11712                              per_allsp.cov_ep_tot
## 11713                        per_allsp.cov_pop_preT_tot
## 11714                             per_allsp.cov_pop_rur
## 11715                             per_allsp.cov_pop_tot
## 11716                             per_allsp.cov_pop_urb
## 11717                         per_allsp.cov_q1_preT_tot
## 11718                              per_allsp.cov_q1_rur
## 11719                              per_allsp.cov_q1_tot
## 11720                              per_allsp.cov_q1_urb
## 11721                         per_allsp.cov_q2_preT_tot
## 11722                              per_allsp.cov_q2_rur
## 11723                              per_allsp.cov_q2_tot
## 11724                              per_allsp.cov_q2_urb
## 11725                         per_allsp.cov_q3_preT_tot
## 11726                              per_allsp.cov_q3_rur
## 11727                              per_allsp.cov_q3_tot
## 11728                              per_allsp.cov_q3_urb
## 11729                         per_allsp.cov_q4_preT_tot
## 11730                              per_allsp.cov_q4_rur
## 11731                              per_allsp.cov_q4_tot
## 11732                              per_allsp.cov_q4_urb
## 11733                         per_allsp.cov_q5_preT_tot
## 11734                              per_allsp.cov_q5_rur
## 11735                              per_allsp.cov_q5_tot
## 11736                              per_allsp.cov_q5_urb
## 11737                                per_allsp_gini_rur
## 11738                                per_allsp_gini_tot
## 11739                                per_allsp_gini_urb
## 11740                               per_allsp_p0_ep_tot
## 11741                                  per_allsp_p0_rur
## 11742                                  per_allsp_p0_tot
## 11743                                  per_allsp_p0_urb
## 11744                               per_allsp_p1_ep_tot
## 11745                                  per_allsp_p1_rur
## 11746                                  per_allsp_p1_tot
## 11747                                  per_allsp_p1_urb
## 11748                         per_lm_ac.adq_ep_preT_tot
## 11749                              per_lm_ac.adq_ep_tot
## 11750                        per_lm_ac.adq_pop_preT_tot
## 11751                             per_lm_ac.adq_pop_rur
## 11752                             per_lm_ac.adq_pop_tot
## 11753                             per_lm_ac.adq_pop_urb
## 11754                         per_lm_ac.adq_q1_preT_tot
## 11755                              per_lm_ac.adq_q1_rur
## 11756                              per_lm_ac.adq_q1_tot
## 11757                              per_lm_ac.adq_q1_urb
## 11758                         per_lm_ac.adq_q2_preT_tot
## 11759                              per_lm_ac.adq_q2_rur
## 11760                              per_lm_ac.adq_q2_tot
## 11761                              per_lm_ac.adq_q2_urb
## 11762                         per_lm_ac.adq_q3_preT_tot
## 11763                              per_lm_ac.adq_q3_rur
## 11764                              per_lm_ac.adq_q3_tot
## 11765                              per_lm_ac.adq_q3_urb
## 11766                         per_lm_ac.adq_q4_preT_tot
## 11767                              per_lm_ac.adq_q4_rur
## 11768                              per_lm_ac.adq_q4_tot
## 11769                              per_lm_ac.adq_q4_urb
## 11770                         per_lm_ac.adq_q5_preT_tot
## 11771                              per_lm_ac.adq_q5_rur
## 11772                              per_lm_ac.adq_q5_tot
## 11773                              per_lm_ac.adq_q5_urb
## 11774                         per_lm_ac.avt_ep_preT_tot
## 11775                              per_lm_ac.avt_ep_tot
## 11776                        per_lm_ac.avt_pop_preT_tot
## 11777                             per_lm_ac.avt_pop_rur
## 11778                             per_lm_ac.avt_pop_tot
## 11779                             per_lm_ac.avt_pop_urb
## 11780                         per_lm_ac.avt_q1_preT_tot
## 11781                              per_lm_ac.avt_q1_rur
## 11782                              per_lm_ac.avt_q1_tot
## 11783                              per_lm_ac.avt_q1_urb
## 11784                         per_lm_ac.avt_q2_preT_tot
## 11785                              per_lm_ac.avt_q2_rur
## 11786                              per_lm_ac.avt_q2_tot
## 11787                              per_lm_ac.avt_q2_urb
## 11788                         per_lm_ac.avt_q3_preT_tot
## 11789                              per_lm_ac.avt_q3_rur
## 11790                              per_lm_ac.avt_q3_tot
## 11791                              per_lm_ac.avt_q3_urb
## 11792                         per_lm_ac.avt_q4_preT_tot
## 11793                              per_lm_ac.avt_q4_rur
## 11794                              per_lm_ac.avt_q4_tot
## 11795                              per_lm_ac.avt_q4_urb
## 11796                         per_lm_ac.avt_q5_preT_tot
## 11797                              per_lm_ac.avt_q5_rur
## 11798                              per_lm_ac.avt_q5_tot
## 11799                              per_lm_ac.avt_q5_urb
## 11800                         per_lm_ac.ben_ep_preT_tot
## 11801                              per_lm_ac.ben_ep_tot
## 11802                         per_lm_ac.ben_q1_preT_tot
## 11803                              per_lm_ac.ben_q1_rur
## 11804                              per_lm_ac.ben_q1_tot
## 11805                              per_lm_ac.ben_q1_urb
## 11806                         per_lm_ac.ben_q2_preT_tot
## 11807                              per_lm_ac.ben_q2_rur
## 11808                              per_lm_ac.ben_q2_tot
## 11809                              per_lm_ac.ben_q2_urb
## 11810                         per_lm_ac.ben_q3_preT_tot
## 11811                              per_lm_ac.ben_q3_rur
## 11812                              per_lm_ac.ben_q3_tot
## 11813                              per_lm_ac.ben_q3_urb
## 11814                         per_lm_ac.ben_q4_preT_tot
## 11815                              per_lm_ac.ben_q4_rur
## 11816                              per_lm_ac.ben_q4_tot
## 11817                              per_lm_ac.ben_q4_urb
## 11818                         per_lm_ac.ben_q5_preT_tot
## 11819                              per_lm_ac.ben_q5_rur
## 11820                              per_lm_ac.ben_q5_tot
## 11821                              per_lm_ac.ben_q5_urb
## 11822                         per_lm_ac.bry_ep_preT_tot
## 11823                              per_lm_ac.bry_ep_tot
## 11824                         per_lm_ac.bry_q1_preT_tot
## 11825                              per_lm_ac.bry_q1_rur
## 11826                              per_lm_ac.bry_q1_tot
## 11827                              per_lm_ac.bry_q1_urb
## 11828                         per_lm_ac.bry_q2_preT_tot
## 11829                              per_lm_ac.bry_q2_rur
## 11830                              per_lm_ac.bry_q2_tot
## 11831                              per_lm_ac.bry_q2_urb
## 11832                         per_lm_ac.bry_q3_preT_tot
## 11833                              per_lm_ac.bry_q3_rur
## 11834                              per_lm_ac.bry_q3_tot
## 11835                              per_lm_ac.bry_q3_urb
## 11836                         per_lm_ac.bry_q4_preT_tot
## 11837                              per_lm_ac.bry_q4_rur
## 11838                              per_lm_ac.bry_q4_tot
## 11839                              per_lm_ac.bry_q4_urb
## 11840                         per_lm_ac.bry_q5_preT_tot
## 11841                              per_lm_ac.bry_q5_rur
## 11842                              per_lm_ac.bry_q5_tot
## 11843                              per_lm_ac.bry_q5_urb
## 11844                         per_lm_ac.cba_ep_preT_tot
## 11845                              per_lm_ac.cba_ep_tot
## 11846                         per_lm_ac.cba_q1_preT_tot
## 11847                              per_lm_ac.cba_q1_rur
## 11848                              per_lm_ac.cba_q1_tot
## 11849                              per_lm_ac.cba_q1_urb
## 11850                         per_lm_ac.cov_ep_preT_tot
## 11851                              per_lm_ac.cov_ep_tot
## 11852                        per_lm_ac.cov_pop_preT_tot
## 11853                             per_lm_ac.cov_pop_rur
## 11854                             per_lm_ac.cov_pop_tot
## 11855                             per_lm_ac.cov_pop_urb
## 11856                         per_lm_ac.cov_q1_preT_tot
## 11857                              per_lm_ac.cov_q1_rur
## 11858                              per_lm_ac.cov_q1_tot
## 11859                              per_lm_ac.cov_q1_urb
## 11860                         per_lm_ac.cov_q2_preT_tot
## 11861                              per_lm_ac.cov_q2_rur
## 11862                              per_lm_ac.cov_q2_tot
## 11863                              per_lm_ac.cov_q2_urb
## 11864                         per_lm_ac.cov_q3_preT_tot
## 11865                              per_lm_ac.cov_q3_rur
## 11866                              per_lm_ac.cov_q3_tot
## 11867                              per_lm_ac.cov_q3_urb
## 11868                         per_lm_ac.cov_q4_preT_tot
## 11869                              per_lm_ac.cov_q4_rur
## 11870                              per_lm_ac.cov_q4_tot
## 11871                              per_lm_ac.cov_q4_urb
## 11872                         per_lm_ac.cov_q5_preT_tot
## 11873                              per_lm_ac.cov_q5_rur
## 11874                              per_lm_ac.cov_q5_tot
## 11875                              per_lm_ac.cov_q5_urb
## 11876                                per_lm_ac_gini_rur
## 11877                                per_lm_ac_gini_tot
## 11878                                per_lm_ac_gini_urb
## 11879                               per_lm_ac_p0_ep_tot
## 11880                                  per_lm_ac_p0_rur
## 11881                                  per_lm_ac_p0_tot
## 11882                                  per_lm_ac_p0_urb
## 11883                               per_lm_ac_p1_ep_tot
## 11884                                  per_lm_ac_p1_rur
## 11885                                  per_lm_ac_p1_tot
## 11886                                  per_lm_ac_p1_urb
## 11887                      per_lm_alllm.adq_ep_preT_tot
## 11888                           per_lm_alllm.adq_ep_tot
## 11889                     per_lm_alllm.adq_pop_preT_tot
## 11890                          per_lm_alllm.adq_pop_rur
## 11891                          per_lm_alllm.adq_pop_tot
## 11892                          per_lm_alllm.adq_pop_urb
## 11893                      per_lm_alllm.adq_q1_preT_tot
## 11894                           per_lm_alllm.adq_q1_rur
## 11895                           per_lm_alllm.adq_q1_tot
## 11896                           per_lm_alllm.adq_q1_urb
## 11897                      per_lm_alllm.adq_q2_preT_tot
## 11898                           per_lm_alllm.adq_q2_rur
## 11899                           per_lm_alllm.adq_q2_tot
## 11900                           per_lm_alllm.adq_q2_urb
## 11901                      per_lm_alllm.adq_q3_preT_tot
## 11902                           per_lm_alllm.adq_q3_rur
## 11903                           per_lm_alllm.adq_q3_tot
## 11904                           per_lm_alllm.adq_q3_urb
## 11905                      per_lm_alllm.adq_q4_preT_tot
## 11906                           per_lm_alllm.adq_q4_rur
## 11907                           per_lm_alllm.adq_q4_tot
## 11908                           per_lm_alllm.adq_q4_urb
## 11909                      per_lm_alllm.adq_q5_preT_tot
## 11910                           per_lm_alllm.adq_q5_rur
## 11911                           per_lm_alllm.adq_q5_tot
## 11912                           per_lm_alllm.adq_q5_urb
## 11913                      per_lm_alllm.avt_ep_preT_tot
## 11914                           per_lm_alllm.avt_ep_tot
## 11915                     per_lm_alllm.avt_pop_preT_tot
## 11916                          per_lm_alllm.avt_pop_rur
## 11917                          per_lm_alllm.avt_pop_tot
## 11918                          per_lm_alllm.avt_pop_urb
## 11919                      per_lm_alllm.avt_q1_preT_tot
## 11920                           per_lm_alllm.avt_q1_rur
## 11921                           per_lm_alllm.avt_q1_tot
## 11922                           per_lm_alllm.avt_q1_urb
## 11923                      per_lm_alllm.avt_q2_preT_tot
## 11924                           per_lm_alllm.avt_q2_rur
## 11925                           per_lm_alllm.avt_q2_tot
## 11926                           per_lm_alllm.avt_q2_urb
## 11927                      per_lm_alllm.avt_q3_preT_tot
## 11928                           per_lm_alllm.avt_q3_rur
## 11929                           per_lm_alllm.avt_q3_tot
## 11930                           per_lm_alllm.avt_q3_urb
## 11931                      per_lm_alllm.avt_q4_preT_tot
## 11932                           per_lm_alllm.avt_q4_rur
## 11933                           per_lm_alllm.avt_q4_tot
## 11934                           per_lm_alllm.avt_q4_urb
## 11935                      per_lm_alllm.avt_q5_preT_tot
## 11936                           per_lm_alllm.avt_q5_rur
## 11937                           per_lm_alllm.avt_q5_tot
## 11938                           per_lm_alllm.avt_q5_urb
## 11939                      per_lm_alllm.ben_ep_preT_tot
## 11940                           per_lm_alllm.ben_ep_tot
## 11941                      per_lm_alllm.ben_q1_preT_tot
## 11942                           per_lm_alllm.ben_q1_rur
## 11943                           per_lm_alllm.ben_q1_tot
## 11944                           per_lm_alllm.ben_q1_urb
## 11945                      per_lm_alllm.ben_q2_preT_tot
## 11946                           per_lm_alllm.ben_q2_rur
## 11947                           per_lm_alllm.ben_q2_tot
## 11948                           per_lm_alllm.ben_q2_urb
## 11949                      per_lm_alllm.ben_q3_preT_tot
## 11950                           per_lm_alllm.ben_q3_rur
## 11951                           per_lm_alllm.ben_q3_tot
## 11952                           per_lm_alllm.ben_q3_urb
## 11953                      per_lm_alllm.ben_q4_preT_tot
## 11954                           per_lm_alllm.ben_q4_rur
## 11955                           per_lm_alllm.ben_q4_tot
## 11956                           per_lm_alllm.ben_q4_urb
## 11957                      per_lm_alllm.ben_q5_preT_tot
## 11958                           per_lm_alllm.ben_q5_rur
## 11959                           per_lm_alllm.ben_q5_tot
## 11960                           per_lm_alllm.ben_q5_urb
## 11961                      per_lm_alllm.bry_ep_preT_tot
## 11962                           per_lm_alllm.bry_ep_tot
## 11963                      per_lm_alllm.bry_q1_preT_tot
## 11964                           per_lm_alllm.bry_q1_rur
## 11965                           per_lm_alllm.bry_q1_tot
## 11966                           per_lm_alllm.bry_q1_urb
## 11967                      per_lm_alllm.bry_q2_preT_tot
## 11968                           per_lm_alllm.bry_q2_rur
## 11969                           per_lm_alllm.bry_q2_tot
## 11970                           per_lm_alllm.bry_q2_urb
## 11971                      per_lm_alllm.bry_q3_preT_tot
## 11972                           per_lm_alllm.bry_q3_rur
## 11973                           per_lm_alllm.bry_q3_tot
## 11974                           per_lm_alllm.bry_q3_urb
## 11975                      per_lm_alllm.bry_q4_preT_tot
## 11976                           per_lm_alllm.bry_q4_rur
## 11977                           per_lm_alllm.bry_q4_tot
## 11978                           per_lm_alllm.bry_q4_urb
## 11979                      per_lm_alllm.bry_q5_preT_tot
## 11980                           per_lm_alllm.bry_q5_rur
## 11981                           per_lm_alllm.bry_q5_tot
## 11982                           per_lm_alllm.bry_q5_urb
## 11983                      per_lm_alllm.cba_ep_preT_tot
## 11984                           per_lm_alllm.cba_ep_tot
## 11985                      per_lm_alllm.cba_q1_preT_tot
## 11986                           per_lm_alllm.cba_q1_rur
## 11987                           per_lm_alllm.cba_q1_tot
## 11988                           per_lm_alllm.cba_q1_urb
## 11989                      per_lm_alllm.cov_ep_preT_tot
## 11990                           per_lm_alllm.cov_ep_tot
## 11991                     per_lm_alllm.cov_pop_preT_tot
## 11992                          per_lm_alllm.cov_pop_rur
## 11993                          per_lm_alllm.cov_pop_tot
## 11994                          per_lm_alllm.cov_pop_urb
## 11995                      per_lm_alllm.cov_q1_preT_tot
## 11996                           per_lm_alllm.cov_q1_rur
## 11997                           per_lm_alllm.cov_q1_tot
## 11998                           per_lm_alllm.cov_q1_urb
## 11999                      per_lm_alllm.cov_q2_preT_tot
## 12000                           per_lm_alllm.cov_q2_rur
## 12001                           per_lm_alllm.cov_q2_tot
## 12002                           per_lm_alllm.cov_q2_urb
## 12003                      per_lm_alllm.cov_q3_preT_tot
## 12004                           per_lm_alllm.cov_q3_rur
## 12005                           per_lm_alllm.cov_q3_tot
## 12006                           per_lm_alllm.cov_q3_urb
## 12007                      per_lm_alllm.cov_q4_preT_tot
## 12008                           per_lm_alllm.cov_q4_rur
## 12009                           per_lm_alllm.cov_q4_tot
## 12010                           per_lm_alllm.cov_q4_urb
## 12011                      per_lm_alllm.cov_q5_preT_tot
## 12012                           per_lm_alllm.cov_q5_rur
## 12013                           per_lm_alllm.cov_q5_tot
## 12014                           per_lm_alllm.cov_q5_urb
## 12015                             per_lm_alllm_gini_rur
## 12016                             per_lm_alllm_gini_tot
## 12017                             per_lm_alllm_gini_urb
## 12018                            per_lm_alllm_p0_ep_tot
## 12019                               per_lm_alllm_p0_rur
## 12020                               per_lm_alllm_p0_tot
## 12021                               per_lm_alllm_p0_urb
## 12022                            per_lm_alllm_p1_ep_tot
## 12023                               per_lm_alllm_p1_rur
## 12024                               per_lm_alllm_p1_tot
## 12025                               per_lm_alllm_p1_urb
## 12026                         per_lm_pa.adq_ep_preT_tot
## 12027                              per_lm_pa.adq_ep_tot
## 12028                        per_lm_pa.adq_pop_preT_tot
## 12029                             per_lm_pa.adq_pop_rur
## 12030                             per_lm_pa.adq_pop_tot
## 12031                             per_lm_pa.adq_pop_urb
## 12032                         per_lm_pa.adq_q1_preT_tot
## 12033                              per_lm_pa.adq_q1_rur
## 12034                              per_lm_pa.adq_q1_tot
## 12035                              per_lm_pa.adq_q1_urb
## 12036                         per_lm_pa.adq_q2_preT_tot
## 12037                              per_lm_pa.adq_q2_rur
## 12038                              per_lm_pa.adq_q2_tot
## 12039                              per_lm_pa.adq_q2_urb
## 12040                         per_lm_pa.adq_q3_preT_tot
## 12041                              per_lm_pa.adq_q3_rur
## 12042                              per_lm_pa.adq_q3_tot
## 12043                              per_lm_pa.adq_q3_urb
## 12044                         per_lm_pa.adq_q4_preT_tot
## 12045                              per_lm_pa.adq_q4_rur
## 12046                              per_lm_pa.adq_q4_tot
## 12047                              per_lm_pa.adq_q4_urb
## 12048                         per_lm_pa.adq_q5_preT_tot
## 12049                              per_lm_pa.adq_q5_rur
## 12050                              per_lm_pa.adq_q5_tot
## 12051                              per_lm_pa.adq_q5_urb
## 12052                         per_lm_pa.avt_ep_preT_tot
## 12053                              per_lm_pa.avt_ep_tot
## 12054                        per_lm_pa.avt_pop_preT_tot
## 12055                             per_lm_pa.avt_pop_rur
## 12056                             per_lm_pa.avt_pop_tot
## 12057                             per_lm_pa.avt_pop_urb
## 12058                         per_lm_pa.avt_q1_preT_tot
## 12059                              per_lm_pa.avt_q1_rur
## 12060                              per_lm_pa.avt_q1_tot
## 12061                              per_lm_pa.avt_q1_urb
## 12062                         per_lm_pa.avt_q2_preT_tot
## 12063                              per_lm_pa.avt_q2_rur
## 12064                              per_lm_pa.avt_q2_tot
## 12065                              per_lm_pa.avt_q2_urb
## 12066                         per_lm_pa.avt_q3_preT_tot
## 12067                              per_lm_pa.avt_q3_rur
## 12068                              per_lm_pa.avt_q3_tot
## 12069                              per_lm_pa.avt_q3_urb
## 12070                         per_lm_pa.avt_q4_preT_tot
## 12071                              per_lm_pa.avt_q4_rur
## 12072                              per_lm_pa.avt_q4_tot
## 12073                              per_lm_pa.avt_q4_urb
## 12074                         per_lm_pa.avt_q5_preT_tot
## 12075                              per_lm_pa.avt_q5_rur
## 12076                              per_lm_pa.avt_q5_tot
## 12077                              per_lm_pa.avt_q5_urb
## 12078                         per_lm_pa.ben_ep_preT_tot
## 12079                              per_lm_pa.ben_ep_tot
## 12080                         per_lm_pa.ben_q1_preT_tot
## 12081                              per_lm_pa.ben_q1_rur
## 12082                              per_lm_pa.ben_q1_tot
## 12083                              per_lm_pa.ben_q1_urb
## 12084                         per_lm_pa.ben_q2_preT_tot
## 12085                              per_lm_pa.ben_q2_rur
## 12086                              per_lm_pa.ben_q2_tot
## 12087                              per_lm_pa.ben_q2_urb
## 12088                         per_lm_pa.ben_q3_preT_tot
## 12089                              per_lm_pa.ben_q3_rur
## 12090                              per_lm_pa.ben_q3_tot
## 12091                              per_lm_pa.ben_q3_urb
## 12092                         per_lm_pa.ben_q4_preT_tot
## 12093                              per_lm_pa.ben_q4_rur
## 12094                              per_lm_pa.ben_q4_tot
## 12095                              per_lm_pa.ben_q4_urb
## 12096                         per_lm_pa.ben_q5_preT_tot
## 12097                              per_lm_pa.ben_q5_rur
## 12098                              per_lm_pa.ben_q5_tot
## 12099                              per_lm_pa.ben_q5_urb
## 12100                         per_lm_pa.bry_ep_preT_tot
## 12101                              per_lm_pa.bry_ep_tot
## 12102                         per_lm_pa.bry_q1_preT_tot
## 12103                              per_lm_pa.bry_q1_rur
## 12104                              per_lm_pa.bry_q1_tot
## 12105                              per_lm_pa.bry_q1_urb
## 12106                         per_lm_pa.bry_q2_preT_tot
## 12107                              per_lm_pa.bry_q2_rur
## 12108                              per_lm_pa.bry_q2_tot
## 12109                              per_lm_pa.bry_q2_urb
## 12110                         per_lm_pa.bry_q3_preT_tot
## 12111                              per_lm_pa.bry_q3_rur
## 12112                              per_lm_pa.bry_q3_tot
## 12113                              per_lm_pa.bry_q3_urb
## 12114                         per_lm_pa.bry_q4_preT_tot
## 12115                              per_lm_pa.bry_q4_rur
## 12116                              per_lm_pa.bry_q4_tot
## 12117                              per_lm_pa.bry_q4_urb
## 12118                         per_lm_pa.bry_q5_preT_tot
## 12119                              per_lm_pa.bry_q5_rur
## 12120                              per_lm_pa.bry_q5_tot
## 12121                              per_lm_pa.bry_q5_urb
## 12122                         per_lm_pa.cba_ep_preT_tot
## 12123                              per_lm_pa.cba_ep_tot
## 12124                         per_lm_pa.cba_q1_preT_tot
## 12125                              per_lm_pa.cba_q1_rur
## 12126                              per_lm_pa.cba_q1_tot
## 12127                              per_lm_pa.cba_q1_urb
## 12128                         per_lm_pa.cov_ep_preT_tot
## 12129                              per_lm_pa.cov_ep_tot
## 12130                        per_lm_pa.cov_pop_preT_tot
## 12131                             per_lm_pa.cov_pop_rur
## 12132                             per_lm_pa.cov_pop_tot
## 12133                             per_lm_pa.cov_pop_urb
## 12134                         per_lm_pa.cov_q1_preT_tot
## 12135                              per_lm_pa.cov_q1_rur
## 12136                              per_lm_pa.cov_q1_tot
## 12137                              per_lm_pa.cov_q1_urb
## 12138                         per_lm_pa.cov_q2_preT_tot
## 12139                              per_lm_pa.cov_q2_rur
## 12140                              per_lm_pa.cov_q2_tot
## 12141                              per_lm_pa.cov_q2_urb
## 12142                         per_lm_pa.cov_q3_preT_tot
## 12143                              per_lm_pa.cov_q3_rur
## 12144                              per_lm_pa.cov_q3_tot
## 12145                              per_lm_pa.cov_q3_urb
## 12146                         per_lm_pa.cov_q4_preT_tot
## 12147                              per_lm_pa.cov_q4_rur
## 12148                              per_lm_pa.cov_q4_tot
## 12149                              per_lm_pa.cov_q4_urb
## 12150                         per_lm_pa.cov_q5_preT_tot
## 12151                              per_lm_pa.cov_q5_rur
## 12152                              per_lm_pa.cov_q5_tot
## 12153                              per_lm_pa.cov_q5_urb
## 12154                                per_lm_pa_gini_rur
## 12155                                per_lm_pa_gini_tot
## 12156                                per_lm_pa_gini_urb
## 12157                               per_lm_pa_p0_ep_tot
## 12158                                  per_lm_pa_p0_rur
## 12159                                  per_lm_pa_p0_tot
## 12160                                  per_lm_pa_p0_urb
## 12161                               per_lm_pa_p1_ep_tot
## 12162                                  per_lm_pa_p1_rur
## 12163                                  per_lm_pa_p1_tot
## 12164                                  per_lm_pa_p1_urb
## 12165                     per_lmonl.overlap_ep_preT_tot
## 12166                          per_lmonl.overlap_ep_tot
## 12167                    per_lmonl.overlap_pop_preT_tot
## 12168                         per_lmonl.overlap_pop_rur
## 12169                         per_lmonl.overlap_pop_tot
## 12170                         per_lmonl.overlap_pop_urb
## 12171                     per_lmonl.overlap_q1_preT_tot
## 12172                          per_lmonl.overlap_q1_rur
## 12173                          per_lmonl.overlap_q1_tot
## 12174                          per_lmonl.overlap_q1_urb
## 12175                     per_nprog.overlap_ep_preT_tot
## 12176                          per_nprog.overlap_ep_tot
## 12177                    per_nprog.overlap_pop_preT_tot
## 12178                         per_nprog.overlap_pop_rur
## 12179                         per_nprog.overlap_pop_tot
## 12180                         per_nprog.overlap_pop_urb
## 12181                     per_nprog.overlap_q1_preT_tot
## 12182                          per_nprog.overlap_q1_rur
## 12183                          per_nprog.overlap_q1_tot
## 12184                          per_nprog.overlap_q1_urb
## 12185                          per_numprog1_ep_preT_tot
## 12186                               per_numprog1_ep_tot
## 12187                         per_numprog1_pop_preT_tot
## 12188                              per_numprog1_pop_rur
## 12189                              per_numprog1_pop_tot
## 12190                              per_numprog1_pop_urb
## 12191                          per_numprog1_q1_preT_tot
## 12192                               per_numprog1_q1_rur
## 12193                               per_numprog1_q1_tot
## 12194                               per_numprog1_q1_urb
## 12195                          per_numprog2_ep_preT_tot
## 12196                               per_numprog2_ep_tot
## 12197                         per_numprog2_pop_preT_tot
## 12198                              per_numprog2_pop_rur
## 12199                              per_numprog2_pop_tot
## 12200                              per_numprog2_pop_urb
## 12201                          per_numprog2_q1_preT_tot
## 12202                               per_numprog2_q1_rur
## 12203                               per_numprog2_q1_tot
## 12204                               per_numprog2_q1_urb
## 12205                          per_numprog3_ep_preT_tot
## 12206                               per_numprog3_ep_tot
## 12207                         per_numprog3_pop_preT_tot
## 12208                              per_numprog3_pop_rur
## 12209                              per_numprog3_pop_tot
## 12210                              per_numprog3_pop_urb
## 12211                          per_numprog3_q1_preT_tot
## 12212                               per_numprog3_q1_rur
## 12213                               per_numprog3_q1_tot
## 12214                               per_numprog3_q1_urb
## 12215                          per_numprog4_ep_preT_tot
## 12216                               per_numprog4_ep_tot
## 12217                         per_numprog4_pop_preT_tot
## 12218                              per_numprog4_pop_rur
## 12219                              per_numprog4_pop_tot
## 12220                              per_numprog4_pop_urb
## 12221                          per_numprog4_q1_preT_tot
## 12222                               per_numprog4_q1_rur
## 12223                               per_numprog4_q1_tot
## 12224                               per_numprog4_q1_urb
## 12225                      per_pr_allpr.adq_ep_preT_tot
## 12226                           per_pr_allpr.adq_ep_tot
## 12227                     per_pr_allpr.adq_pop_preT_tot
## 12228                          per_pr_allpr.adq_pop_rur
## 12229                          per_pr_allpr.adq_pop_tot
## 12230                          per_pr_allpr.adq_pop_urb
## 12231                      per_pr_allpr.adq_q1_preT_tot
## 12232                           per_pr_allpr.adq_q1_rur
## 12233                           per_pr_allpr.adq_q1_tot
## 12234                           per_pr_allpr.adq_q1_urb
## 12235                      per_pr_allpr.adq_q2_preT_tot
## 12236                           per_pr_allpr.adq_q2_rur
## 12237                           per_pr_allpr.adq_q2_tot
## 12238                           per_pr_allpr.adq_q2_urb
## 12239                      per_pr_allpr.adq_q3_preT_tot
## 12240                           per_pr_allpr.adq_q3_rur
## 12241                           per_pr_allpr.adq_q3_tot
## 12242                           per_pr_allpr.adq_q3_urb
## 12243                      per_pr_allpr.adq_q4_preT_tot
## 12244                           per_pr_allpr.adq_q4_rur
## 12245                           per_pr_allpr.adq_q4_tot
## 12246                           per_pr_allpr.adq_q4_urb
## 12247                      per_pr_allpr.adq_q5_preT_tot
## 12248                           per_pr_allpr.adq_q5_rur
## 12249                           per_pr_allpr.adq_q5_tot
## 12250                           per_pr_allpr.adq_q5_urb
## 12251                      per_pr_allpr.avt_ep_preT_tot
## 12252                           per_pr_allpr.avt_ep_tot
## 12253                     per_pr_allpr.avt_pop_preT_tot
## 12254                          per_pr_allpr.avt_pop_rur
## 12255                          per_pr_allpr.avt_pop_tot
## 12256                          per_pr_allpr.avt_pop_urb
## 12257                      per_pr_allpr.avt_q1_preT_tot
## 12258                           per_pr_allpr.avt_q1_rur
## 12259                           per_pr_allpr.avt_q1_tot
## 12260                           per_pr_allpr.avt_q1_urb
## 12261                      per_pr_allpr.avt_q2_preT_tot
## 12262                           per_pr_allpr.avt_q2_rur
## 12263                           per_pr_allpr.avt_q2_tot
## 12264                           per_pr_allpr.avt_q2_urb
## 12265                      per_pr_allpr.avt_q3_preT_tot
## 12266                           per_pr_allpr.avt_q3_rur
## 12267                           per_pr_allpr.avt_q3_tot
## 12268                           per_pr_allpr.avt_q3_urb
## 12269                      per_pr_allpr.avt_q4_preT_tot
## 12270                           per_pr_allpr.avt_q4_rur
## 12271                           per_pr_allpr.avt_q4_tot
## 12272                           per_pr_allpr.avt_q4_urb
## 12273                      per_pr_allpr.avt_q5_preT_tot
## 12274                           per_pr_allpr.avt_q5_rur
## 12275                           per_pr_allpr.avt_q5_tot
## 12276                           per_pr_allpr.avt_q5_urb
## 12277                      per_pr_allpr.ben_ep_preT_tot
## 12278                           per_pr_allpr.ben_ep_tot
## 12279                      per_pr_allpr.ben_q1_preT_tot
## 12280                           per_pr_allpr.ben_q1_rur
## 12281                           per_pr_allpr.ben_q1_tot
## 12282                           per_pr_allpr.ben_q1_urb
## 12283                      per_pr_allpr.ben_q2_preT_tot
## 12284                           per_pr_allpr.ben_q2_rur
## 12285                           per_pr_allpr.ben_q2_tot
## 12286                           per_pr_allpr.ben_q2_urb
## 12287                      per_pr_allpr.ben_q3_preT_tot
## 12288                           per_pr_allpr.ben_q3_rur
## 12289                           per_pr_allpr.ben_q3_tot
## 12290                           per_pr_allpr.ben_q3_urb
## 12291                      per_pr_allpr.ben_q4_preT_tot
## 12292                           per_pr_allpr.ben_q4_rur
## 12293                           per_pr_allpr.ben_q4_tot
## 12294                           per_pr_allpr.ben_q4_urb
## 12295                      per_pr_allpr.ben_q5_preT_tot
## 12296                           per_pr_allpr.ben_q5_rur
## 12297                           per_pr_allpr.ben_q5_tot
## 12298                           per_pr_allpr.ben_q5_urb
## 12299                      per_pr_allpr.bry_ep_preT_tot
## 12300                           per_pr_allpr.bry_ep_tot
## 12301                      per_pr_allpr.bry_q1_preT_tot
## 12302                           per_pr_allpr.bry_q1_rur
## 12303                           per_pr_allpr.bry_q1_tot
## 12304                           per_pr_allpr.bry_q1_urb
## 12305                      per_pr_allpr.bry_q2_preT_tot
## 12306                           per_pr_allpr.bry_q2_rur
## 12307                           per_pr_allpr.bry_q2_tot
## 12308                           per_pr_allpr.bry_q2_urb
## 12309                      per_pr_allpr.bry_q3_preT_tot
## 12310                           per_pr_allpr.bry_q3_rur
## 12311                           per_pr_allpr.bry_q3_tot
## 12312                           per_pr_allpr.bry_q3_urb
## 12313                      per_pr_allpr.bry_q4_preT_tot
## 12314                           per_pr_allpr.bry_q4_rur
## 12315                           per_pr_allpr.bry_q4_tot
## 12316                           per_pr_allpr.bry_q4_urb
## 12317                      per_pr_allpr.bry_q5_preT_tot
## 12318                           per_pr_allpr.bry_q5_rur
## 12319                           per_pr_allpr.bry_q5_tot
## 12320                           per_pr_allpr.bry_q5_urb
## 12321                      per_pr_allpr.cba_ep_preT_tot
## 12322                           per_pr_allpr.cba_ep_tot
## 12323                      per_pr_allpr.cba_q1_preT_tot
## 12324                           per_pr_allpr.cba_q1_rur
## 12325                           per_pr_allpr.cba_q1_tot
## 12326                           per_pr_allpr.cba_q1_urb
## 12327                      per_pr_allpr.cov_ep_preT_tot
## 12328                           per_pr_allpr.cov_ep_tot
## 12329                     per_pr_allpr.cov_pop_preT_tot
## 12330                          per_pr_allpr.cov_pop_rur
## 12331                          per_pr_allpr.cov_pop_tot
## 12332                          per_pr_allpr.cov_pop_urb
## 12333                      per_pr_allpr.cov_q1_preT_tot
## 12334                           per_pr_allpr.cov_q1_rur
## 12335                           per_pr_allpr.cov_q1_tot
## 12336                           per_pr_allpr.cov_q1_urb
## 12337                      per_pr_allpr.cov_q2_preT_tot
## 12338                           per_pr_allpr.cov_q2_rur
## 12339                           per_pr_allpr.cov_q2_tot
## 12340                           per_pr_allpr.cov_q2_urb
## 12341                      per_pr_allpr.cov_q3_preT_tot
## 12342                           per_pr_allpr.cov_q3_rur
## 12343                           per_pr_allpr.cov_q3_tot
## 12344                           per_pr_allpr.cov_q3_urb
## 12345                      per_pr_allpr.cov_q4_preT_tot
## 12346                           per_pr_allpr.cov_q4_rur
## 12347                           per_pr_allpr.cov_q4_tot
## 12348                           per_pr_allpr.cov_q4_urb
## 12349                      per_pr_allpr.cov_q5_preT_tot
## 12350                           per_pr_allpr.cov_q5_rur
## 12351                           per_pr_allpr.cov_q5_tot
## 12352                           per_pr_allpr.cov_q5_urb
## 12353                             per_pr_allpr_gini_rur
## 12354                             per_pr_allpr_gini_tot
## 12355                             per_pr_allpr_gini_urb
## 12356                            per_pr_allpr_p0_ep_tot
## 12357                               per_pr_allpr_p0_rur
## 12358                               per_pr_allpr_p0_tot
## 12359                               per_pr_allpr_p0_urb
## 12360                            per_pr_allpr_p1_ep_tot
## 12361                               per_pr_allpr_p1_rur
## 12362                               per_pr_allpr_p1_tot
## 12363                               per_pr_allpr_p1_urb
## 12364                         per_pr_dp.adq_ep_preT_tot
## 12365                              per_pr_dp.adq_ep_tot
## 12366                        per_pr_dp.adq_pop_preT_tot
## 12367                             per_pr_dp.adq_pop_rur
## 12368                             per_pr_dp.adq_pop_tot
## 12369                             per_pr_dp.adq_pop_urb
## 12370                         per_pr_dp.adq_q1_preT_tot
## 12371                              per_pr_dp.adq_q1_rur
## 12372                              per_pr_dp.adq_q1_tot
## 12373                              per_pr_dp.adq_q1_urb
## 12374                         per_pr_dp.adq_q2_preT_tot
## 12375                              per_pr_dp.adq_q2_rur
## 12376                              per_pr_dp.adq_q2_tot
## 12377                              per_pr_dp.adq_q2_urb
## 12378                         per_pr_dp.adq_q3_preT_tot
## 12379                              per_pr_dp.adq_q3_rur
## 12380                              per_pr_dp.adq_q3_tot
## 12381                              per_pr_dp.adq_q3_urb
## 12382                         per_pr_dp.adq_q4_preT_tot
## 12383                              per_pr_dp.adq_q4_rur
## 12384                              per_pr_dp.adq_q4_tot
## 12385                              per_pr_dp.adq_q4_urb
## 12386                         per_pr_dp.adq_q5_preT_tot
## 12387                              per_pr_dp.adq_q5_rur
## 12388                              per_pr_dp.adq_q5_tot
## 12389                              per_pr_dp.adq_q5_urb
## 12390                         per_pr_dp.avt_ep_preT_tot
## 12391                              per_pr_dp.avt_ep_tot
## 12392                        per_pr_dp.avt_pop_preT_tot
## 12393                             per_pr_dp.avt_pop_rur
## 12394                             per_pr_dp.avt_pop_tot
## 12395                             per_pr_dp.avt_pop_urb
## 12396                         per_pr_dp.avt_q1_preT_tot
## 12397                              per_pr_dp.avt_q1_rur
## 12398                              per_pr_dp.avt_q1_tot
## 12399                              per_pr_dp.avt_q1_urb
## 12400                         per_pr_dp.avt_q2_preT_tot
## 12401                              per_pr_dp.avt_q2_rur
## 12402                              per_pr_dp.avt_q2_tot
## 12403                              per_pr_dp.avt_q2_urb
## 12404                         per_pr_dp.avt_q3_preT_tot
## 12405                              per_pr_dp.avt_q3_rur
## 12406                              per_pr_dp.avt_q3_tot
## 12407                              per_pr_dp.avt_q3_urb
## 12408                         per_pr_dp.avt_q4_preT_tot
## 12409                              per_pr_dp.avt_q4_rur
## 12410                              per_pr_dp.avt_q4_tot
## 12411                              per_pr_dp.avt_q4_urb
## 12412                         per_pr_dp.avt_q5_preT_tot
## 12413                              per_pr_dp.avt_q5_rur
## 12414                              per_pr_dp.avt_q5_tot
## 12415                              per_pr_dp.avt_q5_urb
## 12416                         per_pr_dp.ben_ep_preT_tot
## 12417                              per_pr_dp.ben_ep_tot
## 12418                         per_pr_dp.ben_q1_preT_tot
## 12419                              per_pr_dp.ben_q1_rur
## 12420                              per_pr_dp.ben_q1_tot
## 12421                              per_pr_dp.ben_q1_urb
## 12422                         per_pr_dp.ben_q2_preT_tot
## 12423                              per_pr_dp.ben_q2_rur
## 12424                              per_pr_dp.ben_q2_tot
## 12425                              per_pr_dp.ben_q2_urb
## 12426                         per_pr_dp.ben_q3_preT_tot
## 12427                              per_pr_dp.ben_q3_rur
## 12428                              per_pr_dp.ben_q3_tot
## 12429                              per_pr_dp.ben_q3_urb
## 12430                         per_pr_dp.ben_q4_preT_tot
## 12431                              per_pr_dp.ben_q4_rur
## 12432                              per_pr_dp.ben_q4_tot
## 12433                              per_pr_dp.ben_q4_urb
## 12434                         per_pr_dp.ben_q5_preT_tot
## 12435                              per_pr_dp.ben_q5_rur
## 12436                              per_pr_dp.ben_q5_tot
## 12437                              per_pr_dp.ben_q5_urb
## 12438                         per_pr_dp.bry_ep_preT_tot
## 12439                              per_pr_dp.bry_ep_tot
## 12440                         per_pr_dp.bry_q1_preT_tot
## 12441                              per_pr_dp.bry_q1_rur
## 12442                              per_pr_dp.bry_q1_tot
## 12443                              per_pr_dp.bry_q1_urb
## 12444                         per_pr_dp.bry_q2_preT_tot
## 12445                              per_pr_dp.bry_q2_rur
## 12446                              per_pr_dp.bry_q2_tot
## 12447                              per_pr_dp.bry_q2_urb
## 12448                         per_pr_dp.bry_q3_preT_tot
## 12449                              per_pr_dp.bry_q3_rur
## 12450                              per_pr_dp.bry_q3_tot
## 12451                              per_pr_dp.bry_q3_urb
## 12452                         per_pr_dp.bry_q4_preT_tot
## 12453                              per_pr_dp.bry_q4_rur
## 12454                              per_pr_dp.bry_q4_tot
## 12455                              per_pr_dp.bry_q4_urb
## 12456                         per_pr_dp.bry_q5_preT_tot
## 12457                              per_pr_dp.bry_q5_rur
## 12458                              per_pr_dp.bry_q5_tot
## 12459                              per_pr_dp.bry_q5_urb
## 12460                         per_pr_dp.cba_ep_preT_tot
## 12461                              per_pr_dp.cba_ep_tot
## 12462                         per_pr_dp.cba_q1_preT_tot
## 12463                              per_pr_dp.cba_q1_rur
## 12464                              per_pr_dp.cba_q1_tot
## 12465                              per_pr_dp.cba_q1_urb
## 12466                         per_pr_dp.cov_ep_preT_tot
## 12467                              per_pr_dp.cov_ep_tot
## 12468                        per_pr_dp.cov_pop_preT_tot
## 12469                             per_pr_dp.cov_pop_rur
## 12470                             per_pr_dp.cov_pop_tot
## 12471                             per_pr_dp.cov_pop_urb
## 12472                         per_pr_dp.cov_q1_preT_tot
## 12473                              per_pr_dp.cov_q1_rur
## 12474                              per_pr_dp.cov_q1_tot
## 12475                              per_pr_dp.cov_q1_urb
## 12476                         per_pr_dp.cov_q2_preT_tot
## 12477                              per_pr_dp.cov_q2_rur
## 12478                              per_pr_dp.cov_q2_tot
## 12479                              per_pr_dp.cov_q2_urb
## 12480                         per_pr_dp.cov_q3_preT_tot
## 12481                              per_pr_dp.cov_q3_rur
## 12482                              per_pr_dp.cov_q3_tot
## 12483                              per_pr_dp.cov_q3_urb
## 12484                         per_pr_dp.cov_q4_preT_tot
## 12485                              per_pr_dp.cov_q4_rur
## 12486                              per_pr_dp.cov_q4_tot
## 12487                              per_pr_dp.cov_q4_urb
## 12488                         per_pr_dp.cov_q5_preT_tot
## 12489                              per_pr_dp.cov_q5_rur
## 12490                              per_pr_dp.cov_q5_tot
## 12491                              per_pr_dp.cov_q5_urb
## 12492                                per_pr_dp_gini_rur
## 12493                                per_pr_dp_gini_tot
## 12494                                per_pr_dp_gini_urb
## 12495                               per_pr_dp_p0_ep_tot
## 12496                                  per_pr_dp_p0_rur
## 12497                                  per_pr_dp_p0_tot
## 12498                                  per_pr_dp_p0_urb
## 12499                               per_pr_dp_p1_ep_tot
## 12500                                  per_pr_dp_p1_rur
## 12501                                  per_pr_dp_p1_tot
## 12502                                  per_pr_dp_p1_urb
## 12503                         per_pr_ip.adq_ep_preT_tot
## 12504                              per_pr_ip.adq_ep_tot
## 12505                        per_pr_ip.adq_pop_preT_tot
## 12506                             per_pr_ip.adq_pop_rur
## 12507                             per_pr_ip.adq_pop_tot
## 12508                             per_pr_ip.adq_pop_urb
## 12509                         per_pr_ip.adq_q1_preT_tot
## 12510                              per_pr_ip.adq_q1_rur
## 12511                              per_pr_ip.adq_q1_tot
## 12512                              per_pr_ip.adq_q1_urb
## 12513                         per_pr_ip.adq_q2_preT_tot
## 12514                              per_pr_ip.adq_q2_rur
## 12515                              per_pr_ip.adq_q2_tot
## 12516                              per_pr_ip.adq_q2_urb
## 12517                         per_pr_ip.adq_q3_preT_tot
## 12518                              per_pr_ip.adq_q3_rur
## 12519                              per_pr_ip.adq_q3_tot
## 12520                              per_pr_ip.adq_q3_urb
## 12521                         per_pr_ip.adq_q4_preT_tot
## 12522                              per_pr_ip.adq_q4_rur
## 12523                              per_pr_ip.adq_q4_tot
## 12524                              per_pr_ip.adq_q4_urb
## 12525                         per_pr_ip.adq_q5_preT_tot
## 12526                              per_pr_ip.adq_q5_rur
## 12527                              per_pr_ip.adq_q5_tot
## 12528                              per_pr_ip.adq_q5_urb
## 12529                         per_pr_ip.avt_ep_preT_tot
## 12530                              per_pr_ip.avt_ep_tot
## 12531                        per_pr_ip.avt_pop_preT_tot
## 12532                             per_pr_ip.avt_pop_rur
## 12533                             per_pr_ip.avt_pop_tot
## 12534                             per_pr_ip.avt_pop_urb
## 12535                         per_pr_ip.avt_q1_preT_tot
## 12536                              per_pr_ip.avt_q1_rur
## 12537                              per_pr_ip.avt_q1_tot
## 12538                              per_pr_ip.avt_q1_urb
## 12539                         per_pr_ip.avt_q2_preT_tot
## 12540                              per_pr_ip.avt_q2_rur
## 12541                              per_pr_ip.avt_q2_tot
## 12542                              per_pr_ip.avt_q2_urb
## 12543                         per_pr_ip.avt_q3_preT_tot
## 12544                              per_pr_ip.avt_q3_rur
## 12545                              per_pr_ip.avt_q3_tot
## 12546                              per_pr_ip.avt_q3_urb
## 12547                         per_pr_ip.avt_q4_preT_tot
## 12548                              per_pr_ip.avt_q4_rur
## 12549                              per_pr_ip.avt_q4_tot
## 12550                              per_pr_ip.avt_q4_urb
## 12551                         per_pr_ip.avt_q5_preT_tot
## 12552                              per_pr_ip.avt_q5_rur
## 12553                              per_pr_ip.avt_q5_tot
## 12554                              per_pr_ip.avt_q5_urb
## 12555                         per_pr_ip.ben_ep_preT_tot
## 12556                              per_pr_ip.ben_ep_tot
## 12557                         per_pr_ip.ben_q1_preT_tot
## 12558                              per_pr_ip.ben_q1_rur
## 12559                              per_pr_ip.ben_q1_tot
## 12560                              per_pr_ip.ben_q1_urb
## 12561                         per_pr_ip.ben_q2_preT_tot
## 12562                              per_pr_ip.ben_q2_rur
## 12563                              per_pr_ip.ben_q2_tot
## 12564                              per_pr_ip.ben_q2_urb
## 12565                         per_pr_ip.ben_q3_preT_tot
## 12566                              per_pr_ip.ben_q3_rur
## 12567                              per_pr_ip.ben_q3_tot
## 12568                              per_pr_ip.ben_q3_urb
## 12569                         per_pr_ip.ben_q4_preT_tot
## 12570                              per_pr_ip.ben_q4_rur
## 12571                              per_pr_ip.ben_q4_tot
## 12572                              per_pr_ip.ben_q4_urb
## 12573                         per_pr_ip.ben_q5_preT_tot
## 12574                              per_pr_ip.ben_q5_rur
## 12575                              per_pr_ip.ben_q5_tot
## 12576                              per_pr_ip.ben_q5_urb
## 12577                         per_pr_ip.bry_ep_preT_tot
## 12578                              per_pr_ip.bry_ep_tot
## 12579                         per_pr_ip.bry_q1_preT_tot
## 12580                              per_pr_ip.bry_q1_rur
## 12581                              per_pr_ip.bry_q1_tot
## 12582                              per_pr_ip.bry_q1_urb
## 12583                         per_pr_ip.bry_q2_preT_tot
## 12584                              per_pr_ip.bry_q2_rur
## 12585                              per_pr_ip.bry_q2_tot
## 12586                              per_pr_ip.bry_q2_urb
## 12587                         per_pr_ip.bry_q3_preT_tot
## 12588                              per_pr_ip.bry_q3_rur
## 12589                              per_pr_ip.bry_q3_tot
## 12590                              per_pr_ip.bry_q3_urb
## 12591                         per_pr_ip.bry_q4_preT_tot
## 12592                              per_pr_ip.bry_q4_rur
## 12593                              per_pr_ip.bry_q4_tot
## 12594                              per_pr_ip.bry_q4_urb
## 12595                         per_pr_ip.bry_q5_preT_tot
## 12596                              per_pr_ip.bry_q5_rur
## 12597                              per_pr_ip.bry_q5_tot
## 12598                              per_pr_ip.bry_q5_urb
## 12599                         per_pr_ip.cba_ep_preT_tot
## 12600                              per_pr_ip.cba_ep_tot
## 12601                         per_pr_ip.cba_q1_preT_tot
## 12602                              per_pr_ip.cba_q1_rur
## 12603                              per_pr_ip.cba_q1_tot
## 12604                              per_pr_ip.cba_q1_urb
## 12605                         per_pr_ip.cov_ep_preT_tot
## 12606                              per_pr_ip.cov_ep_tot
## 12607                        per_pr_ip.cov_pop_preT_tot
## 12608                             per_pr_ip.cov_pop_rur
## 12609                             per_pr_ip.cov_pop_tot
## 12610                             per_pr_ip.cov_pop_urb
## 12611                         per_pr_ip.cov_q1_preT_tot
## 12612                              per_pr_ip.cov_q1_rur
## 12613                              per_pr_ip.cov_q1_tot
## 12614                              per_pr_ip.cov_q1_urb
## 12615                         per_pr_ip.cov_q2_preT_tot
## 12616                              per_pr_ip.cov_q2_rur
## 12617                              per_pr_ip.cov_q2_tot
## 12618                              per_pr_ip.cov_q2_urb
## 12619                         per_pr_ip.cov_q3_preT_tot
## 12620                              per_pr_ip.cov_q3_rur
## 12621                              per_pr_ip.cov_q3_tot
## 12622                              per_pr_ip.cov_q3_urb
## 12623                         per_pr_ip.cov_q4_preT_tot
## 12624                              per_pr_ip.cov_q4_rur
## 12625                              per_pr_ip.cov_q4_tot
## 12626                              per_pr_ip.cov_q4_urb
## 12627                         per_pr_ip.cov_q5_preT_tot
## 12628                              per_pr_ip.cov_q5_rur
## 12629                              per_pr_ip.cov_q5_tot
## 12630                              per_pr_ip.cov_q5_urb
## 12631                                per_pr_ip_gini_rur
## 12632                                per_pr_ip_gini_tot
## 12633                                per_pr_ip_gini_urb
## 12634                               per_pr_ip_p0_ep_tot
## 12635                                  per_pr_ip_p0_rur
## 12636                                  per_pr_ip_p0_tot
## 12637                                  per_pr_ip_p0_urb
## 12638                               per_pr_ip_p1_ep_tot
## 12639                                  per_pr_ip_p1_rur
## 12640                                  per_pr_ip_p1_tot
## 12641                                  per_pr_ip_p1_urb
## 12642                      per_sa_allsa.adq_ep_preT_tot
## 12643                           per_sa_allsa.adq_ep_tot
## 12644                     per_sa_allsa.adq_pop_preT_tot
## 12645                          per_sa_allsa.adq_pop_rur
## 12646                          per_sa_allsa.adq_pop_tot
## 12647                          per_sa_allsa.adq_pop_urb
## 12648                      per_sa_allsa.adq_q1_preT_tot
## 12649                           per_sa_allsa.adq_q1_rur
## 12650                           per_sa_allsa.adq_q1_tot
## 12651                           per_sa_allsa.adq_q1_urb
## 12652                      per_sa_allsa.adq_q2_preT_tot
## 12653                           per_sa_allsa.adq_q2_rur
## 12654                           per_sa_allsa.adq_q2_tot
## 12655                           per_sa_allsa.adq_q2_urb
## 12656                      per_sa_allsa.adq_q3_preT_tot
## 12657                           per_sa_allsa.adq_q3_rur
## 12658                           per_sa_allsa.adq_q3_tot
## 12659                           per_sa_allsa.adq_q3_urb
## 12660                      per_sa_allsa.adq_q4_preT_tot
## 12661                           per_sa_allsa.adq_q4_rur
## 12662                           per_sa_allsa.adq_q4_tot
## 12663                           per_sa_allsa.adq_q4_urb
## 12664                      per_sa_allsa.adq_q5_preT_tot
## 12665                           per_sa_allsa.adq_q5_rur
## 12666                           per_sa_allsa.adq_q5_tot
## 12667                           per_sa_allsa.adq_q5_urb
## 12668                      per_sa_allsa.avt_ep_preT_tot
## 12669                           per_sa_allsa.avt_ep_tot
## 12670                     per_sa_allsa.avt_pop_preT_tot
## 12671                          per_sa_allsa.avt_pop_rur
## 12672                          per_sa_allsa.avt_pop_tot
## 12673                          per_sa_allsa.avt_pop_urb
## 12674                      per_sa_allsa.avt_q1_preT_tot
## 12675                           per_sa_allsa.avt_q1_rur
## 12676                           per_sa_allsa.avt_q1_tot
## 12677                           per_sa_allsa.avt_q1_urb
## 12678                      per_sa_allsa.avt_q2_preT_tot
## 12679                           per_sa_allsa.avt_q2_rur
## 12680                           per_sa_allsa.avt_q2_tot
## 12681                           per_sa_allsa.avt_q2_urb
## 12682                      per_sa_allsa.avt_q3_preT_tot
## 12683                           per_sa_allsa.avt_q3_rur
## 12684                           per_sa_allsa.avt_q3_tot
## 12685                           per_sa_allsa.avt_q3_urb
## 12686                      per_sa_allsa.avt_q4_preT_tot
## 12687                           per_sa_allsa.avt_q4_rur
## 12688                           per_sa_allsa.avt_q4_tot
## 12689                           per_sa_allsa.avt_q4_urb
## 12690                      per_sa_allsa.avt_q5_preT_tot
## 12691                           per_sa_allsa.avt_q5_rur
## 12692                           per_sa_allsa.avt_q5_tot
## 12693                           per_sa_allsa.avt_q5_urb
## 12694                      per_sa_allsa.ben_ep_preT_tot
## 12695                           per_sa_allsa.ben_ep_tot
## 12696                      per_sa_allsa.ben_q1_preT_tot
## 12697                           per_sa_allsa.ben_q1_rur
## 12698                           per_sa_allsa.ben_q1_tot
## 12699                           per_sa_allsa.ben_q1_urb
## 12700                      per_sa_allsa.ben_q2_preT_tot
## 12701                           per_sa_allsa.ben_q2_rur
## 12702                           per_sa_allsa.ben_q2_tot
## 12703                           per_sa_allsa.ben_q2_urb
## 12704                      per_sa_allsa.ben_q3_preT_tot
## 12705                           per_sa_allsa.ben_q3_rur
## 12706                           per_sa_allsa.ben_q3_tot
## 12707                           per_sa_allsa.ben_q3_urb
## 12708                      per_sa_allsa.ben_q4_preT_tot
## 12709                           per_sa_allsa.ben_q4_rur
## 12710                           per_sa_allsa.ben_q4_tot
## 12711                           per_sa_allsa.ben_q4_urb
## 12712                      per_sa_allsa.ben_q5_preT_tot
## 12713                           per_sa_allsa.ben_q5_rur
## 12714                           per_sa_allsa.ben_q5_tot
## 12715                           per_sa_allsa.ben_q5_urb
## 12716                      per_sa_allsa.bry_ep_preT_tot
## 12717                           per_sa_allsa.bry_ep_tot
## 12718                      per_sa_allsa.bry_q1_preT_tot
## 12719                           per_sa_allsa.bry_q1_rur
## 12720                           per_sa_allsa.bry_q1_tot
## 12721                           per_sa_allsa.bry_q1_urb
## 12722                      per_sa_allsa.bry_q2_preT_tot
## 12723                           per_sa_allsa.bry_q2_rur
## 12724                           per_sa_allsa.bry_q2_tot
## 12725                           per_sa_allsa.bry_q2_urb
## 12726                      per_sa_allsa.bry_q3_preT_tot
## 12727                           per_sa_allsa.bry_q3_rur
## 12728                           per_sa_allsa.bry_q3_tot
## 12729                           per_sa_allsa.bry_q3_urb
## 12730                      per_sa_allsa.bry_q4_preT_tot
## 12731                           per_sa_allsa.bry_q4_rur
## 12732                           per_sa_allsa.bry_q4_tot
## 12733                           per_sa_allsa.bry_q4_urb
## 12734                      per_sa_allsa.bry_q5_preT_tot
## 12735                           per_sa_allsa.bry_q5_rur
## 12736                           per_sa_allsa.bry_q5_tot
## 12737                           per_sa_allsa.bry_q5_urb
## 12738                      per_sa_allsa.cba_ep_preT_tot
## 12739                           per_sa_allsa.cba_ep_tot
## 12740                      per_sa_allsa.cba_q1_preT_tot
## 12741                           per_sa_allsa.cba_q1_rur
## 12742                           per_sa_allsa.cba_q1_tot
## 12743                           per_sa_allsa.cba_q1_urb
## 12744                      per_sa_allsa.cov_ep_preT_tot
## 12745                           per_sa_allsa.cov_ep_tot
## 12746                     per_sa_allsa.cov_pop_preT_tot
## 12747                          per_sa_allsa.cov_pop_rur
## 12748                          per_sa_allsa.cov_pop_tot
## 12749                          per_sa_allsa.cov_pop_urb
## 12750                      per_sa_allsa.cov_q1_preT_tot
## 12751                           per_sa_allsa.cov_q1_rur
## 12752                           per_sa_allsa.cov_q1_tot
## 12753                           per_sa_allsa.cov_q1_urb
## 12754                      per_sa_allsa.cov_q2_preT_tot
## 12755                           per_sa_allsa.cov_q2_rur
## 12756                           per_sa_allsa.cov_q2_tot
## 12757                           per_sa_allsa.cov_q2_urb
## 12758                      per_sa_allsa.cov_q3_preT_tot
## 12759                           per_sa_allsa.cov_q3_rur
## 12760                           per_sa_allsa.cov_q3_tot
## 12761                           per_sa_allsa.cov_q3_urb
## 12762                      per_sa_allsa.cov_q4_preT_tot
## 12763                           per_sa_allsa.cov_q4_rur
## 12764                           per_sa_allsa.cov_q4_tot
## 12765                           per_sa_allsa.cov_q4_urb
## 12766                      per_sa_allsa.cov_q5_preT_tot
## 12767                           per_sa_allsa.cov_q5_rur
## 12768                           per_sa_allsa.cov_q5_tot
## 12769                           per_sa_allsa.cov_q5_urb
## 12770                             per_sa_allsa_gini_rur
## 12771                             per_sa_allsa_gini_tot
## 12772                             per_sa_allsa_gini_urb
## 12773                            per_sa_allsa_p0_ep_tot
## 12774                               per_sa_allsa_p0_rur
## 12775                               per_sa_allsa_p0_tot
## 12776                               per_sa_allsa_p0_urb
## 12777                            per_sa_allsa_p1_ep_tot
## 12778                               per_sa_allsa_p1_rur
## 12779                               per_sa_allsa_p1_tot
## 12780                               per_sa_allsa_p1_urb
## 12781                         per_sa_cc.adq_ep_preT_tot
## 12782                              per_sa_cc.adq_ep_tot
## 12783                        per_sa_cc.adq_pop_preT_tot
## 12784                             per_sa_cc.adq_pop_rur
## 12785                             per_sa_cc.adq_pop_tot
## 12786                             per_sa_cc.adq_pop_urb
## 12787                         per_sa_cc.adq_q1_preT_tot
## 12788                              per_sa_cc.adq_q1_rur
## 12789                              per_sa_cc.adq_q1_tot
## 12790                              per_sa_cc.adq_q1_urb
## 12791                         per_sa_cc.adq_q2_preT_tot
## 12792                              per_sa_cc.adq_q2_rur
## 12793                              per_sa_cc.adq_q2_tot
## 12794                              per_sa_cc.adq_q2_urb
## 12795                         per_sa_cc.adq_q3_preT_tot
## 12796                              per_sa_cc.adq_q3_rur
## 12797                              per_sa_cc.adq_q3_tot
## 12798                              per_sa_cc.adq_q3_urb
## 12799                         per_sa_cc.adq_q4_preT_tot
## 12800                              per_sa_cc.adq_q4_rur
## 12801                              per_sa_cc.adq_q4_tot
## 12802                              per_sa_cc.adq_q4_urb
## 12803                         per_sa_cc.adq_q5_preT_tot
## 12804                              per_sa_cc.adq_q5_rur
## 12805                              per_sa_cc.adq_q5_tot
## 12806                              per_sa_cc.adq_q5_urb
## 12807                         per_sa_cc.avt_ep_preT_tot
## 12808                              per_sa_cc.avt_ep_tot
## 12809                        per_sa_cc.avt_pop_preT_tot
## 12810                             per_sa_cc.avt_pop_rur
## 12811                             per_sa_cc.avt_pop_tot
## 12812                             per_sa_cc.avt_pop_urb
## 12813                         per_sa_cc.avt_q1_preT_tot
## 12814                              per_sa_cc.avt_q1_rur
## 12815                              per_sa_cc.avt_q1_tot
## 12816                              per_sa_cc.avt_q1_urb
## 12817                         per_sa_cc.avt_q2_preT_tot
## 12818                              per_sa_cc.avt_q2_rur
## 12819                              per_sa_cc.avt_q2_tot
## 12820                              per_sa_cc.avt_q2_urb
## 12821                         per_sa_cc.avt_q3_preT_tot
## 12822                              per_sa_cc.avt_q3_rur
## 12823                              per_sa_cc.avt_q3_tot
## 12824                              per_sa_cc.avt_q3_urb
## 12825                         per_sa_cc.avt_q4_preT_tot
## 12826                              per_sa_cc.avt_q4_rur
## 12827                              per_sa_cc.avt_q4_tot
## 12828                              per_sa_cc.avt_q4_urb
## 12829                         per_sa_cc.avt_q5_preT_tot
## 12830                              per_sa_cc.avt_q5_rur
## 12831                              per_sa_cc.avt_q5_tot
## 12832                              per_sa_cc.avt_q5_urb
## 12833                         per_sa_cc.ben_ep_preT_tot
## 12834                              per_sa_cc.ben_ep_tot
## 12835                         per_sa_cc.ben_q1_preT_tot
## 12836                              per_sa_cc.ben_q1_rur
## 12837                              per_sa_cc.ben_q1_tot
## 12838                              per_sa_cc.ben_q1_urb
## 12839                         per_sa_cc.ben_q2_preT_tot
## 12840                              per_sa_cc.ben_q2_rur
## 12841                              per_sa_cc.ben_q2_tot
## 12842                              per_sa_cc.ben_q2_urb
## 12843                         per_sa_cc.ben_q3_preT_tot
## 12844                              per_sa_cc.ben_q3_rur
## 12845                              per_sa_cc.ben_q3_tot
## 12846                              per_sa_cc.ben_q3_urb
## 12847                         per_sa_cc.ben_q4_preT_tot
## 12848                              per_sa_cc.ben_q4_rur
## 12849                              per_sa_cc.ben_q4_tot
## 12850                              per_sa_cc.ben_q4_urb
## 12851                         per_sa_cc.ben_q5_preT_tot
## 12852                              per_sa_cc.ben_q5_rur
## 12853                              per_sa_cc.ben_q5_tot
## 12854                              per_sa_cc.ben_q5_urb
## 12855                         per_sa_cc.bry_ep_preT_tot
## 12856                              per_sa_cc.bry_ep_tot
## 12857                         per_sa_cc.bry_q1_preT_tot
## 12858                              per_sa_cc.bry_q1_rur
## 12859                              per_sa_cc.bry_q1_tot
## 12860                              per_sa_cc.bry_q1_urb
## 12861                         per_sa_cc.bry_q2_preT_tot
## 12862                              per_sa_cc.bry_q2_rur
## 12863                              per_sa_cc.bry_q2_tot
## 12864                              per_sa_cc.bry_q2_urb
## 12865                         per_sa_cc.bry_q3_preT_tot
## 12866                              per_sa_cc.bry_q3_rur
## 12867                              per_sa_cc.bry_q3_tot
## 12868                              per_sa_cc.bry_q3_urb
## 12869                         per_sa_cc.bry_q4_preT_tot
## 12870                              per_sa_cc.bry_q4_rur
## 12871                              per_sa_cc.bry_q4_tot
## 12872                              per_sa_cc.bry_q4_urb
## 12873                         per_sa_cc.bry_q5_preT_tot
## 12874                              per_sa_cc.bry_q5_rur
## 12875                              per_sa_cc.bry_q5_tot
## 12876                              per_sa_cc.bry_q5_urb
## 12877                         per_sa_cc.cba_ep_preT_tot
## 12878                              per_sa_cc.cba_ep_tot
## 12879                         per_sa_cc.cba_q1_preT_tot
## 12880                              per_sa_cc.cba_q1_rur
## 12881                              per_sa_cc.cba_q1_tot
## 12882                              per_sa_cc.cba_q1_urb
## 12883                         per_sa_cc.cov_ep_preT_tot
## 12884                              per_sa_cc.cov_ep_tot
## 12885                        per_sa_cc.cov_pop_preT_tot
## 12886                             per_sa_cc.cov_pop_rur
## 12887                             per_sa_cc.cov_pop_tot
## 12888                             per_sa_cc.cov_pop_urb
## 12889                         per_sa_cc.cov_q1_preT_tot
## 12890                              per_sa_cc.cov_q1_rur
## 12891                              per_sa_cc.cov_q1_tot
## 12892                              per_sa_cc.cov_q1_urb
## 12893                         per_sa_cc.cov_q2_preT_tot
## 12894                              per_sa_cc.cov_q2_rur
## 12895                              per_sa_cc.cov_q2_tot
## 12896                              per_sa_cc.cov_q2_urb
## 12897                         per_sa_cc.cov_q3_preT_tot
## 12898                              per_sa_cc.cov_q3_rur
## 12899                              per_sa_cc.cov_q3_tot
## 12900                              per_sa_cc.cov_q3_urb
## 12901                         per_sa_cc.cov_q4_preT_tot
## 12902                              per_sa_cc.cov_q4_rur
## 12903                              per_sa_cc.cov_q4_tot
## 12904                              per_sa_cc.cov_q4_urb
## 12905                         per_sa_cc.cov_q5_preT_tot
## 12906                              per_sa_cc.cov_q5_rur
## 12907                              per_sa_cc.cov_q5_tot
## 12908                              per_sa_cc.cov_q5_urb
## 12909                                per_sa_cc_gini_rur
## 12910                                per_sa_cc_gini_tot
## 12911                                per_sa_cc_gini_urb
## 12912                               per_sa_cc_p0_ep_tot
## 12913                                  per_sa_cc_p0_rur
## 12914                                  per_sa_cc_p0_tot
## 12915                                  per_sa_cc_p0_urb
## 12916                               per_sa_cc_p1_ep_tot
## 12917                                  per_sa_cc_p1_rur
## 12918                                  per_sa_cc_p1_tot
## 12919                                  per_sa_cc_p1_urb
## 12920                         per_sa_ct.adq_ep_preT_tot
## 12921                              per_sa_ct.adq_ep_tot
## 12922                        per_sa_ct.adq_pop_preT_tot
## 12923                             per_sa_ct.adq_pop_rur
## 12924                             per_sa_ct.adq_pop_tot
## 12925                             per_sa_ct.adq_pop_urb
## 12926                         per_sa_ct.adq_q1_preT_tot
## 12927                              per_sa_ct.adq_q1_rur
## 12928                              per_sa_ct.adq_q1_tot
## 12929                              per_sa_ct.adq_q1_urb
## 12930                         per_sa_ct.adq_q2_preT_tot
## 12931                              per_sa_ct.adq_q2_rur
## 12932                              per_sa_ct.adq_q2_tot
## 12933                              per_sa_ct.adq_q2_urb
## 12934                         per_sa_ct.adq_q3_preT_tot
## 12935                              per_sa_ct.adq_q3_rur
## 12936                              per_sa_ct.adq_q3_tot
## 12937                              per_sa_ct.adq_q3_urb
## 12938                         per_sa_ct.adq_q4_preT_tot
## 12939                              per_sa_ct.adq_q4_rur
## 12940                              per_sa_ct.adq_q4_tot
## 12941                              per_sa_ct.adq_q4_urb
## 12942                         per_sa_ct.adq_q5_preT_tot
## 12943                              per_sa_ct.adq_q5_rur
## 12944                              per_sa_ct.adq_q5_tot
## 12945                              per_sa_ct.adq_q5_urb
## 12946                         per_sa_ct.avt_ep_preT_tot
## 12947                              per_sa_ct.avt_ep_tot
## 12948                        per_sa_ct.avt_pop_preT_tot
## 12949                             per_sa_ct.avt_pop_rur
## 12950                             per_sa_ct.avt_pop_tot
## 12951                             per_sa_ct.avt_pop_urb
## 12952                         per_sa_ct.avt_q1_preT_tot
## 12953                              per_sa_ct.avt_q1_rur
## 12954                              per_sa_ct.avt_q1_tot
## 12955                              per_sa_ct.avt_q1_urb
## 12956                         per_sa_ct.avt_q2_preT_tot
## 12957                              per_sa_ct.avt_q2_rur
## 12958                              per_sa_ct.avt_q2_tot
## 12959                              per_sa_ct.avt_q2_urb
## 12960                         per_sa_ct.avt_q3_preT_tot
## 12961                              per_sa_ct.avt_q3_rur
## 12962                              per_sa_ct.avt_q3_tot
## 12963                              per_sa_ct.avt_q3_urb
## 12964                         per_sa_ct.avt_q4_preT_tot
## 12965                              per_sa_ct.avt_q4_rur
## 12966                              per_sa_ct.avt_q4_tot
## 12967                              per_sa_ct.avt_q4_urb
## 12968                         per_sa_ct.avt_q5_preT_tot
## 12969                              per_sa_ct.avt_q5_rur
## 12970                              per_sa_ct.avt_q5_tot
## 12971                              per_sa_ct.avt_q5_urb
## 12972                         per_sa_ct.ben_ep_preT_tot
## 12973                              per_sa_ct.ben_ep_tot
## 12974                         per_sa_ct.ben_q1_preT_tot
## 12975                              per_sa_ct.ben_q1_rur
## 12976                              per_sa_ct.ben_q1_tot
## 12977                              per_sa_ct.ben_q1_urb
## 12978                         per_sa_ct.ben_q2_preT_tot
## 12979                              per_sa_ct.ben_q2_rur
## 12980                              per_sa_ct.ben_q2_tot
## 12981                              per_sa_ct.ben_q2_urb
## 12982                         per_sa_ct.ben_q3_preT_tot
## 12983                              per_sa_ct.ben_q3_rur
## 12984                              per_sa_ct.ben_q3_tot
## 12985                              per_sa_ct.ben_q3_urb
## 12986                         per_sa_ct.ben_q4_preT_tot
## 12987                              per_sa_ct.ben_q4_rur
## 12988                              per_sa_ct.ben_q4_tot
## 12989                              per_sa_ct.ben_q4_urb
## 12990                         per_sa_ct.ben_q5_preT_tot
## 12991                              per_sa_ct.ben_q5_rur
## 12992                              per_sa_ct.ben_q5_tot
## 12993                              per_sa_ct.ben_q5_urb
## 12994                         per_sa_ct.bry_ep_preT_tot
## 12995                              per_sa_ct.bry_ep_tot
## 12996                         per_sa_ct.bry_q1_preT_tot
## 12997                              per_sa_ct.bry_q1_rur
## 12998                              per_sa_ct.bry_q1_tot
## 12999                              per_sa_ct.bry_q1_urb
## 13000                         per_sa_ct.bry_q2_preT_tot
## 13001                              per_sa_ct.bry_q2_rur
## 13002                              per_sa_ct.bry_q2_tot
## 13003                              per_sa_ct.bry_q2_urb
## 13004                         per_sa_ct.bry_q3_preT_tot
## 13005                              per_sa_ct.bry_q3_rur
## 13006                              per_sa_ct.bry_q3_tot
## 13007                              per_sa_ct.bry_q3_urb
## 13008                         per_sa_ct.bry_q4_preT_tot
## 13009                              per_sa_ct.bry_q4_rur
## 13010                              per_sa_ct.bry_q4_tot
## 13011                              per_sa_ct.bry_q4_urb
## 13012                         per_sa_ct.bry_q5_preT_tot
## 13013                              per_sa_ct.bry_q5_rur
## 13014                              per_sa_ct.bry_q5_tot
## 13015                              per_sa_ct.bry_q5_urb
## 13016                         per_sa_ct.cba_ep_preT_tot
## 13017                              per_sa_ct.cba_ep_tot
## 13018                         per_sa_ct.cba_q1_preT_tot
## 13019                              per_sa_ct.cba_q1_rur
## 13020                              per_sa_ct.cba_q1_tot
## 13021                              per_sa_ct.cba_q1_urb
## 13022                         per_sa_ct.cov_ep_preT_tot
## 13023                              per_sa_ct.cov_ep_tot
## 13024                        per_sa_ct.cov_pop_preT_tot
## 13025                             per_sa_ct.cov_pop_rur
## 13026                             per_sa_ct.cov_pop_tot
## 13027                             per_sa_ct.cov_pop_urb
## 13028                         per_sa_ct.cov_q1_preT_tot
## 13029                              per_sa_ct.cov_q1_rur
## 13030                              per_sa_ct.cov_q1_tot
## 13031                              per_sa_ct.cov_q1_urb
## 13032                         per_sa_ct.cov_q2_preT_tot
## 13033                              per_sa_ct.cov_q2_rur
## 13034                              per_sa_ct.cov_q2_tot
## 13035                              per_sa_ct.cov_q2_urb
## 13036                         per_sa_ct.cov_q3_preT_tot
## 13037                              per_sa_ct.cov_q3_rur
## 13038                              per_sa_ct.cov_q3_tot
## 13039                              per_sa_ct.cov_q3_urb
## 13040                         per_sa_ct.cov_q4_preT_tot
## 13041                              per_sa_ct.cov_q4_rur
## 13042                              per_sa_ct.cov_q4_tot
## 13043                              per_sa_ct.cov_q4_urb
## 13044                         per_sa_ct.cov_q5_preT_tot
## 13045                              per_sa_ct.cov_q5_rur
## 13046                              per_sa_ct.cov_q5_tot
## 13047                              per_sa_ct.cov_q5_urb
## 13048                                per_sa_ct_gini_rur
## 13049                                per_sa_ct_gini_tot
## 13050                                per_sa_ct_gini_urb
## 13051                               per_sa_ct_p0_ep_tot
## 13052                                  per_sa_ct_p0_rur
## 13053                                  per_sa_ct_p0_tot
## 13054                                  per_sa_ct_p0_urb
## 13055                               per_sa_ct_p1_ep_tot
## 13056                                  per_sa_ct_p1_rur
## 13057                                  per_sa_ct_p1_tot
## 13058                                  per_sa_ct_p1_urb
## 13059                         per_sa_fw.adq_ep_preT_tot
## 13060                              per_sa_fw.adq_ep_tot
## 13061                        per_sa_fw.adq_pop_preT_tot
## 13062                             per_sa_fw.adq_pop_rur
## 13063                             per_sa_fw.adq_pop_tot
## 13064                             per_sa_fw.adq_pop_urb
## 13065                         per_sa_fw.adq_q1_preT_tot
## 13066                              per_sa_fw.adq_q1_rur
## 13067                              per_sa_fw.adq_q1_tot
## 13068                              per_sa_fw.adq_q1_urb
## 13069                         per_sa_fw.adq_q2_preT_tot
## 13070                              per_sa_fw.adq_q2_rur
## 13071                              per_sa_fw.adq_q2_tot
## 13072                              per_sa_fw.adq_q2_urb
## 13073                         per_sa_fw.adq_q3_preT_tot
## 13074                              per_sa_fw.adq_q3_rur
## 13075                              per_sa_fw.adq_q3_tot
## 13076                              per_sa_fw.adq_q3_urb
## 13077                         per_sa_fw.adq_q4_preT_tot
## 13078                              per_sa_fw.adq_q4_rur
## 13079                              per_sa_fw.adq_q4_tot
## 13080                              per_sa_fw.adq_q4_urb
## 13081                         per_sa_fw.adq_q5_preT_tot
## 13082                              per_sa_fw.adq_q5_rur
## 13083                              per_sa_fw.adq_q5_tot
## 13084                              per_sa_fw.adq_q5_urb
## 13085                         per_sa_fw.avt_ep_preT_tot
## 13086                              per_sa_fw.avt_ep_tot
## 13087                        per_sa_fw.avt_pop_preT_tot
## 13088                             per_sa_fw.avt_pop_rur
## 13089                             per_sa_fw.avt_pop_tot
## 13090                             per_sa_fw.avt_pop_urb
## 13091                         per_sa_fw.avt_q1_preT_tot
## 13092                              per_sa_fw.avt_q1_rur
## 13093                              per_sa_fw.avt_q1_tot
## 13094                              per_sa_fw.avt_q1_urb
## 13095                         per_sa_fw.avt_q2_preT_tot
## 13096                              per_sa_fw.avt_q2_rur
## 13097                              per_sa_fw.avt_q2_tot
## 13098                              per_sa_fw.avt_q2_urb
## 13099                         per_sa_fw.avt_q3_preT_tot
## 13100                              per_sa_fw.avt_q3_rur
## 13101                              per_sa_fw.avt_q3_tot
## 13102                              per_sa_fw.avt_q3_urb
## 13103                         per_sa_fw.avt_q4_preT_tot
## 13104                              per_sa_fw.avt_q4_rur
## 13105                              per_sa_fw.avt_q4_tot
## 13106                              per_sa_fw.avt_q4_urb
## 13107                         per_sa_fw.avt_q5_preT_tot
## 13108                              per_sa_fw.avt_q5_rur
## 13109                              per_sa_fw.avt_q5_tot
## 13110                              per_sa_fw.avt_q5_urb
## 13111                         per_sa_fw.ben_ep_preT_tot
## 13112                              per_sa_fw.ben_ep_tot
## 13113                         per_sa_fw.ben_q1_preT_tot
## 13114                              per_sa_fw.ben_q1_rur
## 13115                              per_sa_fw.ben_q1_tot
## 13116                              per_sa_fw.ben_q1_urb
## 13117                         per_sa_fw.ben_q2_preT_tot
## 13118                              per_sa_fw.ben_q2_rur
## 13119                              per_sa_fw.ben_q2_tot
## 13120                              per_sa_fw.ben_q2_urb
## 13121                         per_sa_fw.ben_q3_preT_tot
## 13122                              per_sa_fw.ben_q3_rur
## 13123                              per_sa_fw.ben_q3_tot
## 13124                              per_sa_fw.ben_q3_urb
## 13125                         per_sa_fw.ben_q4_preT_tot
## 13126                              per_sa_fw.ben_q4_rur
## 13127                              per_sa_fw.ben_q4_tot
## 13128                              per_sa_fw.ben_q4_urb
## 13129                         per_sa_fw.ben_q5_preT_tot
## 13130                              per_sa_fw.ben_q5_rur
## 13131                              per_sa_fw.ben_q5_tot
## 13132                              per_sa_fw.ben_q5_urb
## 13133                         per_sa_fw.bry_ep_preT_tot
## 13134                              per_sa_fw.bry_ep_tot
## 13135                         per_sa_fw.bry_q1_preT_tot
## 13136                              per_sa_fw.bry_q1_rur
## 13137                              per_sa_fw.bry_q1_tot
## 13138                              per_sa_fw.bry_q1_urb
## 13139                         per_sa_fw.bry_q2_preT_tot
## 13140                              per_sa_fw.bry_q2_rur
## 13141                              per_sa_fw.bry_q2_tot
## 13142                              per_sa_fw.bry_q2_urb
## 13143                         per_sa_fw.bry_q3_preT_tot
## 13144                              per_sa_fw.bry_q3_rur
## 13145                              per_sa_fw.bry_q3_tot
## 13146                              per_sa_fw.bry_q3_urb
## 13147                         per_sa_fw.bry_q4_preT_tot
## 13148                              per_sa_fw.bry_q4_rur
## 13149                              per_sa_fw.bry_q4_tot
## 13150                              per_sa_fw.bry_q4_urb
## 13151                         per_sa_fw.bry_q5_preT_tot
## 13152                              per_sa_fw.bry_q5_rur
## 13153                              per_sa_fw.bry_q5_tot
## 13154                              per_sa_fw.bry_q5_urb
## 13155                         per_sa_fw.cba_ep_preT_tot
## 13156                              per_sa_fw.cba_ep_tot
## 13157                         per_sa_fw.cba_q1_preT_tot
## 13158                              per_sa_fw.cba_q1_rur
## 13159                              per_sa_fw.cba_q1_tot
## 13160                              per_sa_fw.cba_q1_urb
## 13161                         per_sa_fw.cov_ep_preT_tot
## 13162                              per_sa_fw.cov_ep_tot
## 13163                        per_sa_fw.cov_pop_preT_tot
## 13164                             per_sa_fw.cov_pop_rur
## 13165                             per_sa_fw.cov_pop_tot
## 13166                             per_sa_fw.cov_pop_urb
## 13167                         per_sa_fw.cov_q1_preT_tot
## 13168                              per_sa_fw.cov_q1_rur
## 13169                              per_sa_fw.cov_q1_tot
## 13170                              per_sa_fw.cov_q1_urb
## 13171                         per_sa_fw.cov_q2_preT_tot
## 13172                              per_sa_fw.cov_q2_rur
## 13173                              per_sa_fw.cov_q2_tot
## 13174                              per_sa_fw.cov_q2_urb
## 13175                         per_sa_fw.cov_q3_preT_tot
## 13176                              per_sa_fw.cov_q3_rur
## 13177                              per_sa_fw.cov_q3_tot
## 13178                              per_sa_fw.cov_q3_urb
## 13179                         per_sa_fw.cov_q4_preT_tot
## 13180                              per_sa_fw.cov_q4_rur
## 13181                              per_sa_fw.cov_q4_tot
## 13182                              per_sa_fw.cov_q4_urb
## 13183                         per_sa_fw.cov_q5_preT_tot
## 13184                              per_sa_fw.cov_q5_rur
## 13185                              per_sa_fw.cov_q5_tot
## 13186                              per_sa_fw.cov_q5_urb
## 13187                                per_sa_fw_gini_rur
## 13188                                per_sa_fw_gini_tot
## 13189                                per_sa_fw_gini_urb
## 13190                               per_sa_fw_p0_ep_tot
## 13191                                  per_sa_fw_p0_rur
## 13192                                  per_sa_fw_p0_tot
## 13193                                  per_sa_fw_p0_urb
## 13194                               per_sa_fw_p1_ep_tot
## 13195                                  per_sa_fw_p1_rur
## 13196                                  per_sa_fw_p1_tot
## 13197                                  per_sa_fw_p1_urb
## 13198                         per_sa_ik.adq_ep_preT_tot
## 13199                              per_sa_ik.adq_ep_tot
## 13200                        per_sa_ik.adq_pop_preT_tot
## 13201                             per_sa_ik.adq_pop_rur
## 13202                             per_sa_ik.adq_pop_tot
## 13203                             per_sa_ik.adq_pop_urb
## 13204                         per_sa_ik.adq_q1_preT_tot
## 13205                              per_sa_ik.adq_q1_rur
## 13206                              per_sa_ik.adq_q1_tot
## 13207                              per_sa_ik.adq_q1_urb
## 13208                         per_sa_ik.adq_q2_preT_tot
## 13209                              per_sa_ik.adq_q2_rur
## 13210                              per_sa_ik.adq_q2_tot
## 13211                              per_sa_ik.adq_q2_urb
## 13212                         per_sa_ik.adq_q3_preT_tot
## 13213                              per_sa_ik.adq_q3_rur
## 13214                              per_sa_ik.adq_q3_tot
## 13215                              per_sa_ik.adq_q3_urb
## 13216                         per_sa_ik.adq_q4_preT_tot
## 13217                              per_sa_ik.adq_q4_rur
## 13218                              per_sa_ik.adq_q4_tot
## 13219                              per_sa_ik.adq_q4_urb
## 13220                         per_sa_ik.adq_q5_preT_tot
## 13221                              per_sa_ik.adq_q5_rur
## 13222                              per_sa_ik.adq_q5_tot
## 13223                              per_sa_ik.adq_q5_urb
## 13224                         per_sa_ik.avt_ep_preT_tot
## 13225                              per_sa_ik.avt_ep_tot
## 13226                        per_sa_ik.avt_pop_preT_tot
## 13227                             per_sa_ik.avt_pop_rur
## 13228                             per_sa_ik.avt_pop_tot
## 13229                             per_sa_ik.avt_pop_urb
## 13230                         per_sa_ik.avt_q1_preT_tot
## 13231                              per_sa_ik.avt_q1_rur
## 13232                              per_sa_ik.avt_q1_tot
## 13233                              per_sa_ik.avt_q1_urb
## 13234                         per_sa_ik.avt_q2_preT_tot
## 13235                              per_sa_ik.avt_q2_rur
## 13236                              per_sa_ik.avt_q2_tot
## 13237                              per_sa_ik.avt_q2_urb
## 13238                         per_sa_ik.avt_q3_preT_tot
## 13239                              per_sa_ik.avt_q3_rur
## 13240                              per_sa_ik.avt_q3_tot
## 13241                              per_sa_ik.avt_q3_urb
## 13242                         per_sa_ik.avt_q4_preT_tot
## 13243                              per_sa_ik.avt_q4_rur
## 13244                              per_sa_ik.avt_q4_tot
## 13245                              per_sa_ik.avt_q4_urb
## 13246                         per_sa_ik.avt_q5_preT_tot
## 13247                              per_sa_ik.avt_q5_rur
## 13248                              per_sa_ik.avt_q5_tot
## 13249                              per_sa_ik.avt_q5_urb
## 13250                         per_sa_ik.ben_ep_preT_tot
## 13251                              per_sa_ik.ben_ep_tot
## 13252                         per_sa_ik.ben_q1_preT_tot
## 13253                              per_sa_ik.ben_q1_rur
## 13254                              per_sa_ik.ben_q1_tot
## 13255                              per_sa_ik.ben_q1_urb
## 13256                         per_sa_ik.ben_q2_preT_tot
## 13257                              per_sa_ik.ben_q2_rur
## 13258                              per_sa_ik.ben_q2_tot
## 13259                              per_sa_ik.ben_q2_urb
## 13260                         per_sa_ik.ben_q3_preT_tot
## 13261                              per_sa_ik.ben_q3_rur
## 13262                              per_sa_ik.ben_q3_tot
## 13263                              per_sa_ik.ben_q3_urb
## 13264                         per_sa_ik.ben_q4_preT_tot
## 13265                              per_sa_ik.ben_q4_rur
## 13266                              per_sa_ik.ben_q4_tot
## 13267                              per_sa_ik.ben_q4_urb
## 13268                         per_sa_ik.ben_q5_preT_tot
## 13269                              per_sa_ik.ben_q5_rur
## 13270                              per_sa_ik.ben_q5_tot
## 13271                              per_sa_ik.ben_q5_urb
## 13272                         per_sa_ik.bry_ep_preT_tot
## 13273                              per_sa_ik.bry_ep_tot
## 13274                         per_sa_ik.bry_q1_preT_tot
## 13275                              per_sa_ik.bry_q1_rur
## 13276                              per_sa_ik.bry_q1_tot
## 13277                              per_sa_ik.bry_q1_urb
## 13278                         per_sa_ik.bry_q2_preT_tot
## 13279                              per_sa_ik.bry_q2_rur
## 13280                              per_sa_ik.bry_q2_tot
## 13281                              per_sa_ik.bry_q2_urb
## 13282                         per_sa_ik.bry_q3_preT_tot
## 13283                              per_sa_ik.bry_q3_rur
## 13284                              per_sa_ik.bry_q3_tot
## 13285                              per_sa_ik.bry_q3_urb
## 13286                         per_sa_ik.bry_q4_preT_tot
## 13287                              per_sa_ik.bry_q4_rur
## 13288                              per_sa_ik.bry_q4_tot
## 13289                              per_sa_ik.bry_q4_urb
## 13290                         per_sa_ik.bry_q5_preT_tot
## 13291                              per_sa_ik.bry_q5_rur
## 13292                              per_sa_ik.bry_q5_tot
## 13293                              per_sa_ik.bry_q5_urb
## 13294                         per_sa_ik.cba_ep_preT_tot
## 13295                              per_sa_ik.cba_ep_tot
## 13296                         per_sa_ik.cba_q1_preT_tot
## 13297                              per_sa_ik.cba_q1_rur
## 13298                              per_sa_ik.cba_q1_tot
## 13299                              per_sa_ik.cba_q1_urb
## 13300                         per_sa_ik.cov_ep_preT_tot
## 13301                              per_sa_ik.cov_ep_tot
## 13302                        per_sa_ik.cov_pop_preT_tot
## 13303                             per_sa_ik.cov_pop_rur
## 13304                             per_sa_ik.cov_pop_tot
## 13305                             per_sa_ik.cov_pop_urb
## 13306                         per_sa_ik.cov_q1_preT_tot
## 13307                              per_sa_ik.cov_q1_rur
## 13308                              per_sa_ik.cov_q1_tot
## 13309                              per_sa_ik.cov_q1_urb
## 13310                         per_sa_ik.cov_q2_preT_tot
## 13311                              per_sa_ik.cov_q2_rur
## 13312                              per_sa_ik.cov_q2_tot
## 13313                              per_sa_ik.cov_q2_urb
## 13314                         per_sa_ik.cov_q3_preT_tot
## 13315                              per_sa_ik.cov_q3_rur
## 13316                              per_sa_ik.cov_q3_tot
## 13317                              per_sa_ik.cov_q3_urb
## 13318                         per_sa_ik.cov_q4_preT_tot
## 13319                              per_sa_ik.cov_q4_rur
## 13320                              per_sa_ik.cov_q4_tot
## 13321                              per_sa_ik.cov_q4_urb
## 13322                         per_sa_ik.cov_q5_preT_tot
## 13323                              per_sa_ik.cov_q5_rur
## 13324                              per_sa_ik.cov_q5_tot
## 13325                              per_sa_ik.cov_q5_urb
## 13326                                per_sa_ik_gini_rur
## 13327                                per_sa_ik_gini_tot
## 13328                                per_sa_ik_gini_urb
## 13329                               per_sa_ik_p0_ep_tot
## 13330                                  per_sa_ik_p0_rur
## 13331                                  per_sa_ik_p0_tot
## 13332                                  per_sa_ik_p0_urb
## 13333                               per_sa_ik_p1_ep_tot
## 13334                                  per_sa_ik_p1_rur
## 13335                                  per_sa_ik_p1_tot
## 13336                                  per_sa_ik_p1_urb
## 13337                         per_sa_os.adq_ep_preT_tot
## 13338                              per_sa_os.adq_ep_tot
## 13339                        per_sa_os.adq_pop_preT_tot
## 13340                             per_sa_os.adq_pop_rur
## 13341                             per_sa_os.adq_pop_tot
## 13342                             per_sa_os.adq_pop_urb
## 13343                         per_sa_os.adq_q1_preT_tot
## 13344                              per_sa_os.adq_q1_rur
## 13345                              per_sa_os.adq_q1_tot
## 13346                              per_sa_os.adq_q1_urb
## 13347                         per_sa_os.adq_q2_preT_tot
## 13348                              per_sa_os.adq_q2_rur
## 13349                              per_sa_os.adq_q2_tot
## 13350                              per_sa_os.adq_q2_urb
## 13351                         per_sa_os.adq_q3_preT_tot
## 13352                              per_sa_os.adq_q3_rur
## 13353                              per_sa_os.adq_q3_tot
## 13354                              per_sa_os.adq_q3_urb
## 13355                         per_sa_os.adq_q4_preT_tot
## 13356                              per_sa_os.adq_q4_rur
## 13357                              per_sa_os.adq_q4_tot
## 13358                              per_sa_os.adq_q4_urb
## 13359                         per_sa_os.adq_q5_preT_tot
## 13360                              per_sa_os.adq_q5_rur
## 13361                              per_sa_os.adq_q5_tot
## 13362                              per_sa_os.adq_q5_urb
## 13363                         per_sa_os.avt_ep_preT_tot
## 13364                              per_sa_os.avt_ep_tot
## 13365                        per_sa_os.avt_pop_preT_tot
## 13366                             per_sa_os.avt_pop_rur
## 13367                             per_sa_os.avt_pop_tot
## 13368                             per_sa_os.avt_pop_urb
## 13369                         per_sa_os.avt_q1_preT_tot
## 13370                              per_sa_os.avt_q1_rur
## 13371                              per_sa_os.avt_q1_tot
## 13372                              per_sa_os.avt_q1_urb
## 13373                         per_sa_os.avt_q2_preT_tot
## 13374                              per_sa_os.avt_q2_rur
## 13375                              per_sa_os.avt_q2_tot
## 13376                              per_sa_os.avt_q2_urb
## 13377                         per_sa_os.avt_q3_preT_tot
## 13378                              per_sa_os.avt_q3_rur
## 13379                              per_sa_os.avt_q3_tot
## 13380                              per_sa_os.avt_q3_urb
## 13381                         per_sa_os.avt_q4_preT_tot
## 13382                              per_sa_os.avt_q4_rur
## 13383                              per_sa_os.avt_q4_tot
## 13384                              per_sa_os.avt_q4_urb
## 13385                         per_sa_os.avt_q5_preT_tot
## 13386                              per_sa_os.avt_q5_rur
## 13387                              per_sa_os.avt_q5_tot
## 13388                              per_sa_os.avt_q5_urb
## 13389                         per_sa_os.ben_ep_preT_tot
## 13390                              per_sa_os.ben_ep_tot
## 13391                         per_sa_os.ben_q1_preT_tot
## 13392                              per_sa_os.ben_q1_rur
## 13393                              per_sa_os.ben_q1_tot
## 13394                              per_sa_os.ben_q1_urb
## 13395                         per_sa_os.ben_q2_preT_tot
## 13396                              per_sa_os.ben_q2_rur
## 13397                              per_sa_os.ben_q2_tot
## 13398                              per_sa_os.ben_q2_urb
## 13399                         per_sa_os.ben_q3_preT_tot
## 13400                              per_sa_os.ben_q3_rur
## 13401                              per_sa_os.ben_q3_tot
## 13402                              per_sa_os.ben_q3_urb
## 13403                         per_sa_os.ben_q4_preT_tot
## 13404                              per_sa_os.ben_q4_rur
## 13405                              per_sa_os.ben_q4_tot
## 13406                              per_sa_os.ben_q4_urb
## 13407                         per_sa_os.ben_q5_preT_tot
## 13408                              per_sa_os.ben_q5_rur
## 13409                              per_sa_os.ben_q5_tot
## 13410                              per_sa_os.ben_q5_urb
## 13411                         per_sa_os.bry_ep_preT_tot
## 13412                              per_sa_os.bry_ep_tot
## 13413                         per_sa_os.bry_q1_preT_tot
## 13414                              per_sa_os.bry_q1_rur
## 13415                              per_sa_os.bry_q1_tot
## 13416                              per_sa_os.bry_q1_urb
## 13417                         per_sa_os.bry_q2_preT_tot
## 13418                              per_sa_os.bry_q2_rur
## 13419                              per_sa_os.bry_q2_tot
## 13420                              per_sa_os.bry_q2_urb
## 13421                         per_sa_os.bry_q3_preT_tot
## 13422                              per_sa_os.bry_q3_rur
## 13423                              per_sa_os.bry_q3_tot
## 13424                              per_sa_os.bry_q3_urb
## 13425                         per_sa_os.bry_q4_preT_tot
## 13426                              per_sa_os.bry_q4_rur
## 13427                              per_sa_os.bry_q4_tot
## 13428                              per_sa_os.bry_q4_urb
## 13429                         per_sa_os.bry_q5_preT_tot
## 13430                              per_sa_os.bry_q5_rur
## 13431                              per_sa_os.bry_q5_tot
## 13432                              per_sa_os.bry_q5_urb
## 13433                         per_sa_os.cba_ep_preT_tot
## 13434                              per_sa_os.cba_ep_tot
## 13435                         per_sa_os.cba_q1_preT_tot
## 13436                              per_sa_os.cba_q1_rur
## 13437                              per_sa_os.cba_q1_tot
## 13438                              per_sa_os.cba_q1_urb
## 13439                         per_sa_os.cov_ep_preT_tot
## 13440                              per_sa_os.cov_ep_tot
## 13441                        per_sa_os.cov_pop_preT_tot
## 13442                             per_sa_os.cov_pop_rur
## 13443                             per_sa_os.cov_pop_tot
## 13444                             per_sa_os.cov_pop_urb
## 13445                         per_sa_os.cov_q1_preT_tot
## 13446                              per_sa_os.cov_q1_rur
## 13447                              per_sa_os.cov_q1_tot
## 13448                              per_sa_os.cov_q1_urb
## 13449                         per_sa_os.cov_q2_preT_tot
## 13450                              per_sa_os.cov_q2_rur
## 13451                              per_sa_os.cov_q2_tot
## 13452                              per_sa_os.cov_q2_urb
## 13453                         per_sa_os.cov_q3_preT_tot
## 13454                              per_sa_os.cov_q3_rur
## 13455                              per_sa_os.cov_q3_tot
## 13456                              per_sa_os.cov_q3_urb
## 13457                         per_sa_os.cov_q4_preT_tot
## 13458                              per_sa_os.cov_q4_rur
## 13459                              per_sa_os.cov_q4_tot
## 13460                              per_sa_os.cov_q4_urb
## 13461                         per_sa_os.cov_q5_preT_tot
## 13462                              per_sa_os.cov_q5_rur
## 13463                              per_sa_os.cov_q5_tot
## 13464                              per_sa_os.cov_q5_urb
## 13465                                per_sa_os_gini_rur
## 13466                                per_sa_os_gini_tot
## 13467                                per_sa_os_gini_urb
## 13468                               per_sa_os_p0_ep_tot
## 13469                                  per_sa_os_p0_rur
## 13470                                  per_sa_os_p0_tot
## 13471                                  per_sa_os_p0_urb
## 13472                               per_sa_os_p1_ep_tot
## 13473                                  per_sa_os_p1_rur
## 13474                                  per_sa_os_p1_tot
## 13475                                  per_sa_os_p1_urb
## 13476                         per_sa_pw.adq_ep_preT_tot
## 13477                              per_sa_pw.adq_ep_tot
## 13478                        per_sa_pw.adq_pop_preT_tot
## 13479                             per_sa_pw.adq_pop_rur
## 13480                             per_sa_pw.adq_pop_tot
## 13481                             per_sa_pw.adq_pop_urb
## 13482                         per_sa_pw.adq_q1_preT_tot
## 13483                              per_sa_pw.adq_q1_rur
## 13484                              per_sa_pw.adq_q1_tot
## 13485                              per_sa_pw.adq_q1_urb
## 13486                         per_sa_pw.adq_q2_preT_tot
## 13487                              per_sa_pw.adq_q2_rur
## 13488                              per_sa_pw.adq_q2_tot
## 13489                              per_sa_pw.adq_q2_urb
## 13490                         per_sa_pw.adq_q3_preT_tot
## 13491                              per_sa_pw.adq_q3_rur
## 13492                              per_sa_pw.adq_q3_tot
## 13493                              per_sa_pw.adq_q3_urb
## 13494                         per_sa_pw.adq_q4_preT_tot
## 13495                              per_sa_pw.adq_q4_rur
## 13496                              per_sa_pw.adq_q4_tot
## 13497                              per_sa_pw.adq_q4_urb
## 13498                         per_sa_pw.adq_q5_preT_tot
## 13499                              per_sa_pw.adq_q5_rur
## 13500                              per_sa_pw.adq_q5_tot
## 13501                              per_sa_pw.adq_q5_urb
## 13502                         per_sa_pw.avt_ep_preT_tot
## 13503                              per_sa_pw.avt_ep_tot
## 13504                        per_sa_pw.avt_pop_preT_tot
## 13505                             per_sa_pw.avt_pop_rur
## 13506                             per_sa_pw.avt_pop_tot
## 13507                             per_sa_pw.avt_pop_urb
## 13508                         per_sa_pw.avt_q1_preT_tot
## 13509                              per_sa_pw.avt_q1_rur
## 13510                              per_sa_pw.avt_q1_tot
## 13511                              per_sa_pw.avt_q1_urb
## 13512                         per_sa_pw.avt_q2_preT_tot
## 13513                              per_sa_pw.avt_q2_rur
## 13514                              per_sa_pw.avt_q2_tot
## 13515                              per_sa_pw.avt_q2_urb
## 13516                         per_sa_pw.avt_q3_preT_tot
## 13517                              per_sa_pw.avt_q3_rur
## 13518                              per_sa_pw.avt_q3_tot
## 13519                              per_sa_pw.avt_q3_urb
## 13520                         per_sa_pw.avt_q4_preT_tot
## 13521                              per_sa_pw.avt_q4_rur
## 13522                              per_sa_pw.avt_q4_tot
## 13523                              per_sa_pw.avt_q4_urb
## 13524                         per_sa_pw.avt_q5_preT_tot
## 13525                              per_sa_pw.avt_q5_rur
## 13526                              per_sa_pw.avt_q5_tot
## 13527                              per_sa_pw.avt_q5_urb
## 13528                         per_sa_pw.ben_ep_preT_tot
## 13529                              per_sa_pw.ben_ep_tot
## 13530                         per_sa_pw.ben_q1_preT_tot
## 13531                              per_sa_pw.ben_q1_rur
## 13532                              per_sa_pw.ben_q1_tot
## 13533                              per_sa_pw.ben_q1_urb
## 13534                         per_sa_pw.ben_q2_preT_tot
## 13535                              per_sa_pw.ben_q2_rur
## 13536                              per_sa_pw.ben_q2_tot
## 13537                              per_sa_pw.ben_q2_urb
## 13538                         per_sa_pw.ben_q3_preT_tot
## 13539                              per_sa_pw.ben_q3_rur
## 13540                              per_sa_pw.ben_q3_tot
## 13541                              per_sa_pw.ben_q3_urb
## 13542                         per_sa_pw.ben_q4_preT_tot
## 13543                              per_sa_pw.ben_q4_rur
## 13544                              per_sa_pw.ben_q4_tot
## 13545                              per_sa_pw.ben_q4_urb
## 13546                         per_sa_pw.ben_q5_preT_tot
## 13547                              per_sa_pw.ben_q5_rur
## 13548                              per_sa_pw.ben_q5_tot
## 13549                              per_sa_pw.ben_q5_urb
## 13550                         per_sa_pw.bry_ep_preT_tot
## 13551                              per_sa_pw.bry_ep_tot
## 13552                         per_sa_pw.bry_q1_preT_tot
## 13553                              per_sa_pw.bry_q1_rur
## 13554                              per_sa_pw.bry_q1_tot
## 13555                              per_sa_pw.bry_q1_urb
## 13556                         per_sa_pw.bry_q2_preT_tot
## 13557                              per_sa_pw.bry_q2_rur
## 13558                              per_sa_pw.bry_q2_tot
## 13559                              per_sa_pw.bry_q2_urb
## 13560                         per_sa_pw.bry_q3_preT_tot
## 13561                              per_sa_pw.bry_q3_rur
## 13562                              per_sa_pw.bry_q3_tot
## 13563                              per_sa_pw.bry_q3_urb
## 13564                         per_sa_pw.bry_q4_preT_tot
## 13565                              per_sa_pw.bry_q4_rur
## 13566                              per_sa_pw.bry_q4_tot
## 13567                              per_sa_pw.bry_q4_urb
## 13568                         per_sa_pw.bry_q5_preT_tot
## 13569                              per_sa_pw.bry_q5_rur
## 13570                              per_sa_pw.bry_q5_tot
## 13571                              per_sa_pw.bry_q5_urb
## 13572                         per_sa_pw.cba_ep_preT_tot
## 13573                              per_sa_pw.cba_ep_tot
## 13574                         per_sa_pw.cba_q1_preT_tot
## 13575                              per_sa_pw.cba_q1_rur
## 13576                              per_sa_pw.cba_q1_tot
## 13577                              per_sa_pw.cba_q1_urb
## 13578                         per_sa_pw.cov_ep_preT_tot
## 13579                              per_sa_pw.cov_ep_tot
## 13580                        per_sa_pw.cov_pop_preT_tot
## 13581                             per_sa_pw.cov_pop_rur
## 13582                             per_sa_pw.cov_pop_tot
## 13583                             per_sa_pw.cov_pop_urb
## 13584                         per_sa_pw.cov_q1_preT_tot
## 13585                              per_sa_pw.cov_q1_rur
## 13586                              per_sa_pw.cov_q1_tot
## 13587                              per_sa_pw.cov_q1_urb
## 13588                         per_sa_pw.cov_q2_preT_tot
## 13589                              per_sa_pw.cov_q2_rur
## 13590                              per_sa_pw.cov_q2_tot
## 13591                              per_sa_pw.cov_q2_urb
## 13592                         per_sa_pw.cov_q3_preT_tot
## 13593                              per_sa_pw.cov_q3_rur
## 13594                              per_sa_pw.cov_q3_tot
## 13595                              per_sa_pw.cov_q3_urb
## 13596                         per_sa_pw.cov_q4_preT_tot
## 13597                              per_sa_pw.cov_q4_rur
## 13598                              per_sa_pw.cov_q4_tot
## 13599                              per_sa_pw.cov_q4_urb
## 13600                         per_sa_pw.cov_q5_preT_tot
## 13601                              per_sa_pw.cov_q5_rur
## 13602                              per_sa_pw.cov_q5_tot
## 13603                              per_sa_pw.cov_q5_urb
## 13604                                per_sa_pw_gini_rur
## 13605                                per_sa_pw_gini_tot
## 13606                                per_sa_pw_gini_urb
## 13607                               per_sa_pw_p0_ep_tot
## 13608                                  per_sa_pw_p0_rur
## 13609                                  per_sa_pw_p0_tot
## 13610                                  per_sa_pw_p0_urb
## 13611                               per_sa_pw_p1_ep_tot
## 13612                                  per_sa_pw_p1_rur
## 13613                                  per_sa_pw_p1_tot
## 13614                                  per_sa_pw_p1_urb
## 13615                         per_sa_sf.adq_ep_preT_tot
## 13616                              per_sa_sf.adq_ep_tot
## 13617                        per_sa_sf.adq_pop_preT_tot
## 13618                             per_sa_sf.adq_pop_rur
## 13619                             per_sa_sf.adq_pop_tot
## 13620                             per_sa_sf.adq_pop_urb
## 13621                         per_sa_sf.adq_q1_preT_tot
## 13622                              per_sa_sf.adq_q1_rur
## 13623                              per_sa_sf.adq_q1_tot
## 13624                              per_sa_sf.adq_q1_urb
## 13625                         per_sa_sf.adq_q2_preT_tot
## 13626                              per_sa_sf.adq_q2_rur
## 13627                              per_sa_sf.adq_q2_tot
## 13628                              per_sa_sf.adq_q2_urb
## 13629                         per_sa_sf.adq_q3_preT_tot
## 13630                              per_sa_sf.adq_q3_rur
## 13631                              per_sa_sf.adq_q3_tot
## 13632                              per_sa_sf.adq_q3_urb
## 13633                         per_sa_sf.adq_q4_preT_tot
## 13634                              per_sa_sf.adq_q4_rur
## 13635                              per_sa_sf.adq_q4_tot
## 13636                              per_sa_sf.adq_q4_urb
## 13637                         per_sa_sf.adq_q5_preT_tot
## 13638                              per_sa_sf.adq_q5_rur
## 13639                              per_sa_sf.adq_q5_tot
## 13640                              per_sa_sf.adq_q5_urb
## 13641                         per_sa_sf.avt_ep_preT_tot
## 13642                              per_sa_sf.avt_ep_tot
## 13643                        per_sa_sf.avt_pop_preT_tot
## 13644                             per_sa_sf.avt_pop_rur
## 13645                             per_sa_sf.avt_pop_tot
## 13646                             per_sa_sf.avt_pop_urb
## 13647                         per_sa_sf.avt_q1_preT_tot
## 13648                              per_sa_sf.avt_q1_rur
## 13649                              per_sa_sf.avt_q1_tot
## 13650                              per_sa_sf.avt_q1_urb
## 13651                         per_sa_sf.avt_q2_preT_tot
## 13652                              per_sa_sf.avt_q2_rur
## 13653                              per_sa_sf.avt_q2_tot
## 13654                              per_sa_sf.avt_q2_urb
## 13655                         per_sa_sf.avt_q3_preT_tot
## 13656                              per_sa_sf.avt_q3_rur
## 13657                              per_sa_sf.avt_q3_tot
## 13658                              per_sa_sf.avt_q3_urb
## 13659                         per_sa_sf.avt_q4_preT_tot
## 13660                              per_sa_sf.avt_q4_rur
## 13661                              per_sa_sf.avt_q4_tot
## 13662                              per_sa_sf.avt_q4_urb
## 13663                         per_sa_sf.avt_q5_preT_tot
## 13664                              per_sa_sf.avt_q5_rur
## 13665                              per_sa_sf.avt_q5_tot
## 13666                              per_sa_sf.avt_q5_urb
## 13667                         per_sa_sf.ben_ep_preT_tot
## 13668                              per_sa_sf.ben_ep_tot
## 13669                         per_sa_sf.ben_q1_preT_tot
## 13670                              per_sa_sf.ben_q1_rur
## 13671                              per_sa_sf.ben_q1_tot
## 13672                              per_sa_sf.ben_q1_urb
## 13673                         per_sa_sf.ben_q2_preT_tot
## 13674                              per_sa_sf.ben_q2_rur
## 13675                              per_sa_sf.ben_q2_tot
## 13676                              per_sa_sf.ben_q2_urb
## 13677                         per_sa_sf.ben_q3_preT_tot
## 13678                              per_sa_sf.ben_q3_rur
## 13679                              per_sa_sf.ben_q3_tot
## 13680                              per_sa_sf.ben_q3_urb
## 13681                         per_sa_sf.ben_q4_preT_tot
## 13682                              per_sa_sf.ben_q4_rur
## 13683                              per_sa_sf.ben_q4_tot
## 13684                              per_sa_sf.ben_q4_urb
## 13685                         per_sa_sf.ben_q5_preT_tot
## 13686                              per_sa_sf.ben_q5_rur
## 13687                              per_sa_sf.ben_q5_tot
## 13688                              per_sa_sf.ben_q5_urb
## 13689                         per_sa_sf.bry_ep_preT_tot
## 13690                              per_sa_sf.bry_ep_tot
## 13691                         per_sa_sf.bry_q1_preT_tot
## 13692                              per_sa_sf.bry_q1_rur
## 13693                              per_sa_sf.bry_q1_tot
## 13694                              per_sa_sf.bry_q1_urb
## 13695                         per_sa_sf.bry_q2_preT_tot
## 13696                              per_sa_sf.bry_q2_rur
## 13697                              per_sa_sf.bry_q2_tot
## 13698                              per_sa_sf.bry_q2_urb
## 13699                         per_sa_sf.bry_q3_preT_tot
## 13700                              per_sa_sf.bry_q3_rur
## 13701                              per_sa_sf.bry_q3_tot
## 13702                              per_sa_sf.bry_q3_urb
## 13703                         per_sa_sf.bry_q4_preT_tot
## 13704                              per_sa_sf.bry_q4_rur
## 13705                              per_sa_sf.bry_q4_tot
## 13706                              per_sa_sf.bry_q4_urb
## 13707                         per_sa_sf.bry_q5_preT_tot
## 13708                              per_sa_sf.bry_q5_rur
## 13709                              per_sa_sf.bry_q5_tot
## 13710                              per_sa_sf.bry_q5_urb
## 13711                         per_sa_sf.cba_ep_preT_tot
## 13712                              per_sa_sf.cba_ep_tot
## 13713                         per_sa_sf.cba_q1_preT_tot
## 13714                              per_sa_sf.cba_q1_rur
## 13715                              per_sa_sf.cba_q1_tot
## 13716                              per_sa_sf.cba_q1_urb
## 13717                         per_sa_sf.cov_ep_preT_tot
## 13718                              per_sa_sf.cov_ep_tot
## 13719                        per_sa_sf.cov_pop_preT_tot
## 13720                             per_sa_sf.cov_pop_rur
## 13721                             per_sa_sf.cov_pop_tot
## 13722                             per_sa_sf.cov_pop_urb
## 13723                         per_sa_sf.cov_q1_preT_tot
## 13724                              per_sa_sf.cov_q1_rur
## 13725                              per_sa_sf.cov_q1_tot
## 13726                              per_sa_sf.cov_q1_urb
## 13727                         per_sa_sf.cov_q2_preT_tot
## 13728                              per_sa_sf.cov_q2_rur
## 13729                              per_sa_sf.cov_q2_tot
## 13730                              per_sa_sf.cov_q2_urb
## 13731                         per_sa_sf.cov_q3_preT_tot
## 13732                              per_sa_sf.cov_q3_rur
## 13733                              per_sa_sf.cov_q3_tot
## 13734                              per_sa_sf.cov_q3_urb
## 13735                         per_sa_sf.cov_q4_preT_tot
## 13736                              per_sa_sf.cov_q4_rur
## 13737                              per_sa_sf.cov_q4_tot
## 13738                              per_sa_sf.cov_q4_urb
## 13739                         per_sa_sf.cov_q5_preT_tot
## 13740                              per_sa_sf.cov_q5_rur
## 13741                              per_sa_sf.cov_q5_tot
## 13742                              per_sa_sf.cov_q5_urb
## 13743                                per_sa_sf_gini_rur
## 13744                                per_sa_sf_gini_tot
## 13745                                per_sa_sf_gini_urb
## 13746                               per_sa_sf_p0_ep_tot
## 13747                                  per_sa_sf_p0_rur
## 13748                                  per_sa_sf_p0_tot
## 13749                                  per_sa_sf_p0_urb
## 13750                               per_sa_sf_p1_ep_tot
## 13751                                  per_sa_sf_p1_rur
## 13752                                  per_sa_sf_p1_tot
## 13753                                  per_sa_sf_p1_urb
## 13754                         per_sa_sp.adq_ep_preT_tot
## 13755                              per_sa_sp.adq_ep_tot
## 13756                        per_sa_sp.adq_pop_preT_tot
## 13757                             per_sa_sp.adq_pop_rur
## 13758                             per_sa_sp.adq_pop_tot
## 13759                             per_sa_sp.adq_pop_urb
## 13760                         per_sa_sp.adq_q1_preT_tot
## 13761                              per_sa_sp.adq_q1_rur
## 13762                              per_sa_sp.adq_q1_tot
## 13763                              per_sa_sp.adq_q1_urb
## 13764                         per_sa_sp.adq_q2_preT_tot
## 13765                              per_sa_sp.adq_q2_rur
## 13766                              per_sa_sp.adq_q2_tot
## 13767                              per_sa_sp.adq_q2_urb
## 13768                         per_sa_sp.adq_q3_preT_tot
## 13769                              per_sa_sp.adq_q3_rur
## 13770                              per_sa_sp.adq_q3_tot
## 13771                              per_sa_sp.adq_q3_urb
## 13772                         per_sa_sp.adq_q4_preT_tot
## 13773                              per_sa_sp.adq_q4_rur
## 13774                              per_sa_sp.adq_q4_tot
## 13775                              per_sa_sp.adq_q4_urb
## 13776                         per_sa_sp.adq_q5_preT_tot
## 13777                              per_sa_sp.adq_q5_rur
## 13778                              per_sa_sp.adq_q5_tot
## 13779                              per_sa_sp.adq_q5_urb
## 13780                         per_sa_sp.avt_ep_preT_tot
## 13781                              per_sa_sp.avt_ep_tot
## 13782                        per_sa_sp.avt_pop_preT_tot
## 13783                             per_sa_sp.avt_pop_rur
## 13784                             per_sa_sp.avt_pop_tot
## 13785                             per_sa_sp.avt_pop_urb
## 13786                         per_sa_sp.avt_q1_preT_tot
## 13787                              per_sa_sp.avt_q1_rur
## 13788                              per_sa_sp.avt_q1_tot
## 13789                              per_sa_sp.avt_q1_urb
## 13790                         per_sa_sp.avt_q2_preT_tot
## 13791                              per_sa_sp.avt_q2_rur
## 13792                              per_sa_sp.avt_q2_tot
## 13793                              per_sa_sp.avt_q2_urb
## 13794                         per_sa_sp.avt_q3_preT_tot
## 13795                              per_sa_sp.avt_q3_rur
## 13796                              per_sa_sp.avt_q3_tot
## 13797                              per_sa_sp.avt_q3_urb
## 13798                         per_sa_sp.avt_q4_preT_tot
## 13799                              per_sa_sp.avt_q4_rur
## 13800                              per_sa_sp.avt_q4_tot
## 13801                              per_sa_sp.avt_q4_urb
## 13802                         per_sa_sp.avt_q5_preT_tot
## 13803                              per_sa_sp.avt_q5_rur
## 13804                              per_sa_sp.avt_q5_tot
## 13805                              per_sa_sp.avt_q5_urb
## 13806                         per_sa_sp.ben_ep_preT_tot
## 13807                              per_sa_sp.ben_ep_tot
## 13808                         per_sa_sp.ben_q1_preT_tot
## 13809                              per_sa_sp.ben_q1_rur
## 13810                              per_sa_sp.ben_q1_tot
## 13811                              per_sa_sp.ben_q1_urb
## 13812                         per_sa_sp.ben_q2_preT_tot
## 13813                              per_sa_sp.ben_q2_rur
## 13814                              per_sa_sp.ben_q2_tot
## 13815                              per_sa_sp.ben_q2_urb
## 13816                         per_sa_sp.ben_q3_preT_tot
## 13817                              per_sa_sp.ben_q3_rur
## 13818                              per_sa_sp.ben_q3_tot
## 13819                              per_sa_sp.ben_q3_urb
## 13820                         per_sa_sp.ben_q4_preT_tot
## 13821                              per_sa_sp.ben_q4_rur
## 13822                              per_sa_sp.ben_q4_tot
## 13823                              per_sa_sp.ben_q4_urb
## 13824                         per_sa_sp.ben_q5_preT_tot
## 13825                              per_sa_sp.ben_q5_rur
## 13826                              per_sa_sp.ben_q5_tot
## 13827                              per_sa_sp.ben_q5_urb
## 13828                         per_sa_sp.bry_ep_preT_tot
## 13829                              per_sa_sp.bry_ep_tot
## 13830                         per_sa_sp.bry_q1_preT_tot
## 13831                              per_sa_sp.bry_q1_rur
## 13832                              per_sa_sp.bry_q1_tot
## 13833                              per_sa_sp.bry_q1_urb
## 13834                         per_sa_sp.bry_q2_preT_tot
## 13835                              per_sa_sp.bry_q2_rur
## 13836                              per_sa_sp.bry_q2_tot
## 13837                              per_sa_sp.bry_q2_urb
## 13838                         per_sa_sp.bry_q3_preT_tot
## 13839                              per_sa_sp.bry_q3_rur
## 13840                              per_sa_sp.bry_q3_tot
## 13841                              per_sa_sp.bry_q3_urb
## 13842                         per_sa_sp.bry_q4_preT_tot
## 13843                              per_sa_sp.bry_q4_rur
## 13844                              per_sa_sp.bry_q4_tot
## 13845                              per_sa_sp.bry_q4_urb
## 13846                         per_sa_sp.bry_q5_preT_tot
## 13847                              per_sa_sp.bry_q5_rur
## 13848                              per_sa_sp.bry_q5_tot
## 13849                              per_sa_sp.bry_q5_urb
## 13850                         per_sa_sp.cba_ep_preT_tot
## 13851                              per_sa_sp.cba_ep_tot
## 13852                         per_sa_sp.cba_q1_preT_tot
## 13853                              per_sa_sp.cba_q1_rur
## 13854                              per_sa_sp.cba_q1_tot
## 13855                              per_sa_sp.cba_q1_urb
## 13856                         per_sa_sp.cov_ep_preT_tot
## 13857                              per_sa_sp.cov_ep_tot
## 13858                        per_sa_sp.cov_pop_preT_tot
## 13859                             per_sa_sp.cov_pop_rur
## 13860                             per_sa_sp.cov_pop_tot
## 13861                             per_sa_sp.cov_pop_urb
## 13862                         per_sa_sp.cov_q1_preT_tot
## 13863                              per_sa_sp.cov_q1_rur
## 13864                              per_sa_sp.cov_q1_tot
## 13865                              per_sa_sp.cov_q1_urb
## 13866                         per_sa_sp.cov_q2_preT_tot
## 13867                              per_sa_sp.cov_q2_rur
## 13868                              per_sa_sp.cov_q2_tot
## 13869                              per_sa_sp.cov_q2_urb
## 13870                         per_sa_sp.cov_q3_preT_tot
## 13871                              per_sa_sp.cov_q3_rur
## 13872                              per_sa_sp.cov_q3_tot
## 13873                              per_sa_sp.cov_q3_urb
## 13874                         per_sa_sp.cov_q4_preT_tot
## 13875                              per_sa_sp.cov_q4_rur
## 13876                              per_sa_sp.cov_q4_tot
## 13877                              per_sa_sp.cov_q4_urb
## 13878                         per_sa_sp.cov_q5_preT_tot
## 13879                              per_sa_sp.cov_q5_rur
## 13880                              per_sa_sp.cov_q5_tot
## 13881                              per_sa_sp.cov_q5_urb
## 13882                                per_sa_sp_gini_rur
## 13883                                per_sa_sp_gini_tot
## 13884                                per_sa_sp_gini_urb
## 13885                               per_sa_sp_p0_ep_tot
## 13886                                  per_sa_sp_p0_rur
## 13887                                  per_sa_sp_p0_tot
## 13888                                  per_sa_sp_p0_urb
## 13889                               per_sa_sp_p1_ep_tot
## 13890                                  per_sa_sp_p1_rur
## 13891                                  per_sa_sp_p1_tot
## 13892                                  per_sa_sp_p1_urb
## 13893                     per_saonl.overlap_ep_preT_tot
## 13894                          per_saonl.overlap_ep_tot
## 13895                    per_saonl.overlap_pop_preT_tot
## 13896                         per_saonl.overlap_pop_rur
## 13897                         per_saonl.overlap_pop_tot
## 13898                         per_saonl.overlap_pop_urb
## 13899                     per_saonl.overlap_q1_preT_tot
## 13900                          per_saonl.overlap_q1_rur
## 13901                          per_saonl.overlap_q1_tot
## 13902                          per_saonl.overlap_q1_urb
## 13903                     per_saoth.overlap_ep_preT_tot
## 13904                          per_saoth.overlap_ep_tot
## 13905                    per_saoth.overlap_pop_preT_tot
## 13906                         per_saoth.overlap_pop_rur
## 13907                         per_saoth.overlap_pop_tot
## 13908                         per_saoth.overlap_pop_urb
## 13909                     per_saoth.overlap_q1_preT_tot
## 13910                          per_saoth.overlap_q1_rur
## 13911                          per_saoth.overlap_q1_tot
## 13912                          per_saoth.overlap_q1_urb
## 13913                      per_si_allsi.adq_ep_preT_tot
## 13914                           per_si_allsi.adq_ep_tot
## 13915                     per_si_allsi.adq_pop_preT_tot
## 13916                          per_si_allsi.adq_pop_rur
## 13917                          per_si_allsi.adq_pop_tot
## 13918                          per_si_allsi.adq_pop_urb
## 13919                      per_si_allsi.adq_q1_preT_tot
## 13920                           per_si_allsi.adq_q1_rur
## 13921                           per_si_allsi.adq_q1_tot
## 13922                           per_si_allsi.adq_q1_urb
## 13923                      per_si_allsi.adq_q2_preT_tot
## 13924                           per_si_allsi.adq_q2_rur
## 13925                           per_si_allsi.adq_q2_tot
## 13926                           per_si_allsi.adq_q2_urb
## 13927                      per_si_allsi.adq_q3_preT_tot
## 13928                           per_si_allsi.adq_q3_rur
## 13929                           per_si_allsi.adq_q3_tot
## 13930                           per_si_allsi.adq_q3_urb
## 13931                      per_si_allsi.adq_q4_preT_tot
## 13932                           per_si_allsi.adq_q4_rur
## 13933                           per_si_allsi.adq_q4_tot
## 13934                           per_si_allsi.adq_q4_urb
## 13935                      per_si_allsi.adq_q5_preT_tot
## 13936                           per_si_allsi.adq_q5_rur
## 13937                           per_si_allsi.adq_q5_tot
## 13938                           per_si_allsi.adq_q5_urb
## 13939                      per_si_allsi.avt_ep_preT_tot
## 13940                           per_si_allsi.avt_ep_tot
## 13941                     per_si_allsi.avt_pop_preT_tot
## 13942                          per_si_allsi.avt_pop_rur
## 13943                          per_si_allsi.avt_pop_tot
## 13944                          per_si_allsi.avt_pop_urb
## 13945                      per_si_allsi.avt_q1_preT_tot
## 13946                           per_si_allsi.avt_q1_rur
## 13947                           per_si_allsi.avt_q1_tot
## 13948                           per_si_allsi.avt_q1_urb
## 13949                      per_si_allsi.avt_q2_preT_tot
## 13950                           per_si_allsi.avt_q2_rur
## 13951                           per_si_allsi.avt_q2_tot
## 13952                           per_si_allsi.avt_q2_urb
## 13953                      per_si_allsi.avt_q3_preT_tot
## 13954                           per_si_allsi.avt_q3_rur
## 13955                           per_si_allsi.avt_q3_tot
## 13956                           per_si_allsi.avt_q3_urb
## 13957                      per_si_allsi.avt_q4_preT_tot
## 13958                           per_si_allsi.avt_q4_rur
## 13959                           per_si_allsi.avt_q4_tot
## 13960                           per_si_allsi.avt_q4_urb
## 13961                      per_si_allsi.avt_q5_preT_tot
## 13962                           per_si_allsi.avt_q5_rur
## 13963                           per_si_allsi.avt_q5_tot
## 13964                           per_si_allsi.avt_q5_urb
## 13965                      per_si_allsi.ben_ep_preT_tot
## 13966                           per_si_allsi.ben_ep_tot
## 13967                      per_si_allsi.ben_q1_preT_tot
## 13968                           per_si_allsi.ben_q1_rur
## 13969                           per_si_allsi.ben_q1_tot
## 13970                           per_si_allsi.ben_q1_urb
## 13971                      per_si_allsi.ben_q2_preT_tot
## 13972                           per_si_allsi.ben_q2_rur
## 13973                           per_si_allsi.ben_q2_tot
## 13974                           per_si_allsi.ben_q2_urb
## 13975                      per_si_allsi.ben_q3_preT_tot
## 13976                           per_si_allsi.ben_q3_rur
## 13977                           per_si_allsi.ben_q3_tot
## 13978                           per_si_allsi.ben_q3_urb
## 13979                      per_si_allsi.ben_q4_preT_tot
## 13980                           per_si_allsi.ben_q4_rur
## 13981                           per_si_allsi.ben_q4_tot
## 13982                           per_si_allsi.ben_q4_urb
## 13983                      per_si_allsi.ben_q5_preT_tot
## 13984                           per_si_allsi.ben_q5_rur
## 13985                           per_si_allsi.ben_q5_tot
## 13986                           per_si_allsi.ben_q5_urb
## 13987                      per_si_allsi.bry_ep_preT_tot
## 13988                           per_si_allsi.bry_ep_tot
## 13989                      per_si_allsi.bry_q1_preT_tot
## 13990                           per_si_allsi.bry_q1_rur
## 13991                           per_si_allsi.bry_q1_tot
## 13992                           per_si_allsi.bry_q1_urb
## 13993                      per_si_allsi.bry_q2_preT_tot
## 13994                           per_si_allsi.bry_q2_rur
## 13995                           per_si_allsi.bry_q2_tot
## 13996                           per_si_allsi.bry_q2_urb
## 13997                      per_si_allsi.bry_q3_preT_tot
## 13998                           per_si_allsi.bry_q3_rur
## 13999                           per_si_allsi.bry_q3_tot
## 14000                           per_si_allsi.bry_q3_urb
## 14001                      per_si_allsi.bry_q4_preT_tot
## 14002                           per_si_allsi.bry_q4_rur
## 14003                           per_si_allsi.bry_q4_tot
## 14004                           per_si_allsi.bry_q4_urb
## 14005                      per_si_allsi.bry_q5_preT_tot
## 14006                           per_si_allsi.bry_q5_rur
## 14007                           per_si_allsi.bry_q5_tot
## 14008                           per_si_allsi.bry_q5_urb
## 14009                      per_si_allsi.cba_ep_preT_tot
## 14010                           per_si_allsi.cba_ep_tot
## 14011                      per_si_allsi.cba_q1_preT_tot
## 14012                           per_si_allsi.cba_q1_rur
## 14013                           per_si_allsi.cba_q1_tot
## 14014                           per_si_allsi.cba_q1_urb
## 14015                      per_si_allsi.cov_ep_preT_tot
## 14016                           per_si_allsi.cov_ep_tot
## 14017                     per_si_allsi.cov_pop_preT_tot
## 14018                          per_si_allsi.cov_pop_rur
## 14019                          per_si_allsi.cov_pop_tot
## 14020                          per_si_allsi.cov_pop_urb
## 14021                      per_si_allsi.cov_q1_preT_tot
## 14022                           per_si_allsi.cov_q1_rur
## 14023                           per_si_allsi.cov_q1_tot
## 14024                           per_si_allsi.cov_q1_urb
## 14025                      per_si_allsi.cov_q2_preT_tot
## 14026                           per_si_allsi.cov_q2_rur
## 14027                           per_si_allsi.cov_q2_tot
## 14028                           per_si_allsi.cov_q2_urb
## 14029                      per_si_allsi.cov_q3_preT_tot
## 14030                           per_si_allsi.cov_q3_rur
## 14031                           per_si_allsi.cov_q3_tot
## 14032                           per_si_allsi.cov_q3_urb
## 14033                      per_si_allsi.cov_q4_preT_tot
## 14034                           per_si_allsi.cov_q4_rur
## 14035                           per_si_allsi.cov_q4_tot
## 14036                           per_si_allsi.cov_q4_urb
## 14037                      per_si_allsi.cov_q5_preT_tot
## 14038                           per_si_allsi.cov_q5_rur
## 14039                           per_si_allsi.cov_q5_tot
## 14040                           per_si_allsi.cov_q5_urb
## 14041                             per_si_allsi_gini_rur
## 14042                             per_si_allsi_gini_tot
## 14043                             per_si_allsi_gini_urb
## 14044                            per_si_allsi_p0_ep_tot
## 14045                               per_si_allsi_p0_rur
## 14046                               per_si_allsi_p0_tot
## 14047                               per_si_allsi_p0_urb
## 14048                            per_si_allsi_p1_ep_tot
## 14049                               per_si_allsi_p1_rur
## 14050                               per_si_allsi_p1_tot
## 14051                               per_si_allsi_p1_urb
## 14052                         per_si_cp.adq_ep_preT_tot
## 14053                              per_si_cp.adq_ep_tot
## 14054                        per_si_cp.adq_pop_preT_tot
## 14055                             per_si_cp.adq_pop_rur
## 14056                             per_si_cp.adq_pop_tot
## 14057                             per_si_cp.adq_pop_urb
## 14058                         per_si_cp.adq_q1_preT_tot
## 14059                              per_si_cp.adq_q1_rur
## 14060                              per_si_cp.adq_q1_tot
## 14061                              per_si_cp.adq_q1_urb
## 14062                         per_si_cp.adq_q2_preT_tot
## 14063                              per_si_cp.adq_q2_rur
## 14064                              per_si_cp.adq_q2_tot
## 14065                              per_si_cp.adq_q2_urb
## 14066                         per_si_cp.adq_q3_preT_tot
## 14067                              per_si_cp.adq_q3_rur
## 14068                              per_si_cp.adq_q3_tot
## 14069                              per_si_cp.adq_q3_urb
## 14070                         per_si_cp.adq_q4_preT_tot
## 14071                              per_si_cp.adq_q4_rur
## 14072                              per_si_cp.adq_q4_tot
## 14073                              per_si_cp.adq_q4_urb
## 14074                         per_si_cp.adq_q5_preT_tot
## 14075                              per_si_cp.adq_q5_rur
## 14076                              per_si_cp.adq_q5_tot
## 14077                              per_si_cp.adq_q5_urb
## 14078                         per_si_cp.avt_ep_preT_tot
## 14079                              per_si_cp.avt_ep_tot
## 14080                        per_si_cp.avt_pop_preT_tot
## 14081                             per_si_cp.avt_pop_rur
## 14082                             per_si_cp.avt_pop_tot
## 14083                             per_si_cp.avt_pop_urb
## 14084                         per_si_cp.avt_q1_preT_tot
## 14085                              per_si_cp.avt_q1_rur
## 14086                              per_si_cp.avt_q1_tot
## 14087                              per_si_cp.avt_q1_urb
## 14088                         per_si_cp.avt_q2_preT_tot
## 14089                              per_si_cp.avt_q2_rur
## 14090                              per_si_cp.avt_q2_tot
## 14091                              per_si_cp.avt_q2_urb
## 14092                         per_si_cp.avt_q3_preT_tot
## 14093                              per_si_cp.avt_q3_rur
## 14094                              per_si_cp.avt_q3_tot
## 14095                              per_si_cp.avt_q3_urb
## 14096                         per_si_cp.avt_q4_preT_tot
## 14097                              per_si_cp.avt_q4_rur
## 14098                              per_si_cp.avt_q4_tot
## 14099                              per_si_cp.avt_q4_urb
## 14100                         per_si_cp.avt_q5_preT_tot
## 14101                              per_si_cp.avt_q5_rur
## 14102                              per_si_cp.avt_q5_tot
## 14103                              per_si_cp.avt_q5_urb
## 14104                         per_si_cp.ben_ep_preT_tot
## 14105                              per_si_cp.ben_ep_tot
## 14106                         per_si_cp.ben_q1_preT_tot
## 14107                              per_si_cp.ben_q1_rur
## 14108                              per_si_cp.ben_q1_tot
## 14109                              per_si_cp.ben_q1_urb
## 14110                         per_si_cp.ben_q2_preT_tot
## 14111                              per_si_cp.ben_q2_rur
## 14112                              per_si_cp.ben_q2_tot
## 14113                              per_si_cp.ben_q2_urb
## 14114                         per_si_cp.ben_q3_preT_tot
## 14115                              per_si_cp.ben_q3_rur
## 14116                              per_si_cp.ben_q3_tot
## 14117                              per_si_cp.ben_q3_urb
## 14118                         per_si_cp.ben_q4_preT_tot
## 14119                              per_si_cp.ben_q4_rur
## 14120                              per_si_cp.ben_q4_tot
## 14121                              per_si_cp.ben_q4_urb
## 14122                         per_si_cp.ben_q5_preT_tot
## 14123                              per_si_cp.ben_q5_rur
## 14124                              per_si_cp.ben_q5_tot
## 14125                              per_si_cp.ben_q5_urb
## 14126                         per_si_cp.bry_ep_preT_tot
## 14127                              per_si_cp.bry_ep_tot
## 14128                         per_si_cp.bry_q1_preT_tot
## 14129                              per_si_cp.bry_q1_rur
## 14130                              per_si_cp.bry_q1_tot
## 14131                              per_si_cp.bry_q1_urb
## 14132                         per_si_cp.bry_q2_preT_tot
## 14133                              per_si_cp.bry_q2_rur
## 14134                              per_si_cp.bry_q2_tot
## 14135                              per_si_cp.bry_q2_urb
## 14136                         per_si_cp.bry_q3_preT_tot
## 14137                              per_si_cp.bry_q3_rur
## 14138                              per_si_cp.bry_q3_tot
## 14139                              per_si_cp.bry_q3_urb
## 14140                         per_si_cp.bry_q4_preT_tot
## 14141                              per_si_cp.bry_q4_rur
## 14142                              per_si_cp.bry_q4_tot
## 14143                              per_si_cp.bry_q4_urb
## 14144                         per_si_cp.bry_q5_preT_tot
## 14145                              per_si_cp.bry_q5_rur
## 14146                              per_si_cp.bry_q5_tot
## 14147                              per_si_cp.bry_q5_urb
## 14148                         per_si_cp.cba_ep_preT_tot
## 14149                              per_si_cp.cba_ep_tot
## 14150                         per_si_cp.cba_q1_preT_tot
## 14151                              per_si_cp.cba_q1_rur
## 14152                              per_si_cp.cba_q1_tot
## 14153                              per_si_cp.cba_q1_urb
## 14154                         per_si_cp.cov_ep_preT_tot
## 14155                              per_si_cp.cov_ep_tot
## 14156                        per_si_cp.cov_pop_preT_tot
## 14157                             per_si_cp.cov_pop_rur
## 14158                             per_si_cp.cov_pop_tot
## 14159                             per_si_cp.cov_pop_urb
## 14160                         per_si_cp.cov_q1_preT_tot
## 14161                              per_si_cp.cov_q1_rur
## 14162                              per_si_cp.cov_q1_tot
## 14163                              per_si_cp.cov_q1_urb
## 14164                         per_si_cp.cov_q2_preT_tot
## 14165                              per_si_cp.cov_q2_rur
## 14166                              per_si_cp.cov_q2_tot
## 14167                              per_si_cp.cov_q2_urb
## 14168                         per_si_cp.cov_q3_preT_tot
## 14169                              per_si_cp.cov_q3_rur
## 14170                              per_si_cp.cov_q3_tot
## 14171                              per_si_cp.cov_q3_urb
## 14172                         per_si_cp.cov_q4_preT_tot
## 14173                              per_si_cp.cov_q4_rur
## 14174                              per_si_cp.cov_q4_tot
## 14175                              per_si_cp.cov_q4_urb
## 14176                         per_si_cp.cov_q5_preT_tot
## 14177                              per_si_cp.cov_q5_rur
## 14178                              per_si_cp.cov_q5_tot
## 14179                              per_si_cp.cov_q5_urb
## 14180                                per_si_cp_gini_rur
## 14181                                per_si_cp_gini_tot
## 14182                                per_si_cp_gini_urb
## 14183                               per_si_cp_p0_ep_tot
## 14184                                  per_si_cp_p0_rur
## 14185                                  per_si_cp_p0_tot
## 14186                                  per_si_cp_p0_urb
## 14187                               per_si_cp_p1_ep_tot
## 14188                                  per_si_cp_p1_rur
## 14189                                  per_si_cp_p1_tot
## 14190                                  per_si_cp_p1_urb
## 14191                         per_si_ss.adq_ep_preT_tot
## 14192                              per_si_ss.adq_ep_tot
## 14193                        per_si_ss.adq_pop_preT_tot
## 14194                             per_si_ss.adq_pop_rur
## 14195                             per_si_ss.adq_pop_tot
## 14196                             per_si_ss.adq_pop_urb
## 14197                         per_si_ss.adq_q1_preT_tot
## 14198                              per_si_ss.adq_q1_rur
## 14199                              per_si_ss.adq_q1_tot
## 14200                              per_si_ss.adq_q1_urb
## 14201                         per_si_ss.adq_q2_preT_tot
## 14202                              per_si_ss.adq_q2_rur
## 14203                              per_si_ss.adq_q2_tot
## 14204                              per_si_ss.adq_q2_urb
## 14205                         per_si_ss.adq_q3_preT_tot
## 14206                              per_si_ss.adq_q3_rur
## 14207                              per_si_ss.adq_q3_tot
## 14208                              per_si_ss.adq_q3_urb
## 14209                         per_si_ss.adq_q4_preT_tot
## 14210                              per_si_ss.adq_q4_rur
## 14211                              per_si_ss.adq_q4_tot
## 14212                              per_si_ss.adq_q4_urb
## 14213                         per_si_ss.adq_q5_preT_tot
## 14214                              per_si_ss.adq_q5_rur
## 14215                              per_si_ss.adq_q5_tot
## 14216                              per_si_ss.adq_q5_urb
## 14217                         per_si_ss.avt_ep_preT_tot
## 14218                              per_si_ss.avt_ep_tot
## 14219                        per_si_ss.avt_pop_preT_tot
## 14220                             per_si_ss.avt_pop_rur
## 14221                             per_si_ss.avt_pop_tot
## 14222                             per_si_ss.avt_pop_urb
## 14223                         per_si_ss.avt_q1_preT_tot
## 14224                              per_si_ss.avt_q1_rur
## 14225                              per_si_ss.avt_q1_tot
## 14226                              per_si_ss.avt_q1_urb
## 14227                         per_si_ss.avt_q2_preT_tot
## 14228                              per_si_ss.avt_q2_rur
## 14229                              per_si_ss.avt_q2_tot
## 14230                              per_si_ss.avt_q2_urb
## 14231                         per_si_ss.avt_q3_preT_tot
## 14232                              per_si_ss.avt_q3_rur
## 14233                              per_si_ss.avt_q3_tot
## 14234                              per_si_ss.avt_q3_urb
## 14235                         per_si_ss.avt_q4_preT_tot
## 14236                              per_si_ss.avt_q4_rur
## 14237                              per_si_ss.avt_q4_tot
## 14238                              per_si_ss.avt_q4_urb
## 14239                         per_si_ss.avt_q5_preT_tot
## 14240                              per_si_ss.avt_q5_rur
## 14241                              per_si_ss.avt_q5_tot
## 14242                              per_si_ss.avt_q5_urb
## 14243                         per_si_ss.ben_ep_preT_tot
## 14244                              per_si_ss.ben_ep_tot
## 14245                         per_si_ss.ben_q1_preT_tot
## 14246                              per_si_ss.ben_q1_rur
## 14247                              per_si_ss.ben_q1_tot
## 14248                              per_si_ss.ben_q1_urb
## 14249                         per_si_ss.ben_q2_preT_tot
## 14250                              per_si_ss.ben_q2_rur
## 14251                              per_si_ss.ben_q2_tot
## 14252                              per_si_ss.ben_q2_urb
## 14253                         per_si_ss.ben_q3_preT_tot
## 14254                              per_si_ss.ben_q3_rur
## 14255                              per_si_ss.ben_q3_tot
## 14256                              per_si_ss.ben_q3_urb
## 14257                         per_si_ss.ben_q4_preT_tot
## 14258                              per_si_ss.ben_q4_rur
## 14259                              per_si_ss.ben_q4_tot
## 14260                              per_si_ss.ben_q4_urb
## 14261                         per_si_ss.ben_q5_preT_tot
## 14262                              per_si_ss.ben_q5_rur
## 14263                              per_si_ss.ben_q5_tot
## 14264                              per_si_ss.ben_q5_urb
## 14265                         per_si_ss.bry_ep_preT_tot
## 14266                              per_si_ss.bry_ep_tot
## 14267                         per_si_ss.bry_q1_preT_tot
## 14268                              per_si_ss.bry_q1_rur
## 14269                              per_si_ss.bry_q1_tot
## 14270                              per_si_ss.bry_q1_urb
## 14271                         per_si_ss.bry_q2_preT_tot
## 14272                              per_si_ss.bry_q2_rur
## 14273                              per_si_ss.bry_q2_tot
## 14274                              per_si_ss.bry_q2_urb
## 14275                         per_si_ss.bry_q3_preT_tot
## 14276                              per_si_ss.bry_q3_rur
## 14277                              per_si_ss.bry_q3_tot
## 14278                              per_si_ss.bry_q3_urb
## 14279                         per_si_ss.bry_q4_preT_tot
## 14280                              per_si_ss.bry_q4_rur
## 14281                              per_si_ss.bry_q4_tot
## 14282                              per_si_ss.bry_q4_urb
## 14283                         per_si_ss.bry_q5_preT_tot
## 14284                              per_si_ss.bry_q5_rur
## 14285                              per_si_ss.bry_q5_tot
## 14286                              per_si_ss.bry_q5_urb
## 14287                         per_si_ss.cba_ep_preT_tot
## 14288                              per_si_ss.cba_ep_tot
## 14289                         per_si_ss.cba_q1_preT_tot
## 14290                              per_si_ss.cba_q1_rur
## 14291                              per_si_ss.cba_q1_tot
## 14292                              per_si_ss.cba_q1_urb
## 14293                         per_si_ss.cov_ep_preT_tot
## 14294                              per_si_ss.cov_ep_tot
## 14295                        per_si_ss.cov_pop_preT_tot
## 14296                             per_si_ss.cov_pop_rur
## 14297                             per_si_ss.cov_pop_tot
## 14298                             per_si_ss.cov_pop_urb
## 14299                         per_si_ss.cov_q1_preT_tot
## 14300                              per_si_ss.cov_q1_rur
## 14301                              per_si_ss.cov_q1_tot
## 14302                              per_si_ss.cov_q1_urb
## 14303                         per_si_ss.cov_q2_preT_tot
## 14304                              per_si_ss.cov_q2_rur
## 14305                              per_si_ss.cov_q2_tot
## 14306                              per_si_ss.cov_q2_urb
## 14307                         per_si_ss.cov_q3_preT_tot
## 14308                              per_si_ss.cov_q3_rur
## 14309                              per_si_ss.cov_q3_tot
## 14310                              per_si_ss.cov_q3_urb
## 14311                         per_si_ss.cov_q4_preT_tot
## 14312                              per_si_ss.cov_q4_rur
## 14313                              per_si_ss.cov_q4_tot
## 14314                              per_si_ss.cov_q4_urb
## 14315                         per_si_ss.cov_q5_preT_tot
## 14316                              per_si_ss.cov_q5_rur
## 14317                              per_si_ss.cov_q5_tot
## 14318                              per_si_ss.cov_q5_urb
## 14319                                per_si_ss_gini_rur
## 14320                                per_si_ss_gini_tot
## 14321                                per_si_ss_gini_urb
## 14322                               per_si_ss_p0_ep_tot
## 14323                                  per_si_ss_p0_rur
## 14324                                  per_si_ss_p0_tot
## 14325                                  per_si_ss_p0_urb
## 14326                               per_si_ss_p1_ep_tot
## 14327                                  per_si_ss_p1_rur
## 14328                                  per_si_ss_p1_tot
## 14329                                  per_si_ss_p1_urb
## 14330                      per_silm.overlap_ep_preT_tot
## 14331                           per_silm.overlap_ep_tot
## 14332                     per_silm.overlap_pop_preT_tot
## 14333                          per_silm.overlap_pop_rur
## 14334                          per_silm.overlap_pop_tot
## 14335                          per_silm.overlap_pop_urb
## 14336                      per_silm.overlap_q1_preT_tot
## 14337                           per_silm.overlap_q1_rur
## 14338                           per_silm.overlap_q1_tot
## 14339                           per_silm.overlap_q1_urb
## 14340                     per_sionl.overlap_ep_preT_tot
## 14341                          per_sionl.overlap_ep_tot
## 14342                    per_sionl.overlap_pop_preT_tot
## 14343                         per_sionl.overlap_pop_rur
## 14344                         per_sionl.overlap_pop_tot
## 14345                         per_sionl.overlap_pop_urb
## 14346                     per_sionl.overlap_q1_preT_tot
## 14347                          per_sionl.overlap_q1_rur
## 14348                          per_sionl.overlap_q1_tot
## 14349                          per_sionl.overlap_q1_urb
## 14350                                              PI-1
## 14351                                             PI-10
## 14352                                             PI-11
## 14353                                           PI-11.1
## 14354                                           PI-11.2
## 14355                                           PI-11.3
## 14356                                             PI-12
## 14357                                           PI-12.1
## 14358                                           PI-12.2
## 14359                                           PI-12.3
## 14360                                           PI-12.4
## 14361                                             PI-13
## 14362                                           PI-13.1
## 14363                                           PI-13.2
## 14364                                           PI-13.3
## 14365                                             PI-14
## 14366                                           PI-14.1
## 14367                                           PI-14.2
## 14368                                           PI-14.3
## 14369                                             PI-15
## 14370                                           PI-15.1
## 14371                                           PI-15.2
## 14372                                           PI-15.3
## 14373                                             PI-16
## 14374                                           PI-16.1
## 14375                                           PI-16.2
## 14376                                           PI-16.3
## 14377                                             PI-17
## 14378                                           PI-17.1
## 14379                                           PI-17.2
## 14380                                           PI-17.3
## 14381                                             PI-18
## 14382                                           PI-18.1
## 14383                                           PI-18.2
## 14384                                           PI-18.3
## 14385                                           PI-18.4
## 14386                                             PI-19
## 14387                                           PI-19.1
## 14388                                           PI-19.2
## 14389                                           PI-19.3
## 14390                                           PI-19.4
## 14391                                           PI-19.5
## 14392                                           PI-19.6
## 14393                                           PI-19.7
## 14394                                              PI-2
## 14395                                            PI-2.1
## 14396                                            PI-2.2
## 14397                                             PI-20
## 14398                                           PI-20.1
## 14399                                           PI-20.2
## 14400                                           PI-20.3
## 14401                                             PI-21
## 14402                                           PI-21.1
## 14403                                           PI-21.2
## 14404                                           PI-21.3
## 14405                                             PI-22
## 14406                                           PI-22.1
## 14407                                           PI-22.2
## 14408                                             PI-23
## 14409                                             PI-24
## 14410                                           PI-24.1
## 14411                                           PI-24.2
## 14412                                           PI-24.3
## 14413                                             PI-25
## 14414                                           PI-25.1
## 14415                                           PI-25.2
## 14416                                           PI-25.3
## 14417                                             PI-26
## 14418                                           PI-26.1
## 14419                                           PI-26.2
## 14420                                           PI-26.3
## 14421                                             PI-27
## 14422                                           PI-27.1
## 14423                                           PI-27.2
## 14424                                           PI-27.3
## 14425                                           PI-27.4
## 14426                                             PI-28
## 14427                                           PI-28.1
## 14428                                           PI-28.2
## 14429                                           PI-28.3
## 14430                                              PI-3
## 14431                                              PI-4
## 14432                                            PI-4.1
## 14433                                            PI-4.2
## 14434                                              PI-5
## 14435                                              PI-6
## 14436                                              PI-7
## 14437                                            PI-7.1
## 14438                                            PI-7.2
## 14439                                              PI-8
## 14440                                            PI-8.1
## 14441                                            PI-8.2
## 14442                                            PI-8.3
## 14443                                              PI-9
## 14444                                            PI-9.1
## 14445                                            PI-9.2
## 14446                                 PRJ.ATT.1519.1.FE
## 14447                                 PRJ.ATT.1519.1.MA
## 14448                                 PRJ.ATT.1519.1.MF
## 14449                                 PRJ.ATT.1519.2.FE
## 14450                                 PRJ.ATT.1519.2.MA
## 14451                                 PRJ.ATT.1519.2.MF
## 14452                                 PRJ.ATT.1519.3.FE
## 14453                                 PRJ.ATT.1519.3.MA
## 14454                                 PRJ.ATT.1519.3.MF
## 14455                                 PRJ.ATT.1519.4.FE
## 14456                                 PRJ.ATT.1519.4.MA
## 14457                                 PRJ.ATT.1519.4.MF
## 14458                               PRJ.ATT.1519.NED.FE
## 14459                               PRJ.ATT.1519.NED.MA
## 14460                               PRJ.ATT.1519.NED.MF
## 14461                                PRJ.ATT.1519.S1.FE
## 14462                                PRJ.ATT.1519.S1.MA
## 14463                                PRJ.ATT.1519.S1.MF
## 14464                                 PRJ.ATT.15UP.1.FE
## 14465                                 PRJ.ATT.15UP.1.MA
## 14466                                 PRJ.ATT.15UP.1.MF
## 14467                                 PRJ.ATT.15UP.2.FE
## 14468                                 PRJ.ATT.15UP.2.MA
## 14469                                 PRJ.ATT.15UP.2.MF
## 14470                                 PRJ.ATT.15UP.3.FE
## 14471                                 PRJ.ATT.15UP.3.MA
## 14472                                 PRJ.ATT.15UP.3.MF
## 14473                                 PRJ.ATT.15UP.4.FE
## 14474                                 PRJ.ATT.15UP.4.MA
## 14475                                 PRJ.ATT.15UP.4.MF
## 14476                               PRJ.ATT.15UP.NED.FE
## 14477                               PRJ.ATT.15UP.NED.MA
## 14478                               PRJ.ATT.15UP.NED.MF
## 14479                                PRJ.ATT.15UP.S1.FE
## 14480                                PRJ.ATT.15UP.S1.MA
## 14481                                PRJ.ATT.15UP.S1.MF
## 14482                                 PRJ.ATT.2024.1.FE
## 14483                                 PRJ.ATT.2024.1.MA
## 14484                                 PRJ.ATT.2024.1.MF
## 14485                                 PRJ.ATT.2024.2.FE
## 14486                                 PRJ.ATT.2024.2.MA
## 14487                                 PRJ.ATT.2024.2.MF
## 14488                                 PRJ.ATT.2024.3.FE
## 14489                                 PRJ.ATT.2024.3.MA
## 14490                                 PRJ.ATT.2024.3.MF
## 14491                                 PRJ.ATT.2024.4.FE
## 14492                                 PRJ.ATT.2024.4.MA
## 14493                                 PRJ.ATT.2024.4.MF
## 14494                               PRJ.ATT.2024.NED.FE
## 14495                               PRJ.ATT.2024.NED.MA
## 14496                               PRJ.ATT.2024.NED.MF
## 14497                                PRJ.ATT.2024.S1.FE
## 14498                                PRJ.ATT.2024.S1.MA
## 14499                                PRJ.ATT.2024.S1.MF
## 14500                                 PRJ.ATT.2039.1.FE
## 14501                                 PRJ.ATT.2039.1.MA
## 14502                                 PRJ.ATT.2039.1.MF
## 14503                                 PRJ.ATT.2039.2.FE
## 14504                                 PRJ.ATT.2039.2.MA
## 14505                                 PRJ.ATT.2039.2.MF
## 14506                                 PRJ.ATT.2039.3.FE
## 14507                                 PRJ.ATT.2039.3.MA
## 14508                                 PRJ.ATT.2039.3.MF
## 14509                                 PRJ.ATT.2039.4.FE
## 14510                                 PRJ.ATT.2039.4.MA
## 14511                                 PRJ.ATT.2039.4.MF
## 14512                               PRJ.ATT.2039.NED.FE
## 14513                               PRJ.ATT.2039.NED.MA
## 14514                               PRJ.ATT.2039.NED.MF
## 14515                                PRJ.ATT.2039.S1.FE
## 14516                                PRJ.ATT.2039.S1.MA
## 14517                                PRJ.ATT.2039.S1.MF
## 14518                                 PRJ.ATT.2064.1.FE
## 14519                                 PRJ.ATT.2064.1.MA
## 14520                                 PRJ.ATT.2064.1.MF
## 14521                                 PRJ.ATT.2064.2.FE
## 14522                                 PRJ.ATT.2064.2.MA
## 14523                                 PRJ.ATT.2064.2.MF
## 14524                                 PRJ.ATT.2064.3.FE
## 14525                                 PRJ.ATT.2064.3.MA
## 14526                                 PRJ.ATT.2064.3.MF
## 14527                                 PRJ.ATT.2064.4.FE
## 14528                                 PRJ.ATT.2064.4.MA
## 14529                                 PRJ.ATT.2064.4.MF
## 14530                               PRJ.ATT.2064.NED.FE
## 14531                               PRJ.ATT.2064.NED.MA
## 14532                               PRJ.ATT.2064.NED.MF
## 14533                                PRJ.ATT.2064.S1.FE
## 14534                                PRJ.ATT.2064.S1.MA
## 14535                                PRJ.ATT.2064.S1.MF
## 14536                                 PRJ.ATT.2529.1.FE
## 14537                                 PRJ.ATT.2529.1.MA
## 14538                                 PRJ.ATT.2529.1.MF
## 14539                                 PRJ.ATT.2529.2.FE
## 14540                                 PRJ.ATT.2529.2.MA
## 14541                                 PRJ.ATT.2529.2.MF
## 14542                                 PRJ.ATT.2529.3.FE
## 14543                                 PRJ.ATT.2529.3.MA
## 14544                                 PRJ.ATT.2529.3.MF
## 14545                                 PRJ.ATT.2529.4.FE
## 14546                                 PRJ.ATT.2529.4.MA
## 14547                                 PRJ.ATT.2529.4.MF
## 14548                               PRJ.ATT.2529.NED.FE
## 14549                               PRJ.ATT.2529.NED.MA
## 14550                               PRJ.ATT.2529.NED.MF
## 14551                                PRJ.ATT.2529.S1.FE
## 14552                                PRJ.ATT.2529.S1.MA
## 14553                                PRJ.ATT.2529.S1.MF
## 14554                                 PRJ.ATT.25UP.1.FE
## 14555                                 PRJ.ATT.25UP.1.MA
## 14556                                 PRJ.ATT.25UP.1.MF
## 14557                                 PRJ.ATT.25UP.2.FE
## 14558                                 PRJ.ATT.25UP.2.MA
## 14559                                 PRJ.ATT.25UP.2.MF
## 14560                                 PRJ.ATT.25UP.3.FE
## 14561                                 PRJ.ATT.25UP.3.MA
## 14562                                 PRJ.ATT.25UP.3.MF
## 14563                                 PRJ.ATT.25UP.4.FE
## 14564                                 PRJ.ATT.25UP.4.MA
## 14565                                 PRJ.ATT.25UP.4.MF
## 14566                               PRJ.ATT.25UP.NED.FE
## 14567                               PRJ.ATT.25UP.NED.MA
## 14568                               PRJ.ATT.25UP.NED.MF
## 14569                                PRJ.ATT.25UP.S1.FE
## 14570                                PRJ.ATT.25UP.S1.MA
## 14571                                PRJ.ATT.25UP.S1.MF
## 14572                                 PRJ.ATT.4064.1.FE
## 14573                                 PRJ.ATT.4064.1.MA
## 14574                                 PRJ.ATT.4064.1.MF
## 14575                                 PRJ.ATT.4064.2.FE
## 14576                                 PRJ.ATT.4064.2.MA
## 14577                                 PRJ.ATT.4064.2.MF
## 14578                                 PRJ.ATT.4064.3.FE
## 14579                                 PRJ.ATT.4064.3.MA
## 14580                                 PRJ.ATT.4064.3.MF
## 14581                                 PRJ.ATT.4064.4.FE
## 14582                                 PRJ.ATT.4064.4.MA
## 14583                                 PRJ.ATT.4064.4.MF
## 14584                               PRJ.ATT.4064.NED.FE
## 14585                               PRJ.ATT.4064.NED.MA
## 14586                               PRJ.ATT.4064.NED.MF
## 14587                                PRJ.ATT.4064.S1.FE
## 14588                                PRJ.ATT.4064.S1.MA
## 14589                                PRJ.ATT.4064.S1.MF
## 14590                                 PRJ.ATT.60UP.1.FE
## 14591                                 PRJ.ATT.60UP.1.MA
## 14592                                 PRJ.ATT.60UP.1.MF
## 14593                                 PRJ.ATT.60UP.2.FE
## 14594                                 PRJ.ATT.60UP.2.MA
## 14595                                 PRJ.ATT.60UP.2.MF
## 14596                                 PRJ.ATT.60UP.3.FE
## 14597                                 PRJ.ATT.60UP.3.MA
## 14598                                 PRJ.ATT.60UP.3.MF
## 14599                                 PRJ.ATT.60UP.4.FE
## 14600                                 PRJ.ATT.60UP.4.MA
## 14601                                 PRJ.ATT.60UP.4.MF
## 14602                               PRJ.ATT.60UP.NED.FE
## 14603                               PRJ.ATT.60UP.NED.MA
## 14604                               PRJ.ATT.60UP.NED.MF
## 14605                                PRJ.ATT.60UP.S1.FE
## 14606                                PRJ.ATT.60UP.S1.MA
## 14607                                PRJ.ATT.60UP.S1.MF
## 14608                                 PRJ.ATT.80UP.1.FE
## 14609                                 PRJ.ATT.80UP.1.MA
## 14610                                 PRJ.ATT.80UP.1.MF
## 14611                                 PRJ.ATT.80UP.2.FE
## 14612                                 PRJ.ATT.80UP.2.MA
## 14613                                 PRJ.ATT.80UP.2.MF
## 14614                                 PRJ.ATT.80UP.3.FE
## 14615                                 PRJ.ATT.80UP.3.MA
## 14616                                 PRJ.ATT.80UP.3.MF
## 14617                                 PRJ.ATT.80UP.4.FE
## 14618                                 PRJ.ATT.80UP.4.MA
## 14619                                 PRJ.ATT.80UP.4.MF
## 14620                               PRJ.ATT.80UP.NED.FE
## 14621                               PRJ.ATT.80UP.NED.MA
## 14622                               PRJ.ATT.80UP.NED.MF
## 14623                                PRJ.ATT.80UP.S1.FE
## 14624                                PRJ.ATT.80UP.S1.MA
## 14625                                PRJ.ATT.80UP.S1.MF
## 14626                                  PRJ.ATT.ALL.1.FE
## 14627                                  PRJ.ATT.ALL.1.MA
## 14628                                  PRJ.ATT.ALL.1.MF
## 14629                                  PRJ.ATT.ALL.2.FE
## 14630                                  PRJ.ATT.ALL.2.MA
## 14631                                  PRJ.ATT.ALL.2.MF
## 14632                                  PRJ.ATT.ALL.3.FE
## 14633                                  PRJ.ATT.ALL.3.MA
## 14634                                  PRJ.ATT.ALL.3.MF
## 14635                                  PRJ.ATT.ALL.4.FE
## 14636                                  PRJ.ATT.ALL.4.MA
## 14637                                  PRJ.ATT.ALL.4.MF
## 14638                                PRJ.ATT.ALL.NED.FE
## 14639                                PRJ.ATT.ALL.NED.MA
## 14640                                PRJ.ATT.ALL.NED.MF
## 14641                                 PRJ.ATT.ALL.S1.FE
## 14642                                 PRJ.ATT.ALL.S1.MA
## 14643                                 PRJ.ATT.ALL.S1.MF
## 14644                                   PRJ.MYS.0T19.FE
## 14645                                   PRJ.MYS.0T19.MA
## 14646                                   PRJ.MYS.0T19.MF
## 14647                                   PRJ.MYS.1519.FE
## 14648                                   PRJ.MYS.1519.MA
## 14649                                   PRJ.MYS.1519.MF
## 14650                                   PRJ.MYS.15UP.FE
## 14651                                  PRJ.MYS.15UP.GPI
## 14652                                   PRJ.MYS.15UP.MA
## 14653                                   PRJ.MYS.15UP.MF
## 14654                                   PRJ.MYS.2024.FE
## 14655                                   PRJ.MYS.2024.MA
## 14656                                   PRJ.MYS.2024.MF
## 14657                                   PRJ.MYS.2039.FE
## 14658                                   PRJ.MYS.2039.MA
## 14659                                   PRJ.MYS.2039.MF
## 14660                                   PRJ.MYS.2064.FE
## 14661                                   PRJ.MYS.2064.MA
## 14662                                   PRJ.MYS.2064.MF
## 14663                                   PRJ.MYS.2529.FE
## 14664                                   PRJ.MYS.2529.MA
## 14665                                   PRJ.MYS.2529.MF
## 14666                                   PRJ.MYS.25UP.FE
## 14667                                  PRJ.MYS.25UP.GPI
## 14668                                   PRJ.MYS.25UP.MA
## 14669                                   PRJ.MYS.25UP.MF
## 14670                                   PRJ.MYS.4064.FE
## 14671                                   PRJ.MYS.4064.MA
## 14672                                   PRJ.MYS.4064.MF
## 14673                                   PRJ.MYS.60UP.FE
## 14674                                   PRJ.MYS.60UP.MA
## 14675                                   PRJ.MYS.60UP.MF
## 14676                                   PRJ.MYS.65UP.FE
## 14677                                   PRJ.MYS.65UP.MA
## 14678                                   PRJ.MYS.65UP.MF
## 14679                                   PRJ.MYS.80UP.FE
## 14680                                   PRJ.MYS.80UP.MA
## 14681                                   PRJ.MYS.80UP.MF
## 14682                                 PRJ.POP.1519.1.FE
## 14683                                 PRJ.POP.1519.1.MA
## 14684                                 PRJ.POP.1519.1.MF
## 14685                                 PRJ.POP.1519.2.FE
## 14686                                 PRJ.POP.1519.2.MA
## 14687                                 PRJ.POP.1519.2.MF
## 14688                                 PRJ.POP.1519.3.FE
## 14689                                 PRJ.POP.1519.3.MA
## 14690                                 PRJ.POP.1519.3.MF
## 14691                                 PRJ.POP.1519.4.FE
## 14692                                 PRJ.POP.1519.4.MA
## 14693                                 PRJ.POP.1519.4.MF
## 14694                               PRJ.POP.1519.NED.FE
## 14695                               PRJ.POP.1519.NED.MA
## 14696                               PRJ.POP.1519.NED.MF
## 14697                                PRJ.POP.1519.S1.FE
## 14698                                PRJ.POP.1519.S1.MA
## 14699                                PRJ.POP.1519.S1.MF
## 14700                                 PRJ.POP.2024.1.FE
## 14701                                 PRJ.POP.2024.1.MA
## 14702                                 PRJ.POP.2024.1.MF
## 14703                                 PRJ.POP.2024.2.FE
## 14704                                 PRJ.POP.2024.2.MA
## 14705                                 PRJ.POP.2024.2.MF
## 14706                                 PRJ.POP.2024.3.FE
## 14707                                 PRJ.POP.2024.3.MA
## 14708                                 PRJ.POP.2024.3.MF
## 14709                                 PRJ.POP.2024.4.FE
## 14710                                 PRJ.POP.2024.4.MA
## 14711                                 PRJ.POP.2024.4.MF
## 14712                               PRJ.POP.2024.NED.FE
## 14713                               PRJ.POP.2024.NED.MA
## 14714                               PRJ.POP.2024.NED.MF
## 14715                                PRJ.POP.2024.S1.FE
## 14716                                PRJ.POP.2024.S1.MA
## 14717                                PRJ.POP.2024.S1.MF
## 14718                                 PRJ.POP.2529.1.FE
## 14719                                 PRJ.POP.2529.1.MA
## 14720                                 PRJ.POP.2529.1.MF
## 14721                                 PRJ.POP.2529.2.FE
## 14722                                 PRJ.POP.2529.2.MA
## 14723                                 PRJ.POP.2529.2.MF
## 14724                                 PRJ.POP.2529.3.FE
## 14725                                 PRJ.POP.2529.3.MA
## 14726                                 PRJ.POP.2529.3.MF
## 14727                                 PRJ.POP.2529.4.FE
## 14728                                 PRJ.POP.2529.4.MA
## 14729                                 PRJ.POP.2529.4.MF
## 14730                               PRJ.POP.2529.NED.FE
## 14731                               PRJ.POP.2529.NED.MA
## 14732                               PRJ.POP.2529.NED.MF
## 14733                                PRJ.POP.2529.S1.FE
## 14734                                PRJ.POP.2529.S1.MA
## 14735                                PRJ.POP.2529.S1.MF
## 14736                                  PRJ.POP.ALL.1.FE
## 14737                                  PRJ.POP.ALL.1.MA
## 14738                                  PRJ.POP.ALL.1.MF
## 14739                                  PRJ.POP.ALL.2.FE
## 14740                                  PRJ.POP.ALL.2.MA
## 14741                                  PRJ.POP.ALL.2.MF
## 14742                                  PRJ.POP.ALL.3.FE
## 14743                                  PRJ.POP.ALL.3.MA
## 14744                                  PRJ.POP.ALL.3.MF
## 14745                                  PRJ.POP.ALL.4.FE
## 14746                                  PRJ.POP.ALL.4.MA
## 14747                                  PRJ.POP.ALL.4.MF
## 14748                                PRJ.POP.ALL.NED.FE
## 14749                                PRJ.POP.ALL.NED.MA
## 14750                                PRJ.POP.ALL.NED.MF
## 14751                                 PRJ.POP.ALL.S1.FE
## 14752                                 PRJ.POP.ALL.S1.MA
## 14753                                 PRJ.POP.ALL.S1.MF
## 14754                        PROT.MINOR.INV.DFRN.DB0614
## 14755                        PROT.MINOR.INV.DFRN.DB1519
## 14756       PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB0614
## 14757       PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB1519
## 14758       PROT.MINOR.INV.EASE.SSI.XD.0010.DB0614.DFRN
## 14759       PROT.MINOR.INV.EASE.SSI.XD.0010.DB1519.DFRN
## 14760                PROT.MINOR.INV.EXT.BUS.DISC.010.XD
## 14761      PROT.MINOR.INV.EXT.CONFL.INTER.XD.010.DB1519
## 14762      PROT.MINOR.INV.EXT.CORP.TRANP.XD.0010.DB1519
## 14763  PROT.MINOR.INV.EXT.CORP.TRANS.XD.010.DB1519.DFRN
## 14764            PROT.MINOR.INV.EXT.DIR.LBL.010.XD.DFRN
## 14765               PROT.MINOR.INV.EXT.DISC.010.XD.DFRN
## 14766       PROT.MINOR.INV.EXT.OWNR.CONT.XD.0100.DB1519
## 14767         PROT.MINOR.INV.EXT.OWNR.CONTL.010.XD.DFRN
## 14768        PROT.MINOR.INV.EXT.SHARE.GOV.XD.010.DB1519
## 14769        PROT.MINOR.INV.EXT.SHARE.RTS.XD.010.DB1519
## 14770 PROT.MINOR.INV.EXT.SHRHLD.RGT.XD.0010.DB1519.DRFN
## 14771         PROT.MINOR.INV.IC.PRIN.EXT.DIR.LGL.010.XD
## 14772                   PROT.MINOR.INV.IC.PRIN.MINOR.RK
## 14773      PROT.MINOR.INV.STRENG.INV.PROT.XD.010.DB0614
## 14774  PROT.MINOR.INV.STRENG.MIN.INV.PROT.XD.010.DB0614
## 14775                                 PRT.PDCL.IND1.IDX
## 14776                           PRT.PDCL.IND10A.ALLD.ZS
## 14777                           PRT.PDCL.IND10B.ALLD.ZS
## 14778                                PRT.PDCL.IND11.IDX
## 14779                                PRT.PDCL.IND12.IDX
## 14780                                PRT.PDCL.IND2A.IDX
## 14781                                PRT.PDCL.IND2B.IDX
## 14782                             PRT.PDCL.IND3.ALLD.ZS
## 14783                             PRT.PDCL.IND4.ALLD.ZS
## 14784                            PRT.PDCL.IND5A.ALLD.ZS
## 14785                            PRT.PDCL.IND5B.ALLD.ZS
## 14786                            PRT.PDCL.IND6.ALLD.NUM
## 14787                             PRT.PDCL.IND7.ALLD.ZS
## 14788                             PRT.PDCL.IND8.ALLD.ZS
## 14789                             PRT.PDCL.IND9.ALLD.ZS
## 14790                                            PV.EST
## 14791                                         PV.NO.SRC
## 14792                                        PV.PER.RNK
## 14793                                  PV.PER.RNK.LOWER
## 14794                                  PV.PER.RNK.UPPER
## 14795                                        PV.STD.ERR
## 14796                                       PX.MUV.TOTL
## 14797                                    PX.MUV.TOTL.XU
## 14798                                       PX.REC.REER
## 14799                                       PX.REX.REER
## 14800          Q.1C0.1C0.C.9A.ALL.PITT.1.ALL.MV.TO1.ALL
## 14801          Q.1C0.1C0.C.9A.MOA.RXGT.1.ALL.MV.TO1.ALL
## 14802          Q.1C0.1C0.C.9B.IFI.LMIM.1.ALL.NV.SDR.MOA
## 14803          Q.1C0.1C0.C.9B.IFI.LMIM.1.STR.NV.SDR.MOA
## 14804          Q.1C0.1C0.C.9B.IFI.SDAL.1.ALL.MV.SDR.MOA
## 14805          Q.1C0.1C0.C.9E.ALL.DSTT.1.ALL.MV.TO1.ALL
## 14806          Q.1C0.1C0.C.9E.ALL.DSTT.1.STO.MV.TO1.ALL
## 14807          Q.1C0.1C0.D.9B.MOA.SDHO.1.ALL.MV.SDR.IFI
## 14808          Q.1E0.1E0.C.9B.IFI.LMOI.1.ALL.NV.TO1.ALL
## 14809          Q.1E0.1E0.C.9B.IFI.LMTT.1.ALL.NV.TO1.ALL
## 14810          Q.5A0.5A0.C.9C.GGO.LOBA.1.ALL.NV.TO1.ALL
## 14811          Q.5A0.5A0.C.9C.GGO.LOBN.1.ALL.NV.TO1.ALL
## 14812          Q.5A0.5A0.C.9C.GGO.LOBT.1.ALL.NV.TO1.ALL
## 14813          Q.5B0.5B0.C.5A.BKC.ASTT.1.ALL.MX.TO1.ALL
## 14814          Q.5B0.5B0.C.5A.BKC.ASTT.1.STR.MX.TO1.ALL
## 14815          Q.5B0.5B0.C.5A.BKL.ASTT.1.ALL.MX.TO1.ALL
## 14816          Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.ALL
## 14817          Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.NBK
## 14818          Q.5B0.5B0.D.5A.ALL.DFXB.1.ALL.NV.TO1.BMA
## 14819          Q.5B0.5B0.D.5A.NBK.DFXB.1.ALL.NV.TO1.BMA
## 14820          Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.ALL
## 14821          Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.NBK
## 14822          Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.ALL
## 14823          Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.NBK
## 14824          Q.6T0.5B0.C.3P.GGO.PCNO.1.ALL.NV.TO1.GGO
## 14825          Q.6T0.5B0.C.3P.GGO.PCOD.1.ALL.NV.TO1.GGO
## 14826          Q.8A0.5B0.C.5A.ALL.IECE.1.ALL.MX.TO1.ALL
## 14827          Q.8A0.5B0.C.5A.ALL.IECE.1.STR.MX.TO1.ALL
## 14828                                      RAW.5.1.DILG
## 14829                                      RAW.5.3.DISK
## 14830                                      RAW.5.4.DIPN
## 14831                                      RAW.5.5.DIFI
## 14832                                     RAW.D2.1.IDDS
## 14833                         RAW.D2.2.Download.options
## 14834                         RAW.D2.2.Machine.readable
## 14835                       RAW.D2.2.Metadata.available
## 14836                          RAW.D2.2.Non.proprietary
## 14837                        RAW.D2.2.Openness.subscore
## 14838                             RAW.D2.2.Terms.of.use
## 14839                                     RAW.D2.4.NADA
## 14840                                RAW.D2.4.NADA_text
## 14841                            RAW.D4.1.1.POPU.CENSUS
## 14842                            RAW.D4.1.2.AGRI.CENSUS
## 14843                            RAW.D4.1.3.BIZZ.CENSUS
## 14844                           RAW.D4.1.4.HOUS.SURVEYS
## 14845                           RAW.D4.1.5.AGRI.SURVEYS
## 14846                           RAW.D4.1.6.LABR.SURVEYS
## 14847                           RAW.D4.1.7.HLTH.SURVEYS
## 14848                           RAW.D4.1.8.BIZZ.SURVEYS
## 14849                                    RAW.D4.2.1.SPL
## 14850                                RAW.D4.2.2.EDU.NAS
## 14851                                RAW.D4.2.2.EDU.OOS
## 14852                               RAW.D4.2.2.EDU.ORGL
## 14853                                   RAW.D4.2.3.CRVS
## 14854                             RAW.D4.2.4.LBR.EMPOFF
## 14855                             RAW.D4.2.4.LBR.EMPORG
## 14856                               RAW.D4.2.4.LBR.INSP
## 14857                              RAW.D4.2.4.LBR.INSUR
## 14858                              RAW.D4.2.4.LBR.OTHER
## 14859                             RAW.D4.2.4.LBR.WRKORG
## 14860                      RAW.D4.3.GEO.1st.admin.level
## 14861                      RAW.D4.3.GEO.2nd.admin.level
## 14862                                   RAW.D5.2.1.SNAU
## 14863                                  RAW.D5.2.10.GSBP
## 14864                                   RAW.D5.2.2.NABY
## 14865                                   RAW.D5.2.3.CNIN
## 14866                                  RAW.D5.2.4.CPIBY
## 14867                                   RAW.D5.2.5.HOUS
## 14868                                   RAW.D5.2.6.EMPL
## 14869                                   RAW.D5.2.7.CGOV
## 14870                                   RAW.D5.2.8.FINA
## 14871                                   RAW.D5.2.9.MONY
## 14872                                              REER
## 14873                                      RES.DPST.CBK
## 14874                       RESLV.ISV.COPR.03.XD.DB1519
## 14875                                 RESLV.ISV.COST.ZS
## 14876                        RESLV.ISV.CPI.04.XD.DB1519
## 14877                             RESLV.ISV.DB0414.DFRN
## 14878                             RESLV.ISV.DB1519.DFRN
## 14879                            RESLV.ISV.DFRN.RCOV.RT
## 14880                                 RESLV.ISV.DURS.YR
## 14881                          RESLV.ISV.MGDA.XD.DB1519
## 14882                                    RESLV.ISV.OTCM
## 14883                                 RESLV.ISV.RCOV.RT
## 14884                 RESLV.ISV.RCOV.RT.016.DB1519.DFRN
## 14885                                 RESLV.ISV.RK.DB19
## 14886                       RESLV.ISV.ROPC.03.XD.DB1519
## 14887                          RESLV.ISV.SOIF.06.DB1519
## 14888                                        RETSALESSA
## 14889                                        REV.DAK.CR
## 14890                                        REV.DAU.CR
## 14891                                   REV.NRRV.SHR.CR
## 14892                                       REV.OSRV.CR
## 14893                                       REV.OTHR.CR
## 14894                                     REV.RV.SHR.CR
## 14895                                       REV.TOTL.CR
## 14896                                   REV.TXRV.SHR.CR
## 14897                                            RL.EST
## 14898                                         RL.NO.SRC
## 14899                                        RL.PER.RNK
## 14900                                  RL.PER.RNK.LOWER
## 14901                                  RL.PER.RNK.UPPER
## 14902                                        RL.STD.ERR
## 14903                                  ROD.DIST.ASPH.KM
## 14904                               ROD.DIST.BDMG.BM.KM
## 14905                                  ROD.DIST.BDMG.KM
## 14906                                  ROD.DIST.DIRT.KM
## 14907                               ROD.DIST.FAIR.BM.KM
## 14908                                  ROD.DIST.FAIR.KM
## 14909                               ROD.DIST.GOOD.BM.KM
## 14910                                  ROD.DIST.GOOD.KM
## 14911                                 ROD.DIST.GRAVL.KM
## 14912                               ROD.DIST.LDMG.BM.KM
## 14913                                  ROD.DIST.LDMG.KM
## 14914                                  ROD.DIST.OTHR.KM
## 14915                                  ROD.NATL.ASPH.KM
## 14916                                  ROD.NATL.BDMG.KM
## 14917                                  ROD.NATL.DIRT.KM
## 14918                                  ROD.NATL.FAIR.KM
## 14919                                  ROD.NATL.GOOD.KM
## 14920                                 ROD.NATL.GRAVL.KM
## 14921                                  ROD.NATL.LDMG.KM
## 14922                                  ROD.NATL.OTHR.KM
## 14923                                  ROD.PROV.ASPH.KM
## 14924                                  ROD.PROV.BDMG.KM
## 14925                                  ROD.PROV.DIRT.KM
## 14926                                  ROD.PROV.FAIR.KM
## 14927                                  ROD.PROV.GOOD.KM
## 14928                                 ROD.PROV.GRAVL.KM
## 14929                                  ROD.PROV.LDMG.KM
## 14930                                  ROD.PROV.OTHR.KM
## 14931                                  ROD.VILG.ASPH.ZS
## 14932                                  ROD.VILG.DIRT.ZS
## 14933                                 ROD.VILG.GRAVL.ZS
## 14934                                  ROD.VILG.OTHR.ZS
## 14935                                            RQ.EST
## 14936                                         RQ.NO.SRC
## 14937                                        RQ.PER.RNK
## 14938                                  RQ.PER.RNK.LOWER
## 14939                                  RQ.PER.RNK.UPPER
## 14940                                        RQ.STD.ERR
## 14941                                        s_loans_A1
## 14942                           s_policyholders_B2_life
## 14943                        s_policyholders_B2_nonlife
## 14944                                  SABER.EMIS.GOAL1
## 14945                             SABER.EMIS.GOAL1.LVL1
## 14946                             SABER.EMIS.GOAL1.LVL2
## 14947                             SABER.EMIS.GOAL1.LVL3
## 14948                             SABER.EMIS.GOAL1.LVL4
## 14949                             SABER.EMIS.GOAL1.LVL5
## 14950                             SABER.EMIS.GOAL1.LVL6
## 14951                                  SABER.EMIS.GOAL2
## 14952                             SABER.EMIS.GOAL2.LVL1
## 14953                             SABER.EMIS.GOAL2.LVL2
## 14954                             SABER.EMIS.GOAL2.LVL3
## 14955                             SABER.EMIS.GOAL2.LVL4
## 14956                             SABER.EMIS.GOAL2.LVL5
## 14957                                  SABER.EMIS.GOAL3
## 14958                             SABER.EMIS.GOAL3.LVL1
## 14959                             SABER.EMIS.GOAL3.LVL2
## 14960                             SABER.EMIS.GOAL3.LVL3
## 14961                             SABER.EMIS.GOAL3.LVL4
## 14962                                  SABER.EMIS.GOAL4
## 14963                             SABER.EMIS.GOAL4.LVL1
## 14964                             SABER.EMIS.GOAL4.LVL2
## 14965                             SABER.EMIS.GOAL4.LVL3
## 14966                             SABER.EMIS.GOAL4.LVL4
## 14967                              SABER.ERL.CHLD.GOAL1
## 14968                         SABER.ERL.CHLD.GOAL1.LVL1
## 14969                         SABER.ERL.CHLD.GOAL1.LVL2
## 14970                         SABER.ERL.CHLD.GOAL1.LVL3
## 14971                              SABER.ERL.CHLD.GOAL2
## 14972                         SABER.ERL.CHLD.GOAL2.LVL1
## 14973                         SABER.ERL.CHLD.GOAL2.LVL2
## 14974                         SABER.ERL.CHLD.GOAL2.LVL3
## 14975                              SABER.ERL.CHLD.GOAL3
## 14976                         SABER.ERL.CHLD.GOAL3.LVL1
## 14977                         SABER.ERL.CHLD.GOAL3.LVL2
## 14978                         SABER.ERL.CHLD.GOAL3.LVL3
## 14979                                  SABER.GRVT.GOAL5
## 14980                             SABER.GRVT.GOAL5.LVL1
## 14981                             SABER.GRVT.GOAL5.LVL2
## 14982                             SABER.GRVT.GOAL5.LVL3
## 14983                             SABER.GRVT.GOAL5.LVL4
## 14984                             SABER.GRVT.GOAL5.LVL5
## 14985                             SABER.GRVT.GOAL5.LVL6
## 14986                             SABER.GRVT.GOAL5.LVL7
## 14987                                  SABER.GRVT.GOAL6
## 14988                             SABER.GRVT.GOAL6.LVL1
## 14989                             SABER.GRVT.GOAL6.LVL2
## 14990                             SABER.GRVT.GOAL6.LVL3
## 14991                             SABER.GRVT.GOAL6.LVL4
## 14992                             SABER.GRVT.GOAL6.LVL5
## 14993                             SABER.GRVT.GOAL6.LVL6
## 14994                                  SABER.GRVT.GOAL7
## 14995                             SABER.GRVT.GOAL7.LVL1
## 14996                             SABER.GRVT.GOAL7.LVL2
## 14997                             SABER.GRVT.GOAL7.LVL3
## 14998                             SABER.GRVT.GOAL7.LVL4
## 14999                                  SABER.GRVT.GOAL8
## 15000                             SABER.GRVT.GOAL8.LVL1
## 15001                             SABER.GRVT.GOAL8.LVL2
## 15002                             SABER.GRVT.GOAL8.LVL3
## 15003                             SABER.GRVT.GOAL8.LVL4
## 15004                             SABER.GRVT.GOAL8.LVL5
## 15005                             SABER.GRVT.GOAL8.LVL6
## 15006                             SABER.GRVT.GOAL8.LVL7
## 15007                                  SABER.HLTH.GOAL1
## 15008                                  SABER.HLTH.GOAL2
## 15009                                  SABER.HLTH.GOAL3
## 15010                                  SABER.HLTH.GOAL4
## 15011                                  SABER.HLTH.GOAL5
## 15012                                  SABER.HLTH.GOAL6
## 15013                                  SABER.HLTH.GOAL7
## 15014                                  SABER.HLTH.GOAL8
## 15015                                  SABER.HLTH.GOAL9
## 15016                                  SABER.PRVT.GOAL1
## 15017                             SABER.PRVT.GOAL1.LVL1
## 15018                             SABER.PRVT.GOAL1.LVL2
## 15019                             SABER.PRVT.GOAL1.LVL3
## 15020                             SABER.PRVT.GOAL1.LVL4
## 15021                             SABER.PRVT.GOAL1.LVL5
## 15022                             SABER.PRVT.GOAL1.LVL6
## 15023                                  SABER.PRVT.GOAL2
## 15024                             SABER.PRVT.GOAL2.LVL1
## 15025                             SABER.PRVT.GOAL2.LVL2
## 15026                             SABER.PRVT.GOAL2.LVL3
## 15027                             SABER.PRVT.GOAL2.LVL4
## 15028                             SABER.PRVT.GOAL2.LVL5
## 15029                                  SABER.PRVT.GOAL3
## 15030                             SABER.PRVT.GOAL3.LVL1
## 15031                             SABER.PRVT.GOAL3.LVL2
## 15032                             SABER.PRVT.GOAL3.LVL3
## 15033                                  SABER.PRVT.GOAL4
## 15034                             SABER.PRVT.GOAL4.LVL1
## 15035                             SABER.PRVT.GOAL4.LVL2
## 15036                             SABER.PRVT.GOAL4.LVL3
## 15037                             SABER.PRVT.GOAL4.LVL4
## 15038                             SABER.PRVT.GOAL4.LVL5
## 15039                              SABER.SCH.ATNM.GOAL1
## 15040                         SABER.SCH.ATNM.GOAL1.LVL1
## 15041                         SABER.SCH.ATNM.GOAL1.LVL2
## 15042                         SABER.SCH.ATNM.GOAL1.LVL3
## 15043                         SABER.SCH.ATNM.GOAL1.LVL4
## 15044                         SABER.SCH.ATNM.GOAL1.LVL5
## 15045                              SABER.SCH.ATNM.GOAL2
## 15046                         SABER.SCH.ATNM.GOAL2.LVL1
## 15047                         SABER.SCH.ATNM.GOAL2.LVL2
## 15048                         SABER.SCH.ATNM.GOAL2.LVL3
## 15049                              SABER.SCH.ATNM.GOAL3
## 15050                         SABER.SCH.ATNM.GOAL3.LVL1
## 15051                         SABER.SCH.ATNM.GOAL3.LVL2
## 15052                         SABER.SCH.ATNM.GOAL3.LVL3
## 15053                         SABER.SCH.ATNM.GOAL3.LVL4
## 15054                         SABER.SCH.ATNM.GOAL3.LVL5
## 15055                         SABER.SCH.ATNM.GOAL3.LVL6
## 15056                              SABER.SCH.ATNM.GOAL4
## 15057                         SABER.SCH.ATNM.GOAL4.LVL1
## 15058                         SABER.SCH.ATNM.GOAL4.LVL2
## 15059                         SABER.SCH.ATNM.GOAL4.LVL3
## 15060                         SABER.SCH.ATNM.GOAL4.LVL4
## 15061                         SABER.SCH.ATNM.GOAL4.LVL5
## 15062                              SABER.SCH.ATNM.GOAL5
## 15063                         SABER.SCH.ATNM.GOAL5.LVL1
## 15064                         SABER.SCH.ATNM.GOAL5.LVL2
## 15065                         SABER.SCH.ATNM.GOAL5.LVL3
## 15066                         SABER.SCH.ATNM.GOAL5.LVL4
## 15067                         SABER.SCH.ATNM.GOAL5.LVL5
## 15068                              SABER.SCH.FNNC.GOAL1
## 15069                         SABER.SCH.FNNC.GOAL1.LVL1
## 15070                         SABER.SCH.FNNC.GOAL1.LVL2
## 15071                              SABER.SCH.FNNC.GOAL2
## 15072                         SABER.SCH.FNNC.GOAL2.LVL1
## 15073                         SABER.SCH.FNNC.GOAL2.LVL2
## 15074                              SABER.SCH.FNNC.GOAL3
## 15075                         SABER.SCH.FNNC.GOAL3.LVL1
## 15076                         SABER.SCH.FNNC.GOAL3.LVL2
## 15077                              SABER.SCH.FNNC.GOAL4
## 15078                         SABER.SCH.FNNC.GOAL4.LVL1
## 15079                         SABER.SCH.FNNC.GOAL4.LVL2
## 15080                              SABER.SCH.FNNC.GOAL5
## 15081                         SABER.SCH.FNNC.GOAL5.LVL1
## 15082                         SABER.SCH.FNNC.GOAL5.LVL2
## 15083                              SABER.SCH.FNNC.GOAL6
## 15084                         SABER.SCH.FNNC.GOAL6.LVL1
## 15085                         SABER.SCH.FNNC.GOAL6.LVL2
## 15086                               SABER.STD.ASS.GOAL1
## 15087                          SABER.STD.ASS.GOAL1.LVL1
## 15088                          SABER.STD.ASS.GOAL1.LVL2
## 15089                               SABER.STD.ASS.GOAL2
## 15090                          SABER.STD.ASS.GOAL2.LVL1
## 15091                          SABER.STD.ASS.GOAL2.LVL2
## 15092                          SABER.STD.ASS.GOAL2.LVL3
## 15093                               SABER.STD.ASS.GOAL3
## 15094                          SABER.STD.ASS.GOAL3.LVL1
## 15095                          SABER.STD.ASS.GOAL3.LVL2
## 15096                          SABER.STD.ASS.GOAL3.LVL3
## 15097                               SABER.STD.ASS.GOAL4
## 15098                          SABER.STD.ASS.GOAL4.LVL1
## 15099                          SABER.STD.ASS.GOAL4.LVL2
## 15100                          SABER.STD.ASS.GOAL4.LVL3
## 15101                                  SABER.TECH.GOAL1
## 15102                             SABER.TECH.GOAL1.LVL1
## 15103                             SABER.TECH.GOAL1.LVL2
## 15104                                  SABER.TECH.GOAL2
## 15105                             SABER.TECH.GOAL2.LVL1
## 15106                             SABER.TECH.GOAL2.LVL2
## 15107                             SABER.TECH.GOAL2.LVL3
## 15108                             SABER.TECH.GOAL2.LVL4
## 15109                                  SABER.TECH.GOAL3
## 15110                             SABER.TECH.GOAL3.LVL1
## 15111                             SABER.TECH.GOAL3.LVL2
## 15112                                  SABER.TECH.GOAL4
## 15113                             SABER.TECH.GOAL4.LVL1
## 15114                             SABER.TECH.GOAL4.LVL2
## 15115                                  SABER.TECH.GOAL5
## 15116                             SABER.TECH.GOAL5.LVL1
## 15117                             SABER.TECH.GOAL5.LVL2
## 15118                                  SABER.TECH.GOAL6
## 15119                             SABER.TECH.GOAL6.LVL1
## 15120                             SABER.TECH.GOAL6.LVL2
## 15121                             SABER.TECH.GOAL6.LVL3
## 15122                                  SABER.TECH.GOAL7
## 15123                             SABER.TECH.GOAL7.LVL1
## 15124                             SABER.TECH.GOAL7.LVL2
## 15125                             SABER.TECH.GOAL7.LVL3
## 15126                                  SABER.TECH.GOAL8
## 15127                             SABER.TECH.GOAL8.LVL1
## 15128                             SABER.TECH.GOAL8.LVL2
## 15129                             SABER.TECH.GOAL8.LVL3
## 15130                                   SABER.TER.GOAL1
## 15131                              SABER.TER.GOAL1.LVL1
## 15132                                   SABER.TER.GOAL2
## 15133                              SABER.TER.GOAL2.LVL1
## 15134                                   SABER.TER.GOAL3
## 15135                              SABER.TER.GOAL3.LVL1
## 15136                              SABER.TER.GOAL3.LVL2
## 15137                                   SABER.TER.GOAL4
## 15138                              SABER.TER.GOAL4.LVL1
## 15139                              SABER.TER.GOAL4.LVL2
## 15140                              SABER.TER.GOAL4.LVL3
## 15141                                   SABER.TER.GOAL5
## 15142                              SABER.TER.GOAL5.LVL1
## 15143                              SABER.TER.GOAL5.LVL2
## 15144                                   SABER.TER.GOAL6
## 15145                              SABER.TER.GOAL6.LVL1
## 15146                              SABER.TER.GOAL6.LVL2
## 15147                              SABER.TER.GOAL6.LVL3
## 15148                                  SABER.WORK.GOAL1
## 15149                             SABER.WORK.GOAL1.LVL1
## 15150                             SABER.WORK.GOAL1.LVL2
## 15151                             SABER.WORK.GOAL1.LVL3
## 15152                                  SABER.WORK.GOAL2
## 15153                             SABER.WORK.GOAL2.LVL1
## 15154                             SABER.WORK.GOAL2.LVL2
## 15155                             SABER.WORK.GOAL2.LVL3
## 15156                                  SABER.WORK.GOAL3
## 15157                             SABER.WORK.GOAL3.LVL1
## 15158                             SABER.WORK.GOAL3.LVL2
## 15159                             SABER.WORK.GOAL3.LVL3
## 15160                              SE.ADT.1524.IL.FE.ZS
## 15161                              SE.ADT.1524.IL.MA.ZS
## 15162                                 SE.ADT.1524.IL.ZS
## 15163                              SE.ADT.1524.LT.FE.ZS
## 15164                              SE.ADT.1524.LT.FM.ZS
## 15165                              SE.ADT.1524.LT.MA.ZS
## 15166                                 SE.ADT.1524.LT.ZS
## 15167                                 SE.ADT.ILIT.FE.ZS
## 15168                                 SE.ADT.ILIT.MA.ZS
## 15169                                    SE.ADT.ILIT.ZS
## 15170                                 SE.ADT.LITR.FE.ZS
## 15171                                 SE.ADT.LITR.MA.ZS
## 15172                                    SE.ADT.LITR.ZS
## 15173                                       SE.COM.DURS
## 15174                                       SE.ENR.ORPH
## 15175                                 SE.ENR.PRIM.FM.ZS
## 15176                                    SE.ENR.PRIM.ZS
## 15177                                 SE.ENR.PRSC.FM.ZS
## 15178                                 SE.ENR.SECO.FM.ZS
## 15179                                    SE.ENR.SECO.ZS
## 15180                                 SE.ENR.TERT.FM.ZS
## 15181                                      SE.GEPD.PRIM
## 15182                                    SE.GEPD.PRIM.1
## 15183                                  SE.GEPD.PRIM.BMP
## 15184                                SE.GEPD.PRIM.BMP.1
## 15185                                  SE.JRSEC.NENR.ZS
## 15186                                   SE.LITR.15UP.ZS
## 15187                                       SE.LPV.PRIM
## 15188                                   SE.LPV.PRIM.BMP
## 15189                                SE.LPV.PRIM.BMP.FE
## 15190                                SE.LPV.PRIM.BMP.MA
## 15191                                    SE.LPV.PRIM.FE
## 15192                                    SE.LPV.PRIM.MA
## 15193                                   SE.LPV.PRIM.OOS
## 15194                                SE.LPV.PRIM.OOS.FE
## 15195                                SE.LPV.PRIM.OOS.MA
## 15196                                 SE.NEXM.SCR.JRSEC
## 15197                                   SE.NEXM.SCR.PRM
## 15198                                 SE.NEXM.SCR.SRSEC
## 15199                                       SE.PRE.DURS
## 15200                                       SE.PRE.ENRL
## 15201                                    SE.PRE.ENRL.FE
## 15202                                 SE.PRE.ENRL.TC.ZS
## 15203                                       SE.PRE.ENRR
## 15204                                    SE.PRE.ENRR.FE
## 15205                                    SE.PRE.ENRR.MA
## 15206                                    SE.PRE.PRIV.ZS
## 15207                                 SE.PRE.TCAQ.FE.ZS
## 15208                                 SE.PRE.TCAQ.MA.ZS
## 15209                                    SE.PRE.TCAQ.ZS
## 15210                                       SE.PRE.TCHR
## 15211                                    SE.PRE.TCHR.FE
## 15212                                 SE.PRE.TCHR.FE.ZS
## 15213                                    SE.PRM.AGEE.ZS
## 15214                                       SE.PRM.AGES
## 15215                                       SE.PRM.ATTD
## 15216                                     SE.PRM.ATTD.1
## 15217                                   SE.PRM.ATTD.1.F
## 15218                                   SE.PRM.ATTD.1.M
## 15219                                   SE.PRM.ATTD.1.R
## 15220                                   SE.PRM.ATTD.1.U
## 15221                                       SE.PRM.BFIN
## 15222                                     SE.PRM.BFIN.1
## 15223                                     SE.PRM.BFIN.2
## 15224                                     SE.PRM.BFIN.3
## 15225                                     SE.PRM.BFIN.4
## 15226                                     SE.PRM.BFIN.5
## 15227                                       SE.PRM.BIMP
## 15228                                     SE.PRM.BIMP.1
## 15229                                     SE.PRM.BIMP.2
## 15230                                     SE.PRM.BIMP.3
## 15231                                     SE.PRM.BIMP.4
## 15232                                     SE.PRM.BIMP.5
## 15233                                       SE.PRM.BMAC
## 15234                                     SE.PRM.BMAC.1
## 15235                                     SE.PRM.BMAC.2
## 15236                                     SE.PRM.BMAC.3
## 15237                                     SE.PRM.BMAC.4
## 15238                                       SE.PRM.BNLG
## 15239                                     SE.PRM.BNLG.1
## 15240                                     SE.PRM.BNLG.2
## 15241                                     SE.PRM.BNLG.3
## 15242                                     SE.PRM.BNLG.4
## 15243                                     SE.PRM.BNLG.5
## 15244                                       SE.PRM.BQBR
## 15245                                     SE.PRM.BQBR.1
## 15246                                     SE.PRM.BQBR.2
## 15247                                     SE.PRM.BQBR.3
## 15248                                     SE.PRM.BQBR.4
## 15249                                     SE.PRM.BQBR.5
## 15250                                 SE.PRM.CMPL.FE.ZS
## 15251                                 SE.PRM.CMPL.MA.ZS
## 15252                                    SE.PRM.CMPL.ZS
## 15253                                 SE.PRM.CMPR.FE.ZS
## 15254                                 SE.PRM.CMPR.MA.ZS
## 15255                                 SE.PRM.CMPR.Q1.ZS
## 15256                                 SE.PRM.CMPR.Q5.ZS
## 15257                                 SE.PRM.CMPR.RU.ZS
## 15258                                 SE.PRM.CMPR.UR.ZS
## 15259                                 SE.PRM.CMPT.FE.ZS
## 15260                                 SE.PRM.CMPT.MA.ZS
## 15261                                    SE.PRM.CMPT.ZS
## 15262                                       SE.PRM.CONT
## 15263                                     SE.PRM.CONT.1
## 15264                                   SE.PRM.CONT.1.F
## 15265                                   SE.PRM.CONT.1.M
## 15266                                   SE.PRM.CONT.1.R
## 15267                                   SE.PRM.CONT.1.U
## 15268                                     SE.PRM.CONT.2
## 15269                                   SE.PRM.CONT.2.F
## 15270                                   SE.PRM.CONT.2.M
## 15271                                   SE.PRM.CONT.2.R
## 15272                                   SE.PRM.CONT.2.U
## 15273                                     SE.PRM.CONT.3
## 15274                                   SE.PRM.CONT.3.F
## 15275                                   SE.PRM.CONT.3.M
## 15276                                   SE.PRM.CONT.3.R
## 15277                                   SE.PRM.CONT.3.U
## 15278                                 SE.PRM.CUAT.FE.ZS
## 15279                                 SE.PRM.CUAT.MA.ZS
## 15280                                    SE.PRM.CUAT.ZS
## 15281                                       SE.PRM.DURS
## 15282                                       SE.PRM.EFFT
## 15283                                     SE.PRM.EFFT.1
## 15284                                   SE.PRM.EFFT.1.F
## 15285                                   SE.PRM.EFFT.1.M
## 15286                                   SE.PRM.EFFT.1.R
## 15287                                   SE.PRM.EFFT.1.U
## 15288                                     SE.PRM.EFFT.2
## 15289                                   SE.PRM.EFFT.2.F
## 15290                                   SE.PRM.EFFT.2.M
## 15291                                   SE.PRM.EFFT.2.R
## 15292                                   SE.PRM.EFFT.2.U
## 15293                                    SE.PRM.ENNR.FE
## 15294                                       SE.PRM.ENRL
## 15295                                    SE.PRM.ENRL.FE
## 15296                                 SE.PRM.ENRL.FE.ZS
## 15297                                 SE.PRM.ENRL.TC.ZS
## 15298                                       SE.PRM.ENRR
## 15299                                    SE.PRM.ENRR.FE
## 15300                                    SE.PRM.ENRR.MA
## 15301                                    SE.PRM.ENRR.MF
## 15302                                 SE.PRM.GINT.FE.ZS
## 15303                                 SE.PRM.GINT.MA.ZS
## 15304                                    SE.PRM.GINT.ZS
## 15305                                       SE.PRM.ILDR
## 15306                                     SE.PRM.ILDR.1
## 15307                                   SE.PRM.ILDR.1.F
## 15308                                   SE.PRM.ILDR.1.M
## 15309                                   SE.PRM.ILDR.1.R
## 15310                                   SE.PRM.ILDR.1.U
## 15311                                     SE.PRM.ILDR.2
## 15312                                   SE.PRM.ILDR.2.F
## 15313                                   SE.PRM.ILDR.2.M
## 15314                                   SE.PRM.ILDR.2.R
## 15315                                   SE.PRM.ILDR.2.U
## 15316                                     SE.PRM.ILDR.3
## 15317                                   SE.PRM.ILDR.3.F
## 15318                                   SE.PRM.ILDR.3.M
## 15319                                   SE.PRM.ILDR.3.R
## 15320                                   SE.PRM.ILDR.3.U
## 15321                                     SE.PRM.ILDR.4
## 15322                                   SE.PRM.ILDR.4.F
## 15323                                   SE.PRM.ILDR.4.M
## 15324                                   SE.PRM.ILDR.4.R
## 15325                                   SE.PRM.ILDR.4.U
## 15326                                     SE.PRM.ILDR.5
## 15327                                   SE.PRM.ILDR.5.F
## 15328                                   SE.PRM.ILDR.5.M
## 15329                                   SE.PRM.ILDR.5.R
## 15330                                   SE.PRM.ILDR.5.U
## 15331                                     SE.PRM.ILDR.6
## 15332                                   SE.PRM.ILDR.6.F
## 15333                                   SE.PRM.ILDR.6.M
## 15334                                   SE.PRM.ILDR.6.R
## 15335                                   SE.PRM.ILDR.6.U
## 15336                                     SE.PRM.ILDR.7
## 15337                                   SE.PRM.ILDR.7.F
## 15338                                   SE.PRM.ILDR.7.M
## 15339                                   SE.PRM.ILDR.7.R
## 15340                                   SE.PRM.ILDR.7.U
## 15341                                     SE.PRM.ILDR.8
## 15342                                   SE.PRM.ILDR.8.F
## 15343                                   SE.PRM.ILDR.8.M
## 15344                                   SE.PRM.ILDR.8.R
## 15345                                   SE.PRM.ILDR.8.U
## 15346                                       SE.PRM.IMON
## 15347                                     SE.PRM.IMON.1
## 15348                                    SE.PRM.IMON.10
## 15349                                     SE.PRM.IMON.2
## 15350                                     SE.PRM.IMON.3
## 15351                                     SE.PRM.IMON.4
## 15352                                     SE.PRM.IMON.5
## 15353                                     SE.PRM.IMON.6
## 15354                                     SE.PRM.IMON.7
## 15355                                     SE.PRM.IMON.8
## 15356                                     SE.PRM.IMON.9
## 15357                                    SE.PRM.IMON.DF
## 15358                                    SE.PRM.IMON.DJ
## 15359                                       SE.PRM.INFR
## 15360                                     SE.PRM.INFR.1
## 15361                                   SE.PRM.INFR.1.R
## 15362                                   SE.PRM.INFR.1.U
## 15363                                     SE.PRM.INFR.2
## 15364                                   SE.PRM.INFR.2.R
## 15365                                   SE.PRM.INFR.2.U
## 15366                                     SE.PRM.INFR.3
## 15367                                   SE.PRM.INFR.3.R
## 15368                                   SE.PRM.INFR.3.U
## 15369                                     SE.PRM.INFR.4
## 15370                                   SE.PRM.INFR.4.R
## 15371                                   SE.PRM.INFR.4.U
## 15372                                     SE.PRM.INFR.5
## 15373                                   SE.PRM.INFR.5.R
## 15374                                   SE.PRM.INFR.5.U
## 15375                                     SE.PRM.INFR.6
## 15376                                   SE.PRM.INFR.6.R
## 15377                                   SE.PRM.INFR.6.U
## 15378                                       SE.PRM.INPT
## 15379                                     SE.PRM.INPT.1
## 15380                                   SE.PRM.INPT.1.R
## 15381                                   SE.PRM.INPT.1.U
## 15382                                     SE.PRM.INPT.2
## 15383                                   SE.PRM.INPT.2.R
## 15384                                   SE.PRM.INPT.2.U
## 15385                                     SE.PRM.INPT.3
## 15386                                   SE.PRM.INPT.3.R
## 15387                                   SE.PRM.INPT.3.U
## 15388                                     SE.PRM.INPT.4
## 15389                                   SE.PRM.INPT.4.R
## 15390                                   SE.PRM.INPT.4.U
## 15391                                     SE.PRM.INPT.5
## 15392                                   SE.PRM.INPT.5.R
## 15393                                   SE.PRM.INPT.5.U
## 15394                                       SE.PRM.ISTD
## 15395                                     SE.PRM.ISTD.1
## 15396                                    SE.PRM.ISTD.10
## 15397                                    SE.PRM.ISTD.11
## 15398                                    SE.PRM.ISTD.12
## 15399                                    SE.PRM.ISTD.13
## 15400                                    SE.PRM.ISTD.14
## 15401                                     SE.PRM.ISTD.2
## 15402                                     SE.PRM.ISTD.3
## 15403                                     SE.PRM.ISTD.4
## 15404                                     SE.PRM.ISTD.5
## 15405                                     SE.PRM.ISTD.6
## 15406                                     SE.PRM.ISTD.7
## 15407                                     SE.PRM.ISTD.8
## 15408                                     SE.PRM.ISTD.9
## 15409                                    SE.PRM.ISTD.DF
## 15410                                    SE.PRM.ISTD.DJ
## 15411                                       SE.PRM.LCAP
## 15412                                     SE.PRM.LCAP.1
## 15413                                   SE.PRM.LCAP.1.F
## 15414                                   SE.PRM.LCAP.1.M
## 15415                                   SE.PRM.LCAP.1.R
## 15416                                   SE.PRM.LCAP.1.U
## 15417                                     SE.PRM.LCAP.2
## 15418                                   SE.PRM.LCAP.2.F
## 15419                                   SE.PRM.LCAP.2.M
## 15420                                   SE.PRM.LCAP.2.R
## 15421                                   SE.PRM.LCAP.2.U
## 15422                                     SE.PRM.LCAP.3
## 15423                                   SE.PRM.LCAP.3.F
## 15424                                   SE.PRM.LCAP.3.M
## 15425                                   SE.PRM.LCAP.3.R
## 15426                                   SE.PRM.LCAP.3.U
## 15427                                     SE.PRM.LCAP.4
## 15428                                   SE.PRM.LCAP.4.F
## 15429                                   SE.PRM.LCAP.4.M
## 15430                                   SE.PRM.LCAP.4.R
## 15431                                   SE.PRM.LCAP.4.U
## 15432                                     SE.PRM.LCAP.5
## 15433                                   SE.PRM.LCAP.5.F
## 15434                                   SE.PRM.LCAP.5.M
## 15435                                   SE.PRM.LCAP.5.R
## 15436                                   SE.PRM.LCAP.5.U
## 15437                                       SE.PRM.LCBC
## 15438                                     SE.PRM.LCBC.1
## 15439                                     SE.PRM.LCBC.2
## 15440                                     SE.PRM.LCBC.3
## 15441                                     SE.PRM.LCBC.4
## 15442                                     SE.PRM.LCBC.5
## 15443                                    SE.PRM.LCBC.DF
## 15444                                    SE.PRM.LCBC.DJ
## 15445                                       SE.PRM.LERN
## 15446                                     SE.PRM.LERN.1
## 15447                                   SE.PRM.LERN.1.F
## 15448                                   SE.PRM.LERN.1.M
## 15449                                   SE.PRM.LERN.1.R
## 15450                                   SE.PRM.LERN.1.U
## 15451                                     SE.PRM.LERN.2
## 15452                                   SE.PRM.LERN.2.F
## 15453                                   SE.PRM.LERN.2.M
## 15454                                   SE.PRM.LERN.2.R
## 15455                                   SE.PRM.LERN.2.U
## 15456                                     SE.PRM.LERN.3
## 15457                                   SE.PRM.LERN.3.F
## 15458                                   SE.PRM.LERN.3.M
## 15459                                   SE.PRM.LERN.3.R
## 15460                                   SE.PRM.LERN.3.U
## 15461                                       SE.PRM.LFCP
## 15462                                     SE.PRM.LFCP.1
## 15463                                     SE.PRM.LFCP.2
## 15464                                     SE.PRM.LFCP.3
## 15465                                     SE.PRM.LFCP.4
## 15466                                    SE.PRM.LFCP.DF
## 15467                                    SE.PRM.LFCP.DJ
## 15468                                       SE.PRM.LHTH
## 15469                                     SE.PRM.LHTH.1
## 15470                                     SE.PRM.LHTH.2
## 15471                                     SE.PRM.LHTH.3
## 15472                                     SE.PRM.LHTH.4
## 15473                                     SE.PRM.LHTH.5
## 15474                                     SE.PRM.LHTH.6
## 15475                                     SE.PRM.LHTH.7
## 15476                                     SE.PRM.LHTH.8
## 15477                                    SE.PRM.LHTH.DF
## 15478                                    SE.PRM.LHTH.DJ
## 15479                                       SE.PRM.LNTN
## 15480                                     SE.PRM.LNTN.1
## 15481                                     SE.PRM.LNTN.2
## 15482                                     SE.PRM.LNTN.3
## 15483                                     SE.PRM.LNTN.4
## 15484                                     SE.PRM.LNTN.5
## 15485                                     SE.PRM.LNTN.6
## 15486                                     SE.PRM.LNTN.7
## 15487                                     SE.PRM.LNTN.8
## 15488                                    SE.PRM.LNTN.DF
## 15489                                    SE.PRM.LNTN.DJ
## 15490                                       SE.PRM.LSKC
## 15491                                     SE.PRM.LSKC.1
## 15492                                     SE.PRM.LSKC.2
## 15493                                     SE.PRM.LSKC.3
## 15494                                     SE.PRM.LSKC.4
## 15495                                    SE.PRM.LSKC.DF
## 15496                                    SE.PRM.LSKC.DJ
## 15497                                       SE.PRM.NENR
## 15498                                    SE.PRM.NENR.FE
## 15499                                    SE.PRM.NENR.MA
## 15500                                    SE.PRM.NENR.ZS
## 15501                                 SE.PRM.NINT.FE.ZS
## 15502                                 SE.PRM.NINT.MA.ZS
## 15503                                    SE.PRM.NINT.ZS
## 15504                                 SE.PRM.OENR.FE.ZS
## 15505                                 SE.PRM.OENR.MA.ZS
## 15506                                    SE.PRM.OENR.ZS
## 15507                                       SE.PRM.OPMN
## 15508                                     SE.PRM.OPMN.1
## 15509                                   SE.PRM.OPMN.1.F
## 15510                                   SE.PRM.OPMN.1.M
## 15511                                   SE.PRM.OPMN.1.R
## 15512                                   SE.PRM.OPMN.1.U
## 15513                                     SE.PRM.OPMN.2
## 15514                                   SE.PRM.OPMN.2.F
## 15515                                   SE.PRM.OPMN.2.M
## 15516                                   SE.PRM.OPMN.2.R
## 15517                                   SE.PRM.OPMN.2.U
## 15518                                     SE.PRM.OPMN.3
## 15519                                   SE.PRM.OPMN.3.F
## 15520                                   SE.PRM.OPMN.3.M
## 15521                                   SE.PRM.OPMN.3.R
## 15522                                   SE.PRM.OPMN.3.U
## 15523                                       SE.PRM.PEDG
## 15524                                     SE.PRM.PEDG.1
## 15525                                   SE.PRM.PEDG.1.F
## 15526                                   SE.PRM.PEDG.1.M
## 15527                                   SE.PRM.PEDG.1.R
## 15528                                   SE.PRM.PEDG.1.U
## 15529                                     SE.PRM.PEDG.2
## 15530                                   SE.PRM.PEDG.2.F
## 15531                                   SE.PRM.PEDG.2.M
## 15532                                   SE.PRM.PEDG.2.R
## 15533                                   SE.PRM.PEDG.2.U
## 15534                                     SE.PRM.PEDG.3
## 15535                                   SE.PRM.PEDG.3.F
## 15536                                   SE.PRM.PEDG.3.M
## 15537                                   SE.PRM.PEDG.3.R
## 15538                                   SE.PRM.PEDG.3.U
## 15539                                     SE.PRM.PEDG.4
## 15540                                   SE.PRM.PEDG.4.F
## 15541                                   SE.PRM.PEDG.4.M
## 15542                                   SE.PRM.PEDG.4.R
## 15543                                   SE.PRM.PEDG.4.U
## 15544                                       SE.PRM.PKNW
## 15545                                     SE.PRM.PKNW.1
## 15546                                   SE.PRM.PKNW.1.F
## 15547                                   SE.PRM.PKNW.1.M
## 15548                                   SE.PRM.PKNW.1.R
## 15549                                   SE.PRM.PKNW.1.U
## 15550                                     SE.PRM.PKNW.2
## 15551                                   SE.PRM.PKNW.2.F
## 15552                                   SE.PRM.PKNW.2.M
## 15553                                   SE.PRM.PKNW.2.R
## 15554                                   SE.PRM.PKNW.2.U
## 15555                                     SE.PRM.PKNW.3
## 15556                                   SE.PRM.PKNW.3.F
## 15557                                   SE.PRM.PKNW.3.M
## 15558                                   SE.PRM.PKNW.3.R
## 15559                                   SE.PRM.PKNW.3.U
## 15560                                     SE.PRM.PKNW.4
## 15561                                   SE.PRM.PKNW.4.F
## 15562                                   SE.PRM.PKNW.4.M
## 15563                                   SE.PRM.PKNW.4.R
## 15564                                   SE.PRM.PKNW.4.U
## 15565                                       SE.PRM.PMAN
## 15566                                     SE.PRM.PMAN.1
## 15567                                   SE.PRM.PMAN.1.F
## 15568                                   SE.PRM.PMAN.1.M
## 15569                                   SE.PRM.PMAN.1.R
## 15570                                   SE.PRM.PMAN.1.U
## 15571                                     SE.PRM.PMAN.2
## 15572                                   SE.PRM.PMAN.2.F
## 15573                                   SE.PRM.PMAN.2.M
## 15574                                   SE.PRM.PMAN.2.R
## 15575                                   SE.PRM.PMAN.2.U
## 15576                                     SE.PRM.PMAN.3
## 15577                                   SE.PRM.PMAN.3.F
## 15578                                   SE.PRM.PMAN.3.M
## 15579                                   SE.PRM.PMAN.3.R
## 15580                                   SE.PRM.PMAN.3.U
## 15581                                    SE.PRM.PRIV.ZS
## 15582                                       SE.PRM.PROE
## 15583                                     SE.PRM.PROE.1
## 15584                                 SE.PRM.PRS4.FE.ZS
## 15585                                 SE.PRM.PRS4.MA.ZS
## 15586                                    SE.PRM.PRS4.ZS
## 15587                                 SE.PRM.PRS5.FE.ZS
## 15588                                 SE.PRM.PRS5.MA.ZS
## 15589                                    SE.PRM.PRS5.ZS
## 15590                                 SE.PRM.PRSL.FE.ZS
## 15591                                 SE.PRM.PRSL.MA.ZS
## 15592                                    SE.PRM.PRSL.ZS
## 15593                                       SE.PRM.PTRA
## 15594                                 SE.PRM.REPT.FE.ZS
## 15595                                 SE.PRM.REPT.MA.ZS
## 15596                                    SE.PRM.REPT.ZS
## 15597                                       SE.PRM.SATT
## 15598                                     SE.PRM.SATT.1
## 15599                                     SE.PRM.SATT.2
## 15600                                     SE.PRM.SATT.3
## 15601                                    SE.PRM.SATT.DF
## 15602                                    SE.PRM.SATT.DJ
## 15603                                       SE.PRM.SCFN
## 15604                                     SE.PRM.SCFN.1
## 15605                                    SE.PRM.SCFN.10
## 15606                                    SE.PRM.SCFN.11
## 15607                                    SE.PRM.SCFN.12
## 15608                                    SE.PRM.SCFN.13
## 15609                                    SE.PRM.SCFN.14
## 15610                                     SE.PRM.SCFN.2
## 15611                                     SE.PRM.SCFN.3
## 15612                                     SE.PRM.SCFN.4
## 15613                                     SE.PRM.SCFN.5
## 15614                                     SE.PRM.SCFN.6
## 15615                                     SE.PRM.SCFN.7
## 15616                                     SE.PRM.SCFN.8
## 15617                                     SE.PRM.SCFN.9
## 15618                                    SE.PRM.SCFN.DF
## 15619                                    SE.PRM.SCFN.DJ
## 15620                                       SE.PRM.SEVL
## 15621                                     SE.PRM.SEVL.1
## 15622                                     SE.PRM.SEVL.2
## 15623                                     SE.PRM.SEVL.3
## 15624                                     SE.PRM.SEVL.4
## 15625                                     SE.PRM.SEVL.5
## 15626                                     SE.PRM.SEVL.6
## 15627                                    SE.PRM.SEVL.DF
## 15628                                    SE.PRM.SEVL.DJ
## 15629                                       SE.PRM.SSLD
## 15630                                     SE.PRM.SSLD.1
## 15631                                    SE.PRM.SSLD.10
## 15632                                    SE.PRM.SSLD.11
## 15633                                    SE.PRM.SSLD.12
## 15634                                    SE.PRM.SSLD.13
## 15635                                    SE.PRM.SSLD.14
## 15636                                    SE.PRM.SSLD.15
## 15637                                    SE.PRM.SSLD.16
## 15638                                     SE.PRM.SSLD.2
## 15639                                     SE.PRM.SSLD.3
## 15640                                     SE.PRM.SSLD.4
## 15641                                     SE.PRM.SSLD.5
## 15642                                     SE.PRM.SSLD.6
## 15643                                     SE.PRM.SSLD.7
## 15644                                     SE.PRM.SSLD.8
## 15645                                     SE.PRM.SSLD.9
## 15646                                    SE.PRM.SSLD.DF
## 15647                                    SE.PRM.SSLD.DJ
## 15648                                       SE.PRM.SSUP
## 15649                                     SE.PRM.SSUP.1
## 15650                                    SE.PRM.SSUP.10
## 15651                                    SE.PRM.SSUP.11
## 15652                                     SE.PRM.SSUP.2
## 15653                                     SE.PRM.SSUP.3
## 15654                                     SE.PRM.SSUP.4
## 15655                                     SE.PRM.SSUP.5
## 15656                                     SE.PRM.SSUP.6
## 15657                                     SE.PRM.SSUP.7
## 15658                                     SE.PRM.SSUP.8
## 15659                                     SE.PRM.SSUP.9
## 15660                                    SE.PRM.SSUP.DF
## 15661                                    SE.PRM.SSUP.DJ
## 15662                                       SE.PRM.TATT
## 15663                                     SE.PRM.TATT.1
## 15664                                     SE.PRM.TATT.2
## 15665                                     SE.PRM.TATT.3
## 15666                                     SE.PRM.TATT.4
## 15667                                     SE.PRM.TATT.5
## 15668                                     SE.PRM.TATT.6
## 15669                                     SE.PRM.TATT.7
## 15670                                     SE.PRM.TATT.8
## 15671                                    SE.PRM.TATT.DF
## 15672                                    SE.PRM.TATT.DJ
## 15673                                 SE.PRM.TCAQ.FE.ZS
## 15674                                 SE.PRM.TCAQ.MA.ZS
## 15675                                    SE.PRM.TCAQ.ZS
## 15676                                       SE.PRM.TCHR
## 15677                                    SE.PRM.TCHR.FE
## 15678                                 SE.PRM.TCHR.FE.ZS
## 15679                                       SE.PRM.TENR
## 15680                                     SE.PRM.TENR.1
## 15681                                    SE.PRM.TENR.FE
## 15682                                    SE.PRM.TENR.MA
## 15683                                       SE.PRM.TEVL
## 15684                                     SE.PRM.TEVL.1
## 15685                                     SE.PRM.TEVL.2
## 15686                                     SE.PRM.TEVL.3
## 15687                                     SE.PRM.TEVL.4
## 15688                                     SE.PRM.TEVL.5
## 15689                                     SE.PRM.TEVL.6
## 15690                                     SE.PRM.TEVL.7
## 15691                                     SE.PRM.TEVL.8
## 15692                                     SE.PRM.TEVL.9
## 15693                                    SE.PRM.TEVL.DF
## 15694                                    SE.PRM.TEVL.DJ
## 15695                                       SE.PRM.TINM
## 15696                                     SE.PRM.TINM.1
## 15697                                    SE.PRM.TINM.10
## 15698                                    SE.PRM.TINM.11
## 15699                                    SE.PRM.TINM.12
## 15700                                    SE.PRM.TINM.13
## 15701                                     SE.PRM.TINM.2
## 15702                                     SE.PRM.TINM.3
## 15703                                     SE.PRM.TINM.4
## 15704                                     SE.PRM.TINM.5
## 15705                                     SE.PRM.TINM.6
## 15706                                     SE.PRM.TINM.7
## 15707                                     SE.PRM.TINM.8
## 15708                                     SE.PRM.TINM.9
## 15709                                    SE.PRM.TINM.DF
## 15710                                    SE.PRM.TINM.DJ
## 15711                                       SE.PRM.TMNA
## 15712                                     SE.PRM.TMNA.1
## 15713                                     SE.PRM.TMNA.2
## 15714                                     SE.PRM.TMNA.3
## 15715                                     SE.PRM.TMNA.4
## 15716                                     SE.PRM.TMNA.5
## 15717                                    SE.PRM.TMNA.DF
## 15718                                    SE.PRM.TMNA.DJ
## 15719                                       SE.PRM.TSDP
## 15720                                     SE.PRM.TSDP.1
## 15721                                     SE.PRM.TSDP.2
## 15722                                     SE.PRM.TSDP.3
## 15723                                     SE.PRM.TSDP.4
## 15724                                     SE.PRM.TSDP.5
## 15725                                     SE.PRM.TSDP.6
## 15726                                     SE.PRM.TSDP.7
## 15727                                    SE.PRM.TSDP.DF
## 15728                                    SE.PRM.TSDP.DJ
## 15729                                       SE.PRM.TSUP
## 15730                                     SE.PRM.TSUP.1
## 15731                                     SE.PRM.TSUP.2
## 15732                                     SE.PRM.TSUP.3
## 15733                                     SE.PRM.TSUP.4
## 15734                                     SE.PRM.TSUP.5
## 15735                                     SE.PRM.TSUP.6
## 15736                                     SE.PRM.TSUP.7
## 15737                                     SE.PRM.TSUP.8
## 15738                                     SE.PRM.TSUP.9
## 15739                                    SE.PRM.TSUP.DF
## 15740                                    SE.PRM.TSUP.DJ
## 15741                                       SE.PRM.UNER
## 15742                                    SE.PRM.UNER.FE
## 15743                                 SE.PRM.UNER.FE.ZS
## 15744                                    SE.PRM.UNER.MA
## 15745                                 SE.PRM.UNER.MA.ZS
## 15746                                 SE.PRM.UNER.Q1.ZS
## 15747                                 SE.PRM.UNER.Q5.ZS
## 15748                                    SE.PRM.UNER.ZS
## 15749                                    SE.SCH.EFIC.ZS
## 15750                                       SE.SCH.LIFE
## 15751                                    SE.SCH.LIFE.FE
## 15752                                    SE.SCH.LIFE.MA
## 15753                                     SE.SCHL.JRSEC
## 15754                                       SE.SCHL.PRM
## 15755                                     SE.SCHL.SRSEC
## 15756                                    SE.SEC.AGEE.ZS
## 15757                                       SE.SEC.AGES
## 15758                              SE.SEC.CMPT.LO.FE.ZS
## 15759                              SE.SEC.CMPT.LO.MA.ZS
## 15760                                 SE.SEC.CMPT.LO.ZS
## 15761                              SE.SEC.CUAT.LO.FE.ZS
## 15762                              SE.SEC.CUAT.LO.MA.ZS
## 15763                                 SE.SEC.CUAT.LO.ZS
## 15764                              SE.SEC.CUAT.PO.FE.ZS
## 15765                              SE.SEC.CUAT.PO.MA.ZS
## 15766                                 SE.SEC.CUAT.PO.ZS
## 15767                              SE.SEC.CUAT.UP.FE.ZS
## 15768                              SE.SEC.CUAT.UP.MA.ZS
## 15769                                 SE.SEC.CUAT.UP.ZS
## 15770                                       SE.SEC.DURS
## 15771                                    SE.SEC.DURS.LO
## 15772                                    SE.SEC.DURS.UP
## 15773                                       SE.SEC.ENRL
## 15774                                    SE.SEC.ENRL.FE
## 15775                              SE.SEC.ENRL.FE.VO.ZS
## 15776                                 SE.SEC.ENRL.FE.ZS
## 15777                                    SE.SEC.ENRL.GC
## 15778                              SE.SEC.ENRL.GC.FE.ZS
## 15779                              SE.SEC.ENRL.LO.TC.ZS
## 15780                              SE.SEC.ENRL.MA.VO.ZS
## 15781                                 SE.SEC.ENRL.TC.ZS
## 15782                              SE.SEC.ENRL.UP.TC.ZS
## 15783                                    SE.SEC.ENRL.VO
## 15784                              SE.SEC.ENRL.VO.FE.ZS
## 15785                                 SE.SEC.ENRL.VO.ZS
## 15786                                       SE.SEC.ENRR
## 15787                                    SE.SEC.ENRR.FE
## 15788                                    SE.SEC.ENRR.LO
## 15789                                 SE.SEC.ENRR.LO.FE
## 15790                                 SE.SEC.ENRR.LO.MA
## 15791                                    SE.SEC.ENRR.MA
## 15792                                    SE.SEC.ENRR.MF
## 15793                                    SE.SEC.ENRR.UP
## 15794                                 SE.SEC.ENRR.UP.FE
## 15795                                 SE.SEC.ENRR.UP.MA
## 15796                                       SE.SEC.NENR
## 15797                                    SE.SEC.NENR.FE
## 15798                                    SE.SEC.NENR.MA
## 15799                                    SE.SEC.PRIV.ZS
## 15800                                 SE.SEC.PROG.FE.ZS
## 15801                                 SE.SEC.PROG.MA.ZS
## 15802                                    SE.SEC.PROG.ZS
## 15803                                 SE.SEC.REPT.FE.ZS
## 15804                                 SE.SEC.REPT.MA.ZS
## 15805                                    SE.SEC.REPT.ZS
## 15806                                 SE.SEC.TCAQ.FE.ZS
## 15807                              SE.SEC.TCAQ.LO.FE.ZS
## 15808                              SE.SEC.TCAQ.LO.MA.ZS
## 15809                                 SE.SEC.TCAQ.LO.ZS
## 15810                                 SE.SEC.TCAQ.MA.ZS
## 15811                              SE.SEC.TCAQ.UP.FE.ZS
## 15812                              SE.SEC.TCAQ.UP.MA.ZS
## 15813                                 SE.SEC.TCAQ.UP.ZS
## 15814                                    SE.SEC.TCAQ.ZS
## 15815                                       SE.SEC.TCHR
## 15816                                    SE.SEC.TCHR.FE
## 15817                                 SE.SEC.TCHR.FE.ZS
## 15818                                    SE.SEC.TCHR.GC
## 15819                              SE.SEC.TCHR.GC.FE.ZS
## 15820                                    SE.SEC.TCHR.VO
## 15821                              SE.SEC.TCHR.VO.FE.ZS
## 15822                                       SE.SEC.UNER
## 15823                                    SE.SEC.UNER.FE
## 15824                                 SE.SEC.UNER.FE.ZS
## 15825                              SE.SEC.UNER.LO.FE.ZS
## 15826                              SE.SEC.UNER.LO.MA.ZS
## 15827                                 SE.SEC.UNER.LO.ZS
## 15828                                    SE.SEC.UNER.MA
## 15829                                 SE.SEC.UNER.MA.ZS
## 15830                                    SE.SEC.UNER.ZS
## 15831                                  SE.SRSEC.NENR.ZS
## 15832                                     SE.STUD.JRSEC
## 15833                                       SE.STUD.PRM
## 15834                                     SE.STUD.SRSEC
## 15835                                     SE.TCHR.JRSEC
## 15836                                       SE.TCHR.PRM
## 15837                                     SE.TCHR.SRSEC
## 15838                                 SE.TER.CMPL.FE.ZS
## 15839                                 SE.TER.CMPL.MA.ZS
## 15840                                    SE.TER.CMPL.ZS
## 15841                              SE.TER.CUAT.BA.FE.ZS
## 15842                              SE.TER.CUAT.BA.MA.ZS
## 15843                                 SE.TER.CUAT.BA.ZS
## 15844                              SE.TER.CUAT.DO.FE.ZS
## 15845                              SE.TER.CUAT.DO.MA.ZS
## 15846                                 SE.TER.CUAT.DO.ZS
## 15847                              SE.TER.CUAT.MS.FE.ZS
## 15848                              SE.TER.CUAT.MS.MA.ZS
## 15849                                 SE.TER.CUAT.MS.ZS
## 15850                              SE.TER.CUAT.ST.FE.ZS
## 15851                              SE.TER.CUAT.ST.MA.ZS
## 15852                                 SE.TER.CUAT.ST.ZS
## 15853                                       SE.TER.ENRL
## 15854                                    SE.TER.ENRL.FE
## 15855                                 SE.TER.ENRL.FE.ZS
## 15856                                 SE.TER.ENRL.TC.ZS
## 15857                                       SE.TER.ENRR
## 15858                                    SE.TER.ENRR.FE
## 15859                                    SE.TER.ENRR.MA
## 15860                                 SE.TER.GRAD.AG.ZS
## 15861                                 SE.TER.GRAD.ED.ZS
## 15862                                 SE.TER.GRAD.EN.ZS
## 15863                              SE.TER.GRAD.FE.AG.ZS
## 15864                              SE.TER.GRAD.FE.ED.ZS
## 15865                              SE.TER.GRAD.FE.EN.ZS
## 15866                              SE.TER.GRAD.FE.HL.ZS
## 15867                              SE.TER.GRAD.FE.HU.ZS
## 15868                              SE.TER.GRAD.FE.OT.ZS
## 15869                              SE.TER.GRAD.FE.SC.ZS
## 15870                              SE.TER.GRAD.FE.SI.ZS
## 15871                              SE.TER.GRAD.FE.SS.ZS
## 15872                              SE.TER.GRAD.FE.SV.ZS
## 15873                                 SE.TER.GRAD.HL.ZS
## 15874                                 SE.TER.GRAD.HU.ZS
## 15875                                 SE.TER.GRAD.OT.ZS
## 15876                                 SE.TER.GRAD.SC.ZS
## 15877                                 SE.TER.GRAD.SS.ZS
## 15878                                 SE.TER.GRAD.SV.ZS
## 15879                                    SE.TER.PRIV.ZS
## 15880                                    SE.TER.SCIE.ZS
## 15881                                       SE.TER.TCHR
## 15882                                    SE.TER.TCHR.FE
## 15883                                 SE.TER.TCHR.FE.ZS
## 15884                                       SE.TOT.ENRR
## 15885                                    SE.XPD.CPRM.ZS
## 15886                                    SE.XPD.CSEC.ZS
## 15887                                    SE.XPD.CTER.ZS
## 15888                                    SE.XPD.CTOT.ZS
## 15889                                SE.XPD.CUR.TOTL.ZS
## 15890                                    SE.XPD.EDUC.ZS
## 15891                                    SE.XPD.MPRM.ZS
## 15892                                    SE.XPD.MSEC.ZS
## 15893                                    SE.XPD.MTER.ZS
## 15894                                    SE.XPD.MTOT.ZS
## 15895                                SE.XPD.PRIM.GDP.ZS
## 15896                                 SE.XPD.PRIM.PC.ZS
## 15897                                    SE.XPD.PRIM.ZS
## 15898                                    SE.XPD.PTCH.ZS
## 15899                                SE.XPD.SECO.GDP.ZS
## 15900                                 SE.XPD.SECO.PC.ZS
## 15901                                    SE.XPD.SECO.ZS
## 15902                                    SE.XPD.STCH.ZS
## 15903                                 SE.XPD.TCHR.XC.ZS
## 15904                                SE.XPD.TERT.GDP.ZS
## 15905                                 SE.XPD.TERT.PC.ZS
## 15906                                    SE.XPD.TERT.ZS
## 15907                                 SE.XPD.TOTL.GB.ZS
## 15908                                 SE.XPD.TOTL.GD.ZS
## 15909                                 SE.XPD.TOTL.GN.ZS
## 15910                               SE.YRS.SCHL.1519.Q1
## 15911                               SE.YRS.SCHL.1519.Q5
## 15912                                     SF.CMN.FAX.TH
## 15913                               SF.CMN.ICALL.3MN.CD
## 15914                                SF.CMN.ICALL.MN.SU
## 15915                              SF.CMN.INET.USER.10K
## 15916                                    SF.CMN.MNLN.TH
## 15917                                    SF.CMN.NEWS.TH
## 15918                                      SF.CMN.PC.TH
## 15919                               SF.CMN.PHON.CELL.TH
## 15920                               SF.CMN.PHON.LCTY.ZS
## 15921                               SF.CMN.PHON.LN.WAIT
## 15922                                    SF.CMN.RDIO.TH
## 15923                                    SF.CMN.TELE.TH
## 15924                                   SF.TRN.AIR.DPRT
## 15925                                    SF.TRN.AIR.GDS
## 15926                                   SF.TRN.AIR.PSGR
## 15927                                   SF.TRN.RAIL.GDS
## 15928                                 SF.TRN.RAIL.KM.ZS
## 15929                                   SF.TRN.ROAD.GDS
## 15930                                  SF.TRN.ROAD.NORM
## 15931                                 SF.TRN.ROAD.PV.ZS
## 15932                                       SG.ABS.PENB
## 15933                                    SG.AGE.FUPN.EQ
## 15934                                    SG.AGE.MRET.EQ
## 15935                                    SG.AGE.PAPN.EQ
## 15936                                    SG.AGE.RTRE.FE
## 15937                                 SG.AGE.RTRE.FL.FE
## 15938                                 SG.AGE.RTRE.FL.MA
## 15939                                    SG.AGE.RTRE.MA
## 15940                                 SG.AGE.RTRE.PL.FE
## 15941                                 SG.AGE.RTRE.PL.MA
## 15942                                    SG.APL.PSPT.EQ
## 15943                                    SG.BUS.REGT.EQ
## 15944                                    SG.CNT.SIGN.EQ
## 15945                                    SG.COK.CHCO.ZS
## 15946                                    SG.COK.CROP.ZS
## 15947                                    SG.COK.DUNG.ZS
## 15948                                    SG.COK.ELEC.ZS
## 15949                                    SG.COK.HOUS.ZS
## 15950                                    SG.COK.LPGN.ZS
## 15951                                    SG.COK.OTHR.ZS
## 15952                                    SG.COK.OUTD.ZS
## 15953                                    SG.COK.SBLD.ZS
## 15954                                    SG.COK.STRW.ZS
## 15955                                    SG.COK.WOOD.ZS
## 15956                                    SG.CTR.TRVL.EQ
## 15957                                 SG.DMK.ALLD.FN.ZS
## 15958                                 SG.DMK.DPCH.FN.ZS
## 15959                                 SG.DMK.FOOD.FN.ZS
## 15960                                 SG.DMK.HLTH.FN.ZS
## 15961                                 SG.DMK.HLTH.HB.ZS
## 15962                                 SG.DMK.HLTH.OT.ZS
## 15963                                 SG.DMK.HLTH.SE.ZS
## 15964                                 SG.DMK.HLTH.WF.ZS
## 15965                                 SG.DMK.HLTH.WH.ZS
## 15966                                 SG.DMK.NONE.FN.ZS
## 15967                                 SG.DMK.PRCH.FN.ZS
## 15968                                 SG.DMK.PRCH.HB.ZS
## 15969                                 SG.DMK.PRCH.OT.ZS
## 15970                                 SG.DMK.PRCH.SE.ZS
## 15971                                 SG.DMK.PRCH.WF.ZS
## 15972                                 SG.DMK.PRCH.WH.ZS
## 15973                                 SG.DMK.SRCR.FN.ZS
## 15974                                 SG.DMK.VISI.FN.ZS
## 15975                                 SG.DMK.VISI.HB.ZS
## 15976                                 SG.DMK.VISI.OT.ZS
## 15977                                 SG.DMK.VISI.SE.ZS
## 15978                                 SG.DMK.VISI.WF.ZS
## 15979                                 SG.DMK.VISI.WH.ZS
## 15980                                       SG.DML.PRGW
## 15981                                 SG.DNG.WORK.DN.EQ
## 15982                                    SG.GEN.LSOM.ZS
## 15983                                    SG.GEN.MNST.ZS
## 15984                                    SG.GEN.PARL.ZS
## 15985                                    SG.GEN.TECH.ZS
## 15986                                    SG.GET.JOBS.EQ
## 15987                                 SG.H2O.PRMS.HH.ZS
## 15988                                 SG.H2O.TL30.HH.ZS
## 15989                                 SG.H2O.TM30.HH.ZS
## 15990                                    SG.HLD.HEAD.EQ
## 15991                                    SG.HME.TRVL.EQ
## 15992                                    SG.IHT.ASST.EQ
## 15993                                 SG.IHT.ASST.PT.EQ
## 15994                                    SG.IND.WORK.EQ
## 15995                                    SG.JOB.NOPN.EQ
## 15996                                    SG.LAW.ASST.AR
## 15997                                       SG.LAW.CHMR
## 15998                                    SG.LAW.CRDD.GR
## 15999                                    SG.LAW.EQRM.WK
## 16000                                       SG.LAW.INDX
## 16001                                    SG.LAW.INDX.AS
## 16002                                    SG.LAW.INDX.EN
## 16003                                    SG.LAW.INDX.MO
## 16004                                    SG.LAW.INDX.MR
## 16005                                    SG.LAW.INDX.PE
## 16006                                    SG.LAW.INDX.PR
## 16007                                    SG.LAW.INDX.PY
## 16008                                    SG.LAW.INDX.WP
## 16009                                    SG.LAW.LEVE.PU
## 16010                                       SG.LAW.NMCN
## 16011                                    SG.LAW.NODC.HR
## 16012                                 SG.LAW.OBHB.MR.NO
## 16013                                       SG.LEG.DVAW
## 16014                                    SG.LEG.SXHR.EM
## 16015                                    SG.LOC.LIVE.EQ
## 16016                                 SG.MHG.PADP.RU.ZS
## 16017                                 SG.MHG.PADP.UR.ZS
## 16018                                    SG.MHG.PADP.ZS
## 16019                                 SG.MHG.PPDP.RU.ZS
## 16020                                 SG.MHG.PPDP.UR.ZS
## 16021                                    SG.MHG.PPDP.ZS
## 16022                                 SG.MHG.UMDP.RU.ZS
## 16023                                 SG.MHG.UMDP.UR.ZS
## 16024                                    SG.MHG.UMDP.ZS
## 16025                                    SG.MMR.LEVE.EP
## 16026                                    SG.NGT.WORK.EQ
## 16027                                       SG.NOD.CONS
## 16028                                    SG.OBT.DVRC.EQ
## 16029                                    SG.OPN.BANK.EQ
## 16030                              SG.OWN.HSAJ.FE.Q1.ZS
## 16031                              SG.OWN.HSAJ.FE.Q2.ZS
## 16032                              SG.OWN.HSAJ.FE.Q3.ZS
## 16033                              SG.OWN.HSAJ.FE.Q4.ZS
## 16034                              SG.OWN.HSAJ.FE.Q5.ZS
## 16035                                 SG.OWN.HSAJ.FE.ZS
## 16036                              SG.OWN.HSAJ.MA.Q1.ZS
## 16037                              SG.OWN.HSAJ.MA.Q2.ZS
## 16038                              SG.OWN.HSAJ.MA.Q3.ZS
## 16039                              SG.OWN.HSAJ.MA.Q4.ZS
## 16040                              SG.OWN.HSAJ.MA.Q5.ZS
## 16041                                 SG.OWN.HSAJ.MA.ZS
## 16042                              SG.OWN.HSAL.FE.Q1.ZS
## 16043                              SG.OWN.HSAL.FE.Q2.ZS
## 16044                              SG.OWN.HSAL.FE.Q3.ZS
## 16045                              SG.OWN.HSAL.FE.Q4.ZS
## 16046                              SG.OWN.HSAL.FE.Q5.ZS
## 16047                                 SG.OWN.HSAL.FE.ZS
## 16048                              SG.OWN.HSAL.MA.Q1.ZS
## 16049                              SG.OWN.HSAL.MA.Q2.ZS
## 16050                              SG.OWN.HSAL.MA.Q3.ZS
## 16051                              SG.OWN.HSAL.MA.Q4.ZS
## 16052                              SG.OWN.HSAL.MA.Q5.ZS
## 16053                                 SG.OWN.HSAL.MA.ZS
## 16054                              SG.OWN.HSJT.FE.Q1.ZS
## 16055                              SG.OWN.HSJT.FE.Q2.ZS
## 16056                              SG.OWN.HSJT.FE.Q3.ZS
## 16057                              SG.OWN.HSJT.FE.Q4.ZS
## 16058                              SG.OWN.HSJT.FE.Q5.ZS
## 16059                                 SG.OWN.HSJT.FE.ZS
## 16060                              SG.OWN.HSJT.MA.Q1.ZS
## 16061                              SG.OWN.HSJT.MA.Q2.ZS
## 16062                              SG.OWN.HSJT.MA.Q3.ZS
## 16063                              SG.OWN.HSJT.MA.Q4.ZS
## 16064                              SG.OWN.HSJT.MA.Q5.ZS
## 16065                                 SG.OWN.HSJT.MA.ZS
## 16066                              SG.OWN.HSNO.FE.Q1.ZS
## 16067                              SG.OWN.HSNO.FE.Q2.ZS
## 16068                              SG.OWN.HSNO.FE.Q3.ZS
## 16069                              SG.OWN.HSNO.FE.Q4.ZS
## 16070                              SG.OWN.HSNO.FE.Q5.ZS
## 16071                                 SG.OWN.HSNO.FE.ZS
## 16072                              SG.OWN.HSNO.MA.Q1.ZS
## 16073                              SG.OWN.HSNO.MA.Q2.ZS
## 16074                              SG.OWN.HSNO.MA.Q3.ZS
## 16075                              SG.OWN.HSNO.MA.Q4.ZS
## 16076                              SG.OWN.HSNO.MA.Q5.ZS
## 16077                                 SG.OWN.HSNO.MA.ZS
## 16078                              SG.OWN.LDAJ.FE.Q1.ZS
## 16079                              SG.OWN.LDAJ.FE.Q2.ZS
## 16080                              SG.OWN.LDAJ.FE.Q3.ZS
## 16081                              SG.OWN.LDAJ.FE.Q4.ZS
## 16082                              SG.OWN.LDAJ.FE.Q5.ZS
## 16083                                 SG.OWN.LDAJ.FE.ZS
## 16084                              SG.OWN.LDAJ.MA.Q1.ZS
## 16085                              SG.OWN.LDAJ.MA.Q2.ZS
## 16086                              SG.OWN.LDAJ.MA.Q3.ZS
## 16087                              SG.OWN.LDAJ.MA.Q4.ZS
## 16088                              SG.OWN.LDAJ.MA.Q5.ZS
## 16089                                 SG.OWN.LDAJ.MA.ZS
## 16090                              SG.OWN.LDAL.FE.Q1.ZS
## 16091                              SG.OWN.LDAL.FE.Q2.ZS
## 16092                              SG.OWN.LDAL.FE.Q3.ZS
## 16093                              SG.OWN.LDAL.FE.Q4.ZS
## 16094                              SG.OWN.LDAL.FE.Q5.ZS
## 16095                                 SG.OWN.LDAL.FE.ZS
## 16096                              SG.OWN.LDAL.MA.Q1.ZS
## 16097                              SG.OWN.LDAL.MA.Q2.ZS
## 16098                              SG.OWN.LDAL.MA.Q3.ZS
## 16099                              SG.OWN.LDAL.MA.Q4.ZS
## 16100                              SG.OWN.LDAL.MA.Q5.ZS
## 16101                                 SG.OWN.LDAL.MA.ZS
## 16102                              SG.OWN.LDJT.FE.Q1.ZS
## 16103                              SG.OWN.LDJT.FE.Q2.ZS
## 16104                              SG.OWN.LDJT.FE.Q3.ZS
## 16105                              SG.OWN.LDJT.FE.Q4.ZS
## 16106                              SG.OWN.LDJT.FE.Q5.ZS
## 16107                                 SG.OWN.LDJT.FE.ZS
## 16108                              SG.OWN.LDJT.MA.Q1.ZS
## 16109                              SG.OWN.LDJT.MA.Q2.ZS
## 16110                              SG.OWN.LDJT.MA.Q3.ZS
## 16111                              SG.OWN.LDJT.MA.Q4.ZS
## 16112                              SG.OWN.LDJT.MA.Q5.ZS
## 16113                                 SG.OWN.LDJT.MA.ZS
## 16114                              SG.OWN.LDNO.FE.Q1.ZS
## 16115                              SG.OWN.LDNO.FE.Q2.ZS
## 16116                              SG.OWN.LDNO.FE.Q3.ZS
## 16117                              SG.OWN.LDNO.FE.Q4.ZS
## 16118                              SG.OWN.LDNO.FE.Q5.ZS
## 16119                                 SG.OWN.LDNO.FE.ZS
## 16120                              SG.OWN.LDNO.MA.Q1.ZS
## 16121                              SG.OWN.LDNO.MA.Q2.ZS
## 16122                              SG.OWN.LDNO.MA.Q3.ZS
## 16123                              SG.OWN.LDNO.MA.Q4.ZS
## 16124                              SG.OWN.LDNO.MA.Q5.ZS
## 16125                                 SG.OWN.LDNO.MA.ZS
## 16126                                    SG.OWN.PRRT.IM
## 16127                                    SG.PEN.SXHR.EM
## 16128                                 SG.POP.MIGR.FE.ZS
## 16129                                 SG.REG.NLID.FE.ZS
## 16130                                 SG.REG.NLID.MA.ZS
## 16131                                    SG.REM.RIGT.EQ
## 16132                                 SG.RSX.BRTH.Q1.ZS
## 16133                                 SG.RSX.BRTH.Q2.ZS
## 16134                                 SG.RSX.BRTH.Q3.ZS
## 16135                                 SG.RSX.BRTH.Q4.ZS
## 16136                                 SG.RSX.BRTH.Q5.ZS
## 16137                                    SG.RSX.BRTH.ZS
## 16138                                 SG.RSX.NORS.Q1.ZS
## 16139                                 SG.RSX.NORS.Q2.ZS
## 16140                                 SG.RSX.NORS.Q3.ZS
## 16141                                 SG.RSX.NORS.Q4.ZS
## 16142                                 SG.RSX.NORS.Q5.ZS
## 16143                                    SG.RSX.NORS.ZS
## 16144                                 SG.RSX.REAS.Q1.ZS
## 16145                                 SG.RSX.REAS.Q2.ZS
## 16146                                 SG.RSX.REAS.Q3.ZS
## 16147                                 SG.RSX.REAS.Q4.ZS
## 16148                                 SG.RSX.REAS.Q5.ZS
## 16149                                    SG.RSX.REAS.ZS
## 16150                                 SG.RSX.SXOT.Q1.ZS
## 16151                                 SG.RSX.SXOT.Q2.ZS
## 16152                                 SG.RSX.SXOT.Q3.ZS
## 16153                                 SG.RSX.SXOT.Q4.ZS
## 16154                                 SG.RSX.SXOT.Q5.ZS
## 16155                                    SG.RSX.SXOT.ZS
## 16156                                 SG.RSX.TIRD.Q1.ZS
## 16157                                 SG.RSX.TIRD.Q2.ZS
## 16158                                 SG.RSX.TIRD.Q3.ZS
## 16159                                 SG.RSX.TIRD.Q4.ZS
## 16160                                 SG.RSX.TIRD.Q5.ZS
## 16161                                    SG.RSX.TIRD.ZS
## 16162                                 SG.RSX.TMDS.Q1.ZS
## 16163                                 SG.RSX.TMDS.Q2.ZS
## 16164                                 SG.RSX.TMDS.Q3.ZS
## 16165                                 SG.RSX.TMDS.Q4.ZS
## 16166                                 SG.RSX.TMDS.Q5.ZS
## 16167                                    SG.RSX.TMDS.ZS
## 16168                                    SG.TIM.UWRK.FE
## 16169                                    SG.TIM.UWRK.MA
## 16170                                    SG.VAW.1549.ZS
## 16171                                    SG.VAW.AFSX.ZS
## 16172                                 SG.VAW.ARGU.Q1.ZS
## 16173                                 SG.VAW.ARGU.Q2.ZS
## 16174                                 SG.VAW.ARGU.Q3.ZS
## 16175                                 SG.VAW.ARGU.Q4.ZS
## 16176                                 SG.VAW.ARGU.Q5.ZS
## 16177                                    SG.VAW.ARGU.ZS
## 16178                                 SG.VAW.BURN.Q1.ZS
## 16179                                 SG.VAW.BURN.Q2.ZS
## 16180                                 SG.VAW.BURN.Q3.ZS
## 16181                                 SG.VAW.BURN.Q4.ZS
## 16182                                 SG.VAW.BURN.Q5.ZS
## 16183                                    SG.VAW.BURN.ZS
## 16184                                 SG.VAW.GOES.Q1.ZS
## 16185                                 SG.VAW.GOES.Q2.ZS
## 16186                                 SG.VAW.GOES.Q3.ZS
## 16187                                 SG.VAW.GOES.Q4.ZS
## 16188                                 SG.VAW.GOES.Q5.ZS
## 16189                                    SG.VAW.GOES.ZS
## 16190                                    SG.VAW.HLPV.ZS
## 16191                                    SG.VAW.IPVE.ZS
## 16192                                    SG.VAW.MARR.ZS
## 16193                                 SG.VAW.NEGL.Q1.ZS
## 16194                                 SG.VAW.NEGL.Q2.ZS
## 16195                                 SG.VAW.NEGL.Q3.ZS
## 16196                                 SG.VAW.NEGL.Q4.ZS
## 16197                                 SG.VAW.NEGL.Q5.ZS
## 16198                                    SG.VAW.NEGL.ZS
## 16199                                 SG.VAW.REAS.Q1.ZS
## 16200                                 SG.VAW.REAS.Q2.ZS
## 16201                                 SG.VAW.REAS.Q3.ZS
## 16202                                 SG.VAW.REAS.Q4.ZS
## 16203                                 SG.VAW.REAS.Q5.ZS
## 16204                                    SG.VAW.REAS.ZS
## 16205                                 SG.VAW.REFU.Q1.ZS
## 16206                                 SG.VAW.REFU.Q2.ZS
## 16207                                 SG.VAW.REFU.Q3.ZS
## 16208                                 SG.VAW.REFU.Q4.ZS
## 16209                                 SG.VAW.REFU.Q5.ZS
## 16210                                    SG.VAW.REFU.ZS
## 16211                                 SH.ACS.ALON.Q1.ZS
## 16212                                 SH.ACS.ALON.Q2.ZS
## 16213                                 SH.ACS.ALON.Q3.ZS
## 16214                                 SH.ACS.ALON.Q4.ZS
## 16215                                 SH.ACS.ALON.Q5.ZS
## 16216                                 SH.ACS.DIST.Q1.ZS
## 16217                                 SH.ACS.DIST.Q2.ZS
## 16218                                 SH.ACS.DIST.Q3.ZS
## 16219                                 SH.ACS.DIST.Q4.ZS
## 16220                                 SH.ACS.DIST.Q5.ZS
## 16221                                 SH.ACS.MONY.Q1.ZS
## 16222                                 SH.ACS.MONY.Q2.ZS
## 16223                                 SH.ACS.MONY.Q3.ZS
## 16224                                 SH.ACS.MONY.Q4.ZS
## 16225                                 SH.ACS.MONY.Q5.ZS
## 16226                                 SH.ACS.NOFP.Q1.ZS
## 16227                                 SH.ACS.NOFP.Q2.ZS
## 16228                                 SH.ACS.NOFP.Q3.ZS
## 16229                                 SH.ACS.NOFP.Q4.ZS
## 16230                                 SH.ACS.NOFP.Q5.ZS
## 16231                                 SH.ACS.PERM.Q1.ZS
## 16232                                 SH.ACS.PERM.Q2.ZS
## 16233                                 SH.ACS.PERM.Q3.ZS
## 16234                                 SH.ACS.PERM.Q4.ZS
## 16235                                 SH.ACS.PERM.Q5.ZS
## 16236                                 SH.ACS.PROB.Q1.ZS
## 16237                                 SH.ACS.PROB.Q2.ZS
## 16238                                 SH.ACS.PROB.Q3.ZS
## 16239                                 SH.ACS.PROB.Q4.ZS
## 16240                                 SH.ACS.PROB.Q5.ZS
## 16241                                 SH.ACS.TRAN.Q1.ZS
## 16242                                 SH.ACS.TRAN.Q2.ZS
## 16243                                 SH.ACS.TRAN.Q3.ZS
## 16244                                 SH.ACS.TRAN.Q4.ZS
## 16245                                 SH.ACS.TRAN.Q5.ZS
## 16246                                 SH.ACS.WHER.Q1.ZS
## 16247                                 SH.ACS.WHER.Q2.ZS
## 16248                                 SH.ACS.WHER.Q3.ZS
## 16249                                 SH.ACS.WHER.Q4.ZS
## 16250                                 SH.ACS.WHER.Q5.ZS
## 16251                                       SH.ADM.INPT
## 16252                                 SH.ALC.PCAP.FE.LI
## 16253                                    SH.ALC.PCAP.LI
## 16254                                 SH.ALC.PCAP.MA.LI
## 16255                                    SH.ANM.ALLW.ZS
## 16256                                    SH.ANM.CHLD.ZS
## 16257                                    SH.ANM.NPRG.ZS
## 16258                                 SH.CON.1524.FE.ZS
## 16259                                 SH.CON.1524.MA.ZS
## 16260                                 SH.CON.AIDS.FE.ZS
## 16261                                 SH.CON.AIDS.MA.ZS
## 16262                                        SH.DR.TOTL
## 16263                                       SH.DTH.0509
## 16264                                       SH.DTH.0514
## 16265                                       SH.DTH.1014
## 16266                                       SH.DTH.1019
## 16267                                       SH.DTH.1519
## 16268                                       SH.DTH.2024
## 16269                            SH.DTH.COMM.0004.FE.ZS
## 16270                            SH.DTH.COMM.0004.MA.ZS
## 16271                               SH.DTH.COMM.0004.ZS
## 16272                            SH.DTH.COMM.0514.FE.ZS
## 16273                            SH.DTH.COMM.0514.MA.ZS
## 16274                               SH.DTH.COMM.0514.ZS
## 16275                            SH.DTH.COMM.1559.FE.ZS
## 16276                            SH.DTH.COMM.1559.MA.ZS
## 16277                               SH.DTH.COMM.1559.ZS
## 16278                            SH.DTH.COMM.60UP.FE.ZS
## 16279                            SH.DTH.COMM.60UP.MA.ZS
## 16280                               SH.DTH.COMM.60UP.ZS
## 16281                                 SH.DTH.COMM.FE.ZS
## 16282                                 SH.DTH.COMM.MA.ZS
## 16283                                    SH.DTH.COMM.ZS
## 16284                                       SH.DTH.IMRT
## 16285                                    SH.DTH.IMRT.FE
## 16286                                    SH.DTH.IMRT.MA
## 16287                            SH.DTH.INJR.0004.FE.ZS
## 16288                            SH.DTH.INJR.0004.MA.ZS
## 16289                               SH.DTH.INJR.0004.ZS
## 16290                            SH.DTH.INJR.0514.FE.ZS
## 16291                            SH.DTH.INJR.0514.MA.ZS
## 16292                               SH.DTH.INJR.0514.ZS
## 16293                            SH.DTH.INJR.1559.FE.ZS
## 16294                            SH.DTH.INJR.1559.MA.ZS
## 16295                               SH.DTH.INJR.1559.ZS
## 16296                            SH.DTH.INJR.60UP.FE.ZS
## 16297                            SH.DTH.INJR.60UP.MA.ZS
## 16298                               SH.DTH.INJR.60UP.ZS
## 16299                                 SH.DTH.INJR.FE.ZS
## 16300                                 SH.DTH.INJR.MA.ZS
## 16301                                    SH.DTH.INJR.ZS
## 16302                                       SH.DTH.MORT
## 16303                                    SH.DTH.MORT.FE
## 16304                                    SH.DTH.MORT.MA
## 16305                            SH.DTH.NCOM.0004.FE.ZS
## 16306                            SH.DTH.NCOM.0004.MA.ZS
## 16307                               SH.DTH.NCOM.0004.ZS
## 16308                            SH.DTH.NCOM.0514.FE.ZS
## 16309                            SH.DTH.NCOM.0514.MA.ZS
## 16310                               SH.DTH.NCOM.0514.ZS
## 16311                            SH.DTH.NCOM.1559.FE.ZS
## 16312                            SH.DTH.NCOM.1559.MA.ZS
## 16313                               SH.DTH.NCOM.1559.ZS
## 16314                            SH.DTH.NCOM.60UP.FE.ZS
## 16315                            SH.DTH.NCOM.60UP.MA.ZS
## 16316                               SH.DTH.NCOM.60UP.ZS
## 16317                                 SH.DTH.NCOM.FE.ZS
## 16318                                 SH.DTH.NCOM.MA.ZS
## 16319                                    SH.DTH.NCOM.ZS
## 16320                                       SH.DTH.NMRT
## 16321                                       SH.DTH.STLB
## 16322                                       SH.DYN.0509
## 16323                                       SH.DYN.0514
## 16324                                       SH.DYN.1014
## 16325                                       SH.DYN.1019
## 16326                                       SH.DYN.1519
## 16327                                       SH.DYN.2024
## 16328                                       SH.DYN.AIDS
## 16329                                    SH.DYN.AIDS.DH
## 16330                                 SH.DYN.AIDS.FE.ZS
## 16331                                 SH.DYN.AIDS.HG.ZS
## 16332                                 SH.DYN.AIDS.LW.ZS
## 16333                                    SH.DYN.AIDS.ZS
## 16334                                    SH.DYN.CHLD.FE
## 16335                                    SH.DYN.CHLD.MA
## 16336                                       SH.DYN.MORT
## 16337                                    SH.DYN.MORT.FE
## 16338                                    SH.DYN.MORT.MA
## 16339                                    SH.DYN.MORT.Q1
## 16340                                    SH.DYN.MORT.Q2
## 16341                                    SH.DYN.MORT.Q3
## 16342                                    SH.DYN.MORT.Q4
## 16343                                    SH.DYN.MORT.Q5
## 16344                                 SH.DYN.NCOM.FE.ZS
## 16345                                 SH.DYN.NCOM.MA.ZS
## 16346                                    SH.DYN.NCOM.ZS
## 16347                                       SH.DYN.NMRT
## 16348                                       SH.DYN.STLB
## 16349                                 SH.FPL.ACPT.Q1.ZS
## 16350                                 SH.FPL.ACPT.Q2.ZS
## 16351                                 SH.FPL.ACPT.Q3.ZS
## 16352                                 SH.FPL.ACPT.Q4.ZS
## 16353                                 SH.FPL.ACPT.Q5.ZS
## 16354                                 SH.FPL.FBRT.Q1.ZS
## 16355                                 SH.FPL.FBRT.Q2.ZS
## 16356                                 SH.FPL.FBRT.Q3.ZS
## 16357                                 SH.FPL.FBRT.Q4.ZS
## 16358                                 SH.FPL.FBRT.Q5.ZS
## 16359                                 SH.FPL.FMAR.Q1.ZS
## 16360                                 SH.FPL.FMAR.Q2.ZS
## 16361                                 SH.FPL.FMAR.Q3.ZS
## 16362                                 SH.FPL.FMAR.Q4.ZS
## 16363                                 SH.FPL.FMAR.Q5.ZS
## 16364                                 SH.FPL.FSEX.Q1.ZS
## 16365                                 SH.FPL.FSEX.Q2.ZS
## 16366                                 SH.FPL.FSEX.Q3.ZS
## 16367                                 SH.FPL.FSEX.Q4.ZS
## 16368                                 SH.FPL.FSEX.Q5.ZS
## 16369                                 SH.FPL.HEAR.Q1.ZS
## 16370                                 SH.FPL.HEAR.Q2.ZS
## 16371                                 SH.FPL.HEAR.Q3.ZS
## 16372                                 SH.FPL.HEAR.Q4.ZS
## 16373                                 SH.FPL.HEAR.Q5.ZS
## 16374                                    SH.FPL.IDLC.Q1
## 16375                                    SH.FPL.IDLC.Q2
## 16376                                    SH.FPL.IDLC.Q3
## 16377                                    SH.FPL.IDLC.Q4
## 16378                                    SH.FPL.IDLC.Q5
## 16379                                 SH.FPL.KNOW.Q1.ZS
## 16380                                 SH.FPL.KNOW.Q2.ZS
## 16381                                 SH.FPL.KNOW.Q3.ZS
## 16382                                 SH.FPL.KNOW.Q4.ZS
## 16383                                 SH.FPL.KNOW.Q5.ZS
## 16384                                 SH.FPL.KWMD.Q1.ZS
## 16385                                 SH.FPL.KWMD.Q2.ZS
## 16386                                 SH.FPL.KWMD.Q3.ZS
## 16387                                 SH.FPL.KWMD.Q4.ZS
## 16388                                 SH.FPL.KWMD.Q5.ZS
## 16389                                 SH.FPL.LIMT.Q1.ZS
## 16390                                 SH.FPL.LIMT.Q2.ZS
## 16391                                 SH.FPL.LIMT.Q3.ZS
## 16392                                 SH.FPL.LIMT.Q4.ZS
## 16393                                 SH.FPL.LIMT.Q5.ZS
## 16394                                    SH.FPL.MBRI.Q1
## 16395                                    SH.FPL.MBRI.Q2
## 16396                                    SH.FPL.MBRI.Q3
## 16397                                    SH.FPL.MBRI.Q4
## 16398                                    SH.FPL.MBRI.Q5
## 16399                                 SH.FPL.MSTM.Q1.ZS
## 16400                                 SH.FPL.MSTM.Q2.ZS
## 16401                                 SH.FPL.MSTM.Q3.ZS
## 16402                                 SH.FPL.MSTM.Q4.ZS
## 16403                                 SH.FPL.MSTM.Q5.ZS
## 16404                                 SH.FPL.READ.Q1.ZS
## 16405                                 SH.FPL.READ.Q2.ZS
## 16406                                 SH.FPL.READ.Q3.ZS
## 16407                                 SH.FPL.READ.Q4.ZS
## 16408                                 SH.FPL.READ.Q5.ZS
## 16409                                    SH.FPL.SATI.ZS
## 16410                                    SH.FPL.SATM.ZS
## 16411                                 SH.FPL.UWTD.Q1.ZS
## 16412                                 SH.FPL.UWTD.Q2.ZS
## 16413                                 SH.FPL.UWTD.Q3.ZS
## 16414                                 SH.FPL.UWTD.Q4.ZS
## 16415                                 SH.FPL.UWTD.Q5.ZS
## 16416                                 SH.FPL.WNTD.Q1.ZS
## 16417                                 SH.FPL.WNTD.Q2.ZS
## 16418                                 SH.FPL.WNTD.Q3.ZS
## 16419                                 SH.FPL.WNTD.Q4.ZS
## 16420                                 SH.FPL.WNTD.Q5.ZS
## 16421                                 SH.H2O.BASW.Q1.ZS
## 16422                                 SH.H2O.BASW.Q2.ZS
## 16423                                 SH.H2O.BASW.Q3.ZS
## 16424                                 SH.H2O.BASW.Q4.ZS
## 16425                                 SH.H2O.BASW.Q5.ZS
## 16426                              SH.H2O.BASW.RU.Q1.ZS
## 16427                              SH.H2O.BASW.RU.Q2.ZS
## 16428                              SH.H2O.BASW.RU.Q3.ZS
## 16429                              SH.H2O.BASW.RU.Q4.ZS
## 16430                              SH.H2O.BASW.RU.Q5.ZS
## 16431                                 SH.H2O.BASW.RU.ZS
## 16432                              SH.H2O.BASW.UR.Q1.ZS
## 16433                              SH.H2O.BASW.UR.Q2.ZS
## 16434                              SH.H2O.BASW.UR.Q3.ZS
## 16435                              SH.H2O.BASW.UR.Q4.ZS
## 16436                              SH.H2O.BASW.UR.Q5.ZS
## 16437                                 SH.H2O.BASW.UR.ZS
## 16438                                    SH.H2O.BASW.ZS
## 16439                                 SH.H2O.SAFE.RU.ZS
## 16440                                 SH.H2O.SAFE.UR.ZS
## 16441                                    SH.H2O.SAFE.ZS
## 16442                                 SH.H2O.SMDW.RU.ZS
## 16443                                 SH.H2O.SMDW.UR.ZS
## 16444                                    SH.H2O.SMDW.ZS
## 16445                                       SH.HIV.0014
## 16446                              SH.HIV.1524.FE.HG.ZS
## 16447                              SH.HIV.1524.FE.LW.ZS
## 16448                                 SH.HIV.1524.FE.ZS
## 16449                              SH.HIV.1524.KW.FE.ZS
## 16450                              SH.HIV.1524.KW.MA.ZS
## 16451                              SH.HIV.1524.MA.HG.ZS
## 16452                              SH.HIV.1524.MA.LW.ZS
## 16453                                 SH.HIV.1524.MA.ZS
## 16454                                 SH.HIV.ARTC.FE.ZS
## 16455                                 SH.HIV.ARTC.MA.ZS
## 16456                                    SH.HIV.ARTC.ZS
## 16457                                 SH.HIV.DTS.HG.NUM
## 16458                                 SH.HIV.DTS.LW.NUM
## 16459                                    SH.HIV.DTS.NUM
## 16460                                       SH.HIV.INCD
## 16461                                    SH.HIV.INCD.14
## 16462                                 SH.HIV.INCD.50.P3
## 16463                                 SH.HIV.INCD.FE.P3
## 16464                                 SH.HIV.INCD.MA.P3
## 16465                                    SH.HIV.INCD.TL
## 16466                                 SH.HIV.INCD.TL.P3
## 16467                                    SH.HIV.INCD.YG
## 16468                              SH.HIV.INCD.YG.FE.P3
## 16469                              SH.HIV.INCD.YG.MA.P3
## 16470                                 SH.HIV.INCD.YG.P3
## 16471                                    SH.HIV.INCD.ZS
## 16472                                 SH.HIV.KNOW.FE.ZS
## 16473                                 SH.HIV.KNOW.MA.ZS
## 16474                            SH.HIV.NEW.0014.HG.NUM
## 16475                            SH.HIV.NEW.0014.LW.NUM
## 16476                               SH.HIV.NEW.0014.NUM
## 16477                            SH.HIV.NEW.TOTL.HG.NUM
## 16478                            SH.HIV.NEW.TOTL.LW.NUM
## 16479                               SH.HIV.NEW.TOTL.NUM
## 16480                                 SH.HIV.ORP.HG.NUM
## 16481                                 SH.HIV.ORP.LW.NUM
## 16482                                    SH.HIV.ORP.NUM
## 16483                                       SH.HIV.ORPH
## 16484                                    SH.HIV.PMTC.ZS
## 16485                          SH.HIV.PREG.VIRALS.HG.ZS
## 16486                          SH.HIV.PREG.VIRALS.LW.ZS
## 16487                            SH.HIV.PREG.VIRALS.NUM
## 16488                             SH.HIV.PREG.VIRALS.ZS
## 16489                                       SH.HIV.TOTL
## 16490                                SH.HIV.TOTL.HG.NUM
## 16491                                SH.HIV.TOTL.LW.NUM
## 16492                                   SH.HIV.TOTL.NUM
## 16493                                      SH.HOSP.TOTL
## 16494                                 SH.HTN.PREV.FE.ZS
## 16495                                 SH.HTN.PREV.MA.ZS
## 16496                                    SH.HTN.PREV.ZS
## 16497                                 SH.HTN.TRET.FE.ZS
## 16498                                 SH.HTN.TRET.MA.ZS
## 16499                                    SH.HTN.TRET.ZS
## 16500                                 SH.IMM.ALLV.Q1.ZS
## 16501                                 SH.IMM.ALLV.Q2.ZS
## 16502                                 SH.IMM.ALLV.Q3.ZS
## 16503                                 SH.IMM.ALLV.Q4.ZS
## 16504                                 SH.IMM.ALLV.Q5.ZS
## 16505                                    SH.IMM.CHLD.ZS
## 16506                                       SH.IMM.HEPB
## 16507                                       SH.IMM.HIB3
## 16508                                       SH.IMM.IBCG
## 16509                                 SH.IMM.IBCG.Q1.ZS
## 16510                                 SH.IMM.IBCG.Q2.ZS
## 16511                                 SH.IMM.IBCG.Q3.ZS
## 16512                                 SH.IMM.IBCG.Q4.ZS
## 16513                                 SH.IMM.IBCG.Q5.ZS
## 16514                                       SH.IMM.IDPT
## 16515                                 SH.IMM.IDPT.Q1.ZS
## 16516                                 SH.IMM.IDPT.Q2.ZS
## 16517                                 SH.IMM.IDPT.Q3.ZS
## 16518                                 SH.IMM.IDPT.Q4.ZS
## 16519                                 SH.IMM.IDPT.Q5.ZS
## 16520                                       SH.IMM.MEA2
## 16521                                       SH.IMM.MEAS
## 16522                                 SH.IMM.MEAS.Q1.ZS
## 16523                                 SH.IMM.MEAS.Q2.ZS
## 16524                                 SH.IMM.MEAS.Q3.ZS
## 16525                                 SH.IMM.MEAS.Q4.ZS
## 16526                                 SH.IMM.MEAS.Q5.ZS
## 16527                                 SH.IMM.NONE.Q1.ZS
## 16528                                 SH.IMM.NONE.Q2.ZS
## 16529                                 SH.IMM.NONE.Q3.ZS
## 16530                                 SH.IMM.NONE.Q4.ZS
## 16531                                 SH.IMM.NONE.Q5.ZS
## 16532                                       SH.IMM.POL3
## 16533                                    SH.MED.BEDS.ZS
## 16534                                    SH.MED.CMHW.P3
## 16535                                  SH.MED.MWIV.TOTL
## 16536                                    SH.MED.NUMW.P3
## 16537                                    SH.MED.NURS.ZS
## 16538                                    SH.MED.PHYS.ZS
## 16539                                    SH.MED.SAOP.P5
## 16540                                  SH.MLR.CSES.TOTL
## 16541                               SH.MLR.DTHS.CHLD.ZS
## 16542                                  SH.MLR.DTHS.TOTL
## 16543                                       SH.MLR.INCD
## 16544                                    SH.MLR.INCD.P3
## 16545                                    SH.MLR.IPTP.ZS
## 16546                                 SH.MLR.ITN.1HH.ZS
## 16547                                 SH.MLR.NETA.Q1.ZS
## 16548                                 SH.MLR.NETA.Q2.ZS
## 16549                                 SH.MLR.NETA.Q3.ZS
## 16550                                 SH.MLR.NETA.Q4.ZS
## 16551                                 SH.MLR.NETA.Q5.ZS
## 16552                                 SH.MLR.NETH.Q1.ZS
## 16553                                 SH.MLR.NETH.Q2.ZS
## 16554                                 SH.MLR.NETH.Q3.ZS
## 16555                                 SH.MLR.NETH.Q4.ZS
## 16556                                 SH.MLR.NETH.Q5.ZS
## 16557                                 SH.MLR.NETP.Q1.ZS
## 16558                                 SH.MLR.NETP.Q2.ZS
## 16559                                 SH.MLR.NETP.Q3.ZS
## 16560                                 SH.MLR.NETP.Q4.ZS
## 16561                                 SH.MLR.NETP.Q5.ZS
## 16562                                 SH.MLR.NETS.Q1.ZS
## 16563                                 SH.MLR.NETS.Q2.ZS
## 16564                                 SH.MLR.NETS.Q3.ZS
## 16565                                 SH.MLR.NETS.Q4.ZS
## 16566                                 SH.MLR.NETS.Q5.ZS
## 16567                                    SH.MLR.NETS.ZS
## 16568                                 SH.MLR.NTHI.Q1.ZS
## 16569                                 SH.MLR.NTHI.Q2.ZS
## 16570                                 SH.MLR.NTHI.Q3.ZS
## 16571                                 SH.MLR.NTHI.Q4.ZS
## 16572                                 SH.MLR.NTHI.Q5.ZS
## 16573                                 SH.MLR.NTPI.Q1.ZS
## 16574                                 SH.MLR.NTPI.Q2.ZS
## 16575                                 SH.MLR.NTPI.Q3.ZS
## 16576                                 SH.MLR.NTPI.Q4.ZS
## 16577                                 SH.MLR.NTPI.Q5.ZS
## 16578                               SH.MLR.PREG.2IPT.ZS
## 16579                                 SH.MLR.SPFN.Q1.ZS
## 16580                                 SH.MLR.SPFN.Q2.ZS
## 16581                                 SH.MLR.SPFN.Q3.ZS
## 16582                                 SH.MLR.SPFN.Q4.ZS
## 16583                                 SH.MLR.SPFN.Q5.ZS
## 16584                                 SH.MLR.TRET.Q1.ZS
## 16585                                 SH.MLR.TRET.Q2.ZS
## 16586                                 SH.MLR.TRET.Q3.ZS
## 16587                                 SH.MLR.TRET.Q4.ZS
## 16588                                 SH.MLR.TRET.Q5.ZS
## 16589                                    SH.MLR.TRET.ZS
## 16590                                       SH.MMR.DTHS
## 16591                                       SH.MMR.LEVE
## 16592                                    SH.MMR.LEVE.AL
## 16593                                    SH.MMR.LEVE.GT
## 16594                                       SH.MMR.RISK
## 16595                                    SH.MMR.RISK.ZS
## 16596                                    SH.MMR.WAGE.ZS
## 16597                                        SH.MORB.ZS
## 16598                                       SH.PAR.LEVE
## 16599                                    SH.PAR.LEVE.AL
## 16600                                    SH.PAR.LEVE.FE
## 16601                                    SH.PAR.LEVE.MA
## 16602                                  SH.POLINDES.TOTL
## 16603                                       SH.PRG.ANEM
## 16604                                    SH.PRG.SYPH.ZS
## 16605                                       SH.PRV.SMOK
## 16606                                    SH.PRV.SMOK.FE
## 16607                              SH.PRV.SMOK.FE.Q1.ZS
## 16608                              SH.PRV.SMOK.FE.Q2.ZS
## 16609                              SH.PRV.SMOK.FE.Q3.ZS
## 16610                              SH.PRV.SMOK.FE.Q4.ZS
## 16611                              SH.PRV.SMOK.FE.Q5.ZS
## 16612                                    SH.PRV.SMOK.MA
## 16613                                       SH.PTR.LEVE
## 16614                                    SH.PTR.LEVE.AL
## 16615                                 SH.PUSKESMAS.TOTL
## 16616                                    SH.SGR.CRSK.ZS
## 16617                                    SH.SGR.IRSK.ZS
## 16618                                    SH.SGR.PROC.P5
## 16619                                    SH.STA.ACCH.ZS
## 16620                                       SH.STA.ACSN
## 16621                                    SH.STA.ACSN.RU
## 16622                                    SH.STA.ACSN.UR
## 16623                                 SH.STA.AIRP.FE.P5
## 16624                                 SH.STA.AIRP.MA.P5
## 16625                                    SH.STA.AIRP.P5
## 16626                                 SH.STA.ANCP.Q1.ZS
## 16627                                 SH.STA.ANCP.Q2.ZS
## 16628                                 SH.STA.ANCP.Q3.ZS
## 16629                                 SH.STA.ANCP.Q4.ZS
## 16630                                 SH.STA.ANCP.Q5.ZS
## 16631                                    SH.STA.ANV4.ZS
## 16632                                 SH.STA.ANVC.Q1.ZS
## 16633                                 SH.STA.ANVC.Q2.ZS
## 16634                                 SH.STA.ANVC.Q3.ZS
## 16635                                 SH.STA.ANVC.Q4.ZS
## 16636                                 SH.STA.ANVC.Q5.ZS
## 16637                                    SH.STA.ANVC.ZS
## 16638                                 SH.STA.ANVP.Q1.ZS
## 16639                                 SH.STA.ANVP.Q2.ZS
## 16640                                 SH.STA.ANVP.Q3.ZS
## 16641                                 SH.STA.ANVP.Q4.ZS
## 16642                                 SH.STA.ANVP.Q5.ZS
## 16643                                 SH.STA.ARIC.Q1.ZS
## 16644                                 SH.STA.ARIC.Q2.ZS
## 16645                                 SH.STA.ARIC.Q3.ZS
## 16646                                 SH.STA.ARIC.Q4.ZS
## 16647                                 SH.STA.ARIC.Q5.ZS
## 16648                                    SH.STA.ARIC.ZS
## 16649                                 SH.STA.ARIF.Q1.ZS
## 16650                                 SH.STA.ARIF.Q2.ZS
## 16651                                 SH.STA.ARIF.Q3.ZS
## 16652                                 SH.STA.ARIF.Q4.ZS
## 16653                                 SH.STA.ARIF.Q5.ZS
## 16654                                    SH.STA.ARIF.ZS
## 16655                                 SH.STA.BASS.Q1.ZS
## 16656                                 SH.STA.BASS.Q2.ZS
## 16657                                 SH.STA.BASS.Q3.ZS
## 16658                                 SH.STA.BASS.Q4.ZS
## 16659                                 SH.STA.BASS.Q5.ZS
## 16660                              SH.STA.BASS.RU.Q1.ZS
## 16661                              SH.STA.BASS.RU.Q2.ZS
## 16662                              SH.STA.BASS.RU.Q3.ZS
## 16663                              SH.STA.BASS.RU.Q4.ZS
## 16664                              SH.STA.BASS.RU.Q5.ZS
## 16665                                 SH.STA.BASS.RU.ZS
## 16666                              SH.STA.BASS.UR.Q1.ZS
## 16667                              SH.STA.BASS.UR.Q2.ZS
## 16668                              SH.STA.BASS.UR.Q3.ZS
## 16669                              SH.STA.BASS.UR.Q4.ZS
## 16670                              SH.STA.BASS.UR.Q5.ZS
## 16671                                 SH.STA.BASS.UR.ZS
## 16672                                    SH.STA.BASS.ZS
## 16673                                 SH.STA.BFED.Q1.ZS
## 16674                                 SH.STA.BFED.Q2.ZS
## 16675                                 SH.STA.BFED.Q3.ZS
## 16676                                 SH.STA.BFED.Q4.ZS
## 16677                                 SH.STA.BFED.Q5.ZS
## 16678                                    SH.STA.BFED.ZS
## 16679                                 SH.STA.BRTC.Q1.ZS
## 16680                                 SH.STA.BRTC.Q2.ZS
## 16681                                 SH.STA.BRTC.Q3.ZS
## 16682                                 SH.STA.BRTC.Q4.ZS
## 16683                                 SH.STA.BRTC.Q5.ZS
## 16684                                    SH.STA.BRTC.ZS
## 16685                                 SH.STA.BRTF.Q1.ZS
## 16686                                 SH.STA.BRTF.Q2.ZS
## 16687                                 SH.STA.BRTF.Q3.ZS
## 16688                                 SH.STA.BRTF.Q4.ZS
## 16689                                 SH.STA.BRTF.Q5.ZS
## 16690                                 SH.STA.BRTP.Q1.ZS
## 16691                                 SH.STA.BRTP.Q2.ZS
## 16692                                 SH.STA.BRTP.Q3.ZS
## 16693                                 SH.STA.BRTP.Q4.ZS
## 16694                                 SH.STA.BRTP.Q5.ZS
## 16695                                    SH.STA.BRTW.ZS
## 16696                                    SH.STA.DIAB.ZS
## 16697                                 SH.STA.DIRH.Q1.ZS
## 16698                                 SH.STA.DIRH.Q2.ZS
## 16699                                 SH.STA.DIRH.Q3.ZS
## 16700                                 SH.STA.DIRH.Q4.ZS
## 16701                                 SH.STA.DIRH.Q5.ZS
## 16702                                    SH.STA.DIRH.ZS
## 16703                                 SH.STA.FEVR.Q1.ZS
## 16704                                 SH.STA.FEVR.Q2.ZS
## 16705                                 SH.STA.FEVR.Q3.ZS
## 16706                                 SH.STA.FEVR.Q4.ZS
## 16707                                 SH.STA.FEVR.Q5.ZS
## 16708                                 SH.STA.FGMS.Q1.ZS
## 16709                                 SH.STA.FGMS.Q2.ZS
## 16710                                 SH.STA.FGMS.Q3.ZS
## 16711                                 SH.STA.FGMS.Q4.ZS
## 16712                                 SH.STA.FGMS.Q5.ZS
## 16713                                    SH.STA.FGMS.ZS
## 16714                                 SH.STA.HYGN.Q1.ZS
## 16715                                 SH.STA.HYGN.Q2.ZS
## 16716                                 SH.STA.HYGN.Q3.ZS
## 16717                                 SH.STA.HYGN.Q4.ZS
## 16718                                 SH.STA.HYGN.Q5.ZS
## 16719                              SH.STA.HYGN.RU.Q1.ZS
## 16720                              SH.STA.HYGN.RU.Q2.ZS
## 16721                              SH.STA.HYGN.RU.Q3.ZS
## 16722                              SH.STA.HYGN.RU.Q4.ZS
## 16723                              SH.STA.HYGN.RU.Q5.ZS
## 16724                                 SH.STA.HYGN.RU.ZS
## 16725                              SH.STA.HYGN.UR.Q1.ZS
## 16726                              SH.STA.HYGN.UR.Q2.ZS
## 16727                              SH.STA.HYGN.UR.Q3.ZS
## 16728                              SH.STA.HYGN.UR.Q4.ZS
## 16729                              SH.STA.HYGN.UR.Q5.ZS
## 16730                                 SH.STA.HYGN.UR.ZS
## 16731                                    SH.STA.HYGN.ZS
## 16732                                    SH.STA.IYCF.ZS
## 16733                                 SH.STA.LBMI.Q1.ZS
## 16734                                 SH.STA.LBMI.Q2.ZS
## 16735                                 SH.STA.LBMI.Q3.ZS
## 16736                                 SH.STA.LBMI.Q4.ZS
## 16737                                 SH.STA.LBMI.Q5.ZS
## 16738                                 SH.STA.MALN.FE.ZS
## 16739                                 SH.STA.MALN.MA.ZS
## 16740                                 SH.STA.MALN.Q1.ZS
## 16741                                 SH.STA.MALN.Q2.ZS
## 16742                                 SH.STA.MALN.Q3.ZS
## 16743                                 SH.STA.MALN.Q4.ZS
## 16744                                 SH.STA.MALN.Q5.ZS
## 16745                                    SH.STA.MALN.ZS
## 16746                                       SH.STA.MALR
## 16747                                 SH.STA.MLN3.Q1.ZS
## 16748                                 SH.STA.MLN3.Q2.ZS
## 16749                                 SH.STA.MLN3.Q3.ZS
## 16750                                 SH.STA.MLN3.Q4.ZS
## 16751                                 SH.STA.MLN3.Q5.ZS
## 16752                                       SH.STA.MMRT
## 16753                                    SH.STA.MMRT.NE
## 16754                                 SH.STA.OB18.FE.ZS
## 16755                                 SH.STA.OB18.MA.ZS
## 16756                                 SH.STA.ODFC.Q1.ZS
## 16757                                 SH.STA.ODFC.Q2.ZS
## 16758                                 SH.STA.ODFC.Q3.ZS
## 16759                                 SH.STA.ODFC.Q4.ZS
## 16760                                 SH.STA.ODFC.Q5.ZS
## 16761                              SH.STA.ODFC.RU.Q1.ZS
## 16762                              SH.STA.ODFC.RU.Q2.ZS
## 16763                              SH.STA.ODFC.RU.Q3.ZS
## 16764                              SH.STA.ODFC.RU.Q4.ZS
## 16765                              SH.STA.ODFC.RU.Q5.ZS
## 16766                                 SH.STA.ODFC.RU.ZS
## 16767                              SH.STA.ODFC.UR.Q1.ZS
## 16768                              SH.STA.ODFC.UR.Q2.ZS
## 16769                              SH.STA.ODFC.UR.Q3.ZS
## 16770                              SH.STA.ODFC.UR.Q4.ZS
## 16771                              SH.STA.ODFC.UR.Q5.ZS
## 16772                                 SH.STA.ODFC.UR.ZS
## 16773                                    SH.STA.ODFC.ZS
## 16774                                    SH.STA.ORCF.ZS
## 16775                                 SH.STA.ORHF.Q1.ZS
## 16776                                 SH.STA.ORHF.Q2.ZS
## 16777                                 SH.STA.ORHF.Q3.ZS
## 16778                                 SH.STA.ORHF.Q4.ZS
## 16779                                 SH.STA.ORHF.Q5.ZS
## 16780                                 SH.STA.ORHK.Q1.ZS
## 16781                                 SH.STA.ORHK.Q2.ZS
## 16782                                 SH.STA.ORHK.Q3.ZS
## 16783                                 SH.STA.ORHK.Q4.ZS
## 16784                                 SH.STA.ORHK.Q5.ZS
## 16785                                  SH.STA.ORHS.Q1ZS
## 16786                                  SH.STA.ORHS.Q2ZS
## 16787                                  SH.STA.ORHS.Q3ZS
## 16788                                  SH.STA.ORHS.Q4ZS
## 16789                                  SH.STA.ORHS.Q5ZS
## 16790                                       SH.STA.ORTH
## 16791                                 SH.STA.OWAD.FE.ZS
## 16792                                 SH.STA.OWAD.MA.ZS
## 16793                                    SH.STA.OWAD.ZS
## 16794                                 SH.STA.OWGH.FE.ZS
## 16795                                 SH.STA.OWGH.MA.ZS
## 16796                                 SH.STA.OWGH.ME.ZS
## 16797                                    SH.STA.OWGH.ZS
## 16798                                    SH.STA.PNVC.ZS
## 16799                                    SH.STA.POIS.P5
## 16800                                 SH.STA.POIS.P5.FE
## 16801                                 SH.STA.POIS.P5.MA
## 16802                                 SH.STA.SMSS.RU.ZS
## 16803                                 SH.STA.SMSS.UR.ZS
## 16804                                    SH.STA.SMSS.ZS
## 16805                                 SH.STA.STN3.Q1.ZS
## 16806                                 SH.STA.STN3.Q2.ZS
## 16807                                 SH.STA.STN3.Q3.ZS
## 16808                                 SH.STA.STN3.Q4.ZS
## 16809                                 SH.STA.STN3.Q5.ZS
## 16810                                 SH.STA.STNT.FE.ZS
## 16811                                 SH.STA.STNT.MA.ZS
## 16812                                 SH.STA.STNT.ME.ZS
## 16813                                 SH.STA.STNT.Q1.ZS
## 16814                                 SH.STA.STNT.Q2.ZS
## 16815                                 SH.STA.STNT.Q3.ZS
## 16816                                 SH.STA.STNT.Q4.ZS
## 16817                                 SH.STA.STNT.Q5.ZS
## 16818                                    SH.STA.STNT.ZS
## 16819                                 SH.STA.SUIC.FE.P5
## 16820                                 SH.STA.SUIC.MA.P5
## 16821                                    SH.STA.SUIC.P5
## 16822                                 SH.STA.TRAF.FE.P5
## 16823                                 SH.STA.TRAF.MA.P5
## 16824                                    SH.STA.TRAF.P5
## 16825                                 SH.STA.WASH.FE.P5
## 16826                                 SH.STA.WASH.MA.P5
## 16827                                    SH.STA.WASH.P5
## 16828                                 SH.STA.WAST.FE.ZS
## 16829                                 SH.STA.WAST.MA.ZS
## 16830                                 SH.STA.WAST.Q1.ZS
## 16831                                 SH.STA.WAST.Q2.ZS
## 16832                                 SH.STA.WAST.Q3.ZS
## 16833                                 SH.STA.WAST.Q4.ZS
## 16834                                 SH.STA.WAST.Q5.ZS
## 16835                                    SH.STA.WAST.ZS
## 16836                                 SH.STA.WST3.Q1.ZS
## 16837                                 SH.STA.WST3.Q2.ZS
## 16838                                 SH.STA.WST3.Q3.ZS
## 16839                                 SH.STA.WST3.Q4.ZS
## 16840                                 SH.STA.WST3.Q5.ZS
## 16841                                 SH.SVR.WAST.FE.ZS
## 16842                                 SH.SVR.WAST.MA.ZS
## 16843                                    SH.SVR.WAST.ZS
## 16844                                    SH.TBS.CURE.ZS
## 16845                                       SH.TBS.DOTS
## 16846                                    SH.TBS.DTEC.ZS
## 16847                                       SH.TBS.INCD
## 16848                                    SH.TBS.INCD.HG
## 16849                                    SH.TBS.INCD.LW
## 16850                                       SH.TBS.MORT
## 16851                                    SH.TBS.MORT.HG
## 16852                                    SH.TBS.MORT.LW
## 16853                                       SH.TBS.PREV
## 16854                                    SH.TBS.PREV.HG
## 16855                                    SH.TBS.PREV.LW
## 16856                                    SH.UHC.CONS.TO
## 16857                                    SH.UHC.CONS.ZS
## 16858                                    SH.UHC.FBP1.TO
## 16859                                    SH.UHC.FBP1.ZS
## 16860                                    SH.UHC.FBP2.TO
## 16861                                    SH.UHC.FBP2.ZS
## 16862                                    SH.UHC.FBPR.TO
## 16863                                    SH.UHC.FBPR.ZS
## 16864                                    SH.UHC.NOP1.CG
## 16865                                    SH.UHC.NOP1.TO
## 16866                                    SH.UHC.NOP1.ZG
## 16867                                    SH.UHC.NOP1.ZS
## 16868                                    SH.UHC.NOP2.CG
## 16869                                    SH.UHC.NOP2.TO
## 16870                                    SH.UHC.NOP2.ZG
## 16871                                    SH.UHC.NOP2.ZS
## 16872                                    SH.UHC.NOPR.TO
## 16873                                    SH.UHC.NOPR.ZS
## 16874                                 SH.UHC.OOPC.10.TO
## 16875                                 SH.UHC.OOPC.10.ZS
## 16876                                 SH.UHC.OOPC.25.TO
## 16877                                 SH.UHC.OOPC.25.ZS
## 16878                                 SH.UHC.SRVS.CV.XD
## 16879                                 SH.VAC.TTNS.Q1.ZS
## 16880                                 SH.VAC.TTNS.Q2.ZS
## 16881                                 SH.VAC.TTNS.Q3.ZS
## 16882                                 SH.VAC.TTNS.Q4.ZS
## 16883                                 SH.VAC.TTNS.Q5.ZS
## 16884                                    SH.VAC.TTNS.ZS
## 16885                                       SH.VST.OUTP
## 16886                                 SH.XPD.CHEX.GD.ZS
## 16887                                 SH.XPD.CHEX.PC.CD
## 16888                                 SH.XPD.CHEX.PP.CD
## 16889                                 SH.XPD.EHEX.CH.ZS
## 16890                                 SH.XPD.EHEX.EH.ZS
## 16891                                 SH.XPD.EHEX.PC.CD
## 16892                                 SH.XPD.EHEX.PP.CD
## 16893                                    SH.XPD.EXTR.ZS
## 16894                                 SH.XPD.GHED.CH.ZS
## 16895                                 SH.XPD.GHED.GD.ZS
## 16896                                 SH.XPD.GHED.GE.ZS
## 16897                                 SH.XPD.GHED.PC.CD
## 16898                                 SH.XPD.GHED.PP.CD
## 16899                                    SH.XPD.HLTH.ZS
## 16900                                 SH.XPD.KHEX.GD.ZS
## 16901                                 SH.XPD.OOPC.CH.ZS
## 16902                                 SH.XPD.OOPC.PC.CD
## 16903                                 SH.XPD.OOPC.PP.CD
## 16904                                 SH.XPD.OOPC.TO.ZS
## 16905                                    SH.XPD.OOPC.ZS
## 16906                                       SH.XPD.PCAP
## 16907                                    SH.XPD.PCAP.GX
## 16908                                 SH.XPD.PCAP.PP.KD
## 16909                                       SH.XPD.PPPC
## 16910                                       SH.XPD.PRIV
## 16911                               SH.XPD.PRIV.PRPP.ZS
## 16912                                    SH.XPD.PRIV.ZS
## 16913                                       SH.XPD.PUBL
## 16914                                 SH.XPD.PUBL.GX.ZS
## 16915                                    SH.XPD.PUBL.ZS
## 16916                                 SH.XPD.PVTD.CH.ZS
## 16917                                 SH.XPD.PVTD.PC.CD
## 16918                                 SH.XPD.PVTD.PP.CD
## 16919                                 SH.XPD.SOSE.GX.ZS
## 16920                                    SH.XPD.TOTL.CD
## 16921                                    SH.XPD.TOTL.ZS
## 16922                                    SI.DST.02ND.20
## 16923                                    SI.DST.03RD.20
## 16924                                    SI.DST.04TH.20
## 16925                                    SI.DST.05TH.20
## 16926                                    SI.DST.10TH.10
## 16927                                       SI.DST.50MD
## 16928                                    SI.DST.FRST.10
## 16929                                    SI.DST.FRST.20
## 16930                                       SI.POV.2DAY
## 16931                                    SI.POV.ATTM.MI
## 16932                                        SI.POV.BPL
## 16933                                       SI.POV.DDAY
## 16934                                    SI.POV.DDAY.14
## 16935                                  SI.POV.DDAY.1564
## 16936                                 SI.POV.DDAY.16.PL
## 16937                                 SI.POV.DDAY.16.PR
## 16938                                 SI.POV.DDAY.16.SG
## 16939                                 SI.POV.DDAY.16.ST
## 16940                                    SI.POV.DDAY.65
## 16941                                    SI.POV.DDAY.CV
## 16942                                    SI.POV.DDAY.FE
## 16943                                    SI.POV.DDAY.FS
## 16944                                    SI.POV.DDAY.MA
## 16945                                    SI.POV.DDAY.MI
## 16946                                    SI.POV.DDAY.RU
## 16947                                    SI.POV.DDAY.SG
## 16948                                    SI.POV.DDAY.SH
## 16949                                    SI.POV.DDAY.TH
## 16950                                    SI.POV.DDAY.UR
## 16951                                    SI.POV.ELEC.MI
## 16952                                    SI.POV.ENRL.MI
## 16953                                       SI.POV.GAP2
## 16954                                       SI.POV.GAPS
## 16955                                       SI.POV.GINI
## 16956                                    SI.POV.GINI.FS
## 16957                                    SI.POV.GINI.SG
## 16958                                    SI.POV.GINI.TH
## 16959                                    SI.POV.HCRT.MI
## 16960                                       SI.POV.LMIC
## 16961                                    SI.POV.LMIC.FS
## 16962                                    SI.POV.LMIC.GP
## 16963                                    SI.POV.LMIC.NO
## 16964                                    SI.POV.LMIC.SG
## 16965                                    SI.POV.LMIC.TH
## 16966                                       SI.POV.MDIM
## 16967                                    SI.POV.MDIM.17
## 16968                                 SI.POV.MDIM.17.XQ
## 16969                                    SI.POV.MDIM.FE
## 16970                                    SI.POV.MDIM.HH
## 16971                                    SI.POV.MDIM.IT
## 16972                                    SI.POV.MDIM.MA
## 16973                                    SI.POV.MDIM.XQ
## 16974                                       SI.POV.NAGP
## 16975                                    SI.POV.NAGP.NC
## 16976                                       SI.POV.NAHC
## 16977                                    SI.POV.NAHC.NC
## 16978                                       SI.POV.NAPL
## 16979                                    SI.POV.NAPR.ZS
## 16980                                       SI.POV.NGAP
## 16981                                       SI.POV.NOP1
## 16982                                       SI.POV.NOP2
## 16983                                       SI.POV.NSEV
## 16984                                       SI.POV.RUGP
## 16985                                       SI.POV.RUHC
## 16986                                    SI.POV.SANI.MI
## 16987                                       SI.POV.UMIC
## 16988                                    SI.POV.UMIC.FS
## 16989                                    SI.POV.UMIC.GP
## 16990                                    SI.POV.UMIC.NO
## 16991                                    SI.POV.UMIC.SG
## 16992                                    SI.POV.UMIC.TH
## 16993                                       SI.POV.URGP
## 16994                                       SI.POV.URHC
## 16995                                    SI.POV.WATR.MI
## 16996                                    SI.POV.XPND.MD
## 16997                                 SI.POV.XPND.MD.ZG
## 16998                                 SI.RMT.COST.IB.ZS
## 16999                                 SI.RMT.COST.OB.ZS
## 17000                                    SI.RMT.COST.ZS
## 17001                                    SI.SPR.BL50.ZS
## 17002                                       SI.SPR.PC40
## 17003                                    SI.SPR.PC40.05
## 17004                                    SI.SPR.PC40.ZG
## 17005                                       SI.SPR.PCAP
## 17006                                    SI.SPR.PCAP.05
## 17007                                    SI.SPR.PCAP.ZG
## 17008                                       SI.SPR.PT10
## 17009                                    SI.SPR.PT10.ZG
## 17010                                       SI.SPR.PT60
## 17011                                    SI.SPR.PT60.ZG
## 17012                                 SL.AGR.0714.FE.ZS
## 17013                                 SL.AGR.0714.MA.ZS
## 17014                                    SL.AGR.0714.ZS
## 17015                              SL.AGR.EMPL.FE.TO.ZS
## 17016                                 SL.AGR.EMPL.FE.ZS
## 17017                                 SL.AGR.EMPL.MA.ZS
## 17018                                    SL.AGR.EMPL.ZS
## 17019                                 SL.AGR.TOTL.IN.ZS
## 17020                                    SL.AGR.TOTL.MF
## 17021                                    SL.AGR.TOTL.ZS
## 17022                                    SL.ALL.SIZE.FE
## 17023                           SL.EMP.1524.SP.FE.NE.ZS
## 17024                              SL.EMP.1524.SP.FE.ZS
## 17025                           SL.EMP.1524.SP.MA.NE.ZS
## 17026                              SL.EMP.1524.SP.MA.ZS
## 17027                              SL.EMP.1524.SP.NE.ZS
## 17028                                 SL.EMP.1524.SP.ZS
## 17029                               SL.EMP.AGR.FRST.FSH
## 17030                                       SL.EMP.CNST
## 17031                                        SL.EMP.ELC
## 17032                                       SL.EMP.FINS
## 17033                                        SL.EMP.IND
## 17034                                 SL.EMP.INSV.FE.ZS
## 17035                                       SL.EMP.MINQ
## 17036                                 SL.EMP.MPYR.FE.ZS
## 17037                                 SL.EMP.MPYR.MA.ZS
## 17038                                    SL.EMP.MPYR.ZS
## 17039                                 SL.EMP.OWAC.FE.ZS
## 17040                                 SL.EMP.OWAC.MA.ZS
## 17041                                    SL.EMP.OWAC.ZS
## 17042                                 SL.EMP.SELF.FE.ZS
## 17043                                 SL.EMP.SELF.MA.ZS
## 17044                                    SL.EMP.SELF.ZS
## 17045                                 SL.EMP.SMGT.FE.ZS
## 17046                                       SL.EMP.SOCL
## 17047                                       SL.EMP.TOTL
## 17048                                    SL.EMP.TOTL.FE
## 17049                                    SL.EMP.TOTL.MA
## 17050                           SL.EMP.TOTL.SP.FE.NE.ZS
## 17051                              SL.EMP.TOTL.SP.FE.ZS
## 17052                           SL.EMP.TOTL.SP.MA.NE.ZS
## 17053                              SL.EMP.TOTL.SP.MA.ZS
## 17054                              SL.EMP.TOTL.SP.NE.ZS
## 17055                                 SL.EMP.TOTL.SP.ZS
## 17056                                       SL.EMP.TRAD
## 17057                                       SL.EMP.TRAN
## 17058                                       SL.EMP.UNDR
## 17059                                 SL.EMP.UNDR.FE.ZS
## 17060                                 SL.EMP.UNDR.MA.ZS
## 17061                                 SL.EMP.VULN.FE.ZS
## 17062                                 SL.EMP.VULN.MA.ZS
## 17063                                    SL.EMP.VULN.ZS
## 17064                                 SL.EMP.WORK.FE.ZS
## 17065                                 SL.EMP.WORK.MA.ZS
## 17066                                    SL.EMP.WORK.ZS
## 17067                                 SL.FAM.0714.FE.ZS
## 17068                                 SL.FAM.0714.MA.ZS
## 17069                                    SL.FAM.0714.ZS
## 17070                                 SL.FAM.WORK.FE.ZS
## 17071                                 SL.FAM.WORK.MA.ZS
## 17072                                    SL.FAM.WORK.ZS
## 17073                                 SL.GDP.PCAP.EM.KD
## 17074                              SL.GDP.PCAP.EM.KD.ZG
## 17075                                 SL.GDP.PCAP.EM.XD
## 17076                                 SL.IND.EMPL.FE.ZS
## 17077                                 SL.IND.EMPL.MA.ZS
## 17078                                    SL.IND.EMPL.ZS
## 17079                                 SL.ISV.IFRM.FE.ZS
## 17080                                 SL.ISV.IFRM.MA.ZS
## 17081                                    SL.ISV.IFRM.ZS
## 17082                                 SL.MNF.0714.FE.ZS
## 17083                                 SL.MNF.0714.MA.ZS
## 17084                                    SL.MNF.0714.ZS
## 17085                                    SL.MNF.WAGE.FM
## 17086                                 SL.SLF.0714.FE.ZS
## 17087                                 SL.SLF.0714.MA.ZS
## 17088                                    SL.SLF.0714.ZS
## 17089                                 SL.SRV.0714.FE.ZS
## 17090                                 SL.SRV.0714.MA.ZS
## 17091                                    SL.SRV.0714.ZS
## 17092                                 SL.SRV.EMPL.FE.ZS
## 17093                                 SL.SRV.EMPL.MA.ZS
## 17094                                    SL.SRV.EMPL.ZS
## 17095                                            SL.TLF
## 17096                                 SL.TLF.0714.FE.ZS
## 17097                                 SL.TLF.0714.MA.ZS
## 17098                              SL.TLF.0714.SW.FE.TM
## 17099                              SL.TLF.0714.SW.FE.ZS
## 17100                              SL.TLF.0714.SW.MA.TM
## 17101                              SL.TLF.0714.SW.MA.ZS
## 17102                                 SL.TLF.0714.SW.TM
## 17103                                 SL.TLF.0714.SW.ZS
## 17104                              SL.TLF.0714.WK.FE.TM
## 17105                              SL.TLF.0714.WK.FE.ZS
## 17106                              SL.TLF.0714.WK.MA.TM
## 17107                              SL.TLF.0714.WK.MA.ZS
## 17108                                 SL.TLF.0714.WK.TM
## 17109                                 SL.TLF.0714.WK.ZS
## 17110                                    SL.TLF.0714.ZS
## 17111                                 SL.TLF.1524.FE.IN
## 17112                                 SL.TLF.1524.FE.ZS
## 17113                                    SL.TLF.1524.IN
## 17114                                 SL.TLF.1524.MA.IN
## 17115                                 SL.TLF.1524.MA.ZS
## 17116                                 SL.TLF.1564.FE.IN
## 17117                                 SL.TLF.1564.FE.ZS
## 17118                                    SL.TLF.1564.IN
## 17119                                 SL.TLF.1564.MA.IN
## 17120                                 SL.TLF.1564.MA.ZS
## 17121                         SL.TLF.ACTI.1524.FE.NE.ZS
## 17122                            SL.TLF.ACTI.1524.FE.ZS
## 17123                         SL.TLF.ACTI.1524.MA.NE.ZS
## 17124                            SL.TLF.ACTI.1524.MA.ZS
## 17125                            SL.TLF.ACTI.1524.NE.ZS
## 17126                               SL.TLF.ACTI.1524.ZS
## 17127                                 SL.TLF.ACTI.FE.ZS
## 17128                                 SL.TLF.ACTI.MA.ZS
## 17129                                    SL.TLF.ACTI.ZS
## 17130                                 SL.TLF.ADVN.FE.ZS
## 17131                                 SL.TLF.ADVN.MA.ZS
## 17132                                    SL.TLF.ADVN.ZS
## 17133                                 SL.TLF.BASC.FE.ZS
## 17134                                 SL.TLF.BASC.MA.ZS
## 17135                                    SL.TLF.BASC.ZS
## 17136                            SL.TLF.CACT.2534.FE.ZS
## 17137                            SL.TLF.CACT.2534.MA.ZS
## 17138                               SL.TLF.CACT.2534.ZS
## 17139                            SL.TLF.CACT.2554.FE.ZS
## 17140                            SL.TLF.CACT.2554.MA.ZS
## 17141                               SL.TLF.CACT.2554.ZS
## 17142                            SL.TLF.CACT.3554.FE.ZS
## 17143                            SL.TLF.CACT.3554.MA.ZS
## 17144                               SL.TLF.CACT.3554.ZS
## 17145                            SL.TLF.CACT.5564.FE.ZS
## 17146                            SL.TLF.CACT.5564.MA.ZS
## 17147                               SL.TLF.CACT.5564.ZS
## 17148                            SL.TLF.CACT.65UP.FE.ZS
## 17149                            SL.TLF.CACT.65UP.MA.ZS
## 17150                               SL.TLF.CACT.65UP.ZS
## 17151                              SL.TLF.CACT.FE.NE.ZS
## 17152                                 SL.TLF.CACT.FE.ZS
## 17153                              SL.TLF.CACT.FM.NE.ZS
## 17154                                 SL.TLF.CACT.FM.ZS
## 17155                              SL.TLF.CACT.MA.NE.ZS
## 17156                                 SL.TLF.CACT.MA.ZS
## 17157                                 SL.TLF.CACT.NE.ZS
## 17158                                    SL.TLF.CACT.ZS
## 17159                                       SL.TLF.CHLD
## 17160                                    SL.TLF.CHLD.ZS
## 17161                                 SL.TLF.INTM.FE.ZS
## 17162                                 SL.TLF.INTM.MA.ZS
## 17163                                    SL.TLF.INTM.ZS
## 17164                                 SL.TLF.PART.FE.ZS
## 17165                                 SL.TLF.PART.MA.ZS
## 17166                              SL.TLF.PART.TL.FE.ZS
## 17167                                    SL.TLF.PART.ZS
## 17168                                 SL.TLF.PRIM.FE.ZS
## 17169                                 SL.TLF.PRIM.MA.ZS
## 17170                                    SL.TLF.PRIM.ZS
## 17171                                 SL.TLF.SECO.FE.ZS
## 17172                                 SL.TLF.SECO.MA.ZS
## 17173                                    SL.TLF.SECO.ZS
## 17174                                 SL.TLF.TERT.FE.ZS
## 17175                                 SL.TLF.TERT.MA.ZS
## 17176                                    SL.TLF.TERT.ZS
## 17177                                 SL.TLF.TOTL.FE.IN
## 17178                              SL.TLF.TOTL.FE.IN.ZS
## 17179                                 SL.TLF.TOTL.FE.ZS
## 17180                                    SL.TLF.TOTL.IN
## 17181                                 SL.TLF.TOTL.IN.ZG
## 17182                                 SL.TLF.TOTL.MA.IN
## 17183                                 SL.TLF.TOTL.MA.ZS
## 17184                              SL.UEM.1524.FE.NE.ZS
## 17185                                 SL.UEM.1524.FE.ZS
## 17186                              SL.UEM.1524.FM.NE.ZS
## 17187                                 SL.UEM.1524.FM.ZS
## 17188                              SL.UEM.1524.MA.NE.ZS
## 17189                                 SL.UEM.1524.MA.ZS
## 17190                                 SL.UEM.1524.NE.ZS
## 17191                                    SL.UEM.1524.ZS
## 17192                                 SL.UEM.ADVN.FE.ZS
## 17193                                 SL.UEM.ADVN.MA.ZS
## 17194                                    SL.UEM.ADVN.ZS
## 17195                                 SL.UEM.BASC.FE.ZS
## 17196                                 SL.UEM.BASC.MA.ZS
## 17197                                    SL.UEM.BASC.ZS
## 17198                                 SL.UEM.INTM.FE.ZS
## 17199                                 SL.UEM.INTM.MA.ZS
## 17200                                    SL.UEM.INTM.ZS
## 17201                                 SL.UEM.LTRM.FE.ZS
## 17202                                 SL.UEM.LTRM.MA.ZS
## 17203                                    SL.UEM.LTRM.ZS
## 17204                                 SL.UEM.NEET.FE.ZS
## 17205                                 SL.UEM.NEET.MA.ZS
## 17206                                    SL.UEM.NEET.ZS
## 17207                                 SL.UEM.PRIM.FE.ZS
## 17208                                 SL.UEM.PRIM.MA.ZS
## 17209                                    SL.UEM.PRIM.ZS
## 17210                                 SL.UEM.SECO.FE.ZS
## 17211                                 SL.UEM.SECO.MA.ZS
## 17212                                    SL.UEM.SECO.ZS
## 17213                                 SL.UEM.TERT.FE.ZS
## 17214                                 SL.UEM.TERT.MA.ZS
## 17215                                    SL.UEM.TERT.ZS
## 17216                                       SL.UEM.TOTL
## 17217                              SL.UEM.TOTL.FE.NE.ZS
## 17218                                 SL.UEM.TOTL.FE.ZS
## 17219                              SL.UEM.TOTL.MA.NE.ZS
## 17220                                 SL.UEM.TOTL.MA.ZS
## 17221                                 SL.UEM.TOTL.NE.ZS
## 17222                                    SL.UEM.TOTL.ZS
## 17223                                 SL.WAG.0714.FE.ZS
## 17224                                 SL.WAG.0714.MA.ZS
## 17225                                    SL.WAG.0714.ZS
## 17226                                    SM.EMI.TERT.ZS
## 17227                                       SM.MMR.DTHS
## 17228                                       SM.POP.FRGN
## 17229                                    SM.POP.FRGN.ZS
## 17230                                       SM.POP.IASY
## 17231                                       SM.POP.IFRN
## 17232                                       SM.POP.NETM
## 17233                                       SM.POP.REFG
## 17234                                    SM.POP.REFG.OR
## 17235                                       SM.POP.TOTL
## 17236                                    SM.POP.TOTL.ZS
## 17237                                    SM.TLF.FRGN.ZS
## 17238                                       SM.TLF.IFRN
## 17239                                       SN.ITK.DEFC
## 17240                                   SN.ITK.DEFC.POP
## 17241                                    SN.ITK.DEFC.ZS
## 17242                                       SN.ITK.DFCT
## 17243                                       SN.ITK.DPTH
## 17244                                    SN.ITK.MSFI.ZS
## 17245                                    SN.ITK.SALT.ZS
## 17246                                    SN.ITK.SVFI.ZS
## 17247                                 SN.ITK.VAPP.Q1.ZS
## 17248                                 SN.ITK.VAPP.Q2.ZS
## 17249                                 SN.ITK.VAPP.Q3.ZS
## 17250                                 SN.ITK.VAPP.Q4.ZS
## 17251                                 SN.ITK.VAPP.Q5.ZS
## 17252                                 SN.ITK.VITA.Q1.ZS
## 17253                                 SN.ITK.VITA.Q2.ZS
## 17254                                 SN.ITK.VITA.Q3.ZS
## 17255                                 SN.ITK.VITA.Q4.ZS
## 17256                                 SN.ITK.VITA.Q5.ZS
## 17257                                    SN.ITK.VITA.ZS
## 17258                                       SN.PRD.FOOD
## 17259                                    SN.PRD.FOOD.ZC
## 17260                                 SN.SH.STA.MALN.ZS
## 17261                                 SN.SH.STA.OWGH.ZS
## 17262                                 SN.SH.STA.STNT.ZS
## 17263                                 SN.SH.STA.WAST.ZS
## 17264                                 SN.SH.SVR.WAST.ZS
## 17265                                       SN.STA.FPRD
## 17266                                       SP.ADO.TFRT
## 17267                                    SP.BRT.CRUD.ZT
## 17268                                    SP.DTH.INFR.ZS
## 17269                                    SP.DTH.REPT.ZS
## 17270                                   SP.DYN.1ANTE.ZS
## 17271                                   SP.DYN.4ANTE.ZS
## 17272                                    SP.DYN.AMRT.FE
## 17273                                    SP.DYN.AMRT.MA
## 17274                                       SP.DYN.CBRT
## 17275                                    SP.DYN.CBRT.IN
## 17276                                    SP.DYN.CDRT.IN
## 17277                                    SP.DYN.CEBN.Q1
## 17278                                    SP.DYN.CEBN.Q2
## 17279                                    SP.DYN.CEBN.Q3
## 17280                                    SP.DYN.CEBN.Q4
## 17281                                    SP.DYN.CEBN.Q5
## 17282                                 SP.DYN.CONM.Q1.ZS
## 17283                                 SP.DYN.CONM.Q2.ZS
## 17284                                 SP.DYN.CONM.Q3.ZS
## 17285                                 SP.DYN.CONM.Q4.ZS
## 17286                                 SP.DYN.CONM.Q5.ZS
## 17287                                 SP.DYN.CONM.SA.ZS
## 17288                                    SP.DYN.CONM.ZS
## 17289                                SP.DYN.CONU.CDM.ZS
## 17290                                SP.DYN.CONU.MDN.ZS
## 17291                                 SP.DYN.CONU.Q1.ZS
## 17292                                 SP.DYN.CONU.Q2.ZS
## 17293                                 SP.DYN.CONU.Q3.ZS
## 17294                                 SP.DYN.CONU.Q4.ZS
## 17295                                 SP.DYN.CONU.Q5.ZS
## 17296                                 SP.DYN.CONU.SA.ZS
## 17297                                    SP.DYN.CONU.ZS
## 17298                                       SP.DYN.IMRT
## 17299                                 SP.DYN.IMRT.FE.IN
## 17300                                    SP.DYN.IMRT.IN
## 17301                                 SP.DYN.IMRT.MA.IN
## 17302                                    SP.DYN.IMRT.Q1
## 17303                                    SP.DYN.IMRT.Q2
## 17304                                    SP.DYN.IMRT.Q3
## 17305                                    SP.DYN.IMRT.Q4
## 17306                                    SP.DYN.IMRT.Q5
## 17307                                 SP.DYN.LE00.FE.IN
## 17308                                    SP.DYN.LE00.IN
## 17309                                 SP.DYN.LE00.MA.IN
## 17310                                 SP.DYN.LE60.FE.IN
## 17311                                 SP.DYN.LE60.MA.IN
## 17312                                    SP.DYN.LIFE.MF
## 17313                                    SP.DYN.SMAM.FE
## 17314                                    SP.DYN.SMAM.MA
## 17315                                       SP.DYN.TFRT
## 17316                                    SP.DYN.TFRT.IN
## 17317                                    SP.DYN.TFRT.Q1
## 17318                                    SP.DYN.TFRT.Q2
## 17319                                    SP.DYN.TFRT.Q3
## 17320                                    SP.DYN.TFRT.Q4
## 17321                                    SP.DYN.TFRT.Q5
## 17322                                 SP.DYN.TO65.FE.ZS
## 17323                                 SP.DYN.TO65.MA.ZS
## 17324                                       SP.DYN.WFRT
## 17325                                    SP.DYN.WFRT.Q1
## 17326                                    SP.DYN.WFRT.Q2
## 17327                                    SP.DYN.WFRT.Q3
## 17328                                    SP.DYN.WFRT.Q4
## 17329                                    SP.DYN.WFRT.Q5
## 17330                                 SP.EXCHG.RATE.ICP
## 17331                                    SP.FER.TOTL.ZR
## 17332                                    SP.HOU.FEMA.ZS
## 17333                                 SP.M15.2024.FE.ZS
## 17334                                 SP.M18.2024.FE.ZS
## 17335                                    SP.MOR.INFA.ZT
## 17336                                 SP.MTR.1519.Q1.ZS
## 17337                                 SP.MTR.1519.Q2.ZS
## 17338                                 SP.MTR.1519.Q3.ZS
## 17339                                 SP.MTR.1519.Q4.ZS
## 17340                                 SP.MTR.1519.Q5.ZS
## 17341                                    SP.MTR.1519.ZS
## 17342                                    SP.POP.0004.FE
## 17343                                 SP.POP.0004.FE.5Y
## 17344                                    SP.POP.0004.MA
## 17345                                 SP.POP.0004.MA.5Y
## 17346                                 SP.POP.0014.FE.IN
## 17347                                 SP.POP.0014.FE.ZS
## 17348                                 SP.POP.0014.MA.IN
## 17349                                 SP.POP.0014.MA.ZS
## 17350                                    SP.POP.0014.TO
## 17351                                 SP.POP.0014.TO.ZS
## 17352                                 SP.POP.0024.TO.ZS
## 17353                                 SP.POP.0305.FE.UN
## 17354                                 SP.POP.0305.MA.UN
## 17355                                 SP.POP.0305.TO.UN
## 17356                                 SP.POP.0406.FE.UN
## 17357                                 SP.POP.0406.MA.UN
## 17358                                 SP.POP.0406.TO.UN
## 17359                                    SP.POP.0509.FE
## 17360                                 SP.POP.0509.FE.5Y
## 17361                                 SP.POP.0509.FE.UN
## 17362                                    SP.POP.0509.MA
## 17363                                 SP.POP.0509.MA.5Y
## 17364                                 SP.POP.0509.MA.UN
## 17365                                 SP.POP.0509.TO.UN
## 17366                                 SP.POP.0510.FE.UN
## 17367                                 SP.POP.0510.MA.UN
## 17368                                 SP.POP.0510.TO.UN
## 17369                                 SP.POP.0511.FE.UN
## 17370                                 SP.POP.0511.MA.UN
## 17371                                 SP.POP.0511.TO.UN
## 17372                                 SP.POP.0609.FE.UN
## 17373                                 SP.POP.0609.MA.UN
## 17374                                 SP.POP.0609.TO.UN
## 17375                                 SP.POP.0610.FE.UN
## 17376                                 SP.POP.0610.MA.UN
## 17377                                 SP.POP.0610.TO.UN
## 17378                                 SP.POP.0611.FE.UN
## 17379                                 SP.POP.0611.MA.UN
## 17380                                 SP.POP.0611.TO.UN
## 17381                                 SP.POP.0612.FE.UN
## 17382                                 SP.POP.0612.MA.UN
## 17383                                 SP.POP.0612.TO.UN
## 17384                                 SP.POP.0709.FE.UN
## 17385                                 SP.POP.0709.MA.UN
## 17386                                 SP.POP.0709.TO.UN
## 17387                                 SP.POP.0710.FE.UN
## 17388                                 SP.POP.0710.MA.UN
## 17389                                 SP.POP.0710.TO.UN
## 17390                                 SP.POP.0711.FE.UN
## 17391                                 SP.POP.0711.MA.UN
## 17392                                 SP.POP.0711.TO.UN
## 17393                                 SP.POP.0712.FE.UN
## 17394                                 SP.POP.0712.MA.UN
## 17395                                 SP.POP.0712.TO.UN
## 17396                                 SP.POP.0713.FE.UN
## 17397                                 SP.POP.0713.MA.UN
## 17398                                 SP.POP.0713.TO.UN
## 17399                                    SP.POP.1014.FE
## 17400                                 SP.POP.1014.FE.5Y
## 17401                                 SP.POP.1014.FE.UN
## 17402                                    SP.POP.1014.MA
## 17403                                 SP.POP.1014.MA.5Y
## 17404                                 SP.POP.1014.MA.UN
## 17405                                 SP.POP.1014.TO.UN
## 17406                                 SP.POP.1015.FE.UN
## 17407                                 SP.POP.1015.MA.UN
## 17408                                 SP.POP.1015.TO.UN
## 17409                                 SP.POP.1016.FE.UN
## 17410                                 SP.POP.1016.MA.UN
## 17411                                 SP.POP.1016.TO.UN
## 17412                                 SP.POP.1017.FE.UN
## 17413                                 SP.POP.1017.MA.UN
## 17414                                 SP.POP.1017.TO.UN
## 17415                                 SP.POP.1018.FE.UN
## 17416                                 SP.POP.1018.MA.UN
## 17417                                 SP.POP.1018.TO.UN
## 17418                                 SP.POP.1115.FE.UN
## 17419                                 SP.POP.1115.MA.UN
## 17420                                 SP.POP.1115.TO.UN
## 17421                                 SP.POP.1116.FE.UN
## 17422                                 SP.POP.1116.MA.UN
## 17423                                 SP.POP.1116.TO.UN
## 17424                                 SP.POP.1117.FE.UN
## 17425                                 SP.POP.1117.MA.UN
## 17426                                 SP.POP.1117.TO.UN
## 17427                                 SP.POP.1118.FE.UN
## 17428                                 SP.POP.1118.MA.UN
## 17429                                 SP.POP.1118.TO.UN
## 17430                                 SP.POP.1215.FE.UN
## 17431                                 SP.POP.1215.MA.UN
## 17432                                 SP.POP.1215.TO.UN
## 17433                                 SP.POP.1216.FE.UN
## 17434                                 SP.POP.1216.MA.UN
## 17435                                 SP.POP.1216.TO.UN
## 17436                                 SP.POP.1217.FE.UN
## 17437                                 SP.POP.1217.MA.UN
## 17438                                 SP.POP.1217.TO.UN
## 17439                                 SP.POP.1218.FE.UN
## 17440                                 SP.POP.1218.MA.UN
## 17441                                 SP.POP.1218.TO.UN
## 17442                                 SP.POP.1316.FE.UN
## 17443                                 SP.POP.1316.MA.UN
## 17444                                 SP.POP.1316.TO.UN
## 17445                                 SP.POP.1317.FE.UN
## 17446                                 SP.POP.1317.MA.UN
## 17447                                 SP.POP.1317.TO.UN
## 17448                                 SP.POP.1318.FE.UN
## 17449                                 SP.POP.1318.MA.UN
## 17450                                 SP.POP.1318.TO.UN
## 17451                                 SP.POP.1319.FE.UN
## 17452                                 SP.POP.1319.MA.UN
## 17453                                 SP.POP.1319.TO.UN
## 17454                                 SP.POP.1418.FE.UN
## 17455                                 SP.POP.1418.MA.UN
## 17456                                 SP.POP.1418.TO.UN
## 17457                                 SP.POP.1419.FE.UN
## 17458                                 SP.POP.1419.MA.UN
## 17459                                 SP.POP.1419.TO.UN
## 17460                                    SP.POP.1519.FE
## 17461                                 SP.POP.1519.FE.5Y
## 17462                                    SP.POP.1519.MA
## 17463                                 SP.POP.1519.MA.5Y
## 17464                                 SP.POP.1524.FE.UN
## 17465                                 SP.POP.1524.MA.UN
## 17466                                 SP.POP.1524.TO.UN
## 17467                                 SP.POP.1564.FE.IN
## 17468                                 SP.POP.1564.FE.ZS
## 17469                                    SP.POP.1564.IN
## 17470                                 SP.POP.1564.IN.ZS
## 17471                                 SP.POP.1564.MA.IN
## 17472                                 SP.POP.1564.MA.ZS
## 17473                                    SP.POP.1564.TO
## 17474                                 SP.POP.1564.TO.ZS
## 17475                                    SP.POP.2024.FE
## 17476                                 SP.POP.2024.FE.5Y
## 17477                                    SP.POP.2024.MA
## 17478                                 SP.POP.2024.MA.5Y
## 17479                                    SP.POP.2529.FE
## 17480                                 SP.POP.2529.FE.5Y
## 17481                                    SP.POP.2529.MA
## 17482                                 SP.POP.2529.MA.5Y
## 17483                                    SP.POP.3034.FE
## 17484                                 SP.POP.3034.FE.5Y
## 17485                                    SP.POP.3034.MA
## 17486                                 SP.POP.3034.MA.5Y
## 17487                                    SP.POP.3539.FE
## 17488                                 SP.POP.3539.FE.5Y
## 17489                                    SP.POP.3539.MA
## 17490                                 SP.POP.3539.MA.5Y
## 17491                                    SP.POP.4044.FE
## 17492                                 SP.POP.4044.FE.5Y
## 17493                                    SP.POP.4044.MA
## 17494                                 SP.POP.4044.MA.5Y
## 17495                                    SP.POP.4549.FE
## 17496                                 SP.POP.4549.FE.5Y
## 17497                                    SP.POP.4549.MA
## 17498                                 SP.POP.4549.MA.5Y
## 17499                                    SP.POP.5054.FE
## 17500                                 SP.POP.5054.FE.5Y
## 17501                                    SP.POP.5054.MA
## 17502                                 SP.POP.5054.MA.5Y
## 17503                                    SP.POP.5559.FE
## 17504                                 SP.POP.5559.FE.5Y
## 17505                                    SP.POP.5559.MA
## 17506                                 SP.POP.5559.MA.5Y
## 17507                                    SP.POP.6064.FE
## 17508                                 SP.POP.6064.FE.5Y
## 17509                                    SP.POP.6064.MA
## 17510                                 SP.POP.6064.MA.5Y
## 17511                                    SP.POP.6569.FE
## 17512                                 SP.POP.6569.FE.5Y
## 17513                                    SP.POP.6569.MA
## 17514                                 SP.POP.6569.MA.5Y
## 17515                                 SP.POP.65UP.FE.IN
## 17516                                 SP.POP.65UP.FE.ZS
## 17517                                 SP.POP.65UP.MA.IN
## 17518                                 SP.POP.65UP.MA.ZS
## 17519                                 SP.POP.65UP.MF.ZS
## 17520                                    SP.POP.65UP.TO
## 17521                                 SP.POP.65UP.TO.ZS
## 17522                                    SP.POP.7074.FE
## 17523                                 SP.POP.7074.FE.5Y
## 17524                                    SP.POP.7074.MA
## 17525                                 SP.POP.7074.MA.5Y
## 17526                                    SP.POP.7579.FE
## 17527                                 SP.POP.7579.FE.5Y
## 17528                                    SP.POP.7579.MA
## 17529                                 SP.POP.7579.MA.5Y
## 17530                                    SP.POP.80UP.FE
## 17531                                 SP.POP.80UP.FE.5Y
## 17532                                    SP.POP.80UP.MA
## 17533                                 SP.POP.80UP.MA.5Y
## 17534                                 SP.POP.AG00.FE.IN
## 17535                                 SP.POP.AG00.FE.UN
## 17536                                 SP.POP.AG00.MA.IN
## 17537                                 SP.POP.AG00.MA.UN
## 17538                                 SP.POP.AG00.TO.UN
## 17539                                 SP.POP.AG01.FE.IN
## 17540                                 SP.POP.AG01.FE.UN
## 17541                                 SP.POP.AG01.MA.IN
## 17542                                 SP.POP.AG01.MA.UN
## 17543                                 SP.POP.AG01.TO.UN
## 17544                                 SP.POP.AG02.FE.IN
## 17545                                 SP.POP.AG02.FE.UN
## 17546                                 SP.POP.AG02.MA.IN
## 17547                                 SP.POP.AG02.MA.UN
## 17548                                 SP.POP.AG02.TO.UN
## 17549                                 SP.POP.AG03.FE.IN
## 17550                                 SP.POP.AG03.FE.UN
## 17551                                 SP.POP.AG03.MA.IN
## 17552                                 SP.POP.AG03.MA.UN
## 17553                                 SP.POP.AG03.TO.UN
## 17554                                 SP.POP.AG04.FE.IN
## 17555                                 SP.POP.AG04.FE.UN
## 17556                                 SP.POP.AG04.MA.IN
## 17557                                 SP.POP.AG04.MA.UN
## 17558                                 SP.POP.AG04.TO.UN
## 17559                                 SP.POP.AG05.FE.IN
## 17560                                 SP.POP.AG05.FE.UN
## 17561                                 SP.POP.AG05.MA.IN
## 17562                                 SP.POP.AG05.MA.UN
## 17563                                 SP.POP.AG05.TO.UN
## 17564                                 SP.POP.AG06.FE.IN
## 17565                                 SP.POP.AG06.FE.UN
## 17566                                 SP.POP.AG06.MA.IN
## 17567                                 SP.POP.AG06.MA.UN
## 17568                                 SP.POP.AG06.TO.UN
## 17569                                 SP.POP.AG07.FE.IN
## 17570                                 SP.POP.AG07.FE.UN
## 17571                                 SP.POP.AG07.MA.IN
## 17572                                 SP.POP.AG07.MA.UN
## 17573                                 SP.POP.AG07.TO.UN
## 17574                                 SP.POP.AG08.FE.IN
## 17575                                 SP.POP.AG08.FE.UN
## 17576                                 SP.POP.AG08.MA.IN
## 17577                                 SP.POP.AG08.MA.UN
## 17578                                 SP.POP.AG08.TO.UN
## 17579                                 SP.POP.AG09.FE.IN
## 17580                                 SP.POP.AG09.FE.UN
## 17581                                 SP.POP.AG09.MA.IN
## 17582                                 SP.POP.AG09.MA.UN
## 17583                                 SP.POP.AG09.TO.UN
## 17584                                 SP.POP.AG10.FE.IN
## 17585                                 SP.POP.AG10.FE.UN
## 17586                                 SP.POP.AG10.MA.IN
## 17587                                 SP.POP.AG10.MA.UN
## 17588                                 SP.POP.AG10.TO.UN
## 17589                                 SP.POP.AG11.FE.IN
## 17590                                 SP.POP.AG11.FE.UN
## 17591                                 SP.POP.AG11.MA.IN
## 17592                                 SP.POP.AG11.MA.UN
## 17593                                 SP.POP.AG11.TO.UN
## 17594                                 SP.POP.AG12.FE.IN
## 17595                                 SP.POP.AG12.FE.UN
## 17596                                 SP.POP.AG12.MA.IN
## 17597                                 SP.POP.AG12.MA.UN
## 17598                                 SP.POP.AG12.TO.UN
## 17599                                 SP.POP.AG13.FE.IN
## 17600                                 SP.POP.AG13.FE.UN
## 17601                                 SP.POP.AG13.MA.IN
## 17602                                 SP.POP.AG13.MA.UN
## 17603                                 SP.POP.AG13.TO.UN
## 17604                                 SP.POP.AG14.FE.IN
## 17605                                 SP.POP.AG14.FE.UN
## 17606                                 SP.POP.AG14.MA.IN
## 17607                                 SP.POP.AG14.MA.UN
## 17608                                 SP.POP.AG14.TO.UN
## 17609                                 SP.POP.AG15.FE.IN
## 17610                                 SP.POP.AG15.FE.UN
## 17611                                 SP.POP.AG15.MA.IN
## 17612                                 SP.POP.AG15.MA.UN
## 17613                                 SP.POP.AG15.TO.UN
## 17614                                 SP.POP.AG16.FE.IN
## 17615                                 SP.POP.AG16.FE.UN
## 17616                                 SP.POP.AG16.MA.IN
## 17617                                 SP.POP.AG16.MA.UN
## 17618                                 SP.POP.AG16.TO.UN
## 17619                                 SP.POP.AG17.FE.IN
## 17620                                 SP.POP.AG17.FE.UN
## 17621                                 SP.POP.AG17.MA.IN
## 17622                                 SP.POP.AG17.MA.UN
## 17623                                 SP.POP.AG17.TO.UN
## 17624                                 SP.POP.AG18.FE.IN
## 17625                                 SP.POP.AG18.FE.UN
## 17626                                 SP.POP.AG18.MA.IN
## 17627                                 SP.POP.AG18.MA.UN
## 17628                                 SP.POP.AG18.TO.UN
## 17629                                 SP.POP.AG19.FE.IN
## 17630                                 SP.POP.AG19.FE.UN
## 17631                                 SP.POP.AG19.MA.IN
## 17632                                 SP.POP.AG19.MA.UN
## 17633                                 SP.POP.AG19.TO.UN
## 17634                                 SP.POP.AG20.FE.IN
## 17635                                 SP.POP.AG20.FE.UN
## 17636                                 SP.POP.AG20.MA.IN
## 17637                                 SP.POP.AG20.MA.UN
## 17638                                 SP.POP.AG20.TO.UN
## 17639                                 SP.POP.AG21.FE.IN
## 17640                                 SP.POP.AG21.FE.UN
## 17641                                 SP.POP.AG21.MA.IN
## 17642                                 SP.POP.AG21.MA.UN
## 17643                                 SP.POP.AG21.TO.UN
## 17644                                 SP.POP.AG22.FE.IN
## 17645                                 SP.POP.AG22.FE.UN
## 17646                                 SP.POP.AG22.MA.IN
## 17647                                 SP.POP.AG22.MA.UN
## 17648                                 SP.POP.AG22.TO.UN
## 17649                                 SP.POP.AG23.FE.IN
## 17650                                 SP.POP.AG23.FE.UN
## 17651                                 SP.POP.AG23.MA.IN
## 17652                                 SP.POP.AG23.MA.UN
## 17653                                 SP.POP.AG23.TO.UN
## 17654                                 SP.POP.AG24.FE.IN
## 17655                                 SP.POP.AG24.FE.UN
## 17656                                 SP.POP.AG24.MA.IN
## 17657                                 SP.POP.AG24.MA.UN
## 17658                                 SP.POP.AG24.TO.UN
## 17659                                 SP.POP.AG25.FE.IN
## 17660                                 SP.POP.AG25.FE.UN
## 17661                                 SP.POP.AG25.MA.IN
## 17662                                 SP.POP.AG25.MA.UN
## 17663                                 SP.POP.AG25.TO.UN
## 17664                                    SP.POP.BRTH.MF
## 17665                                       SP.POP.DPND
## 17666                                    SP.POP.DPND.OL
## 17667                                    SP.POP.DPND.YG
## 17668                                       SP.POP.GROW
## 17669                                    SP.POP.LAND.ZS
## 17670                                    SP.POP.SCIE.RD
## 17671                                 SP.POP.SCIE.RD.P6
## 17672                                    SP.POP.TECH.RD
## 17673                                 SP.POP.TECH.RD.P6
## 17674                                       SP.POP.TOTL
## 17675                                 SP.POP.TOTL.FE.IN
## 17676                                 SP.POP.TOTL.FE.ZS
## 17677                                   SP.POP.TOTL.ICP
## 17678                                SP.POP.TOTL.ICP.ZS
## 17679                                 SP.POP.TOTL.MA.IN
## 17680                                 SP.POP.TOTL.MA.ZS
## 17681                                    SP.POP.TOTL.ZS
## 17682                                 SP.PRE.TOTL.FE.IN
## 17683                                    SP.PRE.TOTL.IN
## 17684                                 SP.PRE.TOTL.MA.IN
## 17685                                    SP.PRM.GRAD.FE
## 17686                                    SP.PRM.GRAD.MA
## 17687                                    SP.PRM.GRAD.TO
## 17688                                 SP.PRM.TOTL.FE.IN
## 17689                                    SP.PRM.TOTL.IN
## 17690                                 SP.PRM.TOTL.MA.IN
## 17691                                 SP.REG.BRTH.FE.ZS
## 17692                                 SP.REG.BRTH.MA.ZS
## 17693                                 SP.REG.BRTH.Q1.ZS
## 17694                                 SP.REG.BRTH.Q2.ZS
## 17695                                 SP.REG.BRTH.Q3.ZS
## 17696                                 SP.REG.BRTH.Q4.ZS
## 17697                                 SP.REG.BRTH.Q5.ZS
## 17698                                 SP.REG.BRTH.RU.ZS
## 17699                                 SP.REG.BRTH.UR.ZS
## 17700                                    SP.REG.BRTH.ZS
## 17701                                    SP.REG.DTHS.ZS
## 17702                                       SP.RUR.TOTL
## 17703                                 SP.RUR.TOTL.FE.ZS
## 17704                                 SP.RUR.TOTL.MA.ZS
## 17705                                    SP.RUR.TOTL.ZG
## 17706                                    SP.RUR.TOTL.ZS
## 17707                                 SP.SEC.LTOT.FE.IN
## 17708                                    SP.SEC.LTOT.IN
## 17709                                 SP.SEC.LTOT.MA.IN
## 17710                                 SP.SEC.TOTL.FE.IN
## 17711                                    SP.SEC.TOTL.IN
## 17712                                 SP.SEC.TOTL.MA.IN
## 17713                                 SP.SEC.UTOT.FE.IN
## 17714                                    SP.SEC.UTOT.IN
## 17715                                 SP.SEC.UTOT.MA.IN
## 17716                                 SP.TER.TOTL.FE.IN
## 17717                                    SP.TER.TOTL.IN
## 17718                                 SP.TER.TOTL.MA.IN
## 17719                                       SP.URB.GROW
## 17720                                       SP.URB.LCTY
## 17721                                 SP.URB.LCTY.UR.ZS
## 17722                                       SP.URB.MCTY
## 17723                                 SP.URB.MCTY.UR.ZS
## 17724                                       SP.URB.TOTL
## 17725                                 SP.URB.TOTL.FE.ZS
## 17726                                 SP.URB.TOTL.IN.ZS
## 17727                                 SP.URB.TOTL.MA.ZS
## 17728                                    SP.URB.TOTL.ZS
## 17729                                 SP.UWT.LMTG.Q1.ZS
## 17730                                 SP.UWT.LMTG.Q2.ZS
## 17731                                 SP.UWT.LMTG.Q3.ZS
## 17732                                 SP.UWT.LMTG.Q4.ZS
## 17733                                 SP.UWT.LMTG.Q5.ZS
## 17734                                 SP.UWT.SPCG.Q1.ZS
## 17735                                 SP.UWT.SPCG.Q2.ZS
## 17736                                 SP.UWT.SPCG.Q3.ZS
## 17737                                 SP.UWT.SPCG.Q4.ZS
## 17738                                 SP.UWT.SPCG.Q5.ZS
## 17739                                       SP.UWT.TFRT
## 17740                                 SP.UWT.TFRT.Q1.ZS
## 17741                                 SP.UWT.TFRT.Q2.ZS
## 17742                                 SP.UWT.TFRT.Q3.ZS
## 17743                                 SP.UWT.TFRT.Q4.ZS
## 17744                                 SP.UWT.TFRT.Q5.ZS
## 17745                                SPI.D1.5.CHLD.MORT
## 17746                        SPI.D1.5.DT.TDS.DPPF.XP.ZS
## 17747                                      SPI.D1.5.LFP
## 17748                                      SPI.D1.5.POV
## 17749                           SPI.D1.5.SAFE.MAN.WATER
## 17750                                     SPI.D2.1.GDDS
## 17751                        SPI.D2.2.Openness.subscore
## 17752                                     SPI.D2.3.DSAS
## 17753                                     SPI.D2.4.NADA
## 17754                                      SPI.D3.1.POV
## 17755                                    SPI.D3.10.NEQL
## 17756                                    SPI.D3.11.CITY
## 17757                                    SPI.D3.12.CNSP
## 17758                                    SPI.D3.13.CLMT
## 17759                                    SPI.D3.14.LFWT
## 17760                                    SPI.D3.15.LAND
## 17761                                    SPI.D3.16.INST
## 17762                                    SPI.D3.17.PTNS
## 17763                                     SPI.D3.2.HNGR
## 17764                                     SPI.D3.3.HLTH
## 17765                                     SPI.D3.4.EDUC
## 17766                                     SPI.D3.5.GEND
## 17767                                     SPI.D3.6.WTRS
## 17768                                     SPI.D3.7.ENRG
## 17769                                     SPI.D3.8.WORK
## 17770                                     SPI.D3.9.INDY
## 17771                                   SPI.D4.1.1.POPU
## 17772                                   SPI.D4.1.2.AGRI
## 17773                                   SPI.D4.1.3.BIZZ
## 17774                                   SPI.D4.1.4.HOUS
## 17775                                  SPI.D4.1.5.AGSVY
## 17776                                   SPI.D4.1.6.LABR
## 17777                                   SPI.D4.1.7.HLTH
## 17778                                  SPI.D4.1.8.BZSVY
## 17779                                    SPI.D4.2.1.SPL
## 17780                                    SPI.D4.2.2.EDU
## 17781                                   SPI.D4.2.3.CRVS
## 17782                                    SPI.D4.2.4.LBR
## 17783                    SPI.D4.3.GEO.first.admin.level
## 17784                                     SPI.D4.4.SOPC
## 17785                                     SPI.D5.1.DILG
## 17786                                   SPI.D5.2.1.SNAU
## 17787                                  SPI.D5.2.10.GSBP
## 17788                                   SPI.D5.2.2.NABY
## 17789                                   SPI.D5.2.3.CNIN
## 17790                                  SPI.D5.2.4.CPIBY
## 17791                                   SPI.D5.2.5.HOUS
## 17792                                   SPI.D5.2.6.EMPL
## 17793                                   SPI.D5.2.7.CGOV
## 17794                                   SPI.D5.2.8.FINA
## 17795                                   SPI.D5.2.9.MONY
## 17796                                     SPI.D5.3.DISK
## 17797                                     SPI.D5.4.DIPN
## 17798                                     SPI.D5.5.DIFI
## 17799                                  SPI.DIM1.5.INDEX
## 17800                                  SPI.DIM2.1.INDEX
## 17801                                  SPI.DIM2.2.INDEX
## 17802                                  SPI.DIM2.4.INDEX
## 17803                                  SPI.DIM3.1.INDEX
## 17804                                  SPI.DIM3.2.INDEX
## 17805                                  SPI.DIM3.3.INDEX
## 17806                                  SPI.DIM3.4.INDEX
## 17807                              SPI.DIM4.1.CEN.INDEX
## 17808                              SPI.DIM4.1.SVY.INDEX
## 17809                                  SPI.DIM4.2.INDEX
## 17810                                  SPI.DIM4.3.INDEX
## 17811                                  SPI.DIM5.1.INDEX
## 17812                                  SPI.DIM5.2.INDEX
## 17813                                  SPI.DIM5.5.INDEX
## 17814                                         SPI.INDEX
## 17815                                    SPI.INDEX.PIL1
## 17816                                    SPI.INDEX.PIL2
## 17817                                    SPI.INDEX.PIL3
## 17818                                    SPI.INDEX.PIL4
## 17819                                    SPI.INDEX.PIL5
## 17820                                    SR.ARE.ARBL.K2
## 17821                                    SR.ARE.SURF.K2
## 17822                                    SS.H2O.FAIL.DY
## 17823                                       ST.INT.ARVL
## 17824                                       ST.INT.DPRT
## 17825                                    ST.INT.RCPT.CD
## 17826                                 ST.INT.RCPT.XP.ZS
## 17827                                    ST.INT.TRNR.CD
## 17828                                    ST.INT.TRNX.CD
## 17829                                    ST.INT.TVLR.CD
## 17830                                    ST.INT.TVLX.CD
## 17831                                    ST.INT.XPND.CD
## 17832                                 ST.INT.XPND.MP.ZS
## 17833                              TG.VAL.TOTL.GD.PP.ZS
## 17834                                 TG.VAL.TOTL.GD.ZS
## 17835                                 TG.VAL.TOTL.GG.ZS
## 17836                                    TM.CONC.DIV.NO
## 17837                                    TM.CONC.IND.XQ
## 17838                                     TM.DIV.IND.XQ
## 17839                                        TM.GATS.XD
## 17840                                 TM.MRC.NOTX.DV.ZS
## 17841                                 TM.MRC.NOTX.LD.ZS
## 17842                                 TM.PRI.MRCH.CD.UN
## 17843                                    TM.PRI.MRCH.ID
## 17844                                    TM.PRI.MRCH.XD
## 17845                                 TM.PRI.MRCH.XD.WB
## 17846                                    TM.PRI.NFSV.XU
## 17847                                 TM.QTY.ENGY.XD.WB
## 17848                                 TM.QTY.FOOD.XD.WB
## 17849                                 TM.QTY.KGDS.XD.WB
## 17850                                 TM.QTY.MRCH.XD.WB
## 17851                                 TM.QTY.MRCH.XD.WD
## 17852                                 TM.QTY.NFCG.XD.WB
## 17853                                    TM.QTY.NFSV.XD
## 17854                                 TM.QTY.RAWM.XD.WB
## 17855                                 TM.QTY.RAWP.XD.WB
## 17856                                 TM.QTY.RAWT.XD.WB
## 17857                                 TM.TAX.AGRI.CD.DV
## 17858                                 TM.TAX.AGRI.CD.LD
## 17859                                 TM.TAX.CLTH.CD.DV
## 17860                                 TM.TAX.CLTH.CD.LD
## 17861                                  TM.TAX.MANF.B.ZS
## 17862                                 TM.TAX.MANF.BC.ZS
## 17863                                 TM.TAX.MANF.BR.ZS
## 17864                                 TM.TAX.MANF.DM.ZS
## 17865                                 TM.TAX.MANF.DP.ZS
## 17866                                 TM.TAX.MANF.IP.ZS
## 17867                              TM.TAX.MANF.SM.AR.ZS
## 17868                              TM.TAX.MANF.SM.FN.ZS
## 17869                                 TM.TAX.MANF.SR.ZS
## 17870                              TM.TAX.MANF.WM.AR.ZS
## 17871                              TM.TAX.MANF.WM.FN.ZS
## 17872                                  TM.TAX.MRCH.B.ZS
## 17873                                 TM.TAX.MRCH.BC.ZS
## 17874                                 TM.TAX.MRCH.BR.ZS
## 17875                                 TM.TAX.MRCH.DM.ZS
## 17876                                 TM.TAX.MRCH.DP.ZS
## 17877                                 TM.TAX.MRCH.IP.ZS
## 17878                              TM.TAX.MRCH.SM.AR.ZS
## 17879                              TM.TAX.MRCH.SM.FN.ZS
## 17880                                 TM.TAX.MRCH.SR.ZS
## 17881                              TM.TAX.MRCH.WM.AR.ZS
## 17882                              TM.TAX.MRCH.WM.FN.ZS
## 17883                                  TM.TAX.TCOM.B.ZS
## 17884                                 TM.TAX.TCOM.BC.ZS
## 17885                                 TM.TAX.TCOM.BR.ZS
## 17886                                 TM.TAX.TCOM.DM.ZS
## 17887                                 TM.TAX.TCOM.DP.ZS
## 17888                                 TM.TAX.TCOM.IP.ZS
## 17889                              TM.TAX.TCOM.SM.AR.ZS
## 17890                              TM.TAX.TCOM.SM.FN.ZS
## 17891                                 TM.TAX.TCOM.SR.ZS
## 17892                              TM.TAX.TCOM.WM.AR.ZS
## 17893                              TM.TAX.TCOM.WM.FN.ZS
## 17894                                 TM.TAX.TXTL.CD.DV
## 17895                                 TM.TAX.TXTL.CD.LD
## 17896                                 TM.UVI.MRCH.XD.WD
## 17897                                 TM.VAL.AGRI.ZS.UN
## 17898                                 TM.VAL.ENGY.CD.WB
## 17899                                 TM.VAL.ENGY.KD.WB
## 17900                                 TM.VAL.FOOD.CD.WB
## 17901                                 TM.VAL.FOOD.KD.WB
## 17902                                 TM.VAL.FOOD.UN.ZS
## 17903                                 TM.VAL.FOOD.ZS.UN
## 17904                                    TM.VAL.FUEL.CD
## 17905                                 TM.VAL.FUEL.UN.ZS
## 17906                                 TM.VAL.FUEL.ZS.UN
## 17907                                 TM.VAL.ICTG.ZS.UN
## 17908                                 TM.VAL.INSF.ZS.WT
## 17909                                 TM.VAL.KGDS.CD.WB
## 17910                                 TM.VAL.KGDS.KD.WB
## 17911                                    TM.VAL.MANF.CD
## 17912                                 TM.VAL.MANF.ZS.UN
## 17913                                 TM.VAL.MCHT.UN.ZS
## 17914                                 TM.VAL.METL.UN.ZS
## 17915                                 TM.VAL.MMTL.ZS.UN
## 17916                                 TM.VAL.MRCH.AL.ZS
## 17917                                    TM.VAL.MRCH.CD
## 17918                                 TM.VAL.MRCH.CD.UN
## 17919                              TM.VAL.MRCH.CD.UN.ZG
## 17920                                 TM.VAL.MRCH.CD.WB
## 17921                                 TM.VAL.MRCH.CD.WT
## 17922                                 TM.VAL.MRCH.HI.ZS
## 17923                                    TM.VAL.MRCH.KD
## 17924                                 TM.VAL.MRCH.KD.UN
## 17925                              TM.VAL.MRCH.KD.UN.ZG
## 17926                                 TM.VAL.MRCH.KD.WB
## 17927                                 TM.VAL.MRCH.OR.ZS
## 17928                                 TM.VAL.MRCH.R1.ZS
## 17929                                 TM.VAL.MRCH.R2.ZS
## 17930                                 TM.VAL.MRCH.R3.ZS
## 17931                                 TM.VAL.MRCH.R4.ZS
## 17932                                 TM.VAL.MRCH.R5.ZS
## 17933                                 TM.VAL.MRCH.R6.ZS
## 17934                                 TM.VAL.MRCH.RS.ZS
## 17935                                 TM.VAL.MRCH.WL.CD
## 17936                                 TM.VAL.MRCH.WR.ZS
## 17937                                 TM.VAL.MRCH.XD.WD
## 17938                                 TM.VAL.NFCG.CD.WB
## 17939                                 TM.VAL.NFCG.KD.WB
## 17940                                 TM.VAL.NFOD.UN.ZS
## 17941                                    TM.VAL.NFPP.CD
## 17942                                    TM.VAL.NFPR.CD
## 17943                                 TM.VAL.OMFG.UN.ZS
## 17944                                 TM.VAL.OPRM.UN.ZS
## 17945                                 TM.VAL.OTHR.ZS.WT
## 17946                                 TM.VAL.RAWM.CD.WB
## 17947                                 TM.VAL.RAWM.KD.WB
## 17948                                 TM.VAL.RAWP.CD.WB
## 17949                                 TM.VAL.RAWP.KD.WB
## 17950                                 TM.VAL.RAWT.CD.WB
## 17951                                 TM.VAL.RAWT.KD.WB
## 17952                                 TM.VAL.SERV.CD.WT
## 17953                                 TM.VAL.TRAN.ZS.WT
## 17954                                 TM.VAL.TRVL.ZS.WT
## 17955                                    TM.VOL.MRCH.ZG
## 17956                                    TN.PRI.MRCH.ID
## 17957                                               TOT
## 17958                                           TOTRESV
## 17959                                    TRAD.EXPT.BVTO
## 17960                                    TRAD.EXPT.CHEM
## 17961                                    TRAD.EXPT.CRUD
## 17962                                   TRAD.EXPT.FLVSK
## 17963                                    TRAD.EXPT.FUEL
## 17964                                    TRAD.EXPT.MANF
## 17965                               TRAD.EXPT.MANF.OTHR
## 17966                                    TRAD.EXPT.MTRN
## 17967                                   TRAD.EXPT.OLFTW
## 17968                                    TRAD.EXPT.OTHR
## 17969                                    TRAD.IMPT.BVTO
## 17970                                    TRAD.IMPT.CHEM
## 17971                                    TRAD.IMPT.CRUD
## 17972                                   TRAD.IMPT.FLVSK
## 17973                                    TRAD.IMPT.FUEL
## 17974                                    TRAD.IMPT.MANF
## 17975                               TRAD.IMPT.MANF.OTHR
## 17976                                    TRAD.IMPT.MTRN
## 17977                                   TRAD.IMPT.OLFTW
## 17978                                    TRAD.IMPT.OTHR
## 17979                         TRD.ACRS.BRDR.DB0615.DFRN
## 17980                         TRD.ACRS.BRDR.DB1619.DFRN
## 17981                  TRD.ACRS.BRDR.DOC.COMP.HR.DB1619
## 17982                 TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615
## 17983            TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615.DFRN
## 17984                  TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615
## 17985             TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615.DFRN
## 17986            TRD.ACRS.BRDR.EXPT.BRDR.COMP.HR.DB1619
## 17987       TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619
## 17988  TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619.DFRN
## 17989                 TRD.ACRS.BRDR.EXPT.COST.CD.DB0615
## 17990            TRD.ACRS.BRDR.EXPT.COST.CD.DB0615.DFRN
## 17991        TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619
## 17992   TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619.DFRN
## 17993                 TRD.ACRS.BRDR.EXPT.DURS.DY.DB0615
## 17994    TRD.ACRS.BRDR.EXPT.TM.BRDR.COMP.HR.DB1619.DFRN
## 17995     TRD.ACRS.BRDR.EXPT.TM.DOC.COMP.HR.DB1619.DFRN
## 17996              TRD.ACRS.BRDR.EXPT.TM.DY.DB0615.DFRN
## 17997             TRD.ACRS.BRDR.IMP.BRDR.COMP.HR.DB1619
## 17998        TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619
## 17999   TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619.DFRN
## 18000                  TRD.ACRS.BRDR.IMP.COST.CD.DB0615
## 18001             TRD.ACRS.BRDR.IMP.COST.CD.DB0615.DFRN
## 18002         TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619
## 18003    TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619.DFRN
## 18004              TRD.ACRS.BRDR.IMP.DOC.COMP.HR.DB1619
## 18005                  TRD.ACRS.BRDR.IMP.DURS.DY.DB0615
## 18006     TRD.ACRS.BRDR.IMP.TM.BRDR.COMP.HR.DB1619.DFRN
## 18007      TRD.ACRS.BRDR.IMP.TM.DOC.COMP.HR.DB1619.DFRN
## 18008               TRD.ACRS.BRDR.IMP.TM.DY.DB0615.DFRN
## 18009                             TRD.ACRS.BRDR.RK.DB19
## 18010                                 TT.INC.MRCH.XD.UN
## 18011                                    TT.PRI.MRCH.XD
## 18012                                 TT.PRI.MRCH.XD.UN
## 18013                                 TT.PRI.MRCH.XD.WB
## 18014                                 TT.PRI.MRCH.XD.WD
## 18015                                    TX.CONC.DIV.NO
## 18016                                    TX.CONC.IND.XQ
## 18017                                     TX.DIV.IND.XQ
## 18018                                 TX.MNF.TECH.ZS.UN
## 18019                                    TX.PRI.FUEL.ID
## 18020                                    TX.PRI.MANF.ID
## 18021                                 TX.PRI.MRCH.CD.UN
## 18022                                    TX.PRI.MRCH.ID
## 18023                                    TX.PRI.MRCH.XD
## 18024                                 TX.PRI.MRCH.XD.WB
## 18025                                    TX.PRI.NFPR.ID
## 18026                                    TX.PRI.NFSV.XU
## 18027                                 TX.QTY.COM1.XD.WB
## 18028                                 TX.QTY.COM2.XD.WB
## 18029                                 TX.QTY.COM3.XD.WB
## 18030                                 TX.QTY.COM4.XD.WB
## 18031                                 TX.QTY.MANF.XD.WB
## 18032                                 TX.QTY.MRCH.XD.WB
## 18033                                 TX.QTY.MRCH.XD.WD
## 18034                                    TX.QTY.NFSV.XD
## 18035                                 TX.QTY.OCOM.XD.WB
## 18036                                 TX.UVI.MRCH.XD.WD
## 18037                                 TX.VAL.AGRI.ZS.UN
## 18038                                 TX.VAL.COM1.CD.WB
## 18039                                 TX.VAL.COM1.KD.WB
## 18040                                 TX.VAL.COM2.CD.WB
## 18041                                 TX.VAL.COM2.KD.WB
## 18042                                 TX.VAL.COM3.CD.WB
## 18043                                 TX.VAL.COM3.KD.WB
## 18044                                 TX.VAL.COM4.CD.WB
## 18045                                 TX.VAL.COM4.KD.WB
## 18046                                 TX.VAL.FMTL.UN.ZS
## 18047                                 TX.VAL.FOOD.UN.ZS
## 18048                                 TX.VAL.FOOD.ZS.UN
## 18049                                    TX.VAL.FUEL.CD
## 18050                                 TX.VAL.FUEL.ZS.UN
## 18051                                 TX.VAL.ICTG.ZS.UN
## 18052                                 TX.VAL.INSF.ZS.WT
## 18053                                    TX.VAL.MANF.CD
## 18054                                 TX.VAL.MANF.CD.WB
## 18055                                 TX.VAL.MANF.KD.WB
## 18056                                 TX.VAL.MANF.UN.ZS
## 18057                                 TX.VAL.MANF.ZS.UN
## 18058                                 TX.VAL.MCHT.UN.ZS
## 18059                                 TX.VAL.METL.UN.ZS
## 18060                                 TX.VAL.MMTL.ZS.UN
## 18061                                 TX.VAL.MNRL.UN.ZS
## 18062                                 TX.VAL.MRCH.AL.ZS
## 18063                                    TX.VAL.MRCH.CD
## 18064                                 TX.VAL.MRCH.CD.UN
## 18065                              TX.VAL.MRCH.CD.UN.ZG
## 18066                                 TX.VAL.MRCH.CD.WB
## 18067                                 TX.VAL.MRCH.CD.WT
## 18068                                 TX.VAL.MRCH.HI.CD
## 18069                                 TX.VAL.MRCH.HI.ZS
## 18070                                    TX.VAL.MRCH.KD
## 18071                                 TX.VAL.MRCH.KD.UN
## 18072                              TX.VAL.MRCH.KD.UN.ZG
## 18073                                 TX.VAL.MRCH.KD.WB
## 18074                                 TX.VAL.MRCH.OR.CD
## 18075                                 TX.VAL.MRCH.OR.ZS
## 18076                                 TX.VAL.MRCH.R1.CD
## 18077                                 TX.VAL.MRCH.R1.ZS
## 18078                                 TX.VAL.MRCH.R2.CD
## 18079                                 TX.VAL.MRCH.R2.ZS
## 18080                                 TX.VAL.MRCH.R3.CD
## 18081                                 TX.VAL.MRCH.R3.ZS
## 18082                                 TX.VAL.MRCH.R4.CD
## 18083                                 TX.VAL.MRCH.R4.ZS
## 18084                                 TX.VAL.MRCH.R5.CD
## 18085                                 TX.VAL.MRCH.R5.ZS
## 18086                                 TX.VAL.MRCH.R6.CD
## 18087                                 TX.VAL.MRCH.R6.ZS
## 18088                                 TX.VAL.MRCH.RS.ZS
## 18089                                 TX.VAL.MRCH.WL.CD
## 18090                                 TX.VAL.MRCH.WR.CD
## 18091                                 TX.VAL.MRCH.WR.ZS
## 18092                                 TX.VAL.MRCH.XD.WD
## 18093                                 TX.VAL.NFOD.UN.ZS
## 18094                                    TX.VAL.NFPP.CD
## 18095                                    TX.VAL.NFPR.CD
## 18096                                 TX.VAL.OCOM.CD.WB
## 18097                                 TX.VAL.OCOM.KD.WB
## 18098                                 TX.VAL.OPRM.UN.ZS
## 18099                                 TX.VAL.OTHR.ZS.WT
## 18100                                 TX.VAL.SERV.CD.WT
## 18101                                 TX.VAL.SERV.MT.ZS
## 18102                                 TX.VAL.TCOM.CD.WB
## 18103                                 TX.VAL.TCOM.KD.WB
## 18104                                    TX.VAL.TECH.CD
## 18105                               TX.VAL.TECH.MANF.ZS
## 18106                                 TX.VAL.TECH.MF.ZS
## 18107                                 TX.VAL.TRAN.ZS.WT
## 18108                                 TX.VAL.TRVL.ZS.WT
## 18109                                 TX.VAL.TXTL.UN.ZS
## 18110                                 TX.VAL.XTHR.UN.ZS
## 18111                                    TX.VOL.MRCH.ZG
## 18112                        UIS.ADMI.ENDOFLOWERSEC.MAT
## 18113                       UIS.ADMI.ENDOFLOWERSEC.READ
## 18114                            UIS.ADMI.ENDOFPRIM.MAT
## 18115                           UIS.ADMI.ENDOFPRIM.READ
## 18116                        UIS.ADMI.GRADE2OR3PRIM.MAT
## 18117                       UIS.ADMI.GRADE2OR3PRIM.READ
## 18118                        UIS.AIDEDUC.LOWINCOMECOUNT
## 18119                              UIS.AIR.1.GLAST.GPIA
## 18120                          UIS.AIR.2.GPV.GLAST.GPIA
## 18121                                    UIS.ASTAFF.6T8
## 18122                                  UIS.ASTAFF.6T8.F
## 18123                                  UIS.ASTAFF.6T8.M
## 18124                                       UIS.CEAGE.1
## 18125                                          UIS.CR.1
## 18126                                        UIS.CR.1.F
## 18127                                   UIS.CR.1.F.LPIA
## 18128                                   UIS.CR.1.F.WPIA
## 18129                                     UIS.CR.1.GPIA
## 18130                                     UIS.CR.1.LPIA
## 18131                                        UIS.CR.1.M
## 18132                                   UIS.CR.1.M.LPIA
## 18133                                   UIS.CR.1.M.WPIA
## 18134                                       UIS.CR.1.Q1
## 18135                                     UIS.CR.1.Q1.F
## 18136                                UIS.CR.1.Q1.F.LPIA
## 18137                                  UIS.CR.1.Q1.GPIA
## 18138                                  UIS.CR.1.Q1.LPIA
## 18139                                     UIS.CR.1.Q1.M
## 18140                                UIS.CR.1.Q1.M.LPIA
## 18141                                       UIS.CR.1.Q2
## 18142                                     UIS.CR.1.Q2.F
## 18143                                UIS.CR.1.Q2.F.LPIA
## 18144                                  UIS.CR.1.Q2.GPIA
## 18145                                  UIS.CR.1.Q2.LPIA
## 18146                                     UIS.CR.1.Q2.M
## 18147                                UIS.CR.1.Q2.M.LPIA
## 18148                                       UIS.CR.1.Q3
## 18149                                     UIS.CR.1.Q3.F
## 18150                                UIS.CR.1.Q3.F.LPIA
## 18151                                  UIS.CR.1.Q3.GPIA
## 18152                                  UIS.CR.1.Q3.LPIA
## 18153                                     UIS.CR.1.Q3.M
## 18154                                UIS.CR.1.Q3.M.LPIA
## 18155                                       UIS.CR.1.Q4
## 18156                                     UIS.CR.1.Q4.F
## 18157                                UIS.CR.1.Q4.F.LPIA
## 18158                                  UIS.CR.1.Q4.GPIA
## 18159                                  UIS.CR.1.Q4.LPIA
## 18160                                     UIS.CR.1.Q4.M
## 18161                                UIS.CR.1.Q4.M.LPIA
## 18162                                       UIS.CR.1.Q5
## 18163                                     UIS.CR.1.Q5.F
## 18164                                UIS.CR.1.Q5.F.LPIA
## 18165                                  UIS.CR.1.Q5.GPIA
## 18166                                  UIS.CR.1.Q5.LPIA
## 18167                                     UIS.CR.1.Q5.M
## 18168                                UIS.CR.1.Q5.M.LPIA
## 18169                                      UIS.CR.1.RUR
## 18170                                    UIS.CR.1.RUR.F
## 18171                               UIS.CR.1.RUR.F.WPIA
## 18172                                 UIS.CR.1.RUR.GPIA
## 18173                                    UIS.CR.1.RUR.M
## 18174                               UIS.CR.1.RUR.M.WPIA
## 18175                                   UIS.CR.1.RUR.Q1
## 18176                                 UIS.CR.1.RUR.Q1.F
## 18177                              UIS.CR.1.RUR.Q1.GPIA
## 18178                                 UIS.CR.1.RUR.Q1.M
## 18179                                   UIS.CR.1.RUR.Q2
## 18180                                 UIS.CR.1.RUR.Q2.F
## 18181                              UIS.CR.1.RUR.Q2.GPIA
## 18182                                 UIS.CR.1.RUR.Q2.M
## 18183                                   UIS.CR.1.RUR.Q3
## 18184                                 UIS.CR.1.RUR.Q3.F
## 18185                              UIS.CR.1.RUR.Q3.GPIA
## 18186                                 UIS.CR.1.RUR.Q3.M
## 18187                                   UIS.CR.1.RUR.Q4
## 18188                                 UIS.CR.1.RUR.Q4.F
## 18189                              UIS.CR.1.RUR.Q4.GPIA
## 18190                                 UIS.CR.1.RUR.Q4.M
## 18191                                   UIS.CR.1.RUR.Q5
## 18192                                 UIS.CR.1.RUR.Q5.F
## 18193                              UIS.CR.1.RUR.Q5.GPIA
## 18194                                 UIS.CR.1.RUR.Q5.M
## 18195                                 UIS.CR.1.RUR.WPIA
## 18196                                      UIS.CR.1.URB
## 18197                                    UIS.CR.1.URB.F
## 18198                               UIS.CR.1.URB.F.WPIA
## 18199                                 UIS.CR.1.URB.GPIA
## 18200                                    UIS.CR.1.URB.M
## 18201                               UIS.CR.1.URB.M.WPIA
## 18202                                   UIS.CR.1.URB.Q1
## 18203                                 UIS.CR.1.URB.Q1.F
## 18204                              UIS.CR.1.URB.Q1.GPIA
## 18205                                 UIS.CR.1.URB.Q1.M
## 18206                                   UIS.CR.1.URB.Q2
## 18207                                 UIS.CR.1.URB.Q2.F
## 18208                              UIS.CR.1.URB.Q2.GPIA
## 18209                                 UIS.CR.1.URB.Q2.M
## 18210                                   UIS.CR.1.URB.Q3
## 18211                                 UIS.CR.1.URB.Q3.F
## 18212                              UIS.CR.1.URB.Q3.GPIA
## 18213                                 UIS.CR.1.URB.Q3.M
## 18214                                   UIS.CR.1.URB.Q4
## 18215                                 UIS.CR.1.URB.Q4.F
## 18216                              UIS.CR.1.URB.Q4.GPIA
## 18217                                 UIS.CR.1.URB.Q4.M
## 18218                                   UIS.CR.1.URB.Q5
## 18219                                 UIS.CR.1.URB.Q5.F
## 18220                              UIS.CR.1.URB.Q5.GPIA
## 18221                                 UIS.CR.1.URB.Q5.M
## 18222                                 UIS.CR.1.URB.WPIA
## 18223                                     UIS.CR.1.WPIA
## 18224                                          UIS.CR.2
## 18225                                        UIS.CR.2.F
## 18226                                   UIS.CR.2.F.LPIA
## 18227                                   UIS.CR.2.F.WPIA
## 18228                                     UIS.CR.2.GPIA
## 18229                                     UIS.CR.2.LPIA
## 18230                                        UIS.CR.2.M
## 18231                                   UIS.CR.2.M.LPIA
## 18232                                   UIS.CR.2.M.WPIA
## 18233                                       UIS.CR.2.Q1
## 18234                                     UIS.CR.2.Q1.F
## 18235                                UIS.CR.2.Q1.F.LPIA
## 18236                                  UIS.CR.2.Q1.GPIA
## 18237                                  UIS.CR.2.Q1.LPIA
## 18238                                     UIS.CR.2.Q1.M
## 18239                                UIS.CR.2.Q1.M.LPIA
## 18240                                       UIS.CR.2.Q2
## 18241                                     UIS.CR.2.Q2.F
## 18242                                UIS.CR.2.Q2.F.LPIA
## 18243                                  UIS.CR.2.Q2.GPIA
## 18244                                  UIS.CR.2.Q2.LPIA
## 18245                                     UIS.CR.2.Q2.M
## 18246                                UIS.CR.2.Q2.M.LPIA
## 18247                                       UIS.CR.2.Q3
## 18248                                     UIS.CR.2.Q3.F
## 18249                                UIS.CR.2.Q3.F.LPIA
## 18250                                  UIS.CR.2.Q3.GPIA
## 18251                                  UIS.CR.2.Q3.LPIA
## 18252                                     UIS.CR.2.Q3.M
## 18253                                UIS.CR.2.Q3.M.LPIA
## 18254                                       UIS.CR.2.Q4
## 18255                                     UIS.CR.2.Q4.F
## 18256                                UIS.CR.2.Q4.F.LPIA
## 18257                                  UIS.CR.2.Q4.GPIA
## 18258                                  UIS.CR.2.Q4.LPIA
## 18259                                     UIS.CR.2.Q4.M
## 18260                                UIS.CR.2.Q4.M.LPIA
## 18261                                       UIS.CR.2.Q5
## 18262                                     UIS.CR.2.Q5.F
## 18263                                UIS.CR.2.Q5.F.LPIA
## 18264                                  UIS.CR.2.Q5.GPIA
## 18265                                  UIS.CR.2.Q5.LPIA
## 18266                                     UIS.CR.2.Q5.M
## 18267                                UIS.CR.2.Q5.M.LPIA
## 18268                                      UIS.CR.2.RUR
## 18269                                    UIS.CR.2.RUR.F
## 18270                               UIS.CR.2.RUR.F.WPIA
## 18271                                 UIS.CR.2.RUR.GPIA
## 18272                                    UIS.CR.2.RUR.M
## 18273                               UIS.CR.2.RUR.M.WPIA
## 18274                                   UIS.CR.2.RUR.Q1
## 18275                                 UIS.CR.2.RUR.Q1.F
## 18276                              UIS.CR.2.RUR.Q1.GPIA
## 18277                                 UIS.CR.2.RUR.Q1.M
## 18278                                   UIS.CR.2.RUR.Q2
## 18279                                 UIS.CR.2.RUR.Q2.F
## 18280                              UIS.CR.2.RUR.Q2.GPIA
## 18281                                 UIS.CR.2.RUR.Q2.M
## 18282                                   UIS.CR.2.RUR.Q3
## 18283                                 UIS.CR.2.RUR.Q3.F
## 18284                              UIS.CR.2.RUR.Q3.GPIA
## 18285                                 UIS.CR.2.RUR.Q3.M
## 18286                                   UIS.CR.2.RUR.Q4
## 18287                                 UIS.CR.2.RUR.Q4.F
## 18288                              UIS.CR.2.RUR.Q4.GPIA
## 18289                                 UIS.CR.2.RUR.Q4.M
## 18290                                   UIS.CR.2.RUR.Q5
## 18291                                 UIS.CR.2.RUR.Q5.F
## 18292                              UIS.CR.2.RUR.Q5.GPIA
## 18293                                 UIS.CR.2.RUR.Q5.M
## 18294                                 UIS.CR.2.RUR.WPIA
## 18295                                      UIS.CR.2.URB
## 18296                                    UIS.CR.2.URB.F
## 18297                               UIS.CR.2.URB.F.WPIA
## 18298                                 UIS.CR.2.URB.GPIA
## 18299                                    UIS.CR.2.URB.M
## 18300                               UIS.CR.2.URB.M.WPIA
## 18301                                   UIS.CR.2.URB.Q1
## 18302                                 UIS.CR.2.URB.Q1.F
## 18303                              UIS.CR.2.URB.Q1.GPIA
## 18304                                 UIS.CR.2.URB.Q1.M
## 18305                                   UIS.CR.2.URB.Q2
## 18306                                 UIS.CR.2.URB.Q2.F
## 18307                              UIS.CR.2.URB.Q2.GPIA
## 18308                                 UIS.CR.2.URB.Q2.M
## 18309                                   UIS.CR.2.URB.Q3
## 18310                                 UIS.CR.2.URB.Q3.F
## 18311                              UIS.CR.2.URB.Q3.GPIA
## 18312                                 UIS.CR.2.URB.Q3.M
## 18313                                   UIS.CR.2.URB.Q4
## 18314                                 UIS.CR.2.URB.Q4.F
## 18315                              UIS.CR.2.URB.Q4.GPIA
## 18316                                 UIS.CR.2.URB.Q4.M
## 18317                                   UIS.CR.2.URB.Q5
## 18318                                 UIS.CR.2.URB.Q5.F
## 18319                              UIS.CR.2.URB.Q5.GPIA
## 18320                                 UIS.CR.2.URB.Q5.M
## 18321                                 UIS.CR.2.URB.WPIA
## 18322                                     UIS.CR.2.WPIA
## 18323                                          UIS.CR.3
## 18324                                        UIS.CR.3.F
## 18325                                   UIS.CR.3.F.LPIA
## 18326                                   UIS.CR.3.F.WPIA
## 18327                                     UIS.CR.3.GPIA
## 18328                                     UIS.CR.3.LPIA
## 18329                                        UIS.CR.3.M
## 18330                                   UIS.CR.3.M.LPIA
## 18331                                   UIS.CR.3.M.WPIA
## 18332                                       UIS.CR.3.Q1
## 18333                                     UIS.CR.3.Q1.F
## 18334                                UIS.CR.3.Q1.F.LPIA
## 18335                                  UIS.CR.3.Q1.GPIA
## 18336                                  UIS.CR.3.Q1.LPIA
## 18337                                     UIS.CR.3.Q1.M
## 18338                                UIS.CR.3.Q1.M.LPIA
## 18339                                       UIS.CR.3.Q2
## 18340                                     UIS.CR.3.Q2.F
## 18341                                UIS.CR.3.Q2.F.LPIA
## 18342                                  UIS.CR.3.Q2.GPIA
## 18343                                  UIS.CR.3.Q2.LPIA
## 18344                                     UIS.CR.3.Q2.M
## 18345                                UIS.CR.3.Q2.M.LPIA
## 18346                                       UIS.CR.3.Q3
## 18347                                     UIS.CR.3.Q3.F
## 18348                                UIS.CR.3.Q3.F.LPIA
## 18349                                  UIS.CR.3.Q3.GPIA
## 18350                                  UIS.CR.3.Q3.LPIA
## 18351                                     UIS.CR.3.Q3.M
## 18352                                UIS.CR.3.Q3.M.LPIA
## 18353                                       UIS.CR.3.Q4
## 18354                                     UIS.CR.3.Q4.F
## 18355                                UIS.CR.3.Q4.F.LPIA
## 18356                                  UIS.CR.3.Q4.GPIA
## 18357                                  UIS.CR.3.Q4.LPIA
## 18358                                     UIS.CR.3.Q4.M
## 18359                                UIS.CR.3.Q4.M.LPIA
## 18360                                       UIS.CR.3.Q5
## 18361                                     UIS.CR.3.Q5.F
## 18362                                UIS.CR.3.Q5.F.LPIA
## 18363                                  UIS.CR.3.Q5.GPIA
## 18364                                  UIS.CR.3.Q5.LPIA
## 18365                                     UIS.CR.3.Q5.M
## 18366                                UIS.CR.3.Q5.M.LPIA
## 18367                                      UIS.CR.3.RUR
## 18368                                    UIS.CR.3.RUR.F
## 18369                               UIS.CR.3.RUR.F.WPIA
## 18370                                 UIS.CR.3.RUR.GPIA
## 18371                                    UIS.CR.3.RUR.M
## 18372                               UIS.CR.3.RUR.M.WPIA
## 18373                                   UIS.CR.3.RUR.Q1
## 18374                                 UIS.CR.3.RUR.Q1.F
## 18375                              UIS.CR.3.RUR.Q1.GPIA
## 18376                                 UIS.CR.3.RUR.Q1.M
## 18377                                   UIS.CR.3.RUR.Q2
## 18378                                 UIS.CR.3.RUR.Q2.F
## 18379                              UIS.CR.3.RUR.Q2.GPIA
## 18380                                 UIS.CR.3.RUR.Q2.M
## 18381                                   UIS.CR.3.RUR.Q3
## 18382                                 UIS.CR.3.RUR.Q3.F
## 18383                              UIS.CR.3.RUR.Q3.GPIA
## 18384                                 UIS.CR.3.RUR.Q3.M
## 18385                                   UIS.CR.3.RUR.Q4
## 18386                                 UIS.CR.3.RUR.Q4.F
## 18387                              UIS.CR.3.RUR.Q4.GPIA
## 18388                                 UIS.CR.3.RUR.Q4.M
## 18389                                   UIS.CR.3.RUR.Q5
## 18390                                 UIS.CR.3.RUR.Q5.F
## 18391                              UIS.CR.3.RUR.Q5.GPIA
## 18392                                 UIS.CR.3.RUR.Q5.M
## 18393                                 UIS.CR.3.RUR.WPIA
## 18394                                      UIS.CR.3.URB
## 18395                                    UIS.CR.3.URB.F
## 18396                               UIS.CR.3.URB.F.WPIA
## 18397                                 UIS.CR.3.URB.GPIA
## 18398                                    UIS.CR.3.URB.M
## 18399                               UIS.CR.3.URB.M.WPIA
## 18400                                   UIS.CR.3.URB.Q1
## 18401                                 UIS.CR.3.URB.Q1.F
## 18402                              UIS.CR.3.URB.Q1.GPIA
## 18403                                 UIS.CR.3.URB.Q1.M
## 18404                                   UIS.CR.3.URB.Q2
## 18405                                 UIS.CR.3.URB.Q2.F
## 18406                              UIS.CR.3.URB.Q2.GPIA
## 18407                                 UIS.CR.3.URB.Q2.M
## 18408                                   UIS.CR.3.URB.Q3
## 18409                                 UIS.CR.3.URB.Q3.F
## 18410                              UIS.CR.3.URB.Q3.GPIA
## 18411                                 UIS.CR.3.URB.Q3.M
## 18412                                   UIS.CR.3.URB.Q4
## 18413                                 UIS.CR.3.URB.Q4.F
## 18414                              UIS.CR.3.URB.Q4.GPIA
## 18415                                 UIS.CR.3.URB.Q4.M
## 18416                                   UIS.CR.3.URB.Q5
## 18417                                 UIS.CR.3.URB.Q5.F
## 18418                              UIS.CR.3.URB.Q5.GPIA
## 18419                                 UIS.CR.3.URB.Q5.M
## 18420                                 UIS.CR.3.URB.WPIA
## 18421                                     UIS.CR.3.WPIA
## 18422                                         UIS.E.0.F
## 18423                                         UIS.E.0.M
## 18424                                         UIS.E.0.T
## 18425                                        UIS.E.01.F
## 18426                                        UIS.E.01.M
## 18427                                        UIS.E.01.T
## 18428                                        UIS.E.02.M
## 18429                                         UIS.E.1.M
## 18430                                           UIS.E.2
## 18431                                         UIS.E.2.F
## 18432                                         UIS.E.2.M
## 18433                                        UIS.E.23.M
## 18434                                           UIS.E.3
## 18435                                         UIS.E.3.F
## 18436                                         UIS.E.3.M
## 18437                                           UIS.E.4
## 18438                                         UIS.E.4.F
## 18439                                         UIS.E.4.M
## 18440                                           UIS.E.5
## 18441                                         UIS.E.5.F
## 18442                                         UIS.E.5.M
## 18443                                        UIS.E.58.M
## 18444                                           UIS.E.6
## 18445                                         UIS.E.6.F
## 18446                                         UIS.E.6.M
## 18447                                           UIS.E.7
## 18448                                         UIS.E.7.F
## 18449                                         UIS.E.7.M
## 18450                                           UIS.E.8
## 18451                                         UIS.E.8.F
## 18452                                         UIS.E.8.M
## 18453                                  UIS.EA.1.AG25T99
## 18454                                UIS.EA.1.AG25T99.F
## 18455                                UIS.EA.1.AG25T99.M
## 18456                                UIS.EA.1T6.AG25T99
## 18457                              UIS.EA.1T6.AG25T99.F
## 18458                              UIS.EA.1T6.AG25T99.M
## 18459                           UIS.EA.1T8.AG25T99.GPIA
## 18460                                  UIS.EA.2.AG25T99
## 18461                                UIS.EA.2.AG25T99.F
## 18462                                UIS.EA.2.AG25T99.M
## 18463                                UIS.EA.2T6.AG25T99
## 18464                              UIS.EA.2T6.AG25T99.F
## 18465                              UIS.EA.2T6.AG25T99.M
## 18466                           UIS.EA.2T8.AG25T99.GPIA
## 18467                                  UIS.EA.3.AG25T99
## 18468                                UIS.EA.3.AG25T99.F
## 18469                                UIS.EA.3.AG25T99.M
## 18470                                UIS.EA.3T6.AG25T99
## 18471                              UIS.EA.3T6.AG25T99.F
## 18472                              UIS.EA.3T6.AG25T99.M
## 18473                           UIS.EA.3T8.AG25T99.GPIA
## 18474                                  UIS.EA.4.AG25T99
## 18475                                UIS.EA.4.AG25T99.F
## 18476                                UIS.EA.4.AG25T99.M
## 18477                                UIS.EA.4T6.AG25T99
## 18478                              UIS.EA.4T6.AG25T99.F
## 18479                              UIS.EA.4T6.AG25T99.M
## 18480                           UIS.EA.4T8.AG25T99.GPIA
## 18481                                  UIS.EA.5.AG25T99
## 18482                                UIS.EA.5.AG25T99.F
## 18483                                UIS.EA.5.AG25T99.M
## 18484                                UIS.EA.5T8.AG25T99
## 18485                              UIS.EA.5T8.AG25T99.F
## 18486                           UIS.EA.5T8.AG25T99.GPIA
## 18487                              UIS.EA.5T8.AG25T99.M
## 18488                                  UIS.EA.6.AG25T99
## 18489                                UIS.EA.6.AG25T99.F
## 18490                                UIS.EA.6.AG25T99.M
## 18491                                UIS.EA.6T8.AG25T99
## 18492                              UIS.EA.6T8.AG25T99.F
## 18493                           UIS.EA.6T8.AG25T99.GPIA
## 18494                              UIS.EA.6T8.AG25T99.M
## 18495                                  UIS.EA.7.AG25T99
## 18496                                UIS.EA.7.AG25T99.F
## 18497                                UIS.EA.7.AG25T99.M
## 18498                                UIS.EA.7T8.AG25T99
## 18499                              UIS.EA.7T8.AG25T99.F
## 18500                           UIS.EA.7T8.AG25T99.GPIA
## 18501                              UIS.EA.7T8.AG25T99.M
## 18502                                  UIS.EA.8.AG25T99
## 18503                                UIS.EA.8.AG25T99.F
## 18504                             UIS.EA.8.AG25T99.GPIA
## 18505                                UIS.EA.8.AG25T99.M
## 18506                           UIS.EA.MEAN.1T6.AG25T99
## 18507                         UIS.EA.MEAN.1T6.AG25T99.F
## 18508                         UIS.EA.MEAN.1T6.AG25T99.M
## 18509                                 UIS.EA.NS.AG25T99
## 18510                               UIS.EA.NS.AG25T99.F
## 18511                               UIS.EA.NS.AG25T99.M
## 18512                                 UIS.EA.S1.AG25T99
## 18513                               UIS.EA.S1.AG25T99.F
## 18514                               UIS.EA.S1.AG25T99.M
## 18515                               UIS.EA.S1T8.AG25T99
## 18516                             UIS.EA.S1T8.AG25T99.F
## 18517                          UIS.EA.S1T8.AG25T99.GPIA
## 18518                             UIS.EA.S1T8.AG25T99.M
## 18519                                 UIS.EA.UK.AG25T99
## 18520                               UIS.EA.UK.AG25T99.F
## 18521                               UIS.EA.UK.AG25T99.M
## 18522                                  UIS.ESG.LOWERSEC
## 18523                             UIS.ESG.LOWERSEC.COGN
## 18524                           UIS.ESG.LOWERSEC.COGN.F
## 18525                        UIS.ESG.LOWERSEC.COGN.GPIA
## 18526                           UIS.ESG.LOWERSEC.COGN.M
## 18527                                UIS.ESG.LOWERSEC.F
## 18528                             UIS.ESG.LOWERSEC.GPIA
## 18529                                UIS.ESG.LOWERSEC.M
## 18530                        UIS.ESG.LOWERSEC.NCOG.CONF
## 18531                      UIS.ESG.LOWERSEC.NCOG.CONF.F
## 18532                    UIS.ESG.LOWERSEC.NCOG.CONF.GPI
## 18533                      UIS.ESG.LOWERSEC.NCOG.CONF.M
## 18534                        UIS.ESG.LOWERSEC.NCOG.ENJO
## 18535                      UIS.ESG.LOWERSEC.NCOG.ENJO.F
## 18536                    UIS.ESG.LOWERSEC.NCOG.ENJO.GPI
## 18537                      UIS.ESG.LOWERSEC.NCOG.ENJO.M
## 18538                                 UIS.EV1524P.2T5.V
## 18539                               UIS.EV1524P.2T5.V.F
## 18540                            UIS.EV1524P.2T5.V.GPIA
## 18541                               UIS.EV1524P.2T5.V.M
## 18542                                       UIS.FEP.2.V
## 18543                                       UIS.FEP.3.V
## 18544                                       UIS.FEP.4.V
## 18545                                  UIS.FGP.5T8.F400
## 18546                                  UIS.FGP.5T8.F600
## 18547                         UIS.FGP.5T8.FNON500600700
## 18548                                   UIS.FHLANGILP.1
## 18549                                 UIS.FHLANGILP.1.F
## 18550                              UIS.FHLANGILP.1.GPIA
## 18551                           UIS.FHLANGILP.1.HIGHSES
## 18552                            UIS.FHLANGILP.1.LOWSES
## 18553                              UIS.FHLANGILP.1.LPIA
## 18554                                 UIS.FHLANGILP.1.M
## 18555                               UIS.FHLANGILP.1.RUR
## 18556                               UIS.FHLANGILP.1.URB
## 18557                              UIS.FHLANGILP.1.WPIA
## 18558                                UIS.FOSGP.5T8.F400
## 18559                          UIS.FOSGP.5T8.F500600700
## 18560                                UIS.FOSGP.5T8.F600
## 18561                       UIS.FOSGP.5T8.FNON500600700
## 18562                                         UIS.FTP.2
## 18563                                         UIS.FTP.3
## 18564                                         UIS.FTP.4
## 18565                                       UIS.GAR.5T8
## 18566                                     UIS.GAR.5T8.F
## 18567                                UIS.GAR.5T8.F.LPIA
## 18568                                UIS.GAR.5T8.F.WPIA
## 18569                                  UIS.GAR.5T8.GPIA
## 18570                                  UIS.GAR.5T8.LPIA
## 18571                                     UIS.GAR.5T8.M
## 18572                                UIS.GAR.5T8.M.LPIA
## 18573                                UIS.GAR.5T8.M.WPIA
## 18574                                    UIS.GAR.5T8.Q1
## 18575                                  UIS.GAR.5T8.Q1.F
## 18576                             UIS.GAR.5T8.Q1.F.LPIA
## 18577                               UIS.GAR.5T8.Q1.GPIA
## 18578                               UIS.GAR.5T8.Q1.LPIA
## 18579                                  UIS.GAR.5T8.Q1.M
## 18580                             UIS.GAR.5T8.Q1.M.LPIA
## 18581                                    UIS.GAR.5T8.Q2
## 18582                                  UIS.GAR.5T8.Q2.F
## 18583                             UIS.GAR.5T8.Q2.F.LPIA
## 18584                               UIS.GAR.5T8.Q2.GPIA
## 18585                               UIS.GAR.5T8.Q2.LPIA
## 18586                                  UIS.GAR.5T8.Q2.M
## 18587                             UIS.GAR.5T8.Q2.M.LPIA
## 18588                                    UIS.GAR.5T8.Q3
## 18589                                  UIS.GAR.5T8.Q3.F
## 18590                             UIS.GAR.5T8.Q3.F.LPIA
## 18591                               UIS.GAR.5T8.Q3.GPIA
## 18592                               UIS.GAR.5T8.Q3.LPIA
## 18593                                  UIS.GAR.5T8.Q3.M
## 18594                             UIS.GAR.5T8.Q3.M.LPIA
## 18595                                    UIS.GAR.5T8.Q4
## 18596                                  UIS.GAR.5T8.Q4.F
## 18597                             UIS.GAR.5T8.Q4.F.LPIA
## 18598                               UIS.GAR.5T8.Q4.GPIA
## 18599                               UIS.GAR.5T8.Q4.LPIA
## 18600                                  UIS.GAR.5T8.Q4.M
## 18601                             UIS.GAR.5T8.Q4.M.LPIA
## 18602                                    UIS.GAR.5T8.Q5
## 18603                                  UIS.GAR.5T8.Q5.F
## 18604                             UIS.GAR.5T8.Q5.F.LPIA
## 18605                               UIS.GAR.5T8.Q5.GPIA
## 18606                               UIS.GAR.5T8.Q5.LPIA
## 18607                                  UIS.GAR.5T8.Q5.M
## 18608                             UIS.GAR.5T8.Q5.M.LPIA
## 18609                                   UIS.GAR.5T8.RUR
## 18610                                 UIS.GAR.5T8.RUR.F
## 18611                            UIS.GAR.5T8.RUR.F.WPIA
## 18612                              UIS.GAR.5T8.RUR.GPIA
## 18613                                 UIS.GAR.5T8.RUR.M
## 18614                            UIS.GAR.5T8.RUR.M.WPIA
## 18615                                UIS.GAR.5T8.RUR.Q1
## 18616                              UIS.GAR.5T8.RUR.Q1.F
## 18617                           UIS.GAR.5T8.RUR.Q1.GPIA
## 18618                              UIS.GAR.5T8.RUR.Q1.M
## 18619                                UIS.GAR.5T8.RUR.Q2
## 18620                              UIS.GAR.5T8.RUR.Q2.F
## 18621                           UIS.GAR.5T8.RUR.Q2.GPIA
## 18622                              UIS.GAR.5T8.RUR.Q2.M
## 18623                                UIS.GAR.5T8.RUR.Q3
## 18624                              UIS.GAR.5T8.RUR.Q3.F
## 18625                           UIS.GAR.5T8.RUR.Q3.GPIA
## 18626                              UIS.GAR.5T8.RUR.Q3.M
## 18627                                UIS.GAR.5T8.RUR.Q4
## 18628                              UIS.GAR.5T8.RUR.Q4.F
## 18629                           UIS.GAR.5T8.RUR.Q4.GPIA
## 18630                              UIS.GAR.5T8.RUR.Q4.M
## 18631                                UIS.GAR.5T8.RUR.Q5
## 18632                              UIS.GAR.5T8.RUR.Q5.F
## 18633                           UIS.GAR.5T8.RUR.Q5.GPIA
## 18634                              UIS.GAR.5T8.RUR.Q5.M
## 18635                              UIS.GAR.5T8.RUR.WPIA
## 18636                                   UIS.GAR.5T8.URB
## 18637                                 UIS.GAR.5T8.URB.F
## 18638                            UIS.GAR.5T8.URB.F.WPIA
## 18639                              UIS.GAR.5T8.URB.GPIA
## 18640                                 UIS.GAR.5T8.URB.M
## 18641                            UIS.GAR.5T8.URB.M.WPIA
## 18642                                UIS.GAR.5T8.URB.Q1
## 18643                              UIS.GAR.5T8.URB.Q1.F
## 18644                           UIS.GAR.5T8.URB.Q1.GPIA
## 18645                              UIS.GAR.5T8.URB.Q1.M
## 18646                                UIS.GAR.5T8.URB.Q2
## 18647                              UIS.GAR.5T8.URB.Q2.F
## 18648                           UIS.GAR.5T8.URB.Q2.GPIA
## 18649                              UIS.GAR.5T8.URB.Q2.M
## 18650                                UIS.GAR.5T8.URB.Q3
## 18651                              UIS.GAR.5T8.URB.Q3.F
## 18652                           UIS.GAR.5T8.URB.Q3.GPIA
## 18653                              UIS.GAR.5T8.URB.Q3.M
## 18654                                UIS.GAR.5T8.URB.Q4
## 18655                              UIS.GAR.5T8.URB.Q4.F
## 18656                           UIS.GAR.5T8.URB.Q4.GPIA
## 18657                              UIS.GAR.5T8.URB.Q4.M
## 18658                                UIS.GAR.5T8.URB.Q5
## 18659                              UIS.GAR.5T8.URB.Q5.F
## 18660                           UIS.GAR.5T8.URB.Q5.GPIA
## 18661                              UIS.GAR.5T8.URB.Q5.M
## 18662                              UIS.GAR.5T8.URB.WPIA
## 18663                                  UIS.GAR.5T8.WPIA
## 18664                                  UIS.GCS.LOWERSEC
## 18665                              UIS.GCS.LOWERSEC.COG
## 18666                            UIS.GCS.LOWERSEC.COG.F
## 18667                         UIS.GCS.LOWERSEC.COG.GPIA
## 18668                            UIS.GCS.LOWERSEC.COG.M
## 18669                                UIS.GCS.LOWERSEC.F
## 18670                             UIS.GCS.LOWERSEC.GPIA
## 18671                                UIS.GCS.LOWERSEC.M
## 18672                        UIS.GCS.LOWERSEC.NCOG.FREE
## 18673                      UIS.GCS.LOWERSEC.NCOG.FREE.F
## 18674                    UIS.GCS.LOWERSEC.NCOG.FREE.GPI
## 18675                      UIS.GCS.LOWERSEC.NCOG.FREE.M
## 18676                        UIS.GCS.LOWERSEC.NCOG.GEQU
## 18677                      UIS.GCS.LOWERSEC.NCOG.GEQU.F
## 18678                    UIS.GCS.LOWERSEC.NCOG.GEQU.GPI
## 18679                      UIS.GCS.LOWERSEC.NCOG.GEQU.M
## 18680                        UIS.GCS.LOWERSEC.NCOG.GLOC
## 18681                      UIS.GCS.LOWERSEC.NCOG.GLOC.F
## 18682                    UIS.GCS.LOWERSEC.NCOG.GLOC.GPI
## 18683                      UIS.GCS.LOWERSEC.NCOG.GLOC.M
## 18684                        UIS.GCS.LOWERSEC.NCOG.MULT
## 18685                      UIS.GCS.LOWERSEC.NCOG.MULT.F
## 18686                    UIS.GCS.LOWERSEC.NCOG.MULT.GPI
## 18687                      UIS.GCS.LOWERSEC.NCOG.MULT.M
## 18688                        UIS.GCS.LOWERSEC.NCOG.PEAC
## 18689                      UIS.GCS.LOWERSEC.NCOG.PEAC.F
## 18690                    UIS.GCS.LOWERSEC.NCOG.PEAC.GPI
## 18691                      UIS.GCS.LOWERSEC.NCOG.PEAC.M
## 18692                        UIS.GCS.LOWERSEC.NCOG.SDEV
## 18693                      UIS.GCS.LOWERSEC.NCOG.SDEV.F
## 18694                    UIS.GCS.LOWERSEC.NCOG.SDEV.GPI
## 18695                      UIS.GCS.LOWERSEC.NCOG.SDEV.M
## 18696                        UIS.GCS.LOWERSEC.NCOG.SJUS
## 18697                      UIS.GCS.LOWERSEC.NCOG.SJUS.F
## 18698                    UIS.GCS.LOWERSEC.NCOG.SJUS.GPI
## 18699                      UIS.GCS.LOWERSEC.NCOG.SJUS.M
## 18700                                         UIS.GER.0
## 18701                                       UIS.GER.0.F
## 18702                                    UIS.GER.0.GPIA
## 18703                                       UIS.GER.0.M
## 18704                                        UIS.GER.01
## 18705                                      UIS.GER.01.F
## 18706                                   UIS.GER.01.GPIA
## 18707                                      UIS.GER.01.M
## 18708                                   UIS.GER.02.GPIA
## 18709                                        UIS.GER.12
## 18710                                      UIS.GER.12.F
## 18711                                    UIS.GER.12.GPI
## 18712                                      UIS.GER.12.M
## 18713                                       UIS.GER.123
## 18714                                     UIS.GER.123.F
## 18715                                     UIS.GER.123.M
## 18716                                     UIS.GER.1T6.F
## 18717                                   UIS.GER.1T6.GPI
## 18718                                     UIS.GER.1T6.M
## 18719                                     UIS.GER.2.GPI
## 18720                                     UIS.GER.3.GPI
## 18721                                         UIS.GER.4
## 18722                                       UIS.GER.4.F
## 18723                                     UIS.GER.4.GPI
## 18724                                       UIS.GER.4.M
## 18725                                  UIS.GER.5T8.GPIA
## 18726                                   UIS.GGR.5.A.GPI
## 18727                                    UIS.GTVP.2.GPV
## 18728                                      UIS.GTVP.2.V
## 18729                                    UIS.GTVP.2.V.F
## 18730                                    UIS.GTVP.2.V.M
## 18731                                   UIS.GTVP.23.GPV
## 18732                                    UIS.GTVP.3.GPV
## 18733                                      UIS.GTVP.3.V
## 18734                                    UIS.GTVP.3.V.F
## 18735                                    UIS.GTVP.3.V.M
## 18736                                    UIS.GTVP.4.GPV
## 18737                                      UIS.GTVP.4.V
## 18738                                    UIS.GTVP.4.V.F
## 18739                                    UIS.GTVP.4.V.M
## 18740                                UIS.ICTSKILLATTACH
## 18741                              UIS.ICTSKILLATTACH.F
## 18742                           UIS.ICTSKILLATTACH.GPIA
## 18743                              UIS.ICTSKILLATTACH.M
## 18744                                UIS.ICTSKILLCONNEC
## 18745                              UIS.ICTSKILLCONNEC.F
## 18746                           UIS.ICTSKILLCONNEC.GPIA
## 18747                              UIS.ICTSKILLCONNEC.M
## 18748                                  UIS.ICTSKILLCOPI
## 18749                                UIS.ICTSKILLCOPI.F
## 18750                             UIS.ICTSKILLCOPI.GPIA
## 18751                                UIS.ICTSKILLCOPI.M
## 18752                                 UIS.ICTSKILLCREAT
## 18753                               UIS.ICTSKILLCREAT.F
## 18754                            UIS.ICTSKILLCREAT.GPIA
## 18755                               UIS.ICTSKILLCREAT.M
## 18756                                UIS.ICTSKILLDUPLIC
## 18757                              UIS.ICTSKILLDUPLIC.F
## 18758                           UIS.ICTSKILLDUPLIC.GPIA
## 18759                              UIS.ICTSKILLDUPLIC.M
## 18760                               UIS.ICTSKILLFORMULA
## 18761                             UIS.ICTSKILLFORMULA.F
## 18762                          UIS.ICTSKILLFORMULA.GPIA
## 18763                             UIS.ICTSKILLFORMULA.M
## 18764                              UIS.ICTSKILLPROGLANG
## 18765                            UIS.ICTSKILLPROGLANG.F
## 18766                         UIS.ICTSKILLPROGLANG.GPIA
## 18767                            UIS.ICTSKILLPROGLANG.M
## 18768                              UIS.ICTSKILLSOFTWARE
## 18769                            UIS.ICTSKILLSOFTWARE.F
## 18770                         UIS.ICTSKILLSOFTWARE.GPIA
## 18771                            UIS.ICTSKILLSOFTWARE.M
## 18772                          UIS.ICTSKILLTRANSFERFILE
## 18773                        UIS.ICTSKILLTRANSFERFILE.F
## 18774                     UIS.ICTSKILLTRANSFERFILE.GPIA
## 18775                        UIS.ICTSKILLTRANSFERFILE.M
## 18776                                UIS.ILLPOP.AG25T64
## 18777                              UIS.ILLPOP.AG25T64.F
## 18778                              UIS.ILLPOP.AG25T64.M
## 18779                               UIS.ILLPOPF.AG25T64
## 18780                                    UIS.LP.AG15T24
## 18781                                  UIS.LP.AG15T24.F
## 18782                                  UIS.LP.AG15T24.M
## 18783                                    UIS.LP.AG15T99
## 18784                                  UIS.LP.AG15T99.F
## 18785                                  UIS.LP.AG15T99.M
## 18786                                       UIS.LP.AG65
## 18787                                     UIS.LP.AG65.F
## 18788                                     UIS.LP.AG65.M
## 18789                                   UIS.LPP.AG15T24
## 18790                                   UIS.LPP.AG15T99
## 18791                                      UIS.LPP.AG65
## 18792                             UIS.LR.AG15T24.F.LPIA
## 18793                               UIS.LR.AG15T24.GPIA
## 18794                               UIS.LR.AG15T24.LPIA
## 18795                             UIS.LR.AG15T24.M.LPIA
## 18796                                UIS.LR.AG15T24.RUR
## 18797                              UIS.LR.AG15T24.RUR.F
## 18798                           UIS.LR.AG15T24.RUR.GPIA
## 18799                              UIS.LR.AG15T24.RUR.M
## 18800                                UIS.LR.AG15T24.URB
## 18801                              UIS.LR.AG15T24.URB.F
## 18802                           UIS.LR.AG15T24.URB.GPIA
## 18803                              UIS.LR.AG15T24.URB.M
## 18804                             UIS.LR.AG15T99.F.LPIA
## 18805                               UIS.LR.AG15T99.GPIA
## 18806                               UIS.LR.AG15T99.LPIA
## 18807                             UIS.LR.AG15T99.M.LPIA
## 18808                                UIS.LR.AG15T99.RUR
## 18809                              UIS.LR.AG15T99.RUR.F
## 18810                           UIS.LR.AG15T99.RUR.GPIA
## 18811                              UIS.LR.AG15T99.RUR.M
## 18812                                UIS.LR.AG15T99.URB
## 18813                              UIS.LR.AG15T99.URB.F
## 18814                           UIS.LR.AG15T99.URB.GPIA
## 18815                              UIS.LR.AG15T99.URB.M
## 18816                                    UIS.LR.AG25T64
## 18817                                  UIS.LR.AG25T64.F
## 18818                             UIS.LR.AG25T64.F.LPIA
## 18819                               UIS.LR.AG25T64.GPIA
## 18820                               UIS.LR.AG25T64.LPIA
## 18821                                  UIS.LR.AG25T64.M
## 18822                             UIS.LR.AG25T64.M.LPIA
## 18823                                UIS.LR.AG25T64.RUR
## 18824                              UIS.LR.AG25T64.RUR.F
## 18825                           UIS.LR.AG25T64.RUR.GPIA
## 18826                              UIS.LR.AG25T64.RUR.M
## 18827                                UIS.LR.AG25T64.URB
## 18828                              UIS.LR.AG25T64.URB.F
## 18829                           UIS.LR.AG25T64.URB.GPIA
## 18830                              UIS.LR.AG25T64.URB.M
## 18831                                       UIS.LR.AG65
## 18832                                     UIS.LR.AG65.F
## 18833                                     UIS.LR.AG65.M
## 18834                             UIS.LR.AG65T99.F.LPIA
## 18835                               UIS.LR.AG65T99.GPIA
## 18836                               UIS.LR.AG65T99.LPIA
## 18837                             UIS.LR.AG65T99.M.LPIA
## 18838                                UIS.LR.AG65T99.RUR
## 18839                              UIS.LR.AG65T99.RUR.F
## 18840                           UIS.LR.AG65T99.RUR.GPIA
## 18841                              UIS.LR.AG65T99.RUR.M
## 18842                                UIS.LR.AG65T99.URB
## 18843                              UIS.LR.AG65T99.URB.F
## 18844                           UIS.LR.AG65T99.URB.GPIA
## 18845                              UIS.LR.AG65T99.URB.M
## 18846                                     UIS.MATH.G2T3
## 18847                                   UIS.MATH.G2T3.F
## 18848                                UIS.MATH.G2T3.GPIA
## 18849                             UIS.MATH.G2T3.HIGHSES
## 18850                            UIS.MATH.G2T3.LANGTEST
## 18851                              UIS.MATH.G2T3.LOWSES
## 18852                                UIS.MATH.G2T3.LPIA
## 18853                               UIS.MATH.G2T3.LTPIA
## 18854                                   UIS.MATH.G2T3.M
## 18855                              UIS.MATH.G2T3.NATIVE
## 18856                         UIS.MATH.G2T3.NONLANGTEST
## 18857                           UIS.MATH.G2T3.NONNATIVE
## 18858                                UIS.MATH.G2T3.NPIA
## 18859                               UIS.MATH.G2T3.RURAL
## 18860                               UIS.MATH.G2T3.URBAN
## 18861                                UIS.MATH.G2T3.WPIA
## 18862                                 UIS.MATH.LOWERSEC
## 18863                               UIS.MATH.LOWERSEC.F
## 18864                            UIS.MATH.LOWERSEC.GPIA
## 18865                         UIS.MATH.LOWERSEC.HIGHSES
## 18866                        UIS.MATH.LOWERSEC.LANGTEST
## 18867                          UIS.MATH.LOWERSEC.LOWSES
## 18868                            UIS.MATH.LOWERSEC.LPIA
## 18869                           UIS.MATH.LOWERSEC.LTPIA
## 18870                               UIS.MATH.LOWERSEC.M
## 18871                          UIS.MATH.LOWERSEC.NATIVE
## 18872                     UIS.MATH.LOWERSEC.NONLANGTEST
## 18873                       UIS.MATH.LOWERSEC.NONNATIVE
## 18874                            UIS.MATH.LOWERSEC.NPIA
## 18875                           UIS.MATH.LOWERSEC.RURAL
## 18876                           UIS.MATH.LOWERSEC.URBAN
## 18877                            UIS.MATH.LOWERSEC.WPIA
## 18878                                  UIS.MATH.PRIMARY
## 18879                                UIS.MATH.PRIMARY.F
## 18880                             UIS.MATH.PRIMARY.GPIA
## 18881                          UIS.MATH.PRIMARY.HIGHSES
## 18882                         UIS.MATH.PRIMARY.LANGTEST
## 18883                           UIS.MATH.PRIMARY.LOWSES
## 18884                             UIS.MATH.PRIMARY.LPIA
## 18885                            UIS.MATH.PRIMARY.LTPIA
## 18886                                UIS.MATH.PRIMARY.M
## 18887                           UIS.MATH.PRIMARY.NATIVE
## 18888                      UIS.MATH.PRIMARY.NONLANGTEST
## 18889                        UIS.MATH.PRIMARY.NONNATIVE
## 18890                             UIS.MATH.PRIMARY.NPIA
## 18891                            UIS.MATH.PRIMARY.RURAL
## 18892                            UIS.MATH.PRIMARY.URBAN
## 18893                             UIS.MATH.PRIMARY.WPIA
## 18894                                       UIS.MENF.56
## 18895                                      UIS.MENFR.56
## 18896                                       UIS.MS.56.F
## 18897                                       UIS.MS.56.M
## 18898                                       UIS.MS.56.T
## 18899                                       UIS.MSEP.56
## 18900                                     UIS.MSEP.56.F
## 18901                                     UIS.MSEP.56.M
## 18902                                     UIS.N.ATTACKS
## 18903                                     UIS.NARA.AGM1
## 18904                                   UIS.NARA.AGM1.F
## 18905                              UIS.NARA.AGM1.F.LPIA
## 18906                              UIS.NARA.AGM1.F.WPIA
## 18907                                UIS.NARA.AGM1.GPIA
## 18908                                UIS.NARA.AGM1.LPIA
## 18909                                   UIS.NARA.AGM1.M
## 18910                              UIS.NARA.AGM1.M.LPIA
## 18911                              UIS.NARA.AGM1.M.WPIA
## 18912                                  UIS.NARA.AGM1.Q1
## 18913                                UIS.NARA.AGM1.Q1.F
## 18914                           UIS.NARA.AGM1.Q1.F.LPIA
## 18915                             UIS.NARA.AGM1.Q1.GPIA
## 18916                             UIS.NARA.AGM1.Q1.LPIA
## 18917                                UIS.NARA.AGM1.Q1.M
## 18918                           UIS.NARA.AGM1.Q1.M.LPIA
## 18919                                  UIS.NARA.AGM1.Q2
## 18920                                UIS.NARA.AGM1.Q2.F
## 18921                           UIS.NARA.AGM1.Q2.F.LPIA
## 18922                             UIS.NARA.AGM1.Q2.GPIA
## 18923                             UIS.NARA.AGM1.Q2.LPIA
## 18924                                UIS.NARA.AGM1.Q2.M
## 18925                           UIS.NARA.AGM1.Q2.M.LPIA
## 18926                                  UIS.NARA.AGM1.Q3
## 18927                                UIS.NARA.AGM1.Q3.F
## 18928                           UIS.NARA.AGM1.Q3.F.LPIA
## 18929                             UIS.NARA.AGM1.Q3.GPIA
## 18930                             UIS.NARA.AGM1.Q3.LPIA
## 18931                                UIS.NARA.AGM1.Q3.M
## 18932                           UIS.NARA.AGM1.Q3.M.LPIA
## 18933                                  UIS.NARA.AGM1.Q4
## 18934                                UIS.NARA.AGM1.Q4.F
## 18935                           UIS.NARA.AGM1.Q4.F.LPIA
## 18936                             UIS.NARA.AGM1.Q4.GPIA
## 18937                             UIS.NARA.AGM1.Q4.LPIA
## 18938                                UIS.NARA.AGM1.Q4.M
## 18939                           UIS.NARA.AGM1.Q4.M.LPIA
## 18940                                  UIS.NARA.AGM1.Q5
## 18941                                UIS.NARA.AGM1.Q5.F
## 18942                           UIS.NARA.AGM1.Q5.F.LPIA
## 18943                             UIS.NARA.AGM1.Q5.GPIA
## 18944                             UIS.NARA.AGM1.Q5.LPIA
## 18945                                UIS.NARA.AGM1.Q5.M
## 18946                           UIS.NARA.AGM1.Q5.M.LPIA
## 18947                                 UIS.NARA.AGM1.RUR
## 18948                               UIS.NARA.AGM1.RUR.F
## 18949                          UIS.NARA.AGM1.RUR.F.WPIA
## 18950                            UIS.NARA.AGM1.RUR.GPIA
## 18951                               UIS.NARA.AGM1.RUR.M
## 18952                          UIS.NARA.AGM1.RUR.M.WPIA
## 18953                              UIS.NARA.AGM1.RUR.Q1
## 18954                            UIS.NARA.AGM1.RUR.Q1.F
## 18955                         UIS.NARA.AGM1.RUR.Q1.GPIA
## 18956                            UIS.NARA.AGM1.RUR.Q1.M
## 18957                              UIS.NARA.AGM1.RUR.Q2
## 18958                            UIS.NARA.AGM1.RUR.Q2.F
## 18959                         UIS.NARA.AGM1.RUR.Q2.GPIA
## 18960                            UIS.NARA.AGM1.RUR.Q2.M
## 18961                              UIS.NARA.AGM1.RUR.Q3
## 18962                            UIS.NARA.AGM1.RUR.Q3.F
## 18963                         UIS.NARA.AGM1.RUR.Q3.GPIA
## 18964                            UIS.NARA.AGM1.RUR.Q3.M
## 18965                              UIS.NARA.AGM1.RUR.Q4
## 18966                            UIS.NARA.AGM1.RUR.Q4.F
## 18967                         UIS.NARA.AGM1.RUR.Q4.GPIA
## 18968                            UIS.NARA.AGM1.RUR.Q4.M
## 18969                              UIS.NARA.AGM1.RUR.Q5
## 18970                            UIS.NARA.AGM1.RUR.Q5.F
## 18971                         UIS.NARA.AGM1.RUR.Q5.GPIA
## 18972                            UIS.NARA.AGM1.RUR.Q5.M
## 18973                            UIS.NARA.AGM1.RUR.WPIA
## 18974                                 UIS.NARA.AGM1.URB
## 18975                               UIS.NARA.AGM1.URB.F
## 18976                          UIS.NARA.AGM1.URB.F.WPIA
## 18977                            UIS.NARA.AGM1.URB.GPIA
## 18978                               UIS.NARA.AGM1.URB.M
## 18979                          UIS.NARA.AGM1.URB.M.WPIA
## 18980                              UIS.NARA.AGM1.URB.Q1
## 18981                            UIS.NARA.AGM1.URB.Q1.F
## 18982                         UIS.NARA.AGM1.URB.Q1.GPIA
## 18983                            UIS.NARA.AGM1.URB.Q1.M
## 18984                              UIS.NARA.AGM1.URB.Q2
## 18985                            UIS.NARA.AGM1.URB.Q2.F
## 18986                         UIS.NARA.AGM1.URB.Q2.GPIA
## 18987                            UIS.NARA.AGM1.URB.Q2.M
## 18988                              UIS.NARA.AGM1.URB.Q3
## 18989                            UIS.NARA.AGM1.URB.Q3.F
## 18990                         UIS.NARA.AGM1.URB.Q3.GPIA
## 18991                            UIS.NARA.AGM1.URB.Q3.M
## 18992                              UIS.NARA.AGM1.URB.Q4
## 18993                            UIS.NARA.AGM1.URB.Q4.F
## 18994                         UIS.NARA.AGM1.URB.Q4.GPIA
## 18995                            UIS.NARA.AGM1.URB.Q4.M
## 18996                              UIS.NARA.AGM1.URB.Q5
## 18997                            UIS.NARA.AGM1.URB.Q5.F
## 18998                         UIS.NARA.AGM1.URB.Q5.GPIA
## 18999                            UIS.NARA.AGM1.URB.Q5.M
## 19000                            UIS.NARA.AGM1.URB.WPIA
## 19001                                UIS.NARA.AGM1.WPIA
## 19002                                        UIS.NART.1
## 19003                                      UIS.NART.1.F
## 19004                                 UIS.NART.1.F.LPIA
## 19005                                 UIS.NART.1.F.WPIA
## 19006                                   UIS.NART.1.GPIA
## 19007                                   UIS.NART.1.LPIA
## 19008                                      UIS.NART.1.M
## 19009                                 UIS.NART.1.M.LPIA
## 19010                                 UIS.NART.1.M.WPIA
## 19011                                     UIS.NART.1.Q1
## 19012                                   UIS.NART.1.Q1.F
## 19013                              UIS.NART.1.Q1.F.LPIA
## 19014                                UIS.NART.1.Q1.GPIA
## 19015                                UIS.NART.1.Q1.LPIA
## 19016                                   UIS.NART.1.Q1.M
## 19017                              UIS.NART.1.Q1.M.LPIA
## 19018                                     UIS.NART.1.Q2
## 19019                                   UIS.NART.1.Q2.F
## 19020                              UIS.NART.1.Q2.F.LPIA
## 19021                                UIS.NART.1.Q2.GPIA
## 19022                                UIS.NART.1.Q2.LPIA
## 19023                                   UIS.NART.1.Q2.M
## 19024                              UIS.NART.1.Q2.M.LPIA
## 19025                                     UIS.NART.1.Q3
## 19026                                   UIS.NART.1.Q3.F
## 19027                              UIS.NART.1.Q3.F.LPIA
## 19028                                UIS.NART.1.Q3.GPIA
## 19029                                UIS.NART.1.Q3.LPIA
## 19030                                   UIS.NART.1.Q3.M
## 19031                              UIS.NART.1.Q3.M.LPIA
## 19032                                     UIS.NART.1.Q4
## 19033                                   UIS.NART.1.Q4.F
## 19034                              UIS.NART.1.Q4.F.LPIA
## 19035                                UIS.NART.1.Q4.GPIA
## 19036                                UIS.NART.1.Q4.LPIA
## 19037                                   UIS.NART.1.Q4.M
## 19038                              UIS.NART.1.Q4.M.LPIA
## 19039                                     UIS.NART.1.Q5
## 19040                                   UIS.NART.1.Q5.F
## 19041                              UIS.NART.1.Q5.F.LPIA
## 19042                                UIS.NART.1.Q5.GPIA
## 19043                                UIS.NART.1.Q5.LPIA
## 19044                                   UIS.NART.1.Q5.M
## 19045                              UIS.NART.1.Q5.M.LPIA
## 19046                                    UIS.NART.1.RUR
## 19047                                  UIS.NART.1.RUR.F
## 19048                             UIS.NART.1.RUR.F.WPIA
## 19049                               UIS.NART.1.RUR.GPIA
## 19050                                  UIS.NART.1.RUR.M
## 19051                             UIS.NART.1.RUR.M.WPIA
## 19052                                 UIS.NART.1.RUR.Q1
## 19053                               UIS.NART.1.RUR.Q1.F
## 19054                            UIS.NART.1.RUR.Q1.GPIA
## 19055                               UIS.NART.1.RUR.Q1.M
## 19056                                 UIS.NART.1.RUR.Q2
## 19057                               UIS.NART.1.RUR.Q2.F
## 19058                            UIS.NART.1.RUR.Q2.GPIA
## 19059                               UIS.NART.1.RUR.Q2.M
## 19060                                 UIS.NART.1.RUR.Q3
## 19061                               UIS.NART.1.RUR.Q3.F
## 19062                            UIS.NART.1.RUR.Q3.GPIA
## 19063                               UIS.NART.1.RUR.Q3.M
## 19064                                 UIS.NART.1.RUR.Q4
## 19065                               UIS.NART.1.RUR.Q4.F
## 19066                            UIS.NART.1.RUR.Q4.GPIA
## 19067                               UIS.NART.1.RUR.Q4.M
## 19068                                 UIS.NART.1.RUR.Q5
## 19069                               UIS.NART.1.RUR.Q5.F
## 19070                            UIS.NART.1.RUR.Q5.GPIA
## 19071                               UIS.NART.1.RUR.Q5.M
## 19072                               UIS.NART.1.RUR.WPIA
## 19073                                    UIS.NART.1.URB
## 19074                                  UIS.NART.1.URB.F
## 19075                             UIS.NART.1.URB.F.WPIA
## 19076                               UIS.NART.1.URB.GPIA
## 19077                                  UIS.NART.1.URB.M
## 19078                             UIS.NART.1.URB.M.WPIA
## 19079                                 UIS.NART.1.URB.Q1
## 19080                               UIS.NART.1.URB.Q1.F
## 19081                            UIS.NART.1.URB.Q1.GPIA
## 19082                               UIS.NART.1.URB.Q1.M
## 19083                                 UIS.NART.1.URB.Q2
## 19084                               UIS.NART.1.URB.Q2.F
## 19085                            UIS.NART.1.URB.Q2.GPIA
## 19086                               UIS.NART.1.URB.Q2.M
## 19087                                 UIS.NART.1.URB.Q3
## 19088                               UIS.NART.1.URB.Q3.F
## 19089                            UIS.NART.1.URB.Q3.GPIA
## 19090                               UIS.NART.1.URB.Q3.M
## 19091                                 UIS.NART.1.URB.Q4
## 19092                               UIS.NART.1.URB.Q4.F
## 19093                            UIS.NART.1.URB.Q4.GPIA
## 19094                               UIS.NART.1.URB.Q4.M
## 19095                                 UIS.NART.1.URB.Q5
## 19096                               UIS.NART.1.URB.Q5.F
## 19097                            UIS.NART.1.URB.Q5.GPIA
## 19098                               UIS.NART.1.URB.Q5.M
## 19099                               UIS.NART.1.URB.WPIA
## 19100                                   UIS.NART.1.WPIA
## 19101                                        UIS.NART.2
## 19102                                      UIS.NART.2.F
## 19103                                 UIS.NART.2.F.LPIA
## 19104                                 UIS.NART.2.F.WPIA
## 19105                                   UIS.NART.2.GPIA
## 19106                                   UIS.NART.2.LPIA
## 19107                                      UIS.NART.2.M
## 19108                                 UIS.NART.2.M.LPIA
## 19109                                 UIS.NART.2.M.WPIA
## 19110                                     UIS.NART.2.Q1
## 19111                                   UIS.NART.2.Q1.F
## 19112                              UIS.NART.2.Q1.F.LPIA
## 19113                                UIS.NART.2.Q1.GPIA
## 19114                                UIS.NART.2.Q1.LPIA
## 19115                                   UIS.NART.2.Q1.M
## 19116                              UIS.NART.2.Q1.M.LPIA
## 19117                                     UIS.NART.2.Q2
## 19118                                   UIS.NART.2.Q2.F
## 19119                              UIS.NART.2.Q2.F.LPIA
## 19120                                UIS.NART.2.Q2.GPIA
## 19121                                UIS.NART.2.Q2.LPIA
## 19122                                   UIS.NART.2.Q2.M
## 19123                              UIS.NART.2.Q2.M.LPIA
## 19124                                     UIS.NART.2.Q3
## 19125                                   UIS.NART.2.Q3.F
## 19126                              UIS.NART.2.Q3.F.LPIA
## 19127                                UIS.NART.2.Q3.GPIA
## 19128                                UIS.NART.2.Q3.LPIA
## 19129                                   UIS.NART.2.Q3.M
## 19130                              UIS.NART.2.Q3.M.LPIA
## 19131                                     UIS.NART.2.Q4
## 19132                                   UIS.NART.2.Q4.F
## 19133                              UIS.NART.2.Q4.F.LPIA
## 19134                                UIS.NART.2.Q4.GPIA
## 19135                                UIS.NART.2.Q4.LPIA
## 19136                                   UIS.NART.2.Q4.M
## 19137                              UIS.NART.2.Q4.M.LPIA
## 19138                                     UIS.NART.2.Q5
## 19139                                   UIS.NART.2.Q5.F
## 19140                              UIS.NART.2.Q5.F.LPIA
## 19141                                UIS.NART.2.Q5.GPIA
## 19142                                UIS.NART.2.Q5.LPIA
## 19143                                   UIS.NART.2.Q5.M
## 19144                              UIS.NART.2.Q5.M.LPIA
## 19145                                    UIS.NART.2.RUR
## 19146                                  UIS.NART.2.RUR.F
## 19147                             UIS.NART.2.RUR.F.WPIA
## 19148                               UIS.NART.2.RUR.GPIA
## 19149                                  UIS.NART.2.RUR.M
## 19150                             UIS.NART.2.RUR.M.WPIA
## 19151                                 UIS.NART.2.RUR.Q1
## 19152                               UIS.NART.2.RUR.Q1.F
## 19153                            UIS.NART.2.RUR.Q1.GPIA
## 19154                               UIS.NART.2.RUR.Q1.M
## 19155                                 UIS.NART.2.RUR.Q2
## 19156                               UIS.NART.2.RUR.Q2.F
## 19157                            UIS.NART.2.RUR.Q2.GPIA
## 19158                               UIS.NART.2.RUR.Q2.M
## 19159                                 UIS.NART.2.RUR.Q3
## 19160                               UIS.NART.2.RUR.Q3.F
## 19161                            UIS.NART.2.RUR.Q3.GPIA
## 19162                               UIS.NART.2.RUR.Q3.M
## 19163                                 UIS.NART.2.RUR.Q4
## 19164                               UIS.NART.2.RUR.Q4.F
## 19165                            UIS.NART.2.RUR.Q4.GPIA
## 19166                               UIS.NART.2.RUR.Q4.M
## 19167                                 UIS.NART.2.RUR.Q5
## 19168                               UIS.NART.2.RUR.Q5.F
## 19169                            UIS.NART.2.RUR.Q5.GPIA
## 19170                               UIS.NART.2.RUR.Q5.M
## 19171                               UIS.NART.2.RUR.WPIA
## 19172                                    UIS.NART.2.URB
## 19173                                  UIS.NART.2.URB.F
## 19174                             UIS.NART.2.URB.F.WPIA
## 19175                               UIS.NART.2.URB.GPIA
## 19176                                  UIS.NART.2.URB.M
## 19177                             UIS.NART.2.URB.M.WPIA
## 19178                                 UIS.NART.2.URB.Q1
## 19179                               UIS.NART.2.URB.Q1.F
## 19180                            UIS.NART.2.URB.Q1.GPIA
## 19181                               UIS.NART.2.URB.Q1.M
## 19182                                 UIS.NART.2.URB.Q2
## 19183                               UIS.NART.2.URB.Q2.F
## 19184                            UIS.NART.2.URB.Q2.GPIA
## 19185                               UIS.NART.2.URB.Q2.M
## 19186                                 UIS.NART.2.URB.Q3
## 19187                               UIS.NART.2.URB.Q3.F
## 19188                            UIS.NART.2.URB.Q3.GPIA
## 19189                               UIS.NART.2.URB.Q3.M
## 19190                                 UIS.NART.2.URB.Q4
## 19191                               UIS.NART.2.URB.Q4.F
## 19192                            UIS.NART.2.URB.Q4.GPIA
## 19193                               UIS.NART.2.URB.Q4.M
## 19194                                 UIS.NART.2.URB.Q5
## 19195                               UIS.NART.2.URB.Q5.F
## 19196                            UIS.NART.2.URB.Q5.GPIA
## 19197                               UIS.NART.2.URB.Q5.M
## 19198                               UIS.NART.2.URB.WPIA
## 19199                                   UIS.NART.2.WPIA
## 19200                                        UIS.NART.3
## 19201                                      UIS.NART.3.F
## 19202                                 UIS.NART.3.F.LPIA
## 19203                                 UIS.NART.3.F.WPIA
## 19204                                   UIS.NART.3.GPIA
## 19205                                   UIS.NART.3.LPIA
## 19206                                      UIS.NART.3.M
## 19207                                 UIS.NART.3.M.LPIA
## 19208                                 UIS.NART.3.M.WPIA
## 19209                                     UIS.NART.3.Q1
## 19210                                   UIS.NART.3.Q1.F
## 19211                              UIS.NART.3.Q1.F.LPIA
## 19212                                UIS.NART.3.Q1.GPIA
## 19213                                UIS.NART.3.Q1.LPIA
## 19214                                   UIS.NART.3.Q1.M
## 19215                              UIS.NART.3.Q1.M.LPIA
## 19216                                     UIS.NART.3.Q2
## 19217                                   UIS.NART.3.Q2.F
## 19218                              UIS.NART.3.Q2.F.LPIA
## 19219                                UIS.NART.3.Q2.GPIA
## 19220                                UIS.NART.3.Q2.LPIA
## 19221                                   UIS.NART.3.Q2.M
## 19222                              UIS.NART.3.Q2.M.LPIA
## 19223                                     UIS.NART.3.Q3
## 19224                                   UIS.NART.3.Q3.F
## 19225                              UIS.NART.3.Q3.F.LPIA
## 19226                                UIS.NART.3.Q3.GPIA
## 19227                                UIS.NART.3.Q3.LPIA
## 19228                                   UIS.NART.3.Q3.M
## 19229                              UIS.NART.3.Q3.M.LPIA
## 19230                                     UIS.NART.3.Q4
## 19231                                   UIS.NART.3.Q4.F
## 19232                              UIS.NART.3.Q4.F.LPIA
## 19233                                UIS.NART.3.Q4.GPIA
## 19234                                UIS.NART.3.Q4.LPIA
## 19235                                   UIS.NART.3.Q4.M
## 19236                              UIS.NART.3.Q4.M.LPIA
## 19237                                     UIS.NART.3.Q5
## 19238                                   UIS.NART.3.Q5.F
## 19239                              UIS.NART.3.Q5.F.LPIA
## 19240                                UIS.NART.3.Q5.GPIA
## 19241                                UIS.NART.3.Q5.LPIA
## 19242                                   UIS.NART.3.Q5.M
## 19243                              UIS.NART.3.Q5.M.LPIA
## 19244                                    UIS.NART.3.RUR
## 19245                                  UIS.NART.3.RUR.F
## 19246                             UIS.NART.3.RUR.F.WPIA
## 19247                               UIS.NART.3.RUR.GPIA
## 19248                                  UIS.NART.3.RUR.M
## 19249                             UIS.NART.3.RUR.M.WPIA
## 19250                                 UIS.NART.3.RUR.Q1
## 19251                               UIS.NART.3.RUR.Q1.F
## 19252                            UIS.NART.3.RUR.Q1.GPIA
## 19253                               UIS.NART.3.RUR.Q1.M
## 19254                                 UIS.NART.3.RUR.Q2
## 19255                               UIS.NART.3.RUR.Q2.F
## 19256                            UIS.NART.3.RUR.Q2.GPIA
## 19257                               UIS.NART.3.RUR.Q2.M
## 19258                                 UIS.NART.3.RUR.Q3
## 19259                               UIS.NART.3.RUR.Q3.F
## 19260                            UIS.NART.3.RUR.Q3.GPIA
## 19261                               UIS.NART.3.RUR.Q3.M
## 19262                                 UIS.NART.3.RUR.Q4
## 19263                               UIS.NART.3.RUR.Q4.F
## 19264                            UIS.NART.3.RUR.Q4.GPIA
## 19265                               UIS.NART.3.RUR.Q4.M
## 19266                                 UIS.NART.3.RUR.Q5
## 19267                               UIS.NART.3.RUR.Q5.F
## 19268                            UIS.NART.3.RUR.Q5.GPIA
## 19269                               UIS.NART.3.RUR.Q5.M
## 19270                               UIS.NART.3.RUR.WPIA
## 19271                                    UIS.NART.3.URB
## 19272                                  UIS.NART.3.URB.F
## 19273                             UIS.NART.3.URB.F.WPIA
## 19274                               UIS.NART.3.URB.GPIA
## 19275                                  UIS.NART.3.URB.M
## 19276                             UIS.NART.3.URB.M.WPIA
## 19277                                 UIS.NART.3.URB.Q1
## 19278                               UIS.NART.3.URB.Q1.F
## 19279                            UIS.NART.3.URB.Q1.GPIA
## 19280                               UIS.NART.3.URB.Q1.M
## 19281                                 UIS.NART.3.URB.Q2
## 19282                               UIS.NART.3.URB.Q2.F
## 19283                            UIS.NART.3.URB.Q2.GPIA
## 19284                               UIS.NART.3.URB.Q2.M
## 19285                                 UIS.NART.3.URB.Q3
## 19286                               UIS.NART.3.URB.Q3.F
## 19287                            UIS.NART.3.URB.Q3.GPIA
## 19288                               UIS.NART.3.URB.Q3.M
## 19289                                 UIS.NART.3.URB.Q4
## 19290                               UIS.NART.3.URB.Q4.F
## 19291                            UIS.NART.3.URB.Q4.GPIA
## 19292                               UIS.NART.3.URB.Q4.M
## 19293                                 UIS.NART.3.URB.Q5
## 19294                               UIS.NART.3.URB.Q5.F
## 19295                            UIS.NART.3.URB.Q5.GPIA
## 19296                               UIS.NART.3.URB.Q5.M
## 19297                               UIS.NART.3.URB.WPIA
## 19298                                   UIS.NART.3.WPIA
## 19299                                     UIS.NERA.AGM1
## 19300                                   UIS.NERA.AGM1.F
## 19301                             UIS.NERA.AGM1.GPIA.CP
## 19302                                   UIS.NERA.AGM1.M
## 19303                                        UIS.NERT.1
## 19304                                      UIS.NERT.1.F
## 19305                                    UIS.NERT.1.GPI
## 19306                                      UIS.NERT.1.M
## 19307                                        UIS.NERT.2
## 19308                                      UIS.NERT.2.F
## 19309                                    UIS.NERT.2.GPI
## 19310                                      UIS.NERT.2.M
## 19311                                        UIS.NERT.3
## 19312                                      UIS.NERT.3.F
## 19313                                    UIS.NERT.3.GPI
## 19314                                      UIS.NERT.3.M
## 19315                                       UIS.OAEPG.1
## 19316                                     UIS.OAEPG.1.F
## 19317                                  UIS.OAEPG.1.GPIA
## 19318                                     UIS.OAEPG.1.M
## 19319                                   UIS.OAEPG.2.GPV
## 19320                                 UIS.OAEPG.2.GPV.F
## 19321                              UIS.OAEPG.2.GPV.GPIA
## 19322                                 UIS.OAEPG.2.GPV.M
## 19323                     UIS.ODAFLOW.VOLUMESCHOLARSHIP
## 19324                                   UIS.OE.56.40510
## 19325                                   UIS.OFST.1T2.CP
## 19326                                 UIS.OFST.1T2.F.CP
## 19327                                 UIS.OFST.1T2.M.CP
## 19328                                   UIS.OFST.1T3.CP
## 19329                                 UIS.OFST.1T3.F.CP
## 19330                                 UIS.OFST.1T3.M.CP
## 19331                                        UIS.OFST.2
## 19332                                      UIS.OFST.2.F
## 19333                                      UIS.OFST.2.M
## 19334                                   UIS.OFST.2T3.CP
## 19335                                 UIS.OFST.2T3.F.CP
## 19336                                 UIS.OFST.2T3.M.CP
## 19337                                     UIS.OFST.3.CP
## 19338                                   UIS.OFST.3.F.CP
## 19339                                   UIS.OFST.3.M.CP
## 19340                                  UIS.OFST.AGM1.CP
## 19341                                UIS.OFST.AGM1.F.CP
## 19342                                UIS.OFST.AGM1.M.CP
## 19343                                        UIS.OMR.56
## 19344                         UIS.ONTRACK.THREE.DOMAINS
## 19345                       UIS.ONTRACK.THREE.DOMAINS.F
## 19346                    UIS.ONTRACK.THREE.DOMAINS.GPIA
## 19347                       UIS.ONTRACK.THREE.DOMAINS.M
## 19348                             UIS.PER.11T15.BULLIED
## 19349                           UIS.PER.11T15.BULLIED.F
## 19350                        UIS.PER.11T15.BULLIED.GPIA
## 19351                     UIS.PER.11T15.BULLIED.HIGHSES
## 19352                      UIS.PER.11T15.BULLIED.LOWSES
## 19353                           UIS.PER.11T15.BULLIED.M
## 19354                      UIS.PER.11T15.BULLIED.NATIVE
## 19355                         UIS.PER.11T15.BULLIED.NON
## 19356                        UIS.PER.11T15.BULLIED.NPIA
## 19357                        UIS.PER.11T15.BULLIED.WPIA
## 19358                                      UIS.PLILLITP
## 19359                                    UIS.PLILLITP.F
## 19360                                    UIS.PLILLITP.M
## 19361                                    UIS.POSTIMUENV
## 19362                                  UIS.POSTIMUENV.F
## 19363                               UIS.POSTIMUENV.GPIA
## 19364                               UIS.POSTIMUENV.LPIA
## 19365                                  UIS.POSTIMUENV.M
## 19366                                UIS.POSTIMUENV.RUR
## 19367                                UIS.POSTIMUENV.URB
## 19368                               UIS.POSTIMUENV.WPIA
## 19369                                UIS.POSTIMUENV.WQ1
## 19370                                UIS.POSTIMUENV.WQ5
## 19371                                         UIS.PRP.0
## 19372                                        UIS.PRP.01
## 19373                                         UIS.PRP.2
## 19374                                         UIS.PRP.3
## 19375                                         UIS.PRP.4
## 19376                                     UIS.PRYA.12MO
## 19377                                   UIS.PRYA.12MO.F
## 19378                                 UIS.PRYA.12MO.GPI
## 19379                                   UIS.PRYA.12MO.M
## 19380                            UIS.PTRHC.02.QUALIFIED
## 19381                              UIS.PTRHC.02.TRAINED
## 19382                             UIS.PTRHC.1.QUALIFIED
## 19383                               UIS.PTRHC.1.TRAINED
## 19384                             UIS.PTRHC.2.QUALIFIED
## 19385                               UIS.PTRHC.2.TRAINED
## 19386                           UIS.PTRHC.2T3.QUALIFIED
## 19387                             UIS.PTRHC.2T3.TRAINED
## 19388                             UIS.PTRHC.3.QUALIFIED
## 19389                               UIS.PTRHC.3.TRAINED
## 19390                                       UIS.QUTP.02
## 19391                                     UIS.QUTP.02.F
## 19392                                  UIS.QUTP.02.GPIA
## 19393                                     UIS.QUTP.02.M
## 19394                                        UIS.QUTP.1
## 19395                                      UIS.QUTP.1.F
## 19396                                   UIS.QUTP.1.GPIA
## 19397                                      UIS.QUTP.1.M
## 19398                                        UIS.QUTP.2
## 19399                                      UIS.QUTP.2.F
## 19400                                   UIS.QUTP.2.GPIA
## 19401                                      UIS.QUTP.2.M
## 19402                                      UIS.QUTP.2T3
## 19403                                    UIS.QUTP.2T3.F
## 19404                                 UIS.QUTP.2T3.GPIA
## 19405                                    UIS.QUTP.2T3.M
## 19406                                        UIS.QUTP.3
## 19407                                      UIS.QUTP.3.F
## 19408                                   UIS.QUTP.3.GPIA
## 19409                                      UIS.QUTP.3.M
## 19410                                           UIS.R.1
## 19411                                         UIS.R.1.F
## 19412                                        UIS.R.1.G1
## 19413                                      UIS.R.1.G1.F
## 19414                                      UIS.R.1.G1.M
## 19415                                        UIS.R.1.G2
## 19416                                      UIS.R.1.G2.F
## 19417                                      UIS.R.1.G2.M
## 19418                                        UIS.R.1.G3
## 19419                                      UIS.R.1.G3.F
## 19420                                      UIS.R.1.G3.M
## 19421                                        UIS.R.1.G4
## 19422                                      UIS.R.1.G4.F
## 19423                                      UIS.R.1.G4.M
## 19424                                        UIS.R.1.G5
## 19425                                      UIS.R.1.G5.F
## 19426                                      UIS.R.1.G5.M
## 19427                                        UIS.R.1.G6
## 19428                                      UIS.R.1.G6.F
## 19429                                      UIS.R.1.G6.M
## 19430                                        UIS.R.1.G7
## 19431                                      UIS.R.1.G7.F
## 19432                                      UIS.R.1.G7.M
## 19433                                       UIS.R.1.GUK
## 19434                                     UIS.R.1.GUK.F
## 19435                                     UIS.R.1.GUK.M
## 19436                                         UIS.R.1.M
## 19437                                       UIS.R.2.GPV
## 19438                                     UIS.R.2.GPV.F
## 19439                                    UIS.R.2.GPV.G1
## 19440                                  UIS.R.2.GPV.G1.F
## 19441                                  UIS.R.2.GPV.G1.M
## 19442                                    UIS.R.2.GPV.G2
## 19443                                  UIS.R.2.GPV.G2.F
## 19444                                  UIS.R.2.GPV.G2.M
## 19445                                    UIS.R.2.GPV.G3
## 19446                                  UIS.R.2.GPV.G3.F
## 19447                                  UIS.R.2.GPV.G3.M
## 19448                                    UIS.R.2.GPV.G4
## 19449                                  UIS.R.2.GPV.G4.F
## 19450                                  UIS.R.2.GPV.G4.M
## 19451                                    UIS.R.2.GPV.G5
## 19452                                  UIS.R.2.GPV.G5.F
## 19453                                  UIS.R.2.GPV.G5.M
## 19454                                    UIS.R.2.GPV.G6
## 19455                                  UIS.R.2.GPV.G6.F
## 19456                                  UIS.R.2.GPV.G6.M
## 19457                                   UIS.R.2.GPV.GUK
## 19458                                 UIS.R.2.GPV.GUK.F
## 19459                                 UIS.R.2.GPV.GUK.M
## 19460                                     UIS.R.2.GPV.M
## 19461                                     UIS.READ.G2T3
## 19462                                   UIS.READ.G2T3.F
## 19463                                UIS.READ.G2T3.GPIA
## 19464                             UIS.READ.G2T3.HIGHSES
## 19465                            UIS.READ.G2T3.LANGTEST
## 19466                              UIS.READ.G2T3.LOWSES
## 19467                                UIS.READ.G2T3.LPIA
## 19468                               UIS.READ.G2T3.LTPIA
## 19469                                   UIS.READ.G2T3.M
## 19470                              UIS.READ.G2T3.NATIVE
## 19471                         UIS.READ.G2T3.NONLANGTEST
## 19472                           UIS.READ.G2T3.NONNATIVE
## 19473                                UIS.READ.G2T3.NPIA
## 19474                               UIS.READ.G2T3.RURAL
## 19475                               UIS.READ.G2T3.URBAN
## 19476                                UIS.READ.G2T3.WPIA
## 19477                                 UIS.READ.LOWERSEC
## 19478                               UIS.READ.LOWERSEC.F
## 19479                            UIS.READ.LOWERSEC.GPIA
## 19480                         UIS.READ.LOWERSEC.HIGHSES
## 19481                        UIS.READ.LOWERSEC.LANGTEST
## 19482                          UIS.READ.LOWERSEC.LOWSES
## 19483                            UIS.READ.LOWERSEC.LPIA
## 19484                           UIS.READ.LOWERSEC.LTPIA
## 19485                               UIS.READ.LOWERSEC.M
## 19486                          UIS.READ.LOWERSEC.NATIVE
## 19487                     UIS.READ.LOWERSEC.NONLANGTEST
## 19488                       UIS.READ.LOWERSEC.NONNATIVE
## 19489                            UIS.READ.LOWERSEC.NPIA
## 19490                           UIS.READ.LOWERSEC.RURAL
## 19491                           UIS.READ.LOWERSEC.URBAN
## 19492                            UIS.READ.LOWERSEC.WPIA
## 19493                                  UIS.READ.PRIMARY
## 19494                                UIS.READ.PRIMARY.F
## 19495                             UIS.READ.PRIMARY.GPIA
## 19496                          UIS.READ.PRIMARY.HIGHSES
## 19497                         UIS.READ.PRIMARY.LANGTEST
## 19498                           UIS.READ.PRIMARY.LOWSES
## 19499                             UIS.READ.PRIMARY.LPIA
## 19500                            UIS.READ.PRIMARY.LTPIA
## 19501                                UIS.READ.PRIMARY.M
## 19502                           UIS.READ.PRIMARY.NATIVE
## 19503                      UIS.READ.PRIMARY.NONLANGTEST
## 19504                        UIS.READ.PRIMARY.NONNATIVE
## 19505                             UIS.READ.PRIMARY.NPIA
## 19506                            UIS.READ.PRIMARY.RURAL
## 19507                            UIS.READ.PRIMARY.URBAN
## 19508                             UIS.READ.PRIMARY.WPIA
## 19509                                        UIS.REPR.1
## 19510                                      UIS.REPR.1.F
## 19511                                     UIS.REPR.1.G1
## 19512                                   UIS.REPR.1.G1.F
## 19513                                   UIS.REPR.1.G1.M
## 19514                                     UIS.REPR.1.G2
## 19515                                   UIS.REPR.1.G2.F
## 19516                                   UIS.REPR.1.G2.M
## 19517                                     UIS.REPR.1.G3
## 19518                                   UIS.REPR.1.G3.F
## 19519                                   UIS.REPR.1.G3.M
## 19520                                     UIS.REPR.1.G4
## 19521                                   UIS.REPR.1.G4.F
## 19522                                   UIS.REPR.1.G4.M
## 19523                                     UIS.REPR.1.G5
## 19524                                   UIS.REPR.1.G5.F
## 19525                                   UIS.REPR.1.G5.M
## 19526                                     UIS.REPR.1.G6
## 19527                                   UIS.REPR.1.G6.F
## 19528                                   UIS.REPR.1.G6.M
## 19529                                     UIS.REPR.1.G7
## 19530                                   UIS.REPR.1.G7.F
## 19531                                   UIS.REPR.1.G7.M
## 19532                                      UIS.REPR.1.M
## 19533                                    UIS.REPR.2.GPV
## 19534                                  UIS.REPR.2.GPV.F
## 19535                                 UIS.REPR.2.GPV.G1
## 19536                               UIS.REPR.2.GPV.G1.F
## 19537                               UIS.REPR.2.GPV.G1.M
## 19538                                 UIS.REPR.2.GPV.G2
## 19539                               UIS.REPR.2.GPV.G2.F
## 19540                               UIS.REPR.2.GPV.G2.M
## 19541                                 UIS.REPR.2.GPV.G3
## 19542                               UIS.REPR.2.GPV.G3.F
## 19543                               UIS.REPR.2.GPV.G3.M
## 19544                                 UIS.REPR.2.GPV.G4
## 19545                               UIS.REPR.2.GPV.G4.F
## 19546                               UIS.REPR.2.GPV.G4.M
## 19547                                 UIS.REPR.2.GPV.G5
## 19548                               UIS.REPR.2.GPV.G5.F
## 19549                               UIS.REPR.2.GPV.G5.M
## 19550                                  UIS.REPR.2.GPV.M
## 19551                                       UIS.ROFST.1
## 19552                                     UIS.ROFST.1.F
## 19553                               UIS.ROFST.1.GPIA.CP
## 19554                                     UIS.ROFST.1.M
## 19555                                  UIS.ROFST.1T2.CP
## 19556                                UIS.ROFST.1T2.F.CP
## 19557                             UIS.ROFST.1T2.GPIA.CP
## 19558                                UIS.ROFST.1T2.M.CP
## 19559                                  UIS.ROFST.1T3.CP
## 19560                                UIS.ROFST.1T3.F.CP
## 19561                             UIS.ROFST.1T3.GPIA.CP
## 19562                                UIS.ROFST.1T3.M.CP
## 19563                                       UIS.ROFST.2
## 19564                                     UIS.ROFST.2.F
## 19565                               UIS.ROFST.2.GPIA.CP
## 19566                                     UIS.ROFST.2.M
## 19567                                  UIS.ROFST.2T3.CP
## 19568                                UIS.ROFST.2T3.F.CP
## 19569                             UIS.ROFST.2T3.GPIA.CP
## 19570                                UIS.ROFST.2T3.M.CP
## 19571                                    UIS.ROFST.3.CP
## 19572                                  UIS.ROFST.3.F.CP
## 19573                               UIS.ROFST.3.GPIA.CP
## 19574                                  UIS.ROFST.3.M.CP
## 19575                                 UIS.ROFST.AGM1.CP
## 19576                               UIS.ROFST.AGM1.F.CP
## 19577                            UIS.ROFST.AGM1.GPIA.CP
## 19578                               UIS.ROFST.AGM1.M.CP
## 19579                                     UIS.ROFST.H.1
## 19580                                   UIS.ROFST.H.1.F
## 19581                              UIS.ROFST.H.1.F.LPIA
## 19582                              UIS.ROFST.H.1.F.WPIA
## 19583                                UIS.ROFST.H.1.GPIA
## 19584                                UIS.ROFST.H.1.LPIA
## 19585                                   UIS.ROFST.H.1.M
## 19586                              UIS.ROFST.H.1.M.LPIA
## 19587                              UIS.ROFST.H.1.M.WPIA
## 19588                                  UIS.ROFST.H.1.Q1
## 19589                                UIS.ROFST.H.1.Q1.F
## 19590                           UIS.ROFST.H.1.Q1.F.LPIA
## 19591                             UIS.ROFST.H.1.Q1.GPIA
## 19592                             UIS.ROFST.H.1.Q1.LPIA
## 19593                                UIS.ROFST.H.1.Q1.M
## 19594                           UIS.ROFST.H.1.Q1.M.LPIA
## 19595                                  UIS.ROFST.H.1.Q2
## 19596                                UIS.ROFST.H.1.Q2.F
## 19597                           UIS.ROFST.H.1.Q2.F.LPIA
## 19598                             UIS.ROFST.H.1.Q2.GPIA
## 19599                             UIS.ROFST.H.1.Q2.LPIA
## 19600                                UIS.ROFST.H.1.Q2.M
## 19601                           UIS.ROFST.H.1.Q2.M.LPIA
## 19602                                  UIS.ROFST.H.1.Q3
## 19603                                UIS.ROFST.H.1.Q3.F
## 19604                           UIS.ROFST.H.1.Q3.F.LPIA
## 19605                             UIS.ROFST.H.1.Q3.GPIA
## 19606                             UIS.ROFST.H.1.Q3.LPIA
## 19607                                UIS.ROFST.H.1.Q3.M
## 19608                           UIS.ROFST.H.1.Q3.M.LPIA
## 19609                                  UIS.ROFST.H.1.Q4
## 19610                                UIS.ROFST.H.1.Q4.F
## 19611                           UIS.ROFST.H.1.Q4.F.LPIA
## 19612                             UIS.ROFST.H.1.Q4.GPIA
## 19613                             UIS.ROFST.H.1.Q4.LPIA
## 19614                                UIS.ROFST.H.1.Q4.M
## 19615                           UIS.ROFST.H.1.Q4.M.LPIA
## 19616                                  UIS.ROFST.H.1.Q5
## 19617                                UIS.ROFST.H.1.Q5.F
## 19618                           UIS.ROFST.H.1.Q5.F.LPIA
## 19619                             UIS.ROFST.H.1.Q5.GPIA
## 19620                             UIS.ROFST.H.1.Q5.LPIA
## 19621                                UIS.ROFST.H.1.Q5.M
## 19622                           UIS.ROFST.H.1.Q5.M.LPIA
## 19623                                 UIS.ROFST.H.1.RUR
## 19624                               UIS.ROFST.H.1.RUR.F
## 19625                          UIS.ROFST.H.1.RUR.F.WPIA
## 19626                            UIS.ROFST.H.1.RUR.GPIA
## 19627                               UIS.ROFST.H.1.RUR.M
## 19628                          UIS.ROFST.H.1.RUR.M.WPIA
## 19629                              UIS.ROFST.H.1.RUR.Q1
## 19630                            UIS.ROFST.H.1.RUR.Q1.F
## 19631                         UIS.ROFST.H.1.RUR.Q1.GPIA
## 19632                            UIS.ROFST.H.1.RUR.Q1.M
## 19633                              UIS.ROFST.H.1.RUR.Q2
## 19634                            UIS.ROFST.H.1.RUR.Q2.F
## 19635                         UIS.ROFST.H.1.RUR.Q2.GPIA
## 19636                            UIS.ROFST.H.1.RUR.Q2.M
## 19637                              UIS.ROFST.H.1.RUR.Q3
## 19638                            UIS.ROFST.H.1.RUR.Q3.F
## 19639                         UIS.ROFST.H.1.RUR.Q3.GPIA
## 19640                            UIS.ROFST.H.1.RUR.Q3.M
## 19641                              UIS.ROFST.H.1.RUR.Q4
## 19642                            UIS.ROFST.H.1.RUR.Q4.F
## 19643                         UIS.ROFST.H.1.RUR.Q4.GPIA
## 19644                            UIS.ROFST.H.1.RUR.Q4.M
## 19645                              UIS.ROFST.H.1.RUR.Q5
## 19646                            UIS.ROFST.H.1.RUR.Q5.F
## 19647                         UIS.ROFST.H.1.RUR.Q5.GPIA
## 19648                            UIS.ROFST.H.1.RUR.Q5.M
## 19649                            UIS.ROFST.H.1.RUR.WPIA
## 19650                                 UIS.ROFST.H.1.URB
## 19651                               UIS.ROFST.H.1.URB.F
## 19652                          UIS.ROFST.H.1.URB.F.WPIA
## 19653                            UIS.ROFST.H.1.URB.GPIA
## 19654                               UIS.ROFST.H.1.URB.M
## 19655                          UIS.ROFST.H.1.URB.M.WPIA
## 19656                              UIS.ROFST.H.1.URB.Q1
## 19657                            UIS.ROFST.H.1.URB.Q1.F
## 19658                         UIS.ROFST.H.1.URB.Q1.GPIA
## 19659                            UIS.ROFST.H.1.URB.Q1.M
## 19660                              UIS.ROFST.H.1.URB.Q2
## 19661                            UIS.ROFST.H.1.URB.Q2.F
## 19662                         UIS.ROFST.H.1.URB.Q2.GPIA
## 19663                            UIS.ROFST.H.1.URB.Q2.M
## 19664                              UIS.ROFST.H.1.URB.Q3
## 19665                            UIS.ROFST.H.1.URB.Q3.F
## 19666                         UIS.ROFST.H.1.URB.Q3.GPIA
## 19667                            UIS.ROFST.H.1.URB.Q3.M
## 19668                              UIS.ROFST.H.1.URB.Q4
## 19669                            UIS.ROFST.H.1.URB.Q4.F
## 19670                         UIS.ROFST.H.1.URB.Q4.GPIA
## 19671                            UIS.ROFST.H.1.URB.Q4.M
## 19672                              UIS.ROFST.H.1.URB.Q5
## 19673                            UIS.ROFST.H.1.URB.Q5.F
## 19674                         UIS.ROFST.H.1.URB.Q5.GPIA
## 19675                            UIS.ROFST.H.1.URB.Q5.M
## 19676                            UIS.ROFST.H.1.URB.WPIA
## 19677                                UIS.ROFST.H.1.WPIA
## 19678                                     UIS.ROFST.H.2
## 19679                                   UIS.ROFST.H.2.F
## 19680                              UIS.ROFST.H.2.F.LPIA
## 19681                              UIS.ROFST.H.2.F.WPIA
## 19682                                UIS.ROFST.H.2.GPIA
## 19683                                UIS.ROFST.H.2.LPIA
## 19684                                   UIS.ROFST.H.2.M
## 19685                              UIS.ROFST.H.2.M.LPIA
## 19686                              UIS.ROFST.H.2.M.WPIA
## 19687                                  UIS.ROFST.H.2.Q1
## 19688                                UIS.ROFST.H.2.Q1.F
## 19689                           UIS.ROFST.H.2.Q1.F.LPIA
## 19690                             UIS.ROFST.H.2.Q1.GPIA
## 19691                             UIS.ROFST.H.2.Q1.LPIA
## 19692                                UIS.ROFST.H.2.Q1.M
## 19693                           UIS.ROFST.H.2.Q1.M.LPIA
## 19694                                  UIS.ROFST.H.2.Q2
## 19695                                UIS.ROFST.H.2.Q2.F
## 19696                           UIS.ROFST.H.2.Q2.F.LPIA
## 19697                             UIS.ROFST.H.2.Q2.GPIA
## 19698                             UIS.ROFST.H.2.Q2.LPIA
## 19699                                UIS.ROFST.H.2.Q2.M
## 19700                           UIS.ROFST.H.2.Q2.M.LPIA
## 19701                                  UIS.ROFST.H.2.Q3
## 19702                                UIS.ROFST.H.2.Q3.F
## 19703                           UIS.ROFST.H.2.Q3.F.LPIA
## 19704                             UIS.ROFST.H.2.Q3.GPIA
## 19705                             UIS.ROFST.H.2.Q3.LPIA
## 19706                                UIS.ROFST.H.2.Q3.M
## 19707                           UIS.ROFST.H.2.Q3.M.LPIA
## 19708                                  UIS.ROFST.H.2.Q4
## 19709                                UIS.ROFST.H.2.Q4.F
## 19710                           UIS.ROFST.H.2.Q4.F.LPIA
## 19711                             UIS.ROFST.H.2.Q4.GPIA
## 19712                             UIS.ROFST.H.2.Q4.LPIA
## 19713                                UIS.ROFST.H.2.Q4.M
## 19714                           UIS.ROFST.H.2.Q4.M.LPIA
## 19715                                  UIS.ROFST.H.2.Q5
## 19716                                UIS.ROFST.H.2.Q5.F
## 19717                           UIS.ROFST.H.2.Q5.F.LPIA
## 19718                             UIS.ROFST.H.2.Q5.GPIA
## 19719                             UIS.ROFST.H.2.Q5.LPIA
## 19720                                UIS.ROFST.H.2.Q5.M
## 19721                           UIS.ROFST.H.2.Q5.M.LPIA
## 19722                                 UIS.ROFST.H.2.RUR
## 19723                               UIS.ROFST.H.2.RUR.F
## 19724                          UIS.ROFST.H.2.RUR.F.WPIA
## 19725                            UIS.ROFST.H.2.RUR.GPIA
## 19726                               UIS.ROFST.H.2.RUR.M
## 19727                          UIS.ROFST.H.2.RUR.M.WPIA
## 19728                              UIS.ROFST.H.2.RUR.Q1
## 19729                            UIS.ROFST.H.2.RUR.Q1.F
## 19730                         UIS.ROFST.H.2.RUR.Q1.GPIA
## 19731                            UIS.ROFST.H.2.RUR.Q1.M
## 19732                              UIS.ROFST.H.2.RUR.Q2
## 19733                            UIS.ROFST.H.2.RUR.Q2.F
## 19734                         UIS.ROFST.H.2.RUR.Q2.GPIA
## 19735                            UIS.ROFST.H.2.RUR.Q2.M
## 19736                              UIS.ROFST.H.2.RUR.Q3
## 19737                            UIS.ROFST.H.2.RUR.Q3.F
## 19738                         UIS.ROFST.H.2.RUR.Q3.GPIA
## 19739                            UIS.ROFST.H.2.RUR.Q3.M
## 19740                              UIS.ROFST.H.2.RUR.Q4
## 19741                            UIS.ROFST.H.2.RUR.Q4.F
## 19742                         UIS.ROFST.H.2.RUR.Q4.GPIA
## 19743                            UIS.ROFST.H.2.RUR.Q4.M
## 19744                              UIS.ROFST.H.2.RUR.Q5
## 19745                            UIS.ROFST.H.2.RUR.Q5.F
## 19746                         UIS.ROFST.H.2.RUR.Q5.GPIA
## 19747                            UIS.ROFST.H.2.RUR.Q5.M
## 19748                            UIS.ROFST.H.2.RUR.WPIA
## 19749                                 UIS.ROFST.H.2.URB
## 19750                               UIS.ROFST.H.2.URB.F
## 19751                          UIS.ROFST.H.2.URB.F.WPIA
## 19752                            UIS.ROFST.H.2.URB.GPIA
## 19753                               UIS.ROFST.H.2.URB.M
## 19754                          UIS.ROFST.H.2.URB.M.WPIA
## 19755                              UIS.ROFST.H.2.URB.Q1
## 19756                            UIS.ROFST.H.2.URB.Q1.F
## 19757                         UIS.ROFST.H.2.URB.Q1.GPIA
## 19758                            UIS.ROFST.H.2.URB.Q1.M
## 19759                              UIS.ROFST.H.2.URB.Q2
## 19760                            UIS.ROFST.H.2.URB.Q2.F
## 19761                         UIS.ROFST.H.2.URB.Q2.GPIA
## 19762                            UIS.ROFST.H.2.URB.Q2.M
## 19763                              UIS.ROFST.H.2.URB.Q3
## 19764                            UIS.ROFST.H.2.URB.Q3.F
## 19765                         UIS.ROFST.H.2.URB.Q3.GPIA
## 19766                            UIS.ROFST.H.2.URB.Q3.M
## 19767                              UIS.ROFST.H.2.URB.Q4
## 19768                            UIS.ROFST.H.2.URB.Q4.F
## 19769                         UIS.ROFST.H.2.URB.Q4.GPIA
## 19770                            UIS.ROFST.H.2.URB.Q4.M
## 19771                              UIS.ROFST.H.2.URB.Q5
## 19772                            UIS.ROFST.H.2.URB.Q5.F
## 19773                         UIS.ROFST.H.2.URB.Q5.GPIA
## 19774                            UIS.ROFST.H.2.URB.Q5.M
## 19775                            UIS.ROFST.H.2.URB.WPIA
## 19776                                UIS.ROFST.H.2.WPIA
## 19777                                     UIS.ROFST.H.3
## 19778                                   UIS.ROFST.H.3.F
## 19779                              UIS.ROFST.H.3.F.LPIA
## 19780                              UIS.ROFST.H.3.F.WPIA
## 19781                                UIS.ROFST.H.3.GPIA
## 19782                                UIS.ROFST.H.3.LPIA
## 19783                                   UIS.ROFST.H.3.M
## 19784                              UIS.ROFST.H.3.M.LPIA
## 19785                              UIS.ROFST.H.3.M.WPIA
## 19786                                  UIS.ROFST.H.3.Q1
## 19787                                UIS.ROFST.H.3.Q1.F
## 19788                           UIS.ROFST.H.3.Q1.F.LPIA
## 19789                             UIS.ROFST.H.3.Q1.GPIA
## 19790                             UIS.ROFST.H.3.Q1.LPIA
## 19791                                UIS.ROFST.H.3.Q1.M
## 19792                           UIS.ROFST.H.3.Q1.M.LPIA
## 19793                                  UIS.ROFST.H.3.Q2
## 19794                                UIS.ROFST.H.3.Q2.F
## 19795                           UIS.ROFST.H.3.Q2.F.LPIA
## 19796                             UIS.ROFST.H.3.Q2.GPIA
## 19797                             UIS.ROFST.H.3.Q2.LPIA
## 19798                                UIS.ROFST.H.3.Q2.M
## 19799                           UIS.ROFST.H.3.Q2.M.LPIA
## 19800                                  UIS.ROFST.H.3.Q3
## 19801                                UIS.ROFST.H.3.Q3.F
## 19802                           UIS.ROFST.H.3.Q3.F.LPIA
## 19803                             UIS.ROFST.H.3.Q3.GPIA
## 19804                             UIS.ROFST.H.3.Q3.LPIA
## 19805                                UIS.ROFST.H.3.Q3.M
## 19806                           UIS.ROFST.H.3.Q3.M.LPIA
## 19807                                  UIS.ROFST.H.3.Q4
## 19808                                UIS.ROFST.H.3.Q4.F
## 19809                           UIS.ROFST.H.3.Q4.F.LPIA
## 19810                             UIS.ROFST.H.3.Q4.GPIA
## 19811                             UIS.ROFST.H.3.Q4.LPIA
## 19812                                UIS.ROFST.H.3.Q4.M
## 19813                           UIS.ROFST.H.3.Q4.M.LPIA
## 19814                                  UIS.ROFST.H.3.Q5
## 19815                                UIS.ROFST.H.3.Q5.F
## 19816                           UIS.ROFST.H.3.Q5.F.LPIA
## 19817                             UIS.ROFST.H.3.Q5.GPIA
## 19818                             UIS.ROFST.H.3.Q5.LPIA
## 19819                                UIS.ROFST.H.3.Q5.M
## 19820                           UIS.ROFST.H.3.Q5.M.LPIA
## 19821                                 UIS.ROFST.H.3.RUR
## 19822                               UIS.ROFST.H.3.RUR.F
## 19823                          UIS.ROFST.H.3.RUR.F.WPIA
## 19824                            UIS.ROFST.H.3.RUR.GPIA
## 19825                               UIS.ROFST.H.3.RUR.M
## 19826                          UIS.ROFST.H.3.RUR.M.WPIA
## 19827                              UIS.ROFST.H.3.RUR.Q1
## 19828                            UIS.ROFST.H.3.RUR.Q1.F
## 19829                         UIS.ROFST.H.3.RUR.Q1.GPIA
## 19830                            UIS.ROFST.H.3.RUR.Q1.M
## 19831                              UIS.ROFST.H.3.RUR.Q2
## 19832                            UIS.ROFST.H.3.RUR.Q2.F
## 19833                         UIS.ROFST.H.3.RUR.Q2.GPIA
## 19834                            UIS.ROFST.H.3.RUR.Q2.M
## 19835                              UIS.ROFST.H.3.RUR.Q3
## 19836                            UIS.ROFST.H.3.RUR.Q3.F
## 19837                         UIS.ROFST.H.3.RUR.Q3.GPIA
## 19838                            UIS.ROFST.H.3.RUR.Q3.M
## 19839                              UIS.ROFST.H.3.RUR.Q4
## 19840                            UIS.ROFST.H.3.RUR.Q4.F
## 19841                         UIS.ROFST.H.3.RUR.Q4.GPIA
## 19842                            UIS.ROFST.H.3.RUR.Q4.M
## 19843                              UIS.ROFST.H.3.RUR.Q5
## 19844                            UIS.ROFST.H.3.RUR.Q5.F
## 19845                         UIS.ROFST.H.3.RUR.Q5.GPIA
## 19846                            UIS.ROFST.H.3.RUR.Q5.M
## 19847                            UIS.ROFST.H.3.RUR.WPIA
## 19848                                 UIS.ROFST.H.3.URB
## 19849                               UIS.ROFST.H.3.URB.F
## 19850                          UIS.ROFST.H.3.URB.F.WPIA
## 19851                            UIS.ROFST.H.3.URB.GPIA
## 19852                               UIS.ROFST.H.3.URB.M
## 19853                          UIS.ROFST.H.3.URB.M.WPIA
## 19854                              UIS.ROFST.H.3.URB.Q1
## 19855                            UIS.ROFST.H.3.URB.Q1.F
## 19856                         UIS.ROFST.H.3.URB.Q1.GPIA
## 19857                            UIS.ROFST.H.3.URB.Q1.M
## 19858                              UIS.ROFST.H.3.URB.Q2
## 19859                            UIS.ROFST.H.3.URB.Q2.F
## 19860                         UIS.ROFST.H.3.URB.Q2.GPIA
## 19861                            UIS.ROFST.H.3.URB.Q2.M
## 19862                              UIS.ROFST.H.3.URB.Q3
## 19863                            UIS.ROFST.H.3.URB.Q3.F
## 19864                         UIS.ROFST.H.3.URB.Q3.GPIA
## 19865                            UIS.ROFST.H.3.URB.Q3.M
## 19866                              UIS.ROFST.H.3.URB.Q4
## 19867                            UIS.ROFST.H.3.URB.Q4.F
## 19868                         UIS.ROFST.H.3.URB.Q4.GPIA
## 19869                            UIS.ROFST.H.3.URB.Q4.M
## 19870                              UIS.ROFST.H.3.URB.Q5
## 19871                            UIS.ROFST.H.3.URB.Q5.F
## 19872                         UIS.ROFST.H.3.URB.Q5.GPIA
## 19873                            UIS.ROFST.H.3.URB.Q5.M
## 19874                            UIS.ROFST.H.3.URB.WPIA
## 19875                                UIS.ROFST.H.3.WPIA
## 19876                                         UIS.SAP.0
## 19877                                       UIS.SAP.0.F
## 19878                                       UIS.SAP.0.M
## 19879                                        UIS.SAP.01
## 19880                                      UIS.SAP.01.F
## 19881                                      UIS.SAP.01.M
## 19882                                    UIS.SAP.1.AGM1
## 19883                                  UIS.SAP.1.AGM1.F
## 19884                                  UIS.SAP.1.AGM1.M
## 19885                                      UIS.SAP.1.G1
## 19886                                    UIS.SAP.1.G1.F
## 19887                                    UIS.SAP.1.G1.M
## 19888                                 UIS.SAP.23.GPV.G1
## 19889                               UIS.SAP.23.GPV.G1.F
## 19890                               UIS.SAP.23.GPV.G1.M
## 19891                                         UIS.SAP.4
## 19892                                       UIS.SAP.4.F
## 19893                                       UIS.SAP.4.M
## 19894                                        UIS.SAP.CE
## 19895                                      UIS.SAP.CE.F
## 19896                                      UIS.SAP.CE.M
## 19897                              UIS.SCHBSP.1.WCOMPUT
## 19898                                UIS.SCHBSP.1.WELEC
## 19899                            UIS.SCHBSP.1.WHIVSEXED
## 19900                           UIS.SCHBSP.1.WINFSTUDIS
## 19901                              UIS.SCHBSP.1.WINTERN
## 19902                               UIS.SCHBSP.1.WTOILA
## 19903                                UIS.SCHBSP.1.WWASH
## 19904                                UIS.SCHBSP.1.WWATA
## 19905                              UIS.SCHBSP.2.WCOMPUT
## 19906                                UIS.SCHBSP.2.WELEC
## 19907                            UIS.SCHBSP.2.WHIVSEXED
## 19908                           UIS.SCHBSP.2.WINFSTUDIS
## 19909                              UIS.SCHBSP.2.WINTERN
## 19910                               UIS.SCHBSP.2.WTOILA
## 19911                                UIS.SCHBSP.2.WWASH
## 19912                                UIS.SCHBSP.2.WWATA
## 19913                            UIS.SCHBSP.2T3.WCOMPUT
## 19914                            UIS.SCHBSP.2T3.WINTERN
## 19915                              UIS.SCHBSP.3.WCOMPUT
## 19916                                UIS.SCHBSP.3.WELEC
## 19917                            UIS.SCHBSP.3.WHIVSEXED
## 19918                           UIS.SCHBSP.3.WINFSTUDIS
## 19919                              UIS.SCHBSP.3.WINTERN
## 19920                               UIS.SCHBSP.3.WTOILA
## 19921                                UIS.SCHBSP.3.WWASH
## 19922                                UIS.SCHBSP.3.WWATA
## 19923                                        UIS.SLE.02
## 19924                                      UIS.SLE.02.F
## 19925                                    UIS.SLE.02.GPI
## 19926                                      UIS.SLE.02.M
## 19927                                         UIS.SLE.1
## 19928                                       UIS.SLE.1.F
## 19929                                     UIS.SLE.1.GPI
## 19930                                       UIS.SLE.1.M
## 19931                                        UIS.SLE.12
## 19932                                      UIS.SLE.12.F
## 19933                                      UIS.SLE.12.M
## 19934                                       UIS.SLE.123
## 19935                                     UIS.SLE.123.F
## 19936                                   UIS.SLE.123.GPI
## 19937                                     UIS.SLE.123.M
## 19938                                   UIS.SLE.1T2.GPI
## 19939                                   UIS.SLE.1T6.GPI
## 19940                                        UIS.SLE.23
## 19941                                      UIS.SLE.23.F
## 19942                                    UIS.SLE.23.GPI
## 19943                                      UIS.SLE.23.M
## 19944                                         UIS.SLE.4
## 19945                                       UIS.SLE.4.F
## 19946                                     UIS.SLE.4.GPI
## 19947                                       UIS.SLE.4.M
## 19948                                        UIS.SLE.56
## 19949                                      UIS.SLE.56.F
## 19950                                    UIS.SLE.56.GPI
## 19951                                      UIS.SLE.56.M
## 19952                                       UIS.SR.1.G4
## 19953                                     UIS.SR.1.G4.F
## 19954                                   UIS.SR.1.G4.GPI
## 19955                                     UIS.SR.1.G4.M
## 19956                                   UIS.SR.1.G5.GPI
## 19957                                UIS.SR.1.GLAST.GPI
## 19958                                          UIS.T.01
## 19959                                        UIS.T.01.F
## 19960                                        UIS.T.01.M
## 19961                                        UIS.T.02.M
## 19962                                         UIS.T.1.M
## 19963                                           UIS.T.2
## 19964                                         UIS.T.2.F
## 19965                                         UIS.T.2.M
## 19966                                        UIS.T.23.M
## 19967                                           UIS.T.3
## 19968                                         UIS.T.3.F
## 19969                                         UIS.T.3.M
## 19970                                           UIS.T.4
## 19971                                         UIS.T.4.F
## 19972                                         UIS.T.4.M
## 19973                                           UIS.T.5
## 19974                                         UIS.T.5.F
## 19975                                         UIS.T.5.M
## 19976                                        UIS.T.58.M
## 19977                                     UIS.TATTRR.02
## 19978                                   UIS.TATTRR.02.F
## 19979                                UIS.TATTRR.02.GPIA
## 19980                                   UIS.TATTRR.02.M
## 19981                                    UIS.TATTRR.1.F
## 19982                                 UIS.TATTRR.1.GPIA
## 19983                                    UIS.TATTRR.1.M
## 19984                                    UIS.TATTRR.1.T
## 19985                                    UIS.TATTRR.2.F
## 19986                                 UIS.TATTRR.2.GPIA
## 19987                                    UIS.TATTRR.2.M
## 19988                                    UIS.TATTRR.2.T
## 19989                                    UIS.TATTRR.2T3
## 19990                                  UIS.TATTRR.2T3.F
## 19991                               UIS.TATTRR.2T3.GPIA
## 19992                                UIS.TATTRR.2T3.GPV
## 19993                              UIS.TATTRR.2T3.GPV.F
## 19994                              UIS.TATTRR.2T3.GPV.M
## 19995                                  UIS.TATTRR.2T3.M
## 19996                                  UIS.TATTRR.2T3.V
## 19997                                UIS.TATTRR.2T3.V.F
## 19998                                UIS.TATTRR.2T3.V.M
## 19999                                    UIS.TATTRR.3.F
## 20000                                 UIS.TATTRR.3.GPIA
## 20001                                    UIS.TATTRR.3.M
## 20002                                    UIS.TATTRR.3.T
## 20003                                       UIS.THAGE.0
## 20004                                      UIS.THAGE.01
## 20005                                      UIS.THAGE.02
## 20006                                 UIS.THAGE.3.A.GPV
## 20007                                 UIS.THAGE.4.A.GPV
## 20008                                       UIS.THDUR.0
## 20009                                      UIS.THDUR.01
## 20010                                      UIS.THDUR.02
## 20011                                 UIS.THDUR.4.A.GPV
## 20012                                       UIS.TRTP.02
## 20013                                     UIS.TRTP.02.F
## 20014                                  UIS.TRTP.02.GPIA
## 20015                                     UIS.TRTP.02.M
## 20016                                   UIS.TRTP.1.GPIA
## 20017                                        UIS.TRTP.2
## 20018                                      UIS.TRTP.2.F
## 20019                                   UIS.TRTP.2.GPIA
## 20020                                      UIS.TRTP.2.M
## 20021                                 UIS.TRTP.2T3.GPIA
## 20022                                        UIS.TRTP.3
## 20023                                      UIS.TRTP.3.F
## 20024                                   UIS.TRTP.3.GPIA
## 20025                                      UIS.TRTP.3.M
## 20026                                UIS.X.PPP.02.FSGOV
## 20027                                 UIS.X.PPP.1.FSGOV
## 20028                                 UIS.X.PPP.2.FSGOV
## 20029                               UIS.X.PPP.2T3.FSGOV
## 20030                             UIS.X.PPP.2T4.V.FSGOV
## 20031                                 UIS.X.PPP.3.FSGOV
## 20032                                 UIS.X.PPP.4.FSGOV
## 20033                               UIS.X.PPP.5T8.FSGOV
## 20034                                   UIS.X.PPP.FSGOV
## 20035                                UIS.X.PPP.UK.FSGOV
## 20036                           UIS.X.PPPCONST.02.FSGOV
## 20037                            UIS.X.PPPCONST.1.FSGOV
## 20038                            UIS.X.PPPCONST.2.FSGOV
## 20039                          UIS.X.PPPCONST.2T3.FSGOV
## 20040                        UIS.X.PPPCONST.2T4.V.FSGOV
## 20041                            UIS.X.PPPCONST.3.FSGOV
## 20042                            UIS.X.PPPCONST.4.FSGOV
## 20043                          UIS.X.PPPCONST.5T8.FSGOV
## 20044                              UIS.X.PPPCONST.FSGOV
## 20045                           UIS.X.PPPCONST.UK.FSGOV
## 20046                                 UIS.X.US.02.FSGOV
## 20047                                  UIS.X.US.1.FSGOV
## 20048                                  UIS.X.US.2.FSGOV
## 20049                                UIS.X.US.2T3.FSGOV
## 20050                              UIS.X.US.2T4.V.FSGOV
## 20051                                  UIS.X.US.3.FSGOV
## 20052                                  UIS.X.US.4.FSGOV
## 20053                                UIS.X.US.5T8.FSGOV
## 20054                                    UIS.X.US.FSGOV
## 20055                                 UIS.X.US.UK.FSGOV
## 20056                            UIS.X.USCONST.02.FSGOV
## 20057                             UIS.X.USCONST.1.FSGOV
## 20058                             UIS.X.USCONST.2.FSGOV
## 20059                           UIS.X.USCONST.2T3.FSGOV
## 20060                         UIS.X.USCONST.2T4.V.FSGOV
## 20061                             UIS.X.USCONST.3.FSGOV
## 20062                             UIS.X.USCONST.4.FSGOV
## 20063                           UIS.X.USCONST.5T8.FSGOV
## 20064                               UIS.X.USCONST.FSGOV
## 20065                            UIS.X.USCONST.UK.FSGOV
## 20066                                  UIS.XGDP.0.FSGOV
## 20067                                  UIS.XGDP.1.FSGOV
## 20068                                  UIS.XGDP.2.FSGOV
## 20069                                 UIS.XGDP.23.FSGOV
## 20070                              UIS.XGDP.2T4.V.FSGOV
## 20071                                  UIS.XGDP.3.FSGOV
## 20072                                  UIS.XGDP.4.FSGOV
## 20073                                 UIS.XGDP.56.FSGOV
## 20074                         UIS.XSPENDP.0.FDPUB.FNCAP
## 20075                         UIS.XSPENDP.0.FDPUB.FNCUR
## 20076                        UIS.XSPENDP.0.FDPUB.FNNONS
## 20077                           UIS.XSPENDP.0.FDPUB.FNS
## 20078                        UIS.XSPENDP.02.FDPUB.FNNTS
## 20079                         UIS.XSPENDP.02.FDPUB.FNTS
## 20080                       UIS.XSPENDP.1.FDPUB.FNBOOKS
## 20081                         UIS.XSPENDP.1.FDPUB.FNCAP
## 20082                         UIS.XSPENDP.1.FDPUB.FNCUR
## 20083                        UIS.XSPENDP.1.FDPUB.FNNONS
## 20084                         UIS.XSPENDP.1.FDPUB.FNNTS
## 20085                           UIS.XSPENDP.1.FDPUB.FNS
## 20086                          UIS.XSPENDP.1.FDPUB.FNTS
## 20087                         UIS.XSPENDP.2.FDPUB.FNCAP
## 20088                         UIS.XSPENDP.2.FDPUB.FNCUR
## 20089                        UIS.XSPENDP.2.FDPUB.FNNONS
## 20090                         UIS.XSPENDP.2.FDPUB.FNNTS
## 20091                           UIS.XSPENDP.2.FDPUB.FNS
## 20092                          UIS.XSPENDP.2.FDPUB.FNTS
## 20093                      UIS.XSPENDP.23.FDPUB.FNBOOKS
## 20094                        UIS.XSPENDP.23.FDPUB.FNCAP
## 20095                        UIS.XSPENDP.23.FDPUB.FNCUR
## 20096                       UIS.XSPENDP.23.FDPUB.FNNONS
## 20097                        UIS.XSPENDP.23.FDPUB.FNNTS
## 20098                          UIS.XSPENDP.23.FDPUB.FNS
## 20099                         UIS.XSPENDP.23.FDPUB.FNTS
## 20100                         UIS.XSPENDP.3.FDPUB.FNCAP
## 20101                         UIS.XSPENDP.3.FDPUB.FNCUR
## 20102                        UIS.XSPENDP.3.FDPUB.FNNONS
## 20103                         UIS.XSPENDP.3.FDPUB.FNNTS
## 20104                           UIS.XSPENDP.3.FDPUB.FNS
## 20105                          UIS.XSPENDP.3.FDPUB.FNTS
## 20106                         UIS.XSPENDP.4.FDPUB.FNCAP
## 20107                         UIS.XSPENDP.4.FDPUB.FNCUR
## 20108                        UIS.XSPENDP.4.FDPUB.FNNONS
## 20109                         UIS.XSPENDP.4.FDPUB.FNNTS
## 20110                           UIS.XSPENDP.4.FDPUB.FNS
## 20111                          UIS.XSPENDP.4.FDPUB.FNTS
## 20112                        UIS.XSPENDP.56.FDPUB.FNCAP
## 20113                        UIS.XSPENDP.56.FDPUB.FNCUR
## 20114                       UIS.XSPENDP.56.FDPUB.FNNONS
## 20115                        UIS.XSPENDP.56.FDPUB.FNNTS
## 20116                          UIS.XSPENDP.56.FDPUB.FNS
## 20117                         UIS.XSPENDP.56.FDPUB.FNTS
## 20118                           UIS.XSPENDP.FDPUB.FNCAP
## 20119                          UIS.XSPENDP.FDPUB.FNNONS
## 20120                           UIS.XSPENDP.FDPUB.FNNTS
## 20121                             UIS.XSPENDP.FDPUB.FNS
## 20122                            UIS.XSPENDP.FDPUB.FNTS
## 20123                         UIS.XUNIT.GDPCAP.02.FSGOV
## 20124                          UIS.XUNIT.GDPCAP.1.FSGOV
## 20125                           UIS.XUNIT.GDPCAP.1.FSHH
## 20126                          UIS.XUNIT.GDPCAP.2.FSGOV
## 20127                         UIS.XUNIT.GDPCAP.23.FSGOV
## 20128                          UIS.XUNIT.GDPCAP.23.FSHH
## 20129                          UIS.XUNIT.GDPCAP.3.FSGOV
## 20130                        UIS.XUNIT.GDPCAP.5T8.FSGOV
## 20131                         UIS.XUNIT.GDPCAP.5T8.FSHH
## 20132                       UIS.XUNIT.PPPCONST.02.FSGOV
## 20133                        UIS.XUNIT.PPPCONST.1.FSGOV
## 20134                         UIS.XUNIT.PPPCONST.1.FSHH
## 20135                        UIS.XUNIT.PPPCONST.2.FSGOV
## 20136                       UIS.XUNIT.PPPCONST.23.FSGOV
## 20137                        UIS.XUNIT.PPPCONST.23.FSHH
## 20138                        UIS.XUNIT.PPPCONST.3.FSGOV
## 20139                      UIS.XUNIT.PPPCONST.5T8.FSGOV
## 20140                       UIS.XUNIT.PPPCONST.5T8.FSHH
## 20141                          UIS.YADULT.PROFILITERACY
## 20142                        UIS.YADULT.PROFILITERACY.F
## 20143                     UIS.YADULT.PROFILITERACY.GPIA
## 20144                     UIS.YADULT.PROFILITERACY.HSES
## 20145                     UIS.YADULT.PROFILITERACY.LSES
## 20146                        UIS.YADULT.PROFILITERACY.M
## 20147                      UIS.YADULT.PROFILITERACY.NAT
## 20148                      UIS.YADULT.PROFILITERACY.NON
## 20149                     UIS.YADULT.PROFILITERACY.NPIA
## 20150                     UIS.YADULT.PROFILITERACY.WPIA
## 20151                          UIS.YADULT.PROFINUMERACY
## 20152                        UIS.YADULT.PROFINUMERACY.F
## 20153                     UIS.YADULT.PROFINUMERACY.GPIA
## 20154                     UIS.YADULT.PROFINUMERACY.HSES
## 20155                     UIS.YADULT.PROFINUMERACY.LSES
## 20156                        UIS.YADULT.PROFINUMERACY.M
## 20157                      UIS.YADULT.PROFINUMERACY.NAT
## 20158                      UIS.YADULT.PROFINUMERACY.NON
## 20159                     UIS.YADULT.PROFINUMERACY.NPIA
## 20160                     UIS.YADULT.PROFINUMERACY.WPIA
## 20161                              UIS.YEARS.FC.COMP.02
## 20162                             UIS.YEARS.FC.COMP.1T3
## 20163                              UIS.YEARS.FC.FREE.02
## 20164                             UIS.YEARS.FC.FREE.1T3
## 20165                                   UIS.YR.END.01T5
## 20166                                    UIS.YR.END.6T8
## 20167                               UIS.YR.END.MON.01T5
## 20168                                UIS.YR.END.MON.6T8
## 20169                                    UIS.YR.ST.01T5
## 20170                                     UIS.YR.ST.6T8
## 20171                                UIS.YR.ST.MON.01T5
## 20172                                 UIS.YR.ST.MON.6T8
## 20173                                    UM.EMP.ROUT.IN
## 20174                                    UM.EMP.ROUT.XD
## 20175                                    UM.EMP.RWAG.IN
## 20176                                    UM.EMP.RWAG.XD
## 20177                                    UM.EMP.TOTL.IN
## 20178                                    UM.EMP.TOTL.XU
## 20179                                    UM.VAD.WAGE.SN
## 20180                                    UM.VAD.WAGE.ZS
## 20181                                       UNDP.HDI.XD
## 20182                                          UNEMPSA_
## 20183                                    UPP.COM.POL.XQ
## 20184                                   UPP.INS.AUTO.XQ
## 20185                                   UPP.INS.DEMO.XQ
## 20186                                    UPP.REV.POL.XQ
## 20187                                           v_F_nsk
## 20188                                           v_F_skl
## 20189                                           v_M_nsk
## 20190                                           v_M_skl
## 20191                                            VA.EST
## 20192                                         VA.NO.SRC
## 20193                                        VA.PER.RNK
## 20194                                  VA.PER.RNK.LOWER
## 20195                                  VA.PER.RNK.UPPER
## 20196                                        VA.STD.ERR
## 20197                                       VC.BTL.DETH
## 20198                                 VC.HOM.ITEN.P5.HE
## 20199                                 VC.HOM.ITEN.P5.LE
## 20200                                       VC.IDP.NWCV
## 20201                                       VC.IDP.NWDS
## 20202                                       VC.IDP.TOCV
## 20203                                       VC.IDP.TOTL
## 20204                                    VC.IDP.TOTL.HE
## 20205                                    VC.IDP.TOTL.LE
## 20206                                    VC.IHR.ICTS.P5
## 20207                                    VC.IHR.IPBH.P5
## 20208                                    VC.IHR.IPOL.P5
## 20209                                    VC.IHR.NPOL.P5
## 20210                                 VC.IHR.PSRC.FE.P5
## 20211                                 VC.IHR.PSRC.MA.P5
## 20212                                    VC.IHR.PSRC.P5
## 20213                                    VC.PKP.TOTL.UN
## 20214                                           w_F_nsk
## 20215                                           w_F_skl
## 20216                                           w_M_nsk
## 20217                                           w_M_skl
## 20218                                      WP_time_01.1
## 20219                                      WP_time_01.2
## 20220                                      WP_time_01.3
## 20221                                      WP_time_01.8
## 20222                                      WP_time_01.9
## 20223                                      WP_time_10.1
## 20224                                      WP_time_10.2
## 20225                                      WP_time_10.3
## 20226                                      WP_time_10.4
## 20227                                      WP_time_10.5
## 20228                                      WP_time_10.6
## 20229                                      WP_time_10.7
## 20230                                      WP_time_10.8
## 20231                                      WP_time_10.9
## 20232                                       WP15163_4.1
## 20233                                       WP15163_4.2
## 20234                                       WP15163_4.3
## 20235                                       WP15163_4.8
## 20236                                       WP15163_4.9
## 20237                                         wpremia_F
## 20238                                         wpremia_M
##                                                                                                                                                                                                                                                                                             name
## 1                                                                                                                                                                                                                                                                Poverty Headcount ($1.90 a day)
## 2                                                                                                                                                                                                                                                                Poverty Headcount ($2.50 a day)
## 3                                                                                                                                                                                                                                                          Middle Class ($10-50 a day) Headcount
## 4                                                                                                                                                                                                                                                        Official Moderate Poverty Rate-National
## 5                                                                                                                                                                                                                                                                   Poverty Headcount ($4 a day)
## 6                                                                                                                                                                                                                                                             Vulnerable ($4-10 a day) Headcount
## 7                                                                                                                                                                                                                                                                      Poverty Gap ($1.90 a day)
## 8                                                                                                                                                                                                                                                                      Poverty Gap ($2.50 a day)
## 9                                                                                                                                                                                                                                                                         Poverty Gap ($4 a day)
## 10                                                                                                                                                                                                                                                                Poverty Severity ($1.90 a day)
## 11                                                                                                                                                                                                                                                                Poverty Severity ($2.50 a day)
## 12                                                                                                                                                                                                                                                                   Poverty Severity ($4 a day)
## 13                                                                                                                                                                                                                                                         Poverty Headcount ($1.90 a day)-Rural
## 14                                                                                                                                                                                                                                                         Poverty Headcount ($2.50 a day)-Rural
## 15                                                                                                                                                                                                                                                   Middle Class ($10-50 a day) Headcount-Rural
## 16                                                                                                                                                                                                                                                         Official Moderate Poverty Rate- Rural
## 17                                                                                                                                                                                                                                                            Poverty Headcount ($4 a day)-Rural
## 18                                                                                                                                                                                                                                                      Vulnerable ($4-10 a day) Headcount-Rural
## 19                                                                                                                                                                                                                                                               Poverty Gap ($1.90 a day)-Rural
## 20                                                                                                                                                                                                                                                               Poverty Gap ($2.50 a day)-Rural
## 21                                                                                                                                                                                                                                                                  Poverty Gap ($4 a day)-Rural
## 22                                                                                                                                                                                                                                                          Poverty Severity ($1.90 a day)-Rural
## 23                                                                                                                                                                                                                                                          Poverty Severity ($2.50 a day)-Rural
## 24                                                                                                                                                                                                                                                             Poverty Severity ($4 a day)-Rural
## 25                                                                                                                                                                                                                                                 Access to electricity (% of total population)
## 26                                                                                                                                                                                                                                                         Total final energy consumption (TFEC)
## 27                                                                                                                                                                                                                                          Literacy rate, youth total (% of people ages 15-24) 
## 28                                                                                                                                                                                                                                                         Poverty Headcount ($1.90 a day)-Urban
## 29                                                                                                                                                                                                                                                         Poverty Headcount ($2.50 a day)-Urban
## 30                                                                                                                                                                                                                                                   Middle Class ($10-50 a day) Headcount-Urban
## 31                                                                                                                                                                                                                                                          Official Moderate Poverty Rate-Urban
## 32                                                                                                                                                                                                                                                            Poverty Headcount ($4 a day)-Urban
## 33                                                                                                                                                                                                                                                      Vulnerable ($4-10 a day) Headcount-Urban
## 34                                                                                                                                                                                                                                                               Poverty Gap ($1.90 a day)-Urban
## 35                                                                                                                                                                                                                                                               Poverty Gap ($2.50 a day)-Urban
## 36                                                                                                                                                                                                                                                                  Poverty Gap ($4 a day)-Urban
## 37                                                                                                                                                                                                                                                          Poverty Severity ($1.90 a day)-Urban
## 38                                                                                                                                                                                                                                                          Poverty Severity ($2.50 a day)-Urban
## 39                                                                                                                                                                                                                                                             Poverty Severity ($4 a day)-Urban
## 40                                                                                                                                                                                                                                                 Access to electricity (% of rural population)
## 41                                                                                                                                                                                                                                                 Access to electricity (% of urban population)
## 42                                                                                                                                                                                                                                                                 100000:GROSS DOMESTIC PRODUCT
## 43                                                                                                                                                                                                                                                                1000000:GROSS DOMESTIC PRODUCT
## 44                                                                                                                                                                                                                                       110000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS
## 45                                                                                                                                                                                                                                                       110100:FOOD AND NON-ALCOHOLIC BEVERAGES
## 46                                                                                                                                                                                                                                                      1101000:FOOD AND NON-ALCOHOLIC BEVERAGES
## 47                                                                                                                                                                                                                                                                                   110110:FOOD
## 48                                                                                                                                                                                                                                                                                  1101100:FOOD
## 49                                                                                                                                                                                                                                                              110111:Bread and cereals (Class)
## 50                                                                                                                                                                                                                                                                     1101110:Bread and cereals
## 51                                                                                                                                                                                                                                                                           110112:Meat (Class)
## 52                                                                                                                                                                                                                                                                                  1101120:Meat
## 53                                                                                                                                                                                                                                                               110113:Fish and seafood (Class)
## 54                                                                                                                                                                                                                                                                      1101130:Fish and seafood
## 55                                                                                                                                                                                                                                                          110114:Milk, cheese and eggs (Class)
## 56                                                                                                                                                                                                                                                                 1101140:Milk, cheese and eggs
## 57                                                                                                                                                                                                                                                                  110115:Oils and fats (Class)
## 58                                                                                                                                                                                                                                                                         1101150:Oils and fats
## 59                                                                                                                                                                                                                                                                          110116:Fruit (Class)
## 60                                                                                                                                                                                                                                                                                 1101160:Fruit
## 61                                                                                                                                                                                                                                                                     110117:Vegetables (Class)
## 62                                                                                                                                                                                                                                                                            1101170:Vegetables
## 63                                                                                                                                                                                                                                 110118:Sugar, jam, honey, chocolate and confectionery (Class)
## 64                                                                                                                                                                                                                                        1101180:Sugar, jam, honey, chocolate and confectionery
## 65                                                                                                                                                                                                                                                              110119:Food products nec (Class)
## 66                                                                                                                                                                                                                                                          1101190:Food products n.e.c. (Class)
## 67                                                                                                                                                                                                                                                                110120:NON-ALCOHOLIC BEVERAGES
## 68                                                                                                                                                                                                                                                               1101200:NON-ALCOHOLIC BEVERAGES
## 69                                                                                                                                                                                                                                               110200:ALCOHOL BEVERAGES, TOBACCO AND NARCOTICS
## 70                                                                                                                                                                                                                                            1102000:ALCOHOLIC BEVERAGES, TOBACCO AND NARCOTICS
## 71                                                                                                                                                                                                                                                                      110210:ALCOHOL BEVERAGES
## 72                                                                                                                                                                                                                                                                   1102100:ALCOHOLIC BEVERAGES
## 73                                                                                                                                                                                                                                                                                110220:TOBACCO
## 74                                                                                                                                                                                                                                                                               1102200:TOBACCO
## 75                                                                                                                                                                                                                                                                  110300:CLOTHING AND FOOTWEAR
## 76                                                                                                                                                                                                                                                                 1103000:CLOTHING AND FOOTWEAR
## 77                                                                                                                                                                                                                                      110400:HOUSING, WATER, ELECTRICITY, GAS, AND OTHER FUELS
## 78                                                                                                                                                                                                                   110500:FURNISHING, HOUSEHOLD EQUIPMENT AND ROUTINE MAINTENANCE OF THE HOUSE
## 79                                                                                                                                                                                                                    1105000:FURNISHINGS, HOUSEHOLD EQUIPMENT AND ROUTINE HOUSEHOLD MAINTENANCE
## 80                                                                                                                                                                                                                                                                110600:HEALTH - HHC (Category)
## 81                                                                                                                                                                                                                                                                              110700:TRANSPORT
## 82                                                                                                                                                                                                                                                                             1107000:TRANSPORT
## 83                                                                                                                                                                                                                                                                   110710:PURCHASE OF VEHICLES
## 84                                                                                                                                                                                                                                                                  1107100:PURCHASE OF VEHICLES
## 85                                                                                                                                                                                                                                                                     110730:TRANSPORT SERVICES
## 86                                                                                                                                                                                                                                                                    1107300:TRANSPORT SERVICES
## 87                                                                                                                                                                                                                                                                          110800:COMMUNICATION
## 88                                                                                                                                                                                                                                                                         1108000:COMMUNICATION
## 89                                                                                                                                                                                                                                                                 111100:RESTAURANTS AND HOTELS
## 90                                                                                                                                                                                                                                                                1111000:RESTAURANTS AND HOTELS
## 91                                                                                                                                                                                111300:BALANCE OF EXPENDITURES OF RESIDENTS ABROAD AND EXPENDITURES OF NON-RESIDENTS IN THE ECONOMIC TERRITORY
## 92                                                                                                                                                                                                                                                                  1113000:NET PURCHASES ABROAD
## 93                                                                                                                                                                                                                                       130000:INDIVIDUAL CONSUMPTION EXPENDITURE BY GOVERNMENT
## 94                                                                                                                                                                                                                                      1300000:INDIVIDUAL CONSUMPTION EXPENDITURE BY GOVERNMENT
## 95                                                                                                                                                                                                                                       140000:COLLECTIVE CONSUMPTION EXPENDITURE BY GOVERNMENT
## 96                                                                                                                                                                                                                                      1400000:COLLECTIVE CONSUMPTION EXPENDITURE BY GOVERNMENT
## 97                                                                                                                                                                                                                                                          150000:GROSS FIXED CAPITAL FORMATION
## 98                                                                                                                                                                                                                                                               1500000:GROSS CAPITAL FORMATION
## 99                                                                                                                                                                                                                                                                150100:MACHINERY AND EQUIPMENT
## 100                                                                                                                                                                                                                                                        1501000:GROSS FIXED CAPITAL FORMATION
## 101                                                                                                                                                                                                                                                              1501100:MACHINERY AND EQUIPMENT
## 102                                                                                                                                                                                                                                                                         1501200:CONSTRUCTION
## 103                                                                                                                                                                                                                                                                       1501300:OTHER PRODUCTS
## 104                                                                                                                                                                                                                                                                          150200:CONSTRUCTION
## 105                                                                                                                                                                                                                                                               1502000:CHANGES IN INVENTORIES
## 106                                                                                                                                                                                                                                                                        150300:OTHER PRODUCTS
## 107                                                                                                                                                                                                                                  1503000:ACQUISITIONS LESS DISPOSALS OF VALUABLES (Category)
## 108                                                                                                                                                                                                                                                       1600000:BALANCE OF EXPORTS AND IMPORTS
## 109                                                                                                                                                                                                                                                                160100:CHANGES IN INVENTORIES
## 110                                                                                                                                                                                                                                              160200:ACQUISITIONS LESS DISPOSALS OF VALUABLES
## 111                                                                                                                                                                                                                                                        170000:BALANCE OF EXPORTS AND IMPORTS
## 112                                                                                                                                                                                                                                                                       Coverage: Mobile Phone
## 113                                                                                                                                                                                                                                                                        Coverage: Electricity
## 114                                                                                                                                                                                                                                                            Coverage: Finished Primary School
## 115                                                                                                                                                                                                                                                                          Coverage: Internet 
## 116                                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 2
## 117                                                                                                                                                                                                                                   Coverage: Mathematics Proficiency Level 2, Private schools
## 118                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 2, Public schools
## 119                                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 3
## 120                                                                                                                                                                                                                                   Coverage: Mathematics Proficiency Level 3, Private schools
## 121                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 3, Public schools
## 122                                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 2
## 123                                                                                                                                                                                                                                       Coverage: Reading Proficiency Level 2, Private schools
## 124                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 2, Public schools
## 125                                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 3
## 126                                                                                                                                                                                                                                       Coverage: Reading Proficiency Level 3, Private schools
## 127                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 3, Public schools
## 128                                                                                                                                                                                                                                                                         Coverage: Sanitation
## 129                                                                                                                                                                                                                                                                  Coverage: School Enrollment
## 130                                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 2
## 131                                                                                                                                                                                                                                       Coverage: Science Proficiency Level 2, Private schools
## 132                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 2, Public schools
## 133                                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 3
## 134                                                                                                                                                                                                                                       Coverage: Science Proficiency Level 3, Private schools
## 135                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 3, Public schools
## 136                                                                                                                                                                                                                                                                              Coverage: Water
## 137                                                                                                                                                                                                                                                                            HOI: Mobile Phone
## 138                                                                                                                                                                                                                                                                             HOI: Electricity
## 139                                                                                                                                                                                                                                                                 HOI: Finished Primary School
## 140                                                                                                                                                                                                                                                                               HOI: Internet 
## 141                                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 2
## 142                                                                                                                                                                                                                                        HOI: Mathematics Proficiency Level 2, Private schools
## 143                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 2, Public schools
## 144                                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 3
## 145                                                                                                                                                                                                                                        HOI: Mathematics Proficiency Level 3, Private schools
## 146                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 3, Public schools
## 147                                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 2
## 148                                                                                                                                                                                                                                            HOI: Reading Proficiency Level 2, Private schools
## 149                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 2, Public schools
## 150                                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 3
## 151                                                                                                                                                                                                                                            HOI: Reading Proficiency Level 3, Private schools
## 152                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 3, Public schools
## 153                                                                                                                                                                                                                                                                              HOI: Sanitation
## 154                                                                                                                                                                                                                                                                       HOI: School Enrollment
## 155                                                                                                                                                                                                                                                             HOI: Science Proficiency Level 2
## 156                                                                                                                                                                                                                                            HOI: Science Proficiency Level 2, Private schools
## 157                                                                                                                                                                                                                                             HOI: Science Proficiency Level 2, Public schools
## 158                                                                                                                                                                                                                                                             HOI: Science Proficiency Level 3
## 159                                                                                                                                                                                                                                            HOI: Science Proficiency Level 3, Private schools
## 160                                                                                                                                                                                                                                             HOI: Science Proficiency Level 3, Public schools
## 161                                                                                                                                                                                                                                                                                   HOI: Water
## 162                                                                                                                                                                                                                                                                  National accounts base year
## 163                                                                                                                                                                                                                                                               Consumer price index base year
## 164                                                                                                                                                                                                                                                            Balance of payments manual in use
## 165                                                                                                                                                                                                                   Access to Clean Fuels and Technologies for cooking (% of total population)
## 166                                                                                                                                                                                                                                      School enrolment, preprimary, national source (% gross)
## 167                                                                                                                                                                                                                                                      Renewable energy consumption(% in TFEC)
## 168                                                                                                                                                                                                              Gross intake ratio in grade 1, total, national source (% of relevant age group)
## 169                                                                                                                                                                                                                                        Gender parity index for gross intake ratio in grade 1
## 170                                                                                                                                                                                                                   Rate of out of school children, national source (% of relevant age group) 
## 171                                                                                                                                                                                                                    Primary completion rate, total, national source (% of relevant age group)
## 172                                                                                                                                                                                                                                             Gender parity index for primary completion rate 
## 173                                                                                                                                                                                                                                         Progression to secondary school, national source (%)
## 174                                                                                                                                                                                                            Lower secondary completion rate, total, national source (% of relevant age group)
## 175                                                                                                                                                                                                                                                                              Atkinson, A(.5)
## 176                                                                                                                                                                                                                                                                               Atkinson, A(1)
## 177                                                                                                                                                                                                                                                                               Atkinson, A(2)
## 178                                                                                                                                                                                                                                                                 Generalized Entrophy, GE(-1)
## 179                                                                                                                                                                                                                                                                  Generalized Entrophy, GE(2)
## 180                                                                                                                                                                                                                                                                             Gini Coefficient
## 181                                                                                                                                                                                                                                                            Gini Coefficient (No Zero Income)
## 182                                                                                                                                                                                                                                                               Income Share of First Quintile
## 183                                                                                                                                                                                                                                                              Income Share of Second Quintile
## 184                                                                                                                                                                                                                                                               Income Share of Third Quintile
## 185                                                                                                                                                                                                                                                              Income Share of Fourth Quintile
## 186                                                                                                                                                                                                                                                               Income Share of Fifth Quintile
## 187                                                                                                                                                                                                                                                                    Mean Log Deviation, GE(0)
## 188                                                                                                                                                                                                                                                                                   Rate 75/25
## 189                                                                                                                                                                                                                                                                                   Rate 90/10
## 190                                                                                                                                                                                                                                                                           Theil Index, GE(1)
## 191                                                                                                                                                                                                                                                                          Agricultural census
## 192                                                                                                                                                                                                                                                                Government finance accounting
## 193                                                                                                                                                                                                                                                                                  Gini, Rural
## 194                                                                                                                                                                                                                                                             Mean Log Deviation, GE(0), Rural
## 195                                                                                                                                                                                                                                                                    Theil Index, GE(1), Rural
## 196                                                                                                                                                                                                                                     Lower secondary education, new teachers, national source
## 197                                                                                                                                                                                                                                             Primary education, new entrants, national source
## 198                                                                                                                                                                                                                                                            Renewable energy consumption (TJ)
## 199                                                                                                                                                                                                                                                                            Population census
## 200                                                                                                                                                                                                                                                           Vital registration system coverage
## 201                                                                                                                                                                                                                                       Lower secondary education, classrooms, national source
## 202                                                                                                                                                                                                                                   Lower secondary education, new classrooms, national source
## 203                                                                                                                                                                                                                                 Ratio of textbooks per pupil, primary education, mathematics
## 204                                                                                                                                                                                                                                    Ratio of textbooks per pupil, primary education, language
## 205                                                                                                                                                                                                                          Last study on effective learning time and teacher attendance (year)
## 206                                                                                                                                                                                                                                                                                  Gini, Urban
## 207                                                                                                                                                                                                                                                              Mean Log Deviation, GE(0),Urban
## 208                                                                                                                                                                                                                                                                     Theil Index, GE(1),Urban
## 209                                                                                                                                                                                                                                                   Primary education, pupils, national source
## 210                                                                                                                                                                                                                                                 Primary education, teachers, national source
## 211                                                                                                                                                                                                                                             Primary education, new teachers, national source
## 212                                                                                                                                                                                                                                               Primary education, classrooms, national source
## 213                                                                                                                                                                                                                                           Primary education, new classrooms, national source
## 214                                                                                                                                                                                                                                     Lower Secondary education, new entrants, national source
## 215                                                                                                                                                                                                                                           Lower secondary education, pupils, national source
## 216                                                                                                                                                                                                                                         Lower secondary education, teachers, national source
## 217                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (15-18)
## 218                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (15-24)
## 219                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (19-24)
## 220                                                                                                                                                                                                                                                                     Youth: In School (15-18)
## 221                                                                                                                                                                                                                                                                     Youth: In School (15-24)
## 222                                                                                                                                                                                                                                                                     Youth: In School (19-24)
## 223                                                                                                                                                                                                                                                        Youth: In School and Employed (15-18)
## 224                                                                                                                                                                                                                                                        Youth: In School and Employed (15-24)
## 225                                                                                                                                                                                                                                                        Youth: In School and Employed (19-24)
## 226                                                                                                                                                                                                                                                                      Youth: Employed (15-18)
## 227                                                                                                                                                                                                                                                                      Youth: Employed (15-24)
## 228                                                                                                                                                                                                                                                                      Youth: Employed (19-24)
## 229                                                                                                                                                                                                                                                               Total electricity output (GWh)
## 230                                                                                                                                                                                                                                                    Renewable energy electricity output (GWh)
## 231                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (15-18), Male
## 232                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (15-24), Male
## 233                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (19-24), Male
## 234                                                                                                                                                                                                                                                               Youth: In School (15-18), Male
## 235                                                                                                                                                                                                                                                               Youth: In School (15-24), Male
## 236                                                                                                                                                                                                                                                               Youth: In School (19-24), Male
## 237                                                                                                                                                                                                                                                  Youth: In School and Employed (15-18), Male
## 238                                                                                                                                                                                                                                                  Youth: In School and Employed (15-24), Male
## 239                                                                                                                                                                                                                                                  Youth: In School and Employed (19-24), Male
## 240                                                                                                                                                                                                                                                                Youth: Employed (15-18), Male
## 241                                                                                                                                                                                                                                                                Youth: Employed (15-24), Male
## 242                                                                                                                                                                                                                                                                Youth: Employed (19-24), Male
## 243                                                                                                                                                                                                                                        Renewable electricity (% in total electricity output)
## 244                                                                                                                                                                                                                              Public spending on total education (% of total public spending)
## 245                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (15-18), Female
## 246                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (15-24), Female
## 247                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (19-24), Female
## 248                                                                                                                                                                                                                                                             Youth: In School (15-18), Female
## 249                                                                                                                                                                                                                                                             Youth: In School (15-24), Female
## 250                                                                                                                                                                                                                                                             Youth: In School (19-24), Female
## 251                                                                                                                                                                                                                                                Youth: In School and Employed (15-18), Female
## 252                                                                                                                                                                                                                                                Youth: In School and Employed (15-24), Female
## 253                                                                                                                                                                                                                                                Youth: In School and Employed (19-24), Female
## 254                                                                                                                                                                                                                                                              Youth: Employed (15-18), Female
## 255                                                                                                                                                                                                                                                              Youth: Employed (15-24), Female
## 256                                                                                                                                                                                                                                                              Youth: Employed (19-24), Female
## 257                                                                                                                                                                                                                 Public spending on basic education (% of public spending on total education)
## 258                                                                                                                                                                                                          Public recurrent spending on total education (% of total public recurrent spending)
## 259                                                                                                                                                                                             Public recurrent spending on basic education (% of public recurrent spending on total education)
## 260                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2004-2014)
## 261                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2004-2014)
## 262                                                                                                                                                                                                                                                                  Industrial production index
## 263                                                                                                                                                                                                                                                               External debt reporting status
## 264                                                                                                                                                                                                                                                              Import and export price indexes
## 265                                                                                                                                                                                                            International aid disbursed to total education, CIDA to Afghanistan (USD million)
## 266                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Albania (USD million)
## 267                                                                                                                                                                                                           International aid disbursed to total education, CIDA to Burkina Faso (USD million)
## 268                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  
## 269                                                                                                                                                                                                         International aid disbursed to total education, AfDB to Côte d'Ivoire (USD million) 
## 270                                                                                                                                                                                                              International aid disbursed to total education, AfDB to Cameroun (USD million) 
## 271                                                                                                                                                                                                   International aid disbursed to total education, World Bank (IDA) to Djibouti (USD million)
## 272                                                                                                                                                                                                                International aid disbursed to total education, ADB to Ethiopia (USD million)
## 273                                                                                                                                                                                                 International aid disbursed to total education, European Commission to Georgia (USD million)
## 274                                                                                                                                                                                                              International aid disbursed to total education, DFID to Djibouti (USD million) 
## 275                                                                                                                                                                                                                 International aid disbursed to total education, AFD to Guinea (USD million) 
## 276                                                                                                                                                                                        International aid disbursed to total education, ADPP (European Union) to Guinea Bissau (USD million) 
## 277                                                                                                                                                                                            International aid disbursed to total education, European Commission to Kyrgyzstan (USD million)  
## 278                                                                                                                                                                                                             International aid disbursed to total education, AfDB to Cambodia (USD million)  
## 279                                                                                                                                                                                                                  International aid disbursed to total education, ADB to Laos (USD million)  
## 280                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Liberia (USD million)  
## 281                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Moldova (USD million)  
## 282                                                                                                                                                                              International aid to total education executed by World Bank (including GPE funds) in Madagascar (USD million)  
## 283                                                                                                                                                                                                          International aid disbursed to total education, Canada to Mozambique (USD million) 
## 284                                                                                                                                                                                                             International aid disbursed to total education, AFD to Mauritania (USD million) 
## 285                                                                                                                                                                                                                International aid disbursed to total education, AfDB to Malawi (USD million) 
## 286                                                                                                                                                                                                                  International aid disbursed to total education, AFD to Niger (USD million) 
## 287                                                                                                                                                                                                               International aid disbursed to total education, DFID to Rwanda (USD million)  
## 288                                                                                                                                                                                                              International aid disbursed to total education, CIDA to Senegal (USD million)  
## 289                                                                                                                                                                                                         International aid disbursed to total education, DFID to Sierra Leone (USD million)  
## 290                                                                                                                                                                                                            International aid disbursed to total education, Belgium to Vietnam (USD million) 
## 291                                                                                                                                                                                                              International aid disbursed to total education, Denmark to Zambia (USD million)
## 292                                                                                                                                                                                                            International aid disbursed to total education, Sida to Afghanistan (USD million)
## 293                                                                                                                                                                                                  International aid disbursed to total education, Japan Government to Ethiopia (USD million) 
## 294                                                                                                                                                                                                              International aid disbursed to total education, WFP to Cambodia (USD million)  
## 295                                                                                                                                                                                                           International aid disbursed to total education, World Bank to Laos (USD million)  
## 296                                                                                                                                                                                       International aid to total education executed by the European Commission in Madagascar (USD million)  
## 297                                                                                                                                                                                                           International aid disbursed to total education, Japan to Mozambique (USD million) 
## 298                                                                                                                                                                                                                 International aid disbursed to total education, WFP to Malawi (USD million) 
## 299                                                                                                                                                                                                              International aid disbursed to total  education, UNICEF to Niger (USD million) 
## 300                                                                                                                                                                                                     International aid disbursed to total education, World Bank to Tajikistan (USD million)  
## 301                                                                                                                                                                                                          International aid disbursed to total education, UNESCO to Afghanistan (USD million)
## 302                                                                                                                                                                                                              International aid disbursed to total education, JICA to Ethiopia (USD million) 
## 303                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Cambodia (USD million) 
## 304                                                                                                                                                                                                   International aid disbursed to total education, International NGOs to Laos (USD million)  
## 305                                                                                                                                                                                                     International aid disbursed to total education, Netherlands to Mozambique (USD million) 
## 306                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Malawi (USD million) 
## 307                                                                                                                                                                                                           International aid disbursed to total education, USAID to Afghanistan (USD million)
## 308                                                                                                                                                                                                               International aid disbursed to total education, KfW to Ethiopia (USD million) 
## 309                                                                                                                                                                                                        International aid disbursed to total education, Portugal to Mozambique (USD million) 
## 310                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Afghanistan (USD million)
## 311                                                                                                                                                                                                       International aid disbursed to total education, Netherlands to Ethiopia (USD million) 
## 312                                                                                                                                                                                                           International aid disbursed to total education, Spain to Mozambique (USD million) 
## 313                                                                                                                                                                                                              International aid disbursed to total education, Sida to Ethiopia (USD million) 
## 314                                                                                                                                                                                                          International aid disbursed to total education, UNICEF to Mozambique (USD million) 
## 315                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Ethiopia (USD million) 
## 316                                                                                                                                                                                                           International aid disbursed to total education, USAID to Mozambique (USD million) 
## 317                                                                                                                                                                                                             International aid disbursed to total education, USAID to Ethiopia (USD million) 
## 318                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Mozambique (USD million) 
## 319                                                                                                                                                                                                               International aid disbursed to total education, WFP to Ethiopia (USD million) 
## 320                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Ethiopia (USD million) 
## 321                                                                                                                                                                                                          International aid disbursed to total education, DANIDA to Afghanistan (USD million)
## 322                                                                                                                                                                                                                 International aid disbursed to total education, BEI to Albania (USD million)
## 323                                                                                                                                                                                                          International aid disbursed to total education, AFD to Burkina Faso (USD million)  
## 324                                                                                                                                                                                                       International aid disbursed to total education, BADEA to Côte d'Ivoire (USD million)  
## 325                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Cameroun (USD million) 
## 326                                                                                                                                                                                                               International aid disbursed to total education, FSD to Djibouti (USD million) 
## 327                                                                                                                                                                                                 International aid disbursed to total education, Belgium (VLIR USO) to Ethiopia (USD million)
## 328                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Georgia (USD million)
## 329                                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Djibouti (USD million)  
## 330                                                                                                                                                                                                                International aid disbursed to total education, AfDB to Guinea (USD million) 
## 331                                                                                                                                                                               International aid disbursed to total education, ADPP (Humana People to People) to Guinea Bissau (USD million) 
## 332                                                                                                                                                                                                            International aid disbursed to total education, GIZ to Kyrgyzstan (USD million)  
## 333                                                                                                                                                                                                         International aid disbursed to total education, Belgium to Cambodia (USD million)   
## 334                                                                                                                                                                                                               International aid disbursed to total education, AusAID to Laos (USD million)  
## 335                                                                                                                                                                                                             International aid disbursed to total education, USAID to Liberia (USD million)  
## 336                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Moldova (USD million)  
## 337                                                                                                                                                                                                           International aid to total education executed by ILO in Madagascar (USD million)  
## 338                                                                                                                                                                                                          International aid disbursed to total education, DANIDA to Mozambique (USD million) 
## 339                                                                                                                                                                                                            International aid disbursed to total education, IsDB to Mauritania (USD million) 
## 340                                                                                                                                                                                                                International aid disbursed to total education, CIDA to Malawi (USD million) 
## 341                                                                                                                                                                                                             International aid disbursed to total  education, Belgium to Niger (USD million) 
## 342                                                                                                                                                                                   International aid disbursed to total education, Global Partnership for Education to Rwanda (USD million)  
## 343                                                                                                                                                                                            International aid disbursed to total education, AFD and French Embassy to Senegal (USD million)  
## 344                                                                                                                                                                                          International aid disbursed to total education, European Commission to Sierra Leone (USD million)  
## 345                                                                                                                                                                                                        International aid disbursed to total education, Aga Khan to Tajikistan (USD million) 
## 346                                                                                                                                                                                                                International aid disbursed to total education, CIDA to Vietnam (USD million)
## 347                                                                                                                                                                                                             International aid disbursed to total education, Ireland to Zambia (USD million) 
## 348                                                                                                                                                                                                          International aid disbursed to total education, France to Afghanistan (USD million)
## 349                                                                                                                                                                                                                International aid disbursed to total education, CEIB to Albania (USD million)
## 350                                                                                                                                                                                                  International aid disbursed to total education, Switzerland to Burkina Faso (USD million)  
## 351                                                                                                                                                                                                 International aid disbursed to total education, World Bank to Côte d'Ivoire (USD million)   
## 352                                                                                                                                                                                            International aid disbursed to total education, AFD and French Embassy to Cameroun (USD million) 
## 353                                                                                                                                                                                                               International aid disbursed to total education, AFD to Djibouti (USD million) 
## 354                                                                                                                                                                                                              International aid disbursed to total education, DFID to Ethiopia (USD million) 
## 355                                                                                                                                                                                                               International aid disbursed to total education, USAID to Georgia (USD million)
## 356                                                                                                                                                                                                              International aid disbursed to total education, JICA to Djibouti (USD million) 
## 357                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Guinea (USD million) 
## 358                                                                                                                                                                                          International aid disbursed to total education, ADPP (other donors) to Guinea Bissau (USD million) 
## 359                                                                                                                                                                                                         International aid disbursed to total education, UNICEF to Kyrgyzstan (USD million)  
## 360                                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Cambodia (USD million)  
## 361                                                                                                                                                                                                  International aid disbursed to total education, European Commission to Laos (USD million)  
## 362                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Liberia (USD million)  
## 363                                                                                                                                                                                        International aid to total education executed by AFD and French Embassy in Madagascar (USD million)  
## 364                                                                                                                                                                                                            International aid disbursed to total education, DFID to Mozambique (USD million) 
## 365                                                                                                                                                                                              International aid disbursed to total education, Spanish Cooperation to Mauritania (USD million)
## 366                                                                                                                                                                                                                 International aid disbursed to total education, DFID to Malawi (USD million)
## 367                                                                                                                                                                                                      International aid disbursed to total  education, French Embassy to Niger (USD million) 
## 368                                                                                                                                                                                                             International aid disbursed to total education, UNICEF to Rwanda (USD million)  
## 369                                                                                                                                                                                  International aid disbursed to total education, Global Partnership for Education to Senegal (USD million)  
## 370                                                                                                                                                                                                          International aid disbursed to total education, GIZ to Sierra Leone (USD million)  
## 371                                                                                                                                                                                       International aid disbursed to total education, Open Society Foundations to Tajikistan (USD million)  
## 372                                                                                                                                                                                                               International aid disbursed to total education, DFID to Vietnam (USD million) 
## 373                                                                                                                                                                                                                 International aid disbursed to total education, ILO to Zambia (USD million) 
## 374                                                                                                                                                                                                         International aid disbursed to total education, Germany to Afghanistan (USD million)
## 375                                                                                                                                                                                                      International aid disbursed to total education, Denmark to Burkina Faso (USD million)  
## 376                                                                                                                                                                                                        International aid disbursed to total education, IsDB to Côte d'Ivoire (USD million)  
## 377                                                                                                                                                                                                              International aid disbursed to total education, JICA to Cameroun (USD million) 
## 378                                                                                                                                                                                                              International aid disbursed to total education, AfDB to Djibouti (USD million) 
## 379                                                                                                                                                                                                 International aid disbursed to total education, DVV international to Ethiopia (USD million) 
## 380                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Georgia (USD million)
## 381                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Djibouti (USD million) 
## 382                                                                                                                                                                                    International aid disbursed to total education, Global Partnership for Education to Guinea (USD million) 
## 383                                                                                                                                                                                           International aid disbursed to total education, European Commission to Guinea Bissau (USD million)
## 384                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Kyrgyzstan (USD million) 
## 385                                                                                                                                                                                              International aid disbursed to total education, European Commission to Cambodia (USD million)  
## 386                                                                                                                                                                                                International aid disbursed to total education, Germany (GIZ and KfW) to Laos (USD million)  
## 387                                                                                                                                                                                                          International aid to total education executed by JICA in Madagascar (USD million)  
## 388                                                                                                                                                                                                         International aid disbursed to total education, Finland to Mozambique (USD million) 
## 389                                                                                                                                                                                                          International aid disbursed to total education, UNESCO to Mauritania (USD million) 
## 390                                                                                                                                                                                                                 International aid disbursed to total education, GIZ to Malawi (USD million) 
## 391                                                                                                                                                                                                               International aid disbursed to total  education, Japan to Niger (USD million) 
## 392                                                                                                                                                                                                              International aid disbursed to total education, USAID to Rwanda (USD million)  
## 393                                                                                                                                                                                                             International aid disbursed to total education, Italy to Senegal (USD million)  
## 394                                                                                                                                                                                                         International aid disbursed to total education, JICA to Sierra Leone (USD million)  
## 395                                                                                                                                                                                            International aid disbursed to total education, European Commission to Tajikistan (USD million)  
## 396                                                                                                                                                                                                              International aid disbursed to total education, JICA to Vietnam (USD million)  
## 397                                                                                                                                                                                                               International aid disbursed to total education, Japan to Zambia (USD million) 
## 398                                                                                                                                                                                                           International aid disbursed to total education, India to Afghanistan (USD million)
## 399                                                                                                                                                                                                         International aid disbursed to total education, JICA to Burkina Faso (USD million)  
## 400                                                                                                                                                                                                         International aid disbursed to total education, FSD to Côte d'Ivoire (USD million)  
## 401                                                                                                                                                                                                             International aid disbursed to total education, UNESCO to Cameroun (USD million)
## 402                                                                                                                                                                                                               International aid disbursed to total education, IsDB to Djibouti (USD million)
## 403                                                                                                                                                                                               International aid disbursed to total education, European Commission to Ethiopia (USD million) 
## 404                                                                                                                                                                                                             International aid disbursed to total education, USAID to Djibouti (USD million) 
## 405                                                                                                                                                                                                                  International aid disbursed to total education, GIZ to Guinea (USD million)
## 406                                                                                                                                                                                       International aid disbursed to total education, AFD and French Embassy to Guinea Bissau (USD million) 
## 407                                                                                                                                                                                                            International aid disbursed to total education, Japan to Cambodia (USD million)  
## 408                                                                                                                                                                                     International aid disbursed to total education, Global Partnership for Education to Laos (USD million)  
## 409                                                                                                                                                                                                        International aid to total education executed by Norway in Madagascar (USD million)  
## 410                                                                                                                                                                                                        International aid disbursed to total education, Flanders to Mozambique (USD million) 
## 411                                                                                                                                                                                                          International aid disbursed to total education, UNICEF to Mauritania (USD million) 
## 412                                                                                                                                                                                    International aid disbursed to total education, Global Partnership for Education to Malawi (USD million) 
## 413                                                                                                                                                                                                                 International aid disbursed to total  education, KfW to Niger (USD million) 
## 414                                                                                                                                                                                                         International aid disbursed to total education, World Bank to Rwanda (USD million)  
## 415                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Senegal (USD million)  
## 416                                                                                                                                                                                                         International aid disbursed to total education, Sida to Sierra Leone (USD million)  
## 417                                                                                                                                                                                                            International aid disbursed to total education, GIZ to Tajikistan (USD million)  
## 418                                                                                                                                                                                                             International aid disbursed to total education, UNESCO to Vietnam (USD million) 
## 419                                                                                                                                                                                                         International aid disbursed to total education, Netherlands to Zambia (USD million) 
## 420                                                                                                                                                                                                    International aid disbursed to total education, Japan's MoFA to Afghanistan (USD million)
## 421                                                                                                                                                                                                 International aid disbursed to total education, Netherlands to Burkina Faso (USD million)   
## 422                                                                                                                                                                                                         International aid disbursed to total education, KfW to Côte d'Ivoire (USD million)  
## 423                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Cameroun (USD million) 
## 424                                                                                                                                                                                                              International aid disbursed to total education, IMOA to Djibouti (USD million) 
## 425                                                                                                                                                                                                           International aid disbursed to total education, Finland to Ethiopia (USD million) 
## 426                                                                                                                                                                                                               International aid disbursed to total education, WFP to Djibouti (USD million) 
## 427                                                                                                                                                                                                                 International aid disbursed to total education, KfW to Guinea (USD million) 
## 428                                                                                                                                                                                        International aid disbursed to total education, Portuguese Cooperation to Guinea Bissau (USD million)
## 429                                                                                                                                                                                                           International aid disbursed to total education, Sweden to Cambodia (USD million)  
## 430                                                                                                                                                                                                                 International aid disbursed to total education, JICA to Laos (USD million)  
## 431                                                                                                                                                                                                           International aid to total education executed by WFP in Madagascar (USD million)  
## 432                                                                                                                                                                                           International aid disbursed to total education, Germany (GIZ and KfW) to Mozambique (USD million) 
## 433                                                                                                                                                                                                                International aid disbursed to total education, JICA to Malawi (USD million) 
## 434                                                                                                                                                                                                                 International aid disbursed to total  education, WFP to Niger (USD million) 
## 435                                                                                                                                                                                                             International aid disbursed to total education, USAID to Senegal (USD million)  
## 436                                                                                                                                                                                                       International aid disbursed to total education, UNICEF to Sierra Leone (USD million)  
## 437                                                                                                                                                                  International aid disbursed to total education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) 
## 438                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Vietnam (USD million)  
## 439                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Zambia (USD million) 
## 440                                                                                                                                                                                                            International aid disbursed to total education, JICA to Afghanistan (USD million)
## 441                                                                                                                                                                                                       International aid disbursed to total education, UNICEF to Burkina Faso (USD million)  
## 442                                                                                                                                                                                                      International aid disbursed to total education, UNICEF to Côte d'Ivoire (USD million)  
## 443                                                                                                                                                                                                           International aid disbursed to total education, GIZ/BMZ to Ethiopia (USD million) 
## 444                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Djibouti (USD million) 
## 445                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Guinea (USD million) 
## 446                                                                                                                                                                               International aid disbursed to total education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) 
## 447                                                                                                                                                                                                           International aid disbursed to total education, UNESCO to Cambodia (USD million)  
## 448                                                                                                                                                                                                               International aid disbursed to total education, UNESCO to Laos (USD million)  
## 449                                                                                                                                                                                                        International aid to total education executed by UNESCO in Madagascar (USD million)  
## 450                                                                                                                                                                                                             International aid disbursed to total education, GPE to Mozambique (USD million) 
## 451                                                                                                                                                                                                                International aid disbursed to total education,  KfW to Malawi (USD million) 
## 452                                                                                                                                                                                                                International aid disbursed to total  education, DFID to Niger (USD million) 
## 453                                                                                                                                                   International aid disbursed to total education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) 
## 454                                                                                                                                                                                                         International aid disbursed to total education, UNICEF to Tajikistan (USD million)  
## 455                                                                                                                                                                                                              International aid disbursed to total education, USAID to Vietnam (USD million) 
## 456                                                                                                                                                                                                               International aid disbursed to total education, USAID to Zambia (USD million) 
## 457                                                                                                                                                                                                     International aid disbursed to total education, Netherlands to Afghanistan (USD million)
## 458                                                                                                                                                                                           International aid disbursed to total education, European Commission to Burkina Faso (USD million) 
## 459                                                                                                                                                                                                       International aid disbursed to total education, USAID to Côte d'Ivoire (USD million)  
## 460                                                                                                                                                                                                International aid disbursed to total education, GPE Catalytic Fund to Ethiopia (USD million) 
## 461                                                                                                                                                                                           International aid disbursed to total education, Japan (via UNICEF) to Guinea Bissau (USD million) 
## 462                                                                                                                                                                                                           International aid disbursed to total education, UNICEF to Cambodia (USD million)  
## 463                                                                                                                                                                                                               International aid disbursed to total education, UNICEF to Laos (USD million)  
## 464                                                                                                                                                                                  International aid to total education executed by UNICEF (excluding GPE funds) in Madagascar (USD million)  
## 465                                                                                                                                                                                                         International aid disbursed to total education, Ireland to Mozambique (USD million) 
## 466                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Malawi (USD million) 
## 467                                                                                                                                                                                                         International aid disbursed to total  education, Switzerland to Niger (USD million) 
## 468                                                                                                                                                                                                      International aid disbursed to total education from WFP to Sierra Leone (USD million)  
## 469                                                                                                                                                                                                          International aid disbursed to total education, USAID to Tajikistan (USD million)  
## 470                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Vietnam (USD million)
## 471                                                                                                                                                                                                     International aid disbursed to total education, New Zealand to Afghanistan (USD million)
## 472                                                                                                                                                                                                International aid disbursed to total education, Italian Cooperation to Ethiopia (USD million)
## 473                                                                                                                                                                                                            International aid disbursed to total education, USAID to Cambodia (USD million)  
## 474                                                                                                                                                                                                                  International aid disbursed to total education, WFP to Laos (USD million)  
## 475                                                                                                                                                   International aid disbursed to total education from the Global Partnership for Education (via UNICEF and WB) to Madagascar (USD million)  
## 476                                                                                                                                                                                                           International aid disbursed to total education, Italy to Mozambique (USD million) 
## 477                                                                                                                                                                                                               International aid disbursed to total education, USAID to Malawi (USD million) 
## 478                                                                                                                                                                                                          International aid disbursed to total  education, Luxembourg to Niger (USD million) 
## 479                                                                                                                                                                                                            International aid disbursed to total education, WFP to Tajikistan (USD million)  
## 480                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2004-2009)
## 481                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2004-2009)
## 482                                                                                                                                              International aid for total education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)
## 483                                                                                                                                                                                                                                                                             UNESCO reporting
## 484                                                                                                                                                                                                                                                                                Health survey
## 485                                                                                                                                                                                                                                                               National immunization coverage
## 486                                                                                                                                                                                                                                                                               Poverty survey
## 487                                                                                                                                                                                                            International aid disbursed to basic education, CIDA to Afghanistan (USD million)
## 488                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Albania (USD million)
## 489                                                                                                                                                                                                           International aid disbursed to basic education, CIDA to Burkina Faso (USD million)
## 490                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  
## 491                                                                                                                                                                                                         International aid disbursed to basic education, AfDB to Côte d'Ivoire (USD million) 
## 492                                                                                                                                                                                                              International aid disbursed to basic education, AfDB to Cameroun (USD million) 
## 493                                                                                                                                                                                                   International aid disbursed to basic education, World Bank (IDA) to Djibouti (USD million)
## 494                                                                                                                                                                                                                International aid disbursed to basic education, ADB to Ethiopia (USD million)
## 495                                                                                                                                                                                                 International aid disbursed to basic education, European Commission to Georgia (USD million)
## 496                                                                                                                                                                                                              International aid disbursed to basic education, DFID to Djibouti (USD million) 
## 497                                                                                                                                                                                                                 International aid disbursed to basic education, AFD to Guinea (USD million) 
## 498                                                                                                                                                                                        International aid disbursed to basic education, ADPP (European Union) to Guinea Bissau (USD million) 
## 499                                                                                                                                                                                            International aid disbursed to basic education, European Commission to Kyrgyzstan (USD million)  
## 500                                                                                                                                                                                                             International aid disbursed to basic education, AfDB to Cambodia (USD million)  
## 501                                                                                                                                                                                                                  International aid disbursed to basic education, ADB to Laos (USD million)  
## 502                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Liberia (USD million)  
## 503                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Moldova (USD million)  
## 504                                                                                                                                                                                        International aid to basic education executed by World Bank (GPE funds) in Madagascar (USD million)  
## 505                                                                                                                                                                                                             International aid disbursed to total education, WFP to Mauritania (USD million) 
## 506                                                                                                                                                                                                               International aid disbursed to basic education,  AfDB to Malawi (USD million) 
## 507                                                                                                                                                                                                                  International aid disbursed to basic education, AFD to Niger (USD million) 
## 508                                                                                                                                                                                                               International aid disbursed to basic education, DFID to Rwanda (USD million)  
## 509                                                                                                                                                                                                              International aid disbursed to basic education, CIDA to Senegal (USD million)  
## 510                                                                                                                                                                                                         International aid disbursed to basic education, DFID to Sierra Leone (USD million)  
## 511                                                                                                                                                                                                        International aid disbursed to basic education, Aga Khan to Tajikistan (USD million) 
## 512                                                                                                                                                                                 International aid disbursed to total education, AusAID and ChildFund Australia to Tajikistan (USD million)  
## 513                                                                                                                                                                                                                International aid disbursed to basic education, CIDA to Vietnam (USD million)
## 514                                                                                                                                                                                                              International aid disbursed to basic education, Denmark to Zambia (USD million)
## 515                                                                                                                                                                                                            International aid disbursed to basic education, Sida to Afghanistan (USD million)
## 516                                                                                                                                                                                                  International aid disbursed to basic education, Japan Government to Ethiopia (USD million) 
## 517                                                                                                                                                                                                              International aid disbursed to basic education, WFP to Cambodia (USD million)  
## 518                                                                                                                                                                                                           International aid disbursed to basic education, World Bank to Laos (USD million)  
## 519                                                                                                                                                                                       International aid to basic education executed by the European Commission in Madagascar (USD million)  
## 520                                                                                                                                                                                                                 International aid disbursed to basic education, WFP to Malawi (USD million) 
## 521                                                                                                                                                                                                               International aid disbursed to basic education, UNICEF to Niger (USD million) 
## 522                                                                                                                                                                                                International aid disbursed to total education, private donors to Timor-Leste (USD million)  
## 523                                                                                                                                                                                                          International aid disbursed to basic education, UNESCO to Afghanistan (USD million)
## 524                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Ethiopia (USD million) 
## 525                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Cambodia (USD million) 
## 526                                                                                                                                                                                                   International aid disbursed to basic education, International NGOs to Laos (USD million)  
## 527                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Malawi (USD million) 
## 528                                                                                                                                                                                                        International aid disbursed to total education, UNICEF to Timor-Leste (USD million)  
## 529                                                                                                                                                                                                           International aid disbursed to basic education, USAID to Afghanistan (USD million)
## 530                                                                                                                                                                                                               International aid disbursed to basic education, KfW to Ethiopia (USD million) 
## 531                                                                                                                                                                                                         International aid disbursed to total education, USAID to Timor-Leste (USD million)  
## 532                                                                                                                                                                                                      International aid disbursed to basic education, World Bank to Afghanistan (USD million)
## 533                                                                                                                                                                                                       International aid disbursed to basic education, Netherlands to Ethiopia (USD million) 
## 534                                                                                                                                                                                                              International aid disbursed to basic education, Sida to Ethiopia (USD million) 
## 535                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Ethiopia (USD million) 
## 536                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Ethiopia (USD million) 
## 537                                                                                                                                                                                                               International aid disbursed to basic education, WFP to Ethiopia (USD million) 
## 538                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Ethiopia (USD million) 
## 539                                                                                                                                                                                                          International aid disbursed to basic education, DANIDA to Afghanistan (USD million)
## 540                                                                                                                                                                                                                 International aid disbursed to basic education, BEI to Albania (USD million)
## 541                                                                                                                                                                                                          International aid disbursed to basic education, AFD to Burkina Faso (USD million)  
## 542                                                                                                                                                                                                       International aid disbursed to basic education, BADEA to Côte d'Ivoire (USD million)  
## 543                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Cameroun (USD million) 
## 544                                                                                                                                                                                                               International aid disbursed to basic education, FSD to Djibouti (USD million) 
## 545                                                                                                                                                                                                 International aid disbursed to basic education, Belgium (VLIR USO) to Ethiopia (USD million)
## 546                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Georgia (USD million)
## 547                                                                                                                                                                                 International aid disbursed to basic education, Global Partnership for Education to Djibouti (USD million)  
## 548                                                                                                                                                                                                                International aid disbursed to basic education, AfDB to Guinea (USD million) 
## 549                                                                                                                                                                               International aid disbursed to basic education, ADPP (Humana People to People) to Guinea Bissau (USD million) 
## 550                                                                                                                                                                                                            International aid disbursed to basic education, GIZ to Kyrgyzstan (USD million)  
## 551                                                                                                                                                                                                         International aid disbursed to basic education, Belgium to Cambodia (USD million)   
## 552                                                                                                                                                                                                               International aid disbursed to basic education, AusAID to Laos (USD million)  
## 553                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Liberia (USD million)  
## 554                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Moldova (USD million)  
## 555                                                                                                                                                                                                           International aid to basic education executed by ILO in Madagascar (USD million)  
## 556                                                                                                                                                                                                             International aid disbursed to basic education, AFD to Mauritania (USD million) 
## 557                                                                                                                                                                                                                International aid disbursed to basic education, CIDA to Malawi (USD million) 
## 558                                                                                                                                                                                                              International aid disbursed to basic education, Belgium to Niger (USD million) 
## 559                                                                                                                                                                                   International aid disbursed to basic education, Global Partnership for Education to Rwanda (USD million)  
## 560                                                                                                                                                                                            International aid disbursed to basic education, AFD and French Embassy to Senegal (USD million)  
## 561                                                                                                                                                                                          International aid disbursed to basic education, European Commission to Sierra Leone (USD million)  
## 562                                                                                                                                                                                       International aid disbursed to basic education, Open Society Foundations to Tajikistan (USD million)  
## 563                                                                                                                                                                                           International aid disbursed to total education, AusAID (World Bank) to Timor-Leste (USD million)  
## 564                                                                                                                                                                                                               International aid disbursed to basic education, DFID to Vietnam (USD million) 
## 565                                                                                                                                                                                                             International aid disbursed to basic education, Ireland to Zambia (USD million) 
## 566                                                                                                                                                                                                          International aid disbursed to basic education, France to Afghanistan (USD million)
## 567                                                                                                                                                                                                                International aid disbursed to basic education, CEIB to Albania (USD million)
## 568                                                                                                                                                                                                  International aid disbursed to basic education, Switzerland to Burkina Faso (USD million)  
## 569                                                                                                                                                                                                 International aid disbursed to basic education, World Bank to Côte d'Ivoire (USD million)   
## 570                                                                                                                                                                                            International aid disbursed to basic education, AFD and French Embassy to Cameroun (USD million) 
## 571                                                                                                                                                                                                               International aid disbursed to basic education, AFD to Djibouti (USD million) 
## 572                                                                                                                                                                                                              International aid disbursed to basic education, DFID to Ethiopia (USD million) 
## 573                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Georgia (USD million)
## 574                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Djibouti (USD million) 
## 575                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Guinea (USD million) 
## 576                                                                                                                                                                                          International aid disbursed to basic education, ADPP (other donors) to Guinea Bissau (USD million) 
## 577                                                                                                                                                                                                         International aid disbursed to basic education, UNICEF to Kyrgyzstan (USD million)  
## 578                                                                                                                                                                                 International aid disbursed to basic education, Global Partnership for Education to Cambodia (USD million)  
## 579                                                                                                                                                                                                  International aid disbursed to basic education, European Commission to Laos (USD million)  
## 580                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Liberia (USD million)  
## 581                                                                                                                                                                                        International aid to basic education executed by AFD and French Embassy in Madagascar (USD million)  
## 582                                                                                                                                                                                                            International aid disbursed to basic education, IsDB to Mauritania (USD million) 
## 583                                                                                                                                                                                                                 International aid disbursed to basic education, DFID to Malawi (USD million)
## 584                                                                                                                                                                                                       International aid disbursed to basic education, French Embassy to Niger (USD million) 
## 585                                                                                                                                                                                                             International aid disbursed to basic education, UNICEF to Rwanda (USD million)  
## 586                                                                                                                                                                                  International aid disbursed to basic education, Global Partnership for Education to Senegal (USD million)  
## 587                                                                                                                                                                                                          International aid disbursed to basic education, GIZ to Sierra Leone (USD million)  
## 588                                                                                                                                                                                            International aid disbursed to basic education, European Commission to Tajikistan (USD million)  
## 589                                                                                                                                                                                                      International aid disbursed to total education, Australia to Timor-Leste (USD million) 
## 590                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Vietnam (USD million)  
## 591                                                                                                                                                                                                                 International aid disbursed to basic education, ILO to Zambia (USD million) 
## 592                                                                                                                                                                                                         International aid disbursed to basic education, Germany to Afghanistan (USD million)
## 593                                                                                                                                                                                                      International aid disbursed to basic education, Denmark to Burkina Faso (USD million)  
## 594                                                                                                                                                                                                        International aid disbursed to basic education, IsDB to Côte d'Ivoire (USD million)  
## 595                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Cameroun (USD million) 
## 596                                                                                                                                                                                                              International aid disbursed to basic education, AfDB to Djibouti (USD million) 
## 597                                                                                                                                                                                                 International aid disbursed to basic education, DVV international to Ethiopia (USD million) 
## 598                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Georgia (USD million)
## 599                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Djibouti (USD million) 
## 600                                                                                                                                                                                    International aid disbursed to basic education, Global Partnership for Education to Guinea (USD million) 
## 601                                                                                                                                                                                           International aid disbursed to basic education, European Commission to Guinea Bissau (USD million)
## 602                                                                                                                                                                                                      International aid disbursed to basic education, World Bank to Kyrgyzstan (USD million) 
## 603                                                                                                                                                                                              International aid disbursed to basic education, European Commission to Cambodia (USD million)  
## 604                                                                                                                                                                                                International aid disbursed to basic education, Germany (GIZ and KfW) to Laos (USD million)  
## 605                                                                                                                                                                                                          International aid to basic education executed by JICA in Madagascar (USD million)  
## 606                                                                                                                                                                                              International aid disbursed to basic education, Spanish Cooperation to Mauritania (USD million)
## 607                                                                                                                                                                                                                 International aid disbursed to basic education, GIZ to Malawi (USD million) 
## 608                                                                                                                                                                                                                International aid disbursed to basic education, Japan to Niger (USD million) 
## 609                                                                                                                                                                                                              International aid disbursed to basic education, USAID to Rwanda (USD million)  
## 610                                                                                                                                                                                                             International aid disbursed to basic education, Italy to Senegal (USD million)  
## 611                                                                                                                                                                                                         International aid disbursed to basic education, JICA to Sierra Leone (USD million)  
## 612                                                                                                                                                                                                            International aid disbursed to basic education, GIZ to Tajikistan (USD million)  
## 613                                                                                                                                                                                              International aid disbursed to total education, World Bank (IDA) to Timor-Leste (USD million)  
## 614                                                                                                                                                                                                             International aid disbursed to basic education, UNESCO to Vietnam (USD million) 
## 615                                                                                                                                                                                                               International aid disbursed to basic education, Japan to Zambia (USD million) 
## 616                                                                                                                                                                                                           International aid disbursed to basic education, India to Afghanistan (USD million)
## 617                                                                                                                                                                                                         International aid disbursed to basic education, JICA to Burkina Faso (USD million)  
## 618                                                                                                                                                                                                         International aid disbursed to basic education, FSD to Côte d'Ivoire (USD million)  
## 619                                                                                                                                                                                                             International aid disbursed to basic education, UNESCO to Cameroun (USD million)
## 620                                                                                                                                                                                                               International aid disbursed to basic education, IsDB to Djibouti (USD million)
## 621                                                                                                                                                                                               International aid disbursed to basic education, European Commission to Ethiopia (USD million) 
## 622                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Djibouti (USD million) 
## 623                                                                                                                                                                                                                  International aid disbursed to basic education, GIZ to Guinea (USD million)
## 624                                                                                                                                                                                       International aid disbursed to basic education, AFD and French Embassy to Guinea Bissau (USD million) 
## 625                                                                                                                                                                                                            International aid disbursed to basic education, Japan to Cambodia (USD million)  
## 626                                                                                                                                                                                     International aid disbursed to basic education, Global Partnership for Education to Laos (USD million)  
## 627                                                                                                                                                                                                        International aid to basic education executed by Norway in Madagascar (USD million)  
## 628                                                                                                                                                                                                          International aid disbursed to basic education, UNESCO to Mauritania (USD million) 
## 629                                                                                                                                                                                    International aid disbursed to basic education, Global Partnership for Education to Malawi (USD million) 
## 630                                                                                                                                                                                                                  International aid disbursed to basic education, KfW to Niger (USD million) 
## 631                                                                                                                                                                                                         International aid disbursed to basic education, World Bank to Rwanda (USD million)  
## 632                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Senegal (USD million)  
## 633                                                                                                                                                                                                         International aid disbursed to basic education, Sida to Sierra Leone (USD million)  
## 634                                                                                                                                                                  International aid disbursed to basic education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) 
## 635                                                                                                                                                                                                         International aid disbursed to total education, Japan to Timor-Leste (USD million)  
## 636                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Vietnam (USD million)  
## 637                                                                                                                                                                                                         International aid disbursed to basic education, Netherlands to Zambia (USD million) 
## 638                                                                                                                                                                                                    International aid disbursed to basic education, Japan's MoFA to Afghanistan (USD million)
## 639                                                                                                                                                                                                 International aid disbursed to basic education, Netherlands to Burkina Faso (USD million)   
## 640                                                                                                                                                                                                         International aid disbursed to basic education, KfW to Côte d'Ivoire (USD million)  
## 641                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Cameroun (USD million) 
## 642                                                                                                                                                                                                              International aid disbursed to basic education, IMOA to Djibouti (USD million) 
## 643                                                                                                                                                                                                           International aid disbursed to basic education, Finland to Ethiopia (USD million) 
## 644                                                                                                                                                                                                               International aid disbursed to basic education, WFP to Djibouti (USD million) 
## 645                                                                                                                                                                                                                 International aid disbursed to basic education, KfW to Guinea (USD million) 
## 646                                                                                                                                                                                        International aid disbursed to basic education, Portuguese Cooperation to Guinea Bissau (USD million)
## 647                                                                                                                                                                                                           International aid disbursed to basic education, Sweden to Cambodia (USD million)  
## 648                                                                                                                                                                                                                 International aid disbursed to basic education, JICA to Laos (USD million)  
## 649                                                                                                                                                                                                           International aid to basic education executed by WFP in Madagascar (USD million)  
## 650                                                                                                                                                                                                          International aid disbursed to basic education, UNICEF to Mauritania (USD million) 
## 651                                                                                                                                                                                                               International aid disbursed to basic education,  JICA to Malawi (USD million) 
## 652                                                                                                                                                                                                                  International aid disbursed to basic education, WFP to Niger (USD million) 
## 653                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Senegal (USD million)  
## 654                                                                                                                                                                                                       International aid disbursed to basic education, UNICEF to Sierra Leone (USD million)  
## 655                                                                                                                                                                                                         International aid disbursed to basic education, UNICEF to Tajikistan (USD million)  
## 656                                                                                                                                                                                                   International aid disbursed to total education, South Korea to Timor-Leste (USD million)  
## 657                                                                                                                                                                                                              International aid disbursed to basic education, USAID to Vietnam (USD million) 
## 658                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Zambia (USD million) 
## 659                                                                                                                                                                                                            International aid disbursed to basic education, JICA to Afghanistan (USD million)
## 660                                                                                                                                                                                                       International aid disbursed to basic education, UNICEF to Burkina Faso (USD million)  
## 661                                                                                                                                                                                                      International aid disbursed to basic education, UNICEF to Côte d'Ivoire (USD million)  
## 662                                                                                                                                                                                                           International aid disbursed to basic education, GIZ/BMZ to Ethiopia (USD million) 
## 663                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Djibouti (USD million) 
## 664                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Guinea (USD million) 
## 665                                                                                                                                                                               International aid disbursed to basic education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) 
## 666                                                                                                                                                                                                           International aid disbursed to basic education, UNESCO to Cambodia (USD million)  
## 667                                                                                                                                                                                                               International aid disbursed to basic education, UNESCO to Laos (USD million)  
## 668                                                                                                                                                                                                        International aid to basic education executed by UNESCO in Madagascar (USD million)  
## 669                                                                                                                                                                                                             International aid disbursed to basic education, WFP to Mauritania (USD million) 
## 670                                                                                                                                                                                                                 International aid disbursed to basic education, KfW to Malawi (USD million) 
## 671                                                                                                                                                                                                                 International aid disbursed to basic education, DFID to Niger (USD million) 
## 672                                                                                                                                                   International aid disbursed to basic education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) 
## 673                                                                                                                                                                                                          International aid disbursed to basic education, USAID to Tajikistan (USD million)  
## 674                                                                                                                                                                                                   International aid disbursed to total education, New Zealand to Timor-Leste (USD million)  
## 675                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Vietnam (USD million)
## 676                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Zambia (USD million) 
## 677                                                                                                                                                                                                     International aid disbursed to basic education, Netherlands to Afghanistan (USD million)
## 678                                                                                                                                                                                           International aid disbursed to basic education, European Commission to Burkina Faso (USD million) 
## 679                                                                                                                                                                                                       International aid disbursed to basic education, USAID to Côte d'Ivoire (USD million)  
## 680                                                                                                                                                                                                International aid disbursed to basic education, GPE Catalytic Fund to Ethiopia (USD million) 
## 681                                                                                                                                                                                           International aid disbursed to basic education, Japan (via UNICEF) to Guinea Bissau (USD million) 
## 682                                                                                                                                                                                                           International aid disbursed to basic education, UNICEF to Cambodia (USD million)  
## 683                                                                                                                                                                                                               International aid disbursed to basic education, UNICEF to Laos (USD million)  
## 684                                                                                                                                                                                                        International aid to basic education executed by UNICEF in Madagascar (USD million)  
## 685                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Malawi (USD million) 
## 686                                                                                                                                                                                                          International aid disbursed to basic education, Switzerland to Niger (USD million) 
## 687                                                                                                                                                                                                          International aid disbursed to basic education, WFP to Sierra Leone (USD million)  
## 688                                                                                                                                                                                                            International aid disbursed to basic education, WFP to Tajikistan (USD million)  
## 689                                                                                                                                                                                    International aid disbursed to total education, ChildFund NZAID and UNICEF to Timor-Leste (USD million)  
## 690                                                                                                                                                                                                     International aid disbursed to basic education, New Zealand to Afghanistan (USD million)
## 691                                                                                                                                                                                                International aid disbursed to basic education, Italian Cooperation to Ethiopia (USD million)
## 692                                                                                                                                                                                                           International aid disbursed to basic education, AUSAID to Cambodia (USD million)  
## 693                                                                                                                                                                                                                  International aid disbursed to basic education, WFP to Laos (USD million)  
## 694                                                                                                                                                                               International aid disbursed to basic education, Global Partnership for Education to Madagascar (USD million)  
## 695                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Malawi (USD million) 
## 696                                                                                                                                                                                                           International aid disbursed to basic education, Luxembourg to Niger (USD million) 
## 697                                                                                                                                                                                                     International aid disbursed to basic education, World Bank to Tajikistan (USD million)  
## 698                                                                                                                                                                                                      International aid disbursed to total education, Portugal to Timor-Leste (USD million)  
## 699                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2009-2014)
## 700                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2009-2014)
## 701                                                                                                                                              International aid for basic education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)
## 702                                                                                                                                                                                                                                                          Special Data Dissemination Standard
## 703                                                                                                                                                                                                                                                                               Income poverty
## 704                                                                                                                                                                                                                                                                           Child malnutrition
## 705                                                                                                                                                                                                                                                                              Child mortality
## 706                                                                                                                                                                                                                                                                                 Immunization
## 707                                                                                                                                                                                                                                                                                     HIV/AIDS
## 708                                                                                                                                                                                                                                                                              Maternal health
## 709                                                                                                                                                                                                                                                                              Gender equality
## 710                                                                                                                                                                                                                                                                           Primary completion
## 711                                                                                                                                                                                                                                                                              Access to water
## 712                                                                                                                                                                                                                                                                        Per capita GDP growth
## 713                                                                                                                                                                                                                                                              Consumption per capita (2011 $)
## 714                                                                                                                                                                                                                                                                              GDP (current $)
## 715                                                                                                                                                                                                                                                                        GDP growth (annual %)
## 716                                                                                                                                                                                                                                                                        GDP (constant 2005 $)
## 717                                                                                                                                                                                                                                         GDP per capita, PPP (constant 2011 international $) 
## 718                                                                                                                                                                                                                                                                      GNI per capita (2011 $)
## 719                                                                                                                                                                                                                               Coordinating agency of Local Education Group (1=text in notes)
## 720                                                                                                                                                                                                                                      Energy intensity level of primary energy (MJ/$2005 PPP)
## 721                                                                                                                                                                                                                                     Donor members in Local Education Group (1=text in notes)
## 722                                                                                                                                                                                                                       Civil society organizations in Local Education Group (1=text in notes)
## 723                                                                                                                                                                                                                         Date of last Joint Education Sector Review (year=full date in notes)
## 724                                                                                                                                                                                                                         Date of next Joint Education Sector Review (year=full date in notes)
## 725                                                                                                                                                                                                            Starting year of current Education Sector Plan period (year=full period in notes)
## 726                                                                                                                                                                                                              Ending year of current Education Sector Plan period (year=full period in notes)
## 727                                                                                                                                                                                                                        Current allocation - Supervising or managing entity (1=text in notes)
## 728                                                                                                                                                                                                                                              Current allocation - Modality (1=text in notes)
## 729                                                                                                                                                                                                                        Current allocation - Total disbursements as of 12/2011 (USD millions)
## 730                                                                                                                                                                                                                                      Current allocation - Annual disbursements (USD million)
## 731                                                                                                                                                                                                                                                  Endorsement of Education Sector Plan (year)
## 732                                                                                                                                                                                                                                                        Previous allocation - Approval (year)
## 733                                                                                                                                                                                                                                         Previous allocation - Amount disbursed (USD million)
## 734                                                                                                                                                                                                                                                         Current allocation - Approval (year)
## 735                                                                                                                                                                                                                                   Current allocation - Total indicative amount (USD million)
## 736                                                                                                                                                                                                      Current allocation - Starting year of implementation period (year=full period in notes)
## 737                                                                                                                                                                                                        Current allocation - Ending year of Implementation period (year=full period in notes)
## 738                                                                                                                                                                                                                                Current allocation - Signature date (year=full date in notes)
## 739                                                                                                                                                                                                                                  Current allocation - Closing date (year=full date in notes)
## 740                                                                                                                                                                                                                                                                   Labor Income Poverty Index
## 741                                                                                                                                                                                                                 Administration of school leaving exams (yes=1, no=0, see notes if available)
## 742                                                                                                                                                                                                                   Participation in international tests (yes=1, no=0, see notes if available)
## 743                                                                                                                                                                                                         National assessment for learning outcomes in Albania, grade 9, Language (mean score)
## 744                                                                                                                                                                                                                                              PASEC in Burkina Faso, CP2, French (mean score)
## 745                                                                                                                                                                                                                           Brevet des colleges in Central African Republic, success rate (%) 
## 746                                                                                                                                                                                      National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), mean score of all subjects 
## 747                                                                                                                                                                                                                                       PASEC in Cameroon, grades 2 and 5, French (mean score)
## 748                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, English, optimal competency (%)
## 749                                                                                                                                                                                                                                              PIRLS in Georgia, grade 4, Reading (mean score)
## 750                                                                                                                                                                                                     National assessment for learning outcomes in Ghana, P3, English, students above mean (%)
## 751                                                                                                                                                                                                                                                    PASEC in Guinea, CP2, French (mean score)
## 752                                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - overall (mean score)
## 753                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 3, Language (mean score)
## 754                                                                                                                                                                                                            National assessment for learning outcomes in Laos, grade 5, Language (mean score)
## 755                                                                                                                                                                                                           National assessment for learning outcomes in Moldova, grade 4, mean competency (%)
## 756                                                                                                                                                                                                                                                PASEC in Madagascar, CM2, French (mean score)
## 757                                                                                                                                                                                                                                          SACMEQ in Mozambique, grade 5, Reading (mean score)
## 758                                                                                                                                                                                                                                            PASEC in Mauritania, grade 5, French (mean score)
## 759                                                                                                                                                                                                                                      SACMEQ in Malawi, standards 3,5,7, Reading (mean score)
## 760                                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, French (mean score)
## 761                                                                                                                                                                                       National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, minimal competency (%)
## 762                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 763                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 1, scores in indicated level (%)
## 764                                                                                                                                                                                                           National assessment for learning outcomes in Zambia, grade 5, Reading (mean score)
## 765                                                                                                                                                                                           National assessment for learning outcomes in Ethiopia, grade 12, Chemistry, optimal competency (%)
## 766                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in lowest level (%)
## 767                                                                                                                                                                                        National assessment for learning outcomes in Ghana, P6, English, students above proficient levels (%)
## 768                                                                                                                                                                                                              PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)
## 769                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CP, French, under minimal competency (%)
## 770                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, Physics, optimal competency (%)
## 771                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in lowest level (%)
## 772                                                                                                                                                                                    National assessment for learning outcomes in Ghana, P3, Mathematics, students above proficient levels (%)
## 773                                                                                                                                                                                                       National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade) (mean score)
## 774                                                                                                                                                                                                National assessment for learning outcomes in Niger, CE2, French, under minimal competency (%)
## 775                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, average of all subjects, optimal competency (%)
## 776                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in medium level (%)
## 777                                                                                                                                                                                    National assessment for learning outcomes in Ghana, P6, Mathematics, students above proficient levels (%)
## 778                                                                                                                                                                                                    National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade (mean score)
## 779                                                                                                                                                                                                National assessment for learning outcomes in Niger, CM2, French, under minimal competency (%)
## 780                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in medium level (%)
## 781                                                                                                                                                                                                                                            TIMSS in Ghana, grade 8, Mathematics (mean score)
## 782                                                                                                                                                                                                          National assessment at the end of secondary (BAC) in Guinea, Terminale (mean score)
## 783                                                                                                                                                                                                             National assessment for learning outcomes in Niger, CP, Mathematics (mean score)
## 784                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in medium level (%)
## 785                                                                                                                                                                                                                                                TIMSS in Ghana, grade 8, Science (mean score)
## 786                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), minimal competency 
## 787                                                                                                                                                                                                            National assessment for learning outcomes in Niger, CE2, Mathematics (mean score)
## 788                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in higher level (%)
## 789                                                                                                                                                                                                         Making the Grade Scores in Ghana, P3, Literacy in English, Letters per minute (mean)
## 790                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, minimum competency 
## 791                                                                                                                                                                                                            National assessment for learning outcomes in Niger, CM2, Mathematics (mean score)
## 792                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in higher level (%)
## 793                                                                                                                                                                                                         Making the Grade Scores in Ghana, P5, Literacy in English, Letters per minute (mean)
## 794                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, minimal competency 
## 795                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, Mathematics, optimal competency (%)
## 796                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in higher level (%)
## 797                                                                                                                                                                                                            Making the Grade Scores in Ghana, P3 Literacy in English, Words per minute (mean)
## 798                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), optimal competency 
## 799                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, Mathematics, optimal competency (%)
## 800                                                                                                                                                                                       National assessment for learning outcomes in Georgia, grade 9, Language, students in highest level (%)
## 801                                                                                                                                                                                                           Making the Grade Scores in Ghana, P5, Literacy in English, Words per minute (mean)
## 802                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, optimal competency 
## 803                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, Mathematics, optimal competency (%)
## 804                                                                                                                                                                                    National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in highest level (%)
## 805                                                                                                                                                                                                                       Making the Grade Scores in Ghana, P3, Literacy in English, Zero score 
## 806                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, optimal competency 
## 807                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, Mathematics, minimal competency (%)
## 808                                                                                                                                                                                                      National assessment for learning outcomes in Albania, grade 9, Mathematics (mean score)
## 809                                                                                                                                                                                                                                              PASEC in Burkina Faso, CM1, French (mean score)
## 810                                                                                                                                                                                         Baccalaureate in Central African Republic, exam at the end of secondary education, success rate (%) 
## 811                                                                                                                                                                              National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), mean score of all subjects 
## 812                                                                                                                                                                                                                                  PASEC in Cameroon, grades 2 and 5, Mathematics (mean score)
## 813                                                                                                                                                                                         National assessment for learning outcomes in Ethiopia, grade 10, Mathematics, optimal competency (%)
## 814                                                                                                                                                                                                                                          TIMSS in Georgia, grade 4, Mathematics (mean score)
## 815                                                                                                                                                                                                     National assessment for learning outcomes in Ghana, P6, English, students above mean (%)
## 816                                                                                                                                                                                                                                               PASEC in Guinea, CP2, Mathematics (mean score)
## 817                                                                                                                                                                                                                   PISA in Kyrgyzstan, grades 8-9, Reading - access and retrieve (mean score)
## 818                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 3, Mathematics (mean score)
## 819                                                                                                                                                                                                    National assessment for learning outcomes in Laos, grade 5, Language (minimal competency)
## 820                                                                                                                                                                                                           National assessment for learning outcomes in Moldova, grade 9, mean competency (%)
## 821                                                                                                                                                                                                                                           PASEC in Madagascar, CM2, Mathematics (mean score)
## 822                                                                                                                                                                                                                                      SACMEQ in Mozambique, grade 5, Mathematics (mean score)
## 823                                                                                                                                                                                                                                       PASEC in Mauritania, grade 5, Mathematics (mean score)
## 824                                                                                                                                                                                                                                  SACMEQ in Malawi, standards 3,5,7, Mathematics (mean score)
## 825                                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, French (mean score)
## 826                                                                                                                                                                                            National assessment for learning outcomes (SNERS) in Senegal, CE2, French, minimal competency (%)
## 827                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 828                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 2, scores in indicated level (%)
## 829                                                                                                                                                                                                       National assessment for learning outcomes in Zambia, grade 5, Mathematics (mean score)
## 830                                                                                                                                                                                                                       Making the Grade Scores in Ghana, P5, Literacy in English, Zero score 
## 831                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), maximal competency 
## 832                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, Mathematics, minimal competency (%)
## 833                                                                                                                                                                                                                        Making the Grade Scores in Ghana, P3, Numeracy, Correct Additions (%)
## 834                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, maximal competency 
## 835                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, Mathematics, minimal competency (%)
## 836                                                                                                                                                                                                                        Making the Grade Scores in Ghana, P5, Numeracy, Correct Additions (%)
## 837                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, maximal competency 
## 838                                                                                                                                                                                            National assessment for learning outcomes in Niger, CP, Mathematics, under minimal competency (%)
## 839                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P3, Numeracy, Correct Multiplications (%)
## 840                                                                                                                                                                                                  National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), success rate (%)
## 841                                                                                                                                                                                           National assessment for learning outcomes in Niger, CE2, Mathematics, under minimal competency (%)
## 842                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P5, Numeracy, Correct Multiplications (%)
## 843                                                                                                                                                                                               National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, success rate (%)
## 844                                                                                                                                                                                           National assessment for learning outcomes in Niger, CM2, Mathematics, under minimal competency (%)
## 845                                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P3, Numeracy, Zero score 
## 846                                                                                                                                                                                                                National assessment at the end of secondary (BAC) in Guinea, success rate (%)
## 847                                                                                                                                                                                          National assessment for learning outcomes in Niger, end of 1st degree certificate, success rate (%)
## 848                                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P5, Numeracy, Zero score 
## 849                                                                                                                                                                                                                                        PISA in Albania, grade 9 and 10, Reading (mean score)
## 850                                                                                                                                                                                                                                         PASEC in Burkina Faso, CP2, Mathematics (mean score)
## 851                                                                                                                                                                                           National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), minimal competency (%)
## 852                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, Biology, optimal competency (%)
## 853                                                                                                                                                                                                                                              TIMSS in Georgia, grade 4, Science (mean score)
## 854                                                                                                                                                                                                 National assessment for learning outcomes in Ghana, P3, Mathematics, students above mean (%)
## 855                                                                                                                                                                                                                                    PASEC in Guinea, CP2, French and Mathematics (mean score)
## 856                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - integrate and interpret (mean score)
## 857                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 6, Language (mean score)
## 858                                                                                                                                                                                                           National assessment for learning outcomes in Laos, grade 5, Language (proficiency)
## 859                                                                                                                                                                                                        National assessment for learning outcomes in Moldova, grade 4, minimal competency (%)
## 860                                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, French (mean score)
## 861                                                                                                                                                                                       National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, optimal competency (%)
## 862                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 863                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 3, scores in indicated level (%)
## 864                                                                                                                                                                                                                                              SACMEQ in Zambia, grade 5, Reading (mean score)
## 865                                                                                                                                                                                                                                    PISA in Albania, grade 9 and 10, Mathematics (mean score)
## 866                                                                                                                                                                                                                                         PASEC in Burkina Faso, CM1, Mathematics (mean score)
## 867                                                                                                                                                                                   National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), minimal competency (%)
## 868                                                                                                                                                                                           National assessment for learning outcomes in Ethiopia, grade 10, Chemistry, optimal competency (%)
## 869                                                                                                                                                                                                                                          TIMSS in Georgia, grade 8, Mathematics (mean score)
## 870                                                                                                                                                                                                 National assessment for learning outcomes in Ghana, P6, Mathematics, students above mean (%)
## 871                                                                                                                                                                                                                                                    PASEC in Guinea, CM1, French (mean score)
## 872                                                                                                                                                                                                                  PISA in Kyrgyzstan, grades 8-9, Reading - reflect and evaluate (mean score)
## 873                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 6, Mathematics (mean score)
## 874                                                                                                                                                                                                         National assessment for learning outcomes in Laos, grade 5, Mathematics (mean score)
## 875                                                                                                                                                                                                        National assessment for learning outcomes in Moldova, grade 9, minimal competency (%)
## 876                                                                                                                                                                                                       National assessment for learning outcomes in Niger, CP, French, optimal competency (%)
## 877                                                                                                                                                                                            National assessment for learning outcomes (SNERS) in Senegal, CE2, French, optimal competency (%)
## 878                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 879                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 4, scores in indicated level (%)
## 880                                                                                                                                                                                                                                          SACMEQ in Zambia, grade 5, Mathematics (mean score)
## 881                                                                                                                                                                                                                                        PISA in Albania, grade 9 and 10, Science (mean score)
## 882                                                                                                                                                                                           National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), optimal competency (%)
## 883                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, Physics, optimal competency (%)
## 884                                                                                                                                                                                                                                              TIMSS in Georgia, grade 8, Science (mean score)
## 885                                                                                                                                                                                       National assessment for learning outcomes in Ghana, P3, English, students above minimal competency (%)
## 886                                                                                                                                                                                                                                               PASEC in Guinea, CM1, Mathematics (mean score)
## 887                                                                                                                                                                                                                      PISA in Kyrgyzstan, grades 8-9, Reading - continuous texts (mean score)
## 888                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 9, Language (mean score)
## 889                                                                                                                                                                                                 National assessment for learning outcomes in Laos, grade 5, Mathematics (minimal competency)
## 890                                                                                                                                                                                                     National assessment for learning outcomes in Moldova, grade 4, proficient competency (%)
## 891                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CE2, French, optimal competency (%)
## 892                                                                                                                                                                                                                                              PASEC in Senegal, CM1, Mathematics (mean score)
## 893                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 894                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 5, scores in indicated level (%)
## 895                                                                                                                                                                                   National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), optimal competency (%)
## 896                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, average of all subjects, optimal competency (%)
## 897                                                                                                                                                                                                                                               PISA in Georgia, grade 9, Reading (mean score)
## 898                                                                                                                                                                                       National assessment for learning outcomes in Ghana, P6, English, students above minimum competency (%)
## 899                                                                                                                                                                                                                                    PASEC in Guinea, CM1, French and Mathematics (mean score)
## 900                                                                                                                                                                                                                  PISA in Kyrgyzstan, grades 8-9, Reading - non-continuous texts (mean score)
## 901                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 9, Mathematics (mean score)
## 902                                                                                                                                                                                                        National assessment for learning outcomes in Laos, grade 5, Mathematics (proficiency)
## 903                                                                                                                                                                                                     National assessment for learning outcomes in Moldova, grade 9, proficient competency (%)
## 904                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CM2, French, optimal competency (%)
## 905                                                                                                                                                                                                                                                   PASEC in Senegal, CM1, French (mean score)
## 906                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 907                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 6, scores in indicated level (%)
## 908                                                                                                                                                                                                                     PASEC in Côte d'Ivoire, CP2 and CM1, French and Mathematics (mean score)
## 909                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, English, optimal competency (%)
## 910                                                                                                                                                                                                                                           PISA in Georgia, grade 9, Mathematics (mean score)
## 911                                                                                                                                                                                   National assessment for learning outcomes in Ghana, P3, Mathematics, students above minimal competency (%)
## 912                                                                                                                                                                                                              PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)
## 913                                                                                                                                                                                                                           PISA in Kyrgyzstan, grades 8-9, Reading - mathematics (mean score)
## 914                                                                                                                                                                                                     National assessment for learning outcomes in Laos, grade 5, world around us (mean score)
## 915                                                                                                                                                                                                                                              PIRLS in Moldova, grade 4, Reading (mean score)
## 916                                                                                                                                                                                                       National assessment for learning outcomes in Niger, CP, French, minimal competency (%)
## 917                                                                                                                                                                                                                                                  PASEC in Senegal, Mathematics, (mean score)
## 918                                                                                                                                                                                         National assessment for learning outcomes in Ethiopia, grade 12, Mathematics, optimal competency (%)
## 919                                                                                                                                                                                                                                               PISA in Georgia, grade 9, Science (mean score)
## 920                                                                                                                                                                                   National assessment for learning outcomes in Ghana, P6, Mathematics, students above minimal competency (%)
## 921                                                                                                                                                                                                              PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)
## 922                                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - science (mean score)
## 923                                                                                                                                                                                             National assessment for learning outcomes in Laos, grade 5, world around us (minimal competency)
## 924                                                                                                                                                                                                                                                   TIMSS in Moldova, Mathematics (mean score)
## 925                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CE2, French, minimal competency (%)
## 926                                                                                                                                                                                                                                                        PASEC in Senegal, French (mean score)
## 927                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, Biology, optimal competency (%)
## 928                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in lowest level (%)
## 929                                                                                                                                                                                        National assessment for learning outcomes in Ghana, P3, English, students above proficient levels (%)
## 930                                                                                                                                                                                                              PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)
## 931                                                                                                                                                                                                    National assessment for learning outcomes in Laos, grade 5, world around us (proficiency)
## 932                                                                                                                                                                                                                                                       TIMSS in Moldova, Science (mean score)
## 933                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CM2, French, minimal competency (%)
## 934                                                                                                                                                                                                                    Realization of national assessments (yes=1, no=0, see notes if available)
## 935                                                                                                                                                                                                           Administration of oral reading fluency tests (yes=1, no=0, see notes if available)
## 936                                                                                                                                                                                                                                                                                Employees (%)
## 937                                                                                                                                                                                                                                                              Employees-Bottom 40 Percent (%)
## 938                                                                                                                                                                                                                                                                 Employees-Top 60 Percent (%)
## 939                                                                                                                                                                                                                                                                                Employers (%)
## 940                                                                                                                                                                                                                                                              Employers-Bottom 40 Percent (%)
## 941                                                                                                                                                                                                                                                                 Employers-Top 60 Percent (%)
## 942                                                                                                                                                                                                                                                           Labor Force Participation Rate (%)
## 943                                                                                                                                                                                                                                         Labor Force Participation Rate (%)-Bottom 40 Percent
## 944                                                                                                                                                                                                                                            Labor Force Participation Rate (%)-Top 60 Percent
## 945                                                                                                                                                                                                                                                                            Self-Employed (%)
## 946                                                                                                                                                                                                                                                          Self-Employed-Bottom 40 Percent (%)
## 947                                                                                                                                                                                                                                                             Self-Employed-Top 60 Percent (%)
## 948                                                                                                                                                                                                                                                                               Unemployed (%)
## 949                                                                                                                                                                                                                                                             Unemployed-Bottom 40 Percent (%)
## 950                                                                                                                                                                                                                                                                Unemployed-Top 60 Percent (%)
## 951                                                                                                                                                                                                                                                                           Unpaid Workers (%)
## 952                                                                                                                                                                                                                                                         Unpaid Workers-Bottom 40 Percent (%)
## 953                                                                                                                                                                                                                                                            Unpaid Workers-Top 60 Percent (%)
## 954                                                                                                                                                                                                                                                                          Employees (%), Male
## 955                                                                                                                                                                                                                                                        Employees-Bottom 40 Percent (%), Male
## 956                                                                                                                                                                                                                                                           Employees-Top 60 Percent (%), Male
## 957                                                                                                                                                                                                                                                                          Employers (%), Male
## 958                                                                                                                                                                                                                                                        Employers-Bottom 40 Percent (%), Male
## 959                                                                                                                                                                                                                                                           Employers-Top 60 Percent (%), Male
## 960                                                                                                                                                                                                                                                     Labor Force Participation Rate (%), Male
## 961                                                                                                                                                                                                                                   Labor Force Participation Rate (%)-Bottom 40 Percent, Male
## 962                                                                                                                                                                                                                                      Labor Force Participation Rate (%)-Top 60 Percent, Male
## 963                                                                                                                                                                                                                                                                      Self-Employed (%), Male
## 964                                                                                                                                                                                                                                                    Self-Employed-Bottom 40 Percent (%), Male
## 965                                                                                                                                                                                                                                                       Self-Employed-Top 60 Percent (%), Male
## 966                                                                                                                                                                                                                                                                         Unemployed (%), Male
## 967                                                                                                                                                                                                                                                       Unemployed-Bottom 40 Percent (%), Male
## 968                                                                                                                                                                                                                                                          Unemployed-Top 60 Percent (%), Male
## 969                                                                                                                                                                                                                                                                     Unpaid Workers (%), Male
## 970                                                                                                                                                                                                                                                   Unpaid Workers-Bottom 40 Percent (%), Male
## 971                                                                                                                                                                                                                                                      Unpaid Workers-Top 60 Percent (%), Male
## 972                                                                                                                                                                                                                    Alignment of aid to education (% of total international aid to education)
## 973                                                                                                                                                                                                                                                                        Employees (%), Female
## 974                                                                                                                                                                                                                                                      Employees-Bottom 40 Percent (%), Female
## 975                                                                                                                                                                                                                                                         Employees-Top 60 Percent (%), Female
## 976                                                                                                                                                                                                                                                                        Employers (%), Female
## 977                                                                                                                                                                                                                                                      Employers-Bottom 40 Percent (%), Female
## 978                                                                                                                                                                                                                                                         Employers-Top 60 Percent (%), Female
## 979                                                                                                                                                                                                                                                   Labor Force Participation Rate (%), Female
## 980                                                                                                                                                                                                                                 Labor Force Participation Rate (%)-Bottom 40 Percent, Female
## 981                                                                                                                                                                                                                                    Labor Force Participation Rate (%)-Top 60 Percent, Female
## 982                                                                                                                                                                                                                                                                    Self-Employed (%), Female
## 983                                                                                                                                                                                                                                                  Self-Employed-Bottom 40 Percent (%), Female
## 984                                                                                                                                                                                                                                                     Self-Employed-Top 60 Percent (%), Female
## 985                                                                                                                                                                                                                                                                       Unemployed (%), Female
## 986                                                                                                                                                                                                                                                     Unemployed-Bottom 40 Percent (%), Female
## 987                                                                                                                                                                                                                                                        Unemployed-Top 60 Percent (%), Female
## 988                                                                                                                                                                                                                                                                   Unpaid Workers (%), Female
## 989                                                                                                                                                                                                                                                 Unpaid Workers-Bottom 40 Percent (%), Female
## 990                                                                                                                                                                                                                                                    Unpaid Workers-Top 60 Percent (%), Female
## 991                                                                                                                                                                                                                      Coordinated technical cooperation (% of total cooperation to education)
## 992                                                                                                                                                                                               Use of public financial management country systems (% of total international aid to education)
## 993                                                                                                                                                                                                               Use of procurement country systems (% of total international aid to education)
## 994                                                                                                                                                                                                                                    Number of parallel implementation units, education sector
## 995                                                                                                                                                                                                          Aid provided through program based approaches (% of international aid to education)
## 996                                                                                                                                                                                                                                                        9020000:ACTUAL INDIVIDUAL CONSUMPTION
## 997                                                                                                                                                                                                                              9060000:ACTUAL HOUSING, WATER, ELECTRICITY, GAS AND OTHER FUELS
## 998                                                                                                                                                                                                                                                                        9080000:ACTUAL HEALTH
## 999                                                                                                                                                                                                                                  9100000:HOUSEHOLDS AND NPISHS FINAL CONSUMPTION EXPENDITURE
## 1000                                                                                                                                                                                                                                                       9110000:ACTUAL RECREATION AND CULTURE
## 1001                                                                                                                                                                                                                                                                    9120000:ACTUAL EDUCATION
## 1002                                                                                                                                                                                                                                             9140000:ACTUAL MISCELLANEOUS GOODS AND SERVICES
## 1003                                                                                                                                                                                                                                                                 9250000:DOMESTIC ABSORPTION
## 1004                                                                                                                                                                                                                    9260000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS WITHOUT HOUSING
## 1005                                                                                                                                                                                                                                    9270000:GENERAL GOVERNMENT FINAL CONSUMPTION EXPENDITURE
## 1006                                                                                                                                                                                                                                                                     001.Number of Exporters
## 1007                                                                                                                                                                                                                                                        026.Export Value per Incumbent: Mean
## 1008                                                                                                                                                                                                                                                      027.Export Value per Incumbent: Median
## 1009                                                                                                                                                                                                                                                      028.Export Value per Incumbent: StDev.
## 1010                                                                                                                                                                                                                                              029.Export Value per Incumbent: First Quartile
## 1011                                                                                                                                                                                                                                              030.Export Value per Incumbent: Third Quartile
## 1012                                                                                                                                                                                                                                                              031.Growth of Incumbents: Mean
## 1013                                                                                                                                                                                                                                                            032.Growth of Incumbents: Median
## 1014                                                                                                                                                                                                                                                            033.Growth of Incumbents: StDev.
## 1015                                                                                                                                                                                                                                                    034.Growth of Incumbents: First Quartile
## 1016                                                                                                                                                                                                                                                    035.Growth of Incumbents: Third Quartile
## 1017                                                                                                                                                                                                                                                      036.Growth of Surviving Entrants: Mean
## 1018                                                                                                                                                                                                                                                    037.Growth of Surviving Entrants: Median
## 1019                                                                                                                                                                                                                                                    038.Growth of Surviving Entrants: StDev.
## 1020                                                                                                                                                                                                                                            039.Growth of Surviving Entrants: First Quartile
## 1021                                                                                                                                                                                                                                            040.Growth of Surviving Entrants: Third Quartile
## 1022                                                                                                                                                                                                                                                                      002.Number of Entrants
## 1023                                                                                                                                                                                                                                                                       003.Number of Exiters
## 1024                                                                                                                                                                                                                                                            004.Number of Surviving Entrants
## 1025                                                                                                                                                                                                                                                                    005.Number of Incumbents
## 1026                                                                                                                                                                                                                                                         006.Export Value per Exporter: Mean
## 1027                                                                                                                                                                                                                                                       007.Export Value per Exporter: Median
## 1028                                                                                                                                                                                                                                                       008.Export Value per Exporter: StDev.
## 1029                                                                                                                                                                                                                                               009.Export Value per Exporter: First Quartile
## 1030                                                                                                                                                                                                                                               010.Export Value per Exporter: Third Quartile
## 1031                                                                                                                                                                                                                                                          011.Export Value per Entrant: Mean
## 1032                                                                                                                                                                                                                                                        012.Export Value per Entrant: Median
## 1033                                                                                                                                                                                                                                                        013.Export Value per Entrant: StDev.
## 1034                                                                                                                                                                                                                                                014.Export Value per Entrant: First Quartile
## 1035                                                                                                                                                                                                                                                015.Export Value per Entrant: Third Quartile
## 1036                                                                                                                                                                                                                                                           016.Export Value per Exiter: Mean
## 1037                                                                                                                                                                                                                                                         017.Export Value per Exiter: Median
## 1038                                                                                                                                                                                                                                                         018.Export Value per Exiter: StDev.
## 1039                                                                                                                                                                                                                                                 019.Export Value per Exiter: First Quartile
## 1040                                                                                                                                                                                                                                                 020.Export Value per Exiter: Third Quartile
## 1041                                                                                                                                                                                                                                                021.Export Value per Surviving Entrant: Mean
## 1042                                                                                                                                                                                                                                              022.Export Value per Surviving Entrant: Median
## 1043                                                                                                                                                                                                                                              023.Export Value per Surviving Entrant: StDev.
## 1044                                                                                                                                                                                                                                      024.Export Value per Surviving Entrant: First Quartile
## 1045                                                                                                                                                                                                                                      025.Export Value per Surviving Entrant: Third Quartile
## 1046                                                                                                                                                                                                                                                                         Account (% age 15+)
## 1047                                                                                                                                                                                                                                                                   Account, male (% age 15+)
## 1048                                                                                                                                                                                                                                                         Account, in labor force (% age 15+)
## 1049                                                                                                                                                                                                                                                     Account, out of labor force (% age 15+)
## 1050                                                                                                                                                                                                                                                                 Account, female (% age 15+)
## 1051                                                                                                                                                                                                                                                        Account, young adults (% ages 15-24)
## 1052                                                                                                                                                                                                                                                          Account, older adults (% ages 25+)
## 1053                                                                                                                                                                                                                                             Account, primary education or less (% ages 15+)
## 1054                                                                                                                                                                                                                                           Account, secondary education or more (% ages 15+)
## 1055                                                                                                                                                                                                                                                   Account, income, poorest 40% (% ages 15+)
## 1056                                                                                                                                                                                                                                                   Account, income, richest 60% (% ages 15+)
## 1057                                                                                                                                                                                                                                                                  Account, rural (% age 15+)
## 1058                                                                                                                                                                                                                                                                         Account (% age 15+)
## 1059                                                                                                                                                                                                                                                                 Account, female (% age 15+)
## 1060                                                                                                                                                                                                                                                                   Account, male (% age 15+)
## 1061                                                                                                                                                                                                                                                    Account, income, poorest 40% (% age 15+)
## 1062                                                                                                                                                                                                                                                    Account, income, richest 60% (% age 15+)
## 1063                                                                                                                                                                                                                                                                      Account (% ages 15-34)
## 1064                                                                                                                                                                                                                                                                      Account (% ages 35-59)
## 1065                                                                                                                                                                                                                                                                         Account (% age 60+)
## 1066                                                                                                                                                                                                                                                            Agricultural machinery, tractors
## 1067                                                                                                                                                                                                                                                    Cereal food aid deliveries (FAO, tonnes)
## 1068                                                                                                                                                                                                                       Total food (cereals and non-cereal) food aid deliveries (FAO, tonnes)
## 1069                                                                                                                                                                                                                                                Non-cereal food aid deliveries (FAO, tonnes)
## 1070                                                                                                                                                                                                                                                        Fertilizer consumption (metric tons)
## 1071                                                                                                                                                                                                                                         Fertilizer consumption (% of fertilizer production)
## 1072                                                                                                                                                                                                                               Fertilizer consumption (kilograms per hectare of arable land)
## 1073                                                                                                                                                                                                                                                         Pesticide consumption (metric tons)
## 1074                                                                                                                                                                                                                                          Producer Price for Barley (per tonne, current US$)
## 1075                                                                                                                                                                                                                                          Producer Price for Barley (per tonne, current LCU)
## 1076                                                                                                                                                                                                                                           Producer Price for Fonio (per tonne, current US$)
## 1077                                                                                                                                                                                                                                           Producer Price for Fonio (per tonne, current LCU)
## 1078                                                                                                                                                                                                                                          Producer Price for Millet (per tonne, current US$)
## 1079                                                                                                                                                                                                                                          Producer Price for Millet (per tonne, current LCU)
## 1080                                                                                                                                                                                                                                           Producer Price for Maize (per tonne, current US$)
## 1081                                                                                                                                                                                                                                           Producer Price for Maize (per tonne, current LCU)
## 1082                                                                                                                                                                                                                                     Producer Price for Rice, paddy (per tonne, current US$)
## 1083                                                                                                                                                                                                                                     Producer Price for Rice, paddy (per tonne, current LCU)
## 1084                                                                                                                                                                                                                                         Producer Price for Sorghum (per tonne, current US$)
## 1085                                                                                                                                                                                                                                         Producer Price for Sorghum (per tonne, current LCU)
## 1086                                                                                                                                                                                                                                           Producer Price for Wheat (per tonne, current US$)
## 1087                                                                                                                                                                                                                                           Producer Price for Wheat (per tonne, current LCU)
## 1088                                                                                                                                                                                                                                                  Wood charcoal production quantity (tonnes)
## 1089                                                                                                                                                                                                                                     Wood fuel production quantity (CUM, solid volume units)
## 1090                                                                                                                                                                                                                                                                Cereal imports (metric tons)
## 1091                                                                                                                                                                                                                                                                Agricultural land (hectares)
## 1092                                                                                                                                                                                                                                                                  Agricultural land (sq. km)
## 1093                                                                                                                                                                                                                                                          Agricultural land (% of land area)
## 1094                                                                                                                                                                                                                                                                      Arable land (hectares)
## 1095                                                                                                                                                                                                                                                           Arable land (hectares per person)
## 1096                                                                                                                                                                                                                                                                Arable land (% of land area)
## 1097                                                                                                                                                                                                                                                     Land under barley production (hectares)
## 1098                                                                                                                                                                                                                                                            Cereal cropland (% of land area)
## 1099                                                                                                                                                                                                                                                     Land under cereal production (hectares)
## 1100                                                                                                                                                                                                                                                               Permanent cropland (hectares)
## 1101                                                                                                                                                                                                                                                         Permanent cropland (% of land area)
## 1102                                                                                                                                                                                                                                                    Arable and permanent cropland (hectares)
## 1103                                                                                                                                                                                                                                  Rural land area where elevation is below 5 meters (sq. km)
## 1104                                                                                                                                                                                                                    Rural land area where elevation is below 5 meters (% of total land area)
## 1105                                                                                                                                                                                                                                  Urban land area where elevation is below 5 meters (sq. km)
## 1106                                                                                                                                                                                                                    Urban land area where elevation is below 5 meters (% of total land area)
## 1107                                                                                                                                                                                                                          Land area where elevation is below 5 meters (% of total land area)
## 1108                                                                                                                                                                                                                                                      Land under fonio production (hectares)
## 1109                                                                                                                                                                                                                                                                      Forest area (hectares)
## 1110                                                                                                                                                                                                                                                                        Forest area (sq. km)
## 1111                                                                                                                                                                                                                                                                Forest area (% of land area)
## 1112                                                                                                                                                                                                                                  Agricultural irrigated land (% of total agricultural land)
## 1113                                                                                                                                                                                                                                                         Land use, irrigated land (hectares)
## 1114                                                                                                                                                                                                                                                            Agricultural area irrigated (ha)
## 1115                                                                                                                                                                                                                                                Land area equipped for irrigation (hectares)
## 1116                                                                                                                                                                                                                                                              Irrigated land (% of cropland)
## 1117                                                                                                                                                                                                                                                     Land under millet production (hectares)
## 1118                                                                                                                                                                                                                                                      Land under maize production (hectares)
## 1119                                                                                                                                                                                                                                                            Land use, other (% of land area)
## 1120                                                                                                                                                                                                                                                           Arable land (hectares per person)
## 1121                                                                                                                                                                                                                                                          Permanent pasture (% of land area)
## 1122                                                                                                                                                                                                                                                Average precipitation in depth (mm per year)
## 1123                                                                                                                                                                                                                                                       Land under rice production (hectares)
## 1124                                                                                                                                                                                                                                                    Land under sorghum production (hectares)
## 1125                                                                                                                                                                                                                                                                        Land area (hectares)
## 1126                                                                                                                                                                                                                                                                          Land area (sq. km)
## 1127                                                                                                                                                                                                                                                                    Rural land area (sq. km)
## 1128                                                                                                                                                                                                                                                                    Urban land area (sq. km)
## 1129                                                                                                                                                                                                                              Agricultural machinery, tractors per 100 sq. km of arable land
## 1130                                                                                                                                                                                                                                                      Land under wheat production (hectares)
## 1131                                                                                                                                                                                                                                              Agriculture production index (1999-2001 = 100)
## 1132                                                                                                                                                                                                                                                             Barley production (metric tons)
## 1133                                                                                                                                                                                                                                                             Cereal production (metric tons)
## 1134                                                                                                                                                                                                                                                   Cereal production index (1999-2001 = 100)
## 1135                                                                                                                                                                                                                                                     Crop production index (2014-2016 = 100)
## 1136                                                                                                                                                                                                                                                              Fonio production (metric tons)
## 1137                                                                                                                                                                                                                                                     Food production index (2014-2016 = 100)
## 1138                                                                                                                                                                                                                                       Agriculture production index (gross, 1999-2001 = 100)
## 1139                                                                                                                                                                                                                                            Cereal production index (gross, 1999-2001 = 100)
## 1140                                                                                                                                                                                                                                              Crop production index (gross, 1999-2001 = 100)
## 1141                                                                                                                                                                                                                                              Food production index (gross, 1999-2001 = 100)
## 1142                                                                                                                                                                                                                                         Livestock production index (gross, 1999-2001 = 100)
## 1143                                                                                                                                                                                                                                          Non-food production index (gross, 1999-2001 = 100)
## 1144                                                                                                                                                                                                                                                Livestock production index (2014-2016 = 100)
## 1145                                                                                                                                                                                                                                                             Millet production (metric tons)
## 1146                                                                                                                                                                                                                                                              Maize production (metric tons)
## 1147                                                                                                                                                                                                                                           Gross non-food production index (1999-2001 = 100)
## 1148                                                                                                                                                                                                                                                               Rice production (metric tons)
## 1149                                                                                                                                                                                                                                                   Roots and tubers production (metric tons)
## 1150                                                                                                                                                                                                                                                            Sorghum production (metric tons)
## 1151                                                                                                                                                                                                                                                              Wheat production (metric tons)
## 1152                                                                                                                                                                                                                                                   Barley seed quantity (FAO, metric tonnes)
## 1153                                                                                                                                                                                                                                                   Cereal seed quantity (FAO, metric tonnes)
## 1154                                                                                                                                                                                                                                                    Fonio seed quantity (FAO, metric tonnes)
## 1155                                                                                                                                                                                                                                                   Millet seed quantity (FAO, metric tonnes)
## 1156                                                                                                                                                                                                                                                    Maize seed quantity (FAO, metric tonnes)
## 1157                                                                                                                                                                                                                                                     Rice seed quantity (FAO, metric tonnes)
## 1158                                                                                                                                                                                                                                                  Sorghum seed quantity (FAO, metric tonnes)
## 1159                                                                                                                                                                                                                                                    Wheat seed quantity (FAO, metric tonnes)
## 1160                                                                                                                                                                                                                                                                           Surface area (ha)
## 1161                                                                                                                                                                                                                                                                       Surface area (sq. km)
## 1162                                                                                                                                                                                                                                    Agricultural machinery, tractors per agricultural worker
## 1163                                                                                                                                                                                                                                                      Pesticide consumption (kg per hectare)
## 1164                                                                                                                                                                                                                                                               Barley yield (kg per hectare)
## 1165                                                                                                                                                                                                                                                               Cereal yield (kg per hectare)
## 1166                                                                                                                                                                                                                                                                Fonio yield (kg per hectare)
## 1167                                                                                                                                                                                                                                                               Millet yield (kg per hectare)
## 1168                                                                                                                                                                                                                                                                Maize yield (kg per hectare)
## 1169                                                                                                                                                                                                                                                                 Rice yield (kg per hectare)
## 1170                                                                                                                                                                                                                                                              Sorghum yield (kg per hectare)
## 1171                                                                                                                                                                                                                                                                Wheat yield (kg per hectare)
## 1172                                                                                                                                                                                        Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits)
## 1173                                                                                                                                                                                                                                    Coverage of social safety net programs (% of population)
## 1174                                                                                                                                                                                                     Generosity of social safety net programs (% of total welfare of beneficiary households)
## 1175                                                                                                                                                                                   Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits)
## 1176                                                                                                                                                                                                                                     Coverage of social insurance programs (% of population)
## 1177                                                                                                                                                                                                      Generosity of social insurance programs (% of total welfare of beneficiary households)
## 1178                                                                                                                                                                                     Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits)
## 1179                                                                                                                                                                                                                          Coverage of social protection and labor programs (% of population)
## 1180                                                                                                                                                                                           Generosity of social protection and labor programs (% of total welfare of beneficiary households)
## 1181                                                                                                                                                                                                                                                              041.Herfindahl-Hirschman Index
## 1182                                                                                                                                                                                                                                   042.Share of top 1% Exporters in TEV (Total Export Value)
## 1183                                                                                                                                                                                                                                   043.Share of top 5% Exporters in TEV (Total Export Value)
## 1184                                                                                                                                                                                                                                  044.Share of top 25% Exporters in TEV (Total Export Value)
## 1185                                                                                                                                                                                                                                               045.Number of HS6 Products per Exporter: Mean
## 1186                                                                                                                                                                                                                                             046.Number of HS6 Products per Exporter: Median
## 1187                                                                                                                                                                                                                                             047.Number of HS6 Products per Exporter: StDev.
## 1188                                                                                                                                                                                                                                               048.Number of Destinations per Exporter: Mean
## 1189                                                                                                                                                                                                                                             049.Number of Destinations per Exporter: Median
## 1190                                                                                                                                                                                                                                             050.Number of Destinations per Exporter: StDev.
## 1191                                                                                                                                                                                                                                               051.Number of Exporters per HS6 Product: Mean
## 1192                                                                                                                                                                                                                                             052.Number of Exporters per HS6 Product: Median
## 1193                                                                                                                                                                                                                                             053.Number of Exporters per HS6 Product: StDev.
## 1194                                                                                                                                                                                                                                               054.Number of Exporters per Destination: Mean
## 1195                                                                                                                                                                                                                                             055.Number of Exporters per Destination: Median
## 1196                                                                                                                                                                                                                                             056.Number of Exporters per Destination: StDev.
## 1197                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 15-19 with no education
## 1198                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 15-19 with no education
## 1199                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 15+ with no education
## 1200                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 15+ with no education
## 1201                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 20-24 with no education
## 1202                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 20-24 with no education
## 1203                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 25-29 with no education
## 1204                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 25-29 with no education
## 1205                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 25+ with no education
## 1206                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 25+ with no education
## 1207                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 30-34 with no education
## 1208                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 30-34 with no education
## 1209                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 35-39 with no education
## 1210                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 35-39 with no education
## 1211                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 40-44 with no education
## 1212                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 40-44 with no education
## 1213                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 45-49 with no education
## 1214                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 45-49 with no education
## 1215                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 50-54 with no education
## 1216                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 50-54 with no education
## 1217                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 55-59 with no education
## 1218                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 55-59 with no education
## 1219                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 60-64 with no education
## 1220                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 60-64 with no education
## 1221                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 65-69 with no education
## 1222                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 65-69 with no education
## 1223                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 70-74 with no education
## 1224                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 70-74 with no education
## 1225                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 75+ with no education
## 1226                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 75+ with no education
## 1227                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 15-19, total
## 1228                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 15-19, female
## 1229                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 15+, total
## 1230                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 15+, female
## 1231                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 20-24, total
## 1232                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 20-24, female
## 1233                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 25-29, total
## 1234                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 25-29, female
## 1235                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 25+, total
## 1236                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 25+, female
## 1237                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 30-34, total
## 1238                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 30-34, female
## 1239                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 35-39, total
## 1240                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 35-39, female
## 1241                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 40-44, total
## 1242                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 40-44, female
## 1243                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 45-49, total
## 1244                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 45-49, female
## 1245                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 50-54, total
## 1246                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 50-54, female
## 1247                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 55-59, total
## 1248                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 55-59, female
## 1249                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 60-64, total
## 1250                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 60-64, female
## 1251                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 65-69, total
## 1252                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 65-69, female
## 1253                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 70-74, total
## 1254                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 70-74, female
## 1255                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 75+, total
## 1256                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 75+, female
## 1257                                                                                                                                                                                              Barro-Lee: Percentage of female population age 15-19 with primary schooling. Completed Primary
## 1258                                                                                                                                                                                                     Barro-Lee: Percentage of population age 15-19 with primary schooling. Completed Primary
## 1259                                                                                                                                                                                                Barro-Lee: Percentage of female population age 15+ with primary schooling. Completed Primary
## 1260                                                                                                                                                                                                       Barro-Lee: Percentage of population age 15+ with primary schooling. Completed Primary
## 1261                                                                                                                                                                                              Barro-Lee: Percentage of female population age 20-24 with primary schooling. Completed Primary
## 1262                                                                                                                                                                                                     Barro-Lee: Percentage of population age 20-24 with primary schooling. Completed Primary
## 1263                                                                                                                                                                                              Barro-Lee: Percentage of female population age 25-29 with primary schooling. Completed Primary
## 1264                                                                                                                                                                                                     Barro-Lee: Percentage of population age 25-29 with primary schooling. Completed Primary
## 1265                                                                                                                                                                                                Barro-Lee: Percentage of female population age 25+ with primary schooling. Completed Primary
## 1266                                                                                                                                                                                                       Barro-Lee: Percentage of population age 25+ with primary schooling. Completed Primary
## 1267                                                                                                                                                                                              Barro-Lee: Percentage of female population age 30-34 with primary schooling. Completed Primary
## 1268                                                                                                                                                                                                     Barro-Lee: Percentage of population age 30-34 with primary schooling. Completed Primary
## 1269                                                                                                                                                                                              Barro-Lee: Percentage of female population age 35-39 with primary schooling. Completed Primary
## 1270                                                                                                                                                                                                     Barro-Lee: Percentage of population age 35-39 with primary schooling. Completed Primary
## 1271                                                                                                                                                                                              Barro-Lee: Percentage of female population age 40-44 with primary schooling. Completed Primary
## 1272                                                                                                                                                                                                     Barro-Lee: Percentage of population age 40-44 with primary schooling. Completed Primary
## 1273                                                                                                                                                                                              Barro-Lee: Percentage of female population age 45-49 with primary schooling. Completed Primary
## 1274                                                                                                                                                                                                     Barro-Lee: Percentage of population age 45-49 with primary schooling. Completed Primary
## 1275                                                                                                                                                                                              Barro-Lee: Percentage of female population age 50-54 with primary schooling. Completed Primary
## 1276                                                                                                                                                                                                     Barro-Lee: Percentage of population age 50-54 with primary schooling. Completed Primary
## 1277                                                                                                                                                                                              Barro-Lee: Percentage of female population age 55-59 with primary schooling. Completed Primary
## 1278                                                                                                                                                                                                     Barro-Lee: Percentage of population age 55-59 with primary schooling. Completed Primary
## 1279                                                                                                                                                                                              Barro-Lee: Percentage of female population age 60-64 with primary schooling. Completed Primary
## 1280                                                                                                                                                                                                     Barro-Lee: Percentage of population age 60-64 with primary schooling. Completed Primary
## 1281                                                                                                                                                                                              Barro-Lee: Percentage of female population age 65-69 with primary schooling. Completed Primary
## 1282                                                                                                                                                                                                     Barro-Lee: Percentage of population age 65-69 with primary schooling. Completed Primary
## 1283                                                                                                                                                                                              Barro-Lee: Percentage of female population age 70-74 with primary schooling. Completed Primary
## 1284                                                                                                                                                                                                     Barro-Lee: Percentage of population age 70-74 with primary schooling. Completed Primary
## 1285                                                                                                                                                                                                Barro-Lee: Percentage of female population age 75+ with primary schooling. Completed Primary
## 1286                                                                                                                                                                                                       Barro-Lee: Percentage of population age 75+ with primary schooling. Completed Primary
## 1287                                                                                                                                                                       Barro-Lee: Percentage of female population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)
## 1288                                                                                                                                                                              Barro-Lee: Percentage of population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)
## 1289                                                                                                                                                                         Barro-Lee: Percentage of female population age 15+ with primary schooling. Total (Incomplete and Completed Primary)
## 1290                                                                                                                                                                                Barro-Lee: Percentage of population age 15+ with primary schooling. Total (Incomplete and Completed Primary)
## 1291                                                                                                                                                                       Barro-Lee: Percentage of female population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)
## 1292                                                                                                                                                                              Barro-Lee: Percentage of population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)
## 1293                                                                                                                                                                       Barro-Lee: Percentage of female population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)
## 1294                                                                                                                                                                              Barro-Lee: Percentage of population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)
## 1295                                                                                                                                                                         Barro-Lee: Percentage of female population age 25+ with primary schooling. Total (Incomplete and Completed Primary)
## 1296                                                                                                                                                                                Barro-Lee: Percentage of population age 25+ with primary schooling. Total (Incomplete and Completed Primary)
## 1297                                                                                                                                                                       Barro-Lee: Percentage of female population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)
## 1298                                                                                                                                                                              Barro-Lee: Percentage of population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)
## 1299                                                                                                                                                                       Barro-Lee: Percentage of female population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)
## 1300                                                                                                                                                                              Barro-Lee: Percentage of population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)
## 1301                                                                                                                                                                       Barro-Lee: Percentage of female population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)
## 1302                                                                                                                                                                              Barro-Lee: Percentage of population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)
## 1303                                                                                                                                                                       Barro-Lee: Percentage of female population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)
## 1304                                                                                                                                                                              Barro-Lee: Percentage of population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)
## 1305                                                                                                                                                                       Barro-Lee: Percentage of female population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)
## 1306                                                                                                                                                                              Barro-Lee: Percentage of population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)
## 1307                                                                                                                                                                       Barro-Lee: Percentage of female population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)
## 1308                                                                                                                                                                              Barro-Lee: Percentage of population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)
## 1309                                                                                                                                                                       Barro-Lee: Percentage of female population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)
## 1310                                                                                                                                                                              Barro-Lee: Percentage of population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)
## 1311                                                                                                                                                                       Barro-Lee: Percentage of female population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)
## 1312                                                                                                                                                                              Barro-Lee: Percentage of population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)
## 1313                                                                                                                                                                       Barro-Lee: Percentage of female population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)
## 1314                                                                                                                                                                              Barro-Lee: Percentage of population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)
## 1315                                                                                                                                                                         Barro-Lee: Percentage of female population age 75+ with primary schooling. Total (Incomplete and Completed Primary)
## 1316                                                                                                                                                                                Barro-Lee: Percentage of population age 75+ with primary schooling. Total (Incomplete and Completed Primary)
## 1317                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 15-19, total
## 1318                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 15-19, female
## 1319                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 15+, total
## 1320                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 15+, female
## 1321                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 20-24, total
## 1322                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 20-24, female
## 1323                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 25-29, total
## 1324                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 25-29, female
## 1325                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 25+, total
## 1326                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 25+, female
## 1327                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 30-34, total
## 1328                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 30-34, female
## 1329                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 35-39, total
## 1330                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 35-39, female
## 1331                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 40-44, total
## 1332                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 40-44, female
## 1333                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 45-49, total
## 1334                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 45-49, female
## 1335                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 50-54, total
## 1336                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 50-54, female
## 1337                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 55-59, total
## 1338                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 55-59, female
## 1339                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 60-64, total
## 1340                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 60-64, female
## 1341                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 65-69, total
## 1342                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 65-69, female
## 1343                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 70-74, total
## 1344                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 70-74, female
## 1345                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 75+, total
## 1346                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 75+, female
## 1347                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 15-19, total
## 1348                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 15-19, female
## 1349                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 15+, total
## 1350                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 15+, female
## 1351                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 20-24, total
## 1352                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 20-24, female
## 1353                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 25-29, total
## 1354                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 25-29, female
## 1355                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 25+, total
## 1356                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 25+, female
## 1357                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 30-34, total
## 1358                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 30-34, female
## 1359                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 35-39, total
## 1360                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 35-39, female
## 1361                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 40-44, total
## 1362                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 40-44, female
## 1363                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 45-49, total
## 1364                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 45-49, female
## 1365                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 50-54, total
## 1366                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 50-54, female
## 1367                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 55-59, total
## 1368                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 55-59, female
## 1369                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 60-64, total
## 1370                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 60-64, female
## 1371                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 65-69, total
## 1372                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 65-69, female
## 1373                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 70-74, total
## 1374                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 70-74, female
## 1375                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 75+, total
## 1376                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 75+, female
## 1377                                                                                                                                                                                          Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Completed Secondary
## 1378                                                                                                                                                                                                 Barro-Lee: Percentage of population age 15-19 with secondary schooling. Completed Secondary
## 1379                                                                                                                                                                                            Barro-Lee: Percentage of female population age 15+ with secondary schooling. Completed Secondary
## 1380                                                                                                                                                                                                   Barro-Lee: Percentage of population age 15+ with secondary schooling. Completed Secondary
## 1381                                                                                                                                                                                          Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Completed Secondary
## 1382                                                                                                                                                                                                 Barro-Lee: Percentage of population age 20-24 with secondary schooling. Completed Secondary
## 1383                                                                                                                                                                                          Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Completed Secondary
## 1384                                                                                                                                                                                                 Barro-Lee: Percentage of population age 25-29 with secondary schooling. Completed Secondary
## 1385                                                                                                                                                                                            Barro-Lee: Percentage of female population age 25+ with secondary schooling. Completed Secondary
## 1386                                                                                                                                                                                                   Barro-Lee: Percentage of population age 25+ with secondary schooling. Completed Secondary
## 1387                                                                                                                                                                                          Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Completed Secondary
## 1388                                                                                                                                                                                                 Barro-Lee: Percentage of population age 30-34 with secondary schooling. Completed Secondary
## 1389                                                                                                                                                                                          Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Completed Secondary
## 1390                                                                                                                                                                                                 Barro-Lee: Percentage of population age 35-39 with secondary schooling. Completed Secondary
## 1391                                                                                                                                                                                          Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Completed Secondary
## 1392                                                                                                                                                                                                 Barro-Lee: Percentage of population age 40-44 with secondary schooling. Completed Secondary
## 1393                                                                                                                                                                                          Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Completed Secondary
## 1394                                                                                                                                                                                                 Barro-Lee: Percentage of population age 45-49 with secondary schooling. Completed Secondary
## 1395                                                                                                                                                                                          Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Completed Secondary
## 1396                                                                                                                                                                                                 Barro-Lee: Percentage of population age 50-54 with secondary schooling. Completed Secondary
## 1397                                                                                                                                                                                          Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Completed Secondary
## 1398                                                                                                                                                                                                 Barro-Lee: Percentage of population age 55-59 with secondary schooling. Completed Secondary
## 1399                                                                                                                                                                                          Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Completed Secondary
## 1400                                                                                                                                                                                                 Barro-Lee: Percentage of population age 60-64 with secondary schooling. Completed Secondary
## 1401                                                                                                                                                                                          Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Completed Secondary
## 1402                                                                                                                                                                                                 Barro-Lee: Percentage of population age 65-69 with secondary schooling. Completed Secondary
## 1403                                                                                                                                                                                          Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Completed Secondary
## 1404                                                                                                                                                                                                 Barro-Lee: Percentage of population age 70-74 with secondary schooling. Completed Secondary
## 1405                                                                                                                                                                                            Barro-Lee: Percentage of female population age 75+ with secondary schooling. Completed Secondary
## 1406                                                                                                                                                                                                   Barro-Lee: Percentage of population age 75+ with secondary schooling. Completed Secondary
## 1407                                                                                                                                                                   Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1408                                                                                                                                                                          Barro-Lee: Percentage of population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1409                                                                                                                                                                     Barro-Lee: Percentage of female population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1410                                                                                                                                                                            Barro-Lee: Percentage of population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1411                                                                                                                                                                   Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1412                                                                                                                                                                          Barro-Lee: Percentage of population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1413                                                                                                                                                                   Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1414                                                                                                                                                                          Barro-Lee: Percentage of population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1415                                                                                                                                                                     Barro-Lee: Percentage of female population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1416                                                                                                                                                                            Barro-Lee: Percentage of population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1417                                                                                                                                                                   Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1418                                                                                                                                                                          Barro-Lee: Percentage of population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1419                                                                                                                                                                   Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1420                                                                                                                                                                          Barro-Lee: Percentage of population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1421                                                                                                                                                                   Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1422                                                                                                                                                                          Barro-Lee: Percentage of population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1423                                                                                                                                                                   Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1424                                                                                                                                                                          Barro-Lee: Percentage of population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1425                                                                                                                                                                   Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1426                                                                                                                                                                          Barro-Lee: Percentage of population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1427                                                                                                                                                                   Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1428                                                                                                                                                                          Barro-Lee: Percentage of population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1429                                                                                                                                                                   Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1430                                                                                                                                                                          Barro-Lee: Percentage of population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1431                                                                                                                                                                   Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1432                                                                                                                                                                          Barro-Lee: Percentage of population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1433                                                                                                                                                                   Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1434                                                                                                                                                                          Barro-Lee: Percentage of population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1435                                                                                                                                                                     Barro-Lee: Percentage of female population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1436                                                                                                                                                                            Barro-Lee: Percentage of population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1437                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 15-19, total
## 1438                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 15-19, female
## 1439                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 15+, total
## 1440                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 15+, female
## 1441                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 20-24, total
## 1442                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 20-24, female
## 1443                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 25-29, total
## 1444                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 25-29, female
## 1445                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 25+, total
## 1446                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 25+, female
## 1447                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 30-34, total
## 1448                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 30-34, female
## 1449                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 35-39, total
## 1450                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 35-39, female
## 1451                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 40-44, total
## 1452                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 40-44, female
## 1453                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 45-49, total
## 1454                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 45-49, female
## 1455                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 50-54, total
## 1456                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 50-54, female
## 1457                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 55-59, total
## 1458                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 55-59, female
## 1459                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 60-64, total
## 1460                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 60-64, female
## 1461                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 65-69, total
## 1462                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 65-69, female
## 1463                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 70-74, total
## 1464                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 70-74, female
## 1465                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 75+, total
## 1466                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 75+, female
## 1467                                                                                                                                                                                            Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Completed Tertiary
## 1468                                                                                                                                                                                                   Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Completed Tertiary
## 1469                                                                                                                                                                                              Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Completed Tertiary
## 1470                                                                                                                                                                                                     Barro-Lee: Percentage of population age 15+ with tertiary schooling. Completed Tertiary
## 1471                                                                                                                                                                                            Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Completed Tertiary
## 1472                                                                                                                                                                                                   Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Completed Tertiary
## 1473                                                                                                                                                                                            Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Completed Tertiary
## 1474                                                                                                                                                                                                   Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Completed Tertiary
## 1475                                                                                                                                                                                              Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Completed Tertiary
## 1476                                                                                                                                                                                                     Barro-Lee: Percentage of population age 25+ with tertiary schooling. Completed Tertiary
## 1477                                                                                                                                                                                            Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Completed Tertiary
## 1478                                                                                                                                                                                                   Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Completed Tertiary
## 1479                                                                                                                                                                                            Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Completed Tertiary
## 1480                                                                                                                                                                                                   Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Completed Tertiary
## 1481                                                                                                                                                                                            Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Completed Tertiary
## 1482                                                                                                                                                                                                   Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Completed Tertiary
## 1483                                                                                                                                                                                            Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Completed Tertiary
## 1484                                                                                                                                                                                                   Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Completed Tertiary
## 1485                                                                                                                                                                                            Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Completed Tertiary
## 1486                                                                                                                                                                                                   Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Completed Tertiary
## 1487                                                                                                                                                                                            Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Completed Tertiary
## 1488                                                                                                                                                                                                   Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Completed Tertiary
## 1489                                                                                                                                                                                            Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Completed Tertiary
## 1490                                                                                                                                                                                                   Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Completed Tertiary
## 1491                                                                                                                                                                                            Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Completed Tertiary
## 1492                                                                                                                                                                                                   Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Completed Tertiary
## 1493                                                                                                                                                                                            Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Completed Tertiary
## 1494                                                                                                                                                                                                   Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Completed Tertiary
## 1495                                                                                                                                                                                              Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Completed Tertiary
## 1496                                                                                                                                                                                                     Barro-Lee: Percentage of population age 75+ with tertiary schooling. Completed Tertiary
## 1497                                                                                                                                                                     Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1498                                                                                                                                                                            Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1499                                                                                                                                                                       Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1500                                                                                                                                                                              Barro-Lee: Percentage of population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1501                                                                                                                                                                     Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1502                                                                                                                                                                            Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1503                                                                                                                                                                     Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1504                                                                                                                                                                            Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1505                                                                                                                                                                       Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1506                                                                                                                                                                              Barro-Lee: Percentage of population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1507                                                                                                                                                                     Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1508                                                                                                                                                                            Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1509                                                                                                                                                                     Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1510                                                                                                                                                                            Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1511                                                                                                                                                                     Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1512                                                                                                                                                                            Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1513                                                                                                                                                                     Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1514                                                                                                                                                                            Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1515                                                                                                                                                                     Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1516                                                                                                                                                                            Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1517                                                                                                                                                                     Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1518                                                                                                                                                                            Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1519                                                                                                                                                                     Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1520                                                                                                                                                                            Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1521                                                                                                                                                                     Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1522                                                                                                                                                                            Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1523                                                                                                                                                                     Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1524                                                                                                                                                                            Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1525                                                                                                                                                                       Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1526                                                                                                                                                                              Barro-Lee: Percentage of population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1527                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 15-19, total
## 1528                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 15-19, female
## 1529                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 15+, total
## 1530                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 15+, female
## 1531                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 20-24, total
## 1532                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 20-24, female
## 1533                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 25-29, total
## 1534                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 25-29, female
## 1535                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 25+, total
## 1536                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 25+, female
## 1537                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 30-34, total
## 1538                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 30-34, female
## 1539                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 35-39, total
## 1540                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 35-39, female
## 1541                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 40-44, total
## 1542                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 40-44, female
## 1543                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 45-49, total
## 1544                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 45-49, female
## 1545                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 50-54, total
## 1546                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 50-54, female
## 1547                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 55-59, total
## 1548                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 55-59, female
## 1549                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 60-64, total
## 1550                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 60-64, female
## 1551                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 65-69, total
## 1552                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 65-69, female
## 1553                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 70-74, total
## 1554                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 70-74, female
## 1555                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 75+, total
## 1556                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 75+, female
## 1557                                                                                                                                                                                                                                                                Trade in services (% of GDP)
## 1558                                                                                                                                                                                                                                                 Gross private capital flows (% of GDP, PPP)
## 1559                                                                                                                                                                                                                                                      Gross private capital flows (% of GDP)
## 1560                                                                                                                                                                                                                                             Gross foreign direct investment (% of GDP, PPP)
## 1561                                                                                                                                                                                                                                                  Gross foreign direct investment (% of GDP)
## 1562                                                                                                                                                                                                                                    Education workers, as a share of public formal employees
## 1563                                                                                                                                                                                                                                       Health workers, as a share of public formal employees
## 1564                                                                                                                                                                                                           Public sector employment, as a share of formal employment, by industry: Education
## 1565                                                                                                                                                                                                              Public sector employment, as a share of formal employment, by industry: Health
## 1566                                                                                                                                                                                                                         Public adminstration workers, as a share of public formal employees
## 1567                                                                                                                                                                                                                                   Public sector employment, as a share of formal employment
## 1568                                                                                                                                                                                                       Public sector female employment, as a share of paid employment by industry: Education
## 1569                                                                                                                                                                                                          Public sector female employment, as a share of paid employment by industry: Health
## 1570                                                                                                                                                                                                                                      Education workers, as a share of public paid employees
## 1571                                                                                                                                                                                                                                         Health workers, as a share of public paid employees
## 1572                                                                                                                                                                                                             Public sector employment, as a share of paid employment, by industry: Education
## 1573                                                                                                                                                                                                                   Public sector employment, as a share of paid employment by gender: Female
## 1574                                                                                                                                                                                                                Public sector employment, as a share of paid employment, by industry: Health
## 1575                                                                                                                                                                                                                     Public sector employment, as a share of paid employment by gender: Male
## 1576                                                                                                                                                                                                                           Public adminstration workers, as a share of public paid employees
## 1577                                                                                                                                                                                                                  Public sector employment, as a share of paid employment by location: Rural
## 1578                                                                                                                                                                                                                  Public sector employment, as a share of paid employment by location: Urban
## 1579                                                                                                                                                                                                                                     Public sector employment, as a share of paid employment
## 1580                                                                                                                                                                                                                                     Education workers, as a share of public total employees
## 1581                                                                                                                                                                                                                                        Health workers, as a share of public total employees
## 1582                                                                                                                                                                                                                                                              Number of employed individuals
## 1583                                                                                                                                                                                                                                        Number of employed employees, by industry: Education
## 1584                                                                                                                                                                                                                                           Number of employed employees, by industry: Health
## 1585                                                                                                                                                                                                                             Number of employed employees, by industry: Public adminstration
## 1586                                                                                                                                                                                                            Public sector employment, as a share of total employment, by industry: Education
## 1587                                                                                                                                                                                                                  Public sector employment, as a share of total employment by gender: Female
## 1588                                                                                                                                                                                                               Public sector employment, as a share of total employment, by industry: Health
## 1589                                                                                                                                                                                                                    Public sector employment, as a share of total employment by gender: Male
## 1590                                                                                                                                                                                                                          Public adminstration workers, as a share of public total employees
## 1591                                                                                                                                                                                                                 Public sector employment, as a share of total employment by location: Rural
## 1592                                                                                                                                                                                                              Proportion of total employees with tertiary education working in public sector
## 1593                                                                                                                                                                                                                 Public sector employment, as a share of total employment by location: Urban
## 1594                                                                                                                                                                                                                                    Public sector employment, as a share of total employment
## 1595                                                                                                                                                                                                                                                                                 Sample size
## 1596                                                                                                                                                                                                                                 Median age of public paid employees, by industry: Education
## 1597                                                                                                                                                                                                                                   Mean age of public paid employees, by industry: Education
## 1598                                                                                                                                                                                                                                    Median age of public paid employees, by industry: Health
## 1599                                                                                                                                                                                                                                      Mean age of public paid employees, by industry: Health
## 1600                                                                                                                                                                                                                                                         Median age of public paid employees
## 1601                                                                                                                                                                                                                      Median age of public paid employees, by industry: Public adminstration
## 1602                                                                                                                                                                                                                        Mean age of public paid employees, by industry: Public adminstration
## 1603                                                                                                                                                                                                                                                           Mean age of public paid employees
## 1604                                                                                                                                                                                                                                Median age of private paid employees, by industry: Education
## 1605                                                                                                                                                                                                                                  Mean age of private paid employees, by industry: Education
## 1606                                                                                                                                                                                                                                   Median age of private paid employees, by industry: Health
## 1607                                                                                                                                                                                                                                     Mean age of private paid employees, by industry: Health
## 1608                                                                                                                                                                                                                                                        Median age of private paid employees
## 1609                                                                                                                                                                                                                                                          Mean age of private paid employees
## 1610                                                                                                                                                                                        Cross-country public sector pay comparison ratio, by occupation: Government economist (using median)
## 1611                                                                                                                                                                                          Cross-country public sector pay comparison ratio, by occupation: Government economist (using mean)
## 1612                                                                                                                                                                                             Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using median)
## 1613                                                                                                                                                                                               Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using mean)
## 1614                                                                                                                                                                                              Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using median)
## 1615                                                                                                                                                                                                Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using mean)
## 1616                                                                                                                                                                                                       Cross-country public sector pay comparison ratio, by occupation: Judge (using median)
## 1617                                                                                                                                                                                                         Cross-country public sector pay comparison ratio, by occupation: Judge (using mean)
## 1618                                                                                                                                                                                              Cross-country public sector pay comparison ratio, by occupation: Police officer (using median)
## 1619                                                                                                                                                                                                Cross-country public sector pay comparison ratio, by occupation: Police officer (using mean)
## 1620                                                                                                                                                                                      Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using median)
## 1621                                                                                                                                                                                        Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using mean)
## 1622                                                                                                                                                                                             Cross-country public sector pay comparison ratio, by occupation: Senior official (using median)
## 1623                                                                                                                                                                                               Cross-country public sector pay comparison ratio, by occupation: Senior official (using mean)
## 1624                                                                                                                                                                                    Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using median)
## 1625                                                                                                                                                                                      Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using mean)
## 1626                                                                                                                                                                                          Cross-country public sector pay comparison ratio, by occupation: University teacher (using median)
## 1627                                                                                                                                                                                            Cross-country public sector pay comparison ratio, by occupation: University teacher (using mean)
## 1628                                                                                                                                                                                                                         Females, as a share of private paid employees by occupation: Clerks
## 1629                                                                                                                                                                                                                                             Share of private paid employees with a contract
## 1630                                                                                                                                                                                                          Females, as a share of private paid employees by occupation: Elementary occupation
## 1631                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 1
## 1632                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 2
## 1633                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 3
## 1634                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 4
## 1635                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 5
## 1636                                                                                                                                                                                                                                               Females, as a share of private paid employees
## 1637                                                                                                                                                                                                                                       Share of private paid employees with health insurance
## 1638                                                                                                                                                                                                                          Individuals with no education as a share of private paid employees
## 1639                                                                                                                                                                                                                  Females, as a share of private paid employees by occupation: Professionals
## 1640                                                                                                                                                                                                                     Individuals with primary education as a share of private paid employees
## 1641                                                                                                                                                                                                                                       Rural residents, as a share of private paid employees
## 1642                                                                                                                                                                                                                   Individuals with secondary education as a share of private paid employees
## 1643                                                                                                                                                                                                                       Females, as a share of private paid employees by occupation: Managers
## 1644                                                                                                                                                                                                                                        Share of private paid employees with social security
## 1645                                                                                                                                                                                                                    Females, as a share of private paid employees by occupation: Technicians
## 1646                                                                                                                                                                                            Individuals with tertiary education as a share of private paid employees, by industry: Education
## 1647                                                                                                                                                                                               Individuals with tertiary education as a share of private paid employees, by industry: Health
## 1648                                                                                                                                                                                                                    Individuals with tertiary education as a share of private paid employees
## 1649                                                                                                                                                                                                                                       Share of private paid employees with union membership
## 1650                                                                                                                                                                                                                          Females, as a share of public paid employees by occupation: Clerks
## 1651                                                                                                                                                                                                                                              Share of public paid employees with a contract
## 1652                                                                                                                                                                                                                         Females, as a share of public paid employees by industry: Education
## 1653                                                                                                                                                                                                           Females, as a share of public paid employees by occupation: Elementary occupation
## 1654                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 1
## 1655                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 2
## 1656                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 3
## 1657                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 4
## 1658                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 5
## 1659                                                                                                                                                                                                                                                Females, as a share of public paid employees
## 1660                                                                                                                                                                                                                            Females, as a share of public paid employees by industry: Health
## 1661                                                                                                                                                                                                                                        Share of public paid employees with health insurance
## 1662                                                                                                                                                                                                                           Individuals with no education as a share of public paid employees
## 1663                                                                                                                                                                                                                                                             Number of public paid employees
## 1664                                                                                                                                                                                                                                     Number of public paid employees, by industry: Education
## 1665                                                                                                                                                                                                                                        Number of public paid employees, by industry: Health
## 1666                                                                                                                                                                                                                          Number of public paid employees, by industry: Public adminstration
## 1667                                                                                                                                                                                                              Females, as a share of public paid employees by industry: Public adminstration
## 1668                                                                                                                                                                                                                   Females, as a share of public paid employees by occupation: Professionals
## 1669                                                                                                                                                                                                                      Individuals with primary education as a share of public paid employees
## 1670                                                                                                                                                                                                                Rural residents, as a share of public paid employees, by industry: Education
## 1671                                                                                                                                                                                                                   Rural residents, as a share of public paid employees, by industry: Health
## 1672                                                                                                                                                                                                     Rural residents, as a share of public paid employees, by industry: Public adminstration
## 1673                                                                                                                                                                                                                                        Rural residents, as a share of public paid employees
## 1674                                                                                                                                                                                                                    Individuals with secondary education as a share of public paid employees
## 1675                                                                                                                                                                                                                        Females, as a share of public paid employees by occupation: Managers
## 1676                                                                                                                                                                                                                                         Share of public paid employees with social security
## 1677                                                                                                                                                                                                                     Females, as a share of public paid employees by occupation: Technicians
## 1678                                                                                                                                                                                             Individuals with tertiary education as a share of public paid employees, by industry: Education
## 1679                                                                                                                                                                                                Individuals with tertiary education as a share of public paid employees, by industry: Health
## 1680                                                                                                                                                                                  Individuals with tertiary education as a share of public paid employees, by industry: Public adminstration
## 1681                                                                                                                                                                                                                     Individuals with tertiary education as a share of public paid employees
## 1682                                                                                                                                                                                                                                        Share of public paid employees with union membership
## 1683                                                                                                                                                                                                                                                                    Number of paid employees
## 1684                                                                                                                                                                                                                                            Number of paid employees, by industry: Education
## 1685                                                                                                                                                                                                                                               Number of paid employees, by industry: Health
## 1686                                                                                                                                                                                                                                 Number of paid employees, by industry: Public adminstration
## 1687                                                                                                                                                                                            Pay compression ratio in public sector, by occupation: Government economist (clerk as reference)
## 1688                                                                                                                                                                                                 Pay compression ratio in public sector, by occupation: Hospital doctor (clerk as reference)
## 1689                                                                                                                                                                                                  Pay compression ratio in public sector, by occupation: Hospital nurse (clerk as reference)
## 1690                                                                                                                                                                                                           Pay compression ratio in public sector, by occupation: Judge (clerk as reference)
## 1691                                                                                                                                                                                                  Pay compression ratio in public sector, by occupation: Police officer (clerk as reference)
## 1692                                                                                                                                                                                          Pay compression ratio in public sector, by occupation: Primary school teacher (clerk as reference)
## 1693                                                                                                                                                                                                Pay compression ratio in public sector, by occupation: Senior officials (clerk as reference)
## 1694                                                                                                                                                                                        Pay compression ratio in public sector, by occupation: Secondary school teacher (clerk as reference)
## 1695                                                                                                                                                                                              Pay compression ratio in public sector, by occupation: University teacher (clerk as reference)
## 1696                                                                                                                                                                                                              Pay compression ratio in public sector (ratio of 90th/10th percentile earners)
## 1697                                                                                                                                                                                                             Pay compression ratio in private sector (ratio of 90th/10th percentile earners)
## 1698                                                                                                                                                                                                      Public sector wage premium, by industry: Education (compared to formal wage employees)
## 1699                                                                                                                                                                                                      Public sector wage premium, by industry: Education (compared to all private employees)
## 1700                                                                                                                                                                                            Public sector wage premium for females, by industry: Education (compared to paid wage employees)
## 1701                                                                                                                                                                                               Public sector wage premium for females, by industry: Health (compared to paid wage employees)
## 1702                                                                                                                                                                                                         Public sector wage premium, by industry: Health (compared to formal wage employees)
## 1703                                                                                                                                                                                                         Public sector wage premium, by industry: Health (compared to all private employees)
## 1704                                                                                                                                                                                              Public sector wage premium for males, by industry: Education (compared to paid wage employees)
## 1705                                                                                                                                                                                                 Public sector wage premium for males, by industry: Health (compared to paid wage employees)
## 1706                                                                                                                                                                                                                              Public sector wage premium (compared to formal wage employees)
## 1707                                                                                                                                                                                                       Public sector wage premium, by occupation: Clerks (compared to formal wage employees)
## 1708                                                                                                                                                                                                 P-Value: Public sector wage premium, by education level (compared to formal wage employees)
## 1709                                                                                                                                                                                             P-Value: Public sector wage premium, by industry: Education (compared to all private employees)
## 1710                                                                                                                                                                                             P-Value: Public sector wage premium, by industry: Education (compared to formal wage employees)
## 1711                                                                                                                                                                                        Public sector wage premium, by occupation: Elementary occupation (compared to formal wage employees)
## 1712                                                                                                                                                                                                           Public sector wage premium, by gender: Female (compared to all private employees)
## 1713                                                                                                                                                                                   P-Value: Public sector wage premium for females, by industry: Education (compared to paid wage employees)
## 1714                                                                                                                                                                                      P-Value: Public sector wage premium for females, by industry: Health (compared to paid wage employees)
## 1715                                                                                                                                                                                                                     P-Value: Public sector wage premium (compared to formal wage employees)
## 1716                                                                                                                                                                                                          P-Value: Public sector wage premium, by gender (compared to all private employees)
## 1717                                                                                                                                                                                 P-Value: Gender wage premium in the public sector, by industry: Education (compared to male paid employees)
## 1718                                                                                                                                                                                    P-Value: Gender wage premium in the public sector, by industry: Health (compared to male paid employees)
## 1719                                                                                                                                                                      P-Value: Gender wage premium in the public sector, by industry: Public adminstration (compared to male paid employees)
## 1720                                                                                                                                                                                                                              Public sector wage premium (compared to all private employees)
## 1721                                                                                                                                                                                                P-Value: Public sector wage premium, by industry: Health (compared to all private employees)
## 1722                                                                                                                                                                                                P-Value: Public sector wage premium, by industry: Health (compared to formal wage employees)
## 1723                                                                                                                                                                                                             Public sector wage premium, by gender: Male (compared to all private employees)
## 1724                                                                                                                                                                                     P-Value: Public sector wage premium for males, by industry: Education (compared to paid wage employees)
## 1725                                                                                                                                                                                        P-Value: Public sector wage premium for males, by industry: Health (compared to paid wage employees)
## 1726                                                                                                                                                                                            Public sector wage premium, by education level: No education (compared to formal wage employees)
## 1727                                                                                                                                                                                                      P-Value: Public sector wage premium, by occupation (compared to formal wage employees)
## 1728                                                                                                                                                                                                Public sector wage premium, by occupation: Professionals (compared to formal wage employees)
## 1729                                                                                                                                                                                       Public sector wage premium, by education level: Primary education (compared to formal wage employees)
## 1730                                                                                                                                                                                                                     P-Value: Public sector wage premium (compared to all private employees)
## 1731                                                                                                                                                                                     Public sector wage premium, by education level: Secondary education (compared to formal wage employees)
## 1732                                                                                                                                                                                                     Public sector wage premium, by occupation: Managers (compared to formal wage employees)
## 1733                                                                                                                                                                                                  Public sector wage premium, by occupation: Technicians (compared to formal wage employees)
## 1734                                                                                                                                                                                      Public sector wage premium, by education level: Tertiary education (compared to formal wage employees)
## 1735                                                                                                                                                                                P-Value: Gender wage premium in the private sector, by industry: Education (compared to male paid employees)
## 1736                                                                                                                                                                                   P-Value: Gender wage premium in the private sector, by industry: Health (compared to male paid employees)
## 1737                                                                                                                                                                                         Gender wage premium in the private sector, by industry: Education (compared to male paid employees)
## 1738                                                                                                                                                                                                                              Female to male wage ratio in the private sector (using median)
## 1739                                                                                                                                                                                                                                Female to male wage ratio in the private sector (using mean)
## 1740                                                                                                                                                                                            Gender wage premium in the private sector, by industry: Health (compared to male paid employees)
## 1741                                                                                                                                                                                                                 Relative wage of Professionals (using clerk as reference) in private sector
## 1742                                                                                                                                                                                                                      Relative wage of Managers (using clerk as reference) in private sector
## 1743                                                                                                                                                                                                                   Relative wage of Technicians (using clerk as reference) in private sector
## 1744                                                                                                                                                                                          Gender wage premium in the public sector, by industry: Education (compared to male paid employees)
## 1745                                                                                                                                                                                                                               Female to male wage ratio in the public sector (using median)
## 1746                                                                                                                                                                                                                                 Female to male wage ratio in the public sector (using mean)
## 1747                                                                                                                                                                                             Gender wage premium in the public sector, by industry: Health (compared to male paid employees)
## 1748                                                                                                                                                                               Gender wage premium in the public sector, by industry: Public adminstration (compared to male paid employees)
## 1749                                                                                                                                                                                                                  Relative wage of Professionals (using clerk as reference) in public sector
## 1750                                                                                                                                                                                                                       Relative wage of Managers (using clerk as reference) in public sector
## 1751                                                                                                                                                                                                                    Relative wage of Technicians (using clerk as reference) in public sector
## 1752                                                                                                                                                                                                                                                            Wage bill as a percentage of GDP
## 1753                                                                                                                                                                                                                                            Wage bill as a percentage of public expenditures
## 1754                                                                                                                                                                                                                                           Agricultural tractors, exports (FAO, current US$)
## 1755                                                                                                                                                                                                                                                              Agricultural tractors, exports
## 1756                                                                                                                                                                                                                                                           Cereal exports (FAO, current US$)
## 1757                                                                                                                                                                                                                                                       Cereal exports quantity (FAO, tonnes)
## 1758                                                                                                                                                                                                                                                  Forest products imports (FAO, current US$)
## 1759                                                                                                                                                                                                                                             Hazardous pesticides imports (FAO, current US$)
## 1760                                                                                                                                                                                                                                                       Pesticides imports (FAO, current US$)
## 1761                                                                                                                                                                                                                                              Food imports excluding fish (FAO, current US$)
## 1762                                                                                                                                                                                                                                               Total agricultural imports (FAO, current US$)
## 1763                                                                                                                                                                                                                                  Communications, computer, etc. (% of service imports, BoP)
## 1764                                                                                                                                                                                                                                         Communications services, imports (BoP, current US$)
## 1765                                                                                                                                                                                                                                                  Primary income payments (BoP, current US$)
## 1766                                                                                                                                                                                                                                              Financial services, imports (BoP, current US$)
## 1767                                                                                                                                                                                                                                                    Other income payments (BoP, current US$)
## 1768                                                                                                                                                                                                                                            Imports of goods and services (BoP, current US$)
## 1769                                                                                                                                                                                                                                Insurance and financial services (% of service imports, BoP)
## 1770                                                                                                                                                                                                                                              Insurance services, imports (BoP, current US$)
## 1771                                                                                                                                                                                                                                                            Goods imports (BoP, current US$)
## 1772                                                                                                                                                                                                                                            Merchandise imports (BOP): percentage of GDP (%)
## 1773                                                                                                                                                                                                                                                          Service imports (BoP, current US$)
## 1774                                                                                                                                                                                                                                                          Other services, imports (BoP, US$)
## 1775                                                                                                                                                                                                                   Charges for the use of intellectual property, payments (BoP, current US$)
## 1776                                                                                                                                                                                                                                             Imports of  total services (Debit, current US$)
## 1777                                                                                                                                                                                                                            Imports of goods, services and primary income (BoP, current US$)
## 1778                                                                                                                                                                                                                                              Transport services, imports (BoP, current US$)
## 1779                                                                                                                                                                                                                                              Transport services (% of service imports, BoP)
## 1780                                                                                                                                                                                                                                                 Travel services, imports (BoP, current US$)
## 1781                                                                                                                                                                                                                                                 Travel services (% of service imports, BoP)
## 1782                                                                                                                                                                                                         Foreign direct investment, net outflows by reporting economy (IMF-BoP, current US$)
## 1783                                                                                                                                                                                                                                  Foreign direct investment, net outflows (BoP, current US$)
## 1784                                                                                                                                                                                                                                          Foreign direct investment, net outflows (% of GDP)
## 1785                                                                                                                                                                                                                                          Foreign direct investment, net outflows (% of GDP)
## 1786                                                                                                                                                                                                                                                          Factor Service Payments (US$, BoP)
## 1787                                                                                                                                                                                                                                                     Non-Factor Services Payments (US$, BoP)
## 1788                                                                                                                                                                                                                                              Current transfers, payments (BoP, current US$)
## 1789                                                                                                                                                                                                                                                   Migrant remittance outflows (current US$)
## 1790                                                                                                                                                                                                                                     Official current transfers, payments (BoP, current US$)
## 1791                                                                                                                                                                                                                                Secondary income, other sectors, payments (BoP, current US$)
## 1792                                                                                                                                                                                                                                           Workers' remittances, payments (BoP, current US$)
## 1793                                                                                                                                                                                                                                                    Personal remittances, paid (current US$)
## 1794                                                                                                                                                                                                                                              Private current transfers, payments (BoP, US$)
## 1795                                                                                                                                                                                                                                             Current Acc. Bal. after Off. Transf. (US$, BoP)
## 1796                                                                                                                                                                                                                                        Current Account Balance after off. trans. (US$, BoP)
## 1797                                                                                                                                                                                                                                                  Current account balance (BoP, current US$)
## 1798                                                                                                                                                                                                                                                          Current account balance (% of GDP)
## 1799                                                                                                                                                                                                                                                          Current account balance (% of GDP)
## 1800                                                                                                                                                                                                                                                          Current account balance (% of GNP)
## 1801                                                                                                                                                                                                                                             Current Acc. Bal. before Off. Transf.(US$, BoP)
## 1802                                                                                                                                                                                                                                          Curr. acc. bal. before official transf. (% of GDP)
## 1803                                                                                                                                                                                                                                                 Current Account Balance (IMF def)(US$, BoP)
## 1804                                                                                                                                                                                                                                                     Total Deficit to be Financed (US$, BoP)
## 1805                                                                                                                                                                                                                    Current account balance excluding net official capital grants (% of GDP)
## 1806                                                                                                                                                                                                                                                    Debt service not paid (BoP, current US$)
## 1807                                                                                                                                                                                                                              Debt Service not paid: Arrears Accumulation (BoP, current US$)
## 1808                                                                                                                                                                                                                                                    Net financial account (BoP, current US$)
## 1809                                                                                                                                                                                                                                                             Net private capital flows (US$)
## 1810                                                                                                                                                                                                                                                       Net primary income (BoP, current US$)
## 1811                                                                                                                                                                                                                                                                       Net income (% of GDP)
## 1812                                                                                                                                                                                                                                          Net trade in goods and services (BoP, current US$)
## 1813                                                                                                                                                                                                                                                       Net trade in goods (BoP, current US$)
## 1814                                                                                                                                                                                                                                                 Net errors and omissions (BoP, current US$)
## 1815                                                                                                                                                                                                                                     Capital flows not elsewhere included (BoP, current US$)
## 1816                                                                                                                                                                                                                                                 Other capital flows, net (BoP, current US$)
## 1817                                                                                                                                                                                                                                                      Other Capital Inflows (net) (US$, BoP)
## 1818                                                                                                                                                                                                                                           Foreign direct investment, net (BoP, current US$)
## 1819                                                                                                                                                                                                                                                Foreign direct investment, net inflows (US$)
## 1820                                                                                                                                                                                                                                                        Foreign direct investment (% of GDP)
## 1821                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDI)
## 1822                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1823                                                                                                                                                                                                                                                  Net long-term borrowing (BoP, current US$)
## 1824                                                                                                                                                                                                                                                             Other net investment (BoP, US$)
## 1825                                                                                                                                                                                                                                             Other long-term inflows, net (BoP, current US$)
## 1826                                                                                                                                                                                                                                             Private capital flows, total (BoP, current US$)
## 1827                                                                                                                                                                                                                                         Private capital flows, net total (DRS, current US$)
## 1828                                                                                                                                                                                                                                                     Private capital flows, total (% of GDP)
## 1829                                                                                                                                                                                                                                                Portfolio Investment, net (BoP, current US$)
## 1830                                                                                                                                                                                                                                                    Other Long-Term Inflows (net) (US$, BoP)
## 1831                                                                                                                                                                                                                                                   Net direct and portfolio investment (US$)
## 1832                                                                                                                                                                                                                                                   Long-Term Capital Inflow (net) (US$, BoP)
## 1833                                                                                                                                                                                                                                                    Long-Term Capital Inflow, net (US$, BoP)
## 1834                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1835                                                                                                                                                                                                                                                       Reserves and related items (BoP, US$)
## 1836                                                                                                                                                                                                                                               Reserves and related items (BoP, current US$)
## 1837                                                                                                                                                                                                                                                Change in Reserves (- = increase) (US$, BoP)
## 1838                                                                                                                                                                                                                                                     Net secondary income (BoP, current US$)
## 1839                                                                                                                                                                                                                                                            Net current transfers (% of GDP)
## 1840                                                                                                                                                                                                                                                      Net capital account (BoP, current US$)
## 1841                                                                                                                                                                                                                                          Official current transfers, net (BoP, current US$)
## 1842                                                                                                                                                                                                                                                      Net Official Capital Grants (US$, BoP)
## 1843                                                                                                                                                                                                                                                         Official Transfers (net) (US$, BoP)
## 1844                                                                                                                                                                                                                                                          Official Transfers, net (US$, BoP)
## 1845                                                                                                                                                                                                                                           Private current transfers, net (BoP, current US$)
## 1846                                                                                                                                                                                                                                                Workers' remittances, net (BoP, current US$)
## 1847                                                                                                                                                                                                                                                     Personal remittances, net (current US$)
## 1848                                                                                                                                                                                                                                                   Private current transfers, net (BoP, US$)
## 1849                                                                                                                                                                                                                              Grants (disbursements) from new commitments (BoP, current US$)
## 1850                                                                                                                                                                                                                                                     BPK Audit Report on Sub-National Budget
## 1851                                                                                                                                                                                                                                           Agricultural tractors, imports (FAO, current US$)
## 1852                                                                                                                                                                                                                                                              Agricultural tractors, imports
## 1853                                                                                                                                                                                                                                                           Cereal imports (FAO, current US$)
## 1854                                                                                                                                                                                                                                                       Cereal imports quantity (FAO, tonnes)
## 1855                                                                                                                                                                                                                                                  Forest products exports (FAO, current US$)
## 1856                                                                                                                                                                                                                                             Hazardous pesticides exports (FAO, current US$)
## 1857                                                                                                                                                                                                                                                       Pesticides exports (FAO, current US$)
## 1858                                                                                                                                                                                                                                              Food exports excluding fish (FAO, current US$)
## 1859                                                                                                                                                                                                                                       Grants, excluding technical cooperation (current US$)
## 1860                                                                                                                                                                                                                                  Grants, excluding technical cooperation (BoP, current US$)
## 1861                                                                                                                                                                                                                                                  Technical cooperation grants (current US$)
## 1862                                                                                                                                                                                                                                             Technical cooperation grants (BoP, current US$)
## 1863                                                                                                                                                                                                                                               Total agricultural exports (FAO, current US$)
## 1864                                                                                                                                                                                                                                                      ICT service exports (BoP, current US$)
## 1865                                                                                                                                                                                                                                             ICT service exports (% of service exports, BoP)
## 1866                                                                                                                                                                                                                                  Communications, computer, etc. (% of service exports, BoP)
## 1867                                                                                                                                                                                                                                         Communications services, exports (BoP, current US$)
## 1868                                                                                                                                                                                                                                                  Primary income receipts (BoP, current US$)
## 1869                                                                                                                                                                                                                                              Financial services, exports (BoP, current US$)
## 1870                                                                                                                                                                                                                                            Exports of goods and services (BoP, current US$)
## 1871                                                                                                                                                                                                              Exports of goods, services, income and workers' remittances (BoP, current US$)
## 1872                                                                                                                                                                                                                                Insurance and financial services (% of service exports, BoP)
## 1873                                                                                                                                                                                                                                              Insurance services, exports (BoP, current US$)
## 1874                                                                                                                                                                                                                                                            Goods exports (BoP, current US$)
## 1875                                                                                                                                                                                                                                            Merchandise exports (BOP): percentage of GDP (%)
## 1876                                                                                                                                                                                                                                                          Service exports (BoP, current US$)
## 1877                                                                                                                                                                                                                                                          Other services, exports (BoP, US$)
## 1878                                                                                                                                                                                                                   Charges for the use of intellectual property, receipts (BoP, current US$)
## 1879                                                                                                                                                                                                                            Exports of goods, services and primary income (BoP, current US$)
## 1880                                                                                                                                                                                                                                              Transport services, exports (BoP, current US$)
## 1881                                                                                                                                                                                                                                              Transport services (% of service exports, BoP)
## 1882                                                                                                                                                                                                                                                 Travel services, exports (BoP, current US$)
## 1883                                                                                                                                                                                                                                                 Travel services (% of service exports, BoP)
## 1884                                                                                                                                                                                                          Foreign direct investment, net inflows in reporting economy (IMF-BoP, current US$)
## 1885                                                                                                                                                                                                              Foreign direct investment, net inflows in reporting economy (DRS, current US$)
## 1886                                                                                                                                                                                                                                   Foreign direct investment, net inflows (BoP, current US$)
## 1887                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1888                                                                                                                                                                                                                       Foreign direct investment, net inflows (% of gross capital formation)
## 1889                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1890                                                                                                                                                                                                                                                         Primary income on FDI (current US$)
## 1891                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1892                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1893                                                                                                                                                                                                                                            Portfolio equity, net inflows (BoP, current US$)
## 1894                                                                                                                                                                                                                                                          Factor Service Receipts (US$, BoP)
## 1895                                                                                                                                                                                                                                                     Non-Factor Services Receipts (US$, BoP)
## 1896                                                                                                                                                                                                                                                Secondary income receipts (BoP, current US$)
## 1897                                                                                                                                                                                                                                                    Migrant remittance inflows (current US$)
## 1898                                                                                                                                                                                                                                                       Migrant remittance inflows (% of GDP)
## 1899                                                                                                                                                                                                                                     Official current transfers, receipts (BoP, current US$)
## 1900                                                                                                                                                                                                                               Official transfers, current and capital (Credit, current US$)
## 1901                                                                                                                                                                                                                                      Private current transfers, receipts (BoP, current US$)
## 1902                                                                                                                                                                                                                                             Personal transfers, receipts (BoP, current US$)
## 1903                                                                                                                                                                                                                                                Personal remittances, received (current US$)
## 1904                                                                                                                                                                                                                                                   Personal remittances, received (% of GDP)
## 1905                                                                                                                                                                                                                                                   Workers' remittances, receipts (% of GDP)
## 1906                                                                                                                                                                                                                                              Private current transfers, receipts (BoP, US$)
## 1907                                                                                                                                                                                                                                                                                      Region
## 1908                                                                                                                                                                                                                                                                                Country ISO3
## 1909                                                                                                                                                                                                                                                                             Public comments
## 1910                                                                                                                                                                                                                                                                               Resource name
## 1911                                                                                                                                                                                                                                                                                Resource URL
## 1912                                                                                                                                                                                                                                                                         057.Firm Entry Rate
## 1913                                                                                                                                                                                                                                                   Membership in international organizations
## 1914                                                                                                                                                                                                                                                                     World Bank funding page
## 1915                                                                                                                                                                                                                                                             Gross domestic product (in USD)
## 1916                                                                                                                                                                                                                                                                                  Population
## 1917                                                                                                                                                                                                                                                                               Base currency
## 1918                                                                                                                                                                                                                                                Conversion rate (from local currency to USD)
## 1919                                                                                                                                                                                                                                                                                Income level
## 1920                                                                                                                                                                                                                                                              Gross national income (in USD)
## 1921                                                                                                                                                                                                                                                            Gross national income per capita
## 1922                                                                                                                                                                                                                   Percentage(%) of Gross Domestic Product as Public Procurement Expenditure
## 1923                                                                                                                                                                                                                                                                          058.Firm Exit Rate
## 1924                                                                                                                                                                                                                                                     Name of Public Procurement Agency (PPA)
## 1925                                                                                                                                                                                                                                                                                 PPA website
## 1926                                                                                                                                                                                                                                                           Is PPA a Central Purchasing Body?
## 1927                                                                                                                                                                                                                                        Number of certified contracting officers (e.g. CIPS)
## 1928                                                                                                                                                                                                                                                  Contracting officers certification program
## 1929                                                                                                                                                                                                                                                       Name of Central Purchasing Body (CPB)
## 1930                                                                                                                                                                                                                                                                  Sectors covered by the CPB
## 1931                                                                                                                                                                                                                                                                   Name of relevant ministry
## 1932                                                                                                                                                                                                                                                                   Region covered by the CPB
## 1933                                                                                                                                                                                                                                                                                 CPB website
## 1934                                                                                                                                                                                                                                                                      Public procurement law
## 1935                                                                                                                                                                                                                                                    Total Cost of Ownership (TCO) law clause
## 1936                                                                                                                                                                                                                                                         Life Cycle Costing (LLC) law clause
## 1937                                                                                                                                                                                                                                                            Value for Money (VfM) law clause
## 1938                                                                                                                                                                                                                                     Most Economically Advantageous Tender (MEAT) law clause
## 1939                                                                                                                                                                                                                                                                   Sustainability law clause
## 1940                                                                                                                                                                                           Public Procurement Law requirement for awards to SMEs (Small and Medium-sized Enterprises) clause
## 1941                                                                                                                                                                                                                                                Bid Securities and/or bid declaration clause
## 1942                                                                                                                                                                                                                                                                  Public bid openings clause
## 1943                                                                                                                                                                                                                                                                  Domestic preference clause
## 1944                                                                                                                                                                                                                                                          Complaint resolution period clause
## 1945                                                                                                                                                                                                                                     Standstill period for goods contracts regulation clause
## 1946                                                                                                                                                                                                                                     Standstill period for works contracts regulation clause
## 1947                                                                                                                                                                                                                                   Standstill period for services contacts regulation clause
## 1948                                                                                                                                                                                                                                       Bid validity period of goods awards regulation clause
## 1949                                                                                                                                                                                                                                       Bid validity period of works awards regulation clause
## 1950                                                                                                                                                                                                                                    Bid validity period of services awards regulation clause
## 1951                                                                                                                                                                                                                                                  Contract award disclosure threshold clause
## 1952                                                                                                                                                                                                                                                                      Tender threshold value
## 1953                                                                                                                                                                                                                                     Number of days for advertisement of goods awards clause
## 1954                                                                                                                                                                                                                                     Number of days for advertisement of works awards clause
## 1955                                                                                                                                                                                                                                  Number of days for advertisement of services awards clause
## 1956                                                                                                                                                                                                                                  Threshold value for direct contract awards of goods clause
## 1957                                                                                                                                                                                                                                  Threshold value for direct contract awards of works clause
## 1958                                                                                                                                                                                                                               Threshold value for direct contract awards of services clause
## 1959                                                                                                                                                                                                                                                          059.Entrant 1st Year Survival Rate
## 1960                                                                                                                                                                                                                                                                    eProcurement system name
## 1961                                                                                                                                                                                                                                                                 eProcurement system website
## 1962                                                                                                                                                                                                                                                             eProcurement system launch date
## 1963                                                                                                                                                                                                                                                      eProcurement functionalities supported
## 1964                                                                                                                                                                                                                                                                  eSignature functionalities
## 1965                                                                                                                                                                                                                                                  eProcurement System used by the World Bank
## 1966                                                                                                                                                                                                                                        World Bank procurement method used for certification
## 1967                                                                                                                                                                                                                                             eProcurement system supported by the World Bank
## 1968                                                                                                                                                                                                                                                                       Supported language(s)
## 1969                                                                                                                                                                                                                                                                        Supported currencies
## 1970                                                                                                                                                                                                                                                                          Applicable charges
## 1971                                                                                                                                                                                                               eProcurement system custom vs Commercial Off the Shelf (COTS) vs. Open Source
## 1972                                                                                                                                                                                                                                                             Business model for eProcurement
## 1973                                                                                                                                                                                         Website where eProcurement data are published as per Open Contracting Data Standard (OCDS) standard
## 1974                                                                                                                                                                                                                                                           Tender documents are downloadable
## 1975                                                                                                                                                                                                                                                                    eProcurement assessments
## 1976                                                                                                                                                                                                            Percentage of value spent through the use of eProcurement over total value spent
## 1977                                                                                                                                                                                      Percentage of number of transactions through the use of eProcurement over total number of transactions
## 1978                                                                                                                                                                                                                                   Number of professionals certified on eProcurement systems
## 1979                                                                                                                                                                                                                    Estimated annual savings value through the use of eProcurement (in USDs)
## 1980                                                                                                                                                                                                        Percentage of savings value through the use of eProcurement over total cost estimate
## 1981                                                                                                                                                                                                        Methodology used in order to calculate savings value through the use of eProcurement
## 1982                                                                                                                                                                                                                                           060.Share of Entrants in TEV (Total Export Value)
## 1983                                                                                                                                                                                                                                                                  Common spend taxonomy used
## 1984                                                                                                                                                                                                                                    Average number of bidders per tender for goods contracts
## 1985                                                                                                                                                                                                                                    Average number of bidders per tender for works contracts
## 1986                                                                                                                                                                                                                                 Average number of bidders per tender for services contracts
## 1987                                                                                                                                                                                                                                                     Number of accepted/justified complaints
## 1988                                                                                                                                                                                                                                                   Number of rejected/unjustified complaints
## 1989                                                                                                                                                                                                                                                    Number of complaints under investigation
## 1990                                                                                                                                                                                                                       Complaint resolution period (include average resolution time in days)
## 1991                                                                                                                                                                                                                                                  Number of cancelled procurement procedures
## 1992                                                                                                                                                                                                                                                 Published public procurement annual reports
## 1993                                                                                                                                                                                                                                                                      Procurement statistics
## 1994                                                                                                                                                                                                                                                                    Number of annual tenders
## 1995                                                                                                                                                                                                                                                            Value of annual tenders (in USD)
## 1996                                                                                                                                                                                                                                                                  Number of annual contracts
## 1997                                                                                                                                                                                                                                                          Value of annual contracts (in USD)
## 1998                                                                                                                                                                                                                                                          Number of contract awards of goods
## 1999                                                                                                                                                                                                                                                 Value of contracts awards of goods (in USD)
## 2000                                                                                                                                                                                                                                                          Number of contract awards of works
## 2001                                                                                                                                                                                                                                                 Value of contracts awards of works (in USD)
## 2002                                                                                                                                                                                                                                                       Number of contract awards of services
## 2003                                                                                                                                                                                                                                              Value of contracts awards of services (in USD)
## 2004                                                                                                                                                                                                                                                          Number of domestic contract awards
## 2005                                                                                                                                                                                                                                                  Value of domestic contract awards (in USD)
## 2006                                                                                                                                                                                                                                                     Number of international contract awards
## 2007                                                                                                                                                                                                                                             Value of international contract awards (in USD)
## 2008                                                                                                                                                                                                                                                              Number of open contract awards
## 2009                                                                                                                                                                                                                                                      Value of open contract awards (in USD)
## 2010                                                                                                                                                                                                                                                            Number of direct contract awards
## 2011                                                                                                                                                                                                                                                    Value of direct contract awards (in USD)
## 2012                                                                                                                                                                                                                                                                    Number of awards to SMEs
## 2013                                                                                                                                                                                                                                                            Value of awards to SMEs (in USD)
## 2014                                                                                                                                                                                                                                        Number of contract awards under framework agreements
## 2015                                                                                                                                                                                                                                Value of contract awards under framework agreements (in USD)
## 2016                                                                                                                                                                                                                                           Number of contract awards evaluated based on MEAT
## 2017                                                                                                                                                                                                                                   Value of contract awards evaluated based on MEAT (in USD)
## 2018                                                                                                                                                                                                                            Number of contract awards evaluated based on Lowest Price method
## 2019                                                                                                                                                                                                                    Value of contract awards evaluated based on Lowest Price method (in USD)
## 2020                                                                                                                                                                                                                                                          061.Entrant 2nd Year Survival Rate
## 2021                                                                                                                                                                                                                                         Number of days from advertisement to contract award
## 2022                                                                                                                                                                                                                                                             Average time for bid evaluation
## 2023                                                                                                                                                                                                                                                          062.Entrant 3rd Year Survival Rate
## 2024                                                                                                                                                     Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Min. exposure, 2100
## 2025                                                                                                                                                      Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Max exposure, 2100
## 2026                                                                                                                                                     Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Min. exposure, 2050
## 2027                                                                                                                                                      Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Max exposure, 2050
## 2028                                                                                                                                                                                                                                                          Nitrogen application (tons per ha)
## 2029                                                                                                                                                                                                              Additional people below $1.90 as % of total population by impact - All impacts
## 2030                                                                                                                                                                                                     Additional people below $1.90 as % of total population by impact - Agriculture Revenues
## 2031                                                                                                                                                                                                                Additional people below $1.90 as % of total population by impact - Disasters
## 2032                                                                                                                                                                                                              Additional people below $1.90 as % of total population by impact - Food prices
## 2033                                                                                                                                                                                                                   Additional people below $1.90 as % of total population by impact - Health
## 2034                                                                                                                                                                                                       Additional people below $1.90 as % of total population by impact - Labor productivity
## 2035                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - Agriculture
## 2036                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - All Impacts
## 2037                                                                                                                                                                                                          Additional people below $4 as % of total population by impact, by 2030 - Disasters
## 2038                                                                                                                                                                                                             Additional people below $4 as % of total population by impact, by 2030 - Health
## 2039                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - Temperature
## 2040                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - Agriculture (original)
## 2041                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - All Impacts (original)
## 2042                                                                                                                                                                                             Change in income (%) for bottom 40% of the population by impact, by 2030 - Disasters (original)
## 2043                                                                                                                                                                                                Change in income (%) for bottom 40% of the population by impact, by 2030 - Health (original)
## 2044                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - Temperature (original)
## 2045                                                                                                                                                                                             Change in income (%) for bottom 40% of the population by impact - Agriculture Revenues (update)
## 2046                                                                                                                                                                                                      Change in income (%) for bottom 40% of the population by impact - All impacts (update)
## 2047                                                                                                                                                                                                        Change in income (%) for bottom 40% of the population by impact - Disasters (update)
## 2048                                                                                                                                                                                                      Change in income (%) for bottom 40% of the population by impact - Food prices (update)
## 2049                                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact - Health (update)
## 2050                                                                                                                                                                                               Change in income (%) for bottom 40% of the population by impact - Labor productivity (update)
## 2051                                                                                                                                                                                                                                          CO2 emissions by sector (Mt CO2 eq) - Bunker Fuels
## 2052                                                                                                                                                                                                                                              CO2 emissions by sector (Mt CO2 eq) - Building
## 2053                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2054                                                                                                                                                                                                                                                CO2 emissions by sector (Mt CO2 eq) - Energy
## 2055                                                                                                                                                                                                                                    CO2 emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2056                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Total including LUCF
## 2057                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Industrial Processes
## 2058                                                                                                                                                                                                                          CO2 emissions by sector (Mt CO2 eq) - Land-Use Change and Forestry
## 2059                                                                                                                                                                                                                            CO2 emissions by sector (Mt CO2 eq) - Manufacturing/Construction
## 2060                                                                                                                                                                                                                                        CO2 emissions by sector (Mt CO2 eq) - Transportation
## 2061                                                                                                                                                                                                                        Annual methane emissions at operating coal mines (Mt CO2e 100 years)
## 2062                                                                                                                                                                                                                            Annual CO2 combustion emissions at operating coal mines (Mt CO2)
## 2063                                                                                                                                                                                                                     Annual methane emisssions at proposed coal projects (Mt CO2e 100 years)
## 2064                                                                                                                                                                                                                                            Annual coal production (Mt per year) - Operating
## 2065                                                                                                                                                                                                                            Annual coal production (Mt per year) - Proposed Projects (Total)
## 2066                                                                                                                                                                                                                                  Children under 5 years of age who are stunted (% of total)
## 2067                                                                                                                                                                                                                                            Emission Totals - Direct emissions (N2O) - AFOLU
## 2068                                                                                                                                                                                                                               Emission Totals - Direct emissions (N2O) - Agricultural Soils
## 2069                                                                                                                                                                                                                                    Emission Totals - Direct emissions (N2O) - Crop Residues
## 2070                                                                                                                                                                                                                   Emission Totals - Direct emissions (N2O) - Emissions on agricultural land
## 2071                                                                                                                                                                                                                              Emission Totals - Direct emissions (N2O) - Farm-gate emissions
## 2072                                                                                                                                                                                                                                 Emission Totals - Direct emissions (N2O) - IPCC Agriculture
## 2073                                                                                                                                                                                                                           Emission Totals - Direct emissions (N2O) - Manure left on Pasture
## 2074                                                                                                                                                                                                                          Emission Totals - Direct emissions (N2O) - Manure applied to Soils
## 2075                                                                                                                                                                                                                            Emission Totals - Direct emissions (N2O) - Synthetic Fertilizers
## 2076                                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - AFOLU
## 2077                                                                                                                                                                                                                              Emission Totals - Emissions (CO2eq) (AR5) - Agricultural Soils
## 2078                                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) (AR5) - Burning - Crop residues
## 2079                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) (AR5) - Crop Residues
## 2080                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils (CO2)
## 2081                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils (N2O)
## 2082                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils
## 2083                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) (AR5) - Emissions on agricultural land
## 2084                                                                                                                                                                                                                            Emission Totals - Emissions (CO2eq) (AR5) - Enteric Fermentation
## 2085                                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) (AR5) - Forest fires
## 2086                                                                                                                                                                                                                             Emission Totals - Emissions (CO2eq) (AR5) - Farm-gate emissions
## 2087                                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) (AR5) - Forestland
## 2088                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - Fires in organic soils
## 2089                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) (AR5) - Fires in humid tropical forests
## 2090                                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) (AR5) - IPCC Agriculture
## 2091                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) (AR5) - Land Use change
## 2092                                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - LULUCF
## 2093                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - Manure left on Pasture
## 2094                                                                                                                                                                                                                               Emission Totals - Emissions (CO2eq) (AR5) - Manure Management
## 2095                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Net Forest conversion
## 2096                                                                                                                                                                                                                              Emission Totals - Emissions (CO2eq) (AR5) - On-farm energy use
## 2097                                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) (AR5) - Rice Cultivation
## 2098                                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) (AR5) - Manure applied to Soils
## 2099                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Synthetic Fertilizers
## 2100                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) (AR5) - Savanna fires
## 2101                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from CH4 (AR5) - AFOLU
## 2102                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Burning - Crop residues
## 2103                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Emissions on agricultural land
## 2104                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Enteric Fermentation
## 2105                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Forest fires
## 2106                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Farm-gate emissions
## 2107                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Fires in organic soils
## 2108                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Fires in humid tropical forests
## 2109                                                                                                                                                                                                                Capacity of Liquefied Natural Gas export terminals (Mt per year) - Cancelled
## 2110                                                                                                                                                                                 Capacity of Liquefied Natural Gas export terminals (Mt per year) - In Development (Proposed + Construction)
## 2111                                                                                                                                                                                                                Capacity of Liquefied Natural Gas export terminals (Mt per year) - Operating
## 2112                                                                                                                                                                                                                  Capacity of Liquefied Natural Gas export terminals (Mt per year) - Shelved
## 2113                                                                                                                                                                                                                Capacity of Liquefied Natural Gas import terminals (Mt per year) - Cancelled
## 2114                                                                                                                                                                                 Capacity of Liquefied Natural Gas import terminals (Mt per year) - In Development (Proposed + Construction)
## 2115                                                                                                                                                                                                                Capacity of Liquefied Natural Gas import terminals (Mt per year) - Operating
## 2116                                                                                                                                                                                                                  Capacity of Liquefied Natural Gas import terminals (Mt per year) - Shelved
## 2117                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from CH4 (AR5) - IPCC Agriculture
## 2118                                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Land Use change
## 2119                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from CH4 (AR5) - LULUCF
## 2120                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Manure Management
## 2121                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from CH4 (AR5) - On-farm energy use
## 2122                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Rice Cultivation
## 2123                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Savanna fires
## 2124                                                                                                                                                                                                                                                   Emission Totals - Emissions (CH4) - AFOLU
## 2125                                                                                                                                                                                                                                 Emission Totals - Emissions (CH4) - Burning - Crop residues
## 2126                                                                                                                                                                                                                          Emission Totals - Emissions (CH4) - Emissions on agricultural land
## 2127                                                                                                                                                                                                                                    Emission Totals - Emissions (CH4) - Enteric Fermentation
## 2128                                                                                                                                                                                                                                            Emission Totals - Emissions (CH4) - Forest fires
## 2129                                                                                                                                                                                                                                     Emission Totals - Emissions (CH4) - Farm-gate emissions
## 2130                                                                                                                                                                                                                                  Emission Totals - Emissions (CH4) - Fires in organic soils
## 2131                                                                                                                                                                                                                         Emission Totals - Emissions (CH4) - Fires in humid tropical forests
## 2132                                                                                                                                                                                                                                        Emission Totals - Emissions (CH4) - IPCC Agriculture
## 2133                                                                                                                                                                                                                                         Emission Totals - Emissions (CH4) - Land Use change
## 2134                                                                                                                                                                                                                                                  Emission Totals - Emissions (CH4) - LULUCF
## 2135                                                                                                                                                                                                                                       Emission Totals - Emissions (CH4) - Manure Management
## 2136                                                                                                                                                                                                                                      Emission Totals - Emissions (CH4) - On-farm energy use
## 2137                                                                                                                                                                                                                                        Emission Totals - Emissions (CH4) - Rice Cultivation
## 2138                                                                                                                                                                                                                                           Emission Totals - Emissions (CH4) - Savanna fires
## 2139                                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2) - AFOLU
## 2140                                                                                                                                                                                                                             Emission Totals - Emissions (CO2) - Drained organic soils (CO2)
## 2141                                                                                                                                                                                                                          Emission Totals - Emissions (CO2) - Emissions on agricultural land
## 2142                                                                                                                                                                                                                                     Emission Totals - Emissions (CO2) - Farm-gate emissions
## 2143                                                                                                                                                                                                                                              Emission Totals - Emissions (CO2) - Forestland
## 2144                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2) - Fires in organic soils
## 2145                                                                                                                                                                                                                                         Emission Totals - Emissions (CO2) - Land Use change
## 2146                                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2) - LULUCF
## 2147                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2) - Net Forest conversion
## 2148                                                                                                                                                                                                                                      Emission Totals - Emissions (CO2) - On-farm energy use
## 2149                                                                                                                                                                                                                           Per capita daily coal consumption (short tons per capita per day)
## 2150                                                                                                                                                                                                                   Per capita daily gas consumption (thousand cubic feet per capita per day)
## 2151                                                                                                                                                                                                                               Per capita daily oil consumption (barrels per capita per day)
## 2152                                                                                                                                                                                                         CO2 emissions per dollar of manufacturing value added (kgCO2 per constant 2010 US$)
## 2153                                                                                                                                                                                                                                          Energy intensity of the economy (kWh per 2011$PPP)
## 2154                                                                                                                                                                                                                                             Average practical solar potential (kWh/kWp/day)
## 2155                                                                                                                                                                                                                                      Total steelmaking capacity (thousand tonnes per annum)
## 2156                                                                                                                                                                                                                   Fossil-fuel pre-tax subsidies (consumption and production) USD per capita
## 2157                                                                                                                                                                                                                                               Offshore wind potential - Per capita (kW/cap)
## 2158                                                                                                                                                                                                                                                        Offshore wind potential - Total (GW)
## 2159                                                                                                                                                                                                                                                                 Electricity net consumption
## 2160                                                                                                                                                                                                                                                                  Electricity net generation
## 2161                                                                                                                                                                                                                                            Lifetime CO2 emissions from coal plants (Mt CO2)
## 2162                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from N2O (AR5) - AFOLU
## 2163                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from N2O (AR5) - Agricultural Soils
## 2164                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from N2O (AR5) - Burning - Crop residues
## 2165                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from N2O (AR5) - Crop Residues
## 2166                                                                                                                                                                                                            Emission Totals - Emissions (CO2eq) from N2O (AR5) - Drained organic soils (N2O)
## 2167                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) from N2O (AR5) - Emissions on agricultural land
## 2168                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) from N2O (AR5) - Forest fires
## 2169                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) from N2O (AR5) - Farm-gate emissions
## 2170                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from N2O (AR5) - Fires in humid tropical forests
## 2171                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from N2O (AR5) - IPCC Agriculture
## 2172                                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from N2O (AR5) - Land Use change
## 2173                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from N2O (AR5) - LULUCF
## 2174                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure left on Pasture
## 2175                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure Management
## 2176                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from N2O (AR5) - On-farm energy use
## 2177                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure applied to Soils
## 2178                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from N2O (AR5) - Synthetic Fertilizers
## 2179                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from N2O (AR5) - Savanna fires
## 2180                                                                                                                                                                                                                                                   Emission Totals - Emissions (N2O) - AFOLU
## 2181                                                                                                                                                                                                                                      Emission Totals - Emissions (N2O) - Agricultural Soils
## 2182                                                                                                                                                                                                                                 Emission Totals - Emissions (N2O) - Burning - Crop residues
## 2183                                                                                                                                                                                                                                           Emission Totals - Emissions (N2O) - Crop Residues
## 2184                                                                                                                                                                                                                             Emission Totals - Emissions (N2O) - Drained organic soils (N2O)
## 2185                                                                                                                                                                                                                          Emission Totals - Emissions (N2O) - Emissions on agricultural land
## 2186                                                                                                                                                                                                                                            Emission Totals - Emissions (N2O) - Forest fires
## 2187                                                                                                                                                                                                                                     Emission Totals - Emissions (N2O) - Farm-gate emissions
## 2188                                                                                                                                                                                                                         Emission Totals - Emissions (N2O) - Fires in humid tropical forests
## 2189                                                                                                                                                                                                                                        Emission Totals - Emissions (N2O) - IPCC Agriculture
## 2190                                                                                                                                                                                                                                         Emission Totals - Emissions (N2O) - Land Use change
## 2191                                                                                                                                                                                                                                                  Emission Totals - Emissions (N2O) - LULUCF
## 2192                                                                                                                                                                                                                                  Emission Totals - Emissions (N2O) - Manure left on Pasture
## 2193                                                                                                                                                                                                                                       Emission Totals - Emissions (N2O) - Manure Management
## 2194                                                                                                                                                                                                                                      Emission Totals - Emissions (N2O) - On-farm energy use
## 2195                                                                                                                                                                                                                                 Emission Totals - Emissions (N2O) - Manure applied to Soils
## 2196                                                                                                                                                                                                                                   Emission Totals - Emissions (N2O) - Synthetic Fertilizers
## 2197                                                                                                                                                                                                                                           Emission Totals - Emissions (N2O) - Savanna fires
## 2198                                                                                                                                                                                                                                                         Total energy tax revenue (% of GDP)
## 2199                                                                                                                                                                                                                                        Comparative advantage in environmental goods (index)
## 2200                                                                                                                                                                                                                                  Trade in environmental goods as share of total exports (%)
## 2201                                                                                                                                                                                                                                  Trade in environmental goods as share of total imports (%)
## 2202                                                                                                                                                                                                                         Employment by sector and gender (% of total) - Agriculture - Female
## 2203                                                                                                                                                                                                                           Employment by sector and gender (% of total) - Agriculture - Male
## 2204                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Commerce - Female
## 2205                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Commerce - Male
## 2206                                                                                                                                                                                                                        Employment by sector and gender (% of total) - Construction - Female
## 2207                                                                                                                                                                                                                          Employment by sector and gender (% of total) - Construction - Male
## 2208                                                                                                                                                                                                           Employment by sector and gender (% of total) - Electricity and utilities - Female
## 2209                                                                                                                                                                                                             Employment by sector and gender (% of total) - Electricity and utilities - Male
## 2210                                                                                                                                                                                                     Employment by sector and gender (% of total) - Financial and Business Services - Female
## 2211                                                                                                                                                                                                       Employment by sector and gender (% of total) - Financial and Business Services - Male
## 2212                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Industry - Female
## 2213                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Industry - Male
## 2214                                                                                                                                                                                                                       Employment by sector and gender (% of total) - Manufacturing - Female
## 2215                                                                                                                                                                                                                         Employment by sector and gender (% of total) - Manufacturing - Male
## 2216                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Mining - Female
## 2217                                                                                                                                                                                                                                Employment by sector and gender (% of total) - Mining - Male
## 2218                                                                                                                                                                                                                      Employment by sector and gender (% of total) - Other services - Female
## 2219                                                                                                                                                                                                                        Employment by sector and gender (% of total) - Other services - Male
## 2220                                                                                                                                                                                                               Employment by sector and gender (% of total) - Public Administration - Female
## 2221                                                                                                                                                                                                                 Employment by sector and gender (% of total) - Public Administration - Male
## 2222                                                                                                                                                                                                            Employment by sector and gender (% of total) - Public sector employment - Female
## 2223                                                                                                                                                                                                              Employment by sector and gender (% of total) - Public sector employment - Male
## 2224                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Services - Female
## 2225                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Services - Male
## 2226                                                                                                                                                                                                           Employment by sector and gender (% of total) - Transport & Communication - Female
## 2227                                                                                                                                                                                                             Employment by sector and gender (% of total) - Transport & Communication - Male
## 2228                                                                                                                                                                                                                                                             Control of Corruption: Estimate
## 2229                                                                                                                                                                                                                           Food GHG emissions by system stage (Share of total) - Consumption
## 2230                                                                                                                                                                                                                           Food GHG emissions by system stage (Share of total) - End_of_Life
## 2231                                                                                                                                                                                                                    Food GHG emissions by system stage (Share of total) - LULUC (Production)
## 2232                                                                                                                                                                                                                             Food GHG emissions by system stage (Share of total) - Packaging
## 2233                                                                                                                                                                                                                            Food GHG emissions by system stage (Share of total) - Production
## 2234                                                                                                                                                                                                                                Food GHG emissions by system stage (Share of total) - Retail
## 2235                                                                                                                                                                                                                             Food GHG emissions by system stage (Share of total) - Transport
## 2236                                                                                                                                                                                                                              Population exposed to floods (share of population below $5.50)
## 2237                                                                                                                                                                                                                                    Population exposed to floods (share of total population)
## 2238                                                                                                                                                                                                                                        Share of animal products in food supply (% of total)
## 2239                                                                                                                                                                                                                                       Share of vegetal products in food supply (% of total)
## 2240                                                                                                                                                                                                                                    Freight volume by mode (billion tons-km) - Air transport
## 2241                                                                                                                                                                                                                        Freight volume by mode (billion tons-km) - Inland waterway transport
## 2242                                                                                                                                                                                                                                   Freight volume by mode (billion tons-km) - Rail transport
## 2243                                                                                                                                                                                                                                   Freight volume by mode (billion tons-km) - Road transport
## 2244                                                                                                                                                                                                     Gas pipeline capacity by project status (barrels of oil equivalent per day) - Cancelled
## 2245                                                                                                                                                                                                  Gas pipeline capacity by project status (barrels of oil equivalent per day) - Construction
## 2246                                                                                                                                                                      Gas pipeline capacity by project status (barrels of oil equivalent per day) - In Development (Proposed + Construction)
## 2247                                                                                                                                                                                                    Gas pipeline capacity by project status (barrels of oil equivalent per day) - Mothballed
## 2248                                                                                                                                                                                                     Gas pipeline capacity by project status (barrels of oil equivalent per day) - Operating
## 2249                                                                                                                                                                                                      Gas pipeline capacity by project status (barrels of oil equivalent per day) - Proposed
## 2250                                                                                                                                                                                                       Gas pipeline capacity by project status (barrels of oil equivalent per day) - Shelved
## 2251                                                                                                                                                                                                                                     Total GHG emissions by sector (Mt CO2 eq) - Agriculture
## 2252                                                                                                                                                                                                                                    Total GHG emissions by sector (Mt CO2 eq) - Bunker Fuels
## 2253                                                                                                                                                                                                                                        Total GHG emissions by sector (Mt CO2 eq) - Building
## 2254                                                                                                                                                                                                                                Total GHG emissions by sector (Mt CO2 eq) - Electricity/Heat
## 2255                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2256                                                                                                                                                                                                                                          Total GHG emissions by sector (Mt CO2 eq) - Energy
## 2257                                                                                                                                                                                                                              Total GHG emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2258                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Total including LUCF
## 2259                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Industrial Processes
## 2260                                                                                                                                                                                                                    Total GHG emissions by sector (Mt CO2 eq) - Land-Use Change and Forestry
## 2261                                                                                                                                                                                                                      Total GHG emissions by sector (Mt CO2 eq) - Manufacturing/Construction
## 2262                                                                                                                                                                                                                           Total GHG emissions by sector (Mt CO2 eq) - Other Fuel Combustion
## 2263                                                                                                                                                                                                                                  Total GHG emissions by sector (Mt CO2 eq) - Transportation
## 2264                                                                                                                                                                                                                                           Total GHG emissions by sector (Mt CO2 eq) - Waste
## 2265                                                                                                                                                                                                                               GHG emissions from food systems, by gas (Mt CO2 eq) - Methane
## 2266                                                                                                                                                                                                                                   GHG emissions from food systems, by gas (Mt CO2 eq) - CO2
## 2267                                                                                                                                                                                                                               GHG emissions from food systems, by gas (Mt CO2 eq) - F-gases
## 2268                                                                                                                                                                                                                                   GHG emissions from food systems, by gas (Mt CO2 eq) - N2O
## 2269                                                                                                                                                                                                                                                                       GHG growth (annual %)
## 2270                                                                                                                                                                                                   Macro drivers of GHG emissions growth in the period 2012-2018 - Emission Intensity of GDP
## 2271                                                                                                                                                                                                              Macro drivers of GHG emissions growth in the period 2012-2018 - GDP per capita
## 2272                                                                                                                                                                                                                  Macro drivers of GHG emissions growth in the period 2012-2018 - Population
## 2273                                                                                                                                                                                                                                                      Per capita GHG emissions (tons/capita)
## 2274                                                                                                                                                                            Sectoral drivers of GHG emissions growth in the period 2012-2018 - Agriculture (contribution to total growth, %)
## 2275                                                                                                                                                                               Sectoral drivers of GHG emissions growth in the period 2012-2018 - Building (contribution to total growth, %)
## 2276                                                                                                                                                                       Sectoral drivers of GHG emissions growth in the period 2012-2018 - Electricity/Heat (contribution to total growth, %)
## 2277                                                                                                                                                                     Sectoral drivers of GHG emissions growth in the period 2012-2018 - Fugitive Emissions (contribution to total growth, %)
## 2278                                                                                                                                                           Sectoral drivers of GHG emissions growth in the period 2012-2018 - Land-Use Change and Forestry (contribution to total growth, %)
## 2279                                                                                                                                                             Sectoral drivers of GHG emissions growth in the period 2012-2018 - Manufacturing/Construction (contribution to total growth, %)
## 2280                                                                                                                                                                  Sectoral drivers of GHG emissions growth in the period 2012-2018 - Other Fuel Combustion (contribution to total growth, %)
## 2281                                                                                                                                                                         Sectoral drivers of GHG emissions growth in the period 2012-2018 - Transportation (contribution to total growth, %)
## 2282                                                                                                                                                                                  Sectoral drivers of GHG emissions growth in the period 2012-2018 - Waste (contribution to total growth, %)
## 2283                                                                                                                                                                                                                                          Total sovereign green bonds issuance (billion US$)
## 2284                                                                                                                                                                                                                                          Emission Totals - Indirect emissions (N2O) - AFOLU
## 2285                                                                                                                                                                                                                             Emission Totals - Indirect emissions (N2O) - Agricultural Soils
## 2286                                                                                                                                                                                                                                  Emission Totals - Indirect emissions (N2O) - Crop Residues
## 2287                                                                                                                                                                                                                 Emission Totals - Indirect emissions (N2O) - Emissions on agricultural land
## 2288                                                                                                                                                                                                                            Emission Totals - Indirect emissions (N2O) - Farm-gate emissions
## 2289                                                                                                                                                                                                                               Emission Totals - Indirect emissions (N2O) - IPCC Agriculture
## 2290                                                                                                                                                                                                                         Emission Totals - Indirect emissions (N2O) - Manure left on Pasture
## 2291                                                                                                                                                                                                                        Emission Totals - Indirect emissions (N2O) - Manure applied to Soils
## 2292                                                                                                                                                                                                                          Emission Totals - Indirect emissions (N2O) - Synthetic Fertilizers
## 2293                                                                                                                                                                                            Annual investment needs for coastal protection, by risk strategy (% of GDP) - low risk tolerance
## 2294                                                                                                                                                                                  Annual investment needs for coastal protection, by risk strategy (% of GDP) - constant relative flood risk
## 2295                                                                                                                                                                                            Annual investment needs for coastal protection, by risk strategy (% of GDP) - optimal protection
## 2296                                                                                                                                                                                          Informal employment by sector and gender (% of total) - Agriculture, forestry and fishing - Female
## 2297                                                                                                                                                                                            Informal employment by sector and gender (% of total) - Agriculture, forestry and fishing - Male
## 2298                                                                                                                                                                                                            Informal employment by sector and gender (% of total) - Non-agriculture - Female
## 2299                                                                                                                                                                                                              Informal employment by sector and gender (% of total) - Non-agriculture - Male
## 2300                                                                                                                                                                                                               Informal employment by sector and gender (% of total) - No breakdown - Female
## 2301                                                                                                                                                                                                                 Informal employment by sector and gender (% of total) - No breakdown - Male
## 2302                                                                                                                                                                                                       Proportion of freshwater key biodiversity areas (KBAs) covered by protected areas (%)
## 2303                                                                                                                                                                                                      Proportion of terrestrial key biodiversity areas (KBAs) covered by protected areas (%)
## 2304                                                                                                                                                                                                                                   Non-CO2 GHG emissions by sector (Mt CO2 eq) - Agriculture
## 2305                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2306                                                                                                                                                                                                                                        Non-CO2 GHG emissions by sector (Mt CO2 eq) - Energy
## 2307                                                                                                                                                                                                                            Non-CO2 GHG emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2308                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Total including LUCF
## 2309                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Industrial Processes
## 2310                                                                                                                                                                                                                         Non-CO2 GHG emissions by sector (Mt CO2 eq) - Other Fuel Combustion
## 2311                                                                                                                                                                                                                                         Non-CO2 GHG emissions by sector (Mt CO2 eq) - Waste
## 2312                                                                                                                                                                                                                                                           Net food imports by crop - Barley
## 2313                                                                                                                                                                                                                                                      Net food imports by crop - Rice, paddy
## 2314                                                                                                                                                                                                                                                            Net food imports by crop - Maize
## 2315                                                                                                                                                                                                                                                     Net food imports by crop - Rice, broken
## 2316                                                                                                                                                                                                                             Net food imports by crop - Rice, paddy (rice milled equivalent)
## 2317                                                                                                                                                                                                                                                     Net food imports by crop - Rice, husked
## 2318                                                                                                                                                                                                                                              Net food imports by crop - Rice, milled/husked
## 2319                                                                                                                                                                                                                                                     Net food imports by crop - Rice, milled
## 2320                                                                                                                                                                                                                                                         Net food imports by crop - Soybeans
## 2321                                                                                                                                                                                                                                                            Net food imports by crop - Wheat
## 2322                                                                                                                                                                                                                                                    Control of Corruption: Number of Sources
## 2323                                                                                                                                                                                                     Oil pipeline capacity by project status (barrels of oil equivalent per day) - Cancelled
## 2324                                                                                                                                                                                                  Oil pipeline capacity by project status (barrels of oil equivalent per day) - Construction
## 2325                                                                                                                                                                      Oil pipeline capacity by project status (barrels of oil equivalent per day) - In Development (Proposed + Construction)
## 2326                                                                                                                                                                                                     Oil pipeline capacity by project status (barrels of oil equivalent per day) - Operating
## 2327                                                                                                                                                                                                      Oil pipeline capacity by project status (barrels of oil equivalent per day) - Proposed
## 2328                                                                                                                                                                                                       Oil pipeline capacity by project status (barrels of oil equivalent per day) - Retired
## 2329                                                                                                                                                                                                       Oil pipeline capacity by project status (barrels of oil equivalent per day) - Shelved
## 2330                                                                                                                                                                                                                Operating coal power capacity by plant age (MW) - Coal plant age (0-9 years)
## 2331                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (10-19 years)
## 2332                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (20-29 years)
## 2333                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (30-39 years)
## 2334                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (40-49 years)
## 2335                                                                                                                                                                                                            Operating coal power capacity by plant age (MW) - Coal plant age (50-plus years)
## 2336                                                                                                                                                                                                             Operating coal power capacity by plant type (MW) - Plant Type (Subcritical/CCS)
## 2337                                                                                                                                                                                                                         Operating coal power capacity by plant type (MW) - Plant Type (CFB)
## 2338                                                                                                                                                                                                                        Operating coal power capacity by plant type (MW) - Plant Type (IGCC)
## 2339                                                                                                                                                                                                               Operating coal power capacity by plant type (MW) - Plant Type (Supercritical)
## 2340                                                                                                                                                                                                                 Operating coal power capacity by plant type (MW) - Plant Type (Subcritical)
## 2341                                                                                                                                                                                                                     Operating coal power capacity by plant type (MW) - Plant Type (Unknown)
## 2342                                                                                                                                                                                                                 Operating coal power capacity by plant type (MW) - Plant Type (Ultra-super)
## 2343                                                                                                                                                                                                                                                      Control of Corruption: Percentile Rank
## 2344                                                                                                                                                                                                              Control of Corruption: Percentile Rank, Lower Bound of 90% Confidence Interval
## 2345                                                                                                                                                                                                              Control of Corruption: Percentile Rank, Upper Bound of 90% Confidence Interval
## 2346                                                                                                                        Percentage of people who believe it is somewhat very likely that they could use the right to use their property of part of it against their will in the next 5 years
## 2347                                                                                                                   Percentage of people who believe it is very unlikely or unlikely that they could use the right to use their property of part of it against their will in the next 5 years
## 2348                                                                                                                                   Percentage of people who say they have formal documents, legally-binding documents that demonstrate their right to live in or use any of their properties
## 2349                                                                                                                                                            Percentage of people who say they have informal documents that demonstrate their right to live in or use any of their properties
## 2350                                                                                                                                            Percentage of people who say they have no documents or informal documents that demonstrate their right to live in or use any of their properties
## 2351                                                                                                                                                                                                                                      Average supply of protein of animal origin (g/cap/day)
## 2352                                                                                                                                                                                                                                 Passenger volume by mode (billion tons-km) - Rail transport
## 2353                                                                                                                                                                                                                                 Passenger volume by mode (billion tons-km) - Road transport
## 2354                                                                                                                                                                                                                                Prevalence of undernourishment (3-year average) (% of total)
## 2355                                                                                                                                                                                                                                                         Rice supply quantity (g/capita/day)
## 2356                                                                                                                                                                                                                                           Risk to asset (average annual losses as % of GDP)
## 2357                                                                                                                                                                                                                                       Risk to wellbeing (average annual losses as % of GDP)
## 2358                                                                                                                                                                                                                                             Percentage of population with Primary Education
## 2359                                                                                                                                                                                                                                           Percentage of population with Secondary Education
## 2360                                                                                                                                                                                                                              Mean number of years of education completed, aged 17 and older
## 2361                                                                                                                                                                                                      Mortality rate attributable to household air pollution (deaths per 100 000 population)
## 2362                                                                                                                                                                                                        Mortality rate attributable to ambient air pollution (deaths per 100 000 population)
## 2363                                                                                                                                                                                                                   Share of population covered by at least one social protection benefit (%)
## 2364                                                                                                                                                                                                                                              Public social protection expenditure (%of GDP)
## 2365                                                                                                                                                                                                                                                       Control of Corruption: Standard Error
## 2366                                                                                                                                                                                                                        Number of companies that are TCFD compliant by sector - Central Bank
## 2367                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Consumer Discretionary
## 2368                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Communication Services
## 2369                                                                                                                                                                                                                    Number of companies that are TCFD compliant by sector - Consumer Staples
## 2370                                                                                                                                                                                                                          Number of companies that are TCFD compliant by sector - Financials
## 2371                                                                                                                                                                                                                          Number of companies that are TCFD compliant by sector - Government
## 2372                                                                                                                                                                                                                         Number of companies that are TCFD compliant by sector - Health Care
## 2373                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Information Technology
## 2374                                                                                                                                                                                                                           Number of companies that are TCFD compliant by sector - Materials
## 2375                                                                                                                                                                                                                               Number of companies that are TCFD compliant by sector - Other
## 2376                                                                                                                                                                                                                         Number of companies that are TCFD compliant by sector - Real Estate
## 2377                                                                                                                                                                                                                      Number of companies that are TCFD compliant by sector - Transportation
## 2378                                                                                                                                                                                                                           Number of companies that are TCFD compliant by sector - Utilities
## 2379                                                                                                                                                                                                                                                       Natural hazard levels - Coastal flood
## 2380                                                                                                                                                                                                                                                             Natural hazard levels - Cyclone
## 2381                                                                                                                                                                                                                                                        Natural hazard levels - Extreme heat
## 2382                                                                                                                                                                                                                                                          Natural hazard levels - Earthquake
## 2383                                                                                                                                                                                                                                                           Natural hazard levels - Landslide
## 2384                                                                                                                                                                                                                                                         Natural hazard levels - River flood
## 2385                                                                                                                                                                                                                                                             Natural hazard levels - Tsunami
## 2386                                                                                                                                                                                                                                                         Natural hazard levels - Urban flood
## 2387                                                                                                                                                                                                                                                            Natural hazard levels - Wildfire
## 2388                                                                                                                                                                                                                                          Share of transport network exposed to cyclones (%)
## 2389                                                                                                                                                                                                                                       Share of transport network exposed to earthquakes (%)
## 2390                                                                                                                                                                                                                                            Share of transport network exposed to floods (%)
## 2391                                                                                                                                                                                                                                 Share of transport network exposed to natural disasters (%)
## 2392                                                                                                                                                                                                                                      Total GHG emissions growth in the period 2012-2018 (%)
## 2393                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Cancelled
## 2394                                                                                                                                                                                                                                     Total coal capacity by plant status (MW) - Construction
## 2395                                                                                                                                                                                                                                       Total coal capacity by plant status (MW) - Mothballed
## 2396                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Operating
## 2397                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Permitted
## 2398                                                                                                                                                                                                                                       Total coal capacity by plant status (MW) - Pre-permit
## 2399                                                                                                                                                                                                                                          Total coal capacity by plant status (MW) - Retired
## 2400                                                                                                                                                                                                                                          Total coal capacity by plant status (MW) - Shelved
## 2401                                                                                                                                                                                                                       Financing via international capital markets (gross inflows, % of GDP)
## 2402                                                                                                                                                                                                                                                 S&P Global Equity Indices (annual % change)
## 2403                                                                                                                                                                                                                            Market capitalization of listed domestic companies (current US$)
## 2404                                                                                                                                                                                                                               Market capitalization of listed domestic companies (% of GDP)
## 2405                                                                                                                                                                                                                                                            Listed domestic companies, total
## 2406                                                                                                                                                                                                                                                    Stocks traded, total value (current US$)
## 2407                                                                                                                                                                                                                                                       Stocks traded, total value (% of GDP)
## 2408                                                                                                                                                                                                                                        Stocks traded, turnover ratio of domestic shares (%)
## 2409                                                                                                                                                                                                                                                           Cost of an energy sufficient diet
## 2410                                                                                                                                                                                                              Affordability of an energy sufficient diet: ratio of cost to food expenditures
## 2411                                                                                                                                                                                                            Percent of the population who cannot afford sufficient calories at 52% of income
## 2412                                                                                                                                                                                                    Affordability of an energy sufficient diet: ratio of cost to the $0.99 food poverty line
## 2413                                                                                                                                                                                                                   Millions of people who cannot afford sufficient calories at 52% of income
## 2414                                                                                                                                                                                                                                                                      Cost of a healthy diet
## 2415                                                                                                                                                                                                                                                                 Cost of animal-source foods
## 2416                                                                                                                                                                                                                            Cost share for animal-sourced foods in a least-cost healthy diet
## 2417                                                                                                                                                                                                   Cost of animal-sourced foods relative to the starchy staples in a least-cost healthy diet
## 2418                                                                                                                                                                                                       Cost of a healthy diet relative to the cost of sufficient energy from starchy staples
## 2419                                                                                                                                                                                                                                                                              Cost of fruits
## 2420                                                                                                                                                                                                                                          Cost share for fruits in a least-cost healthy diet
## 2421                                                                                                                                                                                                                 Cost of fruits relative to the starchy staples in a least-cost healthy diet
## 2422                                                                                                                                                                                                                         Affordability of a healthy diet: ratio of cost to food expenditures
## 2423                                                                                                                                                                                                                 Percent of the population who cannot afford a healthy diet at 52% of income
## 2424                                                                                                                                                                                                                                                             Cost of legumes, nuts and seeds
## 2425                                                                                                                                                                                                                         Cost share for legumes, nuts and seeds in a least-cost healthy diet
## 2426                                                                                                                                                                                                Cost of legumes, nuts and seeds relative to the starchy staples in a least-cost healthy diet
## 2427                                                                                                                                                                                                                                                                       Cost of oils and fats
## 2428                                                                                                                                                                                                                                   Cost share for oils and fats in a least-cost healthy diet
## 2429                                                                                                                                                                                                          Cost of oils and fats relative to the starchy staples in a least-cost healthy diet
## 2430                                                                                                                                                                                                               Affordability of a healthy diet: ratio of cost to the $0.99 food poverty line
## 2431                                                                                                                                                                                                                                                                     Cost of starchy staples
## 2432                                                                                                                                                                                                                                 Cost share for starchy staples in a least-cost healthy diet
## 2433                                                                                                                                                                                                                        Millions of people who cannot afford a healthy diet at 52% of income
## 2434                                                                                                                                                                                                                                                                          Cost of vegetables
## 2435                                                                                                                                                                                                                                      Cost share for vegetables in a least-cost healthy diet
## 2436                                                                                                                                                                                                             Cost of vegetables relative to the starchy staples in a least-cost healthy diet
## 2437                                                                                                                                                                                                                                                            Cost of a nutrient adequate diet
## 2438                                                                                                                                                                                                               Affordability of a nutrient adequate diet: ratio of cost to food expenditures
## 2439                                                                                                                                                                                                              Percent of the population who cannot afford nutrient adequacy at 52% of income
## 2440                                                                                                                                                                                                     Affordability of a nutrient adequate diet: ratio of cost to the $0.99 food poverty line
## 2441                                                                                                                                                                                                                     Millions of people who cannot afford nutrient adequacy at 52% of income
## 2442                                                                                                                                                                                                                                                                    Core CPI,not seas.adj,,,
## 2443                                                                                                                                                                                                                                                                        Core CPI,seas.adj,,,
## 2444                                                                                                                                                                                                                                                                          CPI Price, nominal
## 2445                                                                                                                                                                                                                                             CPI Price, % y-o-y, median weighted, seas. adj.
## 2446                                                                                                                                                                                                                                                              CPI Price, nominal, seas. adj.
## 2447                                                                                                                                                                                                                                                     CPI Price, % y-o-y, nominal, seas. adj.
## 2448                                                                                                                                                                                                                                                     Predictability of Direct Budget Support
## 2449                                                                 (i) Annual deviation of actual budget support from the forecast provided by the donor agencies at least six weeks prior to the government submitting its budget proposals to the legislature (or equivalent approving body)
## 2450                                                                                                                                                                                              (ii) In-year timeliness of donor disbursements (compliance with aggregate quarterly estimates)
## 2451                                                                                                                                                                                             Financial information provided by donors for budgeting and reporting on project and program aid
## 2452                                                                                                                                                                                                           (i) Completeness and timeliness of budget estimates by donors for project support
## 2453                                                                                                                                                                                                (ii) Frequency and coverage of reporting by donors on actual donor flows for project support
## 2454                                                                                                                                                                                                                             Proportion of aid that is managed by use of national procedures
## 2455                                                                                                                                                                                                                                                  063.Product Entry Rate of Incumbents: Mean
## 2456                                                                                                                                                                                                                                                064.Product Entry Rate of Incumbents: Median
## 2457                                                                                                                                                                                                                                                065.Product Entry Rate of Incumbents: StDev.
## 2458                                                                                                                                                                                                                                          066.Product Entry Rate of Surviving Entrants: Mean
## 2459                                                                                                                                                                                                                                        067.Product Entry Rate of Surviving Entrants: Median
## 2460                                                                                                                                                                                                                                        068.Product Entry Rate of Surviving Entrants: StDev.
## 2461                                                                                                                                                                                                                                        069.Share of New Products in TEV of Incumbents: Mean
## 2462                                                                                                                                                                                                                                      070.Share of New Products in TEV of Incumbents: Median
## 2463                                                                                                                                                                                                                                      071.Share of New Products in TEV of Incumbents: StDev.
## 2464                                                                                                                                                                                                                                072.Share of New Products in TEV of Surviving Entrants: Mean
## 2465                                                                                                                                                                                                                              073.Share of New Products in TEV of Surviving Entrants: Median
## 2466                                                                                                                                                                                                                              074.Share of New Products in TEV of Surviving Entrants: StDev.
## 2467                                                                                                                                                                                                                                                   075.Product Exit Rate of Incumbents: Mean
## 2468                                                                                                                                                                                                                                                 076.Product Exit Rate of Incumbents: Median
## 2469                                                                                                                                                                                                                                                 077.Product Exit Rate of Incumbents: StDev.
## 2470                                                                                                                                                                                                                                        078.Product Survival Rate of 2-year Incumbents: Mean
## 2471                                                                                                                                                                                                                                      079.Product Survival Rate of 2-year Incumbents: Median
## 2472                                                                                                                                                                                                                                      080.Product Survival Rate of 2-year Incumbents: StDev.
## 2473                                                                                                                                                                                                                            Total Specific Allocation Grant for Agriculture (in IDR Billion)
## 2474                                                                                                                                                                                                                              Total Specific Allocation Grant for Education (in IDR Billion)
## 2475                                                                                                                                                                                                                            Total Specific Allocation Grant for Environment (in IDR Billion)
## 2476                                                                                                                                                                                                                               Total Specific Allocation Grant for Forestry (in IDR Billion)
## 2477                                                                                                                                                                                                                                Total Specific Allocation Grant for Fishery (in IDR Billion)
## 2478                                                                                                                                                                                                                      Total Specific Allocation Grant for Government Sector (in IDR Billion)
## 2479                                                                                                                                                                                                Total Specific Allocation Grant for Health Sector (Subsect: Basic Services) (in IDR Billion)
## 2480                                                                                                                                                                                                                                 Total Specific Allocation Grant for Health (in IDR Billion)
## 2481                                                                                                                                                                                          Total Specific Allocation Grant for Health Sector (Subsect: Recommended Services) (in IDR Billion)
## 2482                                                                                                                                                                                                                         Total Specific Allocation Grant for Infrastructure (in IDR Billion)
## 2483                                                                                                                                                                                                 Total Specific Allocation Grant for Infrastructure Sector (Subsect: Water) (in IDR Billion)
## 2484                                                                                                                                                                                            Total Specific Allocation Grant for Infrastructure Sector (Subsect: Irrigation) (in IDR Billion)
## 2485                                                                                                                                                                                                  Total Specific Allocation Grant for Infrastructure Sector (Subsect: Road) (in IDR Billion)
## 2486                                                                                                                                                                                                                            Total Specific Allocation Grant for Demographic (in IDR Billion)
## 2487                                                                                                                                                                                                                                  Total Specific Allocation Grant for Trade (in IDR Billion)
## 2488                                                                                                                                                                                                                                Total Specific Allocation Grant for Village (in IDR Billion)
## 2489                                                                                                                                                                                                                                                      Central Government External Debt (US$)
## 2490                                                                                                                                                                                                                                    Official aid provided to part II countries (current US$)
## 2491                                                                                                                                                                                                                            Net bilateral aid flows from DAC donors, Australia (current US$)
## 2492                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Austria (current US$)
## 2493                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Belgium (current US$)
## 2494                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Canada (current US$)
## 2495                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, European Union institutions (current US$)
## 2496                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Switzerland (current US$)
## 2497                                                                                                                                                                                                                       Net bilateral aid flows from DAC donors, Czech Republic (current US$)
## 2498                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Germany (current US$)
## 2499                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Denmark (current US$)
## 2500                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Spain (current US$)
## 2501                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Finland (current US$)
## 2502                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, France (current US$)
## 2503                                                                                                                                                                                                                       Net bilateral aid flows from DAC donors, United Kingdom (current US$)
## 2504                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Greece (current US$)
## 2505                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Hungary (current US$)
## 2506                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Ireland (current US$)
## 2507                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Iceland (current US$)
## 2508                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Italy (current US$)
## 2509                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Japan (current US$)
## 2510                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)
## 2511                                                                                                                                                                                                                           Net bilateral aid flows from DAC donors, Luxembourg (current US$)
## 2512                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Netherlands (current US$)
## 2513                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Norway (current US$)
## 2514                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, New Zealand (current US$)
## 2515                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Poland (current US$)
## 2516                                                                                                                                                                                                                             Net bilateral aid flows from DAC donors, Portugal (current US$)
## 2517                                                                                                                                                                                                                      Net bilateral aid flows from DAC donors, Slovak Republic (current US$)
## 2518                                                                                                                                                                                                                             Net bilateral aid flows from DAC donors, Slovenia (current US$)
## 2519                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Sweden (current US$)
## 2520                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Total (current US$)
## 2521                                                                                                                                                                                                                        Net bilateral aid flows from DAC donors, United States (current US$)
## 2522                                                                                                                                                                                                                                               Total bilateral ODA commitments (current US$)
## 2523                                                                                                                                                                                                                              Total bilateral sector allocable ODA commitments (current US$)
## 2524                                                                                                                                                                                                                      Bilateral, sector-allocable ODA to basic social services (current US$)
## 2525                                                                                                                                                                                                   Bilateral, sector-allocable ODA to basic social services (% of bilateral ODA commitments)
## 2526                                                                                                                                                                                                                            Net ODA provided, to the least developed countries (current US$)
## 2527                                                                                                                                                                                                                                Net ODA provided to the least developed countries (% of GNI)
## 2528                                                                                                                                                                                                                                                       Net ODA provided, total (current US$)
## 2529                                                                                                                                                                                                                                                          Net ODA provided, total (% of GNI)
## 2530                                                                                                                                                                                                                                                 Net ODA provided, total (constant 2020 US$)
## 2531                                                                                                                                                                                                                                      Bilateral ODA commitments that is untied (current US$)
## 2532                                                                                                                                                                                                                   Bilateral ODA commitments that is untied (% of bilateral ODA commitments)
## 2533                                                                                                                                                                                                                                              Non-financial Pub. Enterprises Ext. Debt (US$)
## 2534                                                                                                                                                                                                                                        Pub. LT Debt, IBRD&IDA (US$, IBRD DRS - end of year)
## 2535                                                                                                                                                                                                                                             Pub. LT Debt, Official Creditors(US$, IBRD DRS)
## 2536                                                                                                                                                                                                                                             Pub. LT Debt, Private Creditors (US$, IBRD DRS)
## 2537                                                                                                                                                                                                                                             Public/Pub. Guar. Long-Term Debt(US$, IBRD DRS)
## 2538                                                                                                                                                                                                                                                       Use of Fund Credit (US$, end of year)
## 2539                                                                                                                                                                                                                                             Repay on Long-Term Loans (US$, as per IBRD DRS)
## 2540                                                                                                                                                                                                                                             Disb. of Long-Term Loans (US$, as per IBRD DRS)
## 2541                                                                                                                                                                                                                                                              Central Bank, incl. IMF credit
## 2542                                                                                                                                                                                                                                                                          Central Government
## 2543                                                                                                                                                                                                                                                                  Long-Term Debt (by debtor)
## 2544                                                                                                                                                                                                                                                            Non-financial Public Enterprices
## 2545                                                                                                                                                                                                                                                        Private sector, incl. non-guaranteed
## 2546                                                                                                                                                                                                                                                                  Rest of General Government
## 2547                                                                                                                                                                                                                                               Long-Term Interest Payments (as per IBRD DRS)
## 2548                                                                                                                                                                                                                                                Long-Term Loans (net) (US$, as per IBRD DRS)
## 2549                                                                                                                                                                                                                                              Central Bank Ext. Debt, incl. IMF credit (US$)
## 2550                                                                                                                                                                                                                                         Imports Merchandise, Customs, current US$, millions
## 2551                                                                                                                                                                                                                                        Imports Merchandise, Customs, constant US$, millions
## 2552                                                                                                                                                                                                                                                    Imports Merchandise, Customs, Price, US$
## 2553                                                                                                                                                                                                                             Imports Merchandise, Customs, current US$, millions, seas. adj.
## 2554                                                                                                                                                                                                                            Imports Merchandise, Customs, constant US$, millions, seas. adj.
## 2555                                                                                                                                                                                                                                        Imports Merchandise, Customs, Price, US$, seas. adj.
## 2556                                                                                                                                                                                                                                             Non-guar. Private Long-Term Debt(US$, IBRD DRS)
## 2557                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2558                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2559                                                                                                                                                                             Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2560                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2561                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2562                                                                                                                                                                                       Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2563                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2564                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2565                                                                                                                                                                             Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2566                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2567                                                                                                                                                                                            Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2568                                                                                                                                                                                       Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2569                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2570                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2571                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2572                                                                                                                                                                             Gross PSD, Public Sector, All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2573                                                                                                                                                                                                   Gross PSD, Total, All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2574                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2575                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2576                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2577                                                                                                                                                                                Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2578                                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2579                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2580                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2581                                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2582                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2583                                                                                                                                                                                Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2584                                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2585                                                                                                                                                                                         Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2586                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2587                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2588                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2589                                                                                                                                                                               Gross PSD, Public Sector, All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2590                                                                                                                                                                                                     Gross PSD, Total, All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2591                                                                                                                                                                     Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2592                                                                                                                                                                                   Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2593                                                                                                                                                                              Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2594                                                                                                                                                                               Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2595                                                                                                                                                                                             Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2596                                                                                                                                                                                        Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2597                                                                                                                                                                     Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2598                                                                                                                                                                                   Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2599                                                                                                                                                                              Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2600                                                                                                                                                                               Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2601                                                                                                                                                                                             Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2602                                                                                                                                                                                        Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2603                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2604                                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2605                                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2606                                                                                                                                                                              Gross PSD, Public Sector, All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2607                                                                                                                                                                                                    Gross PSD, Total, All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2608                                                                                                                                                                                        Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, National Currency
## 2609                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, US$
## 2610                                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2611                                                                                                                                                                                                  Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, National Currency
## 2612                                                                                                                                                                                                                Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, US$
## 2613                                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2614                                                                                                                                                                                        Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, National Currency
## 2615                                                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, US$
## 2616                                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2617                                                                                                                                                                                                  Gross PSD, General Gov., All maturities, All instruments, Nominal Value, National Currency
## 2618                                                                                                                                                                                                                Gross PSD, General Gov., All maturities, All instruments, Nominal Value, US$
## 2619                                                                                                                                                                                                           Gross PSD, General Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2620                                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, National Currency
## 2621                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, US$
## 2622                                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2623                                                                                                                                                                                                 Gross PSD, Public Sector, All maturities, All instruments, Nominal Value, National Currency
## 2624                                                                                                                                                                                                                       Gross PSD, Total, All maturities, All instruments, Nominal Value, US$
## 2625                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2626                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2627                                                                                                                                                                             Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2628                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2629                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2630                                                                                                                                                                                       Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2631                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2632                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$
## 2633                                                                                                                                                                             Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2634                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2635                                                                                                                                                                                            Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2636                                                                                                                                                                                       Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2637                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2638                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$
## 2639                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2640                                                                                                                                                                             Gross PSD, Public Sector, All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2641                                                                                                                                                                                                   Gross PSD, Total, All maturities, All instruments, External creditors, Nominal Value, US$
## 2642                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2643                                                                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2644                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2645                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2646                                                                                                                                                                                                          Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2647                                                                                                                                                                                                     Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2648                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency
## 2649                                                                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, US$
## 2650                                                                                                                                                                                           Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2651                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2652                                                                                                                                                                                                          Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2653                                                                                                                                                                                                     Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2654                                                                                                                                                 Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2655                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2656                                                                                                                                                          Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2657                                                                                                                                                           Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2658                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2659                                                                                                                                                                    Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2660                                                                                                                                                 Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2661                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2662                                                                                                                                                          Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2663                                                                                                                                                           Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2664                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2665                                                                                                                                                                    Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2666                                                                                                                                              Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2667                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2668                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2669                                                                                                                                                          Gross PSD, Public Sector, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2670                                                                                                                                                                                Gross PSD, Total, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2671                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2672                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2673                                                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2674                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2675                                                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2676                                                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2677                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2678                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2679                                                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2680                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2681                                                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2682                                                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2683                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2684                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2685                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2686                                                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2687                                                                                                                                                                              Gross PSD, Total, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2688                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency
## 2689                                                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, US$
## 2690                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2691                                                                                                                                                                                           Gross PSD, Public Sector, All maturities, Currency and deposits, Nominal Value, National Currency
## 2692                                                                                                                                                                                                                 Gross PSD, Total, All maturities, Currency and deposits, Nominal Value, US$
## 2693                                                                                                                                                                                                     Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$
## 2694                                                                                                                                                                                                Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2695                                                                                                                                                                                                     Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$
## 2696                                                                                                                                                                                                Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2697                                                                                                                                                                                            Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$
## 2698                                                                                                                                                                                       Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2699                                                                                                                                                                                            Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$
## 2700                                                                                                                                                                                       Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2701                                                                                                                                                                                                Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$
## 2702                                                                                                                                                                                           Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2703                                                                                                                                                                                                Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$
## 2704                                                                                                                                                                                           Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2705                                                                                                                                                                                                   Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$
## 2706                                                                                                                                                                                              Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2707                                                                                                                                                                                                   Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$
## 2708                                                                                                                                                                                              Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2709                                                                                                                                                                         Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$
## 2710                                                                                                                                                                    Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2711                                                                                                                                                                         Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$
## 2712                                                                                                                                                                    Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2713                                                                                                                                                                                        Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2714                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, US$
## 2715                                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2716                                                                                                                                                                                                  Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2717                                                                                                                                                                                                                Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, US$
## 2718                                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2719                                                                                                                                                                                        Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, National Currency
## 2720                                                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, US$
## 2721                                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2722                                                                                                                                                                                                  Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2723                                                                                                                                                                                                                Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, US$
## 2724                                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2725                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2726                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2727                                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2728                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2729                                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2730                                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2731                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2732                                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2733                                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2734                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2735                                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2736                                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2737                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2738                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2739                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2740                                                                                                                                                                Gross PSD, Public Sector, Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2741                                                                                                                                                                                      Gross PSD, Total, Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2742                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2743                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2744                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2745                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2746                                                                                                                                                                             Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2747                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2748                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2749                                                                                                                                                                   Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2750                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2751                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2752                                                                                                                                                                             Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2753                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2754                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2755                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2756                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2757                                                                                                                                                              Gross PSD, Public Sector, Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2758                                                                                                                                                                                    Gross PSD, Total, Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2759                                                                                                                                                                                         Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, National Currency
## 2760                                                                                                                                                                                                       Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, US$
## 2761                                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2762                                                                                                                                                                                                   Gross PSD, Central Gov., All maturities, Debt Securities, Market value, National Currency
## 2763                                                                                                                                                                                                                 Gross PSD, Central Gov., All maturities, Debt Securities, Market value, US$
## 2764                                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2765                                                                                                                                                                                         Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, National Currency
## 2766                                                                                                                                                                                                       Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, US$
## 2767                                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2768                                                                                                                                                                                                   Gross PSD, General Gov., All maturities, Debt Securities, Market value, National Currency
## 2769                                                                                                                                                                                                                 Gross PSD, General Gov., All maturities, Debt Securities, Market value, US$
## 2770                                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Debt Securities, Market value, % of GDP
## 2771                                                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, National Currency
## 2772                                                                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, US$
## 2773                                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2774                                                                                                                                                                                                  Gross PSD, Public Sector, All maturities, Debt Securities, Market value, National Currency
## 2775                                                                                                                                                                                                                        Gross PSD, Total, All maturities, Debt Securities, Market value, US$
## 2776                                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, National Currency
## 2777                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, US$
## 2778                                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2779                                                                                                                                                                                                 Gross PSD, Public Sector, All maturities, Debt securities, Nominal Value, National Currency
## 2780                                                                                                                                                                                                                       Gross PSD, Total, All maturities, Debt securities, Nominal Value, US$
## 2781                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2782                                                                                                                                                              Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2783                                                                                                                                                         Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2784                                                                                                                                                          Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2785                                                                                                                                                                        Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2786                                                                                                                                                                   Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2787                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2788                                                                                                                                                              Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2789                                                                                                                                                         Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2790                                                                                                                                                          Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2791                                                                                                                                                                        Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2792                                                                                                                                                                   Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2793                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2794                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2795                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2796                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2797                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2798                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2799                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2800                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2801                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2802                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2803                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2804                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2805                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2806                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2807                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2808                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2809                                                                                                                                              Gross PSD, Total, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2810                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2811                                                                                                                           Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2812                                                                                                                      Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2813                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2814                                                                                                                                     Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2815                                                                                                                                Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2816                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2817                                                                                                                           Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2818                                                                                                                      Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2819                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2820                                                                                                                                     Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2821                                                                                                                                Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2822                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2823                                                                                                                        Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2824                                                                                                                   Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2825                                                                                                                      Gross PSD, Public Sector, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2826                                                                                                                                            Gross PSD, Total, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2827                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2828                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2829                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2830                                                                                                                                                         Gross PSD, Public Sector, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2831                                                                                                                                                                               Gross PSD, Total, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2832                                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, National Currency
## 2833                                                                                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, US$
## 2834                                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2835                                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Loans, Nominal Value, National Currency
## 2836                                                                                                                                                                                                                          Gross PSD, Central Gov., All maturities, Loans, Nominal Value, US$
## 2837                                                                                                                                                                                                                     Gross PSD, Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2838                                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, National Currency
## 2839                                                                                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, US$
## 2840                                                                                                                                                                                                           Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2841                                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Loans, Nominal Value, National Currency
## 2842                                                                                                                                                                                                                          Gross PSD, General Gov., All maturities, Loans, Nominal Value, US$
## 2843                                                                                                                                                                                                                     Gross PSD, General Gov., All maturities, Loans, Nominal Value, % of GDP
## 2844                                                                                                                                                                 Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2845                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2846                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2847                                                                                                                                                                           Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2848                                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2849                                                                                                                                                                                    Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2850                                                                                                                                                                 Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2851                                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2852                                                                                                                                                                          Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2853                                                                                                                                                                           Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2854                                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2855                                                                                                                                                                                    Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2856                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2857                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2858                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2859                                                                                                                                                                          Gross PSD, Public Sector, Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2860                                                                                                                                                                                                Gross PSD, Total, Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2861                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2862                                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2863                                                                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2864                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2865                                                                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2866                                                                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2867                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2868                                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2869                                                                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2870                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2871                                                                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2872                                                                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2873                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2874                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2875                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2876                                                                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2877                                                                                                                                                                                              Gross PSD, Total, Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2878                                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, National Currency
## 2879                                                                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, US$
## 2880                                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2881                                                                                                                                                                                                           Gross PSD, Public Sector, All maturities, Loans, Nominal Value, National Currency
## 2882                                                                                                                                                                                                                                 Gross PSD, Total, All maturities, Loans, Nominal Value, US$
## 2883                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2884                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2885                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2886                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2887                                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2888                                                                                                                                                                                                    Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2889                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency
## 2890                                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, US$
## 2891                                                                                                                                                                                          Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2892                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2893                                                                                                                                                                                                         Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2894                                                                                                                                                                                                    Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2895                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2896                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2897                                                                                                                                                         Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2898                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2899                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2900                                                                                                                                                                   Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2901                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2902                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2903                                                                                                                                                         Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2904                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2905                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2906                                                                                                                                                                   Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2907                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2908                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2909                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2910                                                                                                                                                         Gross PSD, Public Sector, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2911                                                                                                                                                                               Gross PSD, Total, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2912                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2913                                                                                                                                                            Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2914                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2915                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2916                                                                                                                                                                      Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2917                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2918                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2919                                                                                                                                                            Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2920                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2921                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2922                                                                                                                                                                      Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2923                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2924                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2925                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2926                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2927                                                                                                                                                       Gross PSD, Public Sector, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2928                                                                                                                                                                             Gross PSD, Total, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2929                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency
## 2930                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, US$
## 2931                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2932                                                                                                                                                                                          Gross PSD, Public Sector, All maturities, Other accounts payable, Nominal Value, National Currency
## 2933                                                                                                                                                                                                                Gross PSD, Total, All maturities, Other accounts payable, Nominal Value, US$
## 2934                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2935                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2936                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2937                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2938                                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2939                                                                                                                                                                                                    Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2940                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2941                                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$
## 2942                                                                                                                                                                                          Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2943                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2944                                                                                                                                                                                                         Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2945                                                                                                                                                                                                    Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2946                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2947                                                                                                                                                            Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2948                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2949                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2950                                                                                                                                                                      Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2951                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2952                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2953                                                                                                                                                            Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2954                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2955                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2956                                                                                                                                                                      Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2957                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2958                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2959                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2960                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2961                                                                                                                                                       Gross PSD, Public Sector, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2962                                                                                                                                                                             Gross PSD, Total, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2963                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2964                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$
## 2965                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2966                                                                                                                                                                                          Gross PSD, Public Sector, All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2967                                                                                                                                                                                                                Gross PSD, Total, All maturities, Special Drawing Rights, Nominal Value, US$
## 2968                                                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, National Currency
## 2969                                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, US$
## 2970                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2971                                                                                                                                                                                                       Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, National Currency
## 2972                                                                                                                                                                                                                     Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, US$
## 2973                                                                                                                                                                                                                Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2974                                                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, National Currency
## 2975                                                                                                                                                                                                           Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, US$
## 2976                                                                                                                                                                                                      Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 2977                                                                                                                                                                                                       Gross PSD, General Gov., Long-term, All instruments, Nominal Value, National Currency
## 2978                                                                                                                                                                                                                     Gross PSD, General Gov., Long-term, All instruments, Nominal Value, US$
## 2979                                                                                                                                                                                                                Gross PSD, General Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2980                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2981                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2982                                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2983                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2984                                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2985                                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2986                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2987                                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2988                                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2989                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2990                                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2991                                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2992                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2993                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2994                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2995                                                                                                                                                                Gross PSD, Public Sector, Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2996                                                                                                                                                                                      Gross PSD, Total, Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2997                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 2998                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 2999                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3000                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3001                                                                                                                                                                             Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3002                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3003                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3004                                                                                                                                                                   Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3005                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3006                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3007                                                                                                                                                                             Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3008                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3009                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3010                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3011                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3012                                                                                                                                                              Gross PSD, Public Sector, Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3013                                                                                                                                                                                    Gross PSD, Total, Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3014                                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, National Currency
## 3015                                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, US$
## 3016                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 3017                                                                                                                                                                                                      Gross PSD, Public Sector, Long-term, All instruments, Nominal Value, National Currency
## 3018                                                                                                                                                                                                                            Gross PSD, Total, Long-term, All instruments, Nominal Value, US$
## 3019                                                                                                                                                                                                                                             Priv. Sector Ext. Debt, incl. non-guarant.(US$)
## 3020                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3021                                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3022                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3023                                                                                                                                                                                                Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3024                                                                                                                                                                                                              Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3025                                                                                                                                                                                                         Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3026                                                                                                                                                                                      Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency
## 3027                                                                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, US$
## 3028                                                                                                                                                                                               Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3029                                                                                                                                                                                                Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3030                                                                                                                                                                                                              Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3031                                                                                                                                                                                                         Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3032                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency
## 3033                                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, US$
## 3034                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3035                                                                                                                                                                                               Gross PSD, Public Sector, Short-term, Currency and deposits, Nominal Value, National Currency
## 3036                                                                                                                                                                                                                     Gross PSD, Total, Short-term, Currency and deposits, Nominal Value, US$
## 3037                                                                                                                                                                                            Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3038                                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, US$
## 3039                                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3040                                                                                                                                                                                                      Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3041                                                                                                                                                                                                                    Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, US$
## 3042                                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3043                                                                                                                                                                                            Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, National Currency
## 3044                                                                                                                                                                                                          Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, US$
## 3045                                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3046                                                                                                                                                                                                      Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3047                                                                                                                                                                                                                    Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, US$
## 3048                                                                                                                                                                                                               Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3049                                                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, National Currency
## 3050                                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, US$
## 3051                                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3052                                                                                                                                                                                                     Gross PSD, Public Sector, Short-term, Debt securities, Nominal Value, National Currency
## 3053                                                                                                                                                                                                                           Gross PSD, Total, Short-term, Debt securities, Nominal Value, US$
## 3054                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3055                                                                                                                                                                  Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3056                                                                                                                                                             Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3057                                                                                                                                                              Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3058                                                                                                                                                                            Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3059                                                                                                                                                                       Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3060                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3061                                                                                                                                                                  Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3062                                                                                                                                                             Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3063                                                                                                                                                              Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3064                                                                                                                                                                            Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3065                                                                                                                                                                       Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3066                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3067                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3068                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3069                                                                                                                                                             Gross PSD, Public Sector, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3070                                                                                                                                                                                   Gross PSD, Total, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3071                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, National Currency
## 3072                                                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, US$
## 3073                                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3074                                                                                                                                                                                                                Gross PSD, Central Gov., Short-term, Loans, Nominal Value, National Currency
## 3075                                                                                                                                                                                                                              Gross PSD, Central Gov., Short-term, Loans, Nominal Value, US$
## 3076                                                                                                                                                                                                                         Gross PSD, Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3077                                                                                                                                                                                                      Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, National Currency
## 3078                                                                                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, US$
## 3079                                                                                                                                                                                                               Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3080                                                                                                                                                                                                                Gross PSD, General Gov., Short-term, Loans, Nominal Value, National Currency
## 3081                                                                                                                                                                                                                              Gross PSD, General Gov., Short-term, Loans, Nominal Value, US$
## 3082                                                                                                                                                                                                                         Gross PSD, General Gov., Short-term, Loans, Nominal Value, % of GDP
## 3083                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, National Currency
## 3084                                                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, US$
## 3085                                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3086                                                                                                                                                                                                               Gross PSD, Public Sector, Short-term, Loans, Nominal Value, National Currency
## 3087                                                                                                                                                                                                                                     Gross PSD, Total, Short-term, Loans, Nominal Value, US$
## 3088                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3089                                                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3090                                                                                                                                                                                              Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3091                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3092                                                                                                                                                                                                             Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3093                                                                                                                                                                                                        Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3094                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency
## 3095                                                                                                                                                                                                   Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, US$
## 3096                                                                                                                                                                                              Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3097                                                                                                                                                                                               Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3098                                                                                                                                                                                                             Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3099                                                                                                                                                                                                        Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3100                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency
## 3101                                                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, US$
## 3102                                                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3103                                                                                                                                                                                              Gross PSD, Public Sector, Short-term, Other accounts payable, Nominal Value, National Currency
## 3104                                                                                                                                                                                                                    Gross PSD, Total, Short-term, Other accounts payable, Nominal Value, US$
## 3105                                                                                                                                                                                            Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, National Currency
## 3106                                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, US$
## 3107                                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3108                                                                                                                                                                                                      Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, National Currency
## 3109                                                                                                                                                                                                                    Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, US$
## 3110                                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3111                                                                                                                                                                                            Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, National Currency
## 3112                                                                                                                                                                                                          Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, US$
## 3113                                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3114                                                                                                                                                                                                      Gross PSD, General Gov., Short-term, All instruments, Nominal Value, National Currency
## 3115                                                                                                                                                                                                                    Gross PSD, General Gov., Short-term, All instruments, Nominal Value, US$
## 3116                                                                                                                                                                                                               Gross PSD, General Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3117                                                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, National Currency
## 3118                                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, US$
## 3119                                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3120                                                                                                                                                                                                     Gross PSD, Public Sector, Short-term, All instruments, Nominal Value, National Currency
## 3121                                                                                                                                                                                                                           Gross PSD, Total, Short-term, All instruments, Nominal Value, US$
## 3122                                                                                                                                                                                                                                         Official exchange rate, LCU per USD, period average
## 3123                                                                                                                                                                                                                            Exchange rate, new LCU per USD extended backward, period average
## 3124                                                                                                                                                                                                                             Exchange rate, old LCU per USD extended forward, period average
## 3125                                                                                                                                                                                                                                              Rest of General Government External Debt (US$)
## 3126                                                                                                                                                                                                                                                                             Short-Term Debt
## 3127                                                                                                                                                                                                                                               Identified Short-Term Debt (US$, end of year)
## 3128                                                                                                                                                                                                                                                                          Stock Markets, US$
## 3129                                                                                                                                                                                                                                                                          Stock Markets, LCU
## 3130                                                                                                                                                                                                                         LT Principal due per balance of payments account (BoP, current US$)
## 3131                                                                                                                                                                                                                                                            CB, bilateral (AMT, current US$)
## 3132                                                                                                                                                                                                                                                           PPG, bilateral (AMT, current US$)
## 3133                                                                                                                                                                                                                                                            GG, bilateral (AMT, current US$)
## 3134                                                                                                                                                                                                                                                           OPS, bilateral (AMT, current US$)
## 3135                                                                                                                                                                                                                                                          PRVG, bilateral (AMT, current US$)
## 3136                                                                                                                                                                                                                                                            PS, bilateral (AMT, current US$)
## 3137                                                                                                                                                                                                                                               CB, bilateral concessional (AMT, current US$)
## 3138                                                                                                                                                                                                                                              PPG, bilateral concessional (AMT, current US$)
## 3139                                                                                                                                                                                                                                               GG, bilateral concessional (AMT, current US$)
## 3140                                                                                                                                                                                                                                              OPS, bilateral concessional (AMT, current US$)
## 3141                                                                                                                                                                                                                                             PRVG, bilateral concessional (AMT, current US$)
## 3142                                                                                                                                                                                                                                               PS, bilateral concessional (AMT, current US$)
## 3143                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Principal, USD
## 3144                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Principal, USD
## 3145                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Principal, USD
## 3146                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Principal, USD
## 3147                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Principal, USD
## 3148                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Principal, USD
## 3149                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Principal, USD
## 3150                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Principal, USD
## 3151                                                                                                                                                                                                                Principal repayments on external debt, central bank (PPG) (AMT, current US$)
## 3152                                                                                                                                                                                                                                                   Principal repayments, Total (current US$)
## 3153                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3154                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD
## 3155                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3156                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3157                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3158                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3159                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3160                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3161                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD
## 3162                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3163                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3164                                                                                                                                                                                                     Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD
## 3165                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3166                                                                                                                                                                  Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3167                                                                                                                                                                                                     Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD
## 3168                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3169                                                                                                                                                                                                         Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD
## 3170                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD
## 3171                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD
## 3172                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD
## 3173                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD
## 3174                                                                                                                                                                                                       Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD
## 3175                                                                                                                                                                                                       Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD
## 3176                                                                                                                                                                                                           Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD
## 3177                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD
## 3178                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD
## 3179                                                                                                                                                                                                                Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Principal, USD
## 3180                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Principal, USD
## 3181                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Principal, USD
## 3182                                                                                                                                                                                   Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Principal, USD
## 3183                                                                                                                                                                                   Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Principal, USD
## 3184                                                                                                                                                                                       Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Principal, USD
## 3185                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Principal, USD
## 3186                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Principal, USD
## 3187                                                                                                                                                                                            Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Principal, USD
## 3188                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Principal, USD
## 3189                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Principal, USD
## 3190                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Principal, USD
## 3191                                                                                                                                                                                              Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Principal, USD
## 3192                                                                                                                                                                                              Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Principal, USD
## 3193                                                                                                                                                                                                  Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Principal, USD
## 3194                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Principal, USD
## 3195                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Principal, USD
## 3196                                                                                                                                                                                                       Ext. Debt Service Pmt, General Government, Immediate, All instruments, Principal, USD
## 3197                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, One year or less, All instruments, Principal, USD
## 3198                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Principal, USD
## 3199                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Principal, USD
## 3200                                                                                                                                                                                            Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Principal, USD
## 3201                                                                                                                                                                                            Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Principal, USD
## 3202                                                                                                                                                                                                Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Principal, USD
## 3203                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Principal, USD
## 3204                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Principal, USD
## 3205                                                                                                                                                                                                     Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Principal, USD
## 3206                                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Principal, USD
## 3207                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3208                                                                                                                                                                                                              Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Principal, USD
## 3209                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Principal, USD
## 3210                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Principal, USD
## 3211                                                                                                                                                                                                    Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Principal, USD
## 3212                                                                                                                                                                                                    Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Principal, USD
## 3213                                                                                                                                                                                                        Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Principal, USD
## 3214                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Principal, USD
## 3215                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Principal, USD
## 3216                                                                                                                                                                                                             Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Principal, USD
## 3217                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Principal, USD
## 3218                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Principal, USD
## 3219                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Principal, USD
## 3220                                                                                                                                                                                                   Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Principal, USD
## 3221                                                                                                                                                                                                   Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Principal, USD
## 3222                                                                                                                                                                                                       Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Principal, USD
## 3223                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Principal, USD
## 3224                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Principal, USD
## 3225                                                                                                                                                                                                            Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Principal, USD
## 3226                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Principal, USD
## 3227                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Principal, USD
## 3228                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Principal, USD
## 3229                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Principal, USD
## 3230                                                                                                                                                                                    Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Principal, USD
## 3231                                                                                                                                                                                    Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Principal, USD
## 3232                                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Principal, USD
## 3233                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Principal, USD
## 3234                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Principal, USD
## 3235                                                                                                                                                                                             Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Principal, USD
## 3236                                                                                                                                                                                                   Principal repayments on external debt, general government sector (PPG) (AMT, current US$)
## 3237                                                                                                                                                                                                               Principal repayments on external debt, public sector (PPG) (AMT, current US$)
## 3238                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3239                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3240                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3241                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3242                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3243                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3244                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3245                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3246                                                                                                                                                                                                                                                          IMF repurchases (AMT, current US$)
## 3247                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Principal, USD
## 3248                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Principal, USD
## 3249                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Principal, USD
## 3250                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Principal, USD
## 3251                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Principal, USD
## 3252                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Principal, USD
## 3253                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Principal, USD
## 3254                                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Principal, USD
## 3255                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Principal, USD
## 3256                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Principal, USD
## 3257                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Principal, USD
## 3258                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Principal, USD
## 3259                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Principal, USD
## 3260                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Principal, USD
## 3261                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Principal, USD
## 3262                                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Principal, USD
## 3263                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Principal, USD
## 3264                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Principal, USD
## 3265                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Principal, USD
## 3266                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Principal, USD
## 3267                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Principal, USD
## 3268                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Principal, USD
## 3269                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Principal, USD
## 3270                                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Principal, USD
## 3271                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Principal, USD
## 3272                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Principal, USD
## 3273                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Principal, USD
## 3274                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Principal, USD
## 3275                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Principal, USD
## 3276                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Principal, USD
## 3277                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Principal, USD
## 3278                                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Principal, USD
## 3279                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Principal, USD
## 3280                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Principal, USD
## 3281                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Principal, USD
## 3282                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Principal, USD
## 3283                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Principal, USD
## 3284                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Principal, USD
## 3285                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Principal, USD
## 3286                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Principal, USD
## 3287                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Principal, USD
## 3288                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Principal, USD
## 3289                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Principal, USD
## 3290                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Principal, USD
## 3291                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Principal, USD
## 3292                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Principal, USD
## 3293                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Principal, USD
## 3294                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Principal, USD
## 3295                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Principal, USD
## 3296                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Principal, USD
## 3297                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Principal, USD
## 3298                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Principal, USD
## 3299                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Principal, USD
## 3300                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Principal, USD
## 3301                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Principal, USD
## 3302                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Principal, USD
## 3303                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Principal, USD
## 3304                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Principal, USD
## 3305                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Principal, USD
## 3306                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Principal, USD
## 3307                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Principal, USD
## 3308                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Principal, USD
## 3309                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Principal, USD
## 3310                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Principal, USD
## 3311                                                                                                                                                                                                                   Principal repayments on external debt, long-term + IMF (AMT, current US$)
## 3312                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Principal, USD
## 3313                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Principal, USD
## 3314                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Principal, USD
## 3315                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Principal, USD
## 3316                                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Principal, USD
## 3317                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Principal, USD
## 3318                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Principal, USD
## 3319                                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Principal, USD
## 3320                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Principal, USD
## 3321                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Principal, USD
## 3322                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Principal, USD
## 3323                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Principal, USD
## 3324                                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Principal, USD
## 3325                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Principal, USD
## 3326                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Principal, USD
## 3327                                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Loans, Principal, USD
## 3328                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Principal, USD
## 3329                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Principal, USD
## 3330                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Principal, USD
## 3331                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Principal, USD
## 3332                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Principal, USD
## 3333                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Principal, USD
## 3334                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Principal, USD
## 3335                                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Principal, USD
## 3336                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Principal, USD
## 3337                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Principal, USD
## 3338                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Principal, USD
## 3339                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Principal, USD
## 3340                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Principal, USD
## 3341                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Principal, USD
## 3342                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Principal, USD
## 3343                                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Principal, USD
## 3344                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Principal, USD
## 3345                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Principal, USD
## 3346                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Principal, USD
## 3347                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Principal, USD
## 3348                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Principal, USD
## 3349                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Principal, USD
## 3350                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Principal, USD
## 3351                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Principal, USD
## 3352                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Principal, USD
## 3353                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Principal, USD
## 3354                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Principal, USD
## 3355                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Principal, USD
## 3356                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Principal, USD
## 3357                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Principal, USD
## 3358                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Principal, USD
## 3359                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Principal, USD
## 3360                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Principal, USD
## 3361                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Principal, USD
## 3362                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Principal, USD
## 3363                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Principal, USD
## 3364                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Principal, USD
## 3365                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Principal, USD
## 3366                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Principal, USD
## 3367                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Principal, USD
## 3368                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Principal, USD
## 3369                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Principal, USD
## 3370                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Principal, USD
## 3371                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Principal, USD
## 3372                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Principal, USD
## 3373                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Principal, USD
## 3374                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Principal, USD
## 3375                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Principal, USD
## 3376                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Principal, USD
## 3377                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Principal, USD
## 3378                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Principal, USD
## 3379                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Principal, USD
## 3380                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Principal, USD
## 3381                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Principal, USD
## 3382                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Principal, USD
## 3383                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Principal, USD
## 3384                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Principal, USD
## 3385                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Principal, USD
## 3386                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Principal, USD
## 3387                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Principal, USD
## 3388                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Principal, USD
## 3389                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Principal, USD
## 3390                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Principal, USD
## 3391                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Principal, USD
## 3392                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Principal, USD
## 3393                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Principal, USD
## 3394                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Principal, USD
## 3395                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Principal, USD
## 3396                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Principal, USD
## 3397                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Principal, USD
## 3398                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Principal, USD
## 3399                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Principal, USD
## 3400                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Principal, USD
## 3401                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Principal, USD
## 3402                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Principal, USD
## 3403                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Principal, USD
## 3404                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Principal, USD
## 3405                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Principal, USD
## 3406                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Principal, USD
## 3407                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Principal, USD
## 3408                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Principal, USD
## 3409                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Principal, USD
## 3410                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Principal, USD
## 3411                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Principal, USD
## 3412                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Principal, USD
## 3413                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Principal, USD
## 3414                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Principal, USD
## 3415                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Principal, USD
## 3416                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Principal, USD
## 3417                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Principal, USD
## 3418                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Principal, USD
## 3419                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Principal, USD
## 3420                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Principal, USD
## 3421                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Principal, USD
## 3422                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Principal, USD
## 3423                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Principal, USD
## 3424                                                                                                                                                                                                                         Principal repayments on external debt, long-term (AMT, current US$)
## 3425                                                                                                                                                                                                         Principal repayments on external debt, other public sector (PPG) (AMT, current US$)
## 3426                                                                                                                                                                                                       Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)
## 3427                                                                                                                                                                                              Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)
## 3428                                                                                                                                                                                                                                                                PPG, IBRD (AMT, current US$)
## 3429                                                                                                                                                                                                                                                                 PPG, IDA (AMT, current US$)
## 3430                                                                                                                                                                                                                                                         CB, multilateral (AMT, current US$)
## 3431                                                                                                                                                                                                                                                        PPG, multilateral (AMT, current US$)
## 3432                                                                                                                                                                                                                                                         GG, multilateral (AMT, current US$)
## 3433                                                                                                                                                                                                                                                        OPS, multilateral (AMT, current US$)
## 3434                                                                                                                                                                                                                                                       PRVG, multilateral (AMT, current US$)
## 3435                                                                                                                                                                                                                                                         PS, multilateral (AMT, current US$)
## 3436                                                                                                                                                                                                                                            CB, multilateral concessional (AMT, current US$)
## 3437                                                                                                                                                                                                                                           PPG, multilateral concessional (AMT, current US$)
## 3438                                                                                                                                                                                                                                            GG, multilateral concessional (AMT, current US$)
## 3439                                                                                                                                                                                                                                           OPS, multilateral concessional (AMT, current US$)
## 3440                                                                                                                                                                                                                                          PRVG, multilateral concessional (AMT, current US$)
## 3441                                                                                                                                                                                                                                            PS, multilateral concessional (AMT, current US$)
## 3442                                                                                                                                                                                                                                                   CB, official creditors (AMT, current US$)
## 3443                                                                                                                                                                                                                                                  PPG, official creditors (AMT, current US$)
## 3444                                                                                                                                                                                                                                                   GG, official creditors (AMT, current US$)
## 3445                                                                                                                                                                                                                                                  OPS, official creditors (AMT, current US$)
## 3446                                                                                                                                                                                                                                                 PRVG, official creditors (AMT, current US$)
## 3447                                                                                                                                                                                                                                                   PS, official creditors (AMT, current US$)
## 3448                                                                                                                                                                                                                                                                CB, bonds (AMT, current US$)
## 3449                                                                                                                                                                                                                                                               PPG, bonds (AMT, current US$)
## 3450                                                                                                                                                                                                                                                                GG, bonds (AMT, current US$)
## 3451                                                                                                                                                                                                                                                               OPS, bonds (AMT, current US$)
## 3452                                                                                                                                                                                                                                                              PRVG, bonds (AMT, current US$)
## 3453                                                                                                                                                                                                                                                                PS, bonds (AMT, current US$)
## 3454                                                                                                                                                                                                                                                     CB, commercial banks (AMT, current US$)
## 3455                                                                                                                                                                                                                                                    PPG, commercial banks (AMT, current US$)
## 3456                                                                                                                                                                                                                                                     GG, commercial banks (AMT, current US$)
## 3457                                                                                                                                                                                                                                                    OPS, commercial banks (AMT, current US$)
## 3458                                                                                                                                                                                                                                                   PRVG, commercial banks (AMT, current US$)
## 3459                                                                                                                                                                                                                                                     PS, commercial banks (AMT, current US$)
## 3460                                                                                                                                                                                                                      Principal repayments, PPG and PNG private creditors (AMT, current US$)
## 3461                                                                                                                                                                                                                                                               PNG, bonds (AMT, current US$)
## 3462                                                                                                                                                                                                                                PNG, commercial banks and other creditors (AMT, current US$)
## 3463                                                                                                                                                                                                                                              CB, other private creditors (AMT, current US$)
## 3464                                                                                                                                                                                                                                             PPG, other private creditors (AMT, current US$)
## 3465                                                                                                                                                                                                                                              GG, other private creditors (AMT, current US$)
## 3466                                                                                                                                                                                                                                             OPS, other private creditors (AMT, current US$)
## 3467                                                                                                                                                                                                                                            PRVG, other private creditors (AMT, current US$)
## 3468                                                                                                                                                                                                                                              PS, other private creditors (AMT, current US$)
## 3469                                                                                                                                                                                         Principal repayments on external debt, private guaranteed by public sector (PPG) (AMT, current US$)
## 3470                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3471                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3472                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3473                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3474                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3475                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3476                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3477                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3478                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3479                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3480                                                                                                                                                                             Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3481                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3482                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3483                                                                                                                                                                                                                                                    CB, private creditors (AMT, current US$)
## 3484                                                                                                                                                                                                                                                   PPG, private creditors (AMT, current US$)
## 3485                                                                                                                                                                                                                                                    GG, private creditors (AMT, current US$)
## 3486                                                                                                                                                                                                                                                   OPS, private creditors (AMT, current US$)
## 3487                                                                                                                                                                                                                                                  PRVG, private creditors (AMT, current US$)
## 3488                                                                                                                                                                                                                                                    PS, private creditors (AMT, current US$)
## 3489                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3490                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3491                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3492                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3493                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3494                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3495                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3496                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3497                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3498                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3499                                                                                                                                                                                             Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3500                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3501                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3502                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Principal, USD
## 3503                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, All maturities, All instruments, Principal, Arrears, USD
## 3504                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Principal, USD
## 3505                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Principal, USD
## 3506                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Principal, USD
## 3507                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Principal, USD
## 3508                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Principal, USD
## 3509                                                                                                                                                                              Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Principal, USD
## 3510                                                                                                                                                                                            Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Principal, USD
## 3511                                                                                                                                                                              Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Principal, USD
## 3512                                                                                                                                                                                                                                                            Principal arrears, long-term DOD
## 3513                                                                                                                                                                                                                                                      Principal arrears, long-term DOD (US$)
## 3514                                                                                                                                                                                                                                         Principal arrears, official creditors (current US$)
## 3515                                                                                                                                                                                                                                          Principal arrears, private creditors (current US$)
## 3516                                                                                                                                                                                                                                                            Principal forgiven (current US$)
## 3517                                                                                                                                                                                                                                                         Principal rescheduled (current US$)
## 3518                                                                                                                                                                                                                                               Principal rescheduled, official (current US$)
## 3519                                                                                                                                                                                                                                                Principal rescheduled, private (current US$)
## 3520                                                                                                                                                                                                                                         Commitments, bilateral creditors (COM, current US$)
## 3521                                                                                                                                                                                                                              Commitments, public and publicly guaranteed (COM, current US$)
## 3522                                                                                                                                                                                                                                                        Commitments, IBRD (COM, current US$)
## 3523                                                                                                                                                                                                                                                         Commitments, IDA (COM, current US$)
## 3524                                                                                                                                                                                                                                      Commitments, multilateral creditors (COM, current US$)
## 3525                                                                                                                                                                                                                                          Commitments, official creditors (COM, current US$)
## 3526                                                                                                                                                                                                                                           Commitments, private creditors (COM, current US$)
## 3527                                                                                                                                                                                                                                                      Cross-currency valuation (current US$)
## 3528                                                                                                                                                                                                                                         Currency composition of PPG debt, Deutsche mark (%)
## 3529                                                                                                                                                                                                                                                  Currency composition of PPG debt, Euro (%)
## 3530                                                                                                                                                                                                                                          Currency composition of PPG debt, French franc (%)
## 3531                                                                                                                                                                                                                                          Currency composition of PPG debt, Japanese yen (%)
## 3532                                                                                                                                                                                                                                   Currency composition of PPG debt, Multiple currencies (%)
## 3533                                                                                                                                                                                                                                  Currency composition of PPG debt, all other currencies (%)
## 3534                                                                                                                                                                                                                                                   Currency composition of PPG debt, SDR (%)
## 3535                                                                                                                                                                                                                                           Currency composition of PPG debt, Swiss franc (%)
## 3536                                                                                                                                                                                                                                        Currency composition of PPG debt, Pound sterling (%)
## 3537                                                                                                                                                                                                                                          Currency composition of PPG debt, U.S. dollars (%)
## 3538                                                                                                                                                                                                                                                 Debt forgiveness or reduction (current US$)
## 3539                                                                                                                                                                                                                                                            CB, bilateral (DIS, current US$)
## 3540                                                                                                                                                                                                                                                           PPG, bilateral (DIS, current US$)
## 3541                                                                                                                                                                                                                                                            GG, bilateral (DIS, current US$)
## 3542                                                                                                                                                                                                                                                           OPS, bilateral (DIS, current US$)
## 3543                                                                                                                                                                                                                                                          PRVG, bilateral (DIS, current US$)
## 3544                                                                                                                                                                                                                                                            PS, bilateral (DIS, current US$)
## 3545                                                                                                                                                                                                                        Disbursements, Bilateral on nonconcessional terms (DIS, current US$)
## 3546                                                                                                                                                                                                                                               CB, bilateral concessional (DIS, current US$)
## 3547                                                                                                                                                                                                                                              PPG, bilateral concessional (DIS, current US$)
## 3548                                                                                                                                                                                                                                               GG, bilateral concessional (DIS, current US$)
## 3549                                                                                                                                                                                                                                              OPS, bilateral concessional (DIS, current US$)
## 3550                                                                                                                                                                                                                                             PRVG, bilateral concessional (DIS, current US$)
## 3551                                                                                                                                                                                                                                               PS, bilateral concessional (DIS, current US$)
## 3552                                                                                                                                                                                                                       Disbursements on external debt, central bank (PPG) (DIS, current US$)
## 3553                                                                                                                                                                                                                                                          Disbursements, Total (current US$)
## 3554                                                                                                                                                                                                          Disbursements on external debt, general government sector (PPG) (DIS, current US$)
## 3555                                                                                                                                                                                                                      Disbursements on external debt, public sector (PPG) (DIS, current US$)
## 3556                                                                                                                                                                                                                                                            IMF purchases (DIS, current US$)
## 3557                                                                                                                                                                                                                          Disbursements on external debt, long-term + IMF (DIS, current US$)
## 3558                                                                                                                                                                                                                                Disbursements on external debt, long-term (DIS, current US$)
## 3559                                                                                                                                                                                                                Disbursements on external debt, other public sector (PPG) (DIS, current US$)
## 3560                                                                                                                                                                                                              Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)
## 3561                                                                                                                                                                                                     Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)
## 3562                                                                                                                                                                                                                                                Disbursements, Short-term (DIS, current US$)
## 3563                                                                                                                                                                                                                                                                    IDA grants (current US$)
## 3564                                                                                                                                                                                                                                                                PPG, IBRD (DIS, current US$)
## 3565                                                                                                                                                                                                                                                                 PPG, IDA (DIS, current US$)
## 3566                                                                                                                                                                                                                                                         CB, multilateral (DIS, current US$)
## 3567                                                                                                                                                                                                                                                        PPG, multilateral (DIS, current US$)
## 3568                                                                                                                                                                                                                                                         GG, multilateral (DIS, current US$)
## 3569                                                                                                                                                                                                                                                        OPS, multilateral (DIS, current US$)
## 3570                                                                                                                                                                                                                                                       PRVG, multilateral (DIS, current US$)
## 3571                                                                                                                                                                                                                                                         PS, multilateral (DIS, current US$)
## 3572                                                                                                                                                                                                                Disbursements, PPG Multilateral creditors nonconcessional (DIS, current US$)
## 3573                                                                                                                                                                                                                                            CB, multilateral concessional (DIS, current US$)
## 3574                                                                                                                                                                                                                                           PPG, multilateral concessional (DIS, current US$)
## 3575                                                                                                                                                                                                                                            GG, multilateral concessional (DIS, current US$)
## 3576                                                                                                                                                                                                                                           OPS, multilateral concessional (DIS, current US$)
## 3577                                                                                                                                                                                                                                          PRVG, multilateral concessional (DIS, current US$)
## 3578                                                                                                                                                                                                                                            PS, multilateral concessional (DIS, current US$)
## 3579                                                                                                                                                                                                                                                   CB, official creditors (DIS, current US$)
## 3580                                                                                                                                                                                                                                                  PPG, official creditors (DIS, current US$)
## 3581                                                                                                                                                                                                                                                   GG, official creditors (DIS, current US$)
## 3582                                                                                                                                                                                                                                                  OPS, official creditors (DIS, current US$)
## 3583                                                                                                                                                                                                                                                 PRVG, official creditors (DIS, current US$)
## 3584                                                                                                                                                                                                                                                   PS, official creditors (DIS, current US$)
## 3585                                                                                                                                                                                                                                                                CB, bonds (DIS, current US$)
## 3586                                                                                                                                                                                                                                                               PPG, bonds (DIS, current US$)
## 3587                                                                                                                                                                                                                                                                GG, bonds (DIS, current US$)
## 3588                                                                                                                                                                                                                                                               OPS, bonds (DIS, current US$)
## 3589                                                                                                                                                                                                                                                              PRVG, bonds (DIS, current US$)
## 3590                                                                                                                                                                                                                                                                PS, bonds (DIS, current US$)
## 3591                                                                                                                                                                                                                                                     CB, commercial banks (DIS, current US$)
## 3592                                                                                                                                                                                                                                                    PPG, commercial banks (DIS, current US$)
## 3593                                                                                                                                                                                                                                                     GG, commercial banks (DIS, current US$)
## 3594                                                                                                                                                                                                                                                    OPS, commercial banks (DIS, current US$)
## 3595                                                                                                                                                                                                                                                   PRVG, commercial banks (DIS, current US$)
## 3596                                                                                                                                                                                                                                                     PS, commercial banks (DIS, current US$)
## 3597                                                                                                                                                                                                                                  Disbursements, PPG and PNG private creditors (current US$)
## 3598                                                                                                                                                                                                                                                               PNG, bonds (DIS, current US$)
## 3599                                                                                                                                                                                                                                PNG, commercial banks and other creditors (DIS, current US$)
## 3600                                                                                                                                                                                                                                              CB, other private creditors (DIS, current US$)
## 3601                                                                                                                                                                                                                                             PPG, other private creditors (DIS, current US$)
## 3602                                                                                                                                                                                                                                              GG, other private creditors (DIS, current US$)
## 3603                                                                                                                                                                                                                                             OPS, other private creditors (DIS, current US$)
## 3604                                                                                                                                                                                                                                            PRVG, other private creditors (DIS, current US$)
## 3605                                                                                                                                                                                                                                              PS, other private creditors (DIS, current US$)
## 3606                                                                                                                                                                                                Disbursements on external debt, private guaranteed by public sector (PPG) (DIS, current US$)
## 3607                                                                                                                                                                                                                                                    CB, private creditors (DIS, current US$)
## 3608                                                                                                                                                                                                                                                   PPG, private creditors (DIS, current US$)
## 3609                                                                                                                                                                                                                                                    GG, private creditors (DIS, current US$)
## 3610                                                                                                                                                                                                                                                   OPS, private creditors (DIS, current US$)
## 3611                                                                                                                                                                                                                                                  PRVG, private creditors (DIS, current US$)
## 3612                                                                                                                                                                                                                                                    PS, private creditors (DIS, current US$)
## 3613                                                                                                                                                                                                                                       External debt stocks, concessional (DOD, current US$)
## 3614                                                                                                                                                                                                                                                Concessional debt (% of total external debt)
## 3615                                                                                                                                                                                                                                                Debt on Concessional terms to GDP (% of GDP)
## 3616                                                                                                                                                                                                                                   Debt on Concessional terms to export ratio (% of exports)
## 3617                                                                                                                                                                                                                                                Debt on Non-concessional terms (current US$)
## 3618                                                                                                                                                                                                                                            Debt on Non-concessional terms to GDP (% of GDP)
## 3619                                                                                                                                                                                                                               Debt on Non-concessional terms to export ratio (% of exports)
## 3620                                                                                                                                                                                                                                                            CB, bilateral (DOD, current US$)
## 3621                                                                                                                                                                                                                                                           PPG, bilateral (DOD, current US$)
## 3622                                                                                                                                                                                                                                                            GG, bilateral (DOD, current US$)
## 3623                                                                                                                                                                                                                                                           OPS, bilateral (DOD, current US$)
## 3624                                                                                                                                                                                                                                                          PRVG, bilateral (DOD, current US$)
## 3625                                                                                                                                                                                                                                                            PS, bilateral (DOD, current US$)
## 3626                                                                                                                                                                                                                                               CB, bilateral concessional (DOD, current US$)
## 3627                                                                                                                                                                                                                                              PPG, bilateral concessional (DOD, current US$)
## 3628                                                                                                                                                                                                                                               GG, bilateral concessional (DOD, current US$)
## 3629                                                                                                                                                                                                                                              OPS, bilateral concessional (DOD, current US$)
## 3630                                                                                                                                                                                                                                             PRVG, bilateral concessional (DOD, current US$)
## 3631                                                                                                                                                                                                                                               PS, bilateral concessional (DOD, current US$)
## 3632                                                                                                                                                                                                   Debt outstanding and disbursed, PPG Bilateral on nonconcessional terms (DOD, current US$)
## 3633                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, USD
## 3634                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, USD
## 3635                                                                                                                                                                                        Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Currency and deposits, USD
## 3636                                                                                                                                                                                                        Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Currency and deposits, USD
## 3637                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Currency and deposits, USD
## 3638                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Currency and deposits, USD
## 3639                                                                                                                                                                                                                                 External debt stocks, central bank (PPG) (DOD, current US$)
## 3640                                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, Prin. and Int., USD
## 3641                                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Arrears, USD
## 3642                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD
## 3643                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Memo item, USD
## 3644                                                                                                                                                                                                                                              External debt stocks, total (DOD, current US$)
## 3645                                                                                                                                                                                                Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning of period, USD
## 3646                                                                                                                                                                                                          Ext. Assets in Debt Instruments, All Sectors, All maturities, All instruments, USD
## 3647                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, end of period, USD
## 3648                                                                                                                                                                                                 Gross Ext. Debt Pos., All Sectors, All maturities, All instruments,  Exchange rate chg, USD
## 3649                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning pos., USD
## 3650                                                                                                                                                                                                                   Net Ext. Debt Position, All Sectors, All maturities, All instruments, USD
## 3651                                                                                                                                                                                                  Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other chg in vol., USD
## 3652                                                                                                                                                                                                    Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other price chg, USD
## 3653                                                                                                                                                                                                                             Gross Ext. Debt Pos., All Sectors, All maturities, Arrears, USD
## 3654                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Transactions, USD
## 3655                                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD
## 3656                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning of period, USD
## 3657                                                                                                                                                                                        Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3658                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, end of period, USD
## 3659                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Exchange rate chg, USD
## 3660                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning pos., USD
## 3661                                                                                                                                                                                                 Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3662                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other chg in vol., USD
## 3663                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other price chg, USD
## 3664                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Transactions, USD
## 3665                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3666                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Diff. with Market Value, USD
## 3667                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Market Value, USD
## 3668                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Nominal Value, USD
## 3669                                                                                                                                                                                                                                          Total change in external debt stocks (current US$)
## 3670                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD
## 3671                                                                                                                                                                                                  Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD
## 3672                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD
## 3673                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Euro, USD
## 3674                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Yen, USD
## 3675                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other curr., USD
## 3676                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, All curr., USD
## 3677                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, US dollar, USD
## 3678                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Euro, USD
## 3679                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Yen, USD
## 3680                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Other curr., USD
## 3681                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, All curr., USD
## 3682                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, US dollar, USD
## 3683                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Euro, USD
## 3684                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Yen, USD
## 3685                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other curr., USD
## 3686                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, All curr., USD
## 3687                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, US dollar, USD
## 3688                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Euro, USD
## 3689                                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Yen, USD
## 3690                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Other curr., USD
## 3691                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, All curr., USD
## 3692                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, US dollar, USD
## 3693                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Euro, USD
## 3694                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Yen, USD
## 3695                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Other curr., USD
## 3696                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, All curr., USD
## 3697                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, US dollar, USD
## 3698                                                                                                                                                                Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD
## 3699                                                                                                                                                                                                   Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD
## 3700                                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Euro, USD
## 3701                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Other curr., USD
## 3702                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, All curr., USD
## 3703                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, US dollar, USD
## 3704                                                                                                                                                                                                        Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Yen, USD
## 3705                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning of period, USD
## 3706                                                                                                                                                                                                   Ext. Assets in Debt Instruments, General Government, All maturities, All instruments, USD
## 3707                                                                                                                                                                                              Gross Ext. Debt Pos., General Government , All maturities, All instruments, end of period, USD
## 3708                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Exchange rate chg, USD
## 3709                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning pos., USD
## 3710                                                                                                                                                                                                            Net Ext. Debt Position, General Government, All maturities, All instruments, USD
## 3711                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other chg in vol., USD
## 3712                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other price chg, USD
## 3713                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, All maturities, All instruments, Transactions, USD
## 3714                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, All maturities, All instruments, USD
## 3715                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Diff. with Market Value, USD
## 3716                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Market Value, USD
## 3717                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Nominal Value, USD
## 3718                                                                                                                                                                                              Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, USD
## 3719                                                                                                                                                                                       Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning of period, USD
## 3720                                                                                                                                                                                                 Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, All instruments, USD
## 3721                                                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, end of period, USD
## 3722                                                                                                                                                                                         Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Exchange rate chg, USD
## 3723                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning pos., USD
## 3724                                                                                                                                                                                                          Net Ext. Debt Position, DI: Intercom Lending, All maturities, All instruments, USD
## 3725                                                                                                                                                                                         Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other chg in vol., USD
## 3726                                                                                                                                                                                           Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other price chg, USD
## 3727                                                                                                                                                                                              Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Transactions, USD
## 3728                                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, USD
## 3729                                                                                                                                                                                                 Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Diff. with Market Value, USD
## 3730                                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Market Value, USD
## 3731                                                                                                                                                                                                           Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Nominal Value, USD
## 3732                                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD
## 3733                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning of period, USD
## 3734                                                                                                                                                                                                         Ext. Assets in Debt Instruments, Central Bank, All maturities, All instruments, USD
## 3735                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, end of period, USD
## 3736                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Exchange rate chg, USD
## 3737                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning pos., USD
## 3738                                                                                                                                                                                                                  Net Ext. Debt Position, Central Bank, All maturities, All instruments, USD
## 3739                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other chg in vol., USD
## 3740                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other price chg, USD
## 3741                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Transactions, USD
## 3742                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, USD
## 3743                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Diff. with Market Value, USD
## 3744                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Market Value, USD
## 3745                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Nominal Value, USD
## 3746                                                                                                                                                                                                       Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, USD
## 3747                                                                                                                                                                                                    Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, USD
## 3748                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning of period, USD
## 3749                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Other Sectors, All maturities, All instruments, USD
## 3750                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, end of period, USD
## 3751                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Exchange rate chg, USD
## 3752                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning pos., USD
## 3753                                                                                                                                                                                                                 Net Ext. Debt Position, Other Sectors, All maturities, All instruments, USD
## 3754                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other chg in vol., USD
## 3755                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other price chg, USD
## 3756                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Transactions, USD
## 3757                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, USD
## 3758                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Diff. with Market Value, USD
## 3759                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Market Value, USD
## 3760                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Nominal Value, USD
## 3761                                                                                                                                                                                                                         Debt outstanding and disbursed, Total per capita (DOD, current US$)
## 3762                                                                                                                                                                                                Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Diff. with Market Value, USD
## 3763                                                                                                                                                                                                           Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Market Value, USD
## 3764                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Nominal Value, USD
## 3765                                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD
## 3766                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Diff. with Market Value, USD
## 3767                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Market Value, USD
## 3768                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Nominal Value, USD
## 3769                                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD
## 3770                                                                                                                                                                                                               Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, USD
## 3771                                                                                                                                                                     Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD
## 3772                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD
## 3773                                                                                                                                                                                                                                     Debt outstanding and disbursed, Total to GDP (% of GDP)
## 3774                                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 3775                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Memo item, USD
## 3776                                                                                                                                                                                                                   External debt stocks (% of exports of goods, services and primary income)
## 3777                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, All instruments, Arrears, USD
## 3778                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Memo item, USD
## 3779                                                                                                                                                                                                                                                             External debt stocks (% of GNI)
## 3780                                                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Arrears, USD
## 3781                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Arrears, USD
## 3782                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Memo item, USD
## 3783                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Arrears, USD
## 3784                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Memo item, USD
## 3785                                                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD
## 3786                                                                                                                                                                                                                    External debt stocks, general government sector (PPG) (DOD, current US$)
## 3787                                                                                                                                                                                                                                External debt stocks, public sector (PPG) (DOD, current US$)
## 3788                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Euro, USD
## 3789                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Yen, USD
## 3790                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other curr., USD
## 3791                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, All curr., USD
## 3792                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, US dollar, USD
## 3793                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Beginning of period, USD
## 3794                                                                                                                                                                  Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD
## 3795                                                                                                                                                                     Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, end of period, USD
## 3796                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Exchange rate chg, USD
## 3797                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, Beginning pos., USD
## 3798                                                                                                                                                                           Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD
## 3799                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other chg in vol., USD
## 3800                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other price chg, USD
## 3801                                                                                                                                                                      Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Transactions, USD
## 3802                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3803                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3804                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3805                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Euro, USD
## 3806                                                                                                                                                                        Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Yen, USD
## 3807                                                                                                                                                                Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Other curr., USD
## 3808                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., All curr., USD
## 3809                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, US dollar, USD
## 3810                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent. , Beginning of period, USD
## 3811                                                                                                                                                                                 Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD
## 3812                                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., end of period, USD
## 3813                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Exchange rate chg, USD
## 3814                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt between fellow enterprises, Beginning pos., USD
## 3815                                                                                                                                                                                          Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD
## 3816                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other chg in vol., USD
## 3817                                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other price chg, USD
## 3818                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Transactions, USD
## 3819                                                                                                                                                                                                  Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., USD
## 3820                                                                                                                                                                               Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD
## 3821                                                                                                                                                                                               Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD
## 3822                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Euro, USD
## 3823                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Yen, USD
## 3824                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other curr., USD
## 3825                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., All curr., USD
## 3826                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., US dollar, USD
## 3827                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Beginning of period, USD
## 3828                                                                                                                                                                  Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD
## 3829                                                                                                                                                                     Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., end of period, USD
## 3830                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Exchange rate chg, USD
## 3831                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., Beginning pos., USD
## 3832                                                                                                                                                                           Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD
## 3833                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other chg in vol., USD
## 3834                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other price chg, USD
## 3835                                                                                                                                                                      Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Transactions, USD
## 3836                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3837                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3838                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3839                                                                                                                                                                                    Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, DI: Intercom Lending, USD
## 3840                                                                                                                                                                                                    Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, DI: Intercom Lending, USD
## 3841                                                                                                                                                                                                                                                        Use of IMF credit (DOD, current US$)
## 3842                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning of period, USD
## 3843                                                                                                                                                                                             Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3844                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, end of period, USD
## 3845                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Exchange rate chg, USD
## 3846                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning pos., USD
## 3847                                                                                                                                                                                                      Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3848                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other chg in vol., USD
## 3849                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other price chg, USD
## 3850                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Transactions, USD
## 3851                                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3852                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning of period, USD
## 3853                                                                                                                                                                                                        Ext. Assets in Debt Instruments, General Government, Long-term, Debt securities, USD
## 3854                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Debt securities, end of period, USD
## 3855                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Exchange rate chg, USD
## 3856                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning pos., USD
## 3857                                                                                                                                                                                                                 Net Ext. Debt Position, General Government, Long-term, Debt securities, USD
## 3858                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other chg in vol., USD
## 3859                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other price chg, USD
## 3860                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Transactions, USD
## 3861                                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, Debt securities, USD
## 3862                                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Debt securities, USD
## 3863                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning of period, USD
## 3864                                                                                                                                                                                                              Ext. Assets in Debt Instruments, Central Bank, Long-term, Debt securities, USD
## 3865                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, end of period, USD
## 3866                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Exchange rate chg, USD
## 3867                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning pos., USD
## 3868                                                                                                                                                                                                                       Net Ext. Debt Position, Central Bank, Long-term, Debt securities, USD
## 3869                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other chg in vol., USD
## 3870                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other price chg, USD
## 3871                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Transactions, USD
## 3872                                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, USD
## 3873                                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Debt securities, USD
## 3874                                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, Long-term, Debt securities, USD
## 3875                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning of period, USD
## 3876                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Other Sectors, Long-term, Debt securities, USD
## 3877                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, end of period, USD
## 3878                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Exchange rate chg, USD
## 3879                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning pos., USD
## 3880                                                                                                                                                                                                                      Net Ext. Debt Position, Other Sectors, Long-term, Debt securities, USD
## 3881                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other chg in vol., USD
## 3882                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other price chg, USD
## 3883                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Transactions, USD
## 3884                                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, USD
## 3885                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning of period, USD
## 3886                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits , USD
## 3887                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, end of period, USD
## 3888                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Exchange rate chg, USD
## 3889                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning pos., USD
## 3890                                                                                                                                                                                                Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD
## 3891                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other chg in vol., USD
## 3892                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other price chg, USD
## 3893                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Transactions, USD
## 3894                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD
## 3895                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning of period, USD
## 3896                                                                                                                                                                                                  Ext. Assets in Debt Instruments, General Government, Long-term, Currency and deposits, USD
## 3897                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, end of period, USD
## 3898                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Exchange rate chg, USD
## 3899                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning pos., USD
## 3900                                                                                                                                                                                                           Net Ext. Debt Position, General Government, Long-term, Currency and deposits, USD
## 3901                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other chg in vol., USD
## 3902                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other price chg, USD
## 3903                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Transactions, USD
## 3904                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, USD
## 3905                                                                                                                                                                                             Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Currency and deposits, USD
## 3906                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning of period, USD
## 3907                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Central Bank, Long-term, Currency and deposits, USD
## 3908                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, end of period, USD
## 3909                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Exchange rate chg, USD
## 3910                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning pos., USD
## 3911                                                                                                                                                                                                                 Net Ext. Debt Position, Central Bank, Long-term, Currency and deposits, USD
## 3912                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other chg in vol., USD
## 3913                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other price chg, USD
## 3914                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Transactions, USD
## 3915                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, USD
## 3916                                                                                                                                                                                                      Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Currency and deposits, USD
## 3917                                                                                                                                                                                                   Gross Ext. Debt Pos., Other financial corporations, Long-term, Currency and deposits, USD
## 3918                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning of period, USD
## 3919                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Other Sectors, Long-term, Currency and deposits, USD
## 3920                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, end of period, USD
## 3921                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Exchange rate chg, USD
## 3922                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning pos., USD
## 3923                                                                                                                                                                                                                Net Ext. Debt Position, Other Sectors, Long-term, Currency and deposits, USD
## 3924                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other chg in vol., USD
## 3925                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other price chg, USD
## 3926                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Transactions, USD
## 3927                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, USD
## 3928                                                                                                                                                                                                      Debt outstanding and disbursed, Long-term debt including IMF credit (DOD, current US$)
## 3929                                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning of period, USD
## 3930                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3931                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, end of period, USD
## 3932                                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Exchange rate chg, USD
## 3933                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning pos., USD
## 3934                                                                                                                                                                                                                Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3935                                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other chg in vol., USD
## 3936                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other price chg, USD
## 3937                                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Transactions, USD
## 3938                                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3939                                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning of period, USD
## 3940                                                                                                                                                                                                                  Ext. Assets in Debt Instruments, General Government, Long-term, Loans, USD
## 3941                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Loans, end of period, USD
## 3942                                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Loans, Exchange rate chg, USD
## 3943                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning pos., USD
## 3944                                                                                                                                                                                                                           Net Ext. Debt Position, General Government, Long-term, Loans, USD
## 3945                                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Loans, Other chg in vol., USD
## 3946                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Loans, Other price chg, USD
## 3947                                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Loans, Transactions, USD
## 3948                                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Loans, USD
## 3949                                                                                                                                                                                                             Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Loans, USD
## 3950                                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning of period, USD
## 3951                                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Central Bank, Long-term, Loans, USD
## 3952                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Loans, end of period, USD
## 3953                                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Exchange rate chg, USD
## 3954                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning pos., USD
## 3955                                                                                                                                                                                                                                 Net Ext. Debt Position, Central Bank, Long-term, Loans, USD
## 3956                                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other chg in vol., USD
## 3957                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other price chg, USD
## 3958                                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Transactions, USD
## 3959                                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Loans, USD
## 3960                                                                                                                                                                                                                      Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Loans, USD
## 3961                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other financial corporations, Long-term, Loans, USD
## 3962                                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning of period, USD
## 3963                                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Other Sectors, Long-term, Loans, USD
## 3964                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, end of period, USD
## 3965                                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Exchange rate chg, USD
## 3966                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning pos., USD
## 3967                                                                                                                                                                                                                                Net Ext. Debt Position, Other Sectors, Long-term, Loans, USD
## 3968                                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other chg in vol., USD
## 3969                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other price chg, USD
## 3970                                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Transactions, USD
## 3971                                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, USD
## 3972                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Beginning of period, USD
## 3973                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD
## 3974                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, end of period, USD
## 3975                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3976                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, Beginning pos., USD
## 3977                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD
## 3978                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other chg in vol., USD
## 3979                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other price chg, USD
## 3980                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Transactions, USD
## 3981                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, USD
## 3982                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Beginning of period, USD
## 3983                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Long-term, Other debt instruments, USD
## 3984                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, end of period, USD
## 3985                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3986                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Other debt instruments, Beginning pos., USD
## 3987                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Long-term, Other debt instruments, USD
## 3988                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other chg in vol., USD
## 3989                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other price chg, USD
## 3990                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Transactions, USD
## 3991                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, USD
## 3992                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Other debt liabilities, USD
## 3993                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Beginning of period, USD
## 3994                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Long-term, Other debt instruments, USD
## 3995                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, end of period, USD
## 3996                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3997                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Other debt instruments, Beginning pos., USD
## 3998                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Long-term, Other debt instruments, USD
## 3999                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other chg in vol., USD
## 4000                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other price chg, USD
## 4001                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Transactions, USD
## 4002                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, USD
## 4003                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Other debt liabilities, USD
## 4004                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Long-term, Other debt liabilities, USD
## 4005                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Beginning of period, USD
## 4006                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Long-term, Other debt instruments, USD
## 4007                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, end of period, USD
## 4008                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Exchange rate chg, USD
## 4009                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt instruments, Beginning pos., USD
## 4010                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Long-term, Other debt instruments, USD
## 4011                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Other chg in vol., USD
## 4012                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Other price chg, USD
## 4013                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Transactions, USD
## 4014                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, USD
## 4015                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Beginning of period, USD
## 4016                                                                                                                                                                                          Ext. Assets in Debt Instruments, General Government, Long-term, Special drawing rights (SDRs), USD
## 4017                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), end of period, USD
## 4018                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Exchange rate chg, USD
## 4019                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (SDRs), Beginning pos., USD
## 4020                                                                                                                                                                                                   Net Ext. Debt Position, General Government, Long-term, Special drawing rights (SDRs), USD
## 4021                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other chg in vol., USD
## 4022                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other price chg, USD
## 4023                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Transactions, USD
## 4024                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), USD
## 4025                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Beginning of period, USD
## 4026                                                                                                                                                                                                Ext. Assets in Debt Instruments, Central Bank, Long-term, Special drawing rights (SDRs), USD
## 4027                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), end of period, USD
## 4028                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Exchange rate chg, USD
## 4029                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (SDRs), Beginning pos., USD
## 4030                                                                                                                                                                                                         Net Ext. Debt Position, Central Bank, Long-term, Special drawing rights (SDRs), USD
## 4031                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other chg in vol., USD
## 4032                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other price chg, USD
## 4033                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Transactions, USD
## 4034                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), USD
## 4035                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning of period, USD
## 4036                                                                                                                                                                                   Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4037                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, end of period, USD
## 4038                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4039                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning pos., USD
## 4040                                                                                                                                                                                            Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4041                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other chg in vol., USD
## 4042                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other price chg, USD
## 4043                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Transactions, USD
## 4044                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4045                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning of period, USD
## 4046                                                                                                                                                                                              Ext. Assets in Debt Instruments, General Government, Long-term, Trade credit and advances, USD
## 4047                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, end of period, USD
## 4048                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4049                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning pos., USD
## 4050                                                                                                                                                                                                       Net Ext. Debt Position, General Government, Long-term, Trade credit and advances, USD
## 4051                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other chg in vol., USD
## 4052                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other price chg, USD
## 4053                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Transactions, USD
## 4054                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, USD
## 4055                                                                                                                                                                                         Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Trade credit and advances, USD
## 4056                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Beginning of period, USD
## 4057                                                                                                                                                                                                    Ext. Assets in Debt Instruments, Central Bank, Long-term, Trade credit and advances, USD
## 4058                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, end of period, USD
## 4059                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4060                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances , Beginning pos., USD
## 4061                                                                                                                                                                                                            Net Ext. Debt Position, Central Bank, Long-term, Trade credit and advances , USD
## 4062                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other chg in vol., USD
## 4063                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other price chg, USD
## 4064                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Transactions, USD
## 4065                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, USD
## 4066                                                                                                                                                                                                  Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Trade credit and advances, USD
## 4067                                                                                                                                                                                               Gross Ext. Debt Pos., Other financial corporations, Long-term, Trade credit and advances, USD
## 4068                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning of period, USD
## 4069                                                                                                                                                                                                   Ext. Assets in Debt Instruments, Other Sectors, Long-term, Trade credit and advances, USD
## 4070                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, end of period, USD
## 4071                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4072                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning pos., USD
## 4073                                                                                                                                                                                                            Net Ext. Debt Position, Other Sectors, Long-term, Trade credit and advances, USD
## 4074                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other chg in vol., USD
## 4075                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other price chg, USD
## 4076                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Transactions, USD
## 4077                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, USD
## 4078                                                                                                                                                                                                                                          External debt stocks, long-term (DOD, current US$)
## 4079                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning of period, USD
## 4080                                                                                                                                                                                             Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4081                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, end of period, USD
## 4082                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Exchange rate chg, USD
## 4083                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning pos., USD
## 4084                                                                                                                                                                                                      Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4085                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other chg in vol., USD
## 4086                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other price chg, USD
## 4087                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Transactions, USD
## 4088                                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4089                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Diff. with Market Value, USD
## 4090                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Market Value, USD
## 4091                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Nominal Value, USD
## 4092                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD
## 4093                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD
## 4094                                                                                                                                                                                                                                                   Long-Term External Debt (by debtor) (US$)
## 4095                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Euro, USD
## 4096                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Yen, USD
## 4097                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other curr., USD
## 4098                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, All curr., USD
## 4099                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, US dollar, USD
## 4100                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Euro, USD
## 4101                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Yen, USD
## 4102                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Other curr., USD
## 4103                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, All curr., USD
## 4104                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, US dollar, USD
## 4105                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Euro, USD
## 4106                                                                                                                                                                                                            Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Yen, USD
## 4107                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Other curr., USD
## 4108                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, All curr., USD
## 4109                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, US dollar, USD
## 4110                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Euro, USD
## 4111                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Yen, USD
## 4112                                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Other curr., USD
## 4113                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, All curr., USD
## 4114                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, US dollar, USD
## 4115                                                                                                                                                                     Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD
## 4116                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD
## 4117                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning of period, USD
## 4118                                                                                                                                                                                                        Ext. Assets in Debt Instruments, General Government, Long-term, All instruments, USD
## 4119                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, All instruments, end of period, USD
## 4120                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, All instruments, Exchange rate chg, USD
## 4121                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning pos., USD
## 4122                                                                                                                                                                                                                 Net Ext. Debt Position, General Government, Long-term, All instruments, USD
## 4123                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other chg in vol., USD
## 4124                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other price chg, USD
## 4125                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, All instruments, Transactions, USD
## 4126                                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, All instruments, USD
## 4127                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Diff. with Market Value, USD
## 4128                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Market Value, USD
## 4129                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Nominal Value, USD
## 4130                                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, All instruments, USD
## 4131                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning of period, USD
## 4132                                                                                                                                                                                                              Ext. Assets in Debt Instruments, Central Bank, Long-term, All instruments, USD
## 4133                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, end of period, USD
## 4134                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Exchange rate chg, USD
## 4135                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning pos., USD
## 4136                                                                                                                                                                                                                       Net Ext. Debt Position, Central Bank, Long-term, All instruments, USD
## 4137                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other chg in vol., USD
## 4138                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other price chg, USD
## 4139                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Transactions, USD
## 4140                                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, USD
## 4141                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Diff. with Market Value, USD
## 4142                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Market Value, USD
## 4143                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Nominal Value, USD
## 4144                                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, All instruments, USD
## 4145                                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, Long-term, All instruments, USD
## 4146                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning of period, USD
## 4147                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Other Sectors, Long-term, All instruments, USD
## 4148                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, end of period, USD
## 4149                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Exchange rate chg, USD
## 4150                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning pos., USD
## 4151                                                                                                                                                                                                                      Net Ext. Debt Position, Other Sectors, Long-term, All instruments, USD
## 4152                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other chg in vol., USD
## 4153                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other price chg, USD
## 4154                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Transactions, USD
## 4155                                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, USD
## 4156                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Diff. with Market Value, USD
## 4157                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Market Value, USD
## 4158                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Nominal Value, USD
## 4159                                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD
## 4160                                                                                                                                                                                   Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, Memo item, USD
## 4161                                                                                                                                                                                                   Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, Memo item, USD
## 4162                                                                                                                                                                                                                                                            Present value of debt (% of GNP)
## 4163                                                                                                                                                                                                                                  Present value of debt (% of exports of goods and services)
## 4164                                                                                                                                                                                                                          External debt stocks, other public sector (PPG) (DOD, current US$)
## 4165                                                                                                                                                                                                                        External debt stocks, private nonguaranteed (PNG) (DOD, current US$)
## 4166                                                                                                                                                                                             Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, Arrears, USD
## 4167                                                                                                                                                                                          Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Long-term, All instruments, USD
## 4168                                                                                                                                                                                         Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Short-term, All instruments, USD
## 4169                                                                                                                                                                                     Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, All instruments, USD
## 4170                                                                                                                                                                                                                                             Private nonguaranteed debt (% of external debt)
## 4171                                                                                                                                                                  Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD
## 4172                                                                                                                                                                                Public and Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4173                                                                                                                                                                      Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4174                                                                                                                                                                                                               External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)
## 4175                                                                                                                                                                              Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4176                                                                                                                                                                   Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4177                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning of period, USD
## 4178                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4179                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, end of period, USD
## 4180                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Exchange rate chg, USD
## 4181                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning pos., USD
## 4182                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4183                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other chg in vol., USD
## 4184                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other price chg, USD
## 4185                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Transactions, USD
## 4186                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4187                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning of period, USD
## 4188                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Short-term, Currency and deposits, USD
## 4189                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, end of period, USD
## 4190                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Exchange rate chg, USD
## 4191                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning pos., USD
## 4192                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Short-term, Currency and deposits, USD
## 4193                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other chg in vol., USD
## 4194                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other price chg, USD
## 4195                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Transactions, USD
## 4196                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, USD
## 4197                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Currency and deposits, USD
## 4198                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning of period, USD
## 4199                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Short-term, Currency and deposits, USD
## 4200                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, end of period, USD
## 4201                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Exchange rate chg, USD
## 4202                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning pos., USD
## 4203                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Short-term, Currency and deposits, USD
## 4204                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other chg in vol., USD
## 4205                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other price chg, USD
## 4206                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Transactions, USD
## 4207                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, USD
## 4208                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Currency and deposits, USD
## 4209                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Short-term, Currency and deposits, USD
## 4210                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning of period, USD
## 4211                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Short-term, Currency and deposits, USD
## 4212                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, end of period, USD
## 4213                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Exchange rate chg, USD
## 4214                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning pos., USD
## 4215                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Short-term, Currency and deposits, USD
## 4216                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other chg in vol., USD
## 4217                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other price chg, USD
## 4218                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Transactions, USD
## 4219                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, USD
## 4220                                                                                                                                                                                                                                       Use of IMF credit, SDR allocations (DOD, current US$)
## 4221                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Beginning of period, USD
## 4222                                                                                                                                                                                     Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD
## 4223                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, end of period, USD
## 4224                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4225                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, Beginning pos., USD
## 4226                                                                                                                                                                                              Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD
## 4227                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other chg in vol., USD
## 4228                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other price chg, USD
## 4229                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Transactions, USD
## 4230                                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, USD
## 4231                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Beginning of period, USD
## 4232                                                                                                                                                                                                Ext. Assets in Debt Instruments, General Government, Short-term, Other debt instruments, USD
## 4233                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, end of period, USD
## 4234                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4235                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Other debt instruments, Beginning pos., USD
## 4236                                                                                                                                                                                                         Net Ext. Debt Position, General Government, Short-term, Other debt instruments, USD
## 4237                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other chg in vol., USD
## 4238                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other price chg, USD
## 4239                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Transactions, USD
## 4240                                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, USD
## 4241                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Beginning of period, USD
## 4242                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Central Bank, Short-term, Other debt instruments, USD
## 4243                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, end of period, USD
## 4244                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4245                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Other debt instruments, Beginning pos., USD
## 4246                                                                                                                                                                                                               Net Ext. Debt Position, Central Bank, Short-term, Other debt instruments, USD
## 4247                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other chg in vol., USD
## 4248                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other price chg, USD
## 4249                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Transactions, USD
## 4250                                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, USD
## 4251                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Beginning of period, USD
## 4252                                                                                                                                                                                                     Ext. Assets in Debt Instruments, Other Sectors, Short-term, Other debt instruments, USD
## 4253                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, end of period, USD
## 4254                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4255                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt instruments, Beginning pos., USD
## 4256                                                                                                                                                                                                              Net Ext. Debt Position, Other Sectors, Short-term, Other debt instruments, USD
## 4257                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other chg in vol., USD
## 4258                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other price chg, USD
## 4259                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Transactions, USD
## 4260                                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, USD
## 4261                                                                                                                                                                                                                                         External debt stocks, short-term (DOD, current US$)
## 4262                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning of period, USD
## 4263                                                                                                                                                                                            Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4264                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, end of period, USD
## 4265                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Exchange rate chg, USD
## 4266                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning pos., USD
## 4267                                                                                                                                                                                                     Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4268                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other chg in vol., USD
## 4269                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other price chg, USD
## 4270                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Transactions, USD
## 4271                                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4272                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Diff. with Market Value, USD
## 4273                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Market Value, USD
## 4274                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Nominal Value, USD
## 4275                                                                                                                                                                   Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD
## 4276                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD
## 4277                                                                                                                                                                                                                                                              Short-Term External Debt (US$)
## 4278                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Euro, USD
## 4279                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Yen, USD
## 4280                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other curr., USD
## 4281                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, All curr., USD
## 4282                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, US dollar, USD
## 4283                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Euro, USD
## 4284                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Yen, USD
## 4285                                                                                                                                                                                             Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Other curr., USD
## 4286                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, All curr., USD
## 4287                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, US dollar, USD
## 4288                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Euro, USD
## 4289                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Yen, USD
## 4290                                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Other curr., USD
## 4291                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, All curr., USD
## 4292                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, US dollar, USD
## 4293                                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Euro, USD
## 4294                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Yen, USD
## 4295                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Other curr., USD
## 4296                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, All curr., USD
## 4297                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, US dollar, USD
## 4298                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD
## 4299                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD
## 4300                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning of period, USD
## 4301                                                                                                                                                                                                       Ext. Assets in Debt Instruments, General Government, Short-term, All instruments, USD
## 4302                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, All instruments, end of period, USD
## 4303                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, All instruments, Exchange rate chg, USD
## 4304                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning pos., USD
## 4305                                                                                                                                                                                                                Net Ext. Debt Position, General Government, Short-term, All instruments, USD
## 4306                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other chg in vol., USD
## 4307                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other price chg, USD
## 4308                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, All instruments, Transactions, USD
## 4309                                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, All instruments, USD
## 4310                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Diff. with Market Value, USD
## 4311                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Market Value, USD
## 4312                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Nominal Value, USD
## 4313                                                                                                                                                                                                  Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, All instruments, USD
## 4314                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning of period, USD
## 4315                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Central Bank, Short-term, All instruments, USD
## 4316                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, end of period, USD
## 4317                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Exchange rate chg, USD
## 4318                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning pos., USD
## 4319                                                                                                                                                                                                                      Net Ext. Debt Position, Central Bank, Short-term, All instruments, USD
## 4320                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other chg in vol., USD
## 4321                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other price chg, USD
## 4322                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Transactions, USD
## 4323                                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, USD
## 4324                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Diff. with Market Value, USD
## 4325                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Market Value, USD
## 4326                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Nominal Value, USD
## 4327                                                                                                                                                                                                           Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, All instruments, USD
## 4328                                                                                                                                                                                                        Gross Ext. Debt Pos., Other financial corporations, Short-term, All instruments, USD
## 4329                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning of period, USD
## 4330                                                                                                                                                                                                            Ext. Assets in Debt Instruments, Other Sectors, Short-term, All instruments, USD
## 4331                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, end of period, USD
## 4332                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Exchange rate chg, USD
## 4333                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning pos., USD
## 4334                                                                                                                                                                                                                     Net Ext. Debt Position, Other Sectors, Short-term, All instruments, USD
## 4335                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other chg in vol., USD
## 4336                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other price chg, USD
## 4337                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Transactions, USD
## 4338                                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, USD
## 4339                                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD
## 4340                                                                                                                                                                                                                                                       Short-term debt (% of total reserves)
## 4341                                                                                                                                                                                  Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, Memo item, USD
## 4342                                                                                                                                                                                                  Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, Memo item, USD
## 4343                                                                                                                                                                                                                        Short-term debt (% of exports of goods, services and primary income)
## 4344                                                                                                                                                                                                                                                  Short-term debt (% of total external debt)
## 4345                                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning of period, USD
## 4346                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4347                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, end of period, USD
## 4348                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Exchange rate chg, USD
## 4349                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning pos., USD
## 4350                                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4351                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other chg in vol., USD
## 4352                                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other price chg, USD
## 4353                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Transactions, USD
## 4354                                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4355                                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning of period, USD
## 4356                                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Short-term, Loans, USD
## 4357                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Loans, end of period, USD
## 4358                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Loans, Exchange rate chg, USD
## 4359                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning pos., USD
## 4360                                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Short-term, Loans, USD
## 4361                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Loans, Other chg in vol., USD
## 4362                                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Loans, Other price chg, USD
## 4363                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Loans, Transactions, USD
## 4364                                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Loans, USD
## 4365                                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Loans, USD
## 4366                                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning of period, USD
## 4367                                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Short-term, Loans, USD
## 4368                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Loans, end of period, USD
## 4369                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Exchange rate chg, USD
## 4370                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning pos., USD
## 4371                                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Short-term, Loans, USD
## 4372                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other chg in vol., USD
## 4373                                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other price chg, USD
## 4374                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Transactions, USD
## 4375                                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Loans, USD
## 4376                                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Loans, USD
## 4377                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Short-term, Loans, USD
## 4378                                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning of period, USD
## 4379                                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Short-term, Loans, USD
## 4380                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, end of period, USD
## 4381                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Exchange rate chg, USD
## 4382                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning pos., USD
## 4383                                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Short-term, Loans, USD
## 4384                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other chg in vol., USD
## 4385                                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other price chg, USD
## 4386                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Transactions, USD
## 4387                                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, USD
## 4388                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning of period, USD
## 4389                                                                                                                                                                                            Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4390                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, end of period, USD
## 4391                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Exchange rate chg, USD
## 4392                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning pos., USD
## 4393                                                                                                                                                                                                     Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4394                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other chg in vol., USD
## 4395                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other price chg, USD
## 4396                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Transactions, USD
## 4397                                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4398                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning of period, USD
## 4399                                                                                                                                                                                                       Ext. Assets in Debt Instruments, General Government, Short-term, Debt securities, USD
## 4400                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Debt securities, end of period, USD
## 4401                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Exchange rate chg, USD
## 4402                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning pos., USD
## 4403                                                                                                                                                                                                                Net Ext. Debt Position, General Government, Short-term, Debt securities, USD
## 4404                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other chg in vol., USD
## 4405                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other price chg, USD
## 4406                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Transactions, USD
## 4407                                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, Debt securities, USD
## 4408                                                                                                                                                                                                  Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Debt securities, USD
## 4409                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning of period, USD
## 4410                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Central Bank, Short-term, Debt securities, USD
## 4411                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, end of period, USD
## 4412                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Exchange rate chg, USD
## 4413                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning pos., USD
## 4414                                                                                                                                                                                                                      Net Ext. Debt Position, Central Bank, Short-term, Debt securities, USD
## 4415                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other chg in vol., USD
## 4416                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other price chg, USD
## 4417                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Transactions, USD
## 4418                                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, USD
## 4419                                                                                                                                                                                                           Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Debt securities, USD
## 4420                                                                                                                                                                                                        Gross Ext. Debt Pos., Other financial corporations, Short-term, Debt securities, USD
## 4421                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning of period, USD
## 4422                                                                                                                                                                                                            Ext. Assets in Debt Instruments, Other Sectors, Short-term, Debt securities, USD
## 4423                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, end of period, USD
## 4424                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Exchange rate chg, USD
## 4425                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning pos., USD
## 4426                                                                                                                                                                                                                     Net Ext. Debt Position, Other Sectors, Short-term, Debt securities, USD
## 4427                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other chg in vol., USD
## 4428                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other price chg, USD
## 4429                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Transactions, USD
## 4430                                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, USD
## 4431                                                                                                                                                                                           Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Other debt liabilities, USD
## 4432                                                                                                                                                                                                    Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Other debt liabilities, USD
## 4433                                                                                                                                                                                                 Gross Ext. Debt Pos., Other financial corporations, Short-term, Other debt liabilities, USD
## 4434                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning of period, USD
## 4435                                                                                                                                                                                  Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4436                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, end of period, USD
## 4437                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4438                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning pos., USD
## 4439                                                                                                                                                                                           Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4440                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other chg in vol., USD
## 4441                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other price chg, USD
## 4442                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Transactions, USD
## 4443                                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4444                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning of period, USD
## 4445                                                                                                                                                                                             Ext. Assets in Debt Instruments, General Government, Short-term, Trade credit and advances, USD
## 4446                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, end of period, USD
## 4447                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4448                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning pos., USD
## 4449                                                                                                                                                                                                      Net Ext. Debt Position, General Government, Short-term, Trade credit and advances, USD
## 4450                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other chg in vol., USD
## 4451                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other price chg, USD
## 4452                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Transactions, USD
## 4453                                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, USD
## 4454                                                                                                                                                                                        Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Trade credit and advances, USD
## 4455                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning of period, USD
## 4456                                                                                                                                                                                                   Ext. Assets in Debt Instruments, Central Bank, Short-term, Trade credit and advances, USD
## 4457                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, end of period, USD
## 4458                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4459                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning pos., USD
## 4460                                                                                                                                                                                                            Net Ext. Debt Position, Central Bank, Short-term, Trade credit and advances, USD
## 4461                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other chg in vol., USD
## 4462                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other price chg, USD
## 4463                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Transactions, USD
## 4464                                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, USD
## 4465                                                                                                                                                                                                 Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Trade credit and advances, USD
## 4466                                                                                                                                                                                              Gross Ext. Debt Pos., Other financial corporations, Short-term, Trade credit and advances, USD
## 4467                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning of period, USD
## 4468                                                                                                                                                                                                  Ext. Assets in Debt Instruments, Other Sectors, Short-term, Trade credit and advances, USD
## 4469                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, end of period, USD
## 4470                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4471                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning pos., USD
## 4472                                                                                                                                                                                                           Net Ext. Debt Position, Other Sectors, Short-term, Trade credit and advances, USD
## 4473                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other chg in vol., USD
## 4474                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other price chg, USD
## 4475                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Transactions, USD
## 4476                                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, USD
## 4477                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Diff. with Market Value, USD
## 4478                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Market Value, USD
## 4479                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Nominal Value, USD
## 4480                                                                                                                                                                   Ext. Assets in Debt Instruments, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4481                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD
## 4482                                                                                                                                                                            Net Ext. Debt Position, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4483                                                                                                                                                                         Ext. Assets in Debt Instruments, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4484                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD
## 4485                                                                                                                                                                                  Net Ext. Debt Position, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4486                                                                                                                                                                                                        Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Loans, USD
## 4487                                                                                                                                                                                                                        Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Loans, USD
## 4488                                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Loans, USD
## 4489                                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Loans, USD
## 4490                                                                                                                                                                                                                                                                        External Debt, total
## 4491                                                                                                                                                                                                                                                       Debt forgiveness grants (current US$)
## 4492                                                                                                                                                                                                                                                                PPG, IBRD (DOD, current US$)
## 4493                                                                                                                                                                                                                                                                 PPG, IDA (DOD, current US$)
## 4494                                                                                                                                                                                                                                                         CB, multilateral (DOD, current US$)
## 4495                                                                                                                                                                                                                                                        PPG, multilateral (DOD, current US$)
## 4496                                                                                                                                                                                                                                                         GG, multilateral (DOD, current US$)
## 4497                                                                                                                                                                                                                                                        OPS, multilateral (DOD, current US$)
## 4498                                                                                                                                                                                                                                                       PRVG, multilateral (DOD, current US$)
## 4499                                                                                                                                                                                                                                                         PS, multilateral (DOD, current US$)
## 4500                                                                                                                                                                                                                                                Multilateral debt (% of total external debt)
## 4501                                                                                                                                                                                                                                            CB, multilateral concessional (DOD, current US$)
## 4502                                                                                                                                                                                                                                           PPG, multilateral concessional (DOD, current US$)
## 4503                                                                                                                                                                                                                                            GG, multilateral concessional (DOD, current US$)
## 4504                                                                                                                                                                                                                                           OPS, multilateral concessional (DOD, current US$)
## 4505                                                                                                                                                                                                                                          PRVG, multilateral concessional (DOD, current US$)
## 4506                                                                                                                                                                                                                                            PS, multilateral concessional (DOD, current US$)
## 4507                                                                                                                                                                                                Debt outstanding and disbursed, PPG Multilateral on nonconcessional terms (DOD, current US$)
## 4508                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, USD
## 4509                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, USD
## 4510                                                                                                                                                                                                                                               IBRD loans and IDA credits (DOD, current US$)
## 4511                                                                                                                                                                                                                                                   CB, official creditors (DOD, current US$)
## 4512                                                                                                                                                                                                                                                  PPG, official creditors (DOD, current US$)
## 4513                                                                                                                                                                                         Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4514                                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD
## 4515                                                                                                                                                                                                                                                   GG, official creditors (DOD, current US$)
## 4516                                                                                                                                                                                                                                                  OPS, official creditors (DOD, current US$)
## 4517                                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4518                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4519                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Interest, USD
## 4520                                                                                                                                                                                      Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Principal, USD
## 4521                                                                                                                                                                                                                                                 PRVG, official creditors (DOD, current US$)
## 4522                                                                                                                                                                                                                                                   PS, official creditors (DOD, current US$)
## 4523                                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4524                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4525                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Interest, USD
## 4526                                                                                                                                                                                                      Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Principal, USD
## 4527                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Other debt liabilities, USD
## 4528                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Other debt liabilities, USD
## 4529                                                                                                                                                                                      Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Other debt liabilities, USD
## 4530                                                                                                                                                                                                      Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Other debt liabilities, USD
## 4531                                                                                                                                                                                                                                                                CB, bonds (DOD, current US$)
## 4532                                                                                                                                                                                                                                                               PPG, bonds (DOD, current US$)
## 4533                                                                                                                                                                                                                                                                GG, bonds (DOD, current US$)
## 4534                                                                                                                                                                                                                                                               OPS, bonds (DOD, current US$)
## 4535                                                                                                                                                                                                                                                              PRVG, bonds (DOD, current US$)
## 4536                                                                                                                                                                                                                                                                PS, bonds (DOD, current US$)
## 4537                                                                                                                                                                                                                                                     CB, commercial banks (DOD, current US$)
## 4538                                                                                                                                                                                                                                                    PPG, commercial banks (DOD, current US$)
## 4539                                                                                                                                                                                                                                                     GG, commercial banks (DOD, current US$)
## 4540                                                                                                                                                                                                                                                    OPS, commercial banks (DOD, current US$)
## 4541                                                                                                                                                                                                                                                   PRVG, commercial banks (DOD, current US$)
## 4542                                                                                                                                                                                                                                                     PS, commercial banks (DOD, current US$)
## 4543                                                                                                                                                                  Public and Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4544                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD
## 4545                                                                                                                                                                                 Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD
## 4546                                                                                                                                                                             Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4547                                                                                                                                                                                                  Public Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD
## 4548                                                                                                                                                                                                 Public Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD
## 4549                                                                                                                                                                                             Public Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4550                                                                                                                                                                                                            Debt outstanding and disbursed, PPG and PNG private creditors (DOD, current US$)
## 4551                                                                                                                                                                                                                                                               PNG, bonds (DOD, current US$)
## 4552                                                                                                                                                                                                                                PNG, commercial banks and other creditors (DOD, current US$)
## 4553                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD
## 4554                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD
## 4555                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD
## 4556                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD
## 4557                                                                                                                                                                                 Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD
## 4558                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD
## 4559                                                                                                                                                                            Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD
## 4560                                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, USD
## 4561                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Currency and deposits , USD
## 4562                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Currency and deposits , USD
## 4563                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD
## 4564                                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD
## 4565                                                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Loans, USD
## 4566                                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Loans, USD
## 4567                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD
## 4568                                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, USD
## 4569                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD
## 4570                                                                                                                                                                                      Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD
## 4571                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD
## 4572                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD
## 4573                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD
## 4574                                                                                                                                                                                                                                              CB, other private creditors (DOD, current US$)
## 4575                                                                                                                                                                                                                                             PPG, other private creditors (DOD, current US$)
## 4576                                                                                                                                                                                                                                              GG, other private creditors (DOD, current US$)
## 4577                                                                                                                                                                                                                                             OPS, other private creditors (DOD, current US$)
## 4578                                                                                                                                                                                                                                            PRVG, other private creditors (DOD, current US$)
## 4579                                                                                                                                                                                                                                              PS, other private creditors (DOD, current US$)
## 4580                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD
## 4581                                                                                                                                                                                             Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD
## 4582                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD
## 4583                                                                                                                                                                                                          External debt stocks, private guaranteed by public sector (PPG) (DOD, current US$)
## 4584                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD
## 4585                                                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD
## 4586                                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD
## 4587                                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD
## 4588                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD
## 4589                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD
## 4590                                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD
## 4591                                                                                                                                                                                                                           External debt stocks, long-term private sector (DOD, current US$)
## 4592                                                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, USD
## 4593                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD
## 4594                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD
## 4595                                                                                                                                                                                           Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4596                                                                                                                                                                                         Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4597                                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Long-term, DI: Intercom. Lending, USD
## 4598                                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD
## 4599                                                                                                                                                                                                   Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD
## 4600                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 4601                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD
## 4602                                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., Long-term, All instruments, USD
## 4603                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD
## 4604                                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Short-term, All instruments, USD
## 4605                                                                                                                                                                                                          Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD
## 4606                                                                                                                                                                                                                                                    CB, private creditors (DOD, current US$)
## 4607                                                                                                                                                                                                                                                   PPG, private creditors (DOD, current US$)
## 4608                                                                                                                                                                                                                                                    GG, private creditors (DOD, current US$)
## 4609                                                                                                                                                                                                                                                   OPS, private creditors (DOD, current US$)
## 4610                                                                                                                                                                                                                                                  PRVG, private creditors (DOD, current US$)
## 4611                                                                                                                                                                                                                                                    PS, private creditors (DOD, current US$)
## 4612                                                                                                                                                                                                          Public Sector Ext. Debt Pos., Long-term, Special drawing rights (allocations), USD
## 4613                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD
## 4614                                                                                                                                                                                     Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD
## 4615                                                                                                                                                                                    Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD
## 4616                                                                                                                                                                                Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD
## 4617                                                                                                                                                                                                 Public Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD
## 4618                                                                                                                                                                                                Public Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD
## 4619                                                                                                                                                                                            Public Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD
## 4620                                                                                                                                                                                                                               Public Sector Ext. Debt Pos., Long-term, Debt securities, USD
## 4621                                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD
## 4622                                                                                                                                                                                                                            External debt stocks, long-term public sector (DOD, current US$)
## 4623                                                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, USD
## 4624                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD
## 4625                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD
## 4626                                                                                                                                                                                                           Public Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4627                                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD
## 4628                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., All maturities, DI: Intercom. Lending, USD
## 4629                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD
## 4630                                                                                                                                                                                                                   Public Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD
## 4631                                                                                                                                                                                                               Public Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 4632                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD
## 4633                                                                                                                                                                                                                               Public Sector Ext. Debt Pos., Long-term, All instruments, USD
## 4634                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD
## 4635                                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Short-term, All instruments, USD
## 4636                                                                                                                                                                                                                          Public Sector Ext. Debt Pos., All maturities, All instruments, USD
## 4637                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Long-term, Currency and deposits , USD
## 4638                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Short-term, Currency and deposits , USD
## 4639                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD
## 4640                                                                                                                                                                                                                Public Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD
## 4641                                                                                                                                                                                                                                         Public Sector Ext. Debt Pos., Long-term, Loans, USD
## 4642                                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Short-term, Loans, USD
## 4643                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD
## 4644                                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Short-term, Debt securities, USD
## 4645                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD
## 4646                                                                                                                                                                                                      Public Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD
## 4647                                                                                                                                                                                                  Public Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD
## 4648                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD
## 4649                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD
## 4650                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD
## 4651                                                                                                                                                                                                             Public Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD
## 4652                                                                                                                                                                                                         Public Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD
## 4653                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD
## 4654                                                                                                                                                                                                                     Public Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD
## 4655                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD
## 4656                                                                                                                                                                                                     Public Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD
## 4657                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD
## 4658                                                                                                                                                                                                Public Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD
## 4659                                                                                                                                                                                                                                                                 Present value of debt (US$)
## 4660                                                                                                                                                                                                                                                Present value of external debt (current US$)
## 4661                                                                                                                                                                                                         Present value of external debt (% of exports of goods, services and primary income)
## 4662                                                                                                                                                                                                                                                   Present value of external debt (% of GNI)
## 4663                                                                                                                                                                                                                                                  Present value to nominal value of debt (%)
## 4664                                                                                                                                                                                                                                      Residual, debt stock-flow reconciliation (current US$)
## 4665                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Special drawing rights (allocations), USD
## 4666                                                                                                                                                                                    Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Trade credit and advances, USD
## 4667                                                                                                                                                                                                    Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Trade credit and advances, USD
## 4668                                                                                                                                                                                   Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Trade credit and advances, USD
## 4669                                                                                                                                                                                                   Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Trade credit and advances, USD
## 4670                                                                                                                                                                                                                                      External debt stocks, variable rate (DOD, current US$)
## 4671                                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Arrears, USD
## 4672                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD
## 4673                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, Debt securities, Memo item, USD
## 4674                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 4675                                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, USD
## 4676                                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, USD
## 4677                                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, USD
## 4678                                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, USD
## 4679                                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, Debt securities, Memo item, USD
## 4680                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, Arrears, USD
## 4681                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, All maturities, Debt securities, Memo item, USD
## 4682                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, Arrears, USD
## 4683                                                                                                                                                                                                  Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, Arrears, USD
## 4684                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, Debt securities, Memo item, USD
## 4685                                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, Arrears, USD
## 4686                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, Debt securities, Memo item, USD
## 4687                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Reserve related liabilities, USD
## 4688                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of DI ent. to dir. investors, USD
## 4689                                                                                                                                                                              Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. to fellow ent., USD
## 4690                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of dir. investors to DI ent., USD
## 4691                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Debt securities, USD
## 4692                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Debt securities, USD
## 4693                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Debt securities, USD
## 4694                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Debt securities, USD
## 4695                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4696                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4697                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4698                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4699                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Loans, USD
## 4700                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Loans, USD
## 4701                                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Loans, USD
## 4702                                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Loans, USD
## 4703                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4704                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4705                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4706                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4707                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4708                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4709                                                                                                                                                                                  Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4710                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4711                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, All instruments, USD
## 4712                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, All instruments, USD
## 4713                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, All instruments, USD
## 4714                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, All instruments, USD
## 4715                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Currency and deposits, USD
## 4716                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Currency and deposits, USD
## 4717                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Currency and deposits, USD
## 4718                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Currency and deposits, USD
## 4719                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Other debt liabilities, USD
## 4720                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Other debt liabilities, USD
## 4721                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Other debt liabilities, USD
## 4722                                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Other debt liabilities, USD
## 4723                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, All instruments, USD
## 4724                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, All instruments, USD
## 4725                                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, All instruments, USD
## 4726                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, All instruments, USD
## 4727                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, All instruments, USD
## 4728                                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, USD
## 4729                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Loans, USD
## 4730                                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Loans, USD
## 4731                                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Loans, USD
## 4732                                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Loans, USD
## 4733                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Debt securities, USD
## 4734                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Debt securities, USD
## 4735                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Debt securities, USD
## 4736                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Debt securities, USD
## 4737                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Trade credit and advances, USD
## 4738                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Trade credit and advances, USD
## 4739                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Trade credit and advances, USD
## 4740                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Trade credit and advances, USD
## 4741                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of DI ent. to dir. investors, USD
## 4742                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. to fellow ent., USD
## 4743                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of dir. investors to DI ent., USD
## 4744                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, All instruments, USD
## 4745                                                                                                                                                                                                                                                                  Debt buyback (current US$)
## 4746                                                                                                                                                                                                                                                          Debt stock reduction (current US$)
## 4747                                                                                                                                                                                                                      Total stock of arrears (principal and interest payments) (current US$)
## 4748                                                                                                                                                                                                                                                                       Adjustment to Arrears
## 4749                                                                                                                                                                                                                                                        Debt stock rescheduled (current US$)
## 4750                                                                                                                                                                                                                               Average grace period on new external debt commitments (years)
## 4751                                                                                                                                                                                                                     Average grace period on new external debt commitments, official (years)
## 4752                                                                                                                                                                                                                      Average grace period on new external debt commitments, private (years)
## 4753                                                                                                                                                                                                                                  Average grant element on new external debt commitments (%)
## 4754                                                                                                                                                                                                                        Average grant element on new external debt commitments, official (%)
## 4755                                                                                                                                                                                                                         Average grant element on new external debt commitments, private (%)
## 4756                                                                                                                                                                                                           Debt relief committed under HIPC initiative, cumulative US$ in end-2012 NPV terms
## 4757                                                                                                                                                                                                   Debt relief delivered in full under MDRI initiative, cumulative US$ in end-2012 NPV terms
## 4758                                                                                                                                                                                                                                                       Status under enhanced HIPC initiative
## 4759                                                                                                                                                                                                 Debt relief committed under HIPC and MDRI initiatives, cumulative US$ in end-2012 NPV terms
## 4760                                                                                                                                                                                                                                             Adjustments to scheduled interest (current US$)
## 4761                                                                                                                                                                                                           Interest due, total long-term and short term, including IMF per BOP (current US$)
## 4762                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 0 to 3 mo., All instruments, USD
## 4763                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 3yrs, All instruments, USD
## 4764                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 3 to 6 mo., All instruments, USD
## 4765                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 4yrs, All instruments, USD
## 4766                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, 5 to 10 yrs, All instruments, USD
## 4767                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 5yrs, All instruments, USD
## 4768                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 6 to 9 mo., All instruments, USD
## 4769                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, 9 to 12 mo., All instruments, USD
## 4770                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 10 to 15 yrs, All instruments, USD
## 4771                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 12 to 18 mo., All instruments, USD
## 4772                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 18 to 24 mo., All instruments, USD
## 4773                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 0 to 3, USD
## 4774                                                                                                                                                                                                         Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 9 to 12, USD
## 4775                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 12 to 18, USD
## 4776                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 18 to 24, USD
## 4777                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 3 to 6, USD
## 4778                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 6 to 9, USD
## 4779                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 0 to 3, USD
## 4780                                                                                                                                                                                                           Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 9 to 12, USD
## 4781                                                                                                                                                                                                          Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 12 to 18, USD
## 4782                                                                                                                                                                                                          Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 18 to 24, USD
## 4783                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 3 to 6, USD
## 4784                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 6 to 9, USD
## 4785                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Interest payments on SDR allocations, Immediate, USD
## 4786                                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediate, USD
## 4787                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediately, All instruments, USD
## 4788                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 0 to 3 mo., All instruments, USD
## 4789                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3yrs, All instruments, USD
## 4790                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3 to 6 mo., All instruments, USD
## 4791                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 4yrs, All instruments, USD
## 4792                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5 to 10 yrs, All instruments, USD
## 4793                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5yrs, All instruments, USD
## 4794                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 6 to 9 mo., All instruments, USD
## 4795                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, 9 to 12 mo., All instruments, USD
## 4796                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 10 to 15 yrs, All instruments, USD
## 4797                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 12 to 18 mo., All instruments, USD
## 4798                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 18 to 24 mo., All instruments, USD
## 4799                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD
## 4800                                                                                                                                                                                                            Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD
## 4801                                                                                                                                                                                                           Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD
## 4802                                                                                                                                                                                                           Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD
## 4803                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD
## 4804                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD
## 4805                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD
## 4806                                                                                                                                                                                                              Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD
## 4807                                                                                                                                                                                                             Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD
## 4808                                                                                                                                                                                                             Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD
## 4809                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD
## 4810                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD
## 4811                                                                                                                                                                                                                      Gross Ext. Debt Pmt, Interest receipts on SDR holdings, Immediate, USD
## 4812                                                                                                                                                                                                                    Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediate, USD
## 4813                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediately, All instruments, USD
## 4814                                                                                                                                                                                                                                       Average interest on new external debt commitments (%)
## 4815                                                                                                                                                                                                                             Average interest on new external debt commitments, official (%)
## 4816                                                                                                                                                                                                                              Average interest on new external debt commitments, private (%)
## 4817                                                                                                                                                                                                                                                            CB, bilateral (INT, current US$)
## 4818                                                                                                                                                                                                                                                           PPG, bilateral (INT, current US$)
## 4819                                                                                                                                                                                                                                                            GG, bilateral (INT, current US$)
## 4820                                                                                                                                                                                                                                                           OPS, bilateral (INT, current US$)
## 4821                                                                                                                                                                                                                                                          PRVG, bilateral (INT, current US$)
## 4822                                                                                                                                                                                                                                                            PS, bilateral (INT, current US$)
## 4823                                                                                                                                                                                                                                               CB, bilateral concessional (INT, current US$)
## 4824                                                                                                                                                                                                                                              PPG, bilateral concessional (INT, current US$)
## 4825                                                                                                                                                                                                                                               GG, bilateral concessional (INT, current US$)
## 4826                                                                                                                                                                                                                                              OPS, bilateral concessional (INT, current US$)
## 4827                                                                                                                                                                                                                                             PRVG, bilateral concessional (INT, current US$)
## 4828                                                                                                                                                                                                                                               PS, bilateral concessional (INT, current US$)
## 4829                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Interest, USD
## 4830                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Interest, USD
## 4831                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Interest, USD
## 4832                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Interest, USD
## 4833                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Interest, USD
## 4834                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Interest, USD
## 4835                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Interest, USD
## 4836                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Interest, USD
## 4837                                                                                                                                                                                                                   Interest payments on external debt, central bank (PPG) (INT, current US$)
## 4838                                                                                                                                                                                                                                Interest payments on external debt, total (INT, current US$)
## 4839                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 4840                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD
## 4841                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 4842                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 4843                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 4844                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 4845                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 4846                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 4847                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD
## 4848                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 4849                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 4850                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD
## 4851                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 4852                                                                                                                                                                   Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 4853                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD
## 4854                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 4855                                                                                                                                                                                                          Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD
## 4856                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD
## 4857                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD
## 4858                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD
## 4859                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD
## 4860                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD
## 4861                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD
## 4862                                                                                                                                                                                                            Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD
## 4863                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD
## 4864                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD
## 4865                                                                                                                                                                                                                 Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Interest, USD
## 4866                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Interest, USD
## 4867                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Interest, USD
## 4868                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Interest, USD
## 4869                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Interest, USD
## 4870                                                                                                                                                                                        Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Interest, USD
## 4871                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Interest, USD
## 4872                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Interest, USD
## 4873                                                                                                                                                                                             Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Interest, USD
## 4874                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Interest, USD
## 4875                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Interest, USD
## 4876                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Interest, USD
## 4877                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Interest, USD
## 4878                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Interest, USD
## 4879                                                                                                                                                                                                   Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Interest, USD
## 4880                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Interest, USD
## 4881                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Interest, USD
## 4882                                                                                                                                                                                                        Ext. Debt Service Pmt, General Government, Immediate, All instruments, Interest, USD
## 4883                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, One year or less, All instruments, Interest, USD
## 4884                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Interest, USD
## 4885                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Interest, USD
## 4886                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Interest, USD
## 4887                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Interest, USD
## 4888                                                                                                                                                                                                 Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Interest, USD
## 4889                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Interest, USD
## 4890                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Interest, USD
## 4891                                                                                                                                                                                                      Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Interest, USD
## 4892                                                                                                                                                                                                Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Interest, USD
## 4893                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 4894                                                                                                                                                                                                               Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Interest, USD
## 4895                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Interest, USD
## 4896                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Interest, USD
## 4897                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Interest, USD
## 4898                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Interest, USD
## 4899                                                                                                                                                                                                         Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Interest, USD
## 4900                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Interest, USD
## 4901                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Interest, USD
## 4902                                                                                                                                                                                                              Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Interest, USD
## 4903                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Interest, USD
## 4904                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Interest, USD
## 4905                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Interest, USD
## 4906                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Interest, USD
## 4907                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Interest, USD
## 4908                                                                                                                                                                                                        Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Interest, USD
## 4909                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Interest, USD
## 4910                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Interest, USD
## 4911                                                                                                                                                                                                             Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Interest, USD
## 4912                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Interest, USD
## 4913                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Interest, USD
## 4914                                                                                                                                                                                                     Interest payments on external debt (% of exports of goods, services and primary income)
## 4915                                                                                                                                                                                                                                               Interest payments on external debt (% of GNI)
## 4916                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Interest, USD
## 4917                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Interest, USD
## 4918                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Interest, USD
## 4919                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Interest, USD
## 4920                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Interest, USD
## 4921                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Interest, USD
## 4922                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Interest, USD
## 4923                                                                                                                                                                                              Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Interest, USD
## 4924                                                                                                                                                                                                      Interest payments on external debt, general government sector (PPG) (INT, current US$)
## 4925                                                                                                                                                                                                                  Interest payments on external debt, public sector (PPG) (INT, current US$)
## 4926                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4927                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4928                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4929                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4930                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4931                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4932                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4933                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4934                                                                                                                                                                                                                                                              IMF charges (INT, current US$)
## 4935                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Interest, USD
## 4936                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Interest, USD
## 4937                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Interest, USD
## 4938                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Interest, USD
## 4939                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Interest, USD
## 4940                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Interest, USD
## 4941                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Interest, USD
## 4942                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Interest, USD
## 4943                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Interest, USD
## 4944                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Interest, USD
## 4945                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Interest, USD
## 4946                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Interest, USD
## 4947                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Interest, USD
## 4948                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Interest, USD
## 4949                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Interest, USD
## 4950                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Interest, USD
## 4951                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Interest, USD
## 4952                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Interest, USD
## 4953                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Interest, USD
## 4954                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Interest, USD
## 4955                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Interest, USD
## 4956                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Interest, USD
## 4957                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Interest, USD
## 4958                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Interest, USD
## 4959                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Interest, USD
## 4960                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Interest, USD
## 4961                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Interest, USD
## 4962                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Interest, USD
## 4963                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Interest, USD
## 4964                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Interest, USD
## 4965                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Interest, USD
## 4966                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Interest, USD
## 4967                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Interest, USD
## 4968                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Interest, USD
## 4969                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Interest, USD
## 4970                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Interest, USD
## 4971                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Interest, USD
## 4972                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Interest, USD
## 4973                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Interest, USD
## 4974                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Interest, USD
## 4975                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Interest, USD
## 4976                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Interest, USD
## 4977                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Interest, USD
## 4978                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Interest, USD
## 4979                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Interest, USD
## 4980                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Interest, USD
## 4981                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Interest, USD
## 4982                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Interest, USD
## 4983                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Interest, USD
## 4984                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Interest, USD
## 4985                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Interest, USD
## 4986                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Interest, USD
## 4987                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Interest, USD
## 4988                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Interest, USD
## 4989                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Interest, USD
## 4990                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Interest, USD
## 4991                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Interest, USD
## 4992                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Interest, USD
## 4993                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Interest, USD
## 4994                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Interest, USD
## 4995                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Interest, USD
## 4996                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Interest, USD
## 4997                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Interest, USD
## 4998                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Interest, USD
## 4999                                                                                                                                                                                                                        Interest payments, Long-term debt including IMF credit (current US$)
## 5000                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Interest, USD
## 5001                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Interest, USD
## 5002                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Interest, USD
## 5003                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Interest, USD
## 5004                                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Interest, USD
## 5005                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Interest, USD
## 5006                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Interest, USD
## 5007                                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Interest, USD
## 5008                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Interest, USD
## 5009                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Interest, USD
## 5010                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Interest, USD
## 5011                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Interest, USD
## 5012                                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Interest, USD
## 5013                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Interest, USD
## 5014                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Interest, USD
## 5015                                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Interest, USD
## 5016                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Interest, USD
## 5017                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Interest, USD
## 5018                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Interest, USD
## 5019                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Interest, USD
## 5020                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Interest, USD
## 5021                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Interest, USD
## 5022                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Interest, USD
## 5023                                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Interest, USD
## 5024                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Interest, USD
## 5025                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Interest, USD
## 5026                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Interest, USD
## 5027                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Interest, USD
## 5028                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Interest, USD
## 5029                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Interest, USD
## 5030                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Interest, USD
## 5031                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Interest, USD
## 5032                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Interest, USD
## 5033                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Interest, USD
## 5034                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Interest, USD
## 5035                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Interest, USD
## 5036                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Interest, USD
## 5037                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Interest, USD
## 5038                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Interest, USD
## 5039                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Interest, USD
## 5040                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Interest, USD
## 5041                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Interest, USD
## 5042                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Interest, USD
## 5043                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Interest, USD
## 5044                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Interest, USD
## 5045                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Interest, USD
## 5046                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Interest, USD
## 5047                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Interest, USD
## 5048                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Interest, USD
## 5049                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Interest, USD
## 5050                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Interest, USD
## 5051                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Interest, USD
## 5052                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Interest, USD
## 5053                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Interest, USD
## 5054                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Interest, USD
## 5055                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Interest, USD
## 5056                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Interest, USD
## 5057                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Interest, USD
## 5058                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Interest, USD
## 5059                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Interest, USD
## 5060                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Interest, USD
## 5061                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Interest, USD
## 5062                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Interest, USD
## 5063                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Interest, USD
## 5064                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Interest, USD
## 5065                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Interest, USD
## 5066                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Interest, USD
## 5067                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Interest, USD
## 5068                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Interest, USD
## 5069                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Interest, USD
## 5070                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Interest, USD
## 5071                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Interest, USD
## 5072                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Interest, USD
## 5073                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Interest, USD
## 5074                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Interest, USD
## 5075                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Interest, USD
## 5076                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Interest, USD
## 5077                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Interest, USD
## 5078                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Interest, USD
## 5079                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Interest, USD
## 5080                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Interest, USD
## 5081                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Interest, USD
## 5082                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Interest, USD
## 5083                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Interest, USD
## 5084                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Interest, USD
## 5085                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Interest, USD
## 5086                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Interest, USD
## 5087                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Interest, USD
## 5088                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Interest, USD
## 5089                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Interest, USD
## 5090                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Interest, USD
## 5091                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Interest, USD
## 5092                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Interest, USD
## 5093                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Interest, USD
## 5094                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Interest, USD
## 5095                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Interest, USD
## 5096                                                                                                                                                                                                                            Interest payments on external debt, long-term (INT, current US$)
## 5097                                                                                                                                                                                                            Interest payments on external debt, other public sector (PPG) (INT, current US$)
## 5098                                                                                                                                                                                                          Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)
## 5099                                                                                                                                                                                                 Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)
## 5100                                                                                                                                                                                                                           Interest payments on external debt, short-term (INT, current US$)
## 5101                                                                                                                                                                                                                                                                PPG, IBRD (INT, current US$)
## 5102                                                                                                                                                                                                                                                                 PPG, IDA (INT, current US$)
## 5103                                                                                                                                                                                                                                                         CB, multilateral (INT, current US$)
## 5104                                                                                                                                                                                                                                                        PPG, multilateral (INT, current US$)
## 5105                                                                                                                                                                                                                                                         GG, multilateral (INT, current US$)
## 5106                                                                                                                                                                                                                                                        OPS, multilateral (INT, current US$)
## 5107                                                                                                                                                                                                                                                       PRVG, multilateral (INT, current US$)
## 5108                                                                                                                                                                                                                                                         PS, multilateral (INT, current US$)
## 5109                                                                                                                                                                                                                                            CB, multilateral concessional (INT, current US$)
## 5110                                                                                                                                                                                                                                           PPG, multilateral concessional (INT, current US$)
## 5111                                                                                                                                                                                                                                            GG, multilateral concessional (INT, current US$)
## 5112                                                                                                                                                                                                                                           OPS, multilateral concessional (INT, current US$)
## 5113                                                                                                                                                                                                                                          PRVG, multilateral concessional (INT, current US$)
## 5114                                                                                                                                                                                                                                            PS, multilateral concessional (INT, current US$)
## 5115                                                                                                                                                                                                                                                   CB, official creditors (INT, current US$)
## 5116                                                                                                                                                                                                                                                  PPG, official creditors (INT, current US$)
## 5117                                                                                                                                                                                                                                                   GG, official creditors (INT, current US$)
## 5118                                                                                                                                                                                                                                                  OPS, official creditors (INT, current US$)
## 5119                                                                                                                                                                                                                                                 PRVG, official creditors (INT, current US$)
## 5120                                                                                                                                                                                                                                                   PS, official creditors (INT, current US$)
## 5121                                                                                                                                                                                                                                                                CB, bonds (INT, current US$)
## 5122                                                                                                                                                                                                                                                               PPG, bonds (INT, current US$)
## 5123                                                                                                                                                                                                                                                                GG, bonds (INT, current US$)
## 5124                                                                                                                                                                                                                                                               OPS, bonds (INT, current US$)
## 5125                                                                                                                                                                                                                                                              PRVG, bonds (INT, current US$)
## 5126                                                                                                                                                                                                                                                                PS, bonds (INT, current US$)
## 5127                                                                                                                                                                                                                                                     CB, commercial banks (INT, current US$)
## 5128                                                                                                                                                                                                                                                    PPG, commercial banks (INT, current US$)
## 5129                                                                                                                                                                                                                                                     GG, commercial banks (INT, current US$)
## 5130                                                                                                                                                                                                                                                    OPS, commercial banks (INT, current US$)
## 5131                                                                                                                                                                                                                                                   PRVG, commercial banks (INT, current US$)
## 5132                                                                                                                                                                                                                                                     PS, commercial banks (INT, current US$)
## 5133                                                                                                                                                                                                                              Interest payments, PPG and PNG Private creditors (current US$)
## 5134                                                                                                                                                                                                                                                               PNG, bonds (INT, current US$)
## 5135                                                                                                                                                                                                                                PNG, commercial banks and other creditors (INT, current US$)
## 5136                                                                                                                                                                                                                                              CB, other private creditors (INT, current US$)
## 5137                                                                                                                                                                                                                                             PPG, other private creditors (INT, current US$)
## 5138                                                                                                                                                                                                                                              GG, other private creditors (INT, current US$)
## 5139                                                                                                                                                                                                                                             OPS, other private creditors (INT, current US$)
## 5140                                                                                                                                                                                                                                            PRVG, other private creditors (INT, current US$)
## 5141                                                                                                                                                                                                                                              PS, other private creditors (INT, current US$)
## 5142                                                                                                                                                                                            Interest payments on external debt, private guaranteed by public sector (PPG) (INT, current US$)
## 5143                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 5144                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 5145                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 5146                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 5147                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 5148                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 5149                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 5150                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 5151                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 5152                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 5153                                                                                                                                                                              Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 5154                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 5155                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 5156                                                                                                                                                                                                                                                    CB, private creditors (INT, current US$)
## 5157                                                                                                                                                                                                                                                   PPG, private creditors (INT, current US$)
## 5158                                                                                                                                                                                                                                                    GG, private creditors (INT, current US$)
## 5159                                                                                                                                                                                                                                                   OPS, private creditors (INT, current US$)
## 5160                                                                                                                                                                                                                                                  PRVG, private creditors (INT, current US$)
## 5161                                                                                                                                                                                                                                                    PS, private creditors (INT, current US$)
## 5162                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 5163                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 5164                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 5165                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 5166                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 5167                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 5168                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 5169                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 5170                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 5171                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 5172                                                                                                                                                                                              Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 5173                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 5174                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 5175                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Interest, USD
## 5176                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Interest, USD
## 5177                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Interest, USD
## 5178                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Interest, USD
## 5179                                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Interest, USD
## 5180                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Interest, USD
## 5181                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Interest, USD
## 5182                                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Loans, Interest, USD
## 5183                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Interest, USD
## 5184                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Interest, USD
## 5185                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Interest, USD
## 5186                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Interest, USD
## 5187                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Interest, USD
## 5188                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Interest, USD
## 5189                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Interest, USD
## 5190                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Interest, USD
## 5191                                                                                                                                                                                    Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Interest, USD
## 5192                                                                                                                                                                                          Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Interest, USD
## 5193                                                                                                                                                                                             Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Interest, USD
## 5194                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Interest, USD
## 5195                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Interest, Arrears, USD
## 5196                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Interest, USD
## 5197                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Interest, USD
## 5198                                                                                                                                                                               Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Interest, USD
## 5199                                                                                                                                                                                             Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Interest, USD
## 5200                                                                                                                                                                               Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Interest, USD
## 5201                                                                                                                                                                                                                                                             Interest arrears, long-term DOD
## 5202                                                                                                                                                                                                                                                       Interest arrears, long-term DOD (US$)
## 5203                                                                                                                                                                                                                                                Net change in interest arrears (current US$)
## 5204                                                                                                                                                                                                                                          Interest arrears, official creditors (current US$)
## 5205                                                                                                                                                                                                                                           Interest arrears, private creditors (current US$)
## 5206                                                                                                                                                                                                                                                             Interest forgiven (current US$)
## 5207                                                                                                                                                                                                                                            Interest rescheduled (capitalized) (current US$)
## 5208                                                                                                                                                                                                                                                Interest rescheduled, official (current US$)
## 5209                                                                                                                                                                                                                                                 Interest rescheduled, private (current US$)
## 5210                                                                                                                                                                                                                                   Average maturity on new external debt commitments (years)
## 5211                                                                                                                                                                                                                         Average maturity on new external debt commitments, official (years)
## 5212                                                                                                                                                                                                                          Average maturity on new external debt commitments, private (years)
## 5213                                                                                                                                                                                                                                                            CB, bilateral (NFL, current US$)
## 5214                                                                                                                                                                                                                                           Net financial flows, bilateral (NFL, current US$)
## 5215                                                                                                                                                                                                                                                            GG, bilateral (NFL, current US$)
## 5216                                                                                                                                                                                                                                                           OPS, bilateral (NFL, current US$)
## 5217                                                                                                                                                                                                                                                          PRVG, bilateral (NFL, current US$)
## 5218                                                                                                                                                                                                                                                            PS, bilateral (NFL, current US$)
## 5219                                                                                                                                                                                                                                               CB, bilateral concessional (NFL, current US$)
## 5220                                                                                                                                                                                                                                              PPG, bilateral concessional (NFL, current US$)
## 5221                                                                                                                                                                                                                                               GG, bilateral concessional (NFL, current US$)
## 5222                                                                                                                                                                                                                                              OPS, bilateral concessional (NFL, current US$)
## 5223                                                                                                                                                                                                                                             PRVG, bilateral concessional (NFL, current US$)
## 5224                                                                                                                                                                                                                                               PS, bilateral concessional (NFL, current US$)
## 5225                                                                                                                                                                                                                                  Portfolio investment, bonds (PPG + PNG) (NFL, current US$)
## 5226                                                                                                                                                                                                                           Net flows on external debt, central bank (PPG) (NFL, current US$)
## 5227                                                                                                                                                                                                                                        Net flows on external debt, total (NFL, current US$)
## 5228                                                                                                                                                                                                              Net flows on external debt, general government sector (PPG) (NFL, current US$)
## 5229                                                                                                                                                                                                                          Net flows on external debt, public sector (PPG) (NFL, current US$)
## 5230                                                                                                                                                                                                                                    Net flows on external debt, long-term (NFL, current US$)
## 5231                                                                                                                                                                                                                    Net flows on external debt, other public sector (PPG) (NFL, current US$)
## 5232                                                                                                                                                                                                                  Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)
## 5233                                                                                                                                                                                                         Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)
## 5234                                                                                                                                                                                                                                   Net flows on external debt, short-term (NFL, current US$)
## 5235                                                                                                                                                                                                                                      Net official flows from UN agencies, FAO (current US$)
## 5236                                                                                                                                                                                                                                     Net official flows from UN agencies, IAEA (current US$)
## 5237                                                                                                                                                                                                                                     Net official flows from UN agencies, IFAD (current US$)
## 5238                                                                                                                                                                                                                                      Net official flows from UN agencies, ILO (current US$)
## 5239                                                                                                                                                                                                                                    Net financial flows, IMF concessional (NFL, current US$)
## 5240                                                                                                                                                                                                                                 Net financial flows, IMF nonconcessional (NFL, current US$)
## 5241                                                                                                                                                                                                                                                Net financial flows, IBRD (NFL, current US$)
## 5242                                                                                                                                                                                                                                                 Net financial flows, IDA (NFL, current US$)
## 5243                                                                                                                                                                                                                                                         CB, multilateral (NFL, current US$)
## 5244                                                                                                                                                                                                                                        Net financial flows, multilateral (NFL, current US$)
## 5245                                                                                                                                                                                                                                                         GG, multilateral (NFL, current US$)
## 5246                                                                                                                                                                                                                                                        OPS, multilateral (NFL, current US$)
## 5247                                                                                                                                                                                                                                                       PRVG, multilateral (NFL, current US$)
## 5248                                                                                                                                                                                                                                                         PS, multilateral (NFL, current US$)
## 5249                                                                                                                                                                                                                                            CB, multilateral concessional (NFL, current US$)
## 5250                                                                                                                                                                                                                                           PPG, multilateral concessional (NFL, current US$)
## 5251                                                                                                                                                                                                                                            GG, multilateral concessional (NFL, current US$)
## 5252                                                                                                                                                                                                                                           OPS, multilateral concessional (NFL, current US$)
## 5253                                                                                                                                                                                                                                          PRVG, multilateral concessional (NFL, current US$)
## 5254                                                                                                                                                                                                                                            PS, multilateral concessional (NFL, current US$)
## 5255                                                                                                                                                                                                                                              Net financial flows, others (NFL, current US$)
## 5256                                                                                                                                                                                                                                              EBRD, private nonguaranteed (NFL, current US$)
## 5257                                                                                                                                                                                                                                               IFC, private nonguaranteed (NFL, current US$)
## 5258                                                                                                                                                                                                                                                   CB, official creditors (NFL, current US$)
## 5259                                                                                                                                                                                                                                                  PPG, official creditors (NFL, current US$)
## 5260                                                                                                                                                                                                                                                   GG, official creditors (NFL, current US$)
## 5261                                                                                                                                                                                                                                                  OPS, official creditors (NFL, current US$)
## 5262                                                                                                                                                                                                                                                 PRVG, official creditors (NFL, current US$)
## 5263                                                                                                                                                                                                                                                   PS, official creditors (NFL, current US$)
## 5264                                                                                                                                                                                                                                                                CB, bonds (NFL, current US$)
## 5265                                                                                                                                                                                                                                                               PPG, bonds (NFL, current US$)
## 5266                                                                                                                                                                                                                                                                GG, bonds (NFL, current US$)
## 5267                                                                                                                                                                                                                                                               OPS, bonds (NFL, current US$)
## 5268                                                                                                                                                                                                                                                              PRVG, bonds (NFL, current US$)
## 5269                                                                                                                                                                                                                                                                PS, bonds (NFL, current US$)
## 5270                                                                                                                                                                                                                                                     CB, commercial banks (NFL, current US$)
## 5271                                                                                                                                                                                                                                                    PPG, commercial banks (NFL, current US$)
## 5272                                                                                                                                                                                                                                                     GG, commercial banks (NFL, current US$)
## 5273                                                                                                                                                                                                                                                    OPS, commercial banks (NFL, current US$)
## 5274                                                                                                                                                                                                                                                   PRVG, commercial banks (NFL, current US$)
## 5275                                                                                                                                                                                                                                                     PS, commercial banks (NFL, current US$)
## 5276                                                                                                                                                                                                                           Commercial banks and other lending (PPG + PNG) (NFL, current US$)
## 5277                                                                                                                                                                                                                                                               PNG, bonds (NFL, current US$)
## 5278                                                                                                                                                                                                                                PNG, commercial banks and other creditors (NFL, current US$)
## 5279                                                                                                                                                                                                                                              CB, other private creditors (NFL, current US$)
## 5280                                                                                                                                                                                                                                             PPG, other private creditors (NFL, current US$)
## 5281                                                                                                                                                                                                                                              GG, other private creditors (NFL, current US$)
## 5282                                                                                                                                                                                                                                             OPS, other private creditors (NFL, current US$)
## 5283                                                                                                                                                                                                                                            PRVG, other private creditors (NFL, current US$)
## 5284                                                                                                                                                                                                                                              PS, other private creditors (NFL, current US$)
## 5285                                                                                                                                                                                                    Net flows on external debt, private guaranteed by public sector (PPG) (NFL, current US$)
## 5286                                                                                                                                                                                                                                                    CB, private creditors (NFL, current US$)
## 5287                                                                                                                                                                                                                                                   PPG, private creditors (NFL, current US$)
## 5288                                                                                                                                                                                                                                                    GG, private creditors (NFL, current US$)
## 5289                                                                                                                                                                                                                                                   OPS, private creditors (NFL, current US$)
## 5290                                                                                                                                                                                                                                                  PRVG, private creditors (NFL, current US$)
## 5291                                                                                                                                                                                                                                                    PS, private creditors (NFL, current US$)
## 5292                                                                                                                                                                                                                                    Net financial flows, RDB concessional (NFL, current US$)
## 5293                                                                                                                                                                                                                                 Net financial flows, RDB nonconcessional (NFL, current US$)
## 5294                                                                                                                                                                                                                                   Net official flows from UN agencies, UNAIDS (current US$)
## 5295                                                                                                                                                                                                                                   Net official flows from UN agencies, UNICEF (current US$)
## 5296                                                                                                                                                                                                                                    Net official flows from UN agencies, UNHCR (current US$)
## 5297                                                                                                                                                                                                                                     Net official flows from UN agencies, UNDP (current US$)
## 5298                                                                                                                                                                                                                                    Net official flows from UN agencies, UNECE (current US$)
## 5299                                                                                                                                                                                                                                     Net official flows from UN agencies, UNEP (current US$)
## 5300                                                                                                                                                                                                                                    Net official flows from UN agencies, UNFPA (current US$)
## 5301                                                                                                                                                                                                                                   Net official flows from UN agencies, UNIDIR (current US$)
## 5302                                                                                                                                                                                                                                    Net official flows from UN agencies, UNPBF (current US$)
## 5303                                                                                                                                                                                                                                    Net official flows from UN agencies, UNRWA (current US$)
## 5304                                                                                                                                                                                                                                     Net official flows from UN agencies, UNTA (current US$)
## 5305                                                                                                                                                                                                                                    Net official flows from UN agencies, UNWTO (current US$)
## 5306                                                                                                                                                                                                                                      Net official flows from UN agencies, WFP (current US$)
## 5307                                                                                                                                                                                                                                      Net official flows from UN agencies, WHO (current US$)
## 5308                                                                                                                                                                                                                                                            CB, bilateral (NTR, current US$)
## 5309                                                                                                                                                                                                                                                           PPG, bilateral (NTR, current US$)
## 5310                                                                                                                                                                                                                                                            GG, bilateral (NTR, current US$)
## 5311                                                                                                                                                                                                                                                           OPS, bilateral (NTR, current US$)
## 5312                                                                                                                                                                                                                                                          PRVG, bilateral (NTR, current US$)
## 5313                                                                                                                                                                                                                                                            PS, bilateral (NTR, current US$)
## 5314                                                                                                                                                                                                                                               CB, bilateral concessional (NTR, current US$)
## 5315                                                                                                                                                                                                                                              PPG, bilateral concessional (NTR, current US$)
## 5316                                                                                                                                                                                                                                               GG, bilateral concessional (NTR, current US$)
## 5317                                                                                                                                                                                                                                              OPS, bilateral concessional (NTR, current US$)
## 5318                                                                                                                                                                                                                                             PRVG, bilateral concessional (NTR, current US$)
## 5319                                                                                                                                                                                                                                               PS, bilateral concessional (NTR, current US$)
## 5320                                                                                                                                                                                                                       Net transfers on external debt, central bank (PPG) (NTR, current US$)
## 5321                                                                                                                                                                                                                                    Net transfers on external debt, total (NTR, current US$)
## 5322                                                                                                                                                                                                          Net transfers on external debt, general government sector (PPG) (NTR, current US$)
## 5323                                                                                                                                                                                                                      Net transfers on external debt, public sector (PPG) (NTR, current US$)
## 5324                                                                                                                                                                                                                                Net transfers on external debt, long-term (NTR, current US$)
## 5325                                                                                                                                                                                                                Net transfers on external debt, other public sector (PPG) (NTR, current US$)
## 5326                                                                                                                                                                                                              Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)
## 5327                                                                                                                                                                                                     Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)
## 5328                                                                                                                                                                                                                                                                PPG, IBRD (NTR, current US$)
## 5329                                                                                                                                                                                                                                                                 PPG, IDA (NTR, current US$)
## 5330                                                                                                                                                                                                                                                         CB, multilateral (NTR, current US$)
## 5331                                                                                                                                                                                                                                                        PPG, multilateral (NTR, current US$)
## 5332                                                                                                                                                                                                                                                         GG, multilateral (NTR, current US$)
## 5333                                                                                                                                                                                                                                                        OPS, multilateral (NTR, current US$)
## 5334                                                                                                                                                                                                                                                       PRVG, multilateral (NTR, current US$)
## 5335                                                                                                                                                                                                                                                         PS, multilateral (NTR, current US$)
## 5336                                                                                                                                                                                                                                            CB, multilateral concessional (NTR, current US$)
## 5337                                                                                                                                                                                                                                           PPG, multilateral concessional (NTR, current US$)
## 5338                                                                                                                                                                                                                                            GG, multilateral concessional (NTR, current US$)
## 5339                                                                                                                                                                                                                                           OPS, multilateral concessional (NTR, current US$)
## 5340                                                                                                                                                                                                                                          PRVG, multilateral concessional (NTR, current US$)
## 5341                                                                                                                                                                                                                                            PS, multilateral concessional (NTR, current US$)
## 5342                                                                                                                                                                                                                                                   CB, official creditors (NTR, current US$)
## 5343                                                                                                                                                                                                                                                  PPG, official creditors (NTR, current US$)
## 5344                                                                                                                                                                                                                                                   GG, official creditors (NTR, current US$)
## 5345                                                                                                                                                                                                                                                  OPS, official creditors (NTR, current US$)
## 5346                                                                                                                                                                                                                                                 PRVG, official creditors (NTR, current US$)
## 5347                                                                                                                                                                                                                                                   PS, official creditors (NTR, current US$)
## 5348                                                                                                                                                                                                                                                                CB, bonds (NTR, current US$)
## 5349                                                                                                                                                                                                                                                               PPG, bonds (NTR, current US$)
## 5350                                                                                                                                                                                                                                                                GG, bonds (NTR, current US$)
## 5351                                                                                                                                                                                                                                                               OPS, bonds (NTR, current US$)
## 5352                                                                                                                                                                                                                                                              PRVG, bonds (NTR, current US$)
## 5353                                                                                                                                                                                                                                                                PS, bonds (NTR, current US$)
## 5354                                                                                                                                                                                                                                                     CB, commercial banks (NTR, current US$)
## 5355                                                                                                                                                                                                                                                    PPG, commercial banks (NTR, current US$)
## 5356                                                                                                                                                                                                                                                     GG, commercial banks (NTR, current US$)
## 5357                                                                                                                                                                                                                                                    OPS, commercial banks (NTR, current US$)
## 5358                                                                                                                                                                                                                                                   PRVG, commercial banks (NTR, current US$)
## 5359                                                                                                                                                                                                                                                     PS, commercial banks (NTR, current US$)
## 5360                                                                                                                                                                                                                                                               PNG, bonds (NTR, current US$)
## 5361                                                                                                                                                                                                                                PNG, commercial banks and other creditors (NTR, current US$)
## 5362                                                                                                                                                                                                                                              CB, other private creditors (NTR, current US$)
## 5363                                                                                                                                                                                                                                             PPG, other private creditors (NTR, current US$)
## 5364                                                                                                                                                                                                                                              GG, other private creditors (NTR, current US$)
## 5365                                                                                                                                                                                                                                             OPS, other private creditors (NTR, current US$)
## 5366                                                                                                                                                                                                                                            PRVG, other private creditors (NTR, current US$)
## 5367                                                                                                                                                                                                                                              PS, other private creditors (NTR, current US$)
## 5368                                                                                                                                                                                                Net transfers on external debt, private guaranteed by public sector (PPG) (NTR, current US$)
## 5369                                                                                                                                                                                                                                                    CB, private creditors (NTR, current US$)
## 5370                                                                                                                                                                                                                                                   PPG, private creditors (NTR, current US$)
## 5371                                                                                                                                                                                                                                                    GG, private creditors (NTR, current US$)
## 5372                                                                                                                                                                                                                                                   OPS, private creditors (NTR, current US$)
## 5373                                                                                                                                                                                                                                                  PRVG, private creditors (NTR, current US$)
## 5374                                                                                                                                                                                                                                                    PS, private creditors (NTR, current US$)
## 5375                                                                                                                                                                                                                 Net official development assistance and official aid received (current US$)
## 5376                                                                                                                                                                                                                                                                 Net ODA received (% of GDP)
## 5377                                                                                                                                                                                                                                                                              Aid (% of GDI)
## 5378                                                                                                                                                                                                                 Net official development assistance received (% of gross capital formation)
## 5379                                                                                                                                                                                                                                                                 Net ODA received (% of GNP)
## 5380                                                                                                                                                                                                                                                                              Aid (% of GNP)
## 5381                                                                                                                                                                                                          ODA aid disbursements for STD control including HIV/AIDS, all donors (current US$)
## 5382                                                                                                                                                                                                           ODA aid disbursements for Social mitigation of HIV/AIDS, all donors (current US$)
## 5383                                                                                                                                                                                                                                                    Aid (% of imports of goods and services)
## 5384                                                                                                                                                                                                           Net official development assistance and official aid received (constant 2020 US$)
## 5385                                                                                                                                                                                                                         ODA aid disbursements for Malaria control, all donors (current US$)
## 5386                                                                                                                                                                                                                                                    Net ODA received (% exports and imports)
## 5387                                                                                                                                                                                                                       Net official development assistance received per capita (current US$)
## 5388                                                                                                                                                                                                                                                                        Aid per capita (US$)
## 5389                                                                                                                                                                                                                                             Total ODA Private Net, all donors (current US$)
## 5390                                                                                                                                                                                                                                      Net ODA received (% of central government expenditure)
## 5391                                                                                                                                                                                                                                                  Aid (% of central government expenditures)
## 5392                                                                                                                                                                                               Gross ODA aid disbursement for administrative costs of donors, DAC donors total (current US$)
## 5393                                                                                                                                                                                                       Gross ODA aid disbursement for general budget support, DAC donors total (current US$)
## 5394                                                                                                                                                                                     Gross ODA aid disbursement for commodity and general program assistance, DAC donors total (current US$)
## 5395                                                                                                                                                                              Gross ODA aid disbursement for developmental food aid/food security assistance, DAC donors total (current US$)
## 5396                                                                                                                                                                                                   Gross ODA aid disbursement for other commodity assistance, DAC donors total (current US$)
## 5397                                                                                                                                                                                                    Gross ODA aid disbursement for all sectors and functions, DAC donors total (current US$)
## 5398                                                                                                                                                                                                                                              Net ODA received from DAC donors (current US$)
## 5399                                                                                                                                                                                                                                    Net ODA received per capita from DAC donors(current US$)
## 5400                                                                                                                                                                                                       Gross ODA aid disbursement for action related to debt, DAC donors total (current US$)
## 5401                                                                                                                                                                                                 Gross ODA aid disbursement for banking & financial services, DAC donors total (current US$)
## 5402                                                                                                                                                                                                    Gross ODA aid disbursement for business & other services, DAC donors total (current US$)
## 5403                                                                                                                                                                                                      Gross ODA aid disbursement for economic infrastructure, DAC donors total (current US$)
## 5404                                                                                                                                                                                                               Gross ODA aid disbursement for communications, DAC donors total (current US$)
## 5405                                                                                                                                                                                                                      Gross ODA aid disbursement for energy,  DAC donors total (current US$)
## 5406                                                                                                                                                                                                        Gross ODA aid disbursement for transport and storage, DAC donors total (current US$)
## 5407                                                                                                                                                                                                              Gross ODA aid disbursement for basic education, DAC donors total (current US$)
## 5408                                                                                                                                                                                                                    Gross ODA aid disbursement for education, DAC donors total (current US$)
## 5409                                                                                                                                                                                                     Gross ODA aid disbursement for post-secondary education, DAC donors total (current US$)
## 5410                                                                                                                                                                                                          Gross ODA aid disbursement for secondary education, DAC donors total (current US$)
## 5411                                                                                                                                                                                                Gross ODA aid disbursement for education (level unspecified), DAC donors total (current US$)
## 5412                                                                                                                                                                                                             Gross ODA aid disbursement for humanitarian aid, DAC donors total (current US$)
## 5413                                                                                                                                                                                           Gross ODA aid disbursement for disaster prevention & preparedness, DAC donors total (current US$)
## 5414                                                                                                                                                                                                           Gross ODA aid disbursement for emergency response, DAC donors total (current US$)
## 5415                                                                                                                                                                                     Gross ODA aid disbursement for reconstruction relief and rehabilitation, DAC donors total (current US$)
## 5416                                                                                                                                                                                                   Gross ODA aid disbursement for government & civil society, DAC donors total (current US$)
## 5417                                                                                                                                                                                                 Gross ODA aid disbursement for conflict, peace and security, DAC donors total (current US$)
## 5418                                                                                                                                                                                         Gross ODA aid disbursement for general government and civil society, DAC donors total (current US$)
## 5419                                                                                                                                                                                                          ODA aid disbursements for STD control including HIV/AIDS, DAC donors (current US$)
## 5420                                                                                                                                                                                                           ODA aid disbursements for Social mitigation of HIV/AIDS, DAC donors (current US$)
## 5421                                                                                                                                                                                                                 Gross ODA aid disbursement for basic health, DAC donors total (current US$)
## 5422                                                                                                                                                                                                                       Gross ODA aid disbursement for health, DAC donors total (current US$)
## 5423                                                                                                                                                                                                               Gross ODA aid disbursement for general health, DAC donors total (current US$)
## 5424                                                                                                                                                                                                                                        Net ODA received from DAC donors (constant 2010 US$)
## 5425                                                                                                                                                                                                                   ODA aid disbursements for Malaria control, DAC donors total (current US$)
## 5426                                                                                                                                                                                                                 Gross ODA aid disbursement for multisector,  DAC donors total (current US$)
## 5427                                                                                                                                                                                               Gross ODA aid disbursement for general environment protection, DAC donors total (current US$)
## 5428                                                                                                                                                                                                Gross ODA aid disbursement for other multisector initiatives, DAC donors total (current US$)
## 5429                                                                                                                                                                                Gross ODA aid disbursement for population programmes and reproductive health, DAC donors total (current US$)
## 5430                                                                                                                                                                                                                  Gross ODA aid disbursement for agriculture, DAC donors total (current US$)
## 5431                                                                                                                                                                                     Gross ODA aid disbursement for agriculture, forestry and fishing sector, DAC donors total (current US$)
## 5432                                                                                                                                                                                                                      Gross ODA aid disbursement for fishing, DAC donors total (current US$)
## 5433                                                                                                                                                                                                                     Gross ODA aid disbursement for forestry, DAC donors total (current US$)
## 5434                                                                                                                                                                                                          Gross ODA aid disbursement for production sectors,  DAC donors total (current US$)
## 5435                                                                                                                                                                                            Gross ODA aid disbursement for industry, mining and construction, DAC donors total (current US$)
## 5436                                                                                                                                                                                                                Gross ODA aid disbursement for construction,  DAC donors total (current US$)
## 5437                                                                                                                                                                                                                    Gross ODA aid disbursement for industry,  DAC donors total (current US$)
## 5438                                                                                                                                                                                                Gross ODA aid disbursement for mineral resources and mining,  DAC donors total (current US$)
## 5439                                                                                                                                                                                                 Gross ODA aid disbursement for trade policy and regulations, DAC donors total (current US$)
## 5440                                                                                                                                                                                                               Gross ODA aid disbursement for tourism sector, DAC donors total (current US$)
## 5441                                                                                                                                                                                                                                             Total ODA Private Net, DAC donors (current US$)
## 5442                                                                                                                                                                                                 Gross ODA aid disbursement for refugees in donor countries,  DAC donors total (current US$)
## 5443                                                                                                                                                                                            Gross ODA aid disbursement for social infrastructure & services,  DAC donors total (current US$)
## 5444                                                                                                                                                                                                       Gross ODA aid disbursement for total sector allocable, DAC donors total (current US$)
## 5445                                                                                                                                                                                              Gross ODA aid disbursement for unallocated/unspecified support, DAC donors total (current US$)
## 5446                                                                                                                                                                                                  Gross ODA aid disbursement for water supply and sanitation, DAC donors total (current US$)
## 5447                                                                                                                                                                                                                                     Net ODA received from DAC donors (% of recipient's GDP)
## 5448                                                                                                                                                                                                                                     Net ODA received from DAC donors (% of recipient's GDI)
## 5449                                                                                                                                                                                                                                     Net ODA received from multilateral donors (current US$)
## 5450                                                                                                                                                                                                                          Net ODA received per capita from multilateral donors (current US$)
## 5451                                                                                                                                                                                                                               Net ODA received from multilateral donors (constant 2010 US$)
## 5452                                                                                                                                                                                                                                        Net ODA received from multilateral donors (% of GDP)
## 5453                                                                                                                                                                                                                    Net ODA received from multilateral donors (% of gross capital formation)
## 5454                                                                                                                                                                                                 ODA aid disbursements for STD control including HIV/AIDS, Multilateral donors (current US$)
## 5455                                                                                                                                                                                                  ODA aid disbursements for Social mitigation of HIV/AIDS, Multilateral donors (current US$)
## 5456                                                                                                                                                                                                          ODA aid disbursements for Malaria control, multilateral donors total (current US$)
## 5457                                                                                                                                                                                                                                          Net ODA received from non-DAC donors (current US$)
## 5458                                                                                                                                                                                                                                    Net ODA received from non-DAC donors (constant 2010 US$)
## 5459                                                                                                                                                                                                                                         Total ODA Private Net, non-DAC donors (current US$)
## 5460                                                                                                                                                                                                                                   Net ODA received from non-DAC bilateral donors (% of GDP)
## 5461                                                                                                                                                                                                               Net ODA received from non-DAC bilateral donors (% of gross capital formation)
## 5462                                                                                                                                                                                                                                                     Net official aid received (current US$)
## 5463                                                                                                                                                                                                                                               Net official aid received (constant 2020 US$)
## 5464                                                                                                                                                                                                                                  Net official development assistance received (current US$)
## 5465                                                                                                                                                                                                                                  Net official development assistance received (current US$)
## 5466                                                                                                                                                                                                                                                                 Net ODA received (% of GDP)
## 5467                                                                                                                                                                                                                                             Net ODA received (% of gross capital formation)
## 5468                                                                                                                                                                                                                                                                 Net ODA received (% of GNI)
## 5469                                                                                                                                                                                                                            Net official development assistance received (constant 2020 US$)
## 5470                                                                                                                                                                                                                       Net ODA received (% of imports of goods, services and primary income)
## 5471                                                                                                                                                                                                                                                   Net ODA received per capita (current US$)
## 5472                                                                                                                                                                                                                                          Net ODA received (% of central government expense)
## 5473                                                                                                                                                                                                                                                   Debt service to export ratio, ex-post (%)
## 5474                                                                                                                                                                                                                                         Adjustments to scheduled debt service (current US$)
## 5475                                                                                                                                                                                                                                                            CB, bilateral (TDS, current US$)
## 5476                                                                                                                                                                                                                                                           PPG, bilateral (TDS, current US$)
## 5477                                                                                                                                                                                                                                                            GG, bilateral (TDS, current US$)
## 5478                                                                                                                                                                                                                                                           OPS, bilateral (TDS, current US$)
## 5479                                                                                                                                                                                                                                                          PRVG, bilateral (TDS, current US$)
## 5480                                                                                                                                                                                                                                                            PS, bilateral (TDS, current US$)
## 5481                                                                                                                                                                                                                                               CB, bilateral concessional (TDS, current US$)
## 5482                                                                                                                                                                                                                                              PPG, bilateral concessional (TDS, current US$)
## 5483                                                                                                                                                                                                                                               GG, bilateral concessional (TDS, current US$)
## 5484                                                                                                                                                                                                                                              OPS, bilateral concessional (TDS, current US$)
## 5485                                                                                                                                                                                                                                             PRVG, bilateral concessional (TDS, current US$)
## 5486                                                                                                                                                                                                                                               PS, bilateral concessional (TDS, current US$)
## 5487                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5488                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5489                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5490                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5491                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5492                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5493                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5494                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5495                                                                                                                                                                                                                         Debt service (PPG and IMF only, % of exports of goods and services)
## 5496                                                                                                                                                                                                                        Debt service on external debt, central bank (PPG) (TDS, current US$)
## 5497                                                                                                                                                                                                     Ext. Debt Service Pmt, SDR allocations, More than15yrs, All instruments, Principal, USD
## 5498                                                                                                                                                                                                                                     Debt service on external debt, total (TDS, current US$)
## 5499                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5500                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5501                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5502                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5503                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5504                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5505                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5506                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5507                                                                                                                                                                                                 Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5508                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5509                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5510                                                                                                                                                                                                Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5511                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5512                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5513                                                                                                                                                                                                Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5514                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5515                                                                                                                                                                                                    Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5516                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5517                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5518                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5519                                                                                                                                                                                                   Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5520                                                                                                                                                                                                  Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5521                                                                                                                                                                                                  Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5522                                                                                                                                                                                                      Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5523                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5524                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5525                                                                                                                                                                                                           Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD
## 5526                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD
## 5527                                                                                                                                                                               Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD
## 5528                                                                                                                                                                              Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD
## 5529                                                                                                                                                                              Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD
## 5530                                                                                                                                                                                  Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD
## 5531                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD
## 5532                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD
## 5533                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD
## 5534                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD
## 5535                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD
## 5536                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD
## 5537                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD
## 5538                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD
## 5539                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD
## 5540                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD
## 5541                                                                                                                                                                                       Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD
## 5542                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Prin. and Int., USD
## 5543                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD
## 5544                                                                                                                                                                                          Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD
## 5545                                                                                                                                                                                         Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD
## 5546                                                                                                                                                                                         Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD
## 5547                                                                                                                                                                                             Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD
## 5548                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD
## 5549                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD
## 5550                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD
## 5551                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD
## 5552                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD
## 5553                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD
## 5554                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD
## 5555                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD
## 5556                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD
## 5557                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, All instruments, Prin. and Int., USD
## 5558                                                                                                                                                                                                  Ext. Debt Service Pmt, General Government, Immediate, All instruments, Prin. and Int., USD
## 5559                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, One year or less, All instruments, Prin. and Int., USD
## 5560                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD
## 5561                                                                                                                                                                                        Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD
## 5562                                                                                                                                                                                       Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD
## 5563                                                                                                                                                                                       Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD
## 5564                                                                                                                                                                                           Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD
## 5565                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD
## 5566                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD
## 5567                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD
## 5568                                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD
## 5569                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD
## 5570                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD
## 5571                                                                                                                                                                                             Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD
## 5572                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD
## 5573                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD
## 5574                                                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD
## 5575                                                                                                                                                                                                Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD
## 5576                                                                                                                                                                                          Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Prin. and Int., USD
## 5577                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5578                                                                                                                                                                                                         Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD
## 5579                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD
## 5580                                                                                                                                                                                                Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD
## 5581                                                                                                                                                                                               Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD
## 5582                                                                                                                                                                                               Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD
## 5583                                                                                                                                                                                                   Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD
## 5584                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD
## 5585                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD
## 5586                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD
## 5587                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD
## 5588                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD
## 5589                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD
## 5590                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD
## 5591                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD
## 5592                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD
## 5593                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD
## 5594                                                                                                                                                                                                        Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD
## 5595                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Prin. and Int., USD
## 5596                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5597                                                                                                                                                                                               Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5598                                                                                                                                                                                              Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5599                                                                                                                                                                                              Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5600                                                                                                                                                                                                  Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5601                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5602                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5603                                                                                                                                                                                                       Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD
## 5604                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Prin. and Int., USD
## 5605                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5606                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5607                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5608                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5609                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5610                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5611                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5612                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD
## 5613                                                                                                                                                                                                   Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Prin. and Int., USD
## 5614                                                                                                                                                                                                     Ext. Debt Service Pmt, SDR allocations, More than 2yrs, All instruments, Principal, USD
## 5615                                                                                                                                                                                                                     Total debt service (% of exports of goods, services and primary income)
## 5616                                                                                                                                                                                                                                                               Total debt service (% of GDP)
## 5617                                                                                                                                                                                                                                                               Total debt service (% of GNI)
## 5618                                                                                                                                                                                                                                                               Total debt service (% of GNP)
## 5619                                                                                                                                                                                                                                    Total debt service ( % of exports of goods and services)
## 5620                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Prin. and Int., USD
## 5621                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Prin. and Int., USD
## 5622                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Prin. and Int., USD
## 5623                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Prin. and Int., USD
## 5624                                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Prin. and Int., USD
## 5625                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Prin. and Int., USD
## 5626                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Prin. and Int., USD
## 5627                                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Prin. and Int., USD
## 5628                                                                                                                                                                                                           Debt service on external debt, general government sector (PPG) (TDS, current US$)
## 5629                                                                                                                                                                                                                       Debt service on external debt, public sector (PPG) (TDS, current US$)
## 5630                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5631                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5632                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5633                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5634                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5635                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5636                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5637                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5638                                                                                                                                                                                                                                              IMF repurchases and charges (TDS, current US$)
## 5639                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5640                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5641                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5642                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5643                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Prin. and Int., USD
## 5644                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5645                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5646                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Prin. and Int., USD
## 5647                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5648                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5649                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5650                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5651                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Prin. and Int., USD
## 5652                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5653                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5654                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Prin. and Int., USD
## 5655                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5656                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5657                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5658                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5659                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Prin. and Int., USD
## 5660                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5661                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5662                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Prin. and Int., USD
## 5663                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5664                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5665                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5666                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5667                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Prin. and Int., USD
## 5668                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5669                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5670                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Prin. and Int., USD
## 5671                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5672                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5673                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5674                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5675                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5676                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5677                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5678                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Prin. and Int., USD
## 5679                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5680                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5681                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5682                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5683                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5684                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5685                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5686                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Prin. and Int., USD
## 5687                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5688                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5689                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5690                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5691                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5692                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5693                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5694                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Prin. and Int., USD
## 5695                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5696                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5697                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5698                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5699                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5700                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5701                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5702                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Prin. and Int., USD
## 5703                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Prin. and Int., USD
## 5704                                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Prin. and Int., USD
## 5705                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Prin. and Int., USD
## 5706                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Prin. and Int., USD
## 5707                                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Prin. and Int., USD
## 5708                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Prin. and Int., USD
## 5709                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Prin. and Int., USD
## 5710                                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Prin. and Int., USD
## 5711                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Prin. and Int., USD
## 5712                                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Prin. and Int., USD
## 5713                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Prin. and Int., USD
## 5714                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Prin. and Int., USD
## 5715                                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Prin. and Int., USD
## 5716                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Prin. and Int., USD
## 5717                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Prin. and Int., USD
## 5718                                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, Immediate, Loans, Prin. and Int., USD
## 5719                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Prin. and Int., USD
## 5720                                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Prin. and Int., USD
## 5721                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Prin. and Int., USD
## 5722                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Prin. and Int., USD
## 5723                                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Prin. and Int., USD
## 5724                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Prin. and Int., USD
## 5725                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Prin. and Int., USD
## 5726                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Prin. and Int., USD
## 5727                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Prin. and Int., USD
## 5728                                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Prin. and Int., USD
## 5729                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Prin. and Int., USD
## 5730                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Prin. and Int., USD
## 5731                                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Prin. and Int., USD
## 5732                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Prin. and Int., USD
## 5733                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Prin. and Int., USD
## 5734                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Prin. and Int., USD
## 5735                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5736                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5737                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5738                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5739                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5740                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5741                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5742                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Prin. and Int., USD
## 5743                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5744                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5745                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5746                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5747                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5748                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5749                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5750                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Prin. and Int., USD
## 5751                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5752                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5753                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5754                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5755                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5756                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5757                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5758                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Prin. and Int., USD
## 5759                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5760                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5761                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5762                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5763                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5764                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5765                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5766                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Prin. and Int., USD
## 5767                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD
## 5768                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD
## 5769                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD
## 5770                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD
## 5771                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD
## 5772                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD
## 5773                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD
## 5774                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Prin. and Int., USD
## 5775                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD
## 5776                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD
## 5777                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD
## 5778                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD
## 5779                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD
## 5780                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD
## 5781                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD
## 5782                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Prin. and Int., USD
## 5783                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5784                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5785                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5786                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5787                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5788                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5789                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5790                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Prin. and Int., USD
## 5791                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5792                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5793                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5794                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5795                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5796                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5797                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5798                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Prin. and Int., USD
## 5799                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5800                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5801                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5802                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5803                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5804                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5805                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5806                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Prin. and Int., USD
## 5807                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5808                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5809                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5810                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5811                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5812                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5813                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5814                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Prin. and Int., USD
## 5815                                                                                                                                                                                                                                 Debt service on external debt, long-term (TDS, current US$)
## 5816                                                                                                                                                                                                                 Debt service on external debt, other public sector (PPG) (TDS, current US$)
## 5817                                                                                                                                                                                                               Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)
## 5818                                                                                                                                                                                                         Debt service (PPG and IMF only, % of exports of goods, services and primary income)
## 5819                                                                                                                                                                                                      Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)
## 5820                                                                                                                                                                                                                                      Public and publicly guaranteed debt service (% of GNI)
## 5821                                                                                                                                                                                                                                  PPG debt service (% of central government current revenue)
## 5822                                                                                                                                                                                                                                  PPG debt service (% of central government current revenue)
## 5823                                                                                                                                                                                            Public and publicly guaranteed debt service (% of exports of goods, services and primary income)
## 5824                                                                                                                                                                                                                                                                PPG, IBRD (TDS, current US$)
## 5825                                                                                                                                                                                                                                                                 PPG, IDA (TDS, current US$)
## 5826                                                                                                                                                                                                                                                         CB, multilateral (TDS, current US$)
## 5827                                                                                                                                                                                                                                                Multilateral debt service (TDS, current US$)
## 5828                                                                                                                                                                                                                                                         GG, multilateral (TDS, current US$)
## 5829                                                                                                                                                                                                                                                        OPS, multilateral (TDS, current US$)
## 5830                                                                                                                                                                                                                Multilateral debt service (% of public and publicly guaranteed debt service)
## 5831                                                                                                                                                                                                                                                       PRVG, multilateral (TDS, current US$)
## 5832                                                                                                                                                                                                                                                         PS, multilateral (TDS, current US$)
## 5833                                                                                                                                                                                                                                            CB, multilateral concessional (TDS, current US$)
## 5834                                                                                                                                                                                                                                           PPG, multilateral concessional (TDS, current US$)
## 5835                                                                                                                                                                                                                                            GG, multilateral concessional (TDS, current US$)
## 5836                                                                                                                                                                                                                                           OPS, multilateral concessional (TDS, current US$)
## 5837                                                                                                                                                                                                                                          PRVG, multilateral concessional (TDS, current US$)
## 5838                                                                                                                                                                                                                                            PS, multilateral concessional (TDS, current US$)
## 5839                                                                                                                                                                                                                                                   CB, official creditors (TDS, current US$)
## 5840                                                                                                                                                                                                                                                  PPG, official creditors (TDS, current US$)
## 5841                                                                                                                                                                                                                                                   GG, official creditors (TDS, current US$)
## 5842                                                                                                                                                                                                                                                  OPS, official creditors (TDS, current US$)
## 5843                                                                                                                                                                                                                                                 PRVG, official creditors (TDS, current US$)
## 5844                                                                                                                                                                                                                                                   PS, official creditors (TDS, current US$)
## 5845                                                                                                                                                                                                                                                                CB, bonds (TDS, current US$)
## 5846                                                                                                                                                                                                                                                               PPG, bonds (TDS, current US$)
## 5847                                                                                                                                                                                                                                                                GG, bonds (TDS, current US$)
## 5848                                                                                                                                                                                                                                                               OPS, bonds (TDS, current US$)
## 5849                                                                                                                                                                                                                                                              PRVG, bonds (TDS, current US$)
## 5850                                                                                                                                                                                                                                                                PS, bonds (TDS, current US$)
## 5851                                                                                                                                                                                                                                                     CB, commercial banks (TDS, current US$)
## 5852                                                                                                                                                                                                                                                    PPG, commercial banks (TDS, current US$)
## 5853                                                                                                                                                                                                                                                     GG, commercial banks (TDS, current US$)
## 5854                                                                                                                                                                                                                                                    OPS, commercial banks (TDS, current US$)
## 5855                                                                                                                                                                                                                                                   PRVG, commercial banks (TDS, current US$)
## 5856                                                                                                                                                                                                                                                     PS, commercial banks (TDS, current US$)
## 5857                                                                                                                                                                                                                              Debt service, PPG and PNG private creditors (TDS, current US$)
## 5858                                                                                                                                                                                                                                                               PNG, bonds (TDS, current US$)
## 5859                                                                                                                                                                                                                                PNG, commercial banks and other creditors (TDS, current US$)
## 5860                                                                                                                                                                                                                                              CB, other private creditors (TDS, current US$)
## 5861                                                                                                                                                                                                                                             PPG, other private creditors (TDS, current US$)
## 5862                                                                                                                                                                                                                                              GG, other private creditors (TDS, current US$)
## 5863                                                                                                                                                                                                                                             OPS, other private creditors (TDS, current US$)
## 5864                                                                                                                                                                                                                                            PRVG, other private creditors (TDS, current US$)
## 5865                                                                                                                                                                                                                                              PS, other private creditors (TDS, current US$)
## 5866                                                                                                                                                                                                 Debt service on external debt, private guaranteed by public sector (PPG) (TDS, current US$)
## 5867                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5868                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5869                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5870                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5871                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5872                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5873                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5874                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5875                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5876                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5877                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5878                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5879                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5880                                                                                                                                                                                                                                                    CB, private creditors (TDS, current US$)
## 5881                                                                                                                                                                                                                                                   PPG, private creditors (TDS, current US$)
## 5882                                                                                                                                                                                                                                                    GG, private creditors (TDS, current US$)
## 5883                                                                                                                                                                                                                                                   OPS, private creditors (TDS, current US$)
## 5884                                                                                                                                                                                                                                                  PRVG, private creditors (TDS, current US$)
## 5885                                                                                                                                                                                                                                                    PS, private creditors (TDS, current US$)
## 5886                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5887                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5888                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5889                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5890                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5891                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5892                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5893                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5894                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5895                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5896                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5897                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5898                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5899                                                                                                                                                                                                                                Debt service, reduction in arrears/prepayments (current US$)
## 5900                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Prin. and Int., USD
## 5901                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, All instruments, Prin. and Int., Arrears, USD
## 5902                                                                                                                                                                                                  Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Interest, USD
## 5903                                                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Principal, USD
## 5904                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Prin. and Int., USD
## 5905                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Prin. and Int., USD
## 5906                                                                                                                                                                              Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Prin. and Int., USD
## 5907                                                                                                                                                                                    Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Prin. and Int., USD
## 5908                                                                                                                                                                                       Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Prin. and Int., USD
## 5909                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Prin. and Int., USD
## 5910                                                                                                                                                                                               Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, Prin. and Int., USD
## 5911                                                                                                                                                                         Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Prin. and Int., USD
## 5912                                                                                                                                                                                       Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Prin. and Int., USD
## 5913                                                                                                                                                                         Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Prin. and Int., USD
## 5914                                                                                                                                                                                                                                              Total amount of debt rescheduled (current US$)
## 5915                                                                                                                                                                                                                                         Undisbursed external debt, total (UND, current US$)
## 5916                                                                                                                                                                                                                            Undisbursed external debt, official creditors (UND, current US$)
## 5917                                                                                                                                                                                                                             Undisbursed external debt, private creditors (UND, current US$)
## 5918                                                                                                                                                                                                                                         Exports Merchandise, Customs, current US$, millions
## 5919                                                                                                                                                                                                                                        Exports Merchandise, Customs, constant US$, millions
## 5920                                                                                                                                                                                                                                                    Exports Merchandise, Customs, Price, US$
## 5921                                                                                                                                                                                                                             Exports Merchandise, Customs, current US$, millions, seas. adj.
## 5922                                                                                                                                                                                                                            Exports Merchandise, Customs, constant US$, millions, seas. adj.
## 5923                                                                                                                                                                                                                                        Exports Merchandise, Customs, Price, US$, seas. adj.
## 5924                                                                                                                                                                                                                                              081.Destination Entry Rate of Incumbents: Mean
## 5925                                                                                                                                                                                                                                            082.Destination Entry Rate of Incumbents: Median
## 5926                                                                                                                                                                                                                                            083.Destination Entry Rate of Incumbents: StDev.
## 5927                                                                                                                                                                                                                                      084.Destination Entry Rate of Surviving Entrants: Mean
## 5928                                                                                                                                                                                                                                    085.Destination Entry Rate of Surviving Entrants: Median
## 5929                                                                                                                                                                                                                                    086.Destination Entry Rate of Surviving Entrants: StDev.
## 5930                                                                                                                                                                                                                                    087.Share of New Destinations in TEV of Incumbents: Mean
## 5931                                                                                                                                                                                                                                  088.Share of New Destinations in TEV of Incumbents: Median
## 5932                                                                                                                                                                                                                                  089.Share of New Destinations in TEV of Incumbents: StDev.
## 5933                                                                                                                                                                                                                            090.Share of New Destinations in TEV of Surviving Entrants: Mean
## 5934                                                                                                                                                                                                                          091.Share of New Destinations in TEV of Surviving Entrants: Median
## 5935                                                                                                                                                                                                                          092.Share of New Destinations in TEV of Surviving Entrants: StDev.
## 5936                                                                                                                                                                                                                                               093.Destination Exit Rate of Incumbents: Mean
## 5937                                                                                                                                                                                                                                             094.Destination Exit Rate of Incumbents: Median
## 5938                                                                                                                                                                                                                                             095.Destination Exit Rate of Incumbents: StDev.
## 5939                                                                                                                                                                                                                                    096.Destination Survival Rate of 2-year Incumbents: Mean
## 5940                                                                                                                                                                                                                                  097.Destination Survival Rate of 2-year Incumbents: Median
## 5941                                                                                                                                                                                                                                  098.Destination Survival Rate of 2-year Incumbents: StDev.
## 5942                                                                                                                                                                                                                                                     Agricultural land per worker (hectares)
## 5943                                                                                                                                                                                                                                             Additional Conv. Factor (Annual avg. Local/US$)
## 5944                                                                                                                                                                                                                                           Conversion Factor (Annual average, local per US$)
## 5945                                                                                                                                                                                                                                      Agriculture value added per worker (constant 2010 US$)
## 5946                                                                                                                                                                                                                Agriculture value added per hectare of agricultural land (constant 1995 US$)
## 5947                                                                                                                                                                                                                                                                Capital expenditure (in IDR)
## 5948                                                                                                                                                                                                                                                     Goods and services expenditure (in IDR)
## 5949                                                                                                                                                                                                                                                                 Others expenditure (in IDR)
## 5950                                                                                                                                                                                                                                                              Personnel expenditure (in IDR)
## 5951                                                                                                                                                                                                                                                                  Total Expenditure (in IDR)
## 5952                                                                                                                                                                                                                         Water pollution, clay and glass industry (% of total BOD emissions)
## 5953                                                                                                                                                                                                                               Water pollution, chemical industry (% of total BOD emissions)
## 5954                                                                                                                                                                                                                                   Water pollution, food industry (% of total BOD emissions)
## 5955                                                                                                                                                                                                                                  Water pollution, metal industry (% of total BOD emissions)
## 5956                                                                                                                                                                                                                                  Water pollution, other industry (% of total BOD emissions)
## 5957                                                                                                                                                                                                                         Water pollution, paper and pulp industry (% of total BOD emissions)
## 5958                                                                                                                                                                                                                                        Organic water pollutant (BOD) emissions (kg per day)
## 5959                                                                                                                                                                                                                                Water pollution, textile industry (% of total BOD emissions)
## 5960                                                                                                                                                                                                                                   Water pollution, wood industry (% of total BOD emissions)
## 5961                                                                                                                                                                                                                             Organic water pollutant (BOD) emissions (kg per day per worker)
## 5962                                                                                                                                                                                                                                                                     Economic Fitness Metric
## 5963                                                                                                                                                                                                                                                                     Economic Fitness Metric
## 5964                                                                                                                                                                                                                                              Economic Fitness Ranking (1 = high, 149 = low)
## 5965                                                                                                                                                                                                                                                           Universal Economic Fitness Metric
## 5966                                                                                                                                                                                                           Access to clean fuels and technologies for cooking, rural (% of rural population)
## 5967                                                                                                                                                                                                           Access to clean fuels and technologies for cooking, urban (% of urban population)
## 5968                                                                                                                                                                                                                        Access to clean fuels and technologies for cooking (% of population)
## 5969                                                                                                                                                                                                                                 Energy intensity level of primary energy (MJ/$2017 PPP GDP)
## 5970                                                                                                                                                                                                                                                    Energy production (kt of oil equivalent)
## 5971                                                                                                                                                                                                                                        Access to electricity, rural (% of rural population)
## 5972                                                                                                                                                                                                                                        Access to electricity, urban (% of urban population)
## 5973                                                                                                                                                                                                                                                     Access to electricity (% of population)
## 5974                                                                                                                                                                                                                                              Electricity production from coal sources (kWh)
## 5975                                                                                                                                                                                                                                       Electricity production from coal sources (% of total)
## 5976                                                                                                                                                                                                                          Electricity production from oil, gas and coal sources (% of total)
## 5977                                                                                                                                                                                                                                     Electricity production from hydroelectric sources (kWh)
## 5978                                                                                                                                                                                                                              Electricity production from hydroelectric sources (% of total)
## 5979                                                                                                                                                                                                                                   Electric power transmission and distribution losses (kWh)
## 5980                                                                                                                                                                                                                           Electric power transmission and distribution losses (% of output)
## 5981                                                                                                                                                                                                                                       Electricity production from natural gas sources (kWh)
## 5982                                                                                                                                                                                                                                Electricity production from natural gas sources (% of total)
## 5983                                                                                                                                                                                                                                           Electricity production from nuclear sources (kWh)
## 5984                                                                                                                                                                                                                                    Electricity production from nuclear sources (% of total)
## 5985                                                                                                                                                                                                                                               Electricity production from oil sources (kWh)
## 5986                                                                                                                                                                                                                                        Electricity production from oil sources (% of total)
## 5987                                                                                                                                                                                                                                                                Electricity production (kWh)
## 5988                                                                                                                                                                                                                                         Electricity production from renewable sources (kWh)
## 5989                                                                                                                                                                                                                                Renewable electricity output (% of total electricity output)
## 5990                                                                                                                                                                                                                Electricity production from renewable sources, excluding hydroelectric (kWh)
## 5991                                                                                                                                                                                                         Electricity production from renewable sources, excluding hydroelectric (% of total)
## 5992                                                                                                                                                                                                                          Renewable energy consumption (% of total final energy consumption)
## 5993                                                                                                                                                                                                                              GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 5994                                                                                                                                                                                                                              GDP per unit of energy use (2000 US$ per kg of oil equivalent)
## 5995                                                                                                                                                                                                                                 GDP per unit of energy use (PPP $ per kg of oil equivalent)
## 5996                                                                                                                                                                                                                   GDP per unit of energy use (constant 2017 PPP $ per kg of oil equivalent)
## 5997                                                                                                                                                                                                                                                       Energy imports, net (% of energy use)
## 5998                                                                                                                                                                                                                                                       Energy imports (kt of oil equivalent)
## 5999                                                                                                                                                                                                                                     Access to non-solid fuel, rural (% of rural population)
## 6000                                                                                                                                                                                                                                     Access to non-solid fuel, urban (% of urban population)
## 6001                                                                                                                                                                                                                                                  Access to non-solid fuel (% of population)
## 6002                                                                                                                                                                                                                                      Alternative and nuclear energy (% of total energy use)
## 6003                                                                                                                                                                                                                                                 Fossil fuel energy consumption (% of total)
## 6004                                                                                                                                                                                                                        Energy use (kg of oil equivalent) per $1,000 GDP (constant 2017 PPP)
## 6005                                                                                                                                                                                                                                                           Energy use (kt of oil equivalent)
## 6006                                                                                                                                                                                                                            Combustible renewables and waste (metric tons of oil equivalent)
## 6007                                                                                                                                                                                                                                        Combustible renewables and waste (% of total energy)
## 6008                                                                                                                                                                                                                                                            Electric power consumption (kWh)
## 6009                                                                                                                                                                                                                                                 Electric power consumption (kWh per capita)
## 6010                                                                                                                                                                                                                                                Energy use (kg of oil equivalent per capita)
## 6011                                                                                                                                                                                                                                        J.P. Morgan Emerging Markets Bond Spread (EMBI+),,,,
## 6012                                                                                                                                                                                                                                          J.P. Morgan Emerging Markets Bond Index(EMBI+),,,,
## 6013                                                                                                                                                                                                                                      Economically active population in agriculture (number)
## 6014                                                                                                                                                                                                                         Economically active population in agriculture, female (FAO, number)
## 6015                                                                                                                                                                                                                                                       Agricultural population (FAO, number)
## 6016                                                                                                                                                                                                                           Economically active population in agriculture, male (FAO, number)
## 6017                                                                                                                                                                                                                                                                  Animal species, threatened
## 6018                                                                                                                                                                                                                                                     Arable land area (% of total land area)
## 6019                                                                                                                                                                                                                                 CO2 emissions from cement production (thousand metric tons)
## 6020                                                                                                                                                                                                                                      CO2 intensity (kg per kg of oil equivalent energy use)
## 6021                                                                                                                                                                                                                               CO2 emissions from fossil-fuels, total (thousand metric tons)
## 6022                                                                                                                                                                                                                                                CO2 emissions from fossil-fuels (% of total)
## 6023                                                                                                                                                                                                                                          CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6024                                                                                                                                                                                                                                           CO2 emissions from gaseous fuel consumption (kt) 
## 6025                                                                                                                                                                                                                                   CO2 emissions from gaseous fuel consumption (% of total) 
## 6026                                                                                                                                                                                                                                       CO2 emissions from gas flaring (thousand metric tons)
## 6027                                                                                                                                                                                                                                          CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6028                                                                                                                                                                                                                                                      CO2 emissions (kg per 2015 US$ of GDP)
## 6029                                                                                                                                                                                                                                                                          CO2 emissions (kt)
## 6030                                                                                                                                                                                                                                            CO2 emissions from liquid fuel consumption (kt) 
## 6031                                                                                                                                                                                                                                    CO2 emissions from liquid fuel consumption (% of total) 
## 6032                                                                                                                                                                                                                                                      CO2 emissions (metric tons per capita)
## 6033                                                                                                                                                                                                                                                         CO2 emissions (kg per PPP $ of GDP)
## 6034                                                                                                                                                                                                                                                    CO2 emissions (kg per 2017 PPP $ of GDP)
## 6035                                                                                                                                                                                                                                             CO2 emissions from solid fuel consumption (kt) 
## 6036                                                                                                                                                                                                                                      CO2 emissions from solid fuel consumption (% of total)
## 6037                                                                                                                                                                                                   Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)
## 6038                                                                                                                                                                                                                                         Other greenhouse gas emissions (% change from 1990)
## 6039                                                                                                                                                                                                                                       Total greenhouse gas emissions (kt of CO2 equivalent)
## 6040                                                                                                                                                                                                                                         Total greenhouse gas emissions (% change from 1990)
## 6041                                                                                                                                                                                                                                  HFC gas emissions (thousand metric tons of CO2 equivalent)
## 6042                                                                                                                                                                                                                     Agricultural methane emissions (thousand metric tons of CO2 equivalent)
## 6043                                                                                                                                                                                                                                                 Agricultural methane emissions (% of total)
## 6044                                                                                                                                                                                                                 Methane emissions in energy sector (thousand metric tons of CO2 equivalent)
## 6045                                                                                                                                                                                                                                               Energy related methane emissions (% of total)
## 6046                                                                                                                                                                                                                                               Energy related methane emissions (% of total)
## 6047                                                                                                                                                                                                                                                    Methane emissions (kt of CO2 equivalent)
## 6048                                                                                                                                                                                                                                         Methane emissions (kt of CO2 equivalent per capita)
## 6049                                                                                                                                                                                                                                                      Methane emissions (% change from 1990)
## 6050                                                                                                                                                                                                               Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6051                                                                                                                                                                                                                                           Agricultural nitrous oxide emissions (% of total)
## 6052                                                                                                                                                                                                           Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent)
## 6053                                                                                                                                                                                                                                       Nitrous oxide emissions in energy sector (% of total)
## 6054                                                                                                                                                                                             Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)
## 6055                                                                                                                                                                                                                 Industrial nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6056                                                                                                                                                                                             Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)
## 6057                                                                                                                                                                                                                            Nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6058                                                                                                                                                                                                                                     Nitrous oxide emissions (metric tons of CO2 equivalent)
## 6059                                                                                                                                                                                                                          Nitrous oxide emissions (metric tons of CO2 equivalent per capita)
## 6060                                                                                                                                                                                                                                                Nitrous oxide emissions (% change from 1990)
## 6061                                                                                                                                                                                                                                  PFC gas emissions (thousand metric tons of CO2 equivalent)
## 6062                                                                                                                                                                                                                                            PM10, country level (micrograms per cubic meter)
## 6063                                                                                                                                                                                                                      PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)
## 6064                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-1 value (% of total)
## 6065                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-2 value (% of total)
## 6066                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-3 value (% of total)
## 6067                                                                                                                                                                                                PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)
## 6068                                                                                                                                                                                                                                  SF6 gas emissions (thousand metric tons of CO2 equivalent)
## 6069                                                                                                                                                                                                                                                                    Bird species, threatened
## 6070                                                                                                                                                                                                                                                                   Bird species, total known
## 6071                                                                                                                                                                                                                          Cooling Degree Days (projected change in number of degree Celsius)
## 6072                                                                                                                                                                                                                                  Disaster risk reduction progress score (1-5 scale; 5=best)
## 6073                                                                                                                                                                                                                                   GHG net emissions/removals by LUCF (Mt of CO2 equivalent)
## 6074                                                                                                                                                                                                                                                    Heat Index 35 (projected change in days)
## 6075                                                                                                                                                                                                                 Droughts, floods, extreme temperatures (% of population, average 1990-2009)
## 6076                                                                                                                                                                                                                       Maximum 5-day Rainfall, 25-year Return Level (projected change in mm)
## 6077                                                                                                                                                                                                                                             Mean Drought Index (projected change, unitless)
## 6078                                                                                                                                                                                           CO2 emissions from residential buildings and commercial and public services (million metric tons)
## 6079                                                                                                                                                                                    CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion)
## 6080                                                                                                                                                                                                             CO2 emissions from electricity and heat production, total (million metric tons)
## 6081                                                                                                                                                                                                      CO2 emissions from electricity and heat production, total (% of total fuel combustion)
## 6082                                                                                                                                                                                                          CO2 emissions from manufacturing industries and construction (million metric tons)
## 6083                                                                                                                                                                                                   CO2 emissions from manufacturing industries and construction (% of total fuel combustion)
## 6084                                                                                                                                                                  CO2 emissions from other sectors, excluding residential buildings and commercial and public services (million metric tons)
## 6085                                                                                                                                                           CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)
## 6086                                                                                                                                                                                                                                          CO2 emissions from transport (million metric tons)
## 6087                                                                                                                                                                                                                                   CO2 emissions from transport (% of total fuel combustion)
## 6088                                                                                                                                                                                                                                         Commercial energy production (kt of oil equivalent)
## 6089                                                                                                                                                                                                                                                     Electric power production (million kwh)
## 6090                                                                                                                                                                                                                           Electric power transmission and distribution losses (% of output)
## 6091                                                                                                                                                                                                                                                                    Fish species, threatened
## 6092                                                                                                                                                                                                                                                          Plant species (higher), threatened
## 6093                                                                                                                                                                                                                                                         Plant species (higher), total known
## 6094                                                                                                                                                                                                                                                                  Land use, cropland (sq km)
## 6095                                                                                                                                                                                                                                                         Land use, cropland (% of land area)
## 6096                                                                                                                                                                                                                                                                     Land use, other (sq km)
## 6097                                                                                                                                                                                                                                                            Land use, other (% of land area)
## 6098                                                                                                                                                                                                                                                         Land use, permanent pasture (sq km)
## 6099                                                                                                                                                                                                                                                Land use, permanent pasture (% of land area)
## 6100                                                                                                                                                                                                                                                                           Land area (sq km)
## 6101                                                                                                                                                                                                                                                           Irrigated land (% of arable land)
## 6102                                                                                                                                                                                                                                                                  Mammal species, threatened
## 6103                                                                                                                                                                                                                                                   Non-agricultural population (FAO, number)
## 6104                                                                                                                                                                                                                                         Population density (people per sq. km of land area)
## 6105                                                                                                                                                                                                  Rural population living in areas where elevation is below 5 meters (% of total population)
## 6106                                                                                                                                                                                                  Urban population living in areas where elevation is below 5 meters (% of total population)
## 6107                                                                                                                                                                                                        Population living in areas where elevation is below 5 meters (% of total population)
## 6108                                                                                                                                                                                                                                          Population living in slums (% of urban population)
## 6109                                                                                                                                                                                                                                                        Electricity production (million kwh)
## 6110                                                                                                                                                                                                                                                     Electricity production (kwh per capita)
## 6111                                                                                                                                                                                                                                                                           Traffic accidents
## 6112                                                                                                                                                                                                                                                              Road traffic (vehicles per km)
## 6113                                                                                                                                                                                                                       Rural population density (rural population per sq. km of arable land)
## 6114                                                                                                                                                                                                                                                Population density, rural (people per sq km)
## 6115                                                                                                                                                                                                                                                 Traditional fuel use (kt of oil equivalent)
## 6116                                                                                                                                                                                                                                                Traditional fuel use (% of total energy use)
## 6117                                                                                                                                                                                                                                    Traffic accidents (injured or killed per 1,000 vehicles)
## 6118                                                                                                                                                                                                                                                                 Vehicles (per 1,000 people)
## 6119                                                                                                                                                                                                                                                                   Vehicles (per km of road)
## 6120                                                                                                                                                                                                                                                                  Population in largest city
## 6121                                                                                                                                                                                                                                      Population in the largest city (% of urban population)
## 6122                                                                                                                                                                                                                                   Population in urban agglomerations of more than 1 million
## 6123                                                                                                                                                                                                           Population in urban agglomerations of more than 1 million (% of total population)
## 6124                                                                                                                                                                                                             Enforcing contracts: Alternative dispute resolution (0-3) (DB16-20 methodology)
## 6125                                                                                                                                                                                                                                             Enforcing contracts: Attorney fees (% of claim)
## 6126                                                                                                                                                                                                                                                      Enforcing contracts: Cost (% of claim)
## 6127                                                                                                                                                                                                                                              Enforcing contracts: Cost (% of claim) - Score
## 6128                                                                                                                                                                                                                            Enforcing contracts: Case management (0-6) (DB16-20 methodology)
## 6129                                                                                                                                                                                                                           Enforcing contracts: Court automation (0-4) (DB17-20 methodology)
## 6130                                                                                                                                                                                                                                                Enforcing contracts: Court fees (% of claim)
## 6131                                                                                                                                                                                                               Enforcing contracts: Court structure and proceedings (0-5) (DB16 methodology)
## 6132                                                                                                                                                                                                            Enforcing contracts: Court structure and proceedings (0-5) (DB17-20 methodology)
## 6133                                                                                                                                                                                                                                           Enforcing contracts (DB04-15 methodology) - Score
## 6134                                                                                                                                                                                                                                              Enforcing contracts (DB16 methodology) - Score
## 6135                                                                                                                                                                                                                                           Enforcing contracts (DB17-20 methodology) - Score
## 6136                                                                                                                                                                                                                                          Enforcing contracts: Enforcement fees (% of claim)
## 6137                                                                                                                                                                                                                                         Enforcing contracts: Enforcement of judgment (days)
## 6138                                                                                                                                                                                                                                              Enforcing contracts: Filing and service (days)
## 6139                                                                                                                                                                                                                                                    Enforcing contracts: Procedures (number)
## 6140                                                                                                                                                                                                                                            Enforcing contracts: Procedures (number) - Score
## 6141                                                                                                                                                                                           Enforcing contracts: Quality of the judicial processes index (0-19) (DB17-20 methodology) - Score
## 6142                                                                                                                                                                                               Enforcing contracts: Quality of judicial processes index (0-19) (DB17-19 methodology) - Score
## 6143                                                                                                                                                                                                   Enforcing contracts: Quality of the judicial processes index (0-18) (DB17-20 methodology)
## 6144                                                                                                                                                                                                                            Rank: Enforcing contracts (1=most business-friendly regulations)
## 6145                                                                                                                                                                                                                                              Enforcing contracts: Trial and judgment (days)
## 6146                                                                                                                                                                                                                                                            Enforcing contracts: Time (days)
## 6147                                                                                                                                                                                                                                                    Enforcing contracts: Time (days) - Score
## 6148                                                                                                                                                                                                  Enforcing contracts: Quality of judicial administration index (0-18) (DB17-19 methodology)
## 6149                                                                                                                                                                                                                                                 Consumer Price Index in 42 cities base 1996
## 6150                                                                                                                                                                                                                                                 Consumer Price Index in 45 cities base 2002
## 6151                                                                                                                                                                                                                                                 Consumer Price Index in 66 cities base 2007
## 6152                                                                                                                                                                                                                                                 Consumer Price Index in 82 cities base 2012
## 6153                                                                                                                                                                                                                                                  Pump price for diesel fuel (US$ per liter)
## 6154                                                                                                                                                                                                                                                     Pump price for gasoline (US$ per liter)
## 6155                                                                                                                                                                                                                                     Bread and cereals price in PPP terms (U.S. price = 100)
## 6156                                                                                                                                                                                                                                       Agricultural producer price, maize ($ per metric ton)
## 6157                                                                                                                                                                                                                                                  Meat price in PPP terms (U.S. price = 100)
## 6158                                                                                                                                                                                                                                       Agricultural producer price, wheat ($ per metric ton)
## 6159                                                                                                                                                                                                        GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum)
## 6160                                                                                                                                                                                                                                                        Aquaculture production (metric tons)
## 6161                                                                                                                                                                                                                                                  Capture fisheries production (metric tons)
## 6162                                                                                                                                                                                                                                                    Total fisheries production (metric tons)
## 6163                                                                                                                                                                                                                                                          Annual deforestation (% of change)
## 6164                                                                                                                                                                                            Water productivity, total (constant 2015 US$ GDP per cubic meter of total freshwater withdrawal)
## 6165                                                                                                                                                                                                               Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)
## 6166                                                                                                                                                                                                                  Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)
## 6167                                                                                                                                                                                                                  Annual freshwater withdrawals, industry (% of total freshwater withdrawal)
## 6168                                                                                                                                                                                              Level of water stress: freshwater withdrawal as a proportion of available freshwater resources
## 6169                                                                                                                                                                                                                                 Annual freshwater withdrawals, total (billion cubic meters)
## 6170                                                                                                                                                                                                                              Annual freshwater withdrawals, total (% of internal resources)
## 6171                                                                                                                                                                                                                       Renewable internal freshwater resources, total (billion cubic meters)
## 6172                                                                                                                                                                                                                           Renewable internal freshwater resources per capita (cubic meters)
## 6173                                                                                                                                                                                                                                                       Terrestrial protected areas  (sq. km)
## 6174                                                                                                                                                                                                                                                        Terrestrial protected areas (number)
## 6175                                                                                                                                                                                                                                       Terrestrial protected areas (% of total surface area)
## 6176                                                                                                                                                                                                                                          Terrestrial protected areas (% of total land area)
## 6177                                                                                                                                                                                                                                                             Marine protected areas (sq. km)
## 6178                                                                                                                                                                                                                                                             Marine protected areas (number)
## 6179                                                                                                                                                                                                                                            Marine protected areas (% of territorial waters)
## 6180                                                                                                                                                                                                                        Terrestrial and marine protected areas (% of total territorial area)
## 6181                                                                                                                                                                                                                                            Energy imports, net (% of commercial energy use)
## 6182                                                                                                                                                                                                                              GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 6183                                                                                                                                                                                                                                     Commercial energy use (kg of oil equivalent per capita)
## 6184                                                                                                                                                                                                                                                Commercial energy use (kt of oil equivalent)
## 6185                                                                                                                                                                                                                                                             Currency Outside Banks  (local)
## 6186                                                                                                                                                                                                                      Banking assets held by foreign-owned banks (% of total banking assets)
## 6187                                                                                                                                                                                                                                          Loan accounts, commercial banks (per 1,000 adults)
## 6188                                                                                                                                                                                                                                              Loan accounts, cooperatives (per 1,000 adults)
## 6189                                                                                                                                                                                                                                 Loan accounts, microfinance institutions (per 1,000 adults)
## 6190                                                                                                                                                                                                                  Loan accounts, specialized state financial institutions (per 1,000 adults)
## 6191                                                                                                                                                                                                                                           Bank nonperforming loans to total gross loans (%)
## 6192                                                                                                                                                                                                                   Banking assets held by government-owned banks (% of total banking assets)
## 6193                                                                                                                                                                                                                                       Automated teller machines (ATMs) (per 100,000 adults)
## 6194                                                                                                                                                                                                                                             Branches, commercial banks (per 100,000 adults)
## 6195                                                                                                                                                                                                                                                 Branches, cooperatives (per 100,000 adults)
## 6196                                                                                                                                                                                                                                    Branches, microfinance institutions (per 100,000 adults)
## 6197                                                                                                                                                                                                                                                          Bank branches (per 100,000 people)
## 6198                                                                                                                                                                                                                     Branches, specialized state financial institutions (per 100,000 adults)
## 6199                                                                                                                                                                                                                                                            Bank capital to assets ratio (%)
## 6200                                                                                                                                                      656_Does a dedicated, national, multi-stakeholder structure exist to promote and coordinate provision of financial education?_#VHQB_00
## 6201                                                                                                                                                       660_Does government, industry, and NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6202                                                                                                                                                         659_Does government and industry only participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6203                                                                                                                                                                           657_Does government participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6204                                                                                                                                                                        658_Does industry only participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6205                                                                                                                                               661_Does government, industry, or NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?_#VHQC_00
## 6206                                                                                                                                                                                           655_Are there multiple agencies responsible for financial education policy and programs?_#VHQA_01
## 6207                                                                                                                                                                                              654_Is there a single agency responsible for financial education policy and programs?_#VHQA_00
## 6208                                                                                                                                                             653_Does this country have a formal definition for financial education or financial literacy or financial capability? _#VHPA_00
## 6209                                                                                                                                 685_Does the government itself or with partners maintain a website with educational content, tools, and resources for broader financial education?_#VHXA_01
## 6210                                                                                                                                                                                    674_Is financial education integrated into any government-provided social assistance programs? _#VHVA_00
## 6211                                                                                                                                                            669_Has the government issued written guidelines directed to all providers of financial education on content and/or methodology?
## 6212                                                                                                                                               668_Has the government issued written guidelines directed to a limited set of providers of financial education on content and/or methodology?
## 6213                                                                                                                             670_Has the government issued written guidelines directed to all, some, or none of the providers of financial education on content and/or methodology?_#VHUA_00
## 6214                                                                                                                                662_Has the government, either by itself or with partners, undertaken a national mapping of financial education activities in the past five years? _#VHRA_00
## 6215                                                                                                                    667_Has a nationally representative broader survey with a component on financial capability of individuals or households been conducted in the past five years?_#VHTA_01
## 6216                                                                                                                                   666_Has a nationally representative dedicated survey of financial capability of individuals or households been conducted in the past five years?_#VHTA_00
## 6217                                                                                                                                              678_Is financial education at the stage of curriculum development planned within the next 1-2 years within public school curriculums?_#VHWA_03
## 6218                                                                                                                                                                                   675_Is financial education included in public school curriculums as a distinct topic or subject?_#VHWA_00
## 6219                                                                                                                                                      677_Is financial education at the stage of implementation planned within the next 1-2 years within public school curriculums?_#VHWA_02
## 6220                                                                                                                                                     681_Is financial education currently or soon to be included as a topic in public school curriculums at junior secondary level?_#VHWB_01
## 6221                                                                                                                                                                                        679_Is financial education at the stage of not being included in public school curriculums?_#VHWA_04
## 6222                                                                                                                                                              680_Is financial education currently or soon to be included as a topic in public school curriculums at primary level?_#VHWB_00
## 6223                                                                                                                                                     682_Is financial education currently or soon to be included as a topic in public school curriculums at senior secondary level?_#VHWB_02
## 6224                                                                                                                                           676_Is financial education included in public school curriculums as a subtopic integrated into one or multiple other topics or subjects?_#VHWA_01
## 6225                                                                                                                                                           683_Is financial education currently or soon to be included as a topic in public school curriculums at university level?_#VHWB_03
## 6226                                                                                                                                                       684_Does the government itself or with partners maintain a website to disclose pricing and terms and conditions information?_#VHXA_00
## 6227                                                                                                                                                                                    672_Does the government explicitly require all financial service providers to offer financial education?
## 6228                                                                                                                                                                       671_Does the government explicitly require a limited set of financial service providers to offer financial education?
## 6229                                                                                                                                                     673_Does the government explicitly require all, some, or none of the financial service providers to offer financial education?_#VHUB_00
## 6230                                                                                                                                                              664_Does the government regularly collect data from all known providers of financial education on the reach of their programs?
## 6231                                                                                                                                                       663_Does the government regularly collect data from a limited set of providers of financial education on the reach of their programs?
## 6232                                                                                                                               665_Does the government regularly collect data from all, some, or none of the known providers of financial education on the reach of their programs?_#VHSA_00
## 6233                                                                                                                                                                                                                                               Commercial bank branches (per 100,000 adults)
## 6234                                                                                                                                                                                                                                          Borrowers from commercial banks (per 1,000 adults)
## 6235                                                                                                                                                                                                                                         Depositors with commercial banks (per 1,000 adults)
## 6236                                                                                                                                                                                                                                            Deposit insurance coverage (% of GDP per capita)
## 6237                                                                                                                                       593_Do laws and regulations allow consumers a cooling-off period during which they can withdraw from a product or service without a penalty?_#VHHA_02
## 6238                                                                                                                                                                  583_Do laws and regulations require assessment of borrower's ability to repay, without specific borrowing limits?_#VHFA_01
## 6239                                                                                                                                                                                                            582_Do laws and regulations set explicit limits on excessive borrowing?_#VHFA_00
## 6240                                                                                                                                                                                                 585_Do laws and regulations contain no provisions to restrict excessive borrowing?_#VHFA_03
## 6241                                                                                                                                                                                                         584_Do laws and regulations set other restrictions on excessive borrowing?_#VHFA_02
## 6242                                                                                                                                                 600_Are financial institutions required to have a minimum level of professional competence/training for agents and intermediaries?_#VHIB_04
## 6243                                                                                                                             595_Are financial institutions required to have a minimum level of professional competence/training for all relevant personnel dealing with consumers?_#VHIA_00
## 6244                                                                                                                                                       599_Are financial institutions required to have a minimum level of professional competence/training for complaints officers?_#VHIB_03
## 6245                                                                                                                                                           596_Are financial institutions required to have a minimum level of professional competence/training for credit officers?_#VHIB_00
## 6246                                                                                                                                          601_Are financial institutions required to have a minimum level of professional competence/training for customer service representatives?_#VHIB_05
## 6247                                                                                                                                                           598_Are financial institutions required to have a minimum level of professional competence/training for marketing staff?_#VHIB_02
## 6248                                                                                                                                                         597_Are financial institutions required to have a minimum level of professional competence/training for recovery officers?_#VHIB_01
## 6249                                                                                                                                                                                                602_Do laws or regulations require minimum standards for debt collection practices?_#VHJA_00
## 6250                                                                                                                               590_Do laws and regulations prohibit or restrict bundling and tying services and products in a manner that unduly restricts the choice of consumers?_#VHGA_04
## 6251                                                                                                                               589_Do laws and regulations prohibit or restrict discriminating consumers based on gender, ethnicity, faith, political affiliation, or appearance?  _#VHGA_03
## 6252                                                                                                                                               591_Do laws and regulations limit fees and charges for account closure that impede customer mobility between financial institutions?_#VHHA_00
## 6253                                                                                                                                                          594_Do laws and regulations limit early repayment penalties that impede customer mobility between financial institutions?_#VHHA_03
## 6254                                                                                                                                   592_Do laws and regulations prohibit extra burdening procedures for account closure that limit customer mobility between financial institutions?_#VHHA_01
## 6255                                                                                                                   588_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the right of the consumer?  _#VHGA_02
## 6256                                                                                             587_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the liability of the financial service provider?  _#VHGA_01
## 6257                                                                                                                      586_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that is unfair, excessively unbalanced or abusive?  _#VHGA_00
## 6258                                                                                                                                                                           629_Does the alternative dispute resolution (ADR) entity analyze the complaints data to identify trends?_#VHMF_01
## 6259                                                                                                                                                                                       619_Does the alternative dispute resolution (ADR) entity also cover non-financial services? _#VHMB_01
## 6260                                                                                                                                              612_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides both binding decisions and mediation services?_#VHLA_01
## 6261                                                                                                                                                                     613_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides binding decisions only?_#VHLA_02
## 6262                                                                                                                               627_Does the alternative dispute resolution (ADR) entity require that consumers first submit their complaints to the relevant financial institution?_#VHME_00
## 6263                                                                                                                                                                            630_Does the alternative dispute resolution (ADR) entity communicate complaint trends to the regulator?_#VHMF_02
## 6264                                                                                                                                                                    628_Does the alternative dispute resolution (ADR) entity maintain a database of registered/recorded complaints?_#VHMF_00
## 6265                                                                                                                                                                     623_Is the alternative dispute resolution (ADR) entity funded from the budget of a specific government agency?_#VHMD_01
## 6266                                                                                                                                                                    626_Is the alternative dispute resolution (ADR) entity funded by a combination of government and other sources?_#VHMD_04
## 6267                                                                                                                                                                   622_Is the alternative dispute resolution (ADR) entity funded from a budget allocated by the central government?_#VHMD_00
## 6268                                                                                                                                                                                 624_Is the alternative dispute resolution (ADR) entity funded by a financial industry association?_#VHMD_02
## 6269                                                                                                                                                                              625_Is the alternative dispute resolution (ADR) entity funded by direct contributions of its members?_#VHMD_03
## 6270                                                                                                                                                                                         618_Does the alternative dispute resolution (ADR) entity focus only on financial services?_#VHMB_00
## 6271                                                                                                                                                                     639_Are agents among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_06
## 6272                                                                                                                                                           638_Are ATM transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_05
## 6273                                                                                                                                               637_Is bundling or tying of products among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_04
## 6274                                                                                                                                                         649_Are current accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_06
## 6275                                                                                                                                                             643_Are credit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_00
## 6276                                                                                                                                                           646_Are consumer loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_03
## 6277                                                                                                                                                         648_Are deposit accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_05
## 6278                                                                                                                                                              644_Are debit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_01
## 6279                                                                                                                                                 634_Are excessive interest or fees among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_01
## 6280                                                                                                                                                         652_Are e-money products among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_09
## 6281                                                                                                                                                                       635_Is fraud among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_02
## 6282                                                                                                                                                645_Are mortgage or housing loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_02
## 6283                                                                                                                                                            650_Is life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_07
## 6284                                                                                                                                                              647_Are micro loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_04
## 6285                                                                                                                                                        651_Is non-life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_08
## 6286                                                                                                                                                               642_Are other issues among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_09
## 6287                                                                                                                                                641_Is product switching or closure among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_08
## 6288                                                                                                                                                   633_Are unclear interest or fees among the top three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_00
## 6289                                                                                                                                                    640_Are unpaid insurance claims among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_07
## 6290                                                                                                                                      636_Are mistaken or unauthorized transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_03
## 6291                                                                                                                                                                            621_Is the alternative dispute resolution (ADR) entity independent from the financial sector regulator?_#VHMC_01
## 6292                                                                                                                                                                                         617_Is the alternative dispute resolution (ADR) entity a mandatory, industry-based entity?_#VHMA_02
## 6293                                                                                                                                                                    614_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides mediation services only?_#VHLA_03
## 6294                                                                                                                                                                                   631_Does the alternative dispute resolution (ADR) entity regularly publish complaint statistics?_#VHMF_03
## 6295                                                                                                                                                                             632_Does the alternative dispute resolution (ADR) entity report complaint statistics to the regulator?_#VHMF_04
## 6296                                                                                                       611_Is there an out-of-court alternative dispute resolution (ADR) entity that provides consumers of financial services affordable and efficient recourse with a third party?_#VHLA_00
## 6297                                                                                                                                                                                                         615_Is the alternative dispute resolution (ADR) entity a statutory entity?_#VHMA_00
## 6298                                                                                                                                                                                         616_Is the alternative dispute resolution (ADR) entity a voluntary, industry-based entity?_#VHMA_01
## 6299                                                                                                                                                                          620_Is the alternative dispute resolution (ADR) entity established within the financial sector regulator?_#VHMC_00
## 6300                                                                                                                                                                                      607_Do laws or regulations set standards for accessibility in resolving customer complaints? _#VHKB_03
## 6301                                                                                                                                                  605_Do laws or regulations require financial institutions to have a designated office or unit for resolving customer complaints? _#VHKB_01
## 6302                                                                                                                                        610_Do laws or regulations set standards for providing consumers the details of a relevant external dispute resolution mechanism (if any)? _#VHKB_06
## 6303                                                                                                                                                                          604_Do laws or regulations require implementing procedures and processes to resolve customer complaints? _#VHKB_00
## 6304                                                                                                                                                                                    609_Do laws or regulations set standards for reporting complaints data to a government agency? _#VHKB_05
## 6305                                                                                                                                                                                               608_Do laws or regulations set standards for record-keeping of customer complaints? _#VHKB_04
## 6306                                                                                                                                                                        603_Do laws or regulations set standards for complaints resolution and handling by financial institutions? _#VHKA_00
## 6307                                                                                                                                                             606_Do laws or regulations set standards for timeliness of response to customer complaints by financial institutions? _#VHKB_02
## 6308                                                                                                                                                                                                 407_Do disclosure requirements for commercial banks include any form requirements?_#VGYA_02
## 6309                                                                                                                                                                                          406_Do disclosure requirements for commercial banks include a local language requirement?_#VGYA_01
## 6310                                                                                                                                                                                          405_Do disclosure requirements for commercial banks include a plain language requirement?_#VGYA_00
## 6311                                                                                                                                                                          408_Do disclosure requirements for commercial banks include information on recourse rights and processes?_#VGYA_03
## 6312                                                                                                                                                      338_Are commercial banks required to provide customers with specific types of product information at the advertisement stage?_#VGWA_00
## 6313                                                                                                                                                        341_Are commercial banks required to provide customers with specific types of product information at the contractual stage?_#VGWA_03
## 6314                                                                                                                                                     340_Are commercial banks required to provide customers with specific types of product information at the precontractual stage?_#VGWA_02
## 6315                                                                                                                                                           339_Are commercial banks required to provide customers with specific types of product information at the shopping stage?_#VGWA_01
## 6316                                                                                                                                                                    342_Are commercial banks required to provide customers with specific types of product information upon request?_#VGWA_04
## 6317                                                                                                                                                                   432_Are commercial banks required to disclose account closure fees at the shopping and/or pre-contractual stage?_#VGZA_03
## 6318                                                                                                                                                                     461_Are commercial banks required to disclose computation method at the shopping and/or pre-contractual stage?_#VHAA_02
## 6319                                                                                                                                                433_Are commercial banks required to disclose deposit insurance coverage availability at the shopping and/or pre-contractual stage?_#VGZA_04
## 6320                                                                                                                                                                459_Are commercial banks required to disclose effective interest rate at the shopping and/or pre-contractual stage?_#VHAA_00
## 6321                                                                                                                                                                     460_Are commercial banks required to disclose fees and penalties at the shopping and/or pre-contractual stage?_#VHAA_01
## 6322                                                                                                                                                           429_Are commercial banks required to disclose minimum balance requirements at the shopping and/or pre-contractual stage?_#VGZA_00
## 6323                                                                                                                                                                431_Are commercial banks required to disclose account maintenance fee at the shopping and/or pre-contractual stage?_#VGZA_02
## 6324                                                                                                                                                                    430_Are commercial banks required to disclose account opening fee at the shopping and/or pre-contractual stage?_#VGZA_01
## 6325                                                                                                                                                                     462_Are commercial banks required to disclose required insurance at the shopping and/or pre-contractual stage?_#VHAA_03
## 6326                                                                                                                                                                      463_Are commercial banks required to disclose specific warnings at the shopping and/or pre-contractual stage?_#VHAA_04
## 6327                                                                                                                                           398_Are commercial banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_00
## 6328                                                                                                                                                                     334_Does the financial consumer protection (FCP) agency have enforcement powers to impose fines and penalties?_#VGVB_03
## 6329                                                                                                                                                              335_Does the financial consumer protection (FCP) agency have enforcement powers to issue public notice of violations?_#VGVB_04
## 6330                                                                                                                                            337_Does the financial consumer protection (FCP) agency have enforcement powers to issue administrative sanctions to senior management?_#VGVB_06
## 6331                                                                                                                                                       331_Does the financial consumer protection (FCP) agency have enforcement powers to issue warnings to financial institutions?_#VGVB_00
## 6332                                                                                                                                                   332_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to refund fees and charges?_#VGVB_01
## 6333                                                                                                                                                          336_Does the financial consumer protection (FCP) agency have enforcement powers to revoke or recommend to revoke license?_#VGVB_05
## 6334                                                                                                                                        333_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to withdraw misleading advertisements?_#VGVB_02
## 6335                                                                                                                                                                                       313_Was the financial consumer protection (FCP) unit in this country established after the year 2010?
## 6336                                                                                                                                                                                      311_Was the financial consumer protection (FCP) unit in this country established before the year 2000?
## 6337                                                                                                                                                                           312_Was the financial consumer protection (FCP) unit in this country established between the years 2000 and 2010?
## 6338                                                                                                                                                                                             314_When was the financial consumer protection (FCP) unit in this country established?_#VGUF_00
## 6339                                                                                                                                     400_Are financial cooperatives required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_02
## 6340                                                                                                                            402_Are microcredit institutions (MCIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_04
## 6341                                                                                                                           403_Are non-bank e-money issuers (NBEIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_05
## 6342                                                                                                                                                                           317_Does the financial consumer protection (FCP) unit in this country have the staff of between 50 and 99 people?
## 6343                                                                                                                                                                           316_Does the financial consumer protection (FCP) unit in this country have the staff of between 10 and 49 people?
## 6344                                                                                                                                                                                           319_How many staff work in the financial consumer protection (FCP) unit in this country?_#VGUG_00
## 6345                                                                                                                                                                                315_Does the financial consumer protection (FCP) unit in this country have the staff of less than 10 people?
## 6346                                                                                                                                                                                 318_Does the financial consumer protection (FCP) unit in this country have the staff of 100 or more people?
## 6347                                                                                                                                                399_Are other banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_01
## 6348                                                                                                                  401_Are other deposit taking institutions (ODTIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_03
## 6349                                                                                                                                                                             321_Is complaints handling one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_01
## 6350                                                                                                                                                  328_Are off-site inspection of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_08
## 6351                                                                                                                                                                             330_Is financial education one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_10
## 6352                                                                                                                                 327_Are on-site inspection and investigation of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_07
## 6353                                                                                                                                                    320_Is drafting or providing inputs into regulation one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_00
## 6354                                                                                                                                                                               325_Is market monitoring one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_05
## 6355                                                                                                                                                   326_Is market research by studying consumer behavior one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_06
## 6356                                                                                                                                                                      324_Is mystery/incognito shopping one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_04
## 6357                                                                                                                322_Is collecting data from financial institutions on the number of complaints received one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_02
## 6358                                                                                                        323_Is collecting data from financial institutions on the rates and fees for financial services one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_03
## 6359                                                                                                                                                                               329_Are thematic reviews one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_09
## 6360                                                                                                                                    404_Are at least some financial institutions required to provide customers with specific types of product information in a standardized format?_#VGXH_00
## 6361                                                                                               302_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a dedicated financial consumer protection authority model?
## 6362                                                                                                           303_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a general consumer protection authority model?
## 6363                                                                                                   300_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated single financial sector authority model?
## 6364                                                                                                 301_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated sectoral financial sector authority model?
## 6365                                                                                      304_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a shared financial and general consumer protection authority model?
## 6366                                                                                                                                        305_What type of institutional structure for financial consumer protection (FCP) regulation and supervision is implemented in this country?_#VGUC_00
## 6367                                                                                                                                                                306_Under the agency overseeing financial consumer protection (FCP) in this country, is there a dedicated FCP unit?_#VGUD_00
## 6368                                                                                                                                                                                                             295_Is there a stand-alone financial consumer protection law in place?_#VGUA_02
## 6369                                                                                                                                                                                       299_Are consumer protection provisions in place within broader financial sector regulations?_#VGUB_01
## 6370                                                                                                                                                                             294_Is there a general consumer protection law with explicit reference to financial services in place?_#VGUA_01
## 6371                                                                                                                                                                          293_Is there a general consumer protection law without explicit reference to financial services in place?_#VGUA_00
## 6372                                                                                                                                                                                                 297_Is there no legal framework for financial consumer protection in this country?_#VGUA_04
## 6373                                                                                                                                                                                                      298_Are stand-alone financial consumer protection (FCP) regulations in place?_#VGUB_00
## 6374                                                                                                                                                                                        296_Are there consumer protection provisions in place within broader financial sector laws?_#VGUA_03
## 6375                                                                                                                                                                                                          Financial information infrastructure index (0=less developed to 10=more developed)
## 6376                                                                                                                                                                                  287_Is the ceiling on the minimum balance for savings/current accounts regulated in this country?_#VGTA_01
## 6377                                                                                                                                                                                       288_Are the maximum maintenance fees for savings/current accounts regulated in this country?_#VGTA_02
## 6378                                                                                                                                                                                  289_Are the maximum overdraft penalty or below minimum balance penalty regulated in this country?_#VGTA_03
## 6379                                                                                                                                                                                               286_Is the maximum cost to open a savings/current account regulated in this country?_#VGTA_00
## 6380                                                                                                                                                                            292_Is there no cost for customers to open a savings/current account as per regulation in this country?_#VGTA_06
## 6381                                                                                                                                                                                         291_Is there no law or regulation regarding the cost of customer accounts in this country?_#VGTA_05
## 6382                                                                                                                                                                                                  290_Are other factors in the cost of customer accounts regulated in this country?_#VGTA_04
## 6383                                                                                                                                                                                 231_Are non-bank e-money issuers (NBEIs) permitted to pay interest on customers' e-money accounts?_#VGOA_00
## 6384                                                                                                                                                              233_Are non-bank e-money issuers (NBEIs) not permitted to pay interest or share profits with their e-money customers?_#VGOA_02
## 6385                                                                                                                              230_Are non-bank e-money issuers (NBEIs) prohibited from using customer funds for purposes other than redeeming e-money and executing fund transfers?_#VGNA_00
## 6386                                                                                                                                                                                  232_Are non-bank e-money issuers (NBEIs) permitted to share profits with their e-money customers?_#VGOA_01
## 6387                                                                                                                                                                                                227_Is the use of accounts at the central bank required to safeguard e-money funds?_#VGMA_03
## 6388                                                                                                                                                                                                             225_Is the use of escrow accounts required to safeguard e-money funds?_#VGMA_01
## 6389                                                                                                                                                                                                                228_Is the type of accounts to safeguard e-money funds not defined?_#VGMA_04
## 6390                                                                                                                                                                                      229_Is some other type of accounts (not mentioned above) required to safeguard e-money funds?_#VGMA_05
## 6391                                                                                                                                                                                                            226_Is the use of regular accounts required to safeguard e-money funds?_#VGMA_02
## 6392                                                                                                                                                                                                              224_Is the use of trust accounts required to safeguard e-money funds?_#VGMA_00
## 6393                                                                                 220_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at more than one prudentially regulated financial institution, possibly the central bank and others?
## 6394                                                                                                 219_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at a single prudentially regulated financial institution, possibly the central bank?
## 6395                                                                                                                                                                                             222_Is it not required that customers' e-money funds are separated from e-money issuer's funds?
## 6396                                                                        221_Is only a fraction of customers' e-money funds required to be separated from e-money issuer's funds and kept at one or more prudentially regulated financial institutions, possibly the central bank and others?
## 6397                                                                                                          223_What fraction of customers' e-money funds is required to be separated from e-money issuer's funds and kept at how many prudentially regulated financial institutions?_#VGLA_00
## 6398                                                                                                                                                                                192_For commercial banks, is authorization of new or modified financial products always explicitly required?
## 6399                                                                                                                                                                                 194_For commercial banks, is authorization of new or modified financial products never explicitly required?
## 6400                                                                                                                                                                    193_For commercial banks, is authorization of new or modified financial products only in some cases explicitly required?
## 6401                                                                                                                                                                              195_For commercial banks, is authorization of new or modified financial products explicitly required?_#VGJA_00
## 6402                                                                                                                      266_For commercial banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_00
## 6403                                                                                                                                                                                             162_Are commercial banks required to check/report to credit bureau for some/all loans?_#VGHA_00
## 6404                                                                                                                                                                                                   168_For commercial banks, is all lending subject to interest rate caps or pricing limits?
## 6405                                                                                                                                                                                                                169_For commercial banks, are there no interest rate caps or pricing limits?
## 6406                                                                                                                                                                   170_For commercial banks, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6407                                                                                                                                                                             171_For commercial banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_00
## 6408                                                                                                                                   271_Are commercial banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSA_01
## 6409                                                                                                                                                          270_Are commercial banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSA_00
## 6410                                                                                                                                                                  273_Are commercial banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSA_03
## 6411                                                                                                                                               272_Are commercial banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSA_02
## 6412                                                                                                                                                                                                      123_Are commercial banks liable for any actions or omissions of their agents?_#VGFA_00
## 6413                                                                                                                                                                          200_For financial cooperatives, is authorization of new or modified financial products always explicitly required?
## 6414                                                                                                                                                                           202_For financial cooperatives, is authorization of new or modified financial products never explicitly required?
## 6415                                                                                                                                                              201_For financial cooperatives, is authorization of new or modified financial products only in some cases explicitly required?
## 6416                                                                                                                                                                        203_For financial cooperatives, is authorization of new or modified financial products explicitly required?_#VGJA_02
## 6417                                                                                                                268_For financial cooperatives, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_02
## 6418                                                                                                                                                                                       164_Are financial cooperatives required to check/report to credit bureau for some/all loans?_#VGHA_02
## 6419                                                                                                                                                                                             176_For financial cooperatives, is all lending subject to interest rate caps or pricing limits?
## 6420                                                                                                                                                                                                          177_For financial cooperatives, are there no interest rate caps or pricing limits?
## 6421                                                                                                                                                             178_For financial cooperatives, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6422                                                                                                                                                                       179_For financial cooperatives, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_02
## 6423                                                                                                                             279_Are financial cooperatives allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSC_01
## 6424                                                                                                                                                    278_Are financial cooperatives allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSC_00
## 6425                                                                                                                                                            281_Are financial cooperatives allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSC_03
## 6426                                                                                                                                         280_Are financial cooperatives allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSC_02
## 6427                                                                                                                                                                                                131_Are financial cooperatives liable for any actions or omissions of their agents?_#VGFC_00
## 6428                                                                                                                                                                               218_Are consumer risks assessed during authorization process for modified or new financial products?_#VGKA_02
## 6429                                                                                                                                                                                217_Are AML/CFT risks assessed during authorization process for modified or new financial products?_#VGKA_01
## 6430                                                                                                                                                                            216_Are operational risks assessed during authorization process for modified or new financial products?_#VGKA_00
## 6431                                                                                                                                                                                                            001_Does a regulatory/supervisory framework exist for commercial banks?_#VGAA_00
## 6432                                                                                                                                                                                                      003_Does a regulatory/supervisory framework exist for financial cooperatives?_#VGAA_02
## 6433                                                                                                                                                                                             005_Does a regulatory/supervisory framework exist for microcredit institutions (MCIs)?_#VGAA_04
## 6434                                                                                                                                                                                            006_Does a regulatory/supervisory framework exist for non-bank e-money issuers (NBEIs)?_#VGAA_05
## 6435                                                                                                                                                                                                                 002_Does a regulatory/supervisory framework exist for other banks?_#VGAA_01
## 6436                                                                                                                                                                                   004_Does a regulatory/supervisory framework exist for other deposit taking institutions (ODTIs)?_#VGAA_03
## 6437                                                                                                                                                                 208_For microcredit institutions (MCIs), is authorization of new or modified financial products always explicitly required?
## 6438                                                                                                                                                                  210_For microcredit institutions (MCIs), is authorization of new or modified financial products never explicitly required?
## 6439                                                                                                                                                     209_For microcredit institutions (MCIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6440                                                                                                                                                               211_For microcredit institutions (MCIs), is authorization of new or modified financial products explicitly required?_#VGJA_04
## 6441                                                                                                                                                                              166_Are microcredit institutions (MCIs) required to check/report to credit bureau for some/all loans?_#VGHA_04
## 6442                                                                                                                                                                                    184_For microcredit institutions (MCIs), is all lending subject to interest rate caps or pricing limits?
## 6443                                                                                                                                                                                                 185_For microcredit institutions (MCIs), are there no interest rate caps or pricing limits?
## 6444                                                                                                                                                    186_For microcredit institutions (MCIs), are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6445                                                                                                                                                              187_For microcredit institutions (MCIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_04
## 6446                                                                                                                                                                                       139_Are microcredit institutions (MCIs) liable for any actions or omissions of their agents?_#VGFE_00
## 6447                                                                                                                                                                212_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products always explicitly required?
## 6448                                                                                                                                                                 214_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products never explicitly required?
## 6449                                                                                                                                                    213_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6450                                                                                                                                                              215_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products explicitly required?_#VGJA_05
## 6451                                                                                                                                                                             167_Are non-bank e-money issuers (NBEIs) required to check/report to credit bureau for some/all loans?_#VGHA_05
## 6452                                                                                                                                                                                      143_Are non-bank e-money issuers (NBEIs) liable for any actions or omissions of their agents?_#VGFF_00
## 6453                                                                                                                                                                                     196_For other banks, is authorization of new or modified financial products always explicitly required?
## 6454                                                                                                                                                                                      198_For other banks, is authorization of new or modified financial products never explicitly required?
## 6455                                                                                                                                                                         197_For other banks, is authorization of new or modified financial products only in some cases explicitly required?
## 6456                                                                                                                                                                                   199_For other banks, is authorization of new or modified financial products explicitly required?_#VGJA_01
## 6457                                                                                                                           267_For other banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_01
## 6458                                                                                                                                                                                                  163_Are other banks required to check/report to credit bureau for some/all loans?_#VGHA_01
## 6459                                                                                                                                                                                                        172_For other banks, is all lending subject to interest rate caps or pricing limits?
## 6460                                                                                                                                                                                                                     173_For other banks, are there no interest rate caps or pricing limits?
## 6461                                                                                                                                                                        174_For other banks, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6462                                                                                                                                                                                  175_For other banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_01
## 6463                                                                                                                                        275_Are other banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSB_01
## 6464                                                                                                                                                               274_Are other banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSB_00
## 6465                                                                                                                                                                       277_Are other banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSB_03
## 6466                                                                                                                                                    276_Are other banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSB_02
## 6467                                                                                                                                                                                                           127_Are other banks liable for any actions or omissions of their agents?_#VGFB_00
## 6468                                                                                                                                                       204_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products always explicitly required?
## 6469                                                                                                                                                        206_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products never explicitly required?
## 6470                                                                                                                                           205_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6471                                                                                                                                                     207_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products explicitly required?_#VGJA_03
## 6472                                                                                             269_For other deposit taking institutions (ODTIs), are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_03
## 6473                                                                                                                                                                    165_Are other deposit taking institutions (ODTIs) required to check/report to credit bureau for some/all loans?_#VGHA_03
## 6474                                                                                                                                                                          180_For other deposit taking institutions (ODTIs), is all lending subject to interest rate caps or pricing limits?
## 6475                                                                                                                                                                                       181_For other deposit taking institutions (ODTIs), are there no interest rate caps or pricing limits?
## 6476                                                                                                                                          182_For other deposit taking institutions (ODTIs), are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6477                                                                                                                                                    183_For other deposit taking institutions (ODTIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_03
## 6478                                                                                                          283_Are other deposit taking institutions (ODTIs) allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSD_01
## 6479                                                                                                                                 282_Are other deposit taking institutions (ODTIs) allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSD_00
## 6480                                                                                                                                         285_Are other deposit taking institutions (ODTIs) allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSD_03
## 6481                                                                                                                      284_Are other deposit taking institutions (ODTIs) allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSD_02
## 6482                                                                                                                                                                             135_Are other deposit taking institutions (ODTIs) liable for any actions or omissions of their agents?_#VGFD_00
## 6483                                                                                                                                                                                                     028_Are commercial banks permitted to act as an agent of a financial provider?_#VGDA_02
## 6484                                                                                                                                                                                                        026_Are commercial banks permitted to provide checking or current accounts?_#VGDA_00
## 6485                                                                                                                                                                                            032_Are commercial banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDA_06
## 6486                                                                                                                                                                                                                        033_Are commercial banks permitted to distribute insurance?_#VGDA_07
## 6487                                                                                                                                                                           031_Are commercial banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDA_05
## 6488                                                                                                                                                                                                                 034_Are commercial banks permitted to distribute pension products?_#VGDA_08
## 6489                                                                                                                                                                                027_Are commercial banks permitted to contract with retail agents as third-party delivery channels?_#VGDA_01
## 6490                                                                                                                                                                                               046_Are financial cooperatives permitted to act as an agent of a financial provider?_#VGDC_02
## 6491                                                                                                                                                                                                  044_Are financial cooperatives permitted to provide checking or current accounts?_#VGDC_00
## 6492                                                                                                                                                                                      050_Are financial cooperatives permitted to issue e-money (including prepaid e-money cards) ?_#VGDC_06
## 6493                                                                                                                                                                                                                  051_Are financial cooperatives permitted to distribute insurance?_#VGDC_07
## 6494                                                                                                                                                                     049_Are financial cooperatives permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDC_05
## 6495                                                                                                                                                                                                           052_Are financial cooperatives permitted to distribute pension products?_#VGDC_08
## 6496                                                                                                                                                                          045_Are financial cooperatives permitted to contract with retail agents as third-party delivery channels?_#VGDC_01
## 6497                                                                                                                                                                                      064_Are microcredit institutions (MCIs) permitted to act as an agent of a financial provider?_#VGDE_02
## 6498                                                                                                                                                                                         062_Are microcredit institutions (MCIs) permitted to provide checking or current accounts?_#VGDE_00
## 6499                                                                                                                                                                             068_Are microcredit institutions (MCIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDE_06
## 6500                                                                                                                                                                                                         069_Are microcredit institutions (MCIs) permitted to distribute insurance?_#VGDE_07
## 6501                                                                                                                                                            067_Are microcredit institutions (MCIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDE_05
## 6502                                                                                                                                                                                                  070_Are microcredit institutions (MCIs) permitted to distribute pension products?_#VGDE_08
## 6503                                                                                                                                                                 063_Are microcredit institutions (MCIs) permitted to contract with retail agents as third-party delivery channels?_#VGDE_01
## 6504                                                                                                                                                                                     073_Are non-bank e-money issuers (NBEIs) permitted to act as an agent of a financial provider?_#VGDF_02
## 6505                                                                                                                                                                                        071_Are non-bank e-money issuers (NBEIs) permitted to provide checking or current accounts?_#VGDF_00
## 6506                                                                                                                                                                            077_Are non-bank e-money issuers (NBEIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDF_06
## 6507                                                                                                                                                                                                        078_Are non-bank e-money issuers (NBEIs) permitted to distribute insurance?_#VGDF_07
## 6508                                                                                                                                                           076_Are non-bank e-money issuers (NBEIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDF_05
## 6509                                                                                                                                                                                                 079_Are non-bank e-money issuers (NBEIs) permitted to distribute pension products?_#VGDF_08
## 6510                                                                                                                                                                072_Are non-bank e-money issuers (NBEIs) permitted to contract with retail agents as third-party delivery channels?_#VGDF_01
## 6511                                                                                                                                                                                                          037_Are other banks permitted to act as an agent of a financial provider?_#VGDB_02
## 6512                                                                                                                                                                                                             035_Are other banks permitted to provide checking or current accounts?_#VGDB_00
## 6513                                                                                                                                                                                                 041_Are other banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDB_06
## 6514                                                                                                                                                                                                                             042_Are other banks permitted to distribute insurance?_#VGDB_07
## 6515                                                                                                                                                                                040_Are other banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDB_05
## 6516                                                                                                                                                                                                                      043_Are other banks permitted to distribute pension products?_#VGDB_08
## 6517                                                                                                                                                                                     036_Are other banks permitted to contract with retail agents as third-party delivery channels?_#VGDB_01
## 6518                                                                                                                                                                            055_Are other deposit taking institutions (ODTIs) permitted to act as an agent of a financial provider?_#VGDD_02
## 6519                                                                                                                                                                               053_Are other deposit taking institutions (ODTIs) permitted to provide checking or current accounts?_#VGDD_00
## 6520                                                                                                                                                                   059_Are other deposit taking institutions (ODTIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDD_06
## 6521                                                                                                                                                                                               060_Are other deposit taking institutions (ODTIs) permitted to distribute insurance?_#VGDD_07
## 6522                                                                                                                                                  058_Are other deposit taking institutions (ODTIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDD_05
## 6523                                                                                                                                                                                        061_Are other deposit taking institutions (ODTIs) permitted to distribute pension products?_#VGDD_08
## 6524                                                                                                                                                       054_Are other deposit taking institutions (ODTIs) permitted to contract with retail agents as third-party delivery channels?_#VGDD_01
## 6525                                                                                                                                                                                                     007_Are any non-bank e-money issuers subsidiaries of mobile network operators?_#VGAB_00
## 6526                                                                                                                                          081_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of commercial banks?_#VGEB_00
## 6527                                                                                                                                     083_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of commercial banks?_#VGEB_02
## 6528                                                                                                                                                                      084_Are third parties such as retail agents allowed to open a customer account on behalf of commercial banks?_#VGEB_03
## 6529                                                                                                                                                                             086_Are third parties such as retail agents allowed to receive deposits on behalf of commercial banks?_#VGEB_05
## 6530                                                                                                                                    095_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of financial cooperatives?_#VGED_00
## 6531                                                                                                                               097_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of financial cooperatives?_#VGED_02
## 6532                                                                                                                                                                098_Are third parties such as retail agents allowed to open a customer account on behalf of financial cooperatives?_#VGED_03
## 6533                                                                                                                                                                       100_Are third parties such as retail agents allowed to receive deposits on behalf of financial cooperatives?_#VGED_05
## 6534                                                                                                                           109_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of microcredit institutions (MCIs)?_#VGEF_00
## 6535                                                                                                                      111_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of microcredit institutions (MCIs)?_#VGEF_02
## 6536                                                                                                                                                       112_Are third parties such as retail agents allowed to open a customer account on behalf of microcredit institutions (MCIs)?_#VGEF_03
## 6537                                                                                                                                                              114_Are third parties such as retail agents allowed to receive deposits on behalf of microcredit institutions (MCIs)?_#VGEF_05
## 6538                                                                                                                          116_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_00
## 6539                                                                                                                     118_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_02
## 6540                                                                                                                                                      119_Are third parties such as retail agents allowed to open a customer account on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_03
## 6541                                                                                                                                                             121_Are third parties such as retail agents allowed to receive deposits on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_05
## 6542                                                                                                                                               088_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other banks?_#VGEC_00
## 6543                                                                                                                                          090_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other banks?_#VGEC_02
## 6544                                                                                                                                                                           091_Are third parties such as retail agents allowed to open a customer account on behalf of other banks?_#VGEC_03
## 6545                                                                                                                                                                                  093_Are third parties such as retail agents allowed to receive deposits on behalf of other banks?_#VGEC_05
## 6546                                                                                                                 102_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other deposit taking institutions (ODTIs)?_#VGEE_00
## 6547                                                                                                            104_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other deposit taking institutions (ODTIs)?_#VGEE_02
## 6548                                                                                                                                             105_Are third parties such as retail agents allowed to open a customer account on behalf of other deposit taking institutions (ODTIs)?_#VGEE_03
## 6549                                                                                                                                                    107_Are third parties such as retail agents allowed to receive deposits on behalf of other deposit taking institutions (ODTIs)?_#VGEE_05
## 6550                                                                                                                                                                 080_Are at least some financial service providers permitted to use retail agents as third-party delivery channels?_#VGEA_00
## 6551                                                                                                                                                                                                            148_Is the term of microcredit explicitly defined in law or regulation?_#VGGA_01
## 6552                                                                                                                                                                                                           147_Is the term of microfinance explicitly defined in law or regulation?_#VGGA_00
## 6553                                                                                                                                                                                                           149_Is the term of microsavings explicitly defined in law or regulation?_#VGGA_02
## 6554                                                                                                                                                                             018_Is a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) under development?_#VGAG_01
## 6555                                                                                                                                                                        017_Has a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) already been launched?_#VGAG_00
## 6556                                                                                                                                                                                                           009_Is a national financial inclusion strategy (NFIS) under development?_#VGAC_01
## 6557                                                                                                                                                                                                      008_Has a national financial inclusion strategy (NFIS) already been launched?_#VGAC_00
## 6558                                                                                                                                                          012_Is a general financial sector development strategy with a financial inclusion component (GFSDS/FI) under development?_#VGAD_01
## 6559                                                                                                                                                     011_Has a general financial sector development strategy with a financial inclusion component (GFSDS/FI) already been launched?_#VGAD_00
## 6560                                                                                                                                                                                                                   016_Is a national microfinance strategy (NMS) under development?_#VGAF_01
## 6561                                                                                                                                                                                                              015_Has a national microfinance strategy (NMS) already been launched?_#VGAF_00
## 6562                                                                                                                                                                            014_Is a national development strategy with a financial inclusion component (NDS/FI) under development?_#VGAE_01
## 6563                                                                                                                                                                       013_Has a national development strategy with a financial inclusion component (NDS/FI) already been launched?_#VGAE_00
## 6564                                                                                                                                                                     022_Are deposit-taking institutions required to offer basic financial products to promote financial inclusion?_#VGBA_03
## 6565                                                                                                                                                                       023_Are recipients of government transfers encouraged or mandated to open an account to receive their funds?_#VGBA_04
## 6566                                                                                                                                                                                                         020_Are priority lending policies in place to promote financial inclusion?_#VGBA_01
## 6567                                                                                                                                                                   019_Are requirements, exceptions, tax incentives, or subsidies policies in place to promote financial inclusion?_#VGBA_00
## 6568                                                                                                                                                                                                     021_Are tax incentive savings schemes in place to promote financial inclusion?_#VGBA_02
## 6569                                                                                                                                                      025_Has a survey of firms including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_01
## 6570                                                                                                                                  024_Has a survey of households or individuals including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_00
## 6571                                                                                                                                                                                                                                       Deposit accounts, commercial banks (per 1,000 adults)
## 6572                                                                                                                                                                                                                                           Deposit accounts, cooperatives (per 1,000 adults)
## 6573                                                                                                                                                                                                                              Deposit accounts, microfinance institutions (per 1,000 adults)
## 6574                                                                                                                                                                                                                                                    Bank deposit accounts (per 1,000 people)
## 6575                                                                                                                                                                                                               Deposit accounts, specialized state financial institutions (per 1,000 adults)
## 6576                                                                                                                                                                                                                                                Point-of-sale terminals (per 100,000 adults)
## 6577                                                                                                                                                                                                                                        General administration function expenditure (in IDR)
## 6578                                                                                                                                                                                                                                                   Agriculture function expenditure (in IDR)
## 6579                                                                                                                                                                                                                                                       Economy function expenditure (in IDR)
## 6580                                                                                                                                                                                                                                                     Education function expenditure (in IDR)
## 6581                                                                                                                                                                                                                                                   Environment function expenditure (in IDR)
## 6582                                                                                                                                                                                                                                                        Health function expenditure (in IDR)
## 6583                                                                                                                                                                                                                                 Housing and public facilities function expenditure (in IDR)
## 6584                                                                                                                                                                                                                                                Infrastructure function expenditure (in IDR)
## 6585                                                                                                                                                                                                                                             Social protection function expenditure (in IDR)
## 6586                                                                                                                                                                                                                                         Public, law and order function expenditure (in IDR)
## 6587                                                                                                                                                                                                                                                     Religious function expenditure (in IDR)
## 6588                                                                                                                                                                                                                                           Tourism and culture function expenditure (in IDR)
## 6589                                                                                                                                                                                                                                       Domestic credit to private sector by banks (% of GDP)
## 6590                                                                                                                                                                                                                                               Bank liquid reserves to bank assets ratio (%)
## 6591                                                                                                                                                                                                                                       Gold Holdings at London market price (US$ end period)
## 6592                                                                                                                                                                                                                                        Gold, valued at year-end London prices (current US$)
## 6593                                                                                                                                                                                                                                                 Total reserves (includes gold, current US$)
## 6594                                                                                                                                                                                                                     Total reserves including gold valued at London gold price (current US$)
## 6595                                                                                                                                                                                                                                                     Total reserves includes gold (% of GDP)
## 6596                                                                                                                                                                                                                                                   Total reserves (% of total external debt)
## 6597                                                                                                                                                                                                                                                         Total reserves in months of imports
## 6598                                                                                                                                                                                                                                   Total reserves in months of imports of goods and services
## 6599                                                                                                                                                                                                                                                     Total reserves minus gold (current US$)
## 6600                                                                                                                                                                                                                                                   Financial institution account (% age 15+)
## 6601                                                                                                                                                                                                                                               Financial institution account,male(% age 15+)
## 6602                                                                                                                                                                                                                                    Financial institution account, in labor force(% age 15+)
## 6603                                                                                                                                                                                                                               Financial institution account, out of labor force (% age 15+)
## 6604                                                                                                                                                                                                                                             Financial institution account,female(% age 15+)
## 6605                                                                                                                                                                                                                                     Financial institution account,young adults(% age 15-24)
## 6606                                                                                                                                                                                                                                      Financial institution account, older adults(% age 25+)
## 6607                                                                                                                                                                                                                         Financial institution account, primary education or less(% age 15+)
## 6608                                                                                                                                                                                                                        Financial institution account, seconday education or more(% age 15+)
## 6609                                                                                                                                                                                                                                Financial institution account,income,poorest 40% (% age 15+)
## 6610                                                                                                                                                                                                                                Financial institution account,income,richest 60% (% age 15+)
## 6611                                                                                                                                                                                                                                             Financial institution account, rural(% age 15+)
## 6612                                                                                                                                                                                                               Withdrawal in the past year (% with a financial institution account, age 15+)
## 6613                                                                                                                                                                                                                      No account because financial institutions are too far away (% age 15+)
## 6614                                                                                                                                                                             No account because financial institutions are too far away (% without a financial institution account, age 15+)
## 6615                                                                                                                                                                                                                         No account because financial services are too expensive (% age 15+)
## 6616                                                                                                                                                                                No account because financial services are too expensive (% without a financial institution account, age 15+)
## 6617                                                                                                                                                                                                                           No account because of lack of necessary documentation (% age 15+)
## 6618                                                                                                                                                                                  No account because of lack of necessary documentation (% without a financial institution account, age 15+)
## 6619                                                                                                                                                                                                                   No account because of lack of trust in financial institutions (% age 15+)
## 6620                                                                                                                                                                          No account because of lack of trust in financial institutions (% without a financial institution account, age 15+)
## 6621                                                                                                                                                                                                                                         No account because of religious reasons (% age 15+)
## 6622                                                                                                                                                                                                No account because of religious reasons (% without a financial institution account, age 15+)
## 6623                                                                                                                                                                                                                                        No account because of insufficient funds (% age 15+)
## 6624                                                                                                                                                                                               No account because of insufficient funds (% without a financial institution account, age 15+)
## 6625                                                                                                                                                                                                                         No account because someone in the family has an account (% age 15+)
## 6626                                                                                                                                                                                No account because someone in the family has an account (% without a financial institution account, age 15+)
## 6627                                                                                                                                                                                                                       No account because of no need for financial services ONLY (% age 15+)
## 6628                                                                                                                                                                              No account because of no need for financial services ONLY (% without a financial institution account, age 15+)
## 6629                                                                                                                                                                                                         SMEs with at least one female owner with a proportion of loans requiring collateral
## 6630                                                                                                                                                                                                                                        SMEs with a proportion of loans requiring collateral
## 6631                                                                                                                                                                                                              Main mode of withdrawal: ATM (% with a financial institution account, age 15+)
## 6632                                                                                                                                                                                                      Main mode of withdrawal: bank teller (% with a financial institution account, age 15+)
## 6633                                                                                                                                                                                                                                 Used the internet to pay bills in the past year (% age 15+)
## 6634                                                                                                                                                                                                                           Used the internet to pay bills in the past year, male (% age 15+)
## 6635                                                                                                                                                                                                                Used the internet to pay bills in the past year, in labor force  (% age 15+)
## 6636                                                                                                                                                                                                             Used the internet to pay bills in the past year, out of labor force (% age 15+)
## 6637                                                                                                                                                                                                                         Used the internet to pay bills in the past year , female(% age 15+)
## 6638                                                                                                                                                                                                                Used the internet to pay bills in the past year , young adults (% age 15-24)
## 6639                                                                                                                                                                                                                  Used the internet to pay bills in the past year , older adults (% age 25+)
## 6640                                                                                                                                                                                                      Used the internet to pay bills in the past year, primary education or less (% age 15+)
## 6641                                                                                                                                                                                                   Used the internet to pay bills in the past year , secondary education or more (% age 15+)
## 6642                                                                                                                                                                                                             Used the internet to pay bills in the past year, income, poorest 40%(% age 15+)
## 6643                                                                                                                                                                                                            Used the internet to pay bills in the past year , income, richest 60%(% age 15+)
## 6644                                                                                                                                                                                                                         Used the internet to pay bills in the past year , rural (% age 15+)
## 6645                                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year (% age 15+)
## 6646                                                                                                                                                                                                Used the internet to pay bills or to buy something online in the past year, male (% age 15+)
## 6647                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year, in labor force (% age 15+)
## 6648                                                                                                                                                                                  Used the internet to pay bills or to buy something online in the past year, out of labor force (% age 15+)
## 6649                                                                                                                                                                                              Used the internet to pay bills or to buy something online in the past year, female (% age 15+)
## 6650                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year, young adults (% age 15-24)
## 6651                                                                                                                                                                                        Used the internet to pay bills or to buy something online in the past year, older adults (% age 25+)
## 6652                                                                                                                                                                           Used the internet to pay bills or to buy something online in the past year, primary education or less (% age 15+)
## 6653                                                                                                                                                                         Used the internet to pay bills or to buy something online in the past year, secondary education or less (% age 15+)
## 6654                                                                                                                                                                                 Used the internet to pay bills or to buy something online in the past year, income, poorest 40% (% age 15+)
## 6655                                                                                                                                                                                 Used the internet to pay bills or to buy something online in the past year, income, richest 60% (% age 15+)
## 6656                                                                                                                                                                                               Used the internet to pay bills or to buy something online in the past year, rural (% age 15+)
## 6657                                                                                                                                                                                                                       Used the internet to buy something online in the past year(% age 15+)
## 6658                                                                                                                                                                                                                 Used the internet to buy something online in the past year, male(% age 15+)
## 6659                                                                                                                                                                                                      Used the internet to buy something online in the past year, in labor force (% age 15+)
## 6660                                                                                                                                                                                                  Used the internet to buy something online in the past year, out of labor force (% age 15+)
## 6661                                                                                                                                                                                                               Used the internet to buy something online in the past year, female(% age 15+)
## 6662                                                                                                                                                                                                      Used the internet to buy something online in the past year, young adults (% age 15-24)
## 6663                                                                                                                                                                                                        Used the internet to buy something online in the past year, older adults (% age 25+)
## 6664                                                                                                                                                                                           Used the internet to buy something online in the past year, primary education or less (% age 15+)
## 6665                                                                                                                                                                                         Used the internet to buy something online in the past year, secondary education or more (% age 15+)
## 6666                                                                                                                                                                                                 Used the internet to buy something online in the past year, income, poorest 40% (% age 15+)
## 6667                                                                                                                                                                                                 Used the internet to buy something online in the past year, income, richest 60% (% age 15+)
## 6668                                                                                                                                                                                                               Used the internet to buy something online in the past year, rural (% age 15+)
## 6669                                                                                                                                                                                                                          Paid online for internet purchase (% internet purchasers, age 15+)
## 6670                                                                                                                                                                                                                Paid cash on delivery for internet purchase (% internet purchasers, age 15+)
## 6671                                                                                                                                                                                                              SMEs with at least one female owner with an outstanding loan or line of credit
## 6672                                                                                                                                                                                                                                             SMEs with an outstanding loan or line of credit
## 6673                                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business (% age 15+)
## 6674                                                                                                                                                                                                                     Saved to start, operate, or expand a farm or business, male (% age 15+)
## 6675                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business, in labor force (% age 15+)
## 6676                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, out of labor force  (% age 15+)
## 6677                                                                                                                                                                                                                   Saved to start, operate, or expand a farm or business, female (% age 15+)
## 6678                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business, young adults (% age 15-24)
## 6679                                                                                                                                                                                                             Saved to start, operate, or expand a farm or business, older adults (% age 25+)
## 6680                                                                                                                                                                                                Saved to start, operate, or expand a farm or business, primary education or less (% age 15+)
## 6681                                                                                                                                                                                               Saved to start, operate, or expand a farm or business, secondary education or less(% age 15+)
## 6682                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, income, poorest 40% (% age 15+)
## 6683                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, income, richest 60% (% age 15+)
## 6684                                                                                                                                                                                                                    Saved to start, operate, or expand a farm or business, rural (% age 15+)
## 6685                                                                                                                                                                                                       SMEs with at least one female owner with an account at a formal financial institution
## 6686                                                                                                                                                                                                                                      SMEs with an account at a formal financial institution
## 6687                                                                                                                                                                                                                                                               Saved for old age (% age 15+)
## 6688                                                                                                                                                                                                                                                         Saved for old age, male (% age 15+)
## 6689                                                                                                                                                                                                                                               Saved for old age, in labor force (% age 15+)
## 6690                                                                                                                                                                                                                                           Saved for old age, out of labor force (% age 15+)
## 6691                                                                                                                                                                                                                                                       Saved for old age, female (% age 15+)
## 6692                                                                                                                                                                                                                                              Saved for old age, young adults  (% age 15-24)
## 6693                                                                                                                                                                                                                                                  Saved for old age,older adults (% age 25+)
## 6694                                                                                                                                                                                                                                    Saved for old age, primary education or less (% age 15+)
## 6695                                                                                                                                                                                                                                  Saved for old age, secondary education or more (% age 15+)
## 6696                                                                                                                                                                                                                                          Saved for old age, income, poorest 40% (% age 15+)
## 6697                                                                                                                                                                                                                                          Saved for old age, income, richest 60% (% age 15+)
## 6698                                                                                                                                                                                                                                                        Saved for old age, rural (% age 15+)
## 6699                                                                                                                                                                                                                                                               Saved for old age (% age 15+)
## 6700                                                                                                                                                                                                                                                       Saved for old age, female (% age 15+)
## 6701                                                                                                                                                                                                                                                         Saved for old age, male (% age 15+)
## 6702                                                                                                                                                                                                                                          Saved for old age, income, poorest 40% (% age 15+)
## 6703                                                                                                                                                                                                                                          Saved for old age, income, richest 60% (% age 15+)
## 6704                                                                                                                                                                                                                                                            Saved for old age (% ages 15-34)
## 6705                                                                                                                                                                                                                                                            Saved for old age (% ages 35-59)
## 6706                                                                                                                                                                                                                                                               Saved for old age (% age 60+)
## 6707                                                                                                                                                                                                                                                Saved at a financial institution (% age 15+)
## 6708                                                                                                                                                                                                                                          Saved at a financial institution, male (% age 15+)
## 6709                                                                                                                                                                                                                                Saved at a financial institution, in labor force (% age 15+)
## 6710                                                                                                                                                                                                                           Saved at a financial institution , out of labor force (% age 15+)
## 6711                                                                                                                                                                                                                                        Saved at a financial institution, female (% age 15+)
## 6712                                                                                                                                                                                                                                Saved at a financial institution, young adults (% age 15-24)
## 6713                                                                                                                                                                                                                                  Saved at a financial institution, older adults (% age 25+)
## 6714                                                                                                                                                                                                                      Saved at a financial institution, primary education or less(% age 15+)
## 6715                                                                                                                                                                                                                   Saved at a financial institution, secondary education or more (% age 15+)
## 6716                                                                                                                                                                                                                           Saved at a financial institution, income, poorest 40% (% age 15+)
## 6717                                                                                                                                                                                                                          Saved at a financial institution, income, richest 60%  (% age 15+)
## 6718                                                                                                                                                                                                                                        Saved at a financial institution, rural  (% age 15+)
## 6719                                                                                                                                                                                                                                                Saved at a financial institution (% age 15+)
## 6720                                                                                                                                                                                                                                       Saved at a financial institution, female  (% age 15+)
## 6721                                                                                                                                                                                                                                          Saved at a financial institution, male (% age 15+)
## 6722                                                                                                                                                                                                                           Saved at a financial institution, income, poorest 40% (% age 15+)
## 6723                                                                                                                                                                                                                           Saved at a financial institution, income, richest 60% (% age 15+)
## 6724                                                                                                                                                                                                                                             Saved at a financial institution (% ages 15-34)
## 6725                                                                                                                                                                                                                                             Saved at a financial institution (% ages 35-59)
## 6726                                                                                                                                                                                                                                                Saved at a financial institution (% age 60+)
## 6727                                                                                                                                                                                                                       Saved using a savings club or a person outside the family (% age 15+)
## 6728                                                                                                                                                                                                                 Saved using a savings club or a person outside the family, male (% age 15+)
## 6729                                                                                                                                                                                                       Saved using a savings club or a person outside the family , in labor force(% age 15+)
## 6730                                                                                                                                                                                                   Saved using a savings club or a person outside the family, out of labor force (% age 15+)
## 6731                                                                                                                                                                                                               Saved using a savings club or a person outside the family, female (% age 15+)
## 6732                                                                                                                                                                                                       Saved using a savings club or a person outside the family, young adults (% age 15-24)
## 6733                                                                                                                                                                                                         Saved using a savings club or a person outside the family, older adults (% age 25+)
## 6734                                                                                                                                                                                            Saved using a savings club or a person outside the family, primary education or less (% age 15+)
## 6735                                                                                                                                                                                          Saved using a savings club or a person outside the family, secondary education or more (% age 15+)
## 6736                                                                                                                                                                                                   Saved using a savings club or a person outside the family, income, poorest 40%(% age 15+)
## 6737                                                                                                                                                                                                  Saved using a savings club or a person outside the family, income, richest 60% (% age 15+)
## 6738                                                                                                                                                                                                                Saved using a savings club or a person outside the family, rural (% age 15+)
## 6739                                                                                                                                                                                                                                              Saved for education or school fees (% age 15+)
## 6740                                                                                                                                                                                                                                        Saved for education or school fees, male (% age 15+)
## 6741                                                                                                                                                                                                                              Saved for education or school fees, in labor force (% age 15+)
## 6742                                                                                                                                                                                                                          Saved for education or school fees, out of labor force (% age 15+)
## 6743                                                                                                                                                                                                                                     Saved for education or school fees, female  (% age 15+)
## 6744                                                                                                                                                                                                                             Saved for education or school fees , young adults (% age 15-24)
## 6745                                                                                                                                                                                                                               Saved for education or school fees , older adults (% age 25+)
## 6746                                                                                                                                                                                                                   Saved for education or school fees, primary education or less (% age 15+)
## 6747                                                                                                                                                                                                                 Saved for education or school fees, secondary education or more (% age 15+)
## 6748                                                                                                                                                                                                                          Saved for education or school fees, income, poorest 40%(% age 15+)
## 6749                                                                                                                                                                                                                         Saved for education or school fees, income, richest 60% (% age 15+)
## 6750                                                                                                                                                                                                                                      Saved for education or school fees, rural  (% age 15+)
## 6751                                                                                                                                                                                                                                                Saved any money in the past year (% age 15+)
## 6752                                                                                                                                                                                                                                         Saved any money in the past year, male  (% age 15+)
## 6753                                                                                                                                                                                                                               Saved any money in the past year, in labor force  (% age 15+)
## 6754                                                                                                                                                                                                                            Saved any money in the past year, out of labor force (% age 15+)
## 6755                                                                                                                                                                                                                                       Saved any money in the past year, female  (% age 15+)
## 6756                                                                                                                                                                                                                               Saved any money in the past year, young adults  (% age 15-24)
## 6757                                                                                                                                                                                                                                 Saved any money in the past year, older adults  (% age 25+)
## 6758                                                                                                                                                                                                                     Saved any money in the past year, primary education or less (% age 15+)
## 6759                                                                                                                                                                                                                   Saved any money in the past year, secondary education or more (% age 15+)
## 6760                                                                                                                                                                                                                            Saved any money in the past year, income, poorest 40%(% age 15+)
## 6761                                                                                                                                                                                                                           Saved any money in the past year, income, richest 60% (% age 15+)
## 6762                                                                                                                                                                                                                                        Saved any money in the past year, rural  (% age 15+)
## 6763                                                                                                                                                                                                                                                        Outstanding housing loan (% age 15+)
## 6764                                                                                                                                                                                                                                                 Outstanding housing loan, male  (% age 15+)
## 6765                                                                                                                                                                                                                                        Outstanding housing loan, in labor force (% age 15+)
## 6766                                                                                                                                                                                                                                    Outstanding housing loan, out of labor force (% age 15+)
## 6767                                                                                                                                                                                                                                                Outstanding housing loan, female (% age 15+)
## 6768                                                                                                                                                                                                                                        Outstanding housing loan, young adults (% age 15-24)
## 6769                                                                                                                                                                                                                                          Outstanding housing loan, older adults (% age 25+)
## 6770                                                                                                                                                                                                                             Outstanding housing loan, primary education or less (% age 15+)
## 6771                                                                                                                                                                                                                            Outstanding housing loan, secondary education or more(% age 15+)
## 6772                                                                                                                                                                                                                                   Outstanding housing loan, income, poorest 40% (% age 15+)
## 6773                                                                                                                                                                                                                                   Outstanding housing loan, income, richest 60% (% age 15+)
## 6774                                                                                                                                                                                                                                                Outstanding housing loan, rural  (% age 15+)
## 6775                                                                                                                                                                                                                                                            Debit card ownership (% age 15+)
## 6776                                                                                                                                                                                                                                                     Debit card ownership, male  (% age 15+)
## 6777                                                                                                                                                                                                                                            Debit card ownership, in labor force (% age 15+)
## 6778                                                                                                                                                                                                                                        Debit card ownership, out of labor force (% age 15+)
## 6779                                                                                                                                                                                                                                                    Debit card ownership, female (% age 15+)
## 6780                                                                                                                                                                                                                                            Debit card ownership, young adults (% age 15-24)
## 6781                                                                                                                                                                                                                                              Debit card ownership, older adults (% age 25+)
## 6782                                                                                                                                                                                                                                 Debit card ownership, primary education or less (% age 15+)
## 6783                                                                                                                                                                                                                               Debit card ownership, secondary education or more (% age 15+)
## 6784                                                                                                                                                                                                                                       Debit card ownership, income, poorest 40% (% age 15+)
## 6785                                                                                                                                                                                                                                       Debit card ownership, income, richest 60% (% age 15+)
## 6786                                                                                                                                                                                                                                                     Debit card ownership, rural (% age 15+)
## 6787                                                                                                                                                                                                                                         Borrowed for health or medical purposes (% age 15+)
## 6788                                                                                                                                                                                                                                  Borrowed for health or medical purposes, male  (% age 15+)
## 6789                                                                                                                                                                                                                       Borrowed for health or medical purposes , in labor force  (% age 15+)
## 6790                                                                                                                                                                                                                     Borrowed for health or medical purposes, out of labor force (% age 15+)
## 6791                                                                                                                                                                                                                                Borrowed for health or medical purposes, female  (% age 15+)
## 6792                                                                                                                                                                                                                         Borrowed for health or medical purposes, young adults (% age 15-24)
## 6793                                                                                                                                                                                                                           Borrowed for health or medical purposes, older adults (% age 25+)
## 6794                                                                                                                                                                                                              Borrowed for health or medical purposes, primary education or less (% age 15+)
## 6795                                                                                                                                                                                                           Borrowed for health or medical purposes, secondary education or more  (% age 15+)
## 6796                                                                                                                                                                                                                    Borrowed for health or medical purposes, income, poorest 40% (% age 15+)
## 6797                                                                                                                                                                                                                   Borrowed for health or medical purposes, income, richest 60%  (% age 15+)
## 6798                                                                                                                                                                                                                                 Borrowed for health or medical purposes, rural  (% age 15+)
## 6799                                                                                                                                                                                                                        Borrowed to start, operate, or expand a farm or business (% age 15+)
## 6800                                                                                                                                                                                                                  Borrowed to start, operate, or expand a farm or business, male (% age 15+)
## 6801                                                                                                                                                                                                       Borrowed to start, operate, or expand a farm or business, in labor force  (% age 15+)
## 6802                                                                                                                                                                                                    Borrowed to start, operate, or expand a farm or business, out of labor force (% age 15+)
## 6803                                                                                                                                                                                                                Borrowed to start, operate, or expand a farm or business, female (% age 15+)
## 6804                                                                                                                                                                                                       Borrowed to start, operate, or expand a farm or business, young adults  (% age 15-24)
## 6805                                                                                                                                                                                                          Borrowed to start, operate, or expand a farm or business, older adults (% age 25+)
## 6806                                                                                                                                                                                              Borrowed to start, operate, or expand a farm or busines, primary education or less (% age 15+)
## 6807                                                                                                                                                                                           Borrowed to start, operate, or expand a farm or business, secondary education or more (% age 15+)
## 6808                                                                                                                                                                                                  Borrowed to start, operate, or expand a farm or business, income, poorest 40%  (% age 15+)
## 6809                                                                                                                                                                                                   Borrowed to start, operate, or expand a farm or business, income, richest 60% (% age 15+)
## 6810                                                                                                                                                                                                                 Borrowed to start, operate, or expand a farm or business, rural (% age 15+)
## 6811                                                                                                                                                                                                                                       Borrowed from a store by buying on credit (% age 15+)
## 6812                                                                                                                                                                                                                                 Borrowed from a store by buying on credit, male (% age 15+)
## 6813                                                                                                                                                                                                                       Borrowed from a store by buying on credit, in labor force (% age 15+)
## 6814                                                                                                                                                                                                                   Borrowed from a store by buying on credit, out of labor force (% age 15+)
## 6815                                                                                                                                                                                                                               Borrowed from a store by buying on credit, female (% age 15+)
## 6816                                                                                                                                                                                                                       Borrowed from a store by buying on credit, young adults (% age 15-24)
## 6817                                                                                                                                                                                                                         Borrowed from a store by buying on credit, older adults (% age 25+)
## 6818                                                                                                                                                                                                            Borrowed from a store by buying on credit, primary education or less (% age 15+)
## 6819                                                                                                                                                                                                          Borrowed from a store by buying on credit, secondary education or more (% age 15+)
## 6820                                                                                                                                                                                                                 Borrowed from a store by buying on credit, income, poorest 40%  (% age 15+)
## 6821                                                                                                                                                                                                                  Borrowed from a store by buying on credit, income, richest 60% (% age 15+)
## 6822                                                                                                                                                                                                                               Borrowed from a store by buying on credit, rural  (% age 15+)
## 6823                                                                                                                                                                                                                                           Borrowed for education or school fees (% age 15+)
## 6824                                                                                                                                                                                                                                    Borrowed for education or school fees, male  (% age 15+)
## 6825                                                                                                                                                                                                                          Borrowed for education or school fees, in labor force  (% age 15+)
## 6826                                                                                                                                                                                                                      Borrowed for education or school fees , out of labor force (% age 15+)
## 6827                                                                                                                                                                                                                                  Borrowed for education or school fees, female  (% age 15+)
## 6828                                                                                                                                                                                                                          Borrowed for education or school fees, young adults  (% age 15-24)
## 6829                                                                                                                                                                                                                            Borrowed for education or school fees, older adults  (% age 25+)
## 6830                                                                                                                                                                                                                Borrowed for education or school fees, primary education or less (% age 15+)
## 6831                                                                                                                                                                                                              Borrowed for education or school fees, secondary education or more (% age 15+)
## 6832                                                                                                                                                                                                                      Borrowed for education or school fees, income, poorest 40 %(% age 15+)
## 6833                                                                                                                                                                                                                      Borrowed for education or school fees, income, richest 60% (% age 15+)
## 6834                                                                                                                                                                                                                                   Borrowed for education or school fees, rural  (% age 15+)
## 6835                                                                                                                                                                                                                                           Borrowed from a financial institution (% age 15+)
## 6836                                                                                                                                                                                                                                     Borrowed from a financial institution, male (% age 15+)
## 6837                                                                                                                                                                                                                           Borrowed from a financial institution, in labor force (% age 15+)
## 6838                                                                                                                                                                                                                       Borrowed from a financial institution, out of labor force (% age 15+)
## 6839                                                                                                                                                                                                                                   Borrowed from a financial institution, female (% age 15+)
## 6840                                                                                                                                                                                                                          Borrowed from a financial institution, young adults  (% age 15-24)
## 6841                                                                                                                                                                                                                            Borrowed from a financial institution, older adults  (% age 25+)
## 6842                                                                                                                                                                                                                Borrowed from a financial institution, primary education or less (% age 15+)
## 6843                                                                                                                                                                                                              Borrowed from a financial institution, secondary education or more (% age 15+)
## 6844                                                                                                                                                                                                                      Borrowed from a financial institution, income, poorest 40% (% age 15+)
## 6845                                                                                                                                                                                                                      Borrowed from a financial institution, income, richest 60% (% age 15+)
## 6846                                                                                                                                                                                                                                    Borrowed from a financial institution, rural (% age 15+)
## 6847                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 15+)
## 6848                                                                                                                                                                                                               Borrowed from a financial institution or used a credit card, male (% age 15+)
## 6849                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card, in labor force (% age 15+)
## 6850                                                                                                                                                                                                 Borrowed from a financial institution or used a credit card, out of labor force (% age 15+)
## 6851                                                                                                                                                                                                             Borrowed from a financial institution or used a credit card, female (% age 15+)
## 6852                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card, young adults (% age 15-24)
## 6853                                                                                                                                                                                                       Borrowed from a financial institution or used a credit card, older adults (% age 25+)
## 6854                                                                                                                                                                                          Borrowed from a financial institution or used a credit card, primary education or less (% age 15+)
## 6855                                                                                                                                                                                        Borrowed from a financial institution or used a credit card, secondary education or more (% age 15+)
## 6856                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, poorest 40% (% age 15+)
## 6857                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, richest 60% (% age 15+)
## 6858                                                                                                                                                                                                              Borrowed from a financial institution or used a credit card, rural (% age 15+)
## 6859                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 15+)
## 6860                                                                                                                                                                                                             Borrowed from a financial institution or used a credit card, female (% age 15+)
## 6861                                                                                                                                                                                                               Borrowed from a financial institution or used a credit card, male (% age 15+)
## 6862                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, poorest 40% (% age 15+)
## 6863                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, richest 60% (% age 15+)
## 6864                                                                                                                                                                                                                  Borrowed from a financial institution or used a credit card (% ages 15-34)
## 6865                                                                                                                                                                                                                  Borrowed from a financial institution or used a credit card (% ages 35-59)
## 6866                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 60+)
## 6867                                                                                                                                                                                                                                                 Borrowed from family or friends (% age 15+)
## 6868                                                                                                                                                                                                                                          Borrowed from family or friends, male  (% age 15+)
## 6869                                                                                                                                                                                                                                Borrowed from family or friends, in labor force  (% age 15+)
## 6870                                                                                                                                                                                                                             Borrowed from family or friends, out of labor force (% age 15+)
## 6871                                                                                                                                                                                                                                         Borrowed from family or friends, female (% age 15+)
## 6872                                                                                                                                                                                                                                 Borrowed from family or friends, young adults (% age 15-24)
## 6873                                                                                                                                                                                                                                  Borrowed from family or friends, older adults  (% age 25+)
## 6874                                                                                                                                                                                                                      Borrowed from family or friends, primary education or less (% age 15+)
## 6875                                                                                                                                                                                                                    Borrowed from family or friends, secondary education or more (% age 15+)
## 6876                                                                                                                                                                                                                           Borrowed from family or friends, income, poorest 40%  (% age 15+)
## 6877                                                                                                                                                                                                                           Borrowed from family or friends, income, richest 60%  (% age 15+)
## 6878                                                                                                                                                                                                                                          Borrowed from family or friends, rural (% age 15+)
## 6879                                                                                                                                                                                                                                                    Borrowed from a savings club (% age 15+)
## 6880                                                                                                                                                                                                                                             Borrowed from a savings club, male  (% age 15+)
## 6881                                                                                                                                                                                                                                    Borrowed from a savings club, in labor force (% age 15+)
## 6882                                                                                                                                                                                                                                Borrowed from a savings club, out of labor force (% age 15+)
## 6883                                                                                                                                                                                                                                            Borrowed from a savings club, female (% age 15+)
## 6884                                                                                                                                                                                                                                    Borrowed from a savings club, young adults (% age 15-24)
## 6885                                                                                                                                                                                                                                     Borrowed from a savings club, older adults  (% age 25+)
## 6886                                                                                                                                                                                                                         Borrowed from a savings club, primary education or less (% age 15+)
## 6887                                                                                                                                                                                                                       Borrowed from a savings club, secondary education or more (% age 15+)
## 6888                                                                                                                                                                                                                               Borrowed from a savings club, income, poorest 40% (% age 15+)
## 6889                                                                                                                                                                                                                               Borrowed from a savings club, income, richest 60% (% age 15+)
## 6890                                                                                                                                                                                                                                            Borrowed from a savings club, rural  (% age 15+)
## 6891                                                                                                                                                                                                                                             Borrowed any money in the past year (% age 15+)
## 6892                                                                                                                                                                                                                                      Borrowed any money in the past year, male  (% age 15+)
## 6893                                                                                                                                                                                                                            Borrowed any money in the past year, in labor force  (% age 15+)
## 6894                                                                                                                                                                                                                        Borrowed any money in the past year, out of labor force  (% age 15+)
## 6895                                                                                                                                                                                                                                     Borrowed any money in the past year, female (% age 15+)
## 6896                                                                                                                                                                                                                            Borrowed any money in the past year, young adults  (% age 15-24)
## 6897                                                                                                                                                                                                                              Borrowed any money in the past year, older adults  (% age 25+)
## 6898                                                                                                                                                                                                                  Borrowed any money in the past year, primary education or less (% age 15+)
## 6899                                                                                                                                                                                                                Borrowed any money in the past year, secondary education or more (% age 15+)
## 6900                                                                                                                                                                                                                        Borrowed any money in the past year, income, poorest 40% (% age 15+)
## 6901                                                                                                                                                                                                                        Borrowed any money in the past year, income, richest 60% (% age 15+)
## 6902                                                                                                                                                                                                                                     Borrowed any money in the past year, rural  (% age 15+)
## 6903                                                                                                                                                                                                                                        Coming up with emergency funds: possible (% age 15+)
## 6904                                                                                                                                                                                                                                  Coming up with emergency funds: possible, male (% age 15+)
## 6905                                                                                                                                                                                                                        Coming up with emergency funds: possible, in labor force (% age 15+)
## 6906                                                                                                                                                                                                                     Coming up with emergency funds: possible, out of labor force(% age 15+)
## 6907                                                                                                                                                                                                                                Coming up with emergency funds: possible, female (% age 15+)
## 6908                                                                                                                                                                                                                        Coming up with emergency funds: possible, young adults (% age 15-24)
## 6909                                                                                                                                                                                                                          Coming up with emergency funds: possible, older adults (% age 25+)
## 6910                                                                                                                                                                                                             Coming up with emergency funds: possible, primary education or less (% age 15+)
## 6911                                                                                                                                                                                                           Coming up with emergency funds: possible, secondary education or more (% age 15+)
## 6912                                                                                                                                                                                                                   Coming up with emergency funds: possible, income, poorest 40% (% age 15+)
## 6913                                                                                                                                                                                                                   Coming up with emergency funds: possible, income, richest 60% (% age 15+)
## 6914                                                                                                                                                                                                                                 Coming up with emergency funds: possible, rural (% age 15+)
## 6915                                                                                                                                                                                                                                    Coming up with emergency funds: not possible (% age 15+)
## 6916                                                                                                                                                                                                                              Coming up with emergency funds: not possible, male (% age 15+)
## 6917                                                                                                                                                                                                                    Coming up with emergency funds: not possible, in labor force (% age 15+)
## 6918                                                                                                                                                                                                                Coming up with emergency funds: not possible, out of labor force (% age 15+)
## 6919                                                                                                                                                                                                                           Coming up with emergency funds: not possible, female  (% age 15+)
## 6920                                                                                                                                                                                                                    Coming up with emergency funds: not possible, young adults (% age 15-24)
## 6921                                                                                                                                                                                                                      Coming up with emergency funds: not possible, older adults (% age 25+)
## 6922                                                                                                                                                                                                         Coming up with emergency funds: not possible, primary education or less (% age 15+)
## 6923                                                                                                                                                                                                       Coming up with emergency funds: not possible, secondary education or more (% age 15+)
## 6924                                                                                                                                                                                                               Coming up with emergency funds: not possible, income, poorest 40% (% age 15+)
## 6925                                                                                                                                                                                                               Coming up with emergency funds: not possible, income, richest 60% (% age 15+)
## 6926                                                                                                                                                                                                                             Coming up with emergency funds: not possible, rural (% age 15+)
## 6927                                                                                                                                                                                                                    Main source of emergency funds: savings (% able to raise funds, age 15+)
## 6928                                                                                                                                                                                                             Main source of emergency funds: savings, male  (% able to raise funds, age 15+)
## 6929                                                                                                                                                                                                    Main source of emergency funds: savings, in labor force (% able to raise funds, age 15+)
## 6930                                                                                                                                                                                                Main source of emergency funds: savings, out of labor force (% able to raise funds, age 15+)
## 6931                                                                                                                                                                                                            Main source of emergency funds: savings, female (% able to raise funds, age 15+)
## 6932                                                                                                                                                                                                    Main source of emergency funds: savings, young adults (% able to raise funds, age 15-24)
## 6933                                                                                                                                                                                                      Main source of emergency funds: savings, older adults (% able to raise funds, age 25+)
## 6934                                                                                                                                                                                         Main source of emergency funds: savings, primary education or less (% able to raise funds, age 15+)
## 6935                                                                                                                                                                                       Main source of emergency funds: savings, secondary education or more (% able to raise funds, age 15+)
## 6936                                                                                                                                                                                               Main source of emergency funds: savings, income, poorest 40% (% able to raise funds, age 15+)
## 6937                                                                                                                                                                                               Main source of emergency funds: savings, income, richest 60% (% able to raise funds, age 15+)
## 6938                                                                                                                                                                                                             Main source of emergency funds: savings, rural (% able to raise funds, age 15+)
## 6939                                                                                                                                                                                                                                         Main source of emergency funds: savings (% age 15+)
## 6940                                                                                                                                                                                                                                Main source of emergency funds: savings, female  (% age 15+)
## 6941                                                                                                                                                                                                                                   Main source of emergency funds: savings, male (% age 15+)
## 6942                                                                                                                                                                                                                    Main source of emergency funds: savings, income, poorest 40% (% age 15+)
## 6943                                                                                                                                                                                                                    Main source of emergency funds: savings, income, richest 60% (% age 15+)
## 6944                                                                                                                                                                                                                                     Main source of emergency funds: savings, (% ages 15-34)
## 6945                                                                                                                                                                                                                                      Main source of emergency funds: savings (% ages 35-59)
## 6946                                                                                                                                                                                                                                         Main source of emergency funds: savings (% age 60+)
## 6947                                                                                                                                                                                                          Main source of emergency funds: family or friends (% able to raise funds, age 15+)
## 6948                                                                                                                                                                                                   Main source of emergency funds: family or friends, male  (% able to raise funds, age 15+)
## 6949                                                                                                                                                                                          Main source of emergency funds: family or friends, in labor force (% able to raise funds, age 15+)
## 6950                                                                                                                                                                                      Main source of emergency funds: family or friends, out of labor force (% able to raise funds, age 15+)
## 6951                                                                                                                                                                                                 Main source of emergency funds: family or friends, female  (% able to raise funds, age 15+)
## 6952                                                                                                                                                                                         Main source of emergency funds: family or friends, young adults  (% able to raise funds, age 15-24)
## 6953                                                                                                                                                                                           Main source of emergency funds: family or friends, older adults  (% able to raise funds, age 25+)
## 6954                                                                                                                                                                               Main source of emergency funds: family or friends, primary education or less (% able to raise funds, age 15+)
## 6955                                                                                                                                                                             Main source of emergency funds: family or friends, secondary education or more (% able to raise funds, age 15+)
## 6956                                                                                                                                                                                      Main source of emergency funds: family or friends, income, poorest 40%(% able to raise funds, age 15+)
## 6957                                                                                                                                                                                     Main source of emergency funds: family or friends, income, richest 60% (% able to raise funds, age 15+)
## 6958                                                                                                                                                                                                   Main source of emergency funds: family or friends, rural (% able to raise funds, age 15+)
## 6959                                                                                                                                                                                                         Main source of emergency funds: money from working (% able to raise funds, age 15+)
## 6960                                                                                                                                                                                                  Main source of emergency funds: money from working, male  (% able to raise funds, age 15+)
## 6961                                                                                                                                                                                         Main source of emergency funds: money from working, in labor force (% able to raise funds, age 15+)
## 6962                                                                                                                                                                                     Main source of emergency funds: money from working, out of labor force (% able to raise funds, age 15+)
## 6963                                                                                                                                                                                                 Main source of emergency funds: money from working, female (% able to raise funds, age 15+)
## 6964                                                                                                                                                                                         Main source of emergency funds: money from working, young adults (% able to raise funds, age 15-24)
## 6965                                                                                                                                                                                           Main source of emergency funds: money from working, older adults (% able to raise funds, age 25+)
## 6966                                                                                                                                                                             Main source of emergency funds: money from working, primary education or less  (% able to raise funds, age 15+)
## 6967                                                                                                                                                                            Main source of emergency funds: money from working, secondary education or more (% able to raise funds, age 15+)
## 6968                                                                                                                                                                                    Main source of emergency funds: money from working, income, poorest 40% (% able to raise funds, age 15+)
## 6969                                                                                                                                                                                    Main source of emergency funds: money from working, income, richest 60% (% able to raise funds, age 15+)
## 6970                                                                                                                                                                                                  Main source of emergency funds: money from working, rural (% able to raise funds, age 15+)
## 6971                                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender (% able to raise funds, age 15+)
## 6972                                                                                                                                                                       Main source of emergency funds: loan from a bank, employer, or private lender, male  (% able to raise funds, age 15+)
## 6973                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender, in labor force (% able to raise funds, age 15+)
## 6974                                                                                                                                                          Main source of emergency funds: loan from a bank, employer, or private lender, out of labor force (% able to raise funds, age 15+)
## 6975                                                                                                                                                                      Main source of emergency funds: loan from a bank, employer, or private lender, female (% able to raise funds, age 15+)
## 6976                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender, young adults (% able to raise funds, age 15-24)
## 6977                                                                                                                                                                Main source of emergency funds: loan from a bank, employer, or private lender, older adults (% able to raise funds, age 25+)
## 6978                                                                                                                                                   Main source of emergency funds: loan from a bank, employer, or private lender, primary education or less (% able to raise funds, age 15+)
## 6979                                                                                                                                                 Main source of emergency funds: loan from a bank, employer, or private lender, secondary education or more (% able to raise funds, age 15+)
## 6980                                                                                                                                                          Main source of emergency funds: loan from a bank, employer, or private lender, income, poorest 40%(% able to raise funds, age 15+)
## 6981                                                                                                                                                         Main source of emergency funds: loan from a bank, employer, or private lender, income, richest 60% (% able to raise funds, age 15+)
## 6982                                                                                                                                                                      Main source of emergency funds: loan from a bank, employer, or private lender, rural  (% able to raise funds, age 15+)
## 6983                                                                                                                                                                                                             Main source of emergency funds: sale of assets (% able to raise funds, age 15+)
## 6984                                                                                                                                                                                                      Main source of emergency funds: sale of assets , male (% able to raise funds, age 15+)
## 6985                                                                                                                                                                                             Main source of emergency funds: sale of assets, in labor force (% able to raise funds, age 15+)
## 6986                                                                                                                                                                                         Main source of emergency funds: sale of assets, out of labor force (% able to raise funds, age 15+)
## 6987                                                                                                                                                                                                    Main source of emergency funds: sale of assets, female  (% able to raise funds, age 15+)
## 6988                                                                                                                                                                                             Main source of emergency funds: sale of assets, young adults (% able to raise funds, age 15-24)
## 6989                                                                                                                                                                                               Main source of emergency funds: sale of assets, older adults (% able to raise funds, age 25+)
## 6990                                                                                                                                                                                  Main source of emergency funds: sale of assets, primary education or less (% able to raise funds, age 15+)
## 6991                                                                                                                                                                                Main source of emergency funds: sale of assets, secondary education or more (% able to raise funds, age 15+)
## 6992                                                                                                                                                                                        Main source of emergency funds: sale of assets, income, poorest 40% (% able to raise funds, age 15+)
## 6993                                                                                                                                                                                        Main source of emergency funds: sale of assets, income, richest 60% (% able to raise funds, age 15+)
## 6994                                                                                                                                                                                                     Main source of emergency funds: sale of assets, rural  (% able to raise funds, age 15+)
## 6995                                                                                                                                                                                                                      Main source of emergency funds: other (% able to raise funds, age 15+)
## 6996                                                                                                                                                                                                                Main source of emergency funds: other, male (% able to raise funds, age 15+)
## 6997                                                                                                                                                                                                      Main source of emergency funds: other, in labor force (% able to raise funds, age 15+)
## 6998                                                                                                                                                                                                  Main source of emergency funds: other, out of labor force (% able to raise funds, age 15+)
## 6999                                                                                                                                                                                                              Main source of emergency funds: other, female (% able to raise funds, age 15+)
## 7000                                                                                                                                                                                                      Main source of emergency funds: other, young adults (% able to raise funds, age 15-24)
## 7001                                                                                                                                                                                                        Main source of emergency funds: other, older adults (% able to raise funds, age 25+)
## 7002                                                                                                                                                                                           Main source of emergency funds: other, primary education or less (% able to raise funds, age 15+)
## 7003                                                                                                                                                                                         Main source of emergency funds: other, secondary education or more (% able to raise funds, age 15+)
## 7004                                                                                                                                                                                                 Main source of emergency funds: other, income, poorest 40% (% able to raise funds, age 15+)
## 7005                                                                                                                                                                                                 Main source of emergency funds: other, income, richest 60% (% able to raise funds, age 15+)
## 7006                                                                                                                                                                                                               Main source of emergency funds: other, rural (% able to raise funds, age 15+)
## 7007                                                                                                                                                                                                                          Sent or received domestic remittances in the past year (% age 15+)
## 7008                                                                                                                                                                                                                    Sent or received domestic remittances in the past year, male (% age 15+)
## 7009                                                                                                                                                                                                         Sent or received domestic remittances in the past year, in labor force  (% age 15+)
## 7010                                                                                                                                                                                                     Sent or received domestic remittances in the past year, out of labor force  (% age 15+)
## 7011                                                                                                                                                                                                                  Sent or received domestic remittances in the past year, female (% age 15+)
## 7012                                                                                                                                                                                                          Sent or received domestic remittances in the past year, young adults (% age 15-24)
## 7013                                                                                                                                                                                                            Sent or received domestic remittances in the past year, older adults (% age 25+)
## 7014                                                                                                                                                                                               Sent or received domestic remittances in the past year, primary education or less (% age 15+)
## 7015                                                                                                                                                                                             Sent or received domestic remittances in the past year, secondary education or more (% age 15+)
## 7016                                                                                                                                                                                                     Sent or received domestic remittances in the past year, income, poorest 40% (% age 15+)
## 7017                                                                                                                                                                                                    Sent or received domestic remittances in the past year, income, richest 60%  (% age 15+)
## 7018                                                                                                                                                                                                                  Sent or received domestic remittances in the past year, rural  (% age 15+)
## 7019                                                                                                                                                                                                                                  Received domestic remittances in the past year (% age 15+)
## 7020                                                                                                                                                                                                                           Received domestic remittances in the past year, male  (% age 15+)
## 7021                                                                                                                                                                                                                  Received domestic remittances in the past year, in labor force (% age 15+)
## 7022                                                                                                                                                                                                              Received domestic remittances in the past year, out of labor force (% age 15+)
## 7023                                                                                                                                                                                                                          Received domestic remittances in the past year, female (% age 15+)
## 7024                                                                                                                                                                                                                  Received domestic remittances in the past year, young adults (% age 15-24)
## 7025                                                                                                                                                                                                                    Received domestic remittances in the past year, older adults (% age 25+)
## 7026                                                                                                                                                                                                       Received domestic remittances in the past year, primary education or less (% age 15+)
## 7027                                                                                                                                                                                                     Received domestic remittances in the past year, secondary education or more (% age 15+)
## 7028                                                                                                                                                                                                             Received domestic remittances in the past year, income, poorest 40% (% age 15+)
## 7029                                                                                                                                                                                                             Received domestic remittances in the past year, income, richest 60% (% age 15+)
## 7030                                                                                                                                                                                                                           Received domestic remittances in the past year, rural (% age 15+)
## 7031                                                                                                                                                                                                          Sent or received domestic remittances: through a financial institution (% age 15+)
## 7032                                                                                                                                                                                  Sent or received domestic remittances: through a financial institution (% senders and recipients, age 15+)
## 7033                                                                                                                                                                                                                         Sent or received domestic remittances: using an account (% age 15+)
## 7034                                                                                                                                                                                                 Sent or received domestic remittances: using an account (% senders and recipients, age 15+)
## 7035                                                                                                                                                                                                                   Sent or received domestic remittances: through a mobile phone (% age 15+)
## 7036                                                                                                                                                                                           Sent or received domestic remittances: through a mobile phone (% senders and recipients, age 15+)
## 7037                                                                                                                                                                                                               Sent or received domestic remittances: in person and in cash only (% age 15+)
## 7038                                                                                                                                                                                       Sent or received domestic remittances: in person and in cash only (% senders and recipients, age 15+)
## 7039                                                                                                                                                                                                         Sent or received domestic remittances: through a money transfer service (% age 15+)
## 7040                                                                                                                                                                                 Sent or received domestic remittances: through a money transfer service (% senders and recipients, age 15+)
## 7041                                                                                                                                                                                                      Sent or received domestic remittances: through an over-the-counter service (% age 15+)
## 7042                                                                                                                                                                              Sent or received domestic remittances: through an over-the-counter service (% senders and recipients, age 15+)
## 7043                                                                                                                                                                                                                  Received domestic remittances: through a financial institution (% age 15+)
## 7044                                                                                                                                                                                                      Received domestic remittances: through a financial institution (% recipients, age 15+)
## 7045                                                                                                                                                                                                                                 Received domestic remittances: using an account (% age 15+)
## 7046                                                                                                                                                                                                                     Received domestic remittances: using an account (% recipients, age 15+)
## 7047                                                                                                                                                                                                                           Received domestic remittances: through a mobile phone (% age 15+)
## 7048                                                                                                                                                                                                               Received domestic remittances: through a mobile phone (% recipients, age 15+)
## 7049                                                                                                                                                                                                                       Received domestic remittances: in person and in cash only (% age 15+)
## 7050                                                                                                                                                                                                           Received domestic remittances: in person and in cash only (% recipients, age 15+)
## 7051                                                                                                                                                                                                                 Received domestic remittances: through a money transfer service (% age 15+)
## 7052                                                                                                                                                                                                     Received domestic remittances: through a money transfer service (% recipients, age 15+)
## 7053                                                                                                                                                                                                              Received domestic remittances: through an over-the-counter service (% age 15+)
## 7054                                                                                                                                                                                                  Received domestic remittances: through an over-the-counter service (% recipients, age 15+)
## 7055                                                                                                                                                                                                                                      Sent domestic remittances in the past year (% age 15+)
## 7056                                                                                                                                                                                                                                Sent domestic remittances in the past year, male (% age 15+)
## 7057                                                                                                                                                                                                                      Sent domestic remittances in the past year, in labor force (% age 15+)
## 7058                                                                                                                                                                                                                 Sent domestic remittances in the past year, out of labor force  (% age 15+)
## 7059                                                                                                                                                                                                                             Sent domestic remittances in the past year, female  (% age 15+)
## 7060                                                                                                                                                                                                                     Sent domestic remittances in the past year, young adults  (% age 15-24)
## 7061                                                                                                                                                                                                                        Sent domestic remittances in the past year, older adults (% age 25+)
## 7062                                                                                                                                                                                                           Sent domestic remittances in the past year, primary education or less (% age 15+)
## 7063                                                                                                                                                                                                        Sent domestic remittances in the past year, secondary education or more  (% age 15+)
## 7064                                                                                                                                                                                                                Sent domestic remittances in the past year, income, poorest 40%  (% age 15+)
## 7065                                                                                                                                                                                                                Sent domestic remittances in the past year, income, richest 60%  (% age 15+)
## 7066                                                                                                                                                                                                                              Sent domestic remittances in the past year, rural  (% age 15+)
## 7067                                                                                                                                                                                                                      Sent domestic remittances: through a financial institution (% age 15+)
## 7068                                                                                                                                                                                                             Sent domestic remittances: through a financial institution (% senders, age 15+)
## 7069                                                                                                                                                                                                                                     Sent domestic remittances: using an account (% age 15+)
## 7070                                                                                                                                                                                                                            Sent domestic remittances: using an account (% senders, age 15+)
## 7071                                                                                                                                                                                                                               Sent domestic remittances: through a mobile phone (% age 15+)
## 7072                                                                                                                                                                                                                      Sent domestic remittances: through a mobile phone (% senders, age 15+)
## 7073                                                                                                                                                                                                                           Sent domestic remittances: in person and in cash only (% age 15+)
## 7074                                                                                                                                                                                                                  Sent domestic remittances: in person and in cash only (% senders, age 15+)
## 7075                                                                                                                                                                                                                     Sent domestic remittances: through a money transfer service (% age 15+)
## 7076                                                                                                                                                                                                            Sent domestic remittances: through a money transfer service (% senders, age 15+)
## 7077                                                                                                                                                                                                                  Sent domestic remittances: through an over-the-counter service (% age 15+)
## 7078                                                                                                                                                                                                         Sent domestic remittances: through an over-the-counter service (% senders, age 15+)
## 7079                                                                                                                                                                                                                                             Paid utility bills in the past year (% age 15+)
## 7080                                                                                                                                                                                                                                       Paid utility bills in the past year, male (% age 15+)
## 7081                                                                                                                                                                                                                            Paid utility bills in the past year, in labor force  (% age 15+)
## 7082                                                                                                                                                                                                                        Paid utility bills in the past year, out of labor force  (% age 15+)
## 7083                                                                                                                                                                                                                                     Paid utility bills in the past year, female (% age 15+)
## 7084                                                                                                                                                                                                                             Paid utility bills in the past year, young adults (% age 15-24)
## 7085                                                                                                                                                                                                                              Paid utility bills in the past year, older adults  (% age 25+)
## 7086                                                                                                                                                                                                                  Paid utility bills in the past year, primary education or less (% age 15+)
## 7087                                                                                                                                                                                                               Paid utility bills in the past year, secondary education or more  (% age 15+)
## 7088                                                                                                                                                                                                                       Paid utility bills in the past year, income, poorest 40%  (% age 15+)
## 7089                                                                                                                                                                                                                       Paid utility bills in the past year, income, richest 60%  (% age 15+)
## 7090                                                                                                                                                                                                                                     Paid utility bills in the past year , rural (% age 15+)
## 7091                                                                                                                                                                                                                       Paid utility bills: using a financial institution account (% age 15+)
## 7092                                                                                                                                                                                                 Paid utility bills: using a financial institution account (% paying utility bills, age 15+)
## 7093                                                                                                                                                                                                                                            Paid utility bills: using an account (% age 15+)
## 7094                                                                                                                                                                                                                      Paid utility bills: using an account (% paying utility bills, age 15+)
## 7095                                                                                                                                                                                                                                        Paid utility bills: using a mobile phone (% age 15+)
## 7096                                                                                                                                                                                                                  Paid utility bills: using a mobile phone (% paying utility bills, age 15+)
## 7097                                                                                                                                                                                                                                             Paid utility bills: using cash only (% age 15+)
## 7098                                                                                                                                                                                                                       Paid utility bills: using cash only (% paying utility bills, age 15+)
## 7099                                                                                                                                                                                                                                                 Received wages in the past year (% age 15+)
## 7100                                                                                                                                                                                                                                           Received wages in the past year, male (% age 15+)
## 7101                                                                                                                                                                                                                                 Received wages in the past year, in labor force (% age 15+)
## 7102                                                                                                                                                                                                                            Received wages in the past year, out of labor force  (% age 15+)
## 7103                                                                                                                                                                                                                                         Received wages in the past year, female (% age 15+)
## 7104                                                                                                                                                                                                                                Received wages in the past year, young adults  (% age 15-24)
## 7105                                                                                                                                                                                                                                   Received wages in the past year, older adults (% age 25+)
## 7106                                                                                                                                                                                                                      Received wages in the past year, primary education or less (% age 15+)
## 7107                                                                                                                                                                                                                   Received wages in the past year, secondary education or more  (% age 15+)
## 7108                                                                                                                                                                                                                           Received wages in the past year, income, poorest 40%  (% age 15+)
## 7109                                                                                                                                                                                                                           Received wages in the past year, income, richest 60%  (% age 15+)
## 7110                                                                                                                                                                                                                                         Received wages in the past year, rural  (% age 15+)
## 7111                                                                                                                                                                                                                                               Paid school fees in the past year (% age 15+)
## 7112                                                                                                                                                                                                                                         Paid school fees in the past year, male (% age 15+)
## 7113                                                                                                                                                                                                                               Paid school fees in the past year, in labor force (% age 15+)
## 7114                                                                                                                                                                                                                          Paid school fees in the past year, out of labor force  (% age 15+)
## 7115                                                                                                                                                                                                                                      Paid school fees in the past year, female  (% age 15+)
## 7116                                                                                                                                                                                                                              Paid school fees in the past year, young adults  (% age 15-24)
## 7117                                                                                                                                                                                                                                 Paid school fees in the past year, older adults (% age 25+)
## 7118                                                                                                                                                                                                                    Paid school fees in the past year, primary education or less (% age 15+)
## 7119                                                                                                                                                                                                                   Paid school fees in the past year,secondary education or more (% age 15+)
## 7120                                                                                                                                                                                                                         Paid school fees in the past year, income, poorest 40%  (% age 15+)
## 7121                                                                                                                                                                                                                          Paid school fees in the past year, income, richest 60% (% age 15+)
## 7122                                                                                                                                                                                                                                       Paid school fees in the past year, rural  (% age 15+)
## 7123                                                                                                                                                                                                                                  Received private sector wages in the past year (% age 15+)
## 7124                                                                                                                                                                                                                            Received private sector wages in the past year, male (% age 15+)
## 7125                                                                                                                                                                                                                  Received private sector wages in the past year, in labor force (% age 15+)
## 7126                                                                                                                                                                                                              Received private sector wages in the past year, out of labor force (% age 15+)
## 7127                                                                                                                                                                                                                          Received private sector wages in the past year, female (% age 15+)
## 7128                                                                                                                                                                                                                  Received private sector wages in the past year, young adults (% age 15-24)
## 7129                                                                                                                                                                                                                    Received private sector wages in the past year, older adults (% age 25+)
## 7130                                                                                                                                                                                                       Received private sector wages in the past year, primary education or less (% age 15+)
## 7131                                                                                                                                                                                                     Received private sector wages in the past year, secondary education or more (% age 15+)
## 7132                                                                                                                                                                                                             Received private sector wages in the past year, income, poorest 40% (% age 15+)
## 7133                                                                                                                                                                                                              Received private sector wages in the past year, income, richest 60%(% age 15+)
## 7134                                                                                                                                                                                                                          Received private sector wages in the past year, rural  (% age 15+)
## 7135                                                                                                                                                                                                                                   Received public sector wages in the past year (% age 15+)
## 7136                                                                                                                                                                                                                             Received public sector wages in the past year, male (% age 15+)
## 7137                                                                                                                                                                                                                  Received public sector wages in the past year, in labor force  (% age 15+)
## 7138                                                                                                                                                                                                               Received public sector wages in the past year, out of labor force (% age 15+)
## 7139                                                                                                                                                                                                                           Received public sector wages in the past year, female (% age 15+)
## 7140                                                                                                                                                                                                                   Received public sector wages in the past year, young adults (% age 15-24)
## 7141                                                                                                                                                                                                                    Received public sector wages in the past year, older adults  (% age 25+)
## 7142                                                                                                                                                                                                        Received public sector wages in the past year, primary education or less (% age 15+)
## 7143                                                                                                                                                                                                       Received public sector wages in the past year, secondary education or more(% age 15+)
## 7144                                                                                                                                                                                                              Received public sector wages in the past year, income, poorest 40% (% age 15+)
## 7145                                                                                                                                                                                                              Received public sector wages in the past year, income, richest 60% (% age 15+)
## 7146                                                                                                                                                                                                                            Received public sector wages in the past year, rural (% age 15+)
## 7147                                                                                                                                                                                                                                               Paid school fees: using cash only (% age 15+)
## 7148                                                                                                                                                                                                                           Paid school fees: using cash only (% paying school fees, age 15+)
## 7149                                                                                                                                                                                                                            Received wages: into a financial institution account (% age 15+)
## 7150                                                                                                                                                                                                           Received wages: into a financial institution account (% wage recipients, age 15+)
## 7151                                                                                                                                                                                                                                                 Received wages: into an account (% age 15+)
## 7152                                                                                                                                                                                                                                Received wages: into an account (% wage recipients, age 15+)
## 7153                                                                                                                                                                                                             Received private sector wages: into a financial institution account (% age 15+)
## 7154                                                                                                                                                                                            Received private sector wages: into a financial institution account (% wage recipients, age 15+)
## 7155                                                                                                                                                                                                                                  Received private sector wages: into an account (% age 15+)
## 7156                                                                                                                                                                                                                 Received private sector wages: into an account (% wage recipients, age 15+)
## 7157                                                                                                                                                                                                              Received public sector wages: into a financial institution account (% age 15+)
## 7158                                                                                                                                                                                             Received public sector wages: into a financial institution account (% wage recipients, age 15+)
## 7159                                                                                                                                                                                                                                   Received public sector wages: into an account (% age 15+)
## 7160                                                                                                                                                                                                                  Received public sector wages: into an account (% wage recipients, age 15+)
## 7161                                                                                                                                                                                                                         Paid school fees: using a financial institution account (% age 15+)
## 7162                                                                                                                                                                                                     Paid school fees: using a financial institution account (% paying school fees, age 15+)
## 7163                                                                                                                                                                                                                                              Paid school fees: using an account (% age 15+)
## 7164                                                                                                                                                                                                                          Paid school fees: using an account (% paying school fees, age 15+)
## 7165                                                                                                                                                                                                                                          Received wages: through a mobile phone (% age 15+)
## 7166                                                                                                                                                                                                                         Received wages: through a mobile phone (% wage recipients, age 15+)
## 7167                                                                                                                                                                                                                           Received private sector wages: through a mobile phone (% age 15+)
## 7168                                                                                                                                                                                                          Received private sector wages: through a mobile phone (% wage recipients, age 15+)
## 7169                                                                                                                                                                                                                            Received public sector wages: through a mobile phone (% age 15+)
## 7170                                                                                                                                                                                                           Received public sector wages: through a mobile phone (% wage recipients, age 15+)
## 7171                                                                                                                                                                                                                                          Paid school fees: using a mobile phone (% age 15+)
## 7172                                                                                                                                                                                                                      Paid school fees: using a mobile phone (% paying school fees, age 15+)
## 7173                                                                                                                                                                                                                                                    Received wages: in cash only (% age 15+)
## 7174                                                                                                                                                                                                                                   Received wages: in cash only (% wage recipients, age 15+)
## 7175                                                                                                                                                                                                                                     Received private sector wages: in cash only (% age 15+)
## 7176                                                                                                                                                                                                                    Received private sector wages: in cash only (% wage recipients, age 15+)
## 7177                                                                                                                                                                                                                                      Received public sector wages: in cash only (% age 15+)
## 7178                                                                                                                                                                                                                     Received public sector wages: in cash only (% wage recipients, age 15+)
## 7179                                                                                                                                                                                                                           Received wages: first account opened to receive wages (% age 15+)
## 7180                                                                                                                                                                                          Received wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7181                                                                                                                                                                                                            Received private sector wages: first account opened to receive wages (% age 15+)
## 7182                                                                                                                                                                           Received private sector wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7183                                                                                                                                                                                                             Received public sector wages: first account opened to receive wages (% age 15+)
## 7184                                                                                                                                                                            Received public sector wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7185                                                                                                                                                                                                                                  Received government transfers in the past year (% age 15+)
## 7186                                                                                                                                                                                                                           Received government transfers in the past year, male  (% age 15+)
## 7187                                                                                                                                                                                                                 Received government transfers in the past year, in labor force  (% age 15+)
## 7188                                                                                                                                                                                                             Received government transfers in the past year, out of labor force  (% age 15+)
## 7189                                                                                                                                                                                                                          Received government transfers in the past year, female (% age 15+)
## 7190                                                                                                                                                                                                                  Received government transfers in the past year, young adults (% age 15-24)
## 7191                                                                                                                                                                                                                    Received government transfers in the past year, older adults (% age 25+)
## 7192                                                                                                                                                                                                       Received government transfers in the past year, primary education or less (% age 15+)
## 7193                                                                                                                                                                                                    Received government transfers in the past year, secondary education or more  (% age 15+)
## 7194                                                                                                                                                                                                            Received government transfers in the past year, income, poorest 40 % (% age 15+)
## 7195                                                                                                                                                                                                              Received government transfers in the past year, income richest 60% (% age 15+)
## 7196                                                                                                                                                                                                                          Received government transfers in the past year, rural  (% age 15+)
## 7197                                                                                                                                                                                                          Received a public sector pension: into a financial institution account (% age 15+)
## 7198                                                                                                                                                                                      Received a public sector pension: into a financial institution account (% pension recipients, age 15+)
## 7199                                                                                                                                                                                                                                  Received a public sector pension: in cash only (% age 15+)
## 7200                                                                                                                                                                                                              Received a public sector pension: in cash only (% pension recipients, age 15+)
## 7201                                                                                                                                                                                                       Received a public sector pension: first account opened to receive pension (% age 15+)
## 7202                                                                                                                                                                    Received a public sector pension: first account opened to receive pension (% receiving pension into an account, age 15+)
## 7203                                                                                                                                                                                                                               Received a public sector pension in the past year (% age 15+)
## 7204                                                                                                                                                                                                                        Received a public sector pension in the past year, male  (% age 15+)
## 7205                                                                                                                                                                                                               Received a public sector pension in the past year, in labor force (% age 15+)
## 7206                                                                                                                                                                                                          Received a public sector pension in the past year, out of labor force  (% age 15+)
## 7207                                                                                                                                                                                                                       Received a public sector pension in the past year, female (% age 15+)
## 7208                                                                                                                                                                                                               Received a public sector pension in the past year, young adults (% age 15-24)
## 7209                                                                                                                                                                                                                 Received a public sector pension in the past year, older adults (% age 25+)
## 7210                                                                                                                                                                                                   Received a public sector pension in the past year, primary education or less  (% age 15+)
## 7211                                                                                                                                                                                                  Received a public sector pension in the past year, secondary education or more (% age 15+)
## 7212                                                                                                                                                                                                           Received a public sector pension in the past year, income, poorest 40%(% age 15+)
## 7213                                                                                                                                                                                                           Received a public sector pension in the past year, income, riches 60% (% age 15+)
## 7214                                                                                                                                                                                                                       Received a public sector pension in the past year, rural  (% age 15+)
## 7215                                                                                                                                                                                                                               Received a public sector pension: into an account (% age 15+)
## 7216                                                                                                                                                                                                           Received a public sector pension: into an account (% pension recipients, age 15+)
## 7217                                                                                                                                                                                                             Received government transfers: into a financial institution account (% age 15+)
## 7218                                                                                                                                                                                        Received government transfers: into a financial institution account (% transfer recipients, age 15+)
## 7219                                                                                                                                                                                                                                  Received government transfers: into an account (% age 15+)
## 7220                                                                                                                                                                                                             Received government transfers: into an account (% transfer recipients, age 15+)
## 7221                                                                                                                                                                                                                        Received a public sector pension: through a mobile phone (% age 15+)
## 7222                                                                                                                                                                                                    Received a public sector pension: through a mobile phone (% pension recipients, age 15+)
## 7223                                                                                                                                                                                                                           Received government transfers: through a mobile phone (% age 15+)
## 7224                                                                                                                                                                                                      Received government transfers: through a mobile phone (% transfer recipients, age 15+)
## 7225                                                                                                                                                                                                                                     Received government transfers: in cash only (% age 15+)
## 7226                                                                                                                                                                                                                Received government transfers: in cash only (% transfer recipients, age 15+)
## 7227                                                                                                                                                                                                                             Debit card used to make a purchase in the past year (% age 15+)
## 7228                                                                                                                                                                                                                 Used a debit or credit card to make a purchase in the past year (% age 15+)
## 7229                                                                                                                                                                                                                 Used a debit or credit card to make a purchase in the past year (% age 15+)
## 7230                                                                                                                                                                                             Received government transfers: first account opened to receive government transfers (% age 15+)
## 7231                                                                                                                                                        Received government transfers: first account opened to receive government transfers (% receiving transfers into an account, age 15+)
## 7232                                                                                                                                                                                                                    Received payments for agricultural products in the past year (% age 15+)
## 7233                                                                                                                                                                                                              Received payments for agricultural products in the past year, male (% age 15+)
## 7234                                                                                                                                                                                                    Received payments for agricultural products in the past year, in labor force (% age 15+)
## 7235                                                                                                                                                                                               Received payments for agricultural products in the past year, out of labor force  (% age 15+)
## 7236                                                                                                                                                                                                            Received payments for agricultural products in the past year, female (% age 15+)
## 7237                                                                                                                                                                                                    Received payments for agricultural products in the past year, young adults (% age 15-24)
## 7238                                                                                                                                                                                                     Received payments for agricultural products in the past year, older adults  (% age 25+)
## 7239                                                                                                                                                                                        Received payments for agricultural products in the past year, primary education or less  (% age 15+)
## 7240                                                                                                                                                                                       Received payments for agricultural products in the past year, secondary education or more (% age 15+)
## 7241                                                                                                                                                                                               Received payments for agricultural products in the past year, income, poorest 40% (% age 15+)
## 7242                                                                                                                                                                                              Received payments for agricultural products in the past year, income, richest 60%  (% age 15+)
## 7243                                                                                                                                                                                                            Received payments for agricultural products in the past year, rural  (% age 15+)
## 7244                                                                                                                                                                                               Received payments for agricultural products: into a financial institution account (% age 15+)
## 7245                                                                                                                                                                           Received payments for agricultural products: into a financial institution account (% payment recipients, age 15+)
## 7246                                                                                                                                                                                                                    Received payments for agricultural products: into an account (% age 15+)
## 7247                                                                                                                                                                                                Received payments for agricultural products: into an account (% payment recipients, age 15+)
## 7248                                                                                                                                                                                                             Received payments for agricultural products: through a mobile phone (% age 15+)
## 7249                                                                                                                                                                                         Received payments for agricultural products: through a mobile phone (% payment recipients, age 15+)
## 7250                                                                                                                                                                                                                       Received payments for agricultural products: in cash only (% age 15+)
## 7251                                                                                                                                                                                                   Received payments for agricultural products: in cash only (% payment recipients, age 15+)
## 7252                                                                                                                                                                              Received payments for agricultural products: first account opened to receive agricultural payments (% age 15+)
## 7253                                                                                                                                          Received payments for agricultural products: first account opened to receive agricultural payments (% receiving payments into an account, age 15+)
## 7254                                                                                                                                                                                                                         Received payments from self-employment in the past year (% age 15+)
## 7255                                                                                                                                                                                                                   Received payments from self-employment in the past year, male (% age 15+)
## 7256                                                                                                                                                                                                        Received payments from self-employment in the past year, in labor force  (% age 15+)
## 7257                                                                                                                                                                                                    Received payments from self-employment in the past year, out of labor force  (% age 15+)
## 7258                                                                                                                                                                                                                Received payments from self-employment in the past year, female  (% age 15+)
## 7259                                                                                                                                                                                                        Received payments from self-employment in the past year, young adults  (% age 15-24)
## 7260                                                                                                                                                                                                          Received payments from self-employment in the past year, older adults  (% age 25+)
## 7261                                                                                                                                                                                              Received payments from self-employment in the past year, primary education or less (% age 15+)
## 7262                                                                                                                                                                                            Received payments from self-employment in the past year, secondary education or more (% age 15+)
## 7263                                                                                                                                                                                                   Received payments from self-employment in the past year, income, poorest 40%  (% age 15+)
## 7264                                                                                                                                                                                                   Received payments from self-employment in the past year, income, richest 60%  (% age 15+)
## 7265                                                                                                                                                                                                                 Received payments from self-employment in the past year, rural  (% age 15+)
## 7266                                                                                                                                                                                                    Received payments from self-employment: into a financial institution account (% age 15+)
## 7267                                                                                                                                                                                Received payments from self-employment: into a financial institution account (% payment recipients, age 15+)
## 7268                                                                                                                                                                                                                         Received payments from self-employment: into an account (% age 15+)
## 7269                                                                                                                                                                                                     Received payments from self-employment: into an account (% payment recipients, age 15+)
## 7270                                                                                                                                                                                                                  Received payments from self-employment: through a mobile phone (% age 15+)
## 7271                                                                                                                                                                                              Received payments from self-employment: through a mobile phone (% payment recipients, age 15+)
## 7272                                                                                                                                                                                                                            Received payments from self-employment: in cash only (% age 15+)
## 7273                                                                                                                                                                                                        Received payments from self-employment: in cash only (% payment recipients, age 15+)
## 7274                                                                                                                                                                                                                                                    Has a national identity card (% age 15+)
## 7275                                                                                                                                                                                                                                                    Has a national identity card (% age 15+)
## 7276                                                                                                                                                                                                                                            Has a national identity card, female (% age 15+)
## 7277                                                                                                                                                                                                                                              Has a national identity card, male (% age 15+)
## 7278                                                                                                                                                                                                                               Has a national identity card, income, poorest 40% (% age 15+)
## 7279                                                                                                                                                                                                                               Has a national identity card, income, richest 60% (% age 15+)
## 7280                                                                                                                                                                                                                                                 Has a national identity card (% ages 15-34)
## 7281                                                                                                                                                                                                                                                 Has a national identity card (% ages 35-59)
## 7282                                                                                                                                                                                                                                                    Has a national identity card (% age 60+)
## 7283                                                                                                                                                                                  Used a mobile phone or the internet to access a financial institution account in the past year (% age 15+)
## 7284                                                                                                                                            Used a mobile phone or the internet to access a financial institution account in the past year (% with a financial institution account, age 15+)
## 7285                                                                                                                                                                                                                        Used a mobile phone or the internet to access an account (% age 15+)
## 7286                                                                                                                                                                                                                  Used a mobile phone or the internet to access an account, male (% age 15+)
## 7287                                                                                                                                                                                                       Used a mobile phone or the internet to access an account, in labor force  (% age 15+)
## 7288                                                                                                                                                                                                   Used a mobile phone or the internet to access an account, out of labor force  (% age 15+)
## 7289                                                                                                                                                                                                               Used a mobile phone or the internet to access an account, female  (% age 15+)
## 7290                                                                                                                                                                                                        Used a mobile phone or the internet to access an account, young adults (% age 15-24)
## 7291                                                                                                                                                                                                          Used a mobile phone or the internet to access an account, older adults (% age 25+)
## 7292                                                                                                                                                                                            Used a mobile phone or the internet to access an account, primary education or less  (% age 15+)
## 7293                                                                                                                                                                                          Used a mobile phone or the internet to access an account, secondary education or more  (% age 15+)
## 7294                                                                                                                                                                                                  Used a mobile phone or the internet to access an account, income, poorest 40%  (% age 15+)
## 7295                                                                                                                                                                                                   Used a mobile phone or the internet to access an account, income, richest 60% (% age 15+)
## 7296                                                                                                                                                                                                                Used a mobile phone or the internet to access an account, rural  (% age 15+)
## 7297                                                                                                                                                                                                       Used a mobile phone or the internet to access an account (% with an account, age 15+)
## 7298                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 15+)
## 7299                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 15+)
## 7300                                                                                                                                                                                          Used a mobile phone or the internet to check account balance in the past year, female  (% age 15+)
## 7301                                                                                                                                                                                            Used a mobile phone or the internet to check account balance in the past year, male (% age 15+)"
## 7302                                                                                                                                                                              Used a mobile phone or the internet to check account balance in the past year, income, poorest 40% (% age 15+)
## 7303                                                                                                                                                                              Used a mobile phone or the internet to check account balance in the past year, income, richest 60% (% age 15+)
## 7304                                                                                                                                                                                                Used a mobile phone or the internet to check account balance in the past year (% ages 15-34)
## 7305                                                                                                                                                                                                Used a mobile phone or the internet to check account balance in the past year (% ages 35-59)
## 7306                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 60+)
## 7307                                                                                                                                                                                                                                       Outstanding loan for a funeral or wedding (% age 15+)
## 7308                                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, male (% age 15+)
## 7309                                                                                                                                                                                                                      Outstanding loan for a funeral or wedding, in labor force  (% age 15+)
## 7310                                                                                                                                                                                                                  Outstanding loan for a funeral or wedding, out of labor force  (% age 15+)
## 7311                                                                                                                                                                                                                               Outstanding loan for a funeral or wedding, female (% age 15+)
## 7312                                                                                                                                                                                                                      Outstanding loan for a funeral or wedding, young adults  (% age 15-24)
## 7313                                                                                                                                                                                                                        Outstanding loan for a funeral or wedding, older adults  (% age 25+)
## 7314                                                                                                                                                                                                           Outstanding loan for a funeral or wedding, primary education or less  (% age 15+)
## 7315                                                                                                                                                                                                          Outstanding loan for a funeral or wedding, secondary education or more (% age 15+)
## 7316                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, income, poorest 40%  (% age 15+)
## 7317                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, income, richest 60%  (% age 15+)
## 7318                                                                                                                                                                                                                               Outstanding loan for a funeral or wedding, rural  (% age 15+)
## 7319                                                                                                                                                                                                                                   Used checks to make payments in the past year (% age 15+)
## 7320                                                                                                                                                                                                                                                           Credit card ownership (% age 15+)
## 7321                                                                                                                                                                                                                                                     Credit card ownership, male (% age 15+)
## 7322                                                                                                                                                                                                                                          Credit card ownership, in labor force  (% age 15+)
## 7323                                                                                                                                                                                                                                      Credit card ownership, out of labor force  (% age 15+)
## 7324                                                                                                                                                                                                                                                  Credit card ownership, female  (% age 15+)
## 7325                                                                                                                                                                                                                                          Credit card ownership, young adults  (% age 15-24)
## 7326                                                                                                                                                                                                                                            Credit card ownership, older adults  (% age 25+)
## 7327                                                                                                                                                                                                                               Credit card ownership, primary education or less  (% age 15+)
## 7328                                                                                                                                                                                                                             Credit card ownership, secondary education or more  (% age 15+)
## 7329                                                                                                                                                                                                                                     Credit card ownership, income, poorest 40%  (% age 15+)
## 7330                                                                                                                                                                                                                                      Credit card ownership, income, richest 60% (% age 15+)
## 7331                                                                                                                                                                                                                                                   Credit card ownership, rural  (% age 15+)
## 7332                                                                                                                                                                                                                                               Credit card used in the past year (% age 15+)
## 7333                                                                                                                                                                                                                  Deposit in the past year (% with a financial institution account, age 15+)
## 7334                                                                                                                                                                                              No deposit and no withdrawal from a financial institution account in the past year (% age 15+)
## 7335                                                                                                                                                                                             No deposit and no withdrawal in the past year (% with a financial institution account, age 15+)
## 7336                                                                                                                                                                                                                   No deposit and no withdrawal from an account in the past year (% age 15+)
## 7337                                                                                                                                                                                                            No deposit and no withdrawal from an account in the past year, male  (% age 15+)
## 7338                                                                                                                                                                                                   No deposit and no withdrawal from an account in the past year, in labor force (% age 15+)
## 7339                                                                                                                                                                                               No deposit and no withdrawal from an account in the past year, out of labor force (% age 15+)
## 7340                                                                                                                                                                                                           No deposit and no withdrawal from an account in the past year, female (% age 15+)
## 7341                                                                                                                                                                                                  No deposit and no withdrawal from an account in the past year, young adults  (% age 15-24)
## 7342                                                                                                                                                                                                     No deposit and no withdrawal from an account in the past year, older adults (% age 25+)
## 7343                                                                                                                                                                                        No deposit and no withdrawal from an account in the past year, primary education or less (% age 15+)
## 7344                                                                                                                                                                                      No deposit and no withdrawal from an account in the past year, secondary education or less (% age 15+)
## 7345                                                                                                                                                                                              No deposit and no withdrawal from an account in the past year, income, poorest 40% (% age 15+)
## 7346                                                                                                                                                                                             No deposit and no withdrawal from an account in the past year, income, richest 60%  (% age 15+)
## 7347                                                                                                                                                                                                           No deposit and no withdrawal from an account in the past year, rural  (% age 15+)
## 7348                                                                                                                                                                                                                  No deposit and no withdrawal in the past year (% with an account, age 15+)
## 7349                                                                                                                                                                                                              Received government payments: into a financial institution account (% age 15+)
## 7350                                                                                                                                                                                          Received government payments: into a financial institution account (% payment recipients, age 15+)
## 7351                                                                                                                                                                                                                            Received government payments: through a mobile phone (% age 15+)
## 7352                                                                                                                                                                                                        Received government payments: through a mobile phone (% payment recipients, age 15+)
## 7353                                                                                                                                                                                                                                      Received government payments: in cash only (% age 15+)
## 7354                                                                                                                                                                                                                  Received government payments: in cash only (% payment recipients, age 15+)
## 7355                                                                                                                                                                                                                                   Received government payments: into an account (% age 15+)
## 7356                                                                                                                                                                                                               Received government payments: into an account (% payment recipients, age 15+)
## 7357                                                                                                                                                                                               Received government payments: first account opened to receive government payments (% age 15+)
## 7358                                                                                                                                                           Received government payments: first account opened to receive government payments (% receiving payments into an account, age 15+)
## 7359                                                                                                                                                                                                                                   Received government payments in the past year (% age 15+)
## 7360                                                                                                                                                                                                                             Received government payments in the past year, male (% age 15+)
## 7361                                                                                                                                                                                                                   Received government payments in the past year, in labor force (% age 15+)
## 7362                                                                                                                                                                                                               Received government payments in the past year, out of labor force (% age 15+)
## 7363                                                                                                                                                                                                                           Received government payments in the past year, female (% age 15+)
## 7364                                                                                                                                                                                                                   Received government payments in the past year, young adults (% age 15-24)
## 7365                                                                                                                                                                                                                     Received government payments in the past year, older adults (% age 25+)
## 7366                                                                                                                                                                                                        Received government payments in the past year, primary education or less (% age 15+)
## 7367                                                                                                                                                                                                      Received government payments in the past year, secondary education or more (% age 15+)
## 7368                                                                                                                                                                                                              Received government payments in the past year, income, poorest 40% (% age 15+)
## 7369                                                                                                                                                                                                             Received government payments in the past year, income, richest 60%  (% age 15+)
## 7370                                                                                                                                                                                                                           Received government payments in the past year, rural  (% age 15+)
## 7371                                                                                                                                                                                                                                                Claims on private sector, flow (current LCU)
## 7372                                                                                                                                                                                                                                                     Net domestic credit, flow (current LCU)
## 7373                                                                                                                                                                                                                                            Net domestic credit as % of M2 (annual % change)
## 7374                                                                                                                                                                                                                                       Net domestic credit to government, flow (current LCU)
## 7375                                                                                                                                                                                                                                    Claims on governments, etc. as % of M2 (annual % change)
## 7376                                                                                                                                                                                                                                            Claims on central government, flow (current LCU)
## 7377                                                                                                                                                                                                                                                            Total assets, flow (current LCU)
## 7378                                                                                                                                                                                                                                                      Net foreign assets, flow (current LCU)
## 7379                                                                                                                                                                                                                                             Net foreign assets as % of M2 (annual % change)
## 7380                                                                                                                                                                                                                                       Claims on other official entities, flow (current LCU)
## 7381                                                                                                                                                                                                                            Claims on nonmonetary financial institutions, flow (current LCU)
## 7382                                                                                                                                                                                                                                       Claims on private sector as % of M2 (annual % change)
## 7383                                                                                                                                                                                                               Claims on private sector and other financial institutions, flow (current LCU)
## 7384                                                                                                                                                                                                                            Claims on central government (annual growth as % of broad money)
## 7385                                                                                                                                                                                                                                  Net domestic credit to private sector, stock (current LCU)
## 7386                                                                                                                                                                                                         Claims on other sectors of the domestic economy (annual growth as % of broad money)
## 7387                                                                                                                                                                                                                                                           Net domestic credit (current LCU)
## 7388                                                                                                                                                                                                                               Claims on governments and other public entities (current LCU)
## 7389                                                                                                                                                                                                                                  Claims on governments and other public entities (% of GDP)
## 7390                                                                                                                                                                                                                                      Claims on governments, etc. (annual growth as % of M2)
## 7391                                                                                                                                                                                                                                                  Claims on central government (current LCU)
## 7392                                                                                                                                                                                                                                                                  Total assets (current LCU)
## 7393                                                                                                                                                                                                                                                            Net foreign assets (current US$)
## 7394                                                                                                                                                                                                                                                            Net foreign assets (current LCU)
## 7395                                                                                                                                                                                                                         Net domestic credit to other official entities, stock (current LCU)
## 7396                                                                                                                                                                                                            Net domestic credit to other private financial institutions, stock (current LCU)
## 7397                                                                                                                                                                                                                                Banking survey: claims on private sector (net) (current LCU)
## 7398                                                                                                                                                                                                                                            Monetary Sector credit to private sector (% GDP)
## 7399                                                                                                                                                                                                                                         Claims on private sector (annual growth as % of M2)
## 7400                                                                                                                                                                                                                                Claims on private sector (annual growth as % of broad money)
## 7401                                                                                                                                                                                                                               Claims on governments and other public entities (current LCU)
## 7402                                                                                                                                                                                                                                      Claims on governments, etc. (annual growth as % of M2)
## 7403                                                                                                                                                                                                                                 Net domestic credit to rest of economy, stock (current LCU)
## 7404                                                                                                                                                                                                                                              Money and quasi money (M2), flow (current LCU)
## 7405                                                                                                                                                                                                                                          Other liabilities excluding M2, flow (current LCU)
## 7406                                                                                                                                                                                                                                                                   Broad money (current LCU)
## 7407                                                                                                                                                                                                                                                                      Broad money (% of GDP)
## 7408                                                                                                                                                                                                                                                         Broad money to total reserves ratio
## 7409                                                                                                                                                                                                                                                               Broad money growth (annual %)
## 7410                                                                                                                                                                                                                                                                     Demand Deposits (local)
## 7411                                                                                                                                                                                                                                                                         Money (current LCU)
## 7412                                                                                                                                                                                                                                                    Money and quasi money (M2) (current LCU)
## 7413                                                                                                                                                                                                                                                       Money Supply, Broadly Defined (local)
## 7414                                                                                                                                                                                                                                                      Money and quasi money (M2) as % of GDP
## 7415                                                                                                                                                                                                                                                      Money and quasi money (M2) as % of GDP
## 7416                                                                                                                                                                                                                                          Money and quasi money (M2) to total reserves ratio
## 7417                                                                                                                                                                                                                                                           Income velocity of money (GDP/M2)
## 7418                                                                                                                                                                                                                                                     Money and quasi money growth (annual %)
## 7419                                                                                                                                                                                                                                                               Currency Ouside Banks (local)
## 7420                                                                                                                                                                                                                                                                   Quasi money (current LCU)
## 7421                                                                                                                                                                                                                                                          Quasi-Monetary Liabilities (local)
## 7422                                                                                                                                                                                                                                                         Quasi-liquid liabilities (% of GDP)
## 7423                                                                                                                                                                                                                                                                       Seignorage (% of GDP)
## 7424                                                                                                                                                                                                                                                Other liabilities excluding M2 (current LCU)
## 7425                                                                                                                                                                                                                        Total Credit by Sector: Agriculture (province level, in IDR Million)
## 7426                                                                                                                                                                                                                           Total Credit by Sector: Business (province level, in IDR Million)
## 7427                                                                                                                                                                                                                   Total Credit by Utilization: Consumption (province level, in IDR Million)
## 7428                                                                                                                                                                                                                       Total Credit by Sector: Construction (province level, in IDR Million)
## 7429                                                                                                                                                                                                                    Total credit by Utilization: Investment (province level, in IDR Million)
## 7430                                                                                                                                                                                                               Total Credit by Sector: Mining and Quarrying (province level, in IDR Million)
## 7431                                                                                                                                                                                                                        Total Credit by Sector: Manufacture (province level, in IDR Million)
## 7432                                                                                                                                                                                                                     Total Credit by Sector: Other Services (province level, in IDR Million)
## 7433                                                                                                                                                                                                                    Total Credit by Sector: Social Services (province level, in IDR Million)
## 7434                                                                                                                                                                                                                              Total Credit by Sector: Trade (province level, in IDR Million)
## 7435                                                                                                                                                                                                                     Total Credit by Sector: Transportation (province level, in IDR Million)
## 7436                                                                                                                                                                                                                          Total Credit by Sector: Utilities (province level, in IDR Million)
## 7437                                                                                                                                                                                                               Total Credit by Utilization: Working Capital (province level, in IDR Million)
## 7438                                                                                                                                                                                                                                             Total Deposits (province level, in IDR Million)
## 7439                                                                                                                                                                                                                                                          Central bank intervention rate (%)
## 7440                                                                                                                                                                                         Total Commercial and Rural Banks Loans Rupiah and Foreign Currency (province level, in IDR Million)
## 7441                                                                                                                                                                                                                                                           Consumer price index (2010 = 100)
## 7442                                                                                                                                                                                                                                                       Inflation, consumer prices (annual %)
## 7443                                                                                                                                                                                                                                                               Food price index (2000 = 100)
## 7444                                                                                                                                                                                                                                                           Inflation, food prices (annual %)
## 7445                                                                                                                                                                                                                                                          Wholesale price index (2010 = 100)
## 7446                                                                                                                                                                                                                                                      Inflation, wholesale prices (annual %)
## 7447                                                                                                                                                                                                                                                                   Deposit interest rate (%)
## 7448                                                                                                                                                                                                                                                              Real deposit interest rate (%)
## 7449                                                                                                                                                                                                                                                                      Bond interest rate (%)
## 7450                                                                                                                                                                                                                                                   International interest rate, implicit (%)
## 7451                                                                                                                                                                                                                                                                   Lending interest rate (%)
## 7452                                                                                                                                                                                                                                           Interest rate spread (lending rate minus deposit)
## 7453                                                                                                                                                                                                                                             Interest rate spread (lending rate minus LIBOR)
## 7454                                                                                                                                                                                                                                   Interest rate spread (lending rate minus deposit rate, %)
## 7455                                                                                                                                                                                                                                          Interest rate spread (lending rate minus LIBOR, %)
## 7456                                                                                                                                                                                                                                                                       Money market rate (%)
## 7457                                                                                                                                                                                                                                                                      Real interest rate (%)
## 7458                                                                                                                                                                                                                          Risk premium on lending (lending rate minus treasury bill rate, %)
## 7459                                                                                                                                                                                                                                                             Time deposits interest rate (%)
## 7460                                                                                                                                                                                                                                                           Real interest on time deposit (%)
## 7461                                                                                                                                                                                                                                                                              LIBOR rate (%)
## 7462                                                                                                                                                                                                                                                  Claims on central government, etc. (% GDP)
## 7463                                                                                                                                                                                                                                  Claims on other sectors of the domestic economy (% of GDP)
## 7464                                                                                                                                                                                                                                     Domestic credit provided by financial sector (% of GDP)
## 7465                                                                                                                                                                                                                                       Domestic credit provided by banking sector (% of GDP)
## 7466                                                                                                                                                                                                                                      Banking survey: claims on private sector (current LCU)
## 7467                                                                                                                                                                                                                                                Domestic credit to private sector (% of GDP)
## 7468                                                                                                                                                                                                                                                         Credit to private sector (% of GDP)
## 7469                                                                                                                                                                                                                                                         Liquid liabilities (M3) as % of GDP
## 7470                                                                                                                                                                                                                                                         Liquid liabilities (M3) as % of GDP
## 7471                                                                                                                                                                                                                                                         Quasi-liquid liabilities (% of GDP)
## 7472                                                                                                                                                                                                                                                               Demand deposits (current LCU)
## 7473                                                                                                                                                                                                                                                                 Time deposits (current LCU)
## 7474                                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, poorest 40% (% of population ages 15+)
## 7475                                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, richest 60% (% of population ages 15+)
## 7476                                                                                                                                                                     Account ownership at a financial institution or with a mobile-money-service provider, female (% of population ages 15+)
## 7477                                                                                                                                                                       Account ownership at a financial institution or with a mobile-money-service provider, male (% of population ages 15+)
## 7478                                                                                                                                                               Account ownership at a financial institution or with a mobile-money-service provider, older adults (% of population ages 25+)
## 7479                                                                                                                                                  Account ownership at a financial institution or with a mobile-money-service provider, primary education or less (% of population ages 15+)
## 7480                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, secondary education or more (% of population ages 15+)
## 7481                                                                                                                                                             Account ownership at a financial institution or with a mobile-money-service provider, young adults (% of population ages 15-24)
## 7482                                                                                                                                                                             Account ownership at a financial institution or with a mobile-money-service provider (% of population ages 15+)
## 7483                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 15+)
## 7484                                                                                                                                                                                                                       Made or received digital payments in the past year, male  (% age 15+)
## 7485                                                                                                                                                                                                             Made or received digital payments in the past year, in labor force  (% age 15+)
## 7486                                                                                                                                                                                                         Made or received digital payments in the past year, out of labor force  (% age 15+)
## 7487                                                                                                                                                                                                                     Made or received digital payments in the past year, female  (% age 15+)
## 7488                                                                                                                                                                                                             Made or received digital payments in the past year, young adults  (% age 15-24)
## 7489                                                                                                                                                                                                               Made or received digital payments in the past year, older adults  (% age 25+)
## 7490                                                                                                                                                                                                   Made or received digital payments in the past year, primary education or less (% age 15+)
## 7491                                                                                                                                                                                                 Made or received digital payments in the past year, secondary education or more (% age 15+)
## 7492                                                                                                                                                                                                        Made or received digital payments in the past year, income, poorest 40%  (% age 15+)
## 7493                                                                                                                                                                                                         Made or received digital payments in the past year, income, richest 60% (% age 15+)
## 7494                                                                                                                                                                                                                      Made or received digital payments in the past year, rural  (% age 15+)
## 7495                                                                                                                                                                                                                                          Made digital payments in the past year (% age 15+)
## 7496                                                                                                                                                                                                                                   Made digital payments in the past year, male  (% age 15+)
## 7497                                                                                                                                                                                                                          Made digital payments in the past year, in labor force (% age 15+)
## 7498                                                                                                                                                                                                                     Made digital payments in the past year, out of labor force  (% age 15+)
## 7499                                                                                                                                                                                                                                 Made digital payments in the past year, female  (% age 15+)
## 7500                                                                                                                                                                                                                         Made digital payments in the past year, young adults  (% age 15-24)
## 7501                                                                                                                                                                                                                           Made digital payments in the past year, older adults  (% age 25+)
## 7502                                                                                                                                                                                                              Made digital payments in the past year, primary education or less  (% age 15+)
## 7503                                                                                                                                                                                                            Made digital payments in the past year, secondary education or more  (% age 15+)
## 7504                                                                                                                                                                                                                    Made digital payments in the past year, income, poorest 40%  (% age 15+)
## 7505                                                                                                                                                                                                                    Made digital payments in the past year, income, richest 60%  (% age 15+)
## 7506                                                                                                                                                                                                                                  Made digital payments in the past year, rural  (% age 15+)
## 7507                                                                                                                                                                                                                                      Received digital payments in the past year (% age 15+)
## 7508                                                                                                                                                                                                                                Received digital payments in the past year, male (% age 15+)
## 7509                                                                                                                                                                                                                      Received digital payments in the past year, in labor force (% age 15+)
## 7510                                                                                                                                                                                                                  Received digital payments in the past year, out of labor force (% age 15+)
## 7511                                                                                                                                                                                                                             Received digital payments in the past year, female  (% age 15+)
## 7512                                                                                                                                                                                                                     Received digital payments in the past year, young adults  (% age 15-24)
## 7513                                                                                                                                                                                                                       Received digital payments in the past year, older adults  (% age 25+)
## 7514                                                                                                                                                                                                          Received digital payments in the past year, primary education or less  (% age 15+)
## 7515                                                                                                                                                                                                        Received digital payments in the past year, secondary education or more  (% age 15+)
## 7516                                                                                                                                                                                                                Received digital payments in the past year, income, poorest 40%  (% age 15+)
## 7517                                                                                                                                                                                                                Received digital payments in the past year, income, richest 60%  (% age 15+)
## 7518                                                                                                                                                                                                                               Received digital payments in the past year, rural (% age 15+)
## 7519                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 15+)
## 7520                                                                                                                                                                                                                      Made or received digital payments in the past year, female (% age 15+)
## 7521                                                                                                                                                                                                                        Made or received digital payments in the past year, male (% age 15+)
## 7522                                                                                                                                                                                                         Made or received digital payments in the past year, income, poorest 40% (% age 15+)
## 7523                                                                                                                                                                                                         Made or received digital payments in the past year, income, richest 60% (% age 15+)
## 7524                                                                                                                                                                                                                           Made or received digital payments in the past year (% ages 15-34)
## 7525                                                                                                                                                                                                                           Made or received digital payments in the past year (% ages 35-59)
## 7526                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 60+)
## 7527                                                                                                                                                                                                                         Adjustments to foreign scheduled principal repayments (current LCU)
## 7528                                                                                                                                                                                                                                      Current budget balance, including grants (current LCU)
## 7529                                                                                                                                                                                                                                      Overall budget balance, including grants (current LCU)
## 7530                                                                                                                                                                                                                                         Overall budget balance, including grants (% of GDP)
## 7531                                                                                                                                                                                                                                         Overall budget deficit, including grants (% of GDP)
## 7532                                                                                                                                                                                                                             Overall surplus/deficit, excluding current grants (current LCU)
## 7533                                                                                                                                                                                                                                 Overall surplus/deficit, excluding all grants (current LCU)
## 7534                                                                                                                                                                                                                                           Primary balance, excluding interest (current LCU)
## 7535                                                                                                                                                                                                                               Central government debt, monetary system credit (current LCU)
## 7536                                                                                                                                                                                                                                       Central government debt, other domestic (current LCU)
## 7537                                                                                                                                                                                                                                                       External debt, end year (current US$)
## 7538                                                                                                                                                                                                                                                       External debt, end year (current LCU)
## 7539                                                                                                                                                                                                                                                         Total government debt (current LCU)
## 7540                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7541                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7542                                                                                                                                                                                                                                   Central government arrears on domestic debt (current LCU)
## 7543                                                                                                                                                                                                                                   Central government arrears on external debt (current LCU)
## 7544                                                                                                                                                                                                                                                       External borrowing, net (current LCU)
## 7545                                                                                                                                                                                                                                                            Financing from abroad (% of GDP)
## 7546                                                                                                                                                                                                                                                            Financing from abroad (% of GDP)
## 7547                                                                                                                                                                                                                                    Domestic financing, monetary system credit (current LCU)
## 7548                                                                                                                                                                                                                                                      Other domestic borrowing (current LCU)
## 7549                                                                                                                                                                                                                                                     Domestic financing, total (current LCU)
## 7550                                                                                                                                                                                                                                                        Domestic financing, total (% of GDP)
## 7551                                                                                                                                                                                                                                                              Domestic finanacing (% of GDP)
## 7552                                                                                                                                                                                                                                  Financing, including external capital grants (current LCU)
## 7553                                                                                                                                                                                                                                                          Total current grants (current LCU)
## 7554                                                                                                                                                                                                                                                       External capital grants (current LCU)
## 7555                                                                                                                                                                                                                                                                     Grants (local currency)
## 7556                                                                                                                                                                                                                                                    Interest payments (% of current revenue)
## 7557                                                                                                                                                                                                                                                               Nontax receipts (current LCU)
## 7558                                                                                                                                                                                                                                                       Nontax revenue (% of current revenue)
## 7559                                                                                                                                                                                                                                                       Nontax revenue (% of current revenue)
## 7560                                                                                                                                                                                                                                             Current revenue, excluding grants (current LCU)
## 7561                                                                                                                                                                                                                                                Current revenue, excluding grants (% of GDP)
## 7562                                                                                                                                                                                                                                        Total revenue including current grants (current LCU)
## 7563                                                                                                                                                                                                                                                            Current revenue (local currency)
## 7564                                                                                                                                                                                                                                                                  Current revenue (% of GDP)
## 7565                                                                                                                                                                                                                              Central government revenue excluding all grants  (current LCU)
## 7566                                                                                                                                                                                                                                Central government revenues, excluding all grants (% of GDP)
## 7567                                                                                                                                                                                                                             Total currrent revenues  including current grants (current LCU)
## 7568                                                                                                                                                                                                                                             Current revenue, excluding grants (current LCU)
## 7569                                                                                                                                                                                                                                                Current revenue, excluding grants (% of GDP)
## 7570                                                                                                                                                                                                                                                               Capital revenue (current LCU)
## 7571                                                                                                                                                                                                                                                                SOE external debt (% of GDP)
## 7572                                                                                                                                                                                                                                State-owned enterprises, credit (% of gross domestic credit)
## 7573                                                                                                                                                                                                                                       State-owned enterprises, economic activity (% of GDP)
## 7574                                                                                                                                                                                                                                                            SOE economic activity (% of GDP)
## 7575                                                                                                                                                                                                                                            State-owned enterprises, employment (% of total)
## 7576                                                                                                                                                                                                                                              State-owned enterprises, investment (% of GDI)
## 7577                                                                                                                                                                                                                     State-owned enterprises, net financial flows from government (% of GDP)
## 7578                                                                                                                                                                                                                                          SOE net financial flows from government (% of GDP)
## 7579                                                                                                                                                                                                                        State-owned enterprises, overall balance before transfers (% of GDP)
## 7580                                                                                                                                                                                                                                           SOE overall balance before transfers (% of total)
## 7581                                                                                                                                                                                                                                                        Privatization proceeds (current US$)
## 7582                                                                                                                                                                                                                                               Highest marginal tax rate, corporate rate (%)
## 7583                                                                                                                                                                                                                                                                  Direct taxes (current LCU)
## 7584                                                                                                                                                                                                                                                                Export duties (% of exports)
## 7585                                                                                                                                                                                                                                                            Export duties (% of tax revenue)
## 7586                                                                                                                                                                                                                                               Taxes on goods and services, GB (current LCU)
## 7587                                                                                                                                                                                                                            Taxes on goods and services (% value added of industry and srv.)
## 7588                                                                                                                                                                                                                                          Taxes on goods and services (% of current revenue)
## 7589                                                                                                                                                                                                                        Taxes on goods and services (% value added of industry and services)
## 7590                                                                                                                                                                                                                                          Taxes on goods and services (% of current revenue)
## 7591                                                                                                                                                                                                                                                 Indirect taxes less subsidies (current LCU)
## 7592                                                                                                                                                                                                                            Highest marginal tax rate, individual (on income exceeding, US$)
## 7593                                                                                                                                                                                                                                              Highest marginal tax rate, individual rate (%)
## 7594                                                                                                                                                                                                                                                                Import duties (% of imports)
## 7595                                                                                                                                                                                                                                                            Import duties (% of tax revenue)
## 7596                                                                                                                                                                                                                              Income, profit, and capital gains taxes (% of current revenue)
## 7597                                                                                                                                                                                                                                              Taxes on international trade, GB (current LCU)
## 7598                                                                                                                                                                                                                                         Taxes on international trade (% of current revenue)
## 7599                                                                                                                                                                                                                                         Taxes on international trade (% of current revenue)
## 7600                                                                                                                                                                                                                                                          Other taxes (% of current revenue)
## 7601                                                                                                                                                                                                                                                          Other taxes (% of current revenue)
## 7602                                                                                                                                                                                                                                                Social security taxes (% of current revenue)
## 7603                                                                                                                                                                                                                                                Social security taxes (% of current revenue)
## 7604                                                                                                                                                                                                                                                                   Tax revenue (current LCU)
## 7605                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7606                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7607                                                                                                                                                                                                                           Taxes on income, profits and capital gains (% of current revenue)
## 7608                                                                                                                                                                                                                               Taxes on income, profits and capital gains (% of total taxes)
## 7609                                                                                                                                                                                                                                 Adjustments to foreign scheduled debt service (current LCU)
## 7610                                                                                                                                                                                                                                     Central government debt service, external (current LCU)
## 7611                                                                                                                                                                                                                                                        Government consumption (current LCU)
## 7612                                                                                                                                                                                                                                     Goods and services expenditure (% of total expenditure)
## 7613                                                                                                                                                                                                                                                     Interest on domestic debt (current LCU)
## 7614                                                                                                                                                                                                                                                     Interest on external debt (current LCU)
## 7615                                                                                                                                                                                                                                                     Interest payment (% of current revenue)
## 7616                                                                                                                                                                                                                                                  Interest payments (% of total expenditure)
## 7617                                                                                                                                                                                                                                                                Subsidies (GFS, current LCU)
## 7618                                                                                                                                                                                                                                                    Current expenditure, total (current LCU)
## 7619                                                                                                                                                                                                                                                       Other current transfers (current LCU)
## 7620                                                                                                                                                                                                                              Subsidies and other current transfers (% of total expenditure)
## 7621                                                                                                                                                                                                                                                            Wages and salaries (current LCU)
## 7622                                                                                                                                                                                                                                                 Wages and salaries (% of total expenditure)
## 7623                                                                                                                                                                                                                                                           Defense expenditure (current LCU)
## 7624                                                                                                                                                                                                                                                              Defense expenditure (% of GDP)
## 7625                                                                                                                                                                                                                                             Total expenditure and net lending (current LCU)
## 7626                                                                                                                                                                                                                                        Expenditures for research and development (% of GNP)
## 7627                                                                                                                                                                                                                                             Research and development expenditure (% of GDP)
## 7628                                                                                                                                                                                                                                             Research and development expenditure (% of GNI)
## 7629                                                                                                                                                                                                                                                            Expenditure, total (current LCU)
## 7630                                                                                                                                                                                                                                                               Expenditure, total (% of GDP)
## 7631                                                                                                                                                                                                                                                                Total expenditure (% of GDP)
## 7632                                                                                                                                                                                                                                     Total capital expenditure and net lending (current LCU)
## 7633                                                                                                                                                                                                                                                          Budgetary investment (current LCU)
## 7634                                                                                                                                                                                                                                                           Capital expenditure (current LCU)
## 7635                                                                                                                                                                                                                                                Capital expenditure (% of total expenditure)
## 7636                                                                                                                                                                                                                                                             Capital transfers (current LCU)
## 7637                                                                                                                                                                                                                                           Net acquisition of financial assets (current LCU)
## 7638                                                                                                                                                                                                                                              Net acquisition of financial assets (% of GDP)
## 7639                                                                                                                                                                                                                                          Fiscal balance, cash surplus/deficit (current US$)
## 7640                                                                                                                                                                                                                                                          Cash surplus/deficit (current LCU)
## 7641                                                                                                                                                                                                                                                             Cash surplus/deficit (% of GDP)
## 7642                                                                                                                                                                                                                                                   Government Current Budget Balance (local)
## 7643                                                                                                                                                                                                                                            Gov. Current Budget Balance (+C&K Grants)(Local)
## 7644                                                                                                                                                                                                                                                   Government Deficit (-) or Surplus (local)
## 7645                                                                                                                                                                                                                                                Central government debt, total (current LCU)
## 7646                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7647                                                                                                                                                                                                                                                   Gov. Capital Payments (+Net lend.)(Local)
## 7648                                                                                                                                                                                                                                                            Gov. Current Expenditure (Local)
## 7649                                                                                                                                                                                                                                       Net incurrence of liabilities, domestic (current LCU)
## 7650                                                                                                                                                                                                                                          Net incurrence of liabilities, domestic (% of GDP)
## 7651                                                                                                                                                                                                                                        Net incurrence of liabilities, foreign (current LCU)
## 7652                                                                                                                                                                                                                                           Net incurrence of liabilities, foreign (% of GDP)
## 7653                                                                                                                                                                                                                                          Net incurrence of liabilities, total (current LCU)
## 7654                                                                                                                                                                                                                                             Net incurrence of liabilities, total (% of GDP)
## 7655                                                                                                                                                                                                                                         Net investment in nonfinancial assets (current LCU)
## 7656                                                                                                                                                                                                                                            Net investment in nonfinancial assets (% of GDP)
## 7657                                                                                                                                                                                                                                           Net lending (+) / net borrowing (-) (current LCU)
## 7658                                                                                                                                                                                                                                              Net lending (+) / net borrowing (-) (% of GDP)
## 7659                                                                                                                                                                                                                                                          Government Current Revenue (local)
## 7660                                                                                                                                                                                                                                                      Grants and other revenue (current LCU)
## 7661                                                                                                                                                                                                                                                     Grants and other revenue (% of revenue)
## 7662                                                                                                                                                                                                                                                         Government Capital Receipts (local)
## 7663                                                                                                                                                                                                                                                          Social contributions (current LCU)
## 7664                                                                                                                                                                                                                                                         Social contributions (% of revenue)
## 7665                                                                                                                                                                                                                                                                 Total revenue (current US$)
## 7666                                                                                                                                                                                                                                                                 Total revenue (current LCU)
## 7667                                                                                                                                                                                                                                                     Revenue, excluding grants (current US$)
## 7668                                                                                                                                                                                                                                                     Revenue, excluding grants (current LCU)
## 7669                                                                                                                                                                                                                                                        Revenue, excluding grants (% of GDP)
## 7670                                                                                                                                                                                                                                                   Gov. Current Revenue (+C&K Grants)(Local)
## 7671                                                                                                                                                                                                                                                               Gov. Capital Receipts (Local)
## 7672                                                                                                                                                                                                                                                              Taxes on exports (current LCU)
## 7673                                                                                                                                                                                                                                                         Taxes on exports (% of tax revenue)
## 7674                                                                                                                                                                                                                                                   Taxes on goods and services (current LCU)
## 7675                                                                                                                                                                                                                                                  Taxes on goods and services (% of revenue)
## 7676                                                                                                                                                                                                                        Taxes on goods and services (% value added of industry and services)
## 7677                                                                                                                                                                                                                                               Customs and other import duties (current LCU)
## 7678                                                                                                                                                                                                                                          Customs and other import duties (% of tax revenue)
## 7679                                                                                                                                                                                                                                                  Taxes on international trade (current LCU)
## 7680                                                                                                                                                                                                                                                 Taxes on international trade (% of revenue)
## 7681                                                                                                                                                                                                                                                                   Other taxes (current LCU)
## 7682                                                                                                                                                                                                                                                                  Other taxes (% of revenue)
## 7683                                                                                                                                                                                                                                                                   Tax revenue (current LCU)
## 7684                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7685                                                                                                                                                                                                                                    Taxes on income, profits and capital gains (current LCU)
## 7686                                                                                                                                                                                                                                   Taxes on income, profits and capital gains (% of revenue)
## 7687                                                                                                                                                                                                                               Taxes on income, profits and capital gains (% of total taxes)
## 7688                                                                                                                                                                                                                                                      Government Current Expenditure (local)
## 7689                                                                                                                                                                                                                                                         Government Capital Payments (local)
## 7690                                                                                                                                                                                                                                                     Compensation of employees (current LCU)
## 7691                                                                                                                                                                                                                                                    Compensation of employees (% of expense)
## 7692                                                                                                                                                                                                                                                    Goods and services expense (current LCU)
## 7693                                                                                                                                                                                                                                                   Goods and services expense (% of expense)
## 7694                                                                                                                                                                                                                                                             Interest payments (current LCU)
## 7695                                                                                                                                                                                                                                                            Interest payments (% of revenue)
## 7696                                                                                                                                                                                                                                                            Interest payments (% of expense)
## 7697                                                                                                                                                                                                                                                                 Other expense (current LCU)
## 7698                                                                                                                                                                                                                                                                Other expense (% of expense)
## 7699                                                                                                                                                                                                                                                                       Expense (current US$)
## 7700                                                                                                                                                                                                                                                                       Expense (current LCU)
## 7701                                                                                                                                                                                                                                                                          Expense (% of GDP)
## 7702                                                                                                                                                                                                                                                 Subsidies and other transfers (current LCU)
## 7703                                                                                                                                                                                                                                                Subsidies and other transfers (% of expense)
## 7704                                                                                                                                                                                                                                                                    10th pillar: Market size
## 7705                                                                                                                                                                                                                                                        11th pillar: Business sophistication
## 7706                                                                                                                                                                                                                                                                     12th pillar: Innovation
## 7707                                                                                                                                                                                                                                                                    1st pillar: Institutions
## 7708                                                                                                                                                                                                                                                                  2nd pillar: Infrastructure
## 7709                                                                                                                                                                                                                                                         3rd pillar: Macroeconomic stability
## 7710                                                                                                                                                                                                                                                     4th pllar: Health and primary education
## 7711                                                                                                                                                                                                                                                   5th pillar: Higher education and training
## 7712                                                                                                                                                                                                                                                         6th pillar: Goods market efficiency
## 7713                                                                                                                                                                                                                                                         7th pillar: Labor market efficiency
## 7714                                                                                                                                                                                                                                                 8th pillar: Financial market sophistication
## 7715                                                                                                                                                                                                                                                        9th pillar: Techonological readiness
## 7716                                                                                                                                                                                                                                                          Global Competitiveness Index (GCI)
## 7717                                                                                                                                                                                                          Innovation and sophistication factors (weighted index 11th pillar to 12 th pillar)
## 7718                                                                                                                                                                                                                                Basic requirements (weighted index 1st pillar to 4th pillar)
## 7719                                                                                                                                                                                                                                    Efficiency enhancers (weighted index 5th to 10th pillar)
## 7720                                                                                                                                                                                                                                                         Global Competitive Index (GCI) rank
## 7721                                                                                                                                                                                                                                                          Government Effectiveness: Estimate
## 7722                                                                                                                                                                                                                                                 Government Effectiveness: Number of Sources
## 7723                                                                                                                                                                                                                                                   Government Effectiveness: Percentile Rank
## 7724                                                                                                                                                                                                           Government Effectiveness: Percentile Rank, Lower Bound of 90% Confidence Interval
## 7725                                                                                                                                                                                                           Government Effectiveness: Percentile Rank, Upper Bound of 90% Confidence Interval
## 7726                                                                                                                                                                                                                                                    Government Effectiveness: Standard Error
## 7727                                                                                                                                                                                                             Primary government expenditures as a proportion of original approved budget (%)
## 7728                                                                                                                                                                                                                          Received wages or government transfers into an account (% age 15+)
## 7729                                                                                                                                                                                                                  Received wages or government transfers into an account, female (% age 15+)
## 7730                                                                                                                                                                                                                    Received wages or government transfers into an account, male (% age 15+)
## 7731                                                                                                                                                                                                     Received wages or government transfers into an account, income, poorest 40% (% age 15+)
## 7732                                                                                                                                                                                                     Received wages or government transfers into an account, income, richest 60% (% age 15+)
## 7733                                                                                                                                                                                                                      Received wages or government transfers into an account, (% ages 15-34)
## 7734                                                                                                                                                                                                                       Received wages or government transfers into an account (% ages 35-59)
## 7735                                                                                                                                                                                                                          Received wages or government transfers into an account (% age 60+)
## 7736                                                                                                                                                                                                                               Made payment using a mobile phone or the internet (% age 15+)
## 7737                                                                                                                                                                                                                       Made payment using a mobile phone or the internet, female (% age 15+)
## 7738                                                                                                                                                                                                                         Made payment using a mobile phone or the internet, male (% age 15+)
## 7739                                                                                                                                                                                                          Made payment using a mobile phone or the internet, income, poorest 40% (% age 15+)
## 7740                                                                                                                                                                                                          Made payment using a mobile phone or the internet, income, richest 60% (% age 15+)
## 7741                                                                                                                                                                                                                            Made payment using a mobile phone or the internet (% ages 15-34)
## 7742                                                                                                                                                                                                                            Made payment using a mobile phone or the internet (% ages 35-59)
## 7743                                                                                                                                                                                                                               Made payment using a mobile phone or the internet (% age 60+)
## 7744                                                                                                                                                                                                                                                                  Active account (% age 15+)
## 7745                                                                                                                                                                                                                                                          Active account, female (% age 15+)
## 7746                                                                                                                                                                                                                                                            Active account, male (% age 15+)
## 7747                                                                                                                                                                                                                                             Active account, income, poorest 40% (% age 15+)
## 7748                                                                                                                                                                                                                                             Active account, income, richest 60% (% age 15+)
## 7749                                                                                                                                                                                                                                                               Active account (% ages 15-34)
## 7750                                                                                                                                                                                                                                                               Active account (% ages 35-59)
## 7751                                                                                                                                                                                                                                                                  Active account (% age 60+)
## 7752                                                                                                                                                                                                                                                              Bank accounts per 1,000 adults
## 7753                                                                                                                                                                                                                                                           Bank branches per 100,000 adults 
## 7754                                                                                                                                                                                                                                                Firms with a bank loan or line of credit (%)
## 7755                                                                                                                                                                                                                                          Small firms with a bank loan or line of credit (%)
## 7756                                                                                                                                                                                                                                       Account at a formal financial institution (% age 15+)
## 7757                                                                                                                                                                                                                               Saved at a financial institution in the past year (% age 15+)
## 7758                                                                                                                                                                                                                              Loan from a financial institution in the past year (% age 15+)
## 7759                                                                                                                                                                                                                                              Account used for business purposes (% age 15+)
## 7760                                                                                                                                                                                                                                     Account used to receive government payments (% age 15+)
## 7761                                                                                                                                                                                                                                             Account used to receive remittances (% age 15+)
## 7762                                                                                                                                                                                                                                                   Account used to receive wages (% age 15+)
## 7763                                                                                                                                                                                                                                                Saved any money in the past year (% age 15+)
## 7764                                                                                                                                                                                                                                     Saved using a savings club in the past year (% age 15+)
## 7765                                                                                                                                                                                                                                                           Loan in the past year (% age 15+)
## 7766                                                                                                                                                                                                                                     Loan from a private lender in the past year (% age 15+)
## 7767                                                                                                                                                                                                                                          Loan from an employer in the past year (% age 15+)
## 7768                                                                                                                                                                                                                                      Loan through store credit in the past year (% age 15+)
## 7769                                                                                                                                                                                                                                    Loan from family or friends in the past year (% age 15+)
## 7770                                                                                                                                                                                                                                                    Checks used to make payments (% age 15+)
## 7771                                                                                                                                                                                                                                                                     Credit card (% age 15+)
## 7772                                                                                                                                                                                                                                                                      Debit card (% age 15+)
## 7773                                                                                                                                                                                                                                       Electronic payments used to make payments (% age 15+)
## 7774                                                                                                                                                                                                                                                  Mobile phone used to pay bills (% age 15+)
## 7775                                                                                                                                                                                                                                                 Mobile phone used to send money (% age 15+)
## 7776                                                                                                                                                                                                                                                                     ATMs per 100,000 adults
## 7777                                                                                                                                                                                                                         Depositing/withdrawing at least once in a typical month (% age 15+)
## 7778                                                                                                                                                                                                                                                Firms with a checking or savings account (%)
## 7779                                                                                                                                                                                                                                                Firms using banks to finance investments (%)
## 7780                                                                                                                                                                                                                                            Firms using banks to finance working capital (%)
## 7781                                                                                                                                                                                                                                                              Loans requiring collateral (%)
## 7782                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 7783                                                                                                                                                                                                                                                                Firms not needing a loan (%)
## 7784                                                                                                                                                                                                                                        Firms whose recent loan application was rejected (%)
## 7785                                                                                                                                                                                                                                                           Investments financed by banks (%)
## 7786                                                                                                                                                                                                                                                       Working capital financed by banks (%)
## 7787                                                                                                                                                                                                                               Firms identifying access to finance as a major constraint (%)
## 7788                                                                                                                                                                                                                    Value traded excluding top 10 traded companies to total value traded (%)
## 7789                                                                                                                                                                                                         Market capitalization excluding top 10 companies to total market capitalization (%)
## 7790                                                                                                                                                                                                                       Nonfinancial corporate bonds to total bonds and notes outstanding (%)
## 7791                                                                                                                                                                                                                                           Investments financed by equity or stock sales (%)
## 7792                                                                                                                                                                                                                                            Private credit by deposit money banks to GDP (%)
## 7793                                                                                                                                                                                                                                                     Deposit money banks'' assets to GDP (%)
## 7794                                                                                                                                                                                                                                           Nonbank financial institutions’ assets to GDP (%)
## 7795                                                                                                                                                                                                          Deposit money bank assets to deposit money bank assets and central bank assets (%)
## 7796                                                                                                                                                                                                                                                               Liquid liabilities to GDP (%)
## 7797                                                                                                                                                                                                                                                              Central bank assets to GDP (%)
## 7798                                                                                                                                                                                                                                                               Mutual fund assets to GDP (%)
## 7799                                                                                                                                                                                                                                                        Financial system deposits to GDP (%)
## 7800                                                                                                                                                                                                                                                    Life insurance premium volume to GDP (%)
## 7801                                                                                                                                                                                                                                                Non-life insurance premium volume to GDP (%)
## 7802                                                                                                                                                                                                                                                         Insurance company assets to GDP (%)
## 7803                                                                                                                                                                                                           Private credit by deposit money banks and other financial institutions to GDP (%)
## 7804                                                                                                                                                                                                                                                              Pension fund assets to GDP (%)
## 7805                                                                                                                                                                                                                                                Domestic credit to private sector (% of GDP)
## 7806                                                                                                                                                                                                                                                      Stock market capitalization to GDP (%)
## 7807                                                                                                                                                                                                                                                  Stock market total value traded to GDP (%)
## 7808                                                                                                                                                                                                                                     Outstanding domestic private debt securities to GDP (%)
## 7809                                                                                                                                                                                                                                      Outstanding domestic public debt securities to GDP (%)
## 7810                                                                                                                                                                                                                                Outstanding international private debt securities to GDP (%)
## 7811                                                                                                                                                                                                                                 Outstanding international public debt securities to GDP (%)
## 7812                                                                                                                                                                                                                                                        International debt issues to GDP (%)
## 7813                                                                                                                                                                                                                                               Gross portfolio equity liabilities to GDP (%)
## 7814                                                                                                                                                                                                                                                    Gross portfolio equity assets to GDP (%)
## 7815                                                                                                                                                                                                                                                 Gross portfolio debt liabilities to GDP (%)
## 7816                                                                                                                                                                                                                                                      Gross portfolio debt assets to GDP (%)
## 7817                                                                                                                                                                                                                                                  Syndicated loan issuance volume to GDP (%)
## 7818                                                                                                                                                                                                                                                   Corporate bond issuance volume to GDP (%)
## 7819                                                                                                                                                                                                                                                    Syndicated loan average maturity (years)
## 7820                                                                                                                                                                                                                                                     Corporate bond average maturity (years)
## 7821                                                                                                                                                                                                                                    Credit flows by fintech and bigtech companies to GDP (%)
## 7822                                                                                                                                                                                                                                    Credit flows by fintech and bigtech companies to GDP (%)
## 7823                                                                                                                                                                                                                                                                Bank net interest margin (%)
## 7824                                                                                                                                                                                                                                                                 Bank lending-deposit spread
## 7825                                                                                                                                                                                                                                                 Bank noninterest income to total income (%)
## 7826                                                                                                                                                                                                                                                     Bank overhead costs to total assets (%)
## 7827                                                                                                                                                                                                                                                        Bank return on assets (%, after tax)
## 7828                                                                                                                                                                                                                                                        Bank return on equity (%, after tax)
## 7829                                                                                                                                                                                                                                                               Bank cost to income ratio (%)
## 7830                                                                                                                                                                                                                                 Credit to government and state-owned enterprises to GDP (%)
## 7831                                                                                                                                                                                                                                                       Bank return on assets (%, before tax)
## 7832                                                                                                                                                                                                                                                       Bank return on equity (%, before tax)
## 7833                                                                                                                                                                                                                                                             Stock market turnover ratio (%)
## 7834                                                                                                                                                                                                                                                   Consumer price index (2010=100, December)
## 7835                                                                                                                                                                                                                                                    Consumer price index (2010=100, average)
## 7836                                                                                                                                                                                                                                                                      Bank concentration (%)
## 7837                                                                                                                                                                                                                                                                    Bank deposits to GDP (%)
## 7838                                                                                                                                                                                                                                                                                 H-statistic
## 7839                                                                                                                                                                                                                                                                                Lerner index
## 7840                                                                                                                                                                                                                                                                             Boone indicator
## 7841                                                                                                                                                                                                                                                                  5-bank asset concentration
## 7842                                                                                                                                                                                                                                          Liquid liabilities in millions USD (2000 constant)
## 7843                                                                                                                                                                                                                                               Loans from nonresident banks (net) to GDP (%)
## 7844                                                                                                                                                                                                                               Loans from nonresident banks (amounts outstanding) to GDP (%)
## 7845                                                                                                                                                                                   External loans and deposits of reporting banks vis-à-vis the banking sector (% of domestic bank deposits)
## 7846                                                                                                                                                                               External loans and deposits of reporting banks vis-à-vis the nonbanking sectors (% of domestic bank deposits)
## 7847                                                                                                                                                                                          External loans and deposits of reporting banks vis-à-vis all sectors (% of domestic bank deposits)
## 7848                                                                                                                                                                                                                                                               Remittance inflows to GDP (%)
## 7849                                                                                                                                                                                                                               Consolidated foreign claims of BIS reporting banks to GDP (%)
## 7850                                                                                                                                                                                                                                                         Foreign banks among total banks (%)
## 7851                                                                                                                                                                                                                                             Foreign bank assets among total bank assets (%)
## 7852                                                                                                                                                                                                                                            Foreign bank assets among total banks assets (%)
## 7853                                                                                                                                                                                                                                            Foreign bank assets among total banks assets (%)
## 7854                                                                                                                                                                                                                                                            Global leasing volume to GDP (%)
## 7855                                                                                                                                                                                                                                                           Total factoring volume to GDP (%)
## 7856                                                                                                                                                                                                                                             Banking crisis dummy (1=banking crisis, 0=none)
## 7857                                                                                                                                                                                                                                          Government bank assets among total bank assets (%)
## 7858                                                                                                                                                                                                                                          Government bank assets among total bank assets (%)
## 7859                                                                                                                                                                                                                                            Number of listed companies per 1,000,000 people 
## 7860                                                                                                                                                                                                                                                       Stock market return (%, year-on-year)
## 7861                                                                                                                                                                                                                                                                                Bank Z-score
## 7862                                                                                                                                                                                                                                                Bank non-performing loans to gross loans (%)
## 7863                                                                                                                                                                                                                                                            Bank capital to total assets (%)
## 7864                                                                                                                                                                                                                                                            Bank credit to bank deposits (%)
## 7865                                                                                                                                                                                                                                        Bank regulatory capital to risk-weighted assets (%) 
## 7866                                                                                                                                                                                                                                        Liquid assets to deposits and short term funding (%)
## 7867                                                                                                                                                                                                                                                       Provisions to nonperforming loans (%)
## 7868                                                                                                                                                                                                                                                                      Stock price volatility
## 7869                                                                                                                                                                                                                                                             Financial knowledge score (0-3)
## 7870                                                                                                                                                                                                                                                                      Disclosure index (0-5)
## 7871                                                                                                                                                                                                                                                              Dispute resolution index (0-1)
## 7872                                                                                                                                                                                                                                                Getting credit: Distance to frontier (0-100)
## 7873                                                                                                                                                                                                                Interoperability of ATM networks and interoperability of POS terminals (0-1)
## 7874                                                                                                                                                                                                                                                           E-money accounts per 1,000 adults
## 7875                                                                                                                                                                                                                                               Retail cashless transactions per 1,000 adults
## 7876                                                                                                                                                                                                                                      Agents of payment service providers per 100,000 adults
## 7877                                                                                                                                                                                                                                                            POS terminals per 100,000 adults
## 7878                                                                                                                                                                                                                                                                Debit cards per 1,000 adults
## 7879                                                                                                                                                                                                                                                     Value-added from Capital in GTAP10P3COD
## 7880                                                                                                                                                                                                                                 Value-added from labor in GTAP10P3COD (in USD 2014 million)
## 7881                                                                                                                                                                                                                                                   Government Deficit (-) or Surplus (local)
## 7882                                                                                                                                                                                                                                                            Control of Corruption (estimate)
## 7883                                                                                                                                                                                                                                             Control of Corruption (number of surveys/polls)
## 7884                                                                                                                                                                                                                                                      Control of Corruption (standard error)
## 7885                                                                                                                                                                                                                                                         Government Effectiveness (estimate)
## 7886                                                                                                                                                                                                                                          Government Effectiveness (number of surveys/polls)
## 7887                                                                                                                                                                                                                                                   Government Effectiveness (standard error)
## 7888                                                                                                                                                                                                                                                  Political Stability/No Violence (estimate)
## 7889                                                                                                                                                                                                                                   Political Stability/No Violence (number of surveys/polls)
## 7890                                                                                                                                                                                                                                            Political Stability/No Violence (standard error)
## 7891                                                                                                                                                                                                                                                               Regulatory Quality (estimate)
## 7892                                                                                                                                                                                                                                                Regulatory Quality (number of surveys/polls)
## 7893                                                                                                                                                                                                                                                         Regulatory Quality (standard error)
## 7894                                                                                                                                                                                                                                                                      Rule of Law (estimate)
## 7895                                                                                                                                                                                                                                                      Rule of Law (number off surveys/polls)
## 7896                                                                                                                                                                                                                                                                Rule of Law (standard error)
## 7897                                                                                                                                                                                                                                                         Corruption Perceptions Index (rank)
## 7898                                                                                                                                                                                                                                                        Corruption Perceptions Index (score)
## 7899                                                                                                                                                                                                                                                         Voice and Accountability (estimate)
## 7900                                                                                                                                                                                                                                          Voice and Accountability (number of surveys/polls)
## 7901                                                                                                                                                                                                                                                   Voice and Accountability (standard error)
## 7902                                                                                                                                                                                                                                                        Access to a mobile phone (% age 15+)
## 7903                                                                                                                                                                                                                                                Access to a mobile phone, female (% age 15+)
## 7904                                                                                                                                                                                                                                                  Access to a mobile phone, male (% age 15+)
## 7905                                                                                                                                                                                                                                   Access to a mobile phone, income, poorest 40% (% age 15+)
## 7906                                                                                                                                                                                                                                   Access to a mobile phone, income, richest 60% (% age 15+)
## 7907                                                                                                                                                                                                                                                     Access to a mobile phone (% ages 15-34)
## 7908                                                                                                                                                                                                                                                     Access to a mobile phone (% ages 35-59)
## 7909                                                                                                                                                                                                                                                        Access to a mobile phone (% age 60+)
## 7910                                                                                                                                                                                                                                                              Access to internet (% age 15+)
## 7911                                                                                                                                                                                                                                                      Access to internet, female (% age 15+)
## 7912                                                                                                                                                                                                                                                        Access to internet, male (% age 15+)
## 7913                                                                                                                                                                                                                                         Access to internet, income, poorest 40% (% age 15+)
## 7914                                                                                                                                                                                                                                         Access to internet, income, richest 60% (% age 15+)
## 7915                                                                                                                                                                                                                                                           Access to internet (% ages 15-34)
## 7916                                                                                                                                                                                                                                                           Access to internet (% ages 35-59)
## 7917                                                                                                                                                                                                                                                              Access to internet (% age 60+)
## 7918                                                                                                                                                                                                                                                                Survival Rate from Age 15-60
## 7919                                                                                                                                                                                                                                                        Survival Rate from Age 15-60, Female
## 7920                                                                                                                                                                                                                                                          Survival Rate from Age 15-60, Male
## 7921                                                                                                                                                                                                                                                                    Expected Years of School
## 7922                                                                                                                                                                                                                                                            Expected Years of School, Female
## 7923                                                                                                                                                                                                                                                              Expected Years of School, Male
## 7924                                                                                                                                                                                                                                                                      Harmonized Test Scores
## 7925                                                                                                                                                                                                                                                              Harmonized Test Scores, Female
## 7926                                                                                                                                                                                                                                                                Harmonized Test Scores, Male
## 7927                                                                                                                                                                                                                                                           Learning-Adjusted Years of School
## 7928                                                                                                                                                                                                                                                   Learning-Adjusted Years of School, Female
## 7929                                                                                                                                                                                                                                                     Learning-Adjusted Years of School, Male
## 7930                                                                                                                                                                                                                                                            Probability of Survival to Age 5
## 7931                                                                                                                                                                                                                                                    Probability of Survival to Age 5, Female
## 7932                                                                                                                                                                                                                                                      Probability of Survival to Age 5, Male
## 7933                                                                                                                                                                                                                                                       Human Capital Index (HCI) (scale 0-1)
## 7934                                                                                                                                                                                                                                               Human Capital Index (HCI), Female (scale 0-1)
## 7935                                                                                                                                                                                                                                          Human Capital Index (HCI), Lower Bound (scale 0-1)
## 7936                                                                                                                                                                                                                                  Human Capital Index (HCI), Female, Lower Bound (scale 0-1)
## 7937                                                                                                                                                                                                                                    Human Capital Index (HCI), Male, Lower Bound (scale 0-1)
## 7938                                                                                                                                                                                                                                                 Human Capital Index (HCI), Male (scale 0-1)
## 7939                                                                                                                                                                                                                                          Human Capital Index (HCI), Upper Bound (scale 0-1)
## 7940                                                                                                                                                                                                                                  Human Capital Index (HCI), Female, Upper Bound (scale 0-1)
## 7941                                                                                                                                                                                                                                    Human Capital Index (HCI), Male, Upper Bound (scale 0-1)
## 7942                                                                                                                                                                                                                                                    Fraction of Children Under 5 Not Stunted
## 7943                                                                                                                                                                                                                                            Fraction of Children Under 5 Not Stunted, Female
## 7944                                                                                                                                                                                                                                              Fraction of Children Under 5 Not Stunted, Male
## 7945                                                                                                                                                                                                                            Condom use in last intercourse (% of females at risk population)
## 7946                                                                                                                                                                                                               Condom use in last intercourse (% of females at risk population): Q1 (lowest)
## 7947                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q2
## 7948                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q3
## 7949                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q4
## 7950                                                                                                                                                                                                              Condom use in last intercourse (% of females at risk population): Q5 (highest)
## 7951                                                                                                                                                                                                                                       Prevalence of HIV, total (% of population ages 15-49)
## 7952                                                                                                                                                                                                                          Prevalence of HIV, total (% of population ages 15-49): Q1 (lowest)
## 7953                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q2
## 7954                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q3
## 7955                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q4
## 7956                                                                                                                                                                                                                         Prevalence of HIV, total (% of population ages 15-49): Q5 (highest)
## 7957                                                                                                                                                                                                                          Contraceptive prevalence, modern methods (% of females ages 15-49)
## 7958                                                                                                                                                                                                             Contraceptive prevalence, modern methods (% of females ages 15-49): Q1 (lowest)
## 7959                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q2
## 7960                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q3
## 7961                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q4
## 7962                                                                                                                                                                                                            Contraceptive prevalence, modern methods (% of females ages 15-49): Q5 (highest)
## 7963                                                                                                                                                                                                                                              Mortality rate, infant (per 1,000 live births)
## 7964                                                                                                                                                                                                                                 Mortality rate, infant (per 1,000 live births): Q1 (lowest)
## 7965                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q2
## 7966                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q3
## 7967                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q4
## 7968                                                                                                                                                                                                                                Mortality rate, infant (per 1,000 live births): Q5 (highest)
## 7969                                                                                                                                                                                                                                                         Mortality rate, under-5 (per 1,000)
## 7970                                                                                                                                                                                                                                            Mortality rate, under-5 (per 1,000): Q1 (lowest)
## 7971                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q2
## 7972                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q3
## 7973                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q4
## 7974                                                                                                                                                                                                                                           Mortality rate, under-5 (per 1,000): Q5 (highest)
## 7975                                                                                                                                                                                                                                              Pap smear in last 5 years (% of females 30-49)
## 7976                                                                                                                                                                                                                                 Pap smear in last 5 years (% of females 30-49): Q1 (lowest)
## 7977                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q2
## 7978                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q3
## 7979                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q4
## 7980                                                                                                                                                                                                                                Pap smear in last 5 years (% of females 30-49): Q5 (highest)
## 7981                                                                                                                                                                                                                                        Immunization, full (% of children ages 15-23 months)
## 7982                                                                                                                                                                                                                           Immunization, full (% of children ages 15-23 months): Q1 (lowest)
## 7983                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q2
## 7984                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q3
## 7985                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q4
## 7986                                                                                                                                                                                                                          Immunization, full (% of children ages 15-23 months): Q5 (highest)
## 7987                                                                                                                                                                                                                                     Immunization, measles (% of children ages 15-23 months)
## 7988                                                                                                                                                                                                                        Immunization, measles (% of children ages 15-23 months): Q1 (lowest)
## 7989                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q2
## 7990                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q3
## 7991                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q4
## 7992                                                                                                                                                                                                                       Immunization, measles (% of children ages 15-23 months): Q5 (highest)
## 7993                                                                                                                                                                                                                               Use of insecticide-treated bed nets (% of under-5 population)
## 7994                                                                                                                                                                                                                  Use of insecticide-treated bed nets (% of under-5 population): Q1 (lowest)
## 7995                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q2
## 7996                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q3
## 7997                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q4
## 7998                                                                                                                                                                                                                 Use of insecticide-treated bed nets (% of under-5 population): Q5 (highest)
## 7999                                                                                                                                                                                                        Pregnant women receiving prenatal care of at least four visits (% of pregnant women)
## 8000                                                                                                                                                                                           Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q1 (lowest)
## 8001                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q2
## 8002                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q3
## 8003                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q4
## 8004                                                                                                                                                                                          Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q5 (highest)
## 8005                                                                                                                                                                                                 Acute respiratory infections treated (% of children under 5 with cough and rapid breathing)
## 8006                                                                                                                                                                                    Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q1 (lowest)
## 8007                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q2
## 8008                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q3
## 8009                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q4
## 8010                                                                                                                                                                                   Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q5 (highest)
## 8011                                                                                                                                                                                                                  Blood sugar measured in last 5 years (% of population at risk of diabetes)
## 8012                                                                                                                                                                                                     Blood sugar measured in last 5 years (% of population at risk of diabetes): Q1 (lowest)
## 8013                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q2
## 8014                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q3
## 8015                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q4
## 8016                                                                                                                                                                                                    Blood sugar measured in last 5 years (% of population at risk of diabetes): Q5 (highest)
## 8017                                                                                                                                                                                                                                                               Mean BMI, female (ages 15-49)
## 8018                                                                                                                                                                                                                                                  Mean BMI, female (ages 15-49): Q1 (lowest)
## 8019                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q2
## 8020                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q3
## 8021                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q4
## 8022                                                                                                                                                                                                                                                 Mean BMI, female (ages 15-49): Q5 (highest)
## 8023                                                                                                                                                                                                                                                                  Mean BMI, adults (age 18+)
## 8024                                                                                                                                                                                                                                                                  Mean BMI, female (age 18+)
## 8025                                                                                                                                                                                                                                                     Mean BMI, female (age 18+): Q1 (lowest)
## 8026                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q2
## 8027                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q3
## 8028                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q4
## 8029                                                                                                                                                                                                                                                    Mean BMI, female (age 18+): Q5 (highest)
## 8030                                                                                                                                                                                                                                                     Mean BMI, adults (age 18+): Q1 (lowest)
## 8031                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q2
## 8032                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q3
## 8033                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q4
## 8034                                                                                                                                                                                                                                                    Mean BMI, adults (age 18+): Q5 (highest)
## 8035                                                                                                                                                                                                                                                                    Mean BMI, male (age 18+)
## 8036                                                                                                                                                                                                                                                       Mean BMI, male (age 18+): Q1 (lowest)
## 8037                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q2
## 8038                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q3
## 8039                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q4
## 8040                                                                                                                                                                                                                                                      Mean BMI, male (age 18+): Q5 (highest)
## 8041                                                                                                                                                                                                                         Blood pressure measured in last 12 months (% of population age 18+)
## 8042                                                                                                                                                                                                            Blood pressure measured in last 12 months (% of population age 18+): Q1 (lowest)
## 8043                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q2
## 8044                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q3
## 8045                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q4
## 8046                                                                                                                                                                                                           Blood pressure measured in last 12 months (% of population age 18+): Q5 (highest)
## 8047                                                                                                                                                                                                                                      Mean diastolic blood pressure, adult population (mmHg)
## 8048                                                                                                                                                                                                                         Mean diastolic blood pressure, adult population (mmHg): Q1 (lowest)
## 8049                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q2
## 8050                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q3
## 8051                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q4
## 8052                                                                                                                                                                                                                        Mean diastolic blood pressure, adult population (mmHg): Q5 (highest)
## 8053                                                                                                                                                                                                        High blood pressure or being treated for high blood pressure (% of adult population)
## 8054                                                                                                                                                                                           High blood pressure or being treated for high blood pressure (% of adult population): Q1 (lowest)
## 8055                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q2
## 8056                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q3
## 8057                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q4
## 8058                                                                                                                                                                                          High blood pressure or being treated for high blood pressure (% of adult population): Q5 (highest)
## 8059                                                                                                                                                                                                                                       Mean systolic blood pressure, adult population (mmHg)
## 8060                                                                                                                                                                                                                          Mean systolic blood pressure, adult population (mmHg): Q1 (lowest)
## 8061                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q2
## 8062                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q3
## 8063                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q4
## 8064                                                                                                                                                                                                                         Mean systolic blood pressure, adult population (mmHg): Q5 (highest)
## 8065                                                                                                                                                                                                                                     Treated for high blood pressure (% of adult population)
## 8066                                                                                                                                                                                                                        Treated for high blood pressure (% of adult population): Q1 (lowest)
## 8067                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q2
## 8068                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q3
## 8069                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q4
## 8070                                                                                                                                                                                                                       Treated for high blood pressure (% of adult population): Q5 (highest)
## 8071                                                                                                                                                                                                                                        Births attended by skilled health staff (% of total)
## 8072                                                                                                                                                                                                                           Births attended by skilled health staff (% of total): Q1 (lowest)
## 8073                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q2
## 8074                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q3
## 8075                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q4
## 8076                                                                                                                                                                                                                          Births attended by skilled health staff (% of total): Q5 (highest)
## 8077                                                                                                                                                                                                                                                 Mean cholesterol, adult population (mmol/L)
## 8078                                                                                                                                                                                                               High cholesterol or on treatment for high cholesterol (% of adult population)
## 8079                                                                                                                                                                                                       Cholesterol measured in last five years (% of population at risk of high cholesterol)
## 8080                                                                                                                                                                                          Cholesterol measured in last five years (% of population at risk of high cholesterol): Q1 (lowest)
## 8081                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q2
## 8082                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q3
## 8083                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q4
## 8084                                                                                                                                                                                         Cholesterol measured in last five years (% of population at risk of high cholesterol): Q5 (highest)
## 8085                                                                                                                                                                                                                        Treated for raised blood glucose or diabetes (% of adult population)
## 8086                                                                                                                                                                                                           Treated for raised blood glucose or diabetes (% of adult population): Q1 (lowest)
## 8087                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q2
## 8088                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q3
## 8089                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q4
## 8090                                                                                                                                                                                                          Treated for raised blood glucose or diabetes (% of adult population): Q5 (highest)
## 8091                                                                                                                                                                                                                                       Mean fasting blood glucose, adult population (mmol/L)
## 8092                                                                                                                                                                                                                                          Impaired fasting glycaemia (% of adult population)
## 8093                                                                                                                                                                                                                                                  Mean height in meters, female, (age 15-49)
## 8094                                                                                                                                                                                                                                     Mean height in meters, female, (age 15-49): Q1 (lowest)
## 8095                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q2
## 8096                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q3
## 8097                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q4
## 8098                                                                                                                                                                                                                                    Mean height in meters, female, (age 15-49): Q5 (highest)
## 8099                                                                                                                                                                                                                                                     Mean height in meters, adults (age 18+)
## 8100                                                                                                                                                                                                                                                     Mean height in meters, female (age 18+)
## 8101                                                                                                                                                                                                                                        Mean height in meters, female (age 18+): Q1 (lowest)
## 8102                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q2
## 8103                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q3
## 8104                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q4
## 8105                                                                                                                                                                                                                                       Mean height in meters, female (age 18+): Q5 (highest)
## 8106                                                                                                                                                                                                                                                       Mean height in meters, male (age 18+)
## 8107                                                                                                                                                                                                                                          Mean height in meters, male (age 18+): Q1 (lowest)
## 8108                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q2
## 8109                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q3
## 8110                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q4
## 8111                                                                                                                                                                                                                                         Mean height in meters, male (age 18+): Q5 (highest)
## 8112                                                                                                                                                                                                                                        Mean height in meters, adults (age 18+): Q1 (lowest)
## 8113                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q2
## 8114                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q3
## 8115                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q4
## 8116                                                                                                                                                                                                                                       Mean height in meters, adults (age 18+): Q5 (highest)
## 8117                                                                                                                                                                                                                                  Inpatient care use in last 12 months (% of population 18+)
## 8118                                                                                                                                                                                                                     Inpatient care use in last 12 months (% of population 18+): Q1 (lowest)
## 8119                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q2
## 8120                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q3
## 8121                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q4
## 8122                                                                                                                                                                                                                    Inpatient care use in last 12 months (% of population 18+): Q5 (highest)
## 8123                                                                                                                                                                                                                           Prevalence of underweight, weight for age (% of children under 5)
## 8124                                                                                                                                                                                                              Prevalence of underweight, weight for age (% of children under 5): Q1 (lowest)
## 8125                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q2
## 8126                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q3
## 8127                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q4
## 8128                                                                                                                                                                                                             Prevalence of underweight, weight for age (% of children under 5): Q5 (highest)
## 8129                                                                                                                                                                                                                                           Mammography in last 2 years, (% of females 50-69)
## 8130                                                                                                                                                                                                                              Mammography in last 2 years, (% of females 50-69): Q1 (lowest)
## 8131                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q2
## 8132                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q3
## 8133                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q4
## 8134                                                                                                                                                                                                                             Mammography in last 2 years, (% of females 50-69): Q5 (highest)
## 8135                                                                                                                                                                                                                             Prevalence of obesity, female, BMI > 30 (% of population 15-49)
## 8136                                                                                                                                                                                                                Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q1 (lowest)
## 8137                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q2
## 8138                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q3
## 8139                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q4
## 8140                                                                                                                                                                                                               Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q5 (highest)
## 8141                                                                                                                                                                                                                               Prevalence of obesity, female, BMI > 30 (% of population 18+)
## 8142                                                                                                                                                                                                                  Prevalence of obesity, female, BMI > 30 (% of population 18+): Q1 (lowest)
## 8143                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q2
## 8144                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q3
## 8145                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q4
## 8146                                                                                                                                                                                                                 Prevalence of obesity, female, BMI > 30 (% of population 18+): Q5 (highest)
## 8147                                                                                                                                                                                                                                 Prevalence of obesity, male, BMI > 30 (% of population 18+)
## 8148                                                                                                                                                                                                                    Prevalence of obesity, male, BMI > 30 (% of population 18+): Q1 (lowest)
## 8149                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q2
## 8150                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q3
## 8151                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q4
## 8152                                                                                                                                                                                                                   Prevalence of obesity, male, BMI > 30 (% of population 18+): Q5 (highest)
## 8153                                                                                                                                                                                                                                       Prevalence of obesity, BMI > 30 (% of population 18+)
## 8154                                                                                                                                                                                                                          Prevalence of obesity, BMI > 30 (% of population 18+): Q1 (lowest)
## 8155                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q2
## 8156                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q3
## 8157                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q4
## 8158                                                                                                                                                                                                                         Prevalence of obesity, BMI > 30 (% of population 18+): Q5 (highest)
## 8159                                                                                                                                                                                                                                 Diarrhea treatment (% of children under 5 who received ORS)
## 8160                                                                                                                                                                                                                    Diarrhea treatment (% of children under 5 who received ORS): Q1 (lowest)
## 8161                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q2
## 8162                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q3
## 8163                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q4
## 8164                                                                                                                                                                                                                   Diarrhea treatment (% of children under 5 who received ORS): Q5 (highest)
## 8165                                                                                                                                                                                                                     Prevalence of overweight, female, BMI > 25 (% of population ages 15-49)
## 8166                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q1 (lowest)
## 8167                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q2
## 8168                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q3
## 8169                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q4
## 8170                                                                                                                                                                                                       Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q5 (highest)
## 8171                                                                                                                                                                                                                            Prevalence of overweight, female, BMI > 25 (% of population 18+)
## 8172                                                                                                                                                                                                               Prevalence of overweight, female, BMI > 25 (% of population 18+): Q1 (lowest)
## 8173                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q2
## 8174                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q3
## 8175                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q4
## 8176                                                                                                                                                                                                              Prevalence of overweight, female, BMI > 25 (% of population 18+): Q5 (highest)
## 8177                                                                                                                                                                                                                              Prevalence of overweight, male, BMI > 25 (% of population 18+)
## 8178                                                                                                                                                                                                                 Prevalence of overweight, male, BMI > 25 (% of population 18+): Q1 (lowest)
## 8179                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q2
## 8180                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q3
## 8181                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q4
## 8182                                                                                                                                                                                                                Prevalence of overweight, male, BMI > 25 (% of population 18+): Q5 (highest)
## 8183                                                                                                                                                                                                                                    Prevalence of overweight, BMI > 25 (% of population 18+)
## 8184                                                                                                                                                                                                                       Prevalence of overweight, BMI > 25 (% of population 18+): Q1 (lowest)
## 8185                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q2
## 8186                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q3
## 8187                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q4
## 8188                                                                                                                                                                                                                      Prevalence of overweight, BMI > 25 (% of population 18+): Q5 (highest)
## 8189                                                                                                                                                                                                                              Prevalence of stunting, height for age (% of children under 5)
## 8190                                                                                                                                                                                                                 Prevalence of stunting, height for age (% of children under 5): Q1 (lowest)
## 8191                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q2
## 8192                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q3
## 8193                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q4
## 8194                                                                                                                                                                                                                Prevalence of stunting, height for age (% of children under 5): Q5 (highest)
## 8195                                                                                                                                                                  Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%)
## 8196                                                                                                                                                     Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8197                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q2
## 8198                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q3
## 8199                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q4
## 8200                                                                                                                                                    Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8201                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $1.90 poverty line
## 8202                                                                                                                                                                      Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8203                                                                                                                                                         Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8204                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8205                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8206                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8207                                                                                                                                                        Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8208                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $3.20 poverty line
## 8209                                                                                                                                                                      Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8210                                                                                                                                                         Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8211                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8212                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8213                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8214                                                                                                                                                        Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8215                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $5.50 poverty line
## 8216                                                                                                                                                                      Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8217                                                                                                                                                         Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8218                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8219                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8220                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8221                                                                                                                                                        Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8222                                                                                                                                                                                                Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $21.70 poverty line
## 8223                                                                                                                                                                     Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8224                                                                                                                                                        Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8225                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8226                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8227                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8228                                                                                                                                                       Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8229                                                                     Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)
## 8230                                         Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q1 (lowest)
## 8231                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q2
## 8232                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q3
## 8233                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q4
## 8234                                        Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q5 (highest)
## 8235                                                                                                                                                                                                                        Mean household per capita out-of-pocket health spending ($ 2011 PPP)
## 8236                                                                                                                                                                                                     Mean share of household consumption or income used on out-of-pocket health spending (%)
## 8237                                                                                                                                                                                        Mean share of household consumption or income used on out-of-pocket health spending (%): Q1 (lowest)
## 8238                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q2
## 8239                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q3
## 8240                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q4
## 8241                                                                                                                                                                                       Mean share of household consumption or income used on out-of-pocket health spending (%): Q5 (highest)
## 8242                                                                                                                                                             Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%)
## 8243                                                                                                                                                Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest)
## 8244                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q2
## 8245                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q3
## 8246                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q4
## 8247                                                                                                                                               Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest)
## 8248                                                                                                                                                             Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%)
## 8249                                                                                                                                                Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest)
## 8250                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q2
## 8251                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q3
## 8252                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q4
## 8253                                                                                                                                               Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest)
## 8254                                                                                                                                                                                                                                      Unmet need for contraception (% of females ages 15-49)
## 8255                                                                                                                                                                                                                         Unmet need for contraception (% of females ages 15-49): Q1 (lowest)
## 8256                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q2
## 8257                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q3
## 8258                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q4
## 8259                                                                                                                                                                                                                        Unmet need for contraception (% of females ages 15-49): Q5 (highest)
## 8260                                                                                                                                                                                                                                 Predictability of Transfers from Higher Level of Government
## 8261                                                                                                                           (i) Annual deviation of actual total HLG transfers from the original total estimated amount provided by HLG to the SN entity for inclusion in the latter’s budget
## 8262                                                                                                                                                                                                             (ii) Annual variance between actual and estimated transfers of earmarked grants
## 8263                                                                                                            (iii) In-year timeliness of transfers from HLG (compliance with timetables for in-year distribution of disbursements agreed within one month of the start of the SN fiscal year)
## 8264                                                                                                                                                                                                                            Household Access to Electricity: Total (in % of total household)
## 8265                                                                                                                                                                                                                                    Household Access to Safe Water (in % of total household)
## 8266                                                                                                                                                                                                                   Household Access to Fixed Line Phone Connection (in % of total Household)
## 8267                                                                                                                                                                                                                               Household Access to safe Sanitation (in % of total Household)
## 8268                                                                                                                                                                                                                                 Monthly Per Capita Household Education Expenditure (in IDR)
## 8269                                                                                                                                                                                                                                    Monthly Per Capita Household Health Expenditure (in IDR)
## 8270                                                                                                                                                                                                                                                   Household per capita expenditure (in IDR)
## 8271                                                                                                                                                                                                          Monthly Per Capita TOTAL Household Expenditure for The Poorest 20 percent (in IDR)
## 8272                                                                                                                                                                                                                                                                     ATMs per 100,000 adults
## 8273                                                                                                                                                                                                                                                                 Branches per 100,000 adults
## 8274                                                                                                                                                                                                                                                           Deposit accounts per 1,000 adults
## 8275                                                                                                                                                                                                                        SME deposit accounts (as a % of non-financial corporation borrowers)
## 8276                                                                                                                                                                                                                           SME loan accounts (as a % of non-financial corporation borrowers)
## 8277                                                                                                                                                                                                                                                     Mobile agent outlets per 100,000 adults
## 8278                                                                                                                                                                                                                                                Mobile money transactions per 100,000 adults
## 8279                                                                                                                                                                                                                                                     Open Budget Index Overall Country Score
## 8280                                                                                                                                                                                                             Ease of doing business score (0 = lowest performance to 100 = best performance)
## 8281                                                                                                                                                                                                                                              Protecting investors, director liability index
## 8282                                                                                                                                                                                                               Business extent of disclosure index (0=less disclosure to 10=more disclosure)
## 8283                                                                                                                                                                                                                                  Global: Ease of doing business score (DB10-14 methodology)
## 8284                                                                                                                                                                                                                                             Ease of doing business score (DB15 methodology)
## 8285                                                                                                                                                                                                                                     Global: Ease of doing business score (DB15 methodology)
## 8286                                                                                                                                                                                                                                  Global: Ease of doing business score (DB17-20 methodology)
## 8287                                                                                                                                                                                                                          Ease of doing business rank (1=most business-friendly regulations)
## 8288                                                                                                                                                                                                                                             Protecting investors, investor protection index
## 8289                                                                                                                                                                                                                        New business density (new registrations per 1,000 people ages 15-64)
## 8290                                                                                                                                                                                                                                                          New businesses registered (number)
## 8291                                                                                                                                                                                                                                       Business entry rate (new registrations as % of total)
## 8292                                                                                                                                                                                                                                               Protecting investors, shareholder suits index
## 8293                                                                                                                                                                                                                                                        Total businesses registered (number)
## 8294                                                                                                                                                                                                                                                                 Protecting investors (rank)
## 8295                                                                                                                                                                                                                                                      Closing a business, cost (% of estate)
## 8296                                                                                                                                                                                                                                                            Closing a business, time (years)
## 8297                                                                                                                                                                                                                                     Closing a business, recovery rate (cents on the dollar)
## 8298                                                                                                                                                                                                                                                                   Closing a business (rank)
## 8299                                                                                                                                                                                                                      Corruption (% of managers surveyed ranking this as a major constraint)
## 8300                                                                                                                                                                                                                           Crime (% of managers surveyed ranking this as a major constraint)
## 8301                                                                                                                                                                                                                     Electricity (% of managers surveyed ranking this as a major constraint)
## 8302                                                                                                                                                                                                                         Finance (% of managers surveyed ranking this as a major constraint)
## 8303                                                                                                                                                                                                                                    Firms that share or own their own generator (% of firms)
## 8304                                                                                                                                                                                                                                                               Days to Obtain Import License
## 8305                                                                                                                                                                                                       Practices Informal Sector (% of managers surveyed ranking this as a major constraint)
## 8306                                                                                                                                                                                                                  Access to Land (% of managers surveyed ranking this as a major constraint)
## 8307                                                                                                                                                                                                               Labor regulations (% of managers surveyed ranking this as a major constraint)
## 8308                                                                                                                                                                                                                    Labor skills (% of managers surveyed ranking this as a major constraint)
## 8309                                                                                                                                                                                                                          Courts (% of managers surveyed ranking this as a major constraint)
## 8310                                                                                                                                                                                                              Licenses & Permits (% of managers surveyed ranking this as a major constraint)
## 8311                                                                                                                                                                                                            Losses Due to Theft, Robbery, Vandalism, and Arson Against the Firm (% of Sales)
## 8312                                                                                                                                                                                                                                                  Days to Obtain Construction-related Permit
## 8313                                                                                                                                                                                                              Policy uncertainty (% of managers surveyed ranking this as a major constraint)
## 8314                                                                                                                                                                                                              Tax administration (% of managers surveyed ranking this as a major constraint)
## 8315                                                                                                                                                                                                                       Tax rates (% of managers surveyed ranking this as a major constraint)
## 8316                                                                                                                                                                                                     Customs & trade regulations (% of managers surveyed ranking this as a major constraint)
## 8317                                                                                                                                                                                                                  Transportation (% of managers surveyed ranking this as a major constraint)
## 8318                                                                                                                                                                                        Dealing with construction permits: Liability and insurance regimes index (0-2) (DB16-20 methodology)
## 8319                                                                                                                                                                                            Dealing with construction permits: Professional certifications index (0-4) (DB16-20 methodology)
## 8320                                                                                                                                                                                      Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology) - Score
## 8321                                                                                                                                                                                                                              Dealing with construction permits: Cost (% of Warehouse value)
## 8322                                                                                                                                                                                                                      Dealing with construction permits: Cost (% of Warehouse value) - Score
## 8323                                                                                                                                                                                                                             Dealing with construction permits (DB06-15 methodology) - Score
## 8324                                                                                                                                                                                                                             Dealing with construction permits (DB16-20 methodology) - Score
## 8325                                                                                                                                                                                                                                      Dealing with construction permits: Procedures (number)
## 8326                                                                                                                                                                                                                              Dealing with construction permits: Procedures (number) - Score
## 8327                                                                                                                                                                                        Dealing with construction permits: Quality of building regulations index (0-2) (DB16-20 methodology)
## 8328                                                                                                                                                                                     Dealing with construction permits: Quality control after construction index (0-3) (DB16-20 methodology)
## 8329                                                                                                                                                                                    Dealing with construction permits: Quality control before construction index (0-1) (DB16-20 methodology)
## 8330                                                                                                                                                                                    Dealing with construction permits: Quality control during construction index (0-3) (DB16-20 methodology)
## 8331                                                                                                                                                                                                              Rank: Dealing with construction permits (1=most business-friendly regulations)
## 8332                                                                                                                                                                                                                                              Dealing with construction permits: Time (days)
## 8333                                                                                                                                                                                                                                     Dealing with construction permits: Time (days)  - Score
## 8334                                                                                                                                                                                                                            Expected to give gifts to get a Construction Permit (% of firms)
## 8335                                                                                                                                                                                                                                         Depth of credit information index (0=low to 8=high)
## 8336                                                                                                                                                                                                                                                          Getting credit, legal rights index
## 8337                                                                                                                                                                                                                                 Private credit bureau coverage (borrowers per 1,000 adults)
## 8338                                                                                                                                                                                                                                                Private credit bureau coverage (% of adults)
## 8339                                                                                                                                                                                                                                Public credit registry coverage (borrowers per 1,000 adults)
## 8340                                                                                                                                                                                                                                               Public credit registry coverage (% of adults)
## 8341                                                                                                                                                                                                                                                                       Getting credit (rank)
## 8342                                                                                                                                                                                                                                            Getting Credit total score (DB05-14 methodology)
## 8343                                                                                                                                                                                                                                            Getting Credit total score (DB15-20 methodology)
## 8344                                                                                                                                                                                                                                                Getting credit (DB05-14 methodology) - Score
## 8345                                                                                                                                                                                                                                                Getting credit (DB15-20 methodology) - Score
## 8346                                                                                                                                                                                                                                 Rank: Getting credit (1=most business-friendly regulations)
## 8347                                                                                                                                                                                                               Getting credit: Depth of credit information index (0-6) (DB05-14 methodology)
## 8348                                                                                                                                                                                                       Getting credit: Depth of credit information index (0-6) (DB05-14 methodology) - Score
## 8349                                                                                                                                                                                                               Getting credit: Depth of credit information index (0-8) (DB15-20 methodology)
## 8350                                                                                                                                                                                                       Getting credit: Depth of credit information index (0-8) (DB15-20 methodology) - Score
## 8351                                                                                                                                                                                                         Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology) - Score
## 8352                                                                                                                                                                                                         Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology) - Score
## 8353                                                                                                                                                                                                                 Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology)
## 8354                                                                                                                                                                                                                 Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology)
## 8355                                                                                                                                                                                                                                        Getting credit: Credit bureau coverage (% of adults)
## 8356                                                                                                                                                                                                                                      Getting credit: Credit registry coverage (% of adults)
## 8357                                                                                                                                                                                                                                        Average time to clear exports through customs (days)
## 8358                                                                                                                                                                                                                                           Average time to clear imports from customs (days)
## 8359                                                                                                                                                                                              Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology)
## 8360                                                                                                                                                                                                            Products shipped to supply domestic markets lost due to breakage or spoilage (%)
## 8361                                                                                                                                                                                                                           Products shipped to supply domestic markets lost due to theft (%)
## 8362                                                                                                                                                                                                                                           Getting electricity (DB10-15 methodology) - Score
## 8363                                                                                                                                                                                                                                           Getting electricity (DB16-20 methodology) - Score
## 8364                                                                                                                                                                                                                            Rank: Getting electricity (1=most business-friendly regulations)
## 8365                                                                                                                                                                                                                       Getting electricity: Cost to get electricity (% of income per capita)
## 8366                                                                                                                                                                                                               Getting electricity: Cost to get electricity (% of income per capita) - Score
## 8367                                                                                                                                                                                                Getting electricity: Communication of tariffs and tariff changes (0-1) (DB16-20 methodology)
## 8368                                                                                                                                                                                                                                              Time to obtain an electrical connection (days)
## 8369                                                                                                                                                                                                                                                              Electricity from Generator (%)
## 8370                                                                                                                                                                                                                         Expected to give gifts to get an electrical connection (% of firms)
## 8371                                                                                                                                                                                             Getting electricity: Financial deterrents aimed at limiting outages (0-1) (DB16-20 methodology)
## 8372                                                                                                                                                                                                          Getting electricity: Mechanisms for monitoring outages (0-1) (DB16-20 methodology)
## 8373                                                                                                                                                                                                                                          Power outages in firms in a typical month (number)
## 8374                                                                                                                                                                                                                                                                   Electrical outages (days)
## 8375                                                                                                                                                                                Getting electricity: Total duration and frequency of outages per customer a year (0-3) (DB16-20 methodology)
## 8376                                                                                                                                                                                                                                                   Average duration of power outages (hours)
## 8377                                                                                                                                                                                                                Getting electricity: Minimum outage time (in minutes)  (DB16-20 methodology)
## 8378                                                                                                                                                                                                                                          Firms experiencing electrical outages (% of firms)
## 8379                                                                                                                                                                                                          Getting electricity: Price of electricity (US cents per kWh) (DB16-20 methodology)
## 8380                                                                                                                                                                                                                                                    Getting electricity: Procedures (number)
## 8381                                                                                                                                                                                                                                            Getting electricity: Procedures (number) - Score
## 8382                                                                                                                                                                                                                      Getting electricity: Regulatory monitoring (0-1) (DB16-20 methodology)
## 8383                                                                                                                                                                                                           Getting electricity: Mechanisms for restoring service (0-1) (DB16-20 methodology)
## 8384                                                                                                                                                                                     Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology)
## 8385                                                                                                                                                                             Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology) - Score
## 8386                                                                                                                                                                                               Getting electricity: System average interruption duration index (SAIDI) (DB16-20 methodology)
## 8387                                                                                                                                                                                              Getting electricity: System average interruption frequency index (SAIFI) (DB16-20 methodology)
## 8388                                                                                                                                                                                                                                                     Time required to get electricity (days)
## 8389                                                                                                                                                                                                                                                    Getting electricity: Time (days) - Score
## 8390                                                                                                                                                                                                                                 Cost to get electricity connection (% of income per capita)
## 8391                                                                                                                                                                                                                                             Procedures required to get electricity (number)
## 8392                                                                                                                                                                                                                                                     Time required to get electricity (days)
## 8393                                                                                                                                                                                                                                                                  Getting electricity (rank)
## 8394                                                                                                                                                                                                                                                                Firing cost (weeks of wages)
## 8395                                                                                                                                                                                                                                                       Employees offered formal training (%)
## 8396                                                                                                                                                                                                                                                          Cost to export (US$ per container)
## 8397                                                                                                                                                                                                                                                     Cost to export, border compliance (US$)
## 8398                                                                                                                                                                                                                                                Cost to export, documentary compliance (US$)
## 8399                                                                                                                                                                                                                                                                Documents to export (number)
## 8400                                                                                                                                                                                                                                                                       Time to export (days)
## 8401                                                                                                                                                                                                                                                   Time to export, border compliance (hours)
## 8402                                                                                                                                                                                                                                              Time to export, documentary compliance (hours)
## 8403                                                                                                                                                                                                                                       Firms with a Checking or Savings Account (% of firms)
## 8404                                                                                                                                                                                                                                                                         Age of firm (years)
## 8405                                                                                                                                                                                                             Firms with annual Financial Statement reviewed by External Auditor (% of firms)
## 8406                                                                                                                                                                                                                                  Firms using banks to finance working capital (% of firms) 
## 8407                                                                                                                                                                                                                                        Firms using banks to finance investment (% of firms)
## 8408                                                                                                                                                                                                     Bribery depth (% of public transactions where a gift or informal payment was requested)
## 8409                                                                                                                                                                                                        Bribery incidence (percent of firms experiencing at least one bribe payment request)
## 8410                                                                                                                                                                                                              Bribery incidence (% of firms experiencing at least one bribe payment request)
## 8411                                                                                                                                                                                                                                     Firms competing against unregistered firms (% of firms)
## 8412                                                                                                                                                                                        Firms identifying practices of competitors in the Informal Sector as a major constraint (% of firms)
## 8413                                                                                                                                                                                                                             Firms identifying corruption as a major constraint (% of firms)
## 8414                                                                                                                                                                                                                      Percent of firms expected to give gifts in meetings with tax officials
## 8415                                                                                                                                                                                                                         Percent of firms expected to give gifts to get an operating license
## 8416                                                                                                                                                                                                                               Percent of firms identifying corruption as a major constraint
## 8417                                                                                                                                                                                                                       Percent of firms expected to give gifts to secure government contract
## 8418                                                                                                                                                                                                                Value of gift expected to secure a government contract (% of contract value)
## 8419                                                                                                                                                                                                           Percent of firms expected to give gifts to public officials "to get things done" 
## 8420                                                                                                                                                                                                                     Percent of firms expected to give gifts to get an electrical connection
## 8421                                                                                                                                                                                                                           Percent of firms expected to give gifts to get a water connection
## 8422                                                                                                                                                                                                                        Percent of firms expected to give gifts to get a construction permit
## 8423                                                                                                                                                                                                                           Percent of firms expected to give gifts to get an import license 
## 8424                                                                                                                                                                                               Percent of firms identifying the courts system as a major constraint                         
## 8425                                                                                                                                                                                                                                          Informal payments to public officials (% of firms)
## 8426                                                                                                                                                                                                                            Dealing with construction permits, cost (% of income per capita)
## 8427                                                                                                                                                                                                                 Firms with Line of Credit or Loans from Financial Institutions (% of firms)
## 8428                                                                                                                                                                                                                     Losses due to theft and vandalism (% of annual sales of affected firms)
## 8429                                                                                                                                                                                                                                                        Percent of firms paying for security
## 8430                                                                                                                                                                                                                             Percent of firms experiencing losses due to theft and vandalism
## 8431                                                                                                                                                                                                          If the establishment pays for security, average security costs (% of annual sales)
## 8432                                                                                                                                                                                                         If there were losses, average losses due to theft and vandalism (% of annual sales)
## 8433                                                                                                                                                                                                Products shipped to supply domestic markets that were lost due to theft (% of product value)
## 8434                                                                                                                                                                                                  Percent of firms identifying crime, theft and disorder as a major constraint              
## 8435                                                                                                                                                                            Believing the court system is fair, impartial and uncorrupted (% of firms identifying this as a major contraint)
## 8436                                                                                                                                                                                                 Firms that trade identifying customs & trade regulations as a major constraint (% of firms)
## 8437                                                                                                                                                                                                                                         Time required to obtain an operating license (days)
## 8438                                                                                                                                                                                                                             Electricity (% of firms identifying this as a major constraint)
## 8439                                                                                                                                                                                                                        Firms using email to communicate with clients/suppliers (% of firms)
## 8440                                                                                                                                                                                                                                                                Annual employment growth (%)
## 8441                                                                                                                                                                                                                                            Average number of permanent, full time employees
## 8442                                                                                                                                                                                                                                              Average number of skilled production employees
## 8443                                                                                                                                                                                                                                   Average number of seasonal/temporary, full-time employees
## 8444                                                                                                                                                                                                                                              Average number of unskilled production workers
## 8445                                                                                                                                                                                                                                                                 Exporter firms (% of firms)
## 8446                                                                                                                                                                                                                                                            Age of the establishment (years)
## 8447                                                                                                                                                                                                                                      Proportion of private domestic ownership in a firm (%)
## 8448                                                                                                                                                                                                                                     Percent of firms with at least 10% of foreign ownership
## 8449                                                                                                                                                                                                                            Percent of firms with at least 10% of government/state ownership
## 8450                                                                                                                                                                                                                                   Percent of firms with legal status of Sole Proprietorship
## 8451                                                                                                                                                                                                                                                  Firms with female top manager (% of firms)
## 8452                                                                                                                                                                                                                                   Firms with female participation in ownership (% of firms)
## 8453                                                                                                                                                                                                                                                                Full time female workers (%)
## 8454                                                                                                                                                                                                                                                        Percent of firms buying fixed assets
## 8455                                                                                                                                                                                                                                            Proportion of investment financed internally (%)
## 8456                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 8457                                                                                                                                                                                                                                                Proportion of loans requiring collateral (%)
## 8458                                                                                                                                                                                                                                         Percent of firms using banks to finance investments
## 8459                                                                                                                                                                                                                                     Percent of firms using banks to finance working capital
## 8460                                                                                                                                                                                                                                            Percent of firms with a bank loan/line of credit
## 8461                                                                                                                                                                                                                                         Percent of firms with a checking or savings account
## 8462                                                                                                                                                                                                                        Percent of firms identifying access to finance as a major constraint
## 8463                                                                                                                                                                                                                                              Proportion of investment financed by banks (%)
## 8464                                                                                                                                                                                                                                                         Percent of firms not needing a loan
## 8465                                                                                                                                                                                                                                 Percent of firms whose recent loan application was rejected
## 8466                                                                                                                                                                                                                  Percent of firms using supplier/customer credit to finance working capital
## 8467                                                                                                                                                                                                                                         Proportion of working capital financed by banks (%)
## 8468                                                                                                                                                                                                                       Access to finance (% of firms identifying this as a major constraint)
## 8469                                                                                                                                                                                                                            Firms that use material inputs and/or supplies of foreign origin
## 8470                                                                                                                                                                                                                              Firms formally registered when operations started (% of firms)
## 8471                                                                                                                                                                                                                                     Percent of firms with female participation in ownership
## 8472                                                                                                                                                                                                                               Proportion of permanent full-time workers that are female (%)
## 8473                                                                                                                                                                                                                Proportion of permanent full-time non-production workers that are female (%)
## 8474                                                                                                                                                                                                                                                  Percent of firms with a female top manager
## 8475                                                                                                                                                                                                                    Proportion of permanent full-time production workers that are female (%)
## 8476                                                                                                                                                                                                                                             Percent of firms with majority female ownership
## 8477                                                                                                                                                                                                                            Firms that do not report all sales for tax purposes (% of firms)
## 8478                                                                                                                                                                                                                           Percent of firms competing against unregistered or informal firms
## 8479                                                                                                                                                                                        Percent of firms identifying practices of competitors in the informal sector as a major constraint  
## 8480                                                                                                                                                                                                            Percent of firms formally registered when they started operations in the country
## 8481                                                                                                                                                                                                                                   Number of years firm operated without formal registration
## 8482                                                                                                                                                                                                                                  Days to obtain an electrical connection (upon application)
## 8483                                                                                                                                                                                                              If a generator is used, average proportion of electricity from a generator (%)
## 8484                                                                                                                                                                                                                           Percent of firms identifying transportation as a major constraint
## 8485                                                                                                                                                                                                                              Percent of firms identifying electricity as a major constraint
## 8486                                                                                                                                                                                                 Proportion of products lost to breakage or spoilage during shipping to domestic markets (%)
## 8487                                                                                                                                                                                                                                            Percent of firms experiencing electrical outages
## 8488                                                                                                                                                                                                                                         Percent of firms experiencing water insufficiencies
## 8489                                                                                                                                                                                                                                             Number of electrical outages in a typical month
## 8490                                                                                                                                                                                                              If there were outages, average duration of a typical electrical outage (hours)
## 8491                                                                                                                                                                                                         If there were outages, average losses due to electrical outages (% of annual sales)
## 8492                                                                                                                                                                                                                                          Number of water insufficiencies in a typical month
## 8493                                                                                                                                                                                                                                              Percent of firms owning or sharing a generator
## 8494                                                                                                                                                                                                        Services firms competing against unregistered or informal firms (% of service firms)
## 8495                                                                                                                                                                                                                   Percent of firms with an internationally-recognized quality certification
## 8496                                                                                                                                                                                                                                                          Percent of firms that spend on R&D
## 8497                                                                                                                                                                                                          Percent of firms with an annual financial statement reviewed by external auditors 
## 8498                                                                                                                                                                                                                                                                    Capacity utilization (%)
## 8499                                                                                                                                                                                                                           Percent of firms using technology licensed from foreign companies
## 8500                                                                                                                                                                                                                                                  Percent of firms having their own Web site
## 8501                                                                                                                                                                                                                            Percent of firms using e-mail to interact with clients/suppliers
## 8502                                                                                                                                                                                                                                      Percent of firms that introduced a new product/service
## 8503                                                                                                                                                                                                                   Percent of firms whose new product/service is also new to the main market
## 8504                                                                                                                                                                                                                                       Percent of firms that introduced a process innovation
## 8505                                                                                                                                                                                                                               Internationally-recognized quality certification (% of firms)
## 8506                                                                                                                                                                                                                       Labor regulations (% of firms identifying this as a major constraint)
## 8507                                                                                                                                                                                                                       Labor skill level (% of firms identifying this as a major constraint)
## 8508                                                                                                                                                                                                            Business Licensing and Permits (% of firms Identifying this as major constraint)
## 8509                                                                                                                                                                                                                          Firms visited or required meetings with tax officials (% of firms)
## 8510                                                                                                                                                                                                                         Years of experience of the Top Manager working in the firm's sector
## 8511                                                                                                                                                                                                                       Percent of firms choosing access to finance as their biggest obstacle
## 8512                                                                                                                                                                                                                       Percent of firms choosing labor regulations as their biggest obstacle
## 8513                                                                                                                                                                                                                   Percent of firms choosing political instability as their biggest obstacle
## 8514                                                                                                                                                                                                        Percent of firms choosing practices of the informal sector as their biggest obstacle
## 8515                                                                                                                                                                                                                      Percent of firms choosing tax administration as their biggest obstacle
## 8516                                                                                                                                                                                                                               Percent of firms choosing tax rates as their biggest obstacle
## 8517                                                                                                                                                                                                                          Percent of firms choosing transportation as their biggest obstacle
## 8518                                                                                                                                                                                                                          Percent of firms choosing access to land as their biggest obstacle
## 8519                                                                                                                                                                                                          Percent of firms choosing business licensing and permits as their biggest obstacle
## 8520                                                                                                                                                                                                                              Percent of firms choosing corruption as their biggest obstacle
## 8521                                                                                                                                                                                                                                  Percent of firms choosing courts as their biggest obstacle
## 8522                                                                                                                                                                                                               Percent of firms choosing crime, theft and disorder as their biggest obstacle
## 8523                                                                                                                                                                                                           Percent of firms choosing customs and trade regulations as their biggest obstacle
## 8524                                                                                                                                                                                                                             Percent of firms choosing electricity as their biggest obstacle
## 8525                                                                                                                                                                                                         Percent of firms choosing inadequately educated workforce as their biggest obstacle
## 8526                                                                                                                                                                                                                        Value lost due to electrical outages (% of sales for affected firms)
## 8527                                                                                                                                                                                                                                                 Enterprise ownership - Government/state (%)
## 8528                                                                                                                                                                                                                                                  Enterprise ownership - Private Foreign (%)
## 8529                                                                                                                                                                                                                                                 Enterprise ownership - Private Domestic (%)
## 8530                                                                                                                                                                                                                                                           Largest shareholder ownership (%)
## 8531                                                                                                                                                                                                                                              Dealing with construction, procedures (number)
## 8532                                                                                                                                                                                                                                                   Real annual labor productivity growth (%)
## 8533                                                                                                                                                                                                                                                            Days to obtain an import license
## 8534                                                                                                                                                                                                                                                         Days to obtain an operating license
## 8535                                                                                                                                                                                                                                                Days to obtain a construction-related permit
## 8536                                                                                                                                                                                                           Percent of firms identifying business licensing and permits as a major constraint
## 8537                                                                                                                                                                                                     Senior management time spent dealing with the requirements of government regulation (%)
## 8538                                                                                                                                                                                                      If there were visits, average number of visits or required meetings with tax officials
## 8539                                                                                                                                                                                                                                Percent of firms identifying tax rates as a major constraint
## 8540                                                                                                                                                                                                                       Percent of firms identifying tax administration as a major constraint
## 8541                                                                                                                                                                                                                             Percent of firms visited or required to meet with tax officials
## 8542                                                                                                                                                                                                               Firms Formally Registered when Started Operations in the Country (% of firms)
## 8543                                                                                                                                                                                                                                                        Firms that spend on R&D (% of firms)
## 8544                                                                                                                                                                                                                                                      Firms Paying for Security (% of firms)
## 8545                                                                                                                                                                                                                                                                 Security costs (% of sales)
## 8546                                                                                                                                                                                                                                                                Real annual sales growth (%)
## 8547                                                                                                                                                                                                                        Tax Administration (% of firms identifying this as major constraint)
## 8548                                                                                                                                                                                                                                 Tax rates (% of firms identifying this as major constraint)
## 8549                                                                                                                                                                                                                         Firms using technology licensed from foreign companies (% of firms)
## 8550                                                                                                                                                                                                                           Firms experiencing losses due to theft and vandalism (% of firms)
## 8551                                                                                                                                                                                                                                      Time required to deal with construction permits (days)
## 8552                                                                                                                                                                                                                                                Days to clear direct exports through customs
## 8553                                                                                                                                                                                                                    Percent of firms using material inputs and/or supplies of foreign origin
## 8554                                                                                                                                                                                                                                 Percent of firms exporting directly (at least 10% of sales)
## 8555                                                                                                                                                                                                                   Percent of firms exporting directly or indirectly (at least 10% of sales)
## 8556                                                                                                                                                                                                                                                          Days to clear imports from customs
## 8557                                                                                                                                                                                                                                    Proportion of total sales that are exported directly (%)
## 8558                                                                                                                                                                                                                                   Proportion of total inputs that are of foreign origin (%)
## 8559                                                                                                                                                                                                            Percent of firms identifying customs and trade regulations as a major constraint
## 8560                                                                                                                                                                                                                                                 Firms offering formal training (% of firms)
## 8561                                                                                                                                                                                                                          Transportation (% of firms identifying this as a major constraint)
## 8562                                                                                                                                                                                                                                                    Firms using its own website (% of firms)
## 8563                                                                                                                                                                                                                                                   Percent of firms offering formal training
## 8564                                                                                                                                                                                                       Percent of firms identifying an inadequately educated workforce as a major constraint
## 8565                                                                                                                                                                                                                                                                           Number of workers
## 8566                                                                                                                                                                                                                             Proportion of production workers (out of all permanent workers)
## 8567                                                                                                                                                                                                                                        Proportion of temporary workers (out of all workers)
## 8568                                                                                                                                                                                                                                        Proportion of permanent workers (out of all workers)
## 8569                                                                                                                                                                                                                           Proportion of skilled workers (out of all production workers) (%)
## 8570                                                                                                                                                                                                                                           Proportion of workers offered formal training (%)
## 8571                                                                                                                                                                                                                          Years of the top manager's experience working in the firm's sector
## 8572                                                                                                                                                                                                                        Percent of firms identifying labor regulations as a major constraint
## 8573                                                                                                                                                                                                                                  Number of years firms operated without formal registration
## 8574                                                                                                                                                                                                                                                    Dealing with construction permits (rank)
## 8575                                                                                                                                                                                                                         Expected to give gifts to secure a Government contract (% of firms)
## 8576                                                                                                                                                                                            Time spent dealing with the requirements of government regulations (% of senior management time)
## 8577                                                                                                                                                                                                                                                                    Incidence of Graft index
## 8578                                                                                                                                                                                                                                                          Cost to import (US$ per container)
## 8579                                                                                                                                                                                                                                                     Cost to import, border compliance (US$)
## 8580                                                                                                                                                                                                                                                Cost to import, documentary compliance (US$)
## 8581                                                                                                                                                                                                                                                                Documents to import (number)
## 8582                                                                                                                                                                                                                                                                       Time to import (days)
## 8583                                                                                                                                                                                                                                Expected to give gifts to get an Import License (% of firms)
## 8584                                                                                                                                                                                                                                                   Time to import, border compliance (hours)
## 8585                                                                                                                                                                                                                                              Time to import, documentary compliance (hours)
## 8586                                                                                                                                                                                                                                                          Time to resolve insolvency (years)
## 8587                                                                                                                                                                                                                                                                  Enforcing contracts (rank)
## 8588                                                                                                                                                                                                                                                      Enforcing contracts, cost (% of claim)
## 8589                                                                                                                                                                                                                                        Strength of legal rights index (0=weak to 12=strong)
## 8590                                                                                                                                                                                                                                                  Time required to enforce a contract (days)
## 8591                                                                                                                                                                                                                               Rigidity of employment index (0=less rigid to 100=more rigid)
## 8592                                                                                                                                                                                                      Courts (% of managers surveyed lacking confidence in courts to uphold property rights)
## 8593                                                                                                                                                                                                                                                   Procedures to enforce a contract (number)
## 8594                                                                                                                                                                                                                                                              Loans requiring collateral (%)
## 8595                                                                                                                                                                                                                             Expected to give gifts to get an Operating License (% of firms)
## 8596                                                                                                                                                                                                                                          Cost of registering property (% of property value)
## 8597                                                                                                                                                                                                                                                   Time required to register property (days)
## 8598                                                                                                                                                                                                                                                    Procedures to register property (number)
## 8599                                                                                                                                                                                                                                                                 Registering property (rank)
## 8600                                                                                                                                                                                                                           Minimum capital for starting a business  (% of income per capita)
## 8601                                                                                                                                                                                                                          Cost of business start-up procedures, female (% of GNI per capita)
## 8602                                                                                                                                                                                                                          Starting a business: Cost - Women (% of income per capita) - Score
## 8603                                                                                                                                                                                                                            Cost of business start-up procedures, male (% of GNI per capita)
## 8604                                                                                                                                                                                                                            Starting a business: Cost - Men (% of income per capita) - Score
## 8605                                                                                                                                                                                                                                  Cost of business start-up procedures (% of GNI per capita)
## 8606                                                                                                                                                                                                               Starting a business: Paid-in Minimum capital (% of income per capita) - Score
## 8607                                                                                                                                                                                                                                                    Time required to start a business (days)
## 8608                                                                                                                                                                                                                                            Time required to start a business, female (days)
## 8609                                                                                                                                                                                                                                                    Starting a business: Time - Women (days)
## 8610                                                                                                                                                                                                                                             Starting a business: Time - Women (days)- Score
## 8611                                                                                                                                                                                                                                              Time required to start a business, male (days)
## 8612                                                                                                                                                                                                                                                      Starting a business: Time - Men (days)
## 8613                                                                                                                                                                                                                                              Starting a business: Time - Men (days) - Score
## 8614                                                                                                                                                                                                                               Starting a business: Minimum capital (% of income per capita)
## 8615                                                                                                                                                                                                                                         Start-up procedures to register a business (number)
## 8616                                                                                                                                                                                                                                 Start-up procedures to register a business, female (number)
## 8617                                                                                                                                                                                                                                   Starting a business: Procedures required - Women (number)
## 8618                                                                                                                                                                                                                           Starting a business: Procedures required - Women (number) - Score
## 8619                                                                                                                                                                                                                                   Start-up procedures to register a business, male (number)
## 8620                                                                                                                                                                                                                                     Starting a business: Procedures required - Men (number)
## 8621                                                                                                                                                                                                                             Starting a business: Procedures required - Men (number) - Score
## 8622                                                                                                                                                                                                                                            Registering property: Cost (% of property value)
## 8623                                                                                                                                                                                                                                    Registering property: Cost (% of property value) - Score
## 8624                                                                                                                                                                                                                                          Registering property (DB05-15 methodology) - Score
## 8625                                                                                                                                                                                                                                             Registering property (DB16 methodology) - Score
## 8626                                                                                                                                                                                                                                          Registering property (DB17-20 methodology) - Score
## 8627                                                                                                                                                                                                                                                           Registering property: Time (days)
## 8628                                                                                                                                                                                                                                                   Registering property: Time (days) - Score
## 8629                                                                                                                                                                                                    Registering property: Equal access to property rights index (-2-0) (DB17-20 methodology)
## 8630                                                                                                                                                                                                                 Registering property: Geographic coverage index (0-8) (DB16-20 methodology)
## 8631                                                                                                                                                                                                             Registering property: Land dispute resolution index (0-8) (DB16-20 methodology)
## 8632                                                                                                                                                                                 Registering property: Quality of land administration index with Gender (0-30) (DB17-19 methodology) - Score
## 8633                                                                                                                                                                                                                                                   Registering property: Procedures (number)
## 8634                                                                                                                                                                                                                                           Registering property: Procedures (number) - Score
## 8635                                                                                                                                                                                                     Registering property: Quality of land administration index (0-30) (DB17-20 methodology)
## 8636                                                                                                                                                                                             Registering property: Quality of land administration index (0-30) (DB17-20 methodology) - Score
## 8637                                                                                                                                                                                                     Registering property: Quality of land administration index (0-30) (DB17-19 methodology)
## 8638                                                                                                                                                                                                                           Rank: Registering property (1=most business-friendly regulations)
## 8639                                                                                                                                                                                                       Registering property: Reliability of infrastructure index (0-8) (DB16-20 methodology)
## 8640                                                                                                                                                                                                         Registering property: Transparency of information index (0-6) (DB16-20 methodology)
## 8641                                                                                                                                                                                                                                                                 Starting a business - Score
## 8642                                                                                                                                                                                                                            Rank: Starting a business (1=most business-friendly regulations)
## 8643                                                                                                                                                                                                                                                                  Starting a business (rank)
## 8644                                                                                                                                                                                                                                                                    Domestic Sales (% sales)
## 8645                                                                                                                                                                                                                                                     MSME employment (% of total employment)
## 8646                                                                                                                                                                                                                                               Micro, small and medium enterprises (number) 
## 8647                                                                                                                                                                                                                                      Micro, small and medium enterprises (per 1,000 people)
## 8648                                                                                                                                                                                                                                                       Time to prepare and pay taxes (hours)
## 8649                                                                                                                                                                                                                    Firms expected to give gifts in meetings with tax officials (% of firms)
## 8650                                                                                                                                                                                                                                       Labor tax and contributions (% of commercial profits)
## 8651                                                                                                                                                                                                                                               Paying taxes, labor tax and contributions (%)
## 8652                                                                                                                                                                                                       Number of visits or required meetings with tax officials (average for affected firms)
## 8653                                                                                                                                                                                                                                                               Paying taxes, other taxes (%)
## 8654                                                                                                                                                                                                                                 Other taxes payable by businesses (% of commercial profits)
## 8655                                                                                                                                                                                                                                                                       Tax payments (number)
## 8656                                                                                                                                                                                                                                                                Paying taxes, profit tax (%)
## 8657                                                                                                                                                                                                                                                        Profit tax (% of commercial profits)
## 8658                                                                                                                                                                                                                                               Total tax and contribution rate (% of profit)
## 8659                                                                                                                                                                                                                                         Total tax payable by businesses (% of gross profit)
## 8660                                                                                                                                                                                                                                                                         Paying taxes (rank)
## 8661                                                                                                                                                                                                                                   Delay in obtaining a mainline telephone connection (days)
## 8662                                                                                                                                                                                                                               Expected to give gifts to get a phone connection (% of firms)
## 8663                                                                                                                                                                                                                                                               Trading across borders (rank)
## 8664                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 8665                                                                                                                                                                                                                        Value of gift expected to secure Government Contract (% of Contract)
## 8666                                                                                                                                                                                                                                               Delay in obtaining a water connections (days)
## 8667                                                                                                                                                                                                                               Expected to give gifts to get a water connection (% of firms)
## 8668                                                                                                                                                                                                                                                                  Number of female directors
## 8669                                                                                                                                                                                                                                            Share of female directors (% of total directors)
## 8670                                                                                                                                                                                                                                                                    Number of male directors
## 8671                                                                                                                                                                                                                                              Share of male directors (% of total directors)
## 8672                                                                                                                                                                                                                                                            Number of female business owners
## 8673                                                                                                                                                                                                                                Share of female business owners (% of total business owners)
## 8674                                                                                                                                                                                                                                                              Number of male business owners
## 8675                                                                                                                                                                                                                                 Share of male business owners  (% of total business owners)
## 8676                                                                                                                                                                                                                                                           Number of female sole proprietors
## 8677                                                                                                                                                                                                                                   Share of female sole proprietors  (% of sole proprietors)
## 8678                                                                                                                                                                                                                                                             Number of male sole proprietors
## 8679                                                                                                                                                                                                                                     Share of male sole proprietors  (% of sole proprietors)
## 8680                                                                                                                                                                                                                                                   Time required to build a warehouse (days)
## 8681                                                                                                                                                                                                                                                    Procedures to build a warehouse (number)
## 8682                                                                                                                                                                                                                                                                     Human Development Index
## 8683                                                                                                                                                                                                                                                     Human Development Index, revised method
## 8684                                                                                                                                                                                                               Information and communication technology expenditure per capita (current US$)
## 8685                                                                                                                                                                                                                          Information and communication technology expenditure (current US$)
## 8686                                                                                                                                                                                                                             Information and communication technology expenditure (% of GDP)
## 8687                                                                                                                                                                                                                               Investment in energy with private participation (current US$)
## 8688                                                                                                                                                                                                                                  Investment in ICT with private participation (current US$)
## 8689                                                                                                                                                                                                                             Investment in telecoms with private participation (current US$)
## 8690                                                                                                                                                                                                                            Investment in transport with private participation (current US$)
## 8691                                                                                                                                                                                                                 Investment in water and sanitation with private participation (current US$)
## 8692                                                                                                                                                                                                                              Public private partnerships investment in energy (current US$)
## 8693                                                                                                                                                                                                                                 Public private partnerships investment in ICT (current US$)
## 8694                                                                                                                                                                                                                             Public private partnerships investment in telecom (current US$)
## 8695                                                                                                                                                                                                                           Public private partnerships investment in transport (current US$)
## 8696                                                                                                                                                                                                                Public private partnerships investment in water and sanitation (current US$)
## 8697                                                                                                                                                                                                                                                Foreign Reserves, Months Import Cover, Goods
## 8698                                                                                                                                                                                                                                        Gross Irrigated Area under all crops ('000 hectares)
## 8699                                                                                                                                                                                                                                                        Yield - All Foodgrains (Kgs/Hectare)
## 8700                                                                                                                                                                                                                                                                  Yield - Rice (Kgs/Hectare)
## 8701                                                                                                                                                                                                                                                             Yield - Sugarcane (Kgs/Hectare)
## 8702                                                                                                                                                                                                                                                               Nominal GSDP Per Capita (INR)
## 8703                                                                                                                                                                                                                                                               Nominal GSDP Per Capita (USD)
## 8704                                                                                                                                                                                                                                                                  Real GSDP Per Capita (INR)
## 8705                                                                                                                                                                                                                                                      Real GSDP Per Capita (INR) Growth Rate
## 8706                                                                                                                                                                                                                                                                  Real GSDP Per Capita (USD)
## 8707                                                                                                                                                                                                                                                      Real GSDP Per Capita (USD) Growth Rate
## 8708                                                                                                                                                                                                                                                            Decadal Growth of Population (%)
## 8709                                                                                                                                                                                                                                                     Decadal Growth of Population, Rural (%)
## 8710                                                                                                                                                                                                                                                     Decadal Growth of Population, Urban (%)
## 8711                                                                                                                                                                                                                                                               Population, Rural (Thousands)
## 8712                                                                                                                                                                                                                                                                       Population, Rural (%)
## 8713                                                                                                                                                                                                                                                                      Population (Thousands)
## 8714                                                                                                                                                                                                                                                                       Population, Urban (%)
## 8715                                                                                                                                                                                                                                                              Enrolment by Caste-General (%)
## 8716                                                                                                                                                                                                                                                               Enrolment by Caste-Muslim (%)
## 8717                                                                                                                                                                                                                                                                  Enrolment by Caste-OBC (%)
## 8718                                                                                                                                                                                                                                                                   Enrolment by Caste-SC (%)
## 8719                                                                                                                                                                                                                                                                   Enrolment by Caste-ST (%)
## 8720                                                                                                                                                                                                                                                                   Gross Enrolment Ratio (%)
## 8721                                                                                                                                                                                                                                                                     Net Enrolment Ratio (%)
## 8722                                                                                                                                                                                                                                                                         Pupil-Teacher Ratio
## 8723                                                                                                                                                                                                                                                                           Teachers (Number)
## 8724                                                                                                                                                                                                                                           Teacher Education Institutes (DIETs, CTEs, IASEs)
## 8725                                                                                                                                                                                                                                                              Total- Installed Capacity (MW)
## 8726                                                                                                                                                                                                                                                     Total-Electricity Generated Gross (GWh)
## 8727                                                                                                                                                                                                                                        Utilities/Non Utilities Per Capita Consumption (KWh)
## 8728                                                                                                                                                                                                                                                  Non Utilities Per Capita Consumption (KWh)
## 8729                                                                                                                                                                                                                              Total (Utilities & Non-Utilities) Per Capita Consumption (KWh)
## 8730                                                                                                                                                                                                                                    Grid interactive renewable power installed capacity (MW)
## 8731                                                                                                                                                                                                                                               Number of Towns Electrified (Per 2001 Census)
## 8732                                                                                                                                                                                                                                                    Number of Towns Electrified (Percentage)
## 8733                                                                                                                                                                                                                                                     Number of Towns Total (Per 2001 Census)
## 8734                                                                                                                                                                                                                                                              Number of Villages Electrified
## 8735                                                                                                                                                                                                                                                 Number of Villages Electrified (Percentage)
## 8736                                                                                                                                                                                                                                                  Number of Villages Total (Per 2001 Census)
## 8737                                                                                                                                                                                                                                            CO2 Emission (in thousand metric tons of Carbon)
## 8738                                                                                                                                                                                                                                                Per Capita Emission ( metric tons of Carbon)
## 8739                                                                                                                                                                                                                                                                  Agricultural land (SQ KMs)
## 8740                                                                                                                                                                                                                                 Ratio: Agricultural land to total coastal area of state (%)
## 8741                                                                                                                                                                                                                                                                      Built-up land (SQ KMs)
## 8742                                                                                                                                                                                                                                     Ratio: Built-up land to total coastal area of state (%)
## 8743                                                                                                                                                                                                                                                    Forest (Non- tidal)/ Plantation (SQ KMs)
## 8744                                                                                                                                                                                                                   Ratio: Forest (Non- tidal)/ Plantation to total coastal area of state (%)
## 8745                                                                                                                                                                                                                                                                     Other features (SQ KMs)
## 8746                                                                                                                                                                                                                                    Ratio: Other features to total coastal area of state (%)
## 8747                                                                                                                                                                                                                                                                         Shore land (SQ KMs)
## 8748                                                                                                                                                                                                                                        Ratio: Shore land to total coastal area of state (%)
## 8749                                                                                                                                                                                                                                                                   Barren wasteland (SQ KMs)
## 8750                                                                                                                                                                                                                                 Ratio: Barren/ wasteland to total coastal area of state (%)
## 8751                                                                                                                                                                                                                                                                       Water bodies (SQ KMs)
## 8752                                                                                                                                                                                                                                      Ratio: Water bodies to total coastal area of state (%)
## 8753                                                                                                                                                                                                                                                                           Wetlands (SQ KMs)
## 8754                                                                                                                                                                                                                                           Ratio: Wetland to total coastal area of state (%)
## 8755                                                                                                                                                                                                                                                                      Cropping Intensity (%)
## 8756                                                                                                                                                                                                                                                               Forest Cover  ('000 hectares)
## 8757                                                                                                                                                                                                                                                 Forest Cover (Percent of Geographical Area)
## 8758                                                                                                                                                                                                                                                           Geographical Area ('000 hectares)
## 8759                                                                                                                                                                                                                                                        Gross Irrigated Area ('000 hectares)
## 8760                                                                                                                                                                                                                                            Ratio: Gross Irrigated to Total Cropped Area (%)
## 8761                                                                                                                                                                                                                                                          Net Irrigated Area ('000 hectares)
## 8762                                                                                                                                                                                                                                        AIr Quality: Nitrogen Oxide (Micrograms/Cubic Meter)
## 8763                                                                                                                                                                                                                                          Area not available for cultivation ('000 hectares)
## 8764                                                                                                                                                                                                                                      Other uncultivated (excl. fallow land) ('000 hectares)
## 8765                                                                                                                                                                                                                                    AIr Quality: Particulate Matter (Micrograms/Cubic Meter)
## 8766                                                                                                                                                                                                                                        AIr Quality: Sulfur Dioxide (Micrograms/Cubic Meter)
## 8767                                                                                                                                                                                                                                                             Commercial Bank Offices (Total)
## 8768                                                                                                                                                                                                                                                   Financial Inclusion Index (CRISIL Method)
## 8769                                                                                                                                                                                                                                Total number of households availing banking services - Rural
## 8770                                                                                                                                                                                                                                        Total number of households availing banking services
## 8771                                                                                                                                                                                                                                Total number of households availing banking services - Urban
## 8772                                                                                                                                                                                                                                                           Total number of households -Rural
## 8773                                                                                                                                                                                                                                                                  Total number of households
## 8774                                                                                                                                                                                                                                                          Total number of households - Urban
## 8775                                                                                                                                                                                                                                           Average Population Per Bank Office (In Thousands)
## 8776                                                                                                                                                                                                                                                                  Auxiliary nursing midwives
## 8777                                                                                                                                                                                                                                                   Number of Community Health Centers (CHCs)
## 8778                                                                                                                                                                                                                                                                Number of District Hospitals
## 8779                                                                                                                                                                                                                              Number of Government Allopathic Doctors Per 100,000 Population
## 8780                                                                                                                                                                                                                                                         Government Hospitals Number of beds
## 8781                                                                                                                                                                                                                                  Government Hospitals Number of beds Per 100,000 Population
## 8782                                                                                                                                                                                                                                                               Government Hospitals (Number)
## 8783                                                                                                                                                                                                                                        Government Hospitals (Number) Per 100,000 Population
## 8784                                                                                                                                                                                                                                                            HIV/AIDS Related Death Estimates
## 8785                                                                                                                                                                                                                                                                     HIV Infection Estimates
## 8786                                                                                                                                                                                                                                                        Health visitors & Health supervisors
## 8787                                                                                                                                                                                                                                                                             Malaria - Cases
## 8788                                                                                                                                                                                                                                                                            Malaria - Deaths
## 8789                                                                                                                                                                                                                                                                 Number of Sub-Centers (SCs)
## 8790                                                                                                                                                                                                                                                                Electrified Route Kilometres
## 8791                                                                                                                                                                                                                     Freight Traffic (revenue earning) - Lead (Average no. of KMs per tonne)
## 8792                                                                                                                                                                                                                           Average Freight Rate per Tonne-KM (in Paise, for all commodities)
## 8793                                                                                                                                                                                                                          Freight Traffic (revenue earning) -Net Tonne Kilometers (millions)
## 8794                                                                                                                                                                                                                                                          Speed of Freight Trains (KMs/hour)
## 8795                                                                                                                                                                                                                                             Freight Traffic - Tonnes originating (Millions)
## 8796                                                                                                                                                                                                                                                             Locomotives - Number in service
## 8797                                                                                                                                                                                                                                              Locomotives -Total tractive effort ('000  Kgs)
## 8798                                                                                                                                                                                                                                    Passenger-Kilometers Traffic (Non-Suburban), in millions
## 8799                                                                                                                                                                                                                                        Passenger-Kilometers Traffic (Suburban), in millions
## 8800                                                                                                                                                                                                                                             Total Passenger-Kilometers Traffic, in millions
## 8801                                                                                                                                                                                                                                                                    Running Track Kilometres
## 8802                                                                                                                                                                                                                                                                      Total Route Kilometers
## 8803                                                                                                                                                                                                                                            Net tonnes Kms. per Route Km. per Annum (' 000s)
## 8804                                                                                                                                                                                                                                                    Train Kms. per Running Track Km. per Day
## 8805                                                                                                                                                                                                                                      Wagon Usage: Avergae Wagon Lead during run (in Tonnes)
## 8806                                                                                                                                                                                                                                                       Wagon Usage: Net Tonne-KMs/Weagon Day
## 8807                                                                                                                                                                                                                                                                 Wagon Usage (KMs/Wagon Day)
## 8808                                                                                                                                                                                                                                                    Number of wagons in service (All Gauges)
## 8809                                                                                                                                                                                                                                                 Passenger Kms. per Route Km. per Annum 000s
## 8810                                                                                                                                                                                                                                 Labor Force ages 15+ Rural & Urban: Mean Years of Schooling
## 8811                                                                                                                                                                                                                                  LFPR per 1000 for ages 15+ Rural & Urban: Level All Levels
## 8812                                                                                                                                                                                                                                LFPR per 1000 for ages 15+ Rural & Urban: Level Diploma/Cert
## 8813                                                                                                                                                                                                                               LFPR per 1000 for ages 15+ Rural & Urban: Level Hr. Secondary
## 8814                                                                                                                                                                                                                                      LFPR per 1000 for ages 15+ Rural & Urban: Level Middle
## 8815                                                                                                                                                                                                                                LFPR per 1000 for ages 15+ Rural & Urban: Level Not Literate
## 8816                                                                                                                                                                                                                      LFPR per 1000 for ages 15+ Rural & Urban: Level Degree + Post Graduate
## 8817                                                                                                                                                                                                                       LFPR per 1000 for ages 15+ Rural & Urban: Level Literacy upto Primary
## 8818                                                                                                                                                                                                                                   LFPR per 1000 for ages 15+ Rural & Urban: Level Secondary
## 8819                                                                                                                                                                                                                                           Households with telephones (Landline & Mobile, %)
## 8820                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Rural
## 8821                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Total
## 8822                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Urban
## 8823                                                                                                                                                                                                                                          Households having computer laptops (w/Internet, %)
## 8824                                                                                                                                                                                                                                        Households having computer laptops (w/o Internet, %)
## 8825                                                                                                                                                                                                                                                      Households having computer laptops (%)
## 8826                                                                                                                                                                                                                                                    Households with telephones (Landline, %)
## 8827                                                                                                                                                                                                                                                      Households with telephones (Mobile, %)
## 8828                                                                                                                                                                                                                                                             Households with assets (Number)
## 8829                                                                                                                                                                                                                                                              Households with telephones (%)
## 8830                                                                                                                                                                                                                                               Total households with drinking water facility
## 8831                                                                                                                                                                                                                                           Availability of drinking water from a source away
## 8832                                                                                                                                                                                                                                     Availability of drinking water source near the premises
## 8833                                                                                                                                                                                                                                   Availability of drinking water source within the premises
## 8834                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Rural (%)
## 8835                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Total (%)
## 8836                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Urban (%)
## 8837                                                                                                                                                                                                                                                                Households in Slums (Number)
## 8838                                                                                                                                                                                                                                         Urban housing - approved (number, cumulative total)
## 8839                                                                                                                                                                                                                                                           Infant Mortality Rate (per 1,000)
## 8840                                                                                                                                                                                                                                                          Under 5 Mortality Rate (Per 1,000)
## 8841                                                                                                                                                                                                                                                                    Literacy Rate Female (%)
## 8842                                                                                                                                                                                                                                                                      Literacy Rate Male (%)
## 8843                                                                                                                                                                                                                                                                    Literacy rate, Rural (%)
## 8844                                                                                                                                                                                                                                                           Literacy Rate in Slums-Female (%)
## 8845                                                                                                                                                                                                                                                           Literacy Rate in Slums - Male (%)
## 8846                                                                                                                                                                                                                                                         Literacy Rate in Slums  - Total (%)
## 8847                                                                                                                                                                                                                                                                           Literacy Rate (%)
## 8848                                                                                                                                                                                                                                                                    Literacy rate, Urban (%)
## 8849                                                                                                                                                                                                                                                       Latrine not available within premises
## 8850                                                                                                                                                                                                                                                  Latrine facility available within premises
## 8851                                                                                                                                                                                                                                           Migrants, Total: 5 to 9 years  residence (Number)
## 8852                                                                                                                                                                                                                                           Migrants, Female 1 to 4 years  residence (Number)
## 8853                                                                                                                                                                                                                                          Migrants, Female: 5 to 9 years  residence (Number)
## 8854                                                                                                                                                                                                                                                                  Migrants - Female (Number)
## 8855                                                                                                                                                                                                                                      Migrants, Female: less than 1 Year  residence (Number)
## 8856                                                                                                                                                                                                                                            Migrants, Male: 1 to 4 years  residence (Number)
## 8857                                                                                                                                                                                                                                            Migrants, Male: 5 to 9 years  residence (Number)
## 8858                                                                                                                                                                                                                                                                    Migrants - Male (Number)
## 8859                                                                                                                                                                                                                                        Migrants, Male: less than 1 Year  residence (Number)
## 8860                                                                                                                                                                                                                                           Migrants, Total: 1 to 4 years  residence (Number)
## 8861                                                                                                                                                                                                                                                                    Migrants, Total (Number)
## 8862                                                                                                                                                                                                                                       Migrants, Total: less than 1 Year  residence (Number)
## 8863                                                                                                                                                                                                                                                     Total Slum Population - Female (Number)
## 8864                                                                                                                                                                                                                                                       Total Slum Population - Male (Number)
## 8865                                                                                                                                                                                                                                                              Total Slum Population (Number)
## 8866                                                                                                                                                                                                                                                    Total Workers in Slums - Female (Number)
## 8867                                                                                                                                                                                                                                                      Total Workers in Slums - Male (Number)
## 8868                                                                                                                                                                                                                                                             Total Workers in Slums (Number)
## 8869                                                                                                                                                                                                                      National Highways (surfaced length) - Below standard single lane (KMs)
## 8870                                                                                                                                                                                                                            National Highways (surfaced length) - Standard double lane (KMs)
## 8871                                                                                                                                                                                                                             National Highways (surfaced length) - Standard multi lane (KMs)
## 8872                                                                                                                                                                                                                            National Highways (surfaced length) - Standard single lane (KMs)
## 8873                                                                                                                                                                                                                                           National Highways (surfaced length) - Total (KMs)
## 8874                                                                                                                                                                                                                                                                           Urban Roads (KMs)
## 8875                                                                                                                                                                                                                                                         Urban Roads,  B.T/C.C surface (KMs)
## 8876                                                                                                                                                                                                                                                                  Urban Roads Surfaced (KMs)
## 8877                                                                                                                                                                                                                                                           Urban Roads, W.B.M. surface (KMs)
## 8878                                                                                                                                                                                                                                         Number of seriously injured in road traffic crashes
## 8879                                                                                                                                                                                                                                                                      Number of road crashes
## 8880                                                                                                                                                                                                                                                    Rural Road Density (KMs/1000 Population)
## 8881                                                                                                                                                                                                                                                               Number of road traffic deaths
## 8882                                                                                                                                                                                                                                                Urban Road Density (KMs Per 1000 Population)
## 8883                                                                                                                                                                                                                                       Industrial design applications, nonresident, by count
## 8884                                                                                                                                                                                                                                          Industrial design applications, resident, by count
## 8885                                                                                                                                                                                                                                                   Scientific and technical journal articles
## 8886                                                                                                                                                                                                                                                           Patent applications, nonresidents
## 8887                                                                                                                                                                                                                                                              Patent applications, residents
## 8888                                                                                                                                                                                                                                                    Trademark applications, aggregate direct
## 8889                                                                                                                                                                                                                                                              Trademark applications, Madrid
## 8890                                                                                                                                                                                                                                               Trademark applications, nonresident, by count
## 8891                                                                                                                                                                                                                                                  Trademark applications, direct nonresident
## 8892                                                                                                                                                                                                                                                     Trademark applications, direct resident
## 8893                                                                                                                                                                                                                                                  Trademark applications, resident, by count
## 8894                                                                                                                                                                                                                                                               Trademark applications, total
## 8895                                                                                                                                                                                                                                                         Industrial Production, constant US$
## 8896                                                                                                                                                                                                                                             Industrial Production, constant US$, seas. adj.
## 8897                                                                                                                                                                                                                               CPIA business regulatory environment rating (1=low to 6=high)
## 8898                                                                                                                                                                                                                                                   CPIA debt policy rating (1=low to 6=high)
## 8899                                                                                                                                                                                                                                  CPIA economic management cluster average (1=low to 6=high)
## 8900                                                                                                                                                                                                      CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)
## 8901                                                                                                                                                                                                                 CPIA quality of budgetary and financial management rating (1=low to 6=high)
## 8902                                                                                                                                                                                                                                              CPIA financial sector rating (1=low to 6=high)
## 8903                                                                                                                                                                                                                                                 CPIA fiscal policy rating (1=low to 6=high)
## 8904                                                                                                                                                                                                                                               CPIA gender equality rating (1=low to 6=high)
## 8905                                                                                                                                                                                                                                      CPIA building human resources rating (1=low to 6=high)
## 8906                                                                                                                                                                                                                                             IDA resource allocation index (1=low to 6=high)
## 8907                                                                                                                                                                                                                                      CPIA macroeconomic management rating (1=low to 6=high)
## 8908                                                                                                                                                                                                                              CPIA quality of public administration rating (1=low to 6=high)
## 8909                                                                                                                                                                                                                                 CPIA equity of public resource use rating (1=low to 6=high)
## 8910                                                                                                                                                                                                                     CPIA property rights and rule-based governance rating (1=low to 6=high)
## 8911                                                                                                                                                                                                                                             CPIA social protection rating (1=low to 6=high)
## 8912                                                                                                                                                                                                            CPIA public sector management and institutions cluster average (1=low to 6=high)
## 8913                                                                                                                                                                                                                            CPIA efficiency of revenue mobilization rating (1=low to 6=high)
## 8914                                                                                                                                                                                                                 CPIA policies for social inclusion/equity cluster average (1=low to 6=high)
## 8915                                                                                                                                                                                                                                  CPIA structural policies cluster average (1=low to 6=high)
## 8916                                                                                                                                                                                                                                                         CPIA trade rating (1=low to 6=high)
## 8917                                                                                                                                                                                             CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)
## 8918                                                                                                                                                                                                                                   ICRG composite risk rating (0=highest risk to 100=lowest)
## 8919                                                                                                                                                                    Assessment of country’s adherence to the best regulatory practices at the preparation stage of PPP project (scale 1-100)
## 8920                                                                                                                                                                    Assessment of country’s adherence to the best regulatory practices at the procurement stage of PPP project (scale 1-100)
## 8921                                                                                                                                                                     Assessment of country’s adherence to the best regulatory practices at the management stage of PPP project (scale 1-100)
## 8922                                                                                                                                                                      Assessment of country’s adherence to the best regulatory practices, procurement of unsolicited proposals (scale 1-100)
## 8923                                                                                                                                                                                                                              Methodology assessment of statistical capacity (scale 0 - 100)
## 8924                                                                                                                                                                                                                                Statistical Capacity Score (Overall Average) (scale 0 - 100)
## 8925                                                                                                                                                                                                               Periodicity and timeliness assessment of statistical capacity (scale 0 - 100)
## 8926                                                                                                                                                                                                                              Source data assessment of statistical capacity (scale 0 - 100)
## 8927                                                                                                                                                                                                                       Statistical performance indicators (SPI): Overall score (scale 0-100)
## 8928                                                                                                                                                                                                             Statistical performance indicators (SPI): Pillar 1 data use score (scale 0-100)
## 8929                                                                                                                                                                                                        Statistical performance indicators (SPI): Pillar 2 data services score (scale 0-100)
## 8930                                                                                                                                                                                                       Statistical performance indicators (SPI): Pillar 3 data products score  (scale 0-100)
## 8931                                                                                                                                                                                                         Statistical performance indicators (SPI): Pillar 4 data sources score (scale 0-100)
## 8932                                                                                                                                                                                                  Statistical performance indicators (SPI): Pillar 5 data infrastructure score (scale 0-100)
## 8933                                                                                                                                                                                                         Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)
## 8934                                                                                                                                                               Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)
## 8935                                                                                                                                                                                                                                      Air transport, registered carrier departures worldwide
## 8936                                                                                                                                                                                                                                                             Aircraft departures (thousands)
## 8937                                                                                                                                                                                                                                                     Air transport, freight (million ton-km)
## 8938                                                                                                                                                                                                                                                           Air transport, passengers carried
## 8939                                                                                                                                                                                                                                               Air transport, passengers carried (thousands)
## 8940                                                                                                                                                                                                                                  Road sector diesel fuel consumption (kt of oil equivalent)
## 8941                                                                                                                                                                                                                       Road sector diesel fuel consumption per capita (kg of oil equivalent)
## 8942                                                                                                                                                                                                                                       Road density (km of road per 100 sq. km of land area)
## 8943                                                                                                                                                                                                                                       Road sector energy consumption (kt of oil equivalent)
## 8944                                                                                                                                                                                                                            Road sector energy consumption per capita (kg of oil equivalent)
## 8945                                                                                                                                                                                                                              Road sector energy consumption (% of total energy consumption)
## 8946                                                                                                                                                                                                                                                   Roads, goods transported (million ton-km)
## 8947                                                                                                                                                                                                                                       Roads, normalized index (100 = expected total length)
## 8948                                                                                                                                                                                                                                                             Roads, paved (% of total roads)
## 8949                                                                                                                                                                                                                                            Roads, passengers carried (million passenger-km)
## 8950                                                                                                                                                                                                                                Road sector gasoline fuel consumption (kt of oil equivalent)
## 8951                                                                                                                                                                                                                     Road sector gasoline fuel consumption per capita (kg of oil equivalent)
## 8952                                                                                                                                                                                                                                                                   Roads, total network (km)
## 8953                                                                                                                                                                                                                                                           Road traffic (million vehicle-km)
## 8954                                                                                                                                                                                                                  Diesel locomotives available (in service as % of total diesel locomotives)
## 8955                                                                                                                                                                                                                                            Rail traffic density (passengers and freight/km)
## 8956                                                                                                                                                                                                                                                                   Rail lines, electric (km)
## 8957                                                                                                                                                                                                                                  Railway employee productivity (traffic units per employee)
## 8958                                                                                                                                                                                                                                                              Railways, good hauled (ton-km)
## 8959                                                                                                                                                                                                                               Railways, goods transported (ton-km per PPP $ million of GDP)
## 8960                                                                                                                                                                                                                                                Railways, goods transported (million ton-km)
## 8961                                                                                                                                                                                                                                           Railways, passenger-km (per PPP $ million of GDP)
## 8962                                                                                                                                                                                                                                         Railways, passengers carried (million passenger-km)
## 8963                                                                                                                                                                                                                                                                 Rail lines (total route-km)
## 8964                                                                                                                                                                                                                                          Ratio of rail passenger tariffs to freight tariffs
## 8965                                                                                                                                                                                                                             Liner shipping connectivity index (maximum value in 2004 = 100)
## 8966                                                                                                                                                                                                                                      Container port traffic (TEU: 20 foot equivalent units)
## 8967                                                                                                                                                                                                                                                             Two-wheelers (per 1,000 people)
## 8968                                                                                                                                                                                                                                                           Motor vehicles (per 1,000 people)
## 8969                                                                                                                                                                                                                                                           Passenger cars (per 1,000 people)
## 8970                                                                                                                                                                                                                                                                   Vehicles (per km of road)
## 8971                                                                                                                                                                                                                                      Fixed broadband Internet access tariff (US$ per month)
## 8972                                                                                                                                                                                                                                           Population covered by mobile cellular network (%)
## 8973                                                                                                                                                                                                                                                               Mobile cellular subscriptions
## 8974                                                                                                                                                                                                                                              Mobile cellular subscriptions (per 100 people)
## 8975                                                                                                                                                                                                                                                 Mobile phone subscribers (per 1,000 people)
## 8976                                                                                                                                                                                                                                                     Price basket for mobile (US$ per month)
## 8977                                                                                                                                                                                                                Mobile cellular - price of 3-minute local call (off-peak rate - current US$)
## 8978                                                                                                                                                                                                                    Mobile cellular - price of 3-minute local call (peak rate - current US$)
## 8979                                                                                                                                                                                                                Mobile cellular - price of 3-minute local call (off-peak rate - current LCU)
## 8980                                                                                                                                                                                                                    Mobile cellular - price of 3-minute local call (peak rate - current LCU)
## 8981                                                                                                                                                                                                                                          Mobile cellular monthly subscription (current US$)
## 8982                                                                                                                                                                                                                                          Mobile cellular monthly subscription (current LCU)
## 8983                                                                                                                                                                                                                                    Mobile cellular postpaid connection charge (current US$)
## 8984                                                                                                                                                                                                                                    Mobile cellular postpaid connection charge (current LCU)
## 8985                                                                                                                                                                                                                                     Mobile cellular prepaid connection charge (current US$)
## 8986                                                                                                                                                                                                                                     Mobile cellular prepaid connection charge (current LCU)
## 8987                                                                                                                                                                                                                                                                          Personal computers
## 8988                                                                                                                                                                                                                                                   Personal computers installed in education
## 8989                                                                                                                                                                                                                                                         Personal computers (per 100 people)
## 8990                                                                                                                                                                                                                                                       Personal computers (per 1,000 people)
## 8991                                                                                                                                                                                                                                                             Fax machines (per 1,000 people)
## 8992                                                                                                                                                                                                                            International telecom, outgoing traffic (minutes per subscriber)
## 8993                                                                                                                                                                                                                            International telecom, outgoing traffic (minutes per subscriber)
## 8994                                                                                                                                                                                                                   International voice traffic, total fixed and mobile (out and in, minutes)
## 8995                                                                                                                                                                                                                    International voice traffic, total fixed and mobile (minutes per person)
## 8996                                                                                                                                                                                                                                              Mobile cellular prepaid tariff (US$ per month)
## 8997                                                                                                                                                                                                                Price of a 3-minute fixed telephone local call (off-peak rate - current US$)
## 8998                                                                                                                                                                                                                    Price of a 3-minute fixed telephone local call (peak rate - current US$)
## 8999                                                                                                                                                                                                                                Telephone average cost of call to US (US$ per three minutes)
## 9000                                                                                                                                                                                                                Price of a 3-minute fixed telephone local call (off-peak rate - current LCU)
## 9001                                                                                                                                                                                                                    Price of a 3-minute fixed telephone local call (peak rate - current LCU)
## 9002                                                                                                                                                                                                                                          Business telephone connection charge (current US$)
## 9003                                                                                                                                                                                                                                          Business telephone connection charge (current LCU)
## 9004                                                                                                                                                                                                                                       Business telephone monthly subscription (current US$)
## 9005                                                                                                                                                                                                                                       Business telephone monthly subscription (current LCU)
## 9006                                                                                                                                                                                                                                Telephone average cost of local call (US$ per three minutes)
## 9007                                                                                                                                                                                                                                       Residential telephone connection charge (current US$)
## 9008                                                                                                                                                                                                                                       Residential telephone connection charge (current LCU)
## 9009                                                                                                                                                                                                                                                            Telephone mainlines per employee
## 9010                                                                                                                                                                                                                                            Telephone faults cleared by next working day (%)
## 9011                                                                                                                                                                                                                                                        Telephone faults (per 100 mainlines)
## 9012                                                                                                                                                                                                                                            Fixed telephone service investment (current US$)
## 9013                                                                                                                                                                                                                                            Fixed telephone service investment (current LCU)
## 9014                                                                                                                                                                                                                                      Telephone mainlines in largest city (per 1,000 people)
## 9015                                                                                                                                                                                                                                                               Fixed telephone subscriptions
## 9016                                                                                                                                                                                                                                              Fixed telephone subscriptions (per 100 people)
## 9017                                                                                                                                                                                                                                                      Telephone mainlines (per 1,000 people)
## 9018                                                                                                                                                                                                                                          Revenue from fixed telephone service (current US$)
## 9019                                                                                                                                                                                                                                          Revenue from fixed telephone service (current LCU)
## 9020                                                                                                                                                                                                                                                Telephone revenue per mainline (current US$)
## 9021                                                                                                                                                                                                                                    Residential monthly telephone subscription (current US$)
## 9022                                                                                                                                                                                                                                    Residential monthly telephone subscription (current LCU)
## 9023                                                                                                                                                                                                                                     Price basket for residential fixed line (US$ per month)
## 9024                                                                                                                                                                                                                                                           Telephone mainlines, waiting list
## 9025                                                                                                                                                                                                                                               Telephone mainlines, waiting list (thousands)
## 9026                                                                                                                                                                                                                                                                                Invalid Code
## 9027                                                                                                                                                                                                                                        Population coverage of mobile cellular telephony (%)
## 9028                                                                                                                                                                                                                                               Mobile communication investment (current US$)
## 9029                                                                                                                                                                                                                                               Mobile communication investment (current LCU)
## 9030                                                                                                                                                                                                                                             Revenue from mobile communication (current US$)
## 9031                                                                                                                                                                                                                                             Revenue from mobile communication (current LCU)
## 9032                                                                                                                                                                                                                                                               Fixed broadband subscriptions
## 9033                                                                                                                                                                                                                                              Fixed broadband subscriptions (per 100 people)
## 9034                                                                                                                                                                                                                                                    Broadband subscribers (per 1,000 people)
## 9035                                                                                                                                                                                                                                                     International Internet bandwidth (Mbps)
## 9036                                                                                                                                                                                                                                          International Internet bandwidth (bits per person)
## 9037                                                                                                                                                                                                                                    Fixed broadband Internet connection charge (current US$)
## 9038                                                                                                                                                                                                                                    Fixed broadband Internet connection charge (current LCU)
## 9039                                                                                                                                                                                                                                                       Schools connected to the Internet (%)
## 9040                                                                                                                                                                                                                                                          Internet hosts (per 10,000 people)
## 9041                                                                                                                                                                                                                          Internet service provider access charges ($ per 30 off-peak hours)
## 9042                                                                                                                                                                                                                                                                     Secure Internet servers
## 9043                                                                                                                                                                                                                                              Secure Internet servers (per 1 million people)
## 9044                                                                                                                                                                                                                                 Fixed broadband Internet monthly subscription (current US$)
## 9045                                                                                                                                                                                                                                 Fixed broadband Internet monthly subscription (current LCU)
## 9046                                                                                                                                                                                                                                 Internet telephone access charges ($ per 30 off-peak hours)
## 9047                                                                                                                                                                                                                                                   Price basket for Internet (US$ per month)
## 9048                                                                                                                                                                                                                                  Internet total monthly price (% of monthly GNI per capita)
## 9049                                                                                                                                                                                                                                                                              Internet users
## 9050                                                                                                                                                                                                                                                             Internet users (per 100 people)
## 9051                                                                                                                                                                                                                                                           Internet users (per 1,000 people)
## 9052                                                                                                                                                                                                                                            Individuals using the Internet (% of population)
## 9053                                                                                                                                                                                                                                                                            Public payphones
## 9054                                                                                                                                                                                                                                                         Public payphones (per 1,000 people)
## 9055                                                                                                                                                                                                                                                          Homes with a personal computer (%)
## 9056                                                                                                                                                                                                                                                         Daily newspapers (per 1,000 people)
## 9057                                                                                                                                                                                                                                                                 Households with a radio (%)
## 9058                                                                                                                                                                                                                                                                       Number of radio sets 
## 9059                                                                                                                                                                                                                                                               Radio sets (per 1,000 people)
## 9060                                                                                                                                                                                                                                     Residential fixed line telephone tariff (US$ per month)
## 9061                                                                                                                                                                                                                                                                  Telephone employees, total
## 9062                                                                                                                                                                                                                                                             Households with a telephone (%)
## 9063                                                                                                                                                                                                                                            Total annual investment in telecom (current US$)
## 9064                                                                                                                                                                                                                                                 Telecommunications investment (current LCU)
## 9065                                                                                                                                                                                                                                                Telecommunications investment (% of revenue)
## 9066                                                                                                                                                                                                                             Total revenue from all telecommunication services (current US$)
## 9067                                                                                                                                                                                                                                                    Telecommunications revenue (current LCU)
## 9068                                                                                                                                                                                                                                                          Telecommunications revenue (% GDP)
## 9069                                                                                                                                                                                                                                                 Mobile and fixed-line telephone subscribers
## 9070                                                                                                                                                                                                                                   Fixed line and mobile cellular subscriptions per employee
## 9071                                                                                                                                                                                                                               Fixed line and mobile cellular subscriptions (per 100 people)
## 9072                                                                                                                                                                                                                       Telephone (mainlines and mobile phone) subscribers (per 1,000 people)
## 9073                                                                                                                                                                                                          Unmet demand (% of waiting list to number main fixed telephone lines in operation)
## 9074                                                                                                                                                                                                                                          Telecommunication equipment - import (current US$)
## 9075                                                                                                                                                                                                                                          Telecommunication equipment - export (current US$)
## 9076                                                                                                                                                                                                                                             Cable television subscribers (per 1,000 people)
## 9077                                                                                                                                                                                                                                                              Households with television (%)
## 9078                                                                                                                                                                                                                                                          Television sets (per 1,000 people)
## 9079                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, total
## 9080                                                                                                                                                                                                                                                Average age of employers, aged 15-64, female
## 9081                                                                                                                                                                                                                               Average age of employers, aged 15-64, above primary education
## 9082                                                                                                                                                                                                                           Average age of employers, aged 15-64, primary education and below
## 9083                                                                                                                                                                                                                                                  Average age of employers, aged 15-64, male
## 9084                                                                                                                                                                                                                                                        Average age of employers, aged 25-64
## 9085                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, rural
## 9086                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, urban
## 9087                                                                                                                                                                                                                                                        Average age of employers, aged 15-24
## 9088                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, total
## 9089                                                                                                                                                                                                                          Average age of self-employed or unpaid workers, aged 15-64, female
## 9090                                                                                                                                                                                                         Average age of self-employed or unpaid workers, aged 15-64, above primary education
## 9091                                                                                                                                                                                                     Average age of self-employed or unpaid workers, aged 15-64, primary education and below
## 9092                                                                                                                                                                                                                            Average age of self-employed or unpaid workers, aged 15-64, male
## 9093                                                                                                                                                                                                                                  Average age of self-employed or unpaid workers, aged 25-64
## 9094                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, rural
## 9095                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, urban
## 9096                                                                                                                                                                                                                                  Average age of self-employed or unpaid workers, aged 15-24
## 9097                                                                                                                                                                                                                                                                          Average age, total
## 9098                                                                                                                                                                                                                                                                         Average age, female
## 9099                                                                                                                                                                                                                                                        Average age, above primary education
## 9100                                                                                                                                                                                                                                                    Average age, primary education and below
## 9101                                                                                                                                                                                                                                                                           Average age, male
## 9102                                                                                                                                                                                                                                                                     Average age, aged 25-64
## 9103                                                                                                                                                                                                                                                                          Average age, rural
## 9104                                                                                                                                                                                                                                                                          Average age, urban
## 9105                                                                                                                                                                                                                                                                     Average age, aged 15-24
## 9106                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, total
## 9107                                                                                                                                                                                                                                             Average age of wage workers, aged 15-64, female
## 9108                                                                                                                                                                                                                            Average age of wage workers, aged 15-64, above primary education
## 9109                                                                                                                                                                                                                        Average age of wage workers, aged 15-64, primary education and below
## 9110                                                                                                                                                                                                                                               Average age of wage workers, aged 15-64, male
## 9111                                                                                                                                                                                                                                                     Average age of wage workers, aged 25-64
## 9112                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, rural
## 9113                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, urban
## 9114                                                                                                                                                                                                                                                     Average age of wage workers, aged 15-24
## 9115                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, total
## 9116                                                                                                                                                                                                                                                  Average age of workers, aged 15-64, female
## 9117                                                                                                                                                                                                                                 Average age of workers, aged 15-64, above primary education
## 9118                                                                                                                                                                                                                             Average age of workers, aged 15-64, primary education and below
## 9119                                                                                                                                                                                                                                                    Average age of workers, aged 15-64, male
## 9120                                                                                                                                                                                                                                                          Average age of workers, aged 25-64
## 9121                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, rural
## 9122                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, urban
## 9123                                                                                                                                                                                                                                                          Average age of workers, aged 15-24
## 9124                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, total
## 9125                                                                                                                                                                                                                       Average age of workers in the agricultural sector, aged 15-64, female
## 9126                                                                                                                                                                                                      Average age of workers in the agricultural sector, aged 15-64, above primary education
## 9127                                                                                                                                                                                                  Average age of workers in the agricultural sector, aged 15-64, primary education and below
## 9128                                                                                                                                                                                                                         Average age of workers in the agricultural sector, aged 15-64, male
## 9129                                                                                                                                                                                                                               Average age of workers in the agricultural sector, aged 25-64
## 9130                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, rural
## 9131                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, urban
## 9132                                                                                                                                                                                                                               Average age of workers in the agricultural sector, aged 15-24
## 9133                                                                                                                                                                                         Wage employment in agriculture, aged 15-64, female (% of female workers in the agricultural sector)
## 9134                                                                                                                                                           Wage employment in agriculture, aged 15-64, above primary education (% of workers with high education in the agricultural sector)
## 9135                                                                                                                                                        Wage employment in agriculture, aged 15-64, primary education and below (% of workers with low education in the agricultural sector)
## 9136                                                                                                                                                                                             Wage employment in agriculture, aged 15-64, male (% of male workers in the agricultural sector)
## 9137                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, total
## 9138                                                                                                                                                                                             Median earnings per month in the agricultural sector, aged 15-64, local currency values, female
## 9139                                                                                                                                                                            Median earnings per month in the agricultural sector, aged 15-64, local currency values, above primary education
## 9140                                                                                                                                                                        Median earnings per month in the agricultural sector, aged 15-64, local currency values, primary education and below
## 9141                                                                                                                                                                                               Median earnings per month in the agricultural sector, aged 15-64, local currency values, male
## 9142                                                                                                                                                                                                     Median earnings per month in the agricultural sector, aged 25-64, local currency values
## 9143                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, rural
## 9144                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, urban
## 9145                                                                                                                                                                                                     Median earnings per month in the agricultural sector, aged 15-24, local currency values
## 9146                                                                                                                                                                                             Wage employment in agriculture, aged 25-64 (% of workers aged 25-64 in the agricultural sector)
## 9147                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, rural (% of rural workers in the agricultural sector)
## 9148                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, urban (% of urban workers in the agricultural sector)
## 9149                                                                                                                                                                                             Wage employment in agriculture, aged 15-24 (% of workers aged 15-24 in the agricultural sector)
## 9150                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, total (% of total workers in the agricultural sector)
## 9151                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, total
## 9152                                                                                                                                                                                                            Average number of completed years in formal education, aged 17 and above, female
## 9153                                                                                                                                                                                           Average number of completed years in formal education, aged 17 and above, above primary education
## 9154                                                                                                                                                                                       Average number of completed years in formal education, aged 17 and above, primary education and below
## 9155                                                                                                                                                                                                              Average number of completed years in formal education, aged 17 and above, male
## 9156                                                                                                                                                                                                                    Average number of completed years in formal education, aged 25 and above
## 9157                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, rural
## 9158                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, urban
## 9159                                                                                                                                                                                                                           Average number of completed years in formal education, aged 17-24
## 9160                                                                                                                                                                                                                   Youth employment rate, aged 15-24, female (% of female youth labor force)
## 9161                                                                                                                                                                                     Youth employment rate, aged 15-24, above primary education (% of youth labor force with high education)
## 9162                                                                                                                                                                                  Youth employment rate, aged 15-24, primary education and below (% of youth labor force with low education)
## 9163                                                                                                                                                                                                                       Youth employment rate, aged 15-24, male (% of male youth labor force)
## 9164                                                                                                                                                                                                                     Youth employment rate, aged 15-24, rural (% of rural youth labor force)
## 9165                                                                                                                                                                                                                     Youth employment rate, aged 15-24, urban (% of urban youth labor force)
## 9166                                                                                                                                                                                                                     Youth employment rate, aged 15-24, total (% of total youth labor force)
## 9167                                                                                                                                                                                                                Employment rate, aged 15-64, female (% of female labor force in working age)
## 9168                                                                                                                                                                                  Employment rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9169                                                                                                                                                                               Employment rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9170                                                                                                                                                                                                                    Employment rate, aged 15-64, male (% of male labor force in working age)
## 9171                                                                                                                                                                                                                                   Employment rate, aged 25-64 (% of labor force aged 25-64)
## 9172                                                                                                                                                                                                                 Employment rate, aged 15-64, rural  (% of rural labor force in working age)
## 9173                                                                                                                                                                                                                  Employment rate, aged 15-64, urban (% of urban labor force in working age)
## 9174                                                                                                                                                                                                                                   Employment rate, aged 15-24 (% of labor force aged 15-24)
## 9175                                                                                                                                                                                                                  Employment rate, aged 15-64, total (% of total labor force in working age)
## 9176                                                                                                                                                                                  Employment in the agricultural sector, aged 15-64, female (% of female employed population in working age)
## 9177                                                                                                                                                    Employment in the agricultural sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9178                                                                                                                                                 Employment in the agricultural sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9179                                                                                                                                                                                      Employment in the agricultural sector, aged 15-64, male (% of male employed population in working age)
## 9180                                                                                                                                                                                                     Employment in the agricultural sector, aged 25-64 (% of employed population aged 25-64)
## 9181                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, rural (% of rural employed population in working age)
## 9182                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, urban (% of urban employed population in working age)
## 9183                                                                                                                                                                                                     Employment in the agricultural sector, aged 15-24 (% of employed population aged 15-24)
## 9184                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, total (% of total employed population in working age)
## 9185                                                                                                                                                                        Employment in the armed forces occupation group, aged 15-64, female (% of female employed population in working age)
## 9186                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9187                                                                                                                                       Employment in the armed forces occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9188                                                                                                                                                                            Employment in the armed forces occupation group, aged 15-64, male (% of male employed population in working age)
## 9189                                                                                                                                                                                           Employment in the armed forces occupation group, aged 25-64 (% of employed population aged 25-64)
## 9190                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9191                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9192                                                                                                                                                                                           Employment in the armed forces occupation group, aged 15-24 (% of employed population aged 15-24)
## 9193                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, total (% of total employed population in working age)
## 9194                                                                                                                                                                              Employment in the clerks occupation group, aged 15-64, female (% of female employed population in working age)
## 9195                                                                                                                                                Employment in the clerks occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9196                                                                                                                                             Employment in the clerks occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9197                                                                                                                                                                                  Employment in the clerks occupation group, aged 15-64, male (% of male employed population in working age)
## 9198                                                                                                                                                                                                 Employment in the clerks occupation group, aged 25-64 (% of employed population aged 25-64)
## 9199                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9200                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9201                                                                                                                                                                                                 Employment in the clerks occupation group, aged 15-24 (% of employed population aged 15-24)
## 9202                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, total (% of total employed population in working age)
## 9203                                                                                                                                                                                  Employment in the construction sector, aged 15-64, female (% of female employed population in working age)
## 9204                                                                                                                                                    Employment in the construction sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9205                                                                                                                                                 Employment in the construction sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9206                                                                                                                                                                                      Employment in the construction sector, aged 15-64, male (% of male employed population in working age)
## 9207                                                                                                                                                                                                     Employment in the construction sector, aged 25-64 (% of employed population aged 25-64)
## 9208                                                                                                                                                                                    Employment in the construction sector, aged 15-64, rural (% of rural employed population in working age)
## 9209                                                                                                                                                                                    Employment in the construction sector, aged 15-64, urban (% of urban employed population in working age)
## 9210                                                                                                                                                                                                     Employment in the construction sector, aged 15-24 (% of employed population aged 15-24)
## 9211                                                                                                                                                                                    Employment in the construction sector, aged 15-64, total (% of total employed population in working age)
## 9212                                                                                                                                                                                      Employment in the commerce sector, aged 15-64, female (% of female employed population in working age)
## 9213                                                                                                                                                        Employment in the commerce sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9214                                                                                                                                                     Employment in the commerce sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9215                                                                                                                                                                                          Employment in the commerce sector, aged 15-64, male (% of male employed population in working age)
## 9216                                                                                                                                                                                                         Employment in the commerce sector, aged 25-64 (% of employed population aged 25-64)
## 9217                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, rural (% of rural employed population in working age)
## 9218                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, urban (% of urban employed population in working age)
## 9219                                                                                                                                                                                                         Employment in the commerce sector, aged 15-24 (% of employed population aged 15-24)
## 9220                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, total (% of total employed population in working age)
## 9221                                                                                                                                                                                  Employed workers with a work contract, aged 15-64, female (% of female employed population in working age)
## 9222                                                                                                                                                    Employed workers with a work contract, aged 15-64, above primary education (% of employed population with high education in working age)
## 9223                                                                                                                                                 Employed workers with a work contract, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9224                                                                                                                                                                                      Employed workers with a work contract, aged 15-64, male (% of male employed population in working age)
## 9225                                                                                                                                                                                                     Employed workers with a work contract, aged 25-64 (% of employed population aged 25-64)
## 9226                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, rural (% of rural employed population in working age)
## 9227                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, urban (% of urban employed population in working age)
## 9228                                                                                                                                                                                                     Employed workers with a work contract, aged 15-24 (% of employed population aged 15-24)
## 9229                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, total (% of total employed population in working age)
## 9230                                                                                                                                                                       Employment in the craft workers occupation group, aged 15-64, female (% of female employed population in working age)
## 9231                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9232                                                                                                                                      Employment in the craft workers occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9233                                                                                                                                                                           Employment in the craft workers occupation group, aged 15-64, male (% of male employed population in working age)
## 9234                                                                                                                                                                                          Employment in the craft workers occupation group, aged 25-64 (% of employed population aged 25-64)
## 9235                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9236                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9237                                                                                                                                                                                          Employment in the craft workers occupation group, aged 15-24 (% of employed population aged 15-24)
## 9238                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, total (% of total employed population in working age)
## 9239                                                                                                                                                               Employment in the eletricity and public utilities sector, aged 15-64, female (% of female employed population in working age)
## 9240                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9241                                                                                                                              Employment in the eletricity and public utilities sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9242                                                                                                                                                                   Employment in the eletricity and public utilities sector, aged 15-64, male (% of male employed population in working age)
## 9243                                                                                                                                                                                  Employment in the eletricity and public utilities sector, aged 25-64 (% of employed population aged 25-64)
## 9244                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, rural (% of rural employed population in working age)
## 9245                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, urban (% of urban employed population in working age)
## 9246                                                                                                                                                                                  Employment in the eletricity and public utilities sector, aged 15-24 (% of employed population aged 15-24)
## 9247                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, total (% of total employed population in working age)
## 9248                                                                                                                                                                          Employment in the elementary occupation group, aged 15-64, female (% of female employed population in working age)
## 9249                                                                                                                                            Employment in the elementary occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9250                                                                                                                                         Employment in the elementary occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9251                                                                                                                                                                              Employment in the elementary occupation group, aged 15-64, male (% of male employed population in working age)
## 9252                                                                                                                                                                                             Employment in the elementary occupation group, aged 25-64 (% of employed population aged 25-64)
## 9253                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9254                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9255                                                                                                                                                                                             Employment in the elementary occupation group, aged 15-24 (% of employed population aged 15-24)
## 9256                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, total (% of total employed population in working age)
## 9257                                                                                                                                                               Employment in the financial and business services sector, aged 15-64, female (% of female employed population in working age)
## 9258                                                                                                                                 Employment in the financial and business services sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9259                                                                                                                              Employment in the financial and business services sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9260                                                                                                                                                                   Employment in the financial and business services sector, aged 15-64, male (% of male employed population in working age)
## 9261                                                                                                                                                                                  Employment in the financial and business services sector, aged 25-64 (% of employed population aged 25-64)
## 9262                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, rural (% of rural employed population in working age)
## 9263                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, urban (% of urban employed population in working age)
## 9264                                                                                                                                                                                  Employment in the financial and business services sector, aged 15-24 (% of employed population aged 15-24)
## 9265                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, total (% of total employed population in working age)
## 9266                                                                                                                                                                                 Employed workers with health insurance, aged 15-64, female (% of female employed population in working age)
## 9267                                                                                                                                                   Employed workers with health insurance, aged 15-64, above primary education (% of employed population with high education in working age)
## 9268                                                                                                                                                Employed workers with health insurance, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9269                                                                                                                                                                                     Employed workers with health insurance, aged 15-64, male (% of male employed population in working age)
## 9270                                                                                                                                                                                                    Employed workers with health insurance, aged 25-64 (% of employed population aged 25-64)
## 9271                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, rural (% of rural employed population in working age)
## 9272                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, urban (% of urban employed population in working age)
## 9273                                                                                                                                                                                                    Employed workers with health insurance, aged 15-24 (% of employed population aged 15-24)
## 9274                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, total (% of total employed population in working age)
## 9275                                                                                                                                                                                                   Informal job workers, aged 15-64, female (% of female employed population in working age)
## 9276                                                                                                                                                                     Informal job workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9277                                                                                                                                                                  Informal job workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9278                                                                                                                                                                                                       Informal job workers, aged 15-64, male (% of male employed population in working age)
## 9279                                                                                                                                                                                                                      Informal job workers, aged 25-64 (% of employed population aged 25-64)
## 9280                                                                                                                                                                                                     Informal job workers, aged 15-64, rural (% of rural employed population in working age)
## 9281                                                                                                                                                                                                     Informal job workers, aged 15-64, urban (% of urban employed population in working age)
## 9282                                                                                                                                                                                                                      Informal job workers, aged 15-24 (% of employed population aged 15-24)
## 9283                                                                                                                                                                                                     Informal job workers, aged 15-64, total (% of total employed population in working age)
## 9284                                                                                                                                                                                    Employment in the industrial sector, aged 15-64, female (% of female employed population in working age)
## 9285                                                                                                                                                      Employment in the industrial sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9286                                                                                                                                                   Employment in the industrial sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9287                                                                                                                                                                                        Employment in the industrial sector, aged 15-64, male (% of male employed population in working age)
## 9288                                                                                                                                                                                                       Employment in the industrial sector, aged 25-64 (% of employed population aged 25-64)
## 9289                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, rural (% of rural employed population in working age)
## 9290                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, urban (% of urban employed population in working age)
## 9291                                                                                                                                                                                                       Employment in the industrial sector, aged 15-24 (% of employed population aged 15-24)
## 9292                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, total (% of total employed population in working age)
## 9293                                                                                                                                                                   Employment in the machine operators occupation group, aged 15-64, female (% of female employed population in working age)
## 9294                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9295                                                                                                                                  Employment in the machine operators occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9296                                                                                                                                                                       Employment in the machine operators occupation group, aged 15-64, male (% of male employed population in working age)
## 9297                                                                                                                                                                                      Employment in the machine operators occupation group, aged 25-64 (% of employed population aged 25-64)
## 9298                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9299                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9300                                                                                                                                                                                      Employment in the machine operators occupation group, aged 15-24 (% of employed population aged 15-24)
## 9301                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, total (% of total employed population in working age)
## 9302                                                                                                                                                                                 Employment in the manufacturing sector, aged 15-64, female (% of female employed population in working age)
## 9303                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9304                                                                                                                                                Employment in the manufacturing sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9305                                                                                                                                                                                     Employment in the manufacturing sector, aged 15-64, male (% of male employed population in working age)
## 9306                                                                                                                                                                                                    Employment in the manufacturing sector, aged 25-64 (% of employed population aged 25-64)
## 9307                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, rural (% of rural employed population in working age)
## 9308                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, urban (% of urban employed population in working age)
## 9309                                                                                                                                                                                                    Employment in the manufacturing sector, aged 15-24 (% of employed population aged 15-24)
## 9310                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, total (% of total employed population in working age)
## 9311                                                                                                                                                                                        Employment in the mining sector, aged 15-64, female (% of female employed population in working age)
## 9312                                                                                                                                                          Employment in the mining sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9313                                                                                                                                                       Employment in the mining sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9314                                                                                                                                                                                            Employment in the mining sector, aged 15-64, male (% of male employed population in working age)
## 9315                                                                                                                                                                                                           Employment in the mining sector, aged 25-64 (% of employed population aged 25-64)
## 9316                                                                                                                                                                                          Employment in the mining sector, aged 15-64, rural (% of rural employed population in working age)
## 9317                                                                                                                                                                                          Employment in the mining sector, aged 15-64, urban (% of urban employed population in working age)
## 9318                                                                                                                                                                                                           Employment in the mining sector, aged 15-24 (% of employed population aged 15-24)
## 9319                                                                                                                                                                                          Employment in the mining sector, aged 15-64, total (% of total employed population in working age)
## 9320                                                                                                                                                                                                              Employers, aged 15-64, female (% of female employed population in working age)
## 9321                                                                                                                                                                                Employers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9322                                                                                                                                                                             Employers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9323                                                                                                                                                                                                                  Employers, aged 15-64, male (% of male employed population in working age)
## 9324                                                                                                                                                                                             Non-agricultural employers, aged 15-64, female (% of female employed population in working age)
## 9325                                                                                                                                                               Non-agricultural employers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9326                                                                                                                                                            Non-agricultural employers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9327                                                                                                                                                                                                 Non-agricultural employers, aged 15-64, male (% of male employed population in working age)
## 9328                                                                                                                                                                                                                Non-agricultural employers, aged 25-64 (% of employed population aged 25-64)
## 9329                                                                                                                                                                                               Non-agricultural employers, aged 15-64, rural (% of rural employed population in working age)
## 9330                                                                                                                                                                                               Non-agricultural employers, aged 15-64, urban (% of urban employed population in working age)
## 9331                                                                                                                                                                                                                Non-agricultural employers, aged 15-24 (% of employed population aged 15-24)
## 9332                                                                                                                                                                                               Non-agricultural employers, aged 15-64, total (% of total employed population in working age)
## 9333                                                                                                                                                                                                                                 Employers, aged 25-64 (% of employed population aged 25-64)
## 9334                                                                                                                                                                                                                Employers, aged 15-64, rural (% of rural employed population in working age)
## 9335                                                                                                                                                                                                                Employers, aged 15-64, urban (% of urban employed population in working age)
## 9336                                                                                                                                                                                                                                 Employers, aged 15-24 (% of employed population aged 15-24)
## 9337                                                                                                                                                                                                                Employers, aged 15-64, total (% of total employed population in working age)
## 9338                                                                                                                                             Female in non-agricultural employment, aged 15-64, above primary education (% of employed female population with high education in working age)
## 9339                                                                                                                                          Female in non-agricultural employment, aged 15-64, primary education and below (% of employed female population with low education in working age)
## 9340                                                                                                                                                                                              Female in non-agricultural employment, aged 25-64 (% of employed female population aged 25-64)
## 9341                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, rural (% of rural employed female population in working age)
## 9342                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, urban (% of urban employed female population in working age)
## 9343                                                                                                                                                                                              Female in non-agricultural employment, aged 15-24 (% of employed female population aged 15-24)
## 9344                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, total (% of total employed female population in working age)
## 9345                                                                                                                                                                                            Youth in non-agricultural employment, aged 15-24, female (% of female employed youth aged 15-24)
## 9346                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, above primary education (% of employed youth with high education aged 15-24)
## 9347                                                                                                                                                           Youth in non-agricultural employment, aged 15-24, primary education and below (% of employed youth with low education aged 15-24)
## 9348                                                                                                                                                                                                Youth in non-agricultural employment, aged 15-24, male (% of male employed youth aged 15-24)
## 9349                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, rural (% of rural employed youth aged 15-24)
## 9350                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, urban (% of urban employed youth aged 15-24)
## 9351                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, total (% of total employed youth aged 15-24)
## 9352                                                                                                                                                                                Employment in the other services sector, aged 15-64, female (% of female employed population in working age)
## 9353                                                                                                                                                  Employment in the other services sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9354                                                                                                                                               Employment in the other services sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9355                                                                                                                                                                                    Employment in the other services sector, aged 15-64, male (% of male employed population in working age)
## 9356                                                                                                                                                                                                   Employment in the other services sector, aged 25-64 (% of employed population aged 25-64)
## 9357                                                                                                                                                                                  Employment in the other services sector, aged 15-64, rural (% of rural employed population in working age)
## 9358                                                                                                                                                                                  Employment in the other services sector, aged 15-64, urban (% of urban employed population in working age)
## 9359                                                                                                                                                                                                   Employment in the other services sector, aged 15-24 (% of employed population aged 15-24)
## 9360                                                                                                                                                                                  Employment in the other services sector, aged 15-64, total (% of total employed population in working age)
## 9361                                                                                                                                                                         Employment in the public administration sector, aged 15-64, female (% of female employed population in working age)
## 9362                                                                                                                                           Employment in the public administration sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9363                                                                                                                                        Employment in the public administration sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9364                                                                                                                                                                             Employment in the public administration sector, aged 15-64, male (% of male employed population in working age)
## 9365                                                                                                                                                                                            Employment in the public administration sector, aged 25-64 (% of employed population aged 25-64)
## 9366                                                                                                                                                                           Employment in the public administration sector, aged 15-64, rural (% of rural employed population in working age)
## 9367                                                                                                                                                                           Employment in the public administration sector, aged 15-64, urban (% of urban employed population in working age)
## 9368                                                                                                                                                                                            Employment in the public administration sector, aged 15-24 (% of employed population aged 15-24)
## 9369                                                                                                                                                                           Employment in the public administration sector, aged 15-64, total (% of total employed population in working age)
## 9370                                                                                                                                                                       Employment in the professionals occupation group, aged 15-64, female (% of female employed population in working age)
## 9371                                                                                                                                         Employment in the professionals occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9372                                                                                                                                      Employment in the professionals occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9373                                                                                                                                                                           Employment in the professionals occupation group, aged 15-64, male (% of male employed population in working age)
## 9374                                                                                                                                                                                          Employment in the professionals occupation group, aged 25-64 (% of employed population aged 25-64)
## 9375                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9376                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9377                                                                                                                                                                                          Employment in the professionals occupation group, aged 15-24 (% of employed population aged 15-24)
## 9378                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, total (% of total employed population in working age)
## 9379                                                                                                                                                                                        Employment in the public sector, aged 15-64, female (% of female employed population in working age)
## 9380                                                                                                                                                          Employment in the public sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9381                                                                                                                                                       Employment in the public sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9382                                                                                                                                                                                            Employment in the public sector, aged 15-64, male (% of male employed population in working age)
## 9383                                                                                                                                                                                                           Employment in the public sector, aged 25-64 (% of employed population aged 25-64)
## 9384                                                                                                                                                                                          Employment in the public sector, aged 15-64, rural (% of rural employed population in working age)
## 9385                                                                                                                                                                                          Employment in the public sector, aged 15-64, urban (% of urban employed population in working age)
## 9386                                                                                                                                                                                                           Employment in the public sector, aged 15-24 (% of employed population aged 15-24)
## 9387                                                                                                                                                                                          Employment in the public sector, aged 15-64, total (% of total employed population in working age)
## 9388                                                                                                                                                                                                  Self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9389                                                                                                                                                                    Self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9390                                                                                                                                                                 Self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9391                                                                                                                                                                                                      Self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9392                                                                                                                                                                                 Non-agricultural self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9393                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9394                                                                                                                                                Non-agricultural self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9395                                                                                                                                                                                     Non-agricultural self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9396                                                                                                                                                                                                    Non-agricultural self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9397                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9398                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9399                                                                                                                                                                                                    Non-agricultural self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9400                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9401                                                                                                                                                                                                                     Self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9402                                                                                                                                                                                                    Self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9403                                                                                                                                                                                                    Self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9404                                                                                                                                                                                                                     Self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9405                                                                                                                                                                                                    Self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9406                                                                                                                                                                    Employment in the senior officials occupation group, aged 15-64, female (% of female employed population in working age)
## 9407                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9408                                                                                                                                   Employment in the senior officials occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9409                                                                                                                                                                        Employment in the senior officials occupation group, aged 15-64, male (% of male employed population in working age)
## 9410                                                                                                                                                                                       Employment in the senior officials occupation group, aged 25-64 (% of employed population aged 25-64)
## 9411                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9412                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9413                                                                                                                                                                                       Employment in the senior officials occupation group, aged 15-24 (% of employed population aged 15-24)
## 9414                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, total (% of total employed population in working age)
## 9415                                                                                                                                                                                       Employment in the service sector, aged 15-64, female (% of female employed population in working age)
## 9416                                                                                                                                                         Employment in the service sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9417                                                                                                                                                      Employment in the service sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9418                                                                                                                                                                                           Employment in the service sector, aged 15-64, male (% of male employed population in working age)
## 9419                                                                                                                                                                                                          Employment in the service sector, aged 25-64 (% of employed population aged 25-64)
## 9420                                                                                                                                                                                         Employment in the service sector, aged 15-64, rural (% of rural employed population in working age)
## 9421                                                                                                                                                                                         Employment in the service sector, aged 15-64, urban (% of urban employed population in working age)
## 9422                                                                                                                                                                                                          Employment in the service sector, aged 15-24 (% of employed population aged 15-24)
## 9423                                                                                                                                                                                         Employment in the service sector, aged 15-64, total (% of total employed population in working age)
## 9424                                                                                                                                                                 Employment in the skilled agriculture occupation group, aged 15-64, female (% of female employed population in working age)
## 9425                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9426                                                                                                                                Employment in the skilled agriculture occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9427                                                                                                                                                                     Employment in the skilled agriculture occupation group, aged 15-64, male (% of male employed population in working age)
## 9428                                                                                                                                                                                    Employment in the skilled agriculture occupation group, aged 25-64 (% of employed population aged 25-64)
## 9429                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9430                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9431                                                                                                                                                                                    Employment in the skilled agriculture occupation group, aged 15-24 (% of employed population aged 15-24)
## 9432                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, total (% of total employed population in working age)
## 9433                                                                                                                                                                                  Employed workers with social security, aged 15-64, female (% of female employed population in working age)
## 9434                                                                                                                                                    Employed workers with social security, aged 15-64, above primary education (% of employed population with high education in working age)
## 9435                                                                                                                                                 Employed workers with social security, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9436                                                                                                                                                                                      Employed workers with social security, aged 15-64, male (% of male employed population in working age)
## 9437                                                                                                                                                                                                     Employed workers with social security, aged 25-64 (% of employed population aged 25-64)
## 9438                                                                                                                                                                                    Employed workers with social security, aged 15-64, rural (% of rural employed population in working age)
## 9439                                                                                                                                                                                    Employed workers with social security, aged 15-64, urban (% of urban employed population in working age)
## 9440                                                                                                                                                                                                     Employed workers with social security, aged 15-24 (% of employed population aged 15-24)
## 9441                                                                                                                                                                                    Employed workers with social security, aged 15-64, total (% of total employed population in working age)
## 9442                                                                                                                                                            Employment in the service and market sales occupation group, aged 15-64, female (% of female employed population in working age)
## 9443                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9444                                                                                                                           Employment in the service and market sales occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9445                                                                                                                                                                Employment in the service and market sales occupation group, aged 15-64, male (% of male employed population in working age)
## 9446                                                                                                                                                                               Employment in the service and market sales occupation group, aged 25-64 (% of employed population aged 25-64)
## 9447                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9448                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9449                                                                                                                                                                               Employment in the service and market sales occupation group, aged 15-24 (% of employed population aged 15-24)
## 9450                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, total (% of total employed population in working age)
## 9451                                                                                                                                                                         Employment in the technicians occupation group, aged 15-64, female (% of female employed population in working age)
## 9452                                                                                                                                           Employment in the technicians occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9453                                                                                                                                        Employment in the technicians occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9454                                                                                                                                                                             Employment in the technicians occupation group, aged 15-64, male (% of male employed population in working age)
## 9455                                                                                                                                                                                            Employment in the technicians occupation group, aged 25-64 (% of employed population aged 25-64)
## 9456                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9457                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9458                                                                                                                                                                                            Employment in the technicians occupation group, aged 15-24 (% of employed population aged 15-24)
## 9459                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, total (% of total employed population in working age)
## 9460                                                                                                                                                                                                  Employment to population ratio, aged 15-64, female (% of female population in working age)
## 9461                                                                                                                                                                    Employment to population ratio, aged 15-64, above primary education (% of population with high education in working age)
## 9462                                                                                                                                                                 Employment to population ratio, aged 15-64, primary education and below (% of population with low education in working age)
## 9463                                                                                                                                                                                                      Employment to population ratio, aged 15-64, male (% of male population in working age)
## 9464                                                                                                                                                                                                                     Employment to population ratio, aged 25-64 (% of population aged 25-64)
## 9465                                                                                                                                                                                                    Employment to population ratio, aged 15-64, rural (% of rural population in working age)
## 9466                                                                                                                                                                                                    Employment to population ratio, aged 15-64, urban (% of urban population in working age)
## 9467                                                                                                                                                                                                                     Employment to population ratio, aged 15-24 (% of population aged 15-24)
## 9468                                                                                                                                                                                                    Employment to population ratio, aged 15-64, total (% of total population in working age)
## 9469                                                                                                                                                                   Employment in the transport and communication sector, aged 15-64, female (% of female employed population in working age)
## 9470                                                                                                                                     Employment in the transport and communication sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9471                                                                                                                                  Employment in the transport and communication sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9472                                                                                                                                                                       Employment in the transport and communication sector, aged 15-64, male (% of male employed population in working age)
## 9473                                                                                                                                                                                      Employment in the transport and communication sector, aged 25-64 (% of employed population aged 25-64)
## 9474                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, rural (% of rural employed population in working age)
## 9475                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, urban (% of urban employed population in working age)
## 9476                                                                                                                                                                                      Employment in the transport and communication sector, aged 15-24 (% of employed population aged 15-24)
## 9477                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, total (% of total employed population in working age)
## 9478                                                                                                                                                                                                         Unpaid workers, aged 15-64, female (% of female employed population in working age)
## 9479                                                                                                                                                                           Unpaid workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9480                                                                                                                                                                        Unpaid workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9481                                                                                                                                                                                                             Unpaid workers, aged 15-64, male (% of male employed population in working age)
## 9482                                                                                                                                                                                     Non-agricultural unpaid employment, aged 15-64, female (% of female employed population in working age)
## 9483                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, above primary education (% of employed population with high education in working age)
## 9484                                                                                                                                                    Non-agricultural unpaid employment, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9485                                                                                                                                                                                         Non-agricultural unpaid employment, aged 15-64, male (% of male employed population in working age)
## 9486                                                                                                                                                                                                        Non-agricultural unpaid employment, aged 25-64 (% of employed population aged 25-64)
## 9487                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, rural (% of rural employed population in working age)
## 9488                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, urban (% of urban employed population in working age)
## 9489                                                                                                                                                                                                        Non-agricultural unpaid employment, aged 15-24 (% of employed population aged 15-24)
## 9490                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, total (% of total employed population in working age)
## 9491                                                                                                                                                                                                                            Unpaid workers, aged 25-64 (% of employed population aged 25-64)
## 9492                                                                                                                                                                                                           Unpaid workers, aged 15-64, rural (% of rural employed population in working age)
## 9493                                                                                                                                                                                                           Unpaid workers, aged 15-64, urban (% of urban employed population in working age)
## 9494                                                                                                                                                                                                                            Unpaid workers, aged 15-24 (% of employed population aged 15-24)
## 9495                                                                                                                                                                                                           Unpaid workers, aged 15-64, total (% of total employed population in working age)
## 9496                                                                                                                                                                                        Unpaid or self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9497                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9498                                                                                                                                                       Unpaid or self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9499                                                                                                                                                                                            Unpaid or self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9500                                                                                                                                                                                                           Unpaid or self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9501                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9502                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9503                                                                                                                                                                                                           Unpaid or self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9504                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9505                                                                                                                                                                                             Youth in non-agricultural wage employment, ages 15-24, female (% of female youth in employment)
## 9506                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, above primary education (% of employed youth with high education aged 15-24)
## 9507                                                                                                                                                      Youth in non-agricultural wage employment, aged 15-24, primary education and below (% of employed youth with low education aged 15-24)
## 9508                                                                                                                                                                                           Youth in non-agricultural wage employment, aged 15-24, male (% of male employed youth aged 15-24)
## 9509                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, rural (% of rural employed youth aged 15-24)
## 9510                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, urban (% of urban employed youth aged 15-24)
## 9511                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, total (% of total employed youth aged 15-24)
## 9512                                                                                                                                                                                                           Wage workers, aged 15-64, female (% of female employed population in working age)
## 9513                                                                                                                                                                             Wage workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9514                                                                                                                                                                          Wage workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9515                                                                                                                                                                                                               Wage workers, aged 15-64, male (% of male employed population in working age)
## 9516                                                                                                                                                                                       Non-agricultural wage employment, aged 15-64, female (% of female employed population in working age)
## 9517                                                                                                                                                         Non-agricultural wage employment, aged 15-64, above primary education (% of employed population with high education in working age)
## 9518                                                                                                                                                      Non-agricultural wage employment, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9519                                                                                                                                                                                           Non-agricultural wage employment, aged 15-64, male (% of male employed population in working age)
## 9520                                                                                                                                                                                                          Non-agricultural wage employment, aged 25-64 (% of employed population aged 25-64)
## 9521                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, rural (% of rural employed population in working age)
## 9522                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, urban (% of urban employed population in working age)
## 9523                                                                                                                                                                                                          Non-agricultural wage employment, aged 15-24 (% of employed population aged 15-24)
## 9524                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, total (% of total employed population in working age)
## 9525                                                                                                                                                                                                                              Wage workers, aged 25-64 (% of employed population aged 25-64)
## 9526                                                                                                                                                                                                             Wage workers, aged 15-64, rural (% of rural employed population in working age)
## 9527                                                                                                                                                                                                             Wage workers, aged 15-64, urban (% of urban employed population in working age)
## 9528                                                                                                                                                                                                                              Wage workers, aged 15-24 (% of employed population aged 15-24)
## 9529                                                                                                                                                                                                             Wage workers, aged 15-64, total (% of total employed population in working age)
## 9530                                                                                                                                                                                                                       Enrollment rate, aged 6-16, female (% of female population aged 6-16)
## 9531                                                                                                                                                                                         Enrollment rate, aged 6-16, above primary education (% of population with high education aged 6-16)
## 9532                                                                                                                                                                                      Enrollment rate, aged 6-16, primary education and below (% of population with low education aged 6-16)
## 9533                                                                                                                                                                                                                           Enrollment rate, aged 6-16, male (% of male population aged 6-16)
## 9534                                                                                                                                                                                                                         Enrollment rate, aged 6-16, rural (% of rural population aged 6-16)
## 9535                                                                                                                                                                                                                         Enrollment rate, aged 6-16, urban (% of urban population aged 6-16)
## 9536                                                                                                                                                                                                                                    Enrollment rate, aged 15-16 (% of population aged 15-16)
## 9537                                                                                                                                                                                                                         Enrollment rate, aged 6-16, total (% of total population aged 6-16)
## 9538                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, total
## 9539                                                                                                                                                                                                                         Average age of workers in the industrial sector, aged 15-64, female
## 9540                                                                                                                                                                                                        Average age of workers in the industrial sector, aged 15-64, above primary education
## 9541                                                                                                                                                                                                    Average age of workers in the industrial sector, aged 15-64, primary education and below
## 9542                                                                                                                                                                                                                           Average age of workers in the industrial sector, aged 15-64, male
## 9543                                                                                                                                                                                                                                 Average age of workers in the industrial sector, aged 25-64
## 9544                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, rural
## 9545                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, urban
## 9546                                                                                                                                                                                                                                 Average age of workers in the industrial sector, aged 15-24
## 9547                                                                                                                                                                                              Wage employment in industry, aged 15-64, female (% of female workers in the industrial sector)
## 9548                                                                                                                                                                Wage employment in industry, aged 15-64, above primary education (% of workers with high education in the industrial sector)
## 9549                                                                                                                                                             Wage employment in industry, aged 15-64, primary education and below (% of workers with low education in the industrial sector)
## 9550                                                                                                                                                                                                  Wage employment in industry, aged 15-64, male (% of male workers in the industrial sector)
## 9551                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, total
## 9552                                                                                                                                                                                               Median earnings per month in the industrial sector, aged 15-64, local currency values, female
## 9553                                                                                                                                                                              Median earnings per month in the industrial sector, aged 15-64, local currency values, above primary education
## 9554                                                                                                                                                                          Median earnings per month in the industrial sector, aged 15-64, local currency values, primary education and below
## 9555                                                                                                                                                                                                 Median earnings per month in the industrial sector, aged 15-64, local currency values, male
## 9556                                                                                                                                                                                                       Median earnings per month in the industrial sector, aged 25-64, local currency values
## 9557                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, rural
## 9558                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, urban
## 9559                                                                                                                                                                                                       Median earnings per month in the industrial sector, aged 15-24, local currency values
## 9560                                                                                                                                                                                                  Wage employment in industry, aged 25-64 (% of workers aged 25-64 in the industrial sector)
## 9561                                                                                                                                                                                                Wage employment in industry, aged 15-64, rural (% of rural workers in the industrial sector)
## 9562                                                                                                                                                                                                Wage employment in industry, aged 15-64, urban (% of urban workers in the industrial sector)
## 9563                                                                                                                                                                                                  Wage employment in industry, aged 15-24 (% of workers aged 15-24 in the industrial sector)
## 9564                                                                                                                                                                                                Wage employment in industry, aged 15-64, total (% of total workers in the industrial sector)
## 9565                                                                                                                                                                           Workers with more than one jobs in last week, aged 15-64, female (% of female employed population in working age)
## 9566                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9567                                                                                                                                          Workers with more than one jobs in last week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9568                                                                                                                                                                               Workers with more than one jobs in last week, aged 15-64, male (% of male employed population in working age)
## 9569                                                                                                                                                                                              Workers with more than one jobs in last week, aged 25-64 (% of employed population aged 25-64)
## 9570                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, rural (% of rural employed population in working age)
## 9571                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, urban (% of urban employed population in working age)
## 9572                                                                                                                                                                                              Workers with more than one jobs in last week, aged 15-24 (% of employed population aged 15-24)
## 9573                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, total (% of total employed population in working age)
## 9574                                                                                                                                                                                                                                       Population aged 0-14, female (% of female population)
## 9575                                                                                                                                                                                                         Population aged 0-14, above primary education (% of population with high edcuation)
## 9576                                                                                                                                                                                                      Population aged 0-14, primary education and below (% of population with low edcuation)
## 9577                                                                                                                                                                                                                                           Population aged 0-14, male (% of male population)
## 9578                                                                                                                                                                                                                                         Population aged 0-14, rural (% of rural population)
## 9579                                                                                                                                                                                                                                         Population aged 0-14, urban (% of urban population)
## 9580                                                                                                                                                                                                                                         Population aged 0-14, total (% of total population)
## 9581                                                                                                                                                                                                                                      Population aged 15-24, female (% of female population)
## 9582                                                                                                                                                                                                        Population aged 15-24, above primary education (% of population with high edcuation)
## 9583                                                                                                                                                                                                     Population aged 15-24, primary education and below (% of population with low edcuation)
## 9584                                                                                                                                                                                                                                          Population aged 15-24, male (% of male population)
## 9585                                                                                                                                                                                                                                        Population aged 15-24, rural (% of rural population)
## 9586                                                                                                                                                                                                                                        Population aged 15-24, urban (% of urban population)
## 9587                                                                                                                                                                                                                                        Population aged 15-24, total (% of total population)
## 9588                                                                                                                                                                                                                         Working-age population, aged 15-64, female (% of female population)
## 9589                                                                                                                                                                                           Working-age population, aged 15-64, above primary education (% of population with high education)
## 9590                                                                                                                                                                                        Working-age population, aged 15-64, primary education and below (% of population with low education)
## 9591                                                                                                                                                                                                                             Working-age population, aged 15-64, male (% of male population)
## 9592                                                                                                                                                                                                                           Working-age population, aged 15-64, rural (% of rural population)
## 9593                                                                                                                                                                                                                           Working-age population, aged 15-64, urban (% of urban population)
## 9594                                                                                                                                                                                                                           Working-age population, aged 15-64, total (% of total population)
## 9595                                                                                                                                                                                                                                      Population aged 25-64, female (% of female population)
## 9596                                                                                                                                                                                                        Population aged 25-64, above primary education (% of population with high edcuation)
## 9597                                                                                                                                                                                                     Population aged 25-64, primary education and below (% of population with low edcuation)
## 9598                                                                                                                                                                                                                                          Population aged 25-64, male (% of male population)
## 9599                                                                                                                                                                                                                                        Population aged 25-64, rural (% of rural population)
## 9600                                                                                                                                                                                                                                        Population aged 25-64, urban (% of urban population)
## 9601                                                                                                                                                                                                                                        Population aged 25-64, total (% of total population)
## 9602                                                                                                                                                                                                                               Population aged 65 and above, female (% of female population)
## 9603                                                                                                                                                                                                 Population aged 65 and above, above primary education (% of population with high edcuation)
## 9604                                                                                                                                                                                              Population aged 65 and above, primary education and below (% of population with low edcuation)
## 9605                                                                                                                                                                                                                                   Population aged 65 and above, male (% of male population)
## 9606                                                                                                                                                                                                                                 Population aged 65 and above, rural (% of rural population)
## 9607                                                                                                                                                                                                                                 Population aged 65 and above, urban (% of urban population)
## 9608                                                                                                                                                                                                                                 Population aged 65 and above, total (% of total population)
## 9609                                                                                                                                                                                                                                                      Dependency rate, all compared to 15-64
## 9610                                                                                                                                                                                                                                  Old age dependency rate, adulter than 64 compared to 15-64
## 9611                                                                                                                                                                                                                                    Youth dependency rate, younger than 15 compared to 15-64
## 9612                                                                                                                                                                                                    Working-age population with no education, female (% of female population in working age)
## 9613                                                                                                                                                                   Working-age population with no education, primary education and below (% of population with low education in working age)
## 9614                                                                                                                                                                                                        Working-age population with no education, male (% of male population in working age)
## 9615                                                                                                                                                                                                           Working-age population with no education, aged 25-64 (% of population aged 25-64)
## 9616                                                                                                                                                                                                      Working-age population with no education, rural (% of rural population in working age)
## 9617                                                                                                                                                                                                      Working-age population with no education, urban (% of urban population in working age)
## 9618                                                                                                                                                                                                           Working-age population with no education, aged 15-24 (% of population aged 15-24)
## 9619                                                                                                                                                                                                      Working-age population with no education, total (% of total population in working age)
## 9620                                                                                                                                                                                               Working-age population with primary education, female (% of female population in working age)
## 9621                                                                                                                                                              Working-age population with primary education, primary education and below (% of population with low education in working age)
## 9622                                                                                                                                                                                                   Working-age population with primary education, male (% of male population in working age)
## 9623                                                                                                                                                                                                      Working-age population with primary education, aged 25-64 (% of population aged 25-64)
## 9624                                                                                                                                                                                                 Working-age population with primary education, rural (% of rural population in working age)
## 9625                                                                                                                                                                                                 Working-age population with primary education, urban (% of urban population in working age)
## 9626                                                                                                                                                                                                      Working-age population with primary education, aged 15-24 (% of population aged 15-24)
## 9627                                                                                                                                                                                                 Working-age population with primary education, total (% of total population in working age)
## 9628                                                                                                                                                                                             Working-age population with secondary education, female (% of female population in working age)
## 9629                                                                                                                                                               Working-age population with secondary education, above primary education (% of population with high education in working age)
## 9630                                                                                                                                                                                                 Working-age population with secondary education, male (% of male population in working age)
## 9631                                                                                                                                                                                                    Working-age population with secondary education, aged 25-64 (% of population aged 25-64)
## 9632                                                                                                                                                                                        Working-age population with post-secondary education, female (% of female population in working age)
## 9633                                                                                                                                                          Working-age population with post-secondary education, above primary education (% of population with high education in working age)
## 9634                                                                                                                                                                                            Working-age population with post-secondary education, male (% of male population in working age)
## 9635                                                                                                                                                                                               Working-age population with post-secondary education, aged 25-64 (% of population aged 25-64)
## 9636                                                                                                                                                                                          Working-age population with post-secondary education, rural (% of rural population in working age)
## 9637                                                                                                                                                                                          Working-age population with post-secondary education, urban (% of urban population in working age)
## 9638                                                                                                                                                                                               Working-age population with post-secondary education, aged 15-24 (% of population aged 15-24)
## 9639                                                                                                                                                                                          Working-age population with post-secondary education, total (% of total population in working age)
## 9640                                                                                                                                                                                               Working-age population with secondary education, rural (% of rural population in working age)
## 9641                                                                                                                                                                                               Working-age population with secondary education, urban (% of urban population in working age)
## 9642                                                                                                                                                                                                    Working-age population with secondary education, aged 15-24 (% of population aged 15-24)
## 9643                                                                                                                                                                                               Working-age population with secondary education, total (% of total population in working age)
## 9644                                                                                                                                                                                                                                                                     Total sample population
## 9645                                                                                                                                                                                                                                                             Total sample population, female
## 9646                                                                                                                                                                                                                                            Total sample population, above primary education
## 9647                                                                                                                                                                                                                                        Total sample population, primary education and below
## 9648                                                                                                                                                                                                                                                               Total sample population, male
## 9649                                                                                                                                                                                                                                                         Total sample population, aged 25-64
## 9650                                                                                                                                                                                                                                                              Total sample population, rural
## 9651                                                                                                                                                                                                                                                              Total sample population, urban
## 9652                                                                                                                                                                                                                                                         Total sample population, aged 15-24
## 9653                                                                                                                                                                                                                                           Urban population, female (% of female population)
## 9654                                                                                                                                                                                                             Urban population, above primary education (% of population with high education)
## 9655                                                                                                                                                                                                          Urban population, primary education and below (% of population with low education)
## 9656                                                                                                                                                                                                                                               Urban population, male (% of male population)
## 9657                                                                                                                                                                                                                                   Urban population, aged 25-64 (% of population aged 25-64)
## 9658                                                                                                                                                                                                                                   Urban population, aged 15-24 (% of population aged 15-24)
## 9659                                                                                                                                                                                                                                             Urban population, total (% of total population)
## 9660                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, total
## 9661                                                                                                                                                                                                                            Average age of workers in the service sector, aged 15-64, female
## 9662                                                                                                                                                                                                           Average age of workers in the service sector, aged 15-64, above primary education
## 9663                                                                                                                                                                                                       Average age of workers in the service sector, aged 15-64, primary education and below
## 9664                                                                                                                                                                                                                              Average age of workers in the service sector, aged 15-64, male
## 9665                                                                                                                                                                                                                                    Average age of workers in the service sector, aged 25-64
## 9666                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, rural
## 9667                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, urban
## 9668                                                                                                                                                                                                                                    Average age of workers in the service sector, aged 15-24
## 9669                                                                                                                                                                                                 Wage employment in services, aged 15-64, female (% of female workers in the service sector)
## 9670                                                                                                                                                                   Wage employment in services, aged 15-64, above primary education (% of workers with high education in the service sector)
## 9671                                                                                                                                                                Wage employment in services, aged 15-64, primary education and below (% of workers with low education in the service sector)
## 9672                                                                                                                                                                                                     Wage employment in services, aged 15-64, male (% of male workers in the service sector)
## 9673                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, total
## 9674                                                                                                                                                                                                  Median earnings per month in the service sector, aged 15-64, local currency values, female
## 9675                                                                                                                                                                                 Median earnings per month in the service sector, aged 15-64, local currency values, above primary education
## 9676                                                                                                                                                                             Median earnings per month in the service sector, aged 15-64, local currency values, primary education and below
## 9677                                                                                                                                                                                                    Median earnings per month in the service sector, aged 15-64, local currency values, male
## 9678                                                                                                                                                                                                          Median earnings per month in the service sector, aged 25-64, local currency values
## 9679                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, rural
## 9680                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, urban
## 9681                                                                                                                                                                                                          Median earnings per month in the service sector, aged 15-24, local currency values
## 9682                                                                                                                                                                                                     Wage employment in services, aged 25-64 (% of workers aged 25-64 in the service sector)
## 9683                                                                                                                                                                                                   Wage employment in services, aged 15-64, rural (% of rural workers in the service sector)
## 9684                                                                                                                                                                                                   Wage employment in services, aged 15-64, urban (% of urban workers in the service sector)
## 9685                                                                                                                                                                                                     Wage employment in services, aged 15-24 (% of workers aged 15-24 in the service sector)
## 9686                                                                                                                                                                                                   Wage employment in services, aged 15-64, total (% of total workers in the service sector)
## 9687                                                                                                                                                                                                                                            Average weekly working hours, aged 15-64, female
## 9688                                                                                                                                                                                                                           Average weekly working hours, aged 15-64, above primary education
## 9689                                                                                                                                                                                                                       Average weekly working hours, aged 15-64, primary education and below
## 9690                                                                                                                                                                                                                                              Average weekly working hours, aged 15-64, male
## 9691                                                                                                                                                                                                                                                    Average weekly working hours, aged 25-64
## 9692                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, rural
## 9693                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, total
## 9694                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, urban
## 9695                                                                                                                                                                                                                                                    Average weekly working hours, aged 15-24
## 9696                                                                                                                                                                           Underemployment, less than 35 hours per week, aged 15-64, female (% of female employed population in working age)
## 9697                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9698                                                                                                                                          Underemployment, less than 35 hours per week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9699                                                                                                                                                                               Underemployment, less than 35 hours per week, aged 15-64, male (% of male employed population in working age)
## 9700                                                                                                                                                                                              Underemployment, less than 35 hours per week, aged 25-64 (% of employed population aged 25-64)
## 9701                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, rural (% of rural employed population in working age)
## 9702                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, urban (% of urban employed population in working age)
## 9703                                                                                                                                                                                              Underemployment, less than 35 hours per week, aged 15-24 (% of employed population aged 15-24)
## 9704                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, total (% of total employed population in working age)
## 9705                                                                                                                                                                   Excessive working hours, more than 48 hours per week, aged 15-64, female (% of female employed population in working age)
## 9706                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9707                                                                                                                                  Excessive working hours, more than 48 hours per week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9708                                                                                                                                                                       Excessive working hours, more than 48 hours per week, aged 15-64, male (% of male employed population in working age)
## 9709                                                                                                                                                                                      Excessive working hours, more than 48 hours per week, aged 25-64 (% of employed population aged 25-64)
## 9710                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, rural (% of rural employed population in working age)
## 9711                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, urban (% of urban employed population in working age)
## 9712                                                                                                                                                                                      Excessive working hours, more than 48 hours per week, aged 15-24 (% of employed population aged 15-24)
## 9713                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, total (% of total employed population in working age)
## 9714                                                                                                                                                                                                 Labor force participation rate, aged 15-64, female (% of female labor force in working age)
## 9715                                                                                                                                                                   Labor force participation rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9716                                                                                                                                                                Labor force participation rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9717                                                                                                                                                                                                     Labor force participation rate, aged 15-64, male (% of male labor force in working age)
## 9718                                                                                                                                                                                                                    Labor force participation rate, aged 25-64 (% of labor force aged 25-64)
## 9719                                                                                                                                                                                                   Labor force participation rate, aged 15-64, rural (% of rural labor force in working age)
## 9720                                                                                                                                                                                                   Labor force participation rate, aged 15-64, urban (% of urban labor force in working age)
## 9721                                                                                                                                                                                                                    Labor force participation rate, aged 15-24 (% of labor force aged 15-24)
## 9722                                                                                                                                                                                                   Labor force participation rate, aged 15-64, total (% of total labor force in working age)
## 9723                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, total
## 9724                                                                                                                                                                                                                                         Total labor force in the sample, aged 15-64, female
## 9725                                                                                                                                                                                                                        Total labor force in the sample, aged 15-64, above primary education
## 9726                                                                                                                                                                                                                    Total labor force in the sample, aged 15-64, primary education and below
## 9727                                                                                                                                                                                                                                           Total labor force in the sample, aged 15-64, male
## 9728                                                                                                                                                                                                                                                 Total labor force in the sample, aged 25-64
## 9729                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, rural
## 9730                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, urban
## 9731                                                                                                                                                                                                                                                 Total labor force in the sample, aged 15-24
## 9732                                                                                                                                                                                                                 Youth unemployment rate, aged 15-24, female (% of female youth labor force)
## 9733                                                                                                                                                                                   Youth unemployment rate, aged 15-24, above primary education (% of youth labor force with high education)
## 9734                                                                                                                                                                                Youth unemployment rate, aged 15-24, primary education and below (% of youth labor force with low education)
## 9735                                                                                                                                                                                                                     Youth unemployment rate, aged 15-24, male (% of male youth labor force)
## 9736                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, rural (% of rural youth labor force)
## 9737                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, urban (% of urban youth labor force)
## 9738                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, total (% of total youth labor force)
## 9739                                                                                                                                                                                                              Unemployment rate, aged 15-64, female (% of female labor force in working age)
## 9740                                                                                                                                                                                Unemployment rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9741                                                                                                                                                                             Unemployment rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9742                                                                                                                                                                                                                  Unemployment rate, aged 15-64, male (% of male labor force in working age)
## 9743                                                                                                                                                                                                                                 Unemployment rate, aged 25-64 (% of labor force aged 25-64)
## 9744                                                                                                                                                                                                                Unemployment rate, aged 15-64, rural (% of rural labor force in working age)
## 9745                                                                                                                                                                                                                Unemployment rate, aged 15-64, urban (% of urban labor force in working age)
## 9746                                                                                                                                                                                                                                 Unemployment rate, aged 15-24 (% of labor force aged 15-24)
## 9747                                                                                                                                                                                                                Unemployment rate, aged 15-64, total (% of total labor force in working age)
## 9748                                                                                                                                                                                                     Youth not in employment or education, aged 15-24, female (% of female youth population)
## 9749                                                                                                                                                                       Youth not in employment or education, aged 15-24, above primary education (% of youth population with high education)
## 9750                                                                                                                                                                    Youth not in employment or education, aged 15-24, primary education and below (% of youth population with low education)
## 9751                                                                                                                                                                                                         Youth not in employment or education, aged 15-24, male (% of male youth population)
## 9752                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, rural (% of rural youth population)
## 9753                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, urban (% of urban youth population)
## 9754                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, total (% of total youth population)
## 9755                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, total
## 9756                                                                                                                                                                                                                         Female to male gender wage gap, aged 15-64, above primary education
## 9757                                                                                                                                                                                                                     Female to male gender wage gap, aged 15-64, primary education and below
## 9758                                                                                                                                                                                                                                                  Female to male gender wage gap, aged 25-64
## 9759                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, rural
## 9760                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, urban
## 9761                                                                                                                                                                                                                                                  Female to male gender wage gap, aged 15-24
## 9762                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, total
## 9763                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, total
## 9764                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, total
## 9765                                                                                                                                                                                                        Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, female
## 9766                                                                                                                                                                                                                         Median earnings per hour, aged 15-64, local currency values, female
## 9767                                                                                                                                                                                                        Median earnings per hour, aged 15-64, deflated to 2010 local currency values, female
## 9768                                                                                                                                                                                       Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, above primary education
## 9769                                                                                                                                                                                                        Median earnings per hour, aged 15-64, local currency values, above primary education
## 9770                                                                                                                                                                                       Median earnings per hour, aged 15-64, deflated to 2010 local currency values, above primary education
## 9771                                                                                                                                                                                   Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, primary education and below
## 9772                                                                                                                                                                                                    Median earnings per hour, aged 15-64, local currency values, primary education and below
## 9773                                                                                                                                                                                   Median earnings per hour, aged 15-64, deflated to 2010 local currency values, primary education and below
## 9774                                                                                                                                                                                                          Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, male
## 9775                                                                                                                                                                                                                           Median earnings per hour, aged 15-64, local currency values, male
## 9776                                                                                                                                                                                                          Median earnings per hour, aged 15-64, deflated to 2010 local currency values, male
## 9777                                                                                                                                                                                                                Real median earnings per hour, aged 25-64, deflated to 2010 and PPP adjusted
## 9778                                                                                                                                                                                                                                 Median earnings per hour, aged 25-64, local currency values
## 9779                                                                                                                                                                                                                Median earnings per hour, aged 25-64, deflated to 2010 local currency values
## 9780                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, rural
## 9781                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, rural
## 9782                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, rural
## 9783                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, urban
## 9784                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, urban
## 9785                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, urban
## 9786                                                                                                                                                                                                                Real median earnings per hour, aged 15-24, deflated to 2010 and PPP adjusted
## 9787                                                                                                                                                                                                                                 Median earnings per hour, aged 15-24, local currency values
## 9788                                                                                                                                                                                                                Median earnings per hour, aged 15-24, deflated to 2010 local currency values
## 9789                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, total
## 9790                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, total
## 9791                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, total
## 9792                                                                                                                                                                                                       Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, female
## 9793                                                                                                                                                                                                                        Median earnings per month, aged 15-64, local currency values, female
## 9794                                                                                                                                                                                                       Median earnings per month, aged 15-64, deflated to 2010 local currency values, female
## 9795                                                                                                                                                                                      Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, above primary education
## 9796                                                                                                                                                                                                       Median earnings per month, aged 15-64, local currency values, above primary education
## 9797                                                                                                                                                                                      Median earnings per month, aged 15-64, deflated to 2010 local currency values, above primary education
## 9798                                                                                                                                                                                  Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, primary education and below
## 9799                                                                                                                                                                                                   Median earnings per month, aged 15-64, local currency values, primary education and below
## 9800                                                                                                                                                                                  Median earnings per month, aged 15-64, deflated to 2010 local currency values, primary education and below
## 9801                                                                                                                                                                                                         Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, male
## 9802                                                                                                                                                                                                                          Median earnings per month, aged 15-64, local currency values, male
## 9803                                                                                                                                                                                                         Median earnings per month, aged 15-64, deflated to 2010 local currency values, male
## 9804                                                                                                                                                                                                               Real median earnings per month, aged 25-64, deflated to 2010 and PPP adjusted
## 9805                                                                                                                                                                                                                                Median earnings per month, aged 25-64, local currency values
## 9806                                                                                                                                                                                                               Median earnings per month, aged 25-64, deflated to 2010 local currency values
## 9807                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, rural
## 9808                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, rural
## 9809                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, rural
## 9810                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, urban
## 9811                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, urban
## 9812                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, urban
## 9813                                                                                                                                                                                                               Real median earnings per month, aged 15-24, deflated to 2010 and PPP adjusted
## 9814                                                                                                                                                                                                                                Median earnings per month, aged 15-24, local currency values
## 9815                                                                                                                                                                                                               Median earnings per month, aged 15-24, deflated to 2010 local currency values
## 9816                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, total
## 9817                                                                                                                                                                                                                                              Public to private wage gap, aged 15-64, female
## 9818                                                                                                                                                                                                                             Public to private wage gap, aged 15-64, above primary education
## 9819                                                                                                                                                                                                                         Public to private wage gap, aged 15-64, primary education and below
## 9820                                                                                                                                                                                                                                                Public to private wage gap, aged 15-64, male
## 9821                                                                                                                                                                                                                                                      Public to private wage gap, aged 25-64
## 9822                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, rural
## 9823                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, urban
## 9824                                                                                                                                                                                                                                                      Public to private wage gap, aged 15-24
## 9825                                                                                                                                                                                        Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits)
## 9826                                                                                                                                                                                                                                Coverage of unemployment benefits and ALMP (% of population)
## 9827                                                                                                                                                                                                 Generosity of unemployment benefits and ALMP (% of total welfare of beneficiary households)
## 9828                                                                                                                                                                                                                                                                         Total Area (in Km²)
## 9829                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 9830                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 9831                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 2nd Grade
## 9832                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 3rd Grade
## 9833                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Bamanankan. 2nd Grade
## 9834                                                                                                                                                                                                                          EGRA: Correct Letter Names Read Per Minute (Mean). Bomu. 2nd Grade
## 9835                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 2nd Grade
## 9836                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 4th Grade
## 9837                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 2nd Grade
## 9838                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 3rd Grade
## 9839                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 4th Grade
## 9840                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Fulfulde. 2nd Grade
## 9841                                                                                                                                                                                                                        EGRA: Correct Letter Names Read Per Minute (Mean). French. 3rd Grade
## 9842                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 2nd Grade
## 9843                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 3rd Grade
## 9844                                                                                                                                                                                                                  EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 9845                                                                                                                                                                                                                  EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 9846                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Songhoi. 2nd Grade
## 9847                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 2nd Grade
## 9848                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 3rd Grade
## 9849                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 2nd Grade
## 9850                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 3rd Grade
## 9851                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 4th Grade
## 9852                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 2nd Grade
## 9853                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 3rd Grade
## 9854                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Akuapem. 2nd Grade
## 9855                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 2nd Grade
## 9856                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 3rd Grade
## 9857                                                                                                                                                                                                                   EGRA: Correct Letter Sounds Read Per Minute (Mean). Asante Twi. 2nd Grade
## 9858                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Chitonga. 2nd Grade
## 9859                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Cinyanja. 2nd Grade
## 9860                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagaare. 2nd Grade
## 9861                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagbani. 2nd Grade
## 9862                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Dangme. 2nd Grade
## 9863                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 2nd Grade
## 9864                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 3rd Grade
## 9865                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 4th Grade
## 9866                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 6th Grade
## 9867                                                                                                                                                                                                                          EGRA: Correct Letter Sounds Read Per Minute (Mean). Ewe. 2nd Grade
## 9868                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Fante. 2nd Grade
## 9869                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Filipino. 3rd Grade
## 9870                                                                                                                                                                                                                           EGRA: Correct Letter Sounds Read Per Minute (Mean). Ga. 2nd Grade
## 9871                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Gonja. 2nd Grade
## 9872                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Icibemba. 2nd Grade
## 9873                                                                                                                                                                                                                   EGRA: Correct Letter Sounds Read Per Minute (Mean). Indonesian. 2nd Grade
## 9874                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Kasem. 2nd Grade
## 9875                                                                                                                                                                                                                    EGRA: Correct Letter Sounds Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 9876                                                                                                                                                                                                                  EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 9877                                                                                                                                                                                                                  EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 9878                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Lunda. 2nd Grade
## 9879                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Luvale. 2nd Grade
## 9880                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Nzema. 2nd Grade
## 9881                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Silozi. 2nd Grade
## 9882                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 9883                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 9884                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 2nd Grade
## 9885                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 3rd Grade
## 9886                                                                                                                                                                                                                      EGRA: Correct Isolated Words Read Per Minute (Mean). Arabic. 2nd Grade
## 9887                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 9888                                                                                                                                                                                                                        EGRA: Correct Isolated Words Read Per Minute (Mean). Bomu. 2nd Grade
## 9889                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 9890                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 4th Grade
## 9891                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 2nd Grade
## 9892                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 3rd Grade
## 9893                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 4th Grade
## 9894                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 6th Grade
## 9895                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 9896                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Filipino. 3rd Grade
## 9897                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 9898                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 9899                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 9900                                                                                                                                                                                                                 EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 9901                                                                                                                                                                                                                 EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 9902                                                                                                                                                                                                                EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 9903                                                                                                                                                                                                                EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 9904                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 9905                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 9906                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 9907                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 2nd Grade
## 9908                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 3rd Grade
## 9909                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 4th Grade
## 9910                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 9911                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 9912                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 9913                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 9914                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Akuapem. 2nd Grade
## 9915                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 2nd Grade
## 9916                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 3rd Grade
## 9917                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 2nd Grade
## 9918                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 3rd Grade
## 9919                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 9920                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9921                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bomu. 2nd Grade
## 9922                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9923                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 4th Grade
## 9924                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chitonga. 2nd Grade
## 9925                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 9926                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagaare. 2nd Grade
## 9927                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagbani. 2nd Grade
## 9928                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dangme. 2nd Grade
## 9929                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 2nd Grade
## 9930                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 3rd Grade
## 9931                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 4th Grade
## 9932                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 6th Grade
## 9933                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ewe. 2nd Grade
## 9934                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fante. 2nd Grade
## 9935                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 9936                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Filipino. 3rd Grade
## 9937                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). French. 3rd Grade
## 9938                                                                                                                                                                                                         EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ga. 2nd Grade
## 9939                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Gonja. 2nd Grade
## 9940                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 2nd Grade
## 9941                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 3rd Grade
## 9942                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Icibemba. 2nd Grade
## 9943                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Indonesian. 2nd Grade
## 9944                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kasem. 2nd Grade
## 9945                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 9946                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 9947                                                                                                                                                                                                EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 9948                                                                                                                                                                                                EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 9949                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Lunda. 2nd Grade
## 9950                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Luvale. 2nd Grade
## 9951                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Nzema. 2nd Grade
## 9952                                                                                                                                                                                               EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 9953                                                                                                                                                                                               EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 9954                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Silozi. 2nd Grade
## 9955                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Songhoi. 2nd Grade
## 9956                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 2nd Grade
## 9957                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 3rd Grade
## 9958                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 2nd Grade
## 9959                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 3rd Grade
## 9960                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 4th Grade
## 9961                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 9962                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 9963                                                                                                                                                                 EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9964                                                                                                                                                                       EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bomu. 2nd Grade
## 9965                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9966                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 4th Grade
## 9967                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 2nd Grade
## 9968                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 3rd Grade
## 9969                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 4th Grade
## 9970                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 6th Grade
## 9971                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 9972                                                                                                                                                                EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 9973                                                                                                                                                                EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 9974                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Songhoi. 2nd Grade
## 9975                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 2nd Grade
## 9976                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 3rd Grade
## 9977                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 4th Grade
## 9978                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 9979                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 9980                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade
## 9981                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade
## 9982                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade
## 9983                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade
## 9984                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade
## 9985                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 9986                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9987                                                                                                                                                                                                    EGRA: Listening Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade
## 9988                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9989                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade
## 9990                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade
## 9991                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 9992                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade
## 9993                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade
## 9994                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade
## 9995                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 2nd Grade
## 9996                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 3rd Grade
## 9997                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 4th Grade
## 9998                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 6th Grade
## 9999                                                                                                                                                                                                     EGRA: Listening Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade
## 10000                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Fante. 2nd Grade
## 10001                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 10002                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade
## 10003                                                                                                                                                                                                     EGRA: Listening Comprehension - Share of students with a zero score (%). Ga. 2nd Grade
## 10004                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade
## 10005                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade
## 10006                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade
## 10007                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade
## 10008                                                                                                                                                                                             EGRA: Listening Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade
## 10009                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade
## 10010                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 10011                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 10012                                                                                                                                                                                            EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 10013                                                                                                                                                                                            EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 10014                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade
## 10015                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade
## 10016                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade
## 10017                                                                                                                                                                                           EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 10018                                                                                                                                                                                           EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 10019                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade
## 10020                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade
## 10021                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade
## 10022                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade
## 10023                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade
## 10024                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade
## 10025                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 4th Grade
## 10026                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 10027                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 10028                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 10029                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 10030                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Akuapem. 2nd Grade
## 10031                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 2nd Grade
## 10032                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 3rd Grade
## 10033                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 2nd Grade
## 10034                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 3rd Grade
## 10035                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Asante Twi. 2nd Grade
## 10036                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 10037                                                                                                                                                                                                                            EGRA: Correct Non-Words Read Per Minute (Mean). Bomu. 2nd Grade
## 10038                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 10039                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 4th Grade
## 10040                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chitonga. 2nd Grade
## 10041                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Cinyanja. 2nd Grade
## 10042                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Dagaare. 2nd Grade
## 10043                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Dagbani. 2nd Grade
## 10044                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Dangme. 2nd Grade
## 10045                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 2nd Grade
## 10046                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 3rd Grade
## 10047                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 4th Grade
## 10048                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 6th Grade
## 10049                                                                                                                                                                                                                             EGRA: Correct Non-Words Read Per Minute (Mean). Ewe. 2nd Grade
## 10050                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Fante. 2nd Grade
## 10051                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 10052                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Filipino. 3rd Grade
## 10053                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). French. 3rd Grade
## 10054                                                                                                                                                                                                                              EGRA: Correct Non-Words Read Per Minute (Mean). Ga. 2nd Grade
## 10055                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Gonja. 2nd Grade
## 10056                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 10057                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 10058                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Icibemba. 2nd Grade
## 10059                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Indonesian. 2nd Grade
## 10060                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Kasem. 2nd Grade
## 10061                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 10062                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 10063                                                                                                                                                                                                                     EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 10064                                                                                                                                                                                                                     EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 10065                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Lunda. 2nd Grade
## 10066                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Luvale. 2nd Grade
## 10067                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Nzema. 2nd Grade
## 10068                                                                                                                                                                                                                    EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 10069                                                                                                                                                                                                                    EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 10070                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Silozi. 2nd Grade
## 10071                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 10072                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 10073                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 10074                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 2nd Grade
## 10075                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 3rd Grade
## 10076                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 4th Grade
## 10077                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 10078                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 10079                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 10080                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 10081                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Akuapem. 2nd Grade
## 10082                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 2nd Grade
## 10083                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 3rd Grade
## 10084                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 2nd Grade
## 10085                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 3rd Grade
## 10086                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Asante Twi. 2nd Grade
## 10087                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 10088                                                                                                                                                                                                         EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bomu. 2nd Grade
## 10089                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 10090                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 4th Grade
## 10091                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chitonga. 2nd Grade
## 10092                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Cinyanja. 2nd Grade
## 10093                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagaare. 2nd Grade
## 10094                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagbani. 2nd Grade
## 10095                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dangme. 2nd Grade
## 10096                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 2nd Grade
## 10097                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 3rd Grade
## 10098                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 4th Grade
## 10099                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 6th Grade
## 10100                                                                                                                                                                                                          EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ewe. 2nd Grade
## 10101                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fante. 2nd Grade
## 10102                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 10103                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Filipino. 3rd Grade
## 10104                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). French. 3rd Grade
## 10105                                                                                                                                                                                                           EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ga. 2nd Grade
## 10106                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Gonja. 2nd Grade
## 10107                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 10108                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 10109                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Icibemba. 2nd Grade
## 10110                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Indonesian. 2nd Grade
## 10111                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kasem. 2nd Grade
## 10112                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 10113                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 10114                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 10115                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 10116                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Lunda. 2nd Grade
## 10117                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Luvale. 2nd Grade
## 10118                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Nzema. 2nd Grade
## 10119                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 10120                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 10121                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Silozi. 2nd Grade
## 10122                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 10123                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 10124                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 10125                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 2nd Grade
## 10126                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 3rd Grade
## 10127                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 4th Grade
## 10128                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 10129                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 10130                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 10131                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 10132                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade
## 10133                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade
## 10134                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade
## 10135                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade
## 10136                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade
## 10137                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 10138                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 10139                                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade
## 10140                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade
## 10141                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade
## 10142                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade
## 10143                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 10144                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade
## 10145                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade
## 10146                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade
## 10147                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 2nd Grade
## 10148                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 3rd Grade
## 10149                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 4th Grade
## 10150                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 6th Grade
## 10151                                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade
## 10152                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Fante. 2nd Grade
## 10153                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 10154                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade
## 10155                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). French. 3rd Grade
## 10156                                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students with a zero score (%). Ga. 2nd Grade
## 10157                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade
## 10158                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade
## 10159                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade
## 10160                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade
## 10161                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade
## 10162                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade
## 10163                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 10164                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 10165                                                                                                                                                                                              EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 10166                                                                                                                                                                                              EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 10167                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade
## 10168                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade
## 10169                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade
## 10170                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 10171                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 10172                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade
## 10173                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade
## 10174                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade
## 10175                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade
## 10176                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade
## 10177                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade
## 10178                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 4th Grade
## 10179                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 10180                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 10181                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 2nd Grade
## 10182                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 3rd Grade
## 10183                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Akuapem. 2nd Grade
## 10184                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 2nd Grade
## 10185                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 3rd Grade
## 10186                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 2nd Grade
## 10187                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 3rd Grade
## 10188                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Asante Twi. 2nd Grade
## 10189                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bamanankan. 2nd Grade
## 10190                                                                                                                                                                                           EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bomu. 2nd Grade
## 10191                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 2nd Grade
## 10192                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 4th Grade
## 10193                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chitonga. 2nd Grade
## 10194                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Cinyanja. 2nd Grade
## 10195                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagaare. 2nd Grade
## 10196                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagbani. 2nd Grade
## 10197                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dangme. 2nd Grade
## 10198                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 2nd Grade
## 10199                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 3rd Grade
## 10200                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 4th Grade
## 10201                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 6th Grade
## 10202                                                                                                                                                                                            EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ewe. 2nd Grade
## 10203                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fante. 2nd Grade
## 10204                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fulfulde. 2nd Grade
## 10205                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Filipino. 3rd Grade
## 10206                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). French. 3rd Grade
## 10207                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ga. 2nd Grade
## 10208                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Gonja. 2nd Grade
## 10209                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 2nd Grade
## 10210                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 3rd Grade
## 10211                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Icibemba. 2nd Grade
## 10212                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Indonesian. 2nd Grade
## 10213                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kasem. 2nd Grade
## 10214                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiikaonde. 2nd Grade
## 10215                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiswahili. 2nd Grade
## 10216                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 4th Grade
## 10217                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 6th Grade
## 10218                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Lunda. 2nd Grade
## 10219                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Luvale. 2nd Grade
## 10220                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Nzema. 2nd Grade
## 10221                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 2nd Grade
## 10222                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 3rd Grade
## 10223                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Silozi. 2nd Grade
## 10224                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Songhoi. 2nd Grade
## 10225                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 2nd Grade
## 10226                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 3rd Grade
## 10227                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 2nd Grade
## 10228                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 3rd Grade
## 10229                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 4th Grade
## 10230                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 2nd Grade
## 10231                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 3rd Grade
## 10232                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 3rd grade students, total
## 10233                                                                                                                                                                                                              LLECE: 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10234                                                                                                                                                                                                       LLECE: Female 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10235                                                                                                                                                                                                         LLECE: Male 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10236                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 1
## 10237                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 1
## 10238                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 1
## 10239                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 2
## 10240                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 2
## 10241                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 2
## 10242                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 3
## 10243                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 3
## 10244                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 3
## 10245                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 4
## 10246                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 4
## 10247                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 4
## 10248                                                                                                                                                                                                            LLECE: Mean performance on the mathematics scale for 3rd grade students, female
## 10249                                                                                                                                                                                                              LLECE: Mean performance on the mathematics scale for 3rd grade students, male
## 10250                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 10th Percentile Score
## 10251                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 25th Percentile Score
## 10252                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 50th Percentile Score
## 10253                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 75th Percentile Score
## 10254                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 90th Percentile Score
## 10255                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 4th grade students, total
## 10256                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score
## 10257                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score
## 10258                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score
## 10259                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score
## 10260                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score
## 10261                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 6th grade students, total
## 10262                                                                                                                                                                                                              LLECE: 6th grade students by mathematics proficiency level (%). Below Level 1
## 10263                                                                                                                                                                                                       LLECE: Female 6th grade students by mathematics proficiency level (%). Below Level 1
## 10264                                                                                                                                                                                                         LLECE: Male 6th grade students by mathematics proficiency level (%). Below Level 1
## 10265                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 1
## 10266                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 1
## 10267                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 1
## 10268                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 2
## 10269                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 2
## 10270                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 2
## 10271                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 3
## 10272                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 3
## 10273                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 3
## 10274                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 4
## 10275                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 4
## 10276                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 4
## 10277                                                                                                                                                                                                            LLECE: Mean performance on the mathematics scale for 6th grade students, female
## 10278                                                                                                                                                                                                              LLECE: Mean performance on the mathematics scale for 6th grade students, male
## 10279                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 10th Percentile Score
## 10280                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 25th Percentile Score
## 10281                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 50th Percentile Score
## 10282                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 75th Percentile Score
## 10283                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 90th Percentile Score
## 10284                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 3rd grade students, total
## 10285                                                                                                                                                                                                                  LLECE: 3rd grade students by reading proficiency level (%). Below Level 1
## 10286                                                                                                                                                                                                           LLECE: Female 3rd grade students by reading proficiency level (%). Below Level 1
## 10287                                                                                                                                                                                                             LLECE: Male 3rd grade students by reading proficiency level (%). Below Level 1
## 10288                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 1
## 10289                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 1
## 10290                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 1
## 10291                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 2
## 10292                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 2
## 10293                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 2
## 10294                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 3
## 10295                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 3
## 10296                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 3
## 10297                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 4
## 10298                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 4
## 10299                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 4
## 10300                                                                                                                                                                                                                LLECE: Mean performance on the reading scale for 3rd grade students, female
## 10301                                                                                                                                                                                                                  LLECE: Mean performance on the reading scale for 3rd grade students, male
## 10302                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 10th Percentile Score
## 10303                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 25th Percentile Score
## 10304                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 50th Percentile Score
## 10305                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 75th Percentile Score
## 10306                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 90th Percentile Score
## 10307                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 4th grade students, total
## 10308                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 10th Percentile Score
## 10309                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 25th Percentile Score
## 10310                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 50th Percentile Score
## 10311                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 75th Percentile Score
## 10312                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 90th Percentile Score
## 10313                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 6th grade students, total
## 10314                                                                                                                                                                                                                  LLECE: 6th grade students by reading proficiency level (%). Below Level 1
## 10315                                                                                                                                                                                                           LLECE: Female 6th grade students by reading proficiency level (%). Below Level 1
## 10316                                                                                                                                                                                                             LLECE: Male 6th grade students by reading proficiency level (%). Below Level 1
## 10317                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 1
## 10318                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 1
## 10319                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 1
## 10320                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 2
## 10321                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 2
## 10322                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 2
## 10323                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 3
## 10324                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 3
## 10325                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 3
## 10326                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 4
## 10327                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 4
## 10328                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 4
## 10329                                                                                                                                                                                                                LLECE: Mean performance on the reading scale for 6th grade students, female
## 10330                                                                                                                                                                                                                  LLECE: Mean performance on the reading scale for 6th grade students, male
## 10331                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 10th Percentile Score
## 10332                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 25th Percentile Score
## 10333                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 50th Percentile Score
## 10334                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 75th Percentile Score
## 10335                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 90th Percentile Score
## 10336                                                                                                                                                                                                                 LLECE: Mean performance on the science scale for 6th grade students, total
## 10337                                                                                                                                                                                                                  LLECE: 6th grade students by science proficiency level (%). Below Level 1
## 10338                                                                                                                                                                                                           LLECE: Female 6th grade students by science proficiency level (%). Below Level 1
## 10339                                                                                                                                                                                                             LLECE: Male 6th grade students by science proficiency level (%). Below Level 1
## 10340                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 1
## 10341                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 1
## 10342                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 1
## 10343                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 2
## 10344                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 2
## 10345                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 2
## 10346                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 3
## 10347                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 3
## 10348                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 3
## 10349                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 4
## 10350                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 4
## 10351                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 4
## 10352                                                                                                                                                                                                                LLECE: Mean performance on the science scale for 6th grade students, female
## 10353                                                                                                                                                                                                                  LLECE: Mean performance on the science scale for 6th grade students, male
## 10354                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 10th Percentile Score
## 10355                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 25th Percentile Score
## 10356                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 50th Percentile Score
## 10357                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 75th Percentile Score
## 10358                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 90th Percentile Score
## 10359                                                                                                                                                                                                                       PASEC: Distribution of 5th Grade French Scores: 5th Percentile Score
## 10360                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 10th Percentile Score
## 10361                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 25th Percentile Score
## 10362                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 50th Percentile Score
## 10363                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 75th Percentile Score
## 10364                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 90th Percentile Score
## 10365                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 95th Percentile Score
## 10366                                                                                                                                                                                            PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Total
## 10367                                                                                                                                                                                           PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Female
## 10368                                                                                                                                                             PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), total
## 10369                                                                                                                                                            PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), female
## 10370                                                                                                                                                              PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), male
## 10371                                                                                                                                                    PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), total
## 10372                                                                                                                                                   PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), female
## 10373                                                                                                                                                     PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), male
## 10374                                                                                                                                                                                             PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Male
## 10375                                                                                                                                                                                                             PASEC: Mean performance on the mathematics scale for 2nd grade students. Total
## 10376                                                                                                                                                                                                     PASEC: Percentage of 2nd grade students correcting answering the addition problem: 8+5
## 10377                                                                                                                                                                                                   PASEC: Percentage of 2nd grade students correcting answering the addition problem: 14+23
## 10378                                                                                                                                                                                                   PASEC: Percentage of 2nd grade students correcting answering the addition problem: 39+26
## 10379                                                                                                                                                                                           PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 0 to 60
## 10380                                                                                                                                                                                          PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 61 to 80
## 10381                                                                                                                                                                                               PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 80+
## 10382                                                                                                                                                                                                            PASEC: Mean performance on the mathematics scale for 2nd grade students. Female
## 10383                                                                                                                                                                                                              PASEC: 2nd grade students by mathematics proficiency level (%). Below Level 1
## 10384                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 1
## 10385                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 2
## 10386                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 3
## 10387                                                                                                                                                                                                              PASEC: Mean performance on the mathematics scale for 2nd grade students. Male
## 10388                                                                                                                                                                                  PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Mathematics
## 10389                                                                                                                                                                           PASEC: Mean performance on the mathematics scale for 2nd grade students who did not attend pre-primary education
## 10390                                                                                                                                                                                                                  PASEC: Distribution of 2nd grade mathematics scores: 5th Percentile Score
## 10391                                                                                                                                                                                                                  PASEC: Distribution of 2nd grade mathematics scores: 1st Percentile Score
## 10392                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 10th Percentile Score
## 10393                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 25th Percentile Score
## 10394                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 50th Percentile Score
## 10395                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 75th Percentile Score
## 10396                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 90th Percentile Score
## 10397                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 95th Percentile Score
## 10398                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 99th Percentile Score
## 10399                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale for 2nd grade students who attended pre-primary education
## 10400                                                                                                                                                                   PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Mathematics
## 10401                                                                                                                                                                                     PASEC: Average performance gap between 2nd grade students in private and public education. Mathematics
## 10402                                                                                                                                                                                            PASEC: Average performance gap between 2nd grade students in rural and urban areas. Mathematics
## 10403                                                                                                                                                                                                 PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 13-7
## 10404                                                                                                                                                                                                PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 34-11
## 10405                                                                                                                                                                                                PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 50-18
## 10406                                                                                                                                                                                                             PASEC: Mean performance on the mathematics scale for 6th grade students. Total
## 10407                                                                                                                                                                                                            PASEC: Mean performance on the mathematics scale for 6th grade students. Female
## 10408                                                                                                                                                                                                              PASEC: 6th grade students by mathematics proficiency level (%). Below Level 1
## 10409                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 1
## 10410                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 2
## 10411                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 3
## 10412                                                                                                                                                                                                              PASEC: Mean performance on the mathematics scale for 6th grade students. Male
## 10413                                                                                                                                                                                  PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Mathematics
## 10414                                                                                                                                                                           PASEC: Mean performance on the mathematics scale for 6th grade students who did not attend pre-primary education
## 10415                                                                                                                                                                                                                  PASEC: Distribution of 6th grade mathematics scores: 5th Percentile Score
## 10416                                                                                                                                                                                                                  PASEC: Distribution of 6th grade mathematics scores: 1st Percentile Score
## 10417                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 10th Percentile Score
## 10418                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 25th Percentile Score
## 10419                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 50th Percentile Score
## 10420                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 75th Percentile Score
## 10421                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 90th Percentile Score
## 10422                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 95th Percentile Score
## 10423                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 99th Percentile Score
## 10424                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale for 6th grade students who attended pre-primary education
## 10425                                                                                                                                                                   PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Mathematics
## 10426                                                                                                                                                                                     PASEC: Average performance gap between 6th grade students in private and public education. Mathematics
## 10427                                                                                                                                                                                            PASEC: Average performance gap between 6th grade students in rural and urban areas. Mathematics
## 10428                                                                                                                                                                                                                  PASEC: Distribution of 5th Grade Mathematics Scores: 5th Percentile Score
## 10429                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 10th Percentile Score
## 10430                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 25th Percentile Score
## 10431                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 50th Percentile Score
## 10432                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 75th Percentile Score
## 10433                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 90th Percentile Score
## 10434                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 95th Percentile Score
## 10435                                                                                                                                                                                                PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Total
## 10436                                                                                                                                                                                               PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Female
## 10437                                                                                                                                                                 PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), total
## 10438                                                                                                                                                                PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), female
## 10439                                                                                                                                                                  PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), male
## 10440                                                                                                                                                        PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), total
## 10441                                                                                                                                                       PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), female
## 10442                                                                                                                                                         PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), male
## 10443                                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Male
## 10444                                                                                                                                                                                                                PASEC: Mean performance on the language scale for 2nd grade students. Total
## 10445                                                                                                                                                                                                               PASEC: Mean performance on the language scale for 2nd grade students. Female
## 10446                                                                                                                                                                                                                 PASEC: 2nd grade students by language proficiency level (%). Below Level 1
## 10447                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 1
## 10448                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 2
## 10449                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 3
## 10450                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 4
## 10451                                                                                                                                                                       PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 0 to 5 Letters
## 10452                                                                                                                                                                     PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 11 to 20 Letters
## 10453                                                                                                                                                                          PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 20+ Letters
## 10454                                                                                                                                                                      PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 6 to 10 Letters
## 10455                                                                                                                                                                                                                 PASEC: Mean performance on the language scale for 2nd grade students. Male
## 10456                                                                                                                                                                                     PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Language
## 10457                                                                                                                                                                              PASEC: Mean performance on the language scale for 2nd grade students who did not attend pre-primary education
## 10458                                                                                                                                                                                                                     PASEC: Distribution of 2nd grade language scores: 5th Percentile Score
## 10459                                                                                                                                                                                                                     PASEC: Distribution of 2nd grade language scores: 1st Percentile Score
## 10460                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 10th Percentile Score
## 10461                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 25th Percentile Score
## 10462                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 50th Percentile Score
## 10463                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 75th Percentile Score
## 10464                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 90th Percentile Score
## 10465                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 95th Percentile Score
## 10466                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 99th Percentile Score
## 10467                                                                                                                                                                                    PASEC: Mean performance on the language scale for 2nd grade students who attended pre-primary education
## 10468                                                                                                                                                                      PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Language
## 10469                                                                                                                                                                                        PASEC: Average performance gap between 2nd grade students in private and public education. Language
## 10470                                                                                                                                                                                               PASEC: Average performance gap between 2nd grade students in rural and urban areas. Language
## 10471                                                                                                                                                                                PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 0 Words
## 10472                                                                                                                                                                         PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 11 to 20 Words
## 10473                                                                                                                                                                           PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 1 to 5 Words
## 10474                                                                                                                                                                              PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 20+ Words
## 10475                                                                                                                                                                          PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 6 to 10 Words
## 10476                                                                                                                                                                                                                 PASEC: Mean performance on the reading scale for 6th grade students. Total
## 10477                                                                                                                                                                                                                PASEC: Mean performance on the reading scale for 6th grade students. Female
## 10478                                                                                                                                                                                                                  PASEC: 6th grade students by reading proficiency level (%). Below Level 1
## 10479                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 1
## 10480                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 2
## 10481                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 3
## 10482                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 4
## 10483                                                                                                                                                                                                                  PASEC: Mean performance on the reading scale for 6th grade students. Male
## 10484                                                                                                                                                                                      PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Reading
## 10485                                                                                                                                                                               PASEC: Mean performance on the reading scale for 6th grade students who did not attend pre-primary education
## 10486                                                                                                                                                                                                                      PASEC: Distribution of 6th grade reading scores: 5th Percentile Score
## 10487                                                                                                                                                                                                                      PASEC: Distribution of 6th grade reading scores: 1st Percentile Score
## 10488                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 10th Percentile Score
## 10489                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 25th Percentile Score
## 10490                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 50th Percentile Score
## 10491                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 75th Percentile Score
## 10492                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 90th Percentile Score
## 10493                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 95th Percentile Score
## 10494                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 99th Percentile Score
## 10495                                                                                                                                                                                     PASEC: Mean performance on the reading scale for 6th grade students who attended pre-primary education
## 10496                                                                                                                                                                       PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Reading
## 10497                                                                                                                                                                                         PASEC: Average performance gap between 6th grade students in private and public education. Reading
## 10498                                                                                                                                                                                                PASEC: Average performance gap between 6th grade students in rural and urban areas. Reading
## 10499                                                                                                                                                                                                                                              PIAAC: Mean Adult Literacy Proficiency. Total
## 10500                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 1
## 10501                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 2
## 10502                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 3
## 10503                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 4
## 10504                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 5
## 10505                                                                                                                                                                                                                             PIAAC: Adults by literacy proficiency level (%). Below Level 1
## 10506                                                                                                                                                                                                                                             PIAAC: Mean Adult Literacy Proficiency. Female
## 10507                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 1
## 10508                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 2
## 10509                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 3
## 10510                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 4
## 10511                                                                                                                                                                                                                        PIAAC: Female adults by literacy proficiency level (%). Level 4 & 5
## 10512                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 5
## 10513                                                                                                                                                                                                                      PIAAC: Female adults by literacy proficiency level (%). Below Level 1
## 10514                                                                                                                                                                                                                                               PIAAC: Mean Adult Literacy Proficiency. Male
## 10515                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 1
## 10516                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 2
## 10517                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 3
## 10518                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 4
## 10519                                                                                                                                                                                                                          PIAAC: Male adults by literacy proficiency level (%). Level 4 & 5
## 10520                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 5
## 10521                                                                                                                                                                                                                        PIAAC: Male adults by literacy proficiency level (%). Below Level 1
## 10522                                                                                                                                                                                                                         PIAAC: Distribution of Adult Literacy Scores: 5th Percentile Score
## 10523                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 10th Percentile Score
## 10524                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 25th Percentile Score
## 10525                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 50th Percentile Score
## 10526                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 75th Percentile Score
## 10527                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 90th Percentile Score
## 10528                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 95th Percentile Score
## 10529                                                                                                                                                                                                                                        PIAAC: Mean Young Adult Literacy Proficiency. Total
## 10530                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 1
## 10531                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 2
## 10532                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 3
## 10533                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 4
## 10534                                                                                                                                                                                                                         PIAAC: Young adults by literacy proficiency level (%). Level 4 & 5
## 10535                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 5
## 10536                                                                                                                                                                                                                       PIAAC: Young adults by literacy proficiency level (%). Below Level 1
## 10537                                                                                                                                                                                                                                       PIAAC: Mean Young Adult Literacy Proficiency. Female
## 10538                                                                                                                                                                                                                                         PIAAC: Mean Young Adult Literacy Proficiency. Male
## 10539                                                                                                                                                                                                                                              PIAAC: Mean Adult Numeracy Proficiency. Total
## 10540                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 1
## 10541                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 2
## 10542                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 3
## 10543                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 4
## 10544                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 5
## 10545                                                                                                                                                                                                                             PIAAC: Adults by numeracy proficiency level (%). Below Level 1
## 10546                                                                                                                                                                                                                                             PIAAC: Mean Adult Numeracy Proficiency. Female
## 10547                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 1
## 10548                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 2
## 10549                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 3
## 10550                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 4
## 10551                                                                                                                                                                                                                        PIAAC: Female adults by numeracy proficiency level (%). Level 4 & 5
## 10552                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 5
## 10553                                                                                                                                                                                                                      PIAAC: Female adults by numeracy proficiency level (%). Below Level 1
## 10554                                                                                                                                                                                                                                               PIAAC: Mean Adult Numeracy Proficiency. Male
## 10555                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 1
## 10556                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 2
## 10557                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 3
## 10558                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 4
## 10559                                                                                                                                                                                                                          PIAAC: Male adults by numeracy proficiency level (%). Level 4 & 5
## 10560                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 5
## 10561                                                                                                                                                                                                                        PIAAC: Male adults by numeracy proficiency level (%). Below Level 1
## 10562                                                                                                                                                                                                                         PIAAC: Distribution of Adult Numeracy Scores: 5th Percentile Score
## 10563                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 10th Percentile Score
## 10564                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 25th Percentile Score
## 10565                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 50th Percentile Score
## 10566                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 75th Percentile Score
## 10567                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 90th Percentile Score
## 10568                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 95th Percentile Score
## 10569                                                                                                                                                                                                                                        PIAAC: Mean Young Adult Numeracy Proficiency. Total
## 10570                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 1
## 10571                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 2
## 10572                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 3
## 10573                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 4
## 10574                                                                                                                                                                                                                         PIAAC: Young adults by numeracy proficiency level (%). Level 4 & 5
## 10575                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 5
## 10576                                                                                                                                                                                                                       PIAAC: Young adults by numeracy proficiency level (%). Below Level 1
## 10577                                                                                                                                                                                                                                       PIAAC: Mean Young Adult Numeracy Proficiency. Female
## 10578                                                                                                                                                                                                                                         PIAAC: Mean Young Adult Numeracy Proficiency. Male
## 10579                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10580                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10581                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10582                                                                                                                                                                                   PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10583                                                                                                                                                                        PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Failed the ICT Core Test
## 10584                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10585                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10586                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10587                                                                                                                                                                            PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10588                                                                                                                                                                     PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10589                                                                                                                                       PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10590                                                                                                                                                                   PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10591                                                                                                                                                   PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10592                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10593                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10594                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10595                                                                                                                                                                              PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10596                                                                                                                                                                       PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10597                                                                                                                                         PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10598                                                                                                                                                                     PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10599                                                                                                                                                     PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10600                                                                                                                                                                          PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10601                                                                                                                                                          PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10602                                                                                                                                                                                  PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 5th Percentile Score
## 10603                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 10th Percentile Score
## 10604                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 25th Percentile Score
## 10605                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 50th Percentile Score
## 10606                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 75th Percentile Score
## 10607                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 90th Percentile Score
## 10608                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 95th Percentile Score
## 10609                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10610                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10611                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10612                                                                                                                                                                             PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10613                                                                                                                                                                      PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10614                                                                                                                                        PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10615                                                                                                                                                                    PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10616                                                                                                                                                    PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10617                                                                                                                                                                                                                                        PIRLS: Mean performance on the reading scale, total
## 10618                                                                                                                                                                                      PIRLS: Fourth grade students reaching the advanced international benchmark in reading achievement (%)
## 10619                                                                                                                                                                                  PIRLS: Female 4th grade students reaching the advanced international benchmark in reading achievement (%)
## 10620                                                                                                                                                                                    PIRLS: Male 4th grade students reaching the advanced international benchmark in reading achievement (%)
## 10621                                                                                                                                                                                  PIRLS: Fourth grade students who did not reach the low international benchmark in reading achievement (%)
## 10622                                                                                                                                                                              PIRLS: Female 4th grade students who did not reach the low international benchmark in reading achievement (%)
## 10623                                                                                                                                                                                PIRLS: Male 4th grade students who did not reach the low international benchmark in reading achievement (%)
## 10624                                                                                                                                                                                                                                       PIRLS: Mean performance on the reading scale, female
## 10625                                                                                                                                                                                          PIRLS: Fourth grade students reaching the high international benchmark in reading achievement (%)
## 10626                                                                                                                                                                                      PIRLS: Female 4th grade students reaching the high international benchmark in reading achievement (%)
## 10627                                                                                                                                                                                        PIRLS: Male 4th grade students reaching the high international benchmark in reading achievement (%)
## 10628                                                                                                                                                                                  PIRLS: Fourth grade students reaching the intermediate international benchmark in reading achievement (%)
## 10629                                                                                                                                                                              PIRLS: Female 4th grade students reaching the intermediate international benchmark in reading achievement (%)
## 10630                                                                                                                                                                                PIRLS: Male 4th grade students reaching the intermediate international benchmark in reading achievement (%)
## 10631                                                                                                                                                                                           PIRLS: Fourth grade students reaching the low international benchmark in reading achievement (%)
## 10632                                                                                                                                                                                       PIRLS: Female 4th grade students reaching the low international benchmark in reading achievement (%)
## 10633                                                                                                                                                                                         PIRLS: Male 4th grade students reaching the low international benchmark in reading achievement (%)
## 10634                                                                                                                                                                                                                                         PIRLS: Mean performance on the reading scale, male
## 10635                                                                                                                                                                                                                                PIRLS: Distribution of Reading Scores: 5th Percentile Score
## 10636                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 10th Percentile Score
## 10637                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 25th Percentile Score
## 10638                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 50th Percentile Score
## 10639                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 75th Percentile Score
## 10640                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 90th Percentile Score
## 10641                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 95th Percentile Score
## 10642                                                                                                                                                                                                                                            PISA: Mean performance on the mathematics scale
## 10643                                                                                                                                                                                                                     PISA: 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10644                                                                                                                                                                                                              PISA: Female 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10645                                                                                                                                                                                                                PISA: Male 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10646                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 1
## 10647                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 1
## 10648                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 1
## 10649                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 2
## 10650                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 2
## 10651                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 2
## 10652                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 3
## 10653                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 3
## 10654                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 3
## 10655                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 4
## 10656                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 4
## 10657                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 4
## 10658                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 5
## 10659                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 5
## 10660                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 5
## 10661                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 6
## 10662                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 6
## 10663                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 6
## 10664                                                                                                                                                                                                                                    PISA: Mean performance on the mathematics scale. Female
## 10665                                                                                                                                                                                                                                      PISA: Mean performance on the mathematics scale. Male
## 10666                                                                                                                                                                                                                             PISA: Distribution of Mathematics Scores: 5th Percentile Score
## 10667                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 10th Percentile Score
## 10668                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 25th Percentile Score
## 10669                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 50th Percentile Score
## 10670                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 75th Percentile Score
## 10671                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 90th Percentile Score
## 10672                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 95th Percentile Score
## 10673                                                                                                                                                                                                                                                PISA: Mean performance on the reading scale
## 10674                                                                                                                                                                                                                        PISA: 15-year-olds by reading proficiency level (%). Below Level 1B
## 10675                                                                                                                                                                                                                        PISA: 15-year-olds by reading proficiency level (%). Below Level 1C
## 10676                                                                                                                                                                                                                 PISA: Female 15-year-olds by reading proficiency level (%). Below Level 1C
## 10677                                                                                                                                                                                                                   PISA: Male 15-year-olds by reading proficiency level (%). Below Level 1C
## 10678                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1A
## 10679                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1A
## 10680                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1A
## 10681                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1B
## 10682                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1B
## 10683                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1B
## 10684                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1C
## 10685                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1C
## 10686                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1C
## 10687                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 2
## 10688                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 2
## 10689                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 2
## 10690                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 3
## 10691                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 3
## 10692                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 3
## 10693                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 4
## 10694                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 4
## 10695                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 4
## 10696                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 5
## 10697                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 5
## 10698                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 5
## 10699                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 6
## 10700                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 6
## 10701                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 6
## 10702                                                                                                                                                                                                                                        PISA: Mean performance on the reading scale. Female
## 10703                                                                                                                                                                                                                                          PISA: Mean performance on the reading scale. Male
## 10704                                                                                                                                                                                                                                 PISA: Distribution of Reading Scores: 5th Percentile Score
## 10705                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 10th Percentile Score
## 10706                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 25th Percentile Score
## 10707                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 50th Percentile Score
## 10708                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 75th Percentile Score
## 10709                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 90th Percentile Score
## 10710                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 95th Percentile Score
## 10711                                                                                                                                                                                                                                                PISA: Mean performance on the science scale
## 10712                                                                                                                                                                                                                        PISA: 15-year-olds by science proficiency level (%). Below Level 1B
## 10713                                                                                                                                                                                                                 PISA: Female 15-year-olds by science proficiency level (%). Below Level 1B
## 10714                                                                                                                                                                                                                   PISA: Male 15-year-olds by science proficiency level (%). Below Level 1B
## 10715                                                                                                                                                                                                                              PISA: 15-year-olds by science proficiency level (%). Level 1A
## 10716                                                                                                                                                                                                                       PISA: Female 15-year-olds by science proficiency level (%). Level 1A
## 10717                                                                                                                                                                                                                         PISA: Male 15-year-olds by science proficiency level (%). Level 1A
## 10718                                                                                                                                                                                                                              PISA: 15-year-olds by science proficiency level (%). Level 1B
## 10719                                                                                                                                                                                                                       PISA: Female 15-year-olds by science proficiency level (%). Level 1B
## 10720                                                                                                                                                                                                                         PISA: Male 15-year-olds by science proficiency level (%). Level 1B
## 10721                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 2
## 10722                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 2
## 10723                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 2
## 10724                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 3
## 10725                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 3
## 10726                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 3
## 10727                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 4
## 10728                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 4
## 10729                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 4
## 10730                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 5
## 10731                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 5
## 10732                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 5
## 10733                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 6
## 10734                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 6
## 10735                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 6
## 10736                                                                                                                                                                                                                                        PISA: Mean performance on the science scale. Female
## 10737                                                                                                                                                                                                                                          PISA: Mean performance on the science scale. Male
## 10738                                                                                                                                                                                                                                 PISA: Distribution of Science Scores: 5th Percentile Score
## 10739                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 10th Percentile Score
## 10740                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 25th Percentile Score
## 10741                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 50th Percentile Score
## 10742                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 75th Percentile Score
## 10743                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 90th Percentile Score
## 10744                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 95th Percentile Score
## 10745                                                                                                                                                                                                                                          SACMEQ: Mean performance on the mathematics scale
## 10746                                                                                                                                                                                                                                  SACMEQ: Mean performance on the mathematics scale, female
## 10747                                                                                                                                                                                                    SACMEQ: 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10748                                                                                                                                                                                             SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10749                                                                                                                                                                                               SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10750                                                                                                                                                                                               SACMEQ: 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10751                                                                                                                                                                                        SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10752                                                                                                                                                                                          SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10753                                                                                                                                                                                                  SACMEQ: 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10754                                                                                                                                                                                           SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10755                                                                                                                                                                                             SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10756                                                                                                                                                                                              SACMEQ: 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10757                                                                                                                                                                                       SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10758                                                                                                                                                                                         SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10759                                                                                                                                                                                              SACMEQ: 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10760                                                                                                                                                                                       SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10761                                                                                                                                                                                         SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10762                                                                                                                                                                                          SACMEQ: 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10763                                                                                                                                                                                   SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10764                                                                                                                                                                                     SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10765                                                                                                                                                                                        SACMEQ: 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10766                                                                                                                                                                                 SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10767                                                                                                                                                                                   SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10768                                                                                                                                                                                        SACMEQ: 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10769                                                                                                                                                                                 SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10770                                                                                                                                                                                   SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10771                                                                                                                                                                                                                                    SACMEQ: Mean performance on the mathematics scale, male
## 10772                                                                                                                                                                                                                                       SACMEQ: Mean performance on the reading scale, total
## 10773                                                                                                                                                                                                                                      SACMEQ: Mean performance on the reading scale, female
## 10774                                                                                                                                                                                                         SACMEQ: 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10775                                                                                                                                                                                                  SACMEQ: Female 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10776                                                                                                                                                                                                    SACMEQ: Male 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10777                                                                                                                                                                                                    SACMEQ: 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10778                                                                                                                                                                                             SACMEQ: Female 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10779                                                                                                                                                                                               SACMEQ: Male 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10780                                                                                                                                                                                                       SACMEQ: 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10781                                                                                                                                                                                                SACMEQ: Female 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10782                                                                                                                                                                                                  SACMEQ: Male 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10783                                                                                                                                                                                                 SACMEQ: 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10784                                                                                                                                                                                          SACMEQ: Female 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10785                                                                                                                                                                                            SACMEQ: Male 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10786                                                                                                                                                                                                SACMEQ: 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10787                                                                                                                                                                                         SACMEQ: Female 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10788                                                                                                                                                                                           SACMEQ: Male 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10789                                                                                                                                                                                                 SACMEQ: 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10790                                                                                                                                                                                          SACMEQ: Female 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10791                                                                                                                                                                                            SACMEQ: Male 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10792                                                                                                                                                                                                  SACMEQ: 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10793                                                                                                                                                                                           SACMEQ: Female 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10794                                                                                                                                                                                             SACMEQ: Male 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10795                                                                                                                                                                                                    SACMEQ: 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10796                                                                                                                                                                                             SACMEQ: Female 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10797                                                                                                                                                                                               SACMEQ: Male 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10798                                                                                                                                                                                                                                        SACMEQ: Mean performance on the reading scale, male
## 10799                                                                                                                                                                                                          TIMSS: Mean performance on the mathematics scale for fourth grade students, total
## 10800                                                                                                                                                                                  TIMSS: Fourth grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10801                                                                                                                                                                              TIMSS: Female 4th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10802                                                                                                                                                                                TIMSS: Male 4th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10803                                                                                                                                                                              TIMSS: Fourth grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10804                                                                                                                                                                          TIMSS: Female 4th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10805                                                                                                                                                                            TIMSS: Male 4th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10806                                                                                                                                                                                                         TIMSS: Mean performance on the mathematics scale for fourth grade students, female
## 10807                                                                                                                                                                                      TIMSS: Fourth grade students reaching the high international benchmark of mathematics achievement (%)
## 10808                                                                                                                                                                                  TIMSS: Female 4th grade students reaching the high international benchmark of mathematics achievement (%)
## 10809                                                                                                                                                                                    TIMSS: Male 4th grade students reaching the high international benchmark of mathematics achievement (%)
## 10810                                                                                                                                                                              TIMSS: Fourth grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10811                                                                                                                                                                          TIMSS: Female 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10812                                                                                                                                                                            TIMSS: Male 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10813                                                                                                                                                                                       TIMSS: Fourth grade students reaching the low international benchmark of mathematics achievement (%)
## 10814                                                                                                                                                                                   TIMSS: Female 4th grade students reaching the low international benchmark of mathematics achievement (%)
## 10815                                                                                                                                                                                     TIMSS: Male 4th grade students reaching the low international benchmark of mathematics achievement (%)
## 10816                                                                                                                                                                                                           TIMSS: Mean performance on the mathematics scale for fourth grade students, male
## 10817                                                                                                                                                                                                                  TIMSS: Distribution of 4th Grade Mathematics Scores: 5th Percentile Score
## 10818                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score
## 10819                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score
## 10820                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score
## 10821                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score
## 10822                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score
## 10823                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 95th Percentile Score
## 10824                                                                                                                                                                                                          TIMSS: Mean performance on the mathematics scale for eighth grade students, total
## 10825                                                                                                                                                                                  TIMSS: Eighth grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10826                                                                                                                                                                              TIMSS: Female 8th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10827                                                                                                                                                                                TIMSS: Male 8th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10828                                                                                                                                                                              TIMSS: Eighth grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10829                                                                                                                                                                          TIMSS: Female 8th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10830                                                                                                                                                                            TIMSS: Male 8th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10831                                                                                                                                                                                                         TIMSS: Mean performance on the mathematics scale for eighth grade students, female
## 10832                                                                                                                                                                                      TIMSS: Eighth grade students reaching the high international benchmark of mathematics achievement (%)
## 10833                                                                                                                                                                                  TIMSS: Female 8th grade students reaching the high international benchmark of mathematics achievement (%)
## 10834                                                                                                                                                                                    TIMSS: Male 8th grade students reaching the high international benchmark of mathematics achievement (%)
## 10835                                                                                                                                                                              TIMSS: Eighth grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10836                                                                                                                                                                          TIMSS: Female 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10837                                                                                                                                                                            TIMSS: Male 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10838                                                                                                                                                                                       TIMSS: Eighth grade students reaching the low international benchmark of mathematics achievement (%)
## 10839                                                                                                                                                                                   TIMSS: Female 8th grade students reaching the low international benchmark of mathematics achievement (%)
## 10840                                                                                                                                                                                     TIMSS: Male 8th grade students reaching the low international benchmark of mathematics achievement (%)
## 10841                                                                                                                                                                                                           TIMSS: Mean performance on the mathematics scale for eighth grade students, male
## 10842                                                                                                                                                                                                                  TIMSS: Distribution of 8th Grade Mathematics Scores: 5th Percentile Score
## 10843                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 10th Percentile Score
## 10844                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 25th Percentile Score
## 10845                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 50th Percentile Score
## 10846                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 75th Percentile Score
## 10847                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 90th Percentile Score
## 10848                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 95th Percentile Score
## 10849                                                                                                                                                                                                              TIMSS: Mean performance on the science scale for fourth grade students, total
## 10850                                                                                                                                                                                      TIMSS: Fourth grade students reaching the advanced international benchmark of science achievement (%)
## 10851                                                                                                                                                                                  TIMSS: Female 4th grade students reaching the advanced international benchmark of science achievement (%)
## 10852                                                                                                                                                                                    TIMSS: Male 4th grade students reaching the advanced international benchmark of science achievement (%)
## 10853                                                                                                                                                                                  TIMSS: Fourth grade students who did not reach the low international benchmark of science achievement (%)
## 10854                                                                                                                                                                              TIMSS: Female 4th grade students who did not reach the low international benchmark of science achievement (%)
## 10855                                                                                                                                                                                TIMSS: Male 4th grade students who did not reach the low international benchmark of science achievement (%)
## 10856                                                                                                                                                                                                             TIMSS: Mean performance on the science scale for fourth grade students, female
## 10857                                                                                                                                                                                          TIMSS: Fourth grade students reaching the high international benchmark of science achievement (%)
## 10858                                                                                                                                                                                      TIMSS: Female 4th grade students reaching the high international benchmark of science achievement (%)
## 10859                                                                                                                                                                                        TIMSS: Male 4th grade students reaching the high international benchmark of science achievement (%)
## 10860                                                                                                                                                                                  TIMSS: Fourth grade students reaching the intermediate international benchmark of science achievement (%)
## 10861                                                                                                                                                                              TIMSS: Female 4th grade students reaching the intermediate international benchmark of science achievement (%)
## 10862                                                                                                                                                                                TIMSS: Male 4th grade students reaching the intermediate international benchmark of science achievement (%)
## 10863                                                                                                                                                                                           TIMSS: Fourth grade students reaching the low international benchmark of science achievement (%)
## 10864                                                                                                                                                                                       TIMSS: Female 4th grade students reaching the low international benchmark of science achievement (%)
## 10865                                                                                                                                                                                         TIMSS: Male 4th grade students reaching the low international benchmark of science achievement (%)
## 10866                                                                                                                                                                                                               TIMSS: Mean performance on the science scale for fourth grade students, male
## 10867                                                                                                                                                                                                                      TIMSS: Distribution of 4th Grade Science Scores: 5th Percentile Score
## 10868                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 10th Percentile Score
## 10869                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 25th Percentile Score
## 10870                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 50th Percentile Score
## 10871                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 75th Percentile Score
## 10872                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 90th Percentile Score
## 10873                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 95th Percentile Score
## 10874                                                                                                                                                                                                              TIMSS: Mean performance on the science scale for eighth grade students, total
## 10875                                                                                                                                                                                      TIMSS: Eighth grade students reaching the advanced international benchmark of science achievement (%)
## 10876                                                                                                                                                                                  TIMSS: Female 8th grade students reaching the advanced international benchmark of science achievement (%)
## 10877                                                                                                                                                                                    TIMSS: Male 8th grade students reaching the advanced international benchmark of science achievement (%)
## 10878                                                                                                                                                                                  TIMSS: Eighth grade students who did not reach the low international benchmark of science achievement (%)
## 10879                                                                                                                                                                              TIMSS: Female 8th grade students who did not reach the low international benchmark of science achievement (%)
## 10880                                                                                                                                                                                TIMSS: Male 8th grade students who did not reach the low international benchmark of science achievement (%)
## 10881                                                                                                                                                                                                             TIMSS: Mean performance on the science scale for eighth grade students, female
## 10882                                                                                                                                                                                          TIMSS: Eighth grade students reaching the high international benchmark of science achievement (%)
## 10883                                                                                                                                                                                      TIMSS: Female 8th grade students reaching the high international benchmark of science achievement (%)
## 10884                                                                                                                                                                                        TIMSS: Male 8th grade students reaching the high international benchmark of science achievement (%)
## 10885                                                                                                                                                                                  TIMSS: Eighth grade students reaching the intermediate international benchmark of science achievement (%)
## 10886                                                                                                                                                                              TIMSS: Female 8th grade students reaching the intermediate international benchmark of science achievement (%)
## 10887                                                                                                                                                                                TIMSS: Male 8th grade students reaching the intermediate international benchmark of science achievement (%)
## 10888                                                                                                                                                                                           TIMSS: Eighth grade students reaching the low international benchmark of science achievement (%)
## 10889                                                                                                                                                                                       TIMSS: Female 8th grade students reaching the low international benchmark of science achievement (%)
## 10890                                                                                                                                                                                         TIMSS: Male 8th grade students reaching the low international benchmark of science achievement (%)
## 10891                                                                                                                                                                                                               TIMSS: Mean performance on the science scale for eighth grade students, male
## 10892                                                                                                                                                                                                                      TIMSS: Distribution of 8th Grade Science Scores: 5th Percentile Score
## 10893                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 10th Percentile Score
## 10894                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 25th Percentile Score
## 10895                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 50th Percentile Score
## 10896                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 75th Percentile Score
## 10897                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 90th Percentile Score
## 10898                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 95th Percentile Score
## 10899                                                                                                                                                                                                                                                    Lead time to export, median case (days)
## 10900                                                                                                                                                                                                                                                    Lead time to import, median case (days)
## 10901                                                                                                                                                                                                                            Efficiency of the clearance process, rank (1=highest performer)
## 10902                                                                                                                                                                                                     Logistics performance index: Efficiency of customs clearance process (1=low to 5=high)
## 10903                                                                                                                                                                                                         Quality- of trade and transport-related infrastructure, rank (1=highest performer)
## 10904                                                                                                                                                                                       Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high)
## 10905                                                                                                                                                                                                 Ease of arranging competitively priced international shipments, rank (1=highest performer)
## 10906                                                                                                                                                                                            Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high)
## 10907                                                                                                                                                                                                                   Competence and quality of logistics services, rank (1=highest performer)
## 10908                                                                                                                                                                                                Logistics performance index: Competence and quality of logistics services (1=low to 5=high)
## 10909                                                                                                                                                                                                                          Logistics performance index: Overall rank (1=highest performance)
## 10910                                                                                                                                                                                                             Logistics performance index: Overall rank (1=highest performance), lower bound
## 10911                                                                                                                                                                                                             Logistics performance index: Overall rank (1=highest performance), upper bound
## 10912                                                                                                                                                                                                                                 Logistics performance index: Percent of highest performer)
## 10913                                                                                                                                                                                                                                     Logistics performance index: Overall (1=low to 5=high)
## 10914                                                                                                                                                                                                                  Logistics performance index: Overall score (1=low to 5=high), lower bound
## 10915                                                                                                                                                                                                                  Logistics performance index: Overall score (1=low to 5=high), upper bound
## 10916                                                                                                                                                                               Frequency with which shipments reach consignee within scheduled or expected time, rank (1=highest performer)
## 10917                                                                                                                                                            Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high)
## 10918                                                                                                                                                                                                                        Ability to track and trace consignments, rank (1=highest performer)
## 10919                                                                                                                                                                                                     Logistics performance index: Ability to track and trace consignments (1=low to 5=high)
## 10920                                                                                                                                                                                                                                                           Sustainable Economic Opportunity
## 10921                                                                                                                                                                                                                                                                          Human Development
## 10922                                                                                                                                                                                                                                                             Participation and Human Rights
## 10923                                                                                                                                                                                                                                                                     Safety and Rule of Law
## 10924                                                                                                                                                                                                                                                                   Overall Mo Ibrahim index
## 10925                                                                                                                                                                                                                                                           Mobile money account (% age 15+)
## 10926                                                                                                                                                                                                                                                    Mobile money account, male  (% age 15+)
## 10927                                                                                                                                                                                                                                           Mobile money account, in labor force (% age 15+)
## 10928                                                                                                                                                                                                                                       Mobile money account, out of labor force (% age 15+)
## 10929                                                                                                                                                                                                                                                   Mobile money account, female (% age 15+)
## 10930                                                                                                                                                                                                                                          Mobile money account, young adults  (% age 15-24)
## 10931                                                                                                                                                                                                                                             Mobile money account, older adults (% age 25+)
## 10932                                                                                                                                                                                                                                Mobile money account, primary education or less (% age 15+)
## 10933                                                                                                                                                                                                                              Mobile money account, secondary education or less (% age 15+)
## 10934                                                                                                                                                                                                                                      Mobile money account, income, poorest 40% (% age 15+)
## 10935                                                                                                                                                                                                                                     Mobile money account, income, richest 60%  (% age 15+)
## 10936                                                                                                                                                                                                                                                   Mobile money account, rural  (% age 15+)
## 10937                                                                                                                                                                                                                                                Arms imports (SIPRI trend indicator values)
## 10938                                                                                                                                                                                                                                                          Arms imports (% of total imports)
## 10939                                                                                                                                                                                                                                                              Armed forces personnel, total
## 10940                                                                                                                                                                                                                                            Armed forces personnel (% of total labor force)
## 10941                                                                                                                                                                                                                                                         Military expenditure (current USD)
## 10942                                                                                                                                                                                                                                                         Military expenditure (current LCU)
## 10943                                                                                                                                                                                                                                                            Military expenditure (% of GDP)
## 10944                                                                                                                                                                                                                                                            Military expenditure (% of GNI)
## 10945                                                                                                                                                                                                                                 Military expenditure (% of general government expenditure)
## 10946                                                                                                                                                                                                                                                Arms exports (SIPRI trend indicator values)
## 10947                                                                                                                                                                                                                                                          Arms exports (% of total exports)
## 10948                                                                                                                                                                                            GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Current Price
## 10949                                                                                                                                                                                           GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10950                                                                                                                                                                                                                                  GDP on Agriculture Sector (in IDR Million), Current Price
## 10951                                                                                                                                                                                                                                 GDP on Agriculture Sector (in IDR Million), Constant Price
## 10952                                                                                                                                                                                                  GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Current Price
## 10953                                                                                                                                                                                                 GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Constant Price
## 10954                                                                                                                                                                                                                  GDP on Business Services Sector (in IDR Million), SNA 2008, Current Price
## 10955                                                                                                                                                                                                                 GDP on Business Services Sector (in IDR Million), SNA 2008, Constant Price
## 10956                                                                                                                                                                                                                                 GDP on Construction Sector (in IDR Million), Current Price
## 10957                                                                                                                                                                                                                                GDP on Construction Sector (in IDR Million), Constant Price
## 10958                                                                                                                                                                                                                       GDP on Construction Sector (in IDR Million), SNA 2008, Current Price
## 10959                                                                                                                                                                                                                      GDP on Construction Sector (in IDR Million), SNA 2008, Constant Price
## 10960                                                                                                                                                                                                                 GDP on Education Services Sector (in IDR Million), SNA 2008, Current Price
## 10961                                                                                                                                                                                                                GDP on Education Services Sector (in IDR Million), SNA 2008, Constant Price
## 10962                                                                                                                                                                                                           GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Current Price
## 10963                                                                                                                                                                                                          GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Constant Price
## 10964                                                                                                                                                                                                                            Total GDP excluding Oil and Gas (in IDR Million), Current Price
## 10965                                                                                                                                                                                                                           Total GDP excluding Oil and Gas (in IDR Million), Constant Price
## 10966                                                                                                                                                                                                                            GDP on Financial Service Sector (in IDR Million), Current Price
## 10967                                                                                                                                                                                                                           GDP on Financial Service Sector (in IDR Million), Constant Price
## 10968                                                                                                                                                                                                     GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Current Price
## 10969                                                                                                                                                                                                    GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10970                                                                                                                                                                                                GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Current Price
## 10971                                                                                                                                                                                               GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10972                                                                                                                                                                                                                            Total GDP including Oil and Gas (in IDR Million), Current Price
## 10973                                                                                                                                                                                                                           Total GDP including Oil and Gas (in IDR Million), Constant Price
## 10974                                                                                                                                                                                                                  Total GDP including Oil and Gas (in IDR Million), SNA 2008, Current Price
## 10975                                                                                                                                                                                                                 Total GDP including Oil and Gas (in IDR Million), SNA 2008, Constant Price
## 10976                                                                                                                                                                                                        GDP on Information & Communication Sector (in IDR Million), SNA 2008, Current Price
## 10977                                                                                                                                                                                                       GDP on Information & Communication Sector (in IDR Million), SNA 2008, Constant Price
## 10978                                                                                                                                                                                                                         GDP on Mining and Quarrying Sector (in IDR Million), Current Price
## 10979                                                                                                                                                                                                                        GDP on Mining and Quarrying Sector (in IDR Million), Constant Price
## 10980                                                                                                                                                                                                                 GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Current Price
## 10981                                                                                                                                                                                                                GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Constant Price
## 10982                                                                                                                                                                                                                                GDP on Manufacturing Sector (in IDR Million), Current Price
## 10983                                                                                                                                                                                                                               GDP on Manufacturing Sector (in IDR Million), Constant Price
## 10984                                                                                                                                                                                                             GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Current Price
## 10985                                                                                                                                                                                                            GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Constant Price
## 10986                                                                                                                                                                        GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Current Price
## 10987                                                                                                                                                                       GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Constant Price
## 10988                                                                                                                                                                                                                        GDP on Real Estate Sector (in IDR Million), SNA 2008, Current Price
## 10989                                                                                                                                                                                                                       GDP on Real Estate Sector (in IDR Million), SNA 2008, Constant Price
## 10990                                                                                                                                                                                                                                GDP on Other Service Sector (in IDR Million), Current Price
## 10991                                                                                                                                                                                                                               GDP on Other Service Sector (in IDR Million), Constant Price
## 10992                                                                                                                                                                                                                     GDP on Other Services Sector (in IDR Million), SNA 2008, Current Price
## 10993                                                                                                                                                                                                                    GDP on Other Services Sector (in IDR Million), SNA 2008, Constant Price
## 10994                                                                                                                                                                                                         GDP on Transportation and Telecommunication Sector (in IDR Million), Current Price
## 10995                                                                                                                                                                                                        GDP on Transportation and Telecommunication Sector (in IDR Million), Constant Price
## 10996                                                                                                                                                                                                           GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Current Price
## 10997                                                                                                                                                                                                          GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Constant Price
## 10998                                                                                                                                                                                                                  GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Current Price
## 10999                                                                                                                                                                                                                 GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Constant Price
## 11000                                                                                                                                                                  GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Current Price
## 11001                                                                                                                                                                 GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Constant Price
## 11002                                                                                                                                                                                                                                    GDP on Utilities Sector (in IDR Million), Current Price
## 11003                                                                                                                                                                                                                                   GDP on Utilities Sector (in IDR Million), Constant Price
## 11004                                                                                                                                                                               GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Current Price
## 11005                                                                                                                                                                              GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Constant Price
## 11006                                                                                                                                                                                                                             General government final consumption expenditure (current US$)
## 11007                                                                                                                                                                                                                             General government final consumption expenditure (current LCU)
## 11008                                                                                                                                                                                                                       General government final consumption expenditure (constant 2015 US$)
## 11009                                                                                                                                                                                                                                         General government consumption (constant 1987 US$)
## 11010                                                                                                                                                                                                                         General government final consumption expenditure (annual % growth)
## 11011                                                                                                                                                                                                                            General government final consumption expenditure (constant LCU)
## 11012                                                                                                                                                                                                                                         General government consumption (constant 1987 LCU)
## 11013                                                                                                                                                                                                                                           General government consumption (annual % growth)
## 11014                                                                                                                                                                                                                                General government final consumption expenditure (% of GDP)
## 11015                                                                                                                                                                                                                   Final consumption expenditure plus discrepancy, per capita (current US$)
## 11016                                                                                                                                                                                                                                                  Private consumption per capita (1987 US$)
## 11017                                                                                                                                                                                                                                Household final consumption expenditure, etc. (current US$)
## 11018                                                                                                                                                                                                                                Household final consumption expenditure, etc. (current LCU)
## 11019                                                                                                                                                                                                                          Household final consumption expenditure, etc. (constant 2010 US$)
## 11020                                                                                                                                                                                                                                              Private consumption, etc. (constant 1987 US$)
## 11021                                                                                                                                                                                                                            Household final consumption expenditure, etc. (annual % growth)
## 11022                                                                                                                                                                                                                               Household final consumption expenditure, etc. (constant LCU)
## 11023                                                                                                                                                                                                                                              Private consumption, etc. (constant 1987 LCU)
## 11024                                                                                                                                                                                                                                                Private consumption, etc. (annual % growth)
## 11025                                                                                                                                                                                                                                   Household final consumption expenditure, etc. (% of GDP)
## 11026                                                                                                                                                                                                                          Households and NPISHs Final consumption expenditure (current US$)
## 11027                                                                                                                                                                                                                          Households and NPISHs Final consumption expenditure (current LCU)
## 11028                                                                                                                                                                                                           Households and NPISHs final consumption expenditure: linked series (current LCU)
## 11029                                                                                                                                                                                                                    Households and NPISHs Final consumption expenditure (constant 2015 US$)
## 11030                                                                                                                                                                                                                                                    Private consumption (constant 1987 US$)
## 11031                                                                                                                                                                                                                      Households and NPISHs Final consumption expenditure (annual % growth)
## 11032                                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure (constant LCU)
## 11033                                                                                                                                                                                                                                                  Private consumption,  (constant 1987 LCU)
## 11034                                                                                                                                                                                                                                                      Private consumption (annual % growth)
## 11035                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure per capita (constant 2015 US$)
## 11036                                                                                                                                                                                                           Households and NPISHs Final consumption expenditure per capita growth (annual %)
## 11037                                                                                                                                                                                                                                           Private consumption per capita growth (annual %)
## 11038                                                                                                                                                                                                                                         Private consumption per capita (constant 1995 US$)
## 11039                                                                                                                                                                                                                                           Private consumption per capita growth (annual %)
## 11040                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure, PPP (current international $)
## 11041                                                                                                                                                                                                   Households and NPISHs Final consumption expenditure, PPP (constant 2017 international $)
## 11042                                                                                                                                                                                                                             Households and NPISHs final consumption expenditure (% of GDP)
## 11043                                                                                                                                                                                                                                                  Private consumption per capita (1987 USD)
## 11044                                                                                                                                                                                                                                          Final consumption expenditure, etc. (current US$)
## 11045                                                                                                                                                                                                                                          Final consumption expenditure, etc. (current LCU)
## 11046                                                                                                                                                                                                                                    Final consumption expenditure, etc. (constant 2010 US$)
## 11047                                                                                                                                                                                                                                                Total consumption, etc. (constant 1987 US$)
## 11048                                                                                                                                                                                                                                      Final consumption expenditure, etc. (annual % growth)
## 11049                                                                                                                                                                                                                                         Final consumption expenditure, etc. (constant LCU)
## 11050                                                                                                                                                                                                                                                Total consumption, etc. (constant 1987 LCU)
## 11051                                                                                                                                                                                                                                                  Total consumption, etc. (annual % growth)
## 11052                                                                                                                                                                                                                                             Final consumption expenditure, etc. (% of GDP)
## 11053                                                                                                                                                                                                                                                Final consumption expenditure (current US$)
## 11054                                                                                                                                                                                                                                                Final consumption expenditure (current LCU)
## 11055                                                                                                                                                                                                                                          Final consumption expenditure (constant 2015 US$)
## 11056                                                                                                                                                                                                                                                      Total consumption (constant 1987 US$)
## 11057                                                                                                                                                                                                                                            Final consumption expenditure (annual % growth)
## 11058                                                                                                                                                                                                                                               Final consumption expenditure (constant LCU)
## 11059                                                                                                                                                                                                                                                      Total consumption (constant 1987 LCU)
## 11060                                                                                                                                                                                                                                       Total consumption: contribution to growth of GDP (%)
## 11061                                                                                                                                                                                                                                                   Final consumption expenditure (% of GDP)
## 11062                                                                                                                                                                                                                          Gross national expenditure deflator (base year varies by country)
## 11063                                                                                                                                                                                                                                                   Gross national expenditure (current US$)
## 11064                                                                                                                                                                                                                                                   Gross national expenditure (current LCU)
## 11065                                                                                                                                                                                                                                                               Domestic Absorption Deflator
## 11066                                                                                                                                                                                                                                             Gross national expenditure (constant 2015 US$)
## 11067                                                                                                                                                                                                                                                    Domestic absorption (constant 1987 US$)
## 11068                                                                                                                                                                                                                                                  Gross national expenditure (constant LCU)
## 11069                                                                                                                                                                                                                                                    Domestic absorption (constant 1987 LCU)
## 11070                                                                                                                                                                                                                                             Domestic Absorption deflator  (1987=100,Index)
## 11071                                                                                                                                                                                                                                                      Gross national expenditure (% of GDP)
## 11072                                                                                                                                                                                                                                                              KP Capacity to Import (Local)
## 11073                                                                                                                                                                                                                                                Exports of goods and services (current US$)
## 11074                                                                                                                                                                                                                                                Exports of goods and services (current LCU)
## 11075                                                                                                                                                                                                                                          Exports of goods and services (constant 2015 US$)
## 11076                                                                                                                                                                                                                                          Exports of goods and services (constant 1987 US$)
## 11077                                                                                                                                                                                                                                            Exports of goods and services (annual % growth)
## 11078                                                                                                                                                                                                                                               Exports of goods and services (constant LCU)
## 11079                                                                                                                                                                                                                                          Exports of goods and services (constant 1987 LCU)
## 11080                                                                                                                                                                                                                                            Exports of goods and services (annual % growth)
## 11081                                                                                                                                                                                                                      Exports of goods and non-financial services, growth (%, constant LCU)
## 11082                                                                                                                                                                                                                                          Export price index (goods and services, 2000=100)
## 11083                                                                                                                                                                                                                                                   Exports of goods and services (% of GDP)
## 11084                                                                                                                                                                                                                                                       KP Terms of Trade Adjustment (Local)
## 11085                                                                                                                                                                                                                         GDP expenditure on general government consumption (in IDR Million)
## 11086                                                                                                                                                                                                GDP expenditure on general government consumption (in IDR Million), SNA 2008, Current Price
## 11087                                                                                                                                                                                                             GDP expenditure on non profit private institution consumption (in IDR Million)
## 11088                                                                                                                                                                                    GDP expenditure on non profit private institution consumption (in IDR Million), SNA 2008, Current Price
## 11089                                                                                                                                                                                                                                    GDP expenditure on private consumption (in IDR Million)
## 11090                                                                                                                                                                                                           GDP expenditure on private consumption (in IDR Million), SNA 2008, Current Price
## 11091                                                                                                                                                                                                                                                GDP expenditure on exports (in IDR Million)
## 11092                                                                                                                                                                                                                       GDP expenditure on exports (in IDR Million), SNA 2008, Current Price
## 11093                                                                                                                                                                                                                                                    GDFI - central government (current US$)
## 11094                                                                                                                                                                                                                                                    GDFI - central government (current LCU)
## 11095                                                                                                                                                                                                                                              GDFI - central government (constant 2000 US$)
## 11096                                                                                                                                                                                                                                                   GDFI - central government (constant LCU)
## 11097                                                                                                                                                                                                                                                    GDFI - general government (current US$)
## 11098                                                                                                                                                                                                                                                    GDFI - general government (current LCU)
## 11099                                                                                                                                                                                                                                              GDFI - general government (constant 2000 US$)
## 11100                                                                                                                                                                                                                                                   GDFI - general government (constant LCU)
## 11101                                                                                                                                                                                                                                                                CP Fixed Investment (Local)
## 11102                                                                                                                                                                                                                                                    Fixed Investment (local) (Const. Price)
## 11103                                                                                                                                                                                                                                            GDFI - state and local government (current US$)
## 11104                                                                                                                                                                                                                                            GDFI - state and local government (current LCU)
## 11105                                                                                                                                                                                                                                           GDFI - state and local government (constant LCU)
## 11106                                                                                                                                                                                                                                                    GDFI - public enterprises (current US$)
## 11107                                                                                                                                                                                                                                                    GDFI - public enterprises (current LCU)
## 11108                                                                                                                                                                                                                                                   GDFI - public enterprises (constant LCU)
## 11109                                                                                                                                                                                                                                                               GDFI - private (current US$)
## 11110                                                                                                                                                                                                                                Gross fixed capital formation, private sector (current LCU)
## 11111                                                                                                                                                                                                                                                       Private fixed investment (% of GDFI)
## 11112                                                                                                                                                                                                                            Private fixed investment (% of gross domestic fixed investment)
## 11113                                                                                                                                                                                                                                                             Private investment (% of GDFI)
## 11114                                                                                                                                                                                                                                                             Private investment (% of GDFI)
## 11115                                                                                                                                                                                                                                                  GDFI - private sector (constant 2000 US$)
## 11116                                                                                                                                                                                                                                                       GDFI - private sector (constant LCU)
## 11117                                                                                                                                                                                                                                   Gross fixed capital formation, private sector (% of GDP)
## 11118                                                                                                                                                                                                                                                         GDFI - public sector (current US$)
## 11119                                                                                                                                                                                                                                 Gross fixed capital formation, public sector (current LCU)
## 11120                                                                                                                                                                                                                                                   GDFI - public sector (constant 2000 US$)
## 11121                                                                                                                                                                                                                                                        GDFI - public sector (constant LCU)
## 11122                                                                                                                                                                                                                                                         Gross public investment (% of GDP)
## 11123                                                                                                                                                                                                                                                Gross fixed capital formation (current US$)
## 11124                                                                                                                                                                                                                                                Gross fixed capital formation (current LCU)
## 11125                                                                                                                                                                                                                          GDP expenditure on gross fixed capital formation (in IDR Million)
## 11126                                                                                                                                                                                                                                          Gross fixed capital formation (constant 2015 US$)
## 11127                                                                                                                                                                                                                                        Gross domestic fixed investment (constant 1987 US$)
## 11128                                                                                                                                                                                                                                            Gross fixed capital formation (annual % growth)
## 11129                                                                                                                                                                                                                                               Gross fixed capital formation (constant LCU)
## 11130                                                                                                                                                                                                                                        Gross domestic fixed investment (constant 1987 LCU)
## 11131                                                                                                                                                                                                                                          Gross domestic fixed investment (annual % growth)
## 11132                                                                                                                                                                                                 GDP expenditure on gross fixed capital formation (in IDR Million), SNA 2008, Current Price
## 11133                                                                                                                                                                                                                                                   Gross fixed capital formation (% of GDP)
## 11134                                                                                                                                                                                                                                                GDP expenditure on imports (in IDR Million)
## 11135                                                                                                                                                                                                                       GDP expenditure on imports (in IDR Million), SNA 2008, Current Price
## 11136                                                                                                                                                                                                      GDP expenditure on inter-region net exports (in IDR Million), SNA 2008, Current Price
## 11137                                                                                                                                                                                                                                            Gross domestic investment per capita (1987 USD)
## 11138                                                                                                                                                                                                                                              Gross domestic investment per cap. (1987 US$)
## 11139                                                                                                                                                                                                                                                       Changes in inventories (current US$)
## 11140                                                                                                                                                                                                                                                       Changes in inventories (current LCU)
## 11141                                                                                                                                                                                                                                       GDP expenditure on changes in stock (in IDR Million)
## 11142                                                                                                                                                                                                                                                  Change in inventories (constant 1987 US$)
## 11143                                                                                                                                                                                                                                                      Changes in inventories (constant LCU)
## 11144                                                                                                                                                                                                                                                  Change in inventories (constant 1987 LCU)
## 11145                                                                                                                                                                                                              GDP expenditure on changes in stock (in IDR Million), SNA 2008, Current Price
## 11146                                                                                                                                                                                                                                               Change in stocks public sector (current US$)
## 11147                                                                                                                                                                                                                                               Change in stocks public sector (current LCU)
## 11148                                                                                                                                                                                                                                             Change in stocks, public sector (constant LCU)
## 11149                                                                                                                                                                                                                                             Change in stocks, private sector (current US$)
## 11150                                                                                                                                                                                                                                             Change in stocks, private sector (current LCU)
## 11151                                                                                                                                                                                                                                            Change in stocks, private sector (constant LCU)
## 11152                                                                                                                                                                                                                                                      Gross capital formation (current US$)
## 11153                                                                                                                                                                                                                                                      Gross capital formation (current LCU)
## 11154                                                                                                                                                                                                                                            Total GDP based on expenditure (in IDR Million)
## 11155                                                                                                                                                                                                                                                Gross capital formation (constant 2015 US$)
## 11156                                                                                                                                                                                                                                              Gross domestic investment (constant 1987 US$)
## 11157                                                                                                                                                                                                                                                  Gross capital formation (annual % growth)
## 11158                                                                                                                                                                                                                                                     Gross capital formation (constant LCU)
## 11159                                                                                                                                                                                                                                              Gross domestic investment (constant 1987 LCU)
## 11160                                                                                                                                                                                                                                                Gross domestic investment (annual % growth)
## 11161                                                                                                                                                                                                                   Total GDP based on expenditure (in IDR Million), SNA 2008, Current Price
## 11162                                                                                                                                                                                                                                      Gross domestic investment: contr. to growth of GDP(%)
## 11163                                                                                                                                                                                                                                                         Gross capital formation (% of GDP)
## 11164                                                                                                                                                                                                                                                Imports of goods and services (current US$)
## 11165                                                                                                                                                                                                                                                Imports of goods and services (current LCU)
## 11166                                                                                                                                                                                                                                          Imports of goods and services (constant 2015 US$)
## 11167                                                                                                                                                                                                                                          Imports of goods and services (constant 1987 US$)
## 11168                                                                                                                                                                                                                                            Imports of goods and services (annual % growth)
## 11169                                                                                                                                                                                                                                               Imports of goods and services (constant LCU)
## 11170                                                                                                                                                                                                                                          Imports of goods and services (constant 1987 LCU)
## 11171                                                                                                                                                                                                                                            Imports of goods and services (annual % growth)
## 11172                                                                                                                                                                                                                                           Import price index (goods and services 2000=100)
## 11173                                                                                                                                                                                                                                                   Imports of goods and services (% of GDP)
## 11174                                                                                                                                                                                                                                                         Merchandise trade to GDP ratio (%)
## 11175                                                                                                                                                                                                                                       External balance on goods and services (current US$)
## 11176                                                                                                                                                                                                                                       External balance on goods and services (current LCU)
## 11177                                                                                                                                                                                                                                                       Resource balance (constant 1987 US$)
## 11178                                                                                                                                                                                                                                      External balance on goods and services (constant LCU)
## 11179                                                                                                                                                                                                                                                       Resource balance (constant 1987 LCU)
## 11180                                                                                                                                                                                                                                        Resource balance: contribution to growth of GDP (%)
## 11181                                                                                                                                                                                                                                          External balance on goods and services (% of GDP)
## 11182                                                                                                                                                                                                                                                    Resource Balance (local) (Const. Price)
## 11183                                                                                                                                                                                                                                                  Trade of goods and services (current US$)
## 11184                                                                                                                                                                                                                                                                           Trade (% of GDP)
## 11185                                                                                                                                                                                                                                                            Terms of trade index (2000=100)
## 11186                                                                                                                                                                                                                                            Terms of trade (goods and services, 2000 = 100)
## 11187                                                                                                                                                                                                                                                             Nominal Effecive Exchange Rate
## 11188                                                                                                                                                                                                                                            Agriculture, value added (local)  (Curr. Price)
## 11189                                                                                                                                                                                                                                                          Agricultural Value Added Deflator
## 11190                                                                                                                                                                                                                                            Agriculture, value added (local) (Const. Price)
## 11191                                                                                                                                                                                                                                             Agriculture: contribution to growth of GDP (%)
## 11192                                                                                                                                                                                                                                                         CP Value Added in Industry (Local)
## 11193                                                                                                                                                                                                                                                            Industrial Value Added Deflator
## 11194                                                                                                                                                                                                                                               Industry, value added (local) (Const. Price)
## 11195                                                                                                                                                                                                                                                Industry: contribution to growth of GDP (%)
## 11196                                                                                                                                                                                                                                                    CP Value Added in Manufacturing (Local)
## 11197                                                                                                                                                                                                                                                                Manuf. Value Added Deflator
## 11198                                                                                                                                                                                                                                                    KP Value Added in Manufacturing (Local)
## 11199                                                                                                                                                                                                                                                   CP Value Added in Services, etc. (Local)
## 11200                                                                                                                                                                                                                                                   KP Value Added in Services, etc. (Local)
## 11201                                                                                                                                                                                                                                                Services: contribution to growth of GDP (%)
## 11202                                                                                                                                                                                                          Total Natural Resources Revenue Sharing from Forestry (in IDR, realization value)
## 11203                                                                                                                                                                                                           Total Natural Resources Revenue Sharing from Fishery (in IDR, realization value)
## 11204                                                                                                                                                                                                               Total Natural Resources Revenue Sharing from Gas (in IDR, realization value)
## 11205                                                                                                                                                                                                Total Natural Resources Revenue Sharing from Geothermal  Energy (in IDR, realization value)
## 11206                                                                                                                                                                                                            Total Natural Resources Revenue Sharing from Mining (in IDR, realization value)
## 11207                                                                                                                                                                                                               Total Natural Resources Revenue Sharing from Oil (in IDR, realization value)
## 11208                                                                                                                                                                                                             Agriculture, forestry, and fishing, value added per worker (constant 2015 US$)
## 11209                                                                                                                                                                                                                                           Real agricultural GDP per capita growth rate (%)
## 11210                                                                                                                                                                                                                              Agriculture, forestry, and fishing, value added (current US$)
## 11211                                                                                                                                                                                                                              Agriculture, forestry, and fishing, value added (current LCU)
## 11212                                                                                                                                                                                                                        Agriculture, forestry, and fishing, value added (constant 2015 US$)
## 11213                                                                                                                                                                                                                                               Agriculture, value added (constant 1987 US$)
## 11214                                                                                                                                                                                                                          Agriculture, forestry, and fishing, value added (annual % growth)
## 11215                                                                                                                                                                                                                             Agriculture, forestry, and fishing, value added (constant LCU)
## 11216                                                                                                                                                                                                                                               Agriculture, value added (constant 1987 LCU)
## 11217                                                                                                                                                                                                                                                 Agriculture, value added (annual % growth)
## 11218                                                                                                                                                                                                                                             Agriculture, val. added defl. (1987=100,Index)
## 11219                                                                                                                                                                                                                                                     Real agricultural GDP growth rates (%)
## 11220                                                                                                                                                                                                                                 Agriculture, forestry, and fishing, value added (% of GDP)
## 11221                                                                                                                                                                                                                  Financial intermediary services indirectly Measured (FISIM) (current LCU)
## 11222                                                                                                                                                                                                                 Financial intermediary services indirectly Measured (FISIM) (constant LCU)
## 11223                                                                                                                                                                                                                                                    Construction, value added (current US$)
## 11224                                                                                                                                                                                                                                                    Construction, value added (current LCU)
## 11225                                                                                                                                                                                                                                                   Construction, value added (constant LCU)
## 11226                                                                                                                                                                                                              Industry (including construction), value added per worker (constant 2015 US$)
## 11227                                                                                                                                                                                                                               Electricity, gas and water supply, value added (current US$)
## 11228                                                                                                                                                                                                                               Electricity, gas and water supply, value added (current LCU)
## 11229                                                                                                                                                                                                                              Electricity, gas and water supply, value added (constant LCU)
## 11230                                                                                                                                                                                                                                                   Manufacturing, value added (current US$)
## 11231                                                                                                                                                                                                                                                   Manufacturing, value added (current LCU)
## 11232                                                                                                                                                                                                                                             Manufacturing, value added (constant 2015 US$)
## 11233                                                                                                                                                                                                                                             Manufacturing, value added (constant 1987 US$)
## 11234                                                                                                                                                                                                                                               Manufacturing, value added (annual % growth)
## 11235                                                                                                                                                                                                                                                  Manufacturing, value added (constant LCU)
## 11236                                                                                                                                                                                                                                             Manufacturing, value added (constant 1987 LCU)
## 11237                                                                                                                                                                                                                                               Manufacturing, value added (annual % growth)
## 11238                                                                                                                                                                                                                                                 Value added, manufacturing growth rate (%)
## 11239                                                                                                                                                                                                                                            Manufacturing, val. added defl.(1987=100,Index)
## 11240                                                                                                                                                                                                                                                      Manufacturing, value added (% of GDP)
## 11241                                                                                                                                                                                                                                            Mining and quarrying, value added (current US$)
## 11242                                                                                                                                                                                                                                            Mining and quarrying, value added (current LCU)
## 11243                                                                                                                                                                                                                                      Value added, mining and quarrying (constant 2000 US$)
## 11244                                                                                                                                                                                                                                           Mining and quarrying, value added (constant LCU)
## 11245                                                                                                                                                                                                                               Industry (including construction), value added (current US$)
## 11246                                                                                                                                                                                                                               Industry (including construction), value added (current LCU)
## 11247                                                                                                                                                                                                                         Industry (including construction), value added (constant 2015 US$)
## 11248                                                                                                                                                                                                                                                  Industry, value added (constant 1987 US$)
## 11249                                                                                                                                                                                                                           Industry (including construction), value added (annual % growth)
## 11250                                                                                                                                                                                                                              Industry (including construction), value added (constant LCU)
## 11251                                                                                                                                                                                                                                                  Industry, value added (constant 1987 LCU)
## 11252                                                                                                                                                                                                                                                    Industry, value added (annual % growth)
## 11253                                                                                                                                                                                                                                                Industry, val. added defl. (1987=100,Index)
## 11254                                                                                                                                                                                                                                                Industry: contribution to growth of GDP (%)
## 11255                                                                                                                                                                                                                                  Industry (including construction), value added (% of GDP)
## 11256                                                                                                                                                                                                                                              Chemicals (% of value added in manufacturing)
## 11257                                                                                                                                                                                                                                              Chemicals (% of value added in manufacturing)
## 11258                                                                                                                                                                                                                                     Food, beverages, and tobacco (% of value added in mfg)
## 11259                                                                                                                                                                                                                            Food, beverages and tobacco (% of value added in manufacturing)
## 11260                                                                                                                                                                                                                                Machinery and transport equipment (% of value added in mfg)
## 11261                                                                                                                                                                                                                      Machinery and transport equipment (% of value added in manufacturing)
## 11262                                                                                                                                                                                                                                              Other manufacturing (% of value added in mfg)
## 11263                                                                                                                                                                                                                                    Other manufacturing (% of value added in manufacturing)
## 11264                                                                                                                                                                                                               Medium and high-tech manufacturing value added (% manufacturing value added)
## 11265                                                                                                                                                                                                                                            Textiles and clothing (% of value added in mfg)
## 11266                                                                                                                                                                                                                                  Textiles and clothing (% of value added in manufacturing)
## 11267                                                                                                                                                                                                                               Public administration and defence, value added (current US$)
## 11268                                                                                                                                                                                                                               Public administration and defence, value added (current LCU)
## 11269                                                                                                                                                                                                                              Public administration and defence, value added (constant LCU)
## 11270                                                                                                                                                                                                                    Financial and insurance activities (banking), value added (current US$)
## 11271                                                                                                                                                                                                                    Financial and insurance activities (banking), value added (current LCU)
## 11272                                                                                                                                                                                                                   Financial and insurance activities (banking), value added (constant LCU)
## 11273                                                                                                                                                                                                                                              Discrepancy in GDP, value added (current US$)
## 11274                                                                                                                                                                                                                                              Discrepancy in GDP, value added (current LCU)
## 11275                                                                                                                                                                                                                                             Discrepancy in GDP, value added (constant LCU)
## 11276                                                                                                                                                                                                                                          Ownership of dwellings, value added (current US$)
## 11277                                                                                                                                                                                                                                          Ownership of dwellings, value added (current LCU)
## 11278                                                                                                                                                                                                                                         Ownership of dwellings, value added (constant LCU)
## 11279                                                                                                                                                                                                                                       Services, value added per worker (constant 2015 US$)
## 11280                                                                                                                                                                                                                                                  Other services, value added (current US$)
## 11281                                                                                                                                                                                                                                                  Other services, value added (current LCU)
## 11282                                                                                                                                                                                                                                                 Other services, value added (constant LCU)
## 11283                                                                                                                                                                                                                                                  Services, etc., value added (current US$)
## 11284                                                                                                                                                                                                                                                  Services, etc., value added (current LCU)
## 11285                                                                                                                                                                                                                                            Services, etc., value added (constant 2010 US$)
## 11286                                                                                                                                                                                                                                            Services, etc., value added (constant 1987 US$)
## 11287                                                                                                                                                                                                                                              Services, etc., value added (annual % growth)
## 11288                                                                                                                                                                                                                                                 Services, etc., value added (constant LCU)
## 11289                                                                                                                                                                                                                                            Services, etc., value added (constant 1987 LCU)
## 11290                                                                                                                                                                                                                                              Services, etc., value added (annual % growth)
## 11291                                                                                                                                                                                                                                              Value added, services and etc growth rate (%)
## 11292                                                                                                                                                                                                                                                Services: contribution to growth of GDP (%)
## 11293                                                                                                                                                                                                                                                     Services, etc., value added (% of GDP)
## 11294                                                                                                                                                                                                                                                        Services, value added (current US$)
## 11295                                                                                                                                                                                                                                                        Services, value added (current LCU)
## 11296                                                                                                                                                                                                                                                  Services, value added (constant 2015 US$)
## 11297                                                                                                                                                                                                                                                    Services, value added (annual % growth)
## 11298                                                                                                                                                                                                                                                       Services, value added (constant LCU)
## 11299                                                                                                                                                                                                                                                           Services, value added (% of GDP)
## 11300                                                                                                                                                                                                                                      Wholesale and retail trade, value added (current US$)
## 11301                                                                                                                                                                                                                                      Wholesale and retail trade, value added (current LCU)
## 11302                                                                                                                                                                                                                                     Wholesale and retail trade, value added (constant LCU)
## 11303                                                                                                                                                                                                                       Transportation, storage and communication, value added (current US$)
## 11304                                                                                                                                                                                                                       Transportation, storage and communication, value added (current LCU)
## 11305                                                                                                                                                                                                                      Transportation, storage and communication, value added (constant LCU)
## 11306                                                                                                                                                                                                                                       Human capital per capita, female (constant 2018 US$)
## 11307                                                                                                                                                                                                                                                  Human capital, female (constant 2018 US$)
## 11308                                                                                                                                                                                                                              Human capital per capita, employed female (constant 2018 US$)
## 11309                                                                                                                                                                                                                                         Human capital, employed female (constant 2018 US$)
## 11310                                                                                                                                                                                                                         Human capital per capita, self-employed female (constant 2018 US$)
## 11311                                                                                                                                                                                                                                    Human capital, self-employed female (constant 2018 US$)
## 11312                                                                                                                                                                                                                                         Human capital per capita, male (constant 2018 US$)
## 11313                                                                                                                                                                                                                                                    Human capital, male (constant 2018 US$)
## 11314                                                                                                                                                                                                                                Human capital per capita, employed male (constant 2018 US$)
## 11315                                                                                                                                                                                                                                           Human capital, employed male (constant 2018 US$)
## 11316                                                                                                                                                                                                                           Human capital per capita, self-employed male (constant 2018 US$)
## 11317                                                                                                                                                                                                                                      Human capital, self-employed male (constant 2018 US$)
## 11318                                                                                                                                                                                                                                               Human capital per capita (constant 2018 US$)
## 11319                                                                                                                                                                                                                                                          Human capital (constant 2018 US$)
## 11320                                                                                                                                                                                                                          Natural capital per capita, agricultural land (constant 2018 US$)
## 11321                                                                                                                                                                                                                                     Natural capital, agricultural land (constant 2018 US$)
## 11322                                                                                                                                                                                                                Natural capital per capita, agricultural land: cropland (constant 2018 US$)
## 11323                                                                                                                                                                                                                           Natural capital, agricultural land: cropland (constant 2018 US$)
## 11324                                                                                                                                                                                                                Natural capital per capita, forests: ecosystem services (constant 2018 US$)
## 11325                                                                                                                                                                                                                           Natural capital, forests: ecosystem services (constant 2018 US$)
## 11326                                                                                                                                                                                                                                  Natural capital per capita, fisheries (constant 2018 US$)
## 11327                                                                                                                                                                                                                                             Natural capital, fisheries (constant 2018 US$)
## 11328                                                                                                                                                                                                                               Natural capital per capita, fossil fuels (constant 2018 US$)
## 11329                                                                                                                                                                                                                                          Natural capital, fossil fuels (constant 2018 US$)
## 11330                                                                                                                                                                                                                            Natural capital per capita, forests: timber (constant 2018 US$)
## 11331                                                                                                                                                                                                                                       Natural capital, forests: timber (constant 2018 US$)
## 11332                                                                                                                                                                                                                                  Natural capital per capita, mangroves (constant 2018 US$)
## 11333                                                                                                                                                                                                                                             Natural capital, mangroves (constant 2018 US$)
## 11334                                                                                                                                                                                                              Natural capital per capita, nonrenewable assets: minerals (constant 2018 US$)
## 11335                                                                                                                                                                                                                         Natural capital, nonrenewable assets: minerals (constant 2018 US$)
## 11336                                                                                                                                                                                                             Natural capital per capita, agricultural land: pastureland (constant 2018 US$)
## 11337                                                                                                                                                                                                                        Natural capital, agricultural land: pastureland (constant 2018 US$)
## 11338                                                                                                                                                                                                                                             Natural capital per capita (constant 2018 US$)
## 11339                                                                                                                                                                                                                            Natural capital per capita, protected areas (constant 2018 US$)
## 11340                                                                                                                                                                                                                                       Natural capital, protected areas (constant 2018 US$)
## 11341                                                                                                                                                                                                                                  Natural capital per capita, renewable (constant 2018 US$)
## 11342                                                                                                                                                                                                                                             Natural capital, renewable (constant 2018 US$)
## 11343                                                                                                                                                                                                                  Natural capital per capita, nonrenewable assets: coal (constant 2018 US$)
## 11344                                                                                                                                                                                                                             Natural capital, nonrenewable assets: coal (constant 2018 US$)
## 11345                                                                                                                                                                                                                   Natural capital per capita, nonrenewable assets: gas (constant 2018 US$)
## 11346                                                                                                                                                                                                                              Natural capital, nonrenewable assets: gas (constant 2018 US$)
## 11347                                                                                                                                                                                                                   Natural capital per capita, nonrenewable assets: oil (constant 2018 US$)
## 11348                                                                                                                                                                                                                              Natural capital, nonrenewable assets: oil (constant 2018 US$)
## 11349                                                                                                                                                                                                                        Natural capital per capita, nonrenewable assets (constant 2018 US$)
## 11350                                                                                                                                                                                                                                   Natural capital, nonrenewable assets (constant 2018 US$)
## 11351                                                                                                                                                                                                                                                        Natural capital (constant 2018 US$)
## 11352                                                                                                                                                                                                                                          Net foreign assets per capita (constant 2018 US$)
## 11353                                                                                                                                                                                                                                                     Net foreign assets (constant 2018 US$)
## 11354                                                                                                                                                                                                                                            Produced capital per capita (constant 2018 US$)
## 11355                                                                                                                                                                                                                                                       Produced capital (constant 2018 US$)
## 11356                                                                                                                                                                                                                                                Total wealth per capita (constant 2018 US$)
## 11357                                                                                                                                                                                                                                                           Total wealth (constant 2018 US$)
## 11358                                                                                                                                                                                                                                      Adjusted savings: education expenditure (current US$)
## 11359                                                                                                                                                                                                                                         Adjusted savings: education expenditure (% of GNI)
## 11360                                                                                                                                                                                                                                      Adjusted savings: carbon dioxide damage (current US$)
## 11361                                                                                                                                                                                                                                         Adjusted savings: carbon dioxide damage (% of GNI)
## 11362                                                                                                                                                                                                                                       Adjusted savings: net forest depletion (current US$)
## 11363                                                                                                                                                                                                                                          Adjusted savings: net forest depletion (% of GNI)
## 11364                                                                                                                                                                                                                               Adjusted savings: consumption of fixed capital (current US$)
## 11365                                                                                                                                                                                                                                  Adjusted savings: consumption of fixed capital (% of GNI)
## 11366                                                                                                                                                                                                                                          Adjusted savings: mineral depletion (current US$)
## 11367                                                                                                                                                                                                                                             Adjusted savings: mineral depletion (% of GNI)
## 11368                                                                                                                                                                                                                                           Adjusted savings: energy depletion (current US$)
## 11369                                                                                                                                                                                                                                              Adjusted savings: energy depletion (% of GNI)
## 11370                                                                                                                                                                                                                                Adjusted savings: particulate emission damage (current US$)
## 11371                                                                                                                                                                                                                                   Adjusted savings: particulate emission damage (% of GNI)
## 11372                                                                                                                                                                                                                                   Adjusted savings: natural resources depletion (% of GNI)
## 11373                                                                                                                                                                                                                                              Adjusted savings: gross savings (current US$)
## 11374                                                                                                                                                                                                                                                 Adjusted savings: gross savings (% of GNI)
## 11375                                                                                                                                                                                                                                       Adjusted savings: net national savings (current US$)
## 11376                                                                                                                                                                                                                                          Adjusted savings: net national savings (% of GNI)
## 11377                                                                                                                                                                                                                                                 Adjusted net national income (current US$)
## 11378                                                                                                                                                                                                                                           Adjusted net national income (constant 2015 US$)
## 11379                                                                                                                                                                                                                                             Adjusted net national income (annual % growth)
## 11380                                                                                                                                                                                                                                      Adjusted net national income per capita (current US$)
## 11381                                                                                                                                                                                                                                Adjusted net national income per capita (constant 2015 US$)
## 11382                                                                                                                                                                                                                                  Adjusted net national income per capita (annual % growth)
## 11383                                                                                                                                                                                                                  Adjusted net savings, including particulate emission damage (current US$)
## 11384                                                                                                                                                                                                                     Adjusted net savings, including particulate emission damage (% of GNI)
## 11385                                                                                                                                                                                                                                              Adjusted net savings per capita (current US$)
## 11386                                                                                                                                                                                                                  Adjusted net savings, excluding particulate emission damage (current US$)
## 11387                                                                                                                                                                                                                     Adjusted net savings, excluding particulate emission damage (% of GNI)
## 11388                                                                                                                                                                                                                                                   Agricultural support estimate (% of GDP)
## 11389                                                                                                                                                                                                                                        Exports as a capacity to import (constant 1987 US$)
## 11390                                                                                                                                                                                                                                             Exports as a capacity to import (constant LCU)
## 11391                                                                                                                                                                                                                                        Exports as a capacity to import (constant 1987 LCU)
## 11392                                                                                                                                                                                                                                                                      Coal rents (% of GDP)
## 11393                                                                                                                                                                                                                                                         Inflation, GDP deflator (annual %)
## 11394                                                                                                                                                                                                                                                         Inflation, GDP deflator (annual %)
## 11395                                                                                                                                                                                                                                          Inflation, GDP deflator: linked series (annual %)
## 11396                                                                                                                                                                                                                                                 GDP deflator (base year varies by country)
## 11397                                                                                                                                                                                                                                                                  GDP deflator (1987 = 100)
## 11398                                                                                                                                                                                                                                  GDP deflator: linked series (base year varies by country)
## 11399                                                                                                                                                                                                                                   Discrepancy in expenditure estimate of GDP (current US$)
## 11400                                                                                                                                                                                                                                   Discrepancy in expenditure estimate of GDP (current LCU)
## 11401                                                                                                                                                                                                                                  Discrepancy in expenditure estimate of GDP (constant LCU)
## 11402                                                                                                                                                                                                                                      Gross value added at basic prices (GVA) (current US$)
## 11403                                                                                                                                                                                                                                      Gross value added at basic prices (GVA) (current LCU)
## 11404                                                                                                                                                                                                                                Gross value added at basic prices (GVA) (constant 2015 US$)
## 11405                                                                                                                                                                                                                                                     GDP at factor cost (constant 1987 US$)
## 11406                                                                                                                                                                                                                                     Gross value added at basic prices (GVA) (constant LCU)
## 11407                                                                                                                                                                                                                                                     GDP at factor cost (constant 1987 LCU)
## 11408                                                                                                                                                                                                                                                                    Forest rents (% of GDP)
## 11409                                                                                                                                                                                                                                                                   Mineral rents (% of GDP)
## 11410                                                                                                                                                                                                                                                                          GDP (current US$)
## 11411                                                                                                                                                                                                                                                 GDP deflator, index (2000=100; US$ series)
## 11412                                                                                                                                                                                                                                                                          GDP (current LCU)
## 11413                                                                                                                                                                                                                                                           GDP: linked series (current LCU)
## 11414                                                                                                                                                                                                                                          GDP deflator, period average (LCU index 2000=100)
## 11415                                                                                                                                                                                                                                                                               GDP Deflator
## 11416                                                                                                                                                                                                                                                                    GDP (constant 2015 US$)
## 11417                                                                                                                                                                                                                                                   GDP at market prices (constant 1987 US$)
## 11418                                                                                                                                                                                                                                                                      GDP growth (annual %)
## 11419                                                                                                                                                                                                                                                                         GDP (constant LCU)
## 11420                                                                                                                                                                                                                                                   GDP at market prices (constant 1987 LCU)
## 11421                                                                                                                                                                                                                                                                      GDP growth (annual %)
## 11422                                                                                                                                                                                                                                                         GDP, PPP (current international $)
## 11423                                                                                                                                                                                                                                                   GDP, PPP (constant 2017 international $)
## 11424                                                                                                                                                                                                                                                   GDP, PPP (constant 1987 international $)
## 11425                                                                                                                                                                                                                                                              GDP deflator (1987=100,Index)
## 11426                                                                                                                                                                                                                                     GDP deflator, end period (base year varies by country)
## 11427                                                                                                                                                                                                                                              Gross domestic product (Av. annual growth, %)
## 11428                                                                                                                                                                                                                                                               Natural gas rents (% of GDP)
## 11429                                                                                                                                                                                                                                                               GDP per capita (current US$)
## 11430                                                                                                                                                                                                                                                               GDP per capita (current LCU)
## 11431                                                                                                                                                                                                                                                         GDP per capita (constant 2015 US$)
## 11432                                                                                                                                                                                                                                                           GDP per capita growth (annual %)
## 11433                                                                                                                                                                                                                                                              GDP per capita (constant LCU)
## 11434                                                                                                                                                                                                                                              GDP per capita, PPP (current international $)
## 11435                                                                                                                                                                                                                                        GDP per capita, PPP (constant 2017 international $)
## 11436                                                                                                                                                                                                                                        GDP per capita, PPP (constant 1987 international $)
## 11437                                                                                                                                                                                                                                                      GDP per capita, PPP annual growth (%)
## 11438                                                                                                                                                                                                                                                                       Oil rents (% of GDP)
## 11439                                                                                                                                                                                                                                                   Total natural resources rents (% of GDP)
## 11440                                                                                                                                                                                                                                              Gross domestic savings, private (current US$)
## 11441                                                                                                                                                                                                                                              Gross domestic savings, private (current LCU)
## 11442                                                                                                                                                                                                                                             Gross domestic savings, private (constant LCU)
## 11443                                                                                                                                                                                                                                               Gross domestic savings, public (current US$)
## 11444                                                                                                                                                                                                                                               Gross domestic savings, public (current LCU)
## 11445                                                                                                                                                                                                                                              Gross domestic savings, public (constant LCU)
## 11446                                                                                                                                                                                                                                                       Gross domestic savings (current US$)
## 11447                                                                                                                                                                                                                                                       Gross domestic savings (current LCU)
## 11448                                                                                                                                                                                                                                          Gross domestic savings, total (constant 2000 US$)
## 11449                                                                                                                                                                                                                                                 Gross domestic savings (constant 1987 US$)
## 11450                                                                                                                                                                                                                                                      Gross domestic savings (constant LCU)
## 11451                                                                                                                                                                                                                                                 Gross domestic savings (constant 1987 LCU)
## 11452                                                                                                                                                                                                                                                          Gross domestic savings (% of GDP)
## 11453                                                                                                                                                                                                                                                  Gross domestic income (constant 2005 US$)
## 11454                                                                                                                                                                                                                                                  Gross domestic income (constant 1987 US$)
## 11455                                                                                                                                                                                                                                                       Gross domestic income (constant LCU)
## 11456                                                                                                                                                                                                                                                  Gross domestic income (constant 1987 LCU)
## 11457                                                                                                                                                                                                                                          Genuine savings: education expenditure (% of GDP)
## 11458                                                                                                                                                                                                                                          Genuine savings: carbon dioxide damage (% of GDP)
## 11459                                                                                                                                                                                                                                           Genuine savings: net forest depletion (% of GDP)
## 11460                                                                                                                                                                                                                                   Genuine savings: consumption of fixed capital (% of GDP)
## 11461                                                                                                                                                                                                                                              Genuine savings: mineral depletion (% of GDP)
## 11462                                                                                                                                                                                                                                               Genuine savings: energy depletion (% of GDP)
## 11463                                                                                                                                                                                                                                           Genuine savings: net domestic savings (% of GDP)
## 11464                                                                                                                                                                                                                                                        Genuine domestic savings (% of GDP)
## 11465                                                                                                                                                                                                                                                            GNI, Atlas method (current US$)
## 11466                                                                                                                                                                                                                                                                          GNI (current US$)
## 11467                                                                                                                                                                                                                                                                          GNI (current LCU)
## 11468                                                                                                                                                                                                                                                           GNI: linked series (current LCU)
## 11469                                                                                                                                                                                                                                                                    GNI (constant 2015 US$)
## 11470                                                                                                                                                                                                                                                   GNP at market prices (constant 1987 US$)
## 11471                                                                                                                                                                                                                                                                      GNI growth (annual %)
## 11472                                                                                                                                                                                                                                                                         GNI (constant LCU)
## 11473                                                                                                                                                                                                                                                   GNP at market prices (constant 1987 LCU)
## 11474                                                                                                                                                                                                                                                                      GNP growth (annual %)
## 11475                                                                                                                                                                                                                                                                       GNI per capita (US$)
## 11476                                                                                                                                                                                                                                                         GNI, PPP (current international $)
## 11477                                                                                                                                                                                                                                                   GNI, PPP (constant 2017 international $)
## 11478                                                                                                                                                                                                                                                   GNP, PPP (constant 1987 international $)
## 11479                                                                                                                                                                                                                                                 GNI per capita, Atlas method (current US$)
## 11480                                                                                                                                                                                                                                              GNP per capita (Atlas method) (US$,curr. pr.)
## 11481                                                                                                                                                                                                                                                               GNI per capita (current LCU)
## 11482                                                                                                                                                                                                                                                         GNI per capita (constant 2015 US$)
## 11483                                                                                                                                                                                                                                                         GNP per capita (constant 1987 US$)
## 11484                                                                                                                                                                                                                                                           GNI per capita growth (annual %)
## 11485                                                                                                                                                                                                                                                              GNI per capita (constant LCU)
## 11486                                                                                                                                                                                                                                                         GNP per capita (constant 1987 LCU)
## 11487                                                                                                                                                                                                                                              GNI per capita, PPP (current international $)
## 11488                                                                                                                                                                                                                                        GNI per capita, PPP (constant 2017 international $)
## 11489                                                                                                                                                                                                                                        GNP per capita, PPP (constant 1987 international $)
## 11490                                                                                                                                                                                                                                                           GNP per capita growth (annual %)
## 11491                                                                                                                                                                                                                                       Gross national product per capita (USD, Atlas meth.)
## 11492                                                                                                                                                                                                                                                                Gross savings (current US$)
## 11493                                                                                                                                                                                                                                                                Gross savings (current LCU)
## 11494                                                                                                                                                                                                                                                                   Gross savings (% of GNI)
## 11495                                                                                                                                                                                                                Gross national savings, including net current transfers (constant 2000 US$)
## 11496                                                                                                                                                                                                                     Gross national savings, including net current transfers (constant LCU)
## 11497                                                                                                                                                                                                                                                                   Gross savings (% of GDP)
## 11498                                                                                                                                                                                                                                              Gross national savings, private (current US$)
## 11499                                                                                                                                                                                                                                              Gross national savings, private (current LCU)
## 11500                                                                                                                                                                                                                                             Gross national savings, private (constant LCU)
## 11501                                                                                                                                                                                                                                               Gross national savings, public (current US$)
## 11502                                                                                                                                                                                                                                               Gross national savings, public (current LCU)
## 11503                                                                                                                                                                                                                                              Gross national savings, public (constant LCU)
## 11504                                                                                                                                                                                                                                                          CP Gross National Savings (Local)
## 11505                                                                                                                                                                                                                                                Gross national income per capita (1987 USD)
## 11506                                                                                                                                                                                                                                                Gross national income per capita (1987 US$)
## 11507                                                                                                                                                                                                                                             Gross national disposable income (current LCU)
## 11508                                                                                                                                                                                                                                                  Gross national income (constant 2000 US$)
## 11509                                                                                                                                                                                                                                                  Gross national income (constant 1987 US$)
## 11510                                                                                                                                                                                                                                                       Gross national income (constant LCU)
## 11511                                                                                                                                                                                                                                                  Gross national income (constant 1987 LCU)
## 11512                                                                                                                                                                                                                                               Gross national income (Av. annual growth, %)
## 11513                                                                                                                                                                                                                                  Net primary income (Net income from abroad) (current US$)
## 11514                                                                                                                                                                                                                                  Net primary income (Net income from abroad) (current LCU)
## 11515                                                                                                                                                                                                                                                 Net income from abroad (constant 1987 US$)
## 11516                                                                                                                                                                                                                                 Net primary income (Net income from abroad) (constant LCU)
## 11517                                                                                                                                                                                                                                                 Net income from abroad (constant 1987 LCU)
## 11518                                                                                                                                                                                                                                               CP Net Factor Income (+) or Payments (Local)
## 11519                                                                                                                                                                                                                                                               Indirect taxes (current US$)
## 11520                                                                                                                                                                                                                                                               Indirect taxes (current LCU)
## 11521                                                                                                                                                                                                                                             Taxes less subsidies on products (current US$)
## 11522                                                                                                                                                                                                                                             Taxes less subsidies on products (current LCU)
## 11523                                                                                                                                                                                                                                                     Net indirect taxes (constant 1987 US$)
## 11524                                                                                                                                                                                                                                            Taxes less subsidies on products (constant LCU)
## 11525                                                                                                                                                                                                                                                     Net indirect taxes (constant 1987 LCU)
## 11526                                                                                                                                                                                                                                                                    Subsidies (current US$)
## 11527                                                                                                                                                                                                                                                          Subsidies (current LCU; from SNA)
## 11528                                                                                                                                                                                                                     Net secondary income (Net current transfers from abroad) (current US$)
## 11529                                                                                                                                                                                                                     Net secondary income (Net current transfers from abroad) (current LCU)
## 11530                                                                                                                                                                                                                    Net secondary income (Net current transfers from abroad) (constant LCU)
## 11531                                                                                                                                                                                                                                              Terms of trade adjustment (constant 1987 US$)
## 11532                                                                                                                                                                                                                                                   Terms of trade adjustment (constant LCU)
## 11533                                                                                                                                                                                                                                              Terms of trade adjustment (constant 1987 LCU)
## 11534                                                                                                                                                                                                                                           Terms of Trade Adjustment (local) (Const. Price)
## 11535                                                                                                                                                                                                   Annual percentage growth rate of GDP at market prices based on constant 2010 US Dollars.
## 11536                                                                                                                                                                                                                                                       GDP,current US$,millions,seas. adj.,
## 11537                                                                                                                                                                                                                                                       GDP,current LCU,millions,seas. adj.,
## 11538                                                                                                                                                                                                                                                 GDP,constant 2010 US$,millions,seas. adj.,
## 11539                                                                                                                                                                                                                                                 GDP,constant 2010 LCU,millions,seas. adj.,
## 11540                                                                                                                                                                                              Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Starting salary
## 11541                                                                                                                                                                                       Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 10 years of experience
## 11542                                                                                                                                                                                       Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 15 years of experience
## 11543                                                                                                                                                                                                 Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Top of scale
## 11544                                                                                                                                                                                                  Annual statutory teacher salaries in public institutions in USD. Primary. Starting salary
## 11545                                                                                                                                                                                           Annual statutory teacher salaries in public institutions in USD. Primary. 10 years of experience
## 11546                                                                                                                                                                                           Annual statutory teacher salaries in public institutions in USD. Primary. 15 years of experience
## 11547                                                                                                                                                                                                     Annual statutory teacher salaries in public institutions in USD. Primary. Top of scale
## 11548                                                                                                                                                                                          Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Starting salary
## 11549                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 10 years of experience
## 11550                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 15 years of experience
## 11551                                                                                                                                                                                             Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Top of scale
## 11552                                                                                                                                                                                          Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Starting salary
## 11553                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 10 years of experience
## 11554                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 15 years of experience
## 11555                                                                                                                                                                                             Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Top of scale
## 11556                                                                                                                                                                                                                                                                 Other taxes (% of profits)
## 11557                                                                                                                                                                                                                      Share of female unskilled worker out of all workers in this sector, %
## 11558                                                                                                                                                                                                                        Share of female skilled worker out of all workers in this sector, %
## 11559                                                                                                                                                                                                                        Share of male unskilled worker out of all workers in this sector, %
## 11560                                                                                                                                                                                                                          Share of male skilled worker out of all workers in this sector, %
## 11561                                                                                                                                                                                                                                            DEC alternative conversion factor (LCU per US$)
## 11562                                                                                                                                                                                                                                       Official exchange rate (LCU per US$, period average)
## 11563                                                                                                                                                                                                                                     Official exchange rate to parallel exchange rate ratio
## 11564                                                                                                                                                                                                                                       PPP conversion factor, GDP (LCU per international $)
## 11565                                                                                                                                                                                                                                  2005 PPP conversion factor, GDP (LCU per international $)
## 11566                                                                                                                                                                                                                   Price level ratio of PPP conversion factor (GDP) to market exchange rate
## 11567                                                                                                                                                                                                                       PPP conversion factor, private consumption (LCU per international $)
## 11568                                                                                                                                                                                                                  2005 PPP conversion factor, private consumption (LCU per international $)
## 11569                                                                                                                                                                                                                                                           Maize price (US$ per metric ton)
## 11570                                                                                                                                                                                                                                                Maize price (local currency per metric ton)
## 11571                                                                                                                                                                                                                                                           Wheat price (US$ per metric ton)
## 11572                                                                                                                                                                                                                                                Wheat price (local currency per metric ton)
## 11573                                                                                                                                                                                                                             Palm Oil Land Area by type of condition: Damaged (in Hectares)
## 11574                                                                                                                                                                                                                            Palm Oil Land Area by type of condition: Immature (in Hectares)
## 11575                                                                                                                                                                                                                              Palm Oil Land Area by type of condition: Mature (in Hectares)
## 11576                                                                                                                                                                                                                             Palm Oil Land Area by type of ownership: Private (in Hectares)
## 11577                                                                                                                                                                                                                         Palm Oil Land Area by type of ownership: Smallholder (in Hectares)
## 11578                                                                                                                                                                                                              Palm Oil Land Area by type of ownership: State Owned Enterprise (in Hectares)
## 11579                                                                                                                                                                                                                                                    Palm Oil Land Area: Total (in Hectares)
## 11580                                                                                                                                                                                                                                    Palm Production by type of ownership: Private (in Tons)
## 11581                                                                                                                                                                                                                                Palm Production by type of ownership: Smallholder (in Tons)
## 11582                                                                                                                                                                                                                     Palm Production by type of ownership: State Owned Enterprise (in Tons)
## 11583                                                                                                                                                                                                                                                           Palm Production: Total (in Tons)
## 11584                                                                                                                                                                                                                                    Palm Oil Yield by type of ownership: Private (in Kg/Ha)
## 11585                                                                                                                                                                                                                                Palm Oil Yield by type of ownership: Smallholder (in Kg/Ha)
## 11586                                                                                                                                                                                                                     Palm Oil Yield by type of ownership: State Owned Enterprise (in Kg/Ha)
## 11587                                                                                                                                                                                            Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology)
## 11588                                                                                                                                                                                    Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology) - Score
## 11589                                                                                                                                                                                             Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology)
## 11590                                                                                                                                                                                     Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology) - Score
## 11591                                                                                                                                                                                                                                                 Paying taxes (DB06-16 methodology) - Score
## 11592                                                                                                                                                                                                                                                 Paying taxes (DB17-20 methodology) - Score
## 11593                                                                                                                                                                                                                                   Paying taxes: Labor tax and contributions (% of profits)
## 11594                                                                                                                                                                                                                       Paying taxes: Postfiling index (0-100) (DB17-20 methodology) - Score
## 11595                                                                                                                                                                                                                                                    Paying taxes: Profit tax (% of profits)
## 11596                                                                                                                                                                                                                                                   Paying taxes: Payments (number per year)
## 11597                                                                                                                                                                                                                                  Paying taxes: Payments per year (number per year) - Score
## 11598                                                                                                                                                                                                                                  Rank: Paying taxes (1=most business-friendly regulations)
## 11599                                                                                                                                                                                                                                                        Paying taxes: Time (hours per year)
## 11600                                                                                                                                                                                                                                                Paying taxes: Time (hours per year) - Score
## 11601                                                                                                                                                                                                                                Paying taxes: Total tax and contribution rate (% of profit)
## 11602                                                                                                                                                                                                                        Paying taxes: Total tax and contribution rate (% of profit) - Score
## 11603                                                                                                                                                                                                                      Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology)
## 11604                                                                                                                                                                                                              Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology) - Score
## 11605                                                                                                                                                                                                                 Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology)
## 11606                                                                                                                                                                                                         Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology) - Score
## 11607                                                                                                                                                                                                                                           Official exchange rate (LCU per US$, end period)
## 11608                                                                                                                                                                                                                                                          London gold price (US$ per ounce)
## 11609                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11610                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11611                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor (preT)
## 11612                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor -rural
## 11613                                                                                                                                                                                            Adequacy of social protection and labor programs (% of total welfare of beneficiary households)
## 11614                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor -urban
## 11615                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11616                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11617                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11618                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11619                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11620                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -rural
## 11621                                                                                                                                                                                                                 Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor 
## 11622                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -urban
## 11623                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11624                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -rural
## 11625                                                                                                                                                                                                                 Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor 
## 11626                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -urban
## 11627                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor (preT)
## 11628                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -rural
## 11629                                                                                                                                                                                                                 Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor 
## 11630                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -urban
## 11631                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11632                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11633                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor
## 11634                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11635                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) -All Social Protection and Labor  (preT)
## 11636                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) -All Social Protection and Labor
## 11637                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor (preT)
## 11638                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor -rural
## 11639                                                                                                                                                                                                                              Average per capita transfer -All Social Protection and Labor 
## 11640                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor -urban
## 11641                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor (preT)
## 11642                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -rural
## 11643                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor
## 11644                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -urban
## 11645                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor (preT)
## 11646                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor -rural
## 11647                                                                                                                                                                                                         Average per capita transfer held by 2nd quintile -All Social Protection and Labor 
## 11648                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor -urban
## 11649                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor (preT)
## 11650                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor -rural
## 11651                                                                                                                                                                                                         Average per capita transfer held by 3rd quintile -All Social Protection and Labor 
## 11652                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor -urban
## 11653                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor (preT)
## 11654                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor -rural
## 11655                                                                                                                                                                                                         Average per capita transfer held by 4th quintile -All Social Protection and Labor 
## 11656                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor -urban
## 11657                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor (preT)
## 11658                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -rural
## 11659                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor
## 11660                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -urban
## 11661                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11662                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11663                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11664                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11665                                                                                                                                                                                    Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits)
## 11666                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11667                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11668                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -rural
## 11669                                                                                                                                                                                                                   Benefits incidence in 2nd quintile (%) -All Social Protection and Labor 
## 11670                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -urban
## 11671                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11672                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -rural
## 11673                                                                                                                                                                                                                   Benefits incidence in 3rd quintile (%) -All Social Protection and Labor 
## 11674                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -urban
## 11675                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor (preT)
## 11676                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor -rural
## 11677                                                                                                                                                                                                                   Benefits incidence in 4th quintile (%) -All Social Protection and Labor 
## 11678                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor -urban
## 11679                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11680                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11681                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor
## 11682                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11683                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11684                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11685                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11686                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11687                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11688                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11689                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11690                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -rural
## 11691                                                                                                                                                                                                                Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor 
## 11692                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -urban
## 11693                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11694                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -rural
## 11695                                                                                                                                                                                                                Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor 
## 11696                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -urban
## 11697                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor (preT)
## 11698                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -rural
## 11699                                                                                                                                                                                                                Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor 
## 11700                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -urban
## 11701                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11702                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11703                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor
## 11704                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11705                                                                                                                                                                                                    Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.9 a day) (preT)
## 11706                                                                                                                                                                                                           Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11707                                                                                                                                                                                                        Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest) (preT)
## 11708                                                                                                                                                                                                        Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest) -rural
## 11709                                                                                                                                                                                                               Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest)
## 11710                                                                                                                                                                                                       Benefit-cost ratio - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11711                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11712                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11713                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor (preT)
## 11714                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor -rural
## 11715                                                                                                                                                                                                                         Coverage of social protection and labor programs (% of population)
## 11716                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor -urban
## 11717                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11718                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11719                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11720                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11721                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11722                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor -rural
## 11723                                                                                                                                                                                                                             Coverage in 2nd quintile (%) -All Social Protection and Labor 
## 11724                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor -urban
## 11725                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11726                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor -rural
## 11727                                                                                                                                                                                                                             Coverage in 3rd quintile (%) -All Social Protection and Labor 
## 11728                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor -urban
## 11729                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor (preT)
## 11730                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor -rural
## 11731                                                                                                                                                                                                                             Coverage in 4th quintile (%) -All Social Protection and Labor 
## 11732                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor -urban
## 11733                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11734                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11735                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) -All Social Protection and Labor
## 11736                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11737                                                                                                                                                                                                               Gini inequality index reduction (%) - All Social Protection and Labor -rural
## 11738                                                                                                                                                                                                                      Gini inequality index reduction (%) - All Social Protection and Labor
## 11739                                                                                                                                                                                                               Gini inequality index reduction (%) - All Social Protection and Labor -urban
## 11740                                                                                                                                                                                              Poverty Headcount reduction (%) - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11741                                                                                                                                                                                           Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural
## 11742                                                                                                                                                                                                  Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest)
## 11743                                                                                                                                                                                          Poverty Headcount reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11744                                                                                                                                                                                                    Poverty Gap reduction (%) - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11745                                                                                                                                                                                                 Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural
## 11746                                                                                                                                                                                                        Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest)
## 11747                                                                                                                                                                                                Poverty Gap reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11748                                                                                                                                                                                                       Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11749                                                                                                                                                                                                               Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11750                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market (preT)
## 11751                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market -rural
## 11752                                                                                                                                                                                                                                             Adequacy of benefits (%) - Active Labor Market
## 11753                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market -urban
## 11754                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11755                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11756                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market
## 11757                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11758                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market (preT)
## 11759                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market -rural
## 11760                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Active Labor Market
## 11761                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market -urban
## 11762                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market (preT)
## 11763                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market -rural
## 11764                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Active Labor Market
## 11765                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market -urban
## 11766                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market (preT)
## 11767                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market -rural
## 11768                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Active Labor Market
## 11769                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market -urban
## 11770                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11771                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -rural
## 11772                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market
## 11773                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -urban
## 11774                                                                                                                                                                                               Average per capita transfer held by extreme poor (<$1.9 a day) - Active Labor Market  (preT)
## 11775                                                                                                                                                                                                       Average per capita transfer held by extreme poor (<$1.9 a day) - Active Labor Market
## 11776                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market (preT)
## 11777                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market -rural
## 11778                                                                                                                                                                                                                                          Average per capita transfer - Active Labor Market
## 11779                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market -urban
## 11780                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market (preT)
## 11781                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -rural
## 11782                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Active Labor Market
## 11783                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -urban
## 11784                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market (preT)
## 11785                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market -rural
## 11786                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Active Labor Market
## 11787                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market -urban
## 11788                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market (preT)
## 11789                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market -rural
## 11790                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Active Labor Market
## 11791                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market -urban
## 11792                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market (preT)
## 11793                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market -rural
## 11794                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Active Labor Market
## 11795                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market -urban
## 11796                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market (preT)
## 11797                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market -rural
## 11798                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Active Labor Market
## 11799                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market -urban
## 11800                                                                                                                                                                                                         Benefits incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11801                                                                                                                                                                                                                 Benefits incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11802                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11803                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11804                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market
## 11805                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11806                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market (preT)
## 11807                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market -rural
## 11808                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Active Labor Market
## 11809                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market -urban
## 11810                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market (preT)
## 11811                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market -rural
## 11812                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Active Labor Market
## 11813                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market -urban
## 11814                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market (preT)
## 11815                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market -rural
## 11816                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Active Labor Market
## 11817                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market -urban
## 11818                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11819                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -rural
## 11820                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Active Labor Market
## 11821                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -urban
## 11822                                                                                                                                                                                                      Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11823                                                                                                                                                                                                              Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11824                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11825                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11826                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market
## 11827                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11828                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market (preT)
## 11829                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market -rural
## 11830                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Active Labor Market
## 11831                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market -urban
## 11832                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market (preT)
## 11833                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market -rural
## 11834                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Active Labor Market
## 11835                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market -urban
## 11836                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market (preT)
## 11837                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market -rural
## 11838                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Active Labor Market
## 11839                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market -urban
## 11840                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11841                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -rural
## 11842                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market
## 11843                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -urban
## 11844                                                                                                                                                                                                              Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.9 a day) (preT)
## 11845                                                                                                                                                                                                                     Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11846                                                                                                                                                                                                                  Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest) (preT)
## 11847                                                                                                                                                                                                                  Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest) -rural
## 11848                                                                                                                                                                                                                         Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest)
## 11849                                                                                                                                                                                                                 Benefit-cost ratio -  Active Labor Market  - 1st quintile (poorest) -urban
## 11850                                                                                                                                                                                                                   Coverage in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11851                                                                                                                                                                                                                           Coverage in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11852                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market (preT)
## 11853                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market -rural
## 11854                                                                                                                                                                                                                                                         Coverage (%) - Active Labor Market
## 11855                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market -urban
## 11856                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11857                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11858                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Active Labor Market
## 11859                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11860                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market (preT)
## 11861                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market -rural
## 11862                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Active Labor Market
## 11863                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market -urban
## 11864                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market (preT)
## 11865                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market -rural
## 11866                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Active Labor Market
## 11867                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market -urban
## 11868                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market (preT)
## 11869                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market -rural
## 11870                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Active Labor Market
## 11871                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market -urban
## 11872                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11873                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market -rural
## 11874                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Active Labor Market
## 11875                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market -urban
## 11876                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Active Labor Market -rural
## 11877                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Active Labor Market
## 11878                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Active Labor Market -urban
## 11879                                                                                                                                                                                                        Poverty Headcount reduction (%) -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11880                                                                                                                                                                                                     Poverty Headcount reduction (%) -  Active Labor Market  -1st quintile (poorest) -rural
## 11881                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Active Labor Market  -1st quintile (poorest)
## 11882                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Active Labor Market  - 1st quintile (poorest) -urban
## 11883                                                                                                                                                                                                              Poverty Gap reduction (%) -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11884                                                                                                                                                                                                           Poverty Gap reduction (%) -  Active Labor Market  -1st quintile (poorest) -rural
## 11885                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Active Labor Market  -1st quintile (poorest)
## 11886                                                                                                                                                                                                          Poverty Gap reduction (%) -  Active Labor Market  - 1st quintile (poorest) -urban
## 11887                                                                                                                                                                                                          Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11888                                                                                                                                                                                                                  Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11889                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market (preT)
## 11890                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market -rural
## 11891                                                                                                                                                                                                  Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households)
## 11892                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market -urban
## 11893                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11894                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -rural
## 11895                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market
## 11896                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -urban
## 11897                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market (preT)
## 11898                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market -rural
## 11899                                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - All Labor Market 
## 11900                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market -urban
## 11901                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market (preT)
## 11902                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market -rural
## 11903                                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - All Labor Market 
## 11904                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market -urban
## 11905                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market (preT)
## 11906                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market -rural
## 11907                                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - All Labor Market 
## 11908                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market -urban
## 11909                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market (preT)
## 11910                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -rural
## 11911                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market
## 11912                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -urban
## 11913                                                                                                                                                                                                  Average per capita transfer held by extreme poor (<$1.9 a day) - All Labor Market  (preT)
## 11914                                                                                                                                                                                                          Average per capita transfer held by extreme poor (<$1.9 a day) - All Labor Market
## 11915                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market (preT)
## 11916                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market -rural
## 11917                                                                                                                                                                                                                                            Average per capita transfer - All Labor Market 
## 11918                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market -urban
## 11919                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market (preT)
## 11920                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market -rural
## 11921                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - All Labor Market
## 11922                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market -urban
## 11923                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market (preT)
## 11924                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market -rural
## 11925                                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - All Labor Market 
## 11926                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market -urban
## 11927                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market (preT)
## 11928                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market -rural
## 11929                                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - All Labor Market 
## 11930                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market -urban
## 11931                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market (preT)
## 11932                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market -rural
## 11933                                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - All Labor Market 
## 11934                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market -urban
## 11935                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market (preT)
## 11936                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market -rural
## 11937                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - All Labor Market
## 11938                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market -urban
## 11939                                                                                                                                                                                                            Benefits incidence in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11940                                                                                                                                                                                                                    Benefits incidence in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11941                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11942                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -rural
## 11943                                                                                                                                                                                       Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits)
## 11944                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -urban
## 11945                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market (preT)
## 11946                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market -rural
## 11947                                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - All Labor Market 
## 11948                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market -urban
## 11949                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market (preT)
## 11950                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market -rural
## 11951                                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - All Labor Market 
## 11952                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market -urban
## 11953                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market (preT)
## 11954                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market -rural
## 11955                                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - All Labor Market 
## 11956                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market -urban
## 11957                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market (preT)
## 11958                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market -rural
## 11959                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - All Labor Market
## 11960                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market -urban
## 11961                                                                                                                                                                                                         Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11962                                                                                                                                                                                                                 Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11963                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11964                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -rural
## 11965                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market
## 11966                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -urban
## 11967                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market (preT)
## 11968                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market -rural
## 11969                                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - All Labor Market 
## 11970                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market -urban
## 11971                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market (preT)
## 11972                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market -rural
## 11973                                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - All Labor Market 
## 11974                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market -urban
## 11975                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market (preT)
## 11976                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market -rural
## 11977                                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - All Labor Market 
## 11978                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market -urban
## 11979                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market (preT)
## 11980                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -rural
## 11981                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market
## 11982                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -urban
## 11983                                                                                                                                                                                                                 Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.9 a day) (preT)
## 11984                                                                                                                                                                                                                        Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.9 a day)
## 11985                                                                                                                                                                                                                     Benefit-cost ratio -  All Labor Market  -1st quintile (poorest) (preT)
## 11986                                                                                                                                                                                                                     Benefit-cost ratio -  All Labor Market  -1st quintile (poorest) -rural
## 11987                                                                                                                                                                                                                            Benefit-cost ratio -  All Labor Market  -1st quintile (poorest)
## 11988                                                                                                                                                                                                                    Benefit-cost ratio -  All Labor Market  - 1st quintile (poorest) -urban
## 11989                                                                                                                                                                                                                      Coverage in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11990                                                                                                                                                                                                                              Coverage in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11991                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market (preT)
## 11992                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market -rural
## 11993                                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP (% of population)
## 11994                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market -urban
## 11995                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11996                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market -rural
## 11997                                                                                                                                                                                                           Coverage of unemployment benefits and ALMP in poorest quintile (% of population)
## 11998                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market -urban
## 11999                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market (preT)
## 12000                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market -rural
## 12001                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 2nd quintile (% of population)
## 12002                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market -urban
## 12003                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market (preT)
## 12004                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market -rural
## 12005                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 3rd quintile (% of population)
## 12006                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market -urban
## 12007                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market (preT)
## 12008                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market -rural
## 12009                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 4th quintile (% of population)
## 12010                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market -urban
## 12011                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market (preT)
## 12012                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market -rural
## 12013                                                                                                                                                                                                           Coverage of unemployment benefits and ALMP in richest quintile (% of population)
## 12014                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market -urban
## 12015                                                                                                                                                                                                                             Gini inequality index reduction (%) -  All Labor Market -rural
## 12016                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  All Labor Market
## 12017                                                                                                                                                                                                                             Gini inequality index reduction (%) -  All Labor Market -urban
## 12018                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Labor Market  -extreme poor (<$1.9 a day)
## 12019                                                                                                                                                                                                        Poverty Headcount reduction (%) -  All Labor Market  -1st quintile (poorest) -rural
## 12020                                                                                                                                                                                                               Poverty Headcount reduction (%) -  All Labor Market  -1st quintile (poorest)
## 12021                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Labor Market  - 1st quintile (poorest) -urban
## 12022                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Labor Market  -extreme poor (<$1.9 a day)
## 12023                                                                                                                                                                                                              Poverty Gap reduction (%) -  All Labor Market  -1st quintile (poorest) -rural
## 12024                                                                                                                                                                                                                     Poverty Gap reduction (%) -  All Labor Market  -1st quintile (poorest)
## 12025                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Labor Market  - 1st quintile (poorest) -urban
## 12026                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12027                                                                                                                                                                                                              Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12028                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market (preT)
## 12029                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market -rural
## 12030                                                                                                                                                                                                                                           Adequacy of benefits (%) - Passive Labor Market 
## 12031                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market -urban
## 12032                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12033                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12034                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market
## 12035                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12036                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market (preT)
## 12037                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -rural
## 12038                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - Passive Labor Market 
## 12039                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -urban
## 12040                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market (preT)
## 12041                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -rural
## 12042                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - Passive Labor Market 
## 12043                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -urban
## 12044                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market (preT)
## 12045                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market -rural
## 12046                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - Passive Labor Market 
## 12047                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market -urban
## 12048                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12049                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12050                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market
## 12051                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12052                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - Passive Labor Market  (preT)
## 12053                                                                                                                                                                                                      Average per capita transfer held by extreme poor (<$1.9 a day) - Passive Labor Market
## 12054                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market (preT)
## 12055                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market -rural
## 12056                                                                                                                                                                                                                                        Average per capita transfer - Passive Labor Market 
## 12057                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market -urban
## 12058                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market (preT)
## 12059                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -rural
## 12060                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market
## 12061                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -urban
## 12062                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market (preT)
## 12063                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market -rural
## 12064                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - Passive Labor Market 
## 12065                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market -urban
## 12066                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market (preT)
## 12067                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market -rural
## 12068                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - Passive Labor Market 
## 12069                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market -urban
## 12070                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market (preT)
## 12071                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market -rural
## 12072                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - Passive Labor Market 
## 12073                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market -urban
## 12074                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market (preT)
## 12075                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -rural
## 12076                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Passive Labor Market
## 12077                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -urban
## 12078                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12079                                                                                                                                                                                                                Benefits incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12080                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12081                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12082                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market
## 12083                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12084                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market (preT)
## 12085                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market -rural
## 12086                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - Passive Labor Market 
## 12087                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market -urban
## 12088                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market (preT)
## 12089                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market -rural
## 12090                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - Passive Labor Market 
## 12091                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market -urban
## 12092                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market (preT)
## 12093                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market -rural
## 12094                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - Passive Labor Market 
## 12095                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market -urban
## 12096                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12097                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12098                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market
## 12099                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12100                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12101                                                                                                                                                                                                             Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12102                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12103                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12104                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market
## 12105                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12106                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market (preT)
## 12107                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -rural
## 12108                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - Passive Labor Market 
## 12109                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -urban
## 12110                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market (preT)
## 12111                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -rural
## 12112                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - Passive Labor Market 
## 12113                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -urban
## 12114                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market (preT)
## 12115                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market -rural
## 12116                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - Passive Labor Market 
## 12117                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market -urban
## 12118                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12119                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12120                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market
## 12121                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12122                                                                                                                                                                                                             Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.9 a day) (preT)
## 12123                                                                                                                                                                                                                    Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12124                                                                                                                                                                                                                 Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest) (preT)
## 12125                                                                                                                                                                                                                 Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest) -rural
## 12126                                                                                                                                                                                                                        Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest)
## 12127                                                                                                                                                                                                                Benefit-cost ratio -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12128                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12129                                                                                                                                                                                                                          Coverage in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12130                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market (preT)
## 12131                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market -rural
## 12132                                                                                                                                                                                                                                                       Coverage (%) - Passive Labor Market 
## 12133                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market -urban
## 12134                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12135                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12136                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Passive Labor Market
## 12137                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12138                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market (preT)
## 12139                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market -rural
## 12140                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - Passive Labor Market 
## 12141                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market -urban
## 12142                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market (preT)
## 12143                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market -rural
## 12144                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - Passive Labor Market 
## 12145                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market -urban
## 12146                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market (preT)
## 12147                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market -rural
## 12148                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - Passive Labor Market 
## 12149                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market -urban
## 12150                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12151                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12152                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Passive Labor Market
## 12153                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12154                                                                                                                                                                                                                         Gini inequality index reduction (%) -  Passive Labor Market -rural
## 12155                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Passive Labor Market
## 12156                                                                                                                                                                                                                         Gini inequality index reduction (%) -  Passive Labor Market -urban
## 12157                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12158                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Passive Labor Market  -1st quintile (poorest) -rural
## 12159                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Passive Labor Market  -1st quintile (poorest)
## 12160                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12161                                                                                                                                                                                                             Poverty Gap reduction (%) -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12162                                                                                                                                                                                                          Poverty Gap reduction (%) -  Passive Labor Market  -1st quintile (poorest) -rural
## 12163                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Passive Labor Market  -1st quintile (poorest)
## 12164                                                                                                                                                                                                         Poverty Gap reduction (%) -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12165                                                                                                                                                                                                             Population in extreme poor (<$1.9 a day) only receiving Labor Market (%, preT)
## 12166                                                                                                                                                                                                                   Population in extreme poor (<$1.9 a day) only receiving Labor Market (%)
## 12167                                                                                                                                                                                                                                           Population only receiving Labor Market (%, preT)
## 12168                                                                                                                                                                                                                                          Population only receiving Labor Market (%) -rural
## 12169                                                                                                                                                                                                                                                 Population only receiving Labor Market (%)
## 12170                                                                                                                                                                                                                                          Population only receiving Labor Market (%) -urban
## 12171                                                                                                                                                                                                             Population in the 1st quintile (poorest) only receiving Labor Market (%, preT)
## 12172                                                                                                                                                                                                            Population in the 1st quintile (poorest) only receiving Labor Market (%) -rural
## 12173                                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving Labor Market (%)
## 12174                                                                                                                                                                                                            Population in the 1st quintile (poorest) only receiving Labor Market (%) -urban
## 12175                                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) not receiving Social Protection (%, preT)
## 12176                                                                                                                                                                                                               Population in extreme poor (<$1.9 a day) not receiving Social Protection (%)
## 12177                                                                                                                                                                                                                                       Population not receiving Social Protection (%, preT)
## 12178                                                                                                                                                                                                                                      Population not receiving Social Protection (%) -rural
## 12179                                                                                                                                                                                                                                             Population not receiving Social Protection (%)
## 12180                                                                                                                                                                                                                                      Population not receiving Social Protection (%) -urban
## 12181                                                                                                                                                                                                         Population in the 1st quintile (poorest) not receiving Social Protection (%, preT)
## 12182                                                                                                                                                                                                        Population in the 1st quintile (poorest) not receiving Social Protection (%) -rural
## 12183                                                                                                                                                                                                               Population in the 1st quintile (poorest) not receiving Social Protection (%)
## 12184                                                                                                                                                                                                        Population in the 1st quintile (poorest) not receiving Social Protection (%) -urban
## 12185                                                                                                                                                                                                                Population in extreme poor (<$1.9 a day) receiving only 1 program (%, preT)
## 12186                                                                                                                                                                                                                      Population in extreme poor (<$1.9 a day) receiving only 1 program (%)
## 12187                                                                                                                                                                                                                                              Population receiving only 1 program (%, preT)
## 12188                                                                                                                                                                                                                                             Population receiving only 1 program (%) -rural
## 12189                                                                                                                                                                                                                                                    Population receiving only 1 program (%)
## 12190                                                                                                                                                                                                                                             Population receiving only 1 program (%) -urban
## 12191                                                                                                                                                                                                                     Population in the 1st quintile (poorest) receiving 1 program (%, preT)
## 12192                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 1 program (%) -rural
## 12193                                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 1 program (%)
## 12194                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 1 program (%) -urban
## 12195                                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) receiving 2 programs (%, preT)
## 12196                                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) receiving 2 programs (%)
## 12197                                                                                                                                                                                                                                                  Population receiving 2 programs (%, preT)
## 12198                                                                                                                                                                                                                                                 Population receiving 2 programs (%) -rural
## 12199                                                                                                                                                                                                                                                        Population receiving 2 programs (%)
## 12200                                                                                                                                                                                                                                                 Population receiving 2 programs (%) -urban
## 12201                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 2 programs (%, preT)
## 12202                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 2 programs (%) -rural
## 12203                                                                                                                                                                                                                          Population in the 1st quintile (poorest) receiving 2 programs (%)
## 12204                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 2 programs (%) -urban
## 12205                                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) receiving 3 programs (%, preT)
## 12206                                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) receiving 3 programs (%)
## 12207                                                                                                                                                                                                                                                  Population receiving 3 programs (%, preT)
## 12208                                                                                                                                                                                                                                                 Population receiving 3 programs (%) -rural
## 12209                                                                                                                                                                                                                                                        Population receiving 3 programs (%)
## 12210                                                                                                                                                                                                                                                 Population receiving 3 programs (%) -urban
## 12211                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 3 programs (%, preT)
## 12212                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 3 programs (%) -rural
## 12213                                                                                                                                                                                                                          Population in the 1st quintile (poorest) receiving 3 programs (%)
## 12214                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 3 programs (%) -urban
## 12215                                                                                                                                                                                                            Population in extreme poor (<$1.9 a day) receiving 4 or more programs (%, preT)
## 12216                                                                                                                                                                                                                  Population in extreme poor (<$1.9 a day) receiving 4 or more programs (%)
## 12217                                                                                                                                                                                                                                          Population receiving 4 or more programs (%, preT)
## 12218                                                                                                                                                                                                                                         Population receiving 4 or more programs (%) -rural
## 12219                                                                                                                                                                                                                                                Population receiving 4 or more programs (%)
## 12220                                                                                                                                                                                                                                         Population receiving 4 or more programs (%) -urban
## 12221                                                                                                                                                                                                            Population in the 1st quintile (poorest) receiving 4 or more programs (%, preT)
## 12222                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 4 or more programs (%) -rural
## 12223                                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving 4 or more programs (%)
## 12224                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 4 or more programs (%) -urban
## 12225                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12226                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12227                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers (preT)
## 12228                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers -rural
## 12229                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Private Transfers  
## 12230                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers -urban
## 12231                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12232                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12233                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers
## 12234                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12235                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers (preT)
## 12236                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers -rural
## 12237                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Private Transfers  
## 12238                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers -urban
## 12239                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers (preT)
## 12240                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers -rural
## 12241                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Private Transfers  
## 12242                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers -urban
## 12243                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers (preT)
## 12244                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers -rural
## 12245                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Private Transfers  
## 12246                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers -urban
## 12247                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12248                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -rural
## 12249                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers
## 12250                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -urban
## 12251                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - All Private Transfers (preT)
## 12252                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - All Private Transfers
## 12253                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers (preT)
## 12254                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers -rural
## 12255                                                                                                                                                                                                                                      Average per capita transfer - All Private Transfers  
## 12256                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers -urban
## 12257                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers (preT)
## 12258                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -rural
## 12259                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - All Private Transfers
## 12260                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -urban
## 12261                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers (preT)
## 12262                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers -rural
## 12263                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Private Transfers  
## 12264                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers -urban
## 12265                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers (preT)
## 12266                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers -rural
## 12267                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Private Transfers  
## 12268                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers -urban
## 12269                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers (preT)
## 12270                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers -rural
## 12271                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Private Transfers  
## 12272                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers -urban
## 12273                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers (preT)
## 12274                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers -rural
## 12275                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - All Private Transfers
## 12276                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers -urban
## 12277                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12278                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12279                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12280                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12281                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers
## 12282                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12283                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers (preT)
## 12284                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers -rural
## 12285                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Private Transfers  
## 12286                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers -urban
## 12287                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers (preT)
## 12288                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers -rural
## 12289                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Private Transfers  
## 12290                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers -urban
## 12291                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers (preT)
## 12292                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers -rural
## 12293                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Private Transfers  
## 12294                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers -urban
## 12295                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12296                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -rural
## 12297                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - All Private Transfers
## 12298                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -urban
## 12299                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12300                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12301                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12302                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12303                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers
## 12304                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12305                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT)
## 12306                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers -rural
## 12307                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Private Transfers  
## 12308                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers -urban
## 12309                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT)
## 12310                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers -rural
## 12311                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Private Transfers  
## 12312                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers -urban
## 12313                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT)
## 12314                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers -rural
## 12315                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Private Transfers  
## 12316                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers -urban
## 12317                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12318                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -rural
## 12319                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers
## 12320                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -urban
## 12321                                                                                                                                                                                                             Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12322                                                                                                                                                                                                                    Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.9 a day)
## 12323                                                                                                                                                                                                                 Benefit-cost ratio -  All Private Transfers -1st quintile (poorest) (preT)
## 12324                                                                                                                                                                                                                 Benefit-cost ratio -  All Private Transfers -1st quintile (poorest) -rural
## 12325                                                                                                                                                                                                                        Benefit-cost ratio -  All Private Transfers -1st quintile (poorest)
## 12326                                                                                                                                                                                                                Benefit-cost ratio -  All Private Transfers - 1st quintile (poorest) -urban
## 12327                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12328                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12329                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers (preT)
## 12330                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers -rural
## 12331                                                                                                                                                                                                                                                     Coverage (%) - All Private Transfers  
## 12332                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers -urban
## 12333                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12334                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12335                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - All Private Transfers
## 12336                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12337                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers (preT)
## 12338                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers -rural
## 12339                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Private Transfers  
## 12340                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers -urban
## 12341                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers (preT)
## 12342                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers -rural
## 12343                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Private Transfers  
## 12344                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers -urban
## 12345                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers (preT)
## 12346                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers -rural
## 12347                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Private Transfers  
## 12348                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers -urban
## 12349                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12350                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers -rural
## 12351                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - All Private Transfers
## 12352                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers -urban
## 12353                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Private Transfers -rural
## 12354                                                                                                                                                                                                                               Gini inequality index reduction (%) -  All Private Transfers
## 12355                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Private Transfers -urban
## 12356                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Private Transfers -extreme poor (<$1.9 a day)
## 12357                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Private Transfers -1st quintile (poorest) -rural
## 12358                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Private Transfers -1st quintile (poorest)
## 12359                                                                                                                                                                                                   Poverty Headcount reduction (%) -  All Private Transfers - 1st quintile (poorest) -urban
## 12360                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Private Transfers -extreme poor (<$1.9 a day)
## 12361                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Private Transfers -1st quintile (poorest) -rural
## 12362                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Private Transfers -1st quintile (poorest)
## 12363                                                                                                                                                                                                         Poverty Gap reduction (%) -  All Private Transfers - 1st quintile (poorest) -urban
## 12364                                                                                                                                                                                                 Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12365                                                                                                                                                                                                        Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12366                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers (preT)
## 12367                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers -rural
## 12368                                                                                                                                                                                                                                      Adequacy of benefits (%) - Domestic Private Transfers
## 12369                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers -urban
## 12370                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12371                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12372                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12373                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12374                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12375                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -rural
## 12376                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers
## 12377                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -urban
## 12378                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12379                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -rural
## 12380                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers
## 12381                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -urban
## 12382                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers (preT)
## 12383                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -rural
## 12384                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers
## 12385                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -urban
## 12386                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12387                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12388                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers
## 12389                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12390                                                                                                                                                                                         Average per capita transfer held by extreme poor (<$1.9 a day) - Domestic Private Transfers (preT)
## 12391                                                                                                                                                                                                Average per capita transfer held by extreme poor (<$1.9 a day) - Domestic Private Transfers
## 12392                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers (preT)
## 12393                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers -rural
## 12394                                                                                                                                                                                                                                   Average per capita transfer - Domestic Private Transfers
## 12395                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers -urban
## 12396                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers (preT)
## 12397                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -rural
## 12398                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers
## 12399                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -urban
## 12400                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers (preT)
## 12401                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers -rural
## 12402                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Domestic Private Transfers
## 12403                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers -urban
## 12404                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers (preT)
## 12405                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers -rural
## 12406                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Domestic Private Transfers
## 12407                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers -urban
## 12408                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers (preT)
## 12409                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers -rural
## 12410                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Domestic Private Transfers
## 12411                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers -urban
## 12412                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers (preT)
## 12413                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -rural
## 12414                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers
## 12415                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -urban
## 12416                                                                                                                                                                                                   Benefits incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12417                                                                                                                                                                                                          Benefits incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12418                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12419                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12420                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12421                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12422                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12423                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -rural
## 12424                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Domestic Private Transfers
## 12425                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -urban
## 12426                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12427                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -rural
## 12428                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Domestic Private Transfers
## 12429                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -urban
## 12430                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers (preT)
## 12431                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers -rural
## 12432                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Domestic Private Transfers
## 12433                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers -urban
## 12434                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12435                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12436                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers
## 12437                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12438                                                                                                                                                                                                Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12439                                                                                                                                                                                                       Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12440                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12441                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12442                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12443                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12444                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12445                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -rural
## 12446                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers
## 12447                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -urban
## 12448                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12449                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -rural
## 12450                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers
## 12451                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -urban
## 12452                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT)
## 12453                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -rural
## 12454                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers
## 12455                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -urban
## 12456                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12457                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12458                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers
## 12459                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12460                                                                                                                                                                                                        Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12461                                                                                                                                                                                                               Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12462                                                                                                                                                                                                            Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest) (preT)
## 12463                                                                                                                                                                                                            Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12464                                                                                                                                                                                                                   Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest)
## 12465                                                                                                                                                                                                           Benefit-cost ratio -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12466                                                                                                                                                                                                             Coverage in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12467                                                                                                                                                                                                                    Coverage in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12468                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers (preT)
## 12469                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers -rural
## 12470                                                                                                                                                                                                                                                  Coverage (%) - Domestic Private Transfers
## 12471                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers -urban
## 12472                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12473                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12474                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12475                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12476                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12477                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers -rural
## 12478                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Domestic Private Transfers
## 12479                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers -urban
## 12480                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12481                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers -rural
## 12482                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Domestic Private Transfers
## 12483                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers -urban
## 12484                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers (preT)
## 12485                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers -rural
## 12486                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Domestic Private Transfers
## 12487                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers -urban
## 12488                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12489                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12490                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Domestic Private Transfers
## 12491                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12492                                                                                                                                                                                                                   Gini inequality index reduction (%) -  Domestic Private Transfers -rural
## 12493                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Domestic Private Transfers
## 12494                                                                                                                                                                                                                   Gini inequality index reduction (%) -  Domestic Private Transfers -urban
## 12495                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12496                                                                                                                                                                                               Poverty Headcount reduction (%) -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12497                                                                                                                                                                                                      Poverty Headcount reduction (%) -  Domestic Private Transfers -1st quintile (poorest)
## 12498                                                                                                                                                                                              Poverty Headcount reduction (%) -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12499                                                                                                                                                                                                        Poverty Gap reduction (%) -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12500                                                                                                                                                                                                     Poverty Gap reduction (%) -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12501                                                                                                                                                                                                            Poverty Gap reduction (%) -  Domestic Private Transfers -1st quintile (poorest)
## 12502                                                                                                                                                                                                    Poverty Gap reduction (%) -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12503                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12504                                                                                                                                                                                                   Adequacy of benefits in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12505                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers (preT)
## 12506                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers -rural
## 12507                                                                                                                                                                                                                                 Adequacy of benefits (%) - International Private Transfers
## 12508                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers -urban
## 12509                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12510                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12511                                                                                                                                                                                                       Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers
## 12512                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12513                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers (preT)
## 12514                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers -rural
## 12515                                                                                                                                                                                                                 Adequacy of benefits in 2nd quintile (%) - International Private Transfers
## 12516                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers -urban
## 12517                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers (preT)
## 12518                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers -rural
## 12519                                                                                                                                                                                                                 Adequacy of benefits in 3rd quintile (%) - International Private Transfers
## 12520                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers -urban
## 12521                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers (preT)
## 12522                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers -rural
## 12523                                                                                                                                                                                                                 Adequacy of benefits in 4th quintile (%) - International Private Transfers
## 12524                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers -urban
## 12525                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12526                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -rural
## 12527                                                                                                                                                                                                       Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers
## 12528                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -urban
## 12529                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) - International Private Transfers (preT)
## 12530                                                                                                                                                                                           Average per capita transfer held by extreme poor (<$1.9 a day) - International Private Transfers
## 12531                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers (preT)
## 12532                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers -rural
## 12533                                                                                                                                                                                                                              Average per capita transfer - International Private Transfers
## 12534                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers -urban
## 12535                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers (preT)
## 12536                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -rural
## 12537                                                                                                                                                                                               Average per capita transfer held by 1st quintile (poorest) - International Private Transfers
## 12538                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -urban
## 12539                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers (preT)
## 12540                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers -rural
## 12541                                                                                                                                                                                                         Average per capita transfer held by 2nd quintile - International Private Transfers
## 12542                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers -urban
## 12543                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers (preT)
## 12544                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers -rural
## 12545                                                                                                                                                                                                         Average per capita transfer held by 3rd quintile - International Private Transfers
## 12546                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers -urban
## 12547                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers (preT)
## 12548                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers -rural
## 12549                                                                                                                                                                                                         Average per capita transfer held by 4th quintile - International Private Transfers
## 12550                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers -urban
## 12551                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers (preT)
## 12552                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers -rural
## 12553                                                                                                                                                                                               Average per capita transfer held by 5th quintile (richest) - International Private Transfers
## 12554                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers -urban
## 12555                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12556                                                                                                                                                                                                     Benefits incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12557                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12558                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12559                                                                                                                                                                                                         Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers
## 12560                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12561                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers (preT)
## 12562                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers -rural
## 12563                                                                                                                                                                                                                   Benefits incidence in 2nd quintile (%) - International Private Transfers
## 12564                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers -urban
## 12565                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers (preT)
## 12566                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers -rural
## 12567                                                                                                                                                                                                                   Benefits incidence in 3rd quintile (%) - International Private Transfers
## 12568                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers -urban
## 12569                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers (preT)
## 12570                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers -rural
## 12571                                                                                                                                                                                                                   Benefits incidence in 4th quintile (%) - International Private Transfers
## 12572                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers -urban
## 12573                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12574                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -rural
## 12575                                                                                                                                                                                                         Benefits incidence in 5th quintile (richest) (%) - International Private Transfers
## 12576                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -urban
## 12577                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12578                                                                                                                                                                                                  Beneficiary incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12579                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12580                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12581                                                                                                                                                                                                      Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers
## 12582                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12583                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT)
## 12584                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers -rural
## 12585                                                                                                                                                                                                                Beneficiary incidence in 2nd quintile (%) - International Private Transfers
## 12586                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers -urban
## 12587                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT)
## 12588                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers -rural
## 12589                                                                                                                                                                                                                Beneficiary incidence in 3rd quintile (%) - International Private Transfers
## 12590                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers -urban
## 12591                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT)
## 12592                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers -rural
## 12593                                                                                                                                                                                                                Beneficiary incidence in 4th quintile (%) - International Private Transfers
## 12594                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers -urban
## 12595                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12596                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -rural
## 12597                                                                                                                                                                                                      Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers
## 12598                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -urban
## 12599                                                                                                                                                                                                   Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12600                                                                                                                                                                                                          Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.9 a day)
## 12601                                                                                                                                                                                                       Benefit-cost ratio -  International Private Transfers -1st quintile (poorest) (preT)
## 12602                                                                                                                                                                                                       Benefit-cost ratio -  International Private Transfers -1st quintile (poorest) -rural
## 12603                                                                                                                                                                                                              Benefit-cost ratio -  International Private Transfers -1st quintile (poorest)
## 12604                                                                                                                                                                                                      Benefit-cost ratio -  International Private Transfers - 1st quintile (poorest) -urban
## 12605                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12606                                                                                                                                                                                                               Coverage in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12607                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers (preT)
## 12608                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers -rural
## 12609                                                                                                                                                                                                                                             Coverage (%) - International Private Transfers
## 12610                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers -urban
## 12611                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12612                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12613                                                                                                                                                                                                                   Coverage in 1st quintile (poorest) (%) - International Private Transfers
## 12614                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12615                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers (preT)
## 12616                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers -rural
## 12617                                                                                                                                                                                                                             Coverage in 2nd quintile (%) - International Private Transfers
## 12618                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers -urban
## 12619                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers (preT)
## 12620                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers -rural
## 12621                                                                                                                                                                                                                             Coverage in 3rd quintile (%) - International Private Transfers
## 12622                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers -urban
## 12623                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers (preT)
## 12624                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers -rural
## 12625                                                                                                                                                                                                                             Coverage in 4th quintile (%) - International Private Transfers
## 12626                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers -urban
## 12627                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12628                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers -rural
## 12629                                                                                                                                                                                                                   Coverage in 5th quintile (richest) (%) - International Private Transfers
## 12630                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers -urban
## 12631                                                                                                                                                                                                              Gini inequality index reduction (%) -  International Private Transfers -rural
## 12632                                                                                                                                                                                                                     Gini inequality index reduction (%) -  International Private Transfers
## 12633                                                                                                                                                                                                              Gini inequality index reduction (%) -  International Private Transfers -urban
## 12634                                                                                                                                                                                             Poverty Headcount reduction (%) -  International Private Transfers -extreme poor (<$1.9 a day)
## 12635                                                                                                                                                                                          Poverty Headcount reduction (%) -  International Private Transfers -1st quintile (poorest) -rural
## 12636                                                                                                                                                                                                 Poverty Headcount reduction (%) -  International Private Transfers -1st quintile (poorest)
## 12637                                                                                                                                                                                         Poverty Headcount reduction (%) -  International Private Transfers - 1st quintile (poorest) -urban
## 12638                                                                                                                                                                                                   Poverty Gap reduction (%) -  International Private Transfers -extreme poor (<$1.9 a day)
## 12639                                                                                                                                                                                                Poverty Gap reduction (%) -  International Private Transfers -1st quintile (poorest) -rural
## 12640                                                                                                                                                                                                       Poverty Gap reduction (%) -  International Private Transfers -1st quintile (poorest)
## 12641                                                                                                                                                                                               Poverty Gap reduction (%) -  International Private Transfers - 1st quintile (poorest) -urban
## 12642                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12643                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12644                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance (preT)
## 12645                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance -rural
## 12646                                                                                                                                                                                                      Adequacy of social safety net programs (% of total welfare of beneficiary households)
## 12647                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance -urban
## 12648                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12649                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12650                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance
## 12651                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12652                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance (preT)
## 12653                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance -rural
## 12654                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - All Social Assistance 
## 12655                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance -urban
## 12656                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance (preT)
## 12657                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance -rural
## 12658                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - All Social Assistance 
## 12659                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance -urban
## 12660                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance (preT)
## 12661                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance -rural
## 12662                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - All Social Assistance 
## 12663                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance -urban
## 12664                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12665                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -rural
## 12666                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance
## 12667                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -urban
## 12668                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Assistance  (preT)
## 12669                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Assistance
## 12670                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance (preT)
## 12671                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance -rural
## 12672                                                                                                                                                                                                                                       Average per capita transfer - All Social Assistance 
## 12673                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance -urban
## 12674                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance (preT)
## 12675                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -rural
## 12676                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - All Social Assistance
## 12677                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -urban
## 12678                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance (preT)
## 12679                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance -rural
## 12680                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - All Social Assistance 
## 12681                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance -urban
## 12682                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance (preT)
## 12683                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance -rural
## 12684                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - All Social Assistance 
## 12685                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance -urban
## 12686                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance (preT)
## 12687                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance -rural
## 12688                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - All Social Assistance 
## 12689                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance -urban
## 12690                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance (preT)
## 12691                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance -rural
## 12692                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - All Social Assistance
## 12693                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance -urban
## 12694                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12695                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12696                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12697                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12698                                                                                                                                                                                       Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits)
## 12699                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12700                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance (preT)
## 12701                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance -rural
## 12702                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - All Social Assistance 
## 12703                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance -urban
## 12704                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance (preT)
## 12705                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance -rural
## 12706                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - All Social Assistance 
## 12707                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance -urban
## 12708                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance (preT)
## 12709                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance -rural
## 12710                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - All Social Assistance 
## 12711                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance -urban
## 12712                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12713                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -rural
## 12714                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - All Social Assistance
## 12715                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -urban
## 12716                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12717                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12718                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12719                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12720                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance
## 12721                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12722                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance (preT)
## 12723                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance -rural
## 12724                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - All Social Assistance 
## 12725                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance -urban
## 12726                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance (preT)
## 12727                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance -rural
## 12728                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - All Social Assistance 
## 12729                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance -urban
## 12730                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance (preT)
## 12731                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance -rural
## 12732                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - All Social Assistance 
## 12733                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance -urban
## 12734                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12735                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -rural
## 12736                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance
## 12737                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -urban
## 12738                                                                                                                                                                                                             Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.9 a day) (preT)
## 12739                                                                                                                                                                                                                    Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.9 a day)
## 12740                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Assistance -1st quintile (poorest) (preT)
## 12741                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Assistance -1st quintile (poorest) -rural
## 12742                                                                                                                                                                                                                        Benefit-cost ratio -  All Social Assistance -1st quintile (poorest)
## 12743                                                                                                                                                                                                                Benefit-cost ratio -  All Social Assistance - 1st quintile (poorest) -urban
## 12744                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12745                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12746                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance (preT)
## 12747                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance -rural
## 12748                                                                                                                                                                                                                                   Coverage of social safety net programs (% of population)
## 12749                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance -urban
## 12750                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12751                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12752                                                                                                                                                                                                               Coverage of social safety net programs in poorest quintile (% of population)
## 12753                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12754                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance (preT)
## 12755                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance -rural
## 12756                                                                                                                                                                                                                   Coverage of social safety net programs in 2nd quintile (% of population)
## 12757                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance -urban
## 12758                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance (preT)
## 12759                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance -rural
## 12760                                                                                                                                                                                                                   Coverage of social safety net programs in 3rd quintile (% of population)
## 12761                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance -urban
## 12762                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance (preT)
## 12763                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance -rural
## 12764                                                                                                                                                                                                                   Coverage of social safety net programs in 4th quintile (% of population)
## 12765                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance -urban
## 12766                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12767                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance -rural
## 12768                                                                                                                                                                                                               Coverage of social safety net programs in richest quintile (% of population)
## 12769                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance -urban
## 12770                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Social Assistance -rural
## 12771                                                                                                                                                                                                                               Gini inequality index reduction (%) -  All Social Assistance
## 12772                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Social Assistance -urban
## 12773                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Social Assistance -extreme poor (<$1.9 a day)
## 12774                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Social Assistance -1st quintile (poorest) -rural
## 12775                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Social Assistance -1st quintile (poorest)
## 12776                                                                                                                                                                                                   Poverty Headcount reduction (%) -  All Social Assistance - 1st quintile (poorest) -urban
## 12777                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Social Assistance -extreme poor (<$1.9 a day)
## 12778                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Social Assistance -1st quintile (poorest) -rural
## 12779                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Social Assistance -1st quintile (poorest)
## 12780                                                                                                                                                                                                         Poverty Gap reduction (%) -  All Social Assistance - 1st quintile (poorest) -urban
## 12781                                                                                                                                                                                                 Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12782                                                                                                                                                                                                        Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12783                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers (preT)
## 12784                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers -rural
## 12785                                                                                                                                                                                                                                    Adequacy of benefits (%) - Conditional Cash Transfers  
## 12786                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers -urban
## 12787                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12788                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12789                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12790                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12791                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12792                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12793                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers  
## 12794                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12795                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12796                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12797                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers  
## 12798                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12799                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12800                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -rural
## 12801                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers  
## 12802                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -urban
## 12803                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12804                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12805                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12806                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12807                                                                                                                                                                                         Average per capita transfer held by extreme poor (<$1.9 a day) - Conditional Cash Transfers (preT)
## 12808                                                                                                                                                                                                Average per capita transfer held by extreme poor (<$1.9 a day) - Conditional Cash Transfers
## 12809                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers (preT)
## 12810                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers -rural
## 12811                                                                                                                                                                                                                                 Average per capita transfer - Conditional Cash Transfers  
## 12812                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers -urban
## 12813                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers (preT)
## 12814                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -rural
## 12815                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers
## 12816                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -urban
## 12817                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT)
## 12818                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -rural
## 12819                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Conditional Cash Transfers  
## 12820                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -urban
## 12821                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT)
## 12822                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -rural
## 12823                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Conditional Cash Transfers  
## 12824                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -urban
## 12825                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT)
## 12826                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers -rural
## 12827                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Conditional Cash Transfers  
## 12828                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers -urban
## 12829                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers (preT)
## 12830                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -rural
## 12831                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers
## 12832                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -urban
## 12833                                                                                                                                                                                                   Benefits incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12834                                                                                                                                                                                                          Benefits incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12835                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12836                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12837                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12838                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12839                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12840                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12841                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers  
## 12842                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12843                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12844                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12845                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers  
## 12846                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12847                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12848                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -rural
## 12849                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Conditional Cash Transfers  
## 12850                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -urban
## 12851                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12852                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12853                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12854                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12855                                                                                                                                                                                                Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12856                                                                                                                                                                                                       Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12857                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12858                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12859                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12860                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12861                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12862                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12863                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers  
## 12864                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12865                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12866                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12867                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers  
## 12868                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12869                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12870                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -rural
## 12871                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers  
## 12872                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -urban
## 12873                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12874                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12875                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12876                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12877                                                                                                                                                                                                         Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.9 a day) (preT)
## 12878                                                                                                                                                                                                                Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12879                                                                                                                                                                                                             Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest) (preT)
## 12880                                                                                                                                                                                                             Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12881                                                                                                                                                                                                                    Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest)
## 12882                                                                                                                                                                                                            Benefit-cost ratio -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12883                                                                                                                                                                                                             Coverage in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12884                                                                                                                                                                                                                    Coverage in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12885                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers (preT)
## 12886                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers -rural
## 12887                                                                                                                                                                                                                                                Coverage (%) - Conditional Cash Transfers  
## 12888                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers -urban
## 12889                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12890                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12891                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12892                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12893                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12894                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12895                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Conditional Cash Transfers  
## 12896                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12897                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12898                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12899                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Conditional Cash Transfers  
## 12900                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12901                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12902                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers -rural
## 12903                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Conditional Cash Transfers  
## 12904                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers -urban
## 12905                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12906                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12907                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12908                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12909                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Conditional Cash Transfer -rural
## 12910                                                                                                                                                                                                                           Gini inequality index reduction (%) -  Conditional Cash Transfer
## 12911                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Conditional Cash Transfer -urban
## 12912                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12913                                                                                                                                                                                                Poverty Headcount reduction (%) -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12914                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Conditional Cash Transfer -1st quintile (poorest)
## 12915                                                                                                                                                                                               Poverty Headcount reduction (%) -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12916                                                                                                                                                                                                         Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12917                                                                                                                                                                                                      Poverty Gap reduction (%) -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12918                                                                                                                                                                                                             Poverty Gap reduction (%) -  Conditional Cash Transfer -1st quintile (poorest)
## 12919                                                                                                                                                                                                     Poverty Gap reduction (%) -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12920                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12921                                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12922                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer (preT)
## 12923                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer -rural
## 12924                                                                                                                                                                                                                                                  Adequacy of benefits (%) - Cash Transfer 
## 12925                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer -urban
## 12926                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12927                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12928                                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer
## 12929                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer -urban
## 12930                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer (preT)
## 12931                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer -rural
## 12932                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Cash Transfer 
## 12933                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer -urban
## 12934                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer (preT)
## 12935                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer -rural
## 12936                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Cash Transfer 
## 12937                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer -urban
## 12938                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer (preT)
## 12939                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer -rural
## 12940                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Cash Transfer 
## 12941                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer -urban
## 12942                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer (preT)
## 12943                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer -rural
## 12944                                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer
## 12945                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer -urban
## 12946                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - Cash Transfer  (preT)
## 12947                                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - Cash Transfer
## 12948                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer (preT)
## 12949                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer -rural
## 12950                                                                                                                                                                                                                                               Average per capita transfer - Cash Transfer 
## 12951                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer -urban
## 12952                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer (preT)
## 12953                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer -rural
## 12954                                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Cash Transfer
## 12955                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer -urban
## 12956                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer (preT)
## 12957                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer -rural
## 12958                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Cash Transfer 
## 12959                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer -urban
## 12960                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer (preT)
## 12961                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer -rural
## 12962                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Cash Transfer 
## 12963                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer -urban
## 12964                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer (preT)
## 12965                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer -rural
## 12966                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Cash Transfer 
## 12967                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer -urban
## 12968                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer (preT)
## 12969                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer -rural
## 12970                                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Cash Transfer
## 12971                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer -urban
## 12972                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12973                                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12974                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12975                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12976                                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer
## 12977                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer -urban
## 12978                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer (preT)
## 12979                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer -rural
## 12980                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Cash Transfer 
## 12981                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer -urban
## 12982                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer (preT)
## 12983                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer -rural
## 12984                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Cash Transfer 
## 12985                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer -urban
## 12986                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer (preT)
## 12987                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer -rural
## 12988                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Cash Transfer 
## 12989                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer -urban
## 12990                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer (preT)
## 12991                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer -rural
## 12992                                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Cash Transfer
## 12993                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer -urban
## 12994                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12995                                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12996                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12997                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12998                                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer
## 12999                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer -urban
## 13000                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer (preT)
## 13001                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer -rural
## 13002                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Cash Transfer 
## 13003                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer -urban
## 13004                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer (preT)
## 13005                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer -rural
## 13006                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Cash Transfer 
## 13007                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer -urban
## 13008                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer (preT)
## 13009                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer -rural
## 13010                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Cash Transfer 
## 13011                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer -urban
## 13012                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer (preT)
## 13013                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer -rural
## 13014                                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer
## 13015                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer -urban
## 13016                                                                                                                                                                                                                     Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.9 a day) (preT)
## 13017                                                                                                                                                                                                                            Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.9 a day)
## 13018                                                                                                                                                                                                                         Benefit-cost ratio -  Cash Transfer -1st quintile (poorest) (preT)
## 13019                                                                                                                                                                                                                         Benefit-cost ratio -  Cash Transfer -1st quintile (poorest) -rural
## 13020                                                                                                                                                                                                                                Benefit-cost ratio -  Cash Transfer -1st quintile (poorest)
## 13021                                                                                                                                                                                                                        Benefit-cost ratio -  Cash Transfer - 1st quintile (poorest) -urban
## 13022                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 13023                                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 13024                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer (preT)
## 13025                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer -rural
## 13026                                                                                                                                                                                                                                                              Coverage (%) - Cash Transfer 
## 13027                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer -urban
## 13028                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 13029                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer -rural
## 13030                                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Cash Transfer
## 13031                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer -urban
## 13032                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer (preT)
## 13033                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer -rural
## 13034                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Cash Transfer 
## 13035                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer -urban
## 13036                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer (preT)
## 13037                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer -rural
## 13038                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Cash Transfer 
## 13039                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer -urban
## 13040                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer (preT)
## 13041                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer -rural
## 13042                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Cash Transfer 
## 13043                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer -urban
## 13044                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer (preT)
## 13045                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer -rural
## 13046                                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Cash Transfer
## 13047                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer -urban
## 13048                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Cash Transfer -rural
## 13049                                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Cash Transfer
## 13050                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Cash Transfer -urban
## 13051                                                                                                                                                                                                               Poverty Headcount reduction (%) -  Cash Transfer -extreme poor (<$1.9 a day)
## 13052                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Cash Transfer -1st quintile (poorest) -rural
## 13053                                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Cash Transfer -1st quintile (poorest)
## 13054                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Cash Transfer - 1st quintile (poorest) -urban
## 13055                                                                                                                                                                                                                     Poverty Gap reduction (%) -  Cash Transfer -extreme poor (<$1.9 a day)
## 13056                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Cash Transfer -1st quintile (poorest) -rural
## 13057                                                                                                                                                                                                                         Poverty Gap reduction (%) -  Cash Transfer -1st quintile (poorest)
## 13058                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Cash Transfer - 1st quintile (poorest) -urban
## 13059                                                                                                                                                                                                                  Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13060                                                                                                                                                                                                                         Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Subsidies
## 13061                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies (preT)
## 13062                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies -rural
## 13063                                                                                                                                                                                                                                                     Adequacy of benefits (%) - Subsidies  
## 13064                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies -urban
## 13065                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies (preT)
## 13066                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -rural
## 13067                                                                                                                                                                                                                             Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies
## 13068                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -urban
## 13069                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies (preT)
## 13070                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies -rural
## 13071                                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Subsidies  
## 13072                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies -urban
## 13073                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies (preT)
## 13074                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies -rural
## 13075                                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Subsidies  
## 13076                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies -urban
## 13077                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies (preT)
## 13078                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies -rural
## 13079                                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Subsidies  
## 13080                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies -urban
## 13081                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies (preT)
## 13082                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -rural
## 13083                                                                                                                                                                                                                             Adequacy of benefits in 5th quintile (richest) (%) - Subsidies
## 13084                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -urban
## 13085                                                                                                                                                                                                          Average per capita transfer held by extreme poor (<$1.9 a day) - Subsidies (preT)
## 13086                                                                                                                                                                                                                 Average per capita transfer held by extreme poor (<$1.9 a day) - Subsidies
## 13087                                                                                                                                                                                                                                             Average per capita transfer - Subsidies (preT)
## 13088                                                                                                                                                                                                                                             Average per capita transfer - Subsidies -rural
## 13089                                                                                                                                                                                                                                                  Average per capita transfer - Subsidies  
## 13090                                                                                                                                                                                                                                             Average per capita transfer - Subsidies -urban
## 13091                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies (preT)
## 13092                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies -rural
## 13093                                                                                                                                                                                                                     Average per capita transfer held by 1st quintile (poorest) - Subsidies
## 13094                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies -urban
## 13095                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies (preT)
## 13096                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies -rural
## 13097                                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Subsidies  
## 13098                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies -urban
## 13099                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies (preT)
## 13100                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies -rural
## 13101                                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Subsidies  
## 13102                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies -urban
## 13103                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies (preT)
## 13104                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies -rural
## 13105                                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Subsidies  
## 13106                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies -urban
## 13107                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies (preT)
## 13108                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies -rural
## 13109                                                                                                                                                                                                                     Average per capita transfer held by 5th quintile (richest) - Subsidies
## 13110                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies -urban
## 13111                                                                                                                                                                                                                    Benefits incidence in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13112                                                                                                                                                                                                                           Benefits incidence in extreme poor (<$1.9 a day) (%) - Subsidies
## 13113                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies (preT)
## 13114                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies -rural
## 13115                                                                                                                                                                                                                               Benefits incidence in 1st quintile (poorest) (%) - Subsidies
## 13116                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies -urban
## 13117                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies (preT)
## 13118                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies -rural
## 13119                                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Subsidies  
## 13120                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies -urban
## 13121                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies (preT)
## 13122                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies -rural
## 13123                                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Subsidies  
## 13124                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies -urban
## 13125                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies (preT)
## 13126                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies -rural
## 13127                                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Subsidies  
## 13128                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies -urban
## 13129                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies (preT)
## 13130                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies -rural
## 13131                                                                                                                                                                                                                               Benefits incidence in 5th quintile (richest) (%) - Subsidies
## 13132                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies -urban
## 13133                                                                                                                                                                                                                 Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13134                                                                                                                                                                                                                        Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Subsidies
## 13135                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies (preT)
## 13136                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -rural
## 13137                                                                                                                                                                                                                            Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies
## 13138                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -urban
## 13139                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies (preT)
## 13140                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies -rural
## 13141                                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Subsidies  
## 13142                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies -urban
## 13143                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies (preT)
## 13144                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies -rural
## 13145                                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Subsidies  
## 13146                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies -urban
## 13147                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies (preT)
## 13148                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies -rural
## 13149                                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Subsidies  
## 13150                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies -urban
## 13151                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies (preT)
## 13152                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -rural
## 13153                                                                                                                                                                                                                            Beneficiary incidence in 5th quintile (richest) (%) - Subsidies
## 13154                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -urban
## 13155                                                                                                                                                                                                                         Benefit-cost ratio -  Subsidies -extreme poor (<$1.9 a day) (preT)
## 13156                                                                                                                                                                                                                                Benefit-cost ratio -  Subsidies -extreme poor (<$1.9 a day)
## 13157                                                                                                                                                                                                                             Benefit-cost ratio -  Subsidies -1st quintile (poorest) (preT)
## 13158                                                                                                                                                                                                                             Benefit-cost ratio -  Subsidies -1st quintile (poorest) -rural
## 13159                                                                                                                                                                                                                                    Benefit-cost ratio -  Subsidies -1st quintile (poorest)
## 13160                                                                                                                                                                                                                            Benefit-cost ratio -  Subsidies - 1st quintile (poorest) -urban
## 13161                                                                                                                                                                                                                              Coverage in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13162                                                                                                                                                                                                                                     Coverage in extreme poor (<$1.9 a day) (%) - Subsidies
## 13163                                                                                                                                                                                                                                                            Coverage (%) - Subsidies (preT)
## 13164                                                                                                                                                                                                                                                            Coverage (%) - Subsidies -rural
## 13165                                                                                                                                                                                                                                                                 Coverage (%) - Subsidies  
## 13166                                                                                                                                                                                                                                                            Coverage (%) - Subsidies -urban
## 13167                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies (preT)
## 13168                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies -rural
## 13169                                                                                                                                                                                                                                         Coverage in 1st quintile (poorest) (%) - Subsidies
## 13170                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies -urban
## 13171                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies (preT)
## 13172                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies -rural
## 13173                                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Subsidies  
## 13174                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies -urban
## 13175                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies (preT)
## 13176                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies -rural
## 13177                                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Subsidies  
## 13178                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies -urban
## 13179                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies (preT)
## 13180                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies -rural
## 13181                                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Subsidies  
## 13182                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies -urban
## 13183                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies (preT)
## 13184                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies -rural
## 13185                                                                                                                                                                                                                                         Coverage in 5th quintile (richest) (%) - Subsidies
## 13186                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies -urban
## 13187                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Subsidies -rural
## 13188                                                                                                                                                                                                                                           Gini inequality index reduction (%) -  Subsidies
## 13189                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Subsidies -urban
## 13190                                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.9 a day)
## 13191                                                                                                                                                                                                                Poverty Headcount reduction (%) -  Subsidies -1st quintile (poorest) -rural
## 13192                                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Subsidies -1st quintile (poorest)
## 13193                                                                                                                                                                                                               Poverty Headcount reduction (%) -  Subsidies - 1st quintile (poorest) -urban
## 13194                                                                                                                                                                                                                         Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.9 a day)
## 13195                                                                                                                                                                                                                      Poverty Gap reduction (%) -  Subsidies -1st quintile (poorest) -rural
## 13196                                                                                                                                                                                                                             Poverty Gap reduction (%) -  Subsidies -1st quintile (poorest)
## 13197                                                                                                                                                                                                                     Poverty Gap reduction (%) -  Subsidies - 1st quintile (poorest) -urban
## 13198                                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13199                                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - In-Kind
## 13200                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind (preT)
## 13201                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind -rural
## 13202                                                                                                                                                                                                                                                       Adequacy of benefits (%) - In-Kind  
## 13203                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind -urban
## 13204                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind (preT)
## 13205                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -rural
## 13206                                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind
## 13207                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -urban
## 13208                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind (preT)
## 13209                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind -rural
## 13210                                                                                                                                                                                                                                       Adequacy of benefits in 2nd quintile (%) - In-Kind  
## 13211                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind -urban
## 13212                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind (preT)
## 13213                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind -rural
## 13214                                                                                                                                                                                                                                       Adequacy of benefits in 3rd quintile (%) - In-Kind  
## 13215                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind -urban
## 13216                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind (preT)
## 13217                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind -rural
## 13218                                                                                                                                                                                                                                       Adequacy of benefits in 4th quintile (%) - In-Kind  
## 13219                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind -urban
## 13220                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind (preT)
## 13221                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -rural
## 13222                                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - In-Kind
## 13223                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -urban
## 13224                                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - In-Kind (preT)
## 13225                                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - In-Kind
## 13226                                                                                                                                                                                                                                               Average per capita transfer - In-Kind (preT)
## 13227                                                                                                                                                                                                                                               Average per capita transfer - In-Kind -rural
## 13228                                                                                                                                                                                                                                                    Average per capita transfer - In-Kind  
## 13229                                                                                                                                                                                                                                               Average per capita transfer - In-Kind -urban
## 13230                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind (preT)
## 13231                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind -rural
## 13232                                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - In-Kind
## 13233                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind -urban
## 13234                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind (preT)
## 13235                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind -rural
## 13236                                                                                                                                                                                                                               Average per capita transfer held by 2nd quintile - In-Kind  
## 13237                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind -urban
## 13238                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind (preT)
## 13239                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind -rural
## 13240                                                                                                                                                                                                                               Average per capita transfer held by 3rd quintile - In-Kind  
## 13241                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind -urban
## 13242                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind (preT)
## 13243                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind -rural
## 13244                                                                                                                                                                                                                               Average per capita transfer held by 4th quintile - In-Kind  
## 13245                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind -urban
## 13246                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind (preT)
## 13247                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind -rural
## 13248                                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - In-Kind
## 13249                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind -urban
## 13250                                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13251                                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - In-Kind
## 13252                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind (preT)
## 13253                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind -rural
## 13254                                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - In-Kind
## 13255                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind -urban
## 13256                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind (preT)
## 13257                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind -rural
## 13258                                                                                                                                                                                                                                         Benefits incidence in 2nd quintile (%) - In-Kind  
## 13259                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind -urban
## 13260                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind (preT)
## 13261                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind -rural
## 13262                                                                                                                                                                                                                                         Benefits incidence in 3rd quintile (%) - In-Kind  
## 13263                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind -urban
## 13264                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind (preT)
## 13265                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind -rural
## 13266                                                                                                                                                                                                                                         Benefits incidence in 4th quintile (%) - In-Kind  
## 13267                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind -urban
## 13268                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind (preT)
## 13269                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind -rural
## 13270                                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - In-Kind
## 13271                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind -urban
## 13272                                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13273                                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - In-Kind
## 13274                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind (preT)
## 13275                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -rural
## 13276                                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind
## 13277                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -urban
## 13278                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind (preT)
## 13279                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind -rural
## 13280                                                                                                                                                                                                                                      Beneficiary incidence in 2nd quintile (%) - In-Kind  
## 13281                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind -urban
## 13282                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind (preT)
## 13283                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind -rural
## 13284                                                                                                                                                                                                                                      Beneficiary incidence in 3rd quintile (%) - In-Kind  
## 13285                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind -urban
## 13286                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind (preT)
## 13287                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind -rural
## 13288                                                                                                                                                                                                                                      Beneficiary incidence in 4th quintile (%) - In-Kind  
## 13289                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind -urban
## 13290                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind (preT)
## 13291                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -rural
## 13292                                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - In-Kind
## 13293                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -urban
## 13294                                                                                                                                                                                                                           Benefit-cost ratio -  In-Kind -extreme poor (<$1.9 a day) (preT)
## 13295                                                                                                                                                                                                                                  Benefit-cost ratio -  In-Kind -extreme poor (<$1.9 a day)
## 13296                                                                                                                                                                                                                               Benefit-cost ratio -  In-Kind -1st quintile (poorest) (preT)
## 13297                                                                                                                                                                                                                               Benefit-cost ratio -  In-Kind -1st quintile (poorest) -rural
## 13298                                                                                                                                                                                                                                      Benefit-cost ratio -  In-Kind -1st quintile (poorest)
## 13299                                                                                                                                                                                                                              Benefit-cost ratio -  In-Kind - 1st quintile (poorest) -urban
## 13300                                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13301                                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - In-Kind
## 13302                                                                                                                                                                                                                                                              Coverage (%) - In-Kind (preT)
## 13303                                                                                                                                                                                                                                                              Coverage (%) - In-Kind -rural
## 13304                                                                                                                                                                                                                                                                   Coverage (%) - In-Kind  
## 13305                                                                                                                                                                                                                                                              Coverage (%) - In-Kind -urban
## 13306                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind (preT)
## 13307                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind -rural
## 13308                                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - In-Kind
## 13309                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind -urban
## 13310                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind (preT)
## 13311                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind -rural
## 13312                                                                                                                                                                                                                                                   Coverage in 2nd quintile (%) - In-Kind  
## 13313                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind -urban
## 13314                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind (preT)
## 13315                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind -rural
## 13316                                                                                                                                                                                                                                                   Coverage in 3rd quintile (%) - In-Kind  
## 13317                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind -urban
## 13318                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind (preT)
## 13319                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind -rural
## 13320                                                                                                                                                                                                                                                   Coverage in 4th quintile (%) - In-Kind  
## 13321                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind -urban
## 13322                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind (preT)
## 13323                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind -rural
## 13324                                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - In-Kind
## 13325                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind -urban
## 13326                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  In-Kind -rural
## 13327                                                                                                                                                                                                                                             Gini inequality index reduction (%) -  In-Kind
## 13328                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  In-Kind -urban
## 13329                                                                                                                                                                                                                     Poverty Headcount reduction (%) -  In-Kind -extreme poor (<$1.9 a day)
## 13330                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  In-Kind -1st quintile (poorest) -rural
## 13331                                                                                                                                                                                                                         Poverty Headcount reduction (%) -  In-Kind -1st quintile (poorest)
## 13332                                                                                                                                                                                                                 Poverty Headcount reduction (%) -  In-Kind - 1st quintile (poorest) -urban
## 13333                                                                                                                                                                                                                           Poverty Gap reduction (%) -  In-Kind -extreme poor (<$1.9 a day)
## 13334                                                                                                                                                                                                                        Poverty Gap reduction (%) -  In-Kind -1st quintile (poorest) -rural
## 13335                                                                                                                                                                                                                               Poverty Gap reduction (%) -  In-Kind -1st quintile (poorest)
## 13336                                                                                                                                                                                                                       Poverty Gap reduction (%) -  In-Kind - 1st quintile (poorest) -urban
## 13337                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13338                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13339                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance (preT)
## 13340                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance -rural
## 13341                                                                                                                                                                                                                                       Adequacy of benefits (%) - Other Social Assistance  
## 13342                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance -urban
## 13343                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13344                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13345                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance
## 13346                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13347                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance (preT)
## 13348                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -rural
## 13349                                                                                                                                                                                                                       Adequacy of benefits in 2nd quintile (%) - Other Social Assistance  
## 13350                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -urban
## 13351                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance (preT)
## 13352                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -rural
## 13353                                                                                                                                                                                                                       Adequacy of benefits in 3rd quintile (%) - Other Social Assistance  
## 13354                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -urban
## 13355                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance (preT)
## 13356                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance -rural
## 13357                                                                                                                                                                                                                       Adequacy of benefits in 4th quintile (%) - Other Social Assistance  
## 13358                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance -urban
## 13359                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13360                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13361                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance
## 13362                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13363                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Assistance (preT)
## 13364                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Assistance
## 13365                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance (preT)
## 13366                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance -rural
## 13367                                                                                                                                                                                                                                    Average per capita transfer - Other Social Assistance  
## 13368                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance -urban
## 13369                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance (preT)
## 13370                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -rural
## 13371                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance
## 13372                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -urban
## 13373                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance (preT)
## 13374                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance -rural
## 13375                                                                                                                                                                                                               Average per capita transfer held by 2nd quintile - Other Social Assistance  
## 13376                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance -urban
## 13377                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance (preT)
## 13378                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance -rural
## 13379                                                                                                                                                                                                               Average per capita transfer held by 3rd quintile - Other Social Assistance  
## 13380                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance -urban
## 13381                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance (preT)
## 13382                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance -rural
## 13383                                                                                                                                                                                                               Average per capita transfer held by 4th quintile - Other Social Assistance  
## 13384                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance -urban
## 13385                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance (preT)
## 13386                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -rural
## 13387                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - Other Social Assistance
## 13388                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -urban
## 13389                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13390                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13391                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13392                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13393                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance
## 13394                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13395                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance (preT)
## 13396                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance -rural
## 13397                                                                                                                                                                                                                         Benefits incidence in 2nd quintile (%) - Other Social Assistance  
## 13398                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance -urban
## 13399                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance (preT)
## 13400                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance -rural
## 13401                                                                                                                                                                                                                         Benefits incidence in 3rd quintile (%) - Other Social Assistance  
## 13402                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance -urban
## 13403                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance (preT)
## 13404                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance -rural
## 13405                                                                                                                                                                                                                         Benefits incidence in 4th quintile (%) - Other Social Assistance  
## 13406                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance -urban
## 13407                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13408                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13409                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance
## 13410                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13411                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13412                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13413                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13414                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13415                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance
## 13416                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13417                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT)
## 13418                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -rural
## 13419                                                                                                                                                                                                                      Beneficiary incidence in 2nd quintile (%) - Other Social Assistance  
## 13420                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -urban
## 13421                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT)
## 13422                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -rural
## 13423                                                                                                                                                                                                                      Beneficiary incidence in 3rd quintile (%) - Other Social Assistance  
## 13424                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -urban
## 13425                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT)
## 13426                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance -rural
## 13427                                                                                                                                                                                                                      Beneficiary incidence in 4th quintile (%) - Other Social Assistance  
## 13428                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance -urban
## 13429                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13430                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13431                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance
## 13432                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13433                                                                                                                                                                                                           Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.9 a day) (preT)
## 13434                                                                                                                                                                                                                  Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13435                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest) (preT)
## 13436                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest) -rural
## 13437                                                                                                                                                                                                                      Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest)
## 13438                                                                                                                                                                                                              Benefit-cost ratio -  Other Social Assistance - 1st quintile (poorest) -urban
## 13439                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13440                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13441                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance (preT)
## 13442                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance -rural
## 13443                                                                                                                                                                                                                                                   Coverage (%) - Other Social Assistance  
## 13444                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance -urban
## 13445                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13446                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13447                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - Other Social Assistance
## 13448                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13449                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance (preT)
## 13450                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance -rural
## 13451                                                                                                                                                                                                                                   Coverage in 2nd quintile (%) - Other Social Assistance  
## 13452                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance -urban
## 13453                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance (preT)
## 13454                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance -rural
## 13455                                                                                                                                                                                                                                   Coverage in 3rd quintile (%) - Other Social Assistance  
## 13456                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance -urban
## 13457                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance (preT)
## 13458                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance -rural
## 13459                                                                                                                                                                                                                                   Coverage in 4th quintile (%) - Other Social Assistance  
## 13460                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance -urban
## 13461                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13462                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13463                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - Other Social Assistance
## 13464                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13465                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Other Social Assistance -rural
## 13466                                                                                                                                                                                                                             Gini inequality index reduction (%) -  Other Social Assistance
## 13467                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Other Social Assistance -urban
## 13468                                                                                                                                                                                                     Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13469                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Other Social Assistance -1st quintile (poorest) -rural
## 13470                                                                                                                                                                                                         Poverty Headcount reduction (%) -  Other Social Assistance -1st quintile (poorest)
## 13471                                                                                                                                                                                                 Poverty Headcount reduction (%) -  Other Social Assistance - 1st quintile (poorest) -urban
## 13472                                                                                                                                                                                                           Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13473                                                                                                                                                                                                        Poverty Gap reduction (%) -  Other Social Assistance -1st quintile (poorest) -rural
## 13474                                                                                                                                                                                                               Poverty Gap reduction (%) -  Other Social Assistance -1st quintile (poorest)
## 13475                                                                                                                                                                                                       Poverty Gap reduction (%) -  Other Social Assistance - 1st quintile (poorest) -urban
## 13476                                                                                                                                                                                                               Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13477                                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Public Works
## 13478                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works (preT)
## 13479                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works -rural
## 13480                                                                                                                                                                                                                                                    Adequacy of benefits (%) - Public Works
## 13481                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works -urban
## 13482                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works (preT)
## 13483                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -rural
## 13484                                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Public Works
## 13485                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -urban
## 13486                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works (preT)
## 13487                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works -rural
## 13488                                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Public Works
## 13489                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works -urban
## 13490                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works (preT)
## 13491                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works -rural
## 13492                                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Public Works
## 13493                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works -urban
## 13494                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works (preT)
## 13495                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works -rural
## 13496                                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Public Works
## 13497                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works -urban
## 13498                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works (preT)
## 13499                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works -rural
## 13500                                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Public Works
## 13501                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works -urban
## 13502                                                                                                                                                                                                       Average per capita transfer held by extreme poor (<$1.9 a day) - Public Works (preT)
## 13503                                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - Public Works
## 13504                                                                                                                                                                                                                                          Average per capita transfer - Public Works (preT)
## 13505                                                                                                                                                                                                                                          Average per capita transfer - Public Works -rural
## 13506                                                                                                                                                                                                                                                 Average per capita transfer - Public Works
## 13507                                                                                                                                                                                                                                          Average per capita transfer - Public Works -urban
## 13508                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works (preT)
## 13509                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works -rural
## 13510                                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Public Works
## 13511                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works -urban
## 13512                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works (preT)
## 13513                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works -rural
## 13514                                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Public Works
## 13515                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works -urban
## 13516                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works (preT)
## 13517                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works -rural
## 13518                                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Public Works
## 13519                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works -urban
## 13520                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works (preT)
## 13521                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works -rural
## 13522                                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Public Works
## 13523                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works -urban
## 13524                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works (preT)
## 13525                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works -rural
## 13526                                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Public Works
## 13527                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works -urban
## 13528                                                                                                                                                                                                                 Benefits incidence in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13529                                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - Public Works
## 13530                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works (preT)
## 13531                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works -rural
## 13532                                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Public Works
## 13533                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works -urban
## 13534                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works (preT)
## 13535                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works -rural
## 13536                                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Public Works
## 13537                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works -urban
## 13538                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works (preT)
## 13539                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works -rural
## 13540                                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Public Works
## 13541                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works -urban
## 13542                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works (preT)
## 13543                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works -rural
## 13544                                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Public Works
## 13545                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works -urban
## 13546                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works (preT)
## 13547                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works -rural
## 13548                                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Public Works
## 13549                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works -urban
## 13550                                                                                                                                                                                                              Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13551                                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Public Works
## 13552                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works (preT)
## 13553                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -rural
## 13554                                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Public Works
## 13555                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -urban
## 13556                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works (preT)
## 13557                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works -rural
## 13558                                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Public Works
## 13559                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works -urban
## 13560                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works (preT)
## 13561                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works -rural
## 13562                                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Public Works
## 13563                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works -urban
## 13564                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works (preT)
## 13565                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works -rural
## 13566                                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Public Works
## 13567                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works -urban
## 13568                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works (preT)
## 13569                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works -rural
## 13570                                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Public Works
## 13571                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works -urban
## 13572                                                                                                                                                                                                                      Benefit-cost ratio -  Public Works -extreme poor (<$1.9 a day) (preT)
## 13573                                                                                                                                                                                                                             Benefit-cost ratio -  Public Works -extreme poor (<$1.9 a day)
## 13574                                                                                                                                                                                                                          Benefit-cost ratio -  Public Works -1st quintile (poorest) (preT)
## 13575                                                                                                                                                                                                                          Benefit-cost ratio -  Public Works -1st quintile (poorest) -rural
## 13576                                                                                                                                                                                                                                 Benefit-cost ratio -  Public Works -1st quintile (poorest)
## 13577                                                                                                                                                                                                                         Benefit-cost ratio -  Public Works - 1st quintile (poorest) -urban
## 13578                                                                                                                                                                                                                           Coverage in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13579                                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - Public Works
## 13580                                                                                                                                                                                                                                                         Coverage (%) - Public Works (preT)
## 13581                                                                                                                                                                                                                                                         Coverage (%) - Public Works -rural
## 13582                                                                                                                                                                                                                                                                Coverage (%) - Public Works
## 13583                                                                                                                                                                                                                                                         Coverage (%) - Public Works -urban
## 13584                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works (preT)
## 13585                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works -rural
## 13586                                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Public Works
## 13587                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works -urban
## 13588                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works (preT)
## 13589                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works -rural
## 13590                                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Public Works
## 13591                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works -urban
## 13592                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works (preT)
## 13593                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works -rural
## 13594                                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Public Works
## 13595                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works -urban
## 13596                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works (preT)
## 13597                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works -rural
## 13598                                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Public Works
## 13599                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works -urban
## 13600                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works (preT)
## 13601                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works -rural
## 13602                                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Public Works
## 13603                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works -urban
## 13604                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Public Works -rural
## 13605                                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Public Works
## 13606                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Public Works -urban
## 13607                                                                                                                                                                                                                Poverty Headcount reduction (%) -  Public Works -extreme poor (<$1.9 a day)
## 13608                                                                                                                                                                                                             Poverty Headcount reduction (%) -  Public Works -1st quintile (poorest) -rural
## 13609                                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Public Works -1st quintile (poorest)
## 13610                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Public Works - 1st quintile (poorest) -urban
## 13611                                                                                                                                                                                                                      Poverty Gap reduction (%) -  Public Works -extreme poor (<$1.9 a day)
## 13612                                                                                                                                                                                                                   Poverty Gap reduction (%) -  Public Works -1st quintile (poorest) -rural
## 13613                                                                                                                                                                                                                          Poverty Gap reduction (%) -  Public Works -1st quintile (poorest)
## 13614                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Public Works - 1st quintile (poorest) -urban
## 13615                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13616                                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - School Feeding
## 13617                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding (preT)
## 13618                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding -rural
## 13619                                                                                                                                                                                                                                                Adequacy of benefits (%) - School Feeding  
## 13620                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding -urban
## 13621                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding (preT)
## 13622                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -rural
## 13623                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - School feeding
## 13624                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -urban
## 13625                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding (preT)
## 13626                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding -rural
## 13627                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - School Feeding  
## 13628                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding -urban
## 13629                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding (preT)
## 13630                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding -rural
## 13631                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - School Feeding  
## 13632                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding -urban
## 13633                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding (preT)
## 13634                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding -rural
## 13635                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - School Feeding  
## 13636                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding -urban
## 13637                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding (preT)
## 13638                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding -rural
## 13639                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - School feeding
## 13640                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding -urban
## 13641                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - School Feeding (preT)
## 13642                                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - School Feeding
## 13643                                                                                                                                                                                                                                        Average per capita transfer - School Feeding (preT)
## 13644                                                                                                                                                                                                                                        Average per capita transfer - School Feeding -rural
## 13645                                                                                                                                                                                                                                             Average per capita transfer - School Feeding  
## 13646                                                                                                                                                                                                                                        Average per capita transfer - School Feeding -urban
## 13647                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding (preT)
## 13648                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding -rural
## 13649                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - School feeding
## 13650                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding -urban
## 13651                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding (preT)
## 13652                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding -rural
## 13653                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - School Feeding  
## 13654                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding -urban
## 13655                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding (preT)
## 13656                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding -rural
## 13657                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - School Feeding  
## 13658                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding -urban
## 13659                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding (preT)
## 13660                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding -rural
## 13661                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - School Feeding  
## 13662                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding -urban
## 13663                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding (preT)
## 13664                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding -rural
## 13665                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - School feeding
## 13666                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding -urban
## 13667                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13668                                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - School Feeding
## 13669                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding (preT)
## 13670                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding -rural
## 13671                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - School feeding
## 13672                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding -urban
## 13673                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding (preT)
## 13674                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding -rural
## 13675                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - School Feeding  
## 13676                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding -urban
## 13677                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding (preT)
## 13678                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding -rural
## 13679                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - School Feeding  
## 13680                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding -urban
## 13681                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding (preT)
## 13682                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding -rural
## 13683                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - School Feeding  
## 13684                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding -urban
## 13685                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding (preT)
## 13686                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding -rural
## 13687                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - School feeding
## 13688                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding -urban
## 13689                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13690                                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - School Feeding
## 13691                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding (preT)
## 13692                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -rural
## 13693                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - School feeding
## 13694                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -urban
## 13695                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding (preT)
## 13696                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding -rural
## 13697                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - School Feeding  
## 13698                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding -urban
## 13699                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding (preT)
## 13700                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding -rural
## 13701                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - School Feeding  
## 13702                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding -urban
## 13703                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding (preT)
## 13704                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding -rural
## 13705                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - School Feeding  
## 13706                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding -urban
## 13707                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding (preT)
## 13708                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding -rural
## 13709                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - School feeding
## 13710                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding -urban
## 13711                                                                                                                                                                                                                    Benefit-cost ratio -  School-feeding -extreme poor (<$1.9 a day) (preT)
## 13712                                                                                                                                                                                                                           Benefit-cost ratio -  School-feeding -extreme poor (<$1.9 a day)
## 13713                                                                                                                                                                                                                        Benefit-cost ratio -  School-feeding -1st quintile (poorest) (preT)
## 13714                                                                                                                                                                                                                        Benefit-cost ratio -  School-feeding -1st quintile (poorest) -rural
## 13715                                                                                                                                                                                                                               Benefit-cost ratio -  School-feeding -1st quintile (poorest)
## 13716                                                                                                                                                                                                                       Benefit-cost ratio -  School-feeding - 1st quintile (poorest) -urban
## 13717                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13718                                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - School Feeding
## 13719                                                                                                                                                                                                                                                       Coverage (%) - School Feeding (preT)
## 13720                                                                                                                                                                                                                                                       Coverage (%) - School Feeding -rural
## 13721                                                                                                                                                                                                                                                            Coverage (%) - School Feeding  
## 13722                                                                                                                                                                                                                                                       Coverage (%) - School Feeding -urban
## 13723                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding (preT)
## 13724                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding -rural
## 13725                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - School feeding
## 13726                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding -urban
## 13727                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding (preT)
## 13728                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding -rural
## 13729                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - School Feeding  
## 13730                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding -urban
## 13731                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding (preT)
## 13732                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding -rural
## 13733                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - School Feeding  
## 13734                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding -urban
## 13735                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding (preT)
## 13736                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding -rural
## 13737                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - School Feeding  
## 13738                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding -urban
## 13739                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding (preT)
## 13740                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding -rural
## 13741                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - School feeding
## 13742                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding -urban
## 13743                                                                                                                                                                                                                               Gini inequality index reduction (%) -  School-feeding -rural
## 13744                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  School-feeding
## 13745                                                                                                                                                                                                                               Gini inequality index reduction (%) -  School-feeding -urban
## 13746                                                                                                                                                                                                              Poverty Headcount reduction (%) -  School-feeding -extreme poor (<$1.9 a day)
## 13747                                                                                                                                                                                                           Poverty Headcount reduction (%) -  School-feeding -1st quintile (poorest) -rural
## 13748                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  School-feeding -1st quintile (poorest)
## 13749                                                                                                                                                                                                          Poverty Headcount reduction (%) -  School-feeding - 1st quintile (poorest) -urban
## 13750                                                                                                                                                                                                                    Poverty Gap reduction (%) -  School-feeding -extreme poor (<$1.9 a day)
## 13751                                                                                                                                                                                                                 Poverty Gap reduction (%) -  School-feeding -1st quintile (poorest) -rural
## 13752                                                                                                                                                                                                                        Poverty Gap reduction (%) -  School-feeding -1st quintile (poorest)
## 13753                                                                                                                                                                                                                Poverty Gap reduction (%) -  School-feeding - 1st quintile (poorest) -urban
## 13754                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13755                                                                                                                                                                                                                   Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13756                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions (preT)
## 13757                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions -rural
## 13758                                                                                                                                                                                                                                                Adequacy of benefits (%) - Social Pensions 
## 13759                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions -urban
## 13760                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13761                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -rural
## 13762                                                                                                                                                                                                                       Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions
## 13763                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -urban
## 13764                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions (preT)
## 13765                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions -rural
## 13766                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Social Pensions 
## 13767                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions -urban
## 13768                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions (preT)
## 13769                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions -rural
## 13770                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Social Pensions 
## 13771                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions -urban
## 13772                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions (preT)
## 13773                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions -rural
## 13774                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Social Pensions 
## 13775                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions -urban
## 13776                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions (preT)
## 13777                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -rural
## 13778                                                                                                                                                                                                                       Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions
## 13779                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -urban
## 13780                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - Social Pensions  (preT)
## 13781                                                                                                                                                                                                           Average per capita transfer held by extreme poor (<$1.9 a day) - Social Pensions
## 13782                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions (preT)
## 13783                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions -rural
## 13784                                                                                                                                                                                                                                             Average per capita transfer - Social Pensions 
## 13785                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions -urban
## 13786                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions (preT)
## 13787                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions -rural
## 13788                                                                                                                                                                                                               Average per capita transfer held by 1st quintile (poorest) - Social Pensions
## 13789                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions -urban
## 13790                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions (preT)
## 13791                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions -rural
## 13792                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Social Pensions 
## 13793                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions -urban
## 13794                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions (preT)
## 13795                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions -rural
## 13796                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Social Pensions 
## 13797                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions -urban
## 13798                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions (preT)
## 13799                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions -rural
## 13800                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Social Pensions 
## 13801                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions -urban
## 13802                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions (preT)
## 13803                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions -rural
## 13804                                                                                                                                                                                                               Average per capita transfer held by 5th quintile (richest) - Social Pensions
## 13805                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions -urban
## 13806                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13807                                                                                                                                                                                                                     Benefits incidence in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13808                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13809                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -rural
## 13810                                                                                                                                                                                                                         Benefits incidence in 1st quintile (poorest) (%) - Social Pensions
## 13811                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -urban
## 13812                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions (preT)
## 13813                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions -rural
## 13814                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Social Pensions 
## 13815                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions -urban
## 13816                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions (preT)
## 13817                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions -rural
## 13818                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Social Pensions 
## 13819                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions -urban
## 13820                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions (preT)
## 13821                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions -rural
## 13822                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Social Pensions 
## 13823                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions -urban
## 13824                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions (preT)
## 13825                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions -rural
## 13826                                                                                                                                                                                                                         Benefits incidence in 5th quintile (richest) (%) - Social Pensions
## 13827                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions -urban
## 13828                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13829                                                                                                                                                                                                                  Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13830                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13831                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -rural
## 13832                                                                                                                                                                                                                      Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions
## 13833                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -urban
## 13834                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions (preT)
## 13835                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions -rural
## 13836                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Social Pensions 
## 13837                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions -urban
## 13838                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions (preT)
## 13839                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions -rural
## 13840                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Social Pensions 
## 13841                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions -urban
## 13842                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions (preT)
## 13843                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions -rural
## 13844                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Social Pensions 
## 13845                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions -urban
## 13846                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions (preT)
## 13847                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -rural
## 13848                                                                                                                                                                                                                      Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions
## 13849                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -urban
## 13850                                                                                                                                                                                                                    Benefit-cost ratio -  Social Pension -extreme poor (<$1.9 a day) (preT)
## 13851                                                                                                                                                                                                                           Benefit-cost ratio -  Social Pension -extreme poor (<$1.9 a day)
## 13852                                                                                                                                                                                                                        Benefit-cost ratio -  Social Pension -1st quintile (poorest) (preT)
## 13853                                                                                                                                                                                                                        Benefit-cost ratio -  Social Pension -1st quintile (poorest) -rural
## 13854                                                                                                                                                                                                                               Benefit-cost ratio -  Social Pension -1st quintile (poorest)
## 13855                                                                                                                                                                                                                       Benefit-cost ratio -  Social Pension - 1st quintile (poorest) -urban
## 13856                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13857                                                                                                                                                                                                                               Coverage in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13858                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions (preT)
## 13859                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions -rural
## 13860                                                                                                                                                                                                                                                            Coverage (%) - Social Pensions 
## 13861                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions -urban
## 13862                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13863                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions -rural
## 13864                                                                                                                                                                                                                                   Coverage in 1st quintile (poorest) (%) - Social Pensions
## 13865                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions -urban
## 13866                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions (preT)
## 13867                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions -rural
## 13868                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Social Pensions 
## 13869                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions -urban
## 13870                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions (preT)
## 13871                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions -rural
## 13872                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Social Pensions 
## 13873                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions -urban
## 13874                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions (preT)
## 13875                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions -rural
## 13876                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Social Pensions 
## 13877                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions -urban
## 13878                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions (preT)
## 13879                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions -rural
## 13880                                                                                                                                                                                                                                   Coverage in 5th quintile (richest) (%) - Social Pensions
## 13881                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions -urban
## 13882                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Social Pension-rural
## 13883                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Social Pension
## 13884                                                                                                                                                                                                                               Gini inequality index reduction (%) -  Social Pension -urban
## 13885                                                                                                                                                                                                              Poverty Headcount reduction (%) -  Social Pension -extreme poor (<$1.9 a day)
## 13886                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Social Pension -1st quintile (poorest) -rural
## 13887                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Social Pension -1st quintile (poorest)
## 13888                                                                                                                                                                                                          Poverty Headcount reduction (%) -  Social Pension - 1st quintile (poorest) -urban
## 13889                                                                                                                                                                                                                    Poverty Gap reduction (%) -  Social Pension -extreme poor (<$1.9 a day)
## 13890                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Social Pension -1st quintile (poorest) -rural
## 13891                                                                                                                                                                                                                        Poverty Gap reduction (%) -  Social Pension -1st quintile (poorest)
## 13892                                                                                                                                                                                                                Poverty Gap reduction (%) -  Social Pension - 1st quintile (poorest) -urban
## 13893                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) only receiving All Social Assistance (%, preT)
## 13894                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) only receiving All Social Assistance (%)
## 13895                                                                                                                                                                                                                                  Population only receiving All Social Assistance (%, preT)
## 13896                                                                                                                                                                                                                                 Population only receiving All Social Assistance (%) -rural
## 13897                                                                                                                                                                                                                                        Population only receiving All Social Assistance (%)
## 13898                                                                                                                                                                                                                                 Population only receiving All Social Assistance (%) -urban
## 13899                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Assistance (%, preT)
## 13900                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -rural
## 13901                                                                                                                                                                                                          Population in the 1st quintile (poorest) only receiving All Social Assistance (%)
## 13902                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -urban
## 13903                                                                                                                                                                                                   Population in extreme poor (<$1.9 a day) receiving Social Assistance and Other (%, preT)
## 13904                                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) receiving Social Assistance and Other (%)
## 13905                                                                                                                                                                                                                                 Population receiving Social Assistance and Other (%, preT)
## 13906                                                                                                                                                                                                                                Population receiving Social Assistance and Other (%) -rural
## 13907                                                                                                                                                                                                                                       Population receiving Social Assistance and Other (%)
## 13908                                                                                                                                                                                                                                Population receiving Social Assistance and Other (%) -urban
## 13909                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving Social Assistance and Other (%, preT)
## 13910                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -rural
## 13911                                                                                                                                                                                                         Population in the 1st quintile (poorest) receiving Social Assistance and Other (%)
## 13912                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -urban
## 13913                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13914                                                                                                                                                                                                              Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13915                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance (preT)
## 13916                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance -rural
## 13917                                                                                                                                                                                                       Adequacy of social insurance programs (% of total welfare of beneficiary households)
## 13918                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance -urban
## 13919                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13920                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13921                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance
## 13922                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13923                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance (preT)
## 13924                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance -rural
## 13925                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - All Social Insurance 
## 13926                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance -urban
## 13927                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance (preT)
## 13928                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance -rural
## 13929                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - All Social Insurance 
## 13930                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance -urban
## 13931                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance (preT)
## 13932                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance -rural
## 13933                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - All Social Insurance 
## 13934                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance -urban
## 13935                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance (preT)
## 13936                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -rural
## 13937                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance
## 13938                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -urban
## 13939                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Insurance  (preT)
## 13940                                                                                                                                                                                                      Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Insurance
## 13941                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance (preT)
## 13942                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance -rural
## 13943                                                                                                                                                                                                                                        Average per capita transfer - All Social Insurance 
## 13944                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance -urban
## 13945                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance (preT)
## 13946                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -rural
## 13947                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - All Social Insurance
## 13948                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -urban
## 13949                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance (preT)
## 13950                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance -rural
## 13951                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - All Social Insurance 
## 13952                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance -urban
## 13953                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance (preT)
## 13954                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance -rural
## 13955                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - All Social Insurance 
## 13956                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance -urban
## 13957                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance (preT)
## 13958                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance -rural
## 13959                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - All Social Insurance 
## 13960                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance -urban
## 13961                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance (preT)
## 13962                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance -rural
## 13963                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - All Social Insurance
## 13964                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance -urban
## 13965                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13966                                                                                                                                                                                                                Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13967                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13968                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13969                                                                                                                                                                                  Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits)
## 13970                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13971                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance (preT)
## 13972                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance -rural
## 13973                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - All Social Insurance 
## 13974                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance -urban
## 13975                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance (preT)
## 13976                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance -rural
## 13977                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - All Social Insurance 
## 13978                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance -urban
## 13979                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance (preT)
## 13980                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance -rural
## 13981                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - All Social Insurance 
## 13982                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance -urban
## 13983                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance (preT)
## 13984                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -rural
## 13985                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - All Social Insurance
## 13986                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -urban
## 13987                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13988                                                                                                                                                                                                             Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13989                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13990                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13991                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance
## 13992                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13993                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance (preT)
## 13994                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance -rural
## 13995                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - All Social Insurance 
## 13996                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance -urban
## 13997                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance (preT)
## 13998                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance -rural
## 13999                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - All Social Insurance 
## 14000                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance -urban
## 14001                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance (preT)
## 14002                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance -rural
## 14003                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - All Social Insurance 
## 14004                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance -urban
## 14005                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance (preT)
## 14006                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -rural
## 14007                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance
## 14008                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -urban
## 14009                                                                                                                                                                                                              Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.9 a day) (preT)
## 14010                                                                                                                                                                                                                     Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.9 a day)
## 14011                                                                                                                                                                                                                  Benefit-cost ratio -  All Social Insurance -1st quintile (poorest) (preT)
## 14012                                                                                                                                                                                                                  Benefit-cost ratio -  All Social Insurance -1st quintile (poorest) -rural
## 14013                                                                                                                                                                                                                         Benefit-cost ratio -  All Social Insurance -1st quintile (poorest)
## 14014                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Insurance - 1st quintile (poorest) -urban
## 14015                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 14016                                                                                                                                                                                                                          Coverage in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 14017                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance (preT)
## 14018                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance -rural
## 14019                                                                                                                                                                                                                                    Coverage of social insurance programs (% of population)
## 14020                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance -urban
## 14021                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 14022                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance -rural
## 14023                                                                                                                                                                                                                Coverage of social insurance programs in poorest quintile (% of population)
## 14024                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance -urban
## 14025                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance (preT)
## 14026                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance -rural
## 14027                                                                                                                                                                                                                    Coverage of social insurance programs in 2nd quintile (% of population)
## 14028                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance -urban
## 14029                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance (preT)
## 14030                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance -rural
## 14031                                                                                                                                                                                                                    Coverage of social insurance programs in 3rd quintile (% of population)
## 14032                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance -urban
## 14033                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance (preT)
## 14034                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance -rural
## 14035                                                                                                                                                                                                                    Coverage of social insurance programs in 4th quintile (% of population)
## 14036                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance -urban
## 14037                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance (preT)
## 14038                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance -rural
## 14039                                                                                                                                                                                                                Coverage of social insurance programs in richest quintile (% of population)
## 14040                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance -urban
## 14041                                                                                                                                                                                                                         Gini inequality index reduction (%) -  All Social Insurance -rural
## 14042                                                                                                                                                                                                                                Gini inequality index reduction (%) -  All Social Insurance
## 14043                                                                                                                                                                                                                         Gini inequality index reduction (%) -  All Social Insurance -urban
## 14044                                                                                                                                                                                                        Poverty Headcount reduction (%) -  All Social Insurance -extreme poor (<$1.9 a day)
## 14045                                                                                                                                                                                                     Poverty Headcount reduction (%) -  All Social Insurance -1st quintile (poorest) -rural
## 14046                                                                                                                                                                                                            Poverty Headcount reduction (%) -  All Social Insurance -1st quintile (poorest)
## 14047                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Social Insurance - 1st quintile (poorest) -urban
## 14048                                                                                                                                                                                                              Poverty Gap reduction (%) -  All Social Insurance -extreme poor (<$1.9 a day)
## 14049                                                                                                                                                                                                           Poverty Gap reduction (%) -  All Social Insurance -1st quintile (poorest) -rural
## 14050                                                                                                                                                                                                                  Poverty Gap reduction (%) -  All Social Insurance -1st quintile (poorest)
## 14051                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Social Insurance - 1st quintile (poorest) -urban
## 14052                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14053                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14054                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions (preT)
## 14055                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions -rural
## 14056                                                                                                                                                                                                                                          Adequacy of benefits (%) - Contributory Pensions 
## 14057                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions -urban
## 14058                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14059                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14060                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions
## 14061                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14062                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions (preT)
## 14063                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -rural
## 14064                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Contributory Pensions 
## 14065                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -urban
## 14066                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions (preT)
## 14067                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -rural
## 14068                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Contributory Pensions 
## 14069                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -urban
## 14070                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions (preT)
## 14071                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions -rural
## 14072                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Contributory Pensions 
## 14073                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions -urban
## 14074                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14075                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14076                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions
## 14077                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14078                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - Contributory Pensions  (preT)
## 14079                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - Contributory Pensions
## 14080                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions (preT)
## 14081                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions -rural
## 14082                                                                                                                                                                                                                                       Average per capita transfer - Contributory Pensions 
## 14083                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions -urban
## 14084                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions (preT)
## 14085                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -rural
## 14086                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions
## 14087                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -urban
## 14088                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions (preT)
## 14089                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions -rural
## 14090                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Contributory Pensions 
## 14091                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions -urban
## 14092                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions (preT)
## 14093                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions -rural
## 14094                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Contributory Pensions 
## 14095                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions -urban
## 14096                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions (preT)
## 14097                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions -rural
## 14098                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Contributory Pensions 
## 14099                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions -urban
## 14100                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions (preT)
## 14101                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -rural
## 14102                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - Contributory Pensions
## 14103                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -urban
## 14104                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14105                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14106                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14107                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14108                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions
## 14109                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14110                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions (preT)
## 14111                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions -rural
## 14112                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Contributory Pensions 
## 14113                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions -urban
## 14114                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions (preT)
## 14115                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions -rural
## 14116                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Contributory Pensions 
## 14117                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions -urban
## 14118                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions (preT)
## 14119                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions -rural
## 14120                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Contributory Pensions 
## 14121                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions -urban
## 14122                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14123                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14124                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions
## 14125                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14126                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14127                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14128                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14129                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14130                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions
## 14131                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14132                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT)
## 14133                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -rural
## 14134                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Contributory Pensions 
## 14135                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -urban
## 14136                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT)
## 14137                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -rural
## 14138                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Contributory Pensions 
## 14139                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -urban
## 14140                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT)
## 14141                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions -rural
## 14142                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Contributory Pensions 
## 14143                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions -urban
## 14144                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14145                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14146                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions
## 14147                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14148                                                                                                                                                                                                             Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.9 a day) (preT)
## 14149                                                                                                                                                                                                                    Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14150                                                                                                                                                                                                                 Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest) (preT)
## 14151                                                                                                                                                                                                                 Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest) -rural
## 14152                                                                                                                                                                                                                        Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest)
## 14153                                                                                                                                                                                                                Benefit-cost ratio -  Contributory Pensions - 1st quintile (poorest) -urban
## 14154                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14155                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14156                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions (preT)
## 14157                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions -rural
## 14158                                                                                                                                                                                                                                                      Coverage (%) - Contributory Pensions 
## 14159                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions -urban
## 14160                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14161                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14162                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - Contributory Pensions
## 14163                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14164                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions (preT)
## 14165                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions -rural
## 14166                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Contributory Pensions 
## 14167                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions -urban
## 14168                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions (preT)
## 14169                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions -rural
## 14170                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Contributory Pensions 
## 14171                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions -urban
## 14172                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions (preT)
## 14173                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions -rural
## 14174                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Contributory Pensions 
## 14175                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions -urban
## 14176                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14177                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14178                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - Contributory Pensions
## 14179                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14180                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Contributory Pensions -rural
## 14181                                                                                                                                                                                                                               Gini inequality index reduction (%) -  Contributory Pensions
## 14182                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Contributory Pensions -urban
## 14183                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14184                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Contributory Pensions -1st quintile (poorest) -rural
## 14185                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Contributory Pensions -1st quintile (poorest)
## 14186                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Contributory Pensions - 1st quintile (poorest) -urban
## 14187                                                                                                                                                                                                             Poverty Gap reduction (%) -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14188                                                                                                                                                                                                          Poverty Gap reduction (%) -  Contributory Pensions -1st quintile (poorest) -rural
## 14189                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Contributory Pensions -1st quintile (poorest)
## 14190                                                                                                                                                                                                         Poverty Gap reduction (%) -  Contributory Pensions - 1st quintile (poorest) -urban
## 14191                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14192                                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14193                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance (preT)
## 14194                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance -rural
## 14195                                                                                                                                                                                                                                         Adequacy of benefits (%) - Other Social Insurance 
## 14196                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance -urban
## 14197                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14198                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14199                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance
## 14200                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14201                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance (preT)
## 14202                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -rural
## 14203                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - Other Social Insurance 
## 14204                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -urban
## 14205                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance (preT)
## 14206                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -rural
## 14207                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - Other Social Insurance 
## 14208                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -urban
## 14209                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance (preT)
## 14210                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance -rural
## 14211                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - Other Social Insurance 
## 14212                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance -urban
## 14213                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14214                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14215                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance
## 14216                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14217                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Insurance  (preT)
## 14218                                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Insurance
## 14219                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance (preT)
## 14220                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance -rural
## 14221                                                                                                                                                                                                                                      Average per capita transfer - Other Social Insurance 
## 14222                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance -urban
## 14223                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance (preT)
## 14224                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -rural
## 14225                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance
## 14226                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -urban
## 14227                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance (preT)
## 14228                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance -rural
## 14229                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - Other Social Insurance 
## 14230                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance -urban
## 14231                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance (preT)
## 14232                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance -rural
## 14233                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - Other Social Insurance 
## 14234                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance -urban
## 14235                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance (preT)
## 14236                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance -rural
## 14237                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - Other Social Insurance 
## 14238                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance -urban
## 14239                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance (preT)
## 14240                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -rural
## 14241                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Other Social Insurance
## 14242                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -urban
## 14243                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14244                                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14245                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14246                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14247                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance
## 14248                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14249                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance (preT)
## 14250                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance -rural
## 14251                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - Other Social Insurance 
## 14252                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance -urban
## 14253                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance (preT)
## 14254                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance -rural
## 14255                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - Other Social Insurance 
## 14256                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance -urban
## 14257                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance (preT)
## 14258                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance -rural
## 14259                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - Other Social Insurance 
## 14260                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance -urban
## 14261                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14262                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14263                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance
## 14264                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14265                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14266                                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14267                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14268                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14269                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance
## 14270                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14271                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance (preT)
## 14272                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -rural
## 14273                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - Other Social Insurance 
## 14274                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -urban
## 14275                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance (preT)
## 14276                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -rural
## 14277                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - Other Social Insurance 
## 14278                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -urban
## 14279                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance (preT)
## 14280                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance -rural
## 14281                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - Other Social Insurance 
## 14282                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance -urban
## 14283                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14284                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14285                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance
## 14286                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14287                                                                                                                                                                                                            Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.9 a day) (preT)
## 14288                                                                                                                                                                                                                   Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14289                                                                                                                                                                                                                Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest) (preT)
## 14290                                                                                                                                                                                                                Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest) -rural
## 14291                                                                                                                                                                                                                       Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest)
## 14292                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Insurance - 1st quintile (poorest) -urban
## 14293                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14294                                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14295                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance (preT)
## 14296                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance -rural
## 14297                                                                                                                                                                                                                                                     Coverage (%) - Other Social Insurance 
## 14298                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance -urban
## 14299                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14300                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14301                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Other Social Insurance
## 14302                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14303                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance (preT)
## 14304                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance -rural
## 14305                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - Other Social Insurance 
## 14306                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance -urban
## 14307                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance (preT)
## 14308                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance -rural
## 14309                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - Other Social Insurance 
## 14310                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance -urban
## 14311                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance (preT)
## 14312                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance -rural
## 14313                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - Other Social Insurance 
## 14314                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance -urban
## 14315                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14316                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14317                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Other Social Insurance
## 14318                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14319                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Other Social Insurance -rural
## 14320                                                                                                                                                                                                                              Gini inequality index reduction (%) -  Other Social Insurance
## 14321                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Other Social Insurance -urban
## 14322                                                                                                                                                                                                      Poverty Headcount reduction (%) -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14323                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Other Social Insurance -1st quintile (poorest) -rural
## 14324                                                                                                                                                                                                          Poverty Headcount reduction (%) -  Other Social Insurance -1st quintile (poorest)
## 14325                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Other Social Insurance - 1st quintile (poorest) -urban
## 14326                                                                                                                                                                                                            Poverty Gap reduction (%) -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14327                                                                                                                                                                                                         Poverty Gap reduction (%) -  Other Social Insurance -1st quintile (poorest) -rural
## 14328                                                                                                                                                                                                                Poverty Gap reduction (%) -  Other Social Insurance -1st quintile (poorest)
## 14329                                                                                                                                                                                                        Poverty Gap reduction (%) -  Other Social Insurance - 1st quintile (poorest) -urban
## 14330                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) receiving All Social Insurance and Labor Market (%, preT)
## 14331                                                                                                                                                                                               Population in extreme poor (<$1.9 a day) receiving All Social Insurance and Labor Market (%)
## 14332                                                                                                                                                                                                                       Population receiving All Social Insurance and Labor Market (%, preT)
## 14333                                                                                                                                                                                                                      Population receiving All Social Insurance and Labor Market (%) -rural
## 14334                                                                                                                                                                                                                             Population receiving All Social Insurance and Labor Market (%)
## 14335                                                                                                                                                                                                                      Population receiving All Social Insurance and Labor Market (%) -urban
## 14336                                                                                                                                                                                         Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%, preT)
## 14337                                                                                                                                                                                        Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -rural
## 14338                                                                                                                                                                                               Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%)
## 14339                                                                                                                                                                                        Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -urban
## 14340                                                                                                                                                                                                     Population in extreme poor (<$1.9 a day) only receiving All Social Insurance (%, preT)
## 14341                                                                                                                                                                                                           Population in extreme poor (<$1.9 a day) only receiving All Social Insurance (%)
## 14342                                                                                                                                                                                                                                   Population only receiving All Social Insurance (%, preT)
## 14343                                                                                                                                                                                                                                  Population only receiving All Social Insurance (%) -rural
## 14344                                                                                                                                                                                                                                         Population only receiving All Social Insurance (%)
## 14345                                                                                                                                                                                                                                  Population only receiving All Social Insurance (%) -urban
## 14346                                                                                                                                                                                                     Population in the 1st quintile (poorest) only receiving All Social Insurance (%, preT)
## 14347                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -rural
## 14348                                                                                                                                                                                                           Population in the 1st quintile (poorest) only receiving All Social Insurance (%)
## 14349                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -urban
## 14350                                                                                                                                                                                                                        Aggregate expenditure out-turn compared to original approved budget
## 14351                                                                                                                                                                                                                                                    Public access to key fiscal information
## 14352                                                                                                                                                                                                                                 Orderliness and participation in the annual budget process
## 14353                                                                                                                                                                                                                                 (i) Existence of and adherence to a fixed budget calendar;
## 14354                                                                                                                                      (ii) Clarity/comprehensiveness of and political involvement in the guidance on the preparation of budget submissions (budget circular or equivalent);
## 14355                                                                                                                                                                                  (iii) Timely budget approval by the legislature or similarly mandated body (within the last three years);
## 14356                                                                                                                                                                                                                Multi-year perspective in fiscal planning, expenditure policy and budgeting
## 14357                                                                                                                                                                                                                 (i) Preparation of multi -year fiscal forecasts and functional allocations
## 14358                                                                                                                                                                                                                                   (ii) Scope and frequency of debt sustainability analysis
## 14359                                                                                                                                                                                      (iii) Existence of sector strategies with multi-year costing of recurrent and investment expenditure;
## 14360                                                                                                                                                                                                                (iv)  Linkages between investment budgets and forward expenditure estimates
## 14361                                                                                                                                                                                                                                       Transparency of taxpayer obligations and liabilities
## 14362                                                                                                                                                                                                                                       (i) Clarity and comprehensiveness of tax liabilities
## 14363                                                                                                                                                                                                       (ii) Taxpayer access to information on tax liabilities and administrative procedures
## 14364                                                                                                                                                                                                                                 (iii) Existence and functioning of a tax appeals mechanism
## 14365                                                                                                                                                                                                                     Effectiveness of measures for taxpayer registration and tax assessment
## 14366                                                                                                                                                                                                                                           (i) Controls in the taxpayer registration system
## 14367                                                                                                                                                                                          (ii)  Effectiveness of penalties for non-compliance with registration and declaration obligations
## 14368                                                                                                                                                                                                                (iii) Planning and monitoring of tax audit and fraud investigation programs
## 14369                                                                                                                                                                                                                                                Effectiveness in collection of tax payments
## 14370                                                                                      (i) Collection ratio for gross tax arrears, being the percentage of tax arrears at the beginning of a fiscal year, which was collected during that fiscal year (average of the last two fiscal years)
## 14371                                                                                                                                                                                            (ii) Effectiveness of transfer of tax collections to the Treasury by the revenue administration
## 14372                                                                                                                                                     (iii) Frequency of complete accounts reconciliation between tax assessments, collections, arrears records and receipts by the Treasury
## 14373                                                                                                                                                                                                                 Predictability in the availability of funds for commitment of expenditures
## 14374                                                                                                                                                                                                                                 (i)  Extent to which cash flows are forecast and monitored
## 14375                                                                                                                                                                               (ii) Reliability and horizon of periodic in-year information to MDAs on ceilings for expenditure commitmentc
## 14376                                                                                                                                                             (iii) Frequency and transparency of adjustments to budget allocations, which are decided above the level of management of MDAs
## 14377                                                                                                                                                                                                                             Recording and management of cash balances, debt and guarantees
## 14378                                                                                                                                                                                                                                           (i) Quality of debt data recording and reporting
## 14379                                                                                                                                                                                                                             (ii) Extent of consolidation of the government’s cash balances
## 14380                                                                                                                                                                                                                             (iii) Systems for contracting loans and issuance of guarantees
## 14381                                                                                                                                                                                                                                                          Effectiveness of payroll controls
## 14382                                                                                                                                                                                                    (i) Degree of integration and reconciliation between personnel records and payroll data
## 14383                                                                                                                                                                                                                            (ii) Timeliness of changes to personnel records and the payroll
## 14384                                                                                                                                                                                                                    (iii) Internal controls of changes to personnel records and the payroll
## 14385                                                                                                                                                                                                       (iv) Existence of payroll audits to identify control weaknesses and/or ghost workers
## 14386                                                                                                                                                                                                                                   Competition, value for money and controls in procurement
## 14387                                                                                                                                                                                                  (i) Transparency, comprehensiveness and competition in the legal and regulatory framework
## 14388                                                                                                                                                                                                                                                (ii) Use of competitive procurement methods
## 14389                                                                                                                                                                                                               (iii) Public access to complete, reliable and timely procurement information
## 14390                                                                                                                                                                                                              (iv) Existence of an independent administrative procurement complaints system
## 14391                                                                                                                                                                                                                         (i) Evidence on the use of open competition for award of contracts
## 14392                                                                                                                                                                                                               (ii) Extent of justification for use of less competitive procurement methods
## 14393                                                                                                                                                                                                                        (iii) Existence and operation of a procurement complaints mechanism
## 14394                                                                                                                                                                                                                   Composition of expenditure out-turn compared to original approved budget
## 14395                                                                                                                                                                             (i) Extent of the variance in expenditure composition during the last three years, excluding contingency items
## 14396                                                                                                                                                                                  (ii) The average amount of expenditure actually charged to the contingency vote over the last three years
## 14397                                                                                                                                                                                                                              Effectiveness of internal controls for non-salary expenditure
## 14398                                                                                                                                                                                                                                       (i) Effectiveness of expenditure commitment controls
## 14399                                                                                                                                                                                            (ii) Comprehensiveness, relevance and understanding of other internal control rules/ procedures
## 14400                                                                                                                                                                                                             (iii) Degreeof compliance with rules for processing and recording transactions
## 14401                                                                                                                                                                                                                                                            Effectiveness of internal audit
## 14402                                                                                                                                                                                                                                    (i) Coverage and quality of the internal audit function
## 14403                                                                                                                                                                                                                                                 (ii) Frequency and distribution of reports
## 14404                                                                                                                                                                                                                             (iii) Extent of management response to internal audit findings
## 14405                                                                                                                                                                                                                                      Timeliness and regularity of  accounts reconciliation
## 14406                                                                                                                                                                                                                                                     (i) Regularity of bank reconciliations
## 14407                                                                                                                                                                                                          (ii) Regularity of reconciliation and clearance of suspense accounts and advances
## 14408                                                                                                                                                                                                                Availability of information on resources received by service delivery units
## 14409                                                                                                                                                                                                                                           Quality and timeliness of in-year budget reports
## 14410                                                                                                                                                                                                          (i) Scope of reports in terms of coverage and compatibility with budget estimates
## 14411                                                                                                                                                                                                                                                    (ii) Timeliness of the issue of reports
## 14412                                                                                                                                                                                                                                                               (iii) Quality of information
## 14413                                                                                                                                                                                                                                      Quality and timeliness of annual financial statements
## 14414                                                                                                                                                                                                                                               (i) Completeness of the financial statements
## 14415                                                                                                                                                                                                                                  (ii) Timeliness of submission of the financial statements
## 14416                                                                                                                                                                                                                                                            (iii) Accounting standards used
## 14417                                                                                                                                                                                                                                              Scope, nature and follow-up of external audit
## 14418                                                                                                                                                                                                                (i) Scope/nature of audit performed (incl. adherence to auditing standards)
## 14419                                                                                                                                                                                                                              (ii) Timeliness of submission of audit reports to legislature
## 14420                                                                                                                                                                                                                                       (iii) Evidence of follow up on audit recommendations
## 14421                                                                                                                                                                                                                                              Legislative scrutiny of the annual budget law
## 14422                                                                                                                                                                                                                                                    (i) Scope of the legislature’s scrutiny
## 14423                                                                                                                                                                                                       (ii) Extent to which the legislature’s procedures are well-established and respected
## 14424                                                                                                                                                                                                       (iii) Adequacy of time for the legislature to provide a response to budget proposals
## 14425                                                                                                                                                                                                (iv) Rules for in-year amendments to the budget without ex-ante approval by the legislature
## 14426                                                                                                                                                                                                                                             Legislative scrutiny of external audit reports
## 14427                                                                                                                                                                       (i) Timeliness of examination of audit reports by the legislature (for reports received within the last three years)
## 14428                                                                                                                                                                                                                      (ii) Extent of hearings on key findings undertaken by the legislature
## 14429                                                                                                                                                                                               (iii) Issuance of recommended actions by the legislature and implementation by the executive
## 14430                                                                                                                                                                                                                            Aggregate revenue out-turn compared to original approved budget
## 14431                                                                                                                                                                                                                                        Stock and monitoring of expenditure payment arrears
## 14432                                                                                                                                           (i) Stock of expenditure payment arrears (as a % of actual total expenditure for the corresponding fiscal year) & any recent change in the stock
## 14433                                                                                                                                                                                                          (ii) Availability of data for monitoring the stock of expenditure payment arrears
## 14434                                                                                                                                                                                                                                                               Classification of the budget
## 14435                                                                                                                                                                                                                          Comprehensiveness of information included in budget documentation
## 14436                                                                                                                                                                                                                                                 Extent of unreported government operations
## 14437                                                                                                                                                    (i) The level of extra-budgetary expenditure (other than donor funded projects) which is unreported i.e. not included in fiscal reports
## 14438                                                                                                                                                                                           (ii) Income/expenditure information on donor-funded projects which is included in fiscal reports
## 14439                                                                                                                                                                                                                                        Transparency of inter-governmental fiscal relations
## 14440                                                                                       (i) Transparent and rules based systems in the horizontal allocation among SN governments of unconditional and conditional transfers from central government (both budgeted and actual allocations);
## 14441                                                                                                                                                                (ii) Timeliness of reliable information to SN governments on their allocations from central government for the coming year;
## 14442                                                                                                                     (iii) Extent to which consolidated fiscal data (at least on revenue and expenditure) is collected and reported for general government according to sectoral categories
## 14443                                                                                                                                                                                                                       Oversight of aggregate fiscal risk from other public sector entities
## 14444                                                                                                                                                                                                                                (i) Extent of central government monitoring of AGAs and Pes
## 14445                                                                                                                                                                                                           (ii)  Extent of central government monitoring of SN government's fiscal position
## 14446                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Female
## 14447                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Male
## 14448                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Total
## 14449                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Female
## 14450                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Male
## 14451                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Total
## 14452                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Female
## 14453                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Male
## 14454                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Total
## 14455                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Female
## 14456                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Male
## 14457                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Total
## 14458                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Female
## 14459                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Male
## 14460                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Total
## 14461                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Female
## 14462                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Male
## 14463                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Total
## 14464                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Female
## 14465                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Male
## 14466                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Total
## 14467                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Female
## 14468                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Male
## 14469                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Total
## 14470                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Female
## 14471                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Male
## 14472                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Total
## 14473                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Female
## 14474                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Male
## 14475                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Total
## 14476                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Female
## 14477                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Male
## 14478                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Total
## 14479                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Female
## 14480                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Male
## 14481                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Total
## 14482                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Female
## 14483                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Male
## 14484                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Total
## 14485                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Female
## 14486                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Male
## 14487                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Total
## 14488                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Female
## 14489                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Male
## 14490                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Total
## 14491                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Female
## 14492                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Male
## 14493                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Total
## 14494                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Female
## 14495                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Male
## 14496                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Total
## 14497                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Female
## 14498                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Male
## 14499                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Total
## 14500                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Female
## 14501                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Male
## 14502                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Total
## 14503                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Female
## 14504                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Male
## 14505                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Total
## 14506                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Female
## 14507                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Male
## 14508                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Total
## 14509                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Female
## 14510                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Male
## 14511                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Total
## 14512                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Female
## 14513                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Male
## 14514                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Total
## 14515                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Female
## 14516                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Male
## 14517                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Total
## 14518                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Female
## 14519                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Male
## 14520                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Total
## 14521                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Female
## 14522                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Male
## 14523                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Total
## 14524                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Female
## 14525                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Male
## 14526                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Total
## 14527                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Female
## 14528                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Male
## 14529                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Total
## 14530                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Female
## 14531                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Male
## 14532                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Total
## 14533                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Female
## 14534                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Male
## 14535                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Total
## 14536                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Female
## 14537                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Male
## 14538                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Total
## 14539                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Female
## 14540                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Male
## 14541                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Total
## 14542                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Female
## 14543                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Male
## 14544                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Total
## 14545                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Female
## 14546                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Male
## 14547                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Total
## 14548                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Female
## 14549                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Male
## 14550                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Total
## 14551                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Female
## 14552                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Male
## 14553                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Total
## 14554                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Female
## 14555                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Male
## 14556                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Total
## 14557                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Female
## 14558                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Male
## 14559                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Total
## 14560                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Female
## 14561                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Male
## 14562                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Total
## 14563                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Female
## 14564                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Male
## 14565                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Total
## 14566                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Female
## 14567                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Male
## 14568                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Total
## 14569                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Female
## 14570                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Male
## 14571                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Total
## 14572                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Female
## 14573                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Male
## 14574                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Total
## 14575                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Female
## 14576                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Male
## 14577                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Total
## 14578                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Female
## 14579                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Male
## 14580                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Total
## 14581                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Female
## 14582                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Male
## 14583                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Total
## 14584                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Female
## 14585                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Male
## 14586                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Total
## 14587                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Female
## 14588                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Male
## 14589                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Total
## 14590                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Female
## 14591                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Male
## 14592                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Total
## 14593                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Female
## 14594                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Male
## 14595                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Total
## 14596                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Female
## 14597                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Male
## 14598                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Total
## 14599                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Female
## 14600                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Male
## 14601                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Total
## 14602                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Female
## 14603                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Male
## 14604                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Total
## 14605                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Female
## 14606                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Male
## 14607                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Total
## 14608                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Female
## 14609                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Male
## 14610                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Total
## 14611                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Female
## 14612                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Male
## 14613                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Total
## 14614                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Female
## 14615                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Male
## 14616                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Total
## 14617                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Female
## 14618                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Male
## 14619                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Total
## 14620                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Female
## 14621                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Male
## 14622                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Total
## 14623                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Female
## 14624                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Male
## 14625                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Total
## 14626                                                                                                                                                                    Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Female
## 14627                                                                                                                                                                      Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Male
## 14628                                                                                                                                                                     Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Total
## 14629                                                                                                                                                            Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Female
## 14630                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Male
## 14631                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Total
## 14632                                                                                                                                                            Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Female
## 14633                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Male
## 14634                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Total
## 14635                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Female
## 14636                                                                                                                                                               Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Male
## 14637                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Total
## 14638                                                                                                                                                               Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Female
## 14639                                                                                                                                                                 Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Male
## 14640                                                                                                                                                                Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Total
## 14641                                                                                                                                                         Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Female
## 14642                                                                                                                                                           Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Male
## 14643                                                                                                                                                          Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Total
## 14644                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 0-19. Female
## 14645                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 0-19. Male
## 14646                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 0-19. Total
## 14647                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 15-19. Female
## 14648                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 15-19. Male
## 14649                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 15-19. Total
## 14650                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 15+. Female
## 14651                                                                                                                                                                                                                      Wittgenstein Projection: Mean Years of Schooling. Age 15+. Gender Gap
## 14652                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 15+. Male
## 14653                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 15+. Total
## 14654                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-24. Female
## 14655                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-24. Male
## 14656                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-24. Total
## 14657                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-39. Female
## 14658                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-39. Male
## 14659                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-39. Total
## 14660                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-64. Female
## 14661                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-64. Male
## 14662                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-64. Total
## 14663                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 25-29. Female
## 14664                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 25-29. Male
## 14665                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 25-29. Total
## 14666                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 25+. Female
## 14667                                                                                                                                                                                                                      Wittgenstein Projection: Mean Years of Schooling. Age 25+. Gender Gap
## 14668                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 25+. Male
## 14669                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 25+. Total
## 14670                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 40-64. Female
## 14671                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 40-64. Male
## 14672                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 40-64. Total
## 14673                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 60+. Female
## 14674                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 60+. Male
## 14675                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 60+. Total
## 14676                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 65+. Female
## 14677                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 65+. Male
## 14678                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 65+. Total
## 14679                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 80+. Female
## 14680                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 80+. Male
## 14681                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 80+. Total
## 14682                                                                                                                                                                     Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Female
## 14683                                                                                                                                                                       Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Male
## 14684                                                                                                                                                                      Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Total
## 14685                                                                                                                                                             Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14686                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14687                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14688                                                                                                                                                             Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14689                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14690                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14691                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Female
## 14692                                                                                                                                                                Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Male
## 14693                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Total
## 14694                                                                                                                                                                Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Female
## 14695                                                                                                                                                                  Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Male
## 14696                                                                                                                                                                 Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Total
## 14697                                                                                                                                                          Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14698                                                                                                                                                            Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14699                                                                                                                                                           Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14700                                                                                                                                                                     Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Female
## 14701                                                                                                                                                                       Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Male
## 14702                                                                                                                                                                      Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Total
## 14703                                                                                                                                                             Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14704                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14705                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14706                                                                                                                                                             Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14707                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14708                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14709                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Female
## 14710                                                                                                                                                                Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Male
## 14711                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Total
## 14712                                                                                                                                                                Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Female
## 14713                                                                                                                                                                  Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Male
## 14714                                                                                                                                                                 Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Total
## 14715                                                                                                                                                          Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14716                                                                                                                                                            Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14717                                                                                                                                                           Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14718                                                                                                                                                                     Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Female
## 14719                                                                                                                                                                       Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Male
## 14720                                                                                                                                                                      Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Total
## 14721                                                                                                                                                             Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14722                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14723                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14724                                                                                                                                                             Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14725                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14726                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14727                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Female
## 14728                                                                                                                                                                Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Male
## 14729                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Total
## 14730                                                                                                                                                                Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Female
## 14731                                                                                                                                                                  Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Male
## 14732                                                                                                                                                                 Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Total
## 14733                                                                                                                                                          Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14734                                                                                                                                                            Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14735                                                                                                                                                           Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14736                                                                                                                                                                               Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Female
## 14737                                                                                                                                                                                 Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Male
## 14738                                                                                                                                                                                Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Total
## 14739                                                                                                                                                                       Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Female
## 14740                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Male
## 14741                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Total
## 14742                                                                                                                                                                       Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Female
## 14743                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Male
## 14744                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Total
## 14745                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Female
## 14746                                                                                                                                                                          Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Male
## 14747                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Total
## 14748                                                                                                                                                                          Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Female
## 14749                                                                                                                                                                            Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Male
## 14750                                                                                                                                                                           Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Total
## 14751                                                                                                                                                                    Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14752                                                                                                                                                                      Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14753                                                                                                                                                                     Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14754                                                                                                                                                                                                                                Protecting minority investors (DB06-14 methodology) - Score
## 14755                                                                                                                                                                                                                                Protecting minority investors (DB15-20 methodology) - Score
## 14756                                                                                                                                                                                                Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology)
## 14757                                                                                                                                                                                                Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology)
## 14758                                                                                                                                                                                        Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology) - Score
## 14759                                                                                                                                                                                        Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology) - Score
## 14760                                                                                                                                                                                                                           Protecting minority investors: Extent of disclosure index (0-10)
## 14761                                                                                                                                                                                Protecting minority investors: Extent of conflict of interest regulation index (0-10) (DB15-19 methodology)
## 14762                                                                                                                                                                                          Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology)
## 14763                                                                                                                                                                                  Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology) - Score
## 14764                                                                                                                                                                                                           Protecting minority investors: Extent of director liability index (0-10) - Score
## 14765                                                                                                                                                                                                                   Protecting minority investors: Extent of disclosure index (0-10) - Score
## 14766                                                                                                                                                                                           Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology)
## 14767                                                                                                                                                                                   Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology) - Score
## 14768                                                                                                                                                                                         Protecting minority investors: Extent of shareholder governance index (0-10) (DB15-19 methodology)
## 14769                                                                                                                                                                                              Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology)
## 14770                                                                                                                                                                                      Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology) - Score
## 14771                                                                                                                                                                                                                   Protecting minority investors: Extent of director liability index (0-10)
## 14772                                                                                                                                                                                                                 Rank: Protecting minority investors (1=most business-friendly regulations)
## 14773                                                                                                                                                                                          Protecting minority investors: Strength of investor protection index (0-10) (DB06-14 methodology)
## 14774                                                                                                                                                                                 Protecting minority investors: Strength of minority investor protection index (0-50) (DB15-20 methodology)
## 14775                                                                                                                                                                                                                    PDI-1 Country with operational national development strategies (rating)
## 14776                                                                                                                                                                                                                                              PDI-10a Donor missions co-ordinated (percent)
## 14777                                                                                                                                                                                                                                            PDI-10b Country-analysis co-ordinated (percent)
## 14778                                                                                                                                                                                                                PDI-11 Existence of a monitorable performance assessment framework (rating)
## 14779                                                                                                                                                                                                                                PDI-12 Existence of a mutual accountability review (rating)
## 14780                                                                                                                                                                                                                           PDI-2a Country financial management systems reliability (rating)
## 14781                                                                                                                                                                                                                                    PDI-2b Country procurement systems reliability (rating)
## 14782                                                                                                                                                                                                                    PDI-3 Government budget estimates comprehensive and realistic (percent)
## 14783                                                                                                                                                                                                      PDI-4 Technical assistance aligned and co-ordinated with country programmes (percent)
## 14784                                                                                                                                                                                              PDI-5a Aid for government sectors uses country public finanacial management systems (percent)
## 14785                                                                                                                                                                                                               PDI-5b Aid for government sectors uses country procurement systems (percent)
## 14786                                                                                                                                                                                                                 PDI-6 Project implementation units parallel to country structures (number)
## 14787                                                                                                                                                                                                                   PDI-7 Aid disbursements on schedule and recorded by government (percent)
## 14788                                                                                                                                                                                                                                               PDI-8 Bilateral aid that is untied (percent)
## 14789                                                                                                                                                                                                                     PDI-9 Aid provided in the framework of programme-based appproaches (%)
## 14790                                                                                                                                                                                                                            Political Stability and Absence of Violence/Terrorism: Estimate
## 14791                                                                                                                                                                                                                   Political Stability and Absence of Violence/Terrorism: Number of Sources
## 14792                                                                                                                                                                                                                     Political Stability and Absence of Violence/Terrorism: Percentile Rank
## 14793                                                                                                                                                                             Political Stability and Absence of Violence/Terrorism: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14794                                                                                                                                                                             Political Stability and Absence of Violence/Terrorism: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14795                                                                                                                                                                                                                      Political Stability and Absence of Violence/Terrorism: Standard Error
## 14796                                                                                                                                                                                                                                                                   Manufactures value index
## 14797                                                                                                                                                                                                                                     Manufactured exports unit value (MUV) index (% change)
## 14798                                                                                                                                                                                                                                  Real effective exchange rate index (line rec, 2005 = 100)
## 14799                                                                                                                                                                                                                                            Real effective exchange rate index (2010 = 100)
## 14800                                                                                                                                                                                                                                                             26_Portfolio investment assets
## 14801                                                                                                                                                                                                                                                 24_International reserves (excluding gold)
## 14802                                                                                                                                                                                                                                                                 07_Multilateral loans, IMF
## 14803                                                                                                                                                                                                                                                     13_Multilateral loans, IMF, short term
## 14804                                                                                                                                                                                                                                                                          11_SDR allocation
## 14805                                                                                                                                                                                                                                                    14_Debt securities held by nonresidents
## 14806                                                                                                                                                                                                                                 15_Debt securities held by nonresidents, total, short term
## 14807                                                                                                                                                                                                                                                                            25_SDR holdings
## 14808                                                                                                                                                                                                                                                  08_Multilateral loans, other institutions
## 14809                                                                                                                                                                                                                                                               06_Multilateral loans, total
## 14810                                                                                                                                                                                                                                                     04_Official bilateral loans, aid loans
## 14811                                                                                                                                                                                                                                                         05_Official bilateral loans, other
## 14812                                                                                                                                                                                                                                                         03_Official bilateral loans, total
## 14813                                                                                                                                                                                                                                           23_Liabilities to BIS banks, consolidated, total
## 14814                                                                                                                                                                                                                                            12_Liabilities to BIS banks (cons.), short term
## 14815                                                                                                                                                                                                                                             22_Liabilities to BIS banks, locational, total
## 14816                                                                                                                                                                                                                                             01_Cross-border loans from BIS reporting banks
## 14817                                                                                                                                                                                                                                           02_Cross-border loans from BIS banks to nonbanks
## 14818                                                                                                                                                                                                                                               27_Cross-border deposits with BIS rep. banks
## 14819                                                                                                                                                                                                                                             28_Cross-border dep. with BIS banks,  nonbanks
## 14820                                                                                                                                                                                                                                           16_International debt securities, all maturities
## 14821                                                                                                                                                                                                                                                 17_International debt securities, nonbanks
## 14822                                                                                                                                                                                                                                               18_International debt securities, short term
## 14823                                                                                                                                                                                                                                             19_Intnl debt securities, nonbanks, short term
## 14824                                                                                                                                                                                                                                                             21_Paris Club claims (non ODA)
## 14825                                                                                                                                                                                                                                                                 20_Paris Club claims (ODA)
## 14826                                                                                                                                                                                                                                            09_Insured export credit exposures, Berne Union
## 14827                                                                                                                                                                                                                                        10_Insured export credit exposures, short term (BU)
## 14828                                                                                                                                                                                                              Raw info for Legislation Indicator based on PARIS21 indicators on SDG 17.18.2
## 14829                                                                                                                                                                                                                                           Raw info for  PARIS21 indicator on data literacy
## 14830                                                                                                                                                                                                                                                                   Raw info for NSO Website
## 14831                                                                                                                                                                                                    Raw info for Finance Indicator based on PARIS21 indicators on SDG 17.18.3 & SDG 17.19.1
## 14832                                                                                                                                                                                                                                                      Raw info for SDDS/e-GDDS subscription
## 14833                                                                                                                                                                                                                                                  Raw score for ODIN Download Options score
## 14834                                                                                                                                                                                                                                               Raw score for ODIN Machine Readability Score
## 14835                                                                                                                                                                                                                                             Raw score for ODIN Metadata Availability score
## 14836                                                                                                                                                                                                                                       Raw score for ODIN Non Proprietary Data Format score
## 14837                                                                                                                                                                                                                                                Raw score for ODIN Open Data Openness score
## 14838                                                                                                                                                                                                                                                      Raw score for ODIN Terms of Use score
## 14839                                                                                                                                                                                                                                                                 Raw info for NADA metadata
## 14840                                                                                                                                                                                                                                                                         NADA metadata link
## 14841                                                                                                                                                                                                                                                       Years of Population & Housing census
## 14842                                                                                                                                                                                                                                                                Years of Agriculture census
## 14843                                                                                                                                                                                                                                                     Years of Business/establishment census
## 14844                                                                                                                                                                                                                                                   Years of Household Survey on income, etc
## 14845                                                                                                                                                                                                                                                                Years of Agriculture survey
## 14846                                                                                                                                                                                                                                                                Years of Labor Force Survey
## 14847                                                                                                                                                                                                                                                         Years of Health/Demographic survey
## 14848                                                                                                                                                                                                                                                     Years of Business/establishment survey
## 14849                                                                                                                                                                                                                                   Administrative Data for Social Protection Admin (ASPIRE)
## 14850                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14851                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14852                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14853                                                                                                                                                                                                                                                         Administrative Data for CRVS (WDI)
## 14854                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14855                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14856                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14857                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14858                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14859                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14860                                                                                                                                                                                                                                 Raw score for Geospatial data available at 1st Admin Level
## 14861                                                                                                                                                                                                                                 Raw score for Geospatial data available at 2nd Admin Level
## 14862                                                                                                                                                                                                                                            Raw info for System of national accounts in use
## 14863                                                                                                                                                                                                                                                              Raw info for Business process
## 14864                                                                                                                                                                                                                                                   Raw info for National Accounts base year
## 14865                                                                                                                                                                                                                                           Raw info for Classification of national industry
## 14866                                                                                                                                                                                                                                                                 Raw info for CPI base year
## 14867                                                                                                                                                                                                                                       Raw info for Classification of household consumption
## 14868                                                                                                                                                                                                                                        Raw info for Classification of status of employment
## 14869                                                                                                                                                                                                                                          Raw info for Central government accounting status
## 14870                                                                                                                                                                                                                                  Raw info for Compilation of government finance statistics
## 14871                                                                                                                                                                                                                              Raw info for Compilation of monetary and financial statistics
## 14872                                                                                                                                                                                                                                                               Real Effective Exchange Rate
## 14873                                                                                                                                                                                     Outstanding Deposits of Commercial Banks owned by Regional Government (Province Level, in IDR Million)
## 14874                                                                                                                                                                                                        Resolving insolvency: Commencement of proceedings index (0-3) (DB15-20 methodology)
## 14875                                                                                                                                                                                                                                                   Resolving insolvency: Cost (% of estate)
## 14876                                                                                                                                                                                                             Resolving insolvency: Creditor participation index (0-4) (DB15-20 methodology)
## 14877                                                                                                                                                                                                                                         Resolving insolvency (DB04-14 methodology) - Score
## 14878                                                                                                                                                                                                                                                               Resolving insolvency - Score
## 14879                                                                                                                                                                                                                          Resolving insolvency: Recovery rate (cents on the dollar) - Score
## 14880                                                                                                                                                                                                                                                         Resolving insolvency: Time (years)
## 14881                                                                                                                                                                                                      Resolving insolvency: Management of debtor's assets index (0-6) (DB15-20 methodology)
## 14882                                                                                                                                                                                                                 Resolving insolvency: Outcome (0 as piecemeal sale and 1 as going concern)
## 14883                                                                                                                                                                                                                                  Resolving insolvency: Recovery rate (cents on the dollar)
## 14884                                                                                                                                                                                                                Resolving insolvency: Strength of insolvency framework index (0-16) - Score
## 14885                                                                                                                                                                                                                          Rank: Resolving insolvency (1=most business-friendly regulations)
## 14886                                                                                                                                                                                                                               Reorganization proceedings index (0-3) (DB15-20 methodology)
## 14887                                                                                                                                                                                                                        Resolving insolvency: Strength of insolvency framework index (0-16)
## 14888                                                                                                                                                                                                                                                               Retail Sales Volume,Index,,,
## 14889                                                                                                                                                                                                                                                Total Special Allocation Grant/DAK (in IDR)
## 14890                                                                                                                                                                                                                                                Total General Allocation Grant/DAU (in IDR)
## 14891                                                                                                                                                                                                                                    Total Natural Resource Revenue Sharing/DBH SDA (in IDR)
## 14892                                                                                                                                                                                                                                                      Total Own Source Revenue/PAD (in IDR)
## 14893                                                                                                                                                                                                                                                               Total Other Revenue (in IDR)
## 14894                                                                                                                                                                                                                                                                      Total Revenue Sharing
## 14895                                                                                                                                                                                                                                                                     Total Revenue (in IDR)
## 14896                                                                                                                                                                                                                                               Total Tax Revenue Sharing/DBH Pajak (in IDR)
## 14897                                                                                                                                                                                                                                                                      Rule of Law: Estimate
## 14898                                                                                                                                                                                                                                                             Rule of Law: Number of Sources
## 14899                                                                                                                                                                                                                                                               Rule of Law: Percentile Rank
## 14900                                                                                                                                                                                                                       Rule of Law: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14901                                                                                                                                                                                                                       Rule of Law: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14902                                                                                                                                                                                                                                                                Rule of Law: Standard Error
## 14903                                                                                                                                                                                                                         Length of District Road: Asphalt (in km) (BPS Data, Province only)
## 14904                                                                                                                                                                                                                              Length of District Road: Bad Damage (in km) (Bina Marga Data)
## 14905                                                                                                                                                                                                                      Length of District Road: Bad Damage (in km) (BPS Data, Province only)
## 14906                                                                                                                                                                                                                            Length of District Road: Dirt (in km) (BPS Data, Province only)
## 14907                                                                                                                                                                                                                                    Length of District Road: Fair (in km) (Bina Marga Data)
## 14908                                                                                                                                                                                                                            Length of District Road: Fair (in km) (BPS Data, Province only)
## 14909                                                                                                                                                                                                                                    Length of District Road: Good (in km) (Bina Marga Data)
## 14910                                                                                                                                                                                                                            Length of District Road: Good (in km) (BPS Data, Province only)
## 14911                                                                                                                                                                                                                          Length of District Road: Gravel (in km) (BPS Data, Province only)
## 14912                                                                                                                                                                                                                            Length of District Road: Light Damage (in km) (Bina Marga Data)
## 14913                                                                                                                                                                                                                    Length of District Road: Light Damage (in km) (BPS Data, Province only)
## 14914                                                                                                                                                                                                                           Length of District Road: Other (in km) (BPS Data, Province only)
## 14915                                                                                                                                                                                                                         Length of National Road: Asphalt (in km) (BPS Data, Province only)
## 14916                                                                                                                                                                                                                      Length of National Road: Bad Damage (in km) (BPS Data, Province only)
## 14917                                                                                                                                                                                                                            Length of National Road: Dirt (in km) (BPS Data, Province only)
## 14918                                                                                                                                                                                                                            Length of National Road: Fair (in km) (BPS Data, Province only)
## 14919                                                                                                                                                                                                                            Length of National Road: Good (in km) (BPS Data, Province only)
## 14920                                                                                                                                                                                                                          Length of National Road: Gravel (in km) (BPS Data, Province only)
## 14921                                                                                                                                                                                                                    Length of National Road: Light Damage (in km) (BPS Data, Province only)
## 14922                                                                                                                                                                                                                           Length of National Road: Other (in km) (BPS Data, Province only)
## 14923                                                                                                                                                                                                                         Length of Province Road: Asphalt (in km) (BPS Data, Province only)
## 14924                                                                                                                                                                                                                      Length of Province Road: Bad Damage (in km) (BPS Data, Province only)
## 14925                                                                                                                                                                                                                            Length of Province Road: Dirt (in km) (BPS Data, Province only)
## 14926                                                                                                                                                                                                                            Length of Province Road: Fair (in km) (BPS Data, Province only)
## 14927                                                                                                                                                                                                                            Length of Province Road: Good (in km) (BPS Data, Province only)
## 14928                                                                                                                                                                                                                          Length of Province Road: Gravel (in km) (BPS Data, Province only)
## 14929                                                                                                                                                                                                                    Length of Province Road: Light Damage (in km) (BPS Data, Province only)
## 14930                                                                                                                                                                                                                           Length of Province Road: Other (in km) (BPS Data, Province only)
## 14931                                                                                                                                                                                                                                       Villages with road: Asphalt (in % of total villages)
## 14932                                                                                                                                                                                                                                          Villages with road: Dirt (in % of total villages)
## 14933                                                                                                                                                                                                                                        Villages with road: Gravel (in % of total villages)
## 14934                                                                                                                                                                                                                                         Villages with road: Other (in % of total villages)
## 14935                                                                                                                                                                                                                                                               Regulatory Quality: Estimate
## 14936                                                                                                                                                                                                                                                      Regulatory Quality: Number of Sources
## 14937                                                                                                                                                                                                                                                        Regulatory Quality: Percentile Rank
## 14938                                                                                                                                                                                                                Regulatory Quality: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14939                                                                                                                                                                                                                Regulatory Quality: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14940                                                                                                                                                                                                                                                         Regulatory Quality: Standard Error
## 14941                                                                                                                                                                                                                                                         Outstanding loans per 1,000 adults
## 14942                                                                                                                                                                                                                                           Insurance policy holders per 1,000 adults (life)
## 14943                                                                                                                                                                                                                                       Insurance policy holders per 1,000 adults (non-life)
## 14944                                                                                                                                                                                                      SABER: (Education Management Information Systems) Policy Goal 1: Enabling Environment
## 14945                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 1 Lever 1: Legal Framework
## 14946                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 1 Lever 2: Organizational Structure
## 14947                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 1 Lever 3: Human Resources
## 14948                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 1 Lever 4: Infrastructural capacity
## 14949                                                                                                                                                                                                            SABER: (Education Management Information Systems) Policy Goal 1 Lever 5: Budget
## 14950                                                                                                                                                                                               SABER: (Education Management Information Systems) Policy Goal 1 Lever 6: Data-driven Culture
## 14951                                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 2: System Soundness
## 14952                                                                                                                                                                                                 SABER: (Education Management Information Systems) Policy Goal 2 Lever 1: Data Architecture
## 14953                                                                                                                                                                                                     SABER: (Education Management Information Systems) Policy Goal 2 Lever 2: Data Coverage
## 14954                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 3: Data Analytics
## 14955                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 4: Dynamic System
## 14956                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 5: Serviceability
## 14957                                                                                                                                                                                                              SABER: (Education Management Information Systems) Policy Goal 3: Quality data
## 14958                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 3 Lever 1: Methodological Soundness
## 14959                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 3 Lever 2: Accuracy and Reliability
## 14960                                                                                                                                                                                                         SABER: (Education Management Information Systems) Policy Goal 3 Lever 3: Integrity
## 14961                                                                                                                                                                                        SABER: (Education Management Information Systems) Policy Goal 3 Lever 4: Periodicity and Timeliness
## 14962                                                                                                                                                                                            SABER: (Education Management Information Systems) Policy Goal 4: Utilization in decision making
## 14963                                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 4 Lever 1: Openness
## 14964                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 4 Lever 2: Operational Use
## 14965                                                                                                                                                                                                     SABER: (Education Management Information Systems) Policy Goal 4 Lever 3: Accessibility
## 14966                                                                                                                                                                           SABER: (Education Management Information Systems) Policy Goal 4 Lever 4: Effectiveness in Disseminating Findings
## 14967                                                                                                                                                                                                   SABER: (Early Childhood Development) Policy Goal 1: Establishing an Enabling Environment
## 14968                                                                                                                                                                                                                SABER: (Early Childhood Development) Policy Goal 1 Lever 1: Legal Framework
## 14969                                                                                                                                                                                                    SABER: (Early Childhood Development) Policy Goal 1 Lever 2: Inter-sectoral Coordination
## 14970                                                                                                                                                                                                                        SABER: (Early Childhood Development) Policy Goal 1 Lever 3: Finance
## 14971                                                                                                                                                                                                                    SABER: (Early Childhood Development) Policy Goal 2: Implementing Widely
## 14972                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 2 Lever 1: Scope of Programs
## 14973                                                                                                                                                                                                                       SABER: (Early Childhood Development) Policy Goal 2 Lever 2: Coverage
## 14974                                                                                                                                                                                                                         SABER: (Early Childhood Development) Policy Goal 2 Lever 3: Equity
## 14975                                                                                                                                                                                                        SABER: (Early Childhood Development) Policy Goal 3: Monitoring and Assuring Quality
## 14976                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 3 Lever 1: Data Availability
## 14977                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 3 Lever 2: Quality Standards
## 14978                                                                                                                                                                                                      SABER: (Early Childhood Development) Policy Goal 3 Lever 3: Compliance with Standards
## 14979                                                                                                                                                                                 SABER: (Engaging the Private Sector, Government funded) Policy Goal 5: Encouraging innovation by providers
## 14980                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 1: Teacher standards
## 14981                                                                                                                                                                      SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 2: Appointment and deployment of teachers
## 14982                                                                                                                                                                                            SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 3: Teacher salaries
## 14983                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 4: Teacher dismissal
## 14984                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 5: Curriculum delivery
## 14985                                                                                                                                                                                        SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 6: Classroom resourcing
## 14986                                                                                                                                                                                             SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 7: Budget autonomy
## 14987                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 6: Holding schools accountable
## 14988                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 1: Student standards
## 14989                                                                                                                                                                                          SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 2: Student assessment
## 14990                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 3: Financial reporting
## 14991                                                                                                                                                                                                  SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 4: Inspection
## 14992                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 5: Improvement planning 
## 14993                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 6: Sanctions and rewards
## 14994                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 7: Empowering all parents, students, and communities
## 14995                                                                                                                                                                                                 SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 1: Information
## 14996                                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 2: Voice
## 14997                                                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 3: Selection
## 14998                                                                                                                                                                                               SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 4: Contributions
## 14999                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 8: Promoting diversity of supply
## 15000                                                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 1: Ownership
## 15001                                                                                                                                                                                     SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 2: Certification standards
## 15002                                                                                                                                                                                    SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 3: Market entry information
## 15003                                                                                                                                                                                             SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 4: Regulatory fees
## 15004                                                                                                                                                                                                     SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 5: Funding
## 15005                                                                                                                                                                                                  SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 6: Incentives
## 15006                                                                                                                                                                                                    SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 7: Planning
## 15007                                                                                                                                                                                                         SABER: (School Health and School Feeding) Feeding Policy Goal 1: Policy Frameworks
## 15008                                                                                                                                                                                                        SABER: (School Health and School Feeding) Feeding Policy Goal 2: Financial Capacity
## 15009                                                                                                                                                                                   SABER: (School Health and School Feeding) Feeding Policy Goal 3: Institutional Capacity and Coordination
## 15010                                                                                                                                                                                                 SABER: (School Health and School Feeding) Feeding Policy Goal 4: Design and Implementation
## 15011                                                                                                                                                                                   SABER: (School Health and School Feeding) Feeding Policy Goal 5: Community Roles–Reaching Beyond Schools
## 15012                                                                                                                                                                                             SABER: (School Health and School Feeding) Health Policy Goal 1: Health-related school policies
## 15013                                                                                                                                                                                       SABER: (School Health and School Feeding) Health Policy Goal 2: Safe, Supportive School Environments
## 15014                                                                                                                                                                                 SABER: (School Health and School Feeding) Health Policy Goal 3: School-Based Health and Nutrition Services
## 15015                                                                                                                                                                                              SABER: (School Health and School Feeding) Health Policy Goal 4: Skills-Based Health Education
## 15016                                                                                                                                                                                                    SABER: (Engaging the Private Sector) Policy Goal 1: Encouraging innovation by providers
## 15017                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 1 Lever 1: Teacher standards
## 15018                                                                                                                                                                                             SABER: (Engaging the Private Sector) Policy Goal 1 Lever 2: Teacher appointment and deployment
## 15019                                                                                                                                                                                                               SABER: (Engaging the Private Sector) Policy Goal 1 Lever 3: Teacher salaries
## 15020                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 1 Lever 4: Teacher dismissal
## 15021                                                                                                                                                                                                            SABER: (Engaging the Private Sector) Policy Goal 1 Lever 5: Curriculum Delivery
## 15022                                                                                                                                                                                                           SABER: (Engaging the Private Sector) Policy Goal 1 Lever 6: Classroom resourcing
## 15023                                                                                                                                                                                                            SABER: (Engaging the Private Sector) Policy Goal 2: Holding schools accountable
## 15024                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 2 Lever 1: Student standards
## 15025                                                                                                                                                                                                             SABER: (Engaging the Private Sector) Policy Goal 2 Lever 2: Student assessment
## 15026                                                                                                                                                                                                                     SABER: (Engaging the Private Sector) Policy Goal 2 Lever 3: Inspection
## 15027                                                                                                                                                                                                           SABER: (Engaging the Private Sector) Policy Goal 2 Lever 4: Improvement planning
## 15028                                                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 2 Lever 5: Sanctions
## 15029                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 3: Empowering all parents, students, and communities
## 15030                                                                                                                                                                                                                    SABER: (Engaging the Private Sector) Policy Goal 3 Lever 1: Information
## 15031                                                                                                                                                                                                                          SABER: (Engaging the Private Sector) Policy Goal 3 Lever 2: Voice
## 15032                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 3 Lever 3: Financial Support
## 15033                                                                                                                                                                                                          SABER: (Engaging the Private Sector) Policy Goal 4: Promoting diversity of supply
## 15034                                                                                                                                                                                                                   SABER: (Engaging the Private Sector) Policy Goal 4 Lever 1: Tuition fees
## 15035                                                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 4 Lever 2: Ownership
## 15036                                                                                                                                                                                                        SABER: (Engaging the Private Sector) Policy Goal 4 Lever 3: Certification standards
## 15037                                                                                                                                                                                                                   SABER: (Engaging the Private Sector) Policy Goal 4 Lever 4: Market entry
## 15038                                                                                                                                                                                                                SABER: (Engaging the Private Sector) Policy Goal 4 Lever 5: Regulatory fees
## 15039                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 1: Level of autonomy in the planning and management of school budget
## 15040                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 1 Lever 1: Legal authority over the management of the operational budget
## 15041                                                                                                                                                      SABER: (School Autonomy Accountability) Policy Goal 1 Lever 2: Legal authority over the management of the non-teaching staff salaries
## 15042                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 1 Lever 3: Legal authority over the management of teacher salaries
## 15043                                                                                                                                                                    SABER: (School Autonomy Accountability) Policy Goal 1 Lever 4: Legal authority to raise additional funds for the school
## 15044                                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 1 Lever 5: Collaborative budget planning
## 15045                                                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 2: Level of autonomy in personnel management
## 15046                                                                                                                                                                    SABER: (School Autonomy Accountability) Policy Goal 2 Lever 1: Autonomy in teacher appointment and deployment decisions
## 15047                                                                                                                                                         SABER: (School Autonomy Accountability) Policy Goal 2 Lever 2: Autonomy in non-teaching staff appointment and deployment decisions
## 15048                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 2 Lever 3: Autonomy in school principal appointment and deployment decisions
## 15049                                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3: Role of the school council on school governance
## 15050                                                                                                                                                                  SABER: (School Autonomy Accountability) Policy Goal 3 Lever 1: Participation of the school councils in budget preparation
## 15051                                                                                                                                                                 SABER: (School Autonomy Accountability) Policy Goal 3 Lever 2: Participation of the school councils in financial oversight
## 15052                                                                                                                                                                SABER: (School Autonomy Accountability) Policy Goal 3 Lever 3: Participation of the school councils in personnel management
## 15053                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 3 Lever 4: Participation of the school councils in school activities
## 15054                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3 Lever 5: Participation of the school councils in learning inputs
## 15055                                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3 Lever 6: Transparency in community participation
## 15056                                                                                                                                                                                                       SABER: (School Autonomy Accountability) Policy Goal 4: School and student assessment
## 15057                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 4 Lever 1: Existence and Frequency of school assessments
## 15058                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 4 Lever 2: Use of school assessments for making school adjustments
## 15059                                                                                                                                                                 SABER: (School Autonomy Accountability) Policy Goal 4 Lever 3: Existence and Frequency of standardized student assessments
## 15060                                                                                                                             SABER: (School Autonomy Accountability) Policy Goal 4 Lever 4: Use of standardized student assessments for pedagogical, operational, and personnel adjustments
## 15061                                                                                                                                                                                          SABER: (School Autonomy Accountability) Policy Goal 4 Lever 5: Publication of student assessments
## 15062                                                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 5: School Accountability
## 15063                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 5 Lever 1:  Guidelines for the use of results of student assessments
## 15064                                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 5 Lever 2:  Analysis of school and student performan
## 15065                                                                                                                       SABER: (School Autonomy Accountability) Policy Goal 5 Lever 3:  Degree of Financial accountability at the central level, regional, municipal, local and school level
## 15066                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 5 Lever 4: Degree of Accountability in school operations
## 15067                                                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 5 Lever 5: Degree of learning accountability
## 15068                                                                                                                                                                                                                                   SABER: (School Finance) Policy Goal 1: Ensuring adequacy
## 15069                                                                                                                                                           SABER: (School Finance) Policy Goal 1 Lever 1:  Are ther policies and systems set up to provide basic educational inputs to all?
## 15070                                                                                                                                                                         SABER: (School Finance) Policy Goal 1 Lever 2: Are there basic educational inputs for all primary school students?
## 15071                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 2: Monitoring learning conditions and outcomes
## 15072                                                                                                                                                      SABER: (School Finance) Policy Goal 2 Lever 1: Does the government provide more resources to students from disadvantaged backgrounds?
## 15073                                                                                                                                                       SABER: (School Finance) Policy Goal 2 Lever 2: Do payments for schooling represent a high share of income for low income households?
## 15074                                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 3: Overseeing service delivery
## 15075                                                                                                                                                        SABER: (School Finance) Policy Goal 3 Lever 1: Are resources allocated and disbursed in a manner that is transparent and effective?
## 15076                                                                                                                                                        SABER: (School Finance) Policy Goal 3 Lever 2: Do monitoring and auditing processes encourage accountability in the use of funding?
## 15077                                                                                                                                                                                                 SABER: (School Finance) Policy Goal 4: Budgeting with adequate and transparent information
## 15078                                                                                                                                                                                                        SABER: (School Finance) Policy Goal 4 Lever 1: Is there an informed budget process?
## 15079                                                                                                                                                                                                SABER: (School Finance) Policy Goal 4 Lever 2: Is the budget comprehensive and transparent?
## 15080                                                                                                                                                                                                  SABER: (School Finance) Policy Goal 5: Providing more resources to students who need them
## 15081                                                                                                                                                             SABER: (School Finance) Policy Goal 5 Lever 1: Are more public resources available to students from disadvantaged backgrounds?
## 15082                                                                                                                                                        SABER: (School Finance) Policy Goal 5 Lever 2: Do payments for schooling represent a small share of income for low income families?
## 15083                                                                                                                                                                                                                      SABER: (School Finance) Policy Goal 6: Managing resources efficiently
## 15084                                                                                                                                                                      SABER: (School Finance) Policy Goal 6 Lever 1: Are there systems in place to verify the use of educational resources?
## 15085                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 6 Lever 2: Are education expenditures audited?
## 15086                                                                                                                                                                                                                            SABER: (Student Assessment) Policy Goal 1: Classroom Assessment
## 15087                                                                                                                                                                                                   SABER: (Student Assessment) Policy Goal 1 Lever 1: Enabling Context and System Alignment
## 15088                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 1 Lever 2: Assessment Quality
## 15089                                                                                                                                                                                                                                    SABER: (Student Assessment) Policy Goal 2: Examinations
## 15090                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 2 Lever 1: Enabling Context
## 15091                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 2 Lever 2: System Alignment
## 15092                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 2 Lever 3: Assessment Quality
## 15093                                                                                                                                                                                                          SABER: (Student Assessment) Policy Goal 3: National Large-Scale Assessment (NLSA)
## 15094                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 3 Lever 1: Enabling Context
## 15095                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 3 Lever 2: System Alignment
## 15096                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 3 Lever 3: Assessment Quality
## 15097                                                                                                                                                                                                     SABER: (Student Assessment) Policy Goal 4: International Large-Scale Assessment (ILSA)
## 15098                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 4 Lever 1: Enabling Context
## 15099                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 4 Lever 2: System Alignment
## 15100                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 4 Lever 3: Assessment Quality
## 15101                                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 1: Setting clear expectations for teachers
## 15102                                                                                                                                                                                                        SABER: (Teachers) Policy Goal 1 Lever 1: Are there clear expectations for teachers?
## 15103                                                                                                                                                                                    SABER: (Teachers) Policy Goal 1 Lever 2: Is there useful guidance on the use of teachers' working time?
## 15104                                                                                                                                                                                                                         SABER: (Teachers) Policy Goal 2: Attracting the best into teaching
## 15105                                                                                                                                                                                     SABER: (Teachers) Policy Goal 2 Lever 1: Are entry requirements set up to attract talented candidates?
## 15106                                                                                                                                                                                                 SABER: (Teachers) Policy Goal 2 Lever 2: Is teacher pay appealing for talented candidates?
## 15107                                                                                                                                                                                         SABER: (Teachers) Policy Goal 2 Lever 3: Are working conditions appealing for talented applicants?
## 15108                                                                                                                                                                                                        SABER: (Teachers) Policy Goal 2 Lever 4: Are there attractive career opportunities?
## 15109                                                                                                                                                                                                    SABER: (Teachers) Policy Goal 3: Preparing teachers with useful Training and experience
## 15110                                                                                                                                                                          SABER: (Teachers) Policy Goal 3 Lever 1: Are there minimum standards for pre-service teaching education programs?
## 15111                                                                                                                                                              SABER: (Teachers) Policy Goal 3 Lever 2: To what extent are teacher-entrants required to be familiar with classroom practice?
## 15112                                                                                                                                                                                                            SABER: (Teachers) Policy Goal 4: Matching teachers' skills with students' needs
## 15113                                                                                                                                                                               SABER: (Teachers) Policy Goal 4 Lever 1: Are there incentives for teachers to work at hard-to-staff schools?
## 15114                                                                                                                                                                            SABER: (Teachers) Policy Goal 4 Lever 2: Are there incentives for teachers to teach critical shortage subjects?
## 15115                                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 5: Leading teachers with strong principals
## 15116                                                                                                                                                                          SABER: (Teachers) Policy Goal 5 Lever 1: Does the education system invest in developing qualified school leaders?
## 15117                                                                                                                                                                            SABER: (Teachers) Policy Goal 5 Lever 2: Are principals expected to support and improve instructional practice?
## 15118                                                                                                                                                                                                                          SABER: (Teachers) Policy Goal 6: Monitoring teaching and learning
## 15119                                                                                                                                                     SABER: (Teachers) Policy Goal 6 Lever 1: Are there systems in place to assess student learning in order to inform teaching and policy?
## 15120                                                                                                                                                                                        SABER: (Teachers) Policy Goal 6 Lever 2: Are there systems in place to monitor teacher performance?
## 15121                                                                                                                                                                                    SABER: (Teachers) Policy Goal 6 Lever 3: Are there multiple mechanisms to evaluate teacher performance?
## 15122                                                                                                                                                                                                                SABER: (Teachers) Policy Goal 7: Supporting teachers to improve instruction
## 15123                                                                                                                                                                                             SABER: (Teachers) Policy Goal 7 Lever 1: Are there opportunities for professional development?
## 15124                                                                                                                                                       SABER: (Teachers) Policy Goal 7 Lever 2: Is teacher professional development collaborative and focused on instructional improvement?
## 15125                                                                                                                                                                            SABER: (Teachers) Policy Goal 7 Lever 3: Is teacher professional development assigned based on perceived needs?
## 15126                                                                                                                                                                                                                            SABER: (Teachers) Policy Goal 8: Motivating teachers to perform
## 15127                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 8 Lever 1: Are career opportunities linked to performance?
## 15128                                                                                                                                                                                                SABER: (Teachers) Policy Goal 8 Lever 2: Are there mechanisms to hold teachers accountable?
## 15129                                                                                                                                                                                                    SABER: (Teachers) Policy Goal 8 Lever 3: Is teacher compensation linked to performance?
## 15130                                                                                                                                                                                                                   SABER: (Tertiary Education) Policy Goal 1: Vision for Tertiary Education
## 15131                                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 1 Lever 1: Clear vision
## 15132                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 2: Regulatory Framework for Tertiary Education
## 15133                                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 2 Lever 1: Steering the system
## 15134                                                                                                                                                                                                                                      SABER: (Tertiary Education) Policy Goal 3: Governance
## 15135                                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 3 Lever 1: Articulation
## 15136                                                                                                                                                                                                                  SABER: (Tertiary Education) Policy Goal 3 Lever 2: Institutional autonomy
## 15137                                                                                                                                                                                                                                         SABER: (Tertiary Education) Policy Goal 4: Finance
## 15138                                                                                                                                                                                                         SABER: (Tertiary Education) Policy Goal 4 Lever 1: Coverage of resource allocation
## 15139                                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 4 Lever 2: Resource allocation
## 15140                                                                                                                                                                                                           SABER: (Tertiary Education) Policy Goal 4 Lever 3: Resource utilization (Equity)
## 15141                                                                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 5: Quality Assurance
## 15142                                                                                                                                                                                       SABER: (Tertiary Education) Policy Goal 5 Lever 1: Accreditation and Institutional Quality Standards
## 15143                                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 5 Lever 2: Tertiary Education Management Information
## 15144                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 6: The Relevance of Tertiary Education for Economic and Social Needs
## 15145                                                                                                                                                                                                                    SABER: (Tertiary Education) Policy Goal 6 Lever 1: Economic Development
## 15146                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 6 Lever 2: Fostering RDI and Innovation
## 15147                                                                                                                                               SABER: (Tertiary Education) Policy Goal 6 Lever 3: Fostering Social and Cultural Development and Environmental Protection and Sustainability
## 15148                                                                                                                                                                                                                          SABER: (Workforce Development) Policy Goal 1: Strategic Framework
## 15149                                                                                                                                                                                                        SABER: (Workforce Development) Policy Goal 1 Lever 1: Setting a Strategic Direction
## 15150                                                                                                                                                                                                   SABER: (Workforce Development) Policy Goal 1 Lever 2: Fostering a Demand-Driven Approach
## 15151                                                                                                                                                                                                  SABER: (Workforce Development) Policy Goal 1 Lever 3: Strengthening Critical Coordination
## 15152                                                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 2: System Oversight
## 15153                                                                                                                                                                                            SABER: (Workforce Development) Policy Goal 2 Lever 1: Ensuring Efficiency and Equity in Funding
## 15154                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 2 Lever 2: Assuring Relevant and Reliable Standards
## 15155                                                                                                                                                                                         SABER: (Workforce Development) Policy Goal 2 Lever 3: Diversifying Pathways for Skills Acquisition
## 15156                                                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 3: Service Delivery
## 15157                                                                                                                                                                              SABER: (Workforce Development) Policy Goal 3 Lever 1: Enabling Diversity and Excellence in Training Provision
## 15158                                                                                                                                                                                      SABER: (Workforce Development) Policy Goal 3 Lever 2: Fostering Relevance in Public Training Programs
## 15159                                                                                                                                                                                  SABER: (Workforce Development) Policy Goal 3 Lever 3: Enhancing Evidence-based Accountability for Results
## 15160                                                                                                                                                                                                                                    Illiteracy rate, youth female (% of females ages 15-24)
## 15161                                                                                                                                                                                                                                        Illiteracy rate, youth male (% of males ages 15-24)
## 15162                                                                                                                                                                                                                                      Illiteracy rate, youth total (% of people ages 15-24)
## 15163                                                                                                                                                                                                                                      Literacy rate, youth female (% of females ages 15-24)
## 15164                                                                                                                                                                                                                               Literacy rate, youth (ages 15-24), gender parity index (GPI)
## 15165                                                                                                                                                                                                                                          Literacy rate, youth male (% of males ages 15-24)
## 15166                                                                                                                                                                                                                                        Literacy rate, youth total (% of people ages 15-24)
## 15167                                                                                                                                                                                                                             Illiteracy rate, adult female (% of females ages 15 and above)
## 15168                                                                                                                                                                                                                                 Illiteracy rate, adult male (% of males ages 15 and above)
## 15169                                                                                                                                                                                                                               Illiteracy rate, adult total (% of people ages 15 and above)
## 15170                                                                                                                                                                                                                               Literacy rate, adult female (% of females ages 15 and above)
## 15171                                                                                                                                                                                                                                   Literacy rate, adult male (% of males ages 15 and above)
## 15172                                                                                                                                                                                                                                 Literacy rate, adult total (% of people ages 15 and above)
## 15173                                                                                                                                                                                                                                                     Compulsory education, duration (years)
## 15174                                                                                                                                                                                                       Ratio of school attendance of orphans to school attendance of non-orphans ages 10-14
## 15175                                                                                                                                                                                                                              School enrollment, primary (gross), gender parity index (GPI)
## 15176                                                                                                                                                                                                                                                   School Enroll. Ratio, primary school (%)
## 15177                                                                                                                                                                                                                School enrollment, primary and secondary (gross), gender parity index (GPI)
## 15178                                                                                                                                                                                                                            School enrollment, secondary (gross), gender parity index (GPI)
## 15179                                                                                                                                                                                                                                                 School Enroll. Ratio, secondary school (%)
## 15180                                                                                                                                                                                                                             School enrollment, tertiary (gross), gender parity index (GPI)
## 15181                                                                                                                                                                                                                                                                      Learning Poverty Rate
## 15182                                                                                                                                                              (De Facto) Percent of 10 year old children who are out-of-school or in-school and not achieving basic proficiency on reading.
## 15183                                                                                                                                                                                                                                                              Proficiency by End of Primary
## 15184                                                                                                                                                                                   (De Facto) Percent of children proficient in literacy and numeracy by end of primary, as reported by UIS
## 15185                                                                                                                                                                                                                                              Net Enrollment Ratio: Junior Secondary (in %)
## 15186                                                                                                                                                                                                                    Literacy Rate for Population age 15 and over (in % of total population)
## 15187                                                                                                                                                     Learning poverty: Share of Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15188                                                                                                                                                                                                         Pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15189                                                                                                                                                                                                  Female pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15190                                                                                                                                                                                                    Male pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15191                                                                                                                                              Learning poverty: Share of Female Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15192                                                                                                                                                Learning poverty: Share of Male Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15193                                                                                                                                                                                                                                              Primary school age children out-of-school (%)
## 15194                                                                                                                                                                                                                                       Female primary school age children out-of-school (%)
## 15195                                                                                                                                                                                                                                         Male primary school age children out-of-school (%)
## 15196                                                                                                                                                                                         Average National Exam Score: Junior Secondary Level (out of 100, available only at district level)
## 15197                                                                                                                                                                                                  Average National Exam Score: Primary Level (out of 100, available only at district level)
## 15198                                                                                                                                                                                         Average National Exam Score: Senior Secondary Level (out of 100, available only at district level)
## 15199                                                                                                                                                                                                                                                     Preprimary education, duration (years)
## 15200                                                                                                                                                                                                                                    Enrolment in pre-primary education, both sexes (number)
## 15201                                                                                                                                                                                                                                        Enrolment in pre-primary education, female (number)
## 15202                                                                                                                                                                                                                                                            Pupil-teacher ratio, preprimary
## 15203                                                                                                                                                                                                                                                    School enrollment, preprimary (% gross)
## 15204                                                                                                                                                                                                                                            School enrollment, preprimary, female (% gross)
## 15205                                                                                                                                                                                                                                              School enrollment, preprimary, male (% gross)
## 15206                                                                                                                                                                                                               Percentage of enrolment in pre-primary education in private institutions (%)
## 15207                                                                                                                                                                                                                    Trained teachers in preprimary education, female (% of female teachers)
## 15208                                                                                                                                                                                                                        Trained teachers in preprimary education, male (% of male teachers)
## 15209                                                                                                                                                                                                                             Trained teachers in preprimary education (% of total teachers)
## 15210                                                                                                                                                                                                                                     Teachers in pre-primary education, both sexes (number)
## 15211                                                                                                                                                                                                                                         Teachers in pre-primary education, female (number)
## 15212                                                                                                                                                                                                                         Percentage of teachers in pre-primary education who are female (%)
## 15213                                                                                                                                                                                                                                     Age efficiency, primary (net enrollment as % of gross)
## 15214                                                                                                                                                                                                                                                        Primary school starting age (years)
## 15215                                                                                                                                                                                                                                                                         Student Attendance
## 15216                                                                                                                                                                                                               (De Facto) Percent of 4th grade students present during an unannounced visit
## 15217                                                                                                                                                                                                      (De Facto) Percent of 4th grade students present during an unannounced visit - Female
## 15218                                                                                                                                                                                                        (De Facto) Percent of 4th grade students present during an unannounced visit - Male
## 15219                                                                                                                                                                                                       (De Facto) Percent of 4th grade students present during an unannounced visit - Rural
## 15220                                                                                                                                                                                                       (De Facto) Percent of 4th grade students present during an unannounced visit - Urban
## 15221                                                                                                                                                                                                                                                                                  Financing
## 15222                                                                                                                                           Financing score; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness in terms of adequacy, efficiency, and equity.
## 15223                                                                                                                                                                                                                                 (Financing) - Adequacy expressed by the per child spending
## 15224                                                                                                 (Financing) Efficiency - Expressed by the score from the Public Expenditure and Financial Accountability (PEFA) assessment; where 0 is the lowest possible efficiency and 1 is the highest
## 15225                                                                                                                                      (Financing) Efficiency - Expressed by the relationship between financing and outcomes; where 0 is the lowest possible efficiency and 1 is the highest
## 15226                                                                                                                                                                                                                                                                       (Financing) - Equity
## 15227                                                                                                                                                                                                                                                                  Impartial Decision-Making
## 15228                                                                                                                                                             Average score for Impartial Decision-Making; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15229                                                                                                                                                                                                             (Impartial Decision-Making) average score for politicized personnel management
## 15230                                                                                                                                                                                                                    (Impartial Decision-Making) average score for politicized policy-making
## 15231                                                                                                                                                                                                            (Impartial Decision-Making) average score for politicized policy implementation
## 15232                                                                                                                                                                                                              (Impartial Decision-Making) average score for employee unions as facilitators
## 15233                                                                                                                                                                                                                                                                  Mandates & Accountability
## 15234                                                                                                                                                             Average score for Mandates & Accountability; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15235                                                                                                                                                                                                                                    (Mandates & Accountability) Average score for coherence
## 15236                                                                                                                                                                                                                                 (Mandates & Accountability) Average score for transparency
## 15237                                                                                                                                                                                                           (Mandates & Accountability) Average score for accountability of public officials
## 15238                                                                                                                                                                                                                                                                    National Learning Goals
## 15239                                                                                                                                                               Average score for National Learning Goals; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15240                                                                                                                                                                                                                                      (National Learning Goals) Average score for targeting
## 15241                                                                                                                                                                                                                                     (National Learning Goals) Average score for monitoring
## 15242                                                                                                                                                                                                                                     (National Learning Goals) Average score for incentives
## 15243                                                                                                                                                                                                                           (National Learning Goals) Average score for community engagement
## 15244                                                                                                                                                                                                                                                             Characteristics of Bureaucracy
## 15245                                                                                                                                                        Average score for Characteristics of Bureaucracy; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15246                                                                                                                                                                                                                    (Characteristics of Bureaucracy) average score for knowledge and skills
## 15247                                                                                                                                                                                                                        (Characteristics of Bureaucracy) average score for work environment
## 15248                                                                                                                                                                                                                                   (Characteristics of Bureaucracy) average score for merit
## 15249                                                                                                                                                                                                                (Characteristics of Bureaucracy) average score for motivation and attitudes
## 15250                                                                                                                                                                                                                                                Gross graduation ratio, primary, female (%)
## 15251                                                                                                                                                                                                                                                  Gross graduation ratio, primary, male (%)
## 15252                                                                                                                                                                                                                                                 Gross graduation ratio, primary, total (%)
## 15253                                                                                                                                                                                                                        Primary completion rate, female (% of relevant age group, DHS/MICS)
## 15254                                                                                                                                                                                                                          Primary completion rate, male (% of relevant age group, DHS/MICS)
## 15255                                                                                                                                                                                                              Primary completion rate, poorest quintile (% of relevant age group, DHS/MICS)
## 15256                                                                                                                                                                                                              Primary completion rate, richest quintile (% of relevant age group, DHS/MICS)
## 15257                                                                                                                                                                                                                         Primary completion rate, rural (% of relevant age group, DHS/MICS)
## 15258                                                                                                                                                                                                                         Primary completion rate, urban (% of relevant age group, DHS/MICS)
## 15259                                                                                                                                                                                                                                  Primary completion rate, female (% of relevant age group)
## 15260                                                                                                                                                                                                                                    Primary completion rate, male (% of relevant age group)
## 15261                                                                                                                                                                                                                                   Primary completion rate, total (% of relevant age group)
## 15262                                                                                                                                                                                                                                                                          Content Knowledge
## 15263                                                                                                                                                                                                                       (De Facto) Percent of teachers proficient in the subjects they teach
## 15264                                                                                                                                                                                                              (De Facto) Percent of teachers proficient in the subjects they teach - Female
## 15265                                                                                                                                                                                                                (De Facto) Percent of teachers proficient in the subjects they teach - Male
## 15266                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subjects they teach - Rural
## 15267                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subjects they teach - Urban
## 15268                                                                                                                                                                                                                       (De Facto) Percent of teachers proficient in the subject of language
## 15269                                                                                                                                                                                                              (De Facto) Percent of teachers proficient in the subject of language - Female
## 15270                                                                                                                                                                                                                (De Facto) Percent of teachers proficient in the subject of language - Male
## 15271                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subject of language - Rural
## 15272                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subject of language - Urban
## 15273                                                                                                                                                                                                                    (De Facto) Percent of teachers proficient in the subject of mathematics
## 15274                                                                                                                                                                                                           (De Facto) Percent of teachers proficient in the subject of mathematics - Female
## 15275                                                                                                                                                                                                             (De Facto) Percent of teachers proficient in the subject of mathematics - Male
## 15276                                                                                                                                                                                                            (De Facto) Percent of teachers proficient in the subject of mathematics - Rural
## 15277                                                                                                                                                                                                            (De Facto) Percent of teachers proficient in the subject of mathematics - Urban
## 15278                                                                                                                                                                                          Educational attainment, at least completed primary, population 25+ years, female (%) (cumulative)
## 15279                                                                                                                                                                                            Educational attainment, at least completed primary, population 25+ years, male (%) (cumulative)
## 15280                                                                                                                                                                                           Educational attainment, at least completed primary, population 25+ years, total (%) (cumulative)
## 15281                                                                                                                                                                                                                                                        Primary education, duration (years)
## 15282                                                                                                                                                                                                                                                                           Teacher Presence
## 15283                                                                                                                                                              (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit
## 15284                                                                                                                                                     (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Female
## 15285                                                                                                                                                       (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Male
## 15286                                                                                                                                                      (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Rural
## 15287                                                                                                                                                      (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Urban
## 15288                                                                                                                                                                                                          (De Facto) Percent of teachers present in their schools during an announced visit
## 15289                                                                                                                                                                                                 (De Facto) Percent of teachers present in their schools during an announced visit - Female
## 15290                                                                                                                                                                                                   (De Facto) Percent of teachers present in their schools during an announced visit - Male
## 15291                                                                                                                                                                                                  (De Facto) Percent of teachers present in their schools during an announced visit - Rural
## 15292                                                                                                                                                                                                  (De Facto) Percent of teachers present in their schools during an announced visit - Urban
## 15293                                                                                                                                                                                                                                                        Primary Schl. Enroll. Ratio, Female
## 15294                                                                                                                                                                                                                                                                  Primary education, pupils
## 15295                                                                                                                                                                                                                                            Enrolment in primary education, female (number)
## 15296                                                                                                                                                                                                                                                       Primary education, pupils (% female)
## 15297                                                                                                                                                                                                                                                               Pupil-teacher ratio, primary
## 15298                                                                                                                                                                                                                                                       School enrollment, primary (% gross)
## 15299                                                                                                                                                                                                                                               School enrollment, primary, female (% gross)
## 15300                                                                                                                                                                                                                                                 School enrollment, primary, male (% gross)
## 15301                                                                                                                                                                                                                                                          School Enroll. Ratio, primary (%)
## 15302                                                                                                                                                                                                   Gross intake ratio in first grade of primary education, female (% of relevant age group)
## 15303                                                                                                                                                                                                     Gross intake ratio in first grade of primary education, male (% of relevant age group)
## 15304                                                                                                                                                                                                    Gross intake ratio in first grade of primary education, total (% of relevant age group)
## 15305                                                                                                                                                                                                                                                                   Instructional Leadership
## 15306                                                                                                                                                                                                          (De Facto) Average score for the presence and quality of instructional leadership
## 15307                                                                                                                                                                                                 (De Facto) Average score for the presence and quality of instructional leadership - Female
## 15308                                                                                                                                                                                                   (De Facto) Average score for the presence and quality of instructional leadership - Male
## 15309                                                                                                                                                                                                  (De Facto) Average score for the presence and quality of instructional leadership - Rural
## 15310                                                                                                                                                                                                  (De Facto) Average score for the presence and quality of instructional leadership - Urban
## 15311                                                                                                                                                                                                                   (De Facto) Percent of teachers reporting having had their class observed
## 15312                                                                                                                                                                                                          (De Facto) Percent of teachers reporting having had their class observed - Female
## 15313                                                                                                                                                                                                            (De Facto) Percent of teachers reporting having had their class observed - Male
## 15314                                                                                                                                                                                                           (De Facto) Percent of teachers reporting having had their class observed - Rural
## 15315                                                                                                                                                                                                           (De Facto) Percent of teachers reporting having had their class observed - Urban
## 15316                                                                                                                                                                                                  (De Facto) Percent of teachers reporting that the classroom observation happened recently
## 15317                                                                                                                                                                                         (De Facto) Percent of teachers reporting that the classroom observation happened recently - Female
## 15318                                                                                                                                                                                           (De Facto) Percent of teachers reporting that the classroom observation happened recently - Male
## 15319                                                                                                                                                                                          (De Facto) Percent of teachers reporting that the classroom observation happened recently - Rural
## 15320                                                                                                                                                                                          (De Facto) Percent of teachers reporting that the classroom observation happened recently - Urban
## 15321                                                                                                                                                                                         (De Facto) Percent of teachers reporting having discussed the results of the classroom observation
## 15322                                                                                                                                                                                (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Female
## 15323                                                                                                                                                                                  (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Male
## 15324                                                                                                                                                                                 (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Rural
## 15325                                                                                                                                                                                 (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Urban
## 15326                                                                                                                                                                                                           (De Facto) Percent of teachers reporting that the discussion was over 30 minutes
## 15327                                                                                                                                                                                                  (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Female
## 15328                                                                                                                                                                                                    (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Male
## 15329                                                                                                                                                                                                   (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Rural
## 15330                                                                                                                                                                                                   (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Urban
## 15331                                                                                                                                                                                          (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion
## 15332                                                                                                                                                                                 (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Female
## 15333                                                                                                                                                                                   (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Male
## 15334                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Rural
## 15335                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Urban
## 15336                                                                                                                                                                                                                               (De Facto) Percent of teachers reporting having lesson plans
## 15337                                                                                                                                                                                                                      (De Facto) Percent of teachers reporting having lesson plans - Female
## 15338                                                                                                                                                                                                                        (De Facto) Percent of teachers reporting having lesson plans - Male
## 15339                                                                                                                                                                                                                       (De Facto) Percent of teachers reporting having lesson plans - Rural
## 15340                                                                                                                                                                                                                       (De Facto) Percent of teachers reporting having lesson plans - Urban
## 15341                                                                                                                                (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher)
## 15342                                                                                                                       (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Female
## 15343                                                                                                                         (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Male
## 15344                                                                                                                        (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Rural
## 15345                                                                                                                        (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Urban
## 15346                                                                                                                                                                                                                                                                                 Monitoring
## 15347                                                                                                                                                                          (De Facto) Percent of schools that report there is someone monitoring that basic inputs are available to students
## 15348                                                                                                                                                                                           (De Jure) Number of basic infrastructure features clearly articulated as needing to be monitored
## 15349                                                                                                                                                 (De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic inputs
## 15350                                                                                                                                                                               (De Facto) Percent of schools that report that there is an inventory to monitor availability of basic inputs
## 15351                                                                                                                                                                               (De Facto) Percent of schools that report there is someone monitoring that basic infrastructure is available
## 15352                                                                                                                                         (De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic infrastructure
## 15353                                                                                                                                                                       (De Facto) Percent of schools that report that there is an inventory to monitor availability of basic infrastructure
## 15354                                                                                                                                                                                            (De Jure) Is the responsibility of monitoring basic inputs clearly articulated in the policies?
## 15355                                                                                                                                                                                                            (De Jure) Number of basic inputs clearly articulated as needing to be monitored
## 15356                                                                                                                                                                                    (De Jure) Is the responsibility of monitoring basic infrastructure clearly articulated in the policies?
## 15357                                                                                                                                                                                                                             (De Facto) Policy Lever (Inputs & Infrastructure) - Monitoring
## 15358                                                                                                                                                                                                                              (De Jure) Policy Lever (Inputs & Infrastructure) - Monitoring
## 15359                                                                                                                                                                                                                                                                       Basic Infrastructure
## 15360                                                                                                                                                                                                                     (De Facto) Average number of infrastructure aspects present in schools
## 15361                                                                                                                                                                                                             (De Facto) Average number of infrastructure aspects present in schools - Rural
## 15362                                                                                                                                                                                                             (De Facto) Average number of infrastructure aspects present in schools - Urban
## 15363                                                                                                                                                                                                                                          (De Facto) Percent of schools with drinking water
## 15364                                                                                                                                                                                                                                  (De Facto) Percent of schools with drinking water - Rural
## 15365                                                                                                                                                                                                                                  (De Facto) Percent of schools with drinking water - Urban
## 15366                                                                                                                                                                                                                                     (De Facto) Percent of schools with functioning toilets
## 15367                                                                                                                                                                                                                             (De Facto) Percent of schools with functioning toilets - Rural
## 15368                                                                                                                                                                                                                             (De Facto) Percent of schools with functioning toilets - Urban
## 15369                                                                                                                                                                                                                                   (De Facto) Percent of schools with access to electricity
## 15370                                                                                                                                                                                                                           (De Facto) Percent of schools with access to electricity - Rural
## 15371                                                                                                                                                                                                                           (De Facto) Percent of schools with access to electricity - Urban
## 15372                                                                                                                                                                                                                                      (De Facto) Percent of schools with access to internet
## 15373                                                                                                                                                                                                                              (De Facto) Percent of schools with access to internet - Rural
## 15374                                                                                                                                                                                                                              (De Facto) Percent of schools with access to internet - Urban
## 15375                                                                                                                                                                                                                    (De Facto) Percent of schools accessible to children with special needs
## 15376                                                                                                                                                                                                            (De Facto) Percent of schools accessible to children with special needs - Rural
## 15377                                                                                                                                                                                                            (De Facto) Percent of schools accessible to children with special needs - Urban
## 15378                                                                                                                                                                                                                                                                               Basic Inputs
## 15379                                                                                                                                                                                                                                (De Facto) Average number of classroom inputs in classrooms
## 15380                                                                                                                                                                                                                        (De Facto) Average number of classroom inputs in classrooms - Rural
## 15381                                                                                                                                                                                                                        (De Facto) Average number of classroom inputs in classrooms - Urban
## 15382                                                                                                                                                                                                                    (De Facto) Percent of classrooms with a functional blackboard and chalk
## 15383                                                                                                                                                                                                            (De Facto) Percent of classrooms with a functional blackboard and chalk - Rural
## 15384                                                                                                                                                                                                            (De Facto) Percent of classrooms with a functional blackboard and chalk - Urban
## 15385                                                                                                                                                                                                 (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books
## 15386                                                                                                                                                                                         (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Rural
## 15387                                                                                                                                                                                         (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Urban
## 15388                                                                                                                                                                                                                            (De Facto) Percent of classrooms with basic classroom furniture
## 15389                                                                                                                                                                                                                    (De Facto) Percent of classrooms with basic classroom furniture - Rural
## 15390                                                                                                                                                                                                                    (De Facto) Percent of classrooms with basic classroom furniture - Urban
## 15391                                                                                                                                                                                                                                        (De Facto) Percent of schools with access to EdTech
## 15392                                                                                                                                                                                                                                (De Facto) Percent of schools with access to EdTech - Rural
## 15393                                                                                                                                                                                                                                (De Facto) Percent of schools with access to EdTech - Urban
## 15394                                                                                                                                                                                                                                                                                  Standards
## 15395                                                                                                                                                                                     (De Jure) Is there a policy in place to require that students have access to the prescribed textbooks?
## 15396                                                                                                                                                                                (De Facto) Do you know if there is a policy in place to require that schools have access to drinking water?
## 15397                                                                                                                                                                                                     (De Jure) Is there a policy in place to require that schools have functioning toilets?
## 15398                                                                                                                                                                                     (De Facto) Do you know if there is a policy in place to require that schools have functioning toilets?
## 15399                                                                                                                                                                                (De Jure) Is there a policy in place to require that schools are accessible to children with special needs?
## 15400                                                                                                                                                          (De Facto) Do you know if there is there a policy in place to require that schools are accessible to children with special needs?
## 15401                                                                                                                                                                     (De Facto) Do you know if there is a policy in place to require that students have access to the prescribed textbooks?
## 15402                                                                                                                                                                                                                                        (De Jure) Is there a national connectivity program?
## 15403                                                                                                                                                                                                                        (De Facto) Do you know if there is a national connectivity program?
## 15404                                                                                                                                                        (De Jure) Is there a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?
## 15405                                                                                                                                        (De Facto) Do you know if there is a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?
## 15406                                                                                                                                                                                                   (De Jure) Is there a policy in place to require that schools have access to electricity?
## 15407                                                                                                                                                                                   (De Facto) Do you know if there is a policy in place to require that schools have access to electricity?
## 15408                                                                                                                                                                                                (De Jure) Is there a policy in place to require that schools have access to drinking water?
## 15409                                                                                                                                                                                                                              (De Facto) Policy Lever (Inputs & Infrastructure) - Standards
## 15410                                                                                                                                                                                                                               (De Jure) Policy Lever (Inputs & Infrastructure) - Standards
## 15411                                                                                                                                                                                                                                                                     Readiness for Learning
## 15412                                                                                                                                                                                                                                     (De Facto) Average developmental score for 1st Graders
## 15413                                                                                                                                                                                                                            (De Facto) Average developmental score for 1st Graders - Female
## 15414                                                                                                                                                                                                                              (De Facto) Average developmental score for 1st Graders - Male
## 15415                                                                                                                                                                                                                             (De Facto) Average developmental score for 1st Graders - Rural
## 15416                                                                                                                                                                                                                             (De Facto) Average developmental score for 1st Graders - Urban
## 15417                                                                                                                                                                                                                                          (De Facto) Average numeracy score for 1st Graders
## 15418                                                                                                                                                                                                                                 (De Facto) Average numeracy score for 1st Graders - Female
## 15419                                                                                                                                                                                                                                   (De Facto) Average numeracy score for 1st Graders - Male
## 15420                                                                                                                                                                                                                                  (De Facto) Average numeracy score for 1st Graders - Rural
## 15421                                                                                                                                                                                                                                  (De Facto) Average numeracy score for 1st Graders - Urban
## 15422                                                                                                                                                                                                                                          (De Facto) Average literacy score for 1st Graders
## 15423                                                                                                                                                                                                                                 (De Facto) Average literacy score for 1st Graders - Female
## 15424                                                                                                                                                                                                                                   (De Facto) Average literacy score for 1st Graders - Male
## 15425                                                                                                                                                                                                                                  (De Facto) Average literacy score for 1st Graders - Rural
## 15426                                                                                                                                                                                                                                  (De Facto) Average literacy score for 1st Graders - Urban
## 15427                                                                                                                                                                                                                                 (De Facto) Average executive funcion score for 1st Graders
## 15428                                                                                                                                                                                                                        (De Facto) Average executive funcion score for 1st Graders - Female
## 15429                                                                                                                                                                                                                          (De Facto) Average executive funcion score for 1st Graders - Male
## 15430                                                                                                                                                                                                                         (De Facto) Average executive funcion score for 1st Graders - Rural
## 15431                                                                                                                                                                                                                         (De Facto) Average executive funcion score for 1st Graders - Urban
## 15432                                                                                                                                                                                                                                    (De Facto) Average socioemotional score for 1st Graders
## 15433                                                                                                                                                                                                                           (De Facto) Average socioemotional score for 1st Graders - Female
## 15434                                                                                                                                                                                                                             (De Facto) Average socioemotional score for 1st Graders - Male
## 15435                                                                                                                                                                                                                            (De Facto) Average socioemotional score for 1st Graders - Rural
## 15436                                                                                                                                                                                                                            (De Facto) Average socioemotional score for 1st Graders - Urban
## 15437                                                                                                                                                                                                                                                                  Early Childhood Education
## 15438                                                                                                                               (De Jure) Is there a policy that guarantees free education for some or all grades and ages included in pre-primary education (for children age 0-83 months)?
## 15439                                                                                                                                                                                   (De Facto) Percent of children age 36-59 months who are attending an early childhood education programme
## 15440                                                                                                                                                                                            (De Jure) Are there developmental standards established for early childhood care and education?
## 15441                                                                                                                                                             (De Jure) According to laws and regulations, are there requirement to become an early childhood educator, pre-primary teacher?
## 15442                                                                                                                              (De Jure) According to policy, are ECCE professionals working at public or private centers required to complete in-service training in ECCE service delivery?
## 15443                                                                                                                                                                                                                                     (De Facto) Policy Lever (Learners) - Center-Based Care
## 15444                                                                                                                                                                                                                                      (De Jure) Policy Lever (Learners) - Center-Based Care
## 15445                                                                                                                                                                                                                                                             Proficiency on GEPD Assessment
## 15446                                                                                                                                                                                         (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey
## 15447                                                                                                                                                                                (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Female
## 15448                                                                                                                                                                                  (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Male
## 15449                                                                                                                                                                                 (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Rural
## 15450                                                                                                                                                                                 (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Urban
## 15451                                                                                                                                                                                                      (De Facto) Percent of children proficient in literacy according to GEPD School Survey
## 15452                                                                                                                                                                                             (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Female
## 15453                                                                                                                                                                                               (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Male
## 15454                                                                                                                                                                                              (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Rural
## 15455                                                                                                                                                                                              (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Urban
## 15456                                                                                                                                                                                                      (De Facto) Percent of children proficient in numeracy according to GEPD School Survey
## 15457                                                                                                                                                                                             (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Female
## 15458                                                                                                                                                                                               (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Male
## 15459                                                                                                                                                                                              (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Rural
## 15460                                                                                                                                                                                              (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Urban
## 15461                                                                                                                                                                                                                                                               Caregiver Financial Capacity
## 15462                                                                                                                                                                                                             (De Jure) Are anti poverty interventions that focus on ECD publicly supported?
## 15463                                                                                                                                                                                                    (De Jure) Are cash transfers conditional on ECD services/enrollment publicly supported?
## 15464                                                                                                                                                                                                                  (De Jure) Are cash transfers focused partially on ECD publicly supported?
## 15465                                                                                                                                                                                                                                          (De Facto) Coverage of social protection programs
## 15466                                                                                                                                                                                                               (De Facto) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity
## 15467                                                                                                                                                                                                                (De Jure) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity
## 15468                                                                                                                                                                                                                                                                            Health Programs
## 15469                                                                                                                                                                                             (De Jure) Are young children required to receive a complete course of childhood immunizations?
## 15470                                                                                                                                                     (De Facto) Percent of children who at age 24-35 months had received all vaccinations recommended in the national immunization schedule
## 15471                                                                                                                                            (De Jure) Is there a policy that assures access to healthcare for young children? Either by offering these services free or by subsidizing them
## 15472                                                                                                                                                                                                                        (De Facto) Percent of  children under 5 covered by health insurance
## 15473                                                                                                                                                                                                                    (De Jure) Are deworming pills funded and distributed by the government?
## 15474                                                                                                                                                                                                           (De Facto) Percent of children age 6-59 months who received deworming medication
## 15475                                                                                                                                                                                     (De Jure) Is there a policy that guarantees pregnant women free antenatal visits and skilled delivery?
## 15476                                                                                                                                          (De Facto) Percent of women age 15-49 years with a live birth in the last 2 years whose most recent live birth was delivered in a health facility
## 15477                                                                                                                                                                                                                                                (De Facto) Policy Lever (Learners) - Health
## 15478                                                                                                                                                                                                                                                 (De Jure) Policy Lever (Learners) - Health
## 15479                                                                                                                                                                                                                                                                         Nutrition Programs
## 15480                                                                                                                                                                                                                       (De Jure) Does a national policy to encourage salt iodization exist?
## 15481                                                                                                                                                                                                (De Facto) Percent of households with salt testing positive for any iodide among households
## 15482                                                                                                                                                                              (De Jure) Does a national policy exist to encourage iron fortification of staples like wheat, maize, or rice?
## 15483                                                                                                                                       (De Facto) Percent of children age 6–23 months who had at least the minimum dietary diversity and the minimum meal frequency during the previous day
## 15484                                                                                                                                                                                                                         (De Jure) Does a national policy exist to encourage breastfeeding?
## 15485                                                                                                                                                                                 (De Facto) Percent of children born in the five (three) years preceding the survey who were ever breastfed
## 15486                                                                                                                                                                                                                               (De Jure) Is there a publicly funded school feeding program?
## 15487                                                                                                                                                                                                      (De Facto) Percent of schools reporting having publicly funded school feeding program
## 15488                                                                                                                                                                                                                                    (De Facto) Policy Lever (Learners) - Nutrition Programs
## 15489                                                                                                                                                                                                                                     (De Jure) Policy Lever (Learners) - Nutrition Programs
## 15490                                                                                                                                                                                                                                                                  Caregiver Skills Capacity
## 15491                                                                                                                                                                                   (De Jure) Does the government offer programs that aim to share good parenting practices with caregivers?
## 15492 (De Jure) Are any of the following publicly-supported delivery channels used to reach families in order to promote early childhood stimulation? Home visits, Group sessions, Community health programs, Health center waiting rooms, School-based groups, Mass media/Information campaigns
## 15493                                                                                                                                                                                                         (De Facto) Percent of children under age 5 who have three or more children’s books
## 15494                                                                                                     (De Facto) Percent of children age 24-59 months engaged in four or more activities to provide early stimulation and responsive care in the last 3 days with any adult in the household
## 15495                                                                                                                                                                                                                  (De Facto) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity
## 15496                                                                                                                                                                                                                   (De Jure) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity
## 15497                                                                                                                                                                                                                                                         School enrollment, primary (% net)
## 15498                                                                                                                                                                                                                                                 School enrollment, primary, female (% net)
## 15499                                                                                                                                                                                                                                                   School enrollment, primary, male (% net)
## 15500                                                                                                                                                                                                                                                       Net Enrollment Ratio: Primary (in %)
## 15501                                                                                                                                                                                                                   Net intake rate in grade 1, female (% of official school-age population)
## 15502                                                                                                                                                                                                                     Net intake rate in grade 1, male (% of official school-age population)
## 15503                                                                                                                                                                                                                           Net intake rate in grade 1 (% of official school-age population)
## 15504                                                                                                                                                                                                                                Over-age students, primary, female (% of female enrollment)
## 15505                                                                                                                                                                                                                                    Over-age students, primary, male (% of male enrollment)
## 15506                                                                                                                                                                                                                                               Over-age students, primary (% of enrollment)
## 15507                                                                                                                                                                                                                                                                     Operational Management
## 15508                                                                                                                                                                                             (De Facto) Average score for the presence and quality of core operational management functions
## 15509                                                                                                                                                                                    (De Facto) Average score for the presence and quality of core operational management functions - Female
## 15510                                                                                                                                                                                      (De Facto) Average score for the presence and quality of core operational management functions - Male
## 15511                                                                                                                                                                                     (De Facto) Average score for the presence and quality of core operational management functions - Rural
## 15512                                                                                                                                                                                     (De Facto) Average score for the presence and quality of core operational management functions - Urban
## 15513                                                                                                                                                                                                                             (De Facto) Average score for infrastructure repair/maintenance
## 15514                                                                                                                                                                                                                    (De Facto) Average score for infrastructure repair/maintenance - Female
## 15515                                                                                                                                                                                                                      (De Facto) Average score for infrastructure repair/maintenance - Male
## 15516                                                                                                                                                                                                                     (De Facto) Average score for infrastructure repair/maintenance - Rural
## 15517                                                                                                                                                                                                                     (De Facto) Average score for infrastructure repair/maintenance - Urban
## 15518                                                                                                                                                                                                                       (De Facto) Average score for ensuring  availability of school inputs
## 15519                                                                                                                                                                                                              (De Facto) Average score for ensuring  availability of school inputs - Female
## 15520                                                                                                                                                                                                                (De Facto) Average score for ensuring  availability of school inputs - Male
## 15521                                                                                                                                                                                                               (De Facto) Average score for ensuring  availability of school inputs - Rural
## 15522                                                                                                                                                                                                               (De Facto) Average score for ensuring  availability of school inputs - Urban
## 15523                                                                                                                                                                                                                                                                         Pedagogical Skills
## 15524                                                                                                                                                                                            (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score)
## 15525                                                                                                                                                                                   (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Female
## 15526                                                                                                                                                                                     (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Male
## 15527                                                                                                                                                                                    (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Rural
## 15528                                                                                                                                                                                    (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Urban
## 15529                                                                                                                                                                         (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score)
## 15530                                                                                                                                                                (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Female
## 15531                                                                                                                                                                  (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Male
## 15532                                                                                                                                                                 (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Rural
## 15533                                                                                                                                                                 (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Urban
## 15534                                                                                                                                                                                     (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score)
## 15535                                                                                                                                                                            (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Female
## 15536                                                                                                                                                                              (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Male
## 15537                                                                                                                                                                             (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Rural
## 15538                                                                                                                                                                             (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Urban
## 15539                                                                                                                                                              (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score)
## 15540                                                                                                                                                     (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Female
## 15541                                                                                                                                                       (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Male
## 15542                                                                                                                                                      (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Rural
## 15543                                                                                                                                                      (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Urban
## 15544                                                                                                                                                                                                                                                                           School Knowledge
## 15545                                                                                                                                                 (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school
## 15546                                                                                                                                        (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Female
## 15547                                                                                                                                          (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Male
## 15548                                                                                                                                         (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Rural
## 15549                                                                                                                                         (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Urban
## 15550                                                                                                                                                                                                                 (De Facto) Percent of principals familiar with teachers' content knowledge
## 15551                                                                                                                                                                                                        (De Facto) Percent of principals familiar with teachers' content knowledge - Female
## 15552                                                                                                                                                                                                          (De Facto) Percent of principals familiar with teachers' content knowledge - Male
## 15553                                                                                                                                                                                                         (De Facto) Percent of principals familiar with teachers' content knowledge - Rural
## 15554                                                                                                                                                                                                         (De Facto) Percent of principals familiar with teachers' content knowledge - Urban
## 15555                                                                                                                                                                                                                        (De Facto) Percent of principals familiar with teachers' experience
## 15556                                                                                                                                                                                                               (De Facto) Percent of principals familiar with teachers' experience - Female
## 15557                                                                                                                                                                                                                 (De Facto) Percent of principals familiar with teachers' experience - Male
## 15558                                                                                                                                                                                                                (De Facto) Percent of principals familiar with teachers' experience - Rural
## 15559                                                                                                                                                                                                                (De Facto) Percent of principals familiar with teachers' experience - Urban
## 15560                                                                                                                                                                                                            (De Facto) Percent of principals familiar with availability of classroom inputs
## 15561                                                                                                                                                                                                   (De Facto) Percent of principals familiar with availability of classroom inputs - Female
## 15562                                                                                                                                                                                                     (De Facto) Percent of principals familiar with availability of classroom inputs - Male
## 15563                                                                                                                                                                                                    (De Facto) Percent of principals familiar with availability of classroom inputs - Rural
## 15564                                                                                                                                                                                                    (De Facto) Percent of principals familiar with availability of classroom inputs - Urban
## 15565                                                                                                                                                                                                                                                                       Management Practices
## 15566                                                                                                                        (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term
## 15567                                                                                                               (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Female
## 15568                                                                                                                 (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Male
## 15569                                                                                                                (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Rural
## 15570                                                                                                                (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Urban
## 15571                                                                                                                                                                                       (De Facto) Average score for the extent to which principals master problem-solving in the short-term
## 15572                                                                                                                                                                              (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Female
## 15573                                                                                                                                                                                (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Male
## 15574                                                                                                                                                                               (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Rural
## 15575                                                                                                                                                                               (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Urban
## 15576                                                                                                                                                                                           (De Facto) Average score for the extent to which principals master goal-setting in the long term
## 15577                                                                                                                                                                                  (De Facto) Average score for the extent to which principals master goal-setting in the long term - Female
## 15578                                                                                                                                                                                    (De Facto) Average score for the extent to which principals master goal-setting in the long term - Male
## 15579                                                                                                                                                                                   (De Facto) Average score for the extent to which principals master goal-setting in the long term - Rural
## 15580                                                                                                                                                                                   (De Facto) Average score for the extent to which principals master goal-setting in the long term - Urban
## 15581                                                                                                                                                                                                                                   School enrollment, primary, private (% of total primary)
## 15582                                                                                                                                                                                                                                                                   Proficiency by Grade 2/3
## 15583                                                                                                                                                                                        (De Facto) Percent of children proficient in literacy and numeracy by grade 2/3, as reported by UIS
## 15584                                                                                                                                                                                                                                               Persistence to grade 4, female (% of cohort)
## 15585                                                                                                                                                                                                                                                 Persistence to grade 4, male (% of cohort)
## 15586                                                                                                                                                                                                                                                Persistence to grade 4, total (% of cohort)
## 15587                                                                                                                                                                                                                                               Persistence to grade 5, female (% of cohort)
## 15588                                                                                                                                                                                                                                                 Persistence to grade 5, male (% of cohort)
## 15589                                                                                                                                                                                                                                                Persistence to grade 5, total (% of cohort)
## 15590                                                                                                                                                                                                                                 Persistence to last grade of primary, female (% of cohort)
## 15591                                                                                                                                                                                                                                   Persistence to last grade of primary, male (% of cohort)
## 15592                                                                                                                                                                                                                                  Persistence to last grade of primary, total (% of cohort)
## 15593                                                                                                                                                                                                                                                         Primary school pupil-teacher ratio
## 15594                                                                                                                                                                                                                                        Repeaters, primary, female (% of female enrollment)
## 15595                                                                                                                                                                                                                                            Repeaters, primary, male (% of male enrollment)
## 15596                                                                                                                                                                                                                                          Repeaters, primary, total (% of total enrollment)
## 15597                                                                                                                                                                                                                                              Policy Lever (School Management) - Attraction
## 15598                                                                                                                (De Jure) Do the national policies governing the education system portray the position of principal or head teacher as professionalized and distinct figure within schools?
## 15599                                                                                                                                                                                                                           (De Facto) Average principal salary as percent of GDP per capita
## 15600                                                                                                                                                                     (De Facto) Percent of principals reporting being satisfied or very satisfied with their social status in the community
## 15601                                                                                                                                                                                                                                   (De Facto) Policy Lever (School Management) - Attraction
## 15602                                                                                                                                                                                                                                    (De Jure) Policy Lever (School Management) - Attraction
## 15603                                                                                                                                                                                                                                                                       Clarity of Functions
## 15604                                                                                                                           (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the maintenance and expansion of school infrastructure?
## 15605                                                                                                                                                                                     (De Jure) Do the policies governing schools assign the responsibility of student learning assessments?
## 15606                                                                                                                                                  (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal hiring and assignment?
## 15607                                                                                                                                                                                  (De Jure) Do the policies governing schools assign the responsibility of principal hiring and assignment?
## 15608                                                                                                                                               (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal supervision and training?
## 15609                                                                                                                                                                               (De Jure) Do the policies governing schools assign the responsibility of principal supervision and training?
## 15610                                                                                                                                                               (De Jure) Do the policies governing schools assign the responsibility of maintenance and expansion of school infrastructure?
## 15611                                                                                                                                                     (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the procurement of materials?
## 15612                                                                                                                                                                                         (De Jure) Do the policies governing schools assign the responsibility of procurement of materials?
## 15613                                                                                                                                                    (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher hiring and assignment?
## 15614                                                                                                                                                                                    (De Jure) Do the policies governing schools assign the responsibility of teacher hiring and assignment?
## 15615                                                                                                                                      (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher supervision, training, and coaching?
## 15616                                                                                                                                                                      (De Jure) Do the policies governing schools assign the responsibility of teacher supervision, training, and coaching?
## 15617                                                                                                                                                     (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of student learning assessments?
## 15618                                                                                                                                                                                                                         (De Facto) Policy Lever (School Management) - Clarity of Functions
## 15619                                                                                                                                                                                                                          (De Jure) Policy Lever (School Management) - Clarity of Functions
## 15620                                                                                                                                                                                                                                              Policy Lever (School Management) - Evaluation
## 15621                                                                                                                                                                                      (De Jure) Is there a policy that specifies the need to monitor principal or head teacher performance?
## 15622                                                                                                                                                                                                      (De Jure) Is the criteria to evaluate principals clear and includes multiple factors?
## 15623                                                                                                                                                                                            (De Facto) Percent of principals that report having been evaluated  during the last school year
## 15624                                                                                                                                                                                                     (De Facto) Percent of principals that report having been evaluated on multiple factors
## 15625                                                                                                                                                                                    (De Facto) Percent of principals that report there would be consequences after two negative evaluations
## 15626                                                                                                                                                                                    (De Facto) Percent of principals that report there would be consequences after two positive evaluations
## 15627                                                                                                                                                                                                                                   (De Facto) Policy Lever (School Management) - Evaluation
## 15628                                                                                                                                                                                                                                    (De Jure) Policy Lever (School Management) - Evaluation
## 15629                                                                                                                                                                                                                                  Policy Lever (School Management) - Selection & Deployment
## 15630                                                                                                                                                                                                           (De Jure) Is there a systematic approach/rubric for the selection of principals?
## 15631                                                                                                                                                   (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is years of experience
## 15632                                                                                                                                                   (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is quality of teaching
## 15633                                                                                                                                     (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is demonstrated management qualities
## 15634                                                                                                               (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is having a good relationship with the owner of the school
## 15635                                                                                                                                                (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is political affiliations
## 15636                                                                                                                                                          (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is ethnic group
## 15637                                                                                                                                      (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is knowledge of the local community
## 15638                                                                                                                                                                                (De Jure) How are the principals selected? Based on the requirements, is the selection system meritocratic?
## 15639                                                                                                                                                            (De Facto) Percent of principals that report that the factors considered when selecting a principal include years of experience
## 15640                                                                                                                                                           (De Facto)  Percent of principals that report that the factors considered when selecting a principal include quality of teaching
## 15641                                                                                                                                              (De Facto) Percent of principals that report that the factors considered when selecting a principal include demonstrated management qualities
## 15642                                                                                                                                 (De Facto) Percent of principals that report that the factors considered when selecting a principal include good relationship with the owner of the school
## 15643                                                                                                                                                         (De Facto) Percent of principals that report that the factors considered when selecting a principal include political affiliations
## 15644                                                                                                                                                                   (De Facto) Percent of principals that report that the factors considered when selecting a principal include ethnic group
## 15645                                                                                                                                               (De Facto) Percent of principals that report that the factors considered when selecting a principal include knowledge of the local community
## 15646                                                                                                                                                                                                                       (De Facto) Policy Lever (School Management) - Selection & Deployment
## 15647                                                                                                                                                                                                                        (De Jure) Policy Lever (School Management) - Selection & Deployment
## 15648                                                                                                                                                                                                                                                 Policy Lever (School Management) - Support
## 15649                                                                                                                                                                                                              (De Jure) Are principals required to have training on how to manage a school?
## 15650                                                                                                                                                                         (De Facto) Percent of principals that report having used the skills they gained at the last training they attended
## 15651                                                                                                                                                                                 (De Facto) Average number of trainings that principals report having been offered to them in the past year
## 15652                                                                                                                                                                                                          (De Jure) Are principals required to have management training for new principals?
## 15653                                                                                                                                                                                                                             (De Jure) Are principals required to have in-service training?
## 15654                                                                                                                                                                                                    (De Jure) Are principals required to have mentoring/coaching by experienced principals?
## 15655                                                                                                                                                                                                                            (De Jure) How many times per year do principals have trainings?
## 15656                                                                                                                                                                                                          (De Facto) Percent of principals that report ever having received formal training
## 15657                                                                                                                                                                                        (De Facto) Percent of principals that report having received management training for new principals
## 15658                                                                                                                                                                                                           (De Facto) Percent of principals that report having received in-service training
## 15659                                                                                                                                                                                  (De Facto) Percent of principals that report having received mentoring/coaching by experienced principals
## 15660                                                                                                                                                                                                                                      (De Facto) Policy Lever (School Management) - Support
## 15661                                                                                                                                                                                                                                       (De Jure) Policy Lever (School Management) - Support
## 15662                                                                                                                                                                                                                                                       Policy Lever (Teaching) - Attraction
## 15663                                                                                                                                                                                                       (De Jure) Average starting public-school teacher salary as percent of GDP per capita
## 15664                                                                                                                                                                       (De Facto) Percent of teachers reporting being satisfied or very satisfied with their social status in the community
## 15665                                                                                                                                                                                       (De Facto) Percent of teachers reporting being satisfied or very satisfied with their job as teacher
## 15666                                                                                                                                                                                   (De Facto) Percent of teachers reporting having received financial bonuses in addition to their salaries
## 15667                                                                                                                          (De Facto) Percent of teachers reporting that there are incentives (financial or otherwise) for teachers to teach certain subjects/grades and/or in certain areas
## 15668                                                                                                                                                                                                                     (De Facto) Percent of teachers that performance matters for promotions
## 15669                                                                                                                                                                                                                            (De Jure) Is there a well-established career path for teachers?
## 15670                                                                                                                                                                                                             (De Facto) Percent of teachers that report salary delays in the past 12 months
## 15671                                                                                                                                                                                                                                            (De Facto) Policy Lever (Teaching) - Attraction
## 15672                                                                                                                                                                                                                                             (De Jure) Policy Lever (Teaching) - Attraction
## 15673                                                                                                                                                                                                                       Trained teachers in primary education, female (% of female teachers)
## 15674                                                                                                                                                                                                                           Trained teachers in primary education, male (% of male teachers)
## 15675                                                                                                                                                                                                                                Trained teachers in primary education (% of total teachers)
## 15676                                                                                                                                                                                                                                                                Primary education, teachers
## 15677                                                                                                                                                                                                                                             Teachers in primary education, female (number)
## 15678                                                                                                                                                                                                                                                     Primary education, teachers (% female)
## 15679                                                                                                                                                                                                                   Adjusted net enrollment rate, primary (% of primary school age children)
## 15680                                                                                                                                                                                                    (De Facto) Percent of primary school age children who are enrolled at primary education
## 15681                                                                                                                                                                                                           Adjusted net enrollment rate, primary, female (% of primary school age children)
## 15682                                                                                                                                                                                                             Adjusted net enrollment rate, primary, male (% of primary school age children)
## 15683                                                                                                                                                                                                                                                       Policy Lever (Teaching) - Evaluation
## 15684                                                                                                                                                   (De Jure) Legislation assigns responsibility of evaluating the performance of teachers to a public authority (national, regional, local)
## 15685                                                                                                                                                                                      (De Jure) Legislation assigns responsibility of evaluating the performance of teachers to the schools
## 15686                                                                                                                                                                                                           (De Facto) Percent of teachers that report being evaluated in the past 12 months
## 15687                                                                                                                                                                                                                                       (De Jure) The criteria to evaluate teachers is clear
## 15688                                                                                                                                                                                                                                    (De Facto) Number of criteria used to evaluate teachers
## 15689                                                                                                                                                                                      (De Facto) Percent of teachers that report there would be consequences after two negative evaluations
## 15690                                                                                                                                                                                      (De Facto) Percent of teachers that report there would be consequences after two positive evaluations
## 15691                                                                                                                                                                                           (De Jure) There are clear consequences for teachers who receive two or more negative evaluations
## 15692                                                                                                                                                                                           (De Jure) There are clear consequences for teachers who receive two or more positive evaluations
## 15693                                                                                                                                                                                                                                            (De Facto) Policy Lever (Teaching) - Evaluation
## 15694                                                                                                                                                                                                                                             (De Jure) Policy Lever (Teaching) - Evaluation
## 15695                                                                                                                                                                                                                                                                       Intrinsic Motivation
## 15696                                                                                                                              (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if the assigned curriculum has been completed"
## 15697                                                                                                                                                   (De Facto) Percent of teachers that agree or strongly agrees with "Students can change even their basic intelligence level considerably"
## 15698                                                                                                                                                                                  (De Facto) Percent of teachers who state that intrinsic motivation was the main reason to become teachers
## 15699                                                                                                                                                                                                                      (De Facto) New teachers are required to undergo a probationary period
## 15700                                                                                                                                                                                                                       (De Jure) New teachers are required to undergo a probationary period
## 15701                                                                                                                                       (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if students are left with work to do"
## 15702                                                                                                                 (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if the teacher is doing something useful for the community"
## 15703                                                                                                                                                        (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they attend school regularly"
## 15704                                                                                                                                                  (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they come to school with materials"
## 15705                                                                                                                                                         (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they are motivated to learn"
## 15706                                                                                                                              (De Facto) Percent of teachers that agree or strongly agrees with "Students have a certain amount of intelligence and they really can’t do much to change it"
## 15707                                                                                                                                                    (De Facto) Percent of teachers that agree or strongly agrees with "To be honest, students can’t really change how intelligent they are"
## 15708                                                                                                                                                      (De Facto) Percent of teachers that agree or strongly agrees with "Students can always substantially change how intelligent they are"
## 15709                                                                                                                                                                                                                                  (De Facto) Policy Lever (Teaching) - Intrinsic Motivation
## 15710                                                                                                                                                                                                                                   (De Jure) Policy Lever (Teaching) - Intrinsic Motivation
## 15711                                                                                                                                                                                                                                                                Monitoring & Accountability
## 15712                                                                                                                                                                                                (De Jure) Information on teacher presence/absenteeism is being collected on a regular basis
## 15713                                                                                                                                                                                                                         (De Jure) Teachers receive monetary compensation for being present
## 15714                                                                                                                                                                                            (De Facto) Teacher report receiving monetary compensation (aside from salary) for being present
## 15715                                                                                                                                                                                          (De Facto) Percent of teachers that report having been absent because of administrative processes
## 15716                                                                                                                                                                               (De Facto) Percent of teachers that report that there would be consequences for being absent 40% of the time
## 15717                                                                                                                                                                                                                           (De Facto) Policy Lever (Teaching) - Monitoring & Accountability
## 15718                                                                                                                                                                                                                            (De Jure) Policy Lever (Teaching) - Monitoring & Accountability
## 15719                                                                                                                                                                                                                                           Policy Lever (Teaching) - Selection & Deployment
## 15720                                                                                                                                                                                                                            (De Jure) Requirements to enter into initial education programs
## 15721                                                                                                                                                                                                          (De Facto) Average quality of applicants accepted into initial education programs
## 15722                                                                                                                                                                                                                                  (De Jure) Requirements to become a primary school teacher
## 15723                                                                                                                                                                                                                                 (De Facto) Requirements to become a primary school teacher
## 15724                                                                                                                                                                                                                                       (De Jure) Requirements to fulfill a transfer request
## 15725                                                                                                                                                                                                                                      (De Facto) Requirements to fulfill a transfer request
## 15726                                                                                                                                                                                                                                            (De Jure) Selectivity of teacher hiring process
## 15727                                                                                                                                                                                                                                (De Facto) Policy Lever (Teaching) - Selection & Deployment
## 15728                                                                                                                                                                                                                                 (De Jure) Policy Lever (Teaching) - Selection & Deployment
## 15729                                                                                                                                                                                                                                                          Policy Lever (Teaching) - Support
## 15730                                                                                                                                                                                                                               (De Jure) Practicum required as part of pre-service training
## 15731                                                                                                                                                                                                    (De Facto) Percent reporting they completed a practicum as part of pre-service training
## 15732                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they participated in an induction and/or mentorship program
## 15733                                                                                                                                                                                             (De Jure) Participation in professional development has professional implications for teachers
## 15734                                                                                                                                                                                        (De Facto) Percent of teachers reporting having attended in-service trainings in the past 12 months
## 15735                                                                                                                                                                                                                                        (De Facto) Average length of the trainings attended
## 15736                                                                                                                                                                                                                              (De Facto) Average span of time (in weeks) of those trainings
## 15737                                                                                                                                                                                                        (De Facto) Average percent of time spent inside the classrooms during the trainings
## 15738                                                                                                                                                 (De Facto) Percent of teachers that report having opportunities to come together with other teachers to discuss ways of improving teaching
## 15739                                                                                                                                                                                                                                               (De Facto) Policy Lever (Teaching) - Support
## 15740                                                                                                                                                                                                                                                (De Jure) Policy Lever (Teaching) - Support
## 15741                                                                                                                                                                                                                                                            Children out of school, primary
## 15742                                                                                                                                                                                                                                                    Children out of school, primary, female
## 15743                                                                                                                                                                                                                            Children out of school, female (% of female primary school age)
## 15744                                                                                                                                                                                                                                                      Children out of school, primary, male
## 15745                                                                                                                                                                                                                                Children out of school, male (% of male primary school age)
## 15746                                                                                                                                                                                                      Children out of school, primary, poorest quintile (% of relevant age group, DHS/MICS)
## 15747                                                                                                                                                                                                      Children out of school, primary, richest quintile (% of relevant age group, DHS/MICS)
## 15748                                                                                                                                                                                                                                           Children out of school (% of primary school age)
## 15749                                                                                                                                                                                                               Education coefficient of efficiency (ideal years to graduate as % of actual)
## 15750                                                                                                                                                                                                                            School life expectancy, primary to tertiary, both sexes (years)
## 15751                                                                                                                                                                                                                                School life expectancy, primary to tertiary, female (years)
## 15752                                                                                                                                                                                                                                  School life expectancy, primary to tertiary, male (years)
## 15753                                                                                                                                                                                                                                                Number of schools at Junior Secondary Level
## 15754                                                                                                                                                                                                                                                         Number of schools at Primary Level
## 15755                                                                                                                                                                                                                                                Number of schools at Senior Secondary level
## 15756                                                                                                                                                                                                                                   Age efficiency, secondary (net enrollment as % of gross)
## 15757                                                                                                                                                                                                                                                Lower secondary school starting age (years)
## 15758                                                                                                                                                                                                                          Lower secondary completion rate, female (% of relevant age group)
## 15759                                                                                                                                                                                                                            Lower secondary completion rate, male (% of relevant age group)
## 15760                                                                                                                                                                                                                           Lower secondary completion rate, total (% of relevant age group)
## 15761                                                                                                                                                                                        Educational attainment, at least completed lower secondary, population 25+, female (%) (cumulative)
## 15762                                                                                                                                                                                          Educational attainment, at least completed lower secondary, population 25+, male (%) (cumulative)
## 15763                                                                                                                                                                                         Educational attainment, at least completed lower secondary, population 25+, total (%) (cumulative)
## 15764                                                                                                                                                                                         Educational attainment, at least completed post-secondary, population 25+, female (%) (cumulative)
## 15765                                                                                                                                                                                           Educational attainment, at least completed post-secondary, population 25+, male (%) (cumulative)
## 15766                                                                                                                                                                                          Educational attainment, at least completed post-secondary, population 25+, total (%) (cumulative)
## 15767                                                                                                                                                                                        Educational attainment, at least completed upper secondary, population 25+, female (%) (cumulative)
## 15768                                                                                                                                                                                          Educational attainment, at least completed upper secondary, population 25+, male (%) (cumulative)
## 15769                                                                                                                                                                                         Educational attainment, at least completed upper secondary, population 25+, total (%) (cumulative)
## 15770                                                                                                                                                                                                                                                      Secondary education, duration (years)
## 15771                                                                                                                                                                                                                                  Theoretical duration of lower secondary education (years)
## 15772                                                                                                                                                                                                                                  Theoretical duration of upper secondary education (years)
## 15773                                                                                                                                                                                                                                                                Secondary education, pupils
## 15774                                                                                                                                                                                                                                          Enrolment in secondary education, female (number)
## 15775                                                                                                                                                                                                                Vocational and Technical enrolment (% of total secondary enrolment), female
## 15776                                                                                                                                                                                                                                                     Secondary education, pupils (% female)
## 15777                                                                                                                                                                                                                                                        Secondary education, general pupils
## 15778                                                                                                                                                                                                                                             Secondary education, general pupils (% female)
## 15779                                                                                                                                                                                                                                                       Pupil-teacher ratio, lower secondary
## 15780                                                                                                                                                                                                        Share of male students in secondary education enrolled in vocational programmes (%)
## 15781                                                                                                                                                                                                                                                             Pupil-teacher ratio, secondary
## 15782                                                                                                                                                                                                                                                       Pupil-teacher ratio, upper secondary
## 15783                                                                                                                                                                                                                                                     Secondary education, vocational pupils
## 15784                                                                                                                                                                                                                                          Secondary education, vocational pupils (% female)
## 15785                                                                                                                                                                                                         Share of all students in secondary education enrolled in vocational programmes (%)
## 15786                                                                                                                                                                                                                                                     School enrollment, secondary (% gross)
## 15787                                                                                                                                                                                                                                             School enrollment, secondary, female (% gross)
## 15788                                                                                                                                                                                                                                     Gross enrolment ratio, lower secondary, both sexes (%)
## 15789                                                                                                                                                                                                                                         Gross enrolment ratio, lower secondary, female (%)
## 15790                                                                                                                                                                                                                                           Gross enrolment ratio, lower secondary, male (%)
## 15791                                                                                                                                                                                                                                               School enrollment, secondary, male (% gross)
## 15792                                                                                                                                                                                                                                                        School Enroll. Ratio, secondary (%)
## 15793                                                                                                                                                                                                                                     Gross enrolment ratio, upper secondary, both sexes (%)
## 15794                                                                                                                                                                                                                                         Gross enrolment ratio, upper secondary, female (%)
## 15795                                                                                                                                                                                                                                           Gross enrolment ratio, upper secondary, male (%)
## 15796                                                                                                                                                                                                                                                       School enrollment, secondary (% net)
## 15797                                                                                                                                                                                                                                               School enrollment, secondary, female (% net)
## 15798                                                                                                                                                                                                                                                 School enrollment, secondary, male (% net)
## 15799                                                                                                                                                                                                                               School enrollment, secondary, private (% of total secondary)
## 15800                                                                                                                                                                                                                                                Progression to secondary school, female (%)
## 15801                                                                                                                                                                                                                                                  Progression to secondary school, male (%)
## 15802                                                                                                                                                                                                                                                        Progression to secondary school (%)
## 15803                                                                                                                                                                                                                                      Repeaters, secondary, female (% of female enrollment)
## 15804                                                                                                                                                                                                                                          Repeaters, secondary, male (% of male enrollment)
## 15805                                                                                                                                                                                                                                        Repeaters, secondary, total (% of total enrollment)
## 15806                                                                                                                                                                                                                     Trained teachers in secondary education, female (% of female teachers)
## 15807                                                                                                                                                                                                               Trained teachers in lower secondary education, female (% of female teachers)
## 15808                                                                                                                                                                                                                   Trained teachers in lower secondary education, male (% of male teachers)
## 15809                                                                                                                                                                                                                        Trained teachers in lower secondary education (% of total teachers)
## 15810                                                                                                                                                                                                                         Trained teachers in secondary education, male (% of male teachers)
## 15811                                                                                                                                                                                                               Trained teachers in upper secondary education, female (% of female teachers)
## 15812                                                                                                                                                                                                                   Trained teachers in upper secondary education, male (% of male teachers)
## 15813                                                                                                                                                                                                                        Trained teachers in upper secondary education (% of total teachers)
## 15814                                                                                                                                                                                                                              Trained teachers in secondary education (% of total teachers)
## 15815                                                                                                                                                                                                                                                              Secondary education, teachers
## 15816                                                                                                                                                                                                                                                      Secondary education, teachers, female
## 15817                                                                                                                                                                                                                                                   Secondary education, teachers (% female)
## 15818                                                                                                                                                                                                                                                      Secondary education, general teachers
## 15819                                                                                                                                                                                                                                           Secondary education, general teachers (% female)
## 15820                                                                                                                                                                                                                                                   Secondary education, vocational teachers
## 15821                                                                                                                                                                                                                                        Secondary education, vocational teachers (% female)
## 15822                                                                                                                                                                                                                                                          Children out of school, secondary
## 15823                                                                                                                                                                                                                                                  Children out of school, secondary, female
## 15824                                                                                                                                                                                                                        Children out of school, secondary, female (% of relevant age group)
## 15825                                                                                                                                                                                                                 Adolescents out of school, female (% of female lower secondary school age)
## 15826                                                                                                                                                                                                                     Adolescents out of school, male (% of male lower secondary school age)
## 15827                                                                                                                                                                                                                                Adolescents out of school (% of lower secondary school age)
## 15828                                                                                                                                                                                                                                                    Children out of school, secondary, male
## 15829                                                                                                                                                                                                                          Children out of school, secondary, male (% of relevant age group)
## 15830                                                                                                                                                                                                                                Children out of school, secondary (% of relevant age group)
## 15831                                                                                                                                                                                                                                              Net Enrollment Ratio: Senior Secondary (in %)
## 15832                                                                                                                                                                                                            Number of Student: Junior Secondary Level (in number of people, 2009 data only)
## 15833                                                                                                                                                                                                                     Number of Student: Primary Level (in number of people, 2009 data only)
## 15834                                                                                                                                                                                                            Number of Student: Senior Secondary Level (in number of people, 2009 data only)
## 15835                                                                                                                                                                                                            Number of Teacher: Junior Secondary Level (in number of people, 2009 data only)
## 15836                                                                                                                                                                                                                     Number of Teacher: Primary Level (in number of people, 2009 data only)
## 15837                                                                                                                                                                                                            Number of Teacher: Senior Secondary Level (in number of people, 2009 data only)
## 15838                                                                                                                                                                                      Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, female (%)
## 15839                                                                                                                                                                                        Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, male (%)
## 15840                                                                                                                                                                                  Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, both sexes (%)
## 15841                                                                                                                                                                                         Educational attainment, at least Bachelor's or equivalent, population 25+, female (%) (cumulative)
## 15842                                                                                                                                                                                           Educational attainment, at least Bachelor's or equivalent, population 25+, male (%) (cumulative)
## 15843                                                                                                                                                                                          Educational attainment, at least Bachelor's or equivalent, population 25+, total (%) (cumulative)
## 15844                                                                                                                                                                                                    Educational attainment, Doctoral or equivalent, population 25+, female (%) (cumulative)
## 15845                                                                                                                                                                                                      Educational attainment, Doctoral or equivalent, population 25+, male (%) (cumulative)
## 15846                                                                                                                                                                                                     Educational attainment, Doctoral or equivalent, population 25+, total (%) (cumulative)
## 15847                                                                                                                                                                                           Educational attainment, at least Master's or equivalent, population 25+, female (%) (cumulative)
## 15848                                                                                                                                                                                             Educational attainment, at least Master's or equivalent, population 25+, male (%) (cumulative)
## 15849                                                                                                                                                                                            Educational attainment, at least Master's or equivalent, population 25+, total (%) (cumulative)
## 15850                                                                                                                                                                                   Educational attainment, at least completed short-cycle tertiary, population 25+, female (%) (cumulative)
## 15851                                                                                                                                                                                     Educational attainment, at least completed short-cycle tertiary, population 25+, male (%) (cumulative)
## 15852                                                                                                                                                                                    Educational attainment, at least completed short-cycle tertiary, population 25+, total (%) (cumulative)
## 15853                                                                                                                                                                                                                       Enrolment in tertiary education, all programmes, both sexes (number)
## 15854                                                                                                                                                                                                                           Enrolment in tertiary education, all programmes, female (number)
## 15855                                                                                                                                                                                                                            Percentage of students in tertiary education who are female (%)
## 15856                                                                                                                                                                                                                                                              Pupil-teacher ratio, tertiary
## 15857                                                                                                                                                                                                                                                      School enrollment, tertiary (% gross)
## 15858                                                                                                                                                                                                                                              School enrollment, tertiary, female (% gross)
## 15859                                                                                                                                                                                                                                                School enrollment, tertiary, male (% gross)
## 15860                                                                                                                                                 Percentage of graduates from tertiary education graduating from Agriculture, Forestry, Fisheries and Veterinary programmes, both sexes (%)
## 15861                                                                                                                                                                                       Percentage of graduates from tertiary education graduating from Education programmes, both sexes (%)
## 15862                                                                                                                                                     Percentage of graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, both sexes (%)
## 15863                                                                                                                                                                                      Female share of graduates in Agriculture, Forestry, Fisheries and Veterinary programmes, tertiary (%)
## 15864                                                                                                                                                                                                                            Female share of graduates in Education programmes, tertiary (%)
## 15865                                                                                                                                                                                          Female share of graduates in Engineering, Manufacturing and Construction programmes, tertiary (%)
## 15866                                                                                                                                                                                                                   Female share of graduates in Health and Welfare programmes, tertiary (%)
## 15867                                                                                                                                                                                                                  Female share of graduates in Arts and Humanities programmes, tertiary (%)
## 15868                                                                                                                                                                                                                   Female share of graduates in unknown or unspecified fields, tertiary (%)
## 15869                                                                                                                                                                                         Female share of graduates in Natural Sciences, Mathematics and Statistics programmes, tertiary (%)
## 15870                                                                                                                                                                            Female share of graduates from Science, Technology, Engineering and Mathematics (STEM) programmes, tertiary (%)
## 15871                                                                                                                                                                                          Female share of graduates in Social Sciences, Journalism and Information programmes, tertiary (%)
## 15872                                                                                                                                                                                                                             Female share of graduates in Services programmes, tertiary (%)
## 15873                                                                                                                                                                              Percentage of graduates from tertiary education graduating from Health and Welfare programmes, both sexes (%)
## 15874                                                                                                                                                                             Percentage of graduates from tertiary education graduating from Arts and Humanities programmes, both sexes (%)
## 15875                                                                                                                                                                           Percentage of graduates from tertiary education graduating from programmes in unspecified fields, both sexes (%)
## 15876                                                                                                                                                    Percentage of graduates from tertiary education graduating from Natural Sciences, Mathematics and Statistics programmes, both sexes (%)
## 15877                                                                                                                                                     Percentage of graduates from tertiary education graduating from Social Sciences, Journalism and Information programmes, both sexes (%)
## 15878                                                                                                                                                                                        Percentage of graduates from tertiary education graduating from Services programmes, both sexes (%)
## 15879                                                                                                                                                                                                                  Percentage of enrolment in tertiary education in private institutions (%)
## 15880                                                                                                                                                                                                                            Science and engineering students (% of total tertiary students)
## 15881                                                                                                                                                                                                                             Teachers in tertiary education programmes, both sexes (number)
## 15882                                                                                                                                                                                                                                 Teachers in tertiary education programmes, female (number)
## 15883                                                                                                                                                                                                                                              Tertiary education, academic staff (% female)
## 15884                                                                                                                                                                                                                                 Gross enrolment ratio, primary to tertiary, both sexes (%)
## 15885                                                                                                                                                                                             Current education expenditure, primary (% of total expenditure in primary public institutions)
## 15886                                                                                                                                                                                         Current education expenditure, secondary (% of total expenditure in secondary public institutions)
## 15887                                                                                                                                                                                           Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)
## 15888                                                                                                                                                                                                       Current education expenditure, total (% of total expenditure in public institutions)
## 15889                                                                                                                                                                                                                   Current expenditure as % of total expenditure in public institutions (%)
## 15890                                                                                                                                                                                                                                                   Public Expenditure on Education  (% GDP)
## 15891                                                                                                                                                                                          All education staff compensation, primary (% of total expenditure in primary public institutions)
## 15892                                                                                                                                                                                      All education staff compensation, secondary (% of total expenditure in secondary public institutions)
## 15893                                                                                                                                                                                        All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)
## 15894                                                                                                                                                                                                    All education staff compensation, total (% of total expenditure in public institutions)
## 15895                                                                                                                                                                                                                                           Public spending on education, primary (% of GDP)
## 15896                                                                                                                                                                                                                          Government expenditure per student, primary (% of GDP per capita)
## 15897                                                                                                                                                                                                                Expenditure on primary education (% of government expenditure on education)
## 15898                                                                                                                                                                                                                         Spending on teaching materials, primary (% of primary expenditure)
## 15899                                                                                                                                                                                                                                         Public spending on education, secondary (% of GDP)
## 15900                                                                                                                                                                                                                        Government expenditure per student, secondary (% of GDP per capita)
## 15901                                                                                                                                                                                                              Expenditure on secondary education (% of government expenditure on education)
## 15902                                                                                                                                                                                                                     Spending on teaching materials, secondary (% of secondary expenditure)
## 15903                                                                                                                                                                                                                                    Teachers' salaries (% of current education expenditure)
## 15904                                                                                                                                                                                                                                          Public spending on education, tertiary (% of GDP)
## 15905                                                                                                                                                                                                                         Government expenditure per student, tertiary (% of GDP per capita)
## 15906                                                                                                                                                                                                               Expenditure on tertiary education (% of government expenditure on education)
## 15907                                                                                                                                                                                                                   Government expenditure on education, total (% of government expenditure)
## 15908                                                                                                                                                                                                                                      Government expenditure on education, total (% of GDP)
## 15909                                                                                                                                                                                                                                     Public spending on education, total (% of GNI, UNESCO)
## 15910                                                                                                                                                                                                                        Average years of schooling, poorest quintile (ages 15-19, DHS/MICS)
## 15911                                                                                                                                                                                                                        Average years of schooling, richest quintile (ages 15-19, DHS/MICS)
## 15912                                                                                                                                                                                                                                                            Fax machines (per 1,000 people)
## 15913                                                                                                                                                                                                                          International telecom, average price call to USA (US$ per 3 min.)
## 15914                                                                                                                                                                                                                           International telecom, outgoing traffic (minutes per subscriber)
## 15915                                                                                                                                                                                                                                                         Internet users (per 10,000 people)
## 15916                                                                                                                                                                                                                                                     Telephone mainlines (per 1,000 people)
## 15917                                                                                                                                                                                                                                                        Daily newspapers (per 1,000 people)
## 15918                                                                                                                                                                                                                                                      Personal computers (per 1,000 people)
## 15919                                                                                                                                                                                                                                                           Mobile phones (per 1,000 people)
## 15920                                                                                                                                                                                                                                           Telephone mainlines in largest city (% of total)
## 15921                                                                                                                                                                                                                                                  Telephone mainlines, waiting time (years)
## 15922                                                                                                                                                                                                                                                                  Radios (per 1,000 people)
## 15923                                                                                                                                                                                                                                                         Television sets (per 1,000 people)
## 15924                                                                                                                                                                                                                                                            Aircraft departures (thousands)
## 15925                                                                                                                                                                                                                                                            Air transport, freight (ton-km)
## 15926                                                                                                                                                                                                                                              Air transport, passengers carried (thousands)
## 15927                                                                                                                                                                                                                                               Railways, goods transported (million ton-km)
## 15928                                                                                                                                                                                                                                                      Rail traffic (km per million US$ GDP)
## 15929                                                                                                                                                                                                                                                  Roads, goods transported (million ton-km)
## 15930                                                                                                                                                                                                                                      Roads, normalized index (100 = expected total length)
## 15931                                                                                                                                                                                                                                                                           Roads, paved (%)
## 15932                                                                                                                                                                                              There are periods of absence due to childcare accounted for in pension benefits (1=yes; 0=no)
## 15933                                                                                                                                                                                             The age at which men and women can retire with full pension benefits is the same (1=yes; 0=no)
## 15934                                                                                                                                                                                                                   The mandatory retirement age for men and women is the same (1=yes; 0=no)
## 15935                                                                                                                                                                                          The age at which men and women can retire with partial pension benefits is the same (1=yes; 0=no)
## 15936                                                                                                                                                                                                                                                           Mandatory retirement age, female
## 15937                                                                                                                                                                                                                                                  Retirement age with full benefits, female
## 15938                                                                                                                                                                                                                                                    Retirement age with full benefits, male
## 15939                                                                                                                                                                                                                                                             Mandatory retirement age, male
## 15940                                                                                                                                                                                                                                               Retirement age with partial benefits, female
## 15941                                                                                                                                                                                                                                                 Retirement age with partial benefits, male
## 15942                                                                                                                                                                                                                    A woman can apply for a passport in the same way as a man (1=yes; 0=no)
## 15943                                                                                                                                                                                                                     A woman can register a business in the same way as a man (1=yes; 0=no)
## 15944                                                                                                                                                                                                                         A woman can sign a contract in the same way as a man (1=yes; 0=no)
## 15945                                                                                                                                                                                                                                              Main cooking fuel: charcoal (% of households)
## 15946                                                                                                                                                                                                                                     Main cooking fuel: agricultural crop (% of households)
## 15947                                                                                                                                                                                                                                                  Main cooking fuel: dung (% of households)
## 15948                                                                                                                                                                                                                                          Main cooking fuel: electricity  (% of households)
## 15949                                                                                                                                                                                                                                    Location of cooking: inside the house (% of households)
## 15950                                                                                                                                                                                                                                Main cooking fuel: LPG/natural gas/biogas (% of households)
## 15951                                                                                                                                                                                                                                        Location of cooking: other places (% of households)
## 15952                                                                                                                                                                                                                                            Location of cooking: outdoors (% of households)
## 15953                                                                                                                                                                                                                                   Location of cooking: separate building (% of households)
## 15954                                                                                                                                                                                                                                    Main cooking fuel: straw/shrubs/grass (% of households)
## 15955                                                                                                                                                                                                                                                  Main cooking fuel: wood (% of households)
## 15956                                                                                                                                                                                                              A woman can travel outside the country in the same way as a man (1=yes; 0=no)
## 15957                                                                                                                                                        Women participating in the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)
## 15958                                                                                                                                                                                                              Women participating in making daily purchase decisions (% of women age 15-49)
## 15959                                                                                                                                                                                                          Women participating in decision of what food to cook daily (% of women age 15-49)
## 15960                                                                                                                                                                                                                    Women participating in own health care decisions (% of women age 15-49)
## 15961                                                                                                                                                                                                      Decision maker about a woman's own health care: mainly husband (% of women age 15-49)
## 15962                                                                                                                                                                                                               Decision maker about a woman's own health care: other (% of women age 15-49)
## 15963                                                                                                                                                                                                        Decision maker about a woman's own health care: someone else (% of women age 15-49)
## 15964                                                                                                                                                                                                         Decision maker about a woman's own health care: mainly wife (% of women age 15-49)
## 15965                                                                                                                                                                                            Decision maker about a woman's own health care: wife and husband jointly (% of women age 15-49)
## 15966                                                                                                                                                Women participating in none of the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)
## 15967                                                                                                                                                                                                    Women participating in making major household purchase decisions (% of women age 15-49)
## 15968                                                                                                                                                                                                      Decision maker about major household purchases: mainly husband (% of women age 15-49)
## 15969                                                                                                                                                                                                               Decision maker about major household purchases: other (% of women age 15-49)
## 15970                                                                                                                                                                                                        Decision maker about major household purchases: someone else (% of women age 15-49)
## 15971                                                                                                                                                                                                         Decision maker about major household purchases: mainly wife (% of women age 15-49)
## 15972                                                                                                                                                                                            Decision maker about major household purchases: wife and husband jointly (% of women age 15-49)
## 15973                                                                                                                                               Women making their own informed decisions regarding sexual relations, contraceptive use and reproductive health care  (% of women age 15-49)
## 15974                                                                                                                                                                                             Women participating in decision of visits to family, relatives, friends (% of women age 15-49)
## 15975                                                                                                                                                                                    Decision maker about a woman's visits to her family or relatives: mainly husband (% of women age 15-49)
## 15976                                                                                                                                                                                             Decision maker about a woman's visits to her family or relatives: other (% of women age 15-49)
## 15977                                                                                                                                                                                      Decision maker about a woman's visits to her family or relatives: someone else (% of women age 15-49)
## 15978                                                                                                                                                                                       Decision maker about a woman's visits to her family or relatives: mainly wife (% of women age 15-49)
## 15979                                                                                                                                                                                    Decision maker about Visits to her family or relatives: wife and husband jointly (% of women age 15-49)
## 15980                                                                                                                                                                                                                                  Dismissal of pregnant workers is prohibited (1=yes; 0=no)
## 15981                                                                                                                                                                                                          A woman can work in a job deemed dangerous in the same way as a man (1=yes; 0=no)
## 15982                                                                                                                                                                                                                             Female legislators, senior officials and managers (% of total)
## 15983                                                                                                                                                                                                                                     Proportion of women in ministerial level positions (%)
## 15984                                                                                                                                                                                                                              Proportion of seats held by women in national parliaments (%)
## 15985                                                                                                                                                                                                                                     Female professional and technical workers (% of total)
## 15986                                                                                                                                                                                                                               A woman can get a job in the same way as a man (1=yes; 0=no)
## 15987                                                                                                                                                                                                                                                  Households with water on the premises (%)
## 15988                                                                                                                                                                                                                             Households with water less than 30 minutes away round trip (%)
## 15989                                                                                                                                                                                                                             Households with water 30 minutes or longer away round trip (%)
## 15990                                                                                                                                                                                                                    A woman can be head of household in the same way as a man (1=yes; 0=no)
## 15991                                                                                                                                                                                                                 A woman can travel outside her home in the same way as a man (1=yes; 0=no)
## 15992                                                                                                                                                                                                        Male and female surviving spouses have equal rights to inherit assets (1=yes; 0=no)
## 15993                                                                                                                                                                                                    Sons and daughters have equal rights to inherit assets from their parents (1=yes; 0=no)
## 15994                                                                                                                                                                                                               A woman can work in an industrial job in the same way as a man (1=yes; 0=no)
## 15995                                                                                                                                                                                                                 Nonpregnant and nonnursing women can do the same jobs as men (1=yes; 0=no)
## 15996                                                                                                                                                                                            The law grants spouses equal administrative authority over assets during marriage (1=yes; 0=no)
## 15997                                                                                                                                                                                                                         Law prohibits or invalidates child or early marriage (1=yes; 0=no)
## 15998                                                                                                                                                                                                         The law prohibits discrimination in access to credit based on gender (1=yes; 0=no)
## 15999                                                                                                                                                                                                Law mandates equal remuneration for females and males for work of equal value (1=yes; 0=no)
## 16000                                                                                                                                                                                                                                       Women Business and the Law Index Score (scale 1-100)
## 16001                                                                                                                                                                                                                          Women, Business and the Law: Assets Indicator Score (scale 1-100)
## 16002                                                                                                                                                                                                                Women, Business and the Law: Entrepreneurship Indicator Score (scale 1-100)
## 16003                                                                                                                                                                                                                        Women, Business and the Law: Mobility Indicator Score (scale 1-100)
## 16004                                                                                                                                                                                                                        Women, Business and the Law: Marriage Indicator Score (scale 1-100)
## 16005                                                                                                                                                                                                                         Women, Business and the Law: Pension Indicator Score (scale 1-100)
## 16006                                                                                                                                                                                                                      Women, Business and the Law: Parenthood Indicator Score (scale 1-100)
## 16007                                                                                                                                                                                                                             Women, Business and the Law: Pay Indicator Score (scale 1-100)
## 16008                                                                                                                                                                                                                       Women, Business and the Law: Workplace Indicator Score (scale 1-100)
## 16009                                                                                                                                                                                                                                  Law mandates paid or unpaid maternity leave (1=yes; 0=no)
## 16010                                                                                                                                                                                                              The law provides for the valuation of nonmonetary contributions (1=yes; 0=no)
## 16011                                                                                                                                                                                                               The law prohibits discrimination in employment based on gender (1=yes; 0=no)
## 16012                                                                                                                                                                                                There is no legal provision that requires a married woman to obey her husband (1=yes; 0=no)
## 16013                                                                                                                                                                                                               There is legislation specifically addressing domestic violence (1=yes; 0=no)
## 16014                                                                                                                                                                                                                      There is legislation on sexual harassment in employment (1=yes; 0=no)
## 16015                                                                                                                                                                                                                    A woman can choose where to live in the same way as a man (1=yes; 0=no)
## 16016                                                                                                       Women and girls who participate in activities during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16017                                                                                                       Women and girls who participate in activities during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16018                                                                                                                                    Women and girls who participate in activities during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16019                                                                                          Women and girls who have private places to wash and change during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16020                                                                                          Women and girls who have private places to wash and change during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16021                                                                                                                       Women and girls who have private places to wash and change during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16022                                                                                                                                 Women and girls who use menstrual materials, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16023                                                                                                                                 Women and girls who use menstrual materials, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16024                                                                                                                                                              Women and girls who use menstrual materials (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16025                                                                                                                                                                                                          Mothers are guaranteed an equivalent position after maternity leave (1=yes; 0=no)
## 16026                                                                                                                                                                                                                           A woman can work at night in the same way as a man (1=yes; 0=no)
## 16027                                                                                                                                                                                                                 Nondiscrimination clause mentions gender in the constitution (1=yes; 0=no)
## 16028                                                                                                                                                                                                            A woman can obtain a judgment of divorce in the same way as a man (1=yes; 0=no)
## 16029                                                                                                                                                                                                                     A woman can open a bank account in the same way as a man (1=yes; 0=no)
## 16030                                                                                                                                                                                                           Women who own a house both alone and jointly (% of women age 15-49): Q1 (lowest)
## 16031                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q2
## 16032                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q3
## 16033                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q4
## 16034                                                                                                                                                                                                          Women who own a house both alone and jointly (% of women age 15-49): Q5 (highest)
## 16035                                                                                                                                                                                                                        Women who own a house both alone and jointly (% of women age 15-49)
## 16036                                                                                                                                                                                                                         Men who own a house both alone and jointly (% of men): Q1 (lowest)
## 16037                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q2
## 16038                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q3
## 16039                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q4
## 16040                                                                                                                                                                                                                        Men who own a house both alone and jointly (% of men): Q5 (highest)
## 16041                                                                                                                                                                                                                                      Men who own a house both alone and jointly (% of men)
## 16042                                                                                                                                                                                                                            Women who own a house alone (% of women age 15-49): Q1 (lowest)
## 16043                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q2
## 16044                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q3
## 16045                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q4
## 16046                                                                                                                                                                                                                           Women who own a house alone (% of women age 15-49): Q5 (highest)
## 16047                                                                                                                                                                                                                                         Women who own a house alone (% of women age 15-49)
## 16048                                                                                                                                                                                                                                          Men who own a house alone (% of men): Q1 (lowest)
## 16049                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q2
## 16050                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q3
## 16051                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q4
## 16052                                                                                                                                                                                                                                         Men who own a house alone (% of men): Q5 (highest)
## 16053                                                                                                                                                                                                                                                       Men who own a house alone (% of men)
## 16054                                                                                                                                                                                                                          Women who own a house jointly (% of women age 15-49): Q1 (lowest)
## 16055                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q2
## 16056                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q3
## 16057                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q4
## 16058                                                                                                                                                                                                                         Women who own a house jointly (% of women age 15-49): Q5 (highest)
## 16059                                                                                                                                                                                                                                       Women who own a house jointly (% of women age 15-49)
## 16060                                                                                                                                                                                                                                        Men who own a house jointly (% of men): Q1 (lowest)
## 16061                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q2
## 16062                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q3
## 16063                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q4
## 16064                                                                                                                                                                                                                                       Men who own a house jointly (% of men): Q5 (highest)
## 16065                                                                                                                                                                                                                                                     Men who own a house jointly (% of men)
## 16066                                                                                                                                                                                                                           Women who do not own a house (% of women age 15-49): Q1 (lowest)
## 16067                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q2
## 16068                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q3
## 16069                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q4
## 16070                                                                                                                                                                                                                          Women who do not own a house (% of women age 15-49): Q5 (highest)
## 16071                                                                                                                                                                                                                                        Women who do not own a house (% of women age 15-49)
## 16072                                                                                                                                                                                                                                         Men who do not own a house (% of men): Q1 (lowest)
## 16073                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q2
## 16074                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q3
## 16075                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q4
## 16076                                                                                                                                                                                                                                        Men who do not own a house (% of men): Q5 (highest)
## 16077                                                                                                                                                                                                                                                      Men who do not own a house (% of men)
## 16078                                                                                                                                                                                                              Women who own land both alone and jointly (% of women age 15-49): Q1 (lowest)
## 16079                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q2
## 16080                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q3
## 16081                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q4
## 16082                                                                                                                                                                                                             Women who own land both alone and jointly (% of women age 15-49): Q5 (highest)
## 16083                                                                                                                                                                                                                           Women who own land both alone and jointly (% of women age 15-49)
## 16084                                                                                                                                                                                                                            Men who own land both alone and jointly (% of men): Q1 (lowest)
## 16085                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q2
## 16086                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q3
## 16087                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q4
## 16088                                                                                                                                                                                                                           Men who own land both alone and jointly (% of men): Q5 (highest)
## 16089                                                                                                                                                                                                                                         Men who own land both alone and jointly (% of men)
## 16090                                                                                                                                                                                                                               Women who own land alone (% of women age 15-49): Q1 (lowest)
## 16091                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q2
## 16092                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q3
## 16093                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q4
## 16094                                                                                                                                                                                                                              Women who own land alone (% of women age 15-49): Q5 (highest)
## 16095                                                                                                                                                                                                                                            Women who own land alone (% of women age 15-49)
## 16096                                                                                                                                                                                                                                             Men who own land alone (% of men): Q1 (lowest)
## 16097                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q2
## 16098                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q3
## 16099                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q4
## 16100                                                                                                                                                                                                                                            Men who own land alone (% of men): Q5 (highest)
## 16101                                                                                                                                                                                                                                                          Men who own land alone (% of men)
## 16102                                                                                                                                                                                                                             Women who own land jointly (% of women age 15-49): Q1 (lowest)
## 16103                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q2
## 16104                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q3
## 16105                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q4
## 16106                                                                                                                                                                                                                            Women who own land jointly (% of women age 15-49): Q5 (highest)
## 16107                                                                                                                                                                                                                                          Women who own land jointly (% of women age 15-49)
## 16108                                                                                                                                                                                                                                           Men who own land jointly (% of men): Q1 (lowest)
## 16109                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q2
## 16110                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q3
## 16111                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q4
## 16112                                                                                                                                                                                                                                          Men who own land jointly (% of men): Q5 (highest)
## 16113                                                                                                                                                                                                                                                        Men who own land jointly (% of men)
## 16114                                                                                                                                                                                                                              Women who do not own land (% of women age 15-49): Q1 (lowest)
## 16115                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q2
## 16116                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q3
## 16117                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q4
## 16118                                                                                                                                                                                                                             Women who do not own land (% of women age 15-49): Q5 (highest)
## 16119                                                                                                                                                                                                                                           Women who do not own land (% of women age 15-49)
## 16120                                                                                                                                                                                                                                            Men who do not own land (% of men): Q1 (lowest)
## 16121                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q2
## 16122                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q3
## 16123                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q4
## 16124                                                                                                                                                                                                                                           Men who do not own land (% of men): Q5 (highest)
## 16125                                                                                                                                                                                                                                                         Men who do not own land (% of men)
## 16126                                                                                                                                                                                                              Men and women have equal ownership rights to immovable property (1=yes; 0=no)
## 16127                                                                                                                                                                                               Criminal penalties or civil remedies exist for sexual harassment in employment (1=yes; 0=no)
## 16128                                                                                                                                                                                                                                         Female migrants (% of international migrant stock)
## 16129                                                                                                                                                                                     Women with a national identity card or equivalent foundational identity document (% of women ages 15+)
## 16130                                                                                                                                                                                         Men with a national identity card or equivalent foundational identity document (% of men ages 15+)
## 16131                                                                                                                                                                                                                              A woman has the same rights to remarry as a man (1=yes; 0=no)
## 16132                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q1 (lowest)
## 16133                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q2
## 16134                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q3
## 16135                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q4
## 16136                                                                                                                                                                      Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q5 (highest)
## 16137                                                                                                                                                                                    Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%)
## 16138                                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q1 (lowest)
## 16139                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q2
## 16140                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q3
## 16141                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q4
## 16142                                                                                                                                                                              Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q5 (highest)
## 16143                                                                                                                                                                                            Women who believe a wife is justified refusing sex with her husband for none of the reasons (%)
## 16144                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q1 (lowest)
## 16145                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q2
## 16146                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q3
## 16147                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q4
## 16148                                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q5 (highest)
## 16149                                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband for all of the reasons (%)
## 16150                                                                                                                                                              Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q1 (lowest)
## 16151                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q2
## 16152                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q3
## 16153                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q4
## 16154                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q5 (highest)
## 16155                                                                                                                                                                           Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%)
## 16156                                                                                                                                                                    Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q1 (lowest)
## 16157                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q2
## 16158                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q3
## 16159                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q4
## 16160                                                                                                                                                                   Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q5 (highest)
## 16161                                                                                                                                                                                 Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%)
## 16162                                                                                                                                                      Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q1 (lowest)
## 16163                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q2
## 16164                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q3
## 16165                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q4
## 16166                                                                                                                                                     Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q5 (highest)
## 16167                                                                                                                                                                   Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%)
## 16168                                                                                                                                                                                                       Proportion of time spent on unpaid domestic and care work, female (% of 24 hour day)
## 16169                                                                                                                                                                                                        Proportion of time spent on unpaid domestic and care work, male (% of 24 hour day) 
## 16170                                                                                                                                                              Proportion of women subjected to physical and/or sexual violence in the last 12 months (% of ever-partnered women ages 15-49)
## 16171                                                                                                                                                                                          Proportion of women who have ever experienced any form of sexual violence (% of women ages 15-49)
## 16172                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she argues with him (%): Q1 (lowest)
## 16173                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q2
## 16174                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q3
## 16175                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q4
## 16176                                                                                                                                                                                    Women who believe a husband is justified in beating his wife when she argues with him (%): Q5 (highest)
## 16177                                                                                                                                                                                                  Women who believe a husband is justified in beating his wife when she argues with him (%)
## 16178                                                                                                                                                                                      Women who believe a husband is justified in beating his wife when she burns the food (%): Q1 (lowest)
## 16179                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q2
## 16180                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q3
## 16181                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q4
## 16182                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she burns the food (%): Q5 (highest)
## 16183                                                                                                                                                                                                   Women who believe a husband is justified in beating his wife when she burns the food (%)
## 16184                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q1 (lowest)
## 16185                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q2
## 16186                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q3
## 16187                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q4
## 16188                                                                                                                                                                       Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q5 (highest)
## 16189                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she goes out without telling him (%)
## 16190                                                                                                                                                                          Proportion of women who have sought help to stop physical or sexual violence (% of ever-married women ages 15-49)
## 16191                                                                                                                                                                               Proportion of women who have ever experienced intimate partner violence (% of ever-married women ages 15-49)
## 16192                                                                                                                                                                                                                                  Spousal physical or sexual violence in last 12 months (%)
## 16193                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she neglects the children (%): Q1 (lowest)
## 16194                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q2
## 16195                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q3
## 16196                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q4
## 16197                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she neglects the children (%): Q5 (highest)
## 16198                                                                                                                                                                                            Women who believe a husband is justified in beating his wife when she neglects the children (%)
## 16199                                                                                                                                                                                        Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q1 (lowest)
## 16200                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q2
## 16201                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q3
## 16202                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q4
## 16203                                                                                                                                                                                       Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q5 (highest)
## 16204                                                                                                                                                                                                     Women who believe a husband is justified in beating his wife (any of five reasons) (%)
## 16205                                                                                                                                                                                Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q1 (lowest)
## 16206                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q2
## 16207                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q3
## 16208                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q4
## 16209                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q5 (highest)
## 16210                                                                                                                                                                                             Women who believe a husband is justified in beating his wife when she refuses sex with him (%)
## 16211                                                                                                                                                                                                      Problems in accessing health care (not wanting to go alone) (% of women): Q1 (lowest)
## 16212                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q2
## 16213                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q3
## 16214                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q4
## 16215                                                                                                                                                                                                     Problems in accessing health care (not wanting to go alone) (% of women): Q5 (highest)
## 16216                                                                                                                                                                                                  Problems in accessing health care (distance to health facility) (% of women): Q1 (lowest)
## 16217                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q2
## 16218                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q3
## 16219                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q4
## 16220                                                                                                                                                                                                 Problems in accessing health care (distance to health facility) (% of women): Q5 (highest)
## 16221                                                                                                                                                                                                  Problems in accessing health care (getting money for treatment) (% of women): Q1 (lowest)
## 16222                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q2
## 16223                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q3
## 16224                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q4
## 16225                                                                                                                                                                                                 Problems in accessing health care (getting money for treatment) (% of women): Q5 (highest)
## 16226                                                                                                                                                                                   Problems in accessing health care (concern there may not be a female provider) (% of women): Q1 (lowest)
## 16227                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q2
## 16228                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q3
## 16229                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q4
## 16230                                                                                                                                                                                  Problems in accessing health care (concern there may not be a female provider) (% of women): Q5 (highest)
## 16231                                                                                                                                                                                       Problems in accessing health care (getting permission to go for treatment) (% of women): Q1 (lowest)
## 16232                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q2
## 16233                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q3
## 16234                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q4
## 16235                                                                                                                                                                                      Problems in accessing health care (getting permission to go for treatment) (% of women): Q5 (highest)
## 16236                                                                                                                                                                                                Problems in accessing health care (any of the specified problems) (% of women): Q1 (lowest)
## 16237                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q2
## 16238                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q3
## 16239                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q4
## 16240                                                                                                                                                                                               Problems in accessing health care (any of the specified problems) (% of women): Q5 (highest)
## 16241                                                                                                                                                                                                     Problems in accessing health care (having to take transport) (% of women): Q1 (lowest)
## 16242                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q2
## 16243                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q3
## 16244                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q4
## 16245                                                                                                                                                                                                    Problems in accessing health care (having to take transport) (% of women): Q5 (highest)
## 16246                                                                                                                                                                                            Problems in accessing health care (knowing where to go for treatment) (% of women): Q1 (lowest)
## 16247                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q2
## 16248                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q3
## 16249                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q4
## 16250                                                                                                                                                                                           Problems in accessing health care (knowing where to go for treatment) (% of women): Q5 (highest)
## 16251                                                                                                                                                                                                                                                Inpatient admission rate (% of population )
## 16252                                                                                                                                                                        Total alcohol consumption per capita, female (liters of pure alcohol, projected estimates, female 15+ years of age)
## 16253                                                                                                                                                                                       Total alcohol consumption per capita (liters of pure alcohol, projected estimates, 15+ years of age)
## 16254                                                                                                                                                                            Total alcohol consumption per capita, male (liters of pure alcohol, projected estimates, male 15+ years of age)
## 16255                                                                                                                                                                                                               Prevalence of anemia among women of reproductive age (% of women ages 15-49)
## 16256                                                                                                                                                                                                                       Prevalence of anemia among children (% of children ages 6-59 months)
## 16257                                                                                                                                                                                                                      Prevalence of anemia among non-pregnant women (% of women ages 15-49)
## 16258                                                                                                                                                                                                                        Condom use, population ages 15-24, female (% of females ages 15-24)
## 16259                                                                                                                                                                                                                            Condom use, population ages 15-24, male (% of males ages 15-24)
## 16260                                                                                                                                                                                                                              Condom use at last high-risk sex, adult female (% ages 15-49)
## 16261                                                                                                                                                                                                                                Condom use at last high-risk sex, adult male (% ages 15-49)
## 16262                                                                                                                                                                                                                                                                          Number of Doctors
## 16263                                                                                                                                                                                                                                                            Number of deaths ages 5-9 years
## 16264                                                                                                                                                                                                                                                           Number of deaths ages 5-14 years
## 16265                                                                                                                                                                                                                                                          Number of deaths ages 10-14 years
## 16266                                                                                                                                                                                                                                                          Number of deaths ages 10-19 years
## 16267                                                                                                                                                                                                                                                          Number of deaths ages 15-19 years
## 16268                                                                                                                                                                                                                                                          Number of deaths ages 20-24 years
## 16269                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, female (% of female population ages 0-4)
## 16270                                                                                                                                                   Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, male (% of male population ages 0-4)
## 16271                                                                                                                                                              Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4 (% of population ages 0-4)
## 16272                                                                                                                                             Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, female (% of female population ages 5-14)
## 16273                                                                                                                                                 Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, male (% of male population ages 5-14)
## 16274                                                                                                                                                            Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14 (% of population ages 5-14)
## 16275                                                                                                                                           Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, female (% of female population ages 15-59)
## 16276                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, male (% of male population ages 15-59)
## 16277                                                                                                                                                          Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59 (% of population ages 15-59)
## 16278                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, female (% of female population ages 60+)
## 16279                                                                                                                                                   Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, male (% of male population ages 60+)
## 16280                                                                                                                                                              Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+ (% of population ages 60+)
## 16281                                                                                                                                                                  Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, female (% of female population)
## 16282                                                                                                                                                                      Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, male (% of male population)
## 16283                                                                                                                                                                                      Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)
## 16284                                                                                                                                                                                                                                                                    Number of infant deaths
## 16285                                                                                                                                                                                                                                                            Number of infant deaths, female
## 16286                                                                                                                                                                                                                                                              Number of infant deaths, male
## 16287                                                                                                                                                                                                              Cause of death, by injury, ages 0-4, female (% of female population ages 0-4)
## 16288                                                                                                                                                                                                                  Cause of death, by injury, ages 0-4, male (% of male population ages 0-4)
## 16289                                                                                                                                                                                                                             Cause of death, by injury, ages 0-4 (% of population ages 0-4)
## 16290                                                                                                                                                                                                            Cause of death, by injury, ages 5-14, female (% of female population ages 5-14)
## 16291                                                                                                                                                                                                                Cause of death, by injury, ages 5-14, male (% of male population ages 5-14)
## 16292                                                                                                                                                                                                                           Cause of death, by injury, ages 5-14 (% of population ages 5-14)
## 16293                                                                                                                                                                                                          Cause of death, by injury, ages 15-59, female (% of female population ages 15-59)
## 16294                                                                                                                                                                                                              Cause of death, by injury, ages 15-59, male (% of male population ages 15-59)
## 16295                                                                                                                                                                                                                         Cause of death, by injury, ages 15-59 (% of population ages 15-59)
## 16296                                                                                                                                                                                                              Cause of death, by injury, ages 60+, female (% of female population ages 60+)
## 16297                                                                                                                                                                                                                  Cause of death, by injury, ages 60+, male (% of male population ages 60+)
## 16298                                                                                                                                                                                                                             Cause of death, by injury, ages 60+ (% of population ages 60+)
## 16299                                                                                                                                                                                                                                 Cause of death, by injury, female (% of female population)
## 16300                                                                                                                                                                                                                                     Cause of death, by injury, male (% of male population)
## 16301                                                                                                                                                                                                                                                     Cause of death, by injury (% of total)
## 16302                                                                                                                                                                                                                                                                Number of under-five deaths
## 16303                                                                                                                                                                                                                                                        Number of under-five deaths, female
## 16304                                                                                                                                                                                                                                                          Number of under-five deaths, male
## 16305                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 0-4, female (% of female population ages 0-4)
## 16306                                                                                                                                                                                               Cause of death, by non-communicable diseases, ages 0-4, male (% of male population ages 0-4)
## 16307                                                                                                                                                                                                          Cause of death, by non-communicable diseases, ages 0-4 (% of population ages 0-4)
## 16308                                                                                                                                                                                         Cause of death, by non-communicable diseases, ages 5-14, female (% of female population ages 5-14)
## 16309                                                                                                                                                                                             Cause of death, by non-communicable diseases, ages 5-14, male (% of male population ages 5-14)
## 16310                                                                                                                                                                                                        Cause of death, by non-communicable diseases, ages 5-14 (% of population ages 5-14)
## 16311                                                                                                                                                                                       Cause of death, by non-communicable diseases, ages 15-59, female (% of female population ages 15-59)
## 16312                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 15-59, male (% of male population ages 15-59)
## 16313                                                                                                                                                                                                      Cause of death, by non-communicable diseases, ages 15-59 (% of population ages 15-59)
## 16314                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 60+, female (% of female population ages 60+)
## 16315                                                                                                                                                                                               Cause of death, by non-communicable diseases, ages 60+, male (% of male population ages 60+)
## 16316                                                                                                                                                                                                          Cause of death, by non-communicable diseases, ages 60+ (% of population ages 60+)
## 16317                                                                                                                                                                                                              Cause of death, by non-communicable diseases, female (% of female population)
## 16318                                                                                                                                                                                                                  Cause of death, by non-communicable diseases, male (% of male population)
## 16319                                                                                                                                                                                                                                  Cause of death, by non-communicable diseases (% of total)
## 16320                                                                                                                                                                                                                                                                  Number of neonatal deaths
## 16321                                                                                                                                                                                                                                                                      Number of stillbirths
## 16322                                                                                                                                                                                                                             Probability of dying among children ages 5-9 years (per 1,000)
## 16323                                                                                                                                                                                                                          Probability of dying at age 5-14 years (per 1,000 children age 5)
## 16324                                                                                                                                                                                                                        Probability of dying among adolescents ages 10-14 years (per 1,000)
## 16325                                                                                                                                                                                                                        Probability of dying among adolescents ages 10-19 years (per 1,000)
## 16326                                                                                                                                                                                                                        Probability of dying among adolescents ages 15-19 years (per 1,000)
## 16327                                                                                                                                                                                                                              Probability of dying among youth ages 20-24 years (per 1,000)
## 16328                                                                                                                                                                                                                                                          Adults (ages 15+) living with HIV
## 16329                                                                                                                                                                                                                                                   AIDS estimated deaths (UNAIDS estimates)
## 16330                                                                                                                                                                                                                                   Women's share of population ages 15+ living with HIV (%)
## 16331                                                                                                                                                                                                                                  HIV prevalence rate, adult 15-49 years (%; high estimate)
## 16332                                                                                                                                                                                                                                   HIV prevalence rate, adult 15-49 years (%; low estimate)
## 16333                                                                                                                                                                                                                                      Prevalence of HIV, total (% of population ages 15-49)
## 16334                                                                                                                                                                                                                           Mortality rate, female child (per 1,000 female children age one)
## 16335                                                                                                                                                                                                                               Mortality rate, male child (per 1,000 male children age one)
## 16336                                                                                                                                                                                                                                            Mortality rate, under-5 (per 1,000 live births)
## 16337                                                                                                                                                                                                                                    Mortality rate, under-5, female (per 1,000 live births)
## 16338                                                                                                                                                                                                                                      Mortality rate, under-5, male (per 1,000 live births)
## 16339                                                                                                                                                                                                                                Under-5 mortality rate (per 1,000 live births): Q1 (lowest)
## 16340                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q2
## 16341                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q3
## 16342                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q4
## 16343                                                                                                                                                                                                                               Under-5 mortality rate (per 1,000 live births): Q5 (highest)
## 16344                                                                                                                                                                                                       Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, female (%)
## 16345                                                                                                                                                                                                         Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, male (%)
## 16346                                                                                                                                                                                                               Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70 (%)
## 16347                                                                                                                                                                                                                                           Mortality rate, neonatal (per 1,000 live births)
## 16348                                                                                                                                                                                                                                                   Stillbirth rate (per 1,000 total births)
## 16349                                                                                                                                                                                                               Acceptability of media messages on family planning (% of women): Q1 (lowest)
## 16350                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q2
## 16351                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q3
## 16352                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q4
## 16353                                                                                                                                                                                                              Acceptability of media messages on family planning (% of women): Q5 (highest)
## 16354                                                                                                                                                                                                                                  Median age at first birth (women ages 25-49): Q1 (lowest)
## 16355                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q2
## 16356                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q3
## 16357                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q4
## 16358                                                                                                                                                                                                                                 Median age at first birth (women ages 25-49): Q5 (highest)
## 16359                                                                                                                                                                                                                               Median age at first marriage (women ages 25-49): Q1 (lowest)
## 16360                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q2
## 16361                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q3
## 16362                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q4
## 16363                                                                                                                                                                                                                              Median age at first marriage (women ages 25-49): Q5 (highest)
## 16364                                                                                                                                                                                                                     Median age at first sexual intercourse (women ages 25-49): Q1 (lowest)
## 16365                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q2
## 16366                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q3
## 16367                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q4
## 16368                                                                                                                                                                                                                    Median age at first sexual intercourse (women ages 25-49): Q5 (highest)
## 16369                                                                                                                                                                                                                    Heard family planning on radio and television (% of women): Q1 (lowest)
## 16370                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q2
## 16371                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q3
## 16372                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q4
## 16373                                                                                                                                                                                                                   Heard family planning on radio and television (% of women): Q5 (highest)
## 16374                                                                                                                                                                                                                                     Mean ideal number of children (per woman): Q1 (lowest)
## 16375                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q2
## 16376                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q3
## 16377                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q4
## 16378                                                                                                                                                                                                                                    Mean ideal number of children (per woman): Q5 (highest)
## 16379                                                                                                                                                                                                                  Knowledge of contraception (any method) (% of married women): Q1 (lowest)
## 16380                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q2
## 16381                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q3
## 16382                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q4
## 16383                                                                                                                                                                                                                 Knowledge of contraception (any method) (% of married women): Q5 (highest)
## 16384                                                                                                                                                                                                               Knowledge of contraception (modern method) (% of married women): Q1 (lowest)
## 16385                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q2
## 16386                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q3
## 16387                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q4
## 16388                                                                                                                                                                                                              Knowledge of contraception (modern method) (% of married women): Q5 (highest)
## 16389                                                                                                                                                                                                                      Desire to stop (limit) childbearing (% of married women): Q1 (lowest)
## 16390                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q2
## 16391                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q3
## 16392                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q4
## 16393                                                                                                                                                                                                                     Desire to stop (limit) childbearing (% of married women): Q5 (highest)
## 16394                                                                                                                                                                                                                                                Median birth interval (months): Q1 (lowest)
## 16395                                                                                                                                                                                                                                                         Median birth interval (months): Q2
## 16396                                                                                                                                                                                                                                                         Median birth interval (months): Q3
## 16397                                                                                                                                                                                                                                                         Median birth interval (months): Q4
## 16398                                                                                                                                                                                                                                               Median birth interval (months): Q5 (highest)
## 16399                                                                                                                                                                                                                        Fertility planning status (wanted later) (% of births): Q1 (lowest)
## 16400                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q2
## 16401                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q3
## 16402                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q4
## 16403                                                                                                                                                                                                                       Fertility planning status (wanted later) (% of births): Q5 (highest)
## 16404                                                                                                                                                                                                                                Family planning messages in print (% of women): Q1 (lowest)
## 16405                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q2
## 16406                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q3
## 16407                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q4
## 16408                                                                                                                                                                                                                               Family planning messages in print (% of women): Q5 (highest)
## 16409                                                                                                                                                                                   Demand for family planning satisfied by any methods (% of married women with demand for family planning)
## 16410                                                                                                                                                                                Demand for family planning satisfied by modern methods (% of married women with demand for family planning)
## 16411                                                                                                                                                                                                                      Fertility planning status (wanted no more) (% of births): Q1 (lowest)
## 16412                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q2
## 16413                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q3
## 16414                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q4
## 16415                                                                                                                                                                                                                     Fertility planning status (wanted no more) (% of births): Q5 (highest)
## 16416                                                                                                                                                                                                                         Fertility planning status (wanted then) (% of births): Q1 (lowest)
## 16417                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q2
## 16418                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q3
## 16419                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q4
## 16420                                                                                                                                                                                                                        Fertility planning status (wanted then) (% of births): Q5 (highest)
## 16421                                                                                                                                                                                                         People using at least basic drinking water services (% of population): Q1 (lowest)
## 16422                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q2
## 16423                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q3
## 16424                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q4
## 16425                                                                                                                                                                                                        People using at least basic drinking water services (% of population): Q5 (highest)
## 16426                                                                                                                                                                                            People using at least basic drinking water services, rural (% of rural population): Q1 (lowest)
## 16427                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q2
## 16428                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q3
## 16429                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q4
## 16430                                                                                                                                                                                           People using at least basic drinking water services, rural (% of rural population): Q5 (highest)
## 16431                                                                                                                                                                                                         People using at least basic drinking water services, rural (% of rural population)
## 16432                                                                                                                                                                                            People using at least basic drinking water services, urban (% of urban population): Q1 (lowest)
## 16433                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q2
## 16434                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q3
## 16435                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q4
## 16436                                                                                                                                                                                           People using at least basic drinking water services, urban (% of urban population): Q5 (highest)
## 16437                                                                                                                                                                                                         People using at least basic drinking water services, urban (% of urban population)
## 16438                                                                                                                                                                                                                      People using at least basic drinking water services (% of population)
## 16439                                                                                                                                                                                                                           Improved water source, rural (% of rural population with access)
## 16440                                                                                                                                                                                                                           Improved water source, urban (% of urban population with access)
## 16441                                                                                                                                                                                                                                        Improved water source (% of population with access)
## 16442                                                                                                                                                                                                         People using safely managed drinking water services, rural (% of rural population)
## 16443                                                                                                                                                                                                         People using safely managed drinking water services, urban (% of urban population)
## 16444                                                                                                                                                                                                                      People using safely managed drinking water services (% of population)
## 16445                                                                                                                                                                                                                                                            Children (0-14) living with HIV
## 16446                                                                                                                                                                                                                              Prevalence of HIV, young women 15-24 years (%; high estimate)
## 16447                                                                                                                                                                                                                               Prevalence of HIV, young women 15-24 years (%; low estimate)
## 16448                                                                                                                                                                                                                                                   Prevalence of HIV, female (% ages 15-24)
## 16449                                                                                                                                                                               Comprehensive correct knowledge of HIV/AIDS, ages 15-24, female (2 prevent ways and reject 3 misconceptions)
## 16450                                                                                                                                                                                 Comprehensive correct knowledge of HIV/AIDS, ages 15-24, male (2 prevent ways and reject 3 misconceptions)
## 16451                                                                                                                                                                                                                                Prevalence of HIV, young men 15-24 years (%; high estimate)
## 16452                                                                                                                                                                                                                                 Prevalence of HIV, young men 15-24 years (%; low estimate)
## 16453                                                                                                                                                                                                                                                     Prevalence of HIV, male (% ages 15-24)
## 16454                                                                                                                                                                                                                                                Access to anti-retroviral drugs, female (%)
## 16455                                                                                                                                                                                                                                                  Access to anti-retroviral drugs, male (%)
## 16456                                                                                                                                                                                                                              Antiretroviral therapy coverage (% of people living with HIV)
## 16457                                                                                                                                                                                                                                         AIDS deaths in adults and children (high estimate)
## 16458                                                                                                                                                                                                                                          AIDS deaths in adults and children (low estimate)
## 16459                                                                                                                                                                                                                                                         AIDS deaths in adults and children
## 16460                                                                                                                                                                                                                                                Adults (ages 15-49) newly infected with HIV
## 16461                                                                                                                                                                                                                                               Children (ages 0-14) newly infected with HIV
## 16462                                                                                                                                                                                                                      Incidence of HIV, ages 50+ (per 1,000 uninfected population ages 50+)
## 16463                                                                                                                                                                                                   Incidence of HIV, ages 15-49, female (per 1,000 uninfected female population ages 15-49)
## 16464                                                                                                                                                                                                       Incidence of HIV, ages 15-49, male (per 1,000 uninfected male population ages 15-49)
## 16465                                                                                                                                                                                                                         Adults (ages 15+) and children (ages 0-14) newly infected with HIV
## 16466                                                                                                                                                                                                                                    Incidence of HIV, all (per 1,000 uninfected population)
## 16467                                                                                                                                                                                                                                          Young people (ages 15-24) newly infected with HIV
## 16468                                                                                                                                                                                                   Incidence of HIV, ages 15-24, female (per 1,000 uninfected female population ages 15-24)
## 16469                                                                                                                                                                                                       Incidence of HIV, ages 15-24, male (per 1,000 uninfected male population ages 15-24)
## 16470                                                                                                                                                                                                                  Incidence of HIV, ages 15-24 (per 1,000 uninfected population ages 15-24)
## 16471                                                                                                                                                                                                                  Incidence of HIV, ages 15-49 (per 1,000 uninfected population ages 15-49)
## 16472                                                                                                                                                                               Comprehensive correct knowledge of HIV/AIDS, ages 15-49, female (2 prevent ways and reject 3 misconceptions)
## 16473                                                                                                                                                                                 Comprehensive correct knowledge of HIV/AIDS, ages 15-49, male (2 prevent ways and reject 3 misconceptions)
## 16474                                                                                                                                                                                                                                             New HIV infections (0-14 years), high estimate
## 16475                                                                                                                                                                                                                                              New HIV infections (0-14 years), low estimate
## 16476                                                                                                                                                                                                                                                            New HIV infections (0-14 years)
## 16477                                                                                                                                                                                                                                                          New HIV infections, high estimate
## 16478                                                                                                                                                                                                                                                           New HIV infections, low estimate
## 16479                                                                                                                                                                                                                                                                         New HIV infections
## 16480                                                                                                                                                                                                                                        Orphans 0-17 years currently living (high estimate)
## 16481                                                                                                                                                                                                                                         Orphans 0-17 years currently living (low estimate)
## 16482                                                                                                                                                                                                                                                        Orphans 0-17 years currently living
## 16483                                                                                                                                                                                                                                                              Children orphaned by HIV/AIDS
## 16484                                                                                                                                                                                                            Antiretroviral therapy coverage for PMTCT (% of pregnant women living with HIV)
## 16485                                                                                                                                                                                     HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; high estimate)
## 16486                                                                                                                                                                                      HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; low estimate)
## 16487                                                                                                                                                                                                                           Number of HIV positive pregnant women receiving antiretrovirals 
## 16488                                                                                                                                                                                                    HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%)
## 16489                                                                                                                                                                                                                                Adults (ages 15+) and children (0-14 years) living with HIV
## 16490                                                                                                                                                                                                                                         People living with HIV/AIDS, total (high estimate)
## 16491                                                                                                                                                                                                                                          People living with HIV/AIDS, total (low estimate)
## 16492                                                                                                                                                                                                                                                         People living with HIV/AIDS, total
## 16493                                                                                                                                                                                                                                                                        Number of hospitals
## 16494                                                                                                                                                                                                                         Prevalence of hypertension, female (% of female adults ages 30-79)
## 16495                                                                                                                                                                                                                             Prevalence of hypertension, male (% of male adults ages 30-79)
## 16496                                                                                                                                                                                                                                        Prevalence of hypertension (% of adults ages 30-79)
## 16497                                                                                                                                                                                                       Treatment for hypertension, female (% of female adults ages 30-79 with hypertension)
## 16498                                                                                                                                                                                                           Treatment for hypertension, male (% of male adults ages 30-79 with hypertension)
## 16499                                                                                                                                                                                                                      Treatment for hypertension (% of adults ages 30-79 with hypertension)
## 16500                                                                                                                                                                                                             Vaccinations (all vaccinations) (% of children ages 12-23 months): Q1 (lowest)
## 16501                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q2
## 16502                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q3
## 16503                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q4
## 16504                                                                                                                                                                                                            Vaccinations (all vaccinations) (% of children ages 12-23 months): Q5 (highest)
## 16505                                                                                                                                                                                       Immunization Coverage for Children under 5 years old (in % of children population under 5 years old)
## 16506                                                                                                                                                                                                                                           Immunization, HepB3 (% of one-year-old children)
## 16507                                                                                                                                                                                                                                       Immunization, Hib3 (% of children ages 12-23 months)
## 16508                                                                                                                                                                                                                                             Immunization, BCG (% of one-year-old children)
## 16509                                                                                                                                                                                                                          Vaccinations (BCG) (% of children ages 12-23 months): Q1 (lowest)
## 16510                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q2
## 16511                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q3
## 16512                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q4
## 16513                                                                                                                                                                                                                         Vaccinations (BCG) (% of children ages 12-23 months): Q5 (highest)
## 16514                                                                                                                                                                                                                                        Immunization, DPT (% of children ages 12-23 months)
## 16515                                                                                                                                                                                                                        Vaccinations (DPT 3) (% of children ages 12-23 months): Q1 (lowest)
## 16516                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q2
## 16517                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q3
## 16518                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q4
## 16519                                                                                                                                                                                                                       Vaccinations (DPT 3) (% of children ages 12-23 months): Q5 (highest)
## 16520                                                                                                                                                                                                        Immunization, measles second dose (% of children by the nationally recommended age)
## 16521                                                                                                                                                                                                                                    Immunization, measles (% of children ages 12-23 months)
## 16522                                                                                                                                                                                                                      Vaccinations (Measles) (% of children ages 12-23 months): Q1 (lowest)
## 16523                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q2
## 16524                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q3
## 16525                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q4
## 16526                                                                                                                                                                                                                     Vaccinations (Measles) (% of children ages 12-23 months): Q5 (highest)
## 16527                                                                                                                                                                                                              Vaccinations (no vaccinations) (% of children ages 12-23 months): Q1 (lowest)
## 16528                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q2
## 16529                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q3
## 16530                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q4
## 16531                                                                                                                                                                                                             Vaccinations (no vaccinations) (% of children ages 12-23 months): Q5 (highest)
## 16532                                                                                                                                                                                                                                            Immunization, Pol3 (% of one-year-old children)
## 16533                                                                                                                                                                                                                                                           Hospital beds (per 1,000 people)
## 16534                                                                                                                                                                                                                                                Community health workers (per 1,000 people)
## 16535                                                                                                                                                                                                                                                                         Number of Midwives
## 16536                                                                                                                                                                                                                                                     Nurses and midwives (per 1,000 people)
## 16537                                                                                                                                                                                                                                                                       Population per nurse
## 16538                                                                                                                                                                                                                                                              Physicians (per 1,000 people)
## 16539                                                                                                                                                                                                                                     Specialist surgical workforce (per 100,000 population)
## 16540                                                                                                                                                                                                                                                    Reported clinical malaria cases (total)
## 16541                                                                                                                                                                                                                           Deaths among children under five years of age due to malaria (%)
## 16542                                                                                                                                                                                                                                                            Reported malaria deaths (total)
## 16543                                                                                                                                                                                                                                             Notified cases of malaria (per 100,000 people)
## 16544                                                                                                                                                                                                                                        Incidence of malaria (per 1,000 population at risk)
## 16545                                                                                                                                                                                                      Intermittent preventive treatment (IPT) of malaria in pregnancy (% of pregnant women)
## 16546                                                                                                                                                                                                                                Households with one or more insect-treated mosquito net (%)
## 16547                                                                                                                                                                                                       Mosquito net use by children (any mosquito net) (% of children under 5): Q1 (lowest)
## 16548                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q2
## 16549                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q3
## 16550                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q4
## 16551                                                                                                                                                                                                      Mosquito net use by children (any mosquito net) (% of children under 5): Q5 (highest)
## 16552                                                                                                                                                                                             Household posession of mosquito nets (any type of mosquito net) (% of households): Q1 (lowest)
## 16553                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q2
## 16554                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q3
## 16555                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q4
## 16556                                                                                                                                                                                            Household posession of mosquito nets (any type of mosquito net) (% of households): Q5 (highest)
## 16557                                                                                                                                                                                                   Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q1 (lowest)
## 16558                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q2
## 16559                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q3
## 16560                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q4
## 16561                                                                                                                                                                                                  Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q5 (highest)
## 16562                                                                                                                                                                                                        Malaria prevention, use of bed nets (% of under-5 children in the poorest quintile)
## 16563                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q2
## 16564                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q3
## 16565                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q4
## 16566                                                                                                                                                                                                        Malaria prevention, use of bed nets (% of under-5 children in the richest quintile)
## 16567                                                                                                                                                                                                                              Use of insecticide-treated bed nets (% of under-5 population)
## 16568                                                                                                                                                                                              Household posession of mosquito nets (insecticide-treated net) (% of households): Q1 (lowest)
## 16569                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q2
## 16570                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q3
## 16571                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q4
## 16572                                                                                                                                                                                             Household posession of mosquito nets (insecticide-treated net) (% of households): Q5 (highest)
## 16573                                                                                                                                                                                            Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q1 (lowest)
## 16574                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q2
## 16575                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q3
## 16576                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q4
## 16577                                                                                                                                                                                           Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q5 (highest)
## 16578                                                                                                                                                                                                        Pregnant women who took at least 2 doses of intermittent preventative treatment (%)
## 16579                                                                                                                                                                            Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q1 (lowest)
## 16580                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q2
## 16581                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q3
## 16582                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q4
## 16583                                                                                                                                                                           Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q5 (highest)
## 16584                                                                                                                                                                                                                         Treatment of fever (% of children under 5 with fever): Q1 (lowest)
## 16585                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q2
## 16586                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q3
## 16587                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q4
## 16588                                                                                                                                                                                                                        Treatment of fever (% of children under 5 with fever): Q5 (highest)
## 16589                                                                                                                                                                                                    Children with fever receiving antimalarial drugs (% of children under age 5 with fever)
## 16590                                                                                                                                                                                                                                                                  Number of maternal deaths
## 16591                                                                                                                                                                                                                                             Length of paid maternity leave (calendar days)
## 16592                                                                                                                                                                                                                         Paid leave of at least 14 weeks available to mothers (1=yes; 0=no)
## 16593                                                                                                                                                                                                                  The government administers 100% of maternity leave benefits (1=yes; 0=no)
## 16594                                                                                                                                                                                                                             Lifetime risk of maternal death (1 in: rate varies by country)
## 16595                                                                                                                                                                                                                                                        Lifetime risk of maternal death (%)
## 16596                                                                                                                                                                                                                                Maternal leave benefits (% of wages paid in covered period)
## 16597                                                                                                                                                                                                                                                                      Morbidity Rate (in %)
## 16598                                                                                                                                                                                                                                       Length of paid shared parental leave (calendar days)
## 16599                                                                                                                                                                                                                                                 There is paid parental leave (1=yes; 0=no)
## 16600                                                                                                                                                                                                                                   Length of paid parental leave for mother (calendar days)
## 16601                                                                                                                                                                                                                                   Length of paid parental leave for father (calendar days)
## 16602                                                                                                                                                                                                                                    Number of Polindes (Poliklinik Desa/Village Polyclinic)
## 16603                                                                                                                                                                                                                                              Prevalence of anemia among pregnant women (%)
## 16604                                                                                                                                                                                                                               Prevalence of syphilis (% of women attending antenatal care)
## 16605                                                                                                                                                                                                                                            Prevalence of current tobacco use (% of adults)
## 16606                                                                                                                                                                                                                            Prevalence of current tobacco use, females (% of female adults)
## 16607                                                                                                                                                                                                                                                          Smoking (% of women): Q1 (lowest)
## 16608                                                                                                                                                                                                                                                                   Smoking (% of women): Q2
## 16609                                                                                                                                                                                                                                                                   Smoking (% of women): Q3
## 16610                                                                                                                                                                                                                                                                   Smoking (% of women): Q4
## 16611                                                                                                                                                                                                                                                         Smoking (% of women): Q5 (highest)
## 16612                                                                                                                                                                                                                                Prevalence of current tobacco use, males (% of male adults)
## 16613                                                                                                                                                                                                                                             Length of paid paternity leave (calendar days)
## 16614                                                                                                                                                                                                                                           Paid leave is available to fathers (1=yes; 0=no)
## 16615                                                                                                                                                                                                                                                  Number of Puskesmas and its line services
## 16616                                                                                                                                                                                                                   Risk of catastrophic expenditure for surgical care (% of people at risk)
## 16617                                                                                                                                                                                                                  Risk of impoverishing expenditure for surgical care (% of people at risk)
## 16618                                                                                                                                                                                                                                     Number of surgical procedures (per 100,000 population)
## 16619                                                                                                                                                                                                                                                  Health care (% of population with access)
## 16620                                                                                                                                                                                                                               Improved sanitation facilities (% of population with access)
## 16621                                                                                                                                                                                                                  Improved sanitation facilities, rural (% of rural population with access)
## 16622                                                                                                                                                                                                                  Improved sanitation facilities, urban (% of urban population with access)
## 16623                                                                                                                                                                 Mortality rate attributed to household and ambient air pollution, age-standardized, female (per 100,000 female population)
## 16624                                                                                                                                                                     Mortality rate attributed to household and ambient air pollution, age-standardized, male (per 100,000 male population)
## 16625                                                                                                                                                                                Mortality rate attributed to household and ambient air pollution, age-standardized (per 100,000 population)
## 16626                                                                                                                                                                                       Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q1 (lowest)
## 16627                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q2
## 16628                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q3
## 16629                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q4
## 16630                                                                                                                                                                                      Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q5 (highest)
## 16631                                                                                                                                                                                                       Pregnant women receiving prenatal care of at least four visits (% of pregnant women)
## 16632                                                                                                                                                                                                              Antenatal care (any skilled personnel) (% of women with a birth): Q1 (lowest)
## 16633                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q2
## 16634                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q3
## 16635                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q4
## 16636                                                                                                                                                                                                             Antenatal care (any skilled personnel) (% of women with a birth): Q5 (highest)
## 16637                                                                                                                                                                                                                                                 Pregnant women receiving prenatal care (%)
## 16638                                                                                                                                                                                                                             Antenatal care (doctor) (% of women with a birth): Q1 (lowest)
## 16639                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q2
## 16640                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q3
## 16641                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q4
## 16642                                                                                                                                                                                                                            Antenatal care (doctor) (% of women with a birth): Q5 (highest)
## 16643                                                                                                                                                                             Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q1 (lowest)
## 16644                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q2
## 16645                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q3
## 16646                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q4
## 16647                                                                                                                                                                            Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q5 (highest)
## 16648                                                                                                                                                                                                                           ARI treatment (% of children under 5 taken to a health provider)
## 16649                                                                                                                                                                                                       Prevalence of acute respiratory infection (ARI) (% of children under 5): Q1 (lowest)
## 16650                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q2
## 16651                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q3
## 16652                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q4
## 16653                                                                                                                                                                                                      Prevalence of acute respiratory infection (ARI) (% of children under 5): Q5 (highest)
## 16654                                                                                                                                                                                                                                                     ARI prevalence (% of children under 5)
## 16655                                                                                                                                                                                                             People using at least basic sanitation services (% of population): Q1 (lowest)
## 16656                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q2
## 16657                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q3
## 16658                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q4
## 16659                                                                                                                                                                                                            People using at least basic sanitation services (% of population): Q5 (highest)
## 16660                                                                                                                                                                                                People using at least basic sanitation services, rural (% of rural population): Q1 (lowest)
## 16661                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q2
## 16662                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q3
## 16663                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q4
## 16664                                                                                                                                                                                               People using at least basic sanitation services, rural (% of rural population): Q5 (highest)
## 16665                                                                                                                                                                                                             People using at least basic sanitation services, rural (% of rural population)
## 16666                                                                                                                                                                                               People using at least basic sanitation services, urban  (% of urban population): Q1 (lowest)
## 16667                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q2
## 16668                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q3
## 16669                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q4
## 16670                                                                                                                                                                                              People using at least basic sanitation services, urban  (% of urban population): Q5 (highest)
## 16671                                                                                                                                                                                                             People using at least basic sanitation services, urban (% of urban population)
## 16672                                                                                                                                                                                                                          People using at least basic sanitation services (% of population)
## 16673                                                                                                                                                                                                                                  Breastfeeding (% of children under 6 months): Q1 (lowest)
## 16674                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q2
## 16675                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q3
## 16676                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q4
## 16677                                                                                                                                                                                                                                 Breastfeeding (% of children under 6 months): Q5 (highest)
## 16678                                                                                                                                                                                                                                     Exclusive breastfeeding (% of children under 6 months)
## 16679                                                                                                                                                                                                              Assistance during delivery (any skilled personnel) (% of births): Q1 (lowest)
## 16680                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q2
## 16681                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q3
## 16682                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q4
## 16683                                                                                                                                                                                                             Assistance during delivery (any skilled personnel) (% of births): Q5 (highest)
## 16684                                                                                                                                                                                                                                       Births attended by skilled health staff (% of total)
## 16685                                                                                                                                                                                                                   Place of delivery (births at health facility) (% of births): Q1 (lowest)
## 16686                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q2
## 16687                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q3
## 16688                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q4
## 16689                                                                                                                                                                                                                  Place of delivery (births at health facility) (% of births): Q5 (highest)
## 16690                                                                                                                                                                                                                             Assistance during delivery (doctor) (% of births): Q1 (lowest)
## 16691                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q2
## 16692                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q3
## 16693                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q4
## 16694                                                                                                                                                                                                                            Assistance during delivery (doctor) (% of births): Q5 (highest)
## 16695                                                                                                                                                                                                                                                       Low-birthweight babies (% of births)
## 16696                                                                                                                                                                                                                                        Diabetes prevalence (% of population ages 20 to 79)
## 16697                                                                                                                                                                                                                                Prevalence of diarrhea (% of children under 5): Q1 (lowest)
## 16698                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q2
## 16699                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q3
## 16700                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q4
## 16701                                                                                                                                                                                                                               Prevalence of diarrhea (% of children under 5): Q5 (highest)
## 16702                                                                                                                                                                                                                                                Diarrhea prevalence (% of children under 5)
## 16703                                                                                                                                                                                                                     Prevalence of children with fever (% of children under 5): Q1 (lowest)
## 16704                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q2
## 16705                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q3
## 16706                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q4
## 16707                                                                                                                                                                                                                    Prevalence of children with fever (% of children under 5): Q5 (highest)
## 16708                                                                                                                                                                                                                                      Female genital mutilation prevalence (%): Q1 (lowest)
## 16709                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q2
## 16710                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q3
## 16711                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q4
## 16712                                                                                                                                                                                                                                     Female genital mutilation prevalence (%): Q5 (highest)
## 16713                                                                                                                                                                                                                                                   Female genital mutilation prevalence (%)
## 16714                                                                                                                                                                                           People with basic handwashing facilities including soap and water (% of population): Q1 (lowest)
## 16715                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q2
## 16716                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q3
## 16717                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q4
## 16718                                                                                                                                                                                          People with basic handwashing facilities including soap and water (% of population): Q5 (highest)
## 16719                                                                                                                                                                              People with basic handwashing facilities including soap and water, rural (% of rural population): Q1 (lowest)
## 16720                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q2
## 16721                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q3
## 16722                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q4
## 16723                                                                                                                                                                             People with basic handwashing facilities including soap and water, rural (% of rural population): Q5 (highest)
## 16724                                                                                                                                                                                           People with basic handwashing facilities including soap and water, rural (% of rural population)
## 16725                                                                                                                                                                              People with basic handwashing facilities including soap and water, urban (% of urban population): Q1 (lowest)
## 16726                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q2
## 16727                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q3
## 16728                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q4
## 16729                                                                                                                                                                             People with basic handwashing facilities including soap and water, urban (% of urban population): Q5 (highest)
## 16730                                                                                                                                                                                           People with basic handwashing facilities including soap and water, urban (% of urban population)
## 16731                                                                                                                                                                                                        People with basic handwashing facilities including soap and water (% of population)
## 16732                                                                                                                                                                                                         Infant and young child feeding practices, all 3 IYCF (% children ages 6-23 months)
## 16733                                                                                                                                                                                                                       Malnourished women (BMI is less than 18.5) (% of women): Q1 (lowest)
## 16734                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q2
## 16735                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q3
## 16736                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q4
## 16737                                                                                                                                                                                                                      Malnourished women (BMI is less than 18.5) (% of women): Q5 (highest)
## 16738                                                                                                                                                                                                                  Prevalence of underweight, weight for age, female (% of children under 5)
## 16739                                                                                                                                                                                                                    Prevalence of underweight, weight for age, male (% of children under 5)
## 16740                                                                                                                                                                                                             Malnourished children (underweight, -2SD) (% of children under 5): Q1 (lowest)
## 16741                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q2
## 16742                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q3
## 16743                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q4
## 16744                                                                                                                                                                                                            Malnourished children (underweight, -2SD) (% of children under 5): Q5 (highest)
## 16745                                                                                                                                                                                                                          Prevalence of underweight, weight for age (% of children under 5)
## 16746                                                                                                                                                                                                                                                                     Malaria cases reported
## 16747                                                                                                                                                                                                             Malnourished children (underweight, -3SD) (% of children under 5): Q1 (lowest)
## 16748                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q2
## 16749                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q3
## 16750                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q4
## 16751                                                                                                                                                                                                            Malnourished children (underweight, -3SD) (% of children under 5): Q5 (highest)
## 16752                                                                                                                                                                                                                       Maternal mortality ratio (modeled estimate, per 100,000 live births)
## 16753                                                                                                                                                                                                                      Maternal mortality ratio (national estimate, per 100,000 live births)
## 16754                                                                                                                                                                                                                            Prevalence of obesity, female (% of female population ages 18+)
## 16755                                                                                                                                                                                                                                Prevalence of obesity, male (% of male population ages 18+)
## 16756                                                                                                                                                                                                                           People practicing open defecation (% of population): Q1 (lowest)
## 16757                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q2
## 16758                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q3
## 16759                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q4
## 16760                                                                                                                                                                                                                          People practicing open defecation (% of population): Q5 (highest)
## 16761                                                                                                                                                                                                              People practicing open defecation, rural (% of rural population): Q1 (lowest)
## 16762                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q2
## 16763                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q3
## 16764                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q4
## 16765                                                                                                                                                                                                             People practicing open defecation, rural (% of rural population): Q5 (highest)
## 16766                                                                                                                                                                                                                           People practicing open defecation, rural (% of rural population)
## 16767                                                                                                                                                                                                              People practicing open defecation, urban (% of urban population): Q1 (lowest)
## 16768                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q2
## 16769                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q3
## 16770                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q4
## 16771                                                                                                                                                                                                             People practicing open defecation, urban (% of urban population): Q5 (highest)
## 16772                                                                                                                                                                                                                           People practicing open defecation, urban (% of urban population)
## 16773                                                                                                                                                                                                                                        People practicing open defecation (% of population)
## 16774                                                                                                                                                                                                Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding)
## 16775                                                                                                                                                                                                  Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q1 (lowest)
## 16776                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q2
## 16777                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q3
## 16778                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q4
## 16779                                                                                                                                                                                                 Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q5 (highest)
## 16780                                                                                                                                                                                                                                     Knowledge of diarrhea care (% of mothers): Q1 (lowest)
## 16781                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q2
## 16782                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q3
## 16783                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q4
## 16784                                                                                                                                                                                                                                    Knowledge of diarrhea care (% of mothers): Q5 (highest)
## 16785                                                                                                                                                                                                             Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q1 (lowest)
## 16786                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q2
## 16787                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q3
## 16788                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q4
## 16789                                                                                                                                                                                                            Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q5 (highest)
## 16790                                                                                                                                                                                                                         Diarrhea treatment (% of children under 5 who received ORS packet)
## 16791                                                                                                                                                                                                                                      Prevalence of overweight, female (% of female adults)
## 16792                                                                                                                                                                                                                                          Prevalence of overweight, male (% of male adults)
## 16793                                                                                                                                                                                                                                                     Prevalence of overweight (% of adults)
## 16794                                                                                                                                                                                                                Prevalence of overweight, weight for height, female (% of children under 5)
## 16795                                                                                                                                                                                                                  Prevalence of overweight, weight for height, male (% of children under 5)
## 16796                                                                                                                                                                                                                         Prevalence of overweight (modeled estimate, % of children under 5)
## 16797                                                                                                                                                                                                                        Prevalence of overweight, weight for height (% of children under 5)
## 16798                                                                                                                                                                                                                                                        Postnatal care coverage (% mothers)
## 16799                                                                                                                                                                                                              Mortality rate attributed to unintentional poisoning (per 100,000 population)
## 16800                                                                                                                                                                                               Mortality rate attributed to unintentional poisoning, female (per 100,000 female population)
## 16801                                                                                                                                                                                                   Mortality rate attributed to unintentional poisoning, male (per 100,000 male population)
## 16802                                                                                                                                                                                                             People using safely managed sanitation services, rural (% of rural population)
## 16803                                                                                                                                                                                                             People using safely managed sanitation services, urban (% of urban population)
## 16804                                                                                                                                                                                                                          People using safely managed sanitation services (% of population)
## 16805                                                                                                                                                                                                                Malnourished children (stunting, -3SD) (% of children under 5): Q1 (lowest)
## 16806                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q2
## 16807                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q3
## 16808                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q4
## 16809                                                                                                                                                                                                               Malnourished children (stunting, -3SD) (% of children under 5): Q5 (highest)
## 16810                                                                                                                                                                                                                     Prevalence of stunting, height for age, female (% of children under 5)
## 16811                                                                                                                                                                                                                       Prevalence of stunting, height for age, male (% of children under 5)
## 16812                                                                                                                                                                                                           Prevalence of stunting, height for age (modeled estimate, % of children under 5)
## 16813                                                                                                                                                                                                                Malnourished children (stunting, -2SD) (% of children under 5): Q1 (lowest)
## 16814                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q2
## 16815                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q3
## 16816                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q4
## 16817                                                                                                                                                                                                               Malnourished children (stunting, -2SD) (% of children under 5): Q5 (highest)
## 16818                                                                                                                                                                                                                             Prevalence of stunting, height for age (% of children under 5)
## 16819                                                                                                                                                                                                                             Suicide mortality rate, female (per 100,000 female population)
## 16820                                                                                                                                                                                                                                 Suicide mortality rate, male (per 100,000 male population)
## 16821                                                                                                                                                                                                                                            Suicide mortality rate (per 100,000 population)
## 16822                                                                                                                                                                                                            Mortality caused by road traffic injury, female (per 100,000 female population)
## 16823                                                                                                                                                                                                                Mortality caused by road traffic injury, male (per 100,000 male population)
## 16824                                                                                                                                                                                                                           Mortality caused by road traffic injury (per 100,000 population)
## 16825                                                                                                                                                                   Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, female (per 100,000 female population)
## 16826                                                                                                                                                                       Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, male (per 100,000 male population)
## 16827                                                                                                                                                                                  Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene (per 100,000 population)
## 16828                                                                                                                                                                                                                   Prevalence of wasting, weight for height, female (% of children under 5)
## 16829                                                                                                                                                                                                                     Prevalence of wasting, weight for height, male (% of children under 5)
## 16830                                                                                                                                                                                                                 Malnourished children (wasting, -2SD) (% of children under 5): Q1 (lowest)
## 16831                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q2
## 16832                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q3
## 16833                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q4
## 16834                                                                                                                                                                                                                Malnourished children (wasting, -2SD) (% of children under 5): Q5 (highest)
## 16835                                                                                                                                                                                                                           Prevalence of wasting, weight for height (% of children under 5)
## 16836                                                                                                                                                                                                                 Malnourished children (wasting, -3SD) (% of children under 5): Q1 (lowest)
## 16837                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q2
## 16838                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q3
## 16839                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q4
## 16840                                                                                                                                                                                                                Malnourished children (wasting, -3SD) (% of children under 5): Q5 (highest)
## 16841                                                                                                                                                                                                            Prevalence of severe wasting, weight for height, female (% of children under 5)
## 16842                                                                                                                                                                                                              Prevalence of severe wasting, weight for height, male (% of children under 5)
## 16843                                                                                                                                                                                                                    Prevalence of severe wasting, weight for height (% of children under 5)
## 16844                                                                                                                                                                                                                                       Tuberculosis treatment success rate (% of new cases)
## 16845                                                                                                                                                                                                                                                 Tuberculosis cases detected under DOTS (%)
## 16846                                                                                                                                                                                                                                            Tuberculosis case detection rate (%, all forms)
## 16847                                                                                                                                                                                                                                             Incidence of tuberculosis (per 100,000 people)
## 16848                                                                                                                                                                                                                     Incidence of tuberculosis, high uncertainty bound (per 100,000 people)
## 16849                                                                                                                                                                                                                      Incidence of tuberculosis, low uncertainty bound (per 100,000 people)
## 16850                                                                                                                                                                                                                                               Tuberculosis death rate (per 100,000 people)
## 16851                                                                                                                                                                                      Deaths due to tuberculosis among HIV-negative people, high uncertainty bound (per 100,000 population)
## 16852                                                                                                                                                                                       Deaths due to tuberculosis among HIV-negative people, low uncertainty bound (per 100,000 population)
## 16853                                                                                                                                                                                                                                Tuberculosis prevalence rate (per 1000,000 population, WHO)
## 16854                                                                                                                                                                                                        Tuberculosis prevalence rate, high uncertainty bound (per 1000,000 population, WHO)
## 16855                                                                                                                                                                                                         Tuberculosis prevalence rate, low uncertainty bound (per 1000,000 population, WHO)
## 16856                                                                                                                                                                             Number of people pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure
## 16857                                                                                                                                                                 Proportion of population pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure (%)
## 16858                                                                                                                                                                         Number of people pushed further below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16859                                                                                                                                                             Proportion of population pushed further below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16860                                                                                                                                                                         Number of people pushed further below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16861                                                                                                                                                             Proportion of population pushed further below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16862                                                                                                                                                                     Number of people pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure
## 16863                                                                                                                                                         Proportion of population pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure (%)
## 16864                                                                                                                                                                              Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD)
## 16865                                                                                                                                                                                 Number of people pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16866                                                                                                                                                                Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line)
## 16867                                                                                                                                                                     Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16868                                                                                                                                                                              Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD)
## 16869                                                                                                                                                                                 Number of people pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16870                                                                                                                                                                Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line)
## 16871                                                                                                                                                                     Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16872                                                                                                                                                                             Number of people pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure
## 16873                                                                                                                                                                      Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health expenditure (%)
## 16874                                                                                                                                                                        Number of people spending more than 10% of household consumption or income on out-of-pocket health care expenditure
## 16875                                                                                                                                                            Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%)
## 16876                                                                                                                                                                        Number of people spending more than 25% of household consumption or income on out-of-pocket health care expenditure
## 16877                                                                                                                                                            Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%)
## 16878                                                                                                                                                                                                                                                                 UHC service coverage index
## 16879                                                                                                                                                                                                                                 Tetanus toxoid vaccination (% of live births): Q1 (lowest)
## 16880                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q2
## 16881                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q3
## 16882                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q4
## 16883                                                                                                                                                                                                                                Tetanus toxoid vaccination (% of live births): Q5 (highest)
## 16884                                                                                                                                                                                                                                                     Newborns protected against tetanus (%)
## 16885                                                                                                                                                                                                                                                              Outpatient visits per capita 
## 16886                                                                                                                                                                                                                                                      Current health expenditure (% of GDP)
## 16887                                                                                                                                                                                                                                        Current health expenditure per capita (current US$)
## 16888                                                                                                                                                                                                                       Current health expenditure per capita, PPP (current international $)
## 16889                                                                                                                                                                                                                              External health expenditure (% of current health expenditure)
## 16890                                                                                                                                                                                                External health expenditure channeled through government (% of external health expenditure)
## 16891                                                                                                                                                                                                                                       External health expenditure per capita (current US$)
## 16892                                                                                                                                                                                                                      External health expenditure per capita, PPP (current international $)
## 16893                                                                                                                                                                                                                           External resources for health (% of total expenditure on health)
## 16894                                                                                                                                                                                                           Domestic general government health expenditure (% of current health expenditure)
## 16895                                                                                                                                                                                                                                  Domestic general government health expenditure (% of GDP)
## 16896                                                                                                                                                                                                       Domestic general government health expenditure (% of general government expenditure)
## 16897                                                                                                                                                                                                                    Domestic general government health expenditure per capita (current US$)
## 16898                                                                                                                                                                                                   Domestic general government health expenditure per capita, PPP (current international $)
## 16899                                                                                                                                                                                                                                                       Public Expenditure on Health (% GDP)
## 16900                                                                                                                                                                                                                                                      Capital health expenditure (% of GDP)
## 16901                                                                                                                                                                                                                                Out-of-pocket expenditure (% of current health expenditure)
## 16902                                                                                                                                                                                                                                         Out-of-pocket expenditure per capita (current US$)
## 16903                                                                                                                                                                                                                        Out-of-pocket expenditure per capita, PPP (current international $)
## 16904                                                                                                                                                                                                                        Out-of-pocket health expenditure (% of total expenditure on health)
## 16905                                                                                                                                                                                                                      Out-of-pocket health expenditure (% of private expenditure on health)
## 16906                                                                                                                                                                                                                                                Health expenditure per capita (current US$)
## 16907                                                                                                                                                                                                                                     Government health expenditure per capita (current US$)
## 16908                                                                                                                                                                                                                         Health expenditure per capita, PPP (constant 2011 international $)
## 16909                                                                                                                                                                                                                               Health expenditure per capita, PPP (current international $)
## 16910                                                                                                                                                                                                                                Health expenditure, private (% of total health expenditure)
## 16911                                                                                                                                                                                                                                 Private prepaid plans (% of private expenditure on health)
## 16912                                                                                                                                                                                                                                                     Health expenditure, private (% of GDP)
## 16913                                                                                                                                                                                                                                 Health expenditure, public (% of total health expenditure)
## 16914                                                                                                                                                                                                                                   Health expenditure, public (% of government expenditure)
## 16915                                                                                                                                                                                                                                                      Health expenditure, public (% of GDP)
## 16916                                                                                                                                                                                                                      Domestic private health expenditure (% of current health expenditure)
## 16917                                                                                                                                                                                                                               Domestic private health expenditure per capita (current US$)
## 16918                                                                                                                                                                                                              Domestic private health expenditure per capita, PPP (current international $)
## 16919                                                                                                                                                                                                                 Social Security expenditure on health (% government expenditure on health)
## 16920                                                                                                                                                                                                                                                           Health expenditure (current US$)
## 16921                                                                                                                                                                                                                                                       Health expenditure, total (% of GDP)
## 16922                                                                                                                                                                                                                                                            Income share held by second 20%
## 16923                                                                                                                                                                                                                                                             Income share held by third 20%
## 16924                                                                                                                                                                                                                                                            Income share held by fourth 20%
## 16925                                                                                                                                                                                                                                                           Income share held by highest 20%
## 16926                                                                                                                                                                                                                                                           Income share held by highest 10%
## 16927                                                                                                                                                                                                                          Proportion of people living below 50 percent of median income (%)
## 16928                                                                                                                                                                                                                                                            Income share held by lowest 10%
## 16929                                                                                                                                                                                                                                                            Income share held by lowest 20%
## 16930                                                                                                                                                                                                                        Poverty headcount ratio at $3.10 a day (2011 PPP) (% of population)
## 16931                                                                                                                                                                                                                Multidimensional poverty, Educational attainment (% of population deprived)
## 16932                                                                                                                                                                                                                         Number of people live below the poverty line (in number of people)
## 16933                                                                                                                                                                                                                        Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population)
## 16934                                                                                                                                                                                                    Poverty headcount ratio at $1.90 a day, age 0-14  (2011 PPP) (% of population age 0-14)
## 16935                                                                                                                                                                                                   Poverty headcount ratio at $1.90 a day, age 15-64 (2011 PPP) (% of population age 15-64)
## 16936                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, without education (2011 PPP) (% of population age 16+ without education)
## 16937                                                                                                                                                                 Poverty headcount ratio at $1.90 a day, with primary education (2011 PPP) (% of population age 16+ with primary education)
## 16938                                                                                                                                                             Poverty headcount ratio at $1.90 a day, with secondary education (2011 PPP) (% of population age 16+ with secondary education)
## 16939                                                                                                                                Poverty headcount ratio at $1.90 a day,  with Tertiary/post-secondary education (2011 PPP) (% of population age 16+ with Tertiary/post-secondary education)
## 16940                                                                                                                                                                                                       Poverty headcount ratio at $1.90 a day, age 65+ (2011 PPP) (% of population age 65+)
## 16941                                                                                                                                                                                                                     Survey coverage for poverty headcount ratio (at $1.90 a day, 2011 PPP)
## 16942                                                                                                                                                                                                         Poverty headcount ratio at $1.90 a day, Female (2011 PPP) (% of female population)
## 16943                                                                                                                                                                                               Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), first comparable values
## 16944                                                                                                                                                                                                            Poverty headcount ratio at $1.90 a day, Male  (2011 PPP) (% of male population)
## 16945                                                                                                                                                                                                                      Multidimensional poverty, Monetary poverty (% of population deprived)
## 16946                                                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, rural (2011 PPP) (% of rural population)
## 16947                                                                                                                                                                                              Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), second comparable values
## 16948                                                                                                                                                                                                                                  Share of total poor population (at $1.90 a day, 2011 PPP)
## 16949                                                                                                                                                                                               Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), third comparable values
## 16950                                                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, urban (2011 PPP) (% of urban population)
## 16951                                                                                                                                                                                                                           Multidimensional poverty, Electricity (% of population deprived)
## 16952                                                                                                                                                                                                                Multidimensional poverty, Educational enrollment (% of population deprived)
## 16953                                                                                                                                                                                                                                                  Poverty gap at $3.10 a day (2011 PPP) (%)
## 16954                                                                                                                                                                                                                                                  Poverty gap at $1.90 a day (2011 PPP) (%)
## 16955                                                                                                                                                                                                                                                                                 Gini index
## 16956                                                                                                                                                                                                                                  Gini index (World Bank estimate), first comparable values
## 16957                                                                                                                                                                                                                                 Gini index (World Bank estimate), second comparable values
## 16958                                                                                                                                                                                                                                  Gini index (World Bank estimate), third comparable values
## 16959                                                                                                                                                                                                                                Multidimensional poverty, Headcount ratio (% of population)
## 16960                                                                                                                                                                                                                        Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population)
## 16961                                                                                                                                                                                               Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), first comparable values
## 16962                                                                                                                                                                                                                                                  Poverty gap at $3.20 a day (2011 PPP) (%)
## 16963                                                                                                                                                                                                                                        Number of poor at $3.20 a day (2011 PPP) (millions)
## 16964                                                                                                                                                                                              Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), second comparable values
## 16965                                                                                                                                                                                               Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), third comparable values
## 16966                                                                                                                                                                                                                           Multidimensional poverty headcount ratio (% of total population)
## 16967                                                                                                                                                                                                             Multidimensional poverty headcount ratio, children (% of population ages 0-17)
## 16968                                                                                                                                                                                                                Multidimensional poverty index, children (population ages 0-17) (scale 0-1)
## 16969                                                                                                                                                                                                                  Multidimensional poverty headcount ratio, female (% of female population)
## 16970                                                                                                                                                                                                                Multidimensional poverty headcount ratio, household (% of total households)
## 16971                                                                                                                                                                                                 Multidimensional poverty intensity (average share of deprivations experienced by the poor)
## 16972                                                                                                                                                                                                                      Multidimensional poverty headcount ratio, male (% of male population)
## 16973                                                                                                                                                                                                                                                 Multidimensional poverty index (scale 0-1)
## 16974                                                                                                                                                                                                                                                  Poverty gap at national poverty lines (%)
## 16975                                                                                                                                                                                                                  Poverty gap at national poverty lines (%), including noncomparable values
## 16976                                                                                                                                                                                                                        Poverty headcount ratio at national poverty lines (% of population)
## 16977                                                                                                                                                                                        Poverty headcount ratio at national poverty lines (% of population), including noncomparable values
## 16978                                                                                                                                                                                                                                                                      Poverty Line (in IDR)
## 16979                                                                                                                                                                                                                                                          Poverty Rate (in % of population)
## 16980                                                                                                                                                                                                                                                                        Poverty Gap (index)
## 16981                                                                                                                                                                                                                                        Number of poor at $1.90 a day (2011 PPP) (millions)
## 16982                                                                                                                                                                                                                                        Number of poor at $3.10 a day (2011 PPP) (millions)
## 16983                                                                                                                                                                                                                                                                   Poverty Severity (index)
## 16984                                                                                                                                                                                                                                            Rural poverty gap at national poverty lines (%)
## 16985                                                                                                                                                                                                            Rural poverty headcount ratio at national poverty lines (% of rural population)
## 16986                                                                                                                                                                                                                            Multidimensional poverty, Sanitation (% of population deprived)
## 16987                                                                                                                                                                                                                        Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population)
## 16988                                                                                                                                                                                               Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), first comparable values
## 16989                                                                                                                                                                                                                                                  Poverty gap at $5.50 a day (2011 PPP) (%)
## 16990                                                                                                                                                                                                                                        Number of poor at $5.50 a day (2011 PPP) (millions)
## 16991                                                                                                                                                                                              Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), second comparable values
## 16992                                                                                                                                                                                               Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), third comparable values
## 16993                                                                                                                                                                                                                                            Urban poverty gap at national poverty lines (%)
## 16994                                                                                                                                                                                                            Urban poverty headcount ratio at national poverty lines (% of urban population)
## 16995                                                                                                                                                                                                                        Multidimensional poverty, Drinking water (% of population deprived)
## 16996                                                                                                                                                                                                                       Median daily per capita income or consumption expenditure (2011 PPP)
## 16997                                                                                                                                                                                                   Annualized growth in per capita real survey median income or consumption expenditure (%)
## 16998                                                                                                                                                                                                                  Average transaction cost of sending remittances to a specific country (%)
## 16999                                                                                                                                                                                                                Average transaction cost of sending remittances from a specific country (%)
## 17000                                                                                                                                                                                                                                                Average transaction cost of remittances (%)
## 17001                                                                                                                                                                                                       Population living below 50 percent of median income or consumption (% of population)
## 17002                                                                                                                                                                                                Survey mean consumption or income per capita, bottom 40% of population (2011 PPP $ per day)
## 17003                                                                                                                                                                                                              Survey mean consumption or income per capita, bottom 40% (2005 PPP $ per day)
## 17004                                                                                                                                                                          Annualized average growth rate in per capita real survey mean consumption or income, bottom 40% of population (%)
## 17005                                                                                                                                                                                                        Survey mean consumption or income per capita, total population (2011 PPP $ per day)
## 17006                                                                                                                                                                                                        Survey mean consumption or income per capita, total population (2005 PPP $ per day)
## 17007                                                                                                                                                                                  Annualized average growth rate in per capita real survey mean consumption or income, total population (%)
## 17008                                                                                                                                                                                                                 Survey mean consumption or income per capita, top 10% (2011 PPP $ per day)
## 17009                                                                                                                                                                                                        Annualized growth in per capita real survey mean consumption or income, top 10% (%)
## 17010                                                                                                                                                                                                                 Survey mean consumption or income per capita, top 60% (2011 PPP $ per day)
## 17011                                                                                                                                                                                                        Annualized growth in per capita real survey mean consumption or income, top 60% (%)
## 17012                                                                                                                                                                                               Child employment in agriculture, female (% of female economically active children ages 7-14)
## 17013                                                                                                                                                                                                   Child employment in agriculture, male (% of male economically active children ages 7-14)
## 17014                                                                                                                                                                                                              Child employment in agriculture (% of economically active children ages 7-14)
## 17015                                                                                                                                                                                                                        Employees, agriculture, female (% of total agricultural employment)
## 17016                                                                                                                                                                                                          Employment in agriculture, female (% of female employment) (modeled ILO estimate)
## 17017                                                                                                                                                                                                              Employment in agriculture, male (% of male employment) (modeled ILO estimate)
## 17018                                                                                                                                                                                                                   Employment in agriculture (% of total employment) (modeled ILO estimate)
## 17019                                                                                                                                                                                                                                                             Labor force in agriculture (%)
## 17020                                                                                                                                                                                                                                                               Labor Force, Agriculture (%)
## 17021                                                                                                                                                                                                                                                    Labor force in agriculture (% of total)
## 17022                                                                                                                                                                                                                                                                    Labor Force, Female (%)
## 17023                                                                                                                                                                                                                 Employment to population ratio, ages 15-24, female (%) (national estimate)
## 17024                                                                                                                                                                                                              Employment to population ratio, ages 15-24, female (%) (modeled ILO estimate)
## 17025                                                                                                                                                                                                                   Employment to population ratio, ages 15-24, male (%) (national estimate)
## 17026                                                                                                                                                                                                                Employment to population ratio, ages 15-24, male (%) (modeled ILO estimate)
## 17027                                                                                                                                                                                                                  Employment to population ratio, ages 15-24, total (%) (national estimate)
## 17028                                                                                                                                                                                                               Employment to population ratio, ages 15-24, total (%) (modeled ILO estimate)
## 17029                                                                                                                                                                                                                             Number of people employed in agriculture, forestry and fishery
## 17030                                                                                                                                                                                                                                           Number of people employed in construction sector
## 17031                                                                                                                                                                                                                              Number of people employed in electricity and utilities sector
## 17032                                                                                                                                                                                                                                     Number of people employed in financial services sector
## 17033                                                                                                                                                                                                                                             Number of people employed in industrial sector
## 17034                                                                                                                                                                                    Share of women in wage employment in the nonagricultural sector (% of total nonagricultural employment)
## 17035                                                                                                                                                                                                                                   Number of people employed in mining and quarrying sector
## 17036                                                                                                                                                                                                                          Employers, female (% of female employment) (modeled ILO estimate)
## 17037                                                                                                                                                                                                                              Employers, male (% of male employment) (modeled ILO estimate)
## 17038                                                                                                                                                                                                                            Employers, total (% of total employment) (modeled ILO estimate)
## 17039                                                                                                                                                                                                                Own-account workers, female (% of female employment) (modeled ILO estimate)
## 17040                                                                                                                                                                                                                    Own-account workers, male (% of male employment) (modeled ILO estimate)
## 17041                                                                                                                                                                                                                                         Own-account workers, total (% of total employment)
## 17042                                                                                                                                                                                                                      Self-employed, female (% of female employment) (modeled ILO estimate)
## 17043                                                                                                                                                                                                                          Self-employed, male (% of male employment) (modeled ILO estimate)
## 17044                                                                                                                                                                                                                        Self-employed, total (% of total employment) (modeled ILO estimate)
## 17045                                                                                                                                                                                                                            Female share of employment in senior and middle management (%) 
## 17046                                                                                                                                                                                                                                        Number of people employed in social services sector
## 17047                                                                                                                                                                                                                                                                  Number of people employed
## 17048                                                                                                                                                                                                                                                        Total employment, female (ages 15+)
## 17049                                                                                                                                                                                                                                                          Total employment, male (ages 15+)
## 17050                                                                                                                                                                                                                        Employment to population ratio, 15+, female (%) (national estimate)
## 17051                                                                                                                                                                                                                     Employment to population ratio, 15+, female (%) (modeled ILO estimate)
## 17052                                                                                                                                                                                                                          Employment to population ratio, 15+, male (%) (national estimate)
## 17053                                                                                                                                                                                                                       Employment to population ratio, 15+, male (%) (modeled ILO estimate)
## 17054                                                                                                                                                                                                                         Employment to population ratio, 15+, total (%) (national estimate)
## 17055                                                                                                                                                                                                                      Employment to population ratio, 15+, total (%) (modeled ILO estimate)
## 17056                                                                                                                                                                                                                            Number of people employed in trade, hotel and restaurant sector
## 17057                                                                                                                                                                                                                   Number of people employed in transportation and telecommunication sector
## 17058                                                                                                                                                                                                                                                             Number of people underemployed
## 17059                                                                                                                                                                                                                                     Time-related underemployment, female (% of employment)
## 17060                                                                                                                                                                                                                                       Time-related underemployment, male (% of employment)
## 17061                                                                                                                                                                                                              Vulnerable employment, female (% of female employment) (modeled ILO estimate)
## 17062                                                                                                                                                                                                                  Vulnerable employment, male (% of male employment) (modeled ILO estimate)
## 17063                                                                                                                                                                                                                Vulnerable employment, total (% of total employment) (modeled ILO estimate)
## 17064                                                                                                                                                                                                          Wage and salaried workers, female (% of female employment) (modeled ILO estimate)
## 17065                                                                                                                                                                                                              Wage and salaried workers, male (% of male employment) (modeled ILO estimate)
## 17066                                                                                                                                                                                                            Wage and salaried workers, total (% of total employment) (modeled ILO estimate)
## 17067                                                                                                                                                                                      Children in employment, unpaid family workers, female (% of female children in employment, ages 7-14)
## 17068                                                                                                                                                                                          Children in employment, unpaid family workers, male (% of male children in employment, ages 7-14)
## 17069                                                                                                                                                                                                     Children in employment, unpaid family workers (% of children in employment, ages 7-14)
## 17070                                                                                                                                                                                                        Contributing family workers, female (% of female employment) (modeled ILO estimate)
## 17071                                                                                                                                                                                                            Contributing family workers, male (% of male employment) (modeled ILO estimate)
## 17072                                                                                                                                                                                                          Contributing family workers, total (% of total employment) (modeled ILO estimate)
## 17073                                                                                                                                                                                                                                              GDP per person employed (constant 2017 PPP $)
## 17074                                                                                                                                                                                                                                                  GDP per person employed (annual % growth)
## 17075                                                                                                                                                                                                                                                GDP per person employed, index (1980 = 100)
## 17076                                                                                                                                                                                                             Employment in industry, female (% of female employment) (modeled ILO estimate)
## 17077                                                                                                                                                                                                                 Employment in industry, male (% of male employment) (modeled ILO estimate)
## 17078                                                                                                                                                                                                                      Employment in industry (% of total employment) (modeled ILO estimate)
## 17079                                                                                                                                                                                                                       Informal employment, female (% of total non-agricultural employment)
## 17080                                                                                                                                                                                                                         Informal employment, male (% of total non-agricultural employment)
## 17081                                                                                                                                                                                                                               Informal employment (% of total non-agricultural employment)
## 17082                                                                                                                                                                                             Child employment in manufacturing, female (% of female economically active children ages 7-14)
## 17083                                                                                                                                                                                                 Child employment in manufacturing, male (% of male economically active children ages 7-14)
## 17084                                                                                                                                                                                                            Child employment in manufacturing (% of economically active children ages 7-14)
## 17085                                                                                                                                                                                                                                         Ratio of female to male wages in manufacturing (%)
## 17086                                                                                                                                                                                              Children in employment, self-employed, female (% of female children in employment, ages 7-14)
## 17087                                                                                                                                                                                                  Children in employment, self-employed, male (% of male children in employment, ages 7-14)
## 17088                                                                                                                                                                                                             Children in employment, self-employed (% of children in employment, ages 7-14)
## 17089                                                                                                                                                                                                  Child employment in services, female (% of female economically active children ages 7-14)
## 17090                                                                                                                                                                                                      Child employment in services, male (% of male economically active children ages 7-14)
## 17091                                                                                                                                                                                                                 Child employment in services (% of economically active children ages 7-14)
## 17092                                                                                                                                                                                                             Employment in services, female (% of female employment) (modeled ILO estimate)
## 17093                                                                                                                                                                                                                 Employment in services, male (% of male employment) (modeled ILO estimate)
## 17094                                                                                                                                                                                                                      Employment in services (% of total employment) (modeled ILO estimate)
## 17095                                                                                                                                                                                                                                                            Number of people in labor force
## 17096                                                                                                                                                                                                                            Children in employment, female (% of female children ages 7-14)
## 17097                                                                                                                                                                                                                                Children in employment, male (% of male children ages 7-14)
## 17098                                                                                                                                                                                                      Average working hours of children, study and work, female, ages 7-14 (hours per week)
## 17099                                                                                                                                                                                             Children in employment, study and work, female (% of female children in employment, ages 7-14)
## 17100                                                                                                                                                                                                        Average working hours of children, study and work, male, ages 7-14 (hours per week)
## 17101                                                                                                                                                                                                 Children in employment, study and work, male (% of male children in employment, ages 7-14)
## 17102                                                                                                                                                                                                              Average working hours of children, study and work, ages 7-14 (hours per week)
## 17103                                                                                                                                                                                                            Children in employment, study and work (% of children in employment, ages 7-14)
## 17104                                                                                                                                                                                                        Average working hours of children, working only, female, ages 7-14 (hours per week)
## 17105                                                                                                                                                                                                  Children in employment, work only, female (% of female children in employment, ages 7-14)
## 17106                                                                                                                                                                                                          Average working hours of children, working only, male, ages 7-14 (hours per week)
## 17107                                                                                                                                                                                                      Children in employment, work only, male (% of male children in employment, ages 7-14)
## 17108                                                                                                                                                                                                                Average working hours of children, working only, ages 7-14 (hours per week)
## 17109                                                                                                                                                                                                                 Children in employment, work only (% of children in employment, ages 7-14)
## 17110                                                                                                                                                                                                                                    Children in employment, total (% of children ages 7-14)
## 17111                                                                                                                                                                                                                                                          Labor force (15-24 years), female
## 17112                                                                                                                                                                                                                     Labor force (15-24 years), female (% of total labor force 15-24 years)
## 17113                                                                                                                                                                                                                                                           Labor force (15-24 years), total
## 17114                                                                                                                                                                                                                                                            Labor force (15-24 years), male
## 17115                                                                                                                                                                                                                       Labor force (15-24 years), male (% of total labor force 15-24 years)
## 17116                                                                                                                                                                                                                                                          Labor force (15-64 years), female
## 17117                                                                                                                                                                                                                     Labor force (15-64 years), female (% of total labor force 15-64 years)
## 17118                                                                                                                                                                                                                                                           Labor force (15-64 years), total
## 17119                                                                                                                                                                                                                                                            Labor force (15-64 years), male
## 17120                                                                                                                                                                                                                       Labor force (15-64 years), male (% of total labor force 15-64 years)
## 17121                                                                                                                                                                                                              Labor force participation rate for ages 15-24, female (%) (national estimate)
## 17122                                                                                                                                                                                                           Labor force participation rate for ages 15-24, female (%) (modeled ILO estimate)
## 17123                                                                                                                                                                                                                Labor force participation rate for ages 15-24, male (%) (national estimate)
## 17124                                                                                                                                                                                                             Labor force participation rate for ages 15-24, male (%) (modeled ILO estimate)
## 17125                                                                                                                                                                                                               Labor force participation rate for ages 15-24, total (%) (national estimate)
## 17126                                                                                                                                                                                                            Labor force participation rate for ages 15-24, total (%) (modeled ILO estimate)
## 17127                                                                                                                                                                                          Labor force participation rate, female (% of female population ages 15-64) (modeled ILO estimate)
## 17128                                                                                                                                                                                              Labor force participation rate, male (% of male population ages 15-64) (modeled ILO estimate)
## 17129                                                                                                                                                                                            Labor force participation rate, total (% of total population ages 15-64) (modeled ILO estimate)
## 17130                                                                                                                                                                                   Labor force with advanced education, female (% of female working-age population with advanced education)
## 17131                                                                                                                                                                                       Labor force with advanced education, male (% of male working-age population with advanced education)
## 17132                                                                                                                                                                                            Labor force with advanced education (% of total working-age population with advanced education)
## 17133                                                                                                                                                                                         Labor force with basic education, female (% of female working-age population with basic education)
## 17134                                                                                                                                                                                             Labor force with basic education, male (% of male working-age population with basic education)
## 17135                                                                                                                                                                                                  Labor force with basic education (% of total working-age population with basic education)
## 17136                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 25-34)
## 17137                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 25-34)
## 17138                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 25-34)
## 17139                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 25-54)
## 17140                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 25-54)
## 17141                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 25-54)
## 17142                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 35-54)
## 17143                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 35-54)
## 17144                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 35-54)
## 17145                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 55-64)
## 17146                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 55-64)
## 17147                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 55-64)
## 17148                                                                                                                                                                                                                         Labor participation rate, female (% of female population ages 65+)
## 17149                                                                                                                                                                                                                             Labor participation rate, male (% of male population ages 65+)
## 17150                                                                                                                                                                                                                           Labor participation rate, total (% of total population ages 65+)
## 17151                                                                                                                                                                                               Labor force participation rate, female (% of female population ages 15+) (national estimate)
## 17152                                                                                                                                                                                            Labor force participation rate, female (% of female population ages 15+) (modeled ILO estimate)
## 17153                                                                                                                                                                                                             Ratio of female to male labor force participation rate (%) (national estimate)
## 17154                                                                                                                                                                                                          Ratio of female to male labor force participation rate (%) (modeled ILO estimate)
## 17155                                                                                                                                                                                                   Labor force participation rate, male (% of male population ages 15+) (national estimate)
## 17156                                                                                                                                                                                                Labor force participation rate, male (% of male population ages 15+) (modeled ILO estimate)
## 17157                                                                                                                                                                                                 Labor force participation rate, total (% of total population ages 15+) (national estimate)
## 17158                                                                                                                                                                                              Labor force participation rate, total (% of total population ages 15+) (modeled ILO estimate)
## 17159                                                                                                                                                                                                                                               Labor force, children 10-14 (% of age group)
## 17160                                                                                                                                                                                                                                               Labor force, children 10-14 (% of age group)
## 17161                                                                                                                                                                           Labor force with intermediate education, female (% of female working-age population with intermediate education)
## 17162                                                                                                                                                                               Labor force with intermediate education, male (% of male working-age population with intermediate education)
## 17163                                                                                                                                                                                    Labor force with intermediate education (% of total working-age population with intermediate education)
## 17164                                                                                                                                                                                                                                Part time employment, female (% of total female employment)
## 17165                                                                                                                                                                                                                                    Part time employment, male (% of total male employment)
## 17166                                                                                                                                                                                                                             Part time employment, female (% of total part time employment)
## 17167                                                                                                                                                                                                                                        Part time employment, total (% of total employment)
## 17168                                                                                                                                                                                                                       Labor force with primary education, female (% of female labor force)
## 17169                                                                                                                                                                                                                           Labor force with primary education, male (% of male labor force)
## 17170                                                                                                                                                                                                                                            Labor force with primary education (% of total)
## 17171                                                                                                                                                                                                                     Labor force with secondary education, female (% of female labor force)
## 17172                                                                                                                                                                                                                         Labor force with secondary education, male (% of male labor force)
## 17173                                                                                                                                                                                                                                          Labor force with secondary education (% of total)
## 17174                                                                                                                                                                                                                      Labor force with tertiary education, female (% of female labor force)
## 17175                                                                                                                                                                                                                          Labor force with tertiary education, male (% of male labor force)
## 17176                                                                                                                                                                                                                                           Labor force with tertiary education (% of total)
## 17177                                                                                                                                                                                                                                                                        Labor force, female
## 17178                                                                                                                                                                                                                                                                    Labor Force, Female (%)
## 17179                                                                                                                                                                                                                                               Labor force, female (% of total labor force)
## 17180                                                                                                                                                                                                                                                                         Labor force, total
## 17181                                                                                                                                                                                                                                                       Labor force growth, total (annual %)
## 17182                                                                                                                                                                                                                                                                          Labor force, male
## 17183                                                                                                                                                                                                                                                 Labor force, male (% of total labor force)
## 17184                                                                                                                                                                                                        Unemployment, youth female (% of female labor force ages 15-24) (national estimate)
## 17185                                                                                                                                                                                                     Unemployment, youth female (% of female labor force ages 15-24) (modeled ILO estimate)
## 17186                                                                                                                                                                                                                    Ratio of female to male youth unemployment rate (%) (national estimate)
## 17187                                                                                                                                                                                                      Ratio of female to male youth unemployment rate (% ages 15-24) (modeled ILO estimate)
## 17188                                                                                                                                                                                                            Unemployment, youth male (% of male labor force ages 15-24) (national estimate)
## 17189                                                                                                                                                                                                         Unemployment, youth male (% of male labor force ages 15-24) (modeled ILO estimate)
## 17190                                                                                                                                                                                                          Unemployment, youth total (% of total labor force ages 15-24) (national estimate)
## 17191                                                                                                                                                                                                       Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)
## 17192                                                                                                                                                                                             Unemployment with advanced education, female (% of female labor force with advanced education)
## 17193                                                                                                                                                                                                 Unemployment with advanced education, male (% of male labor force with advanced education)
## 17194                                                                                                                                                                                                      Unemployment with advanced education (% of total labor force with advanced education)
## 17195                                                                                                                                                                                                   Unemployment with basic education, female (% of female labor force with basic education)
## 17196                                                                                                                                                                                                       Unemployment with basic education, male (% of male labor force with basic education)
## 17197                                                                                                                                                                                                            Unemployment with basic education (% of total labor force with basic education)
## 17198                                                                                                                                                                                     Unemployment with intermediate education, female (% of female labor force with intermediate education)
## 17199                                                                                                                                                                                         Unemployment with intermediate education, male (% of male labor force with intermediate education)
## 17200                                                                                                                                                                                              Unemployment with intermediate education (% of total labor force with intermediate education)
## 17201                                                                                                                                                                                                                                  Long-term unemployment, female (% of female unemployment)
## 17202                                                                                                                                                                                                                                      Long-term unemployment, male (% of male unemployment)
## 17203                                                                                                                                                                                                                                           Long-term unemployment (% of total unemployment)
## 17204                                                                                                                                                                                             Share of youth not in education, employment or training, female (% of female youth population)
## 17205                                                                                                                                                                                                 Share of youth not in education, employment or training, male (% of male youth population)
## 17206                                                                                                                                                                                                     Share of youth not in education, employment or training, total (% of youth population)
## 17207                                                                                                                                                                                                                     Unemployment with primary education, female (% of female unemployment)
## 17208                                                                                                                                                                                                                         Unemployment with primary education, male (% of male unemployment)
## 17209                                                                                                                                                                                                                              Unemployment with primary education (% of total unemployment)
## 17210                                                                                                                                                                                                                   Unemployment with secondary education, female (% of female unemployment)
## 17211                                                                                                                                                                                                                       Unemployment with secondary education, male (% of male unemployment)
## 17212                                                                                                                                                                                                                            Unemployment with secondary education (% of total unemployment)
## 17213                                                                                                                                                                                                                    Unemployment with tertiary education, female (% of female unemployment)
## 17214                                                                                                                                                                                                                        Unemployment with tertiary education, male (% of male unemployment)
## 17215                                                                                                                                                                                                                             Unemployment with tertiary education (% of total unemployment)
## 17216                                                                                                                                                                                                                                                                Number of people unemployed
## 17217                                                                                                                                                                                                                         Unemployment, female (% of female labor force) (national estimate)
## 17218                                                                                                                                                                                                                      Unemployment, female (% of female labor force) (modeled ILO estimate)
## 17219                                                                                                                                                                                                                             Unemployment, male (% of male labor force) (national estimate)
## 17220                                                                                                                                                                                                                          Unemployment, male (% of male labor force) (modeled ILO estimate)
## 17221                                                                                                                                                                                                                           Unemployment, total (% of total labor force) (national estimate)
## 17222                                                                                                                                                                                                                        Unemployment, total (% of total labor force) (modeled ILO estimate)
## 17223                                                                                                                                                                                               Children in employment, wage workers, female (% of female children in employment, ages 7-14)
## 17224                                                                                                                                                                                                   Children in employment, wage workers, male (% of male children in employment, ages 7-14)
## 17225                                                                                                                                                                                                              Children in employment, wage workers (% of children in employment, ages 7-14)
## 17226                                                                                                                                                                                                             Emigration rate of tertiary educated (% of total tertiary educated population)
## 17227                                                                                                                                                                                                                                                        Number of maternal mortality deaths
## 17228                                                                                                                                                                                                                                                                         Foreign population
## 17229                                                                                                                                                                                                                                                 Foreign population (% of total population)
## 17230                                                                                                                                                                                                                                                                  Inflows of asylum seekers
## 17231                                                                                                                                                                                                                                                              Inflows of foreign population
## 17232                                                                                                                                                                                                                                                                              Net migration
## 17233                                                                                                                                                                                                                                       Refugee population by country or territory of asylum
## 17234                                                                                                                                                                                                                                       Refugee population by country or territory of origin
## 17235                                                                                                                                                                                                                                                         International migrant stock, total
## 17236                                                                                                                                                                                                                                              International migrant stock (% of population)
## 17237                                                                                                                                                                                                                                               Foreign labor force (% of total labor force)
## 17238                                                                                                                                                                                                                                                                 Inflows of foreign workers
## 17239                                                                                                                                                                                                                                                    Number of people who are undernourished
## 17240                                                                                                                                                                                                                                                Prevalence of undernourishment (population)
## 17241                                                                                                                                                                                                                                           Prevalence of undernourishment (% of population)
## 17242                                                                                                                                                                                                                                Depth of the food deficit (kilocalories per person per day)
## 17243                                                                                                                                                                                                                                          Depth of hunger (kilocalories per person per day)
## 17244                                                                                                                                                                                                                     Prevalence of moderate or severe food insecurity in the population (%)
## 17245                                                                                                                                                                                                                                              Consumption of iodized salt (% of households)
## 17246                                                                                                                                                                                                                                 Prevalence of severe food insecurity in the population (%)
## 17247                                                                                                                                                                                                          Vitamin A supplements for postpartum women (% of women with a birth): Q1 (lowest)
## 17248                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q2
## 17249                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q3
## 17250                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q4
## 17251                                                                                                                                                                                                         Vitamin A supplements for postpartum women (% of women with a birth): Q5 (highest)
## 17252                                                                                                                                                                                                           Vitamin A supplements for children (% of children ages 6-59 months): Q1 (lowest)
## 17253                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q2
## 17254                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q3
## 17255                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q4
## 17256                                                                                                                                                                                                          Vitamin A supplements for children (% of children ages 6-59 months): Q5 (highest)
## 17257                                                                                                                                                                                                                   Vitamin A supplementation coverage rate (% of children ages 6-59 months)
## 17258                                                                                                                                                                                                                                                  Food Production, per capita (1979-81=100)
## 17259                                                                                                                                                                                                                                                     Food Production, per capita (1980=100)
## 17260                                                                                                                                                                                                               Sub-National Malnutrition prevalence, weight for age (% of children under 5)
## 17261                                                                                                                                                                                                                              Sub-National Prevalence of overweight (% of children under 5)
## 17262                                                                                                                                                                                                               Sub-National Malnutrition prevalence, height for age (% of children under 5)
## 17263                                                                                                                                                                                                                                 Sub-National Prevalence of wasting (% of children under 5)
## 17264                                                                                                                                                                                                       Sub-National Prevalence of severe wasting, weight for height (% of children under 5)
## 17265                                                                                                                                                                                                                                                      Food Production per capita (1987=100)
## 17266                                                                                                                                                                                                                              Adolescent fertility rate (births per 1,000 women ages 15-19)
## 17267                                                                                                                                                                                                                                                     Crude Birth Rate (per 1000 population)
## 17268                                                                                                                                                                                            Completeness of infant death reporting (% of reported infant deaths to estimated infant deaths)
## 17269                                                                                                                                                                                               Completeness of total death reporting (% of reported total deaths to estimated total deaths)
## 17270                                                                                                                                                                                                      Antenatal care coverage provided by a skilled health provider, at least one visit (%)
## 17271                                                                                                                                                                                          Antenatal care coverage provided by any provider (skilled or unskilled), at least four visits (%)
## 17272                                                                                                                                                                                                                                    Mortality rate, adult, female (per 1,000 female adults)
## 17273                                                                                                                                                                                                                                        Mortality rate, adult, male (per 1,000 male adults)
## 17274                                                                                                                                                                                                                                                 Crude Birth Rate (per thousand population)
## 17275                                                                                                                                                                                                                                                       Birth rate, crude (per 1,000 people)
## 17276                                                                                                                                                                                                                                                       Death rate, crude (per 1,000 people)
## 17277                                                                                                                                                                                                                         Mean number of children ever born to women aged 40-49: Q1 (lowest)
## 17278                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q2
## 17279                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q3
## 17280                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q4
## 17281                                                                                                                                                                                                                        Mean number of children ever born to women aged 40-49: Q5 (highest)
## 17282                                                                                                                                                                                                             Current use of contraception (modern method) (% of married women): Q1 (lowest)
## 17283                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q2
## 17284                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q3
## 17285                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q4
## 17286                                                                                                                                                                                                            Current use of contraception (modern method) (% of married women): Q5 (highest)
## 17287                                                                                                                                                                                              Contraceptive prevalence, any modern method (% of sexually active unmarried women ages 15-49)
## 17288                                                                                                                                                                                                                Contraceptive prevalence, any modern method (% of married women ages 15-49)
## 17289                                                                                                                                                                                                                          Contraceptive use among married women 15-49 years old, condom (%)
## 17290                                                                                                                                                                                                                   Contraceptive use among married women 15-49 years old, modern method (%)
## 17291                                                                                                                                                                                                                Current use of contraception (any method) (% of married women): Q1 (lowest)
## 17292                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q2
## 17293                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q3
## 17294                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q4
## 17295                                                                                                                                                                                                               Current use of contraception (any method) (% of married women): Q5 (highest)
## 17296                                                                                                                                                                                                     Contraceptive prevalence, any method (% of sexually active unmarried women ages 15-49)
## 17297                                                                                                                                                                                                                       Contraceptive prevalence, any method (% of married women ages 15-49)
## 17298                                                                                                                                                                                                                                           Infant Mortality Rate (per thousand live births)
## 17299                                                                                                                                                                                                                                     Mortality rate, infant, female (per 1,000 live births)
## 17300                                                                                                                                                                                                                                             Mortality rate, infant (per 1,000 live births)
## 17301                                                                                                                                                                                                                                       Mortality rate, infant, male (per 1,000 live births)
## 17302                                                                                                                                                                                                                                 Infant mortality rate (per 1,000 live births): Q1 (lowest)
## 17303                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q2
## 17304                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q3
## 17305                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q4
## 17306                                                                                                                                                                                                                                Infant mortality rate (per 1,000 live births): Q5 (highest)
## 17307                                                                                                                                                                                                                                                   Life expectancy at birth, female (years)
## 17308                                                                                                                                                                                                                                                    Life expectancy at birth, total (years)
## 17309                                                                                                                                                                                                                                                     Life expectancy at birth, male (years)
## 17310                                                                                                                                                                                                                                                  Life expectancy at age 60, female (years)
## 17311                                                                                                                                                                                                                                                    Life expectancy at age 60, male (years)
## 17312                                                                                                                                                                                                                                                            Life Expectancy at Birth(years)
## 17313                                                                                                                                                                                                                                                              Age at first marriage, female
## 17314                                                                                                                                                                                                                                                                Age at first marriage, male
## 17315                                                                                                                                                                                                                                                    Total Fertility Rate (births per woman)
## 17316                                                                                                                                                                                                                                                   Fertility rate, total (births per woman)
## 17317                                                                                                                                                                                                                                 Total fertility rate (TFR) (births per woman): Q1 (lowest)
## 17318                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q2
## 17319                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q3
## 17320                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q4
## 17321                                                                                                                                                                                                                                Total fertility rate (TFR) (births per woman): Q5 (highest)
## 17322                                                                                                                                                                                                                                                   Survival to age 65, female (% of cohort)
## 17323                                                                                                                                                                                                                                                     Survival to age 65, male (% of cohort)
## 17324                                                                                                                                                                                                                                                   Wanted fertility rate (births per woman)
## 17325                                                                                                                                                                                                                                Total wanted fertility rate (births per woman): Q1 (lowest)
## 17326                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q2
## 17327                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q3
## 17328                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q4
## 17329                                                                                                                                                                                                                               Total wanted fertility rate (births per woman): Q5 (highest)
## 17330                                                                                                                                                                                                                                                      SP.EXCHG.RATE.ICP:Exchange Rate Value
## 17331                                                                                                                                                                                                                                                                       Total Fertility Rate
## 17332                                                                                                                                                                                                                              Female headed households (% of households with a female head)
## 17333                                                                                                                                                                                                                             Women who were first married by age 15 (% of women ages 20-24)
## 17334                                                                                                                                                                                                                             Women who were first married by age 18 (% of women ages 20-24)
## 17335                                                                                                                                                                                                                                                   Infant Mortality Rate (per 1000 infants)
## 17336                                                                                                                                                                      Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q1 (lowest)
## 17337                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q2
## 17338                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q3
## 17339                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q4
## 17340                                                                                                                                                                     Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q5 (highest)
## 17341                                                                                                                                                                                                    Teenage mothers (% of women ages 15-19 who have had children or are currently pregnant)
## 17342                                                                                                                                                                                                                                                              Population ages 00-04, female
## 17343                                                                                                                                                                                                                                     Population ages 00-04, female (% of female population)
## 17344                                                                                                                                                                                                                                                                Population ages 00-04, male
## 17345                                                                                                                                                                                                                                         Population ages 00-04, male (% of male population)
## 17346                                                                                                                                                                                                                                                               Population ages 0-14, female
## 17347                                                                                                                                                                                                                                      Population ages 0-14, female (% of female population)
## 17348                                                                                                                                                                                                                                                                 Population ages 0-14, male
## 17349                                                                                                                                                                                                                                          Population ages 0-14, male (% of male population)
## 17350                                                                                                                                                                                                                                                                Population ages 0-14, total
## 17351                                                                                                                                                                                                                                               Population ages 0-14 (% of total population)
## 17352                                                                                                                                                                                                                                                    Population 0-24 (% of total population)
## 17353                                                                                                                                                                                                                                                               Population, ages 3-5, female
## 17354                                                                                                                                                                                                                                                                 Population, ages 3-5, male
## 17355                                                                                                                                                                                                                                                                Population, ages 3-5, total
## 17356                                                                                                                                                                                                                                                               Population, ages 4-6, female
## 17357                                                                                                                                                                                                                                                                 Population, ages 4-6, male
## 17358                                                                                                                                                                                                                                                                Population, ages 4-6, total
## 17359                                                                                                                                                                                                                                                              Population ages 05-09, female
## 17360                                                                                                                                                                                                                                     Population ages 05-09, female (% of female population)
## 17361                                                                                                                                                                                                                                                               Population, ages 5-9, female
## 17362                                                                                                                                                                                                                                                                Population ages 05-09, male
## 17363                                                                                                                                                                                                                                         Population ages 05-09, male (% of male population)
## 17364                                                                                                                                                                                                                                                                 Population, ages 5-9, male
## 17365                                                                                                                                                                                                                                                                Population, ages 5-9, total
## 17366                                                                                                                                                                                                                                                              Population, ages 5-10, female
## 17367                                                                                                                                                                                                                                                                Population, ages 5-10, male
## 17368                                                                                                                                                                                                                                                               Population, ages 5-10, total
## 17369                                                                                                                                                                                                                                                              Population, ages 5-11, female
## 17370                                                                                                                                                                                                                                                                Population, ages 5-11, male
## 17371                                                                                                                                                                                                                                                               Population, ages 5-11, total
## 17372                                                                                                                                                                                                                                                               Population, ages 6-9, female
## 17373                                                                                                                                                                                                                                                                 Population, ages 6-9, male
## 17374                                                                                                                                                                                                                                                                Population, ages 6-9, total
## 17375                                                                                                                                                                                                                                                              Population, ages 6-10, female
## 17376                                                                                                                                                                                                                                                                Population, ages 6-10, male
## 17377                                                                                                                                                                                                                                                               Population, ages 6-10, total
## 17378                                                                                                                                                                                                                                                              Population, ages 6-11, female
## 17379                                                                                                                                                                                                                                                                Population, ages 6-11, male
## 17380                                                                                                                                                                                                                                                               Population, ages 6-11, total
## 17381                                                                                                                                                                                                                                                              Population, ages 6-12, female
## 17382                                                                                                                                                                                                                                                                Population, ages 6-12, male
## 17383                                                                                                                                                                                                                                                               Population, ages 6-12, total
## 17384                                                                                                                                                                                                                                                               Population, ages 7-9, female
## 17385                                                                                                                                                                                                                                                                 Population, ages 7-9, male
## 17386                                                                                                                                                                                                                                                                Population, ages 7-9, total
## 17387                                                                                                                                                                                                                                                              Population, ages 7-10, female
## 17388                                                                                                                                                                                                                                                                Population, ages 7-10, male
## 17389                                                                                                                                                                                                                                                               Population, ages 7-10, total
## 17390                                                                                                                                                                                                                                                              Population, ages 7-11, female
## 17391                                                                                                                                                                                                                                                                Population, ages 7-11, male
## 17392                                                                                                                                                                                                                                                               Population, ages 7-11, total
## 17393                                                                                                                                                                                                                                                              Population, ages 7-12, female
## 17394                                                                                                                                                                                                                                                                Population, ages 7-12, male
## 17395                                                                                                                                                                                                                                                               Population, ages 7-12, total
## 17396                                                                                                                                                                                                                                                              Population, ages 7-13, female
## 17397                                                                                                                                                                                                                                                                Population, ages 7-13, male
## 17398                                                                                                                                                                                                                                                               Population, ages 7-13, total
## 17399                                                                                                                                                                                                                                                              Population ages 10-14, female
## 17400                                                                                                                                                                                                                                     Population ages 10-14, female (% of female population)
## 17401                                                                                                                                                                                                                                                             Population, ages 10-14, female
## 17402                                                                                                                                                                                                                                                                Population ages 10-14, male
## 17403                                                                                                                                                                                                                                         Population ages 10-14, male (% of male population)
## 17404                                                                                                                                                                                                                                                               Population, ages 10-14, male
## 17405                                                                                                                                                                                                                                                              Population, ages 10-14, total
## 17406                                                                                                                                                                                                                                                             Population, ages 10-15, female
## 17407                                                                                                                                                                                                                                                               Population, ages 10-15, male
## 17408                                                                                                                                                                                                                                                              Population, ages 10-15, total
## 17409                                                                                                                                                                                                                                                             Population, ages 10-16, female
## 17410                                                                                                                                                                                                                                                               Population, ages 10-16, male
## 17411                                                                                                                                                                                                                                                              Population, ages 10-16, total
## 17412                                                                                                                                                                                                                                                             Population, ages 10-17, female
## 17413                                                                                                                                                                                                                                                               Population, ages 10-17, male
## 17414                                                                                                                                                                                                                                                              Population, ages 10-17, total
## 17415                                                                                                                                                                                                                                                             Population, ages 10-18, female
## 17416                                                                                                                                                                                                                                                               Population, ages 10-18, male
## 17417                                                                                                                                                                                                                                                              Population, ages 10-18, total
## 17418                                                                                                                                                                                                                                                             Population, ages 11-15, female
## 17419                                                                                                                                                                                                                                                               Population, ages 11-15, male
## 17420                                                                                                                                                                                                                                                              Population, ages 11-15, total
## 17421                                                                                                                                                                                                                                                             Population, ages 11-16, female
## 17422                                                                                                                                                                                                                                                               Population, ages 11-16, male
## 17423                                                                                                                                                                                                                                                              Population, ages 11-16, total
## 17424                                                                                                                                                                                                                                                             Population, ages 11-17, female
## 17425                                                                                                                                                                                                                                                               Population, ages 11-17, male
## 17426                                                                                                                                                                                                                                                              Population, ages 11-17, total
## 17427                                                                                                                                                                                                                                                             Population, ages 11-18, female
## 17428                                                                                                                                                                                                                                                               Population, ages 11-18, male
## 17429                                                                                                                                                                                                                                                              Population, ages 11-18, total
## 17430                                                                                                                                                                                                                                                             Population, ages 12-15, female
## 17431                                                                                                                                                                                                                                                               Population, ages 12-15, male
## 17432                                                                                                                                                                                                                                                              Population, ages 12-15, total
## 17433                                                                                                                                                                                                                                                             Population, ages 12-16, female
## 17434                                                                                                                                                                                                                                                               Population, ages 12-16, male
## 17435                                                                                                                                                                                                                                                              Population, ages 12-16, total
## 17436                                                                                                                                                                                                                                                             Population, ages 12-17, female
## 17437                                                                                                                                                                                                                                                               Population, ages 12-17, male
## 17438                                                                                                                                                                                                                                                              Population, ages 12-17, total
## 17439                                                                                                                                                                                                                                                             Population, ages 12-18, female
## 17440                                                                                                                                                                                                                                                               Population, ages 12-18, male
## 17441                                                                                                                                                                                                                                                              Population, ages 12-18, total
## 17442                                                                                                                                                                                                                                                             Population, ages 13-16, female
## 17443                                                                                                                                                                                                                                                               Population, ages 13-16, male
## 17444                                                                                                                                                                                                                                                              Population, ages 13-16, total
## 17445                                                                                                                                                                                                                                                             Population, ages 13-17, female
## 17446                                                                                                                                                                                                                                                               Population, ages 13-17, male
## 17447                                                                                                                                                                                                                                                              Population, ages 13-17, total
## 17448                                                                                                                                                                                                                                                             Population, ages 13-18, female
## 17449                                                                                                                                                                                                                                                               Population, ages 13-18, male
## 17450                                                                                                                                                                                                                                                              Population, ages 13-18, total
## 17451                                                                                                                                                                                                                                                             Population, ages 13-19, female
## 17452                                                                                                                                                                                                                                                               Population, ages 13-19, male
## 17453                                                                                                                                                                                                                                                              Population, ages 13-19, total
## 17454                                                                                                                                                                                                                                                             Population, ages 14-18, female
## 17455                                                                                                                                                                                                                                                               Population, ages 14-18, male
## 17456                                                                                                                                                                                                                                                              Population, ages 14-18, total
## 17457                                                                                                                                                                                                                                                             Population, ages 14-19, female
## 17458                                                                                                                                                                                                                                                               Population, ages 14-19, male
## 17459                                                                                                                                                                                                                                                              Population, ages 14-19, total
## 17460                                                                                                                                                                                                                                                              Population ages 15-19, female
## 17461                                                                                                                                                                                                                                     Population ages 15-19, female (% of female population)
## 17462                                                                                                                                                                                                                                                                Population ages 15-19, male
## 17463                                                                                                                                                                                                                                         Population ages 15-19, male (% of male population)
## 17464                                                                                                                                                                                                                                                             Population, ages 15-24, female
## 17465                                                                                                                                                                                                                                                               Population, ages 15-24, male
## 17466                                                                                                                                                                                                                                                              Population, ages 15-24, total
## 17467                                                                                                                                                                                                                                                              Population ages 15-64, female
## 17468                                                                                                                                                                                                                                     Population ages 15-64, female (% of female population)
## 17469                                                                                                                                                                                                                                                               Population aged 15-64, total
## 17470                                                                                                                                                                                                                                                         Population ages 15-64 (% of total)
## 17471                                                                                                                                                                                                                                                                Population ages 15-64, male
## 17472                                                                                                                                                                                                                                         Population ages 15-64, male (% of male population)
## 17473                                                                                                                                                                                                                                                               Population ages 15-64, total
## 17474                                                                                                                                                                                                                                              Population ages 15-64 (% of total population)
## 17475                                                                                                                                                                                                                                                              Population ages 20-24, female
## 17476                                                                                                                                                                                                                                     Population ages 20-24, female (% of female population)
## 17477                                                                                                                                                                                                                                                                Population ages 20-24, male
## 17478                                                                                                                                                                                                                                         Population ages 20-24, male (% of male population)
## 17479                                                                                                                                                                                                                                                              Population ages 25-29, female
## 17480                                                                                                                                                                                                                                     Population ages 25-29, female (% of female population)
## 17481                                                                                                                                                                                                                                                                Population ages 25-29, male
## 17482                                                                                                                                                                                                                                         Population ages 25-29, male (% of male population)
## 17483                                                                                                                                                                                                                                                              Population ages 30-34, female
## 17484                                                                                                                                                                                                                                     Population ages 30-34, female (% of female population)
## 17485                                                                                                                                                                                                                                                                Population ages 30-34, male
## 17486                                                                                                                                                                                                                                         Population ages 30-34, male (% of male population)
## 17487                                                                                                                                                                                                                                                              Population ages 35-39, female
## 17488                                                                                                                                                                                                                                     Population ages 35-39, female (% of female population)
## 17489                                                                                                                                                                                                                                                                Population ages 35-39, male
## 17490                                                                                                                                                                                                                                         Population ages 35-39, male (% of male population)
## 17491                                                                                                                                                                                                                                                              Population ages 40-44, female
## 17492                                                                                                                                                                                                                                     Population ages 40-44, female (% of female population)
## 17493                                                                                                                                                                                                                                                                Population ages 40-44, male
## 17494                                                                                                                                                                                                                                         Population ages 40-44, male (% of male population)
## 17495                                                                                                                                                                                                                                                              Population ages 45-49, female
## 17496                                                                                                                                                                                                                                     Population ages 45-49, female (% of female population)
## 17497                                                                                                                                                                                                                                                                Population ages 45-49, male
## 17498                                                                                                                                                                                                                                         Population ages 45-49, male (% of male population)
## 17499                                                                                                                                                                                                                                                              Population ages 50-54, female
## 17500                                                                                                                                                                                                                                     Population ages 50-54, female (% of female population)
## 17501                                                                                                                                                                                                                                                                Population ages 50-54, male
## 17502                                                                                                                                                                                                                                         Population ages 50-54, male (% of male population)
## 17503                                                                                                                                                                                                                                                              Population ages 55-59, female
## 17504                                                                                                                                                                                                                                     Population ages 55-59, female (% of female population)
## 17505                                                                                                                                                                                                                                                                Population ages 55-59, male
## 17506                                                                                                                                                                                                                                         Population ages 55-59, male (% of male population)
## 17507                                                                                                                                                                                                                                                              Population ages 60-64, female
## 17508                                                                                                                                                                                                                                     Population ages 60-64, female (% of female population)
## 17509                                                                                                                                                                                                                                                                Population ages 60-64, male
## 17510                                                                                                                                                                                                                                         Population ages 60-64, male (% of male population)
## 17511                                                                                                                                                                                                                                                              Population ages 65-69, female
## 17512                                                                                                                                                                                                                                     Population ages 65-69, female (% of female population)
## 17513                                                                                                                                                                                                                                                                Population ages 65-69, male
## 17514                                                                                                                                                                                                                                         Population ages 65-69, male (% of male population)
## 17515                                                                                                                                                                                                                                                       Population ages 65 and above, female
## 17516                                                                                                                                                                                                                              Population ages 65 and above, female (% of female population)
## 17517                                                                                                                                                                                                                                                         Population ages 65 and above, male
## 17518                                                                                                                                                                                                                                  Population ages 65 and above, male (% of male population)
## 17519                                                                                                                                                                                                                                                      Women ages 65 and above (per 100 men)
## 17520                                                                                                                                                                                                                                                        Population ages 65 and above, total
## 17521                                                                                                                                                                                                                                       Population ages 65 and above (% of total population)
## 17522                                                                                                                                                                                                                                                              Population ages 70-74, female
## 17523                                                                                                                                                                                                                                     Population ages 70-74, female (% of female population)
## 17524                                                                                                                                                                                                                                                                Population ages 70-74, male
## 17525                                                                                                                                                                                                                                         Population ages 70-74, male (% of male population)
## 17526                                                                                                                                                                                                                                                              Population ages 75-79, female
## 17527                                                                                                                                                                                                                                     Population ages 75-79, female (% of female population)
## 17528                                                                                                                                                                                                                                                                Population ages 75-79, male
## 17529                                                                                                                                                                                                                                         Population ages 75-79, male (% of male population)
## 17530                                                                                                                                                                                                                                                       Population ages 80 and above, female
## 17531                                                                                                                                                                                                                              Population ages 80 and above, female (% of female population)
## 17532                                                                                                                                                                                                                                                         Population ages 80 and above, male
## 17533                                                                                                                                                                                                                                  Population ages 80 and above, male (% of male population)
## 17534                                                                                                                                                                                                                                               Age population, age 00, female, interpolated
## 17535                                                                                                                                                                                                                                                                  Population, age 0, female
## 17536                                                                                                                                                                                                                                                 Age population, age 00, male, interpolated
## 17537                                                                                                                                                                                                                                                                    Population, age 0, male
## 17538                                                                                                                                                                                                                                                                   Population, age 0, total
## 17539                                                                                                                                                                                                                                               Age population, age 01, female, interpolated
## 17540                                                                                                                                                                                                                                                                  Population, age 1, female
## 17541                                                                                                                                                                                                                                                 Age population, age 01, male, interpolated
## 17542                                                                                                                                                                                                                                                                    Population, age 1, male
## 17543                                                                                                                                                                                                                                                                   Population, age 1, total
## 17544                                                                                                                                                                                                                                               Age population, age 02, female, interpolated
## 17545                                                                                                                                                                                                                                                                  Population, age 2, female
## 17546                                                                                                                                                                                                                                                 Age population, age 02, male, interpolated
## 17547                                                                                                                                                                                                                                                                    Population, age 2, male
## 17548                                                                                                                                                                                                                                                                   Population, age 2, total
## 17549                                                                                                                                                                                                                                               Age population, age 03, female, interpolated
## 17550                                                                                                                                                                                                                                                                  Population, age 3, female
## 17551                                                                                                                                                                                                                                                 Age population, age 03, male, interpolated
## 17552                                                                                                                                                                                                                                                                    Population, age 3, male
## 17553                                                                                                                                                                                                                                                                   Population, age 3, total
## 17554                                                                                                                                                                                                                                               Age population, age 04, female, interpolated
## 17555                                                                                                                                                                                                                                                                  Population, age 4, female
## 17556                                                                                                                                                                                                                                                 Age population, age 04, male, interpolated
## 17557                                                                                                                                                                                                                                                                    Population, age 4, male
## 17558                                                                                                                                                                                                                                                                   Population, age 4, total
## 17559                                                                                                                                                                                                                                               Age population, age 05, female, interpolated
## 17560                                                                                                                                                                                                                                                                  Population, age 5, female
## 17561                                                                                                                                                                                                                                                 Age population, age 05, male, interpolated
## 17562                                                                                                                                                                                                                                                                    Population, age 5, male
## 17563                                                                                                                                                                                                                                                                   Population, age 5, total
## 17564                                                                                                                                                                                                                                               Age population, age 06, female, interpolated
## 17565                                                                                                                                                                                                                                                                  Population, age 6, female
## 17566                                                                                                                                                                                                                                                 Age population, age 06, male, interpolated
## 17567                                                                                                                                                                                                                                                                    Population, age 6, male
## 17568                                                                                                                                                                                                                                                                   Population, age 6, total
## 17569                                                                                                                                                                                                                                               Age population, age 07, female, interpolated
## 17570                                                                                                                                                                                                                                                                  Population, age 7, female
## 17571                                                                                                                                                                                                                                                 Age population, age 07, male, interpolated
## 17572                                                                                                                                                                                                                                                                    Population, age 7, male
## 17573                                                                                                                                                                                                                                                                   Population, age 7, total
## 17574                                                                                                                                                                                                                                               Age population, age 08, female, interpolated
## 17575                                                                                                                                                                                                                                                                  Population, age 8, female
## 17576                                                                                                                                                                                                                                                 Age population, age 08, male, interpolated
## 17577                                                                                                                                                                                                                                                                    Population, age 8, male
## 17578                                                                                                                                                                                                                                                                   Population, age 8, total
## 17579                                                                                                                                                                                                                                               Age population, age 09, female, interpolated
## 17580                                                                                                                                                                                                                                                                  Population, age 9, female
## 17581                                                                                                                                                                                                                                                 Age population, age 09, male, interpolated
## 17582                                                                                                                                                                                                                                                                    Population, age 9, male
## 17583                                                                                                                                                                                                                                                                   Population, age 9, total
## 17584                                                                                                                                                                                                                                               Age population, age 10, female, interpolated
## 17585                                                                                                                                                                                                                                                                 Population, age 10, female
## 17586                                                                                                                                                                                                                                                 Age population, age 10, male, interpolated
## 17587                                                                                                                                                                                                                                                                   Population, age 10, male
## 17588                                                                                                                                                                                                                                                                  Population, age 10, total
## 17589                                                                                                                                                                                                                                               Age population, age 11, female, interpolated
## 17590                                                                                                                                                                                                                                                                 Population, age 11, female
## 17591                                                                                                                                                                                                                                                 Age population, age 11, male, interpolated
## 17592                                                                                                                                                                                                                                                                   Population, age 11, male
## 17593                                                                                                                                                                                                                                                                  Population, age 11, total
## 17594                                                                                                                                                                                                                                               Age population, age 12, female, interpolated
## 17595                                                                                                                                                                                                                                                                 Population, age 12, female
## 17596                                                                                                                                                                                                                                                 Age population, age 12, male, interpolated
## 17597                                                                                                                                                                                                                                                                   Population, age 12, male
## 17598                                                                                                                                                                                                                                                                  Population, age 12, total
## 17599                                                                                                                                                                                                                                               Age population, age 13, female, interpolated
## 17600                                                                                                                                                                                                                                                                 Population, age 13, female
## 17601                                                                                                                                                                                                                                                 Age population, age 13, male, interpolated
## 17602                                                                                                                                                                                                                                                                   Population, age 13, male
## 17603                                                                                                                                                                                                                                                                  Population, age 13, total
## 17604                                                                                                                                                                                                                                               Age population, age 14, female, interpolated
## 17605                                                                                                                                                                                                                                                                 Population, age 14, female
## 17606                                                                                                                                                                                                                                                 Age population, age 14, male, interpolated
## 17607                                                                                                                                                                                                                                                                   Population, age 14, male
## 17608                                                                                                                                                                                                                                                                  Population, age 14, total
## 17609                                                                                                                                                                                                                                               Age population, age 15, female, interpolated
## 17610                                                                                                                                                                                                                                                                 Population, age 15, female
## 17611                                                                                                                                                                                                                                                 Age population, age 15, male, interpolated
## 17612                                                                                                                                                                                                                                                                   Population, age 15, male
## 17613                                                                                                                                                                                                                                                                  Population, age 15, total
## 17614                                                                                                                                                                                                                                               Age population, age 16, female, interpolated
## 17615                                                                                                                                                                                                                                                                 Population, age 16, female
## 17616                                                                                                                                                                                                                                                 Age population, age 16, male, interpolated
## 17617                                                                                                                                                                                                                                                                   Population, age 16, male
## 17618                                                                                                                                                                                                                                                                  Population, age 16, total
## 17619                                                                                                                                                                                                                                               Age population, age 17, female, interpolated
## 17620                                                                                                                                                                                                                                                                 Population, age 17, female
## 17621                                                                                                                                                                                                                                                 Age population, age 17, male, interpolated
## 17622                                                                                                                                                                                                                                                                   Population, age 17, male
## 17623                                                                                                                                                                                                                                                                  Population, age 17, total
## 17624                                                                                                                                                                                                                                               Age population, age 18, female, interpolated
## 17625                                                                                                                                                                                                                                                                 Population, age 18, female
## 17626                                                                                                                                                                                                                                                 Age population, age 18, male, interpolated
## 17627                                                                                                                                                                                                                                                                   Population, age 18, male
## 17628                                                                                                                                                                                                                                                                  Population, age 18, total
## 17629                                                                                                                                                                                                                                               Age population, age 19, female, interpolated
## 17630                                                                                                                                                                                                                                                                 Population, age 19, female
## 17631                                                                                                                                                                                                                                                 Age population, age 19, male, interpolated
## 17632                                                                                                                                                                                                                                                                   Population, age 19, male
## 17633                                                                                                                                                                                                                                                                  Population, age 19, total
## 17634                                                                                                                                                                                                                                               Age population, age 20, female, interpolated
## 17635                                                                                                                                                                                                                                                                 Population, age 20, female
## 17636                                                                                                                                                                                                                                                 Age population, age 20, male, interpolated
## 17637                                                                                                                                                                                                                                                                   Population, age 20, male
## 17638                                                                                                                                                                                                                                                                  Population, age 20, total
## 17639                                                                                                                                                                                                                                               Age population, age 21, female, interpolated
## 17640                                                                                                                                                                                                                                                                 Population, age 21, female
## 17641                                                                                                                                                                                                                                                 Age population, age 21, male, interpolated
## 17642                                                                                                                                                                                                                                                                   Population, age 21, male
## 17643                                                                                                                                                                                                                                                                  Population, age 21, total
## 17644                                                                                                                                                                                                                                               Age population, age 22, female, interpolated
## 17645                                                                                                                                                                                                                                                                 Population, age 22, female
## 17646                                                                                                                                                                                                                                                 Age population, age 22, male, interpolated
## 17647                                                                                                                                                                                                                                                                   Population, age 22, male
## 17648                                                                                                                                                                                                                                                                  Population, age 22, total
## 17649                                                                                                                                                                                                                                               Age population, age 23, female, interpolated
## 17650                                                                                                                                                                                                                                                                 Population, age 23, female
## 17651                                                                                                                                                                                                                                                 Age population, age 23, male, interpolated
## 17652                                                                                                                                                                                                                                                                   Population, age 23, male
## 17653                                                                                                                                                                                                                                                                  Population, age 23, total
## 17654                                                                                                                                                                                                                                               Age population, age 24, female, interpolated
## 17655                                                                                                                                                                                                                                                                 Population, age 24, female
## 17656                                                                                                                                                                                                                                                 Age population, age 24, male, interpolated
## 17657                                                                                                                                                                                                                                                                   Population, age 24, male
## 17658                                                                                                                                                                                                                                                                  Population, age 24, total
## 17659                                                                                                                                                                                                                                               Age population, age 25, female, interpolated
## 17660                                                                                                                                                                                                                                                                 Population, age 25, female
## 17661                                                                                                                                                                                                                                                 Age population, age 25, male, interpolated
## 17662                                                                                                                                                                                                                                                                   Population, age 25, male
## 17663                                                                                                                                                                                                                                                                  Population, age 25, total
## 17664                                                                                                                                                                                                                                         Sex ratio at birth (male births per female births)
## 17665                                                                                                                                                                                                                                         Age dependency ratio (% of working-age population)
## 17666                                                                                                                                                                                                                                    Age dependency ratio, old (% of working-age population)
## 17667                                                                                                                                                                                                                                  Age dependency ratio, young (% of working-age population)
## 17668                                                                                                                                                                                                                                                               Population growth (annual %)
## 17669                                                                                                                                                                                                                                                      Population density (people per sq km)
## 17670                                                                                                                                                                                                                         Scientists and engineers in research and dev. (per million people)
## 17671                                                                                                                                                                                                                                                    Researchers in R&D (per million people)
## 17672                                                                                                                                                                                                                              Technicians in research and development  (per million people)
## 17673                                                                                                                                                                                                                                                    Technicians in R&D (per million people)
## 17674                                                                                                                                                                                                                                                                          Population, total
## 17675                                                                                                                                                                                                                                                                         Population, female
## 17676                                                                                                                                                                                                                                                 Population, female (% of total population)
## 17677                                                                                                                                                                                                                                                                 SP.POP.TOTL.ICP:Population
## 17678                                                                                                                                                                                                                                           SP.POP.TOTL.ICP.ZS:Population shares (World=100)
## 17679                                                                                                                                                                                                                                                                           Population, male
## 17680                                                                                                                                                                                                                                                   Population, male (% of total population)
## 17681                                                                                                                                                                                                                                                                    Population (% of total)
## 17682                                                                                                                                                                                                                              School age population, pre-primary education, female (number)
## 17683                                                                                                                                                                                                                          School age population, pre-primary education, both sexes (number)
## 17684                                                                                                                                                                                                                                School age population, pre-primary education, male (number)
## 17685                                                                                                                                                                                                                    School age population, last grade of primary education, female (number)
## 17686                                                                                                                                                                                                                      School age population, last grade of primary education, male (number)
## 17687                                                                                                                                                                                                                School age population, last grade of primary education, both sexes (number)
## 17688                                                                                                                                                                                                                                  School age population, primary education, female (number)
## 17689                                                                                                                                                                                                                              School age population, primary education, both sexes (number)
## 17690                                                                                                                                                                                                                                    School age population, primary education, male (number)
## 17691                                                                                                                                                                                                                                             Completeness of birth registration, female (%)
## 17692                                                                                                                                                                                                                                               Completeness of birth registration, male (%)
## 17693                                                                                                                                                                                                                                        Completeness of birth registration (%): Q1 (lowest)
## 17694                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q2
## 17695                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q3
## 17696                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q4
## 17697                                                                                                                                                                                                                                       Completeness of birth registration (%): Q5 (highest)
## 17698                                                                                                                                                                                                                                              Completeness of birth registration, rural (%)
## 17699                                                                                                                                                                                                                                              Completeness of birth registration, urban (%)
## 17700                                                                                                                                                                                                                                                     Completeness of birth registration (%)
## 17701                                                                                                                                                                                                                     Completeness of death registration with cause-of-death information (%)
## 17702                                                                                                                                                                                                                                                                           Rural population
## 17703                                                                                                                                                                                                                                                      Rural population, female (% of total)
## 17704                                                                                                                                                                                                                                                        Rural population, male (% of total)
## 17705                                                                                                                                                                                                                                                         Rural population growth (annual %)
## 17706                                                                                                                                                                                                                                                   Rural population (% of total population)
## 17707                                                                                                                                                                                                                          School age population, lower secondary education, female (number)
## 17708                                                                                                                                                                                                                      School age population, lower secondary education, both sexes (number)
## 17709                                                                                                                                                                                                                            School age population, lower secondary education, male (number)
## 17710                                                                                                                                                                                                                                School age population, secondary education, female (number)
## 17711                                                                                                                                                                                                                            School age population, secondary education, both sexes (number)
## 17712                                                                                                                                                                                                                                  School age population, secondary education, male (number)
## 17713                                                                                                                                                                                                                          School age population, upper secondary education, female (number)
## 17714                                                                                                                                                                                                                      School age population, upper secondary education, both sexes (number)
## 17715                                                                                                                                                                                                                            School age population, upper secondary education, male (number)
## 17716                                                                                                                                                                                                                                 School age population, tertiary education, female (number)
## 17717                                                                                                                                                                                                                             School age population, tertiary education, both sexes (number)
## 17718                                                                                                                                                                                                                                   School age population, tertiary education, male (number)
## 17719                                                                                                                                                                                                                                                         Urban population growth (annual %)
## 17720                                                                                                                                                                                                                                                                 Population in largest city
## 17721                                                                                                                                                                                                                                     Population in the largest city (% of urban population)
## 17722                                                                                                                                                                                                                                             Population in urban agglomerations > 1 million
## 17723                                                                                                                                                                                                                            Population in urban agglomerations > 1 million (% of total pop)
## 17724                                                                                                                                                                                                                                                                           Urban population
## 17725                                                                                                                                                                                                                                                      Urban population, female (% of total)
## 17726                                                                                                                                                                                                                                                   Urban population (% of total population)
## 17727                                                                                                                                                                                                                                                        Urban population, male (% of total)
## 17728                                                                                                                                                                                                                         Percentage of Population in Urban Areas (in % of Total Population)
## 17729                                                                                                                                                                                                            Unmet need for family planning (for limiting) (% of married women): Q1 (lowest)
## 17730                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q2
## 17731                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q3
## 17732                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q4
## 17733                                                                                                                                                                                                           Unmet need for family planning (for limiting) (% of married women): Q5 (highest)
## 17734                                                                                                                                                                                                             Unmet need for family planning (for spacing) (% of married women): Q1 (lowest)
## 17735                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q2
## 17736                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q3
## 17737                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q4
## 17738                                                                                                                                                                                                            Unmet need for family planning (for spacing) (% of married women): Q5 (highest)
## 17739                                                                                                                                                                                                                               Unmet need for contraception (% of married women ages 15-49)
## 17740                                                                                                                                                                                                                   Unmet need for family planning (total) (% of married women): Q1 (lowest)
## 17741                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q2
## 17742                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q3
## 17743                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q4
## 17744                                                                                                                                                                                                                  Unmet need for family planning (total) (% of married women): Q5 (highest)
## 17745                                                                                                                                               Availability of Mortality rate, under-5 (per 1,000 live births) data meeting quality standards according to UN IGME  (5 year moving average)
## 17746                                                                                                                                                                                                                                       Quality of Debt service data according to World Bank
## 17747                                                                                                                                                                                                                                          Labor force participation rate by sex and age (%)
## 17748                                                                                                                                                                                                  Availability of Comparable Poverty headcount ratio at $1.90 a day (5 year moving average)
## 17749                                                                                                                                                                                                                                                              Safely Managed Drinking Water
## 17750                                                                                                                                                                                                                                                                   SDDS/e-GDDS subscription
## 17751                                                                                                                                                                                                                                                              ODIN Open Data Openness score
## 17752                                                                                                                                                                                                                                                 NSO Website - advisory/analytical services
## 17753                                                                                                                                                                                                                                                                              NADA metadata
## 17754                                                                                                                                                                                                                                                 GOAL 1: No Poverty (5 year moving average)
## 17755                                                                                                                                                                                                                                        GOAL 10: Reduced Inequality (5 year moving average)
## 17756                                                                                                                                                                                                                        GOAL 11: Sustainable Cities and Communities (5 year moving average)
## 17757                                                                                                                                                                                                                    GOAL 12: Responsible Consumption and Production (5 year moving average)
## 17758                                                                                                                                                                                                                                            GOAL 13: Climate Action (5 year moving average)
## 17759                                                                                                                                                                                                                                          GOAL 14: Life Below Water (5 year moving average)
## 17760                                                                                                                                                                                                                                              GOAL 15: Life on Land (5 year moving average)
## 17761                                                                                                                                                                                                                     GOAL 16: Peace and Justice Strong Institutions (5 year moving average)
## 17762                                                                                                                                                                                                                          GOAL 17: Partnerships to achieve the Goal (5 year moving average)
## 17763                                                                                                                                                                                                                                                GOAL 2: Zero Hunger (5 year moving average)
## 17764                                                                                                                                                                                                                                 GOAL 3: Good Health and Well-being (5 year moving average)
## 17765                                                                                                                                                                                                                                          GOAL 4: Quality Education (5 year moving average)
## 17766                                                                                                                                                                                                                                            GOAL 5: Gender Equality (5 year moving average)
## 17767                                                                                                                                                                                                                                 GOAL 6: Clean Water and Sanitation (5 year moving average)
## 17768                                                                                                                                                                                                                                GOAL 7: Affordable and Clean Energy (5 year moving average)
## 17769                                                                                                                                                                                                                            GOAL 8: Decent Work and Economic Growth (5 year moving average)
## 17770                                                                                                                                                                                                                    GOAL 9: Industry, Innovation and Infrastructure (5 year moving average)
## 17771                                                                                                                                                                                                                             Population & Housing census (Availability score over 20 years)
## 17772                                                                                                                                                                                                                                      Agriculture census (Availability score over 20 years)
## 17773                                                                                                                                                                                                                           Business/establishment census (Availability score over 20 years)
## 17774                                                                                                                                                                                                                        Household Survey on income, etc  (Availability score over 10 years)
## 17775                                                                                                                                                                                                                                      Agriculture survey (Availability score over 10 years)
## 17776                                                                                                                                                                                                                                      Labor Force Survey (Availability score over 10 years)
## 17777                                                                                                                                                                                                                               Health/Demographic survey (Availability score over 10 years)
## 17778                                                                                                                                                                                                                           Business/establishment survey (Availability score over 10 years)
## 17779                                                                                                                                                                                                                                   Social Protection Admin (ASPIRE) (5 year moving average)
## 17780                                                                                                                                                                                                                                                 Education (UNESCO) (5 year moving average)
## 17781                                                                                                                                                                                                                                                                                 CRVS (WDI)
## 17782                                                                                                                                                                                                                                                  Labor Admin (ILO) (5 year moving average)
## 17783                                                                                                                                                                                                                                               Geospatial data available at 1st Admin Level
## 17784                                                                                                                                                                                                                                               NSO Website - private/citizen generated data
## 17785                                                                                                                                                                                                                           Legislation Indicator based on PARIS21 indicators on SDG 17.18.2
## 17786                                                                                                                                                                                                                                                         System of national accounts in use
## 17787                                                                                                                                                                                                                                                                           Business process
## 17788                                                                                                                                                                                                                                                                National Accounts base year
## 17789                                                                                                                                                                                                                                                        Classification of national industry
## 17790                                                                                                                                                                                                                                                                              CPI base year
## 17791                                                                                                                                                                                                                                                    Classification of household consumption
## 17792                                                                                                                                                                                                                                                     Classification of status of employment
## 17793                                                                                                                                                                                                                                                       Central government accounting status
## 17794                                                                                                                                                                                                                                               Compilation of government finance statistics
## 17795                                                                                                                                                                                                                                           Compilation of monetary and financial statistics
## 17796                                                                                                                                                                                                                                                         PARIS21 indicator on data literacy
## 17797                                                                                                                                                                                                                                                                               Partnerships
## 17798                                                                                                                                                                                                                 Finance Indicator based on PARIS21 indicators on SDG 17.18.3 & SDG 17.19.1
## 17799                                                                                                                                                                                                                                     Dimension 1.5: Data use by international organizations
## 17800                                                                                                                                                                                                                                                               Dimension 2.1: Data Releases
## 17801                                                                                                                                                                                                                                                               Dimension 2.2: Online access
## 17802                                                                                                                                                                                                                                                               Dimension 2.4: Data services
## 17803                                                                                                                                                                                                                                                           Dimension 3.1: Social Statistics
## 17804                                                                                                                                                                                                                                                         Dimension 3.2: Economic Statistics
## 17805                                                                                                                                                                                                                                                    Dimension 3.3: Environmental Statistics
## 17806                                                                                                                                                                                                                                                    Dimension 3.4: Institutional Statistics
## 17807                                                                                                                                                                                                                                        Dimension 4.1: Censuses and Surveys - Censuses only
## 17808                                                                                                                                                                                                                                         Dimension 4.1: Censuses and Surveys - Surveys only
## 17809                                                                                                                                                                                                                                                         Dimension 4.2: Administrative Data
## 17810                                                                                                                                                                                                                                                             Dimension 4.3: Geospatial Data
## 17811                                                                                                                                                                                                                                                  Dimension 5.1: Legislation and governance
## 17812                                                                                                                                                                                                                                                       Dimension 5.2: Standards and Methods
## 17813                                                                                                                                                                                                                                                                     Dimension 5.5: Finance
## 17814                                                                                                                                                                                                                                                                          SPI Overall Score
## 17815                                                                                                                                                                                                                                                               Pillar 1  - Data Use - Score
## 17816                                                                                                                                                                                                                                                           Pillar 2 - Data Services - Score
## 17817                                                                                                                                                                                                                                                           Pillar 3 - Data Products - Score
## 17818                                                                                                                                                                                                                                                            Pillar 4 - Data Sources - Score
## 17819                                                                                                                                                                                                                                                     Pillar 5 - Data Infrastructure - Score
## 17820                                                                                                                                                                                                                                                                   Arable land area (sq km)
## 17821                                                                                                                                                                                                                                                                       Surface area (sq km)
## 17822                                                                                                                                                                                                                         Water supply failure for firms receiving water (average days/year)
## 17823                                                                                                                                                                                                                                                  International tourism, number of arrivals
## 17824                                                                                                                                                                                                                                                International tourism, number of departures
## 17825                                                                                                                                                                                                                                              International tourism, receipts (current US$)
## 17826                                                                                                                                                                                                                                       International tourism, receipts (% of total exports)
## 17827                                                                                                                                                                                                                International tourism, receipts for passenger transport items (current US$)
## 17828                                                                                                                                                                                                            International tourism, expenditures for passenger transport items (current US$)
## 17829                                                                                                                                                                                                                             International tourism, receipts for travel items (current US$)
## 17830                                                                                                                                                                                                                         International tourism, expenditures for travel items (current US$)
## 17831                                                                                                                                                                                                                                          International tourism, expenditures (current US$)
## 17832                                                                                                                                                                                                                                   International tourism, expenditures (% of total imports)
## 17833                                                                                                                                                                                                                                                                      Trade (% of GDP, PPP)
## 17834                                                                                                                                                                                                                                                               Merchandise trade (% of GDP)
## 17835                                                                                                                                                                                                                                                            Trade in goods (% of goods GDP)
## 17836                                                                                                                                                                                                                                                                Number of product (imports)
## 17837                                                                                                                                                                                                                                                         Import product concentration index
## 17838                                                                                                                                                                                                                                                       Import product diversification index
## 17839                                                                                                                                                                 General Agreement on Trade in Services (GATS) Commitments Index, all service sectors (0 least liberal to 100 most liberal)
## 17840                                                                                                                                                                     Goods (excluding arms) admitted free of tariffs from developing countries (% total merchandise imports excluding arms)
## 17841                                                                                                                                                                Goods (excluding arms) admitted free of tariffs from least developed countries (% total merchandise imports excluding arms)
## 17842                                                                                                                                                                                                                                                Merchandise import price index (1987 = 100)
## 17843                                                                                                                                                                                                                                              Import Price Index, cif (1980=100, US$-based)
## 17844                                                                                                                                                                                                                                               Import Price Index, cif (1987=100,US$-based)
## 17845                                                                                                                                                                                                                                                             Merchandise import price index
## 17846                                                                                                                                                                                                                                                   Import price index, (nonfactor) services
## 17847                                                                                                                                                                                                                                                  Import volume index, POL and other energy
## 17848                                                                                                                                                                                                                                                                  Import volume index, food
## 17849                                                                                                                                                                                                                                                         Import volume index, capital goods
## 17850                                                                                                                                                                                                                                                            Merchandise import volume index
## 17851                                                                                                                                                                                                                                                           Import volume index (2000 = 100)
## 17852                                                                                                                                                                                                                                                  Import volume index, other consumer goods
## 17853                                                                                                                                                                                                                                                  Import volume index, (nonfactor) services
## 17854                                                                                                                                                                                                                                                          Import volume index, manufactures
## 17855                                                                                                                                                                                                                                                         Import volume index, primary goods
## 17856                                                                                                                                                                                                                                                    Import volume index, intermediate goods
## 17857                                                                                                                                                                                      Average tariffs imposed by developed countries on agricultural products from developing countries (%)
## 17858                                                                                                                                                                                 Average tariffs imposed by developed countries on agricultural products from least developed countries (%)
## 17859                                                                                                                                                                                          Average tariffs imposed by developed countries on clothing products from developing countries (%)
## 17860                                                                                                                                                                                     Average tariffs imposed by developed countries on clothing products from least developed countries (%)
## 17861                                                                                                                                                                                                                           Tariff barriers, share of lines bound, manufactured products (%)
## 17862                                                                                                                                                                                                                                                Binding coverage, manufactured products (%)
## 17863                                                                                                                                                                                                                                         Bound rate, simple mean, manufactured products (%)
## 17864                                                                                                                                                                                                                     Tariff barriers, dispersion around the mean, manufactured products (%)
## 17865                                                                                                                                                                                                                  Tariff barriers, share of lines domestic peaks, manufactured products (%)
## 17866                                                                                                                                                                                                                  Share of tariff lines with international peaks, manufactured products (%)
## 17867                                                                                                                                                                                                                               Tariff rate, applied, simple mean, manufactured products (%)
## 17868                                                                                                                                                                                                                   Tariff rate, most favored nation, simple mean, manufactured products (%)
## 17869                                                                                                                                                                                                                       Share of tariff lines with specific rates, manufactured products (%)
## 17870                                                                                                                                                                                                                             Tariff rate, applied, weighted mean, manufactured products (%)
## 17871                                                                                                                                                                                                                 Tariff rate, most favored nation, weighted mean, manufactured products (%)
## 17872                                                                                                                                                                                                                                    Tariff barriers, share of lines bound, all products (%)
## 17873                                                                                                                                                                                                                                                         Binding coverage, all products (%)
## 17874                                                                                                                                                                                                                                                  Bound rate, simple mean, all products (%)
## 17875                                                                                                                                                                                                                              Tariff barriers, dispersion around the mean, all products (%)
## 17876                                                                                                                                                                                                                           Tariff barriers, share of lines domestic peaks, all products (%)
## 17877                                                                                                                                                                                                                           Share of tariff lines with international peaks, all products (%)
## 17878                                                                                                                                                                                                                                        Tariff rate, applied, simple mean, all products (%)
## 17879                                                                                                                                                                                                                            Tariff rate, most favored nation, simple mean, all products (%)
## 17880                                                                                                                                                                                                                                Share of tariff lines with specific rates, all products (%)
## 17881                                                                                                                                                                                                                                      Tariff rate, applied, weighted mean, all products (%)
## 17882                                                                                                                                                                                                                          Tariff rate, most favored nation, weighted mean, all products (%)
## 17883                                                                                                                                                                                                                                Tariff barriers, share of lines bound, primary products (%)
## 17884                                                                                                                                                                                                                                                     Binding coverage, primary products (%)
## 17885                                                                                                                                                                                                                                              Bound rate, simple mean, primary products (%)
## 17886                                                                                                                                                                                                                          Tariff barriers, dispersion around the mean, primary products (%)
## 17887                                                                                                                                                                                                                                Tariff barriers, share of lines domestic peaks, primary (%)
## 17888                                                                                                                                                                                                                       Share of tariff lines with international peaks, primary products (%)
## 17889                                                                                                                                                                                                                                    Tariff rate, applied, simple mean, primary products (%)
## 17890                                                                                                                                                                                                                        Tariff rate, most favored nation, simple mean, primary products (%)
## 17891                                                                                                                                                                                                                            Share of tariff lines with specific rates, primary products (%)
## 17892                                                                                                                                                                                                                                  Tariff rate, applied, weighted mean, primary products (%)
## 17893                                                                                                                                                                                                                      Tariff rate, most favored nation, weighted mean, primary products (%)
## 17894                                                                                                                                                                                           Average tariffs imposed by developed countries on textile products from developing countries (%)
## 17895                                                                                                                                                                                      Average tariffs imposed by developed countries on textile products from least developed countries (%)
## 17896                                                                                                                                                                                                                                                      Import unit value index (2015 = 100 )
## 17897                                                                                                                                                                                                                              Agricultural raw materials imports (% of merchandise imports)
## 17898                                                                                                                                                                                                                                                 POL and other energy imports (current US$)
## 17899                                                                                                                                                                                                                                                POL and other energy imports (constant US$)
## 17900                                                                                                                                                                                                                                                                 Food imports (current US$)
## 17901                                                                                                                                                                                                                                                                Food imports (constant US$)
## 17902                                                                                                                                                                                                                                                            Food (% of merchandise imports)
## 17903                                                                                                                                                                                                                                                    Food imports (% of merchandise imports)
## 17904                                                                                                                                                                                                                                                                  CP Imports of Fuels (US$)
## 17905                                                                                                                                                                                                                                                            Fuel (% of merchandise imports)
## 17906                                                                                                                                                                                                                                                    Fuel imports (% of merchandise imports)
## 17907                                                                                                                                                                                                                                                  ICT goods imports (% total goods imports)
## 17908                                                                                                                                                                                                                         Insurance and financial services (% of commercial service imports)
## 17909                                                                                                                                                                                                                                                        Capital goods imports (current US$)
## 17910                                                                                                                                                                                                                                                       Capital goods imports (constant US$)
## 17911                                                                                                                                                                                                                                                           CP Imports of Manufactures (US$)
## 17912                                                                                                                                                                                                                                            Manufactures imports (% of merchandise imports)
## 17913                                                                                                                                                                                                                               Machinery and transport equipment (% of merchandise imports)
## 17914                                                                                                                                                                                                                                             Minerals and metals (% of merchandise imports)
## 17915                                                                                                                                                                                                                                         Ores and metals imports (% of merchandise imports)
## 17916                                                                                                                                                                                                      Merchandise imports from economies in the Arab World (% of total merchandise imports)
## 17917                                                                                                                                                                                                                                                             CP Value of Imports, cif (US$)
## 17918                                                                                                                                                                                                                                                      Merchandise imports (UN, current US$)
## 17919                                                                                                                                                                                                                                                            Import growth, value (annual %)
## 17920                                                                                                                                                                                                                                                      Merchandise imports, WB (current US$)
## 17921                                                                                                                                                                                                                                                          Merchandise imports (current US$)
## 17922                                                                                                                                                                                                            Merchandise imports from high-income economies (% of total merchandise imports)
## 17923                                                                                                                                                                                                                                                     Imports, cif (1980 US$) (Const. Price)
## 17924                                                                                                                                                                                                                                                    Merchandise imports (constant 1987 US$)
## 17925                                                                                                                                                                                                                                                           Import growth, volume (annual %)
## 17926                                                                                                                                                                                                                                                         Merchandise imports (constant US$)
## 17927                                                                                                                                                                                  Merchandise imports from low- and middle-income economies outside region (% of total merchandise imports)
## 17928                                                                                                                                                                          Merchandise imports from low- and middle-income economies in East Asia & Pacific (% of total merchandise imports)
## 17929                                                                                                                                                                        Merchandise imports from low- and middle-income economies in Europe & Central Asia (% of total merchandise imports)
## 17930                                                                                                                                                                Merchandise imports from low- and middle-income economies in Latin America & the Caribbean (% of total merchandise imports)
## 17931                                                                                                                                                                   Merchandise imports from low- and middle-income economies in Middle East & North Africa (% of total merchandise imports)
## 17932                                                                                                                                                                                   Merchandise imports from low- and middle-income economies in South Asia (% of total merchandise imports)
## 17933                                                                                                                                                                           Merchandise imports from low- and middle-income economies in Sub-Saharan Africa (% of total merchandise imports)
## 17934                                                                                                                                                                                                    Merchandise imports by the reporting economy, residual (% of total merchandise imports)
## 17935                                                                                                                                                                                                                                 Merchandise imports by the reporting economy (current US$)
## 17936                                                                                                                                                                                   Merchandise imports from low- and middle-income economies within region (% of total merchandise imports)
## 17937                                                                                                                                                                                                                                                       Import unit value index (2015 = 100)
## 17938                                                                                                                                                                                                                                                 Other consumer goods imports (current US$)
## 17939                                                                                                                                                                                                                                                Other consumer goods imports (constant US$)
## 17940                                                                                                                                                                                                                                    Non-food primary commodities (% of merchandise imports)
## 17941                                                                                                                                                                                                                                            Imports of Nonfuel Primary Prod.(US$,curr. pr.)
## 17942                                                                                                                                                                                                                                               CP Imports of Nonfuel Primary Products (US$)
## 17943                                                                                                                                                                                                                                              Other manufactures (% of merchandise imports)
## 17944                                                                                                                                                                                                                                       Other primary commodities (% of merchandise imports)
## 17945                                                                                                                                                                                                              Computer, communications and other services (% of commercial service imports)
## 17946                                                                                                                                                                                                                                     Intermediate goods imports, manufactures (current US$)
## 17947                                                                                                                                                                                                                                    Intermediate goods imports, manufactures (constant US$)
## 17948                                                                                                                                                                                                                                          Intermediate goods imports, primary (current US$)
## 17949                                                                                                                                                                                                                                         Intermediate goods imports, primary (constant US$)
## 17950                                                                                                                                                                                                                                            Intermediate goods imports, total (current US$)
## 17951                                                                                                                                                                                                                                           Intermediate goods imports, total (constant US$)
## 17952                                                                                                                                                                                                                                                   Commercial service imports (current US$)
## 17953                                                                                                                                                                                                                                       Transport services (% of commercial service imports)
## 17954                                                                                                                                                                                                                                          Travel services (% of commercial service imports)
## 17955                                                                                                                                                                                                                                                 Growth of merch. imports (av. ann grwth %)
## 17956                                                                                                                                                                                                                                                 Terms of Trade Index (1980=100, US$-based)
## 17957                                                                                                                                                                                                                                                                             Terms of Trade
## 17958                                                                                                                                                                                                                                                                             Total Reserves
## 17959                                                                                                                                                                                                                                     Export: Beverages and tobacco (province Level, in USD)
## 17960                                                                                                                                                                                                                        Export: Chemical and related products, nes (province Level, in USD)
## 17961                                                                                                                                                                                                                   Export: Crude materials, inedible, except fuels (province Level, in USD)
## 17962                                                                                                                                                                                                                                     Export: Food and Live Animals (province Level, in USD)
## 17963                                                                                                                                                                                                           Export: Mineral fuels, lubricants and related materials (province Level, in USD)
## 17964                                                                                                                                                                                                        Export: Manufactured goods, classified chiefly by material (province Level, in USD)
## 17965                                                                                                                                                                                                                       Export: Miscellaneous manufactures articles (province Level, in USD)
## 17966                                                                                                                                                                                                                         Export: Machinery and transport equipment (province Level, in USD)
## 17967                                                                                                                                                                                                                  Export: Animals and vegetable oil, fat and waxes (province Level, in USD)
## 17968                                                                                                                                                                                                      Export: Commodities and transaction not elsewhere classified (province Level, in USD)
## 17969                                                                                                                                                                                                                                     Import: Beverages and tobacco (province Level, in USD)
## 17970                                                                                                                                                                                                                        Import: Chemical and related products, nes (province Level, in USD)
## 17971                                                                                                                                                                                                                   Import: Crude materials, inedible, except fuels (province Level, in USD)
## 17972                                                                                                                                                                                                                                     Import: Food and Live Animals (province Level, in USD)
## 17973                                                                                                                                                                                                           Import: Mineral fuels, lubricants and related materials (province Level, in USD)
## 17974                                                                                                                                                                                                        Import: Manufactured goods, classified chiefly by material (province Level, in USD)
## 17975                                                                                                                                                                                                                       Import: Miscellaneous manufactures articles (province Level, in USD)
## 17976                                                                                                                                                                                                                         Import: Machinery and transport equipment (province Level, in USD)
## 17977                                                                                                                                                                                                                  Import: Animals and vegetable oil, fat and waxes (province Level, in USD)
## 17978                                                                                                                                                                                                      Import: Commodities and transaction not elsewhere classified (province Level, in USD)
## 17979                                                                                                                                                                                                                                       Trading across borders (DB06-15 methodology) - Score
## 17980                                                                                                                                                                                                                                       Trading across borders (DB16-20 methodology) - Score
## 17981                                                                                                                                                                                                                       Time to export: Documentary compliance (hours) (DB16-20 methodology)
## 17982                                                                                                                                                                                                                 Trading across borders: Documents to export (number) (DB06-15 methodology)
## 17983                                                                                                                                                                                                         Trading across borders: Documents to export (number) (DB06-15 methodology) - Score
## 17984                                                                                                                                                                                                                 Trading across borders: Documents to import (number) (DB06-15 methodology)
## 17985                                                                                                                                                                                                         Trading across borders: Documents to import (number) (DB06-15 methodology) - Score
## 17986                                                                                                                                                                                                                            Time to export: Border compliance (hours) (DB16-20 methodology)
## 17987                                                                                                                                                                                                      Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology)
## 17988                                                                                                                                                                                              Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology) - Score
## 17989                                                                                                                                                                                                  Trading across borders: Cost to export (US$ per container deflated) (DB06-15 methodology)
## 17990                                                                                                                                                                                                   Trading across borders: Cost to export (US$ per container) (DB06-15 methodology) - Score
## 17991                                                                                                                                                                                                 Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology)
## 17992                                                                                                                                                                                         Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology) - Score
## 17993                                                                                                                                                                                                                                                Time to export (days) (DB06-15 methodology)
## 17994                                                                                                                                                                                            Trading across borders: Time to export: Border compliance (hours) (DB16-20 methodology) - Score
## 17995                                                                                                                                                                                       Trading across borders: Time to export: Documentary compliance (hours) (DB16-20 methodology) - Score
## 17996                                                                                                                                                                                                                Trading across borders: Time to export (days) (DB06-15 methodology) - Score
## 17997                                                                                                                                                                                                                            Time to import: Border compliance (hours) (DB16-20 methodology)
## 17998                                                                                                                                                                                                      Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology)
## 17999                                                                                                                                                                                              Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology) - Score
## 18000                                                                                                                                                                                                   Trading across borders: Cost to import (US$ per container deflated)(DB06-15 methodology)
## 18001                                                                                                                                                                                                    Trading across borders: Cost to import (US$ per container)(DB06-15 methodology) - Score
## 18002                                                                                                                                                                                                 Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology)
## 18003                                                                                                                                                                                         Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology) - Score
## 18004                                                                                                                                                                                                                       Time to import: Documentary compliance (hours) (DB16-20 methodology)
## 18005                                                                                                                                                                                                                                                Time to import (days) (DB06-15 methodology)
## 18006                                                                                                                                                                                            Trading across borders: Time to import: Border compliance (hours) (DB16-20 methodology) - Score
## 18007                                                                                                                                                                                       Trading across borders: Time to import: Documentary compliance (hours) (DB16-20 methodology) - Score
## 18008                                                                                                                                                                                                                Trading across borders: Time to import (days) (DB06-15 methodology) - Score
## 18009                                                                                                                                                                                                                        Rank: Trading across borders (1=most business-friendly regulations)
## 18010                                                                                                                                                                                                                                                         Income terms of trade (1987 = 100)
## 18011                                                                                                                                                                                                                                                  Terms of Trade Index (1987=100,US$-based)
## 18012                                                                                                                                                                                                                                                     Net barter terms of trade (1987 = 100)
## 18013                                                                                                                                                                                                                                                    Merchandise Terms of Trade (1987 = 100)
## 18014                                                                                                                                                                                                                                               Net barter terms of trade index (2000 = 100)
## 18015                                                                                                                                                                                                                                                                Number of product (exports)
## 18016                                                                                                                                                                                                                                                         Export product concentration index
## 18017                                                                                                                                                                                                                                                       Export product diversification index
## 18018                                                                                                                                                                                                                                      Medium and high-tech exports (% manufactured exports)
## 18019                                                                                                                                                                                                                                              Fuel Export Price Index (1980=100, US$-based)
## 18020                                                                                                                                                                                                                                        Manufactures Exp. Price Index (1980=100, US$-based)
## 18021                                                                                                                                                                                                                                                Merchandise export price index (1987 = 100)
## 18022                                                                                                                                                                                                                                              Export Price Index, fob (1980=100, US$-based)
## 18023                                                                                                                                                                                                                                               Export Price Index, fob (1987=100,US$-based)
## 18024                                                                                                                                                                                                                                                Merchandise export price index (1987 = 100)
## 18025                                                                                                                                                                                                                                     Nonfuel Prim.Prod.Exp.Price Index (1980=100,US$-based)
## 18026                                                                                                                                                                                                                                                   Export price index, (nonfactor) services
## 18027                                                                                                                                                                                                                                                      Exports of commodity 1 (volume index)
## 18028                                                                                                                                                                                                                                                      Exports of commodity 2 (volume index)
## 18029                                                                                                                                                                                                                                                      Exports of commodity 3 (volume index)
## 18030                                                                                                                                                                                                                                                      Exports of commodity 4 (volume index)
## 18031                                                                                                                                                                                                                                                          Export volume index, manufactures
## 18032                                                                                                                                                                                                                                                            Merchandise export volume index
## 18033                                                                                                                                                                                                                                                           Export volume index (2000 = 100)
## 18034                                                                                                                                                                                                                                                  Export volume index, (nonfactor) services
## 18035                                                                                                                                                                                                                                             Export volume index, other primary commodities
## 18036                                                                                                                                                                                                                                                       Export unit value index (2015 = 100)
## 18037                                                                                                                                                                                                                              Agricultural raw materials exports (% of merchandise exports)
## 18038                                                                                                                                                                                                                                                       Exports of commodity 1 (current US$)
## 18039                                                                                                                                                                                                                                                      Exports of commodity 1 (constant US$)
## 18040                                                                                                                                                                                                                                                       Exports of commodity 2 (current US$)
## 18041                                                                                                                                                                                                                                                      Exports of commodity 2 (constant US$)
## 18042                                                                                                                                                                                                                                                       Exports of commodity 3 (current US$)
## 18043                                                                                                                                                                                                                                                      Exports of commodity 3 (constant US$)
## 18044                                                                                                                                                                                                                                                       Exports of commodity 4 (current US$)
## 18045                                                                                                                                                                                                                                                      Exports of commodity 4 (constant US$)
## 18046                                                                                                                                                                                                                                     Fuels, minerals, and metals (% of merchandise exports)
## 18047                                                                                                                                                                                                                                                            Food (% of merchandise exports)
## 18048                                                                                                                                                                                                                                                    Food exports (% of merchandise exports)
## 18049                                                                                                                                                                                                                                                                  CP Exports of Fuels (US$)
## 18050                                                                                                                                                                                                                                                    Fuel exports (% of merchandise exports)
## 18051                                                                                                                                                                                                                                               ICT goods exports (% of total goods exports)
## 18052                                                                                                                                                                                                                         Insurance and financial services (% of commercial service exports)
## 18053                                                                                                                                                                                                                                                           CP Exports of Manufactures (US$)
## 18054                                                                                                                                                                                                                                                         Manufactures exports (current US$)
## 18055                                                                                                                                                                                                                                                        Manufactures exports (constant US$)
## 18056                                                                                                                                                                                                                                                    Manufactures (% of merchandise exports)
## 18057                                                                                                                                                                                                                                            Manufactures exports (% of merchandise exports)
## 18058                                                                                                                                                                                                                               Machinery and transport equipment (% of merchandise exports)
## 18059                                                                                                                                                                                                                                                          Metals (% of merchandise exports)
## 18060                                                                                                                                                                                                                                         Ores and metals exports (% of merchandise exports)
## 18061                                                                                                                                                                                                                                                        Minerals (% of merchandise exports)
## 18062                                                                                                                                                                                                        Merchandise exports to economies in the Arab World (% of total merchandise exports)
## 18063                                                                                                                                                                                                                                                             CP Value of Exports, fob (US$)
## 18064                                                                                                                                                                                                                                                      Merchandise exports (UN, current US$)
## 18065                                                                                                                                                                                                                                                            Export growth, value (annual %)
## 18066                                                                                                                                                                                                                                                      Merchandise exports, WB (current US$)
## 18067                                                                                                                                                                                                                                                          Merchandise exports (current US$)
## 18068                                                                                                                                                                                                                                 Merchandise exports to high-income economies (current US$)
## 18069                                                                                                                                                                                                              Merchandise exports to high-income economies (% of total merchandise exports)
## 18070                                                                                                                                                                                                                                                     Exports, fob (1980 US$) (Const. Price)
## 18071                                                                                                                                                                                                                                                    Merchandise exports (constant 1987 US$)
## 18072                                                                                                                                                                                                                                                           Export growth, volume (annual %)
## 18073                                                                                                                                                                                                                                                         Merchandise exports (constant US$)
## 18074                                                                                                                                                                                                       Merchandise exports to low- and middle-income economies outside region (current US$)
## 18075                                                                                                                                                                                    Merchandise exports to low- and middle-income economies outside region (% of total merchandise exports)
## 18076                                                                                                                                                                                               Merchandise exports to low- and middle-income economies in East Asia & Pacific (current US$)
## 18077                                                                                                                                                                            Merchandise exports to low- and middle-income economies in East Asia & Pacific (% of total merchandise exports)
## 18078                                                                                                                                                                                             Merchandise exports to low- and middle-income economies in Europe & Central Asia (current US$)
## 18079                                                                                                                                                                          Merchandise exports to low- and middle-income economies in Europe & Central Asia (% of total merchandise exports)
## 18080                                                                                                                                                                                     Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (current US$)
## 18081                                                                                                                                                                  Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (% of total merchandise exports)
## 18082                                                                                                                                                                                        Merchandise exports to low- and middle-income economies in Middle East & North Africa (current US$)
## 18083                                                                                                                                                                     Merchandise exports to low- and middle-income economies in Middle East & North Africa (% of total merchandise exports)
## 18084                                                                                                                                                                                                        Merchandise exports to low- and middle-income economies in South Asia (current US$)
## 18085                                                                                                                                                                                     Merchandise exports to low- and middle-income economies in South Asia (% of total merchandise exports)
## 18086                                                                                                                                                                                                Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (current US$)
## 18087                                                                                                                                                                             Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (% of total merchandise exports)
## 18088                                                                                                                                                                                                    Merchandise exports by the reporting economy, residual (% of total merchandise exports)
## 18089                                                                                                                                                                                                                                 Merchandise exports by the reporting economy (current US$)
## 18090                                                                                                                                                                                                        Merchandise exports to low- and middle-income economies within region (current US$)
## 18091                                                                                                                                                                                     Merchandise exports to low- and middle-income economies within region (% of total merchandise exports)
## 18092                                                                                                                                                                                                                                                            Export value index (2000 = 100)
## 18093                                                                                                                                                                                                                                    Non-food primary commodities (% of merchandise exports)
## 18094                                                                                                                                                                                                                                            Exports of Nonfuel Primary Prod.(US$,curr. pr.)
## 18095                                                                                                                                                                                                                                               CP Exports of Nonfuel Primary Products (US$)
## 18096                                                                                                                                                                                                                                            Other primary commodities exports (current US$)
## 18097                                                                                                                                                                                                                                           Other primary commodities exports (constant US$)
## 18098                                                                                                                                                                                                                                       Other primary commodities (% of merchandise exports)
## 18099                                                                                                                                                                                                              Computer, communications and other services (% of commercial service exports)
## 18100                                                                                                                                                                                                                                                   Commercial service exports (current US$)
## 18101                                                                                                                                                                                                                             Ratio of commercial service exports to merchandise exports (%)
## 18102                                                                                                                                                                                                                                                  Primary commodities exports (current US$)
## 18103                                                                                                                                                                                                                                                 Primary commodities exports (constant US$)
## 18104                                                                                                                                                                                                                                                      High-technology exports (current US$)
## 18105                                                                                                                                                                                                                                        High-technology exports (% of manufactured exports)
## 18106                                                                                                                                                                                                                                        High-technology exports (% of manufactured exports)
## 18107                                                                                                                                                                                                                                       Transport services (% of commercial service exports)
## 18108                                                                                                                                                                                                                                          Travel services (% of commercial service exports)
## 18109                                                                                                                                                                                                                                           Textiles and clothing (% of merchandise exports)
## 18110                                                                                                                                                                                                                                              Other manufactures (% of merchandise exports)
## 18111                                                                                                                                                                                                                                                 Growth of merch. exports (av. ann grwth %)
## 18112                                                                                                                                                          Administration of a nationally-representative learning assessment at the end of lower secondary education in mathematics (number)
## 18113                                                                                                                                                              Administration of a nationally-representative learning assessment at the end of lower secondary education in reading (number)
## 18114                                                                                                                                                                            Administration of a nationally-representative learning assessment at the end of primary in mathematics (number)
## 18115                                                                                                                                                                                Administration of a nationally-representative learning assessment at the end of primary in reading (number)
## 18116                                                                                                                                                                                  Administration of a nationally representative learning assessment in Grade 2 or 3 in mathematics (number)
## 18117                                                                                                                                                                                      Administration of a nationally representative learning assessment in Grade 2 or 3 in reading (number)
## 18118                                                                                                                                                                                                            Percentage of total aid to education allocated to least developed countries (%)
## 18119                                                                                                                                                                                             Gross intake ratio to the last grade of primary education, adjusted gender parity index (GPIA)
## 18120                                                                                                                                                                             Gross intake ratio to the last grade of lower secondary general education, adjusted gender parity index (GPIA)
## 18121                                                                                                                                                                                                            Teachers in tertiary education ISCED 6, 7 and 8 programmes, both sexes (number)
## 18122                                                                                                                                                                                                                Teachers in tertiary education ISCED 6, 7 and 8 programmes, female (number)
## 18123                                                                                                                                                                                                                  Teachers in tertiary education ISCED 6, 7 and 8 programmes, male (number)
## 18124                                                                                                                                                                                                                                      Official entrance age to compulsory education (years)
## 18125                                                                                                                                                                                                                                         Completion rate, primary education, both sexes (%)
## 18126                                                                                                                                                                                                                                             Completion rate, primary education, female (%)
## 18127                                                                                                                                                                                                          Completion rate, primary education, female, adjusted location parity index (LPIA)
## 18128                                                                                                                                                                                                            Completion rate, primary education, female, adjusted wealth parity index (WPIA)
## 18129                                                                                                                                                                                                                    Completion rate, primary education, adjusted gender parity index (GPIA)
## 18130                                                                                                                                                                                                                  Completion rate, primary education, adjusted location parity index (LPIA)
## 18131                                                                                                                                                                                                                                               Completion rate, primary education, male (%)
## 18132                                                                                                                                                                                                            Completion rate, primary education, male, adjusted location parity index (LPIA)
## 18133                                                                                                                                                                                                              Completion rate, primary education, male, adjusted wealth parity index (WPIA)
## 18134                                                                                                                                                                                                                       Completion rate, primary education, poorest quintile, both sexes (%)
## 18135                                                                                                                                                                                                                           Completion rate, primary education, poorest quintile, female (%)
## 18136                                                                                                                                                                                        Completion rate, primary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18137                                                                                                                                                                                                  Completion rate, primary education, poorest quintile, adjusted gender parity index (GPIA)
## 18138                                                                                                                                                                                                Completion rate, primary education, poorest quintile, adjusted location parity index (LPIA)
## 18139                                                                                                                                                                                                                             Completion rate, primary education, poorest quintile, male (%)
## 18140                                                                                                                                                                                          Completion rate, primary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18141                                                                                                                                                                                                                        Completion rate, primary education, second quintile, both sexes (%)
## 18142                                                                                                                                                                                                                            Completion rate, primary education, second quintile, female (%)
## 18143                                                                                                                                                                                         Completion rate, primary education, second quintile, female, adjusted location parity index (LPIA)
## 18144                                                                                                                                                                                                   Completion rate, primary education, second quintile, adjusted gender parity index (GPIA)
## 18145                                                                                                                                                                                                 Completion rate, primary education, second quintile, adjusted location parity index (LPIA)
## 18146                                                                                                                                                                                                                              Completion rate, primary education, second quintile, male (%)
## 18147                                                                                                                                                                                           Completion rate, primary education, second quintile, male, adjusted location parity index (LPIA)
## 18148                                                                                                                                                                                                                        Completion rate, primary education, middle quintile, both sexes (%)
## 18149                                                                                                                                                                                                                            Completion rate, primary education, middle quintile, female (%)
## 18150                                                                                                                                                                                         Completion rate, primary education, middle quintile, female, adjusted location parity index (LPIA)
## 18151                                                                                                                                                                                                   Completion rate, primary education, middle quintile, adjusted gender parity index (GPIA)
## 18152                                                                                                                                                                                                 Completion rate, primary education, middle quintile, adjusted location parity index (LPIA)
## 18153                                                                                                                                                                                                                              Completion rate, primary education, middle quintile, male (%)
## 18154                                                                                                                                                                                           Completion rate, primary education, middle quintile, male, adjusted location parity index (LPIA)
## 18155                                                                                                                                                                                                                        Completion rate, primary education, fourth quintile, both sexes (%)
## 18156                                                                                                                                                                                                                            Completion rate, primary education, fourth quintile, female (%)
## 18157                                                                                                                                                                                         Completion rate, primary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18158                                                                                                                                                                                                   Completion rate, primary education, fourth quintile, adjusted gender parity index (GPIA)
## 18159                                                                                                                                                                                                 Completion rate, primary education, fourth quintile, adjusted location parity index (LPIA)
## 18160                                                                                                                                                                                                                              Completion rate, primary education, fourth quintile, male (%)
## 18161                                                                                                                                                                                           Completion rate, primary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18162                                                                                                                                                                                                                       Completion rate, primary education, richest quintile, both sexes (%)
## 18163                                                                                                                                                                                                                           Completion rate, primary education, richest quintile, female (%)
## 18164                                                                                                                                                                                        Completion rate, primary education, richest quintile, female, adjusted location parity index (LPIA)
## 18165                                                                                                                                                                                                  Completion rate, primary education, richest quintile, adjusted gender parity index (GPIA)
## 18166                                                                                                                                                                                                Completion rate, primary education, richest quintile, adjusted location parity index (LPIA)
## 18167                                                                                                                                                                                                                             Completion rate, primary education, richest quintile, male (%)
## 18168                                                                                                                                                                                          Completion rate, primary education, richest quintile, male, adjusted location parity index (LPIA)
## 18169                                                                                                                                                                                                                                  Completion rate, primary education, rural, both sexes (%)
## 18170                                                                                                                                                                                                                                      Completion rate, primary education, rural, female (%)
## 18171                                                                                                                                                                                                     Completion rate, primary education, rural, female, adjusted wealth parity index (WPIA)
## 18172                                                                                                                                                                                                             Completion rate, primary education, rural, adjusted gender parity index (GPIA)
## 18173                                                                                                                                                                                                                                        Completion rate, primary education, rural, male (%)
## 18174                                                                                                                                                                                                       Completion rate, primary education, rural, male, adjusted wealth parity index (WPIA)
## 18175                                                                                                                                                                                                                Completion rate, primary education, rural, poorest quintile, both sexes (%)
## 18176                                                                                                                                                                                                                    Completion rate, primary education, rural, poorest quintile, female (%)
## 18177                                                                                                                                                                                           Completion rate, primary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18178                                                                                                                                                                                                                      Completion rate, primary education, rural, poorest quintile, male (%)
## 18179                                                                                                                                                                                                                 Completion rate, primary education, rural, second quintile, both sexes (%)
## 18180                                                                                                                                                                                                                     Completion rate, primary education, rural, second quintile, female (%)
## 18181                                                                                                                                                                                            Completion rate, primary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18182                                                                                                                                                                                                                       Completion rate, primary education, rural, second quintile, male (%)
## 18183                                                                                                                                                                                                                 Completion rate, primary education, rural, middle quintile, both sexes (%)
## 18184                                                                                                                                                                                                                     Completion rate, primary education, rural, middle quintile, female (%)
## 18185                                                                                                                                                                                            Completion rate, primary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18186                                                                                                                                                                                                                       Completion rate, primary education, rural, middle quintile, male (%)
## 18187                                                                                                                                                                                                                 Completion rate, primary education, rural, fourth quintile, both sexes (%)
## 18188                                                                                                                                                                                                                     Completion rate, primary education, rural, fourth quintile, female (%)
## 18189                                                                                                                                                                                            Completion rate, primary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18190                                                                                                                                                                                                                       Completion rate, primary education, rural, fourth quintile, male (%)
## 18191                                                                                                                                                                                                                Completion rate, primary education, rural, richest quintile, both sexes (%)
## 18192                                                                                                                                                                                                                    Completion rate, primary education, rural, richest quintile, female (%)
## 18193                                                                                                                                                                                           Completion rate, primary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18194                                                                                                                                                                                                                      Completion rate, primary education, rural, richest quintile, male (%)
## 18195                                                                                                                                                                                                             Completion rate, primary education, rural, adjusted wealth parity index (WPIA)
## 18196                                                                                                                                                                                                                                  Completion rate, primary education, urban, both sexes (%)
## 18197                                                                                                                                                                                                                                      Completion rate, primary education, urban, female (%)
## 18198                                                                                                                                                                                                     Completion rate, primary education, urban, female, adjusted wealth parity index (WPIA)
## 18199                                                                                                                                                                                                             Completion rate, primary education, urban, adjusted gender parity index (GPIA)
## 18200                                                                                                                                                                                                                                        Completion rate, primary education, urban, male (%)
## 18201                                                                                                                                                                                                       Completion rate, primary education, urban, male, adjusted wealth parity index (WPIA)
## 18202                                                                                                                                                                                                                Completion rate, primary education, urban, poorest quintile, both sexes (%)
## 18203                                                                                                                                                                                                                    Completion rate, primary education, urban, poorest quintile, female (%)
## 18204                                                                                                                                                                                           Completion rate, primary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18205                                                                                                                                                                                                                      Completion rate, primary education, urban, poorest quintile, male (%)
## 18206                                                                                                                                                                                                                 Completion rate, primary education, urban, second quintile, both sexes (%)
## 18207                                                                                                                                                                                                                     Completion rate, primary education, urban, second quintile, female (%)
## 18208                                                                                                                                                                                            Completion rate, primary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18209                                                                                                                                                                                                                       Completion rate, primary education, urban, second quintile, male (%)
## 18210                                                                                                                                                                                                                 Completion rate, primary education, urban, middle quintile, both sexes (%)
## 18211                                                                                                                                                                                                                     Completion rate, primary education, urban, middle quintile, female (%)
## 18212                                                                                                                                                                                            Completion rate, primary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18213                                                                                                                                                                                                                       Completion rate, primary education, urban, middle quintile, male (%)
## 18214                                                                                                                                                                                                                 Completion rate, primary education, urban, fourth quintile, both sexes (%)
## 18215                                                                                                                                                                                                                     Completion rate, primary education, urban, fourth quintile, female (%)
## 18216                                                                                                                                                                                            Completion rate, primary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18217                                                                                                                                                                                                                       Completion rate, primary education, urban, fourth quintile, male (%)
## 18218                                                                                                                                                                                                                Completion rate, primary education, urban, richest quintile, both sexes (%)
## 18219                                                                                                                                                                                                                    Completion rate, primary education, urban, richest quintile, female (%)
## 18220                                                                                                                                                                                           Completion rate, primary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18221                                                                                                                                                                                                                      Completion rate, primary education, urban, richest quintile, male (%)
## 18222                                                                                                                                                                                                             Completion rate, primary education, urban, adjusted wealth parity index (WPIA)
## 18223                                                                                                                                                                                                                    Completion rate, primary education, adjusted wealth parity index (WPIA)
## 18224                                                                                                                                                                                                                                 Completion rate, lower secondary education, both sexes (%)
## 18225                                                                                                                                                                                                                                     Completion rate, lower secondary education, female (%)
## 18226                                                                                                                                                                                                  Completion rate, lower secondary education, female, adjusted location parity index (LPIA)
## 18227                                                                                                                                                                                                    Completion rate, lower secondary education, female, adjusted wealth parity index (WPIA)
## 18228                                                                                                                                                                                                            Completion rate, lower secondary education, adjusted gender parity index (GPIA)
## 18229                                                                                                                                                                                                          Completion rate, lower secondary education, adjusted location parity index (LPIA)
## 18230                                                                                                                                                                                                                                       Completion rate, lower secondary education, male (%)
## 18231                                                                                                                                                                                                    Completion rate, lower secondary education, male, adjusted location parity index (LPIA)
## 18232                                                                                                                                                                                                      Completion rate, lower secondary education, male, adjusted wealth parity index (WPIA)
## 18233                                                                                                                                                                                                               Completion rate, lower secondary education, poorest quintile, both sexes (%)
## 18234                                                                                                                                                                                                                   Completion rate, lower secondary education, poorest quintile, female (%)
## 18235                                                                                                                                                                                Completion rate, lower secondary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18236                                                                                                                                                                                          Completion rate, lower secondary education, poorest quintile, adjusted gender parity index (GPIA)
## 18237                                                                                                                                                                                        Completion rate, lower secondary education, poorest quintile, adjusted location parity index (LPIA)
## 18238                                                                                                                                                                                                                     Completion rate, lower secondary education, poorest quintile, male (%)
## 18239                                                                                                                                                                                  Completion rate, lower secondary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18240                                                                                                                                                                                                                Completion rate, lower secondary education, second quintile, both sexes (%)
## 18241                                                                                                                                                                                                                    Completion rate, lower secondary education, second quintile, female (%)
## 18242                                                                                                                                                                                 Completion rate, lower secondary education, second quintile, female, adjusted location parity index (LPIA)
## 18243                                                                                                                                                                                           Completion rate, lower secondary education, second quintile, adjusted gender parity index (GPIA)
## 18244                                                                                                                                                                                         Completion rate, lower secondary education, second quintile, adjusted location parity index (LPIA)
## 18245                                                                                                                                                                                                                      Completion rate, lower secondary education, second quintile, male (%)
## 18246                                                                                                                                                                                   Completion rate, lower secondary education, second quintile, male, adjusted location parity index (LPIA)
## 18247                                                                                                                                                                                                                Completion rate, lower secondary education, middle quintile, both sexes (%)
## 18248                                                                                                                                                                                                                    Completion rate, lower secondary education, middle quintile, female (%)
## 18249                                                                                                                                                                                 Completion rate, lower secondary education, middle quintile, female, adjusted location parity index (LPIA)
## 18250                                                                                                                                                                                           Completion rate, lower secondary education, middle quintile, adjusted gender parity index (GPIA)
## 18251                                                                                                                                                                                         Completion rate, lower secondary education, middle quintile, adjusted location parity index (LPIA)
## 18252                                                                                                                                                                                                                      Completion rate, lower secondary education, middle quintile, male (%)
## 18253                                                                                                                                                                                   Completion rate, lower secondary education, middle quintile, male, adjusted location parity index (LPIA)
## 18254                                                                                                                                                                                                                Completion rate, lower secondary education, fourth quintile, both sexes (%)
## 18255                                                                                                                                                                                                                    Completion rate, lower secondary education, fourth quintile, female (%)
## 18256                                                                                                                                                                                 Completion rate, lower secondary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18257                                                                                                                                                                                           Completion rate, lower secondary education, fourth quintile, adjusted gender parity index (GPIA)
## 18258                                                                                                                                                                                         Completion rate, lower secondary education, fourth quintile, adjusted location parity index (LPIA)
## 18259                                                                                                                                                                                                                      Completion rate, lower secondary education, fourth quintile, male (%)
## 18260                                                                                                                                                                                   Completion rate, lower secondary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18261                                                                                                                                                                                                               Completion rate, lower secondary education, richest quintile, both sexes (%)
## 18262                                                                                                                                                                                                                   Completion rate, lower secondary education, richest quintile, female (%)
## 18263                                                                                                                                                                                Completion rate, lower secondary education, richest quintile, female, adjusted location parity index (LPIA)
## 18264                                                                                                                                                                                          Completion rate, lower secondary education, richest quintile, adjusted gender parity index (GPIA)
## 18265                                                                                                                                                                                        Completion rate, lower secondary education, richest quintile, adjusted location parity index (LPIA)
## 18266                                                                                                                                                                                                                     Completion rate, lower secondary education, richest quintile, male (%)
## 18267                                                                                                                                                                                  Completion rate, lower secondary education, richest quintile, male, adjusted location parity index (LPIA)
## 18268                                                                                                                                                                                                                          Completion rate, lower secondary education, rural, both sexes (%)
## 18269                                                                                                                                                                                                                              Completion rate, lower secondary education, rural, female (%)
## 18270                                                                                                                                                                                             Completion rate, lower secondary education, rural, female, adjusted wealth parity index (WPIA)
## 18271                                                                                                                                                                                                     Completion rate, lower secondary education, rural, adjusted gender parity index (GPIA)
## 18272                                                                                                                                                                                                                                Completion rate, lower secondary education, rural, male (%)
## 18273                                                                                                                                                                                               Completion rate, lower secondary education, rural, male, adjusted wealth parity index (WPIA)
## 18274                                                                                                                                                                                                        Completion rate, lower secondary education, rural, poorest quintile, both sexes (%)
## 18275                                                                                                                                                                                                            Completion rate, lower secondary education, rural, poorest quintile, female (%)
## 18276                                                                                                                                                                                   Completion rate, lower secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18277                                                                                                                                                                                                              Completion rate, lower secondary education, rural, poorest quintile, male (%)
## 18278                                                                                                                                                                                                         Completion rate, lower secondary education, rural, second quintile, both sexes (%)
## 18279                                                                                                                                                                                                             Completion rate, lower secondary education, rural, second quintile, female (%)
## 18280                                                                                                                                                                                    Completion rate, lower secondary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18281                                                                                                                                                                                                               Completion rate, lower secondary education, rural, second quintile, male (%)
## 18282                                                                                                                                                                                                         Completion rate, lower secondary education, rural, middle quintile, both sexes (%)
## 18283                                                                                                                                                                                                             Completion rate, lower secondary education, rural, middle quintile, female (%)
## 18284                                                                                                                                                                                    Completion rate, lower secondary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18285                                                                                                                                                                                                               Completion rate, lower secondary education, rural, middle quintile, male (%)
## 18286                                                                                                                                                                                                         Completion rate, lower secondary education, rural, fourth quintile, both sexes (%)
## 18287                                                                                                                                                                                                             Completion rate, lower secondary education, rural, fourth quintile, female (%)
## 18288                                                                                                                                                                                    Completion rate, lower secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18289                                                                                                                                                                                                               Completion rate, lower secondary education, rural, fourth quintile, male (%)
## 18290                                                                                                                                                                                                        Completion rate, lower secondary education, rural, richest quintile, both sexes (%)
## 18291                                                                                                                                                                                                            Completion rate, lower secondary education, rural, richest quintile, female (%)
## 18292                                                                                                                                                                                   Completion rate, lower secondary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18293                                                                                                                                                                                                              Completion rate, lower secondary education, rural, richest quintile, male (%)
## 18294                                                                                                                                                                                                     Completion rate, lower secondary education, rural, adjusted wealth parity index (WPIA)
## 18295                                                                                                                                                                                                                          Completion rate, lower secondary education, urban, both sexes (%)
## 18296                                                                                                                                                                                                                              Completion rate, lower secondary education, urban, female (%)
## 18297                                                                                                                                                                                             Completion rate, lower secondary education, urban, female, adjusted wealth parity index (WPIA)
## 18298                                                                                                                                                                                                     Completion rate, lower secondary education, urban, adjusted gender parity index (GPIA)
## 18299                                                                                                                                                                                                                                Completion rate, lower secondary education, urban, male (%)
## 18300                                                                                                                                                                                               Completion rate, lower secondary education, urban, male, adjusted wealth parity index (WPIA)
## 18301                                                                                                                                                                                                        Completion rate, lower secondary education, urban, poorest quintile, both sexes (%)
## 18302                                                                                                                                                                                                            Completion rate, lower secondary education, urban, poorest quintile, female (%)
## 18303                                                                                                                                                                                   Completion rate, lower secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18304                                                                                                                                                                                                              Completion rate, lower secondary education, urban, poorest quintile, male (%)
## 18305                                                                                                                                                                                                         Completion rate, lower secondary education, urban, second quintile, both sexes (%)
## 18306                                                                                                                                                                                                             Completion rate, lower secondary education, urban, second quintile, female (%)
## 18307                                                                                                                                                                                    Completion rate, lower secondary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18308                                                                                                                                                                                                               Completion rate, lower secondary education, urban, second quintile, male (%)
## 18309                                                                                                                                                                                                         Completion rate, lower secondary education, urban, middle quintile, both sexes (%)
## 18310                                                                                                                                                                                                             Completion rate, lower secondary education, urban, middle quintile, female (%)
## 18311                                                                                                                                                                                    Completion rate, lower secondary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18312                                                                                                                                                                                                               Completion rate, lower secondary education, urban, middle quintile, male (%)
## 18313                                                                                                                                                                                                         Completion rate, lower secondary education, urban, fourth quintile, both sexes (%)
## 18314                                                                                                                                                                                                             Completion rate, lower secondary education, urban, fourth quintile, female (%)
## 18315                                                                                                                                                                                    Completion rate, lower secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18316                                                                                                                                                                                                               Completion rate, lower secondary education, urban, fourth quintile, male (%)
## 18317                                                                                                                                                                                                        Completion rate, lower secondary education, urban, richest quintile, both sexes (%)
## 18318                                                                                                                                                                                                            Completion rate, lower secondary education, urban, richest quintile, female (%)
## 18319                                                                                                                                                                                   Completion rate, lower secondary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18320                                                                                                                                                                                                              Completion rate, lower secondary education, urban, richest quintile, male (%)
## 18321                                                                                                                                                                                                     Completion rate, lower secondary education, urban, adjusted wealth parity index (WPIA)
## 18322                                                                                                                                                                                                            Completion rate, lower secondary education, adjusted wealth parity index (WPIA)
## 18323                                                                                                                                                                                                                                 Completion rate, upper secondary education, both sexes (%)
## 18324                                                                                                                                                                                                                                     Completion rate, upper secondary education, female (%)
## 18325                                                                                                                                                                                                  Completion rate, upper secondary education, female, adjusted location parity index (LPIA)
## 18326                                                                                                                                                                                                    Completion rate, upper secondary education, female, adjusted wealth parity index (WPIA)
## 18327                                                                                                                                                                                                            Completion rate, upper secondary education, adjusted gender parity index (GPIA)
## 18328                                                                                                                                                                                                          Completion rate, upper secondary education, adjusted location parity index (LPIA)
## 18329                                                                                                                                                                                                                                       Completion rate, upper secondary education, male (%)
## 18330                                                                                                                                                                                                    Completion rate, upper secondary education, male, adjusted location parity index (LPIA)
## 18331                                                                                                                                                                                                      Completion rate, upper secondary education, male, adjusted wealth parity index (WPIA)
## 18332                                                                                                                                                                                                               Completion rate, upper secondary education, poorest quintile, both sexes (%)
## 18333                                                                                                                                                                                                                   Completion rate, upper secondary education, poorest quintile, female (%)
## 18334                                                                                                                                                                                Completion rate, upper secondary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18335                                                                                                                                                                                          Completion rate, upper secondary education, poorest quintile, adjusted gender parity index (GPIA)
## 18336                                                                                                                                                                                        Completion rate, upper secondary education, poorest quintile, adjusted location parity index (LPIA)
## 18337                                                                                                                                                                                                                     Completion rate, upper secondary education, poorest quintile, male (%)
## 18338                                                                                                                                                                                  Completion rate, upper secondary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18339                                                                                                                                                                                                                Completion rate, upper secondary education, second quintile, both sexes (%)
## 18340                                                                                                                                                                                                                    Completion rate, upper secondary education, second quintile, female (%)
## 18341                                                                                                                                                                                 Completion rate, upper secondary education, second quintile, female, adjusted location parity index (LPIA)
## 18342                                                                                                                                                                                           Completion rate, upper secondary education, second quintile, adjusted gender parity index (GPIA)
## 18343                                                                                                                                                                                         Completion rate, upper secondary education, second quintile, adjusted location parity index (LPIA)
## 18344                                                                                                                                                                                                                      Completion rate, upper secondary education, second quintile, male (%)
## 18345                                                                                                                                                                                   Completion rate, upper secondary education, second quintile, male, adjusted location parity index (LPIA)
## 18346                                                                                                                                                                                                                Completion rate, upper secondary education, middle quintile, both sexes (%)
## 18347                                                                                                                                                                                                                    Completion rate, upper secondary education, middle quintile, female (%)
## 18348                                                                                                                                                                                 Completion rate, upper secondary education, middle quintile, female, adjusted location parity index (LPIA)
## 18349                                                                                                                                                                                           Completion rate, upper secondary education, middle quintile, adjusted gender parity index (GPIA)
## 18350                                                                                                                                                                                         Completion rate, upper secondary education, middle quintile, adjusted location parity index (LPIA)
## 18351                                                                                                                                                                                                                      Completion rate, upper secondary education, middle quintile, male (%)
## 18352                                                                                                                                                                                   Completion rate, upper secondary education, middle quintile, male, adjusted location parity index (LPIA)
## 18353                                                                                                                                                                                                                Completion rate, upper secondary education, fourth quintile, both sexes (%)
## 18354                                                                                                                                                                                                                    Completion rate, upper secondary education, fourth quintile, female (%)
## 18355                                                                                                                                                                                 Completion rate, upper secondary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18356                                                                                                                                                                                           Completion rate, upper secondary education, fourth quintile, adjusted gender parity index (GPIA)
## 18357                                                                                                                                                                                         Completion rate, upper secondary education, fourth quintile, adjusted location parity index (LPIA)
## 18358                                                                                                                                                                                                                      Completion rate, upper secondary education, fourth quintile, male (%)
## 18359                                                                                                                                                                                   Completion rate, upper secondary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18360                                                                                                                                                                                                               Completion rate, upper secondary education, richest quintile, both sexes (%)
## 18361                                                                                                                                                                                                                   Completion rate, upper secondary education, richest quintile, female (%)
## 18362                                                                                                                                                                                Completion rate, upper secondary education, richest quintile, female, adjusted location parity index (LPIA)
## 18363                                                                                                                                                                                          Completion rate, upper secondary education, richest quintile, adjusted gender parity index (GPIA)
## 18364                                                                                                                                                                                        Completion rate, upper secondary education, richest quintile, adjusted location parity index (LPIA)
## 18365                                                                                                                                                                                                                     Completion rate, upper secondary education, richest quintile, male (%)
## 18366                                                                                                                                                                                  Completion rate, upper secondary education, richest quintile, male, adjusted location parity index (LPIA)
## 18367                                                                                                                                                                                                                          Completion rate, upper secondary education, rural, both sexes (%)
## 18368                                                                                                                                                                                                                              Completion rate, upper secondary education, rural, female (%)
## 18369                                                                                                                                                                                             Completion rate, upper secondary education, rural, female, adjusted wealth parity index (WPIA)
## 18370                                                                                                                                                                                                     Completion rate, upper secondary education, rural, adjusted gender parity index (GPIA)
## 18371                                                                                                                                                                                                                                Completion rate, upper secondary education, rural, male (%)
## 18372                                                                                                                                                                                               Completion rate, upper secondary education, rural, male, adjusted wealth parity index (WPIA)
## 18373                                                                                                                                                                                                        Completion rate, upper secondary education, rural, poorest quintile, both sexes (%)
## 18374                                                                                                                                                                                                            Completion rate, upper secondary education, rural, poorest quintile, female (%)
## 18375                                                                                                                                                                                   Completion rate, upper secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18376                                                                                                                                                                                                              Completion rate, upper secondary education, rural, poorest quintile, male (%)
## 18377                                                                                                                                                                                                         Completion rate, upper secondary education, rural, second quintile, both sexes (%)
## 18378                                                                                                                                                                                                             Completion rate, upper secondary education, rural, second quintile, female (%)
## 18379                                                                                                                                                                                    Completion rate, upper secondary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18380                                                                                                                                                                                                               Completion rate, upper secondary education, rural, second quintile, male (%)
## 18381                                                                                                                                                                                                         Completion rate, upper secondary education, rural, middle quintile, both sexes (%)
## 18382                                                                                                                                                                                                             Completion rate, upper secondary education, rural, middle quintile, female (%)
## 18383                                                                                                                                                                                    Completion rate, upper secondary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18384                                                                                                                                                                                                               Completion rate, upper secondary education, rural, middle quintile, male (%)
## 18385                                                                                                                                                                                                         Completion rate, upper secondary education, rural, fourth quintile, both sexes (%)
## 18386                                                                                                                                                                                                             Completion rate, upper secondary education, rural, fourth quintile, female (%)
## 18387                                                                                                                                                                                    Completion rate, upper secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18388                                                                                                                                                                                                               Completion rate, upper secondary education, rural, fourth quintile, male (%)
## 18389                                                                                                                                                                                                        Completion rate, upper secondary education, rural, richest quintile, both sexes (%)
## 18390                                                                                                                                                                                                            Completion rate, upper secondary education, rural, richest quintile, female (%)
## 18391                                                                                                                                                                                   Completion rate, upper secondary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18392                                                                                                                                                                                                              Completion rate, upper secondary education, rural, richest quintile, male (%)
## 18393                                                                                                                                                                                                     Completion rate, upper secondary education, rural, adjusted wealth parity index (WPIA)
## 18394                                                                                                                                                                                                                          Completion rate, upper secondary education, urban, both sexes (%)
## 18395                                                                                                                                                                                                                              Completion rate, upper secondary education, urban, female (%)
## 18396                                                                                                                                                                                             Completion rate, upper secondary education, urban, female, adjusted wealth parity index (WPIA)
## 18397                                                                                                                                                                                                     Completion rate, upper secondary education, urban, adjusted gender parity index (GPIA)
## 18398                                                                                                                                                                                                                                Completion rate, upper secondary education, urban, male (%)
## 18399                                                                                                                                                                                               Completion rate, upper secondary education, urban, male, adjusted wealth parity index (WPIA)
## 18400                                                                                                                                                                                                        Completion rate, upper secondary education, urban, poorest quintile, both sexes (%)
## 18401                                                                                                                                                                                                            Completion rate, upper secondary education, urban, poorest quintile, female (%)
## 18402                                                                                                                                                                                   Completion rate, upper secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18403                                                                                                                                                                                                              Completion rate, upper secondary education, urban, poorest quintile, male (%)
## 18404                                                                                                                                                                                                         Completion rate, upper secondary education, urban, second quintile, both sexes (%)
## 18405                                                                                                                                                                                                             Completion rate, upper secondary education, urban, second quintile, female (%)
## 18406                                                                                                                                                                                    Completion rate, upper secondary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18407                                                                                                                                                                                                               Completion rate, upper secondary education, urban, second quintile, male (%)
## 18408                                                                                                                                                                                                         Completion rate, upper secondary education, urban, middle quintile, both sexes (%)
## 18409                                                                                                                                                                                                             Completion rate, upper secondary education, urban, middle quintile, female (%)
## 18410                                                                                                                                                                                    Completion rate, upper secondary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18411                                                                                                                                                                                                               Completion rate, upper secondary education, urban, middle quintile, male (%)
## 18412                                                                                                                                                                                                         Completion rate, upper secondary education, urban, fourth quintile, both sexes (%)
## 18413                                                                                                                                                                                                             Completion rate, upper secondary education, urban, fourth quintile, female (%)
## 18414                                                                                                                                                                                    Completion rate, upper secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18415                                                                                                                                                                                                               Completion rate, upper secondary education, urban, fourth quintile, male (%)
## 18416                                                                                                                                                                                                        Completion rate, upper secondary education, urban, richest quintile, both sexes (%)
## 18417                                                                                                                                                                                                            Completion rate, upper secondary education, urban, richest quintile, female (%)
## 18418                                                                                                                                                                                   Completion rate, upper secondary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18419                                                                                                                                                                                                              Completion rate, upper secondary education, urban, richest quintile, male (%)
## 18420                                                                                                                                                                                                     Completion rate, upper secondary education, urban, adjusted wealth parity index (WPIA)
## 18421                                                                                                                                                                                                            Completion rate, upper secondary education, adjusted wealth parity index (WPIA)
## 18422                                                                                                                                                                                                                                    Enrolment in early childhood education, female (number)
## 18423                                                                                                                                                                                                                                      Enrolment in early childhood education, male (number)
## 18424                                                                                                                                                                                                                                Enrolment in early childhood education, both sexes (number)
## 18425                                                                                                                                                                                                           Enrolment in early childhood educational development programmes, female (number)
## 18426                                                                                                                                                                                                             Enrolment in early childhood educational development programmes, male (number)
## 18427                                                                                                                                                                                                       Enrolment in early childhood educational development programmes, both sexes (number)
## 18428                                                                                                                                                                                                                                          Enrolment in pre-primary education, male (number)
## 18429                                                                                                                                                                                                                                              Enrolment in primary education, male (number)
## 18430                                                                                                                                                                                                                                Enrolment in lower secondary education, both sexes (number)
## 18431                                                                                                                                                                                                                                    Enrolment in lower secondary education, female (number)
## 18432                                                                                                                                                                                                                                      Enrolment in lower secondary education, male (number)
## 18433                                                                                                                                                                                                                                            Enrolment in secondary education, male (number)
## 18434                                                                                                                                                                                                                                Enrolment in upper secondary education, both sexes (number)
## 18435                                                                                                                                                                                                                                    Enrolment in upper secondary education, female (number)
## 18436                                                                                                                                                                                                                                      Enrolment in upper secondary education, male (number)
## 18437                                                                                                                                                                                                                    Enrolment in post-secondary non-tertiary education, both sexes (number)
## 18438                                                                                                                                                                                                                        Enrolment in post-secondary non-tertiary education, female (number)
## 18439                                                                                                                                                                                                                          Enrolment in post-secondary non-tertiary education, male (number)
## 18440                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 5 programmes, both sexes (number)
## 18441                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 5 programmes, female (number)
## 18442                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 5 programmes, male (number)
## 18443                                                                                                                                                                                                                             Enrolment in tertiary education, all programmes, male (number)
## 18444                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 6 programmes, both sexes (number)
## 18445                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 6 programmes, female (number)
## 18446                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 6 programmes, male (number)
## 18447                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 7 programmes, both sexes (number)
## 18448                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 7 programmes, female (number)
## 18449                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 7 programmes, male (number)
## 18450                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 8 programmes, both sexes (number)
## 18451                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 8 programmes, female (number)
## 18452                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 8 programmes, male (number)
## 18453                                                                                                                                                                                              UIS: Percentage of population age 25+ whose highest level of education is primary, both sexes
## 18454                                                                                                                                                                                                  UIS: Percentage of population age 25+ whose highest level of education is primary, female
## 18455                                                                                                                                                                                                    UIS: Percentage of population age 25+ whose highest level of education is primary, male
## 18456                                                                                                                                                                                 UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Total
## 18457                                                                                                                                                                                UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Female
## 18458                                                                                                                                                                                  UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Male
## 18459                                                                                                                                                   UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Adjusted Gender Parity Index (GPIA)
## 18460                                                                                                                                                                                      UIS: Percentage of population age 25+ whose highest level of education is lower secondary, both sexes
## 18461                                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is lower secondary, female
## 18462                                                                                                                                                                                            UIS: Percentage of population age 25+ whose highest level of education is lower secondary, male
## 18463                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Total
## 18464                                                                                                                                                                        UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Female
## 18465                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Male
## 18466                                                                                                                                           UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Adjusted Gender Parity Index (GPIA)
## 18467                                                                                                                                                                                      UIS: Percentage of population age 25+ whose highest level of education is upper secondary, both sexes
## 18468                                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is upper secondary, female
## 18469                                                                                                                                                                                            UIS: Percentage of population age 25+ whose highest level of education is upper secondary, male
## 18470                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Total
## 18471                                                                                                                                                                        UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Female
## 18472                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Male
## 18473                                                                                                                                           UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Adjusted Gender Parity Index (GPIA)
## 18474                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, both sexes
## 18475                                                                                                                                                                              UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, female
## 18476                                                                                                                                                                                UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, male
## 18477                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Total
## 18478                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Female
## 18479                                                                                                                                                                           UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Male
## 18480                                                                                                                                            UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Adjusted Gender Parity Index (GPIA)
## 18481                                                                                                                                                                                 UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, both sexes
## 18482                                                                                                                                                                                     UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, female
## 18483                                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, male
## 18484                                                                                                                                                                     UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Total
## 18485                                                                                                                                                                    UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Female
## 18486                                                                                                                                       UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Adjusted Gender Parity Index (GPIA)
## 18487                                                                                                                                                                      UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Male
## 18488                                                                                                                                                                   UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), both sexes
## 18489                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), female
## 18490                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), male
## 18491                                                                                                                                                                 UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Total
## 18492                                                                                                                                                                UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Female
## 18493                                                                                                                                   UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Adjusted Gender Parity Index (GPIA)
## 18494                                                                                                                                                                  UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Male
## 18495                                                                                                                                                                     UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), both sexes
## 18496                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), female
## 18497                                                                                                                                                                           UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), male
## 18498                                                                                                                                                                   UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Total
## 18499                                                                                                                                                                  UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Female
## 18500                                                                                                                                     UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Adjusted Gender Parity Index (GPIA)
## 18501                                                                                                                                                                    UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Male
## 18502                                                                                                                                                                                                UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Total
## 18503                                                                                                                                                                                               UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Female
## 18504                                                                                                                                                                  UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Adjusted Gender Parity Index (GPIA)
## 18505                                                                                                                                                                                                 UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Male
## 18506                                                                                                                                                                                                         UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, both sexes
## 18507                                                                                                                                                                                                             UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, female
## 18508                                                                                                                                                                                                               UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, male
## 18509                                                                                                                                                                                                                        UIS: Percentage of population age 25+ with no schooling, both sexes
## 18510                                                                                                                                                                                                                            UIS: Percentage of population age 25+ with no schooling, female
## 18511                                                                                                                                                                                                                              UIS: Percentage of population age 25+ with no schooling, male
## 18512                                                                                                                                                                                   UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, both sexes
## 18513                                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, female
## 18514                                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, male
## 18515                                                                                                                                                                                                          UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Total
## 18516                                                                                                                                                                                                         UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Female
## 18517                                                                                                                                                                            UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Adjusted Gender Parity Index (GPIA)
## 18518                                                                                                                                                                                                           UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Male
## 18519                                                                                                                                                                                                           UIS: Percentage of population age 25+ with unknown educational attainment. Total
## 18520                                                                                                                                                                                                          UIS: Percentage of population age 25+ with unknown educational attainment. Female
## 18521                                                                                                                                                                                                            UIS: Percentage of population age 25+ with unknown educational attainment. Male
## 18522                                                                                                                                               Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, both sexes (%)
## 18523                                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, both sexes (%)
## 18524                                                                                                                              Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, female (%)
## 18525                                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Cognitive dimension‚ adjusted gender parity index (GPIA)
## 18526                                                                                                                                Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, male (%)
## 18527                                                                                                                                                   Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, female (%)
## 18528                                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ adjusted gender parity index (GPIA)
## 18529                                                                                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, male (%)
## 18530                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, both sexes (%)
## 18531                                                                                                              Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, female (%)
## 18532                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Confidence‚ adjusted gender parity index (GPIA)
## 18533                                                                                                                Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, male (%)
## 18534                                                                                                           Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, both sexes (%)
## 18535                                                                                                               Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, female (%)
## 18536                                                                                      Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Enjoyment‚ adjusted gender parity index (GPIA)
## 18537                                                                                                                 Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, male (%)
## 18538                                                                                                                                                                                                             Proportion of 15-24 year-olds enrolled in vocational education, both sexes (%)
## 18539                                                                                                                                                                                                                 Proportion of 15-24 year-olds enrolled in vocational education, female (%)
## 18540                                                                                                                                                                                        Proportion of 15-24 year-olds enrolled in vocational education, adjusted gender parity index (GPIA)
## 18541                                                                                                                                                                                                                   Proportion of 15-24 year-olds enrolled in vocational education, male (%)
## 18542                                                                                                                                                                                                          Percentage of students in lower secondary vocational education who are female (%)
## 18543                                                                                                                                                                                                          Percentage of students in upper secondary vocational education who are female (%)
## 18544                                                                                                                                                                                              Percentage of students in post-secondary non-tertiary vocational education who are female (%)
## 18545                                                                                                                                                                                                     Female share of graduates in Business, Administration and Law programmes, tertiary (%)
## 18546                                                                                                                                                                                           Female share of graduates in Information and Communication Technologies programmes, tertiary (%)
## 18547                                                                                                                                                                   Female share of graduates in other fields than Science, Technology, Engineering and Mathematics programmes, tertiary (%)
## 18548                                                                                                                                                               Percentage of students in primary education who have their first or home language as language of instruction, both sexes (%)
## 18549                                                                                                                                                                   Percentage of students in primary education who have their first or home language as language of instruction, female (%)
## 18550                                                                                                                                          Percentage of students in primary education who have their first or home language as language of instruction, adjusted gender parity index (GPIA)
## 18551                                                                                                                       Percentage of students in primary education who have their first or home language as language of instruction, very affluent socioeconomic background, both sexes (%)
## 18552                                                                                                                           Percentage of students in primary education who have their first or home language as language of instruction, very poor socioeconomic background, both sexes (%)
## 18553                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, adjusted location parity index (LPIA)
## 18554                                                                                                                                                                     Percentage of students in primary education who have their first or home language as language of instruction, male (%)
## 18555                                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, rural, both sexes (%)
## 18556                                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, urban, both sexes (%)
## 18557                                                                                                                                          Percentage of students in primary education who have their first or home language as language of instruction, adjusted wealth parity index (WPIA)
## 18558                                                                                                                                                                Percentage of graduates from tertiary education graduating from Business, Administration and Law programmes, both sexes (%)
## 18559                                                                                                                                                             Percentage of graduates from Science, Technology, Engineering and Mathematics programmes in tertiary education, both sexes (%)
## 18560                                                                                                                                                      Percentage of graduates from tertiary education graduating from Information and Communication Technologies programmes, both sexes (%)
## 18561                                                                                                                                                  Percentage of graduates from programmes other than Science, Technology, Engineering and Mathematics in tertiary education, both sexes (%)
## 18562                                                                                                                                                                                                                     Percentage of teachers in lower secondary education who are female (%)
## 18563                                                                                                                                                                                                                     Percentage of teachers in upper secondary education who are female (%)
## 18564                                                                                                                                                                                                         Percentage of teachers in post-secondary non-tertiary education who are female (%)
## 18565                                                                                                                                                                                                                              Gross attendance ratio for tertiary education, both sexes (%)
## 18566                                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, female (%)
## 18567                                                                                                                                                                                               Gross attendance ratio for tertiary education, female, adjusted location parity index (LPIA)
## 18568                                                                                                                                                                                                 Gross attendance ratio for tertiary education, female, adjusted wealth parity index (WPIA)
## 18569                                                                                                                                                                                                         Gross attendance ratio for tertiary education, adjusted gender parity index (GPIA)
## 18570                                                                                                                                                                                                       Gross attendance ratio for tertiary education, adjusted location parity index (LPIA)
## 18571                                                                                                                                                                                                                                    Gross attendance ratio for tertiary education, male (%)
## 18572                                                                                                                                                                                                 Gross attendance ratio for tertiary education, male, adjusted location parity index (LPIA)
## 18573                                                                                                                                                                                                   Gross attendance ratio for tertiary education, male, adjusted wealth parity index (WPIA)
## 18574                                                                                                                                                                                                            Gross attendance ratio for tertiary education, poorest quintile, both sexes (%)
## 18575                                                                                                                                                                                                                Gross attendance ratio for tertiary education, poorest quintile, female (%)
## 18576                                                                                                                                                                             Gross attendance ratio for tertiary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18577                                                                                                                                                                                       Gross attendance ratio for tertiary education, poorest quintile, adjusted gender parity index (GPIA)
## 18578                                                                                                                                                                                     Gross attendance ratio for tertiary education, poorest quintile, adjusted location parity index (LPIA)
## 18579                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, poorest quintile, male (%)
## 18580                                                                                                                                                                               Gross attendance ratio for tertiary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18581                                                                                                                                                                                                             Gross attendance ratio for tertiary education, second quintile, both sexes (%)
## 18582                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, second quintile, female (%)
## 18583                                                                                                                                                                              Gross attendance ratio for tertiary education, second quintile, female, adjusted location parity index (LPIA)
## 18584                                                                                                                                                                                        Gross attendance ratio for tertiary education, second quintile, adjusted gender parity index (GPIA)
## 18585                                                                                                                                                                                      Gross attendance ratio for tertiary education, second quintile, adjusted location parity index (LPIA)
## 18586                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, second quintile, male (%)
## 18587                                                                                                                                                                                Gross attendance ratio for tertiary education, second quintile, male, adjusted location parity index (LPIA)
## 18588                                                                                                                                                                                                             Gross attendance ratio for tertiary education, middle quintile, both sexes (%)
## 18589                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, middle quintile, female (%)
## 18590                                                                                                                                                                              Gross attendance ratio for tertiary education, middle quintile, female, adjusted location parity index (LPIA)
## 18591                                                                                                                                                                                        Gross attendance ratio for tertiary education, middle quintile, adjusted gender parity index (GPIA)
## 18592                                                                                                                                                                                      Gross attendance ratio for tertiary education, middle quintile, adjusted location parity index (LPIA)
## 18593                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, middle quintile, male (%)
## 18594                                                                                                                                                                                Gross attendance ratio for tertiary education, middle quintile, male, adjusted location parity index (LPIA)
## 18595                                                                                                                                                                                                             Gross attendance ratio for tertiary education, fourth quintile, both sexes (%)
## 18596                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, fourth quintile, female (%)
## 18597                                                                                                                                                                              Gross attendance ratio for tertiary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18598                                                                                                                                                                                        Gross attendance ratio for tertiary education, fourth quintile, adjusted gender parity index (GPIA)
## 18599                                                                                                                                                                                      Gross attendance ratio for tertiary education, fourth quintile, adjusted location parity index (LPIA)
## 18600                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, fourth quintile, male (%)
## 18601                                                                                                                                                                                Gross attendance ratio for tertiary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18602                                                                                                                                                                                                            Gross attendance ratio for tertiary education, richest quintile, both sexes (%)
## 18603                                                                                                                                                                                                                Gross attendance ratio for tertiary education, richest quintile, female (%)
## 18604                                                                                                                                                                             Gross attendance ratio for tertiary education, richest quintile, female, adjusted location parity index (LPIA)
## 18605                                                                                                                                                                                       Gross attendance ratio for tertiary education, richest quintile, adjusted gender parity index (GPIA)
## 18606                                                                                                                                                                                     Gross attendance ratio for tertiary education, richest quintile, adjusted location parity index (LPIA)
## 18607                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, richest quintile, male (%)
## 18608                                                                                                                                                                               Gross attendance ratio for tertiary education, richest quintile, male, adjusted location parity index (LPIA)
## 18609                                                                                                                                                                                                                       Gross attendance ratio for tertiary education, rural, both sexes (%)
## 18610                                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, female (%)
## 18611                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, female, adjusted wealth parity index (WPIA)
## 18612                                                                                                                                                                                                  Gross attendance ratio for tertiary education, rural, adjusted gender parity index (GPIA)
## 18613                                                                                                                                                                                                                             Gross attendance ratio for tertiary education, rural, male (%)
## 18614                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, male, adjusted wealth parity index (WPIA)
## 18615                                                                                                                                                                                                     Gross attendance ratio for tertiary education, rural, poorest quintile, both sexes (%)
## 18616                                                                                                                                                                                                         Gross attendance ratio for tertiary education, rural, poorest quintile, female (%)
## 18617                                                                                                                                                                                Gross attendance ratio for tertiary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18618                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, poorest quintile, male (%)
## 18619                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, second quintile, both sexes (%)
## 18620                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, second quintile, female (%)
## 18621                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18622                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, second quintile, male (%)
## 18623                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, middle quintile, both sexes (%)
## 18624                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, middle quintile, female (%)
## 18625                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18626                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, middle quintile, male (%)
## 18627                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, fourth quintile, both sexes (%)
## 18628                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, fourth quintile, female (%)
## 18629                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18630                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, fourth quintile, male (%)
## 18631                                                                                                                                                                                                     Gross attendance ratio for tertiary education, rural, richest quintile, both sexes (%)
## 18632                                                                                                                                                                                                         Gross attendance ratio for tertiary education, rural, richest quintile, female (%)
## 18633                                                                                                                                                                                Gross attendance ratio for tertiary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18634                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, richest quintile, male (%)
## 18635                                                                                                                                                                                                  Gross attendance ratio for tertiary education, rural, adjusted wealth parity index (WPIA)
## 18636                                                                                                                                                                                                                       Gross attendance ratio for tertiary education, urban, both sexes (%)
## 18637                                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, female (%)
## 18638                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, female, adjusted wealth parity index (WPIA)
## 18639                                                                                                                                                                                                  Gross attendance ratio for tertiary education, urban, adjusted gender parity index (GPIA)
## 18640                                                                                                                                                                                                                             Gross attendance ratio for tertiary education, urban, male (%)
## 18641                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, male, adjusted wealth parity index (WPIA)
## 18642                                                                                                                                                                                                     Gross attendance ratio for tertiary education, urban, poorest quintile, both sexes (%)
## 18643                                                                                                                                                                                                         Gross attendance ratio for tertiary education, urban, poorest quintile, female (%)
## 18644                                                                                                                                                                                Gross attendance ratio for tertiary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18645                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, poorest quintile, male (%)
## 18646                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, second quintile, both sexes (%)
## 18647                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, second quintile, female (%)
## 18648                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18649                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, second quintile, male (%)
## 18650                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, middle quintile, both sexes (%)
## 18651                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, middle quintile, female (%)
## 18652                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18653                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, middle quintile, male (%)
## 18654                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, fourth quintile, both sexes (%)
## 18655                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, fourth quintile, female (%)
## 18656                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18657                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, fourth quintile, male (%)
## 18658                                                                                                                                                                                                     Gross attendance ratio for tertiary education, urban, richest quintile, both sexes (%)
## 18659                                                                                                                                                                                                         Gross attendance ratio for tertiary education, urban, richest quintile, female (%)
## 18660                                                                                                                                                                                Gross attendance ratio for tertiary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18661                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, richest quintile, male (%)
## 18662                                                                                                                                                                                                  Gross attendance ratio for tertiary education, urban, adjusted wealth parity index (WPIA)
## 18663                                                                                                                                                                                                         Gross attendance ratio for tertiary education, adjusted wealth parity index (WPIA)
## 18664                                                                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, both sexes (%)
## 18665                                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, both sexes (%)
## 18666                                                                                                            Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, female (%)
## 18667                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, adjusted gender parity index (GPIA)
## 18668                                                                                                              Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, male (%)
## 18669                                                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, female (%)
## 18670                                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, adjusted gender parity index (GPIA)
## 18671                                                                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, male (%)
## 18672                                                                                           Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, both sexes (%)
## 18673                                                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, female (%)
## 18674                                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Freedom, adjusted gender parity index (GPIA)
## 18675                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, male (%)
## 18676                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, both sexes (%)
## 18677                                                                                       Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, female (%)
## 18678                                                              Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Gender equality, adjusted gender parity index (GPIA)
## 18679                                                                                         Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, male (%)
## 18680                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, both sexes (%)
## 18681                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, female (%)
## 18682                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Global-local thinking, adjusted gender parity index (GPIA)
## 18683                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, male (%)
## 18684                                                                                  Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, both sexes (%)
## 18685                                                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, female (%)
## 18686                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Multiculturalism, adjusted gender parity index (GPIA)
## 18687                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, male (%)
## 18688                                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, both sexes (%)
## 18689                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, female (%)
## 18690                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Peace, adjusted gender parity index (GPIA)
## 18691                                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, male (%)
## 18692                                                                           Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, both sexes (%)
## 18693                                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, female (%)
## 18694                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Sustainable development, adjusted gender parity index (GPIA)
## 18695                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, male (%)
## 18696                                                                                    Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, both sexes (%)
## 18697                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, female (%)
## 18698                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Social Justice, adjusted gender parity index (GPIA)
## 18699                                                                                          Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, male (%)
## 18700                                                                                                                                                                                                                           Gross enrolment ratio, early childhood education, both sexes (%)
## 18701                                                                                                                                                                                                                               Gross enrolment ratio, early childhood education, female (%)
## 18702                                                                                                                                                                                                      Gross enrolment ratio, early childhood education, adjusted gender parity index (GPIA)
## 18703                                                                                                                                                                                                                                 Gross enrolment ratio, early childhood education, male (%)
## 18704                                                                                                                                                                                                  Gross enrolment ratio, early childhood educational development programmes, both sexes (%)
## 18705                                                                                                                                                                                                      Gross enrolment ratio, early childhood educational development programmes, female (%)
## 18706                                                                                                                                                                             Gross enrolment ratio, early childhood educational development programmes, adjusted gender parity index (GPIA)
## 18707                                                                                                                                                                                                        Gross enrolment ratio, early childhood educational development programmes, male (%)
## 18708                                                                                                                                                                                                                    Gross enrolment ratio, pre-primary, adjusted gender parity index (GPIA)
## 18709                                                                                                                                                                                                                         Gross enrolment ratio, primary and lower secondary, both sexes (%)
## 18710                                                                                                                                                                                                                             Gross enrolment ratio, primary and lower secondary, female (%)
## 18711                                                                                                                                                                                                              Gross enrolment ratio, primary and lower secondary, gender parity index (GPI)
## 18712                                                                                                                                                                                                                               Gross enrolment ratio, primary and lower secondary, male (%)
## 18713                                                                                                                                                                                                                               Gross enrolment ratio, primary and secondary, both sexes (%)
## 18714                                                                                                                                                                                                                                   Gross enrolment ratio, primary and secondary, female (%)
## 18715                                                                                                                                                                                                                                     Gross enrolment ratio, primary and secondary, male (%)
## 18716                                                                                                                                                                                                                                     Gross enrolment ratio, primary to tertiary, female (%)
## 18717                                                                                                                                                                                                                      Gross enrolment ratio, primary to tertiary, gender parity index (GPI)
## 18718                                                                                                                                                                                                                                       Gross enrolment ratio, primary to tertiary, male (%)
## 18719                                                                                                                                                                                                                          Gross enrolment ratio, lower secondary, gender parity index (GPI)
## 18720                                                                                                                                                                                                                          Gross enrolment ratio, upper secondary, gender parity index (GPI)
## 18721                                                                                                                                                                                                                         Gross enrolment ratio, post-secondary non-tertiary, both sexes (%)
## 18722                                                                                                                                                                                                                             Gross enrolment ratio, post-secondary non-tertiary, female (%)
## 18723                                                                                                                                                                                                              Gross enrolment ratio, post-secondary non-tertiary, gender parity index (GPI)
## 18724                                                                                                                                                                                                                               Gross enrolment ratio, post-secondary non-tertiary, male (%)
## 18725                                                                                                                                                                                                          Gross enrolment ratio for tertiary education, adjusted gender parity index (GPIA)
## 18726                                                                                                                                                                       Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, gender parity index (GPI)
## 18727                                                                                                                                                                                                      Share of all students in lower secondary education enrolled in general programmes (%)
## 18728                                                                                                                                                                                                   Share of all students in lower secondary education enrolled in vocational programmes (%)
## 18729                                                                                                                                                                                                Share of female students in lower secondary education enrolled in vocational programmes (%)
## 18730                                                                                                                                                                                                  Share of male students in lower secondary education enrolled in vocational programmes (%)
## 18731                                                                                                                                                                                                            Share of all students in secondary education enrolled in general programmes (%)
## 18732                                                                                                                                                                                                      Share of all students in upper secondary education enrolled in general programmes (%)
## 18733                                                                                                                                                                                                   Share of all students in upper secondary education enrolled in vocational programmes (%)
## 18734                                                                                                                                                                                                Share of female students in upper secondary education enrolled in vocational programmes (%)
## 18735                                                                                                                                                                                                  Share of male students in upper secondary education enrolled in vocational programmes (%)
## 18736                                                                                                                                                                                          Share of all students in post-secondary non-tertiary education enrolled in general programmes (%)
## 18737                                                                                                                                                                                       Share of all students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18738                                                                                                                                                                                    Share of female students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18739                                                                                                                                                                                      Share of male students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18740                                                                                                                                                                   Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), both sexes (%)
## 18741                                                                                                                                                                       Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), female (%)
## 18742                                                                                                                                              Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), adjusted gender parity index (GPIA)
## 18743                                                                                                                                                                         Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), male (%)
## 18744                                                                                                                                                                                                            Proportion of youth and adults who have connected and installed new devices (%)
## 18745                                                                                                                                                                                                    Proportion of youth and adults who have connected and installed new devices, female (%)
## 18746                                                                                                                                                                           Proportion of youth and adults who have connected and installed new devices, adjusted gender parity index (GPIA)
## 18747                                                                                                                                                                                                      Proportion of youth and adults who have connected and installed new devices, male (%)
## 18748                                                                                                                                                                                                               Proportion of youth and adults who have copied or moved a file or folder (%)
## 18749                                                                                                                                                                                                       Proportion of youth and adults who have copied or moved a file or folder, female (%)
## 18750                                                                                                                                                                              Proportion of youth and adults who have copied or moved a file or folder, adjusted gender parity index (GPIA)
## 18751                                                                                                                                                                                                         Proportion of youth and adults who have copied or moved a file or folder, male (%)
## 18752                                                                                                                                                                                    Proportion of youth and adults who have created electronic presentations with presentation software (%)
## 18753                                                                                                                                                                            Proportion of youth and adults who have created electronic presentations with presentation software, female (%)
## 18754                                                                                                                                                   Proportion of youth and adults who have created electronic presentations with presentation software, adjusted gender parity index (GPIA)
## 18755                                                                                                                                                                              Proportion of youth and adults who have created electronic presentations with presentation software, male (%)
## 18756                                                                                                                                                      Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document , both sexes (%)
## 18757                                                                                                                                                           Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, female (%)
## 18758                                                                                                                                  Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, adjusted gender parity index (GPIA)
## 18759                                                                                                                                                             Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, male (%)
## 18760                                                                                                                                                                                    Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, both sexes (%)
## 18761                                                                                                                                                                                        Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, female (%)
## 18762                                                                                                                                                               Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, adjusted gender parity index (GPIA)
## 18763                                                                                                                                                                                          Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, male (%)
## 18764                                                                                                                                                                  Proportion of youth and adults who have wrote a computer program using a specialised programming language, both sexes (%)
## 18765                                                                                                                                                                      Proportion of youth and adults who have wrote a computer program using a specialised programming language, female (%)
## 18766                                                                                                                                             Proportion of youth and adults who have wrote a computer program using a specialised programming language, adjusted gender parity index (GPIA)
## 18767                                                                                                                                                                        Proportion of youth and adults who have wrote a computer program using a specialised programming language, male (%)
## 18768                                                                                                                                                                               Proportion of youth and adults who have found, downloaded, installed and configured software, both sexes (%)
## 18769                                                                                                                                                                                   Proportion of youth and adults who have found, downloaded, installed and configured software, female (%)
## 18770                                                                                                                                                          Proportion of youth and adults who have found, downloaded, installed and configured software, adjusted gender parity index (GPIA)
## 18771                                                                                                                                                                                     Proportion of youth and adults who have found, downloaded, installed and configured software, male (%)
## 18772                                                                                                                                                                             Proportion of youth and adults who have transferred files between a computer and other devices, both sexes (%)
## 18773                                                                                                                                                                                 Proportion of youth and adults who have transferred files between a computer and other devices, female (%)
## 18774                                                                                                                                                        Proportion of youth and adults who have transferred files between a computer and other devices, adjusted gender parity index (GPIA)
## 18775                                                                                                                                                                                   Proportion of youth and adults who have transferred files between a computer and other devices, male (%)
## 18776                                                                                                                                                                                                                                    Illiterate population, 25-64 years, both sexes (number)
## 18777                                                                                                                                                                                                                                        Illiterate population, 25-64 years, female (number)
## 18778                                                                                                                                                                                                                                          Illiterate population, 25-64 years, male (number)
## 18779                                                                                                                                                                                                                                               Illiterate population, 25-64 years, % female
## 18780                                                                                                                                                                                                                              Youth illiterate population, 15-24 years, both sexes (number)
## 18781                                                                                                                                                                                                                                  Youth illiterate population, 15-24 years, female (number)
## 18782                                                                                                                                                                                                                                    Youth illiterate population, 15-24 years, male (number)
## 18783                                                                                                                                                                                                                                Adult illiterate population, 15+ years, both sexes (number)
## 18784                                                                                                                                                                                                                                    Adult illiterate population, 15+ years, female (number)
## 18785                                                                                                                                                                                                                                      Adult illiterate population, 15+ years, male (number)
## 18786                                                                                                                                                                                                                              Elderly illiterate population, 65+ years, both sexes (number)
## 18787                                                                                                                                                                                                                                  Elderly illiterate population, 65+ years, female (number)
## 18788                                                                                                                                                                                                                                    Elderly illiterate population, 65+ years, male (number)
## 18789                                                                                                                                                                                                                                         Youth illiterate population, 15-24 years, % female
## 18790                                                                                                                                                                                                                                           Adult illiterate population, 15+ years, % female
## 18791                                                                                                                                                                                                                                         Elderly illiterate population, 65+ years, % female
## 18792                                                                                                                                                                                                 Youth literacy rate, population 15-24 years, female, adjusted location parity index (LPIA)
## 18793                                                                                                                                                                                                           Youth literacy rate, population 15-24 years, adjusted gender parity index (GPIA)
## 18794                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, adjusted location parity index (LPIA)
## 18795                                                                                                                                                                                                   Youth literacy rate, population 15-24 years, male, adjusted location parity index (LPIA)
## 18796                                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, rural, both sexes (%)
## 18797                                                                                                                                                                                                                             Youth literacy rate, population 15-24 years, rural, female (%)
## 18798                                                                                                                                                                                                    Youth literacy rate, population 15-24 years, rural, adjusted gender parity index (GPIA)
## 18799                                                                                                                                                                                                                               Youth literacy rate, population 15-24 years, rural, male (%)
## 18800                                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, urban, both sexes (%)
## 18801                                                                                                                                                                                                                             Youth literacy rate, population 15-24 years, urban, female (%)
## 18802                                                                                                                                                                                                    Youth literacy rate, population 15-24 years, urban, adjusted gender parity index (GPIA)
## 18803                                                                                                                                                                                                                               Youth literacy rate, population 15-24 years, urban, male (%)
## 18804                                                                                                                                                                                                   Adult literacy rate, population 15+ years, female, adjusted location parity index (LPIA)
## 18805                                                                                                                                                                                                             Adult literacy rate, population 15+ years, adjusted gender parity index (GPIA)
## 18806                                                                                                                                                                                                           Adult literacy rate, population 15+ years, adjusted location parity index (LPIA)
## 18807                                                                                                                                                                                                     Adult literacy rate, population 15+ years, male, adjusted location parity index (LPIA)
## 18808                                                                                                                                                                                                                           Adult literacy rate, population 15+ years, rural, both sexes (%)
## 18809                                                                                                                                                                                                                               Adult literacy rate, population 15+ years, rural, female (%)
## 18810                                                                                                                                                                                                      Adult literacy rate, population 15+ years, rural, adjusted gender parity index (GPIA)
## 18811                                                                                                                                                                                                                                 Adult literacy rate, population 15+ years, rural, male (%)
## 18812                                                                                                                                                                                                                           Adult literacy rate, population 15+ years, urban, both sexes (%)
## 18813                                                                                                                                                                                                                               Adult literacy rate, population 15+ years, urban, female (%)
## 18814                                                                                                                                                                                                      Adult literacy rate, population 15+ years, urban, adjusted gender parity index (GPIA)
## 18815                                                                                                                                                                                                                                 Adult literacy rate, population 15+ years, urban, male (%)
## 18816                                                                                                                                                                                                                                      Literacy rate, population 25-64 years, both sexes (%)
## 18817                                                                                                                                                                                                                                          Literacy rate, population 25-64 years, female (%)
## 18818                                                                                                                                                                                                       Literacy rate, population 25-64 years, female, adjusted location parity index (LPIA)
## 18819                                                                                                                                                                                                                 Literacy rate, population 25-64 years, adjusted gender parity index (GPIA)
## 18820                                                                                                                                                                                                               Literacy rate, population 25-64 years, adjusted location parity index (LPIA)
## 18821                                                                                                                                                                                                                                            Literacy rate, population 25-64 years, male (%)
## 18822                                                                                                                                                                                                         Literacy rate, population 25-64 years, male, adjusted location parity index (LPIA)
## 18823                                                                                                                                                                                                                               Literacy rate, population 25-64 years, rural, both sexes (%)
## 18824                                                                                                                                                                                                                                   Literacy rate, population 25-64 years, rural, female (%)
## 18825                                                                                                                                                                                                          Literacy rate, population 25-64 years, rural, adjusted gender parity index (GPIA)
## 18826                                                                                                                                                                                                                                     Literacy rate, population 25-64 years, rural, male (%)
## 18827                                                                                                                                                                                                                               Literacy rate, population 25-64 years, urban, both sexes (%)
## 18828                                                                                                                                                                                                                                   Literacy rate, population 25-64 years, urban, female (%)
## 18829                                                                                                                                                                                                          Literacy rate, population 25-64 years, urban, adjusted gender parity index (GPIA)
## 18830                                                                                                                                                                                                                                     Literacy rate, population 25-64 years, urban, male (%)
## 18831                                                                                                                                                                                                                                Elderly literacy rate, population 65+ years, both sexes (%)
## 18832                                                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, female (%)
## 18833                                                                                                                                                                                                                                      Elderly literacy rate, population 65+ years, male (%)
## 18834                                                                                                                                                                                                 Elderly literacy rate, population 65+ years, female, adjusted location parity index (LPIA)
## 18835                                                                                                                                                                                                           Elderly literacy rate, population 65+ years, adjusted gender parity index (GPIA)
## 18836                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, adjusted location parity index (LPIA)
## 18837                                                                                                                                                                                                   Elderly literacy rate, population 65+ years, male, adjusted location parity index (LPIA)
## 18838                                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, rural, both sexes (%)
## 18839                                                                                                                                                                                                                             Elderly literacy rate, population 65+ years, rural, female (%)
## 18840                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, rural, adjusted gender parity index (GPIA)
## 18841                                                                                                                                                                                                                               Elderly literacy rate, population 65+ years, rural, male (%)
## 18842                                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, urban, both sexes (%)
## 18843                                                                                                                                                                                                                             Elderly literacy rate, population 65+ years, urban, female (%)
## 18844                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, urban, adjusted gender parity index (GPIA)
## 18845                                                                                                                                                                                                                               Elderly literacy rate, population 65+ years, urban, male (%)
## 18846                                                                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18847                                                                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, female (%)
## 18848                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18849                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18850                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18851                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18852                                                                                                                                                Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18853                                                                                                                            Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18854                                                                                                                                                                             Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, male (%)
## 18855                                                                                                                                             Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18856                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18857                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18858                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18859                                                                                                                                                          Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18860                                                                                                                                                          Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18861                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18862                                                                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18863                                                                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, female (%)
## 18864                                                                                                                                    Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18865                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18866                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18867                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18868                                                                                                                                  Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18869                                                                                                    Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18870                                                                                                                                                     Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, male (%)
## 18871                                                                                                                     Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18872                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18873                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18874                                                                                                                          Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18875                                                                                                                                  Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18876                                                                                                                                  Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18877                                                                                                                                    Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18878                                                                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18879                                                                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, female (%)
## 18880                                                                                                                                            Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18881                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18882                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18883                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18884                                                                                                                                          Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18885                                                                                                            Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18886                                                                                                                                                             Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, male (%)
## 18887                                                                                                                             Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18888                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18889                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18890                                                                                                                                  Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18891                                                                                                                                          Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18892                                                                                                                                          Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18893                                                                                                                                            Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18894                                                                                                                                                                                                      Net flow of internationally mobile students (inbound - outbound), both sexes (number)
## 18895                                                                                                                                                                                                     Net flow ratio of internationally mobile students (inbound - outbound), both sexes (%)
## 18896                                                                                                                                                                                                                             Total inbound internationally mobile students, female (number)
## 18897                                                                                                                                                                                                                               Total inbound internationally mobile students, male (number)
## 18898                                                                                                                                                                                                                         Total inbound internationally mobile students, both sexes (number)
## 18899                                                                                                                                                                                                                                                      Inbound mobility rate, both sexes (%)
## 18900                                                                                                                                                                                                                                                          Inbound mobility rate, female (%)
## 18901                                                                                                                                                                                                                                                            Inbound mobility rate, male (%)
## 18902                                                                                                                                                                                                                                  Number of attacks on students, personnel and institutions
## 18903                                                                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, both sexes (%)
## 18904                                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, female (%)
## 18905                                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, female, adjusted location parity index (LPIA)
## 18906                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, female, adjusted wealth parity index (WPIA)
## 18907                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, adjusted gender parity index (GPIA)
## 18908                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, adjusted location parity index (LPIA)
## 18909                                                                                                                                                                                                     Adjusted net attendance rate, one year before the official primary entry age, male (%)
## 18910                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, male, adjusted location parity index (LPIA)
## 18911                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, male, adjusted wealth parity index (WPIA)
## 18912                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, both sexes (%)
## 18913                                                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female (%)
## 18914                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female, adjusted location parity index (LPIA)
## 18915                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted gender parity index (GPIA)
## 18916                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted location parity index (LPIA)
## 18917                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male (%)
## 18918                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male, adjusted location parity index (LPIA)
## 18919                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, second quintile, both sexes (%)
## 18920                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, second quintile, female (%)
## 18921                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, second quintile, female, adjusted location parity index (LPIA)
## 18922                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted gender parity index (GPIA)
## 18923                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted location parity index (LPIA)
## 18924                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, second quintile, male (%)
## 18925                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, second quintile, male, adjusted location parity index (LPIA)
## 18926                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, middle quintile, both sexes (%)
## 18927                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female (%)
## 18928                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female, adjusted location parity index (LPIA)
## 18929                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted gender parity index (GPIA)
## 18930                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted location parity index (LPIA)
## 18931                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male (%)
## 18932                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male, adjusted location parity index (LPIA)
## 18933                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, both sexes (%)
## 18934                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female (%)
## 18935                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female, adjusted location parity index (LPIA)
## 18936                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted gender parity index (GPIA)
## 18937                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted location parity index (LPIA)
## 18938                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male (%)
## 18939                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male, adjusted location parity index (LPIA)
## 18940                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, richest quintile, both sexes (%)
## 18941                                                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female (%)
## 18942                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female, adjusted location parity index (LPIA)
## 18943                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted gender parity index (GPIA)
## 18944                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted location parity index (LPIA)
## 18945                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male (%)
## 18946                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male, adjusted location parity index (LPIA)
## 18947                                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, rural, both sexes (%)
## 18948                                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, female (%)
## 18949                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, female, adjusted wealth parity index (WPIA)
## 18950                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted gender parity index (GPIA)
## 18951                                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, rural, male (%)
## 18952                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, male, adjusted wealth parity index (WPIA)
## 18953                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, both sexes (%)
## 18954                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, female (%)
## 18955                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18956                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, male (%)
## 18957                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, both sexes (%)
## 18958                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, female (%)
## 18959                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, adjusted gender parity index (GPIA)
## 18960                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, male (%)
## 18961                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, both sexes (%)
## 18962                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, female (%)
## 18963                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, adjusted gender parity index (GPIA)
## 18964                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, male (%)
## 18965                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, both sexes (%)
## 18966                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, female (%)
## 18967                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18968                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, male (%)
## 18969                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, both sexes (%)
## 18970                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, female (%)
## 18971                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, adjusted gender parity index (GPIA)
## 18972                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, male (%)
## 18973                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted wealth parity index (WPIA)
## 18974                                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, urban, both sexes (%)
## 18975                                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, female (%)
## 18976                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, female, adjusted wealth parity index (WPIA)
## 18977                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted gender parity index (GPIA)
## 18978                                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, urban, male (%)
## 18979                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, male, adjusted wealth parity index (WPIA)
## 18980                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, both sexes (%)
## 18981                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, female (%)
## 18982                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18983                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, male (%)
## 18984                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, both sexes (%)
## 18985                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, female (%)
## 18986                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, adjusted gender parity index (GPIA)
## 18987                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, male (%)
## 18988                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, both sexes (%)
## 18989                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, female (%)
## 18990                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, adjusted gender parity index (GPIA)
## 18991                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, male (%)
## 18992                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, both sexes (%)
## 18993                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, female (%)
## 18994                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18995                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, male (%)
## 18996                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, both sexes (%)
## 18997                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, female (%)
## 18998                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, adjusted gender parity index (GPIA)
## 18999                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, male (%)
## 19000                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted wealth parity index (WPIA)
## 19001                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, adjusted wealth parity index (WPIA)
## 19002                                                                                                                                                                                                                                         Total net attendance rate, primary, both sexes (%)
## 19003                                                                                                                                                                                                                                             Total net attendance rate, primary, female (%)
## 19004                                                                                                                                                                                                          Total net attendance rate, primary, female, adjusted location parity index (LPIA)
## 19005                                                                                                                                                                                                            Total net attendance rate, primary, female, adjusted wealth parity index (WPIA)
## 19006                                                                                                                                                                                                                    Total net attendance rate, primary, adjusted gender parity index (GPIA)
## 19007                                                                                                                                                                                                                  Total net attendance rate, primary, adjusted location parity index (LPIA)
## 19008                                                                                                                                                                                                                                               Total net attendance rate, primary, male (%)
## 19009                                                                                                                                                                                                            Total net attendance rate, primary, male, adjusted location parity index (LPIA)
## 19010                                                                                                                                                                                                              Total net attendance rate, primary, male, adjusted wealth parity index (WPIA)
## 19011                                                                                                                                                                                                                       Total net attendance rate, primary, poorest quintile, both sexes (%)
## 19012                                                                                                                                                                                                                           Total net attendance rate, primary, poorest quintile, female (%)
## 19013                                                                                                                                                                                        Total net attendance rate, primary, poorest quintile, female, adjusted location parity index (LPIA)
## 19014                                                                                                                                                                                                  Total net attendance rate, primary, poorest quintile, adjusted gender parity index (GPIA)
## 19015                                                                                                                                                                                                Total net attendance rate, primary, poorest quintile, adjusted location parity index (LPIA)
## 19016                                                                                                                                                                                                                             Total net attendance rate, primary, poorest quintile, male (%)
## 19017                                                                                                                                                                                          Total net attendance rate, primary, poorest quintile, male, adjusted location parity index (LPIA)
## 19018                                                                                                                                                                                                                        Total net attendance rate, primary, second quintile, both sexes (%)
## 19019                                                                                                                                                                                                                            Total net attendance rate, primary, second quintile, female (%)
## 19020                                                                                                                                                                                         Total net attendance rate, primary, second quintile, female, adjusted location parity index (LPIA)
## 19021                                                                                                                                                                                                   Total net attendance rate, primary, second quintile, adjusted gender parity index (GPIA)
## 19022                                                                                                                                                                                                 Total net attendance rate, primary, second quintile, adjusted location parity index (LPIA)
## 19023                                                                                                                                                                                                                              Total net attendance rate, primary, second quintile, male (%)
## 19024                                                                                                                                                                                           Total net attendance rate, primary, second quintile, male, adjusted location parity index (LPIA)
## 19025                                                                                                                                                                                                                        Total net attendance rate, primary, middle quintile, both sexes (%)
## 19026                                                                                                                                                                                                                            Total net attendance rate, primary, middle quintile, female (%)
## 19027                                                                                                                                                                                         Total net attendance rate, primary, middle quintile, female, adjusted location parity index (LPIA)
## 19028                                                                                                                                                                                                   Total net attendance rate, primary, middle quintile, adjusted gender parity index (GPIA)
## 19029                                                                                                                                                                                                 Total net attendance rate, primary, middle quintile, adjusted location parity index (LPIA)
## 19030                                                                                                                                                                                                                              Total net attendance rate, primary, middle quintile, male (%)
## 19031                                                                                                                                                                                           Total net attendance rate, primary, middle quintile, male, adjusted location parity index (LPIA)
## 19032                                                                                                                                                                                                                        Total net attendance rate, primary, fourth quintile, both sexes (%)
## 19033                                                                                                                                                                                                                            Total net attendance rate, primary, fourth quintile, female (%)
## 19034                                                                                                                                                                                         Total net attendance rate, primary, fourth quintile, female, adjusted location parity index (LPIA)
## 19035                                                                                                                                                                                                   Total net attendance rate, primary, fourth quintile, adjusted gender parity index (GPIA)
## 19036                                                                                                                                                                                                 Total net attendance rate, primary, fourth quintile, adjusted location parity index (LPIA)
## 19037                                                                                                                                                                                                                              Total net attendance rate, primary, fourth quintile, male (%)
## 19038                                                                                                                                                                                           Total net attendance rate, primary, fourth quintile, male, adjusted location parity index (LPIA)
## 19039                                                                                                                                                                                                                       Total net attendance rate, primary, richest quintile, both sexes (%)
## 19040                                                                                                                                                                                                                           Total net attendance rate, primary, richest quintile, female (%)
## 19041                                                                                                                                                                                        Total net attendance rate, primary, richest quintile, female, adjusted location parity index (LPIA)
## 19042                                                                                                                                                                                                  Total net attendance rate, primary, richest quintile, adjusted gender parity index (GPIA)
## 19043                                                                                                                                                                                                Total net attendance rate, primary, richest quintile, adjusted location parity index (LPIA)
## 19044                                                                                                                                                                                                                             Total net attendance rate, primary, richest quintile, male (%)
## 19045                                                                                                                                                                                          Total net attendance rate, primary, richest quintile, male, adjusted location parity index (LPIA)
## 19046                                                                                                                                                                                                                                  Total net attendance rate, primary, rural, both sexes (%)
## 19047                                                                                                                                                                                                                                      Total net attendance rate, primary, rural, female (%)
## 19048                                                                                                                                                                                                     Total net attendance rate, primary, rural, female, adjusted wealth parity index (WPIA)
## 19049                                                                                                                                                                                                             Total net attendance rate, primary, rural, adjusted gender parity index (GPIA)
## 19050                                                                                                                                                                                                                                        Total net attendance rate, primary, rural, male (%)
## 19051                                                                                                                                                                                                       Total net attendance rate, primary, rural, male, adjusted wealth parity index (WPIA)
## 19052                                                                                                                                                                                                                Total net attendance rate, primary, rural, poorest quintile, both sexes (%)
## 19053                                                                                                                                                                                                                    Total net attendance rate, primary, rural, poorest quintile, female (%)
## 19054                                                                                                                                                                                           Total net attendance rate, primary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19055                                                                                                                                                                                                                      Total net attendance rate, primary, rural, poorest quintile, male (%)
## 19056                                                                                                                                                                                                                 Total net attendance rate, primary, rural, second quintile, both sexes (%)
## 19057                                                                                                                                                                                                                     Total net attendance rate, primary, rural, second quintile, female (%)
## 19058                                                                                                                                                                                            Total net attendance rate, primary, rural, second quintile, adjusted gender parity index (GPIA)
## 19059                                                                                                                                                                                                                       Total net attendance rate, primary, rural, second quintile, male (%)
## 19060                                                                                                                                                                                                                 Total net attendance rate, primary, rural, middle quintile, both sexes (%)
## 19061                                                                                                                                                                                                                     Total net attendance rate, primary, rural, middle quintile, female (%)
## 19062                                                                                                                                                                                            Total net attendance rate, primary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19063                                                                                                                                                                                                                       Total net attendance rate, primary, rural, middle quintile, male (%)
## 19064                                                                                                                                                                                                                 Total net attendance rate, primary, rural, fourth quintile, both sexes (%)
## 19065                                                                                                                                                                                                                     Total net attendance rate, primary, rural, fourth quintile, female (%)
## 19066                                                                                                                                                                                            Total net attendance rate, primary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19067                                                                                                                                                                                                                       Total net attendance rate, primary, rural, fourth quintile, male (%)
## 19068                                                                                                                                                                                                                Total net attendance rate, primary, rural, richest quintile, both sexes (%)
## 19069                                                                                                                                                                                                                    Total net attendance rate, primary, rural, richest quintile, female (%)
## 19070                                                                                                                                                                                           Total net attendance rate, primary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19071                                                                                                                                                                                                                      Total net attendance rate, primary, rural, richest quintile, male (%)
## 19072                                                                                                                                                                                                             Total net attendance rate, primary, rural, adjusted wealth parity index (WPIA)
## 19073                                                                                                                                                                                                                                  Total net attendance rate, primary, urban, both sexes (%)
## 19074                                                                                                                                                                                                                                      Total net attendance rate, primary, urban, female (%)
## 19075                                                                                                                                                                                                     Total net attendance rate, primary, urban, female, adjusted wealth parity index (WPIA)
## 19076                                                                                                                                                                                                             Total net attendance rate, primary, urban, adjusted gender parity index (GPIA)
## 19077                                                                                                                                                                                                                                        Total net attendance rate, primary, urban, male (%)
## 19078                                                                                                                                                                                                       Total net attendance rate, primary, urban, male, adjusted wealth parity index (WPIA)
## 19079                                                                                                                                                                                                                Total net attendance rate, primary, urban, poorest quintile, both sexes (%)
## 19080                                                                                                                                                                                                                    Total net attendance rate, primary, urban, poorest quintile, female (%)
## 19081                                                                                                                                                                                           Total net attendance rate, primary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19082                                                                                                                                                                                                                      Total net attendance rate, primary, urban, poorest quintile, male (%)
## 19083                                                                                                                                                                                                                 Total net attendance rate, primary, urban, second quintile, both sexes (%)
## 19084                                                                                                                                                                                                                     Total net attendance rate, primary, urban, second quintile, female (%)
## 19085                                                                                                                                                                                            Total net attendance rate, primary, urban, second quintile, adjusted gender parity index (GPIA)
## 19086                                                                                                                                                                                                                       Total net attendance rate, primary, urban, second quintile, male (%)
## 19087                                                                                                                                                                                                                 Total net attendance rate, primary, urban, middle quintile, both sexes (%)
## 19088                                                                                                                                                                                                                     Total net attendance rate, primary, urban, middle quintile, female (%)
## 19089                                                                                                                                                                                            Total net attendance rate, primary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19090                                                                                                                                                                                                                       Total net attendance rate, primary, urban, middle quintile, male (%)
## 19091                                                                                                                                                                                                                 Total net attendance rate, primary, urban, fourth quintile, both sexes (%)
## 19092                                                                                                                                                                                                                     Total net attendance rate, primary, urban, fourth quintile, female (%)
## 19093                                                                                                                                                                                            Total net attendance rate, primary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19094                                                                                                                                                                                                                       Total net attendance rate, primary, urban, fourth quintile, male (%)
## 19095                                                                                                                                                                                                                Total net attendance rate, primary, urban, richest quintile, both sexes (%)
## 19096                                                                                                                                                                                                                    Total net attendance rate, primary, urban, richest quintile, female (%)
## 19097                                                                                                                                                                                           Total net attendance rate, primary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19098                                                                                                                                                                                                                      Total net attendance rate, primary, urban, richest quintile, male (%)
## 19099                                                                                                                                                                                                             Total net attendance rate, primary, urban, adjusted wealth parity index (WPIA)
## 19100                                                                                                                                                                                                                    Total net attendance rate, primary, adjusted wealth parity index (WPIA)
## 19101                                                                                                                                                                                                                                 Total net attendance rate, lower secondary, both sexes (%)
## 19102                                                                                                                                                                                                                                     Total net attendance rate, lower secondary, female (%)
## 19103                                                                                                                                                                                                  Total net attendance rate, lower secondary, female, adjusted location parity index (LPIA)
## 19104                                                                                                                                                                                                    Total net attendance rate, lower secondary, female, adjusted wealth parity index (WPIA)
## 19105                                                                                                                                                                                                            Total net attendance rate, lower secondary, adjusted gender parity index (GPIA)
## 19106                                                                                                                                                                                                          Total net attendance rate, lower secondary, adjusted location parity index (LPIA)
## 19107                                                                                                                                                                                                                                       Total net attendance rate, lower secondary, male (%)
## 19108                                                                                                                                                                                                    Total net attendance rate, lower secondary, male, adjusted location parity index (LPIA)
## 19109                                                                                                                                                                                                      Total net attendance rate, lower secondary, male, adjusted wealth parity index (WPIA)
## 19110                                                                                                                                                                                                               Total net attendance rate, lower secondary, poorest quintile, both sexes (%)
## 19111                                                                                                                                                                                                                   Total net attendance rate, lower secondary, poorest quintile, female (%)
## 19112                                                                                                                                                                                Total net attendance rate, lower secondary, poorest quintile, female, adjusted location parity index (LPIA)
## 19113                                                                                                                                                                                          Total net attendance rate, lower secondary, poorest quintile, adjusted gender parity index (GPIA)
## 19114                                                                                                                                                                                        Total net attendance rate, lower secondary, poorest quintile, adjusted location parity index (LPIA)
## 19115                                                                                                                                                                                                                     Total net attendance rate, lower secondary, poorest quintile, male (%)
## 19116                                                                                                                                                                                  Total net attendance rate, lower secondary, poorest quintile, male, adjusted location parity index (LPIA)
## 19117                                                                                                                                                                                                                Total net attendance rate, lower secondary, second quintile, both sexes (%)
## 19118                                                                                                                                                                                                                    Total net attendance rate, lower secondary, second quintile, female (%)
## 19119                                                                                                                                                                                 Total net attendance rate, lower secondary, second quintile, female, adjusted location parity index (LPIA)
## 19120                                                                                                                                                                                           Total net attendance rate, lower secondary, second quintile, adjusted gender parity index (GPIA)
## 19121                                                                                                                                                                                         Total net attendance rate, lower secondary, second quintile, adjusted location parity index (LPIA)
## 19122                                                                                                                                                                                                                      Total net attendance rate, lower secondary, second quintile, male (%)
## 19123                                                                                                                                                                                   Total net attendance rate, lower secondary, second quintile, male, adjusted location parity index (LPIA)
## 19124                                                                                                                                                                                                                Total net attendance rate, lower secondary, middle quintile, both sexes (%)
## 19125                                                                                                                                                                                                                    Total net attendance rate, lower secondary, middle quintile, female (%)
## 19126                                                                                                                                                                                 Total net attendance rate, lower secondary, middle quintile, female, adjusted location parity index (LPIA)
## 19127                                                                                                                                                                                           Total net attendance rate, lower secondary, middle quintile, adjusted gender parity index (GPIA)
## 19128                                                                                                                                                                                         Total net attendance rate, lower secondary, middle quintile, adjusted location parity index (LPIA)
## 19129                                                                                                                                                                                                                      Total net attendance rate, lower secondary, middle quintile, male (%)
## 19130                                                                                                                                                                                   Total net attendance rate, lower secondary, middle quintile, male, adjusted location parity index (LPIA)
## 19131                                                                                                                                                                                                                Total net attendance rate, lower secondary, fourth quintile, both sexes (%)
## 19132                                                                                                                                                                                                                    Total net attendance rate, lower secondary, fourth quintile, female (%)
## 19133                                                                                                                                                                                 Total net attendance rate, lower secondary, fourth quintile, female, adjusted location parity index (LPIA)
## 19134                                                                                                                                                                                           Total net attendance rate, lower secondary, fourth quintile, adjusted gender parity index (GPIA)
## 19135                                                                                                                                                                                         Total net attendance rate, lower secondary, fourth quintile, adjusted location parity index (LPIA)
## 19136                                                                                                                                                                                                                      Total net attendance rate, lower secondary, fourth quintile, male (%)
## 19137                                                                                                                                                                                   Total net attendance rate, lower secondary, fourth quintile, male, adjusted location parity index (LPIA)
## 19138                                                                                                                                                                                                               Total net attendance rate, lower secondary, richest quintile, both sexes (%)
## 19139                                                                                                                                                                                                                   Total net attendance rate, lower secondary, richest quintile, female (%)
## 19140                                                                                                                                                                                Total net attendance rate, lower secondary, richest quintile, female, adjusted location parity index (LPIA)
## 19141                                                                                                                                                                                          Total net attendance rate, lower secondary, richest quintile, adjusted gender parity index (GPIA)
## 19142                                                                                                                                                                                        Total net attendance rate, lower secondary, richest quintile, adjusted location parity index (LPIA)
## 19143                                                                                                                                                                                                                     Total net attendance rate, lower secondary, richest quintile, male (%)
## 19144                                                                                                                                                                                  Total net attendance rate, lower secondary, richest quintile, male, adjusted location parity index (LPIA)
## 19145                                                                                                                                                                                                                          Total net attendance rate, lower secondary, rural, both sexes (%)
## 19146                                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, female (%)
## 19147                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, female, adjusted wealth parity index (WPIA)
## 19148                                                                                                                                                                                                     Total net attendance rate, lower secondary, rural, adjusted gender parity index (GPIA)
## 19149                                                                                                                                                                                                                                Total net attendance rate, lower secondary, rural, male (%)
## 19150                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, male, adjusted wealth parity index (WPIA)
## 19151                                                                                                                                                                                                        Total net attendance rate, lower secondary, rural, poorest quintile, both sexes (%)
## 19152                                                                                                                                                                                                            Total net attendance rate, lower secondary, rural, poorest quintile, female (%)
## 19153                                                                                                                                                                                   Total net attendance rate, lower secondary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19154                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, poorest quintile, male (%)
## 19155                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, second quintile, both sexes (%)
## 19156                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, second quintile, female (%)
## 19157                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, second quintile, adjusted gender parity index (GPIA)
## 19158                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, second quintile, male (%)
## 19159                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, middle quintile, both sexes (%)
## 19160                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, middle quintile, female (%)
## 19161                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19162                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, middle quintile, male (%)
## 19163                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, fourth quintile, both sexes (%)
## 19164                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, fourth quintile, female (%)
## 19165                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19166                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, fourth quintile, male (%)
## 19167                                                                                                                                                                                                        Total net attendance rate, lower secondary, rural, richest quintile, both sexes (%)
## 19168                                                                                                                                                                                                            Total net attendance rate, lower secondary, rural, richest quintile, female (%)
## 19169                                                                                                                                                                                   Total net attendance rate, lower secondary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19170                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, richest quintile, male (%)
## 19171                                                                                                                                                                                                     Total net attendance rate, lower secondary, rural, adjusted wealth parity index (WPIA)
## 19172                                                                                                                                                                                                                          Total net attendance rate, lower secondary, urban, both sexes (%)
## 19173                                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, female (%)
## 19174                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, female, adjusted wealth parity index (WPIA)
## 19175                                                                                                                                                                                                     Total net attendance rate, lower secondary, urban, adjusted gender parity index (GPIA)
## 19176                                                                                                                                                                                                                                Total net attendance rate, lower secondary, urban, male (%)
## 19177                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, male, adjusted wealth parity index (WPIA)
## 19178                                                                                                                                                                                                        Total net attendance rate, lower secondary, urban, poorest quintile, both sexes (%)
## 19179                                                                                                                                                                                                            Total net attendance rate, lower secondary, urban, poorest quintile, female (%)
## 19180                                                                                                                                                                                   Total net attendance rate, lower secondary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19181                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, poorest quintile, male (%)
## 19182                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, second quintile, both sexes (%)
## 19183                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, second quintile, female (%)
## 19184                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, second quintile, adjusted gender parity index (GPIA)
## 19185                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, second quintile, male (%)
## 19186                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, middle quintile, both sexes (%)
## 19187                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, middle quintile, female (%)
## 19188                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19189                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, middle quintile, male (%)
## 19190                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, fourth quintile, both sexes (%)
## 19191                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, fourth quintile, female (%)
## 19192                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19193                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, fourth quintile, male (%)
## 19194                                                                                                                                                                                                        Total net attendance rate, lower secondary, urban, richest quintile, both sexes (%)
## 19195                                                                                                                                                                                                            Total net attendance rate, lower secondary, urban, richest quintile, female (%)
## 19196                                                                                                                                                                                   Total net attendance rate, lower secondary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19197                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, richest quintile, male (%)
## 19198                                                                                                                                                                                                     Total net attendance rate, lower secondary, urban, adjusted wealth parity index (WPIA)
## 19199                                                                                                                                                                                                            Total net attendance rate, lower secondary, adjusted wealth parity index (WPIA)
## 19200                                                                                                                                                                                                                                 Total net attendance rate, upper secondary, both sexes (%)
## 19201                                                                                                                                                                                                                                     Total net attendance rate, upper secondary, female (%)
## 19202                                                                                                                                                                                                  Total net attendance rate, upper secondary, female, adjusted location parity index (LPIA)
## 19203                                                                                                                                                                                                    Total net attendance rate, upper secondary, female, adjusted wealth parity index (WPIA)
## 19204                                                                                                                                                                                                            Total net attendance rate, upper secondary, adjusted gender parity index (GPIA)
## 19205                                                                                                                                                                                                          Total net attendance rate, upper secondary, adjusted location parity index (LPIA)
## 19206                                                                                                                                                                                                                                       Total net attendance rate, upper secondary, male (%)
## 19207                                                                                                                                                                                                    Total net attendance rate, upper secondary, male, adjusted location parity index (LPIA)
## 19208                                                                                                                                                                                                      Total net attendance rate, upper secondary, male, adjusted wealth parity index (WPIA)
## 19209                                                                                                                                                                                                               Total net attendance rate, upper secondary, poorest quintile, both sexes (%)
## 19210                                                                                                                                                                                                                   Total net attendance rate, upper secondary, poorest quintile, female (%)
## 19211                                                                                                                                                                                Total net attendance rate, upper secondary, poorest quintile, female, adjusted location parity index (LPIA)
## 19212                                                                                                                                                                                          Total net attendance rate, upper secondary, poorest quintile, adjusted gender parity index (GPIA)
## 19213                                                                                                                                                                                        Total net attendance rate, upper secondary, poorest quintile, adjusted location parity index (LPIA)
## 19214                                                                                                                                                                                                                     Total net attendance rate, upper secondary, poorest quintile, male (%)
## 19215                                                                                                                                                                                  Total net attendance rate, upper secondary, poorest quintile, male, adjusted location parity index (LPIA)
## 19216                                                                                                                                                                                                                Total net attendance rate, upper secondary, second quintile, both sexes (%)
## 19217                                                                                                                                                                                                                    Total net attendance rate, upper secondary, second quintile, female (%)
## 19218                                                                                                                                                                                 Total net attendance rate, upper secondary, second quintile, female, adjusted location parity index (LPIA)
## 19219                                                                                                                                                                                           Total net attendance rate, upper secondary, second quintile, adjusted gender parity index (GPIA)
## 19220                                                                                                                                                                                         Total net attendance rate, upper secondary, second quintile, adjusted location parity index (LPIA)
## 19221                                                                                                                                                                                                                      Total net attendance rate, upper secondary, second quintile, male (%)
## 19222                                                                                                                                                                                   Total net attendance rate, upper secondary, second quintile, male, adjusted location parity index (LPIA)
## 19223                                                                                                                                                                                                                Total net attendance rate, upper secondary, middle quintile, both sexes (%)
## 19224                                                                                                                                                                                                                    Total net attendance rate, upper secondary, middle quintile, female (%)
## 19225                                                                                                                                                                                 Total net attendance rate, upper secondary, middle quintile, female, adjusted location parity index (LPIA)
## 19226                                                                                                                                                                                           Total net attendance rate, upper secondary, middle quintile, adjusted gender parity index (GPIA)
## 19227                                                                                                                                                                                         Total net attendance rate, upper secondary, middle quintile, adjusted location parity index (LPIA)
## 19228                                                                                                                                                                                                                      Total net attendance rate, upper secondary, middle quintile, male (%)
## 19229                                                                                                                                                                                   Total net attendance rate, upper secondary, middle quintile, male, adjusted location parity index (LPIA)
## 19230                                                                                                                                                                                                                Total net attendance rate, upper secondary, fourth quintile, both sexes (%)
## 19231                                                                                                                                                                                                                    Total net attendance rate, upper secondary, fourth quintile, female (%)
## 19232                                                                                                                                                                                 Total net attendance rate, upper secondary, fourth quintile, female, adjusted location parity index (LPIA)
## 19233                                                                                                                                                                                           Total net attendance rate, upper secondary, fourth quintile, adjusted gender parity index (GPIA)
## 19234                                                                                                                                                                                         Total net attendance rate, upper secondary, fourth quintile, adjusted location parity index (LPIA)
## 19235                                                                                                                                                                                                                      Total net attendance rate, upper secondary, fourth quintile, male (%)
## 19236                                                                                                                                                                                   Total net attendance rate, upper secondary, fourth quintile, male, adjusted location parity index (LPIA)
## 19237                                                                                                                                                                                                               Total net attendance rate, upper secondary, richest quintile, both sexes (%)
## 19238                                                                                                                                                                                                                   Total net attendance rate, upper secondary, richest quintile, female (%)
## 19239                                                                                                                                                                                Total net attendance rate, upper secondary, richest quintile, female, adjusted location parity index (LPIA)
## 19240                                                                                                                                                                                          Total net attendance rate, upper secondary, richest quintile, adjusted gender parity index (GPIA)
## 19241                                                                                                                                                                                        Total net attendance rate, upper secondary, richest quintile, adjusted location parity index (LPIA)
## 19242                                                                                                                                                                                                                     Total net attendance rate, upper secondary, richest quintile, male (%)
## 19243                                                                                                                                                                                  Total net attendance rate, upper secondary, richest quintile, male, adjusted location parity index (LPIA)
## 19244                                                                                                                                                                                                                          Total net attendance rate, upper secondary, rural, both sexes (%)
## 19245                                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, female (%)
## 19246                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, female, adjusted wealth parity index (WPIA)
## 19247                                                                                                                                                                                                     Total net attendance rate, upper secondary, rural, adjusted gender parity index (GPIA)
## 19248                                                                                                                                                                                                                                Total net attendance rate, upper secondary, rural, male (%)
## 19249                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, male, adjusted wealth parity index (WPIA)
## 19250                                                                                                                                                                                                        Total net attendance rate, upper secondary, rural, poorest quintile, both sexes (%)
## 19251                                                                                                                                                                                                            Total net attendance rate, upper secondary, rural, poorest quintile, female (%)
## 19252                                                                                                                                                                                   Total net attendance rate, upper secondary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19253                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, poorest quintile, male (%)
## 19254                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, second quintile, both sexes (%)
## 19255                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, second quintile, female (%)
## 19256                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, second quintile, adjusted gender parity index (GPIA)
## 19257                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, second quintile, male (%)
## 19258                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, middle quintile, both sexes (%)
## 19259                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, middle quintile, female (%)
## 19260                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19261                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, middle quintile, male (%)
## 19262                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, fourth quintile, both sexes (%)
## 19263                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, fourth quintile, female (%)
## 19264                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19265                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, fourth quintile, male (%)
## 19266                                                                                                                                                                                                        Total net attendance rate, upper secondary, rural, richest quintile, both sexes (%)
## 19267                                                                                                                                                                                                            Total net attendance rate, upper secondary, rural, richest quintile, female (%)
## 19268                                                                                                                                                                                   Total net attendance rate, upper secondary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19269                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, richest quintile, male (%)
## 19270                                                                                                                                                                                                     Total net attendance rate, upper secondary, rural, adjusted wealth parity index (WPIA)
## 19271                                                                                                                                                                                                                          Total net attendance rate, upper secondary, urban, both sexes (%)
## 19272                                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, female (%)
## 19273                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, female, adjusted wealth parity index (WPIA)
## 19274                                                                                                                                                                                                     Total net attendance rate, upper secondary, urban, adjusted gender parity index (GPIA)
## 19275                                                                                                                                                                                                                                Total net attendance rate, upper secondary, urban, male (%)
## 19276                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, male, adjusted wealth parity index (WPIA)
## 19277                                                                                                                                                                                                        Total net attendance rate, upper secondary, urban, poorest quintile, both sexes (%)
## 19278                                                                                                                                                                                                            Total net attendance rate, upper secondary, urban, poorest quintile, female (%)
## 19279                                                                                                                                                                                   Total net attendance rate, upper secondary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19280                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, poorest quintile, male (%)
## 19281                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, second quintile, both sexes (%)
## 19282                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, second quintile, female (%)
## 19283                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, second quintile, adjusted gender parity index (GPIA)
## 19284                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, second quintile, male (%)
## 19285                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, middle quintile, both sexes (%)
## 19286                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, middle quintile, female (%)
## 19287                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19288                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, middle quintile, male (%)
## 19289                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, fourth quintile, both sexes (%)
## 19290                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, fourth quintile, female (%)
## 19291                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19292                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, fourth quintile, male (%)
## 19293                                                                                                                                                                                                        Total net attendance rate, upper secondary, urban, richest quintile, both sexes (%)
## 19294                                                                                                                                                                                                            Total net attendance rate, upper secondary, urban, richest quintile, female (%)
## 19295                                                                                                                                                                                   Total net attendance rate, upper secondary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19296                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, richest quintile, male (%)
## 19297                                                                                                                                                                                                     Total net attendance rate, upper secondary, urban, adjusted wealth parity index (WPIA)
## 19298                                                                                                                                                                                                            Total net attendance rate, upper secondary, adjusted wealth parity index (WPIA)
## 19299                                                                                                                                                                                                Adjusted net enrolment rate, one year before the official primary entry age, both sexes (%)
## 19300                                                                                                                                                                                                    Adjusted net enrolment rate, one year before the official primary entry age, female (%)
## 19301                                                                                                                                                                           Adjusted net enrolment rate, one year before the official primary entry age, adjusted gender parity index (GPIA)
## 19302                                                                                                                                                                                                      Adjusted net enrolment rate, one year before the official primary entry age, male (%)
## 19303                                                                                                                                                                                                                                          Total net enrolment rate, primary, both sexes (%)
## 19304                                                                                                                                                                                                                                              Total net enrolment rate, primary, female (%)
## 19305                                                                                                                                                                                                                               Total net enrolment rate, primary, gender parity index (GPI)
## 19306                                                                                                                                                                                                                                                Total net enrolment rate, primary, male (%)
## 19307                                                                                                                                                                                                                                  Total net enrolment rate, lower secondary, both sexes (%)
## 19308                                                                                                                                                                                                                                      Total net enrolment rate, lower secondary, female (%)
## 19309                                                                                                                                                                                                                       Total net enrolment rate, lower secondary, gender parity index (GPI)
## 19310                                                                                                                                                                                                                                        Total net enrolment rate, lower secondary, male (%)
## 19311                                                                                                                                                                                                                                  Total net enrolment rate, upper secondary, both sexes (%)
## 19312                                                                                                                                                                                                                                      Total net enrolment rate, upper secondary, female (%)
## 19313                                                                                                                                                                                                                       Total net enrolment rate, upper secondary, gender parity index (GPI)
## 19314                                                                                                                                                                                                                                        Total net enrolment rate, upper secondary, male (%)
## 19315                                                                                                                                                               Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, both sexes (%)
## 19316                                                                                                                                                                   Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, female (%)
## 19317                                                                                                                                          Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)
## 19318                                                                                                                                                                     Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, male (%)
## 19319                                                                                                                                               Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, both sexes (%)
## 19320                                                                                                                                                   Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, female (%)
## 19321                                                                                                                          Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)
## 19322                                                                                                                                                     Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, male (%)
## 19323                                                                                                                                                                                 Volume of official development assistance flows for scholarships by sector and type of study, constant US$
## 19324                                                                                                                                                                                Total outbound internationally mobile tertiary students studying abroad, all countries, both sexes (number)
## 19325                                                                                                                                                                                      Out-of-school children and adolescents of primary and lower secondary school age, both sexes (number)
## 19326                                                                                                                                                                                          Out-of-school children and adolescents of primary and lower secondary school age, female (number)
## 19327                                                                                                                                                                                            Out-of-school children and adolescents of primary and lower secondary school age, male (number)
## 19328                                                                                                                                                                                     Out-of-school children, adolescents and youth of primary and secondary school age, both sexes (number)
## 19329                                                                                                                                                                                         Out-of-school children, adolescents and youth of primary and secondary school age, female (number)
## 19330                                                                                                                                                                                           Out-of-school children, adolescents and youth of primary and secondary school age, male (number)
## 19331                                                                                                                                                                                                               Out-of-school adolescents of lower secondary school age, both sexes (number)
## 19332                                                                                                                                                                                                                   Out-of-school adolescents of lower secondary school age, female (number)
## 19333                                                                                                                                                                                                                     Out-of-school adolescents of lower secondary school age, male (number)
## 19334                                                                                                                                                                                                           Out-of-school adolescents and youth of secondary school age, both sexes (number)
## 19335                                                                                                                                                                                                               Out-of-school adolescents and youth of secondary school age, female (number)
## 19336                                                                                                                                                                                                                 Out-of-school adolescents and youth of secondary school age, male (number)
## 19337                                                                                                                                                                                                                     Out-of-school youth of upper secondary school age, both sexes (number)
## 19338                                                                                                                                                                                                                         Out-of-school youth of upper secondary school age, female (number)
## 19339                                                                                                                                                                                                                           Out-of-school youth of upper secondary school age, male (number)
## 19340                                                                                                                                                                                              Out-of-school children, one year younger than official primary entry age, both sexes (number)
## 19341                                                                                                                                                                                                  Out-of-school children, one year younger than official primary entry age, female (number)
## 19342                                                                                                                                                                                                    Out-of-school children, one year younger than official primary entry age, male (number)
## 19343                                                                                                                                                                                                                                       Outbound mobility ratio, all regions, both sexes (%)
## 19344                                                                                                                                                  Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, both sexes (%)
## 19345                                                                                                                                                      Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, female (%)
## 19346                                                                                                                             Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, adjusted gender parity index (GPIA)
## 19347                                                                                                                                                        Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, male (%)
## 19348                                                                                                                                                                                                         Percentage of students experiencing bullying in the last 12 months, both sexes (%)
## 19349                                                                                                                                                                                                             Percentage of students experiencing bullying in the last 12 months, female (%)
## 19350                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted gender parity index (GPIA)
## 19351                                                                                                                                                                             Percentage of students experiencing bullying in the last 12 months, high socio-economic status, both sexes (%)
## 19352                                                                                                                                                                              Percentage of students experiencing bullying in the last 12 months, low socio-economic status, both sexes (%)
## 19353                                                                                                                                                                                                               Percentage of students experiencing bullying in the last 12 months, male (%)
## 19354                                                                                                                                                                               Percentage of students experiencing bullying in the last 12 months, non-immigrant background, both sexes (%)
## 19355                                                                                                                                                                                   Percentage of students experiencing bullying in the last 12 months, immigrant background, both sexes (%)
## 19356                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted native parity index (NPIA)
## 19357                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted wealth parity index (WPIA)
## 19358                                                                                                                                                                                                        Participants in literacy programmes as a % of the illiterate population, both sexes
## 19359                                                                                                                                                                                                            Participants in literacy programmes as a % of the illiterate population, female
## 19360                                                                                                                                                                                                              Participants in literacy programmes as a % of the illiterate population, male
## 19361                                                                                                                                                                      Percentage of children under 5 years experiencing positive and stimulating home learning environments, both sexes (%)
## 19362                                                                                                                                                                          Percentage of children under 5 years experiencing positive and stimulating home learning environments, female (%)
## 19363                                                                                                                                                 Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted gender parity index (GPIA)
## 19364                                                                                                                                               Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted location parity index (LPIA)
## 19365                                                                                                                                                                            Percentage of children under 5 years experiencing positive and stimulating home learning environments, male (%)
## 19366                                                                                                                                                                           Percentage of children under 5 years experiencing positive and stimulating home learning environments, rural (%)
## 19367                                                                                                                                                                           Percentage of children under 5 years experiencing positive and stimulating home learning environments, urban (%)
## 19368                                                                                                                                                 Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted wealth parity index (WPIA)
## 19369                                                                                                                                                                Percentage of children under 5 years experiencing positive and stimulating home learning environments, poorest quintile (%)
## 19370                                                                                                                                                                Percentage of children under 5 years experiencing positive and stimulating home learning environments, richest quintile (%)
## 19371                                                                                                                                                                                                Percentage of enrolment in early childhood education programmes in private institutions (%)
## 19372                                                                                                                                                                                  Percentage of enrolment in early childhood educational development programmes in private institutions (%)
## 19373                                                                                                                                                                                                           Percentage of enrolment in lower secondary education in private institutions (%)
## 19374                                                                                                                                                                                                           Percentage of enrolment in upper secondary education in private institutions (%)
## 19375                                                                                                                                                                                               Percentage of enrolment in post-secondary non-tertiary education in private institutions (%)
## 19376                                                                                                                                                           Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, both sexes (%)
## 19377                                                                                                                                                               Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, female (%)
## 19378                                                                                                                                      Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, adjusted gender parity index (GPIA)
## 19379                                                                                                                                                                 Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, male (%)
## 19380                                                                                                                                                                                                                   Pupil-qualified teacher ratio in pre-primary education (headcount basis)
## 19381                                                                                                                                                                                                                     Pupil-trained teacher ratio in pre-primary education (headcount basis)
## 19382                                                                                                                                                                                                                       Pupil-qualified teacher ratio in primary education (headcount basis)
## 19383                                                                                                                                                                                                                         Pupil-trained teacher ratio in primary education (headcount basis)
## 19384                                                                                                                                                                                                                         Pupil-qualified teacher ratio in lower secondary (headcount basis)
## 19385                                                                                                                                                                                                                 Pupil-trained teacher ratio in lower secondary education (headcount basis)
## 19386                                                                                                                                                                                                                               Pupil-qualified teacher ratio in secondary (headcount basis)
## 19387                                                                                                                                                                                                                       Pupil-trained teacher ratio in secondary education (headcount basis)
## 19388                                                                                                                                                                                                                         Pupil-qualified teacher ratio in upper secondary (headcount basis)
## 19389                                                                                                                                                                                                                 Pupil-trained teacher ratio in upper secondary education (headcount basis)
## 19390                                                                                                                                                                                                                  Percentage of qualified teachers in pre-primary education, both sexes (%)
## 19391                                                                                                                                                                                                                      Percentage of qualified teachers in pre-primary education, female (%)
## 19392                                                                                                                                                                                             Percentage of qualified teachers in pre-primary education, adjusted gender parity index (GPIA)
## 19393                                                                                                                                                                                                                        Percentage of qualified teachers in pre-primary education, male (%)
## 19394                                                                                                                                                                                                                      Percentage of qualified teachers in primary education, both sexes (%)
## 19395                                                                                                                                                                                                                          Percentage of qualified teachers in primary education, female (%)
## 19396                                                                                                                                                                                                 Percentage of qualified teachers in primary education, adjusted gender parity index (GPIA)
## 19397                                                                                                                                                                                                                            Percentage of qualified teachers in primary education, male (%)
## 19398                                                                                                                                                                                                              Percentage of qualified teachers in lower secondary education, both sexes (%)
## 19399                                                                                                                                                                                                                  Percentage of qualified teachers in lower secondary education, female (%)
## 19400                                                                                                                                                                                         Percentage of qualified teachers in lower secondary education, adjusted gender parity index (GPIA)
## 19401                                                                                                                                                                                                                    Percentage of qualified teachers in lower secondary education, male (%)
## 19402                                                                                                                                                                                                                    Percentage of qualified teachers in secondary education, both sexes (%)
## 19403                                                                                                                                                                                                                        Percentage of qualified teachers in secondary education, female (%)
## 19404                                                                                                                                                                                               Percentage of qualified teachers in secondary education, adjusted gender parity index (GPIA)
## 19405                                                                                                                                                                                                                          Percentage of qualified teachers in secondary education, male (%)
## 19406                                                                                                                                                                                                              Percentage of qualified teachers in upper secondary education, both sexes (%)
## 19407                                                                                                                                                                                                                  Percentage of qualified teachers in upper secondary education, female (%)
## 19408                                                                                                                                                                                         Percentage of qualified teachers in upper secondary education, adjusted gender parity index (GPIA)
## 19409                                                                                                                                                                                                                    Percentage of qualified teachers in upper secondary education, male (%)
## 19410                                                                                                                                                                                                                            Repeaters in primary education, all grades, both sexes (number)
## 19411                                                                                                                                                                                                                                Repeaters in primary education, all grades, female (number)
## 19412                                                                                                                                                                                                                             Repeaters in Grade 1 of primary education, both sexes (number)
## 19413                                                                                                                                                                                                                                 Repeaters in Grade 1 of primary education, female (number)
## 19414                                                                                                                                                                                                                                   Repeaters in Grade 1 of primary education, male (number)
## 19415                                                                                                                                                                                                                             Repeaters in Grade 2 of primary education, both sexes (number)
## 19416                                                                                                                                                                                                                                 Repeaters in Grade 2 of primary education, female (number)
## 19417                                                                                                                                                                                                                                   Repeaters in Grade 2 of primary education, male (number)
## 19418                                                                                                                                                                                                                             Repeaters in Grade 3 of primary education, both sexes (number)
## 19419                                                                                                                                                                                                                                 Repeaters in Grade 3 of primary education, female (number)
## 19420                                                                                                                                                                                                                                   Repeaters in Grade 3 of primary education, male (number)
## 19421                                                                                                                                                                                                                             Repeaters in Grade 4 of primary education, both sexes (number)
## 19422                                                                                                                                                                                                                                 Repeaters in Grade 4 of primary education, female (number)
## 19423                                                                                                                                                                                                                                   Repeaters in Grade 4 of primary education, male (number)
## 19424                                                                                                                                                                                                                             Repeaters in Grade 5 of primary education, both sexes (number)
## 19425                                                                                                                                                                                                                                 Repeaters in Grade 5 of primary education, female (number)
## 19426                                                                                                                                                                                                                                   Repeaters in Grade 5 of primary education, male (number)
## 19427                                                                                                                                                                                                                             Repeaters in Grade 6 of primary education, both sexes (number)
## 19428                                                                                                                                                                                                                                 Repeaters in Grade 6 of primary education, female (number)
## 19429                                                                                                                                                                                                                                   Repeaters in Grade 6 of primary education, male (number)
## 19430                                                                                                                                                                                                                             Repeaters in Grade 7 of primary education, both sexes (number)
## 19431                                                                                                                                                                                                                                 Repeaters in Grade 7 of primary education, female (number)
## 19432                                                                                                                                                                                                                                   Repeaters in Grade 7 of primary education, male (number)
## 19433                                                                                                                                                                                                                       Repeaters in grade unknown of primary education, both sexes (number)
## 19434                                                                                                                                                                                                                           Repeaters in grade unknown of primary education, female (number)
## 19435                                                                                                                                                                                                                             Repeaters in grade unknown of primary education, male (number)
## 19436                                                                                                                                                                                                                                  Repeaters in primary education, all grades, male (number)
## 19437                                                                                                                                                                                                            Repeaters in lower secondary general education, all grades, both sexes (number)
## 19438                                                                                                                                                                                                                Repeaters in lower secondary general education, all grades, female (number)
## 19439                                                                                                                                                                                                             Repeaters in Grade 1 of lower secondary general education, both sexes (number)
## 19440                                                                                                                                                                                                                 Repeaters in Grade 1 of lower secondary general education, female (number)
## 19441                                                                                                                                                                                                                   Repeaters in Grade 1 of lower secondary general education, male (number)
## 19442                                                                                                                                                                                                             Repeaters in Grade 2 of lower secondary general education, both sexes (number)
## 19443                                                                                                                                                                                                                 Repeaters in Grade 2 of lower secondary general education, female (number)
## 19444                                                                                                                                                                                                                   Repeaters in Grade 2 of lower secondary general education, male (number)
## 19445                                                                                                                                                                                                             Repeaters in Grade 3 of lower secondary general education, both sexes (number)
## 19446                                                                                                                                                                                                                 Repeaters in Grade 3 of lower secondary general education, female (number)
## 19447                                                                                                                                                                                                                   Repeaters in Grade 3 of lower secondary general education, male (number)
## 19448                                                                                                                                                                                                             Repeaters in Grade 4 of lower secondary general education, both sexes (number)
## 19449                                                                                                                                                                                                                 Repeaters in Grade 4 of lower secondary general education, female (number)
## 19450                                                                                                                                                                                                                   Repeaters in Grade 4 of lower secondary general education, male (number)
## 19451                                                                                                                                                                                                             Repeaters in Grade 5 of lower secondary general education, both sexes (number)
## 19452                                                                                                                                                                                                                 Repeaters in Grade 5 of lower secondary general education, female (number)
## 19453                                                                                                                                                                                                                   Repeaters in Grade 5 of lower secondary general education, male (number)
## 19454                                                                                                                                                                                                             Repeaters in Grade 6 of lower secondary general education, both sexes (number)
## 19455                                                                                                                                                                                                                 Repeaters in Grade 6 of lower secondary general education, female (number)
## 19456                                                                                                                                                                                                                   Repeaters in Grade 6 of lower secondary general education, male (number)
## 19457                                                                                                                                                                                                       Repeaters in grade unknown of lower secondary general education, both sexes (number)
## 19458                                                                                                                                                                                                           Repeaters in grade unknown of lower secondary general education, female (number)
## 19459                                                                                                                                                                                                             Repeaters in grade unknown of lower secondary general education, male (number)
## 19460                                                                                                                                                                                                                  Repeaters in lower secondary general education, all grades, male (number)
## 19461                                                                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, both sexes (%)
## 19462                                                                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, female (%)
## 19463                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19464                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19465                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19466                                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19467                                                                                                                                                    Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19468                                                                                                                                Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19469                                                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, male (%)
## 19470                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19471                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19472                                                                                                                                                     Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19473                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19474                                                                                                                                                              Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19475                                                                                                                                                              Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19476                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19477                                                                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, both sexes (%)
## 19478                                                                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, female (%)
## 19479                                                                                                                                        Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19480                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19481                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19482                                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19483                                                                                                                            Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19484                                                                                                        Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19485                                                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, male (%)
## 19486                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19487                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19488                                                                                                                             Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19489                                                                                                                              Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19490                                                                                                                                      Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19491                                                                                                                                      Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19492                                                                                                                              Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19493                                                                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, both sexes (%)
## 19494                                                                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, female (%)
## 19495                                                                                                                                                Proportion of students at the end of primary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19496                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19497                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19498                                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19499                                                                                                                                    Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19500                                                                                                                Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19501                                                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, male (%)
## 19502                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19503                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19504                                                                                                                                     Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19505                                                                                                                                      Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19506                                                                                                                                              Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19507                                                                                                                                              Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19508                                                                                                                                      Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19509                                                                                                                                                                                                                          Repetition rate in primary education (all grades), both sexes (%)
## 19510                                                                                                                                                                                                                              Repetition rate in primary education (all grades), female (%)
## 19511                                                                                                                                                                                                                            Repetition rate in Grade 1 of primary education, both sexes (%)
## 19512                                                                                                                                                                                                                                Repetition rate in Grade 1 of primary education, female (%)
## 19513                                                                                                                                                                                                                                  Repetition rate in Grade 1 of primary education, male (%)
## 19514                                                                                                                                                                                                                            Repetition rate in Grade 2 of primary education, both sexes (%)
## 19515                                                                                                                                                                                                                                Repetition rate in Grade 2 of primary education, female (%)
## 19516                                                                                                                                                                                                                                  Repetition rate in Grade 2 of primary education, male (%)
## 19517                                                                                                                                                                                                                            Repetition rate in Grade 3 of primary education, both sexes (%)
## 19518                                                                                                                                                                                                                                Repetition rate in Grade 3 of primary education, female (%)
## 19519                                                                                                                                                                                                                                  Repetition rate in Grade 3 of primary education, male (%)
## 19520                                                                                                                                                                                                                            Repetition rate in Grade 4 of primary education, both sexes (%)
## 19521                                                                                                                                                                                                                                Repetition rate in Grade 4 of primary education, female (%)
## 19522                                                                                                                                                                                                                                  Repetition rate in Grade 4 of primary education, male (%)
## 19523                                                                                                                                                                                                                            Repetition rate in Grade 5 of primary education, both sexes (%)
## 19524                                                                                                                                                                                                                                Repetition rate in Grade 5 of primary education, female (%)
## 19525                                                                                                                                                                                                                                  Repetition rate in Grade 5 of primary education, male (%)
## 19526                                                                                                                                                                                                                            Repetition rate in Grade 6 of primary education, both sexes (%)
## 19527                                                                                                                                                                                                                                Repetition rate in Grade 6 of primary education, female (%)
## 19528                                                                                                                                                                                                                                  Repetition rate in Grade 6 of primary education, male (%)
## 19529                                                                                                                                                                                                                            Repetition rate in Grade 7 of primary education, both sexes (%)
## 19530                                                                                                                                                                                                                                Repetition rate in Grade 7 of primary education, female (%)
## 19531                                                                                                                                                                                                                                  Repetition rate in Grade 7 of primary education, male (%)
## 19532                                                                                                                                                                                                                                Repetition rate in primary education (all grades), male (%)
## 19533                                                                                                                                                                                                          Repetition rate in lower secondary general education (all grades), both sexes (%)
## 19534                                                                                                                                                                                                              Repetition rate in lower secondary general education (all grades), female (%)
## 19535                                                                                                                                                                                                            Repetition rate in Grade 1 of lower secondary general education, both sexes (%)
## 19536                                                                                                                                                                                                                Repetition rate in Grade 1 of lower secondary general education, female (%)
## 19537                                                                                                                                                                                                                  Repetition rate in Grade 1 of lower secondary general education, male (%)
## 19538                                                                                                                                                                                                            Repetition rate in Grade 2 of lower secondary general education, both sexes (%)
## 19539                                                                                                                                                                                                                Repetition rate in Grade 2 of lower secondary general education, female (%)
## 19540                                                                                                                                                                                                                  Repetition rate in Grade 2 of lower secondary general education, male (%)
## 19541                                                                                                                                                                                                            Repetition rate in Grade 3 of lower secondary general education, both sexes (%)
## 19542                                                                                                                                                                                                                Repetition rate in Grade 3 of lower secondary general education, female (%)
## 19543                                                                                                                                                                                                                  Repetition rate in Grade 3 of lower secondary general education, male (%)
## 19544                                                                                                                                                                                                            Repetition rate in Grade 4 of lower secondary general education, both sexes (%)
## 19545                                                                                                                                                                                                                Repetition rate in Grade 4 of lower secondary general education, female (%)
## 19546                                                                                                                                                                                                                  Repetition rate in Grade 4 of lower secondary general education, male (%)
## 19547                                                                                                                                                                                                            Repetition rate in Grade 5 of lower secondary general education, both sexes (%)
## 19548                                                                                                                                                                                                                Repetition rate in Grade 5 of lower secondary general education, female (%)
## 19549                                                                                                                                                                                                                  Repetition rate in Grade 5 of lower secondary general education, male (%)
## 19550                                                                                                                                                                                                                Repetition rate in lower secondary general education (all grades), male (%)
## 19551                                                                                                                                                                                                                      Out-of-school rate for children of primary school age, both sexes (%)
## 19552                                                                                                                                                                                                                          Out-of-school rate for children of primary school age, female (%)
## 19553                                                                                                                                                                                                 Out-of-school rate for children of primary school age, adjusted gender parity index (GPIA)
## 19554                                                                                                                                                                                                                            Out-of-school rate for children of primary school age, male (%)
## 19555                                                                                                                                                                                  Out-of-school rate for children and adolescents of primary and lower secondary school age, both sexes (%)
## 19556                                                                                                                                                                                      Out-of-school rate for children and adolescents of primary and lower secondary school age, female (%)
## 19557                                                                                                                                                             Out-of-school rate for children and adolescents of primary and lower secondary school age, adjusted gender parity index (GPIA)
## 19558                                                                                                                                                                                        Out-of-school rate for children and adolescents of primary and lower secondary school age, male (%)
## 19559                                                                                                                                                          Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, both sexes (%)
## 19560                                                                                                                                                              Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, female (%)
## 19561                                                                                                                                     Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, adjusted gender parity index (GPIA)
## 19562                                                                                                                                                                Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, male (%)
## 19563                                                                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, both sexes (%)
## 19564                                                                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, female (%)
## 19565                                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (GPIA)
## 19566                                                                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, male (%)
## 19567                                                                                                                                                                                       Out-of-school rate for adolescents and youth of lower and upper secondary school age, both sexes (%)
## 19568                                                                                                                                                                                           Out-of-school rate for adolescents and youth of lower and upper secondary school age, female (%)
## 19569                                                                                                                                                                  Out-of-school rate for adolescents and youth of lower and upper secondary school age, adjusted gender parity index (GPIA)
## 19570                                                                                                                                                                                             Out-of-school rate for adolescents and youth of lower and upper secondary school age, male (%)
## 19571                                                                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, both sexes (%)
## 19572                                                                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, female (%)
## 19573                                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (GPIA)
## 19574                                                                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, male (%)
## 19575                                                                                                                                                                                        Out-of-school rate for children one year younger than official primary entrance age, both sexes (%)
## 19576                                                                                                                                                                                            Out-of-school rate for children one year younger than official primary entrance age, female (%)
## 19577                                                                                                                                                                                    Out-of-school rate for children one year younger than official age, adjusted gender parity index (GPIA)
## 19578                                                                                                                                                                                              Out-of-school rate for children one year younger than official primary entrance age, male (%)
## 19579                                                                                                                                                                                              Out-of-school rate for children of primary school age, both sexes (household survey data) (%)
## 19580                                                                                                                                                                                                  Out-of-school rate for children of primary school age, female (household survey data) (%)
## 19581                                                                                                                                                               Out-of-school rate for children of primary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19582                                                                                                                                                                 Out-of-school rate for children of primary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19583                                                                                                                                                                         Out-of-school rate for children of primary school age, adjusted gender parity index (household survey data) (GPIA)
## 19584                                                                                                                                                                       Out-of-school rate for children of primary school age, adjusted location parity index (household survey data) (LPIA)
## 19585                                                                                                                                                                                                    Out-of-school rate for children of primary school age, male (household survey data) (%)
## 19586                                                                                                                                                                 Out-of-school rate for children of primary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19587                                                                                                                                                                   Out-of-school rate for children of primary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19588                                                                                                                                                                            Out-of-school rate for children of primary school age, poorest quintile, both sexes (household survey data) (%)
## 19589                                                                                                                                                                                Out-of-school rate for children of primary school age, poorest quintile, female (household survey data) (%)
## 19590                                                                                                                                             Out-of-school rate for children of primary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19591                                                                                                                                                       Out-of-school rate for children of primary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19592                                                                                                                                                     Out-of-school rate for children of primary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19593                                                                                                                                                                                  Out-of-school rate for children of primary school age, poorest quintile, male (household survey data) (%)
## 19594                                                                                                                                               Out-of-school rate for children of primary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19595                                                                                                                                                                             Out-of-school rate for children of primary school age, second quintile, both sexes (household survey data) (%)
## 19596                                                                                                                                                                                 Out-of-school rate for children of primary school age, second quintile, female (household survey data) (%)
## 19597                                                                                                                                              Out-of-school rate for children of primary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19598                                                                                                                                                        Out-of-school rate for children of primary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19599                                                                                                                                                      Out-of-school rate for children of primary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19600                                                                                                                                                                                   Out-of-school rate for children of primary school age, second quintile, male (household survey data) (%)
## 19601                                                                                                                                                Out-of-school rate for children of primary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19602                                                                                                                                                                             Out-of-school rate for children of primary school age, middle quintile, both sexes (household survey data) (%)
## 19603                                                                                                                                                                                 Out-of-school rate for children of primary school age, middle quintile, female (household survey data) (%)
## 19604                                                                                                                                              Out-of-school rate for children of primary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19605                                                                                                                                                        Out-of-school rate for children of primary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19606                                                                                                                                                      Out-of-school rate for children of primary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19607                                                                                                                                                                                   Out-of-school rate for children of primary school age, middle quintile, male (household survey data) (%)
## 19608                                                                                                                                                Out-of-school rate for children of primary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19609                                                                                                                                                                             Out-of-school rate for children of primary school age, fourth quintile, both sexes (household survey data) (%)
## 19610                                                                                                                                                                                 Out-of-school rate for children of primary school age, fourth quintile, female (household survey data) (%)
## 19611                                                                                                                                              Out-of-school rate for children of primary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19612                                                                                                                                                        Out-of-school rate for children of primary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19613                                                                                                                                                      Out-of-school rate for children of primary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19614                                                                                                                                                                                   Out-of-school rate for children of primary school age, fourth quintile, male (household survey data) (%)
## 19615                                                                                                                                                Out-of-school rate for children of primary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19616                                                                                                                                                                            Out-of-school rate for children of primary school age, richest quintile, both sexes (household survey data) (%)
## 19617                                                                                                                                                                                Out-of-school rate for children of primary school age, richest quintile, female (household survey data) (%)
## 19618                                                                                                                                             Out-of-school rate for children of primary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19619                                                                                                                                                       Out-of-school rate for children of primary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19620                                                                                                                                                     Out-of-school rate for children of primary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19621                                                                                                                                                                                  Out-of-school rate for children of primary school age, richest quintile, male (household survey data) (%)
## 19622                                                                                                                                               Out-of-school rate for children of primary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19623                                                                                                                                                                                       Out-of-school rate for children of primary school age, rural, both sexes (household survey data) (%)
## 19624                                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, female (household survey data) (%)
## 19625                                                                                                                                                          Out-of-school rate for children of primary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19626                                                                                                                                                                  Out-of-school rate for children of primary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19627                                                                                                                                                                                             Out-of-school rate for children of primary school age, rural, male (household survey data) (%)
## 19628                                                                                                                                                            Out-of-school rate for children of primary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19629                                                                                                                                                                     Out-of-school rate for children of primary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19630                                                                                                                                                                         Out-of-school rate for children of primary school age, rural, poorest quintile, female (household survey data) (%)
## 19631                                                                                                                             Out-of-school rate for children of primary school age, primary education, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19632                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, poorest quintile, male (household survey data) (%)
## 19633                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, second quintile, both sexes (household survey data) (%)
## 19634                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, second quintile, female (household survey data) (%)
## 19635                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19636                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, second quintile, male (household survey data) (%)
## 19637                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19638                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, middle quintile, female (household survey data) (%)
## 19639                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19640                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, middle quintile, male (household survey data) (%)
## 19641                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19642                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, fourth quintile, female (household survey data) (%)
## 19643                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19644                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, fourth quintile, male (household survey data) (%)
## 19645                                                                                                                                                                     Out-of-school rate for children of primary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19646                                                                                                                                                                         Out-of-school rate for children of primary school age, rural, richest quintile, female (household survey data) (%)
## 19647                                                                                                                             Out-of-school rate for children of primary school age, primary education, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19648                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, richest quintile, male (household survey data) (%)
## 19649                                                                                                                                                                  Out-of-school rate for children of primary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19650                                                                                                                                                                                       Out-of-school rate for children of primary school age, urban, both sexes (household survey data) (%)
## 19651                                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, female (household survey data) (%)
## 19652                                                                                                                                                          Out-of-school rate for children of primary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19653                                                                                                                                                                  Out-of-school rate for children of primary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19654                                                                                                                                                                                             Out-of-school rate for children of primary school age, urban, male (household survey data) (%)
## 19655                                                                                                                                                            Out-of-school rate for children of primary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19656                                                                                                                                                                     Out-of-school rate for children of primary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19657                                                                                                                                                                         Out-of-school rate for children of primary school age, urban, poorest quintile, female (household survey data) (%)
## 19658                                                                                                                             Out-of-school rate for children of primary school age, primary education, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19659                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, poorest quintile, male (household survey data) (%)
## 19660                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, second quintile, both sexes (household survey data) (%)
## 19661                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, second quintile, female (household survey data) (%)
## 19662                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19663                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, second quintile, male (household survey data) (%)
## 19664                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19665                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, middle quintile, female (household survey data) (%)
## 19666                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19667                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, middle quintile, male (household survey data) (%)
## 19668                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19669                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, fourth quintile, female (household survey data) (%)
## 19670                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19671                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, fourth quintile, male (household survey data) (%)
## 19672                                                                                                                                                                     Out-of-school rate for children of primary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19673                                                                                                                                                                         Out-of-school rate for children of primary school age, urban, richest quintile, female (household survey data) (%)
## 19674                                                                                                                             Out-of-school rate for children of primary school age, primary education, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19675                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, richest quintile, male (household survey data) (%)
## 19676                                                                                                                                                                  Out-of-school rate for children of primary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19677                                                                                                                                                                         Out-of-school rate for children of primary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19678                                                                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, both sexes (household survey data) (%)
## 19679                                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, female (household survey data) (%)
## 19680                                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19681                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19682                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (household survey data) (GPIA)
## 19683                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, adjusted location parity index (household survey data) (LPIA)
## 19684                                                                                                                                                                                         Out-of-school rate for adolescents of lower secondary school age, male (household survey data) (%)
## 19685                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19686                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19687                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, poorest quintile, both sexes (household survey data) (%)
## 19688                                                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female (household survey data) (%)
## 19689                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19690                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19691                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19692                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male (household survey data) (%)
## 19693                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19694                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, second quintile, both sexes (household survey data) (%)
## 19695                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, second quintile, female (household survey data) (%)
## 19696                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19697                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19698                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19699                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, second quintile, male (household survey data) (%)
## 19700                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19701                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, middle quintile, both sexes (household survey data) (%)
## 19702                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, middle quintile, female (household survey data) (%)
## 19703                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19704                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19705                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19706                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, middle quintile, male (household survey data) (%)
## 19707                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19708                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, fourth quintile, both sexes (household survey data) (%)
## 19709                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female (household survey data) (%)
## 19710                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19711                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19712                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19713                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male (household survey data) (%)
## 19714                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19715                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, richest quintile, both sexes (household survey data) (%)
## 19716                                                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, richest quintile, female (household survey data) (%)
## 19717                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19718                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19719                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19720                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, richest quintile, male (household survey data) (%)
## 19721                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19722                                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, rural, both sexes (household survey data) (%)
## 19723                                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, female (household survey data) (%)
## 19724                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19725                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19726                                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, rural, male (household survey data) (%)
## 19727                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19728                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19729                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, female (household survey data) (%)
## 19730                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19731                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, male (household survey data) (%)
## 19732                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, both sexes (household survey data) (%)
## 19733                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, female (household survey data) (%)
## 19734                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19735                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, male (household survey data) (%)
## 19736                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19737                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, female (household survey data) (%)
## 19738                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19739                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, male (household survey data) (%)
## 19740                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19741                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, female (household survey data) (%)
## 19742                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19743                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, male (household survey data) (%)
## 19744                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19745                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, female (household survey data) (%)
## 19746                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19747                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, male (household survey data) (%)
## 19748                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19749                                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, urban, both sexes (household survey data) (%)
## 19750                                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, female (household survey data) (%)
## 19751                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19752                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19753                                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, urban, male (household survey data) (%)
## 19754                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19755                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19756                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, female (household survey data) (%)
## 19757                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19758                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, male (household survey data) (%)
## 19759                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, both sexes (household survey data) (%)
## 19760                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, female (household survey data) (%)
## 19761                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19762                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, male (household survey data) (%)
## 19763                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19764                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, female (household survey data) (%)
## 19765                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19766                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, male (household survey data) (%)
## 19767                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19768                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, female (household survey data) (%)
## 19769                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19770                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, male (household survey data) (%)
## 19771                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19772                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, female (household survey data) (%)
## 19773                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19774                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, male (household survey data) (%)
## 19775                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19776                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19777                                                                                                                                                                                         Out-of-school rate for youth of upper secondary school age, both sexes (household survey data) (%)
## 19778                                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, female (household survey data) (%)
## 19779                                                                                                                                                          Out-of-school rate for youth of upper secondary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19780                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19781                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (household survey data) (GPIA)
## 19782                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, adjusted location parity index (household survey data) (LPIA)
## 19783                                                                                                                                                                                               Out-of-school rate for youth of upper secondary school age, male (household survey data) (%)
## 19784                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19785                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19786                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, poorest quintile, both sexes (household survey data) (%)
## 19787                                                                                                                                                                           Out-of-school rate for youth of upper secondary school age, poorest quintile, female (household survey data) (%)
## 19788                                                                                                                                        Out-of-school rate for youth of upper secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19789                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19790                                                                                                                                                Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19791                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, poorest quintile, male (household survey data) (%)
## 19792                                                                                                                                          Out-of-school rate for youth of upper secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19793                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, second quintile, both sexes (household survey data) (%)
## 19794                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, second quintile, female (household survey data) (%)
## 19795                                                                                                                                         Out-of-school rate for youth of upper secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19796                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19797                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19798                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, second quintile, male (household survey data) (%)
## 19799                                                                                                                                           Out-of-school rate for youth of upper secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19800                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, middle quintile, both sexes (household survey data) (%)
## 19801                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, middle quintile, female (household survey data) (%)
## 19802                                                                                                                                         Out-of-school rate for youth of upper secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19803                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19804                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19805                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, middle quintile, male (household survey data) (%)
## 19806                                                                                                                                           Out-of-school rate for youth of upper secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19807                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, fourth quintile, both sexes (household survey data) (%)
## 19808                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, fourth quintile, female (household survey data) (%)
## 19809                                                                                                                                         Out-of-school rate for youth of upper secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19810                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19811                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19812                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, fourth quintile, male (household survey data) (%)
## 19813                                                                                                                                           Out-of-school rate for youth of upper secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19814                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, richest quintile, both sexes (household survey data) (%)
## 19815                                                                                                                                                                           Out-of-school rate for youth of upper secondary school age, richest quintile, female (household survey data) (%)
## 19816                                                                                                                                        Out-of-school rate for youth of upper secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19817                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19818                                                                                                                                                Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19819                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, richest quintile, male (household survey data) (%)
## 19820                                                                                                                                          Out-of-school rate for youth of upper secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19821                                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, rural, both sexes (household survey data) (%)
## 19822                                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, female (household survey data) (%)
## 19823                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19824                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19825                                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, rural, male (household survey data) (%)
## 19826                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19827                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19828                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, female (household survey data) (%)
## 19829                                                                                                                                           Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19830                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, male (household survey data) (%)
## 19831                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, second quintile, both sexes (household survey data) (%)
## 19832                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, second quintile, female (household survey data) (%)
## 19833                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19834                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, second quintile, male (household survey data) (%)
## 19835                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19836                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, middle quintile, female (household survey data) (%)
## 19837                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19838                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, middle quintile, male (household survey data) (%)
## 19839                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19840                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, female (household survey data) (%)
## 19841                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19842                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, male (household survey data) (%)
## 19843                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19844                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, rural, richest quintile, female (household survey data) (%)
## 19845                                                                                                                                           Out-of-school rate for youth of upper secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19846                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, richest quintile, male (household survey data) (%)
## 19847                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19848                                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, urban, both sexes (household survey data) (%)
## 19849                                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, female (household survey data) (%)
## 19850                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19851                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19852                                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, urban, male (household survey data) (%)
## 19853                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19854                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19855                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, female (household survey data) (%)
## 19856                                                                                                                                           Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19857                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, male (household survey data) (%)
## 19858                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, second quintile, both sexes (household survey data) (%)
## 19859                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, second quintile, female (household survey data) (%)
## 19860                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19861                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, second quintile, male (household survey data) (%)
## 19862                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19863                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, middle quintile, female (household survey data) (%)
## 19864                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19865                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, middle quintile, male (household survey data) (%)
## 19866                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19867                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, female (household survey data) (%)
## 19868                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19869                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, male (household survey data) (%)
## 19870                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19871                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, urban, richest quintile, female (household survey data) (%)
## 19872                                                                                                                                           Out-of-school rate for youth of upper secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19873                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, richest quintile, male (household survey data) (%)
## 19874                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19875                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19876                                                                                                                                                                                                                      School age population, early childhood education, both sexes (number)
## 19877                                                                                                                                                                                                                          School age population, early childhood education, female (number)
## 19878                                                                                                                                                                                                                            School age population, early childhood education, male (number)
## 19879                                                                                                                                                                                             School age population, early childhood educational development programmes, both sexes (number)
## 19880                                                                                                                                                                                                 School age population, early childhood educational development programmes, female (number)
## 19881                                                                                                                                                                                                   School age population, early childhood educational development programmes, male (number)
## 19882                                                                                                                                                                                                School age population, one year before than official primary entry age, both sexes (number)
## 19883                                                                                                                                                                                                    School age population, one year before than official primary entry age, female (number)
## 19884                                                                                                                                                                                                      School age population, one year before than official primary entry age, male (number)
## 19885                                                                                                                                                                                                          Population of the official entrance age to primary education, both sexes (number)
## 19886                                                                                                                                                                                                              Population of the official entrance age to primary education, female (number)
## 19887                                                                                                                                                                                                                Population of the official entrance age to primary education, male (number)
## 19888                                                                                                                                                                                                Population of the official entrance age to secondary general education, both sexes (number)
## 19889                                                                                                                                                                                                    Population of the official entrance age to secondary general education, female (number)
## 19890                                                                                                                                                                                                      Population of the official entrance age to secondary general education, male (number)
## 19891                                                                                                                                                                                                          School age population, post-secondary non-tertiary education, both sexes (number)
## 19892                                                                                                                                                                                                              School age population, post-secondary non-tertiary education, female (number)
## 19893                                                                                                                                                                                                                School age population, post-secondary non-tertiary education, male (number)
## 19894                                                                                                                                                                                                                                   Population of compulsory school age, both sexes (number)
## 19895                                                                                                                                                                                                                                       Population of compulsory school age, female (number)
## 19896                                                                                                                                                                                                                                         Population of compulsory school age, male (number)
## 19897                                                                                                                                                                                                        Proportion of primary schools with access to computers for pedagogical purposes (%)
## 19898                                                                                                                                                                                                                               Proportion of primary schools with access to electricity (%)
## 19899                                                                                                                                                                                                      Percentage of primary schools providing life skills-based HIV and sexuality education
## 19900                                                                                                                                                                       Proportion of primary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19901                                                                                                                                                                                                         Proportion of primary schools with access to Internet for pedagogical purposes (%)
## 19902                                                                                                                                                                                                              Proportion of primary schools with single-sex basic sanitation facilities (%)
## 19903                                                                                                                                                                                                                        Proportion of primary schools with basic handwashing facilities (%)
## 19904                                                                                                                                                                                                                      Proportion of primary schools with access to basic drinking water (%)
## 19905                                                                                                                                                                                                Proportion of lower secondary schools with access to computers for pedagogical purposes (%)
## 19906                                                                                                                                                                                                                       Proportion of lower secondary schools with access to electricity (%)
## 19907                                                                                                                                                                                              Percentage of lower secondary schools providing life skills-based HIV and sexuality education
## 19908                                                                                                                                                               Proportion of lower secondary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19909                                                                                                                                                                                                 Proportion of lower secondary schools with access to Internet for pedagogical purposes (%)
## 19910                                                                                                                                                                                                      Proportion of lower secondary schools with single-sex basic sanitation facilities (%)
## 19911                                                                                                                                                                                                                Proportion of lower secondary schools with basic handwashing facilities (%)
## 19912                                                                                                                                                                                                              Proportion of lower secondary schools with access to basic drinking water (%)
## 19913                                                                                                                                                                                                      Proportion of secondary schools with access to computers for pedagogical purposes (%)
## 19914                                                                                                                                                                                                       Proportion of secondary schools with access to Internet for pedagogical purposes (%)
## 19915                                                                                                                                                                                                Proportion of upper secondary schools with access to computers for pedagogical purposes (%)
## 19916                                                                                                                                                                                                                       Proportion of upper secondary schools with access to electricity (%)
## 19917                                                                                                                                                                                              Percentage of upper secondary schools providing life skills-based HIV and sexuality education
## 19918                                                                                                                                                               Proportion of upper secondary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19919                                                                                                                                                                                                 Proportion of upper secondary schools with access to Internet for pedagogical purposes (%)
## 19920                                                                                                                                                                                                      Proportion of upper secondary schools with single-sex basic sanitation facilities (%)
## 19921                                                                                                                                                                                                                Proportion of upper secondary schools with basic handwashing facilities (%)
## 19922                                                                                                                                                                                                              Proportion of upper secondary schools with access to basic drinking water (%)
## 19923                                                                                                                                                                                                                                    School life expectancy, pre-primary, both sexes (years)
## 19924                                                                                                                                                                                                                                        School life expectancy, pre-primary, female (years)
## 19925                                                                                                                                                                                                                             School life expectancy, pre-primary, gender parity index (GPI)
## 19926                                                                                                                                                                                                                                          School life expectancy, pre-primary, male (years)
## 19927                                                                                                                                                                                                                                        School life expectancy, primary, both sexes (years)
## 19928                                                                                                                                                                                                                                            School life expectancy, primary, female (years)
## 19929                                                                                                                                                                                                                                 School life expectancy, primary, gender parity index (GPI)
## 19930                                                                                                                                                                                                                                              School life expectancy, primary, male (years)
## 19931                                                                                                                                                                                                                    School life expectancy, primary and lower secondary, both sexes (years)
## 19932                                                                                                                                                                                                                        School life expectancy, primary and lower secondary, female (years)
## 19933                                                                                                                                                                                                                          School life expectancy, primary and lower secondary, male (years)
## 19934                                                                                                                                                                                                                          School life expectancy, primary and secondary, both sexes (years)
## 19935                                                                                                                                                                                                                              School life expectancy, primary and secondary, female (years)
## 19936                                                                                                                                                                                                                   School life expectancy, primary and secondary, gender parity index (GPI)
## 19937                                                                                                                                                                                                                                School life expectancy, primary and secondary, male (years)
## 19938                                                                                                                                                                                                             School life expectancy, primary and lower secondary, gender parity index (GPI)
## 19939                                                                                                                                                                                                                     School life expectancy, primary to tertiary, gender parity index (GPI)
## 19940                                                                                                                                                                                                                                      School life expectancy, secondary, both sexes (years)
## 19941                                                                                                                                                                                                                                          School life expectancy, secondary, female (years)
## 19942                                                                                                                                                                                                                               School life expectancy, secondary, gender parity index (GPI)
## 19943                                                                                                                                                                                                                                            School life expectancy, secondary, male (years)
## 19944                                                                                                                                                                                                                    School life expectancy, post-secondary non-tertiary, both sexes (years)
## 19945                                                                                                                                                                                                                        School life expectancy, post-secondary non-tertiary, female (years)
## 19946                                                                                                                                                                                                             School life expectancy, post-secondary non-tertiary, gender parity index (GPI)
## 19947                                                                                                                                                                                                                          School life expectancy, post-secondary non-tertiary, male (years)
## 19948                                                                                                                                                                                                                                       School life expectancy, tertiary, both sexes (years)
## 19949                                                                                                                                                                                                                                           School life expectancy, tertiary, female (years)
## 19950                                                                                                                                                                                                                                School life expectancy, tertiary, gender parity index (GPI)
## 19951                                                                                                                                                                                                                                             School life expectancy, tertiary, male (years)
## 19952                                                                                                                                                                                                                              Survival rate to Grade 4 of primary education, both sexes (%)
## 19953                                                                                                                                                                                                                                  Survival rate to Grade 4 of primary education, female (%)
## 19954                                                                                                                                                                                                                   Survival rate to Grade 4 of primary education, gender parity index (GPI)
## 19955                                                                                                                                                                                                                                    Survival rate to Grade 4 of primary education, male (%)
## 19956                                                                                                                                                                                                                   Survival rate to Grade 5 of primary education, gender parity index (GPI)
## 19957                                                                                                                                                                                                            Survival rate to the last grade of primary education, gender parity index (GPI)
## 19958                                                                                                                                                                                                        Teachers in early childhood educational development programmes, both sexes (number)
## 19959                                                                                                                                                                                                            Teachers in early childhood educational development programmes, female (number)
## 19960                                                                                                                                                                                                              Teachers in early childhood educational development programmes, male (number)
## 19961                                                                                                                                                                                                                                           Teachers in pre-primary education, male (number)
## 19962                                                                                                                                                                                                                                               Teachers in primary education, male (number)
## 19963                                                                                                                                                                                                                                 Teachers in lower secondary education, both sexes (number)
## 19964                                                                                                                                                                                                                                     Teachers in lower secondary education, female (number)
## 19965                                                                                                                                                                                                                                       Teachers in lower secondary education, male (number)
## 19966                                                                                                                                                                                                                                             Teachers in secondary education, male (number)
## 19967                                                                                                                                                                                                                                 Teachers in upper secondary education, both sexes (number)
## 19968                                                                                                                                                                                                                                     Teachers in upper secondary education, female (number)
## 19969                                                                                                                                                                                                                                       Teachers in upper secondary education, male (number)
## 19970                                                                                                                                                                                                                     Teachers in post-secondary non-tertiary education, both sexes (number)
## 19971                                                                                                                                                                                                                         Teachers in post-secondary non-tertiary education, female (number)
## 19972                                                                                                                                                                                                                           Teachers in post-secondary non-tertiary education, male (number)
## 19973                                                                                                                                                                                                                     Teachers in tertiary education ISCED 5 programmes, both sexes (number)
## 19974                                                                                                                                                                                                                         Teachers in tertiary education ISCED 5 programmes, female (number)
## 19975                                                                                                                                                                                                                           Teachers in tertiary education ISCED 5 programmes, male (number)
## 19976                                                                                                                                                                                                                                   Teachers in tertiary education programmes, male (number)
## 19977                                                                                                                                                                                                                          Teacher attrition rate from pre-primary education, both sexes (%)
## 19978                                                                                                                                                                                                                              Teacher attrition rate from pre-primary education, female (%)
## 19979                                                                                                                                                                                                     Teacher attrition rate from pre-primary education, adjusted gender parity index (GPIA)
## 19980                                                                                                                                                                                                                                Teacher attrition rate from pre-primary education, male (%)
## 19981                                                                                                                                                                                                                                  Teacher attrition rate from primary education, female (%)
## 19982                                                                                                                                                                                                         Teacher attrition rate from primary education, adjusted gender parity index (GPIA)
## 19983                                                                                                                                                                                                                                    Teacher attrition rate from primary education, male (%)
## 19984                                                                                                                                                                                                                              Teacher attrition rate from primary education, both sexes (%)
## 19985                                                                                                                                                                                                                          Teacher attrition rate from lower secondary education, female (%)
## 19986                                                                                                                                                                                                 Teacher attrition rate from lower secondary education, adjusted gender parity index (GPIA)
## 19987                                                                                                                                                                                                                            Teacher attrition rate from lower secondary education, male (%)
## 19988                                                                                                                                                                                                                      Teacher attrition rate from lower secondary education, both sexes (%)
## 19989                                                                                                                                                                                                                            Teacher attrition rate from secondary education, both sexes (%)
## 19990                                                                                                                                                                                                                                Teacher attrition rate from secondary education, female (%)
## 19991                                                                                                                                                                                                       Teacher attrition rate from secondary education, adjusted gender parity index (GPIA)
## 19992                                                                                                                                                                                                                    Teacher attrition rate from general secondary education, both sexes (%)
## 19993                                                                                                                                                                                                                        Teacher attrition rate from general secondary education, female (%)
## 19994                                                                                                                                                                                                                          Teacher attrition rate from general secondary education, male (%)
## 19995                                                                                                                                                                                                                                  Teacher attrition rate from secondary education, male (%)
## 19996                                                                                                                                                                                                                 Teacher attrition rate from vocational secondary education, both sexes (%)
## 19997                                                                                                                                                                                                                     Teacher attrition rate from vocational secondary education, female (%)
## 19998                                                                                                                                                                                                                       Teacher attrition rate from vocational secondary education, male (%)
## 19999                                                                                                                                                                                                                          Teacher attrition rate from upper secondary education, female (%)
## 20000                                                                                                                                                                                                 Teacher attrition rate from upper secondary education, adjusted gender parity index (GPIA)
## 20001                                                                                                                                                                                                                            Teacher attrition rate from upper secondary education, male (%)
## 20002                                                                                                                                                                                                                      Teacher attrition rate from upper secondary education, both sexes (%)
## 20003                                                                                                                                                                                                                                 Official entrance age to early childhood education (years)
## 20004                                                                                                                                                                                                                   Official entrance age to early childhood educational development (years)
## 20005                                                                                                                                                                                                                                     Official entrance age to pre-primary education (years)
## 20006                                                                                                                                                                                                                                 Official entrance age to upper secondary education (years)
## 20007                                                                                                                                                                                                                     Official entrance age to post-secondary non-tertiary education (years)
## 20008                                                                                                                                                                                                                                  Theoretical duration of early childhood education (years)
## 20009                                                                                                                                                                                                                    Theoretical duration of early childhood educational development (years)
## 20010                                                                                                                                                                                                                                      Theoretical duration of pre-primary education (years)
## 20011                                                                                                                                                                                                                      Theoretical duration of post-secondary non-tertiary education (years)
## 20012                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in pre-primary education, both sexes (%)
## 20013                                                                                                                                                                                       Proportion of teachers with the minimum required qualifications in pre-primary education, female (%)
## 20014                                                                                                                                                              Proportion of teachers with the minimum required qualifications in pre-primary education, adjusted gender parity index (GPIA)
## 20015                                                                                                                                                                                         Proportion of teachers with the minimum required qualifications in pre-primary education, male (%)
## 20016                                                                                                                                                                  Proportion of teachers with the minimum required qualifications in primary education, adjusted gender parity index (GPIA)
## 20017                                                                                                                                                                               Proportion of teachers with the minimum required qualifications in lower secondary education, both sexes (%)
## 20018                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in lower secondary education, female (%)
## 20019                                                                                                                                                          Proportion of teachers with the minimum required qualifications in lower secondary education, adjusted gender parity index (GPIA)
## 20020                                                                                                                                                                                     Proportion of teachers with the minimum required qualifications in lower secondary education, male (%)
## 20021                                                                                                                                                                Proportion of teachers with the minimum required qualifications in secondary education, adjusted gender parity index (GPIA)
## 20022                                                                                                                                                                               Proportion of teachers with the minimum required qualifications in upper secondary education, both sexes (%)
## 20023                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in upper secondary education, female (%)
## 20024                                                                                                                                                          Proportion of teachers with the minimum required qualifications in upper secondary education, adjusted gender parity index (GPIA)
## 20025                                                                                                                                                                                     Proportion of teachers with the minimum required qualifications in upper secondary education, male (%)
## 20026                                                                                                                                                                                                                           Government expenditure on pre-primary education, PPP$ (millions)
## 20027                                                                                                                                                                                                                               Government expenditure on primary education, PPP$ (millions)
## 20028                                                                                                                                                                                                                       Government expenditure on lower secondary education, PPP$ (millions)
## 20029                                                                                                                                                                                                                             Government expenditure on secondary education, PPP$ (millions)
## 20030                                                                                                                                                                             Government expenditure on secondary and post-secondary non-tertiary vocational education only, PPP$ (millions)
## 20031                                                                                                                                                                                                                       Government expenditure on upper secondary education, PPP$ (millions)
## 20032                                                                                                                                                                                                           Government expenditure on post-secondary non-tertiary education, PPP$ (millions)
## 20033                                                                                                                                                                                                                              Government expenditure on tertiary education, PPP$ (millions)
## 20034                                                                                                                                                                                                                                       Government expenditure on education, PPP$ (millions)
## 20035                                                                                                                                                                                                                Government expenditure on education not specified by level, PPP$ (millions)
## 20036                                                                                                                                                                                                                  Government expenditure on pre-primary education, constant PPP$ (millions)
## 20037                                                                                                                                                                                                                      Government expenditure on primary education, constant PPP$ (millions)
## 20038                                                                                                                                                                                                              Government expenditure on lower secondary education, constant PPP$ (millions)
## 20039                                                                                                                                                                                                                    Government expenditure on secondary education, constant PPP$ (millions)
## 20040                                                                                                                                                                    Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant PPP$ (millions)
## 20041                                                                                                                                                                                                              Government expenditure on upper secondary education, constant PPP$ (millions)
## 20042                                                                                                                                                                                                  Government expenditure on post-secondary non-tertiary education, constant PPP$ (millions)
## 20043                                                                                                                                                                                                                     Government expenditure on tertiary education, constant PPP$ (millions)
## 20044                                                                                                                                                                                                                              Government expenditure on education, constant PPP$ (millions)
## 20045                                                                                                                                                                                                       Government expenditure on education not specified by level, constant PPP$ (millions)
## 20046                                                                                                                                                                                                                            Government expenditure on pre-primary education, US$ (millions)
## 20047                                                                                                                                                                                                                                Government expenditure on primary education, US$ (millions)
## 20048                                                                                                                                                                                                                        Government expenditure on lower secondary education, US$ (millions)
## 20049                                                                                                                                                                                                                              Government expenditure on secondary education, US$ (millions)
## 20050                                                                                                                                                                              Government expenditure on secondary and post-secondary non-tertiary vocational education only, US$ (millions)
## 20051                                                                                                                                                                                                                        Government expenditure on upper secondary education, US$ (millions)
## 20052                                                                                                                                                                                                            Government expenditure on post-secondary non-tertiary education, US$ (millions)
## 20053                                                                                                                                                                                                                               Government expenditure on tertiary education, US$ (millions)
## 20054                                                                                                                                                                                                                                        Government expenditure on education, US$ (millions)
## 20055                                                                                                                                                                                                                 Government expenditure on education not specified by level, US$ (millions)
## 20056                                                                                                                                                                                                                   Government expenditure on pre-primary education, constant US$ (millions)
## 20057                                                                                                                                                                                                                       Government expenditure on primary education, constant US$ (millions)
## 20058                                                                                                                                                                                                               Government expenditure on lower secondary education, constant US$ (millions)
## 20059                                                                                                                                                                                                                     Government expenditure on secondary education, constant US$ (millions)
## 20060                                                                                                                                                                     Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant US$ (millions)
## 20061                                                                                                                                                                                                               Government expenditure on upper secondary education, constant US$ (millions)
## 20062                                                                                                                                                                                                   Government expenditure on post-secondary non-tertiary education, constant US$ (millions)
## 20063                                                                                                                                                                                                                      Government expenditure on tertiary education, constant US$ (millions)
## 20064                                                                                                                                                                                                                               Government expenditure on education, constant US$ (millions)
## 20065                                                                                                                                                                                                        Government expenditure on education not specified by level, constant US$ (millions)
## 20066                                                                                                                                                                                                                            Government expenditure on pre-primary education as % of GDP (%)
## 20067                                                                                                                                                                                                                                Government expenditure on primary education as % of GDP (%)
## 20068                                                                                                                                                                                                             Government expenditure on lower secondary education as a percentage of GDP (%)
## 20069                                                                                                                                                                                                                              Government expenditure on secondary education as % of GDP (%)
## 20070                                                                                                                                                                                   Government expenditure on secondary and post-secondary non-tertiary vocational education as % of GDP (%)
## 20071                                                                                                                                                                                                             Government expenditure on upper secondary education as a percentage of GDP (%)
## 20072                                                                                                                                                                                                            Government expenditure on post-secondary non-tertiary education as % of GDP (%)
## 20073                                                                                                                                                                                                                               Government expenditure on tertiary education as % of GDP (%)
## 20074                                                                                                                                                                                                       Capital expenditure as % of total expenditure in pre-primary public institutions (%)
## 20075                                                                                                                                                                                                       Current expenditure as % of total expenditure in pre-primary public institutions (%)
## 20076                                                                                                                                                                         Current expenditure other than staff compensation as % of total expenditure in pre-primary public institutions (%)
## 20077                                                                                                                                                                                                    All staff compensation as % of total expenditure in pre-primary public institutions (%)
## 20078                                                                                                                                                                                Non-teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%)
## 20079                                                                                                                                                                                    Teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%)
## 20080                                                                                                                                                                             Expenditure on school books and teaching material as % of total expenditure in primary public institutions (%)
## 20081                                                                                                                                                                                                           Capital expenditure as % of total expenditure in primary public institutions (%)
## 20082                                                                                                                                                                                                           Current expenditure as % of total expenditure in primary public institutions (%)
## 20083                                                                                                                                                                             Current expenditure other than staff compensation as % of total expenditure in primary public institutions (%)
## 20084                                                                                                                                                                                    Non-teaching staff compensation as a percentage of total expenditure in primary public institutions (%)
## 20085                                                                                                                                                                                                        All staff compensation as % of total expenditure in primary public institutions (%)
## 20086                                                                                                                                                                                        Teaching staff compensation as a percentage of total expenditure in primary public institutions (%)
## 20087                                                                                                                                                                                                   Capital expenditure as % of total expenditure in lower secondary public institutions (%)
## 20088                                                                                                                                                                                                   Current expenditure as % of total expenditure in lower secondary public institutions (%)
## 20089                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in lower secondary public institutions (%)
## 20090                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%)
## 20091                                                                                                                                                                                                All staff compensation as % of total expenditure in lower secondary public institutions (%)
## 20092                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%)
## 20093                                                                                                                                                                           Expenditure on school books and teaching material as % of total expenditure in secondary public institutions (%)
## 20094                                                                                                                                                                                                         Capital expenditure as % of total expenditure in secondary public institutions (%)
## 20095                                                                                                                                                                                                         Current expenditure as % of total expenditure in secondary public institutions (%)
## 20096                                                                                                                                                                           Current expenditure other than staff compensation as % of total expenditure in secondary public institutions (%)
## 20097                                                                                                                                                                                  Non-teaching staff compensation as a percentage of total expenditure in secondary public institutions (%)
## 20098                                                                                                                                                                                                      All staff compensation as % of total expenditure in secondary public institutions (%)
## 20099                                                                                                                                                                                      Teaching staff compensation as a percentage of total expenditure in secondary public institutions (%)
## 20100                                                                                                                                                                                                   Capital expenditure as % of total expenditure in upper-secondary public institutions (%)
## 20101                                                                                                                                                                                                   Current expenditure as % of total expenditure in upper-secondary public institutions (%)
## 20102                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in upper secondary public institutions (%)
## 20103                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%)
## 20104                                                                                                                                                                                                All staff compensation as % of total expenditure in upper secondary public institutions (%)
## 20105                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%)
## 20106                                                                                                                                                                                       Capital expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20107                                                                                                                                                                                       Current expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20108                                                                                                                                                         Current expenditure other than staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20109                                                                                                                                                                Non-teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%)
## 20110                                                                                                                                                                                    All staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20111                                                                                                                                                                    Teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%)
## 20112                                                                                                                                                                                                          Capital expenditure as % of total expenditure in tertiary public institutions (%)
## 20113                                                                                                                                                                                                          Current expenditure as % of total expenditure in tertiary public institutions (%)
## 20114                                                                                                                                                                            Current expenditure other than staff compensation as % of total expenditure in tertiary public institutions (%)
## 20115                                                                                                                                                                                   Non-teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%)
## 20116                                                                                                                                                                                                       All staff compensation as % of total expenditure in tertiary public institutions (%)
## 20117                                                                                                                                                                                       Teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%)
## 20118                                                                                                                                                                                                                   Capital expenditure as % of total expenditure in public institutions (%)
## 20119                                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in public institutions (%)
## 20120                                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in public institutions (%)
## 20121                                                                                                                                                                                                                All staff compensation as % of total expenditure in public institutions (%)
## 20122                                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in public institutions (%)
## 20123                                                                                                                                                                                                       Initial government funding per pre-primary student as a percentage of GDP per capita
## 20124                                                                                                                                                                                                           Initial government funding per primary student as a percentage of GDP per capita
## 20125                                                                                                                                                                                                            Initial household funding per primary student as a percentage of GDP per capita
## 20126                                                                                                                                                                                                   Initial government funding per lower secondary student as a percentage of GDP per capita
## 20127                                                                                                                                                                                                         Initial government funding per secondary student as a percentage of GDP per capita
## 20128                                                                                                                                                                                                          Initial household funding per secondary student as a percentage of GDP per capita
## 20129                                                                                                                                                                                                   Initial government funding per upper secondary student as a percentage of GDP per capita
## 20130                                                                                                                                                                                                          Initial government funding per tertiary student as a percentage of GDP per capita
## 20131                                                                                                                                                                                                           Initial household funding per tertiary student as a percentage of GDP per capita
## 20132                                                                                                                                                                                                                          Initial government funding per pre-primary student, constant PPP$
## 20133                                                                                                                                                                                                                              Initial government funding per primary student, constant PPP$
## 20134                                                                                                                                                                                                                               Initial household funding per primary student, constant PPP$
## 20135                                                                                                                                                                                                                      Initial government funding per lower secondary student, constant PPP$
## 20136                                                                                                                                                                                                                            Initial government funding per secondary student, constant PPP$
## 20137                                                                                                                                                                                                                             Initial household funding per secondary student, constant PPP$
## 20138                                                                                                                                                                                                                      Initial government funding per upper secondary student, constant PPP$
## 20139                                                                                                                                                                                                                             Initial government funding per tertiary student, constant PPP$
## 20140                                                                                                                                                                                                                              Initial household funding per tertiary student, constant PPP$
## 20141                                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, both sexes (%)
## 20142                                                                                                                                                                         Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, female (%)
## 20143                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted gender parity index (GPIA)
## 20144                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, high socio-economic status (%)
## 20145                                                                                                                                                      Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, low socio-economic status (%)
## 20146                                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, male (%)
## 20147                                                                                                                                                       Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, non-immigrant background (%)
## 20148                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, immigrant background (%)
## 20149                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted native parity index (NPIA)
## 20150                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted wealth parity index (WPIA)
## 20151                                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, both sexes (%)
## 20152                                                                                                                                                                         Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, female (%)
## 20153                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted gender parity index (GPIA)
## 20154                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, high socio-economic status (%)
## 20155                                                                                                                                                      Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, low socio-economic status (%)
## 20156                                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, male (%)
## 20157                                                                                                                                                       Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, non-immigrant background (%)
## 20158                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, immigrant background (%)
## 20159                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted native parity index (NPIA)
## 20160                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted wealth parity index (WPIA)
## 20161                                                                                                                                                                                                         Number of years of compulsory pre-primary education guaranteed in legal frameworks
## 20162                                                                                                                                                                                               Number of years of compulsory primary and secondary education guaranteed in legal frameworks
## 20163                                                                                                                                                                                                               Number of years of free pre-primary education guaranteed in legal frameworks
## 20164                                                                                                                                                                                                     Number of years of free primary and secondary education guaranteed in legal frameworks
## 20165                                                                                                                                                                                                     End of the academic school year (pre-primary to post-secondary non tertiary education)
## 20166                                                                                                                                                                                                                                       End of the academic school year (tertiary education)
## 20167                                                                                                                                                                                               End month of the academic school year (pre-primary to post-secondary non-tertiary education)
## 20168                                                                                                                                                                                                                                 End month of the academic school year (tertiary education)
## 20169                                                                                                                                                                                                   Start of the academic school year (pre-primary to post-secondary non tertiary education)
## 20170                                                                                                                                                                                                                                     Start of the academic school year (tertiary education)
## 20171                                                                                                                                                                                             Start month of the academic school year (pre-primary to post-secondary non-tertiary education)
## 20172                                                                                                                                                                                                                               Start month of the academic school year (tertiary education)
## 20173                                                                                                                                                                                                                                             Manufacturing Real Output per Empl. (1980=100)
## 20174                                                                                                                                                                                                                                             Manufacturing Real Output per Empl. (1987=100)
## 20175                                                                                                                                                                                                                                           Manufacturing Real Earnings per Empl. (1980=100)
## 20176                                                                                                                                                                                                                                            Manufacturing Real Earnings per Empl.(1987=100)
## 20177                                                                                                                                                                                                                                                        Manufacturing Employment (1980=100)
## 20178                                                                                                                                                                                                                                                        Manufacturing Employment (1987=100)
## 20179                                                                                                                                                                                                                                                 Manufacturing Earnings as % of Value Added
## 20180                                                                                                                                                                                                                                                 Manufacturing Earnings as % of Value Added
## 20181                                                                                                                                                                                                                                                              Human development index (HDI)
## 20182                                                                                                                                                                                                                                                               Unemployment rate,Percent,,,
## 20183                                                                                                                                                                                                                                                                      Combined polity score
## 20184                                                                                                                                                                                                                                                                Institutionalized autocracy
## 20185                                                                                                                                                                                                                                                                Institutionalized democracy
## 20186                                                                                                                                                                                                                                                              Revised Combined Polity Score
## 20187                                                                                                                                                                                                                                               Labor volume for unskilled females, millions
## 20188                                                                                                                                                                                                                                                 Labor volume for skilled females, millions
## 20189                                                                                                                                                                                                                                                  Labor volume for unskilled male, millions
## 20190                                                                                                                                                                                                                                                   Labor volume for skilled males, millions
## 20191                                                                                                                                                                                                                                                         Voice and Accountability: Estimate
## 20192                                                                                                                                                                                                                                                Voice and Accountability: Number of Sources
## 20193                                                                                                                                                                                                                                                  Voice and Accountability: Percentile Rank
## 20194                                                                                                                                                                                                          Voice and Accountability: Percentile Rank, Lower Bound of 90% Confidence Interval
## 20195                                                                                                                                                                                                          Voice and Accountability: Percentile Rank, Upper Bound of 90% Confidence Interval
## 20196                                                                                                                                                                                                                                                   Voice and Accountability: Standard Error
## 20197                                                                                                                                                                                                                                                   Battle-related deaths (number of people)
## 20198                                                                                                                                                                                                                   Intentional homicide rate (per 100,000 people, CTS and national sources)
## 20199                                                                                                                                                                                                                                        Intentional homicide rate (per 100,000 people, WHO)
## 20200                                                                                                                                                                                     Internally displaced persons, new displacement associated with conflict and violence (number of cases)
## 20201                                                                                                                                                                                                 Internally displaced persons, new displacement associated with disasters (number of cases)
## 20202                                                                                                                                                                                                  Internally displaced persons, total displaced by conflict and violence (number of people)
## 20203                                                                                                                                                                                                                                                      Internally displaced persons (number)
## 20204                                                                                                                                                                                                                                       Internally displaced persons (number, high estimate)
## 20205                                                                                                                                                                                                                                        Internally displaced persons (number, low estimate)
## 20206                                                                                                                                                                                                            Intentional homicides, UN Crime Trends Survey (CTS) source (per 100,000 people)
## 20207                                                                                                                                                                                                            Intentional homicides, international public health sources (per 100,000 people)
## 20208                                                                                                                                                                                                                   Intentional homicides, international police sources (per 100,000 people)
## 20209                                                                                                                                                                                                                      Intentional homicides, government police sources (per 100,000 people)
## 20210                                                                                                                                                                                                                                         Intentional homicides, female (per 100,000 female)
## 20211                                                                                                                                                                                                                                             Intentional homicides, male (per 100,000 male)
## 20212                                                                                                                                                                                                                                                 Intentional homicides (per 100,000 people)
## 20213                                                                                                                                                                                                    Presence of peace keepers (number of troops, police, and military observers in mandate)
## 20214                                                                                                                                                                                                                                            Annual wage for unskilled female workers in US$
## 20215                                                                                                                                                                                                                                             Annual wage for skilled female workers  in US$
## 20216                                                                                                                                                                                                                                             Annual wage for unskilled male workers  in US$
## 20217                                                                                                                                                                                                                                               Annual wage for skilled male workers  in US$
## 20218                                                                                                                                                                                                                                             Account at a financial institution (% age 15+)
## 20219                                                                                                                                                                                                                                       Account at a financial institution, male (% age 15+)
## 20220                                                                                                                                                                                                                                     Account at a financial institution, female (% age 15+)
## 20221                                                                                                                                                                                                                       Account at a financial institution, income, poorest 40% (% ages 15+)
## 20222                                                                                                                                                                                                                       Account at a financial institution, income, richest 60% (% ages 15+)
## 20223                                                                                                                                                                                                                                                                   Account (% age 15+) [ts]
## 20224                                                                                                                                                                                                                                                             Account, male (% age 15+) [ts]
## 20225                                                                                                                                                                                                                                                           Account, female (% age 15+) [ts]
## 20226                                                                                                                                                                                                                                                  Account, young adults (% ages 15-24) [ts]
## 20227                                                                                                                                                                                                                                                    Account, older adults (% ages 25+) [ts]
## 20228                                                                                                                                                                                                                                       Account, primary education or less (% ages 15+) [ts]
## 20229                                                                                                                                                                                                                                     Account, secondary education or more (% ages 15+) [ts]
## 20230                                                                                                                                                                                                                                             Account, income, poorest 40% (% ages 15+) [ts]
## 20231                                                                                                                                                                                                                                             Account, income, richest 60% (% ages 15+) [ts]
## 20232                                                                                                                                                                                                                                                                 Mobile account (% age 15+)
## 20233                                                                                                                                                                                                                                                           Mobile account, male (% age 15+)
## 20234                                                                                                                                                                                                                                                         Mobile account, female (% age 15+)
## 20235                                                                                                                                                                                                                                           Mobile account, income, poorest 40% (% ages 15+)
## 20236                                                                                                                                                                                                                                           Mobile account, income, richest 60% (% ages 15+)
## 20237                                                                                                                                                                                    Wage Premia for Females (the ratio of skilled female workers' wage  to  unskilled female workers' wage)
## 20238                                                                                                                                                                                         Wage Premia for Males  (the ratio of skilled male workers' wage  to  unskilled male workers' wage)

Indicator で検索(“” の間に、調べたい indicator を入れてください。)

WDIsearch(string = "", field = "indicator", short = TRUE, cache = NULL)
##                                               indicator
## 1                                    1.0.HCount.1.90usd
## 2                                     1.0.HCount.2.5usd
## 3                                  1.0.HCount.Mid10to50
## 4                                       1.0.HCount.Ofcl
## 5                                   1.0.HCount.Poor4uds
## 6                                   1.0.HCount.Vul4to10
## 7                                      1.0.PGap.1.90usd
## 8                                       1.0.PGap.2.5usd
## 9                                     1.0.PGap.Poor4uds
## 10                                     1.0.PSev.1.90usd
## 11                                      1.0.PSev.2.5usd
## 12                                    1.0.PSev.Poor4uds
## 13                                   1.1.HCount.1.90usd
## 14                                    1.1.HCount.2.5usd
## 15                                 1.1.HCount.Mid10to50
## 16                                      1.1.HCount.Ofcl
## 17                                  1.1.HCount.Poor4uds
## 18                                  1.1.HCount.Vul4to10
## 19                                     1.1.PGap.1.90usd
## 20                                      1.1.PGap.2.5usd
## 21                                    1.1.PGap.Poor4uds
## 22                                     1.1.PSev.1.90usd
## 23                                      1.1.PSev.2.5usd
## 24                                    1.1.PSev.Poor4uds
## 25                           1.1_ACCESS.ELECTRICITY.TOT
## 26                        1.1_TOTAL.FINAL.ENERGY.CONSUM
## 27                              1.1_YOUTH.LITERACY.RATE
## 28                                   1.2.HCount.1.90usd
## 29                                    1.2.HCount.2.5usd
## 30                                 1.2.HCount.Mid10to50
## 31                                      1.2.HCount.Ofcl
## 32                                  1.2.HCount.Poor4uds
## 33                                  1.2.HCount.Vul4to10
## 34                                     1.2.PGap.1.90usd
## 35                                      1.2.PGap.2.5usd
## 36                                    1.2.PGap.Poor4uds
## 37                                     1.2.PSev.1.90usd
## 38                                      1.2.PSev.2.5usd
## 39                                    1.2.PSev.Poor4uds
## 40                         1.2_ACCESS.ELECTRICITY.RURAL
## 41                         1.3_ACCESS.ELECTRICITY.URBAN
## 42                                               100000
## 43                                              1000000
## 44                                               110000
## 45                                               110100
## 46                                              1101000
## 47                                               110110
## 48                                              1101100
## 49                                               110111
## 50                                              1101110
## 51                                               110112
## 52                                              1101120
## 53                                               110113
## 54                                              1101130
## 55                                               110114
## 56                                              1101140
## 57                                               110115
## 58                                              1101150
## 59                                               110116
## 60                                              1101160
## 61                                               110117
## 62                                              1101170
## 63                                               110118
## 64                                              1101180
## 65                                               110119
## 66                                              1101190
## 67                                               110120
## 68                                              1101200
## 69                                               110200
## 70                                              1102000
## 71                                               110210
## 72                                              1102100
## 73                                               110220
## 74                                              1102200
## 75                                               110300
## 76                                              1103000
## 77                                               110400
## 78                                               110500
## 79                                              1105000
## 80                                               110600
## 81                                               110700
## 82                                              1107000
## 83                                               110710
## 84                                              1107100
## 85                                               110730
## 86                                              1107300
## 87                                               110800
## 88                                              1108000
## 89                                               111100
## 90                                              1111000
## 91                                               111300
## 92                                              1113000
## 93                                               130000
## 94                                              1300000
## 95                                               140000
## 96                                              1400000
## 97                                               150000
## 98                                              1500000
## 99                                               150100
## 100                                             1501000
## 101                                             1501100
## 102                                             1501200
## 103                                             1501300
## 104                                              150200
## 105                                             1502000
## 106                                              150300
## 107                                             1503000
## 108                                             1600000
## 109                                              160100
## 110                                              160200
## 111                                              170000
## 112                                         2.0.cov.Cel
## 113                                         2.0.cov.Ele
## 114                                         2.0.cov.FPS
## 115                                         2.0.cov.Int
## 116                               2.0.cov.Math.pl_2.all
## 117                               2.0.cov.Math.pl_2.prv
## 118                               2.0.cov.Math.pl_2.pub
## 119                               2.0.cov.Math.pl_3.all
## 120                               2.0.cov.Math.pl_3.prv
## 121                               2.0.cov.Math.pl_3.pub
## 122                               2.0.cov.Read.pl_2.all
## 123                               2.0.cov.Read.pl_2.prv
## 124                               2.0.cov.Read.pl_2.pub
## 125                               2.0.cov.Read.pl_3.all
## 126                               2.0.cov.Read.pl_3.prv
## 127                               2.0.cov.Read.pl_3.pub
## 128                                         2.0.cov.San
## 129                                         2.0.cov.Sch
## 130                               2.0.cov.Scie.pl_2.all
## 131                               2.0.cov.Scie.pl_2.prv
## 132                               2.0.cov.Scie.pl_2.pub
## 133                               2.0.cov.Scie.pl_3.all
## 134                               2.0.cov.Scie.pl_3.prv
## 135                               2.0.cov.Scie.pl_3.pub
## 136                                         2.0.cov.Wat
## 137                                         2.0.hoi.Cel
## 138                                         2.0.hoi.Ele
## 139                                         2.0.hoi.FPS
## 140                                         2.0.hoi.Int
## 141                               2.0.hoi.Math.pl_2.all
## 142                               2.0.hoi.Math.pl_2.prv
## 143                               2.0.hoi.Math.pl_2.pub
## 144                               2.0.hoi.Math.pl_3.all
## 145                               2.0.hoi.Math.pl_3.prv
## 146                               2.0.hoi.Math.pl_3.pub
## 147                               2.0.hoi.Read.pl_2.all
## 148                               2.0.hoi.Read.pl_2.prv
## 149                               2.0.hoi.Read.pl_2.pub
## 150                               2.0.hoi.Read.pl_3.all
## 151                               2.0.hoi.Read.pl_3.prv
## 152                               2.0.hoi.Read.pl_3.pub
## 153                                         2.0.hoi.San
## 154                                         2.0.hoi.Sch
## 155                               2.0.hoi.Scie.pl_2.all
## 156                               2.0.hoi.Scie.pl_2.prv
## 157                               2.0.hoi.Scie.pl_2.pub
## 158                               2.0.hoi.Scie.pl_3.all
## 159                               2.0.hoi.Scie.pl_3.prv
## 160                               2.0.hoi.Scie.pl_3.pub
## 161                                         2.0.hoi.Wat
## 162                                   2.01.01.02.nabase
## 163                                 2.01.03.01.prcpbase
## 164                                  2.04.01.01.excncpt
## 165                                  2.1_ACCESS.CFT.TOT
## 166                                 2.1_PRE.PRIMARY.GER
## 167                          2.1_SHARE.TOTAL.RE.IN.TFEC
## 168                                             2.2_GIR
## 169                                         2.3_GIR.GPI
## 170                                       2.4_OOSC.RATE
## 171                                             2.5_PCR
## 172                                         2.6_PCR.GPI
## 173                         2.7_PRI.SEC.TRANSITION.RATE
## 174                         2.8_LOW.SEC.COMPLETION.RATE
## 175                                       3.0.Atkin.0.5
## 176                                         3.0.Atkin.1
## 177                                         3.0.Atkin.2
## 178                                        3.0.GenEnt-1
## 179                                         3.0.GenEnt2
## 180                                            3.0.Gini
## 181                                     3.0.Gini_nozero
## 182                                       3.0.IncShr.q1
## 183                                       3.0.IncShr.q2
## 184                                       3.0.IncShr.q3
## 185                                       3.0.IncShr.q4
## 186                                       3.0.IncShr.q5
## 187                                       3.0.MLongDev0
## 188                                       3.0.Rate75-25
## 189                                       3.0.Rate90-10
## 190                                       3.0.TheilInd1
## 191                                    3.01.04.01.agcen
## 192                                    3.02.01.02.fscov
## 193                                            3.1.Gini
## 194                                       3.1.MLongDev0
## 195                                       3.1.TheilInd1
## 196                            3.1_LOW.SEC.NEW.TEACHERS
## 197                                3.1_PRI.NEW.ENTRANTS
## 198                                  3.1_RE.CONSUMPTION
## 199                                   3.11.01.01.popcen
## 200                                   3.11.01.03.popreg
## 201                             3.11_LOW.SEC.CLASSROOMS
## 202                         3.12_LOW.SEC.NEW.CLASSROOMS
## 203                        3.13_PRI.MATH.BOOK.PER.PUPIL
## 204                       3.14_PRI.LANGU.BOOK.PER.PUPIL
## 205                       3.15_LEARN.TIME.TEACHER.STUDY
## 206                                            3.2.Gini
## 207                                       3.2.MLongDev0
## 208                                       3.2.TheilInd1
## 209                                    3.2_PRI.STUDENTS
## 210                                    3.3_PRI.TEACHERS
## 211                                3.4_PRI.NEW.TEACHERS
## 212                                  3.5_PRI.CLASSROOMS
## 213                              3.6_PRI.NEW.CLASSROOMS
## 214                            3.7_LOW.SEC.NEW.ENTRANTS
## 215                                3.8_LOW.SEC.STUDENTS
## 216                                3.9_LOW.SEC.TEACHERS
## 217                                      4.0.nini.15a18
## 218                                      4.0.nini.15a24
## 219                                      4.0.nini.19a24
## 220                                      4.0.stud.15a18
## 221                                      4.0.stud.15a24
## 222                                      4.0.stud.19a24
## 223                                  4.0.studwork.15a18
## 224                                  4.0.studwork.15a24
## 225                                  4.0.studwork.19a24
## 226                                      4.0.work.15a18
## 227                                      4.0.work.15a24
## 228                                      4.0.work.19a24
## 229                      4.1.1_TOTAL.ELECTRICITY.OUTPUT
## 230                        4.1.2_REN.ELECTRICITY.OUTPUT
## 231                                      4.1.nini.15a18
## 232                                      4.1.nini.15a24
## 233                                      4.1.nini.19a24
## 234                                      4.1.stud.15a18
## 235                                      4.1.stud.15a24
## 236                                      4.1.stud.19a24
## 237                                  4.1.studwork.15a18
## 238                                  4.1.studwork.15a24
## 239                                  4.1.studwork.19a24
## 240                                      4.1.work.15a18
## 241                                      4.1.work.15a24
## 242                                      4.1.work.19a24
## 243                         4.1_SHARE.RE.IN.ELECTRICITY
## 244                              4.1_TOTAL.EDU.SPENDING
## 245                                      4.2.nini.15a18
## 246                                      4.2.nini.15a24
## 247                                      4.2.nini.19a24
## 248                                      4.2.stud.15a18
## 249                                      4.2.stud.15a24
## 250                                      4.2.stud.19a24
## 251                                  4.2.studwork.15a18
## 252                                  4.2.studwork.15a24
## 253                                  4.2.studwork.19a24
## 254                                      4.2.work.15a18
## 255                                      4.2.work.15a24
## 256                                      4.2.work.19a24
## 257                              4.2_BASIC.EDU.SPENDING
## 258                             4.3_TOTAL.EDU.RECURRENT
## 259                             4.4_BASIC.EDU.RECURRENT
## 260                                  5.0.AMeanIncGr.All
## 261                                  5.0.AMeanIncGr.B40
## 262                                   5.01.01.01.indust
## 263                                   5.04.01.01.exdebt
## 264                                   5.04.01.02.impexp
## 265                             5.1.1_AFG.TOTA.AID.CIDA
## 266                               5.1.1_ALB.TOTA.AID.WB
## 267                             5.1.1_BFA.TOTA.AID.CIDA
## 268                               5.1.1_CAF.TOT.AID.GPE
## 269                             5.1.1_CIV.TOTA.AID.AFDB
## 270                              5.1.1_CMR.TOTA.AID.BAD
## 271                               5.1.1_DJI.TOTA.AID.WB
## 272                              5.1.1_ETH.TOTA.AID.ADB
## 273                               5.1.1_GEO.TOTA.AID.EC
## 274                             5.1.1_GHA.TOTA.AID.DFID
## 275                         5.1.1_GIN.TOTA.AID.ADPP.AFD
## 276                          5.1.1_GNB.TOTA.AID.ADPP.EU
## 277                          5.1.1_KGZ.TOTA.AID.ADPP.EU
## 278                              5.1.1_KHM.TOTA.AID.BAD
## 279                              5.1.1_LAO.TOTA.AID.ADB
## 280                           5.1.1_LBR.TOTA.AID.UNICEF
## 281                           5.1.1_MDA.TOTA.AID.UNICEF
## 282                               5.1.1_MDG.TOTA.AID.WB
## 283                              5.1.1_MOZ.TOTA.AID.CAN
## 284                              5.1.1_MRT.TOTA.AID.AFD
## 285                             5.1.1_MWI.TOTA.AID.AFDB
## 286                              5.1.1_NER.TOTA.AID.AFD
## 287                             5.1.1_RWA.TOTA.AID.DFID
## 288                             5.1.1_SEN.TOTA.AID.CIDA
## 289                             5.1.1_SLE.TOTA.AID.DFID
## 290                              5.1.1_VNM.TOTA.AID.BEL
## 291                              5.1.1_ZMB.TOTA.AID.DNK
## 292                            5.1.10_AFG.TOTA.AID.SIDA
## 293                             5.1.10_ETH.TOTA.AID.JPN
## 294                             5.1.10_KHM.TOTA.AID.WFP
## 295                              5.1.10_LAO.TOTA.AID.WB
## 296                              5.1.10_MDG.TOTA.AID.EC
## 297                             5.1.10_MOZ.TOTA.AID.JPN
## 298                             5.1.10_MWI.TOTA.AID.WFP
## 299                          5.1.10_NER.TOTA.AID.UNICEF
## 300                              5.1.10_TJK.TOTA.AID.WB
## 301                          5.1.11_AFG.TOTA.AID.UNESCO
## 302                            5.1.11_ETH.TOTA.AID.JICA
## 303                              5.1.11_KHM.TOTA.AID.WB
## 304                           5.1.11_LAO.TOTA.AID.INGOS
## 305                             5.1.11_MOZ.TOTA.AID.NLD
## 306                              5.1.11_MWI.TOTA.AID.WB
## 307                           5.1.12_AFG.TOTA.AID.USAID
## 308                             5.1.12_ETH.TOTA.AID.KFW
## 309                             5.1.12_MOZ.TOTA.AID.PRT
## 310                              5.1.13_AFG.TOTA.AID.WB
## 311                             5.1.13_ETH.TOTA.AID.NLD
## 312                             5.1.13_MOZ.TOTA.AID.ESP
## 313                            5.1.14_ETH.TOTA.AID.SIDA
## 314                          5.1.14_MOZ.TOTA.AID.UNICEF
## 315                          5.1.15_ETH.TOTA.AID.UNICEF
## 316                           5.1.15_MOZ.TOTA.AID.USAID
## 317                           5.1.16_ETH.TOTA.AID.USAID
## 318                              5.1.16_MOZ.TOTA.AID.WB
## 319                             5.1.17_ETH.TOTA.AID.WFP
## 320                              5.1.18_ETH.TOTA.AID.WB
## 321                           5.1.2_AFG.TOTA.AID.DANIDA
## 322                              5.1.2_ALB.TOTA.AID.BEI
## 323                              5.1.2_BFA.TOTA.AID.AFD
## 324                            5.1.2_CIV.TOTA.AID.BADEA
## 325                               5.1.2_CMR.TOTA.AID.WB
## 326                              5.1.2_DJI.TOTA.AID.FSD
## 327                              5.1.2_ETH.TOTA.AID.BEL
## 328                           5.1.2_GEO.TOTA.AID.UNICEF
## 329                              5.1.2_GHA.TOTA.AID.GPE
## 330                        5.1.2_GIN.TOTA.AID.ADPP.AFDB
## 331                         5.1.2_GNB.TOTA.AID.ADPP.HUM
## 332                         5.1.2_KGZ.TOTA.AID.ADPP.GIZ
## 333                              5.1.2_KHM.TOTA.AID.BEL
## 334                              5.1.2_LAO.TOTA.AID.AUS
## 335                            5.1.2_LBR.TOTA.AID.USAID
## 336                               5.1.2_MDA.TOTA.AID.WB
## 337                              5.1.2_MDG.TOTA.AID.ILO
## 338                           5.1.2_MOZ.TOTA.AID.DANIDA
## 339                             5.1.2_MRT.TOTA.AID.ISDB
## 340                             5.1.2_MWI.TOTA.AID.CIDA
## 341                              5.1.2_NER.TOTA.AID.BEL
## 342                              5.1.2_RWA.TOTA.AID.GPE
## 343                               5.1.2_SEN.TOTA.AID.FR
## 344                               5.1.2_SLE.TOTA.AID.EC
## 345                             5.1.2_TJK.TOTA.AID.AGAK
## 346                             5.1.2_VNM.TOTA.AID.CIDA
## 347                              5.1.2_ZMB.TOTA.AID.IRL
## 348                              5.1.3_AFG.TOTA.AID.FRA
## 349                             5.1.3_ALB.TOTA.AID.CEIB
## 350                              5.1.3_BFA.TOTA.AID.CHE
## 351                               5.1.3_CIV.TOTA.AID.WB
## 352                               5.1.3_CMR.TOTA.AID.FR
## 353                              5.1.3_DJI.TOTA.AID.AFD
## 354                             5.1.3_ETH.TOTA.AID.DFID
## 355                            5.1.3_GEO.TOTA.AID.USAID
## 356                             5.1.3_GHA.TOTA.AID.JICA
## 357                          5.1.3_GIN.TOTA.AID.ADPP.WB
## 358                         5.1.3_GNB.TOTA.AID.ADPP.OTH
## 359                      5.1.3_KGZ.TOTA.AID.ADPP.UNICEF
## 360                              5.1.3_KHM.TOTA.AID.GPE
## 361                               5.1.3_LAO.TOTA.AID.EC
## 362                               5.1.3_LBR.TOTA.AID.WB
## 363                               5.1.3_MDG.TOTA.AID.FR
## 364                             5.1.3_MOZ.TOTA.AID.DFID
## 365                               5.1.3_MRT.TOTA.AID.SP
## 366                             5.1.3_MWI.TOTA.AID.DFID
## 367                               5.1.3_NER.TOTA.AID.FR
## 368                           5.1.3_RWA.TOTA.AID.UNICEF
## 369                              5.1.3_SEN.TOTA.AID.GPE
## 370                              5.1.3_SLE.TOTA.AID.GIZ
## 371                            5.1.3_TJK.TOTA.AID.OPENS
## 372                             5.1.3_VNM.TOTA.AID.DFID
## 373                              5.1.3_ZMB.TOTA.AID.ILO
## 374                              5.1.4_AFG.TOTA.AID.DEU
## 375                              5.1.4_BFA.TOTA.AID.DNK
## 376                             5.1.4_CIV.TOTA.AID.ISDB
## 377                             5.1.4_CMR.TOTA.AID.JICA
## 378                             5.1.4_DJI.TOTA.AID.AFDB
## 379                              5.1.4_ETH.TOTA.AID.DVV
## 380                               5.1.4_GEO.TOTA.AID.WB
## 381                           5.1.4_GHA.TOTA.AID.UNICEF
## 382                         5.1.4_GIN.TOTA.AID.ADPP.GPE
## 383                               5.1.4_GNB.TOTA.AID.EU
## 384                          5.1.4_KGZ.TOTA.AID.ADPP.WB
## 385                               5.1.4_KHM.TOTA.AID.EC
## 386                              5.1.4_LAO.TOTA.AID.DEU
## 387                             5.1.4_MDG.TOTA.AID.JICA
## 388                              5.1.4_MOZ.TOTA.AID.FIN
## 389                           5.1.4_MRT.TOTA.AID.UNESCO
## 390                              5.1.4_MWI.TOTA.AID.GIZ
## 391                            5.1.4_NER.TOTA.AID.JAPAN
## 392                            5.1.4_RWA.TOTA.AID.USAID
## 393                               5.1.4_SEN.TOTA.AID.IT
## 394                             5.1.4_SLE.TOTA.AID.JICA
## 395                               5.1.4_TJK.TOTA.AID.EC
## 396                             5.1.4_VNM.TOTA.AID.JICA
## 397                              5.1.4_ZMB.TOTA.AID.JPN
## 398                              5.1.5_AFG.TOTA.AID.IND
## 399                             5.1.5_BFA.TOTA.AID.JICA
## 400                              5.1.5_CIV.TOTA.AID.FSD
## 401                           5.1.5_CMR.TOTA.AID.UNESCO
## 402                             5.1.5_DJI.TOTA.AID.ISDB
## 403                               5.1.5_ETH.TOTA.AID.EC
## 404                            5.1.5_GHA.TOTA.AID.USAID
## 405                         5.1.5_GIN.TOTA.AID.ADPP.GIZ
## 406                               5.1.5_GNB.TOTA.AID.FR
## 407                              5.1.5_KHM.TOTA.AID.JPN
## 408                              5.1.5_LAO.TOTA.AID.GPE
## 409                              5.1.5_MDG.TOTA.AID.NOR
## 410                            5.1.5_MOZ.TOTA.AID.FLAND
## 411                           5.1.5_MRT.TOTA.AID.UNICEF
## 412                              5.1.5_MWI.TOTA.AID.GPE
## 413                              5.1.5_NER.TOTA.AID.KFW
## 414                               5.1.5_RWA.TOTA.AID.WB
## 415                           5.1.5_SEN.TOTA.AID.UNICEF
## 416                             5.1.5_SLE.TOTA.AID.SIDA
## 417                              5.1.5_TJK.TOTA.AID.GIZ
## 418                           5.1.5_VNM.TOTA.AID.UNESCO
## 419                              5.1.5_ZMB.TOTA.AID.ZMB
## 420                              5.1.6_AFG.TOTA.AID.JPN
## 421                              5.1.6_BFA.TOTA.AID.NLD
## 422                              5.1.6_CIV.TOTA.AID.KFW
## 423                           5.1.6_CMR.TOTA.AID.UNICEF
## 424                             5.1.6_DJI.TOTA.AID.IMOA
## 425                              5.1.6_ETH.TOTA.AID.FIN
## 426                              5.1.6_GHA.TOTA.AID.WFP
## 427                         5.1.6_GIN.TOTA.AID.ADPP.KFW
## 428                             5.1.6_GNB.TOTA.AID.PORT
## 429                              5.1.6_KHM.TOTA.AID.SWE
## 430                             5.1.6_LAO.TOTA.AID.JICA
## 431                              5.1.6_MDG.TOTA.AID.WFP
## 432                              5.1.6_MOZ.TOTA.AID.DEU
## 433                             5.1.6_MWI.TOTA.AID.JICA
## 434                              5.1.6_NER.TOTA.AID.WFP
## 435                            5.1.6_SEN.TOTA.AID.USAID
## 436                           5.1.6_SLE.TOTA.AID.UNICEF
## 437                              5.1.6_TJK.TOTA.AID.GPE
## 438                           5.1.6_VNM.TOTA.AID.UNICEF
## 439                           5.1.6_ZMB.TOTA.AID.UNICEF
## 440                             5.1.7_AFG.TOTA.AID.JICA
## 441                           5.1.7_BFA.TOTA.AID.UNICEF
## 442                           5.1.7_CIV.TOTA.AID.UNICEF
## 443                              5.1.7_ETH.TOTA.AID.GIZ
## 444                               5.1.7_GHA.TOTA.AID.WB
## 445                      5.1.7_GIN.TOTA.AID.ADPP.UNICEF
## 446                           5.1.7_GNB.TOTA.AID.UNICEF
## 447                           5.1.7_KHM.TOTA.AID.UNESCO
## 448                           5.1.7_LAO.TOTA.AID.UNESCO
## 449                           5.1.7_MDG.TOTA.AID.UNESCO
## 450                              5.1.7_MOZ.TOTA.AID.GPE
## 451                              5.1.7_MWI.TOTA.AID.KFW
## 452                             5.1.7_NER.TOTA.AID.DFID
## 453                               5.1.7_SLE.TOTA.AID.WB
## 454                           5.1.7_TJK.TOTA.AID.UNICEF
## 455                            5.1.7_VNM.TOTA.AID.USAID
## 456                            5.1.7_ZMB.TOTA.AID.USAID
## 457                              5.1.8_AFG.TOTA.AID.NLD
## 458                               5.1.8_BFA.TOTA.AID.EC
## 459                            5.1.8_CIV.TOTA.AID.USAID
## 460                              5.1.8_ETH.TOTA.AID.GPE
## 461                              5.1.8_GNB.TOTA.AID.JAP
## 462                           5.1.8_KHM.TOTA.AID.UNICEF
## 463                           5.1.8_LAO.TOTA.AID.UNICEF
## 464                           5.1.8_MDG.TOTA.AID.UNICEF
## 465                              5.1.8_MOZ.TOTA.AID.IRL
## 466                           5.1.8_MWI.TOTA.AID.UNICEF
## 467                              5.1.8_NER.TOTA.AID.CHE
## 468                              5.1.8_SLE.TOTA.AID.WFP
## 469                            5.1.8_TJK.TOTA.AID.USAID
## 470                               5.1.8_VNM.TOTA.AID.WB
## 471                              5.1.9_AFG.TOTA.AID.NZL
## 472                              5.1.9_ETH.TOTA.AID.ITA
## 473                            5.1.9_KHM.TOTA.AID.USAID
## 474                              5.1.9_LAO.TOTA.AID.WFP
## 475                              5.1.9_MDG.TOTA.AID.GPE
## 476                              5.1.9_MOZ.TOTA.AID.ITA
## 477                            5.1.9_MWI.TOTA.AID.USAID
## 478                              5.1.9_NER.TOTA.AID.LUX
## 479                              5.1.9_TJK.TOTA.AID.WFP
## 480                                  5.1.AMeanIncGr.All
## 481                                  5.1.AMeanIncGr.B40
## 482                                   5.1_TOTAL.EDU.AID
## 483                                   5.12.01.01.unesco
## 484                                 5.13.01.01.hlthsurv
## 485                                      5.13.01.01.who
## 486                                  5.14.01.01.povsurv
## 487                              5.2.1_AFG.BAS.AID.CIDA
## 488                                5.2.1_ALB.BAS.AID.WB
## 489                              5.2.1_BFA.BAS.AID.CIDA
## 490                               5.2.1_CAF.BAS.AID.GPE
## 491                              5.2.1_CIV.BAS.AID.AFDB
## 492                               5.2.1_CMR.BAS.AID.BAD
## 493                                5.2.1_DJI.BAS.AID.WB
## 494                               5.2.1_ETH.BAS.AID.ADB
## 495                                5.2.1_GEO.BAS.AID.EC
## 496                              5.2.1_GHA.BAS.AID.DFID
## 497                          5.2.1_GIN.BAS.AID.ADPP.AFD
## 498                           5.2.1_GNB.BAS.AID.ADPP.EU
## 499                           5.2.1_KGZ.BAS.AID.ADPP.EU
## 500                               5.2.1_KHM.BAS.AID.BAD
## 501                               5.2.1_LAO.BAS.AID.ADB
## 502                            5.2.1_LBR.BAS.AID.UNICEF
## 503                            5.2.1_MDA.BAS.AID.UNICEF
## 504                                5.2.1_MDG.BAS.AID.WB
## 505                              5.2.1_MRT.TOTA.AID.WFP
## 506                              5.2.1_MWI.BAS.AID.AFDB
## 507                               5.2.1_NER.BAS.AID.AFD
## 508                              5.2.1_RWA.BAS.AID.DFID
## 509                              5.2.1_SEN.BAS.AID.CIDA
## 510                              5.2.1_SLE.BAS.AID.DFID
## 511                              5.2.1_TJK.BAS.AID.AGAK
## 512                      5.2.1_TLS.TOT.AID.AUSAID.CFAUS
## 513                              5.2.1_VNM.BAS.AID.CIDA
## 514                               5.2.1_ZMB.BAS.AID.DNK
## 515                             5.2.10_AFG.BAS.AID.SIDA
## 516                              5.2.10_ETH.BAS.AID.JPN
## 517                              5.2.10_KHM.BAS.AID.WFP
## 518                               5.2.10_LAO.BAS.AID.WB
## 519                               5.2.10_MDG.BAS.AID.EC
## 520                              5.2.10_MWI.BAS.AID.WFP
## 521                           5.2.10_NER.BAS.AID.UNICEF
## 522                             5.2.10_TLS.TOT.AID.PRIV
## 523                           5.2.11_AFG.BAS.AID.UNESCO
## 524                             5.2.11_ETH.BAS.AID.JICA
## 525                               5.2.11_KHM.BAS.AID.WB
## 526                            5.2.11_LAO.BAS.AID.INGOS
## 527                               5.2.11_MWI.BAS.AID.WB
## 528                           5.2.11_TLS.TOT.AID.UNICEF
## 529                            5.2.12_AFG.BAS.AID.USAID
## 530                              5.2.12_ETH.BAS.AID.KFW
## 531                            5.2.12_TLS.TOT.AID.USAID
## 532                               5.2.13_AFG.BAS.AID.WB
## 533                              5.2.13_ETH.BAS.AID.NLD
## 534                             5.2.14_ETH.BAS.AID.SIDA
## 535                           5.2.15_ETH.BAS.AID.UNICEF
## 536                            5.2.16_ETH.BAS.AID.USAID
## 537                              5.2.17_ETH.BAS.AID.WFP
## 538                               5.2.18_ETH.BAS.AID.WB
## 539                            5.2.2_AFG.BAS.AID.DANIDA
## 540                               5.2.2_ALB.BAS.AID.BEI
## 541                               5.2.2_BFA.BAS.AID.AFD
## 542                             5.2.2_CIV.BAS.AID.BADEA
## 543                                5.2.2_CMR.BAS.AID.WB
## 544                               5.2.2_DJI.BAS.AID.FSD
## 545                               5.2.2_ETH.BAS.AID.BEL
## 546                            5.2.2_GEO.BAS.AID.UNICEF
## 547                               5.2.2_GHA.BAS.AID.GPE
## 548                         5.2.2_GIN.BAS.AID.ADPP.AFDB
## 549                          5.2.2_GNB.BAS.AID.ADPP.HUM
## 550                          5.2.2_KGZ.BAS.AID.ADPP.GIZ
## 551                               5.2.2_KHM.BAS.AID.BEL
## 552                               5.2.2_LAO.BAS.AID.AUS
## 553                             5.2.2_LBR.BAS.AID.USAID
## 554                                5.2.2_MDA.BAS.AID.WB
## 555                               5.2.2_MDG.BAS.AID.ILO
## 556                               5.2.2_MRT.BAS.AID.AFD
## 557                              5.2.2_MWI.BAS.AID.CIDA
## 558                               5.2.2_NER.BAS.AID.BEL
## 559                               5.2.2_RWA.BAS.AID.GPE
## 560                                5.2.2_SEN.BAS.AID.FR
## 561                                5.2.2_SLE.BAS.AID.EC
## 562                             5.2.2_TJK.BAS.AID.OPENS
## 563                         5.2.2_TLS.TOT.AID.AUSAID.WB
## 564                              5.2.2_VNM.BAS.AID.DFID
## 565                               5.2.2_ZMB.BAS.AID.IRL
## 566                               5.2.3_AFG.BAS.AID.FRA
## 567                              5.2.3_ALB.BAS.AID.CEIB
## 568                               5.2.3_BFA.BAS.AID.CHE
## 569                                5.2.3_CIV.BAS.AID.WB
## 570                                5.2.3_CMR.BAS.AID.FR
## 571                               5.2.3_DJI.BAS.AID.AFD
## 572                              5.2.3_ETH.BAS.AID.DFID
## 573                             5.2.3_GEO.BAS.AID.USAID
## 574                              5.2.3_GHA.BAS.AID.JICA
## 575                           5.2.3_GIN.BAS.AID.ADPP.WB
## 576                          5.2.3_GNB.BAS.AID.ADPP.OTH
## 577                       5.2.3_KGZ.BAS.AID.ADPP.UNICEF
## 578                               5.2.3_KHM.BAS.AID.GPE
## 579                                5.2.3_LAO.BAS.AID.EC
## 580                                5.2.3_LBR.BAS.AID.WB
## 581                                5.2.3_MDG.BAS.AID.FR
## 582                              5.2.3_MRT.BAS.AID.ISDB
## 583                              5.2.3_MWI.BAS.AID.DFID
## 584                                5.2.3_NER.BAS.AID.FR
## 585                            5.2.3_RWA.BAS.AID.UNICEF
## 586                               5.2.3_SEN.BAS.AID.GPE
## 587                               5.2.3_SLE.BAS.AID.GIZ
## 588                                5.2.3_TJK.BAS.AID.EC
## 589                               5.2.3_TLS.TOT.AID.AUS
## 590                              5.2.3_VNM.BAS.AID.JICA
## 591                               5.2.3_ZMB.BAS.AID.ILO
## 592                               5.2.4_AFG.BAS.AID.DEU
## 593                               5.2.4_BFA.BAS.AID.DNK
## 594                              5.2.4_CIV.BAS.AID.ISDB
## 595                              5.2.4_CMR.BAS.AID.JICA
## 596                              5.2.4_DJI.BAS.AID.AFDB
## 597                               5.2.4_ETH.BAS.AID.DVV
## 598                                5.2.4_GEO.BAS.AID.WB
## 599                            5.2.4_GHA.BAS.AID.UNICEF
## 600                          5.2.4_GIN.BAS.AID.ADPP.GPE
## 601                                5.2.4_GNB.BAS.AID.EU
## 602                           5.2.4_KGZ.BAS.AID.ADPP.WB
## 603                                5.2.4_KHM.BAS.AID.EC
## 604                               5.2.4_LAO.BAS.AID.DEU
## 605                              5.2.4_MDG.BAS.AID.JICA
## 606                                5.2.4_MRT.BAS.AID.SP
## 607                               5.2.4_MWI.BAS.AID.GIZ
## 608                             5.2.4_NER.BAS.AID.JAPAN
## 609                             5.2.4_RWA.BAS.AID.USAID
## 610                                5.2.4_SEN.BAS.AID.IT
## 611                              5.2.4_SLE.BAS.AID.JICA
## 612                               5.2.4_TJK.BAS.AID.GIZ
## 613                                5.2.4_TLS.TOT.AID.WB
## 614                            5.2.4_VNM.BAS.AID.UNESCO
## 615                               5.2.4_ZMB.BAS.AID.JPN
## 616                               5.2.5_AFG.BAS.AID.IND
## 617                              5.2.5_BFA.BAS.AID.JICA
## 618                               5.2.5_CIV.BAS.AID.FSD
## 619                            5.2.5_CMR.BAS.AID.UNESCO
## 620                              5.2.5_DJI.BAS.AID.ISDB
## 621                                5.2.5_ETH.BAS.AID.EC
## 622                             5.2.5_GHA.BAS.AID.USAID
## 623                          5.2.5_GIN.BAS.AID.ADPP.GIZ
## 624                                5.2.5_GNB.BAS.AID.FR
## 625                               5.2.5_KHM.BAS.AID.JPN
## 626                               5.2.5_LAO.BAS.AID.GPE
## 627                               5.2.5_MDG.BAS.AID.NOR
## 628                            5.2.5_MRT.BAS.AID.UNESCO
## 629                               5.2.5_MWI.BAS.AID.GPE
## 630                               5.2.5_NER.BAS.AID.KFW
## 631                                5.2.5_RWA.BAS.AID.WB
## 632                            5.2.5_SEN.BAS.AID.UNICEF
## 633                              5.2.5_SLE.BAS.AID.SIDA
## 634                               5.2.5_TJK.BAS.AID.GPE
## 635                               5.2.5_TLS.TOT.AID.JPN
## 636                            5.2.5_VNM.BAS.AID.UNICEF
## 637                               5.2.5_ZMB.BAS.AID.ZMB
## 638                               5.2.6_AFG.BAS.AID.JPN
## 639                               5.2.6_BFA.BAS.AID.NLD
## 640                               5.2.6_CIV.BAS.AID.KFW
## 641                            5.2.6_CMR.BAS.AID.UNICEF
## 642                              5.2.6_DJI.BAS.AID.IMOA
## 643                               5.2.6_ETH.BAS.AID.FIN
## 644                               5.2.6_GHA.BAS.AID.WFP
## 645                          5.2.6_GIN.BAS.AID.ADPP.KFW
## 646                              5.2.6_GNB.BAS.AID.PORT
## 647                               5.2.6_KHM.BAS.AID.SWE
## 648                              5.2.6_LAO.BAS.AID.JICA
## 649                               5.2.6_MDG.BAS.AID.WFP
## 650                            5.2.6_MRT.BAS.AID.UNICEF
## 651                              5.2.6_MWI.BAS.AID.JICA
## 652                               5.2.6_NER.BAS.AID.WFP
## 653                             5.2.6_SEN.BAS.AID.USAID
## 654                            5.2.6_SLE.BAS.AID.UNICEF
## 655                            5.2.6_TJK.BAS.AID.UNICEF
## 656                               5.2.6_TLS.TOT.AID.KOR
## 657                             5.2.6_VNM.BAS.AID.USAID
## 658                            5.2.6_ZMB.BAS.AID.UNICEF
## 659                              5.2.7_AFG.BAS.AID.JICA
## 660                            5.2.7_BFA.BAS.AID.UNICEF
## 661                            5.2.7_CIV.BAS.AID.UNICEF
## 662                               5.2.7_ETH.BAS.AID.GIZ
## 663                                5.2.7_GHA.BAS.AID.WB
## 664                       5.2.7_GIN.BAS.AID.ADPP.UNICEF
## 665                            5.2.7_GNB.BAS.AID.UNICEF
## 666                            5.2.7_KHM.BAS.AID.UNESCO
## 667                            5.2.7_LAO.BAS.AID.UNESCO
## 668                            5.2.7_MDG.BAS.AID.UNESCO
## 669                               5.2.7_MRT.BAS.AID.WFP
## 670                               5.2.7_MWI.BAS.AID.KFW
## 671                              5.2.7_NER.BAS.AID.DFID
## 672                                5.2.7_SLE.BAS.AID.WB
## 673                             5.2.7_TJK.BAS.AID.USAID
## 674                               5.2.7_TLS.TOT.AID.NZL
## 675                                5.2.7_VNM.BAS.AID.WB
## 676                             5.2.7_ZMB.BAS.AID.USAID
## 677                               5.2.8_AFG.BAS.AID.NLD
## 678                                5.2.8_BFA.BAS.AID.EC
## 679                             5.2.8_CIV.BAS.AID.USAID
## 680                               5.2.8_ETH.BAS.AID.GPE
## 681                               5.2.8_GNB.BAS.AID.JAP
## 682                            5.2.8_KHM.BAS.AID.UNICEF
## 683                            5.2.8_LAO.BAS.AID.UNICEF
## 684                            5.2.8_MDG.BAS.AID.UNICEF
## 685                            5.2.8_MWI.BAS.AID.UNICEF
## 686                               5.2.8_NER.BAS.AID.CHE
## 687                               5.2.8_SLE.BAS.AID.WFP
## 688                               5.2.8_TJK.BAS.AID.WFP
## 689                             5.2.8_TLS.TOT.AID.CFNZL
## 690                               5.2.9_AFG.BAS.AID.NZL
## 691                               5.2.9_ETH.BAS.AID.ITA
## 692                             5.2.9_KHM.BAS.AID.USAID
## 693                               5.2.9_LAO.BAS.AID.WFP
## 694                               5.2.9_MDG.BAS.AID.GPE
## 695                             5.2.9_MWI.BAS.AID.USAID
## 696                               5.2.9_NER.BAS.AID.LUX
## 697                                5.2.9_TJK.BAS.AID.WB
## 698                               5.2.9_TLS.TOT.AID.PRT
## 699                                  5.2.AMeanIncGr.All
## 700                                  5.2.AMeanIncGr.B40
## 701                                   5.2_BASIC.EDU.AID
## 702                                     5.21.01.01.sdds
## 703                                  5.51.01.01.poverty
## 704                                   5.51.01.02.malnut
## 705                                   5.51.01.03.mortal
## 706                                    5.51.01.04.immun
## 707                                      5.51.01.05.hiv
## 708                                   5.51.01.06.matern
## 709                                   5.51.01.07.gender
## 710                                 5.51.01.08.primcomp
## 711                                    5.51.01.09.water
## 712                                      5.51.01.10.gdp
## 713                                          6.0.Conspc
## 714                                     6.0.GDP_current
## 715                                      6.0.GDP_growth
## 716                                         6.0.GDP_usd
## 717                                  6.0.GDPpc_constant
## 718                                           6.0.GNIpc
## 719                                          6.1_LEG.CA
## 720                        6.1_PRIMARY.ENERGY.INTENSITY
## 721                                6.2_LEG.OTHER.DONORS
## 722                                         6.3_LEG.CSO
## 723                                        6.4_LAST.JSR
## 724                                        6.5_NEXT.JSR
## 725                              7.1.1_ESP.PERIOD.START
## 726                                7.1.2_ESP.PERIOD.END
## 727                              7.1_CURR.ALLOCATION.SE
## 728                       7.11_CURR.ALLOCATION.MODALITY
## 729                      7.12_CURR.ALLOCATION.2011.DISB
## 730                           7.13_CURR.ALLOCATION.DISB
## 731                                 7.2_ESP.ENDORSEMENT
## 732                            7.3_PREV.ALLOCATION.YEAR
## 733                          7.4_PREV.ALLOCATION.AMOUNT
## 734                            7.5_CURR.ALLOCATION.YEAR
## 735                          7.6_CURR.ALLOCATION.AMOUNT
## 736                  7.7.1_CURR.ALLOCATION.PERIOD.START
## 737                    7.7.2_CURR.ALLOCATION.PERIOD.END
## 738                       7.8_CURR.ALLOCATION.SIGNATURE
## 739                         7.9_CURR.ALLOCATION.CLOSURE
## 740                                            8.0.LIPI
## 741                               8.1_SCH.LEAVING.EXAMS
## 742                                       8.2_INT.TESTS
## 743                     8.3.1_ALB.LEAR.TEST.9.LANG.MEAN
## 744                              8.3.1_BFA.PASEC.CP2.FR
## 745                               8.3.1_CAF.BREVET.SUCC
## 746                   8.3.1_CIV.LEAR.TEST.PRIM.ALL.MEAN
## 747                              8.3.1_CMR.PASEC.25.FRE
## 748                      8.3.1_ETH.LEAR.TEST.10.ENG.OPT
## 749                         8.3.1_GEO.PIRLS.4.READ.MEAN
## 750                8.3.1_GHA.LEAR.TEST.P3.ENG.ABOV.MEAN
## 751                         8.3.1_GIN.PASEC.CP2.FR.MEAN
## 752                             8.3.1_KGZ.PISA.89.READ1
## 753                     8.3.1_KHM.LEAR.TEST.3.LANG.MEAN
## 754                     8.3.1_LAO.LEAR.TEST.5.LANG.MEAN
## 755                          8.3.1_MDA.LEAR.TEST.4.MEAN
## 756                             8.3.1_MDG.PASEC.CM2.FRE
## 757                        8.3.1_MOZ.SACMEQ.TEST.6.READ
## 758                                8.3.1_MRT.PASEC.5.FR
## 759                           8.3.1_MWI.SACMEQ.357.READ
## 760                      8.3.1_NER.LEAR.TEST.CP.FR.MEAN
## 761                    8.3.1_SEN.LEAR.TEST.CE2.MATH.MIN
## 762                          8.3.1_VNM.LEAR.TEST.5.MAT1
## 763                         8.3.1_VNM.LEAR.TEST.5.READ1
## 764                          8.3.1_ZMB.LEAR.TEST.5.READ
## 765                     8.3.10_ETH.LEAR.TEST.12.CHE.OPT
## 766                  8.3.10_GEO.LEAR.TEST.9.LANG.LOWEST
## 767               8.3.10_GHA.LEAR.TEST.P6.ENG.ABOV.PROF
## 768               8.3.10_GIN.PASEC.CM1.FR.MATH.MEAN.BEG
## 769                 8.3.10_NER.LEAR.TEST.CP.FR.UNDERMIN
## 770                     8.3.11_ETH.LEAR.TEST.12.PHY.OPT
## 771                   8.3.11_GEO.LEAR.TEST.9.MAT.LOWEST
## 772               8.3.11_GHA.LEAR.TEST.P3.MAT.ABOV.PROF
## 773                      8.3.11_GIN.LEAR.TEST.CEPE.MEAN
## 774                8.3.11_NER.LEAR.TEST.CE2.FR.UNDERMIN
## 775                     8.3.12_ETH.LEAR.TEST.12.AVR.OPT
## 776                      8.3.12_GEO.LEAR.TEST.1.ENG.MED
## 777               8.3.12_GHA.LEAR.TEST.P6.MAT.ABOV.PROF
## 778                      8.3.12_GIN.LEAR.TEST.BEPC.MEAN
## 779                8.3.12_NER.LEAR.TEST.CM2.FR.UNDERMIN
## 780                     8.3.13_GEO.LEAR.TEST.9.LANG.MED
## 781                         8.3.13_GHA.TIMSS.8.MAT.MEAN
## 782                       8.3.13_GIN.LEAR.TEST.BAC.MEAN
## 783                   8.3.13_NER.LEAR.TEST.CP.MATH.MEAN
## 784                      8.3.14_GEO.LEAR.TEST.9.MAT.MED
## 785                         8.3.14_GHA.TIMSS.8.SCI.MEAN
## 786                       8.3.14_GIN.LEAR.TEST.CEPE.MIN
## 787                  8.3.14_NER.LEAR.TEST.CE2.MATH.MEAN
## 788                     8.3.15_GEO.LEAR.TEST.1.ENG.HIGH
## 789                      8.3.15_GHA.LITERACY.P3.LETTERS
## 790                       8.3.15_GIN.LEAR.TEST.BEPC.MIN
## 791                  8.3.15_NER.LEAR.TEST.CM2.MATH.MEAN
## 792                    8.3.16_GEO.LEAR.TEST.9.LANG.HIGH
## 793                      8.3.16_GHA.LITERACY.P5.LETTERS
## 794                        8.3.16_GIN.LEAR.TEST.BAC.MIN
## 795                  8.3.16_NER.LEAR.TEST.CP.MATH.OPTIM
## 796                     8.3.17_GEO.LEAR.TEST.9.MAT.HIGH
## 797                        8.3.17_GHA.LITERACY.P3.WORDS
## 798                     8.3.17_GIN.LEAR.TEST.CEPE.OPTIM
## 799                 8.3.17_NER.LEAR.TEST.CE2.MATH.OPTIM
## 800                  8.3.18_GEO.LEAR.TEST.9.LAG.HIGHEST
## 801                        8.3.18_GHA.LITERACY.P5.WORDS
## 802                     8.3.18_GIN.LEAR.TEST.BEPC.OPTIM
## 803                 8.3.18_NER.LEAR.TEST.CM2.MATH.OPTIM
## 804                  8.3.19_GEO.LEAR.TEST.9.MAT.HIGHEST
## 805                         8.3.19_GHA.LITERACY.P3.ZERO
## 806                      8.3.19_GIN.LEAR.TEST.BAC.OPTIM
## 807                    8.3.19_NER.LEAR.TEST.CP.MATH.MIN
## 808                      8.3.2_ALB.LEAR.TEST.9.MAT.MEAN
## 809                              8.3.2_BFA.PASEC.CM1.FR
## 810                                  8.3.2_CAF.BAC.SUCC
## 811                    8.3.2_CIV.LEAR.TEST.SEC.ALL.MEAN
## 812                              8.3.2_CMR.PASEC.25.MAT
## 813                      8.3.2_ETH.LEAR.TEST.10.MAT.OPT
## 814                          8.3.2_GEO.TIMSS.4.MAT.MEAN
## 815                8.3.2_GHA.LEAR.TEST.P6.ENG.ABOV.MEAN
## 816                        8.3.2_GIN.PASEC.CP2.MAT.MEAN
## 817                             8.3.2_KGZ.PISA.89.READ2
## 818                      8.3.2_KHM.LEAR.TEST.3.MAT.MEAN
## 819                      8.3.2_LAO.LEAR.TEST.5.LANG.MIN
## 820                          8.3.2_MDA.LEAR.TEST.9.MEAN
## 821                             8.3.2_MDG.PASEC.CM2.MAT
## 822                         8.3.2_MOZ.SACMEQ.TEST.6.MAT
## 823                               8.3.2_MRT.PASEC.5.MAT
## 824                            8.3.2_MWI.SACMEQ.357.MAT
## 825                     8.3.2_NER.LEAR.TEST.CE2.FR.MEAN
## 826                      8.3.2_SEN.LEAR.TEST.CE2.FR.MIN
## 827                          8.3.2_VNM.LEAR.TEST.5.MAT2
## 828                         8.3.2_VNM.LEAR.TEST.5.READ2
## 829                           8.3.2_ZMB.LEAR.TEST.5.MAT
## 830                         8.3.20_GHA.LITERACY.P5.ZERO
## 831                       8.3.20_GIN.LEAR.TEST.CEPE.MAX
## 832                   8.3.20_NER.LEAR.TEST.CE2.MATH.MIN
## 833                      8.3.21_GHA.NUMERACY.P3.ADDITIO
## 834                       8.3.21_GIN.LEAR.TEST.BEPC.MAX
## 835                   8.3.21_NER.LEAR.TEST.CM2.MATH.MIN
## 836                      8.3.22_GHA.NUMERACY.P5.ADDITIO
## 837                        8.3.22_GIN.LEAR.TEST.BAC.MAX
## 838               8.3.22_NER.LEAR.TEST.CP.MATH.UNDERMIN
## 839                     8.3.23_GHA.NUMERACY.P3.MULTIPLI
## 840                      8.3.23_GIN.LEAR.TEST.CEPE.SUCC
## 841              8.3.23_NER.LEAR.TEST.CE2.MATH.UNDERMIN
## 842                     8.3.24_GHA.NUMERACY.P5.MULTIPLI
## 843                      8.3.24_GIN.LEAR.TEST.BEPC.SUCC
## 844              8.3.24_NER.LEAR.TEST.CM2.MATH.UNDERMIN
## 845                         8.3.25_GHA.NUMERACY.P3.ZERO
## 846                       8.3.25_GIN.LEAR.TEST.BAC.SUCC
## 847               8.3.25_NER.LEAR.TEST.CERTIFICATE.SUCC
## 848                         8.3.26_GHA.NUMERACY.P5.ZERO
## 849                             8.3.3_ALB.PISA.910.READ
## 850                             8.3.3_BFA.PASEC.CP2.MAT
## 851               8.3.3_CIV.LEAR.TEST.PRIM.ALL.MIN.COMP
## 852                      8.3.3_ETH.LEAR.TEST.10.BIO.OPT
## 853                          8.3.3_GEO.TIMSS.4.SCI.MEAN
## 854                8.3.3_GHA.LEAR.TEST.P3.MAT.ABOV.MEAN
## 855                     8.3.3_GIN.PASEC.CP2.FR.MAT.MEAN
## 856                             8.3.3_KGZ.PISA.89.READ3
## 857                     8.3.3_KHM.LEAR.TEST.6.LANG.MEAN
## 858                     8.3.3_LAO.LEAR.TEST.5.LANG.PROF
## 859                           8.3.3_MDA.LEAR.TEST.4.MIN
## 860                     8.3.3_NER.LEAR.TEST.CM2.FR.MEAN
## 861                    8.3.3_SEN.LEAR.TEST.CE2.MATH.OPT
## 862                          8.3.3_VNM.LEAR.TEST.5.MAT3
## 863                         8.3.3_VNM.LEAR.TEST.5.READ3
## 864                        8.3.3_ZMB.SACMEQ.TEST.5.READ
## 865                              8.3.4_ALB.PISA.910.MAT
## 866                             8.3.4_BFA.PASEC.CM1.MAT
## 867                8.3.4_CIV.LEAR.TEST.SEC.ALL.MIN.COMP
## 868                      8.3.4_ETH.LEAR.TEST.10.CHE.OPT
## 869                          8.3.4_GEO.TIMSS.8.MAT.MEAN
## 870                8.3.4_GHA.LEAR.TEST.P6.MAT.ABOV.MEAN
## 871                         8.3.4_GIN.PASEC.CM1.FR.MEAN
## 872                             8.3.4_KGZ.PISA.89.READ4
## 873                      8.3.4_KHM.LEAR.TEST.6.MAT.MEAN
## 874                      8.3.4_LAO.LEAR.TEST.5.MAT.MEAN
## 875                           8.3.4_MDA.LEAR.TEST.9.MIN
## 876                     8.3.4_NER.LEAR.TEST.CP.FR.OPTIM
## 877                      8.3.4_SEN.LEAR.TEST.CE2.FR.OPT
## 878                          8.3.4_VNM.LEAR.TEST.5.MAT4
## 879                         8.3.4_VNM.LEAR.TEST.5.READ4
## 880                         8.3.4_ZMB.SACMEQ.TEST.5.MAT
## 881                          8.3.5_ALB.PISA.910.SCIENCE
## 882               8.3.5_CIV.LEAR.TEST.PRIM.ALL.OPT.COMP
## 883                      8.3.5_ETH.LEAR.TEST.10.PHY.OPT
## 884                          8.3.5_GEO.TIMSS.8.SCI.MEAN
## 885                 8.3.5_GHA.LEAR.TEST.P3.ENG.ABOV.MIN
## 886                        8.3.5_GIN.PASEC.CM1.MAT.MEAN
## 887                             8.3.5_KGZ.PISA.89.READ5
## 888                     8.3.5_KHM.LEAR.TEST.9.LANG.MEAN
## 889                       8.3.5_LAO.LEAR.TEST.5.MAT.MIN
## 890                          8.3.5_MDA.LEAR.TEST.4.PROF
## 891                    8.3.5_NER.LEAR.TEST.CE2.FR.OPTIM
## 892                       8.3.5_SEN.PASEC.CM1.MATH.MEAN
## 893                          8.3.5_VNM.LEAR.TEST.5.MAT5
## 894                         8.3.5_VNM.LEAR.TEST.5.READ5
## 895                8.3.6_CIV.LEAR.TEST.SEC.ALL.OPT.COMP
## 896                      8.3.6_ETH.LEAR.TEST.10.AVR.OPT
## 897                          8.3.6_GEO.PISA.9.READ.MEAN
## 898                 8.3.6_GHA.LEAR.TEST.P6.ENG.ABOV.MIN
## 899                     8.3.6_GIN.PASEC.CM1.FR.MAT.MEAN
## 900                             8.3.6_KGZ.PISA.89.READ6
## 901                      8.3.6_KHM.LEAR.TEST.9.MAT.MEAN
## 902                      8.3.6_LAO.LEAR.TEST.5.MAT.PROF
## 903                          8.3.6_MDA.LEAR.TEST.9.PROF
## 904                    8.3.6_NER.LEAR.TEST.CM2.FR.OPTIM
## 905                         8.3.6_SEN.PASEC.CM1.FR.MEAN
## 906                          8.3.6_VNM.LEAR.TEST.5.MAT6
## 907                         8.3.6_VNM.LEAR.TEST.5.READ6
## 908                         8.3.7_CIV.PASEC.PRI.FRE.MAT
## 909                      8.3.7_ETH.LEAR.TEST.12.ENG.OPT
## 910                           8.3.7_GEO.PISA.9.MAT.MEAN
## 911                 8.3.7_GHA.LEAR.TEST.P3.MAT.ABOV.MIN
## 912                8.3.7_GIN.PASEC.CP2.FR.MATH.MEAN.END
## 913                             8.3.7_KGZ.PISA.89.READ7
## 914                    8.3.7_LAO.LEAR.TEST.5.WORLD.MEAN
## 915                         8.3.7_MDA.PIRLS.READ.4.MEAN
## 916                       8.3.7_NER.LEAR.TEST.CP.FR.MIN
## 917                           8.3.7_SEN.PASEC.MATH.MEAN
## 918                      8.3.8_ETH.LEAR.TEST.12.MAT.OPT
## 919                           8.3.8_GEO.PISA.9.SCI.MEAN
## 920                 8.3.8_GHA.LEAR.TEST.P6.MAT.ABOV.MIN
## 921                8.3.8_GIN.PASEC.CM1.FR.MATH.MEAN.END
## 922                             8.3.8_KGZ.PISA.89.READ8
## 923                     8.3.8_LAO.LEAR.TEST.5.WORLD.MIN
## 924                            8.3.8_MDA.TIMSS.MAT.MEAN
## 925                      8.3.8_NER.LEAR.TEST.CE2.FR.MIN
## 926                             8.3.8_SEN.PASEC.FR.MEAN
## 927                      8.3.9_ETH.LEAR.TEST.12.BIO.OPT
## 928                    8.3.9_GEO.LEAR.TEST.1.ENG.LOWEST
## 929                8.3.9_GHA.LEAR.TEST.P3.ENG.ABOV.PROF
## 930                8.3.9_GIN.PASEC.CP2.FR.MATH.MEAN.BEG
## 931                    8.3.9_LAO.LEAR.TEST.5.WORLD.PROF
## 932                          8.3.9_MDA.TIMSS.SCIEN.MEAN
## 933                      8.3.9_NER.LEAR.TEST.CM2.FR.MIN
## 934                            8.3_NATIONAL.ASSESSMENTS
## 935                               8.4_ORAL.READING.TEST
## 936                                    9.0.Employee.All
## 937                                    9.0.Employee.B40
## 938                                    9.0.Employee.T60
## 939                                    9.0.Employer.All
## 940                                    9.0.Employer.B40
## 941                                    9.0.Employer.T60
## 942                                       9.0.Labor.All
## 943                                       9.0.Labor.B40
## 944                                       9.0.Labor.T60
## 945                                     9.0.SelfEmp.All
## 946                                     9.0.SelfEmp.B40
## 947                                     9.0.SelfEmp.T60
## 948                                       9.0.Unemp.All
## 949                                       9.0.Unemp.B40
## 950                                       9.0.Unemp.T60
## 951                                      9.0.Unpaid.All
## 952                                      9.0.Unpaid.B40
## 953                                      9.0.Unpaid.T60
## 954                                    9.1.Employee.All
## 955                                    9.1.Employee.B40
## 956                                    9.1.Employee.T60
## 957                                    9.1.Employer.All
## 958                                    9.1.Employer.B40
## 959                                    9.1.Employer.T60
## 960                                       9.1.Labor.All
## 961                                       9.1.Labor.B40
## 962                                       9.1.Labor.T60
## 963                                     9.1.SelfEmp.All
## 964                                     9.1.SelfEmp.B40
## 965                                     9.1.SelfEmp.T60
## 966                                       9.1.Unemp.All
## 967                                       9.1.Unemp.B40
## 968                                       9.1.Unemp.T60
## 969                                      9.1.Unpaid.All
## 970                                      9.1.Unpaid.B40
## 971                                      9.1.Unpaid.T60
## 972                                   9.1_AID.ALIGNMENT
## 973                                    9.2.Employee.All
## 974                                    9.2.Employee.B40
## 975                                    9.2.Employee.T60
## 976                                    9.2.Employer.All
## 977                                    9.2.Employer.B40
## 978                                    9.2.Employer.T60
## 979                                       9.2.Labor.All
## 980                                       9.2.Labor.B40
## 981                                       9.2.Labor.T60
## 982                                     9.2.SelfEmp.All
## 983                                     9.2.SelfEmp.B40
## 984                                     9.2.SelfEmp.T60
## 985                                       9.2.Unemp.All
## 986                                       9.2.Unemp.B40
## 987                                       9.2.Unemp.T60
## 988                                      9.2.Unpaid.All
## 989                                      9.2.Unpaid.B40
## 990                                      9.2.Unpaid.T60
## 991                           9.2_COORDINATED.TECH.COOP
## 992                             9.3_PFM.COUNTRY.SYSTEMS
## 993                     9.4_PROCUREMENT.COUNTRY.SYSTEMS
## 994                                             9.5_PIU
## 995                                             9.6_PBA
## 996                                             9020000
## 997                                             9060000
## 998                                             9080000
## 999                                             9100000
## 1000                                            9110000
## 1001                                            9120000
## 1002                                            9140000
## 1003                                            9250000
## 1004                                            9260000
## 1005                                            9270000
## 1006                                                 A1
## 1007                                               A10i
## 1008                                              A10ii
## 1009                                             A10iii
## 1010                                              A10iv
## 1011                                               A10v
## 1012                                               A11i
## 1013                                              A11ii
## 1014                                             A11iii
## 1015                                              A11iv
## 1016                                               A11v
## 1017                                               A12i
## 1018                                              A12ii
## 1019                                             A12iii
## 1020                                              A12iv
## 1021                                               A12v
## 1022                                                 A2
## 1023                                                 A3
## 1024                                                 A4
## 1025                                                 A5
## 1026                                                A6i
## 1027                                               A6ii
## 1028                                              A6iii
## 1029                                               A6iv
## 1030                                                A6v
## 1031                                                A7i
## 1032                                               A7ii
## 1033                                              A7iii
## 1034                                               A7iv
## 1035                                                A7v
## 1036                                                A8i
## 1037                                               A8ii
## 1038                                              A8iii
## 1039                                               A8iv
## 1040                                                A8v
## 1041                                                A9i
## 1042                                               A9ii
## 1043                                              A9iii
## 1044                                               A9iv
## 1045                                                A9v
## 1046                                        account.t.d
## 1047                                      account.t.d.1
## 1048                                     account.t.d.10
## 1049                                     account.t.d.11
## 1050                                      account.t.d.2
## 1051                                      account.t.d.3
## 1052                                      account.t.d.4
## 1053                                      account.t.d.5
## 1054                                      account.t.d.6
## 1055                                      account.t.d.7
## 1056                                      account.t.d.8
## 1057                                      account.t.d.9
## 1058                                        account_t_d
## 1059                                      account_t_d_1
## 1060                                      account_t_d_2
## 1061                                      account_t_d_3
## 1062                                      account_t_d_4
## 1063                                      account_t_d_5
## 1064                                      account_t_d_6
## 1065                                      account_t_d_7
## 1066                                     AG.AGR.TRAC.NO
## 1067                                     AG.AID.CREL.MT
## 1068                                     AG.AID.FOOD.MT
## 1069                                    AG.AID.NCREL.MT
## 1070                                     AG.CON.FERT.MT
## 1071                                  AG.CON.FERT.PT.ZS
## 1072                                     AG.CON.FERT.ZS
## 1073                                     AG.CON.PEST.MT
## 1074                                      AG.CRP.BLY.CD
## 1075                                      AG.CRP.BLY.CN
## 1076                                      AG.CRP.FNO.CD
## 1077                                      AG.CRP.FNO.CN
## 1078                                      AG.CRP.MLT.CD
## 1079                                      AG.CRP.MLT.CN
## 1080                                      AG.CRP.MZE.CD
## 1081                                      AG.CRP.MZE.CN
## 1082                                     AG.CRP.RICE.CD
## 1083                                     AG.CRP.RICE.CN
## 1084                                      AG.CRP.SGM.CD
## 1085                                      AG.CRP.SGM.CN
## 1086                                      AG.CRP.WHT.CD
## 1087                                      AG.CRP.WHT.CN
## 1088                                  AG.FRST.PROD.CHAR
## 1089                                  AG.FRST.PROD.WOOD
## 1090                                     AG.IMP.CREL.MT
## 1091                                     AG.LND.AGRI.HA
## 1092                                     AG.LND.AGRI.K2
## 1093                                     AG.LND.AGRI.ZS
## 1094                                     AG.LND.ARBL.HA
## 1095                                  AG.LND.ARBL.HA.PC
## 1096                                     AG.LND.ARBL.ZS
## 1097                                      AG.LND.BLY.HA
## 1098                                     AG.LND.CERE.ZS
## 1099                                     AG.LND.CREL.HA
## 1100                                     AG.LND.CROP.HA
## 1101                                     AG.LND.CROP.ZS
## 1102                                     AG.LND.CRPA.HA
## 1103                                  AG.LND.EL5M.RU.K2
## 1104                                  AG.LND.EL5M.RU.ZS
## 1105                                  AG.LND.EL5M.UR.K2
## 1106                                  AG.LND.EL5M.UR.ZS
## 1107                                     AG.LND.EL5M.ZS
## 1108                                      AG.LND.FNO.HA
## 1109                                     AG.LND.FRST.HA
## 1110                                     AG.LND.FRST.K2
## 1111                                     AG.LND.FRST.ZS
## 1112                                  AG.LND.IRIG.AG.ZS
## 1113                                     AG.LND.IRIG.HA
## 1114                                  AG.LND.IRIG.HA.AG
## 1115                                  AG.LND.IRIG.PO.HA
## 1116                                     AG.LND.IRIG.ZS
## 1117                                      AG.LND.MLT.HA
## 1118                                      AG.LND.MZE.HA
## 1119                                     AG.LND.OTHR.ZS
## 1120                                      AG.LND.POP.ZS
## 1121                                     AG.LND.PPAS.ZS
## 1122                                     AG.LND.PRCP.MM
## 1123                                     AG.LND.RICE.HA
## 1124                                      AG.LND.SGM.HA
## 1125                                     AG.LND.TOTL.HA
## 1126                                     AG.LND.TOTL.K2
## 1127                                  AG.LND.TOTL.RU.K2
## 1128                                  AG.LND.TOTL.UR.K2
## 1129                                     AG.LND.TRAC.ZS
## 1130                                      AG.LND.WHT.HA
## 1131                                     AG.PRD.AGRI.XD
## 1132                                      AG.PRD.BLY.MT
## 1133                                     AG.PRD.CREL.MT
## 1134                                     AG.PRD.CREL.XD
## 1135                                     AG.PRD.CROP.XD
## 1136                                      AG.PRD.FNO.MT
## 1137                                     AG.PRD.FOOD.XD
## 1138                                    AG.PRD.GAGRI.XD
## 1139                                    AG.PRD.GCREL.XD
## 1140                                    AG.PRD.GCROP.XD
## 1141                                    AG.PRD.GFOOD.XD
## 1142                                    AG.PRD.GLVSK.XD
## 1143                                   AG.PRD.GNFOOD.XD
## 1144                                     AG.PRD.LVSK.XD
## 1145                                      AG.PRD.MLT.MT
## 1146                                      AG.PRD.MZE.MT
## 1147                                    AG.PRD.NFOOD.XD
## 1148                                     AG.PRD.RICE.MT
## 1149                                     AG.PRD.RTTB.MT
## 1150                                      AG.PRD.SGM.MT
## 1151                                      AG.PRD.WHT.MT
## 1152                                      AG.SED.BLY.MT
## 1153                                     AG.SED.CREL.MT
## 1154                                      AG.SED.FNO.MT
## 1155                                      AG.SED.MLT.MT
## 1156                                      AG.SED.MZE.MT
## 1157                                     AG.SED.RICE.MT
## 1158                                      AG.SED.SGM.MT
## 1159                                      AG.SED.WHT.MT
## 1160                                     AG.SRF.TOTL.HA
## 1161                                     AG.SRF.TOTL.K2
## 1162                                     AG.TRC.EMPL.ZS
## 1163                                     AG.USE.PEST.ZS
## 1164                                      AG.YLD.BLY.KG
## 1165                                     AG.YLD.CREL.KG
## 1166                                      AG.YLD.FNO.KG
## 1167                                      AG.YLD.MLT.KG
## 1168                                      AG.YLD.MZE.KG
## 1169                                     AG.YLD.RICE.KG
## 1170                                      AG.YLD.SGM.KG
## 1171                                      AG.YLD.WHT.KG
## 1172                                        allsa.bi_q1
## 1173                                      allsa.cov_pop
## 1174                                      allsa.gen_pop
## 1175                                        allsi.bi_q1
## 1176                                      allsi.cov_pop
## 1177                                      allsi.gen_pop
## 1178                                        allsp.bi_q1
## 1179                                      allsp.cov_pop
## 1180                                      allsp.gen_pop
## 1181                                                 B1
## 1182                                                B2i
## 1183                                               B2ii
## 1184                                              B2iii
## 1185                                                B3i
## 1186                                               B3ii
## 1187                                              B3iii
## 1188                                                B4i
## 1189                                               B4ii
## 1190                                              B4iii
## 1191                                                B5i
## 1192                                               B5ii
## 1193                                              B5iii
## 1194                                                B6i
## 1195                                               B6ii
## 1196                                              B6iii
## 1197                                BAR.NOED.1519.FE.ZS
## 1198                                   BAR.NOED.1519.ZS
## 1199                                BAR.NOED.15UP.FE.ZS
## 1200                                   BAR.NOED.15UP.ZS
## 1201                                BAR.NOED.2024.FE.ZS
## 1202                                   BAR.NOED.2024.ZS
## 1203                                BAR.NOED.2529.FE.ZS
## 1204                                   BAR.NOED.2529.ZS
## 1205                                BAR.NOED.25UP.FE.ZS
## 1206                                   BAR.NOED.25UP.ZS
## 1207                                BAR.NOED.3034.FE.ZS
## 1208                                   BAR.NOED.3034.ZS
## 1209                                BAR.NOED.3539.FE.ZS
## 1210                                   BAR.NOED.3539.ZS
## 1211                                BAR.NOED.4044.FE.ZS
## 1212                                   BAR.NOED.4044.ZS
## 1213                                BAR.NOED.4549.FE.ZS
## 1214                                   BAR.NOED.4549.ZS
## 1215                                BAR.NOED.5054.FE.ZS
## 1216                                   BAR.NOED.5054.ZS
## 1217                                BAR.NOED.5559.FE.ZS
## 1218                                   BAR.NOED.5559.ZS
## 1219                                BAR.NOED.6064.FE.ZS
## 1220                                   BAR.NOED.6064.ZS
## 1221                                BAR.NOED.6569.FE.ZS
## 1222                                   BAR.NOED.6569.ZS
## 1223                                BAR.NOED.7074.FE.ZS
## 1224                                   BAR.NOED.7074.ZS
## 1225                                BAR.NOED.75UP.FE.ZS
## 1226                                   BAR.NOED.75UP.ZS
## 1227                                       BAR.POP.1519
## 1228                                    BAR.POP.1519.FE
## 1229                                       BAR.POP.15UP
## 1230                                    BAR.POP.15UP.FE
## 1231                                       BAR.POP.2024
## 1232                                    BAR.POP.2024.FE
## 1233                                       BAR.POP.2529
## 1234                                    BAR.POP.2529.FE
## 1235                                       BAR.POP.25UP
## 1236                                    BAR.POP.25UP.FE
## 1237                                       BAR.POP.3034
## 1238                                    BAR.POP.3034.FE
## 1239                                       BAR.POP.3539
## 1240                                    BAR.POP.3539.FE
## 1241                                       BAR.POP.4044
## 1242                                    BAR.POP.4044.FE
## 1243                                       BAR.POP.4549
## 1244                                    BAR.POP.4549.FE
## 1245                                       BAR.POP.5054
## 1246                                    BAR.POP.5054.FE
## 1247                                       BAR.POP.5559
## 1248                                    BAR.POP.5559.FE
## 1249                                       BAR.POP.6064
## 1250                                    BAR.POP.6064.FE
## 1251                                       BAR.POP.6569
## 1252                                    BAR.POP.6569.FE
## 1253                                       BAR.POP.7074
## 1254                                    BAR.POP.7074.FE
## 1255                                       BAR.POP.75UP
## 1256                                    BAR.POP.75UP.FE
## 1257                            BAR.PRM.CMPT.1519.FE.ZS
## 1258                               BAR.PRM.CMPT.1519.ZS
## 1259                            BAR.PRM.CMPT.15UP.FE.ZS
## 1260                               BAR.PRM.CMPT.15UP.ZS
## 1261                            BAR.PRM.CMPT.2024.FE.ZS
## 1262                               BAR.PRM.CMPT.2024.ZS
## 1263                            BAR.PRM.CMPT.2529.FE.ZS
## 1264                               BAR.PRM.CMPT.2529.ZS
## 1265                            BAR.PRM.CMPT.25UP.FE.ZS
## 1266                               BAR.PRM.CMPT.25UP.ZS
## 1267                            BAR.PRM.CMPT.3034.FE.ZS
## 1268                               BAR.PRM.CMPT.3034.ZS
## 1269                            BAR.PRM.CMPT.3539.FE.ZS
## 1270                               BAR.PRM.CMPT.3539.ZS
## 1271                            BAR.PRM.CMPT.4044.FE.ZS
## 1272                               BAR.PRM.CMPT.4044.ZS
## 1273                            BAR.PRM.CMPT.4549.FE.ZS
## 1274                               BAR.PRM.CMPT.4549.ZS
## 1275                            BAR.PRM.CMPT.5054.FE.ZS
## 1276                               BAR.PRM.CMPT.5054.ZS
## 1277                            BAR.PRM.CMPT.5559.FE.ZS
## 1278                               BAR.PRM.CMPT.5559.ZS
## 1279                            BAR.PRM.CMPT.6064.FE.ZS
## 1280                               BAR.PRM.CMPT.6064.ZS
## 1281                            BAR.PRM.CMPT.6569.FE.ZS
## 1282                               BAR.PRM.CMPT.6569.ZS
## 1283                            BAR.PRM.CMPT.7074.FE.ZS
## 1284                               BAR.PRM.CMPT.7074.ZS
## 1285                            BAR.PRM.CMPT.75UP.FE.ZS
## 1286                               BAR.PRM.CMPT.75UP.ZS
## 1287                            BAR.PRM.ICMP.1519.FE.ZS
## 1288                               BAR.PRM.ICMP.1519.ZS
## 1289                            BAR.PRM.ICMP.15UP.FE.ZS
## 1290                               BAR.PRM.ICMP.15UP.ZS
## 1291                            BAR.PRM.ICMP.2024.FE.ZS
## 1292                               BAR.PRM.ICMP.2024.ZS
## 1293                            BAR.PRM.ICMP.2529.FE.ZS
## 1294                               BAR.PRM.ICMP.2529.ZS
## 1295                            BAR.PRM.ICMP.25UP.FE.ZS
## 1296                               BAR.PRM.ICMP.25UP.ZS
## 1297                            BAR.PRM.ICMP.3034.FE.ZS
## 1298                               BAR.PRM.ICMP.3034.ZS
## 1299                            BAR.PRM.ICMP.3539.FE.ZS
## 1300                               BAR.PRM.ICMP.3539.ZS
## 1301                            BAR.PRM.ICMP.4044.FE.ZS
## 1302                               BAR.PRM.ICMP.4044.ZS
## 1303                            BAR.PRM.ICMP.4549.FE.ZS
## 1304                               BAR.PRM.ICMP.4549.ZS
## 1305                            BAR.PRM.ICMP.5054.FE.ZS
## 1306                               BAR.PRM.ICMP.5054.ZS
## 1307                            BAR.PRM.ICMP.5559.FE.ZS
## 1308                               BAR.PRM.ICMP.5559.ZS
## 1309                            BAR.PRM.ICMP.6064.FE.ZS
## 1310                               BAR.PRM.ICMP.6064.ZS
## 1311                            BAR.PRM.ICMP.6569.FE.ZS
## 1312                               BAR.PRM.ICMP.6569.ZS
## 1313                            BAR.PRM.ICMP.7074.FE.ZS
## 1314                               BAR.PRM.ICMP.7074.ZS
## 1315                            BAR.PRM.ICMP.75UP.FE.ZS
## 1316                               BAR.PRM.ICMP.75UP.ZS
## 1317                                  BAR.PRM.SCHL.1519
## 1318                               BAR.PRM.SCHL.1519.FE
## 1319                                  BAR.PRM.SCHL.15UP
## 1320                               BAR.PRM.SCHL.15UP.FE
## 1321                                  BAR.PRM.SCHL.2024
## 1322                               BAR.PRM.SCHL.2024.FE
## 1323                                  BAR.PRM.SCHL.2529
## 1324                               BAR.PRM.SCHL.2529.FE
## 1325                                  BAR.PRM.SCHL.25UP
## 1326                               BAR.PRM.SCHL.25UP.FE
## 1327                                  BAR.PRM.SCHL.3034
## 1328                               BAR.PRM.SCHL.3034.FE
## 1329                                  BAR.PRM.SCHL.3539
## 1330                               BAR.PRM.SCHL.3539.FE
## 1331                                  BAR.PRM.SCHL.4044
## 1332                               BAR.PRM.SCHL.4044.FE
## 1333                                  BAR.PRM.SCHL.4549
## 1334                               BAR.PRM.SCHL.4549.FE
## 1335                                  BAR.PRM.SCHL.5054
## 1336                               BAR.PRM.SCHL.5054.FE
## 1337                                  BAR.PRM.SCHL.5559
## 1338                               BAR.PRM.SCHL.5559.FE
## 1339                                  BAR.PRM.SCHL.6064
## 1340                               BAR.PRM.SCHL.6064.FE
## 1341                                  BAR.PRM.SCHL.6569
## 1342                               BAR.PRM.SCHL.6569.FE
## 1343                                  BAR.PRM.SCHL.7074
## 1344                               BAR.PRM.SCHL.7074.FE
## 1345                                  BAR.PRM.SCHL.75UP
## 1346                               BAR.PRM.SCHL.75UP.FE
## 1347                                      BAR.SCHL.1519
## 1348                                   BAR.SCHL.1519.FE
## 1349                                      BAR.SCHL.15UP
## 1350                                   BAR.SCHL.15UP.FE
## 1351                                      BAR.SCHL.2024
## 1352                                   BAR.SCHL.2024.FE
## 1353                                      BAR.SCHL.2529
## 1354                                   BAR.SCHL.2529.FE
## 1355                                      BAR.SCHL.25UP
## 1356                                   BAR.SCHL.25UP.FE
## 1357                                      BAR.SCHL.3034
## 1358                                   BAR.SCHL.3034.FE
## 1359                                      BAR.SCHL.3539
## 1360                                   BAR.SCHL.3539.FE
## 1361                                      BAR.SCHL.4044
## 1362                                   BAR.SCHL.4044.FE
## 1363                                      BAR.SCHL.4549
## 1364                                   BAR.SCHL.4549.FE
## 1365                                      BAR.SCHL.5054
## 1366                                   BAR.SCHL.5054.FE
## 1367                                      BAR.SCHL.5559
## 1368                                   BAR.SCHL.5559.FE
## 1369                                      BAR.SCHL.6064
## 1370                                   BAR.SCHL.6064.FE
## 1371                                      BAR.SCHL.6569
## 1372                                   BAR.SCHL.6569.FE
## 1373                                      BAR.SCHL.7074
## 1374                                   BAR.SCHL.7074.FE
## 1375                                      BAR.SCHL.75UP
## 1376                                   BAR.SCHL.75UP.FE
## 1377                            BAR.SEC.CMPT.1519.FE.ZS
## 1378                               BAR.SEC.CMPT.1519.ZS
## 1379                            BAR.SEC.CMPT.15UP.FE.ZS
## 1380                               BAR.SEC.CMPT.15UP.ZS
## 1381                            BAR.SEC.CMPT.2024.FE.ZS
## 1382                               BAR.SEC.CMPT.2024.ZS
## 1383                            BAR.SEC.CMPT.2529.FE.ZS
## 1384                               BAR.SEC.CMPT.2529.ZS
## 1385                            BAR.SEC.CMPT.25UP.FE.ZS
## 1386                               BAR.SEC.CMPT.25UP.ZS
## 1387                            BAR.SEC.CMPT.3034.FE.ZS
## 1388                               BAR.SEC.CMPT.3034.ZS
## 1389                            BAR.SEC.CMPT.3539.FE.ZS
## 1390                               BAR.SEC.CMPT.3539.ZS
## 1391                            BAR.SEC.CMPT.4044.FE.ZS
## 1392                               BAR.SEC.CMPT.4044.ZS
## 1393                            BAR.SEC.CMPT.4549.FE.ZS
## 1394                               BAR.SEC.CMPT.4549.ZS
## 1395                            BAR.SEC.CMPT.5054.FE.ZS
## 1396                               BAR.SEC.CMPT.5054.ZS
## 1397                            BAR.SEC.CMPT.5559.FE.ZS
## 1398                               BAR.SEC.CMPT.5559.ZS
## 1399                            BAR.SEC.CMPT.6064.FE.ZS
## 1400                               BAR.SEC.CMPT.6064.ZS
## 1401                            BAR.SEC.CMPT.6569.FE.ZS
## 1402                               BAR.SEC.CMPT.6569.ZS
## 1403                            BAR.SEC.CMPT.7074.FE.ZS
## 1404                               BAR.SEC.CMPT.7074.ZS
## 1405                            BAR.SEC.CMPT.75UP.FE.ZS
## 1406                               BAR.SEC.CMPT.75UP.ZS
## 1407                            BAR.SEC.ICMP.1519.FE.ZS
## 1408                               BAR.SEC.ICMP.1519.ZS
## 1409                            BAR.SEC.ICMP.15UP.FE.ZS
## 1410                               BAR.SEC.ICMP.15UP.ZS
## 1411                            BAR.SEC.ICMP.2024.FE.ZS
## 1412                               BAR.SEC.ICMP.2024.ZS
## 1413                            BAR.SEC.ICMP.2529.FE.ZS
## 1414                               BAR.SEC.ICMP.2529.ZS
## 1415                            BAR.SEC.ICMP.25UP.FE.ZS
## 1416                               BAR.SEC.ICMP.25UP.ZS
## 1417                            BAR.SEC.ICMP.3034.FE.ZS
## 1418                               BAR.SEC.ICMP.3034.ZS
## 1419                            BAR.SEC.ICMP.3539.FE.ZS
## 1420                               BAR.SEC.ICMP.3539.ZS
## 1421                            BAR.SEC.ICMP.4044.FE.ZS
## 1422                               BAR.SEC.ICMP.4044.ZS
## 1423                            BAR.SEC.ICMP.4549.FE.ZS
## 1424                               BAR.SEC.ICMP.4549.ZS
## 1425                            BAR.SEC.ICMP.5054.FE.ZS
## 1426                               BAR.SEC.ICMP.5054.ZS
## 1427                            BAR.SEC.ICMP.5559.FE.ZS
## 1428                               BAR.SEC.ICMP.5559.ZS
## 1429                            BAR.SEC.ICMP.6064.FE.ZS
## 1430                               BAR.SEC.ICMP.6064.ZS
## 1431                            BAR.SEC.ICMP.6569.FE.ZS
## 1432                               BAR.SEC.ICMP.6569.ZS
## 1433                            BAR.SEC.ICMP.7074.FE.ZS
## 1434                               BAR.SEC.ICMP.7074.ZS
## 1435                            BAR.SEC.ICMP.75UP.FE.ZS
## 1436                               BAR.SEC.ICMP.75UP.ZS
## 1437                                  BAR.SEC.SCHL.1519
## 1438                               BAR.SEC.SCHL.1519.FE
## 1439                                  BAR.SEC.SCHL.15UP
## 1440                               BAR.SEC.SCHL.15UP.FE
## 1441                                  BAR.SEC.SCHL.2024
## 1442                               BAR.SEC.SCHL.2024.FE
## 1443                                  BAR.SEC.SCHL.2529
## 1444                               BAR.SEC.SCHL.2529.FE
## 1445                                  BAR.SEC.SCHL.25UP
## 1446                               BAR.SEC.SCHL.25UP.FE
## 1447                                  BAR.SEC.SCHL.3034
## 1448                               BAR.SEC.SCHL.3034.FE
## 1449                                  BAR.SEC.SCHL.3539
## 1450                               BAR.SEC.SCHL.3539.FE
## 1451                                  BAR.SEC.SCHL.4044
## 1452                               BAR.SEC.SCHL.4044.FE
## 1453                                  BAR.SEC.SCHL.4549
## 1454                               BAR.SEC.SCHL.4549.FE
## 1455                                  BAR.SEC.SCHL.5054
## 1456                               BAR.SEC.SCHL.5054.FE
## 1457                                  BAR.SEC.SCHL.5559
## 1458                               BAR.SEC.SCHL.5559.FE
## 1459                                  BAR.SEC.SCHL.6064
## 1460                               BAR.SEC.SCHL.6064.FE
## 1461                                  BAR.SEC.SCHL.6569
## 1462                               BAR.SEC.SCHL.6569.FE
## 1463                                  BAR.SEC.SCHL.7074
## 1464                               BAR.SEC.SCHL.7074.FE
## 1465                                  BAR.SEC.SCHL.75UP
## 1466                               BAR.SEC.SCHL.75UP.FE
## 1467                            BAR.TER.CMPT.1519.FE.ZS
## 1468                               BAR.TER.CMPT.1519.ZS
## 1469                            BAR.TER.CMPT.15UP.FE.ZS
## 1470                               BAR.TER.CMPT.15UP.ZS
## 1471                            BAR.TER.CMPT.2024.FE.ZS
## 1472                               BAR.TER.CMPT.2024.ZS
## 1473                            BAR.TER.CMPT.2529.FE.ZS
## 1474                               BAR.TER.CMPT.2529.ZS
## 1475                            BAR.TER.CMPT.25UP.FE.ZS
## 1476                               BAR.TER.CMPT.25UP.ZS
## 1477                            BAR.TER.CMPT.3034.FE.ZS
## 1478                               BAR.TER.CMPT.3034.ZS
## 1479                            BAR.TER.CMPT.3539.FE.ZS
## 1480                               BAR.TER.CMPT.3539.ZS
## 1481                            BAR.TER.CMPT.4044.FE.ZS
## 1482                               BAR.TER.CMPT.4044.ZS
## 1483                            BAR.TER.CMPT.4549.FE.ZS
## 1484                               BAR.TER.CMPT.4549.ZS
## 1485                            BAR.TER.CMPT.5054.FE.ZS
## 1486                               BAR.TER.CMPT.5054.ZS
## 1487                            BAR.TER.CMPT.5559.FE.ZS
## 1488                               BAR.TER.CMPT.5559.ZS
## 1489                            BAR.TER.CMPT.6064.FE.ZS
## 1490                               BAR.TER.CMPT.6064.ZS
## 1491                            BAR.TER.CMPT.6569.FE.ZS
## 1492                               BAR.TER.CMPT.6569.ZS
## 1493                            BAR.TER.CMPT.7074.FE.ZS
## 1494                               BAR.TER.CMPT.7074.ZS
## 1495                            BAR.TER.CMPT.75UP.FE.ZS
## 1496                               BAR.TER.CMPT.75UP.ZS
## 1497                            BAR.TER.ICMP.1519.FE.ZS
## 1498                               BAR.TER.ICMP.1519.ZS
## 1499                            BAR.TER.ICMP.15UP.FE.ZS
## 1500                               BAR.TER.ICMP.15UP.ZS
## 1501                            BAR.TER.ICMP.2024.FE.ZS
## 1502                               BAR.TER.ICMP.2024.ZS
## 1503                            BAR.TER.ICMP.2529.FE.ZS
## 1504                               BAR.TER.ICMP.2529.ZS
## 1505                            BAR.TER.ICMP.25UP.FE.ZS
## 1506                               BAR.TER.ICMP.25UP.ZS
## 1507                            BAR.TER.ICMP.3034.FE.ZS
## 1508                               BAR.TER.ICMP.3034.ZS
## 1509                            BAR.TER.ICMP.3539.FE.ZS
## 1510                               BAR.TER.ICMP.3539.ZS
## 1511                            BAR.TER.ICMP.4044.FE.ZS
## 1512                               BAR.TER.ICMP.4044.ZS
## 1513                            BAR.TER.ICMP.4549.FE.ZS
## 1514                               BAR.TER.ICMP.4549.ZS
## 1515                            BAR.TER.ICMP.5054.FE.ZS
## 1516                               BAR.TER.ICMP.5054.ZS
## 1517                            BAR.TER.ICMP.5559.FE.ZS
## 1518                               BAR.TER.ICMP.5559.ZS
## 1519                            BAR.TER.ICMP.6064.FE.ZS
## 1520                               BAR.TER.ICMP.6064.ZS
## 1521                            BAR.TER.ICMP.6569.FE.ZS
## 1522                               BAR.TER.ICMP.6569.ZS
## 1523                            BAR.TER.ICMP.7074.FE.ZS
## 1524                               BAR.TER.ICMP.7074.ZS
## 1525                            BAR.TER.ICMP.75UP.FE.ZS
## 1526                               BAR.TER.ICMP.75UP.ZS
## 1527                                  BAR.TER.SCHL.1519
## 1528                               BAR.TER.SCHL.1519.FE
## 1529                                  BAR.TER.SCHL.15UP
## 1530                               BAR.TER.SCHL.15UP.FE
## 1531                                  BAR.TER.SCHL.2024
## 1532                               BAR.TER.SCHL.2024.FE
## 1533                                  BAR.TER.SCHL.2529
## 1534                               BAR.TER.SCHL.2529.FE
## 1535                                  BAR.TER.SCHL.25UP
## 1536                               BAR.TER.SCHL.25UP.FE
## 1537                                  BAR.TER.SCHL.3034
## 1538                               BAR.TER.SCHL.3034.FE
## 1539                                  BAR.TER.SCHL.3539
## 1540                               BAR.TER.SCHL.3539.FE
## 1541                                  BAR.TER.SCHL.4044
## 1542                               BAR.TER.SCHL.4044.FE
## 1543                                  BAR.TER.SCHL.4549
## 1544                               BAR.TER.SCHL.4549.FE
## 1545                                  BAR.TER.SCHL.5054
## 1546                               BAR.TER.SCHL.5054.FE
## 1547                                  BAR.TER.SCHL.5559
## 1548                               BAR.TER.SCHL.5559.FE
## 1549                                  BAR.TER.SCHL.6064
## 1550                               BAR.TER.SCHL.6064.FE
## 1551                                  BAR.TER.SCHL.6569
## 1552                               BAR.TER.SCHL.6569.FE
## 1553                                  BAR.TER.SCHL.7074
## 1554                               BAR.TER.SCHL.7074.FE
## 1555                                  BAR.TER.SCHL.75UP
## 1556                               BAR.TER.SCHL.75UP.FE
## 1557                                  BG.GSR.NFSV.GD.ZS
## 1558                               BG.KAC.FNEI.GD.PP.ZS
## 1559                                  BG.KAC.FNEI.GD.ZS
## 1560                               BG.KLT.DINV.GD.PP.ZS
## 1561                                  BG.KLT.DINV.GD.ZS
## 1562                               BI.EMP.FRML.ED.PB.ZS
## 1563                               BI.EMP.FRML.HE.PB.ZS
## 1564                               BI.EMP.FRML.PB.ED.ZS
## 1565                               BI.EMP.FRML.PB.HE.ZS
## 1566                               BI.EMP.FRML.PB.PA.ZS
## 1567                                  BI.EMP.FRML.PB.ZS
## 1568                               BI.EMP.PUBS.FE.ED.ZS
## 1569                               BI.EMP.PUBS.FE.HE.ZS
## 1570                               BI.EMP.PWRK.ED.PB.ZS
## 1571                               BI.EMP.PWRK.HE.PB.ZS
## 1572                               BI.EMP.PWRK.PB.ED.ZS
## 1573                               BI.EMP.PWRK.PB.FE.ZS
## 1574                               BI.EMP.PWRK.PB.HE.ZS
## 1575                               BI.EMP.PWRK.PB.MA.ZS
## 1576                               BI.EMP.PWRK.PB.PA.ZS
## 1577                               BI.EMP.PWRK.PB.RU.ZS
## 1578                               BI.EMP.PWRK.PB.UR.ZS
## 1579                                  BI.EMP.PWRK.PB.ZS
## 1580                               BI.EMP.TOTL.ED.PB.ZS
## 1581                               BI.EMP.TOTL.HE.PB.ZS
## 1582                                     BI.EMP.TOTL.NO
## 1583                                  BI.EMP.TOTL.NO.ED
## 1584                                  BI.EMP.TOTL.NO.HE
## 1585                                  BI.EMP.TOTL.NO.PA
## 1586                               BI.EMP.TOTL.PB.ED.ZS
## 1587                               BI.EMP.TOTL.PB.FE.ZS
## 1588                               BI.EMP.TOTL.PB.HE.ZS
## 1589                               BI.EMP.TOTL.PB.MA.ZS
## 1590                               BI.EMP.TOTL.PB.PA.ZS
## 1591                               BI.EMP.TOTL.PB.RU.ZS
## 1592                               BI.EMP.TOTL.PB.TT.ZS
## 1593                               BI.EMP.TOTL.PB.UR.ZS
## 1594                                  BI.EMP.TOTL.PB.ZS
## 1595                                     BI.POP.TOTL.CV
## 1596                               BI.PWK.AGES.PB.ED.MD
## 1597                               BI.PWK.AGES.PB.ED.SM
## 1598                               BI.PWK.AGES.PB.HE.MD
## 1599                               BI.PWK.AGES.PB.HE.SM
## 1600                                  BI.PWK.AGES.PB.MD
## 1601                               BI.PWK.AGES.PB.PA.MD
## 1602                               BI.PWK.AGES.PB.PA.SM
## 1603                                  BI.PWK.AGES.PB.SM
## 1604                               BI.PWK.AGES.PV.ED.MD
## 1605                               BI.PWK.AGES.PV.ED.SM
## 1606                               BI.PWK.AGES.PV.HE.MD
## 1607                               BI.PWK.AGES.PV.HE.SM
## 1608                                  BI.PWK.AGES.PV.MD
## 1609                                  BI.PWK.AGES.PV.SM
## 1610                                  BI.PWK.CMPA.GE.MD
## 1611                                  BI.PWK.CMPA.GE.SM
## 1612                                  BI.PWK.CMPA.HD.MD
## 1613                                  BI.PWK.CMPA.HD.SM
## 1614                                  BI.PWK.CMPA.HN.MD
## 1615                                  BI.PWK.CMPA.HN.SM
## 1616                                  BI.PWK.CMPA.JU.MD
## 1617                                  BI.PWK.CMPA.JU.SM
## 1618                                  BI.PWK.CMPA.PO.MD
## 1619                                  BI.PWK.CMPA.PO.SM
## 1620                                  BI.PWK.CMPA.PT.MD
## 1621                                  BI.PWK.CMPA.PT.SM
## 1622                                  BI.PWK.CMPA.SN.MD
## 1623                                  BI.PWK.CMPA.SN.SM
## 1624                                  BI.PWK.CMPA.ST.MD
## 1625                                  BI.PWK.CMPA.ST.SM
## 1626                                  BI.PWK.CMPA.UT.MD
## 1627                                  BI.PWK.CMPA.UT.SM
## 1628                               BI.PWK.PRVS.CK.FE.ZS
## 1629                                  BI.PWK.PRVS.CT.ZS
## 1630                               BI.PWK.PRVS.EO.FE.ZS
## 1631                               BI.PWK.PRVS.FE.Q1.ZS
## 1632                               BI.PWK.PRVS.FE.Q2.ZS
## 1633                               BI.PWK.PRVS.FE.Q3.ZS
## 1634                               BI.PWK.PRVS.FE.Q4.ZS
## 1635                               BI.PWK.PRVS.FE.Q5.ZS
## 1636                                  BI.PWK.PRVS.FE.ZS
## 1637                                  BI.PWK.PRVS.HS.ZS
## 1638                                  BI.PWK.PRVS.NN.ZS
## 1639                               BI.PWK.PRVS.PN.FE.ZS
## 1640                                  BI.PWK.PRVS.PR.ZS
## 1641                                  BI.PWK.PRVS.RU.ZS
## 1642                                  BI.PWK.PRVS.SG.ZS
## 1643                               BI.PWK.PRVS.SN.FE.ZS
## 1644                                  BI.PWK.PRVS.SY.ZS
## 1645                               BI.PWK.PRVS.TN.FE.ZS
## 1646                               BI.PWK.PRVS.TT.ED.ZS
## 1647                               BI.PWK.PRVS.TT.HE.ZS
## 1648                                  BI.PWK.PRVS.TT.ZS
## 1649                                  BI.PWK.PRVS.UM.ZS
## 1650                               BI.PWK.PUBS.CK.FE.ZS
## 1651                                  BI.PWK.PUBS.CT.ZS
## 1652                               BI.PWK.PUBS.ED.FE.ZS
## 1653                               BI.PWK.PUBS.EO.FE.ZS
## 1654                               BI.PWK.PUBS.FE.Q1.ZS
## 1655                               BI.PWK.PUBS.FE.Q2.ZS
## 1656                               BI.PWK.PUBS.FE.Q3.ZS
## 1657                               BI.PWK.PUBS.FE.Q4.ZS
## 1658                               BI.PWK.PUBS.FE.Q5.ZS
## 1659                                  BI.PWK.PUBS.FE.ZS
## 1660                               BI.PWK.PUBS.HE.FE.ZS
## 1661                                  BI.PWK.PUBS.HS.ZS
## 1662                                  BI.PWK.PUBS.NN.ZS
## 1663                                     BI.PWK.PUBS.NO
## 1664                                  BI.PWK.PUBS.NO.ED
## 1665                                  BI.PWK.PUBS.NO.HE
## 1666                                  BI.PWK.PUBS.NO.PA
## 1667                               BI.PWK.PUBS.PA.FE.ZS
## 1668                               BI.PWK.PUBS.PN.FE.ZS
## 1669                                  BI.PWK.PUBS.PR.ZS
## 1670                               BI.PWK.PUBS.RU.ED.ZS
## 1671                               BI.PWK.PUBS.RU.HE.ZS
## 1672                               BI.PWK.PUBS.RU.PA.ZS
## 1673                                  BI.PWK.PUBS.RU.ZS
## 1674                                  BI.PWK.PUBS.SG.ZS
## 1675                               BI.PWK.PUBS.SN.FE.ZS
## 1676                                  BI.PWK.PUBS.SY.ZS
## 1677                               BI.PWK.PUBS.TN.FE.ZS
## 1678                               BI.PWK.PUBS.TT.ED.ZS
## 1679                               BI.PWK.PUBS.TT.HE.ZS
## 1680                               BI.PWK.PUBS.TT.PA.ZS
## 1681                                  BI.PWK.PUBS.TT.ZS
## 1682                                  BI.PWK.PUBS.UM.ZS
## 1683                                     BI.PWK.TOTL.NO
## 1684                                  BI.PWK.TOTL.NO.ED
## 1685                                  BI.PWK.TOTL.NO.HE
## 1686                                  BI.PWK.TOTL.NO.PA
## 1687                               BI.WAG.CPRS.PB.GE.ZS
## 1688                               BI.WAG.CPRS.PB.HD.ZS
## 1689                               BI.WAG.CPRS.PB.HN.ZS
## 1690                               BI.WAG.CPRS.PB.JU.ZS
## 1691                               BI.WAG.CPRS.PB.PO.ZS
## 1692                               BI.WAG.CPRS.PB.PT.ZS
## 1693                               BI.WAG.CPRS.PB.SN.ZS
## 1694                               BI.WAG.CPRS.PB.ST.ZS
## 1695                               BI.WAG.CPRS.PB.UT.ZS
## 1696                                  BI.WAG.CPRS.PB.ZS
## 1697                                  BI.WAG.CPRS.PV.ZS
## 1698                                     BI.WAG.PREM.ED
## 1699                                  BI.WAG.PREM.ED.GP
## 1700                                  BI.WAG.PREM.FE.ED
## 1701                                  BI.WAG.PREM.FE.HE
## 1702                                     BI.WAG.PREM.HE
## 1703                                  BI.WAG.PREM.HE.GP
## 1704                                  BI.WAG.PREM.MA.ED
## 1705                                  BI.WAG.PREM.MA.HE
## 1706                                     BI.WAG.PREM.PB
## 1707                                  BI.WAG.PREM.PB.CK
## 1708                                  BI.WAG.PREM.PB.ED
## 1709                               BI.WAG.PREM.PB.ED.PE
## 1710                               BI.WAG.PREM.PB.ED.WE
## 1711                                  BI.WAG.PREM.PB.EO
## 1712                                  BI.WAG.PREM.PB.FE
## 1713                               BI.WAG.PREM.PB.FE.ED
## 1714                               BI.WAG.PREM.PB.FE.HE
## 1715                                  BI.WAG.PREM.PB.FL
## 1716                                  BI.WAG.PREM.PB.FM
## 1717                               BI.WAG.PREM.PB.FM.ED
## 1718                               BI.WAG.PREM.PB.FM.HE
## 1719                               BI.WAG.PREM.PB.FM.PA
## 1720                                  BI.WAG.PREM.PB.GP
## 1721                               BI.WAG.PREM.PB.HE.PE
## 1722                               BI.WAG.PREM.PB.HE.WE
## 1723                                  BI.WAG.PREM.PB.MA
## 1724                               BI.WAG.PREM.PB.MA.ED
## 1725                               BI.WAG.PREM.PB.MA.HE
## 1726                                  BI.WAG.PREM.PB.NN
## 1727                                  BI.WAG.PREM.PB.OC
## 1728                                  BI.WAG.PREM.PB.PN
## 1729                                  BI.WAG.PREM.PB.PR
## 1730                                  BI.WAG.PREM.PB.PV
## 1731                                  BI.WAG.PREM.PB.SG
## 1732                                  BI.WAG.PREM.PB.SN
## 1733                                  BI.WAG.PREM.PB.TN
## 1734                                  BI.WAG.PREM.PB.TT
## 1735                               BI.WAG.PREM.PV.FM.ED
## 1736                               BI.WAG.PREM.PV.FM.HE
## 1737                                  BI.WAG.PRVS.ED.FM
## 1738                                  BI.WAG.PRVS.FM.MD
## 1739                                  BI.WAG.PRVS.FM.SM
## 1740                                  BI.WAG.PRVS.HE.FM
## 1741                                     BI.WAG.PRVS.PN
## 1742                                     BI.WAG.PRVS.SN
## 1743                                     BI.WAG.PRVS.TN
## 1744                                  BI.WAG.PUBS.ED.FM
## 1745                                  BI.WAG.PUBS.FM.MD
## 1746                                  BI.WAG.PUBS.FM.SM
## 1747                                  BI.WAG.PUBS.HE.FM
## 1748                                  BI.WAG.PUBS.PA.FM
## 1749                                     BI.WAG.PUBS.PN
## 1750                                     BI.WAG.PUBS.SN
## 1751                                     BI.WAG.PUBS.TN
## 1752                                  BI.WAG.TOTL.GD.ZS
## 1753                                  BI.WAG.TOTL.PB.ZS
## 1754                                  BM.AG.AGR.TRAC.CD
## 1755                                  BM.AG.AGR.TRAC.NO
## 1756                                      BM.AG.CREL.CD
## 1757                                      BM.AG.CREL.MT
## 1758                                      BM.AG.FRST.CD
## 1759                                   BM.AG.HZ.PEST.CD
## 1760                                      BM.AG.PEST.CD
## 1761                                     BM.FOD.AGRI.CD
## 1762                                     BM.GSR.AGRI.CD
## 1763                                     BM.GSR.CMCP.ZS
## 1764                                     BM.GSR.COMM.CD
## 1765                                     BM.GSR.FCTY.CD
## 1766                                     BM.GSR.FINS.CD
## 1767                                     BM.GSR.FXAI.CD
## 1768                                     BM.GSR.GNFS.CD
## 1769                                     BM.GSR.INSF.ZS
## 1770                                     BM.GSR.INSU.CD
## 1771                                     BM.GSR.MRCH.CD
## 1772                                     BM.GSR.MRCH.ZS
## 1773                                     BM.GSR.NFSV.CD
## 1774                                     BM.GSR.OSRV.CD
## 1775                                     BM.GSR.ROYL.CD
## 1776                                     BM.GSR.SERV.CD
## 1777                                     BM.GSR.TOTL.CD
## 1778                                     BM.GSR.TRAN.CD
## 1779                                     BM.GSR.TRAN.ZS
## 1780                                     BM.GSR.TRVL.CD
## 1781                                     BM.GSR.TRVL.ZS
## 1782                                     BM.KLT.DINV.CD
## 1783                                  BM.KLT.DINV.CD.WD
## 1784                                  BM.KLT.DINV.GD.ZS
## 1785                               BM.KLT.DINV.WD.GD.ZS
## 1786                                     BM.SVF.TOTL.CD
## 1787                                     BM.SVN.TOTL.CD
## 1788                                     BM.TRF.CURR.CD
## 1789                                      BM.TRF.MGR.CD
## 1790                                     BM.TRF.OFDC.CD
## 1791                                     BM.TRF.PRVT.CD
## 1792                                     BM.TRF.PWKR.CD
## 1793                                  BM.TRF.PWKR.CD.DT
## 1794                                     BM.TRF.XOKA.CD
## 1795                                     BN.CAB.FUND.CD
## 1796                                     BN.CAB.IOTR.CD
## 1797                                     BN.CAB.XOKA.CD
## 1798                                  BN.CAB.XOKA.GD.ZS
## 1799                                 BN.CAB.XOKA.GDP.ZS
## 1800                                  BN.CAB.XOKA.GN.ZS
## 1801                                     BN.CAB.XOTR.CD
## 1802                                     BN.CAB.XOTR.ZS
## 1803                                     BN.CUR.ACTN.CD
## 1804                                     BN.CUR.ACTX.CD
## 1805                                     BN.CUR.GDPM.ZS
## 1806                                     BN.DSR.UNPD.CD
## 1807                                     BN.FAC.ARAC.CD
## 1808                                     BN.FIN.TOTL.CD
## 1809                                     BN.FIN.TOTP.CD
## 1810                                     BN.GSR.FCTY.CD
## 1811                                  BN.GSR.FCTY.CD.ZS
## 1812                                     BN.GSR.GNFS.CD
## 1813                                     BN.GSR.MRCH.CD
## 1814                                     BN.KAC.EOMS.CD
## 1815                                     BN.KAC.FNEI.CD
## 1816                                     BN.KAC.OTHR.CD
## 1817                                     BN.KAP.RSDL.CD
## 1818                                     BN.KLT.DINV.CD
## 1819                                 BN.KLT.DINV.CD.DRS
## 1820                                  BN.KLT.DINV.CD.ZS
## 1821                             BN.KLT.DINV.DRS.GDI.ZS
## 1822                             BN.KLT.DINV.DRS.GDP.ZS
## 1823                                     BN.KLT.NFLW.CD
## 1824                                     BN.KLT.OINV.CD
## 1825                                     BN.KLT.OTHR.CD
## 1826                                     BN.KLT.PRVT.CD
## 1827                                  BN.KLT.PRVT.CD.DT
## 1828                                  BN.KLT.PRVT.GD.ZS
## 1829                                     BN.KLT.PTXL.CD
## 1830                                     BN.KLT.RSDL.CD
## 1831                                     BN.KLT.TOTL.CD
## 1832                                     BN.KLT.TOTX.CD
## 1833                                     BN.KLT.XRSL.CD
## 1834                                     BN.PEF.TOTL.CD
## 1835                                     BN.RES.4040.CD
## 1836                                     BN.RES.INCL.CD
## 1837                                     BN.RES.LFAR.CD
## 1838                                     BN.TRF.CURR.CD
## 1839                                  BN.TRF.CURR.CD.ZS
## 1840                                     BN.TRF.KOGT.CD
## 1841                                     BN.TRF.OFDC.CD
## 1842                                     BN.TRF.OFFK.CD
## 1843                                     BN.TRF.OFFN.CD
## 1844                                     BN.TRF.OFFT.CD
## 1845                                     BN.TRF.PRVT.CD
## 1846                                     BN.TRF.PWKR.CD
## 1847                                  BN.TRF.PWKR.CD.DT
## 1848                                     BN.TRF.XOKA.CD
## 1849                                     BN.TRN.KOGT.CD
## 1850                                       BPK.AUD.SUBN
## 1851                                  BX.AG.AGR.TRAC.CD
## 1852                                  BX.AG.AGR.TRAC.NO
## 1853                                      BX.AG.CREL.CD
## 1854                                      BX.AG.CREL.MT
## 1855                                      BX.AG.FRST.CD
## 1856                                   BX.AG.HZ.PEST.CD
## 1857                                      BX.AG.PEST.CD
## 1858                                     BX.FOD.AGRI.CD
## 1859                                  BX.GRT.EXTA.CD.DT
## 1860                                  BX.GRT.EXTA.CD.WD
## 1861                                  BX.GRT.TECH.CD.DT
## 1862                                  BX.GRT.TECH.CD.WD
## 1863                                     BX.GSR.AGRI.CD
## 1864                                     BX.GSR.CCIS.CD
## 1865                                     BX.GSR.CCIS.ZS
## 1866                                     BX.GSR.CMCP.ZS
## 1867                                     BX.GSR.COMM.CD
## 1868                                     BX.GSR.FCTY.CD
## 1869                                     BX.GSR.FINS.CD
## 1870                                     BX.GSR.GNFS.CD
## 1871                                     BX.GSR.INCL.CD
## 1872                                     BX.GSR.INSF.ZS
## 1873                                     BX.GSR.INSU.CD
## 1874                                     BX.GSR.MRCH.CD
## 1875                                     BX.GSR.MRCH.ZS
## 1876                                     BX.GSR.NFSV.CD
## 1877                                     BX.GSR.OSRV.CD
## 1878                                     BX.GSR.ROYL.CD
## 1879                                     BX.GSR.TOTL.CD
## 1880                                     BX.GSR.TRAN.CD
## 1881                                     BX.GSR.TRAN.ZS
## 1882                                     BX.GSR.TRVL.CD
## 1883                                     BX.GSR.TRVL.ZS
## 1884                                     BX.KLT.DINV.CD
## 1885                                  BX.KLT.DINV.CD.DT
## 1886                                  BX.KLT.DINV.CD.WD
## 1887                               BX.KLT.DINV.DT.GD.ZS
## 1888                               BX.KLT.DINV.DT.GI.ZS
## 1889                               BX.KLT.DINV.WD.GD.ZS
## 1890                                  BX.KLT.DREM.CD.DT
## 1891                                     BX.PEF.TOTL.CD
## 1892                                  BX.PEF.TOTL.CD.DT
## 1893                                  BX.PEF.TOTL.CD.WD
## 1894                                     BX.SVF.TOTL.CD
## 1895                                     BX.SVN.TOTL.CD
## 1896                                     BX.TRF.CURR.CD
## 1897                                      BX.TRF.MGR.CD
## 1898                                BX.TRF.MGR.DT.GD.ZS
## 1899                                     BX.TRF.OFDC.CD
## 1900                                     BX.TRF.OFFT.CD
## 1901                                     BX.TRF.PRVT.CD
## 1902                                     BX.TRF.PWKR.CD
## 1903                                  BX.TRF.PWKR.CD.DT
## 1904                               BX.TRF.PWKR.DT.GD.ZS
## 1905                                  BX.TRF.PWKR.GD.ZS
## 1906                                     BX.TRF.XOKA.CD
## 1907                                              C0.01
## 1908                                              C0.02
## 1909                                              C0.5a
## 1910                                              C0.6a
## 1911                                              C0.6b
## 1912                                                 C1
## 1913                                              C1.10
## 1914                                             C1.11b
## 1915                                              C1.12
## 1916                                               C1.2
## 1917                                               C1.4
## 1918                                               C1.5
## 1919                                               C1.6
## 1920                                               C1.7
## 1921                                               C1.8
## 1922                                               C1.9
## 1923                                                 C2
## 1924                                               C2.1
## 1925                                               C2.2
## 1926                                               C2.3
## 1927                                              C2.4a
## 1928                                              C2.4b
## 1929                                              C2.5a
## 1930                                              C2.5b
## 1931                                              C2.5c
## 1932                                              C2.5d
## 1933                                              C2.5e
## 1934                                               C2.6
## 1935                                              C2.7a
## 1936                                              C2.7b
## 1937                                              C2.7c
## 1938                                              C2.7d
## 1939                                              C2.7e
## 1940                                              C2.7f
## 1941                                              C2.7g
## 1942                                              C2.7h
## 1943                                              C2.7i
## 1944                                              C2.7j
## 1945                                             C2.7ka
## 1946                                             C2.7kb
## 1947                                             C2.7kc
## 1948                                             C2.7la
## 1949                                             C2.7lb
## 1950                                             C2.7lc
## 1951                                              C2.7m
## 1952                                              C2.7n
## 1953                                             C2.7oa
## 1954                                             C2.7ob
## 1955                                             C2.7oc
## 1956                                             C2.7pa
## 1957                                             C2.7pb
## 1958                                             C2.7pc
## 1959                                                 C3
## 1960                                              C3.1a
## 1961                                              C3.1b
## 1962                                              C3.1c
## 1963                                              C3.1d
## 1964                                              C3.1e
## 1965                                             C3.1fa
## 1966                                             C3.1fb
## 1967                                              C3.1g
## 1968                                              C3.1h
## 1969                                              C3.1i
## 1970                                              C3.1j
## 1971                                              C3.1k
## 1972                                              C3.1l
## 1973                                              C3.1m
## 1974                                               C3.2
## 1975                                               C3.3
## 1976                                              C3.4a
## 1977                                              C3.4b
## 1978                                               C3.5
## 1979                                              C3.6a
## 1980                                              C3.6b
## 1981                                              C3.6c
## 1982                                                 C4
## 1983                                               C4.1
## 1984                                             C4.10a
## 1985                                             C4.10b
## 1986                                             C4.10c
## 1987                                             C4.11a
## 1988                                             C4.11b
## 1989                                             C4.11c
## 1990                                              C4.12
## 1991                                              C4.13
## 1992                                              C4.14
## 1993                                              C4.15
## 1994                                              C4.2a
## 1995                                              C4.2b
## 1996                                              C4.3a
## 1997                                              C4.3b
## 1998                                              C4.4a
## 1999                                              C4.4b
## 2000                                              C4.4c
## 2001                                              C4.4d
## 2002                                              C4.4e
## 2003                                              C4.4f
## 2004                                              C4.5a
## 2005                                              C4.5b
## 2006                                              C4.5c
## 2007                                              C4.5d
## 2008                                              C4.6a
## 2009                                              C4.6b
## 2010                                              C4.6c
## 2011                                              C4.6d
## 2012                                              C4.7a
## 2013                                              C4.7b
## 2014                                              C4.8a
## 2015                                              C4.8b
## 2016                                              C4.9a
## 2017                                              C4.9b
## 2018                                              C4.9c
## 2019                                              C4.9d
## 2020                                                 C5
## 2021                                               C5.1
## 2022                                               C5.2
## 2023                                                 C6
## 2024                                    CC.ADPO.MAEX.AA
## 2025                                    CC.ADPO.MAEX.BB
## 2026                                    CC.ADPO.MIEX.AA
## 2027                                    CC.ADPO.MIEX.BB
## 2028                                     CC.AG.NTR.TOHA
## 2029                                    CC.AVPB.PTPI.AI
## 2030                                    CC.AVPB.PTPI.AR
## 2031                                    CC.AVPB.PTPI.DI
## 2032                                    CC.AVPB.PTPI.FP
## 2033                                    CC.AVPB.PTPI.HE
## 2034                                    CC.AVPB.PTPI.LP
## 2035                                    CC.AVPB.TPOP.AG
## 2036                                    CC.AVPB.TPOP.AI
## 2037                                    CC.AVPB.TPOP.DI
## 2038                                    CC.AVPB.TPOP.HE
## 2039                                    CC.AVPB.TPOP.TE
## 2040                                    CC.CHIC.BTFP.AG
## 2041                                    CC.CHIC.BTFP.AI
## 2042                                    CC.CHIC.BTFP.DI
## 2043                                    CC.CHIC.BTFP.HE
## 2044                                    CC.CHIC.BTFP.TE
## 2045                                    CC.CHIC.CFPI.AG
## 2046                                    CC.CHIC.CFPI.AI
## 2047                                    CC.CHIC.CFPI.DI
## 2048                                    CC.CHIC.CFPI.FP
## 2049                                    CC.CHIC.CFPI.HE
## 2050                                    CC.CHIC.CFPI.LP
## 2051                                     CC.CO2.EMSE.BF
## 2052                                     CC.CO2.EMSE.BL
## 2053                                     CC.CO2.EMSE.EL
## 2054                                     CC.CO2.EMSE.EN
## 2055                                     CC.CO2.EMSE.FE
## 2056                                     CC.CO2.EMSE.IL
## 2057                                     CC.CO2.EMSE.IP
## 2058                                     CC.CO2.EMSE.LU
## 2059                                     CC.CO2.EMSE.MC
## 2060                                     CC.CO2.EMSE.TR
## 2061                                    CC.COAL.EMIS.CH
## 2062                                    CC.COAL.EMIS.CO
## 2063                                    CC.COAL.EMPR.CH
## 2064                                    CC.COAL.PROD.OP
## 2065                                    CC.COAL.PROD.PR
## 2066                                        CC.CUF.STUN
## 2067                                         CC.DEN.AFO
## 2068                                         CC.DEN.AGS
## 2069                                         CC.DEN.CRE
## 2070                                         CC.DEN.EAL
## 2071                                         CC.DEN.FGE
## 2072                                         CC.DEN.IPA
## 2073                                         CC.DEN.MLP
## 2074                                         CC.DEN.SAS
## 2075                                         CC.DEN.SFE
## 2076                                         CC.EAR.AFO
## 2077                                         CC.EAR.AGS
## 2078                                         CC.EAR.BCR
## 2079                                         CC.EAR.CRE
## 2080                                         CC.EAR.DOC
## 2081                                         CC.EAR.DON
## 2082                                         CC.EAR.DOS
## 2083                                         CC.EAR.EAL
## 2084                                         CC.EAR.EFE
## 2085                                         CC.EAR.FFR
## 2086                                         CC.EAR.FGE
## 2087                                         CC.EAR.FOR
## 2088                                         CC.EAR.FOS
## 2089                                         CC.EAR.FTR
## 2090                                         CC.EAR.IPA
## 2091                                         CC.EAR.LUC
## 2092                                         CC.EAR.LUL
## 2093                                         CC.EAR.MLP
## 2094                                         CC.EAR.MMA
## 2095                                         CC.EAR.NFC
## 2096                                         CC.EAR.OEU
## 2097                                         CC.EAR.RCA
## 2098                                         CC.EAR.SAS
## 2099                                         CC.EAR.SFE
## 2100                                         CC.EAR.SVF
## 2101                                         CC.ECA.AFO
## 2102                                         CC.ECA.BCR
## 2103                                         CC.ECA.EAL
## 2104                                         CC.ECA.EFE
## 2105                                         CC.ECA.FFR
## 2106                                         CC.ECA.FGE
## 2107                                         CC.ECA.FOS
## 2108                                         CC.ECA.FTR
## 2109                                     CC.ECA.GAEX.CA
## 2110                                     CC.ECA.GAEX.ID
## 2111                                     CC.ECA.GAEX.OP
## 2112                                     CC.ECA.GAEX.SH
## 2113                                     CC.ECA.GAIM.CA
## 2114                                     CC.ECA.GAIM.ID
## 2115                                     CC.ECA.GAIM.OP
## 2116                                     CC.ECA.GAIM.SH
## 2117                                         CC.ECA.IPA
## 2118                                         CC.ECA.LUC
## 2119                                         CC.ECA.LUL
## 2120                                         CC.ECA.MMA
## 2121                                         CC.ECA.OEU
## 2122                                         CC.ECA.RCA
## 2123                                         CC.ECA.SVF
## 2124                                         CC.ECH.AFO
## 2125                                         CC.ECH.BCR
## 2126                                         CC.ECH.EAL
## 2127                                         CC.ECH.EFE
## 2128                                         CC.ECH.FFR
## 2129                                         CC.ECH.FGE
## 2130                                         CC.ECH.FOS
## 2131                                         CC.ECH.FTR
## 2132                                         CC.ECH.IPA
## 2133                                         CC.ECH.LUC
## 2134                                         CC.ECH.LUL
## 2135                                         CC.ECH.MMA
## 2136                                         CC.ECH.OEU
## 2137                                         CC.ECH.RCA
## 2138                                         CC.ECH.SVF
## 2139                                         CC.ECO.AFO
## 2140                                         CC.ECO.DOC
## 2141                                         CC.ECO.EAL
## 2142                                         CC.ECO.FGE
## 2143                                         CC.ECO.FOR
## 2144                                         CC.ECO.FOS
## 2145                                         CC.ECO.LUC
## 2146                                         CC.ECO.LUL
## 2147                                         CC.ECO.NFC
## 2148                                         CC.ECO.OEU
## 2149                                 CC.EG.CONS.COAL.PC
## 2150                                  CC.EG.CONS.GAS.PC
## 2151                                  CC.EG.CONS.OIL.PC
## 2152                                     CC.EG.EMIS.MAN
## 2153                                      CC.EG.INTS.KW
## 2154                                      CC.EG.SOLR.KW
## 2155                                     CC.EG.STL.PROD
## 2156                                      CC.EG.SUBF.PC
## 2157                                      CC.EG.WIND.PC
## 2158                                    CC.EG.WIND.TOTL
## 2159                                        CC.ELEC.CON
## 2160                                        CC.ELEC.GEN
## 2161                                  CC.EN.ATM.COAL.CE
## 2162                                         CC.ENA.AFO
## 2163                                         CC.ENA.AGS
## 2164                                         CC.ENA.BCR
## 2165                                         CC.ENA.CRE
## 2166                                         CC.ENA.DON
## 2167                                         CC.ENA.EAL
## 2168                                         CC.ENA.FFR
## 2169                                         CC.ENA.FGE
## 2170                                         CC.ENA.FTR
## 2171                                         CC.ENA.IPA
## 2172                                         CC.ENA.LUC
## 2173                                         CC.ENA.LUL
## 2174                                         CC.ENA.MLP
## 2175                                         CC.ENA.MMA
## 2176                                         CC.ENA.OEU
## 2177                                         CC.ENA.SAS
## 2178                                         CC.ENA.SFE
## 2179                                         CC.ENA.SVF
## 2180                                         CC.ENO.AFO
## 2181                                         CC.ENO.AGS
## 2182                                         CC.ENO.BCR
## 2183                                         CC.ENO.CRE
## 2184                                         CC.ENO.DON
## 2185                                         CC.ENO.EAL
## 2186                                         CC.ENO.FFR
## 2187                                         CC.ENO.FGE
## 2188                                         CC.ENO.FTR
## 2189                                         CC.ENO.IPA
## 2190                                         CC.ENO.LUC
## 2191                                         CC.ENO.LUL
## 2192                                         CC.ENO.MLP
## 2193                                         CC.ENO.MMA
## 2194                                         CC.ENO.OEU
## 2195                                         CC.ENO.SAS
## 2196                                         CC.ENO.SFE
## 2197                                         CC.ENO.SVF
## 2198                                     CC.ENTX.ENE.ZS
## 2199                                    CC.ENV.GDS.CADV
## 2200                                     CC.ENV.TRAD.EX
## 2201                                     CC.ENV.TRAD.IM
## 2202                                        CC.ESG.AGFE
## 2203                                        CC.ESG.AGMA
## 2204                                        CC.ESG.CMFE
## 2205                                        CC.ESG.CMMA
## 2206                                        CC.ESG.CNFE
## 2207                                        CC.ESG.CNMA
## 2208                                        CC.ESG.EUFE
## 2209                                        CC.ESG.EUMA
## 2210                                        CC.ESG.FBFE
## 2211                                        CC.ESG.FBMA
## 2212                                        CC.ESG.INFE
## 2213                                        CC.ESG.INMA
## 2214                                        CC.ESG.MAFE
## 2215                                        CC.ESG.MAMA
## 2216                                        CC.ESG.MIFE
## 2217                                        CC.ESG.MIMA
## 2218                                        CC.ESG.OSFE
## 2219                                        CC.ESG.OSMA
## 2220                                        CC.ESG.PAFE
## 2221                                        CC.ESG.PAMA
## 2222                                        CC.ESG.PSFE
## 2223                                        CC.ESG.PSMA
## 2224                                        CC.ESG.SEFE
## 2225                                        CC.ESG.SEMA
## 2226                                        CC.ESG.TCFE
## 2227                                        CC.ESG.TCMA
## 2228                                             CC.EST
## 2229                                     CC.FGHG.SYS.CS
## 2230                                     CC.FGHG.SYS.EO
## 2231                                     CC.FGHG.SYS.LU
## 2232                                     CC.FGHG.SYS.PC
## 2233                                     CC.FGHG.SYS.PD
## 2234                                     CC.FGHG.SYS.RE
## 2235                                     CC.FGHG.SYS.TR
## 2236                                     CC.FLD.BELW.ZS
## 2237                                     CC.FLD.TOTL.ZS
## 2238                                    CC.FOOD.ANIM.ZS
## 2239                                    CC.FOOD.VEGT.ZS
## 2240                                    CC.FRVOL.MOD.AI
## 2241                                    CC.FRVOL.MOD.IW
## 2242                                    CC.FRVOL.MOD.RA
## 2243                                    CC.FRVOL.MOD.RO
## 2244                                     CC.GAS.PPBC.CN
## 2245                                     CC.GAS.PPBC.CO
## 2246                                     CC.GAS.PPBC.ID
## 2247                                     CC.GAS.PPBC.MB
## 2248                                     CC.GAS.PPBC.OP
## 2249                                     CC.GAS.PPBC.PR
## 2250                                     CC.GAS.PPBC.SH
## 2251                                     CC.GHG.EMSE.AG
## 2252                                     CC.GHG.EMSE.BF
## 2253                                     CC.GHG.EMSE.BL
## 2254                                     CC.GHG.EMSE.EH
## 2255                                     CC.GHG.EMSE.EL
## 2256                                     CC.GHG.EMSE.EN
## 2257                                     CC.GHG.EMSE.FE
## 2258                                     CC.GHG.EMSE.IL
## 2259                                     CC.GHG.EMSE.IP
## 2260                                     CC.GHG.EMSE.LU
## 2261                                     CC.GHG.EMSE.MC
## 2262                                     CC.GHG.EMSE.OF
## 2263                                     CC.GHG.EMSE.TR
## 2264                                     CC.GHG.EMSE.WA
## 2265                                     CC.GHG.FSYS.CH
## 2266                                     CC.GHG.FSYS.CO
## 2267                                     CC.GHG.FSYS.FG
## 2268                                     CC.GHG.FSYS.NO
## 2269                                        CC.GHG.GRPE
## 2270                                     CC.GHG.MEMG.EI
## 2271                                     CC.GHG.MEMG.GC
## 2272                                     CC.GHG.MEMG.PO
## 2273                                        CC.GHG.PECA
## 2274                                     CC.GHG.SDEG.AG
## 2275                                     CC.GHG.SDEG.BU
## 2276                                     CC.GHG.SDEG.EH
## 2277                                     CC.GHG.SDEG.FE
## 2278                                     CC.GHG.SDEG.LU
## 2279                                     CC.GHG.SDEG.MC
## 2280                                     CC.GHG.SDEG.OF
## 2281                                     CC.GHG.SDEG.TR
## 2282                                     CC.GHG.SDEG.WA
## 2283                                     CC.GNBD.ISS.BD
## 2284                                         CC.IEN.AFO
## 2285                                         CC.IEN.AGS
## 2286                                         CC.IEN.CRE
## 2287                                         CC.IEN.EAL
## 2288                                         CC.IEN.FGE
## 2289                                         CC.IEN.IPA
## 2290                                         CC.IEN.MLP
## 2291                                         CC.IEN.SAS
## 2292                                         CC.IEN.SFE
## 2293                                       CC.INCP.ALRS
## 2294                                       CC.INCP.KRGC
## 2295                                       CC.INCP.SPMC
## 2296                                        CC.ISG.FFFE
## 2297                                        CC.ISG.FFMA
## 2298                                        CC.ISG.NAFE
## 2299                                        CC.ISG.NAMA
## 2300                                        CC.ISG.NBFE
## 2301                                        CC.ISG.NBMA
## 2302                                      CC.KBA.MRN.ZS
## 2303                                     CC.KBA.TERR.ZS
## 2304                                      CC.NCO.GHG.AG
## 2305                                      CC.NCO.GHG.EL
## 2306                                      CC.NCO.GHG.EN
## 2307                                      CC.NCO.GHG.FE
## 2308                                      CC.NCO.GHG.IL
## 2309                                      CC.NCO.GHG.IP
## 2310                                      CC.NCO.GHG.OF
## 2311                                      CC.NCO.GHG.WA
## 2312                                    CC.NEFO.IMCR.BA
## 2313                                    CC.NEFO.IMCR.BP
## 2314                                    CC.NEFO.IMCR.MA
## 2315                                    CC.NEFO.IMCR.RB
## 2316                                    CC.NEFO.IMCR.RE
## 2317                                    CC.NEFO.IMCR.RH
## 2318                                    CC.NEFO.IMCR.RI
## 2319                                    CC.NEFO.IMCR.RM
## 2320                                    CC.NEFO.IMCR.SB
## 2321                                    CC.NEFO.IMCR.WH
## 2322                                          CC.NO.SRC
## 2323                                     CC.OIL.PSBC.CN
## 2324                                     CC.OIL.PSBC.CO
## 2325                                     CC.OIL.PSBC.ID
## 2326                                     CC.OIL.PSBC.OP
## 2327                                     CC.OIL.PSBC.PR
## 2328                                     CC.OIL.PSBC.RT
## 2329                                     CC.OIL.PSBC.SH
## 2330                                     CC.OPCO.AG.CA1
## 2331                                     CC.OPCO.AG.CA2
## 2332                                     CC.OPCO.AG.CA3
## 2333                                     CC.OPCO.AG.CA4
## 2334                                     CC.OPCO.AG.CA5
## 2335                                     CC.OPCO.AG.CA6
## 2336                                    CC.OPCO.PLTY.CC
## 2337                                    CC.OPCO.PLTY.CF
## 2338                                    CC.OPCO.PLTY.IG
## 2339                                    CC.OPCO.PLTY.SC
## 2340                                    CC.OPCO.PLTY.SU
## 2341                                    CC.OPCO.PLTY.UK
## 2342                                    CC.OPCO.PLTY.US
## 2343                                         CC.PER.RNK
## 2344                                   CC.PER.RNK.LOWER
## 2345                                   CC.PER.RNK.UPPER
## 2346                                    CC.PRNX.CAT1.ZS
## 2347                                    CC.PRNX.CAT2.ZS
## 2348                                    CC.PRNX.CAT3.ZS
## 2349                                    CC.PRNX.CAT4.ZS
## 2350                                    CC.PRNX.CAT5.ZS
## 2351                                         CC.PRO.ANI
## 2352                                    CC.PSVOL.MOD.RA
## 2353                                    CC.PSVOL.MOD.RO
## 2354                                        CC.PUN.TOTL
## 2355                                        CC.RIC.PECA
## 2356                                     CC.RISK.AST.ZS
## 2357                                    CC.RISK.WELL.ZS
## 2358                                      CC.SE.CAT2.ZS
## 2359                                      CC.SE.CAT3.ZS
## 2360                                     CC.SE.NYRS.AVG
## 2361                                     CC.SH.AIRP.AIR
## 2362                                     CC.SH.AIRP.AMB
## 2363                                       CC.SP.COV.ZS
## 2364                                       CC.SP.EXP.ZS
## 2365                                         CC.STD.ERR
## 2366                                    CC.TCFD.COMP.CB
## 2367                                    CC.TCFD.COMP.CD
## 2368                                    CC.TCFD.COMP.CM
## 2369                                    CC.TCFD.COMP.CS
## 2370                                    CC.TCFD.COMP.FI
## 2371                                    CC.TCFD.COMP.GO
## 2372                                    CC.TCFD.COMP.HC
## 2373                                    CC.TCFD.COMP.IT
## 2374                                    CC.TCFD.COMP.MT
## 2375                                    CC.TCFD.COMP.OT
## 2376                                    CC.TCFD.COMP.RE
## 2377                                    CC.TCFD.COMP.TR
## 2378                                    CC.TCFD.COMP.UT
## 2379                                    CC.THHZ.RANK.CF
## 2380                                    CC.THHZ.RANK.CY
## 2381                                    CC.THHZ.RANK.EH
## 2382                                    CC.THHZ.RANK.EQ
## 2383                                    CC.THHZ.RANK.LS
## 2384                                    CC.THHZ.RANK.RF
## 2385                                    CC.THHZ.RANK.TS
## 2386                                    CC.THHZ.RANK.UF
## 2387                                    CC.THHZ.RANK.WF
## 2388                                     CC.TNET.CYC.ZS
## 2389                                     CC.TNET.EAR.ZS
## 2390                                     CC.TNET.FLD.ZS
## 2391                                     CC.TNET.NAT.ZS
## 2392                                      CC.TOT.GHG.GR
## 2393                                    CC.TOTL.COCA.CA
## 2394                                    CC.TOTL.COCA.CO
## 2395                                    CC.TOTL.COCA.MB
## 2396                                    CC.TOTL.COCA.OP
## 2397                                    CC.TOTL.COCA.PE
## 2398                                    CC.TOTL.COCA.PP
## 2399                                    CC.TOTL.COCA.RE
## 2400                                    CC.TOTL.COCA.SH
## 2401                                  CM.FIN.INTL.GD.ZS
## 2402                                     CM.MKT.INDX.ZG
## 2403                                     CM.MKT.LCAP.CD
## 2404                                  CM.MKT.LCAP.GD.ZS
## 2405                                     CM.MKT.LDOM.NO
## 2406                                     CM.MKT.TRAD.CD
## 2407                                  CM.MKT.TRAD.GD.ZS
## 2408                                        CM.MKT.TRNR
## 2409                                               CoCA
## 2410                                          CoCA_fexp
## 2411                                     CoCA_headcount
## 2412                                           CoCA_pov
## 2413                                    CoCA_unafford_n
## 2414                                               CoHD
## 2415                                           CoHD_asf
## 2416                                      CoHD_asf_prop
## 2417                                        CoHD_asf_ss
## 2418                                          CoHD_CoCA
## 2419                                             CoHD_f
## 2420                                        CoHD_f_prop
## 2421                                          CoHD_f_ss
## 2422                                          CoHD_fexp
## 2423                                     CoHD_headcount
## 2424                                           CoHD_lns
## 2425                                      CoHD_lns_prop
## 2426                                        CoHD_lns_ss
## 2427                                            CoHD_of
## 2428                                       CoHD_of_prop
## 2429                                         CoHD_of_ss
## 2430                                           CoHD_pov
## 2431                                            CoHD_ss
## 2432                                       CoHD_ss_prop
## 2433                                    CoHD_unafford_n
## 2434                                             CoHD_v
## 2435                                        CoHD_v_prop
## 2436                                          CoHD_v_ss
## 2437                                               CoNA
## 2438                                          CoNA_fexp
## 2439                                     CoNA_headcount
## 2440                                           CoNA_pov
## 2441                                    CoNA_unafford_n
## 2442                                             CORENS
## 2443                                             CORESA
## 2444                                          CPTOTNSXN
## 2445                                       CPTOTSAXMZGY
## 2446                                          CPTOTSAXN
## 2447                                       CPTOTSAXNZGY
## 2448                                                D-1
## 2449                                              D-1.1
## 2450                                              D-1.2
## 2451                                                D-2
## 2452                                              D-2.1
## 2453                                              D-2.2
## 2454                                                D-3
## 2455                                                D1i
## 2456                                               D1ii
## 2457                                              D1iii
## 2458                                                D2i
## 2459                                               D2ii
## 2460                                              D2iii
## 2461                                                D3i
## 2462                                               D3ii
## 2463                                              D3iii
## 2464                                                D4i
## 2465                                               D4ii
## 2466                                              D4iii
## 2467                                                D5i
## 2468                                               D5ii
## 2469                                              D5iii
## 2470                                                D6i
## 2471                                               D6ii
## 2472                                              D6iii
## 2473                                         DAK.AGR.CR
## 2474                                         DAK.EDU.CR
## 2475                                        DAK.ENVR.CR
## 2476                                        DAK.FRST.CR
## 2477                                         DAK.FSH.CR
## 2478                                        DAK.GOVT.CR
## 2479                                     DAK.HE.BSRV.CR
## 2480                                          DAK.HE.CR
## 2481                                     DAK.HE.RSRV.CR
## 2482                                        DAK.INFR.CR
## 2483                                    DAK.INFR.H2O.CR
## 2484                                   DAK.INFR.IRIG.CR
## 2485                                    DAK.INFR.ROD.CR
## 2486                                         DAK.POP.CR
## 2487                                        DAK.TRAD.CR
## 2488                                        DAK.VILG.CR
## 2489                                     DB.DOD.DLXF.CD
## 2490                                     DC.AID.TOTL.CD
## 2491                                     DC.DAC.AUSL.CD
## 2492                                     DC.DAC.AUTL.CD
## 2493                                     DC.DAC.BELL.CD
## 2494                                     DC.DAC.CANL.CD
## 2495                                     DC.DAC.CECL.CD
## 2496                                     DC.DAC.CHEL.CD
## 2497                                     DC.DAC.CZEL.CD
## 2498                                     DC.DAC.DEUL.CD
## 2499                                     DC.DAC.DNKL.CD
## 2500                                     DC.DAC.ESPL.CD
## 2501                                     DC.DAC.FINL.CD
## 2502                                     DC.DAC.FRAL.CD
## 2503                                     DC.DAC.GBRL.CD
## 2504                                     DC.DAC.GRCL.CD
## 2505                                     DC.DAC.HUNL.CD
## 2506                                     DC.DAC.IRLL.CD
## 2507                                     DC.DAC.ISLL.CD
## 2508                                     DC.DAC.ITAL.CD
## 2509                                     DC.DAC.JPNL.CD
## 2510                                     DC.DAC.KORL.CD
## 2511                                     DC.DAC.LUXL.CD
## 2512                                     DC.DAC.NLDL.CD
## 2513                                     DC.DAC.NORL.CD
## 2514                                     DC.DAC.NZLL.CD
## 2515                                     DC.DAC.POLL.CD
## 2516                                     DC.DAC.PRTL.CD
## 2517                                     DC.DAC.SVKL.CD
## 2518                                     DC.DAC.SVNL.CD
## 2519                                     DC.DAC.SWEL.CD
## 2520                                     DC.DAC.TOTL.CD
## 2521                                     DC.DAC.USAL.CD
## 2522                                     DC.ODA.COMM.CD
## 2523                                  DC.ODA.COMM.SA.CD
## 2524                                     DC.ODA.SOCL.CD
## 2525                                     DC.ODA.SOCL.ZS
## 2526                                     DC.ODA.TLDC.CD
## 2527                                  DC.ODA.TLDC.GN.ZS
## 2528                                     DC.ODA.TOTL.CD
## 2529                                  DC.ODA.TOTL.GN.ZS
## 2530                                     DC.ODA.TOTL.KD
## 2531                                     DC.ODA.UNTD.CD
## 2532                                     DC.ODA.UNTD.ZS
## 2533                                     DE.DOD.DLXF.CD
## 2534                                     DG.DOD.MWBG.CD
## 2535                                     DG.DOD.OFFL.CD
## 2536                                     DG.DOD.PRVT.CD
## 2537                                     DG.DOD.TOTL.CD
## 2538                                     DI.DOD.TOTL.CD
## 2539                                     DL.AMT.TOTL.CD
## 2540                                     DL.DIS.TOTL.CD
## 2541                                     DL.DOD.CBNK.CD
## 2542                                     DL.DOD.CGOV.CD
## 2543                                     DL.DOD.LTRM.CD
## 2544                                     DL.DOD.NFPE.CD
## 2545                                     DL.DOD.PRSC.CD
## 2546                                     DL.DOD.ROGG.CD
## 2547                                     DL.INT.TOTL.CD
## 2548                                     DL.NFL.TOTL.CD
## 2549                                     DM.DOD.DLTF.CD
## 2550                                      DMGSRMRCHNSCD
## 2551                                      DMGSRMRCHNSKD
## 2552                                      DMGSRMRCHNSXD
## 2553                                      DMGSRMRCHSACD
## 2554                                      DMGSRMRCHSAKD
## 2555                                      DMGSRMRCHSAXD
## 2556                                     DN.DOD.TOTL.CD
## 2557                                  DP.DOD.DECD.CR.BC
## 2558                               DP.DOD.DECD.CR.BC.CD
## 2559                               DP.DOD.DECD.CR.BC.Z1
## 2560                                  DP.DOD.DECD.CR.CG
## 2561                               DP.DOD.DECD.CR.CG.CD
## 2562                               DP.DOD.DECD.CR.CG.Z1
## 2563                                  DP.DOD.DECD.CR.FC
## 2564                               DP.DOD.DECD.CR.FC.CD
## 2565                               DP.DOD.DECD.CR.FC.Z1
## 2566                                  DP.DOD.DECD.CR.GG
## 2567                               DP.DOD.DECD.CR.GG.CD
## 2568                               DP.DOD.DECD.CR.GG.Z1
## 2569                                  DP.DOD.DECD.CR.NF
## 2570                               DP.DOD.DECD.CR.NF.CD
## 2571                               DP.DOD.DECD.CR.NF.Z1
## 2572                                  DP.DOD.DECD.CR.PS
## 2573                               DP.DOD.DECD.CR.PS.CD
## 2574                                  DP.DOD.DECF.CR.BC
## 2575                               DP.DOD.DECF.CR.BC.CD
## 2576                               DP.DOD.DECF.CR.BC.Z1
## 2577                                  DP.DOD.DECF.CR.CG
## 2578                               DP.DOD.DECF.CR.CG.CD
## 2579                               DP.DOD.DECF.CR.CG.Z1
## 2580                                  DP.DOD.DECF.CR.FC
## 2581                               DP.DOD.DECF.CR.FC.CD
## 2582                               DP.DOD.DECF.CR.FC.Z1
## 2583                                  DP.DOD.DECF.CR.GG
## 2584                               DP.DOD.DECF.CR.GG.CD
## 2585                               DP.DOD.DECF.CR.GG.Z1
## 2586                                  DP.DOD.DECF.CR.NF
## 2587                               DP.DOD.DECF.CR.NF.CD
## 2588                               DP.DOD.DECF.CR.NF.Z1
## 2589                                  DP.DOD.DECF.CR.PS
## 2590                               DP.DOD.DECF.CR.PS.CD
## 2591                                  DP.DOD.DECN.CR.BC
## 2592                               DP.DOD.DECN.CR.BC.CD
## 2593                               DP.DOD.DECN.CR.BC.Z1
## 2594                                  DP.DOD.DECN.CR.CG
## 2595                               DP.DOD.DECN.CR.CG.CD
## 2596                               DP.DOD.DECN.CR.CG.Z1
## 2597                                  DP.DOD.DECN.CR.FC
## 2598                               DP.DOD.DECN.CR.FC.CD
## 2599                               DP.DOD.DECN.CR.FC.Z1
## 2600                                  DP.DOD.DECN.CR.GG
## 2601                               DP.DOD.DECN.CR.GG.CD
## 2602                               DP.DOD.DECN.CR.GG.Z1
## 2603                                  DP.DOD.DECN.CR.NF
## 2604                               DP.DOD.DECN.CR.NF.CD
## 2605                               DP.DOD.DECN.CR.NF.Z1
## 2606                                  DP.DOD.DECN.CR.PS
## 2607                               DP.DOD.DECN.CR.PS.CD
## 2608                                  DP.DOD.DECT.CR.BC
## 2609                               DP.DOD.DECT.CR.BC.CD
## 2610                               DP.DOD.DECT.CR.BC.Z1
## 2611                                  DP.DOD.DECT.CR.CG
## 2612                               DP.DOD.DECT.CR.CG.CD
## 2613                               DP.DOD.DECT.CR.CG.Z1
## 2614                                  DP.DOD.DECT.CR.FC
## 2615                               DP.DOD.DECT.CR.FC.CD
## 2616                               DP.DOD.DECT.CR.FC.Z1
## 2617                                  DP.DOD.DECT.CR.GG
## 2618                               DP.DOD.DECT.CR.GG.CD
## 2619                               DP.DOD.DECT.CR.GG.Z1
## 2620                                  DP.DOD.DECT.CR.NF
## 2621                               DP.DOD.DECT.CR.NF.CD
## 2622                               DP.DOD.DECT.CR.NF.Z1
## 2623                                  DP.DOD.DECT.CR.PS
## 2624                               DP.DOD.DECT.CR.PS.CD
## 2625                                  DP.DOD.DECX.CR.BC
## 2626                               DP.DOD.DECX.CR.BC.CD
## 2627                               DP.DOD.DECX.CR.BC.Z1
## 2628                                  DP.DOD.DECX.CR.CG
## 2629                               DP.DOD.DECX.CR.CG.CD
## 2630                               DP.DOD.DECX.CR.CG.Z1
## 2631                                  DP.DOD.DECX.CR.FC
## 2632                               DP.DOD.DECX.CR.FC.CD
## 2633                               DP.DOD.DECX.CR.FC.Z1
## 2634                                  DP.DOD.DECX.CR.GG
## 2635                               DP.DOD.DECX.CR.GG.CD
## 2636                               DP.DOD.DECX.CR.GG.Z1
## 2637                                  DP.DOD.DECX.CR.NF
## 2638                               DP.DOD.DECX.CR.NF.CD
## 2639                               DP.DOD.DECX.CR.NF.Z1
## 2640                                  DP.DOD.DECX.CR.PS
## 2641                               DP.DOD.DECX.CR.PS.CD
## 2642                                  DP.DOD.DLCD.CR.BC
## 2643                               DP.DOD.DLCD.CR.BC.CD
## 2644                               DP.DOD.DLCD.CR.BC.Z1
## 2645                                  DP.DOD.DLCD.CR.CG
## 2646                               DP.DOD.DLCD.CR.CG.CD
## 2647                               DP.DOD.DLCD.CR.CG.Z1
## 2648                                  DP.DOD.DLCD.CR.FC
## 2649                               DP.DOD.DLCD.CR.FC.CD
## 2650                               DP.DOD.DLCD.CR.FC.Z1
## 2651                                  DP.DOD.DLCD.CR.GG
## 2652                               DP.DOD.DLCD.CR.GG.CD
## 2653                               DP.DOD.DLCD.CR.GG.Z1
## 2654                               DP.DOD.DLCD.CR.L1.BC
## 2655                            DP.DOD.DLCD.CR.L1.BC.CD
## 2656                            DP.DOD.DLCD.CR.L1.BC.Z1
## 2657                               DP.DOD.DLCD.CR.L1.CG
## 2658                            DP.DOD.DLCD.CR.L1.CG.CD
## 2659                            DP.DOD.DLCD.CR.L1.CG.Z1
## 2660                               DP.DOD.DLCD.CR.L1.FC
## 2661                            DP.DOD.DLCD.CR.L1.FC.CD
## 2662                            DP.DOD.DLCD.CR.L1.FC.Z1
## 2663                               DP.DOD.DLCD.CR.L1.GG
## 2664                            DP.DOD.DLCD.CR.L1.GG.CD
## 2665                            DP.DOD.DLCD.CR.L1.GG.Z1
## 2666                               DP.DOD.DLCD.CR.L1.NF
## 2667                            DP.DOD.DLCD.CR.L1.NF.CD
## 2668                            DP.DOD.DLCD.CR.L1.NF.Z1
## 2669                               DP.DOD.DLCD.CR.L1.PS
## 2670                            DP.DOD.DLCD.CR.L1.PS.CD
## 2671                               DP.DOD.DLCD.CR.M1.BC
## 2672                            DP.DOD.DLCD.CR.M1.BC.CD
## 2673                            DP.DOD.DLCD.CR.M1.BC.Z1
## 2674                               DP.DOD.DLCD.CR.M1.CG
## 2675                            DP.DOD.DLCD.CR.M1.CG.CD
## 2676                            DP.DOD.DLCD.CR.M1.CG.Z1
## 2677                               DP.DOD.DLCD.CR.M1.FC
## 2678                            DP.DOD.DLCD.CR.M1.FC.CD
## 2679                            DP.DOD.DLCD.CR.M1.FC.Z1
## 2680                               DP.DOD.DLCD.CR.M1.GG
## 2681                            DP.DOD.DLCD.CR.M1.GG.CD
## 2682                            DP.DOD.DLCD.CR.M1.GG.Z1
## 2683                               DP.DOD.DLCD.CR.M1.NF
## 2684                            DP.DOD.DLCD.CR.M1.NF.CD
## 2685                            DP.DOD.DLCD.CR.M1.NF.Z1
## 2686                               DP.DOD.DLCD.CR.M1.PS
## 2687                            DP.DOD.DLCD.CR.M1.PS.CD
## 2688                                  DP.DOD.DLCD.CR.NF
## 2689                               DP.DOD.DLCD.CR.NF.CD
## 2690                               DP.DOD.DLCD.CR.NF.Z1
## 2691                                  DP.DOD.DLCD.CR.PS
## 2692                               DP.DOD.DLCD.CR.PS.CD
## 2693                               DP.DOD.DLD1.CR.CG.CD
## 2694                               DP.DOD.DLD1.CR.CG.Z1
## 2695                               DP.DOD.DLD1.CR.GG.CD
## 2696                               DP.DOD.DLD1.CR.GG.Z1
## 2697                               DP.DOD.DLD2.CR.CG.CD
## 2698                               DP.DOD.DLD2.CR.CG.Z1
## 2699                               DP.DOD.DLD2.CR.GG.CD
## 2700                               DP.DOD.DLD2.CR.GG.Z1
## 2701                              DP.DOD.DLD2A.CR.CG.CD
## 2702                              DP.DOD.DLD2A.CR.CG.Z1
## 2703                              DP.DOD.DLD2A.CR.GG.CD
## 2704                              DP.DOD.DLD2A.CR.GG.Z1
## 2705                               DP.DOD.DLD3.CR.CG.CD
## 2706                               DP.DOD.DLD3.CR.CG.Z1
## 2707                               DP.DOD.DLD3.CR.GG.CD
## 2708                               DP.DOD.DLD3.CR.GG.Z1
## 2709                               DP.DOD.DLD4.CR.CG.CD
## 2710                               DP.DOD.DLD4.CR.CG.Z1
## 2711                               DP.DOD.DLD4.CR.GG.CD
## 2712                               DP.DOD.DLD4.CR.GG.Z1
## 2713                                  DP.DOD.DLDS.CR.BC
## 2714                               DP.DOD.DLDS.CR.BC.CD
## 2715                               DP.DOD.DLDS.CR.BC.Z1
## 2716                                  DP.DOD.DLDS.CR.CG
## 2717                               DP.DOD.DLDS.CR.CG.CD
## 2718                               DP.DOD.DLDS.CR.CG.Z1
## 2719                                  DP.DOD.DLDS.CR.FC
## 2720                               DP.DOD.DLDS.CR.FC.CD
## 2721                               DP.DOD.DLDS.CR.FC.Z1
## 2722                                  DP.DOD.DLDS.CR.GG
## 2723                               DP.DOD.DLDS.CR.GG.CD
## 2724                               DP.DOD.DLDS.CR.GG.Z1
## 2725                               DP.DOD.DLDS.CR.L1.BC
## 2726                            DP.DOD.DLDS.CR.L1.BC.CD
## 2727                            DP.DOD.DLDS.CR.L1.BC.Z1
## 2728                               DP.DOD.DLDS.CR.L1.CG
## 2729                            DP.DOD.DLDS.CR.L1.CG.CD
## 2730                            DP.DOD.DLDS.CR.L1.CG.Z1
## 2731                               DP.DOD.DLDS.CR.L1.FC
## 2732                            DP.DOD.DLDS.CR.L1.FC.CD
## 2733                            DP.DOD.DLDS.CR.L1.FC.Z1
## 2734                               DP.DOD.DLDS.CR.L1.GG
## 2735                            DP.DOD.DLDS.CR.L1.GG.CD
## 2736                            DP.DOD.DLDS.CR.L1.GG.Z1
## 2737                               DP.DOD.DLDS.CR.L1.NF
## 2738                            DP.DOD.DLDS.CR.L1.NF.CD
## 2739                            DP.DOD.DLDS.CR.L1.NF.Z1
## 2740                               DP.DOD.DLDS.CR.L1.PS
## 2741                            DP.DOD.DLDS.CR.L1.PS.CD
## 2742                               DP.DOD.DLDS.CR.M1.BC
## 2743                            DP.DOD.DLDS.CR.M1.BC.CD
## 2744                            DP.DOD.DLDS.CR.M1.BC.Z1
## 2745                               DP.DOD.DLDS.CR.M1.CG
## 2746                            DP.DOD.DLDS.CR.M1.CG.CD
## 2747                            DP.DOD.DLDS.CR.M1.CG.Z1
## 2748                               DP.DOD.DLDS.CR.M1.FC
## 2749                            DP.DOD.DLDS.CR.M1.FC.CD
## 2750                            DP.DOD.DLDS.CR.M1.FC.Z1
## 2751                               DP.DOD.DLDS.CR.M1.GG
## 2752                            DP.DOD.DLDS.CR.M1.GG.CD
## 2753                            DP.DOD.DLDS.CR.M1.GG.Z1
## 2754                               DP.DOD.DLDS.CR.M1.NF
## 2755                            DP.DOD.DLDS.CR.M1.NF.CD
## 2756                            DP.DOD.DLDS.CR.M1.NF.Z1
## 2757                               DP.DOD.DLDS.CR.M1.PS
## 2758                            DP.DOD.DLDS.CR.M1.PS.CD
## 2759                               DP.DOD.DLDS.CR.MV.BC
## 2760                            DP.DOD.DLDS.CR.MV.BC.CD
## 2761                            DP.DOD.DLDS.CR.MV.BC.Z1
## 2762                               DP.DOD.DLDS.CR.MV.CG
## 2763                            DP.DOD.DLDS.CR.MV.CG.CD
## 2764                            DP.DOD.DLDS.CR.MV.CG.Z1
## 2765                               DP.DOD.DLDS.CR.MV.FC
## 2766                            DP.DOD.DLDS.CR.MV.FC.CD
## 2767                            DP.DOD.DLDS.CR.MV.FC.Z1
## 2768                               DP.DOD.DLDS.CR.MV.GG
## 2769                            DP.DOD.DLDS.CR.MV.GG.CD
## 2770                            DP.DOD.DLDS.CR.MV.GG.Z1
## 2771                               DP.DOD.DLDS.CR.MV.NF
## 2772                            DP.DOD.DLDS.CR.MV.NF.CD
## 2773                            DP.DOD.DLDS.CR.MV.NF.Z1
## 2774                               DP.DOD.DLDS.CR.MV.PS
## 2775                            DP.DOD.DLDS.CR.MV.PS.CD
## 2776                                  DP.DOD.DLDS.CR.NF
## 2777                               DP.DOD.DLDS.CR.NF.CD
## 2778                               DP.DOD.DLDS.CR.NF.Z1
## 2779                                  DP.DOD.DLDS.CR.PS
## 2780                               DP.DOD.DLDS.CR.PS.CD
## 2781                                  DP.DOD.DLIN.CR.BC
## 2782                               DP.DOD.DLIN.CR.BC.CD
## 2783                               DP.DOD.DLIN.CR.BC.Z1
## 2784                                  DP.DOD.DLIN.CR.CG
## 2785                               DP.DOD.DLIN.CR.CG.CD
## 2786                               DP.DOD.DLIN.CR.CG.Z1
## 2787                                  DP.DOD.DLIN.CR.FC
## 2788                               DP.DOD.DLIN.CR.FC.CD
## 2789                               DP.DOD.DLIN.CR.FC.Z1
## 2790                                  DP.DOD.DLIN.CR.GG
## 2791                               DP.DOD.DLIN.CR.GG.CD
## 2792                               DP.DOD.DLIN.CR.GG.Z1
## 2793                               DP.DOD.DLIN.CR.L1.BC
## 2794                            DP.DOD.DLIN.CR.L1.BC.CD
## 2795                            DP.DOD.DLIN.CR.L1.BC.Z1
## 2796                               DP.DOD.DLIN.CR.L1.CG
## 2797                            DP.DOD.DLIN.CR.L1.CG.CD
## 2798                            DP.DOD.DLIN.CR.L1.CG.Z1
## 2799                               DP.DOD.DLIN.CR.L1.FC
## 2800                            DP.DOD.DLIN.CR.L1.FC.CD
## 2801                            DP.DOD.DLIN.CR.L1.FC.Z1
## 2802                               DP.DOD.DLIN.CR.L1.GG
## 2803                            DP.DOD.DLIN.CR.L1.GG.CD
## 2804                            DP.DOD.DLIN.CR.L1.GG.Z1
## 2805                               DP.DOD.DLIN.CR.L1.NF
## 2806                            DP.DOD.DLIN.CR.L1.NF.CD
## 2807                            DP.DOD.DLIN.CR.L1.NF.Z1
## 2808                               DP.DOD.DLIN.CR.L1.PS
## 2809                            DP.DOD.DLIN.CR.L1.PS.CD
## 2810                               DP.DOD.DLIN.CR.M1.BC
## 2811                            DP.DOD.DLIN.CR.M1.BC.CD
## 2812                            DP.DOD.DLIN.CR.M1.BC.Z1
## 2813                               DP.DOD.DLIN.CR.M1.CG
## 2814                            DP.DOD.DLIN.CR.M1.CG.CD
## 2815                            DP.DOD.DLIN.CR.M1.CG.Z1
## 2816                               DP.DOD.DLIN.CR.M1.FC
## 2817                            DP.DOD.DLIN.CR.M1.FC.CD
## 2818                            DP.DOD.DLIN.CR.M1.FC.Z1
## 2819                               DP.DOD.DLIN.CR.M1.GG
## 2820                            DP.DOD.DLIN.CR.M1.GG.CD
## 2821                            DP.DOD.DLIN.CR.M1.GG.Z1
## 2822                               DP.DOD.DLIN.CR.M1.NF
## 2823                            DP.DOD.DLIN.CR.M1.NF.CD
## 2824                            DP.DOD.DLIN.CR.M1.NF.Z1
## 2825                               DP.DOD.DLIN.CR.M1.PS
## 2826                            DP.DOD.DLIN.CR.M1.PS.CD
## 2827                                  DP.DOD.DLIN.CR.NF
## 2828                               DP.DOD.DLIN.CR.NF.CD
## 2829                               DP.DOD.DLIN.CR.NF.Z1
## 2830                                  DP.DOD.DLIN.CR.PS
## 2831                               DP.DOD.DLIN.CR.PS.CD
## 2832                                  DP.DOD.DLLO.CR.BC
## 2833                               DP.DOD.DLLO.CR.BC.CD
## 2834                               DP.DOD.DLLO.CR.BC.Z1
## 2835                                  DP.DOD.DLLO.CR.CG
## 2836                               DP.DOD.DLLO.CR.CG.CD
## 2837                               DP.DOD.DLLO.CR.CG.Z1
## 2838                                  DP.DOD.DLLO.CR.FC
## 2839                               DP.DOD.DLLO.CR.FC.CD
## 2840                               DP.DOD.DLLO.CR.FC.Z1
## 2841                                  DP.DOD.DLLO.CR.GG
## 2842                               DP.DOD.DLLO.CR.GG.CD
## 2843                               DP.DOD.DLLO.CR.GG.Z1
## 2844                               DP.DOD.DLLO.CR.L1.BC
## 2845                            DP.DOD.DLLO.CR.L1.BC.CD
## 2846                            DP.DOD.DLLO.CR.L1.BC.Z1
## 2847                               DP.DOD.DLLO.CR.L1.CG
## 2848                            DP.DOD.DLLO.CR.L1.CG.CD
## 2849                            DP.DOD.DLLO.CR.L1.CG.Z1
## 2850                               DP.DOD.DLLO.CR.L1.FC
## 2851                            DP.DOD.DLLO.CR.L1.FC.CD
## 2852                            DP.DOD.DLLO.CR.L1.FC.Z1
## 2853                               DP.DOD.DLLO.CR.L1.GG
## 2854                            DP.DOD.DLLO.CR.L1.GG.CD
## 2855                            DP.DOD.DLLO.CR.L1.GG.Z1
## 2856                               DP.DOD.DLLO.CR.L1.NF
## 2857                            DP.DOD.DLLO.CR.L1.NF.CD
## 2858                            DP.DOD.DLLO.CR.L1.NF.Z1
## 2859                               DP.DOD.DLLO.CR.L1.PS
## 2860                            DP.DOD.DLLO.CR.L1.PS.CD
## 2861                               DP.DOD.DLLO.CR.M1.BC
## 2862                            DP.DOD.DLLO.CR.M1.BC.CD
## 2863                            DP.DOD.DLLO.CR.M1.BC.Z1
## 2864                               DP.DOD.DLLO.CR.M1.CG
## 2865                            DP.DOD.DLLO.CR.M1.CG.CD
## 2866                            DP.DOD.DLLO.CR.M1.CG.Z1
## 2867                               DP.DOD.DLLO.CR.M1.FC
## 2868                            DP.DOD.DLLO.CR.M1.FC.CD
## 2869                            DP.DOD.DLLO.CR.M1.FC.Z1
## 2870                               DP.DOD.DLLO.CR.M1.GG
## 2871                            DP.DOD.DLLO.CR.M1.GG.CD
## 2872                            DP.DOD.DLLO.CR.M1.GG.Z1
## 2873                               DP.DOD.DLLO.CR.M1.NF
## 2874                            DP.DOD.DLLO.CR.M1.NF.CD
## 2875                            DP.DOD.DLLO.CR.M1.NF.Z1
## 2876                               DP.DOD.DLLO.CR.M1.PS
## 2877                            DP.DOD.DLLO.CR.M1.PS.CD
## 2878                                  DP.DOD.DLLO.CR.NF
## 2879                               DP.DOD.DLLO.CR.NF.CD
## 2880                               DP.DOD.DLLO.CR.NF.Z1
## 2881                                  DP.DOD.DLLO.CR.PS
## 2882                               DP.DOD.DLLO.CR.PS.CD
## 2883                                  DP.DOD.DLOA.CR.BC
## 2884                               DP.DOD.DLOA.CR.BC.CD
## 2885                               DP.DOD.DLOA.CR.BC.Z1
## 2886                                  DP.DOD.DLOA.CR.CG
## 2887                               DP.DOD.DLOA.CR.CG.CD
## 2888                               DP.DOD.DLOA.CR.CG.Z1
## 2889                                  DP.DOD.DLOA.CR.FC
## 2890                               DP.DOD.DLOA.CR.FC.CD
## 2891                               DP.DOD.DLOA.CR.FC.Z1
## 2892                                  DP.DOD.DLOA.CR.GG
## 2893                               DP.DOD.DLOA.CR.GG.CD
## 2894                               DP.DOD.DLOA.CR.GG.Z1
## 2895                               DP.DOD.DLOA.CR.L1.BC
## 2896                            DP.DOD.DLOA.CR.L1.BC.CD
## 2897                            DP.DOD.DLOA.CR.L1.BC.Z1
## 2898                               DP.DOD.DLOA.CR.L1.CG
## 2899                            DP.DOD.DLOA.CR.L1.CG.CD
## 2900                            DP.DOD.DLOA.CR.L1.CG.Z1
## 2901                               DP.DOD.DLOA.CR.L1.FC
## 2902                            DP.DOD.DLOA.CR.L1.FC.CD
## 2903                            DP.DOD.DLOA.CR.L1.FC.Z1
## 2904                               DP.DOD.DLOA.CR.L1.GG
## 2905                            DP.DOD.DLOA.CR.L1.GG.CD
## 2906                            DP.DOD.DLOA.CR.L1.GG.Z1
## 2907                               DP.DOD.DLOA.CR.L1.NF
## 2908                            DP.DOD.DLOA.CR.L1.NF.CD
## 2909                            DP.DOD.DLOA.CR.L1.NF.Z1
## 2910                               DP.DOD.DLOA.CR.L1.PS
## 2911                            DP.DOD.DLOA.CR.L1.PS.CD
## 2912                               DP.DOD.DLOA.CR.M1.BC
## 2913                            DP.DOD.DLOA.CR.M1.BC.CD
## 2914                            DP.DOD.DLOA.CR.M1.BC.Z1
## 2915                               DP.DOD.DLOA.CR.M1.CG
## 2916                            DP.DOD.DLOA.CR.M1.CG.CD
## 2917                            DP.DOD.DLOA.CR.M1.CG.Z1
## 2918                               DP.DOD.DLOA.CR.M1.FC
## 2919                            DP.DOD.DLOA.CR.M1.FC.CD
## 2920                            DP.DOD.DLOA.CR.M1.FC.Z1
## 2921                               DP.DOD.DLOA.CR.M1.GG
## 2922                            DP.DOD.DLOA.CR.M1.GG.CD
## 2923                            DP.DOD.DLOA.CR.M1.GG.Z1
## 2924                               DP.DOD.DLOA.CR.M1.NF
## 2925                            DP.DOD.DLOA.CR.M1.NF.CD
## 2926                            DP.DOD.DLOA.CR.M1.NF.Z1
## 2927                               DP.DOD.DLOA.CR.M1.PS
## 2928                            DP.DOD.DLOA.CR.M1.PS.CD
## 2929                                  DP.DOD.DLOA.CR.NF
## 2930                               DP.DOD.DLOA.CR.NF.CD
## 2931                               DP.DOD.DLOA.CR.NF.Z1
## 2932                                  DP.DOD.DLOA.CR.PS
## 2933                               DP.DOD.DLOA.CR.PS.CD
## 2934                                  DP.DOD.DLSD.CR.BC
## 2935                               DP.DOD.DLSD.CR.BC.CD
## 2936                               DP.DOD.DLSD.CR.BC.Z1
## 2937                                  DP.DOD.DLSD.CR.CG
## 2938                               DP.DOD.DLSD.CR.CG.CD
## 2939                               DP.DOD.DLSD.CR.CG.Z1
## 2940                                  DP.DOD.DLSD.CR.FC
## 2941                               DP.DOD.DLSD.CR.FC.CD
## 2942                               DP.DOD.DLSD.CR.FC.Z1
## 2943                                  DP.DOD.DLSD.CR.GG
## 2944                               DP.DOD.DLSD.CR.GG.CD
## 2945                               DP.DOD.DLSD.CR.GG.Z1
## 2946                               DP.DOD.DLSD.CR.M1.BC
## 2947                            DP.DOD.DLSD.CR.M1.BC.CD
## 2948                            DP.DOD.DLSD.CR.M1.BC.Z1
## 2949                               DP.DOD.DLSD.CR.M1.CG
## 2950                            DP.DOD.DLSD.CR.M1.CG.CD
## 2951                            DP.DOD.DLSD.CR.M1.CG.Z1
## 2952                               DP.DOD.DLSD.CR.M1.FC
## 2953                            DP.DOD.DLSD.CR.M1.FC.CD
## 2954                            DP.DOD.DLSD.CR.M1.FC.Z1
## 2955                               DP.DOD.DLSD.CR.M1.GG
## 2956                            DP.DOD.DLSD.CR.M1.GG.CD
## 2957                            DP.DOD.DLSD.CR.M1.GG.Z1
## 2958                               DP.DOD.DLSD.CR.M1.NF
## 2959                            DP.DOD.DLSD.CR.M1.NF.CD
## 2960                            DP.DOD.DLSD.CR.M1.NF.Z1
## 2961                               DP.DOD.DLSD.CR.M1.PS
## 2962                            DP.DOD.DLSD.CR.M1.PS.CD
## 2963                                  DP.DOD.DLSD.CR.NF
## 2964                               DP.DOD.DLSD.CR.NF.CD
## 2965                               DP.DOD.DLSD.CR.NF.Z1
## 2966                                  DP.DOD.DLSD.CR.PS
## 2967                               DP.DOD.DLSD.CR.PS.CD
## 2968                                  DP.DOD.DLTC.CR.BC
## 2969                               DP.DOD.DLTC.CR.BC.CD
## 2970                               DP.DOD.DLTC.CR.BC.Z1
## 2971                                  DP.DOD.DLTC.CR.CG
## 2972                               DP.DOD.DLTC.CR.CG.CD
## 2973                               DP.DOD.DLTC.CR.CG.Z1
## 2974                                  DP.DOD.DLTC.CR.FC
## 2975                               DP.DOD.DLTC.CR.FC.CD
## 2976                               DP.DOD.DLTC.CR.FC.Z1
## 2977                                  DP.DOD.DLTC.CR.GG
## 2978                               DP.DOD.DLTC.CR.GG.CD
## 2979                               DP.DOD.DLTC.CR.GG.Z1
## 2980                               DP.DOD.DLTC.CR.L1.BC
## 2981                            DP.DOD.DLTC.CR.L1.BC.CD
## 2982                            DP.DOD.DLTC.CR.L1.BC.Z1
## 2983                               DP.DOD.DLTC.CR.L1.CG
## 2984                            DP.DOD.DLTC.CR.L1.CG.CD
## 2985                            DP.DOD.DLTC.CR.L1.CG.Z1
## 2986                               DP.DOD.DLTC.CR.L1.FC
## 2987                            DP.DOD.DLTC.CR.L1.FC.CD
## 2988                            DP.DOD.DLTC.CR.L1.FC.Z1
## 2989                               DP.DOD.DLTC.CR.L1.GG
## 2990                            DP.DOD.DLTC.CR.L1.GG.CD
## 2991                            DP.DOD.DLTC.CR.L1.GG.Z1
## 2992                               DP.DOD.DLTC.CR.L1.NF
## 2993                            DP.DOD.DLTC.CR.L1.NF.CD
## 2994                            DP.DOD.DLTC.CR.L1.NF.Z1
## 2995                               DP.DOD.DLTC.CR.L1.PS
## 2996                            DP.DOD.DLTC.CR.L1.PS.CD
## 2997                               DP.DOD.DLTC.CR.M1.BC
## 2998                            DP.DOD.DLTC.CR.M1.BC.CD
## 2999                            DP.DOD.DLTC.CR.M1.BC.Z1
## 3000                               DP.DOD.DLTC.CR.M1.CG
## 3001                            DP.DOD.DLTC.CR.M1.CG.CD
## 3002                            DP.DOD.DLTC.CR.M1.CG.Z1
## 3003                               DP.DOD.DLTC.CR.M1.FC
## 3004                            DP.DOD.DLTC.CR.M1.FC.CD
## 3005                            DP.DOD.DLTC.CR.M1.FC.Z1
## 3006                               DP.DOD.DLTC.CR.M1.GG
## 3007                            DP.DOD.DLTC.CR.M1.GG.CD
## 3008                            DP.DOD.DLTC.CR.M1.GG.Z1
## 3009                               DP.DOD.DLTC.CR.M1.NF
## 3010                            DP.DOD.DLTC.CR.M1.NF.CD
## 3011                            DP.DOD.DLTC.CR.M1.NF.Z1
## 3012                               DP.DOD.DLTC.CR.M1.PS
## 3013                            DP.DOD.DLTC.CR.M1.PS.CD
## 3014                                  DP.DOD.DLTC.CR.NF
## 3015                               DP.DOD.DLTC.CR.NF.CD
## 3016                               DP.DOD.DLTC.CR.NF.Z1
## 3017                                  DP.DOD.DLTC.CR.PS
## 3018                               DP.DOD.DLTC.CR.PS.CD
## 3019                                     DP.DOD.DLXF.CD
## 3020                                  DP.DOD.DSCD.CR.BC
## 3021                               DP.DOD.DSCD.CR.BC.CD
## 3022                               DP.DOD.DSCD.CR.BC.Z1
## 3023                                  DP.DOD.DSCD.CR.CG
## 3024                               DP.DOD.DSCD.CR.CG.CD
## 3025                               DP.DOD.DSCD.CR.CG.Z1
## 3026                                  DP.DOD.DSCD.CR.FC
## 3027                               DP.DOD.DSCD.CR.FC.CD
## 3028                               DP.DOD.DSCD.CR.FC.Z1
## 3029                                  DP.DOD.DSCD.CR.GG
## 3030                               DP.DOD.DSCD.CR.GG.CD
## 3031                               DP.DOD.DSCD.CR.GG.Z1
## 3032                                  DP.DOD.DSCD.CR.NF
## 3033                               DP.DOD.DSCD.CR.NF.CD
## 3034                               DP.DOD.DSCD.CR.NF.Z1
## 3035                                  DP.DOD.DSCD.CR.PS
## 3036                               DP.DOD.DSCD.CR.PS.CD
## 3037                                  DP.DOD.DSDS.CR.BC
## 3038                               DP.DOD.DSDS.CR.BC.CD
## 3039                               DP.DOD.DSDS.CR.BC.Z1
## 3040                                  DP.DOD.DSDS.CR.CG
## 3041                               DP.DOD.DSDS.CR.CG.CD
## 3042                               DP.DOD.DSDS.CR.CG.Z1
## 3043                                  DP.DOD.DSDS.CR.FC
## 3044                               DP.DOD.DSDS.CR.FC.CD
## 3045                               DP.DOD.DSDS.CR.FC.Z1
## 3046                                  DP.DOD.DSDS.CR.GG
## 3047                               DP.DOD.DSDS.CR.GG.CD
## 3048                               DP.DOD.DSDS.CR.GG.Z1
## 3049                                  DP.DOD.DSDS.CR.NF
## 3050                               DP.DOD.DSDS.CR.NF.CD
## 3051                               DP.DOD.DSDS.CR.NF.Z1
## 3052                                  DP.DOD.DSDS.CR.PS
## 3053                               DP.DOD.DSDS.CR.PS.CD
## 3054                                  DP.DOD.DSIN.CR.BC
## 3055                               DP.DOD.DSIN.CR.BC.CD
## 3056                               DP.DOD.DSIN.CR.BC.Z1
## 3057                                  DP.DOD.DSIN.CR.CG
## 3058                               DP.DOD.DSIN.CR.CG.CD
## 3059                               DP.DOD.DSIN.CR.CG.Z1
## 3060                                  DP.DOD.DSIN.CR.FC
## 3061                               DP.DOD.DSIN.CR.FC.CD
## 3062                               DP.DOD.DSIN.CR.FC.Z1
## 3063                                  DP.DOD.DSIN.CR.GG
## 3064                               DP.DOD.DSIN.CR.GG.CD
## 3065                               DP.DOD.DSIN.CR.GG.Z1
## 3066                                  DP.DOD.DSIN.CR.NF
## 3067                               DP.DOD.DSIN.CR.NF.CD
## 3068                               DP.DOD.DSIN.CR.NF.Z1
## 3069                                  DP.DOD.DSIN.CR.PS
## 3070                               DP.DOD.DSIN.CR.PS.CD
## 3071                                  DP.DOD.DSLO.CR.BC
## 3072                               DP.DOD.DSLO.CR.BC.CD
## 3073                               DP.DOD.DSLO.CR.BC.Z1
## 3074                                  DP.DOD.DSLO.CR.CG
## 3075                               DP.DOD.DSLO.CR.CG.CD
## 3076                               DP.DOD.DSLO.CR.CG.Z1
## 3077                                  DP.DOD.DSLO.CR.FC
## 3078                               DP.DOD.DSLO.CR.FC.CD
## 3079                               DP.DOD.DSLO.CR.FC.Z1
## 3080                                  DP.DOD.DSLO.CR.GG
## 3081                               DP.DOD.DSLO.CR.GG.CD
## 3082                               DP.DOD.DSLO.CR.GG.Z1
## 3083                                  DP.DOD.DSLO.CR.NF
## 3084                               DP.DOD.DSLO.CR.NF.CD
## 3085                               DP.DOD.DSLO.CR.NF.Z1
## 3086                                  DP.DOD.DSLO.CR.PS
## 3087                               DP.DOD.DSLO.CR.PS.CD
## 3088                                  DP.DOD.DSOA.CR.BC
## 3089                               DP.DOD.DSOA.CR.BC.CD
## 3090                               DP.DOD.DSOA.CR.BC.Z1
## 3091                                  DP.DOD.DSOA.CR.CG
## 3092                               DP.DOD.DSOA.CR.CG.CD
## 3093                               DP.DOD.DSOA.CR.CG.Z1
## 3094                                  DP.DOD.DSOA.CR.FC
## 3095                               DP.DOD.DSOA.CR.FC.CD
## 3096                               DP.DOD.DSOA.CR.FC.Z1
## 3097                                  DP.DOD.DSOA.CR.GG
## 3098                               DP.DOD.DSOA.CR.GG.CD
## 3099                               DP.DOD.DSOA.CR.GG.Z1
## 3100                                  DP.DOD.DSOA.CR.NF
## 3101                               DP.DOD.DSOA.CR.NF.CD
## 3102                               DP.DOD.DSOA.CR.NF.Z1
## 3103                                  DP.DOD.DSOA.CR.PS
## 3104                               DP.DOD.DSOA.CR.PS.CD
## 3105                                  DP.DOD.DSTC.CR.BC
## 3106                               DP.DOD.DSTC.CR.BC.CD
## 3107                               DP.DOD.DSTC.CR.BC.Z1
## 3108                                  DP.DOD.DSTC.CR.CG
## 3109                               DP.DOD.DSTC.CR.CG.CD
## 3110                               DP.DOD.DSTC.CR.CG.Z1
## 3111                                  DP.DOD.DSTC.CR.FC
## 3112                               DP.DOD.DSTC.CR.FC.CD
## 3113                               DP.DOD.DSTC.CR.FC.Z1
## 3114                                  DP.DOD.DSTC.CR.GG
## 3115                               DP.DOD.DSTC.CR.GG.CD
## 3116                               DP.DOD.DSTC.CR.GG.Z1
## 3117                                  DP.DOD.DSTC.CR.NF
## 3118                               DP.DOD.DSTC.CR.NF.CD
## 3119                               DP.DOD.DSTC.CR.NF.Z1
## 3120                                  DP.DOD.DSTC.CR.PS
## 3121                               DP.DOD.DSTC.CR.PS.CD
## 3122                                          DPANUSLCU
## 3123                                          DPANUSSPB
## 3124                                          DPANUSSPF
## 3125                                     DS.DOD.DLXF.CD
## 3126                                     DS.DOD.STRM.CD
## 3127                                     DS.DOD.TOTL.CD
## 3128                                          DSTKMKTXD
## 3129                                          DSTKMKTXN
## 3130                                     DT.AMD.DLXF.CD
## 3131                                  DT.AMT.BLAT.CB.CD
## 3132                                     DT.AMT.BLAT.CD
## 3133                                  DT.AMT.BLAT.GG.CD
## 3134                                 DT.AMT.BLAT.OPS.CD
## 3135                                DT.AMT.BLAT.PRVG.CD
## 3136                                  DT.AMT.BLAT.PS.CD
## 3137                                  DT.AMT.BLTC.CB.CD
## 3138                                     DT.AMT.BLTC.CD
## 3139                                  DT.AMT.BLTC.GG.CD
## 3140                                 DT.AMT.BLTC.OPS.CD
## 3141                                DT.AMT.BLTC.PRVG.CD
## 3142                                  DT.AMT.BLTC.PS.CD
## 3143                            DT.AMT.DEAE.CD.IL.03.US
## 3144                          DT.AMT.DEAE.CD.IL.0912.US
## 3145                          DT.AMT.DEAE.CD.IL.1218.US
## 3146                          DT.AMT.DEAE.CD.IL.1824.US
## 3147                           DT.AMT.DEAE.CD.IL.24P.US
## 3148                            DT.AMT.DEAE.CD.IL.36.US
## 3149                            DT.AMT.DEAE.CD.IL.69.US
## 3150                            DT.AMT.DEAE.CD.IL.IQ.US
## 3151                                     DT.AMT.DECB.CD
## 3152                                     DT.AMT.DECT.CD
## 3153                         DT.AMT.DECT.CD.00.03.MO.US
## 3154                               DT.AMT.DECT.CD.03.US
## 3155                            DT.AMT.DECT.CD.03.YR.US
## 3156                         DT.AMT.DECT.CD.04.06.MO.US
## 3157                            DT.AMT.DECT.CD.04.YR.US
## 3158                         DT.AMT.DECT.CD.05.10.YR.US
## 3159                            DT.AMT.DECT.CD.05.YR.US
## 3160                         DT.AMT.DECT.CD.07.09.MO.US
## 3161                             DT.AMT.DECT.CD.0912.US
## 3162                         DT.AMT.DECT.CD.10.12.MO.US
## 3163                         DT.AMT.DECT.CD.10.15.YR.US
## 3164                             DT.AMT.DECT.CD.1218.US
## 3165                         DT.AMT.DECT.CD.13.18.MO.US
## 3166                         DT.AMT.DECT.CD.15.UP.YR.US
## 3167                             DT.AMT.DECT.CD.1824.US
## 3168                         DT.AMT.DECT.CD.19.24.MO.US
## 3169                              DT.AMT.DECT.CD.24P.US
## 3170                               DT.AMT.DECT.CD.36.US
## 3171                               DT.AMT.DECT.CD.69.US
## 3172                            DT.AMT.DECT.CD.AR.03.US
## 3173                          DT.AMT.DECT.CD.AR.0912.US
## 3174                          DT.AMT.DECT.CD.AR.1218.US
## 3175                          DT.AMT.DECT.CD.AR.1824.US
## 3176                           DT.AMT.DECT.CD.AR.24P.US
## 3177                            DT.AMT.DECT.CD.AR.36.US
## 3178                            DT.AMT.DECT.CD.AR.69.US
## 3179                            DT.AMT.DECT.CD.AR.IQ.US
## 3180                            DT.AMT.DECT.CD.CB.03.US
## 3181                          DT.AMT.DECT.CD.CB.0912.US
## 3182                          DT.AMT.DECT.CD.CB.1218.US
## 3183                          DT.AMT.DECT.CD.CB.1824.US
## 3184                           DT.AMT.DECT.CD.CB.24P.US
## 3185                            DT.AMT.DECT.CD.CB.36.US
## 3186                            DT.AMT.DECT.CD.CB.69.US
## 3187                            DT.AMT.DECT.CD.CB.IQ.US
## 3188                            DT.AMT.DECT.CD.CB.RM.US
## 3189                            DT.AMT.DECT.CD.GG.03.US
## 3190                          DT.AMT.DECT.CD.GG.0912.US
## 3191                          DT.AMT.DECT.CD.GG.1218.US
## 3192                          DT.AMT.DECT.CD.GG.1824.US
## 3193                           DT.AMT.DECT.CD.GG.24P.US
## 3194                            DT.AMT.DECT.CD.GG.36.US
## 3195                            DT.AMT.DECT.CD.GG.69.US
## 3196                            DT.AMT.DECT.CD.GG.IQ.US
## 3197                            DT.AMT.DECT.CD.GG.RM.US
## 3198                            DT.AMT.DECT.CD.IL.03.US
## 3199                          DT.AMT.DECT.CD.IL.0912.US
## 3200                          DT.AMT.DECT.CD.IL.1218.US
## 3201                          DT.AMT.DECT.CD.IL.1824.US
## 3202                           DT.AMT.DECT.CD.IL.24P.US
## 3203                            DT.AMT.DECT.CD.IL.36.US
## 3204                            DT.AMT.DECT.CD.IL.69.US
## 3205                            DT.AMT.DECT.CD.IL.IQ.US
## 3206                            DT.AMT.DECT.CD.IL.RM.US
## 3207                            DT.AMT.DECT.CD.IQ.00.US
## 3208                               DT.AMT.DECT.CD.IQ.US
## 3209                            DT.AMT.DECT.CD.MA.03.US
## 3210                          DT.AMT.DECT.CD.MA.0912.US
## 3211                          DT.AMT.DECT.CD.MA.1218.US
## 3212                          DT.AMT.DECT.CD.MA.1824.US
## 3213                           DT.AMT.DECT.CD.MA.24P.US
## 3214                            DT.AMT.DECT.CD.MA.36.US
## 3215                            DT.AMT.DECT.CD.MA.69.US
## 3216                            DT.AMT.DECT.CD.MA.IQ.US
## 3217                            DT.AMT.DECT.CD.MA.RM.US
## 3218                            DT.AMT.DECT.CD.OS.03.US
## 3219                          DT.AMT.DECT.CD.OS.0912.US
## 3220                          DT.AMT.DECT.CD.OS.1218.US
## 3221                          DT.AMT.DECT.CD.OS.1824.US
## 3222                           DT.AMT.DECT.CD.OS.24P.US
## 3223                            DT.AMT.DECT.CD.OS.36.US
## 3224                            DT.AMT.DECT.CD.OS.69.US
## 3225                            DT.AMT.DECT.CD.OS.IQ.US
## 3226                            DT.AMT.DECT.CD.OS.RM.US
## 3227                               DT.AMT.DECT.CD.RM.US
## 3228                            DT.AMT.DEFE.CD.IL.03.US
## 3229                          DT.AMT.DEFE.CD.IL.0912.US
## 3230                          DT.AMT.DEFE.CD.IL.1218.US
## 3231                          DT.AMT.DEFE.CD.IL.1824.US
## 3232                           DT.AMT.DEFE.CD.IL.24P.US
## 3233                            DT.AMT.DEFE.CD.IL.36.US
## 3234                            DT.AMT.DEFE.CD.IL.69.US
## 3235                            DT.AMT.DEFE.CD.IL.IQ.US
## 3236                                     DT.AMT.DEGG.CD
## 3237                                     DT.AMT.DEPS.CD
## 3238                            DT.AMT.DILD.CD.IL.03.US
## 3239                          DT.AMT.DILD.CD.IL.0912.US
## 3240                          DT.AMT.DILD.CD.IL.1218.US
## 3241                          DT.AMT.DILD.CD.IL.1824.US
## 3242                           DT.AMT.DILD.CD.IL.24P.US
## 3243                            DT.AMT.DILD.CD.IL.36.US
## 3244                            DT.AMT.DILD.CD.IL.69.US
## 3245                            DT.AMT.DILD.CD.IL.IQ.US
## 3246                                     DT.AMT.DIMF.CD
## 3247                         DT.AMT.DLBN.CD.CB.AR.03.US
## 3248                       DT.AMT.DLBN.CD.CB.AR.0912.US
## 3249                       DT.AMT.DLBN.CD.CB.AR.1218.US
## 3250                       DT.AMT.DLBN.CD.CB.AR.1824.US
## 3251                        DT.AMT.DLBN.CD.CB.AR.24P.US
## 3252                         DT.AMT.DLBN.CD.CB.AR.36.US
## 3253                         DT.AMT.DLBN.CD.CB.AR.69.US
## 3254                         DT.AMT.DLBN.CD.CB.AR.IQ.US
## 3255                         DT.AMT.DLBN.CD.GG.AR.03.US
## 3256                       DT.AMT.DLBN.CD.GG.AR.0912.US
## 3257                       DT.AMT.DLBN.CD.GG.AR.1218.US
## 3258                       DT.AMT.DLBN.CD.GG.AR.1824.US
## 3259                        DT.AMT.DLBN.CD.GG.AR.24P.US
## 3260                         DT.AMT.DLBN.CD.GG.AR.36.US
## 3261                         DT.AMT.DLBN.CD.GG.AR.69.US
## 3262                         DT.AMT.DLBN.CD.GG.AR.IQ.US
## 3263                         DT.AMT.DLBN.CD.MA.AR.03.US
## 3264                       DT.AMT.DLBN.CD.MA.AR.0912.US
## 3265                       DT.AMT.DLBN.CD.MA.AR.1218.US
## 3266                       DT.AMT.DLBN.CD.MA.AR.1824.US
## 3267                        DT.AMT.DLBN.CD.MA.AR.24P.US
## 3268                         DT.AMT.DLBN.CD.MA.AR.36.US
## 3269                         DT.AMT.DLBN.CD.MA.AR.69.US
## 3270                         DT.AMT.DLBN.CD.MA.AR.IQ.US
## 3271                         DT.AMT.DLBN.CD.OT.AR.03.US
## 3272                       DT.AMT.DLBN.CD.OT.AR.0912.US
## 3273                       DT.AMT.DLBN.CD.OT.AR.1218.US
## 3274                       DT.AMT.DLBN.CD.OT.AR.1824.US
## 3275                        DT.AMT.DLBN.CD.OT.AR.24P.US
## 3276                         DT.AMT.DLBN.CD.OT.AR.36.US
## 3277                         DT.AMT.DLBN.CD.OT.AR.69.US
## 3278                         DT.AMT.DLBN.CD.OT.AR.IQ.US
## 3279                         DT.AMT.DLCD.CD.CB.AR.03.US
## 3280                       DT.AMT.DLCD.CD.CB.AR.0912.US
## 3281                       DT.AMT.DLCD.CD.CB.AR.1218.US
## 3282                       DT.AMT.DLCD.CD.CB.AR.1824.US
## 3283                        DT.AMT.DLCD.CD.CB.AR.24P.US
## 3284                         DT.AMT.DLCD.CD.CB.AR.36.US
## 3285                         DT.AMT.DLCD.CD.CB.AR.69.US
## 3286                         DT.AMT.DLCD.CD.CB.AR.IQ.US
## 3287                         DT.AMT.DLCD.CD.GG.AR.03.US
## 3288                       DT.AMT.DLCD.CD.GG.AR.0912.US
## 3289                       DT.AMT.DLCD.CD.GG.AR.1218.US
## 3290                       DT.AMT.DLCD.CD.GG.AR.1824.US
## 3291                        DT.AMT.DLCD.CD.GG.AR.24P.US
## 3292                         DT.AMT.DLCD.CD.GG.AR.36.US
## 3293                         DT.AMT.DLCD.CD.GG.AR.69.US
## 3294                         DT.AMT.DLCD.CD.GG.AR.IQ.US
## 3295                         DT.AMT.DLCD.CD.MA.AR.03.US
## 3296                       DT.AMT.DLCD.CD.MA.AR.0912.US
## 3297                       DT.AMT.DLCD.CD.MA.AR.1218.US
## 3298                       DT.AMT.DLCD.CD.MA.AR.1824.US
## 3299                        DT.AMT.DLCD.CD.MA.AR.24P.US
## 3300                         DT.AMT.DLCD.CD.MA.AR.36.US
## 3301                         DT.AMT.DLCD.CD.MA.AR.69.US
## 3302                         DT.AMT.DLCD.CD.MA.AR.IQ.US
## 3303                         DT.AMT.DLCD.CD.OT.AR.03.US
## 3304                       DT.AMT.DLCD.CD.OT.AR.0912.US
## 3305                       DT.AMT.DLCD.CD.OT.AR.1218.US
## 3306                       DT.AMT.DLCD.CD.OT.AR.1824.US
## 3307                        DT.AMT.DLCD.CD.OT.AR.24P.US
## 3308                         DT.AMT.DLCD.CD.OT.AR.36.US
## 3309                         DT.AMT.DLCD.CD.OT.AR.69.US
## 3310                         DT.AMT.DLCD.CD.OT.AR.IQ.US
## 3311                                     DT.AMT.DLTF.CD
## 3312                         DT.AMT.DLTL.CD.CB.AR.03.US
## 3313                       DT.AMT.DLTL.CD.CB.AR.0912.US
## 3314                       DT.AMT.DLTL.CD.CB.AR.1218.US
## 3315                       DT.AMT.DLTL.CD.CB.AR.1824.US
## 3316                        DT.AMT.DLTL.CD.CB.AR.24P.US
## 3317                         DT.AMT.DLTL.CD.CB.AR.36.US
## 3318                         DT.AMT.DLTL.CD.CB.AR.69.US
## 3319                         DT.AMT.DLTL.CD.CB.AR.IQ.US
## 3320                         DT.AMT.DLTL.CD.GG.AR.03.US
## 3321                       DT.AMT.DLTL.CD.GG.AR.0912.US
## 3322                       DT.AMT.DLTL.CD.GG.AR.1218.US
## 3323                       DT.AMT.DLTL.CD.GG.AR.1824.US
## 3324                        DT.AMT.DLTL.CD.GG.AR.24P.US
## 3325                         DT.AMT.DLTL.CD.GG.AR.36.US
## 3326                         DT.AMT.DLTL.CD.GG.AR.69.US
## 3327                         DT.AMT.DLTL.CD.GG.AR.IQ.US
## 3328                         DT.AMT.DLTL.CD.MA.AR.03.US
## 3329                       DT.AMT.DLTL.CD.MA.AR.0912.US
## 3330                       DT.AMT.DLTL.CD.MA.AR.1218.US
## 3331                       DT.AMT.DLTL.CD.MA.AR.1824.US
## 3332                        DT.AMT.DLTL.CD.MA.AR.24P.US
## 3333                         DT.AMT.DLTL.CD.MA.AR.36.US
## 3334                         DT.AMT.DLTL.CD.MA.AR.69.US
## 3335                         DT.AMT.DLTL.CD.MA.AR.IQ.US
## 3336                         DT.AMT.DLTL.CD.OT.AR.03.US
## 3337                       DT.AMT.DLTL.CD.OT.AR.0912.US
## 3338                       DT.AMT.DLTL.CD.OT.AR.1218.US
## 3339                       DT.AMT.DLTL.CD.OT.AR.1824.US
## 3340                        DT.AMT.DLTL.CD.OT.AR.24P.US
## 3341                         DT.AMT.DLTL.CD.OT.AR.36.US
## 3342                         DT.AMT.DLTL.CD.OT.AR.69.US
## 3343                         DT.AMT.DLTL.CD.OT.AR.IQ.US
## 3344                         DT.AMT.DLTO.CD.CB.AR.03.US
## 3345                       DT.AMT.DLTO.CD.CB.AR.0912.US
## 3346                       DT.AMT.DLTO.CD.CB.AR.1218.US
## 3347                       DT.AMT.DLTO.CD.CB.AR.1824.US
## 3348                        DT.AMT.DLTO.CD.CB.AR.24P.US
## 3349                         DT.AMT.DLTO.CD.CB.AR.36.US
## 3350                         DT.AMT.DLTO.CD.CB.AR.69.US
## 3351                         DT.AMT.DLTO.CD.CB.AR.IQ.US
## 3352                         DT.AMT.DLTO.CD.GG.AR.03.US
## 3353                       DT.AMT.DLTO.CD.GG.AR.0912.US
## 3354                       DT.AMT.DLTO.CD.GG.AR.1218.US
## 3355                       DT.AMT.DLTO.CD.GG.AR.1824.US
## 3356                        DT.AMT.DLTO.CD.GG.AR.24P.US
## 3357                         DT.AMT.DLTO.CD.GG.AR.36.US
## 3358                         DT.AMT.DLTO.CD.GG.AR.69.US
## 3359                         DT.AMT.DLTO.CD.GG.AR.IQ.US
## 3360                         DT.AMT.DLTO.CD.MA.AR.03.US
## 3361                       DT.AMT.DLTO.CD.MA.AR.0912.US
## 3362                       DT.AMT.DLTO.CD.MA.AR.1218.US
## 3363                       DT.AMT.DLTO.CD.MA.AR.1824.US
## 3364                        DT.AMT.DLTO.CD.MA.AR.24P.US
## 3365                         DT.AMT.DLTO.CD.MA.AR.36.US
## 3366                         DT.AMT.DLTO.CD.MA.AR.69.US
## 3367                         DT.AMT.DLTO.CD.MA.AR.IQ.US
## 3368                         DT.AMT.DLTO.CD.OT.AR.03.US
## 3369                       DT.AMT.DLTO.CD.OT.AR.0912.US
## 3370                       DT.AMT.DLTO.CD.OT.AR.1218.US
## 3371                       DT.AMT.DLTO.CD.OT.AR.1824.US
## 3372                        DT.AMT.DLTO.CD.OT.AR.24P.US
## 3373                         DT.AMT.DLTO.CD.OT.AR.36.US
## 3374                         DT.AMT.DLTO.CD.OT.AR.69.US
## 3375                         DT.AMT.DLTO.CD.OT.AR.IQ.US
## 3376                            DT.AMT.DLTS.CD.GG.03.US
## 3377                          DT.AMT.DLTS.CD.GG.0912.US
## 3378                          DT.AMT.DLTS.CD.GG.1218.US
## 3379                          DT.AMT.DLTS.CD.GG.1824.US
## 3380                           DT.AMT.DLTS.CD.GG.24P.US
## 3381                            DT.AMT.DLTS.CD.GG.36.US
## 3382                            DT.AMT.DLTS.CD.GG.69.US
## 3383                            DT.AMT.DLTS.CD.GG.IQ.US
## 3384                         DT.AMT.DLTS.CD.MA.AR.03.US
## 3385                       DT.AMT.DLTS.CD.MA.AR.0912.US
## 3386                       DT.AMT.DLTS.CD.MA.AR.1218.US
## 3387                       DT.AMT.DLTS.CD.MA.AR.1824.US
## 3388                        DT.AMT.DLTS.CD.MA.AR.24P.US
## 3389                         DT.AMT.DLTS.CD.MA.AR.36.US
## 3390                         DT.AMT.DLTS.CD.MA.AR.69.US
## 3391                         DT.AMT.DLTS.CD.MA.AR.IQ.US
## 3392                         DT.AMT.DLTT.CD.CB.AR.03.US
## 3393                       DT.AMT.DLTT.CD.CB.AR.0912.US
## 3394                       DT.AMT.DLTT.CD.CB.AR.1218.US
## 3395                       DT.AMT.DLTT.CD.CB.AR.1824.US
## 3396                        DT.AMT.DLTT.CD.CB.AR.24P.US
## 3397                         DT.AMT.DLTT.CD.CB.AR.36.US
## 3398                         DT.AMT.DLTT.CD.CB.AR.69.US
## 3399                         DT.AMT.DLTT.CD.CB.AR.IQ.US
## 3400                         DT.AMT.DLTT.CD.GG.AR.03.US
## 3401                       DT.AMT.DLTT.CD.GG.AR.0912.US
## 3402                       DT.AMT.DLTT.CD.GG.AR.1218.US
## 3403                       DT.AMT.DLTT.CD.GG.AR.1824.US
## 3404                        DT.AMT.DLTT.CD.GG.AR.24P.US
## 3405                         DT.AMT.DLTT.CD.GG.AR.36.US
## 3406                         DT.AMT.DLTT.CD.GG.AR.69.US
## 3407                         DT.AMT.DLTT.CD.GG.AR.IQ.US
## 3408                         DT.AMT.DLTT.CD.MA.AR.03.US
## 3409                       DT.AMT.DLTT.CD.MA.AR.0912.US
## 3410                       DT.AMT.DLTT.CD.MA.AR.1218.US
## 3411                       DT.AMT.DLTT.CD.MA.AR.1824.US
## 3412                        DT.AMT.DLTT.CD.MA.AR.24P.US
## 3413                         DT.AMT.DLTT.CD.MA.AR.36.US
## 3414                         DT.AMT.DLTT.CD.MA.AR.69.US
## 3415                         DT.AMT.DLTT.CD.MA.AR.IQ.US
## 3416                         DT.AMT.DLTT.CD.OT.AR.03.US
## 3417                       DT.AMT.DLTT.CD.OT.AR.0912.US
## 3418                       DT.AMT.DLTT.CD.OT.AR.1218.US
## 3419                       DT.AMT.DLTT.CD.OT.AR.1824.US
## 3420                        DT.AMT.DLTT.CD.OT.AR.24P.US
## 3421                         DT.AMT.DLTT.CD.OT.AR.36.US
## 3422                         DT.AMT.DLTT.CD.OT.AR.69.US
## 3423                         DT.AMT.DLTT.CD.OT.AR.IQ.US
## 3424                                     DT.AMT.DLXF.CD
## 3425                                     DT.AMT.DOPS.CD
## 3426                                     DT.AMT.DPNG.CD
## 3427                                     DT.AMT.DPPG.CD
## 3428                                     DT.AMT.MIBR.CD
## 3429                                     DT.AMT.MIDA.CD
## 3430                                  DT.AMT.MLAT.CB.CD
## 3431                                     DT.AMT.MLAT.CD
## 3432                                  DT.AMT.MLAT.GG.CD
## 3433                                 DT.AMT.MLAT.OPS.CD
## 3434                                DT.AMT.MLAT.PRVG.CD
## 3435                                  DT.AMT.MLAT.PS.CD
## 3436                                  DT.AMT.MLTC.CB.CD
## 3437                                     DT.AMT.MLTC.CD
## 3438                                  DT.AMT.MLTC.GG.CD
## 3439                                 DT.AMT.MLTC.OPS.CD
## 3440                                DT.AMT.MLTC.PRVG.CD
## 3441                                  DT.AMT.MLTC.PS.CD
## 3442                                  DT.AMT.OFFT.CB.CD
## 3443                                     DT.AMT.OFFT.CD
## 3444                                  DT.AMT.OFFT.GG.CD
## 3445                                 DT.AMT.OFFT.OPS.CD
## 3446                                DT.AMT.OFFT.PRVG.CD
## 3447                                  DT.AMT.OFFT.PS.CD
## 3448                                  DT.AMT.PBND.CB.CD
## 3449                                     DT.AMT.PBND.CD
## 3450                                  DT.AMT.PBND.GG.CD
## 3451                                 DT.AMT.PBND.OPS.CD
## 3452                                DT.AMT.PBND.PRVG.CD
## 3453                                  DT.AMT.PBND.PS.CD
## 3454                                  DT.AMT.PCBK.CB.CD
## 3455                                     DT.AMT.PCBK.CD
## 3456                                  DT.AMT.PCBK.GG.CD
## 3457                                 DT.AMT.PCBK.OPS.CD
## 3458                                DT.AMT.PCBK.PRVG.CD
## 3459                                  DT.AMT.PCBK.PS.CD
## 3460                                     DT.AMT.PGNG.CD
## 3461                                     DT.AMT.PNGB.CD
## 3462                                     DT.AMT.PNGC.CD
## 3463                                  DT.AMT.PROP.CB.CD
## 3464                                     DT.AMT.PROP.CD
## 3465                                  DT.AMT.PROP.GG.CD
## 3466                                 DT.AMT.PROP.OPS.CD
## 3467                                DT.AMT.PROP.PRVG.CD
## 3468                                  DT.AMT.PROP.PS.CD
## 3469                                     DT.AMT.PRPG.CD
## 3470                         DT.AMT.PRVS.CD.00.03.MO.US
## 3471                            DT.AMT.PRVS.CD.03.YR.US
## 3472                         DT.AMT.PRVS.CD.04.06.MO.US
## 3473                            DT.AMT.PRVS.CD.04.YR.US
## 3474                         DT.AMT.PRVS.CD.05.10.YR.US
## 3475                            DT.AMT.PRVS.CD.05.YR.US
## 3476                         DT.AMT.PRVS.CD.07.09.MO.US
## 3477                         DT.AMT.PRVS.CD.10.12.MO.US
## 3478                         DT.AMT.PRVS.CD.10.15.YR.US
## 3479                         DT.AMT.PRVS.CD.13.18.MO.US
## 3480                         DT.AMT.PRVS.CD.15.UP.YR.US
## 3481                         DT.AMT.PRVS.CD.19.24.MO.US
## 3482                            DT.AMT.PRVS.CD.IQ.00.US
## 3483                                  DT.AMT.PRVT.CB.CD
## 3484                                     DT.AMT.PRVT.CD
## 3485                                  DT.AMT.PRVT.GG.CD
## 3486                                 DT.AMT.PRVT.OPS.CD
## 3487                                DT.AMT.PRVT.PRVG.CD
## 3488                                  DT.AMT.PRVT.PS.CD
## 3489                         DT.AMT.PUBS.CD.00.03.MO.US
## 3490                            DT.AMT.PUBS.CD.03.YR.US
## 3491                         DT.AMT.PUBS.CD.04.06.MO.US
## 3492                            DT.AMT.PUBS.CD.04.YR.US
## 3493                         DT.AMT.PUBS.CD.05.10.YR.US
## 3494                            DT.AMT.PUBS.CD.05.YR.US
## 3495                         DT.AMT.PUBS.CD.07.09.MO.US
## 3496                         DT.AMT.PUBS.CD.10.12.MO.US
## 3497                         DT.AMT.PUBS.CD.10.15.YR.US
## 3498                         DT.AMT.PUBS.CD.13.18.MO.US
## 3499                         DT.AMT.PUBS.CD.15.UP.YR.US
## 3500                         DT.AMT.PUBS.CD.19.24.MO.US
## 3501                            DT.AMT.PUBS.CD.IQ.00.US
## 3502                               DT.AXA.DECT.CD.CB.US
## 3503                               DT.AXA.DECT.CD.GG.US
## 3504                               DT.AXA.DECT.CD.MA.US
## 3505                            DT.AXA.DECT.CD.OT.HH.US
## 3506                            DT.AXA.DECT.CD.OT.NB.US
## 3507                            DT.AXA.DECT.CD.OT.NF.US
## 3508                               DT.AXA.DECT.CD.OT.US
## 3509                               DT.AXA.DIDI.CD.IL.US
## 3510                               DT.AXA.DIFE.CD.IL.US
## 3511                               DT.AXA.DIIE.CD.IL.US
## 3512                                     DT.AXA.DLXF.CD
## 3513                                     DT.AXA.DPPG.CD
## 3514                                     DT.AXA.OFFT.CD
## 3515                                     DT.AXA.PRVT.CD
## 3516                                     DT.AXF.DPPG.CD
## 3517                                     DT.AXR.DPPG.CD
## 3518                                     DT.AXR.OFFT.CD
## 3519                                     DT.AXR.PRVT.CD
## 3520                                     DT.COM.BLAT.CD
## 3521                                     DT.COM.DPPG.CD
## 3522                                     DT.COM.MIBR.CD
## 3523                                     DT.COM.MIDA.CD
## 3524                                     DT.COM.MLAT.CD
## 3525                                     DT.COM.OFFT.CD
## 3526                                     DT.COM.PRVT.CD
## 3527                                     DT.CUR.CCVL.CD
## 3528                                     DT.CUR.DMAK.ZS
## 3529                                     DT.CUR.EURO.ZS
## 3530                                     DT.CUR.FFRC.ZS
## 3531                                     DT.CUR.JYEN.ZS
## 3532                                     DT.CUR.MULC.ZS
## 3533                                     DT.CUR.OTHC.ZS
## 3534                                     DT.CUR.SDRW.ZS
## 3535                                     DT.CUR.SWFR.ZS
## 3536                                     DT.CUR.UKPS.ZS
## 3537                                     DT.CUR.USDL.ZS
## 3538                                     DT.DFR.DPPG.CD
## 3539                                  DT.DIS.BLAT.CB.CD
## 3540                                     DT.DIS.BLAT.CD
## 3541                                  DT.DIS.BLAT.GG.CD
## 3542                                 DT.DIS.BLAT.OPS.CD
## 3543                                DT.DIS.BLAT.PRVG.CD
## 3544                                  DT.DIS.BLAT.PS.CD
## 3545                                     DT.DIS.BLCT.CD
## 3546                                  DT.DIS.BLTC.CB.CD
## 3547                                     DT.DIS.BLTC.CD
## 3548                                  DT.DIS.BLTC.GG.CD
## 3549                                 DT.DIS.BLTC.OPS.CD
## 3550                                DT.DIS.BLTC.PRVG.CD
## 3551                                  DT.DIS.BLTC.PS.CD
## 3552                                     DT.DIS.DECB.CD
## 3553                                     DT.DIS.DECT.CD
## 3554                                     DT.DIS.DEGG.CD
## 3555                                     DT.DIS.DEPS.CD
## 3556                                     DT.DIS.DIMF.CD
## 3557                                     DT.DIS.DLTF.CD
## 3558                                     DT.DIS.DLXF.CD
## 3559                                     DT.DIS.DOPS.CD
## 3560                                     DT.DIS.DPNG.CD
## 3561                                     DT.DIS.DPPG.CD
## 3562                                     DT.DIS.DSTC.CD
## 3563                                     DT.DIS.IDAG.CD
## 3564                                     DT.DIS.MIBR.CD
## 3565                                     DT.DIS.MIDA.CD
## 3566                                  DT.DIS.MLAT.CB.CD
## 3567                                     DT.DIS.MLAT.CD
## 3568                                  DT.DIS.MLAT.GG.CD
## 3569                                 DT.DIS.MLAT.OPS.CD
## 3570                                DT.DIS.MLAT.PRVG.CD
## 3571                                  DT.DIS.MLAT.PS.CD
## 3572                                     DT.DIS.MLCT.CD
## 3573                                  DT.DIS.MLTC.CB.CD
## 3574                                     DT.DIS.MLTC.CD
## 3575                                  DT.DIS.MLTC.GG.CD
## 3576                                 DT.DIS.MLTC.OPS.CD
## 3577                                DT.DIS.MLTC.PRVG.CD
## 3578                                  DT.DIS.MLTC.PS.CD
## 3579                                  DT.DIS.OFFT.CB.CD
## 3580                                     DT.DIS.OFFT.CD
## 3581                                  DT.DIS.OFFT.GG.CD
## 3582                                 DT.DIS.OFFT.OPS.CD
## 3583                                DT.DIS.OFFT.PRVG.CD
## 3584                                  DT.DIS.OFFT.PS.CD
## 3585                                  DT.DIS.PBND.CB.CD
## 3586                                     DT.DIS.PBND.CD
## 3587                                  DT.DIS.PBND.GG.CD
## 3588                                 DT.DIS.PBND.OPS.CD
## 3589                                DT.DIS.PBND.PRVG.CD
## 3590                                  DT.DIS.PBND.PS.CD
## 3591                                  DT.DIS.PCBK.CB.CD
## 3592                                     DT.DIS.PCBK.CD
## 3593                                  DT.DIS.PCBK.GG.CD
## 3594                                 DT.DIS.PCBK.OPS.CD
## 3595                                DT.DIS.PCBK.PRVG.CD
## 3596                                  DT.DIS.PCBK.PS.CD
## 3597                                     DT.DIS.PGNG.CD
## 3598                                     DT.DIS.PNGB.CD
## 3599                                     DT.DIS.PNGC.CD
## 3600                                  DT.DIS.PROP.CB.CD
## 3601                                     DT.DIS.PROP.CD
## 3602                                  DT.DIS.PROP.GG.CD
## 3603                                 DT.DIS.PROP.OPS.CD
## 3604                                DT.DIS.PROP.PRVG.CD
## 3605                                  DT.DIS.PROP.PS.CD
## 3606                                     DT.DIS.PRPG.CD
## 3607                                  DT.DIS.PRVT.CB.CD
## 3608                                     DT.DIS.PRVT.CD
## 3609                                  DT.DIS.PRVT.GG.CD
## 3610                                 DT.DIS.PRVT.OPS.CD
## 3611                                DT.DIS.PRVT.PRVG.CD
## 3612                                  DT.DIS.PRVT.PS.CD
## 3613                                     DT.DOD.ALLC.CD
## 3614                                     DT.DOD.ALLC.ZS
## 3615                                    DT.DOD.ALLC.ZSG
## 3616                                    DT.DOD.ALLC.ZSX
## 3617                                     DT.DOD.ALLN.CD
## 3618                                    DT.DOD.ALLN.ZSG
## 3619                                    DT.DOD.ALLN.ZSX
## 3620                                  DT.DOD.BLAT.CB.CD
## 3621                                     DT.DOD.BLAT.CD
## 3622                                  DT.DOD.BLAT.GG.CD
## 3623                                 DT.DOD.BLAT.OPS.CD
## 3624                                DT.DOD.BLAT.PRVG.CD
## 3625                                  DT.DOD.BLAT.PS.CD
## 3626                                  DT.DOD.BLTC.CB.CD
## 3627                                     DT.DOD.BLTC.CD
## 3628                                  DT.DOD.BLTC.GG.CD
## 3629                                 DT.DOD.BLTC.OPS.CD
## 3630                                DT.DOD.BLTC.PRVG.CD
## 3631                                  DT.DOD.BLTC.PS.CD
## 3632                                     DT.DOD.BLTN.CD
## 3633                            DT.DOD.BNLT.CD.PR.AR.US
## 3634                            DT.DOD.BNLT.CD.PU.AR.US
## 3635                            DT.DOD.CDLT.CD.PR.AR.US
## 3636                            DT.DOD.CDLT.CD.PU.AR.US
## 3637                            DT.DOD.CDST.CD.PR.AR.US
## 3638                            DT.DOD.CDST.CD.PU.AR.US
## 3639                                     DT.DOD.DECB.CD
## 3640                               DT.DOD.DECT.AR.T4.US
## 3641                                  DT.DOD.DECT.AR.US
## 3642                               DT.DOD.DECT.CB.AR.US
## 3643                               DT.DOD.DECT.CB.DS.US
## 3644                                     DT.DOD.DECT.CD
## 3645                            DT.DOD.DECT.CD.AR.BE.US
## 3646                            DT.DOD.DECT.CD.AR.EA.US
## 3647                            DT.DOD.DECT.CD.AR.EN.US
## 3648                            DT.DOD.DECT.CD.AR.EX.US
## 3649                            DT.DOD.DECT.CD.AR.GE.US
## 3650                            DT.DOD.DECT.CD.AR.NE.US
## 3651                            DT.DOD.DECT.CD.AR.OC.US
## 3652                            DT.DOD.DECT.CD.AR.PX.US
## 3653                            DT.DOD.DECT.CD.AR.TL.US
## 3654                            DT.DOD.DECT.CD.AR.TR.US
## 3655                               DT.DOD.DECT.CD.AR.US
## 3656                         DT.DOD.DECT.CD.CB.AR.BE.US
## 3657                         DT.DOD.DECT.CD.CB.AR.EA.US
## 3658                         DT.DOD.DECT.CD.CB.AR.EN.US
## 3659                         DT.DOD.DECT.CD.CB.AR.EX.US
## 3660                         DT.DOD.DECT.CD.CB.AR.GE.US
## 3661                         DT.DOD.DECT.CD.CB.AR.NE.US
## 3662                         DT.DOD.DECT.CD.CB.AR.OC.US
## 3663                         DT.DOD.DECT.CD.CB.AR.PX.US
## 3664                         DT.DOD.DECT.CD.CB.AR.TR.US
## 3665                            DT.DOD.DECT.CD.CB.AR.US
## 3666                         DT.DOD.DECT.CD.CB.TD.MP.US
## 3667                         DT.DOD.DECT.CD.CB.TD.MV.US
## 3668                         DT.DOD.DECT.CD.CB.TD.NV.US
## 3669                                  DT.DOD.DECT.CD.CG
## 3670                            DT.DOD.DECT.CD.DC.T5.US
## 3671                               DT.DOD.DECT.CD.DC.US
## 3672                               DT.DOD.DECT.CD.DT.US
## 3673                         DT.DOD.DECT.CD.FC.CB.EU.US
## 3674                         DT.DOD.DECT.CD.FC.CB.JY.US
## 3675                         DT.DOD.DECT.CD.FC.CB.OT.US
## 3676                         DT.DOD.DECT.CD.FC.CB.TO.US
## 3677                         DT.DOD.DECT.CD.FC.CB.US.US
## 3678                         DT.DOD.DECT.CD.FC.GG.EU.US
## 3679                         DT.DOD.DECT.CD.FC.GG.JY.US
## 3680                         DT.DOD.DECT.CD.FC.GG.OT.US
## 3681                         DT.DOD.DECT.CD.FC.GG.TO.US
## 3682                         DT.DOD.DECT.CD.FC.GG.US.US
## 3683                         DT.DOD.DECT.CD.FC.IL.EU.US
## 3684                         DT.DOD.DECT.CD.FC.IL.JY.US
## 3685                         DT.DOD.DECT.CD.FC.IL.OT.US
## 3686                         DT.DOD.DECT.CD.FC.IL.TO.US
## 3687                         DT.DOD.DECT.CD.FC.IL.US.US
## 3688                         DT.DOD.DECT.CD.FC.MA.EU.US
## 3689                         DT.DOD.DECT.CD.FC.MA.JY.US
## 3690                         DT.DOD.DECT.CD.FC.MA.OT.US
## 3691                         DT.DOD.DECT.CD.FC.MA.TO.US
## 3692                         DT.DOD.DECT.CD.FC.MA.US.US
## 3693                         DT.DOD.DECT.CD.FC.OT.EU.US
## 3694                         DT.DOD.DECT.CD.FC.OT.JY.US
## 3695                         DT.DOD.DECT.CD.FC.OT.OT.US
## 3696                         DT.DOD.DECT.CD.FC.OT.TO.US
## 3697                         DT.DOD.DECT.CD.FC.OT.US.US
## 3698                            DT.DOD.DECT.CD.FC.T5.US
## 3699                               DT.DOD.DECT.CD.FC.US
## 3700                            DT.DOD.DECT.CD.FF.ER.US
## 3701                            DT.DOD.DECT.CD.FF.OD.US
## 3702                            DT.DOD.DECT.CD.FF.TT.US
## 3703                            DT.DOD.DECT.CD.FF.UD.US
## 3704                            DT.DOD.DECT.CD.FF.YE.US
## 3705                         DT.DOD.DECT.CD.GG.AR.BE.US
## 3706                         DT.DOD.DECT.CD.GG.AR.EA.US
## 3707                         DT.DOD.DECT.CD.GG.AR.EN.US
## 3708                         DT.DOD.DECT.CD.GG.AR.EX.US
## 3709                         DT.DOD.DECT.CD.GG.AR.GE.US
## 3710                         DT.DOD.DECT.CD.GG.AR.NE.US
## 3711                         DT.DOD.DECT.CD.GG.AR.OC.US
## 3712                         DT.DOD.DECT.CD.GG.AR.PX.US
## 3713                         DT.DOD.DECT.CD.GG.AR.TR.US
## 3714                            DT.DOD.DECT.CD.GG.AR.US
## 3715                         DT.DOD.DECT.CD.GG.TD.MP.US
## 3716                         DT.DOD.DECT.CD.GG.TD.MV.US
## 3717                         DT.DOD.DECT.CD.GG.TD.NV.US
## 3718                               DT.DOD.DECT.CD.HN.US
## 3719                         DT.DOD.DECT.CD.IL.AR.BE.US
## 3720                         DT.DOD.DECT.CD.IL.AR.EA.US
## 3721                         DT.DOD.DECT.CD.IL.AR.EN.US
## 3722                         DT.DOD.DECT.CD.IL.AR.EX.US
## 3723                         DT.DOD.DECT.CD.IL.AR.GE.US
## 3724                         DT.DOD.DECT.CD.IL.AR.NE.US
## 3725                         DT.DOD.DECT.CD.IL.AR.OC.US
## 3726                         DT.DOD.DECT.CD.IL.AR.PX.US
## 3727                         DT.DOD.DECT.CD.IL.AR.TR.US
## 3728                               DT.DOD.DECT.CD.IL.US
## 3729                         DT.DOD.DECT.CD.LT.TD.MP.US
## 3730                         DT.DOD.DECT.CD.LT.TD.MV.US
## 3731                         DT.DOD.DECT.CD.LT.TD.NV.US
## 3732                               DT.DOD.DECT.CD.LT.US
## 3733                         DT.DOD.DECT.CD.MA.AR.BE.US
## 3734                         DT.DOD.DECT.CD.MA.AR.EA.US
## 3735                         DT.DOD.DECT.CD.MA.AR.EN.US
## 3736                         DT.DOD.DECT.CD.MA.AR.EX.US
## 3737                         DT.DOD.DECT.CD.MA.AR.GE.US
## 3738                         DT.DOD.DECT.CD.MA.AR.NE.US
## 3739                         DT.DOD.DECT.CD.MA.AR.OC.US
## 3740                         DT.DOD.DECT.CD.MA.AR.PX.US
## 3741                         DT.DOD.DECT.CD.MA.AR.TR.US
## 3742                            DT.DOD.DECT.CD.MA.AR.US
## 3743                         DT.DOD.DECT.CD.MA.TD.MP.US
## 3744                         DT.DOD.DECT.CD.MA.TD.MV.US
## 3745                         DT.DOD.DECT.CD.MA.TD.NV.US
## 3746                               DT.DOD.DECT.CD.NC.US
## 3747                               DT.DOD.DECT.CD.OF.US
## 3748                         DT.DOD.DECT.CD.OT.AR.BE.US
## 3749                         DT.DOD.DECT.CD.OT.AR.EA.US
## 3750                         DT.DOD.DECT.CD.OT.AR.EN.US
## 3751                         DT.DOD.DECT.CD.OT.AR.EX.US
## 3752                         DT.DOD.DECT.CD.OT.AR.GE.US
## 3753                         DT.DOD.DECT.CD.OT.AR.NE.US
## 3754                         DT.DOD.DECT.CD.OT.AR.OC.US
## 3755                         DT.DOD.DECT.CD.OT.AR.PX.US
## 3756                         DT.DOD.DECT.CD.OT.AR.TR.US
## 3757                            DT.DOD.DECT.CD.OT.AR.US
## 3758                         DT.DOD.DECT.CD.OT.TD.MP.US
## 3759                         DT.DOD.DECT.CD.OT.TD.MV.US
## 3760                         DT.DOD.DECT.CD.OT.TD.NV.US
## 3761                                  DT.DOD.DECT.CD.PC
## 3762                         DT.DOD.DECT.CD.ST.TD.MP.US
## 3763                         DT.DOD.DECT.CD.ST.TD.MV.US
## 3764                         DT.DOD.DECT.CD.ST.TD.NV.US
## 3765                               DT.DOD.DECT.CD.ST.US
## 3766                            DT.DOD.DECT.CD.TD.MP.US
## 3767                            DT.DOD.DECT.CD.TD.MV.US
## 3768                            DT.DOD.DECT.CD.TD.NV.US
## 3769                               DT.DOD.DECT.CD.TL.US
## 3770                               DT.DOD.DECT.CD.TO.US
## 3771                            DT.DOD.DECT.CD.UC.T5.US
## 3772                               DT.DOD.DECT.CD.UC.US
## 3773                                 DT.DOD.DECT.CD.ZSG
## 3774                               DT.DOD.DECT.DS.T4.US
## 3775                                  DT.DOD.DECT.DS.US
## 3776                                  DT.DOD.DECT.EX.ZS
## 3777                               DT.DOD.DECT.GG.AR.US
## 3778                               DT.DOD.DECT.GG.DS.US
## 3779                                  DT.DOD.DECT.GN.ZS
## 3780                               DT.DOD.DECT.IL.AR.US
## 3781                               DT.DOD.DECT.MA.AR.US
## 3782                               DT.DOD.DECT.MA.DS.US
## 3783                               DT.DOD.DECT.OT.AR.US
## 3784                               DT.DOD.DECT.OT.DS.US
## 3785                               DT.DOD.DECT.T4.AR.US
## 3786                                     DT.DOD.DEGG.CD
## 3787                                     DT.DOD.DEPS.CD
## 3788                         DT.DOD.DIDI.CD.FC.IL.EU.US
## 3789                         DT.DOD.DIDI.CD.FC.IL.JY.US
## 3790                         DT.DOD.DIDI.CD.FC.IL.OT.US
## 3791                         DT.DOD.DIDI.CD.FC.IL.TO.US
## 3792                         DT.DOD.DIDI.CD.FC.IL.US.US
## 3793                            DT.DOD.DIDI.CD.IL.BE.US
## 3794                            DT.DOD.DIDI.CD.IL.EA.US
## 3795                            DT.DOD.DIDI.CD.IL.EN.US
## 3796                            DT.DOD.DIDI.CD.IL.EX.US
## 3797                            DT.DOD.DIDI.CD.IL.GE.US
## 3798                            DT.DOD.DIDI.CD.IL.NE.US
## 3799                            DT.DOD.DIDI.CD.IL.OC.US
## 3800                            DT.DOD.DIDI.CD.IL.PX.US
## 3801                            DT.DOD.DIDI.CD.IL.TR.US
## 3802                               DT.DOD.DIDI.CD.IL.US
## 3803                               DT.DOD.DIDI.CD.PR.US
## 3804                               DT.DOD.DIDI.CD.PU.US
## 3805                         DT.DOD.DIFE.CD.FC.IL.EU.US
## 3806                         DT.DOD.DIFE.CD.FC.IL.JY.US
## 3807                         DT.DOD.DIFE.CD.FC.IL.OT.US
## 3808                         DT.DOD.DIFE.CD.FC.IL.TO.US
## 3809                         DT.DOD.DIFE.CD.FC.IL.US.US
## 3810                            DT.DOD.DIFE.CD.IL.BE.US
## 3811                            DT.DOD.DIFE.CD.IL.EA.US
## 3812                            DT.DOD.DIFE.CD.IL.EN.US
## 3813                            DT.DOD.DIFE.CD.IL.EX.US
## 3814                            DT.DOD.DIFE.CD.IL.GE.US
## 3815                            DT.DOD.DIFE.CD.IL.NE.US
## 3816                            DT.DOD.DIFE.CD.IL.OC.US
## 3817                            DT.DOD.DIFE.CD.IL.PX.US
## 3818                            DT.DOD.DIFE.CD.IL.TR.US
## 3819                               DT.DOD.DIFE.CD.IL.US
## 3820                               DT.DOD.DIFE.CD.PR.US
## 3821                               DT.DOD.DIFE.CD.PU.US
## 3822                         DT.DOD.DIIE.CD.FC.IL.EU.US
## 3823                         DT.DOD.DIIE.CD.FC.IL.JY.US
## 3824                         DT.DOD.DIIE.CD.FC.IL.OT.US
## 3825                         DT.DOD.DIIE.CD.FC.IL.TO.US
## 3826                         DT.DOD.DIIE.CD.FC.IL.US.US
## 3827                            DT.DOD.DIIE.CD.IL.BE.US
## 3828                            DT.DOD.DIIE.CD.IL.EA.US
## 3829                            DT.DOD.DIIE.CD.IL.EN.US
## 3830                            DT.DOD.DIIE.CD.IL.EX.US
## 3831                            DT.DOD.DIIE.CD.IL.GE.US
## 3832                            DT.DOD.DIIE.CD.IL.NE.US
## 3833                            DT.DOD.DIIE.CD.IL.OC.US
## 3834                            DT.DOD.DIIE.CD.IL.PX.US
## 3835                            DT.DOD.DIIE.CD.IL.TR.US
## 3836                               DT.DOD.DIIE.CD.IL.US
## 3837                               DT.DOD.DIIE.CD.PR.US
## 3838                               DT.DOD.DIIE.CD.PU.US
## 3839                               DT.DOD.DIIL.CD.PR.US
## 3840                               DT.DOD.DIIL.CD.PU.US
## 3841                                     DT.DOD.DIMF.CD
## 3842                         DT.DOD.DLBN.CD.CB.AR.BE.US
## 3843                         DT.DOD.DLBN.CD.CB.AR.EA.US
## 3844                         DT.DOD.DLBN.CD.CB.AR.EN.US
## 3845                         DT.DOD.DLBN.CD.CB.AR.EX.US
## 3846                         DT.DOD.DLBN.CD.CB.AR.GE.US
## 3847                         DT.DOD.DLBN.CD.CB.AR.NE.US
## 3848                         DT.DOD.DLBN.CD.CB.AR.OC.US
## 3849                         DT.DOD.DLBN.CD.CB.AR.PX.US
## 3850                         DT.DOD.DLBN.CD.CB.AR.TR.US
## 3851                            DT.DOD.DLBN.CD.CB.AR.US
## 3852                         DT.DOD.DLBN.CD.GG.AR.BE.US
## 3853                         DT.DOD.DLBN.CD.GG.AR.EA.US
## 3854                         DT.DOD.DLBN.CD.GG.AR.EN.US
## 3855                         DT.DOD.DLBN.CD.GG.AR.EX.US
## 3856                         DT.DOD.DLBN.CD.GG.AR.GE.US
## 3857                         DT.DOD.DLBN.CD.GG.AR.NE.US
## 3858                         DT.DOD.DLBN.CD.GG.AR.OC.US
## 3859                         DT.DOD.DLBN.CD.GG.AR.PX.US
## 3860                         DT.DOD.DLBN.CD.GG.AR.TR.US
## 3861                            DT.DOD.DLBN.CD.GG.AR.US
## 3862                               DT.DOD.DLBN.CD.HN.US
## 3863                         DT.DOD.DLBN.CD.MA.AR.BE.US
## 3864                         DT.DOD.DLBN.CD.MA.AR.EA.US
## 3865                         DT.DOD.DLBN.CD.MA.AR.EN.US
## 3866                         DT.DOD.DLBN.CD.MA.AR.EX.US
## 3867                         DT.DOD.DLBN.CD.MA.AR.GE.US
## 3868                         DT.DOD.DLBN.CD.MA.AR.NE.US
## 3869                         DT.DOD.DLBN.CD.MA.AR.OC.US
## 3870                         DT.DOD.DLBN.CD.MA.AR.PX.US
## 3871                         DT.DOD.DLBN.CD.MA.AR.TR.US
## 3872                            DT.DOD.DLBN.CD.MA.AR.US
## 3873                               DT.DOD.DLBN.CD.NC.US
## 3874                               DT.DOD.DLBN.CD.OF.US
## 3875                         DT.DOD.DLBN.CD.OT.AR.BE.US
## 3876                         DT.DOD.DLBN.CD.OT.AR.EA.US
## 3877                         DT.DOD.DLBN.CD.OT.AR.EN.US
## 3878                         DT.DOD.DLBN.CD.OT.AR.EX.US
## 3879                         DT.DOD.DLBN.CD.OT.AR.GE.US
## 3880                         DT.DOD.DLBN.CD.OT.AR.NE.US
## 3881                         DT.DOD.DLBN.CD.OT.AR.OC.US
## 3882                         DT.DOD.DLBN.CD.OT.AR.PX.US
## 3883                         DT.DOD.DLBN.CD.OT.AR.TR.US
## 3884                            DT.DOD.DLBN.CD.OT.AR.US
## 3885                         DT.DOD.DLCD.CD.CB.AR.BE.US
## 3886                         DT.DOD.DLCD.CD.CB.AR.EA.US
## 3887                         DT.DOD.DLCD.CD.CB.AR.EN.US
## 3888                         DT.DOD.DLCD.CD.CB.AR.EX.US
## 3889                         DT.DOD.DLCD.CD.CB.AR.GE.US
## 3890                         DT.DOD.DLCD.CD.CB.AR.NE.US
## 3891                         DT.DOD.DLCD.CD.CB.AR.OC.US
## 3892                         DT.DOD.DLCD.CD.CB.AR.PX.US
## 3893                         DT.DOD.DLCD.CD.CB.AR.TR.US
## 3894                            DT.DOD.DLCD.CD.CB.AR.US
## 3895                         DT.DOD.DLCD.CD.GG.AR.BE.US
## 3896                         DT.DOD.DLCD.CD.GG.AR.EA.US
## 3897                         DT.DOD.DLCD.CD.GG.AR.EN.US
## 3898                         DT.DOD.DLCD.CD.GG.AR.EX.US
## 3899                         DT.DOD.DLCD.CD.GG.AR.GE.US
## 3900                         DT.DOD.DLCD.CD.GG.AR.NE.US
## 3901                         DT.DOD.DLCD.CD.GG.AR.OC.US
## 3902                         DT.DOD.DLCD.CD.GG.AR.PX.US
## 3903                         DT.DOD.DLCD.CD.GG.AR.TR.US
## 3904                            DT.DOD.DLCD.CD.GG.AR.US
## 3905                               DT.DOD.DLCD.CD.HN.US
## 3906                         DT.DOD.DLCD.CD.MA.AR.BE.US
## 3907                         DT.DOD.DLCD.CD.MA.AR.EA.US
## 3908                         DT.DOD.DLCD.CD.MA.AR.EN.US
## 3909                         DT.DOD.DLCD.CD.MA.AR.EX.US
## 3910                         DT.DOD.DLCD.CD.MA.AR.GE.US
## 3911                         DT.DOD.DLCD.CD.MA.AR.NE.US
## 3912                         DT.DOD.DLCD.CD.MA.AR.OC.US
## 3913                         DT.DOD.DLCD.CD.MA.AR.PX.US
## 3914                         DT.DOD.DLCD.CD.MA.AR.TR.US
## 3915                            DT.DOD.DLCD.CD.MA.AR.US
## 3916                               DT.DOD.DLCD.CD.NC.US
## 3917                               DT.DOD.DLCD.CD.OF.US
## 3918                         DT.DOD.DLCD.CD.OT.AR.BE.US
## 3919                         DT.DOD.DLCD.CD.OT.AR.EA.US
## 3920                         DT.DOD.DLCD.CD.OT.AR.EN.US
## 3921                         DT.DOD.DLCD.CD.OT.AR.EX.US
## 3922                         DT.DOD.DLCD.CD.OT.AR.GE.US
## 3923                         DT.DOD.DLCD.CD.OT.AR.NE.US
## 3924                         DT.DOD.DLCD.CD.OT.AR.OC.US
## 3925                         DT.DOD.DLCD.CD.OT.AR.PX.US
## 3926                         DT.DOD.DLCD.CD.OT.AR.TR.US
## 3927                            DT.DOD.DLCD.CD.OT.AR.US
## 3928                                     DT.DOD.DLTF.CD
## 3929                         DT.DOD.DLTL.CD.CB.AR.BE.US
## 3930                         DT.DOD.DLTL.CD.CB.AR.EA.US
## 3931                         DT.DOD.DLTL.CD.CB.AR.EN.US
## 3932                         DT.DOD.DLTL.CD.CB.AR.EX.US
## 3933                         DT.DOD.DLTL.CD.CB.AR.GE.US
## 3934                         DT.DOD.DLTL.CD.CB.AR.NE.US
## 3935                         DT.DOD.DLTL.CD.CB.AR.OC.US
## 3936                         DT.DOD.DLTL.CD.CB.AR.PX.US
## 3937                         DT.DOD.DLTL.CD.CB.AR.TR.US
## 3938                            DT.DOD.DLTL.CD.CB.AR.US
## 3939                         DT.DOD.DLTL.CD.GG.AR.BE.US
## 3940                         DT.DOD.DLTL.CD.GG.AR.EA.US
## 3941                         DT.DOD.DLTL.CD.GG.AR.EN.US
## 3942                         DT.DOD.DLTL.CD.GG.AR.EX.US
## 3943                         DT.DOD.DLTL.CD.GG.AR.GE.US
## 3944                         DT.DOD.DLTL.CD.GG.AR.NE.US
## 3945                         DT.DOD.DLTL.CD.GG.AR.OC.US
## 3946                         DT.DOD.DLTL.CD.GG.AR.PX.US
## 3947                         DT.DOD.DLTL.CD.GG.AR.TR.US
## 3948                            DT.DOD.DLTL.CD.GG.AR.US
## 3949                               DT.DOD.DLTL.CD.HN.US
## 3950                         DT.DOD.DLTL.CD.MA.AR.BE.US
## 3951                         DT.DOD.DLTL.CD.MA.AR.EA.US
## 3952                         DT.DOD.DLTL.CD.MA.AR.EN.US
## 3953                         DT.DOD.DLTL.CD.MA.AR.EX.US
## 3954                         DT.DOD.DLTL.CD.MA.AR.GE.US
## 3955                         DT.DOD.DLTL.CD.MA.AR.NE.US
## 3956                         DT.DOD.DLTL.CD.MA.AR.OC.US
## 3957                         DT.DOD.DLTL.CD.MA.AR.PX.US
## 3958                         DT.DOD.DLTL.CD.MA.AR.TR.US
## 3959                            DT.DOD.DLTL.CD.MA.AR.US
## 3960                               DT.DOD.DLTL.CD.NC.US
## 3961                               DT.DOD.DLTL.CD.OF.US
## 3962                         DT.DOD.DLTL.CD.OT.AR.BE.US
## 3963                         DT.DOD.DLTL.CD.OT.AR.EA.US
## 3964                         DT.DOD.DLTL.CD.OT.AR.EN.US
## 3965                         DT.DOD.DLTL.CD.OT.AR.EX.US
## 3966                         DT.DOD.DLTL.CD.OT.AR.GE.US
## 3967                         DT.DOD.DLTL.CD.OT.AR.NE.US
## 3968                         DT.DOD.DLTL.CD.OT.AR.OC.US
## 3969                         DT.DOD.DLTL.CD.OT.AR.PX.US
## 3970                         DT.DOD.DLTL.CD.OT.AR.TR.US
## 3971                            DT.DOD.DLTL.CD.OT.AR.US
## 3972                         DT.DOD.DLTO.CD.CB.AR.BE.US
## 3973                         DT.DOD.DLTO.CD.CB.AR.EA.US
## 3974                         DT.DOD.DLTO.CD.CB.AR.EN.US
## 3975                         DT.DOD.DLTO.CD.CB.AR.EX.US
## 3976                         DT.DOD.DLTO.CD.CB.AR.GE.US
## 3977                         DT.DOD.DLTO.CD.CB.AR.NE.US
## 3978                         DT.DOD.DLTO.CD.CB.AR.OC.US
## 3979                         DT.DOD.DLTO.CD.CB.AR.PX.US
## 3980                         DT.DOD.DLTO.CD.CB.AR.TR.US
## 3981                            DT.DOD.DLTO.CD.CB.AR.US
## 3982                         DT.DOD.DLTO.CD.GG.AR.BE.US
## 3983                         DT.DOD.DLTO.CD.GG.AR.EA.US
## 3984                         DT.DOD.DLTO.CD.GG.AR.EN.US
## 3985                         DT.DOD.DLTO.CD.GG.AR.EX.US
## 3986                         DT.DOD.DLTO.CD.GG.AR.GE.US
## 3987                         DT.DOD.DLTO.CD.GG.AR.NE.US
## 3988                         DT.DOD.DLTO.CD.GG.AR.OC.US
## 3989                         DT.DOD.DLTO.CD.GG.AR.PX.US
## 3990                         DT.DOD.DLTO.CD.GG.AR.TR.US
## 3991                            DT.DOD.DLTO.CD.GG.AR.US
## 3992                               DT.DOD.DLTO.CD.HN.US
## 3993                         DT.DOD.DLTO.CD.MA.AR.BE.US
## 3994                         DT.DOD.DLTO.CD.MA.AR.EA.US
## 3995                         DT.DOD.DLTO.CD.MA.AR.EN.US
## 3996                         DT.DOD.DLTO.CD.MA.AR.EX.US
## 3997                         DT.DOD.DLTO.CD.MA.AR.GE.US
## 3998                         DT.DOD.DLTO.CD.MA.AR.NE.US
## 3999                         DT.DOD.DLTO.CD.MA.AR.OC.US
## 4000                         DT.DOD.DLTO.CD.MA.AR.PX.US
## 4001                         DT.DOD.DLTO.CD.MA.AR.TR.US
## 4002                            DT.DOD.DLTO.CD.MA.AR.US
## 4003                               DT.DOD.DLTO.CD.NC.US
## 4004                               DT.DOD.DLTO.CD.OF.US
## 4005                         DT.DOD.DLTO.CD.OT.AR.BE.US
## 4006                         DT.DOD.DLTO.CD.OT.AR.EA.US
## 4007                         DT.DOD.DLTO.CD.OT.AR.EN.US
## 4008                         DT.DOD.DLTO.CD.OT.AR.EX.US
## 4009                         DT.DOD.DLTO.CD.OT.AR.GE.US
## 4010                         DT.DOD.DLTO.CD.OT.AR.NE.US
## 4011                         DT.DOD.DLTO.CD.OT.AR.OC.US
## 4012                         DT.DOD.DLTO.CD.OT.AR.PX.US
## 4013                         DT.DOD.DLTO.CD.OT.AR.TR.US
## 4014                            DT.DOD.DLTO.CD.OT.AR.US
## 4015                            DT.DOD.DLTS.CD.GG.BE.US
## 4016                            DT.DOD.DLTS.CD.GG.EA.US
## 4017                            DT.DOD.DLTS.CD.GG.EN.US
## 4018                            DT.DOD.DLTS.CD.GG.EX.US
## 4019                            DT.DOD.DLTS.CD.GG.GE.US
## 4020                            DT.DOD.DLTS.CD.GG.NE.US
## 4021                            DT.DOD.DLTS.CD.GG.OC.US
## 4022                            DT.DOD.DLTS.CD.GG.PX.US
## 4023                            DT.DOD.DLTS.CD.GG.TR.US
## 4024                               DT.DOD.DLTS.CD.GG.US
## 4025                         DT.DOD.DLTS.CD.MA.AR.BE.US
## 4026                         DT.DOD.DLTS.CD.MA.AR.EA.US
## 4027                         DT.DOD.DLTS.CD.MA.AR.EN.US
## 4028                         DT.DOD.DLTS.CD.MA.AR.EX.US
## 4029                         DT.DOD.DLTS.CD.MA.AR.GE.US
## 4030                         DT.DOD.DLTS.CD.MA.AR.NE.US
## 4031                         DT.DOD.DLTS.CD.MA.AR.OC.US
## 4032                         DT.DOD.DLTS.CD.MA.AR.PX.US
## 4033                         DT.DOD.DLTS.CD.MA.AR.TR.US
## 4034                            DT.DOD.DLTS.CD.MA.AR.US
## 4035                         DT.DOD.DLTT.CD.CB.AR.BE.US
## 4036                         DT.DOD.DLTT.CD.CB.AR.EA.US
## 4037                         DT.DOD.DLTT.CD.CB.AR.EN.US
## 4038                         DT.DOD.DLTT.CD.CB.AR.EX.US
## 4039                         DT.DOD.DLTT.CD.CB.AR.GE.US
## 4040                         DT.DOD.DLTT.CD.CB.AR.NE.US
## 4041                         DT.DOD.DLTT.CD.CB.AR.OC.US
## 4042                         DT.DOD.DLTT.CD.CB.AR.PX.US
## 4043                         DT.DOD.DLTT.CD.CB.AR.TR.US
## 4044                            DT.DOD.DLTT.CD.CB.AR.US
## 4045                         DT.DOD.DLTT.CD.GG.AR.BE.US
## 4046                         DT.DOD.DLTT.CD.GG.AR.EA.US
## 4047                         DT.DOD.DLTT.CD.GG.AR.EN.US
## 4048                         DT.DOD.DLTT.CD.GG.AR.EX.US
## 4049                         DT.DOD.DLTT.CD.GG.AR.GE.US
## 4050                         DT.DOD.DLTT.CD.GG.AR.NE.US
## 4051                         DT.DOD.DLTT.CD.GG.AR.OC.US
## 4052                         DT.DOD.DLTT.CD.GG.AR.PX.US
## 4053                         DT.DOD.DLTT.CD.GG.AR.TR.US
## 4054                            DT.DOD.DLTT.CD.GG.AR.US
## 4055                               DT.DOD.DLTT.CD.HN.US
## 4056                         DT.DOD.DLTT.CD.MA.AR.BE.US
## 4057                         DT.DOD.DLTT.CD.MA.AR.EA.US
## 4058                         DT.DOD.DLTT.CD.MA.AR.EN.US
## 4059                         DT.DOD.DLTT.CD.MA.AR.EX.US
## 4060                         DT.DOD.DLTT.CD.MA.AR.GE.US
## 4061                         DT.DOD.DLTT.CD.MA.AR.NE.US
## 4062                         DT.DOD.DLTT.CD.MA.AR.OC.US
## 4063                         DT.DOD.DLTT.CD.MA.AR.PX.US
## 4064                         DT.DOD.DLTT.CD.MA.AR.TR.US
## 4065                            DT.DOD.DLTT.CD.MA.AR.US
## 4066                               DT.DOD.DLTT.CD.NC.US
## 4067                               DT.DOD.DLTT.CD.OF.US
## 4068                         DT.DOD.DLTT.CD.OT.AR.BE.US
## 4069                         DT.DOD.DLTT.CD.OT.AR.EA.US
## 4070                         DT.DOD.DLTT.CD.OT.AR.EN.US
## 4071                         DT.DOD.DLTT.CD.OT.AR.EX.US
## 4072                         DT.DOD.DLTT.CD.OT.AR.GE.US
## 4073                         DT.DOD.DLTT.CD.OT.AR.NE.US
## 4074                         DT.DOD.DLTT.CD.OT.AR.OC.US
## 4075                         DT.DOD.DLTT.CD.OT.AR.PX.US
## 4076                         DT.DOD.DLTT.CD.OT.AR.TR.US
## 4077                            DT.DOD.DLTT.CD.OT.AR.US
## 4078                                     DT.DOD.DLXF.CD
## 4079                         DT.DOD.DLXF.CD.CB.AR.BE.US
## 4080                         DT.DOD.DLXF.CD.CB.AR.EA.US
## 4081                         DT.DOD.DLXF.CD.CB.AR.EN.US
## 4082                         DT.DOD.DLXF.CD.CB.AR.EX.US
## 4083                         DT.DOD.DLXF.CD.CB.AR.GE.US
## 4084                         DT.DOD.DLXF.CD.CB.AR.NE.US
## 4085                         DT.DOD.DLXF.CD.CB.AR.OC.US
## 4086                         DT.DOD.DLXF.CD.CB.AR.PX.US
## 4087                         DT.DOD.DLXF.CD.CB.AR.TR.US
## 4088                            DT.DOD.DLXF.CD.CB.AR.US
## 4089                         DT.DOD.DLXF.CD.CB.TD.MP.US
## 4090                         DT.DOD.DLXF.CD.CB.TD.MV.US
## 4091                         DT.DOD.DLXF.CD.CB.TD.NV.US
## 4092                            DT.DOD.DLXF.CD.DC.T5.US
## 4093                               DT.DOD.DLXF.CD.DC.US
## 4094                                  DT.DOD.DLXF.CD.DR
## 4095                         DT.DOD.DLXF.CD.FC.CB.EU.US
## 4096                         DT.DOD.DLXF.CD.FC.CB.JY.US
## 4097                         DT.DOD.DLXF.CD.FC.CB.OT.US
## 4098                         DT.DOD.DLXF.CD.FC.CB.TO.US
## 4099                         DT.DOD.DLXF.CD.FC.CB.US.US
## 4100                         DT.DOD.DLXF.CD.FC.GG.EU.US
## 4101                         DT.DOD.DLXF.CD.FC.GG.JY.US
## 4102                         DT.DOD.DLXF.CD.FC.GG.OT.US
## 4103                         DT.DOD.DLXF.CD.FC.GG.TO.US
## 4104                         DT.DOD.DLXF.CD.FC.GG.US.US
## 4105                         DT.DOD.DLXF.CD.FC.MA.EU.US
## 4106                         DT.DOD.DLXF.CD.FC.MA.JY.US
## 4107                         DT.DOD.DLXF.CD.FC.MA.OT.US
## 4108                         DT.DOD.DLXF.CD.FC.MA.TO.US
## 4109                         DT.DOD.DLXF.CD.FC.MA.US.US
## 4110                         DT.DOD.DLXF.CD.FC.OT.EU.US
## 4111                         DT.DOD.DLXF.CD.FC.OT.JY.US
## 4112                         DT.DOD.DLXF.CD.FC.OT.OT.US
## 4113                         DT.DOD.DLXF.CD.FC.OT.TO.US
## 4114                         DT.DOD.DLXF.CD.FC.OT.US.US
## 4115                            DT.DOD.DLXF.CD.FC.T5.US
## 4116                               DT.DOD.DLXF.CD.FC.US
## 4117                         DT.DOD.DLXF.CD.GG.AR.BE.US
## 4118                         DT.DOD.DLXF.CD.GG.AR.EA.US
## 4119                         DT.DOD.DLXF.CD.GG.AR.EN.US
## 4120                         DT.DOD.DLXF.CD.GG.AR.EX.US
## 4121                         DT.DOD.DLXF.CD.GG.AR.GE.US
## 4122                         DT.DOD.DLXF.CD.GG.AR.NE.US
## 4123                         DT.DOD.DLXF.CD.GG.AR.OC.US
## 4124                         DT.DOD.DLXF.CD.GG.AR.PX.US
## 4125                         DT.DOD.DLXF.CD.GG.AR.TR.US
## 4126                            DT.DOD.DLXF.CD.GG.AR.US
## 4127                         DT.DOD.DLXF.CD.GG.TD.MP.US
## 4128                         DT.DOD.DLXF.CD.GG.TD.MV.US
## 4129                         DT.DOD.DLXF.CD.GG.TD.NV.US
## 4130                               DT.DOD.DLXF.CD.HN.US
## 4131                         DT.DOD.DLXF.CD.MA.AR.BE.US
## 4132                         DT.DOD.DLXF.CD.MA.AR.EA.US
## 4133                         DT.DOD.DLXF.CD.MA.AR.EN.US
## 4134                         DT.DOD.DLXF.CD.MA.AR.EX.US
## 4135                         DT.DOD.DLXF.CD.MA.AR.GE.US
## 4136                         DT.DOD.DLXF.CD.MA.AR.NE.US
## 4137                         DT.DOD.DLXF.CD.MA.AR.OC.US
## 4138                         DT.DOD.DLXF.CD.MA.AR.PX.US
## 4139                         DT.DOD.DLXF.CD.MA.AR.TR.US
## 4140                            DT.DOD.DLXF.CD.MA.AR.US
## 4141                         DT.DOD.DLXF.CD.MA.TD.MP.US
## 4142                         DT.DOD.DLXF.CD.MA.TD.MV.US
## 4143                         DT.DOD.DLXF.CD.MA.TD.NV.US
## 4144                               DT.DOD.DLXF.CD.NC.US
## 4145                               DT.DOD.DLXF.CD.OF.US
## 4146                         DT.DOD.DLXF.CD.OT.AR.BE.US
## 4147                         DT.DOD.DLXF.CD.OT.AR.EA.US
## 4148                         DT.DOD.DLXF.CD.OT.AR.EN.US
## 4149                         DT.DOD.DLXF.CD.OT.AR.EX.US
## 4150                         DT.DOD.DLXF.CD.OT.AR.GE.US
## 4151                         DT.DOD.DLXF.CD.OT.AR.NE.US
## 4152                         DT.DOD.DLXF.CD.OT.AR.OC.US
## 4153                         DT.DOD.DLXF.CD.OT.AR.PX.US
## 4154                         DT.DOD.DLXF.CD.OT.AR.TR.US
## 4155                            DT.DOD.DLXF.CD.OT.AR.US
## 4156                         DT.DOD.DLXF.CD.OT.TD.MP.US
## 4157                         DT.DOD.DLXF.CD.OT.TD.MV.US
## 4158                         DT.DOD.DLXF.CD.OT.TD.NV.US
## 4159                                  DT.DOD.DLXF.CD.US
## 4160                               DT.DOD.DLXF.PR.DS.US
## 4161                               DT.DOD.DLXF.PU.DS.US
## 4162                              DT.DOD.DLXF.PV.GNP.ZS
## 4163                              DT.DOD.DLXF.PV.XGS.ZS
## 4164                                     DT.DOD.DOPS.CD
## 4165                                     DT.DOD.DPNG.CD
## 4166                               DT.DOD.DPNG.CD.AR.US
## 4167                               DT.DOD.DPNG.CD.LT.US
## 4168                               DT.DOD.DPNG.CD.ST.US
## 4169                                  DT.DOD.DPNG.CD.US
## 4170                                     DT.DOD.DPNG.ZS
## 4171                            DT.DOD.DPPC.CD.DT.T5.US
## 4172                               DT.DOD.DPPC.CD.TO.US
## 4173                                  DT.DOD.DPPG.AR.US
## 4174                                     DT.DOD.DPPG.CD
## 4175                               DT.DOD.DPPG.CD.AR.US
## 4176                                  DT.DOD.DPPG.DS.US
## 4177                         DT.DOD.DSCD.CD.CB.AR.BE.US
## 4178                         DT.DOD.DSCD.CD.CB.AR.EA.US
## 4179                         DT.DOD.DSCD.CD.CB.AR.EN.US
## 4180                         DT.DOD.DSCD.CD.CB.AR.EX.US
## 4181                         DT.DOD.DSCD.CD.CB.AR.GE.US
## 4182                         DT.DOD.DSCD.CD.CB.AR.NE.US
## 4183                         DT.DOD.DSCD.CD.CB.AR.OC.US
## 4184                         DT.DOD.DSCD.CD.CB.AR.PX.US
## 4185                         DT.DOD.DSCD.CD.CB.AR.TR.US
## 4186                            DT.DOD.DSCD.CD.CB.AR.US
## 4187                         DT.DOD.DSCD.CD.GG.AR.BE.US
## 4188                         DT.DOD.DSCD.CD.GG.AR.EA.US
## 4189                         DT.DOD.DSCD.CD.GG.AR.EN.US
## 4190                         DT.DOD.DSCD.CD.GG.AR.EX.US
## 4191                         DT.DOD.DSCD.CD.GG.AR.GE.US
## 4192                         DT.DOD.DSCD.CD.GG.AR.NE.US
## 4193                         DT.DOD.DSCD.CD.GG.AR.OC.US
## 4194                         DT.DOD.DSCD.CD.GG.AR.PX.US
## 4195                         DT.DOD.DSCD.CD.GG.AR.TR.US
## 4196                            DT.DOD.DSCD.CD.GG.AR.US
## 4197                               DT.DOD.DSCD.CD.HN.US
## 4198                         DT.DOD.DSCD.CD.MA.AR.BE.US
## 4199                         DT.DOD.DSCD.CD.MA.AR.EA.US
## 4200                         DT.DOD.DSCD.CD.MA.AR.EN.US
## 4201                         DT.DOD.DSCD.CD.MA.AR.EX.US
## 4202                         DT.DOD.DSCD.CD.MA.AR.GE.US
## 4203                         DT.DOD.DSCD.CD.MA.AR.NE.US
## 4204                         DT.DOD.DSCD.CD.MA.AR.OC.US
## 4205                         DT.DOD.DSCD.CD.MA.AR.PX.US
## 4206                         DT.DOD.DSCD.CD.MA.AR.TR.US
## 4207                            DT.DOD.DSCD.CD.MA.AR.US
## 4208                               DT.DOD.DSCD.CD.NC.US
## 4209                               DT.DOD.DSCD.CD.OF.US
## 4210                         DT.DOD.DSCD.CD.OT.AR.BE.US
## 4211                         DT.DOD.DSCD.CD.OT.AR.EA.US
## 4212                         DT.DOD.DSCD.CD.OT.AR.EN.US
## 4213                         DT.DOD.DSCD.CD.OT.AR.EX.US
## 4214                         DT.DOD.DSCD.CD.OT.AR.GE.US
## 4215                         DT.DOD.DSCD.CD.OT.AR.NE.US
## 4216                         DT.DOD.DSCD.CD.OT.AR.OC.US
## 4217                         DT.DOD.DSCD.CD.OT.AR.PX.US
## 4218                         DT.DOD.DSCD.CD.OT.AR.TR.US
## 4219                            DT.DOD.DSCD.CD.OT.AR.US
## 4220                                     DT.DOD.DSDR.CD
## 4221                         DT.DOD.DSOO.CD.CB.AR.BE.US
## 4222                         DT.DOD.DSOO.CD.CB.AR.EA.US
## 4223                         DT.DOD.DSOO.CD.CB.AR.EN.US
## 4224                         DT.DOD.DSOO.CD.CB.AR.EX.US
## 4225                         DT.DOD.DSOO.CD.CB.AR.GE.US
## 4226                         DT.DOD.DSOO.CD.CB.AR.NE.US
## 4227                         DT.DOD.DSOO.CD.CB.AR.OC.US
## 4228                         DT.DOD.DSOO.CD.CB.AR.PX.US
## 4229                         DT.DOD.DSOO.CD.CB.AR.TR.US
## 4230                            DT.DOD.DSOO.CD.CB.AR.US
## 4231                         DT.DOD.DSOO.CD.GG.AR.BE.US
## 4232                         DT.DOD.DSOO.CD.GG.AR.EA.US
## 4233                         DT.DOD.DSOO.CD.GG.AR.EN.US
## 4234                         DT.DOD.DSOO.CD.GG.AR.EX.US
## 4235                         DT.DOD.DSOO.CD.GG.AR.GE.US
## 4236                         DT.DOD.DSOO.CD.GG.AR.NE.US
## 4237                         DT.DOD.DSOO.CD.GG.AR.OC.US
## 4238                         DT.DOD.DSOO.CD.GG.AR.PX.US
## 4239                         DT.DOD.DSOO.CD.GG.AR.TR.US
## 4240                            DT.DOD.DSOO.CD.GG.AR.US
## 4241                         DT.DOD.DSOO.CD.MA.AR.BE.US
## 4242                         DT.DOD.DSOO.CD.MA.AR.EA.US
## 4243                         DT.DOD.DSOO.CD.MA.AR.EN.US
## 4244                         DT.DOD.DSOO.CD.MA.AR.EX.US
## 4245                         DT.DOD.DSOO.CD.MA.AR.GE.US
## 4246                         DT.DOD.DSOO.CD.MA.AR.NE.US
## 4247                         DT.DOD.DSOO.CD.MA.AR.OC.US
## 4248                         DT.DOD.DSOO.CD.MA.AR.PX.US
## 4249                         DT.DOD.DSOO.CD.MA.AR.TR.US
## 4250                            DT.DOD.DSOO.CD.MA.AR.US
## 4251                         DT.DOD.DSOO.CD.OT.AR.BE.US
## 4252                         DT.DOD.DSOO.CD.OT.AR.EA.US
## 4253                         DT.DOD.DSOO.CD.OT.AR.EN.US
## 4254                         DT.DOD.DSOO.CD.OT.AR.EX.US
## 4255                         DT.DOD.DSOO.CD.OT.AR.GE.US
## 4256                         DT.DOD.DSOO.CD.OT.AR.NE.US
## 4257                         DT.DOD.DSOO.CD.OT.AR.OC.US
## 4258                         DT.DOD.DSOO.CD.OT.AR.PX.US
## 4259                         DT.DOD.DSOO.CD.OT.AR.TR.US
## 4260                            DT.DOD.DSOO.CD.OT.AR.US
## 4261                                     DT.DOD.DSTC.CD
## 4262                         DT.DOD.DSTC.CD.CB.AR.BE.US
## 4263                         DT.DOD.DSTC.CD.CB.AR.EA.US
## 4264                         DT.DOD.DSTC.CD.CB.AR.EN.US
## 4265                         DT.DOD.DSTC.CD.CB.AR.EX.US
## 4266                         DT.DOD.DSTC.CD.CB.AR.GE.US
## 4267                         DT.DOD.DSTC.CD.CB.AR.NE.US
## 4268                         DT.DOD.DSTC.CD.CB.AR.OC.US
## 4269                         DT.DOD.DSTC.CD.CB.AR.PX.US
## 4270                         DT.DOD.DSTC.CD.CB.AR.TR.US
## 4271                            DT.DOD.DSTC.CD.CB.AR.US
## 4272                         DT.DOD.DSTC.CD.CB.TD.MP.US
## 4273                         DT.DOD.DSTC.CD.CB.TD.MV.US
## 4274                         DT.DOD.DSTC.CD.CB.TD.NV.US
## 4275                            DT.DOD.DSTC.CD.DC.T5.US
## 4276                               DT.DOD.DSTC.CD.DC.US
## 4277                                  DT.DOD.DSTC.CD.DR
## 4278                         DT.DOD.DSTC.CD.FC.CB.EU.US
## 4279                         DT.DOD.DSTC.CD.FC.CB.JY.US
## 4280                         DT.DOD.DSTC.CD.FC.CB.OT.US
## 4281                         DT.DOD.DSTC.CD.FC.CB.TO.US
## 4282                         DT.DOD.DSTC.CD.FC.CB.US.US
## 4283                         DT.DOD.DSTC.CD.FC.GG.EU.US
## 4284                         DT.DOD.DSTC.CD.FC.GG.JY.US
## 4285                         DT.DOD.DSTC.CD.FC.GG.OT.US
## 4286                         DT.DOD.DSTC.CD.FC.GG.TO.US
## 4287                         DT.DOD.DSTC.CD.FC.GG.US.US
## 4288                         DT.DOD.DSTC.CD.FC.MA.EU.US
## 4289                         DT.DOD.DSTC.CD.FC.MA.JY.US
## 4290                         DT.DOD.DSTC.CD.FC.MA.OT.US
## 4291                         DT.DOD.DSTC.CD.FC.MA.TO.US
## 4292                         DT.DOD.DSTC.CD.FC.MA.US.US
## 4293                         DT.DOD.DSTC.CD.FC.OT.EU.US
## 4294                         DT.DOD.DSTC.CD.FC.OT.JY.US
## 4295                         DT.DOD.DSTC.CD.FC.OT.OT.US
## 4296                         DT.DOD.DSTC.CD.FC.OT.TO.US
## 4297                         DT.DOD.DSTC.CD.FC.OT.US.US
## 4298                            DT.DOD.DSTC.CD.FC.T5.US
## 4299                               DT.DOD.DSTC.CD.FC.US
## 4300                         DT.DOD.DSTC.CD.GG.AR.BE.US
## 4301                         DT.DOD.DSTC.CD.GG.AR.EA.US
## 4302                         DT.DOD.DSTC.CD.GG.AR.EN.US
## 4303                         DT.DOD.DSTC.CD.GG.AR.EX.US
## 4304                         DT.DOD.DSTC.CD.GG.AR.GE.US
## 4305                         DT.DOD.DSTC.CD.GG.AR.NE.US
## 4306                         DT.DOD.DSTC.CD.GG.AR.OC.US
## 4307                         DT.DOD.DSTC.CD.GG.AR.PX.US
## 4308                         DT.DOD.DSTC.CD.GG.AR.TR.US
## 4309                            DT.DOD.DSTC.CD.GG.AR.US
## 4310                         DT.DOD.DSTC.CD.GG.TD.MP.US
## 4311                         DT.DOD.DSTC.CD.GG.TD.MV.US
## 4312                         DT.DOD.DSTC.CD.GG.TD.NV.US
## 4313                               DT.DOD.DSTC.CD.HN.US
## 4314                         DT.DOD.DSTC.CD.MA.AR.BE.US
## 4315                         DT.DOD.DSTC.CD.MA.AR.EA.US
## 4316                         DT.DOD.DSTC.CD.MA.AR.EN.US
## 4317                         DT.DOD.DSTC.CD.MA.AR.EX.US
## 4318                         DT.DOD.DSTC.CD.MA.AR.GE.US
## 4319                         DT.DOD.DSTC.CD.MA.AR.NE.US
## 4320                         DT.DOD.DSTC.CD.MA.AR.OC.US
## 4321                         DT.DOD.DSTC.CD.MA.AR.PX.US
## 4322                         DT.DOD.DSTC.CD.MA.AR.TR.US
## 4323                            DT.DOD.DSTC.CD.MA.AR.US
## 4324                         DT.DOD.DSTC.CD.MA.TD.MP.US
## 4325                         DT.DOD.DSTC.CD.MA.TD.MV.US
## 4326                         DT.DOD.DSTC.CD.MA.TD.NV.US
## 4327                               DT.DOD.DSTC.CD.NC.US
## 4328                               DT.DOD.DSTC.CD.OF.US
## 4329                         DT.DOD.DSTC.CD.OT.AR.BE.US
## 4330                         DT.DOD.DSTC.CD.OT.AR.EA.US
## 4331                         DT.DOD.DSTC.CD.OT.AR.EN.US
## 4332                         DT.DOD.DSTC.CD.OT.AR.EX.US
## 4333                         DT.DOD.DSTC.CD.OT.AR.GE.US
## 4334                         DT.DOD.DSTC.CD.OT.AR.NE.US
## 4335                         DT.DOD.DSTC.CD.OT.AR.OC.US
## 4336                         DT.DOD.DSTC.CD.OT.AR.PX.US
## 4337                         DT.DOD.DSTC.CD.OT.AR.TR.US
## 4338                            DT.DOD.DSTC.CD.OT.AR.US
## 4339                                  DT.DOD.DSTC.CD.US
## 4340                                  DT.DOD.DSTC.IR.ZS
## 4341                               DT.DOD.DSTC.PR.DS.US
## 4342                               DT.DOD.DSTC.PU.DS.US
## 4343                                  DT.DOD.DSTC.XP.ZS
## 4344                                     DT.DOD.DSTC.ZS
## 4345                         DT.DOD.DSTL.CD.CB.AR.BE.US
## 4346                         DT.DOD.DSTL.CD.CB.AR.EA.US
## 4347                         DT.DOD.DSTL.CD.CB.AR.EN.US
## 4348                         DT.DOD.DSTL.CD.CB.AR.EX.US
## 4349                         DT.DOD.DSTL.CD.CB.AR.GE.US
## 4350                         DT.DOD.DSTL.CD.CB.AR.NE.US
## 4351                         DT.DOD.DSTL.CD.CB.AR.OC.US
## 4352                         DT.DOD.DSTL.CD.CB.AR.PX.US
## 4353                         DT.DOD.DSTL.CD.CB.AR.TR.US
## 4354                            DT.DOD.DSTL.CD.CB.AR.US
## 4355                         DT.DOD.DSTL.CD.GG.AR.BE.US
## 4356                         DT.DOD.DSTL.CD.GG.AR.EA.US
## 4357                         DT.DOD.DSTL.CD.GG.AR.EN.US
## 4358                         DT.DOD.DSTL.CD.GG.AR.EX.US
## 4359                         DT.DOD.DSTL.CD.GG.AR.GE.US
## 4360                         DT.DOD.DSTL.CD.GG.AR.NE.US
## 4361                         DT.DOD.DSTL.CD.GG.AR.OC.US
## 4362                         DT.DOD.DSTL.CD.GG.AR.PX.US
## 4363                         DT.DOD.DSTL.CD.GG.AR.TR.US
## 4364                            DT.DOD.DSTL.CD.GG.AR.US
## 4365                               DT.DOD.DSTL.CD.HN.US
## 4366                         DT.DOD.DSTL.CD.MA.AR.BE.US
## 4367                         DT.DOD.DSTL.CD.MA.AR.EA.US
## 4368                         DT.DOD.DSTL.CD.MA.AR.EN.US
## 4369                         DT.DOD.DSTL.CD.MA.AR.EX.US
## 4370                         DT.DOD.DSTL.CD.MA.AR.GE.US
## 4371                         DT.DOD.DSTL.CD.MA.AR.NE.US
## 4372                         DT.DOD.DSTL.CD.MA.AR.OC.US
## 4373                         DT.DOD.DSTL.CD.MA.AR.PX.US
## 4374                         DT.DOD.DSTL.CD.MA.AR.TR.US
## 4375                            DT.DOD.DSTL.CD.MA.AR.US
## 4376                               DT.DOD.DSTL.CD.NC.US
## 4377                               DT.DOD.DSTL.CD.OF.US
## 4378                         DT.DOD.DSTL.CD.OT.AR.BE.US
## 4379                         DT.DOD.DSTL.CD.OT.AR.EA.US
## 4380                         DT.DOD.DSTL.CD.OT.AR.EN.US
## 4381                         DT.DOD.DSTL.CD.OT.AR.EX.US
## 4382                         DT.DOD.DSTL.CD.OT.AR.GE.US
## 4383                         DT.DOD.DSTL.CD.OT.AR.NE.US
## 4384                         DT.DOD.DSTL.CD.OT.AR.OC.US
## 4385                         DT.DOD.DSTL.CD.OT.AR.PX.US
## 4386                         DT.DOD.DSTL.CD.OT.AR.TR.US
## 4387                            DT.DOD.DSTL.CD.OT.AR.US
## 4388                         DT.DOD.DSTM.CD.CB.AR.BE.US
## 4389                         DT.DOD.DSTM.CD.CB.AR.EA.US
## 4390                         DT.DOD.DSTM.CD.CB.AR.EN.US
## 4391                         DT.DOD.DSTM.CD.CB.AR.EX.US
## 4392                         DT.DOD.DSTM.CD.CB.AR.GE.US
## 4393                         DT.DOD.DSTM.CD.CB.AR.NE.US
## 4394                         DT.DOD.DSTM.CD.CB.AR.OC.US
## 4395                         DT.DOD.DSTM.CD.CB.AR.PX.US
## 4396                         DT.DOD.DSTM.CD.CB.AR.TR.US
## 4397                            DT.DOD.DSTM.CD.CB.AR.US
## 4398                         DT.DOD.DSTM.CD.GG.AR.BE.US
## 4399                         DT.DOD.DSTM.CD.GG.AR.EA.US
## 4400                         DT.DOD.DSTM.CD.GG.AR.EN.US
## 4401                         DT.DOD.DSTM.CD.GG.AR.EX.US
## 4402                         DT.DOD.DSTM.CD.GG.AR.GE.US
## 4403                         DT.DOD.DSTM.CD.GG.AR.NE.US
## 4404                         DT.DOD.DSTM.CD.GG.AR.OC.US
## 4405                         DT.DOD.DSTM.CD.GG.AR.PX.US
## 4406                         DT.DOD.DSTM.CD.GG.AR.TR.US
## 4407                            DT.DOD.DSTM.CD.GG.AR.US
## 4408                               DT.DOD.DSTM.CD.HN.US
## 4409                         DT.DOD.DSTM.CD.MA.AR.BE.US
## 4410                         DT.DOD.DSTM.CD.MA.AR.EA.US
## 4411                         DT.DOD.DSTM.CD.MA.AR.EN.US
## 4412                         DT.DOD.DSTM.CD.MA.AR.EX.US
## 4413                         DT.DOD.DSTM.CD.MA.AR.GE.US
## 4414                         DT.DOD.DSTM.CD.MA.AR.NE.US
## 4415                         DT.DOD.DSTM.CD.MA.AR.OC.US
## 4416                         DT.DOD.DSTM.CD.MA.AR.PX.US
## 4417                         DT.DOD.DSTM.CD.MA.AR.TR.US
## 4418                            DT.DOD.DSTM.CD.MA.AR.US
## 4419                               DT.DOD.DSTM.CD.NC.US
## 4420                               DT.DOD.DSTM.CD.OF.US
## 4421                         DT.DOD.DSTM.CD.OT.AR.BE.US
## 4422                         DT.DOD.DSTM.CD.OT.AR.EA.US
## 4423                         DT.DOD.DSTM.CD.OT.AR.EN.US
## 4424                         DT.DOD.DSTM.CD.OT.AR.EX.US
## 4425                         DT.DOD.DSTM.CD.OT.AR.GE.US
## 4426                         DT.DOD.DSTM.CD.OT.AR.NE.US
## 4427                         DT.DOD.DSTM.CD.OT.AR.OC.US
## 4428                         DT.DOD.DSTM.CD.OT.AR.PX.US
## 4429                         DT.DOD.DSTM.CD.OT.AR.TR.US
## 4430                            DT.DOD.DSTM.CD.OT.AR.US
## 4431                               DT.DOD.DSTO.CD.HN.US
## 4432                               DT.DOD.DSTO.CD.NC.US
## 4433                               DT.DOD.DSTO.CD.OF.US
## 4434                         DT.DOD.DSTT.CD.CB.AR.BE.US
## 4435                         DT.DOD.DSTT.CD.CB.AR.EA.US
## 4436                         DT.DOD.DSTT.CD.CB.AR.EN.US
## 4437                         DT.DOD.DSTT.CD.CB.AR.EX.US
## 4438                         DT.DOD.DSTT.CD.CB.AR.GE.US
## 4439                         DT.DOD.DSTT.CD.CB.AR.NE.US
## 4440                         DT.DOD.DSTT.CD.CB.AR.OC.US
## 4441                         DT.DOD.DSTT.CD.CB.AR.PX.US
## 4442                         DT.DOD.DSTT.CD.CB.AR.TR.US
## 4443                            DT.DOD.DSTT.CD.CB.AR.US
## 4444                         DT.DOD.DSTT.CD.GG.AR.BE.US
## 4445                         DT.DOD.DSTT.CD.GG.AR.EA.US
## 4446                         DT.DOD.DSTT.CD.GG.AR.EN.US
## 4447                         DT.DOD.DSTT.CD.GG.AR.EX.US
## 4448                         DT.DOD.DSTT.CD.GG.AR.GE.US
## 4449                         DT.DOD.DSTT.CD.GG.AR.NE.US
## 4450                         DT.DOD.DSTT.CD.GG.AR.OC.US
## 4451                         DT.DOD.DSTT.CD.GG.AR.PX.US
## 4452                         DT.DOD.DSTT.CD.GG.AR.TR.US
## 4453                            DT.DOD.DSTT.CD.GG.AR.US
## 4454                               DT.DOD.DSTT.CD.HN.US
## 4455                         DT.DOD.DSTT.CD.MA.AR.BE.US
## 4456                         DT.DOD.DSTT.CD.MA.AR.EA.US
## 4457                         DT.DOD.DSTT.CD.MA.AR.EN.US
## 4458                         DT.DOD.DSTT.CD.MA.AR.EX.US
## 4459                         DT.DOD.DSTT.CD.MA.AR.GE.US
## 4460                         DT.DOD.DSTT.CD.MA.AR.NE.US
## 4461                         DT.DOD.DSTT.CD.MA.AR.OC.US
## 4462                         DT.DOD.DSTT.CD.MA.AR.PX.US
## 4463                         DT.DOD.DSTT.CD.MA.AR.TR.US
## 4464                            DT.DOD.DSTT.CD.MA.AR.US
## 4465                               DT.DOD.DSTT.CD.NC.US
## 4466                               DT.DOD.DSTT.CD.OF.US
## 4467                         DT.DOD.DSTT.CD.OT.AR.BE.US
## 4468                         DT.DOD.DSTT.CD.OT.AR.EA.US
## 4469                         DT.DOD.DSTT.CD.OT.AR.EN.US
## 4470                         DT.DOD.DSTT.CD.OT.AR.EX.US
## 4471                         DT.DOD.DSTT.CD.OT.AR.GE.US
## 4472                         DT.DOD.DSTT.CD.OT.AR.NE.US
## 4473                         DT.DOD.DSTT.CD.OT.AR.OC.US
## 4474                         DT.DOD.DSTT.CD.OT.AR.PX.US
## 4475                         DT.DOD.DSTT.CD.OT.AR.TR.US
## 4476                            DT.DOD.DSTT.CD.OT.AR.US
## 4477                         DT.DOD.DSTT.CD.OT.TD.MP.US
## 4478                         DT.DOD.DSTT.CD.OT.TD.MV.US
## 4479                         DT.DOD.DSTT.CD.OT.TD.NV.US
## 4480                         DT.DOD.DSUN.CD.GG.AR.EA.US
## 4481                         DT.DOD.DSUN.CD.GG.AR.GE.US
## 4482                         DT.DOD.DSUN.CD.GG.AR.NE.US
## 4483                         DT.DOD.DSUN.CD.MA.AR.EA.US
## 4484                         DT.DOD.DSUN.CD.MA.AR.GE.US
## 4485                         DT.DOD.DSUN.CD.MA.AR.NE.US
## 4486                            DT.DOD.LOLT.CD.PR.AR.US
## 4487                            DT.DOD.LOLT.CD.PU.AR.US
## 4488                            DT.DOD.LOST.CD.PR.AR.US
## 4489                            DT.DOD.LOST.CD.PU.AR.US
## 4490                                     DT.DOD.LTST.CD
## 4491                                     DT.DOD.MDRI.CD
## 4492                                     DT.DOD.MIBR.CD
## 4493                                     DT.DOD.MIDA.CD
## 4494                                  DT.DOD.MLAT.CB.CD
## 4495                                     DT.DOD.MLAT.CD
## 4496                                  DT.DOD.MLAT.GG.CD
## 4497                                 DT.DOD.MLAT.OPS.CD
## 4498                                DT.DOD.MLAT.PRVG.CD
## 4499                                  DT.DOD.MLAT.PS.CD
## 4500                                     DT.DOD.MLAT.ZS
## 4501                                  DT.DOD.MLTC.CB.CD
## 4502                                     DT.DOD.MLTC.CD
## 4503                                  DT.DOD.MLTC.GG.CD
## 4504                                 DT.DOD.MLTC.OPS.CD
## 4505                                DT.DOD.MLTC.PRVG.CD
## 4506                                  DT.DOD.MLTC.PS.CD
## 4507                                     DT.DOD.MLTN.CD
## 4508                            DT.DOD.MMST.CD.PR.AR.US
## 4509                            DT.DOD.MMST.CD.PU.AR.US
## 4510                                     DT.DOD.MWBG.CD
## 4511                                  DT.DOD.OFFT.CB.CD
## 4512                                     DT.DOD.OFFT.CD
## 4513                            DT.DOD.OFFT.CD.PR.AR.US
## 4514                            DT.DOD.OFFT.CD.PU.AR.US
## 4515                                  DT.DOD.OFFT.GG.CD
## 4516                                 DT.DOD.OFFT.OPS.CD
## 4517                               DT.DOD.OFFT.PR.AR.US
## 4518                               DT.DOD.OFFT.PR.DS.US
## 4519                            DT.DOD.OFFT.PR.IN.AR.US
## 4520                            DT.DOD.OFFT.PR.PR.AR.US
## 4521                                DT.DOD.OFFT.PRVG.CD
## 4522                                  DT.DOD.OFFT.PS.CD
## 4523                               DT.DOD.OFFT.PU.AR.US
## 4524                               DT.DOD.OFFT.PU.DS.US
## 4525                            DT.DOD.OFFT.PU.IN.AR.US
## 4526                            DT.DOD.OFFT.PU.PR.AR.US
## 4527                            DT.DOD.OLLT.CD.PR.AR.US
## 4528                            DT.DOD.OLLT.CD.PU.AR.US
## 4529                            DT.DOD.OOST.CD.PR.AR.US
## 4530                            DT.DOD.OOST.CD.PU.AR.US
## 4531                                  DT.DOD.PBND.CB.CD
## 4532                                     DT.DOD.PBND.CD
## 4533                                  DT.DOD.PBND.GG.CD
## 4534                                 DT.DOD.PBND.OPS.CD
## 4535                                DT.DOD.PBND.PRVG.CD
## 4536                                  DT.DOD.PBND.PS.CD
## 4537                                  DT.DOD.PCBK.CB.CD
## 4538                                     DT.DOD.PCBK.CD
## 4539                                  DT.DOD.PCBK.GG.CD
## 4540                                 DT.DOD.PCBK.OPS.CD
## 4541                                DT.DOD.PCBK.PRVG.CD
## 4542                                  DT.DOD.PCBK.PS.CD
## 4543                                     DT.DOD.PCCR.US
## 4544                                  DT.DOD.PCPR.LT.US
## 4545                                  DT.DOD.PCPR.ST.US
## 4546                                     DT.DOD.PCPR.US
## 4547                                  DT.DOD.PCPU.LT.US
## 4548                                  DT.DOD.PCPU.ST.US
## 4549                                     DT.DOD.PCPU.US
## 4550                                     DT.DOD.PGNG.CD
## 4551                                     DT.DOD.PNGB.CD
## 4552                                     DT.DOD.PNGC.CD
## 4553                                  DT.DOD.PRAE.IL.US
## 4554                               DT.DOD.PRBA.CD.LT.US
## 4555                               DT.DOD.PRBA.CD.ST.US
## 4556                                  DT.DOD.PRBA.CD.US
## 4557                               DT.DOD.PRBL.CD.LT.US
## 4558                               DT.DOD.PRBL.CD.ST.US
## 4559                                  DT.DOD.PRBL.CD.US
## 4560                               DT.DOD.PRBN.LT.AR.US
## 4561                               DT.DOD.PRCD.LT.AR.US
## 4562                               DT.DOD.PRCD.ST.AR.US
## 4563                                  DT.DOD.PRDI.IL.US
## 4564                                  DT.DOD.PRFE.IL.US
## 4565                               DT.DOD.PRLO.LT.AR.US
## 4566                               DT.DOD.PRLO.ST.AR.US
## 4567                            DT.DOD.PRLT.CD.PR.AR.US
## 4568                               DT.DOD.PRMM.ST.AR.US
## 4569                               DT.DOD.PRMU.CD.LT.US
## 4570                               DT.DOD.PRMU.CD.ST.US
## 4571                                  DT.DOD.PRMU.CD.US
## 4572                               DT.DOD.PROD.LT.AR.US
## 4573                               DT.DOD.PROD.ST.AR.US
## 4574                                  DT.DOD.PROP.CB.CD
## 4575                                     DT.DOD.PROP.CD
## 4576                                  DT.DOD.PROP.GG.CD
## 4577                                 DT.DOD.PROP.OPS.CD
## 4578                                DT.DOD.PROP.PRVG.CD
## 4579                                  DT.DOD.PROP.PS.CD
## 4580                               DT.DOD.PROT.CD.LT.US
## 4581                               DT.DOD.PROT.CD.ST.US
## 4582                                  DT.DOD.PROT.CD.US
## 4583                                     DT.DOD.PRPG.CD
## 4584                            DT.DOD.PRST.CD.PR.AR.US
## 4585                               DT.DOD.PRTC.LT.AR.US
## 4586                               DT.DOD.PRTC.ST.AR.US
## 4587                               DT.DOD.PRTD.CD.LT.US
## 4588                               DT.DOD.PRTD.CD.ST.US
## 4589                                  DT.DOD.PRTD.CD.US
## 4590                               DT.DOD.PRVS.AR.T4.US
## 4591                                     DT.DOD.PRVS.CD
## 4592                               DT.DOD.PRVS.CD.AR.US
## 4593                               DT.DOD.PRVS.CD.LT.US
## 4594                               DT.DOD.PRVS.CD.ST.US
## 4595                               DT.DOD.PRVS.CD.T3.US
## 4596                                  DT.DOD.PRVS.CD.US
## 4597                                  DT.DOD.PRVS.DI.US
## 4598                            DT.DOD.PRVS.DS.LT.T4.US
## 4599                            DT.DOD.PRVS.DS.ST.T4.US
## 4600                               DT.DOD.PRVS.DS.T4.US
## 4601                               DT.DOD.PRVS.IR.T4.US
## 4602                               DT.DOD.PRVS.LT.TO.US
## 4603                               DT.DOD.PRVS.PR.T4.US
## 4604                               DT.DOD.PRVS.ST.AR.US
## 4605                               DT.DOD.PRVS.TO.T4.US
## 4606                                  DT.DOD.PRVT.CB.CD
## 4607                                     DT.DOD.PRVT.CD
## 4608                                  DT.DOD.PRVT.GG.CD
## 4609                                 DT.DOD.PRVT.OPS.CD
## 4610                                DT.DOD.PRVT.PRVG.CD
## 4611                                  DT.DOD.PRVT.PS.CD
## 4612                               DT.DOD.PSDR.LT.AR.US
## 4613                                  DT.DOD.PUAE.IL.US
## 4614                               DT.DOD.PUBA.CD.LT.US
## 4615                               DT.DOD.PUBA.CD.ST.US
## 4616                                  DT.DOD.PUBA.CD.US
## 4617                               DT.DOD.PUBL.CD.LT.US
## 4618                               DT.DOD.PUBL.CD.ST.US
## 4619                                  DT.DOD.PUBL.CD.US
## 4620                               DT.DOD.PUBN.LT.AR.US
## 4621                               DT.DOD.PUBS.AR.T4.US
## 4622                                     DT.DOD.PUBS.CD
## 4623                               DT.DOD.PUBS.CD.AR.US
## 4624                               DT.DOD.PUBS.CD.LT.US
## 4625                               DT.DOD.PUBS.CD.ST.US
## 4626                               DT.DOD.PUBS.CD.T3.US
## 4627                                  DT.DOD.PUBS.CD.US
## 4628                                  DT.DOD.PUBS.DI.US
## 4629                            DT.DOD.PUBS.DS.LT.T4.US
## 4630                            DT.DOD.PUBS.DS.ST.T4.US
## 4631                               DT.DOD.PUBS.DS.T4.US
## 4632                               DT.DOD.PUBS.IR.T4.US
## 4633                               DT.DOD.PUBS.LT.TO.US
## 4634                               DT.DOD.PUBS.PR.T4.US
## 4635                               DT.DOD.PUBS.ST.AR.US
## 4636                               DT.DOD.PUBS.TO.T4.US
## 4637                               DT.DOD.PUCD.LT.AR.US
## 4638                               DT.DOD.PUCD.ST.AR.US
## 4639                                  DT.DOD.PUDI.IL.US
## 4640                                  DT.DOD.PUFE.IL.US
## 4641                               DT.DOD.PULO.LT.AR.US
## 4642                               DT.DOD.PULO.ST.AR.US
## 4643                            DT.DOD.PULT.CD.PU.AR.US
## 4644                               DT.DOD.PUMM.ST.AR.US
## 4645                               DT.DOD.PUMU.CD.LT.US
## 4646                               DT.DOD.PUMU.CD.ST.US
## 4647                                  DT.DOD.PUMU.CD.US
## 4648                               DT.DOD.PUOD.LT.AR.US
## 4649                               DT.DOD.PUOO.ST.AR.US
## 4650                               DT.DOD.PUOT.CD.LT.US
## 4651                               DT.DOD.PUOT.CD.ST.US
## 4652                                  DT.DOD.PUOT.CD.US
## 4653                            DT.DOD.PUST.CD.PU.AR.US
## 4654                               DT.DOD.PUTC.LT.AR.US
## 4655                               DT.DOD.PUTC.ST.AR.US
## 4656                               DT.DOD.PUTD.CD.LT.US
## 4657                               DT.DOD.PUTD.CD.ST.US
## 4658                                  DT.DOD.PUTD.CD.US
## 4659                                     DT.DOD.PVLT.CD
## 4660                                     DT.DOD.PVLX.CD
## 4661                                  DT.DOD.PVLX.EX.ZS
## 4662                                  DT.DOD.PVLX.GN.ZS
## 4663                                  DT.DOD.PVLX.ND.ZS
## 4664                                     DT.DOD.RSDL.CD
## 4665                               DT.DOD.SDLT.CD.PU.US
## 4666                            DT.DOD.TCLT.CD.PR.AR.US
## 4667                            DT.DOD.TCLT.CD.PU.AR.US
## 4668                            DT.DOD.TCST.CD.PR.AR.US
## 4669                            DT.DOD.TCST.CD.PU.AR.US
## 4670                                     DT.DOD.VTOT.CD
## 4671                                  DT.DOR.DECT.AR.US
## 4672                               DT.DOR.DECT.CB.AR.US
## 4673                               DT.DOR.DECT.CB.DS.US
## 4674                            DT.DOR.DECT.CD.CB.AR.US
## 4675                            DT.DOR.DECT.CD.GG.AR.US
## 4676                               DT.DOR.DECT.CD.IL.US
## 4677                            DT.DOR.DECT.CD.MA.AR.US
## 4678                            DT.DOR.DECT.CD.OT.AR.US
## 4679                                  DT.DOR.DECT.DS.US
## 4680                               DT.DOR.DECT.GG.AR.US
## 4681                               DT.DOR.DECT.GG.DS.US
## 4682                               DT.DOR.DECT.IL.AR.US
## 4683                               DT.DOR.DECT.MA.AR.US
## 4684                               DT.DOR.DECT.MA.DS.US
## 4685                               DT.DOR.DECT.OT.AR.US
## 4686                               DT.DOR.DECT.OT.DS.US
## 4687                                  DT.DOR.DECT.RL.US
## 4688                               DT.DOR.DIDI.CD.IL.US
## 4689                               DT.DOR.DIFE.CD.IL.US
## 4690                               DT.DOR.DIIE.CD.IL.US
## 4691                            DT.DOR.DLBN.CD.CB.AR.US
## 4692                            DT.DOR.DLBN.CD.GG.AR.US
## 4693                            DT.DOR.DLBN.CD.MA.AR.US
## 4694                            DT.DOR.DLBN.CD.OT.AR.US
## 4695                            DT.DOR.DLCD.CD.CB.AR.US
## 4696                            DT.DOR.DLCD.CD.MA.AR.US
## 4697                            DT.DOR.DLCD.CD.OT.AR.US
## 4698                            DT.DOR.DLTC.CD.GG.AR.US
## 4699                            DT.DOR.DLTL.CD.CB.AR.US
## 4700                            DT.DOR.DLTL.CD.GG.AR.US
## 4701                            DT.DOR.DLTL.CD.MA.AR.US
## 4702                            DT.DOR.DLTL.CD.OT.AR.US
## 4703                            DT.DOR.DLTO.CD.CB.AR.US
## 4704                            DT.DOR.DLTO.CD.GG.AR.US
## 4705                            DT.DOR.DLTO.CD.MA.AR.US
## 4706                            DT.DOR.DLTO.CD.OT.AR.US
## 4707                               DT.DOR.DLTT.CD.CB.US
## 4708                            DT.DOR.DLTT.CD.GG.AR.US
## 4709                            DT.DOR.DLTT.CD.MA.AR.US
## 4710                            DT.DOR.DLTT.CD.OT.AR.US
## 4711                            DT.DOR.DLXF.CD.CB.AR.US
## 4712                            DT.DOR.DLXF.CD.GG.AR.US
## 4713                            DT.DOR.DLXF.CD.MA.AR.US
## 4714                            DT.DOR.DLXF.CD.OT.AR.US
## 4715                            DT.DOR.DSCD.CD.CB.AR.US
## 4716                            DT.DOR.DSCD.CD.GG.AR.US
## 4717                            DT.DOR.DSCD.CD.MA.AR.US
## 4718                            DT.DOR.DSCD.CD.OT.AR.US
## 4719                            DT.DOR.DSOO.CD.CB.AR.US
## 4720                            DT.DOR.DSOO.CD.GG.AR.US
## 4721                            DT.DOR.DSOO.CD.MA.AR.US
## 4722                            DT.DOR.DSOO.CD.OT.AR.US
## 4723                            DT.DOR.DSTC.CD.CB.AR.US
## 4724                            DT.DOR.DSTC.CD.GG.AR.US
## 4725                            DT.DOR.DSTC.CD.IL.AR.US
## 4726                            DT.DOR.DSTC.CD.MA.AR.US
## 4727                            DT.DOR.DSTC.CD.OT.AR.US
## 4728                            DT.DOR.DSTC.CD.RM.AR.US
## 4729                            DT.DOR.DSTL.CD.CB.AR.US
## 4730                            DT.DOR.DSTL.CD.GG.AR.US
## 4731                            DT.DOR.DSTL.CD.MA.AR.US
## 4732                            DT.DOR.DSTL.CD.OT.AR.US
## 4733                            DT.DOR.DSTM.CD.CB.AR.US
## 4734                            DT.DOR.DSTM.CD.GG.AR.US
## 4735                            DT.DOR.DSTM.CD.MA.AR.US
## 4736                            DT.DOR.DSTM.CD.OT.AR.US
## 4737                            DT.DOR.DSTT.CD.CB.AR.US
## 4738                            DT.DOR.DSTT.CD.GG.AR.US
## 4739                            DT.DOR.DSTT.CD.MA.AR.US
## 4740                            DT.DOR.DSTT.CD.OT.AR.US
## 4741                         DT.DOR.LTDI.CD.IL.RM.AR.US
## 4742                            DT.DOR.LTFE.CD.IL.RM.US
## 4743                         DT.DOR.LTIE.CD.IL.RM.AR.US
## 4744                         DT.DOR.LTOT.CD.IL.RM.AR.US
## 4745                                     DT.DSB.DPPG.CD
## 4746                                     DT.DSF.DPPG.CD
## 4747                                     DT.DTA.DLXF.CD
## 4748                                     DT.DTA.OADJ.CD
## 4749                                     DT.DXR.DPPG.CD
## 4750                                        DT.GPA.DPPG
## 4751                                        DT.GPA.OFFT
## 4752                                        DT.GPA.PRVT
## 4753                                        DT.GRE.DPPG
## 4754                                        DT.GRE.OFFT
## 4755                                        DT.GRE.PRVT
## 4756                                     DT.HPC.COMR.PV
## 4757                                     DT.HPC.MDRI.PV
## 4758                                        DT.HPC.STTS
## 4759                                     DT.HPC.TOTL.PV
## 4760                                     DT.INA.DECT.CD
## 4761                                     DT.IND.DEXF.CD
## 4762                         DT.INP.DECT.00.03.MO.SA.US
## 4763                            DT.INP.DECT.03.YR.SA.US
## 4764                         DT.INP.DECT.04.06.MO.SA.US
## 4765                            DT.INP.DECT.04.YR.SA.US
## 4766                         DT.INP.DECT.05.10.YR.SA.US
## 4767                            DT.INP.DECT.05.YR.SA.US
## 4768                         DT.INP.DECT.07.09.MO.SA.US
## 4769                         DT.INP.DECT.10.12.MO.SA.US
## 4770                         DT.INP.DECT.10.15.YR.SA.US
## 4771                         DT.INP.DECT.13.18.MO.SA.US
## 4772                         DT.INP.DECT.19.24.MO.SA.US
## 4773                            DT.INP.DECT.CD.SA.03.US
## 4774                          DT.INP.DECT.CD.SA.0912.US
## 4775                          DT.INP.DECT.CD.SA.1218.US
## 4776                          DT.INP.DECT.CD.SA.1824.US
## 4777                            DT.INP.DECT.CD.SA.36.US
## 4778                            DT.INP.DECT.CD.SA.69.US
## 4779                         DT.INP.DECT.CD.SA.AR.03.US
## 4780                       DT.INP.DECT.CD.SA.AR.0912.US
## 4781                       DT.INP.DECT.CD.SA.AR.1218.US
## 4782                       DT.INP.DECT.CD.SA.AR.1824.US
## 4783                         DT.INP.DECT.CD.SA.AR.36.US
## 4784                         DT.INP.DECT.CD.SA.AR.69.US
## 4785                         DT.INP.DECT.CD.SA.AR.IQ.US
## 4786                            DT.INP.DECT.CD.SA.IQ.US
## 4787                            DT.INP.DECT.IQ.SA.00.US
## 4788                         DT.INR.DECT.00.03.MO.SA.US
## 4789                            DT.INR.DECT.03.YR.SA.US
## 4790                         DT.INR.DECT.04.06.MO.SA.US
## 4791                            DT.INR.DECT.04.YR.SA.US
## 4792                         DT.INR.DECT.05.10.YR.SA.US
## 4793                            DT.INR.DECT.05.YR.SA.US
## 4794                         DT.INR.DECT.07.09.MO.SA.US
## 4795                         DT.INR.DECT.10.12.MO.SA.US
## 4796                         DT.INR.DECT.10.15.YR.SA.US
## 4797                         DT.INR.DECT.13.18.MO.SA.US
## 4798                         DT.INR.DECT.19.24.MO.SA.US
## 4799                            DT.INR.DECT.CD.SA.03.US
## 4800                          DT.INR.DECT.CD.SA.0912.US
## 4801                          DT.INR.DECT.CD.SA.1218.US
## 4802                          DT.INR.DECT.CD.SA.1824.US
## 4803                            DT.INR.DECT.CD.SA.36.US
## 4804                            DT.INR.DECT.CD.SA.69.US
## 4805                         DT.INR.DECT.CD.SA.AR.03.US
## 4806                       DT.INR.DECT.CD.SA.AR.0912.US
## 4807                       DT.INR.DECT.CD.SA.AR.1218.US
## 4808                       DT.INR.DECT.CD.SA.AR.1824.US
## 4809                         DT.INR.DECT.CD.SA.AR.36.US
## 4810                         DT.INR.DECT.CD.SA.AR.69.US
## 4811                         DT.INR.DECT.CD.SA.AR.IQ.US
## 4812                            DT.INR.DECT.CD.SA.IQ.US
## 4813                            DT.INR.DECT.IQ.SA.00.US
## 4814                                        DT.INR.DPPG
## 4815                                        DT.INR.OFFT
## 4816                                        DT.INR.PRVT
## 4817                                  DT.INT.BLAT.CB.CD
## 4818                                     DT.INT.BLAT.CD
## 4819                                  DT.INT.BLAT.GG.CD
## 4820                                 DT.INT.BLAT.OPS.CD
## 4821                                DT.INT.BLAT.PRVG.CD
## 4822                                  DT.INT.BLAT.PS.CD
## 4823                                  DT.INT.BLTC.CB.CD
## 4824                                     DT.INT.BLTC.CD
## 4825                                  DT.INT.BLTC.GG.CD
## 4826                                 DT.INT.BLTC.OPS.CD
## 4827                                DT.INT.BLTC.PRVG.CD
## 4828                                  DT.INT.BLTC.PS.CD
## 4829                            DT.INT.DEAE.CD.IL.03.US
## 4830                          DT.INT.DEAE.CD.IL.0912.US
## 4831                          DT.INT.DEAE.CD.IL.1218.US
## 4832                          DT.INT.DEAE.CD.IL.1824.US
## 4833                           DT.INT.DEAE.CD.IL.24P.US
## 4834                            DT.INT.DEAE.CD.IL.36.US
## 4835                            DT.INT.DEAE.CD.IL.69.US
## 4836                            DT.INT.DEAE.CD.IL.IQ.US
## 4837                                     DT.INT.DECB.CD
## 4838                                     DT.INT.DECT.CD
## 4839                         DT.INT.DECT.CD.00.03.MO.US
## 4840                               DT.INT.DECT.CD.03.US
## 4841                            DT.INT.DECT.CD.03.YR.US
## 4842                         DT.INT.DECT.CD.04.06.MO.US
## 4843                            DT.INT.DECT.CD.04.YR.US
## 4844                         DT.INT.DECT.CD.05.10.YR.US
## 4845                            DT.INT.DECT.CD.05.YR.US
## 4846                         DT.INT.DECT.CD.07.09.MO.US
## 4847                             DT.INT.DECT.CD.0912.US
## 4848                         DT.INT.DECT.CD.10.12.MO.US
## 4849                         DT.INT.DECT.CD.10.15.YR.US
## 4850                             DT.INT.DECT.CD.1218.US
## 4851                         DT.INT.DECT.CD.13.18.MO.US
## 4852                         DT.INT.DECT.CD.15.UP.YR.US
## 4853                             DT.INT.DECT.CD.1824.US
## 4854                         DT.INT.DECT.CD.19.24.MO.US
## 4855                              DT.INT.DECT.CD.24P.US
## 4856                               DT.INT.DECT.CD.36.US
## 4857                               DT.INT.DECT.CD.69.US
## 4858                            DT.INT.DECT.CD.AR.03.US
## 4859                          DT.INT.DECT.CD.AR.0912.US
## 4860                          DT.INT.DECT.CD.AR.1218.US
## 4861                          DT.INT.DECT.CD.AR.1824.US
## 4862                           DT.INT.DECT.CD.AR.24P.US
## 4863                            DT.INT.DECT.CD.AR.36.US
## 4864                            DT.INT.DECT.CD.AR.69.US
## 4865                            DT.INT.DECT.CD.AR.IQ.US
## 4866                            DT.INT.DECT.CD.CB.03.US
## 4867                          DT.INT.DECT.CD.CB.0912.US
## 4868                          DT.INT.DECT.CD.CB.1218.US
## 4869                          DT.INT.DECT.CD.CB.1824.US
## 4870                           DT.INT.DECT.CD.CB.24P.US
## 4871                            DT.INT.DECT.CD.CB.36.US
## 4872                            DT.INT.DECT.CD.CB.69.US
## 4873                            DT.INT.DECT.CD.CB.IQ.US
## 4874                            DT.INT.DECT.CD.CB.RM.US
## 4875                            DT.INT.DECT.CD.GG.03.US
## 4876                          DT.INT.DECT.CD.GG.0912.US
## 4877                          DT.INT.DECT.CD.GG.1218.US
## 4878                          DT.INT.DECT.CD.GG.1824.US
## 4879                           DT.INT.DECT.CD.GG.24P.US
## 4880                            DT.INT.DECT.CD.GG.36.US
## 4881                            DT.INT.DECT.CD.GG.69.US
## 4882                            DT.INT.DECT.CD.GG.IQ.US
## 4883                            DT.INT.DECT.CD.GG.RM.US
## 4884                            DT.INT.DECT.CD.IL.03.US
## 4885                          DT.INT.DECT.CD.IL.0912.US
## 4886                          DT.INT.DECT.CD.IL.1218.US
## 4887                          DT.INT.DECT.CD.IL.1824.US
## 4888                           DT.INT.DECT.CD.IL.24P.US
## 4889                            DT.INT.DECT.CD.IL.36.US
## 4890                            DT.INT.DECT.CD.IL.69.US
## 4891                            DT.INT.DECT.CD.IL.IQ.US
## 4892                            DT.INT.DECT.CD.IL.RM.US
## 4893                            DT.INT.DECT.CD.IQ.00.US
## 4894                               DT.INT.DECT.CD.IQ.US
## 4895                            DT.INT.DECT.CD.MA.03.US
## 4896                          DT.INT.DECT.CD.MA.0912.US
## 4897                          DT.INT.DECT.CD.MA.1218.US
## 4898                          DT.INT.DECT.CD.MA.1824.US
## 4899                           DT.INT.DECT.CD.MA.24P.US
## 4900                            DT.INT.DECT.CD.MA.36.US
## 4901                            DT.INT.DECT.CD.MA.69.US
## 4902                            DT.INT.DECT.CD.MA.IQ.US
## 4903                            DT.INT.DECT.CD.MA.RM.US
## 4904                            DT.INT.DECT.CD.OS.03.US
## 4905                          DT.INT.DECT.CD.OS.0912.US
## 4906                          DT.INT.DECT.CD.OS.1218.US
## 4907                          DT.INT.DECT.CD.OS.1824.US
## 4908                           DT.INT.DECT.CD.OS.24P.US
## 4909                            DT.INT.DECT.CD.OS.36.US
## 4910                            DT.INT.DECT.CD.OS.69.US
## 4911                            DT.INT.DECT.CD.OS.IQ.US
## 4912                            DT.INT.DECT.CD.OS.RM.US
## 4913                               DT.INT.DECT.CD.RM.US
## 4914                                  DT.INT.DECT.EX.ZS
## 4915                                  DT.INT.DECT.GN.ZS
## 4916                            DT.INT.DEFE.CD.IL.03.US
## 4917                          DT.INT.DEFE.CD.IL.0912.US
## 4918                          DT.INT.DEFE.CD.IL.1218.US
## 4919                          DT.INT.DEFE.CD.IL.1824.US
## 4920                           DT.INT.DEFE.CD.IL.24P.US
## 4921                            DT.INT.DEFE.CD.IL.36.US
## 4922                            DT.INT.DEFE.CD.IL.69.US
## 4923                            DT.INT.DEFE.CD.IL.IQ.US
## 4924                                     DT.INT.DEGG.CD
## 4925                                     DT.INT.DEPS.CD
## 4926                            DT.INT.DILD.CD.IL.03.US
## 4927                          DT.INT.DILD.CD.IL.0912.US
## 4928                          DT.INT.DILD.CD.IL.1218.US
## 4929                          DT.INT.DILD.CD.IL.1824.US
## 4930                           DT.INT.DILD.CD.IL.24P.US
## 4931                            DT.INT.DILD.CD.IL.36.US
## 4932                            DT.INT.DILD.CD.IL.69.US
## 4933                            DT.INT.DILD.CD.IL.IQ.US
## 4934                                     DT.INT.DIMF.CD
## 4935                         DT.INT.DLBN.CD.CB.AR.03.US
## 4936                       DT.INT.DLBN.CD.CB.AR.0912.US
## 4937                       DT.INT.DLBN.CD.CB.AR.1218.US
## 4938                       DT.INT.DLBN.CD.CB.AR.1824.US
## 4939                        DT.INT.DLBN.CD.CB.AR.24P.US
## 4940                         DT.INT.DLBN.CD.CB.AR.36.US
## 4941                         DT.INT.DLBN.CD.CB.AR.69.US
## 4942                         DT.INT.DLBN.CD.CB.AR.IQ.US
## 4943                         DT.INT.DLBN.CD.GG.AR.03.US
## 4944                       DT.INT.DLBN.CD.GG.AR.0912.US
## 4945                       DT.INT.DLBN.CD.GG.AR.1218.US
## 4946                       DT.INT.DLBN.CD.GG.AR.1824.US
## 4947                        DT.INT.DLBN.CD.GG.AR.24P.US
## 4948                         DT.INT.DLBN.CD.GG.AR.36.US
## 4949                         DT.INT.DLBN.CD.GG.AR.69.US
## 4950                         DT.INT.DLBN.CD.GG.AR.IQ.US
## 4951                         DT.INT.DLBN.CD.MA.AR.03.US
## 4952                       DT.INT.DLBN.CD.MA.AR.0912.US
## 4953                       DT.INT.DLBN.CD.MA.AR.1218.US
## 4954                       DT.INT.DLBN.CD.MA.AR.1824.US
## 4955                        DT.INT.DLBN.CD.MA.AR.24P.US
## 4956                         DT.INT.DLBN.CD.MA.AR.36.US
## 4957                         DT.INT.DLBN.CD.MA.AR.69.US
## 4958                         DT.INT.DLBN.CD.MA.AR.IQ.US
## 4959                         DT.INT.DLBN.CD.OT.AR.03.US
## 4960                       DT.INT.DLBN.CD.OT.AR.0912.US
## 4961                       DT.INT.DLBN.CD.OT.AR.1218.US
## 4962                       DT.INT.DLBN.CD.OT.AR.1824.US
## 4963                        DT.INT.DLBN.CD.OT.AR.24P.US
## 4964                         DT.INT.DLBN.CD.OT.AR.36.US
## 4965                         DT.INT.DLBN.CD.OT.AR.69.US
## 4966                         DT.INT.DLBN.CD.OT.AR.IQ.US
## 4967                         DT.INT.DLCD.CD.CB.AR.03.US
## 4968                       DT.INT.DLCD.CD.CB.AR.0912.US
## 4969                       DT.INT.DLCD.CD.CB.AR.1218.US
## 4970                       DT.INT.DLCD.CD.CB.AR.1824.US
## 4971                        DT.INT.DLCD.CD.CB.AR.24P.US
## 4972                         DT.INT.DLCD.CD.CB.AR.36.US
## 4973                         DT.INT.DLCD.CD.CB.AR.69.US
## 4974                         DT.INT.DLCD.CD.CB.AR.IQ.US
## 4975                         DT.INT.DLCD.CD.GG.AR.03.US
## 4976                       DT.INT.DLCD.CD.GG.AR.0912.US
## 4977                       DT.INT.DLCD.CD.GG.AR.1218.US
## 4978                       DT.INT.DLCD.CD.GG.AR.1824.US
## 4979                        DT.INT.DLCD.CD.GG.AR.24P.US
## 4980                         DT.INT.DLCD.CD.GG.AR.36.US
## 4981                         DT.INT.DLCD.CD.GG.AR.69.US
## 4982                         DT.INT.DLCD.CD.GG.AR.IQ.US
## 4983                         DT.INT.DLCD.CD.MA.AR.03.US
## 4984                       DT.INT.DLCD.CD.MA.AR.0912.US
## 4985                       DT.INT.DLCD.CD.MA.AR.1218.US
## 4986                       DT.INT.DLCD.CD.MA.AR.1824.US
## 4987                        DT.INT.DLCD.CD.MA.AR.24P.US
## 4988                         DT.INT.DLCD.CD.MA.AR.36.US
## 4989                         DT.INT.DLCD.CD.MA.AR.69.US
## 4990                         DT.INT.DLCD.CD.MA.AR.IQ.US
## 4991                         DT.INT.DLCD.CD.OT.AR.03.US
## 4992                       DT.INT.DLCD.CD.OT.AR.0912.US
## 4993                       DT.INT.DLCD.CD.OT.AR.1218.US
## 4994                       DT.INT.DLCD.CD.OT.AR.1824.US
## 4995                        DT.INT.DLCD.CD.OT.AR.24P.US
## 4996                         DT.INT.DLCD.CD.OT.AR.36.US
## 4997                         DT.INT.DLCD.CD.OT.AR.69.US
## 4998                         DT.INT.DLCD.CD.OT.AR.IQ.US
## 4999                                     DT.INT.DLTF.CD
## 5000                         DT.INT.DLTL.CD.CB.AR.03.US
## 5001                       DT.INT.DLTL.CD.CB.AR.0912.US
## 5002                       DT.INT.DLTL.CD.CB.AR.1218.US
## 5003                       DT.INT.DLTL.CD.CB.AR.1824.US
## 5004                        DT.INT.DLTL.CD.CB.AR.24P.US
## 5005                         DT.INT.DLTL.CD.CB.AR.36.US
## 5006                         DT.INT.DLTL.CD.CB.AR.69.US
## 5007                         DT.INT.DLTL.CD.CB.AR.IQ.US
## 5008                         DT.INT.DLTL.CD.MA.AR.03.US
## 5009                       DT.INT.DLTL.CD.MA.AR.0912.US
## 5010                       DT.INT.DLTL.CD.MA.AR.1218.US
## 5011                       DT.INT.DLTL.CD.MA.AR.1824.US
## 5012                        DT.INT.DLTL.CD.MA.AR.24P.US
## 5013                         DT.INT.DLTL.CD.MA.AR.36.US
## 5014                         DT.INT.DLTL.CD.MA.AR.69.US
## 5015                         DT.INT.DLTL.CD.MA.AR.IQ.US
## 5016                         DT.INT.DLTL.CD.OT.AR.03.US
## 5017                       DT.INT.DLTL.CD.OT.AR.0912.US
## 5018                       DT.INT.DLTL.CD.OT.AR.1218.US
## 5019                       DT.INT.DLTL.CD.OT.AR.1824.US
## 5020                        DT.INT.DLTL.CD.OT.AR.24P.US
## 5021                         DT.INT.DLTL.CD.OT.AR.36.US
## 5022                         DT.INT.DLTL.CD.OT.AR.69.US
## 5023                         DT.INT.DLTL.CD.OT.AR.IQ.US
## 5024                         DT.INT.DLTO.CD.CB.AR.03.US
## 5025                       DT.INT.DLTO.CD.CB.AR.0912.US
## 5026                       DT.INT.DLTO.CD.CB.AR.1218.US
## 5027                       DT.INT.DLTO.CD.CB.AR.1824.US
## 5028                        DT.INT.DLTO.CD.CB.AR.24P.US
## 5029                         DT.INT.DLTO.CD.CB.AR.36.US
## 5030                         DT.INT.DLTO.CD.CB.AR.69.US
## 5031                         DT.INT.DLTO.CD.CB.AR.IQ.US
## 5032                         DT.INT.DLTO.CD.GG.AR.03.US
## 5033                       DT.INT.DLTO.CD.GG.AR.0912.US
## 5034                       DT.INT.DLTO.CD.GG.AR.1218.US
## 5035                       DT.INT.DLTO.CD.GG.AR.1824.US
## 5036                        DT.INT.DLTO.CD.GG.AR.24P.US
## 5037                         DT.INT.DLTO.CD.GG.AR.36.US
## 5038                         DT.INT.DLTO.CD.GG.AR.69.US
## 5039                         DT.INT.DLTO.CD.GG.AR.IQ.US
## 5040                         DT.INT.DLTO.CD.MA.AR.03.US
## 5041                       DT.INT.DLTO.CD.MA.AR.0912.US
## 5042                       DT.INT.DLTO.CD.MA.AR.1218.US
## 5043                       DT.INT.DLTO.CD.MA.AR.1824.US
## 5044                        DT.INT.DLTO.CD.MA.AR.24P.US
## 5045                         DT.INT.DLTO.CD.MA.AR.36.US
## 5046                         DT.INT.DLTO.CD.MA.AR.69.US
## 5047                         DT.INT.DLTO.CD.MA.AR.IQ.US
## 5048                         DT.INT.DLTO.CD.OT.AR.03.US
## 5049                       DT.INT.DLTO.CD.OT.AR.0912.US
## 5050                       DT.INT.DLTO.CD.OT.AR.1218.US
## 5051                       DT.INT.DLTO.CD.OT.AR.1824.US
## 5052                        DT.INT.DLTO.CD.OT.AR.24P.US
## 5053                         DT.INT.DLTO.CD.OT.AR.36.US
## 5054                         DT.INT.DLTO.CD.OT.AR.69.US
## 5055                         DT.INT.DLTO.CD.OT.AR.IQ.US
## 5056                            DT.INT.DLTS.CD.GG.03.US
## 5057                          DT.INT.DLTS.CD.GG.0912.US
## 5058                          DT.INT.DLTS.CD.GG.1218.US
## 5059                          DT.INT.DLTS.CD.GG.1824.US
## 5060                           DT.INT.DLTS.CD.GG.24P.US
## 5061                            DT.INT.DLTS.CD.GG.36.US
## 5062                            DT.INT.DLTS.CD.GG.69.US
## 5063                            DT.INT.DLTS.CD.GG.IQ.US
## 5064                         DT.INT.DLTS.CD.MA.AR.03.US
## 5065                       DT.INT.DLTS.CD.MA.AR.0912.US
## 5066                       DT.INT.DLTS.CD.MA.AR.1218.US
## 5067                       DT.INT.DLTS.CD.MA.AR.1824.US
## 5068                        DT.INT.DLTS.CD.MA.AR.24P.US
## 5069                         DT.INT.DLTS.CD.MA.AR.36.US
## 5070                         DT.INT.DLTS.CD.MA.AR.69.US
## 5071                         DT.INT.DLTS.CD.MA.AR.IQ.US
## 5072                         DT.INT.DLTT.CD.CB.AR.03.US
## 5073                       DT.INT.DLTT.CD.CB.AR.0912.US
## 5074                       DT.INT.DLTT.CD.CB.AR.1218.US
## 5075                       DT.INT.DLTT.CD.CB.AR.1824.US
## 5076                        DT.INT.DLTT.CD.CB.AR.24P.US
## 5077                         DT.INT.DLTT.CD.CB.AR.36.US
## 5078                         DT.INT.DLTT.CD.CB.AR.69.US
## 5079                         DT.INT.DLTT.CD.CB.AR.IQ.US
## 5080                         DT.INT.DLTT.CD.GG.AR.03.US
## 5081                       DT.INT.DLTT.CD.GG.AR.0912.US
## 5082                       DT.INT.DLTT.CD.GG.AR.1218.US
## 5083                       DT.INT.DLTT.CD.GG.AR.1824.US
## 5084                        DT.INT.DLTT.CD.GG.AR.24P.US
## 5085                         DT.INT.DLTT.CD.GG.AR.36.US
## 5086                         DT.INT.DLTT.CD.GG.AR.69.US
## 5087                         DT.INT.DLTT.CD.GG.AR.IQ.US
## 5088                         DT.INT.DLTT.CD.MA.AR.03.US
## 5089                       DT.INT.DLTT.CD.MA.AR.0912.US
## 5090                       DT.INT.DLTT.CD.MA.AR.1218.US
## 5091                       DT.INT.DLTT.CD.MA.AR.1824.US
## 5092                        DT.INT.DLTT.CD.MA.AR.24P.US
## 5093                         DT.INT.DLTT.CD.MA.AR.36.US
## 5094                         DT.INT.DLTT.CD.MA.AR.69.US
## 5095                         DT.INT.DLTT.CD.MA.AR.IQ.US
## 5096                                     DT.INT.DLXF.CD
## 5097                                     DT.INT.DOPS.CD
## 5098                                     DT.INT.DPNG.CD
## 5099                                     DT.INT.DPPG.CD
## 5100                                     DT.INT.DSTC.CD
## 5101                                     DT.INT.MIBR.CD
## 5102                                     DT.INT.MIDA.CD
## 5103                                  DT.INT.MLAT.CB.CD
## 5104                                     DT.INT.MLAT.CD
## 5105                                  DT.INT.MLAT.GG.CD
## 5106                                 DT.INT.MLAT.OPS.CD
## 5107                                DT.INT.MLAT.PRVG.CD
## 5108                                  DT.INT.MLAT.PS.CD
## 5109                                  DT.INT.MLTC.CB.CD
## 5110                                     DT.INT.MLTC.CD
## 5111                                  DT.INT.MLTC.GG.CD
## 5112                                 DT.INT.MLTC.OPS.CD
## 5113                                DT.INT.MLTC.PRVG.CD
## 5114                                  DT.INT.MLTC.PS.CD
## 5115                                  DT.INT.OFFT.CB.CD
## 5116                                     DT.INT.OFFT.CD
## 5117                                  DT.INT.OFFT.GG.CD
## 5118                                 DT.INT.OFFT.OPS.CD
## 5119                                DT.INT.OFFT.PRVG.CD
## 5120                                  DT.INT.OFFT.PS.CD
## 5121                                  DT.INT.PBND.CB.CD
## 5122                                     DT.INT.PBND.CD
## 5123                                  DT.INT.PBND.GG.CD
## 5124                                 DT.INT.PBND.OPS.CD
## 5125                                DT.INT.PBND.PRVG.CD
## 5126                                  DT.INT.PBND.PS.CD
## 5127                                  DT.INT.PCBK.CB.CD
## 5128                                     DT.INT.PCBK.CD
## 5129                                  DT.INT.PCBK.GG.CD
## 5130                                 DT.INT.PCBK.OPS.CD
## 5131                                DT.INT.PCBK.PRVG.CD
## 5132                                  DT.INT.PCBK.PS.CD
## 5133                                     DT.INT.PGNG.CD
## 5134                                     DT.INT.PNGB.CD
## 5135                                     DT.INT.PNGC.CD
## 5136                                  DT.INT.PROP.CB.CD
## 5137                                     DT.INT.PROP.CD
## 5138                                  DT.INT.PROP.GG.CD
## 5139                                 DT.INT.PROP.OPS.CD
## 5140                                DT.INT.PROP.PRVG.CD
## 5141                                  DT.INT.PROP.PS.CD
## 5142                                     DT.INT.PRPG.CD
## 5143                         DT.INT.PRVS.CD.00.03.MO.US
## 5144                            DT.INT.PRVS.CD.03.YR.US
## 5145                         DT.INT.PRVS.CD.04.06.MO.US
## 5146                            DT.INT.PRVS.CD.04.YR.US
## 5147                         DT.INT.PRVS.CD.05.10.YR.US
## 5148                            DT.INT.PRVS.CD.05.YR.US
## 5149                         DT.INT.PRVS.CD.07.09.MO.US
## 5150                         DT.INT.PRVS.CD.10.12.MO.US
## 5151                         DT.INT.PRVS.CD.10.15.YR.US
## 5152                         DT.INT.PRVS.CD.13.18.MO.US
## 5153                         DT.INT.PRVS.CD.15.UP.YR.US
## 5154                         DT.INT.PRVS.CD.19.24.MO.US
## 5155                            DT.INT.PRVS.CD.IQ.00.US
## 5156                                  DT.INT.PRVT.CB.CD
## 5157                                     DT.INT.PRVT.CD
## 5158                                  DT.INT.PRVT.GG.CD
## 5159                                 DT.INT.PRVT.OPS.CD
## 5160                                DT.INT.PRVT.PRVG.CD
## 5161                                  DT.INT.PRVT.PS.CD
## 5162                         DT.INT.PUBS.CD.00.03.MO.US
## 5163                            DT.INT.PUBS.CD.03.YR.US
## 5164                         DT.INT.PUBS.CD.04.06.MO.US
## 5165                            DT.INT.PUBS.CD.04.YR.US
## 5166                         DT.INT.PUBS.CD.05.10.YR.US
## 5167                            DT.INT.PUBS.CD.05.YR.US
## 5168                         DT.INT.PUBS.CD.07.09.MO.US
## 5169                         DT.INT.PUBS.CD.10.12.MO.US
## 5170                         DT.INT.PUBS.CD.10.15.YR.US
## 5171                         DT.INT.PUBS.CD.13.18.MO.US
## 5172                         DT.INT.PUBS.CD.15.UP.YR.US
## 5173                         DT.INT.PUBS.CD.19.24.MO.US
## 5174                            DT.INT.PUBS.CD.IQ.00.US
## 5175                        DT.INTS.DLTL.CD.GG.AR.03.US
## 5176                      DT.INTS.DLTL.CD.GG.AR.0912.US
## 5177                      DT.INTS.DLTL.CD.GG.AR.1218.US
## 5178                      DT.INTS.DLTL.CD.GG.AR.1824.US
## 5179                       DT.INTS.DLTL.CD.GG.AR.24P.US
## 5180                        DT.INTS.DLTL.CD.GG.AR.36.US
## 5181                        DT.INTS.DLTL.CD.GG.AR.69.US
## 5182                        DT.INTS.DLTL.CD.GG.AR.IQ.US
## 5183                        DT.INTS.DLTT.CD.OT.AR.03.US
## 5184                      DT.INTS.DLTT.CD.OT.AR.0912.US
## 5185                      DT.INTS.DLTT.CD.OT.AR.1218.US
## 5186                      DT.INTS.DLTT.CD.OT.AR.1824.US
## 5187                       DT.INTS.DLTT.CD.OT.AR.24P.US
## 5188                        DT.INTS.DLTT.CD.OT.AR.36.US
## 5189                        DT.INTS.DLTT.CD.OT.AR.69.US
## 5190                        DT.INTS.DLTT.CD.OT.AR.IQ.US
## 5191                         DT.IWA.DECT.CD.OT.HH.AR.US
## 5192                         DT.IWA.DECT.CD.OT.NB.AR.US
## 5193                         DT.IWA.DECT.CD.OT.NF.AR.US
## 5194                            DT.IXA.DECT.CD.CB.AR.US
## 5195                            DT.IXA.DECT.CD.GG.AR.US
## 5196                            DT.IXA.DECT.CD.MA.AR.US
## 5197                            DT.IXA.DECT.CD.OT.AR.US
## 5198                               DT.IXA.DIDI.CD.IL.US
## 5199                               DT.IXA.DIFE.CD.IL.US
## 5200                               DT.IXA.DIIE.CD.IL.US
## 5201                                     DT.IXA.DLXF.CD
## 5202                                     DT.IXA.DPPG.CD
## 5203                                  DT.IXA.DPPG.CD.CG
## 5204                                     DT.IXA.OFFT.CD
## 5205                                     DT.IXA.PRVT.CD
## 5206                                     DT.IXF.DPPG.CD
## 5207                                     DT.IXR.DPPG.CD
## 5208                                     DT.IXR.OFFT.CD
## 5209                                     DT.IXR.PRVT.CD
## 5210                                        DT.MAT.DPPG
## 5211                                        DT.MAT.OFFT
## 5212                                        DT.MAT.PRVT
## 5213                                  DT.NFL.BLAT.CB.CD
## 5214                                     DT.NFL.BLAT.CD
## 5215                                  DT.NFL.BLAT.GG.CD
## 5216                                 DT.NFL.BLAT.OPS.CD
## 5217                                DT.NFL.BLAT.PRVG.CD
## 5218                                  DT.NFL.BLAT.PS.CD
## 5219                                  DT.NFL.BLTC.CB.CD
## 5220                                     DT.NFL.BLTC.CD
## 5221                                  DT.NFL.BLTC.GG.CD
## 5222                                 DT.NFL.BLTC.OPS.CD
## 5223                                DT.NFL.BLTC.PRVG.CD
## 5224                                  DT.NFL.BLTC.PS.CD
## 5225                                     DT.NFL.BOND.CD
## 5226                                     DT.NFL.DECB.CD
## 5227                                     DT.NFL.DECT.CD
## 5228                                     DT.NFL.DEGG.CD
## 5229                                     DT.NFL.DEPS.CD
## 5230                                     DT.NFL.DLXF.CD
## 5231                                     DT.NFL.DOPS.CD
## 5232                                     DT.NFL.DPNG.CD
## 5233                                     DT.NFL.DPPG.CD
## 5234                                     DT.NFL.DSTC.CD
## 5235                                     DT.NFL.FAOG.CD
## 5236                                     DT.NFL.IAEA.CD
## 5237                                     DT.NFL.IFAD.CD
## 5238                                     DT.NFL.ILOG.CD
## 5239                                     DT.NFL.IMFC.CD
## 5240                                     DT.NFL.IMFN.CD
## 5241                                     DT.NFL.MIBR.CD
## 5242                                     DT.NFL.MIDA.CD
## 5243                                  DT.NFL.MLAT.CB.CD
## 5244                                     DT.NFL.MLAT.CD
## 5245                                  DT.NFL.MLAT.GG.CD
## 5246                                 DT.NFL.MLAT.OPS.CD
## 5247                                DT.NFL.MLAT.PRVG.CD
## 5248                                  DT.NFL.MLAT.PS.CD
## 5249                                  DT.NFL.MLTC.CB.CD
## 5250                                     DT.NFL.MLTC.CD
## 5251                                  DT.NFL.MLTC.GG.CD
## 5252                                 DT.NFL.MLTC.OPS.CD
## 5253                                DT.NFL.MLTC.PRVG.CD
## 5254                                  DT.NFL.MLTC.PS.CD
## 5255                                     DT.NFL.MOTH.CD
## 5256                                     DT.NFL.NEBR.CD
## 5257                                     DT.NFL.NIFC.CD
## 5258                                  DT.NFL.OFFT.CB.CD
## 5259                                     DT.NFL.OFFT.CD
## 5260                                  DT.NFL.OFFT.GG.CD
## 5261                                 DT.NFL.OFFT.OPS.CD
## 5262                                DT.NFL.OFFT.PRVG.CD
## 5263                                  DT.NFL.OFFT.PS.CD
## 5264                                  DT.NFL.PBND.CB.CD
## 5265                                     DT.NFL.PBND.CD
## 5266                                  DT.NFL.PBND.GG.CD
## 5267                                 DT.NFL.PBND.OPS.CD
## 5268                                DT.NFL.PBND.PRVG.CD
## 5269                                  DT.NFL.PBND.PS.CD
## 5270                                  DT.NFL.PCBK.CB.CD
## 5271                                     DT.NFL.PCBK.CD
## 5272                                  DT.NFL.PCBK.GG.CD
## 5273                                 DT.NFL.PCBK.OPS.CD
## 5274                                DT.NFL.PCBK.PRVG.CD
## 5275                                  DT.NFL.PCBK.PS.CD
## 5276                                     DT.NFL.PCBO.CD
## 5277                                     DT.NFL.PNGB.CD
## 5278                                     DT.NFL.PNGC.CD
## 5279                                  DT.NFL.PROP.CB.CD
## 5280                                     DT.NFL.PROP.CD
## 5281                                  DT.NFL.PROP.GG.CD
## 5282                                 DT.NFL.PROP.OPS.CD
## 5283                                DT.NFL.PROP.PRVG.CD
## 5284                                  DT.NFL.PROP.PS.CD
## 5285                                     DT.NFL.PRPG.CD
## 5286                                  DT.NFL.PRVT.CB.CD
## 5287                                     DT.NFL.PRVT.CD
## 5288                                  DT.NFL.PRVT.GG.CD
## 5289                                 DT.NFL.PRVT.OPS.CD
## 5290                                DT.NFL.PRVT.PRVG.CD
## 5291                                  DT.NFL.PRVT.PS.CD
## 5292                                     DT.NFL.RDBC.CD
## 5293                                     DT.NFL.RDBN.CD
## 5294                                     DT.NFL.UNAI.CD
## 5295                                     DT.NFL.UNCF.CD
## 5296                                     DT.NFL.UNCR.CD
## 5297                                     DT.NFL.UNDP.CD
## 5298                                     DT.NFL.UNEC.CD
## 5299                                     DT.NFL.UNEP.CD
## 5300                                     DT.NFL.UNFP.CD
## 5301                                     DT.NFL.UNID.CD
## 5302                                     DT.NFL.UNPB.CD
## 5303                                     DT.NFL.UNRW.CD
## 5304                                     DT.NFL.UNTA.CD
## 5305                                     DT.NFL.UNWT.CD
## 5306                                     DT.NFL.WFPG.CD
## 5307                                     DT.NFL.WHOL.CD
## 5308                                  DT.NTR.BLAT.CB.CD
## 5309                                     DT.NTR.BLAT.CD
## 5310                                  DT.NTR.BLAT.GG.CD
## 5311                                 DT.NTR.BLAT.OPS.CD
## 5312                                DT.NTR.BLAT.PRVG.CD
## 5313                                  DT.NTR.BLAT.PS.CD
## 5314                                  DT.NTR.BLTC.CB.CD
## 5315                                     DT.NTR.BLTC.CD
## 5316                                  DT.NTR.BLTC.GG.CD
## 5317                                 DT.NTR.BLTC.OPS.CD
## 5318                                DT.NTR.BLTC.PRVG.CD
## 5319                                  DT.NTR.BLTC.PS.CD
## 5320                                     DT.NTR.DECB.CD
## 5321                                     DT.NTR.DECT.CD
## 5322                                     DT.NTR.DEGG.CD
## 5323                                     DT.NTR.DEPS.CD
## 5324                                     DT.NTR.DLXF.CD
## 5325                                     DT.NTR.DOPS.CD
## 5326                                     DT.NTR.DPNG.CD
## 5327                                     DT.NTR.DPPG.CD
## 5328                                     DT.NTR.MIBR.CD
## 5329                                     DT.NTR.MIDA.CD
## 5330                                  DT.NTR.MLAT.CB.CD
## 5331                                     DT.NTR.MLAT.CD
## 5332                                  DT.NTR.MLAT.GG.CD
## 5333                                 DT.NTR.MLAT.OPS.CD
## 5334                                DT.NTR.MLAT.PRVG.CD
## 5335                                  DT.NTR.MLAT.PS.CD
## 5336                                  DT.NTR.MLTC.CB.CD
## 5337                                     DT.NTR.MLTC.CD
## 5338                                  DT.NTR.MLTC.GG.CD
## 5339                                 DT.NTR.MLTC.OPS.CD
## 5340                                DT.NTR.MLTC.PRVG.CD
## 5341                                  DT.NTR.MLTC.PS.CD
## 5342                                  DT.NTR.OFFT.CB.CD
## 5343                                     DT.NTR.OFFT.CD
## 5344                                  DT.NTR.OFFT.GG.CD
## 5345                                 DT.NTR.OFFT.OPS.CD
## 5346                                DT.NTR.OFFT.PRVG.CD
## 5347                                  DT.NTR.OFFT.PS.CD
## 5348                                  DT.NTR.PBND.CB.CD
## 5349                                     DT.NTR.PBND.CD
## 5350                                  DT.NTR.PBND.GG.CD
## 5351                                 DT.NTR.PBND.OPS.CD
## 5352                                DT.NTR.PBND.PRVG.CD
## 5353                                  DT.NTR.PBND.PS.CD
## 5354                                  DT.NTR.PCBK.CB.CD
## 5355                                     DT.NTR.PCBK.CD
## 5356                                  DT.NTR.PCBK.GG.CD
## 5357                                 DT.NTR.PCBK.OPS.CD
## 5358                                DT.NTR.PCBK.PRVG.CD
## 5359                                  DT.NTR.PCBK.PS.CD
## 5360                                     DT.NTR.PNGB.CD
## 5361                                     DT.NTR.PNGC.CD
## 5362                                  DT.NTR.PROP.CB.CD
## 5363                                     DT.NTR.PROP.CD
## 5364                                  DT.NTR.PROP.GG.CD
## 5365                                 DT.NTR.PROP.OPS.CD
## 5366                                DT.NTR.PROP.PRVG.CD
## 5367                                  DT.NTR.PROP.PS.CD
## 5368                                     DT.NTR.PRPG.CD
## 5369                                  DT.NTR.PRVT.CB.CD
## 5370                                     DT.NTR.PRVT.CD
## 5371                                  DT.NTR.PRVT.GG.CD
## 5372                                 DT.NTR.PRVT.OPS.CD
## 5373                                DT.NTR.PRVT.PRVG.CD
## 5374                                  DT.NTR.PRVT.PS.CD
## 5375                                     DT.ODA.ALLD.CD
## 5376                                  DT.ODA.ALLD.GD.ZS
## 5377                                 DT.ODA.ALLD.GDI.ZS
## 5378                                  DT.ODA.ALLD.GI.ZS
## 5379                                  DT.ODA.ALLD.GN.ZS
## 5380                                 DT.ODA.ALLD.GNP.ZS
## 5381                           DT.ODA.ALLD.HIV.CNTRL.CD
## 5382                            DT.ODA.ALLD.HIV.MITI.CD
## 5383                                 DT.ODA.ALLD.IMP.ZS
## 5384                                     DT.ODA.ALLD.KD
## 5385                           DT.ODA.ALLD.MLR.CNTRL.CD
## 5386                                  DT.ODA.ALLD.MP.ZS
## 5387                                  DT.ODA.ALLD.PC.ZS
## 5388                                 DT.ODA.ALLD.POP.ZS
## 5389                                DT.ODA.ALLD.PRVT.CD
## 5390                                  DT.ODA.ALLD.XP.ZS
## 5391                                 DT.ODA.ALLD.XPD.ZS
## 5392                                DT.ODA.DACD.ADMN.CD
## 5393                           DT.ODA.DACD.AGPA.BDGT.CD
## 5394                                DT.ODA.DACD.AGPA.CD
## 5395                           DT.ODA.DACD.AGPA.FOOD.CD
## 5396                           DT.ODA.DACD.AGPA.OCOM.CD
## 5397                                DT.ODA.DACD.ALLS.CD
## 5398                                     DT.ODA.DACD.CD
## 5399                                  DT.ODA.DACD.CD.PC
## 5400                                DT.ODA.DACD.DEBT.CD
## 5401                           DT.ODA.DACD.ECON.BKFN.CD
## 5402                           DT.ODA.DACD.ECON.BUSN.CD
## 5403                                DT.ODA.DACD.ECON.CD
## 5404                           DT.ODA.DACD.ECON.COMM.CD
## 5405                           DT.ODA.DACD.ECON.NRGY.CD
## 5406                           DT.ODA.DACD.ECON.TRSP.CD
## 5407                             DT.ODA.DACD.EDU.BAS.CD
## 5408                                 DT.ODA.DACD.EDU.CD
## 5409                            DT.ODA.DACD.EDU.PSEC.CD
## 5410                             DT.ODA.DACD.EDU.SEC.CD
## 5411                            DT.ODA.DACD.EDU.UNKN.CD
## 5412                                DT.ODA.DACD.EMRC.CD
## 5413                           DT.ODA.DACD.EMRC.DISA.CD
## 5414                           DT.ODA.DACD.EMRC.OTHR.CD
## 5415                           DT.ODA.DACD.EMRC.RCST.CD
## 5416                                DT.ODA.DACD.GVCS.CD
## 5417                            DT.ODA.DACD.GVCS.CPS.CD
## 5418                            DT.ODA.DACD.GVCS.GEN.CD
## 5419                           DT.ODA.DACD.HIV.CNTRL.CD
## 5420                            DT.ODA.DACD.HIV.MITI.CD
## 5421                            DT.ODA.DACD.HLTH.BAS.CD
## 5422                                DT.ODA.DACD.HLTH.CD
## 5423                            DT.ODA.DACD.HLTH.GEN.CD
## 5424                                     DT.ODA.DACD.KD
## 5425                           DT.ODA.DACD.MLR.CNTRL.CD
## 5426                                DT.ODA.DACD.MSEC.CD
## 5427                           DT.ODA.DACD.MSEC.GENV.CD
## 5428                          DT.ODA.DACD.MSEC.OMSEC.CD
## 5429                                 DT.ODA.DACD.POP.CD
## 5430                       DT.ODA.DACD.PROD.AGRI.AGR.CD
## 5431                           DT.ODA.DACD.PROD.AGRI.CD
## 5432                      DT.ODA.DACD.PROD.AGRI.FISH.CD
## 5433                      DT.ODA.DACD.PROD.AGRI.FORS.CD
## 5434                                DT.ODA.DACD.PROD.CD
## 5435                           DT.ODA.DACD.PROD.INDS.CD
## 5436                       DT.ODA.DACD.PROD.INDS.CON.CD
## 5437                       DT.ODA.DACD.PROD.INDS.IND.CD
## 5438                       DT.ODA.DACD.PROD.INDS.MIN.CD
## 5439                           DT.ODA.DACD.PROD.TRDP.CD
## 5440                           DT.ODA.DACD.PROD.TRSM.CD
## 5441                                DT.ODA.DACD.PRVT.CD
## 5442                                DT.ODA.DACD.RFGE.CD
## 5443                                DT.ODA.DACD.SOCI.CD
## 5444                                DT.ODA.DACD.TSEC.CD
## 5445                                DT.ODA.DACD.UNAL.CD
## 5446                                 DT.ODA.DACD.WSS.CD
## 5447                                    DT.ODA.DACD.ZSG
## 5448                                    DT.ODA.DACD.ZSI
## 5449                                     DT.ODA.MULT.CD
## 5450                                  DT.ODA.MULT.CD.PC
## 5451                                     DT.ODA.MULT.KD
## 5452                                    DT.ODA.MULT.ZSG
## 5453                                    DT.ODA.MULT.ZSI
## 5454                          DT.ODA.MULTI.HIV.CNTRL.CD
## 5455                           DT.ODA.MULTI.HIV.MITI.CD
## 5456                          DT.ODA.MULTI.MLR.CNTRL.CD
## 5457                                     DT.ODA.NDAC.CD
## 5458                                     DT.ODA.NDAC.KD
## 5459                                DT.ODA.NDAC.PRVT.CD
## 5460                                    DT.ODA.NDAC.ZSG
## 5461                                    DT.ODA.NDAC.ZSI
## 5462                                     DT.ODA.OATL.CD
## 5463                                     DT.ODA.OATL.KD
## 5464                                     DT.ODA.ODAT.CD
## 5465                                    DT.ODA.ODAT.CD1
## 5466                                  DT.ODA.ODAT.GD.ZS
## 5467                                  DT.ODA.ODAT.GI.ZS
## 5468                                  DT.ODA.ODAT.GN.ZS
## 5469                                     DT.ODA.ODAT.KD
## 5470                                  DT.ODA.ODAT.MP.ZS
## 5471                                  DT.ODA.ODAT.PC.ZS
## 5472                                  DT.ODA.ODAT.XP.ZS
## 5473                                     DT.SRV.POST.ZS
## 5474                                     DT.TDA.DECT.CD
## 5475                                  DT.TDS.BLAT.CB.CD
## 5476                                     DT.TDS.BLAT.CD
## 5477                                  DT.TDS.BLAT.GG.CD
## 5478                                 DT.TDS.BLAT.OPS.CD
## 5479                                DT.TDS.BLAT.PRVG.CD
## 5480                                  DT.TDS.BLAT.PS.CD
## 5481                                  DT.TDS.BLTC.CB.CD
## 5482                                     DT.TDS.BLTC.CD
## 5483                                  DT.TDS.BLTC.GG.CD
## 5484                                 DT.TDS.BLTC.OPS.CD
## 5485                                DT.TDS.BLTC.PRVG.CD
## 5486                                  DT.TDS.BLTC.PS.CD
## 5487                            DT.TDS.DEAE.CD.IL.03.US
## 5488                          DT.TDS.DEAE.CD.IL.0912.US
## 5489                          DT.TDS.DEAE.CD.IL.1218.US
## 5490                          DT.TDS.DEAE.CD.IL.1824.US
## 5491                           DT.TDS.DEAE.CD.IL.24P.US
## 5492                            DT.TDS.DEAE.CD.IL.36.US
## 5493                            DT.TDS.DEAE.CD.IL.69.US
## 5494                            DT.TDS.DEAE.CD.IL.IQ.US
## 5495                                  DT.TDS.DECA.XP.ZS
## 5496                                     DT.TDS.DECB.CD
## 5497                         DT.TDS.DECT.15.UP.YR.SA.US
## 5498                                     DT.TDS.DECT.CD
## 5499                         DT.TDS.DECT.CD.00.03.MO.US
## 5500                               DT.TDS.DECT.CD.03.US
## 5501                            DT.TDS.DECT.CD.03.YR.US
## 5502                         DT.TDS.DECT.CD.04.06.MO.US
## 5503                            DT.TDS.DECT.CD.04.YR.US
## 5504                         DT.TDS.DECT.CD.05.10.YR.US
## 5505                            DT.TDS.DECT.CD.05.YR.US
## 5506                         DT.TDS.DECT.CD.07.09.MO.US
## 5507                             DT.TDS.DECT.CD.0912.US
## 5508                         DT.TDS.DECT.CD.10.12.MO.US
## 5509                         DT.TDS.DECT.CD.10.15.YR.US
## 5510                             DT.TDS.DECT.CD.1218.US
## 5511                         DT.TDS.DECT.CD.13.18.MO.US
## 5512                         DT.TDS.DECT.CD.15.UP.YR.US
## 5513                             DT.TDS.DECT.CD.1824.US
## 5514                         DT.TDS.DECT.CD.19.24.MO.US
## 5515                              DT.TDS.DECT.CD.24P.US
## 5516                               DT.TDS.DECT.CD.36.US
## 5517                               DT.TDS.DECT.CD.69.US
## 5518                            DT.TDS.DECT.CD.AR.03.US
## 5519                          DT.TDS.DECT.CD.AR.0912.US
## 5520                          DT.TDS.DECT.CD.AR.1218.US
## 5521                          DT.TDS.DECT.CD.AR.1824.US
## 5522                           DT.TDS.DECT.CD.AR.24P.US
## 5523                            DT.TDS.DECT.CD.AR.36.US
## 5524                            DT.TDS.DECT.CD.AR.69.US
## 5525                            DT.TDS.DECT.CD.AR.IQ.US
## 5526                            DT.TDS.DECT.CD.CB.03.US
## 5527                          DT.TDS.DECT.CD.CB.0912.US
## 5528                          DT.TDS.DECT.CD.CB.1218.US
## 5529                          DT.TDS.DECT.CD.CB.1824.US
## 5530                           DT.TDS.DECT.CD.CB.24P.US
## 5531                            DT.TDS.DECT.CD.CB.36.US
## 5532                            DT.TDS.DECT.CD.CB.69.US
## 5533                         DT.TDS.DECT.CD.CB.AR.03.US
## 5534                       DT.TDS.DECT.CD.CB.AR.0912.US
## 5535                       DT.TDS.DECT.CD.CB.AR.1218.US
## 5536                       DT.TDS.DECT.CD.CB.AR.1824.US
## 5537                        DT.TDS.DECT.CD.CB.AR.24P.US
## 5538                         DT.TDS.DECT.CD.CB.AR.36.US
## 5539                         DT.TDS.DECT.CD.CB.AR.69.US
## 5540                         DT.TDS.DECT.CD.CB.AR.IQ.US
## 5541                            DT.TDS.DECT.CD.CB.IQ.US
## 5542                            DT.TDS.DECT.CD.CB.RM.US
## 5543                            DT.TDS.DECT.CD.GG.03.US
## 5544                          DT.TDS.DECT.CD.GG.0912.US
## 5545                          DT.TDS.DECT.CD.GG.1218.US
## 5546                          DT.TDS.DECT.CD.GG.1824.US
## 5547                           DT.TDS.DECT.CD.GG.24P.US
## 5548                            DT.TDS.DECT.CD.GG.36.US
## 5549                            DT.TDS.DECT.CD.GG.69.US
## 5550                         DT.TDS.DECT.CD.GG.AR.03.US
## 5551                       DT.TDS.DECT.CD.GG.AR.0912.US
## 5552                       DT.TDS.DECT.CD.GG.AR.1218.US
## 5553                       DT.TDS.DECT.CD.GG.AR.1824.US
## 5554                        DT.TDS.DECT.CD.GG.AR.24P.US
## 5555                         DT.TDS.DECT.CD.GG.AR.36.US
## 5556                         DT.TDS.DECT.CD.GG.AR.69.US
## 5557                         DT.TDS.DECT.CD.GG.AR.IQ.US
## 5558                            DT.TDS.DECT.CD.GG.IQ.US
## 5559                            DT.TDS.DECT.CD.GG.RM.US
## 5560                            DT.TDS.DECT.CD.IL.03.US
## 5561                          DT.TDS.DECT.CD.IL.0912.US
## 5562                          DT.TDS.DECT.CD.IL.1218.US
## 5563                          DT.TDS.DECT.CD.IL.1824.US
## 5564                           DT.TDS.DECT.CD.IL.24P.US
## 5565                            DT.TDS.DECT.CD.IL.36.US
## 5566                            DT.TDS.DECT.CD.IL.69.US
## 5567                         DT.TDS.DECT.CD.IL.AR.03.US
## 5568                       DT.TDS.DECT.CD.IL.AR.0912.US
## 5569                       DT.TDS.DECT.CD.IL.AR.1218.US
## 5570                       DT.TDS.DECT.CD.IL.AR.1824.US
## 5571                        DT.TDS.DECT.CD.IL.AR.24P.US
## 5572                         DT.TDS.DECT.CD.IL.AR.36.US
## 5573                         DT.TDS.DECT.CD.IL.AR.69.US
## 5574                         DT.TDS.DECT.CD.IL.AR.IQ.US
## 5575                            DT.TDS.DECT.CD.IL.IQ.US
## 5576                            DT.TDS.DECT.CD.IL.RM.US
## 5577                            DT.TDS.DECT.CD.IQ.00.US
## 5578                               DT.TDS.DECT.CD.IQ.US
## 5579                            DT.TDS.DECT.CD.MA.03.US
## 5580                          DT.TDS.DECT.CD.MA.0912.US
## 5581                          DT.TDS.DECT.CD.MA.1218.US
## 5582                          DT.TDS.DECT.CD.MA.1824.US
## 5583                           DT.TDS.DECT.CD.MA.24P.US
## 5584                            DT.TDS.DECT.CD.MA.36.US
## 5585                            DT.TDS.DECT.CD.MA.69.US
## 5586                         DT.TDS.DECT.CD.MA.AR.03.US
## 5587                       DT.TDS.DECT.CD.MA.AR.0912.US
## 5588                       DT.TDS.DECT.CD.MA.AR.1218.US
## 5589                       DT.TDS.DECT.CD.MA.AR.1824.US
## 5590                        DT.TDS.DECT.CD.MA.AR.24P.US
## 5591                         DT.TDS.DECT.CD.MA.AR.36.US
## 5592                         DT.TDS.DECT.CD.MA.AR.69.US
## 5593                         DT.TDS.DECT.CD.MA.AR.IQ.US
## 5594                            DT.TDS.DECT.CD.MA.IQ.US
## 5595                            DT.TDS.DECT.CD.MA.RM.US
## 5596                            DT.TDS.DECT.CD.OS.03.US
## 5597                          DT.TDS.DECT.CD.OS.0912.US
## 5598                          DT.TDS.DECT.CD.OS.1218.US
## 5599                          DT.TDS.DECT.CD.OS.1824.US
## 5600                           DT.TDS.DECT.CD.OS.24P.US
## 5601                            DT.TDS.DECT.CD.OS.36.US
## 5602                            DT.TDS.DECT.CD.OS.69.US
## 5603                            DT.TDS.DECT.CD.OS.IQ.US
## 5604                            DT.TDS.DECT.CD.OS.RM.US
## 5605                         DT.TDS.DECT.CD.OT.AR.03.US
## 5606                       DT.TDS.DECT.CD.OT.AR.0912.US
## 5607                       DT.TDS.DECT.CD.OT.AR.1218.US
## 5608                       DT.TDS.DECT.CD.OT.AR.1824.US
## 5609                        DT.TDS.DECT.CD.OT.AR.24P.US
## 5610                         DT.TDS.DECT.CD.OT.AR.36.US
## 5611                         DT.TDS.DECT.CD.OT.AR.69.US
## 5612                         DT.TDS.DECT.CD.OT.AR.IQ.US
## 5613                               DT.TDS.DECT.CD.RM.US
## 5614                           DT.TDS.DECT.CD.SA.24P.US
## 5615                                  DT.TDS.DECT.EX.ZS
## 5616                                  DT.TDS.DECT.GD.ZS
## 5617                                  DT.TDS.DECT.GN.ZS
## 5618                                 DT.TDS.DECT.GNP.ZS
## 5619                                 DT.TDS.DECT.XGS.ZS
## 5620                            DT.TDS.DEFE.CD.IL.03.US
## 5621                          DT.TDS.DEFE.CD.IL.0912.US
## 5622                          DT.TDS.DEFE.CD.IL.1218.US
## 5623                          DT.TDS.DEFE.CD.IL.1824.US
## 5624                           DT.TDS.DEFE.CD.IL.24P.US
## 5625                            DT.TDS.DEFE.CD.IL.36.US
## 5626                            DT.TDS.DEFE.CD.IL.69.US
## 5627                            DT.TDS.DEFE.CD.IL.IQ.US
## 5628                                     DT.TDS.DEGG.CD
## 5629                                     DT.TDS.DEPS.CD
## 5630                            DT.TDS.DILD.CD.IL.03.US
## 5631                          DT.TDS.DILD.CD.IL.0912.US
## 5632                          DT.TDS.DILD.CD.IL.1218.US
## 5633                          DT.TDS.DILD.CD.IL.1824.US
## 5634                           DT.TDS.DILD.CD.IL.24P.US
## 5635                            DT.TDS.DILD.CD.IL.36.US
## 5636                            DT.TDS.DILD.CD.IL.69.US
## 5637                            DT.TDS.DILD.CD.IL.IQ.US
## 5638                                     DT.TDS.DIMF.CD
## 5639                         DT.TDS.DLBN.CD.CB.AR.03.US
## 5640                       DT.TDS.DLBN.CD.CB.AR.0912.US
## 5641                       DT.TDS.DLBN.CD.CB.AR.1218.US
## 5642                       DT.TDS.DLBN.CD.CB.AR.1824.US
## 5643                        DT.TDS.DLBN.CD.CB.AR.24P.US
## 5644                         DT.TDS.DLBN.CD.CB.AR.36.US
## 5645                         DT.TDS.DLBN.CD.CB.AR.69.US
## 5646                         DT.TDS.DLBN.CD.CB.AR.IQ.US
## 5647                         DT.TDS.DLBN.CD.GG.AR.03.US
## 5648                       DT.TDS.DLBN.CD.GG.AR.0912.US
## 5649                       DT.TDS.DLBN.CD.GG.AR.1218.US
## 5650                       DT.TDS.DLBN.CD.GG.AR.1824.US
## 5651                        DT.TDS.DLBN.CD.GG.AR.24P.US
## 5652                         DT.TDS.DLBN.CD.GG.AR.36.US
## 5653                         DT.TDS.DLBN.CD.GG.AR.69.US
## 5654                         DT.TDS.DLBN.CD.GG.AR.IQ.US
## 5655                         DT.TDS.DLBN.CD.MA.AR.03.US
## 5656                       DT.TDS.DLBN.CD.MA.AR.0912.US
## 5657                       DT.TDS.DLBN.CD.MA.AR.1218.US
## 5658                       DT.TDS.DLBN.CD.MA.AR.1824.US
## 5659                        DT.TDS.DLBN.CD.MA.AR.24P.US
## 5660                         DT.TDS.DLBN.CD.MA.AR.36.US
## 5661                         DT.TDS.DLBN.CD.MA.AR.69.US
## 5662                         DT.TDS.DLBN.CD.MA.AR.IQ.US
## 5663                         DT.TDS.DLBN.CD.OT.AR.03.US
## 5664                       DT.TDS.DLBN.CD.OT.AR.0912.US
## 5665                       DT.TDS.DLBN.CD.OT.AR.1218.US
## 5666                       DT.TDS.DLBN.CD.OT.AR.1824.US
## 5667                        DT.TDS.DLBN.CD.OT.AR.24P.US
## 5668                         DT.TDS.DLBN.CD.OT.AR.36.US
## 5669                         DT.TDS.DLBN.CD.OT.AR.69.US
## 5670                         DT.TDS.DLBN.CD.OT.AR.IQ.US
## 5671                         DT.TDS.DLCD.CD.CB.AR.03.US
## 5672                       DT.TDS.DLCD.CD.CB.AR.0912.US
## 5673                       DT.TDS.DLCD.CD.CB.AR.1218.US
## 5674                       DT.TDS.DLCD.CD.CB.AR.1824.US
## 5675                        DT.TDS.DLCD.CD.CB.AR.24P.US
## 5676                         DT.TDS.DLCD.CD.CB.AR.36.US
## 5677                         DT.TDS.DLCD.CD.CB.AR.69.US
## 5678                         DT.TDS.DLCD.CD.CB.AR.IQ.US
## 5679                         DT.TDS.DLCD.CD.GG.AR.03.US
## 5680                       DT.TDS.DLCD.CD.GG.AR.0912.US
## 5681                       DT.TDS.DLCD.CD.GG.AR.1218.US
## 5682                       DT.TDS.DLCD.CD.GG.AR.1824.US
## 5683                        DT.TDS.DLCD.CD.GG.AR.24P.US
## 5684                         DT.TDS.DLCD.CD.GG.AR.36.US
## 5685                         DT.TDS.DLCD.CD.GG.AR.69.US
## 5686                         DT.TDS.DLCD.CD.GG.AR.IQ.US
## 5687                         DT.TDS.DLCD.CD.MA.AR.03.US
## 5688                       DT.TDS.DLCD.CD.MA.AR.0912.US
## 5689                       DT.TDS.DLCD.CD.MA.AR.1218.US
## 5690                       DT.TDS.DLCD.CD.MA.AR.1824.US
## 5691                        DT.TDS.DLCD.CD.MA.AR.24P.US
## 5692                         DT.TDS.DLCD.CD.MA.AR.36.US
## 5693                         DT.TDS.DLCD.CD.MA.AR.69.US
## 5694                         DT.TDS.DLCD.CD.MA.AR.IQ.US
## 5695                         DT.TDS.DLCD.CD.OT.AR.03.US
## 5696                       DT.TDS.DLCD.CD.OT.AR.0912.US
## 5697                       DT.TDS.DLCD.CD.OT.AR.1218.US
## 5698                       DT.TDS.DLCD.CD.OT.AR.1824.US
## 5699                        DT.TDS.DLCD.CD.OT.AR.24P.US
## 5700                         DT.TDS.DLCD.CD.OT.AR.36.US
## 5701                         DT.TDS.DLCD.CD.OT.AR.69.US
## 5702                         DT.TDS.DLCD.CD.OT.AR.IQ.US
## 5703                         DT.TDS.DLTL.CD.CB.AR.03.US
## 5704                       DT.TDS.DLTL.CD.CB.AR.0912.US
## 5705                       DT.TDS.DLTL.CD.CB.AR.1218.US
## 5706                       DT.TDS.DLTL.CD.CB.AR.1824.US
## 5707                        DT.TDS.DLTL.CD.CB.AR.24P.US
## 5708                         DT.TDS.DLTL.CD.CB.AR.36.US
## 5709                         DT.TDS.DLTL.CD.CB.AR.69.US
## 5710                         DT.TDS.DLTL.CD.CB.AR.IQ.US
## 5711                         DT.TDS.DLTL.CD.GG.AR.03.US
## 5712                       DT.TDS.DLTL.CD.GG.AR.0912.US
## 5713                       DT.TDS.DLTL.CD.GG.AR.1218.US
## 5714                       DT.TDS.DLTL.CD.GG.AR.1824.US
## 5715                        DT.TDS.DLTL.CD.GG.AR.24P.US
## 5716                         DT.TDS.DLTL.CD.GG.AR.36.US
## 5717                         DT.TDS.DLTL.CD.GG.AR.69.US
## 5718                         DT.TDS.DLTL.CD.GG.AR.IQ.US
## 5719                         DT.TDS.DLTL.CD.MA.AR.03.US
## 5720                       DT.TDS.DLTL.CD.MA.AR.0912.US
## 5721                       DT.TDS.DLTL.CD.MA.AR.1218.US
## 5722                       DT.TDS.DLTL.CD.MA.AR.1824.US
## 5723                        DT.TDS.DLTL.CD.MA.AR.24P.US
## 5724                         DT.TDS.DLTL.CD.MA.AR.36.US
## 5725                         DT.TDS.DLTL.CD.MA.AR.69.US
## 5726                         DT.TDS.DLTL.CD.MA.AR.IQ.US
## 5727                         DT.TDS.DLTL.CD.OT.AR.03.US
## 5728                       DT.TDS.DLTL.CD.OT.AR.0912.US
## 5729                       DT.TDS.DLTL.CD.OT.AR.1218.US
## 5730                       DT.TDS.DLTL.CD.OT.AR.1824.US
## 5731                        DT.TDS.DLTL.CD.OT.AR.24P.US
## 5732                         DT.TDS.DLTL.CD.OT.AR.36.US
## 5733                         DT.TDS.DLTL.CD.OT.AR.69.US
## 5734                         DT.TDS.DLTL.CD.OT.AR.IQ.US
## 5735                         DT.TDS.DLTO.CD.CB.AR.03.US
## 5736                       DT.TDS.DLTO.CD.CB.AR.0912.US
## 5737                       DT.TDS.DLTO.CD.CB.AR.1218.US
## 5738                       DT.TDS.DLTO.CD.CB.AR.1824.US
## 5739                        DT.TDS.DLTO.CD.CB.AR.24P.US
## 5740                         DT.TDS.DLTO.CD.CB.AR.36.US
## 5741                         DT.TDS.DLTO.CD.CB.AR.69.US
## 5742                         DT.TDS.DLTO.CD.CB.AR.IQ.US
## 5743                         DT.TDS.DLTO.CD.GG.AR.03.US
## 5744                       DT.TDS.DLTO.CD.GG.AR.0912.US
## 5745                       DT.TDS.DLTO.CD.GG.AR.1218.US
## 5746                       DT.TDS.DLTO.CD.GG.AR.1824.US
## 5747                        DT.TDS.DLTO.CD.GG.AR.24P.US
## 5748                         DT.TDS.DLTO.CD.GG.AR.36.US
## 5749                         DT.TDS.DLTO.CD.GG.AR.69.US
## 5750                         DT.TDS.DLTO.CD.GG.AR.IQ.US
## 5751                         DT.TDS.DLTO.CD.MA.AR.03.US
## 5752                       DT.TDS.DLTO.CD.MA.AR.0912.US
## 5753                       DT.TDS.DLTO.CD.MA.AR.1218.US
## 5754                       DT.TDS.DLTO.CD.MA.AR.1824.US
## 5755                        DT.TDS.DLTO.CD.MA.AR.24P.US
## 5756                         DT.TDS.DLTO.CD.MA.AR.36.US
## 5757                         DT.TDS.DLTO.CD.MA.AR.69.US
## 5758                         DT.TDS.DLTO.CD.MA.AR.IQ.US
## 5759                         DT.TDS.DLTO.CD.OT.AR.03.US
## 5760                       DT.TDS.DLTO.CD.OT.AR.0912.US
## 5761                       DT.TDS.DLTO.CD.OT.AR.1218.US
## 5762                       DT.TDS.DLTO.CD.OT.AR.1824.US
## 5763                        DT.TDS.DLTO.CD.OT.AR.24P.US
## 5764                         DT.TDS.DLTO.CD.OT.AR.36.US
## 5765                         DT.TDS.DLTO.CD.OT.AR.69.US
## 5766                         DT.TDS.DLTO.CD.OT.AR.IQ.US
## 5767                            DT.TDS.DLTS.CD.GG.03.US
## 5768                          DT.TDS.DLTS.CD.GG.0912.US
## 5769                          DT.TDS.DLTS.CD.GG.1218.US
## 5770                          DT.TDS.DLTS.CD.GG.1824.US
## 5771                           DT.TDS.DLTS.CD.GG.24P.US
## 5772                            DT.TDS.DLTS.CD.GG.36.US
## 5773                            DT.TDS.DLTS.CD.GG.69.US
## 5774                            DT.TDS.DLTS.CD.GG.IQ.US
## 5775                         DT.TDS.DLTS.CD.MA.AR.03.US
## 5776                       DT.TDS.DLTS.CD.MA.AR.0912.US
## 5777                       DT.TDS.DLTS.CD.MA.AR.1218.US
## 5778                       DT.TDS.DLTS.CD.MA.AR.1824.US
## 5779                        DT.TDS.DLTS.CD.MA.AR.24P.US
## 5780                         DT.TDS.DLTS.CD.MA.AR.36.US
## 5781                         DT.TDS.DLTS.CD.MA.AR.69.US
## 5782                         DT.TDS.DLTS.CD.MA.AR.IQ.US
## 5783                         DT.TDS.DLTT.CD.CB.AR.03.US
## 5784                       DT.TDS.DLTT.CD.CB.AR.0912.US
## 5785                       DT.TDS.DLTT.CD.CB.AR.1218.US
## 5786                       DT.TDS.DLTT.CD.CB.AR.1824.US
## 5787                        DT.TDS.DLTT.CD.CB.AR.24P.US
## 5788                         DT.TDS.DLTT.CD.CB.AR.36.US
## 5789                         DT.TDS.DLTT.CD.CB.AR.69.US
## 5790                         DT.TDS.DLTT.CD.CB.AR.IQ.US
## 5791                         DT.TDS.DLTT.CD.GG.AR.03.US
## 5792                       DT.TDS.DLTT.CD.GG.AR.0912.US
## 5793                       DT.TDS.DLTT.CD.GG.AR.1218.US
## 5794                       DT.TDS.DLTT.CD.GG.AR.1824.US
## 5795                        DT.TDS.DLTT.CD.GG.AR.24P.US
## 5796                         DT.TDS.DLTT.CD.GG.AR.36.US
## 5797                         DT.TDS.DLTT.CD.GG.AR.69.US
## 5798                         DT.TDS.DLTT.CD.GG.AR.IQ.US
## 5799                         DT.TDS.DLTT.CD.MA.AR.03.US
## 5800                       DT.TDS.DLTT.CD.MA.AR.0912.US
## 5801                       DT.TDS.DLTT.CD.MA.AR.1218.US
## 5802                       DT.TDS.DLTT.CD.MA.AR.1824.US
## 5803                        DT.TDS.DLTT.CD.MA.AR.24P.US
## 5804                         DT.TDS.DLTT.CD.MA.AR.36.US
## 5805                         DT.TDS.DLTT.CD.MA.AR.69.US
## 5806                         DT.TDS.DLTT.CD.MA.AR.IQ.US
## 5807                         DT.TDS.DLTT.CD.OT.AR.03.US
## 5808                       DT.TDS.DLTT.CD.OT.AR.0912.US
## 5809                       DT.TDS.DLTT.CD.OT.AR.1218.US
## 5810                       DT.TDS.DLTT.CD.OT.AR.1824.US
## 5811                        DT.TDS.DLTT.CD.OT.AR.24P.US
## 5812                         DT.TDS.DLTT.CD.OT.AR.36.US
## 5813                         DT.TDS.DLTT.CD.OT.AR.69.US
## 5814                         DT.TDS.DLTT.CD.OT.AR.IQ.US
## 5815                                     DT.TDS.DLXF.CD
## 5816                                     DT.TDS.DOPS.CD
## 5817                                     DT.TDS.DPNG.CD
## 5818                                  DT.TDS.DPPF.XP.ZS
## 5819                                     DT.TDS.DPPG.CD
## 5820                                  DT.TDS.DPPG.GN.ZS
## 5821                                 DT.TDS.DPPG.REV.ZS
## 5822                                  DT.TDS.DPPG.RV.ZS
## 5823                                  DT.TDS.DPPG.XP.ZS
## 5824                                     DT.TDS.MIBR.CD
## 5825                                     DT.TDS.MIDA.CD
## 5826                                  DT.TDS.MLAT.CB.CD
## 5827                                     DT.TDS.MLAT.CD
## 5828                                  DT.TDS.MLAT.GG.CD
## 5829                                 DT.TDS.MLAT.OPS.CD
## 5830                                  DT.TDS.MLAT.PG.ZS
## 5831                                DT.TDS.MLAT.PRVG.CD
## 5832                                  DT.TDS.MLAT.PS.CD
## 5833                                  DT.TDS.MLTC.CB.CD
## 5834                                     DT.TDS.MLTC.CD
## 5835                                  DT.TDS.MLTC.GG.CD
## 5836                                 DT.TDS.MLTC.OPS.CD
## 5837                                DT.TDS.MLTC.PRVG.CD
## 5838                                  DT.TDS.MLTC.PS.CD
## 5839                                  DT.TDS.OFFT.CB.CD
## 5840                                     DT.TDS.OFFT.CD
## 5841                                  DT.TDS.OFFT.GG.CD
## 5842                                 DT.TDS.OFFT.OPS.CD
## 5843                                DT.TDS.OFFT.PRVG.CD
## 5844                                  DT.TDS.OFFT.PS.CD
## 5845                                  DT.TDS.PBND.CB.CD
## 5846                                     DT.TDS.PBND.CD
## 5847                                  DT.TDS.PBND.GG.CD
## 5848                                 DT.TDS.PBND.OPS.CD
## 5849                                DT.TDS.PBND.PRVG.CD
## 5850                                  DT.TDS.PBND.PS.CD
## 5851                                  DT.TDS.PCBK.CB.CD
## 5852                                     DT.TDS.PCBK.CD
## 5853                                  DT.TDS.PCBK.GG.CD
## 5854                                 DT.TDS.PCBK.OPS.CD
## 5855                                DT.TDS.PCBK.PRVG.CD
## 5856                                  DT.TDS.PCBK.PS.CD
## 5857                                     DT.TDS.PGNG.CD
## 5858                                     DT.TDS.PNGB.CD
## 5859                                     DT.TDS.PNGC.CD
## 5860                                  DT.TDS.PROP.CB.CD
## 5861                                     DT.TDS.PROP.CD
## 5862                                  DT.TDS.PROP.GG.CD
## 5863                                 DT.TDS.PROP.OPS.CD
## 5864                                DT.TDS.PROP.PRVG.CD
## 5865                                  DT.TDS.PROP.PS.CD
## 5866                                     DT.TDS.PRPG.CD
## 5867                         DT.TDS.PRVS.CD.00.03.MO.US
## 5868                            DT.TDS.PRVS.CD.03.YR.US
## 5869                         DT.TDS.PRVS.CD.04.06.MO.US
## 5870                            DT.TDS.PRVS.CD.04.YR.US
## 5871                         DT.TDS.PRVS.CD.05.10.YR.US
## 5872                            DT.TDS.PRVS.CD.05.YR.US
## 5873                         DT.TDS.PRVS.CD.07.09.MO.US
## 5874                         DT.TDS.PRVS.CD.10.12.MO.US
## 5875                         DT.TDS.PRVS.CD.10.15.YR.US
## 5876                         DT.TDS.PRVS.CD.13.18.MO.US
## 5877                         DT.TDS.PRVS.CD.15.UP.YR.US
## 5878                         DT.TDS.PRVS.CD.19.24.MO.US
## 5879                            DT.TDS.PRVS.CD.IQ.00.US
## 5880                                  DT.TDS.PRVT.CB.CD
## 5881                                     DT.TDS.PRVT.CD
## 5882                                  DT.TDS.PRVT.GG.CD
## 5883                                 DT.TDS.PRVT.OPS.CD
## 5884                                DT.TDS.PRVT.PRVG.CD
## 5885                                  DT.TDS.PRVT.PS.CD
## 5886                         DT.TDS.PUBS.CD.00.03.MO.US
## 5887                            DT.TDS.PUBS.CD.03.YR.US
## 5888                         DT.TDS.PUBS.CD.04.06.MO.US
## 5889                            DT.TDS.PUBS.CD.04.YR.US
## 5890                         DT.TDS.PUBS.CD.05.10.YR.US
## 5891                            DT.TDS.PUBS.CD.05.YR.US
## 5892                         DT.TDS.PUBS.CD.07.09.MO.US
## 5893                         DT.TDS.PUBS.CD.10.12.MO.US
## 5894                         DT.TDS.PUBS.CD.10.15.YR.US
## 5895                         DT.TDS.PUBS.CD.13.18.MO.US
## 5896                         DT.TDS.PUBS.CD.15.UP.YR.US
## 5897                         DT.TDS.PUBS.CD.19.24.MO.US
## 5898                            DT.TDS.PUBS.CD.IQ.00.US
## 5899                                     DT.TRA.DECT.CD
## 5900                               DT.TXA.DECT.CD.CB.US
## 5901                               DT.TXA.DECT.CD.GG.US
## 5902                            DT.TXA.DECT.CD.IL.IN.US
## 5903                            DT.TXA.DECT.CD.IL.PR.US
## 5904                               DT.TXA.DECT.CD.IL.US
## 5905                               DT.TXA.DECT.CD.MA.US
## 5906                            DT.TXA.DECT.CD.OT.HH.US
## 5907                            DT.TXA.DECT.CD.OT.NB.US
## 5908                            DT.TXA.DECT.CD.OT.NF.US
## 5909                               DT.TXA.DECT.CD.OT.US
## 5910                               DT.TXA.DECT.CD.TO.US
## 5911                               DT.TXA.DIDI.CD.IL.US
## 5912                               DT.TXA.DIFE.CD.IL.US
## 5913                               DT.TXA.DIIE.CD.IL.US
## 5914                                     DT.TXR.DPPG.CD
## 5915                                     DT.UND.DPPG.CD
## 5916                                     DT.UND.OFFT.CD
## 5917                                     DT.UND.PRVT.CD
## 5918                                      DXGSRMRCHNSCD
## 5919                                      DXGSRMRCHNSKD
## 5920                                      DXGSRMRCHNSXD
## 5921                                      DXGSRMRCHSACD
## 5922                                      DXGSRMRCHSAKD
## 5923                                      DXGSRMRCHSAXD
## 5924                                                E1i
## 5925                                               E1ii
## 5926                                              E1iii
## 5927                                                E2i
## 5928                                               E2ii
## 5929                                              E2iii
## 5930                                                E3i
## 5931                                               E3ii
## 5932                                              E3iii
## 5933                                                E4i
## 5934                                               E4ii
## 5935                                              E4iii
## 5936                                                E5i
## 5937                                               E5ii
## 5938                                              E5iii
## 5939                                                E6i
## 5940                                               E6ii
## 5941                                              E6iii
## 5942                                  EA.AGR.TOTL.IN.ZS
## 5943                                        EA.NUS.ATLS
## 5944                                        EA.NUS.FCRF
## 5945                                     EA.PRD.AGRI.KD
## 5946                                     EA.PRD.LAND.KD
## 5947                                      EC.XPD.CAP.CR
## 5948                                      EC.XPD.GSR.CR
## 5949                                     EC.XPD.OTHR.CR
## 5950                                     EC.XPD.STAF.CR
## 5951                                     EC.XPD.TOTL.CR
## 5952                                     EE.BOD.CGLS.ZS
## 5953                                     EE.BOD.CHEM.ZS
## 5954                                     EE.BOD.FOOD.ZS
## 5955                                     EE.BOD.MTAL.ZS
## 5956                                     EE.BOD.OTHR.ZS
## 5957                                     EE.BOD.PAPR.ZS
## 5958                                     EE.BOD.TOTL.KG
## 5959                                     EE.BOD.TXTL.ZS
## 5960                                     EE.BOD.WOOD.ZS
## 5961                                     EE.BOD.WRKR.KG
## 5962                                     EF.EFM.OVRL.XD
## 5963                                     EF.EFM.PROD.XD
## 5964                                     EF.EFM.RANK.XD
## 5965                                     EF.EFM.UNIV.XD
## 5966                                  EG.CFT.ACCS.RU.ZS
## 5967                                  EG.CFT.ACCS.UR.ZS
## 5968                                     EG.CFT.ACCS.ZS
## 5969                                  EG.EGY.PRIM.PP.KD
## 5970                                  EG.EGY.PROD.KT.OE
## 5971                                  EG.ELC.ACCS.RU.ZS
## 5972                                  EG.ELC.ACCS.UR.ZS
## 5973                                     EG.ELC.ACCS.ZS
## 5974                                     EG.ELC.COAL.KH
## 5975                                     EG.ELC.COAL.ZS
## 5976                                     EG.ELC.FOSL.ZS
## 5977                                     EG.ELC.HYRO.KH
## 5978                                     EG.ELC.HYRO.ZS
## 5979                                     EG.ELC.LOSS.KH
## 5980                                     EG.ELC.LOSS.ZS
## 5981                                     EG.ELC.NGAS.KH
## 5982                                     EG.ELC.NGAS.ZS
## 5983                                     EG.ELC.NUCL.KH
## 5984                                     EG.ELC.NUCL.ZS
## 5985                                     EG.ELC.PETR.KH
## 5986                                     EG.ELC.PETR.ZS
## 5987                                     EG.ELC.PROD.KH
## 5988                                     EG.ELC.RNEW.KH
## 5989                                     EG.ELC.RNEW.ZS
## 5990                                     EG.ELC.RNWX.KH
## 5991                                     EG.ELC.RNWX.ZS
## 5992                                     EG.FEC.RNEW.ZS
## 5993                                  EG.GDP.PUSE.KO.87
## 5994                                  EG.GDP.PUSE.KO.KD
## 5995                                  EG.GDP.PUSE.KO.PP
## 5996                               EG.GDP.PUSE.KO.PP.KD
## 5997                                     EG.IMP.CONS.ZS
## 5998                                  EG.IMP.TOTL.KT.OE
## 5999                                  EG.NSF.ACCS.RU.ZS
## 6000                                  EG.NSF.ACCS.UR.ZS
## 6001                                     EG.NSF.ACCS.ZS
## 6002                                  EG.USE.COMM.CL.ZS
## 6003                                  EG.USE.COMM.FO.ZS
## 6004                               EG.USE.COMM.GD.PP.KD
## 6005                                  EG.USE.COMM.KT.OE
## 6006                                  EG.USE.CRNW.KT.OE
## 6007                                     EG.USE.CRNW.ZS
## 6008                                     EG.USE.ELEC.KH
## 6009                                  EG.USE.ELEC.KH.PC
## 6010                                  EG.USE.PCAP.KG.OE
## 6011                                              EMBIG
## 6012                                             EMBIGI
## 6013                                        EN.AGR.EMPL
## 6014                                     EN.AGR.EMPL.FE
## 6015                                     EN.AGR.EMPL.IN
## 6016                                     EN.AGR.EMPL.MA
## 6017                                     EN.ANM.THRD.NO
## 6018                                     EN.ARE.LAND.ZS
## 6019                                  EN.ATM.CO2E.CP.KT
## 6020                                  EN.ATM.CO2E.EG.ZS
## 6021                                  EN.ATM.CO2E.FF.KT
## 6022                                  EN.ATM.CO2E.FF.ZS
## 6023                                    EN.ATM.CO2E.GDP
## 6024                                  EN.ATM.CO2E.GF.KT
## 6025                                  EN.ATM.CO2E.GF.ZS
## 6026                                  EN.ATM.CO2E.GL.KT
## 6027                               EN.ATM.CO2E.KD.87.GD
## 6028                                  EN.ATM.CO2E.KD.GD
## 6029                                     EN.ATM.CO2E.KT
## 6030                                  EN.ATM.CO2E.LF.KT
## 6031                                  EN.ATM.CO2E.LF.ZS
## 6032                                     EN.ATM.CO2E.PC
## 6033                                  EN.ATM.CO2E.PP.GD
## 6034                               EN.ATM.CO2E.PP.GD.KD
## 6035                                  EN.ATM.CO2E.SF.KT
## 6036                                  EN.ATM.CO2E.SF.ZS
## 6037                                  EN.ATM.GHGO.KT.CE
## 6038                                     EN.ATM.GHGO.ZG
## 6039                                  EN.ATM.GHGT.KT.CE
## 6040                                     EN.ATM.GHGT.ZG
## 6041                                  EN.ATM.HFCG.KT.CE
## 6042                               EN.ATM.METH.AG.KT.CE
## 6043                                  EN.ATM.METH.AG.ZS
## 6044                               EN.ATM.METH.EG.KT.CE
## 6045                                  EN.ATM.METH.EG.ZS
## 6046                                  EN.ATM.METH.IN.ZS
## 6047                                  EN.ATM.METH.KT.CE
## 6048                                     EN.ATM.METH.PC
## 6049                                     EN.ATM.METH.ZG
## 6050                               EN.ATM.NOXE.AG.KT.CE
## 6051                                  EN.ATM.NOXE.AG.ZS
## 6052                               EN.ATM.NOXE.EG.KT.CE
## 6053                                  EN.ATM.NOXE.EG.ZS
## 6054                                  EN.ATM.NOXE.EI.ZS
## 6055                               EN.ATM.NOXE.IN.KT.CE
## 6056                                  EN.ATM.NOXE.IN.ZS
## 6057                                  EN.ATM.NOXE.KT.CE
## 6058                                  EN.ATM.NOXE.MT.CE
## 6059                                     EN.ATM.NOXE.PC
## 6060                                     EN.ATM.NOXE.ZG
## 6061                                  EN.ATM.PFCG.KT.CE
## 6062                                  EN.ATM.PM10.MC.M3
## 6063                                  EN.ATM.PM25.MC.M3
## 6064                               EN.ATM.PM25.MC.T1.ZS
## 6065                               EN.ATM.PM25.MC.T2.ZS
## 6066                               EN.ATM.PM25.MC.T3.ZS
## 6067                                  EN.ATM.PM25.MC.ZS
## 6068                                  EN.ATM.SF6G.KT.CE
## 6069                                     EN.BIR.THRD.NO
## 6070                                     EN.BIR.TOTL.NO
## 6071                                     EN.CLC.CDDY.XD
## 6072                                     EN.CLC.DRSK.XQ
## 6073                                  EN.CLC.GHGR.MT.CE
## 6074                                     EN.CLC.HEAT.XD
## 6075                                     EN.CLC.MDAT.ZS
## 6076                                     EN.CLC.PRCP.XD
## 6077                                     EN.CLC.SPEI.XD
## 6078                                     EN.CO2.BLDG.MT
## 6079                                     EN.CO2.BLDG.ZS
## 6080                                     EN.CO2.ETOT.MT
## 6081                                     EN.CO2.ETOT.ZS
## 6082                                     EN.CO2.MANF.MT
## 6083                                     EN.CO2.MANF.ZS
## 6084                                     EN.CO2.OTHX.MT
## 6085                                     EN.CO2.OTHX.ZS
## 6086                                     EN.CO2.TRAN.MT
## 6087                                     EN.CO2.TRAN.ZS
## 6088                                  EN.EGY.PROD.KT.OE
## 6089                                    EN.ELC.PROD.GWH
## 6090                                EN.ELC.PROD.LOSS.ZS
## 6091                                     EN.FSH.THRD.NO
## 6092                                     EN.HPT.THRD.NO
## 6093                                     EN.HPT.TOTL.NO
## 6094                                        EN.LAND.CRP
## 6095                                     EN.LAND.CRP.ZS
## 6096                                        EN.LAND.OTH
## 6097                                     EN.LAND.OTH.ZS
## 6098                                        EN.LAND.PPS
## 6099                                     EN.LAND.PPS.ZS
## 6100                                       EN.LAND.TOTL
## 6101                                  EN.LND.IRIG.AR.ZS
## 6102                                     EN.MAM.THRD.NO
## 6103                                    EN.NAGR.EMPL.IN
## 6104                                        EN.POP.DNST
## 6105                                  EN.POP.EL5M.RU.ZS
## 6106                                  EN.POP.EL5M.UR.ZS
## 6107                                     EN.POP.EL5M.ZS
## 6108                                  EN.POP.SLUM.UR.ZS
## 6109                                        EN.PRD.ELEC
## 6110                                 EN.PRD.ELEC.POP.ZS
## 6111                                        EN.ROD.ACCT
## 6112                                        EN.ROD.TRAF
## 6113                                        EN.RUR.DNST
## 6114                                   EN.RUR.DNST.TOTL
## 6115                                        EN.TDF.COMP
## 6116                                     EN.TDF.COMP.ZS
## 6117                                 EN.TRN.ACCT.VEH.ZS
## 6118                                     EN.TRN.NVEH.1K
## 6119                                     EN.TRN.NVEH.KM
## 6120                                        EN.URB.LCTY
## 6121                                  EN.URB.LCTY.UR.ZS
## 6122                                        EN.URB.MCTY
## 6123                                  EN.URB.MCTY.TL.ZS
## 6124                                 ENF.CONT.COEN.ATDR
## 6125                              ENF.CONT.COEN.ATFE.PR
## 6126                              ENF.CONT.COEN.COST.ZS
## 6127                         ENF.CONT.COEN.COST.ZS.DFRN
## 6128                                 ENF.CONT.COEN.CSMG
## 6129                                 ENF.CONT.COEN.CTAU
## 6130                              ENF.CONT.COEN.CTFE.PR
## 6131                            ENF.CONT.COEN.CTSP.DB16
## 6132                          ENF.CONT.COEN.CTSP.DB1719
## 6133                          ENF.CONT.COEN.DB0415.DFRN
## 6134                            ENF.CONT.COEN.DB16.DFRN
## 6135                          ENF.CONT.COEN.DB1719.DFRN
## 6136                              ENF.CONT.COEN.ENFE.PR
## 6137                              ENF.CONT.COEN.ENJU.DY
## 6138                              ENF.CONT.COEN.FLSR.DY
## 6139                              ENF.CONT.COEN.PROC.NO
## 6140                         ENF.CONT.COEN.PROC.NO.DFRN
## 6141                       ENF.CONT.COEN.QUJP.DB16.DFRN
## 6142                     ENF.CONT.COEN.QUJP.DB1719.DFRN
## 6143                              ENF.CONT.COEN.QUJP.XD
## 6144                              ENF.CONT.COEN.RK.DB19
## 6145                              ENF.CONT.COEN.TRJU.DY
## 6146                                   ENF.CONT.DURS.DY
## 6147                              ENF.CONT.DURS.DY.DFRN
## 6148                                   ENF.CONT.EC.QJPI
## 6149                                        EP.CPI.1996
## 6150                                        EP.CPI.2002
## 6151                                        EP.CPI.2007
## 6152                                        EP.CPI.2012
## 6153                                     EP.PMP.DESL.CD
## 6154                                     EP.PMP.SGAS.CD
## 6155                                     EP.PPR.BRED.XD
## 6156                                     EP.PPR.MAIZ.CD
## 6157                                     EP.PPR.MEAT.XD
## 6158                                     EP.PPR.WHEA.CD
## 6159                                     ER.BDV.TOTL.XQ
## 6160                                     ER.FSH.AQUA.MT
## 6161                                     ER.FSH.CAPT.MT
## 6162                                     ER.FSH.PROD.MT
## 6163                                     ER.FST.DFST.ZG
## 6164                                  ER.GDP.FWTL.M3.KD
## 6165                                     ER.H2O.FWAG.ZS
## 6166                                     ER.H2O.FWDM.ZS
## 6167                                     ER.H2O.FWIN.ZS
## 6168                                     ER.H2O.FWST.ZS
## 6169                                     ER.H2O.FWTL.K3
## 6170                                     ER.H2O.FWTL.ZS
## 6171                                     ER.H2O.INTR.K3
## 6172                                     ER.H2O.INTR.PC
## 6173                                     ER.LND.PTLD.K2
## 6174                                  ER.LND.PTLD.TR.NO
## 6175                                  ER.LND.PTLD.TR.ZS
## 6176                                     ER.LND.PTLD.ZS
## 6177                                     ER.MRN.PTMR.K2
## 6178                                     ER.MRN.PTMR.NO
## 6179                                     ER.MRN.PTMR.ZS
## 6180                                     ER.PTD.TOTL.ZS
## 6181                                  EU.EGY.IMPT.CO.ZS
## 6182                                    EU.EGY.USES.GDP
## 6183                               EU.EGY.USES.KG.OE.PC
## 6184                                  EU.EGY.USES.KT.OE
## 6185                                     FA.LBL.RCUR.CN
## 6186                                     FB.AST.FRNO.ZS
## 6187                                  FB.AST.LOAN.CB.P3
## 6188                                  FB.AST.LOAN.CO.P3
## 6189                                  FB.AST.LOAN.MF.P3
## 6190                                  FB.AST.LOAN.SF.P3
## 6191                                     FB.AST.NPER.ZS
## 6192                                     FB.AST.PUBO.ZS
## 6193                                     FB.ATM.TOTL.P5
## 6194                                  FB.BNK.BRCH.CB.P5
## 6195                                  FB.BNK.BRCH.CO.P5
## 6196                                  FB.BNK.BRCH.MF.P5
## 6197                                     FB.BNK.BRCH.P5
## 6198                                  FB.BNK.BRCH.SF.P5
## 6199                                     FB.BNK.CAPA.ZS
## 6200                                  FB.CAP.INST.ST.DM
## 6201                               FB.CAP.INST.ST.MS.AL
## 6202                               FB.CAP.INST.ST.MS.GI
## 6203                               FB.CAP.INST.ST.MS.GP
## 6204                               FB.CAP.INST.ST.MS.IO
## 6205                               FB.CAP.INST.ST.MS.WB
## 6206                                  FB.CAP.INST.ST.MU
## 6207                                  FB.CAP.INST.ST.SG
## 6208                                  FB.CAP.LEGL.DF.FE
## 6209                              FB.CAP.POLI.FE.CTR.WS
## 6210                                 FB.CAP.POLI.G2P.FE
## 6211                                  FB.CAP.POLI.GL.AP
## 6212                                  FB.CAP.POLI.GL.SP
## 6213                                  FB.CAP.POLI.GL.WP
## 6214                                  FB.CAP.POLI.NM.5Y
## 6215                               FB.CAP.POLI.NS.BF.5Y
## 6216                               FB.CAP.POLI.NS.FC.5Y
## 6217                              FB.CAP.POLI.PSC.CD.2Y
## 6218                              FB.CAP.POLI.PSC.DT.FE
## 6219                              FB.CAP.POLI.PSC.IP.2Y
## 6220                              FB.CAP.POLI.PSC.JS.FE
## 6221                                 FB.CAP.POLI.PSC.NI
## 6222                              FB.CAP.POLI.PSC.PR.FE
## 6223                              FB.CAP.POLI.PSC.SS.FE
## 6224                              FB.CAP.POLI.PSC.ST.FE
## 6225                              FB.CAP.POLI.PSC.UN.FE
## 6226                             FB.CAP.POLI.PTC.INF.WS
## 6227                                  FB.CAP.POLI.RE.AP
## 6228                                  FB.CAP.POLI.RE.SP
## 6229                                  FB.CAP.POLI.RE.WP
## 6230                               FB.CAP.POLI.RG.DC.AP
## 6231                               FB.CAP.POLI.RG.DC.SP
## 6232                               FB.CAP.POLI.RG.DC.WP
## 6233                                     FB.CBK.BRCH.P5
## 6234                                     FB.CBK.BRWR.P3
## 6235                                     FB.CBK.DPTR.P3
## 6236                                  FB.DPT.INSU.PC.ZS
## 6237                               FB.FCP.BREG.AL.CO.NP
## 6238                                  FB.FCP.BREG.EB.AR
## 6239                                  FB.FCP.BREG.EB.EL
## 6240                                  FB.FCP.BREG.EB.NP
## 6241                                  FB.FCP.BREG.EB.OR
## 6242                               FB.FCP.BREG.ML.PC.AG
## 6243                               FB.FCP.BREG.ML.PC.AP
## 6244                               FB.FCP.BREG.ML.PC.CO
## 6245                               FB.FCP.BREG.ML.PC.CR
## 6246                               FB.FCP.BREG.ML.PC.CS
## 6247                               FB.FCP.BREG.ML.PC.MS
## 6248                               FB.FCP.BREG.ML.PC.RO
## 6249                                  FB.FCP.BREG.MS.DC
## 6250                               FB.FCP.BREG.PR.BU.ND
## 6251                               FB.FCP.BREG.PR.DI.SC
## 6252                               FB.FCP.BREG.PR.EF.AC
## 6253                               FB.FCP.BREG.PR.EF.RP
## 6254                               FB.FCP.BREG.PR.EP.AC
## 6255                               FB.FCP.BREG.PR.TC.RC
## 6256                               FB.FCP.BREG.PR.TC.RL
## 6257                               FB.FCP.BREG.PR.TC.UF
## 6258                                  FB.FCP.DISR.AS.AD
## 6259                                  FB.FCP.DISR.AS.AN
## 6260                                  FB.FCP.DISR.AS.BM
## 6261                                  FB.FCP.DISR.AS.BO
## 6262                                  FB.FCP.DISR.AS.CI
## 6263                                  FB.FCP.DISR.AS.CT
## 6264                                  FB.FCP.DISR.AS.DC
## 6265                                  FB.FCP.DISR.AS.FA
## 6266                                  FB.FCP.DISR.AS.FC
## 6267                                  FB.FCP.DISR.AS.FG
## 6268                                  FB.FCP.DISR.AS.FI
## 6269                                  FB.FCP.DISR.AS.FM
## 6270                                  FB.FCP.DISR.AS.FO
## 6271                               FB.FCP.DISR.AS.IC.AG
## 6272                               FB.FCP.DISR.AS.IC.AT
## 6273                               FB.FCP.DISR.AS.IC.BL
## 6274                               FB.FCP.DISR.AS.IC.CA
## 6275                               FB.FCP.DISR.AS.IC.CC
## 6276                               FB.FCP.DISR.AS.IC.CL
## 6277                               FB.FCP.DISR.AS.IC.DA
## 6278                               FB.FCP.DISR.AS.IC.DC
## 6279                               FB.FCP.DISR.AS.IC.EC
## 6280                               FB.FCP.DISR.AS.IC.EM
## 6281                               FB.FCP.DISR.AS.IC.FD
## 6282                               FB.FCP.DISR.AS.IC.HL
## 6283                               FB.FCP.DISR.AS.IC.LI
## 6284                               FB.FCP.DISR.AS.IC.ML
## 6285                               FB.FCP.DISR.AS.IC.NI
## 6286                               FB.FCP.DISR.AS.IC.OT
## 6287                               FB.FCP.DISR.AS.IC.PC
## 6288                               FB.FCP.DISR.AS.IC.UC
## 6289                               FB.FCP.DISR.AS.IC.UI
## 6290                               FB.FCP.DISR.AS.IC.UT
## 6291                                  FB.FCP.DISR.AS.IR
## 6292                                  FB.FCP.DISR.AS.MI
## 6293                                  FB.FCP.DISR.AS.MO
## 6294                                  FB.FCP.DISR.AS.PS
## 6295                                  FB.FCP.DISR.AS.RS
## 6296                                  FB.FCP.DISR.AS.RT
## 6297                                  FB.FCP.DISR.AS.SE
## 6298                                  FB.FCP.DISR.AS.VI
## 6299                                  FB.FCP.DISR.AS.WR
## 6300                                  FB.FCP.DISR.CH.AC
## 6301                                  FB.FCP.DISR.CH.DU
## 6302                                  FB.FCP.DISR.CH.EM
## 6303                                  FB.FCP.DISR.CH.IP
## 6304                                  FB.FCP.DISR.CH.RG
## 6305                                  FB.FCP.DISR.CH.RK
## 6306                                  FB.FCP.DISR.CH.ST
## 6307                                  FB.FCP.DISR.CH.TR
## 6308                               FB.FCP.INST.CB.DR.AF
## 6309                               FB.FCP.INST.CB.DR.LL
## 6310                               FB.FCP.INST.CB.DR.PL
## 6311                               FB.FCP.INST.CB.DR.RR
## 6312                               FB.FCP.INST.CB.DS.AS
## 6313                               FB.FCP.INST.CB.DS.CS
## 6314                               FB.FCP.INST.CB.DS.PS
## 6315                               FB.FCP.INST.CB.DS.SS
## 6316                               FB.FCP.INST.CB.DS.UR
## 6317                               FB.FCP.INST.CB.PD.CF
## 6318                               FB.FCP.INST.CB.PD.CM
## 6319                               FB.FCP.INST.CB.PD.DI
## 6320                               FB.FCP.INST.CB.PD.ER
## 6321                               FB.FCP.INST.CB.PD.FP
## 6322                               FB.FCP.INST.CB.PD.MB
## 6323                               FB.FCP.INST.CB.PD.MF
## 6324                               FB.FCP.INST.CB.PD.OF
## 6325                               FB.FCP.INST.CB.PD.RI
## 6326                               FB.FCP.INST.CB.PD.SW
## 6327                               FB.FCP.INST.CB.SF.AS
## 6328                                  FB.FCP.INST.EP.IF
## 6329                                  FB.FCP.INST.EP.IN
## 6330                                  FB.FCP.INST.EP.IS
## 6331                                  FB.FCP.INST.EP.IW
## 6332                                  FB.FCP.INST.EP.RF
## 6333                                  FB.FCP.INST.EP.RL
## 6334                                  FB.FCP.INST.EP.WA
## 6335                               FB.FCP.INST.ES.AF.10
## 6336                               FB.FCP.INST.ES.BF.2K
## 6337                               FB.FCP.INST.ES.BW.01
## 6338                               FB.FCP.INST.ES.WH.EN
## 6339                               FB.FCP.INST.FC.SF.AS
## 6340                               FB.FCP.INST.MC.SF.AS
## 6341                               FB.FCP.INST.NB.SF.AS
## 6342                               FB.FCP.INST.NS.BW.LC
## 6343                               FB.FCP.INST.NS.BW.XL
## 6344                               FB.FCP.INST.NS.HW.MY
## 6345                               FB.FCP.INST.NS.LS.XP
## 6346                               FB.FCP.INST.NS.MT.CM
## 6347                               FB.FCP.INST.OB.SF.AS
## 6348                               FB.FCP.INST.OD.SF.AS
## 6349                               FB.FCP.INST.SA.MA.CH
## 6350                               FB.FCP.INST.SA.MA.EI
## 6351                               FB.FCP.INST.SA.MA.FE
## 6352                               FB.FCP.INST.SA.MA.II
## 6353                               FB.FCP.INST.SA.MA.IR
## 6354                               FB.FCP.INST.SA.MA.MM
## 6355                               FB.FCP.INST.SA.MA.MR
## 6356                               FB.FCP.INST.SA.MA.MS
## 6357                               FB.FCP.INST.SA.MA.NC
## 6358                               FB.FCP.INST.SA.MA.RF
## 6359                               FB.FCP.INST.SA.MA.TR
## 6360                               FB.FCP.INST.SI.SF.AS
## 6361                               FB.FCP.INST.ST.RS.DP
## 6362                               FB.FCP.INST.ST.RS.GP
## 6363                               FB.FCP.INST.ST.RS.IA
## 6364                               FB.FCP.INST.ST.RS.IS
## 6365                               FB.FCP.INST.ST.RS.SH
## 6366                               FB.FCP.INST.ST.RS.WT
## 6367                               FB.FCP.INST.ST.UA.DF
## 6368                               FB.FCP.LEGL.FL.SA.EX
## 6369                               FB.FCP.LEGL.FR.CP.EX
## 6370                               FB.FCP.LEGL.GL.EF.EX
## 6371                               FB.FCP.LEGL.GL.NF.EX
## 6372                               FB.FCP.LEGL.NP.NF.NE
## 6373                               FB.FCP.LEGL.PR.SA.EX
## 6374                               FB.FCP.LEGL.SL.PP.EX
## 6375                                     FB.FIN.INFO.XQ
## 6376                               FB.INC.BNKG.AC.SC.MC
## 6377                               FB.INC.BNKG.AC.SC.MM
## 6378                               FB.INC.BNKG.AC.SC.MO
## 6379                               FB.INC.BNKG.AC.SC.MX
## 6380                               FB.INC.BNKG.AC.SC.NC
## 6381                               FB.INC.BNKG.AC.SC.NL
## 6382                               FB.INC.BNKG.AC.SC.OF
## 6383                               FB.INC.EMNY.NB.IN.PM
## 6384                               FB.INC.EMNY.NB.IP.NP
## 6385                               FB.INC.EMNY.NB.PU.RR
## 6386                               FB.INC.EMNY.NB.SP.PM
## 6387                               FB.INC.EMNY.SF.TA.CB
## 6388                               FB.INC.EMNY.SF.TA.EA
## 6389                               FB.INC.EMNY.SF.TA.ND
## 6390                               FB.INC.EMNY.SF.TA.OT
## 6391                               FB.INC.EMNY.SF.TA.RA
## 6392                               FB.INC.EMNY.SF.TA.TA
## 6393                               FB.INC.EMNY.SP.IF.AM
## 6394                               FB.INC.EMNY.SP.IF.AO
## 6395                               FB.INC.EMNY.SP.IF.NR
## 6396                               FB.INC.EMNY.SP.IF.SM
## 6397                               FB.INC.EMNY.SP.IF.WH
## 6398                               FB.INC.INST.CB.AU.AR
## 6399                               FB.INC.INST.CB.AU.NR
## 6400                               FB.INC.INST.CB.AU.SR
## 6401                               FB.INC.INST.CB.AU.WR
## 6402                               FB.INC.INST.CB.CD.SE
## 6403                              FB.INC.INST.CB.CRB.CR
## 6404                               FB.INC.INST.CB.LN.AL
## 6405                               FB.INC.INST.CB.LN.NL
## 6406                               FB.INC.INST.CB.LN.SL
## 6407                               FB.INC.INST.CB.LN.WL
## 6408                               FB.INC.INST.CB.LT.NF
## 6409                               FB.INC.INST.CB.LT.NI
## 6410                               FB.INC.INST.CB.LT.OE
## 6411                               FB.INC.INST.CB.LT.SM
## 6412                               FB.INC.INST.CB.TP.LI
## 6413                               FB.INC.INST.FC.AU.AR
## 6414                               FB.INC.INST.FC.AU.NR
## 6415                               FB.INC.INST.FC.AU.SR
## 6416                               FB.INC.INST.FC.AU.WR
## 6417                               FB.INC.INST.FC.CD.SE
## 6418                              FB.INC.INST.FC.CRB.CR
## 6419                               FB.INC.INST.FC.LN.AL
## 6420                               FB.INC.INST.FC.LN.NL
## 6421                               FB.INC.INST.FC.LN.SL
## 6422                               FB.INC.INST.FC.LN.WL
## 6423                               FB.INC.INST.FC.LT.NF
## 6424                               FB.INC.INST.FC.LT.NI
## 6425                               FB.INC.INST.FC.LT.OE
## 6426                               FB.INC.INST.FC.LT.SM
## 6427                               FB.INC.INST.FC.TP.LI
## 6428                               FB.INC.INST.FP.AU.CR
## 6429                               FB.INC.INST.FP.AU.LR
## 6430                               FB.INC.INST.FP.AU.OR
## 6431                                  FB.INC.INST.FW.CB
## 6432                                  FB.INC.INST.FW.FC
## 6433                                  FB.INC.INST.FW.MC
## 6434                                  FB.INC.INST.FW.NB
## 6435                                  FB.INC.INST.FW.OB
## 6436                                  FB.INC.INST.FW.OD
## 6437                               FB.INC.INST.MC.AU.AR
## 6438                               FB.INC.INST.MC.AU.NR
## 6439                               FB.INC.INST.MC.AU.SR
## 6440                               FB.INC.INST.MC.AU.WR
## 6441                              FB.INC.INST.MC.CRB.CR
## 6442                               FB.INC.INST.MC.LN.AL
## 6443                               FB.INC.INST.MC.LN.NL
## 6444                               FB.INC.INST.MC.LN.SL
## 6445                               FB.INC.INST.MC.LN.WL
## 6446                               FB.INC.INST.MC.TP.LI
## 6447                               FB.INC.INST.NB.AU.AR
## 6448                               FB.INC.INST.NB.AU.NR
## 6449                               FB.INC.INST.NB.AU.SR
## 6450                               FB.INC.INST.NB.AU.WR
## 6451                              FB.INC.INST.NB.CRB.CR
## 6452                               FB.INC.INST.NB.TP.LI
## 6453                               FB.INC.INST.OB.AU.AR
## 6454                               FB.INC.INST.OB.AU.NR
## 6455                               FB.INC.INST.OB.AU.SR
## 6456                               FB.INC.INST.OB.AU.WR
## 6457                               FB.INC.INST.OB.CD.SE
## 6458                              FB.INC.INST.OB.CRB.CR
## 6459                               FB.INC.INST.OB.LN.AL
## 6460                               FB.INC.INST.OB.LN.NL
## 6461                               FB.INC.INST.OB.LN.SL
## 6462                               FB.INC.INST.OB.LN.WL
## 6463                               FB.INC.INST.OB.LT.NF
## 6464                               FB.INC.INST.OB.LT.NI
## 6465                               FB.INC.INST.OB.LT.OE
## 6466                               FB.INC.INST.OB.LT.SM
## 6467                               FB.INC.INST.OB.TP.LI
## 6468                               FB.INC.INST.OD.AU.AR
## 6469                               FB.INC.INST.OD.AU.NR
## 6470                               FB.INC.INST.OD.AU.SR
## 6471                               FB.INC.INST.OD.AU.WR
## 6472                               FB.INC.INST.OD.CD.SE
## 6473                              FB.INC.INST.OD.CRB.CR
## 6474                               FB.INC.INST.OD.LN.AL
## 6475                               FB.INC.INST.OD.LN.NL
## 6476                               FB.INC.INST.OD.LN.SL
## 6477                               FB.INC.INST.OD.LN.WL
## 6478                               FB.INC.INST.OD.LT.NF
## 6479                               FB.INC.INST.OD.LT.NI
## 6480                               FB.INC.INST.OD.LT.OE
## 6481                               FB.INC.INST.OD.LT.SM
## 6482                               FB.INC.INST.OD.TP.LI
## 6483                               FB.INC.INST.PA.CB.AG
## 6484                               FB.INC.INST.PA.CB.CA
## 6485                               FB.INC.INST.PA.CB.EM
## 6486                               FB.INC.INST.PA.CB.IN
## 6487                               FB.INC.INST.PA.CB.PC
## 6488                               FB.INC.INST.PA.CB.PN
## 6489                               FB.INC.INST.PA.CB.TP
## 6490                               FB.INC.INST.PA.FC.AG
## 6491                               FB.INC.INST.PA.FC.CA
## 6492                               FB.INC.INST.PA.FC.EM
## 6493                               FB.INC.INST.PA.FC.IN
## 6494                               FB.INC.INST.PA.FC.PC
## 6495                               FB.INC.INST.PA.FC.PN
## 6496                               FB.INC.INST.PA.FC.TP
## 6497                               FB.INC.INST.PA.MC.AG
## 6498                               FB.INC.INST.PA.MC.CA
## 6499                               FB.INC.INST.PA.MC.EM
## 6500                               FB.INC.INST.PA.MC.IN
## 6501                               FB.INC.INST.PA.MC.PC
## 6502                               FB.INC.INST.PA.MC.PN
## 6503                               FB.INC.INST.PA.MC.TP
## 6504                               FB.INC.INST.PA.NB.AG
## 6505                               FB.INC.INST.PA.NB.CA
## 6506                               FB.INC.INST.PA.NB.EM
## 6507                               FB.INC.INST.PA.NB.IN
## 6508                               FB.INC.INST.PA.NB.PC
## 6509                               FB.INC.INST.PA.NB.PN
## 6510                               FB.INC.INST.PA.NB.TP
## 6511                               FB.INC.INST.PA.OB.AG
## 6512                               FB.INC.INST.PA.OB.CA
## 6513                               FB.INC.INST.PA.OB.EM
## 6514                               FB.INC.INST.PA.OB.IN
## 6515                               FB.INC.INST.PA.OB.PC
## 6516                               FB.INC.INST.PA.OB.PN
## 6517                               FB.INC.INST.PA.OB.TP
## 6518                               FB.INC.INST.PA.OD.AG
## 6519                               FB.INC.INST.PA.OD.CA
## 6520                               FB.INC.INST.PA.OD.EM
## 6521                               FB.INC.INST.PA.OD.IN
## 6522                               FB.INC.INST.PA.OD.PC
## 6523                               FB.INC.INST.PA.OD.PN
## 6524                               FB.INC.INST.PA.OD.TP
## 6525                               FB.INC.INST.SU.MN.NB
## 6526                               FB.INC.INST.TP.CB.ID
## 6527                               FB.INC.INST.TP.CB.LA
## 6528                               FB.INC.INST.TP.CB.OA
## 6529                               FB.INC.INST.TP.CB.RD
## 6530                               FB.INC.INST.TP.FC.ID
## 6531                               FB.INC.INST.TP.FC.LA
## 6532                               FB.INC.INST.TP.FC.OA
## 6533                               FB.INC.INST.TP.FC.RD
## 6534                               FB.INC.INST.TP.MC.ID
## 6535                               FB.INC.INST.TP.MC.LA
## 6536                               FB.INC.INST.TP.MC.OA
## 6537                               FB.INC.INST.TP.MC.RD
## 6538                               FB.INC.INST.TP.NB.ID
## 6539                               FB.INC.INST.TP.NB.LA
## 6540                               FB.INC.INST.TP.NB.OA
## 6541                               FB.INC.INST.TP.NB.RD
## 6542                               FB.INC.INST.TP.OB.ID
## 6543                               FB.INC.INST.TP.OB.LA
## 6544                               FB.INC.INST.TP.OB.OA
## 6545                               FB.INC.INST.TP.OB.RD
## 6546                               FB.INC.INST.TP.OD.ID
## 6547                               FB.INC.INST.TP.OD.LA
## 6548                               FB.INC.INST.TP.OD.OA
## 6549                               FB.INC.INST.TP.OD.RD
## 6550                                  FB.INC.INST.TP.RA
## 6551                                  FB.INC.LEGL.DF.MC
## 6552                                  FB.INC.LEGL.DF.MF
## 6553                                  FB.INC.LEGL.DF.MS
## 6554                                  FB.INC.NSTR.FC.DV
## 6555                                  FB.INC.NSTR.FC.LN
## 6556                                  FB.INC.NSTR.FI.DV
## 6557                                  FB.INC.NSTR.FI.LN
## 6558                               FB.INC.NSTR.GF.FI.DV
## 6559                               FB.INC.NSTR.GF.FI.LN
## 6560                                  FB.INC.NSTR.MF.DV
## 6561                                  FB.INC.NSTR.MF.LN
## 6562                               FB.INC.NSTR.ND.FI.DV
## 6563                               FB.INC.NSTR.ND.FI.LN
## 6564                               FB.INC.POLI.FI.DT.BP
## 6565                               FB.INC.POLI.FI.GT.FA
## 6566                                  FB.INC.POLI.FI.PL
## 6567                                  FB.INC.POLI.FI.RE
## 6568                                  FB.INC.POLI.FI.TI
## 6569                                  FB.INC.SURV.AF.FR
## 6570                                  FB.INC.SURV.AF.HH
## 6571                                  FB.LBL.DDPT.CB.P3
## 6572                                  FB.LBL.DDPT.CO.P3
## 6573                                  FB.LBL.DDPT.MF.P3
## 6574                                     FB.LBL.DDPT.P3
## 6575                                  FB.LBL.DDPT.SF.P3
## 6576                                     FB.POS.TOTL.P5
## 6577                                     FC.XPD.ADMN.CR
## 6578                                      FC.XPD.AGR.CR
## 6579                                     FC.XPD.ECON.CR
## 6580                                      FC.XPD.EDU.CR
## 6581                                     FC.XPD.ENVR.CR
## 6582                                       FC.XPD.HE.CR
## 6583                                     FC.XPD.HOUS.CR
## 6584                                     FC.XPD.INFR.CR
## 6585                                     FC.XPD.PROT.CR
## 6586                                     FC.XPD.PUBL.CR
## 6587                                     FC.XPD.RELG.CR
## 6588                                     FC.XPD.TOUR.CR
## 6589                                  FD.AST.PRVT.GD.ZS
## 6590                                  FD.RES.LIQU.AS.ZS
## 6591                                     FI.RES.GOLD.CD
## 6592                                  FI.RES.GOLD.CD.WB
## 6593                                     FI.RES.TOTL.CD
## 6594                                  FI.RES.TOTL.CD.WB
## 6595                                  FI.RES.TOTL.CD.ZS
## 6596                                  FI.RES.TOTL.DT.ZS
## 6597                                     FI.RES.TOTL.MO
## 6598                                  FI.RES.TOTL.MO.WB
## 6599                                     FI.RES.XGLD.CD
## 6600                                           fin1.t.a
## 6601                                         fin1.t.a.1
## 6602                                        fin1.t.a.10
## 6603                                        fin1.t.a.11
## 6604                                         fin1.t.a.2
## 6605                                         fin1.t.a.3
## 6606                                         fin1.t.a.4
## 6607                                         fin1.t.a.5
## 6608                                         fin1.t.a.6
## 6609                                         fin1.t.a.7
## 6610                                         fin1.t.a.8
## 6611                                         fin1.t.a.9
## 6612                                        fin10.t.a.s
## 6613                                           fin11a.a
## 6614                                         fin11a.a.s
## 6615                                           fin11b.a
## 6616                                         fin11b.a.s
## 6617                                           fin11c.a
## 6618                                         fin11c.a.s
## 6619                                           fin11d.a
## 6620                                         fin11d.a.s
## 6621                                           fin11e.a
## 6622                                         fin11e.a.s
## 6623                                           fin11f.a
## 6624                                         fin11f.a.s
## 6625                                           fin11g.a
## 6626                                         fin11g.a.s
## 6627                                           fin11h.a
## 6628                                         fin11h.a.s
## 6629                                            fin11q1
## 6630                                            fin11q2
## 6631                                    fin13a.t.14.a.s
## 6632                                    fin13b.t.14.a.s
## 6633                                           fin14a.a
## 6634                                         fin14a.a.1
## 6635                                        fin14a.a.10
## 6636                                        fin14a.a.11
## 6637                                         fin14a.a.2
## 6638                                         fin14a.a.3
## 6639                                         fin14a.a.4
## 6640                                         fin14a.a.5
## 6641                                         fin14a.a.6
## 6642                                         fin14a.a.7
## 6643                                         fin14a.a.8
## 6644                                         fin14a.a.9
## 6645                                      fin14abca.t.d
## 6646                                    fin14abca.t.d.1
## 6647                                   fin14abca.t.d.10
## 6648                                   fin14abca.t.d.11
## 6649                                    fin14abca.t.d.2
## 6650                                    fin14abca.t.d.3
## 6651                                    fin14abca.t.d.4
## 6652                                    fin14abca.t.d.5
## 6653                                    fin14abca.t.d.6
## 6654                                    fin14abca.t.d.7
## 6655                                    fin14abca.t.d.8
## 6656                                    fin14abca.t.d.9
## 6657                                           fin14b.a
## 6658                                         fin14b.a.1
## 6659                                        fin14b.a.10
## 6660                                        fin14b.a.11
## 6661                                         fin14b.a.2
## 6662                                         fin14b.a.3
## 6663                                         fin14b.a.4
## 6664                                         fin14b.a.5
## 6665                                         fin14b.a.6
## 6666                                         fin14b.a.7
## 6667                                         fin14b.a.8
## 6668                                         fin14b.a.9
## 6669                                        fin14ca.a.s
## 6670                                        fin14cb.a.s
## 6671                                            fin14q1
## 6672                                            fin14q2
## 6673                                          fin15.t.a
## 6674                                        fin15.t.a.1
## 6675                                       fin15.t.a.10
## 6676                                       fin15.t.a.11
## 6677                                        fin15.t.a.2
## 6678                                        fin15.t.a.3
## 6679                                        fin15.t.a.4
## 6680                                        fin15.t.a.5
## 6681                                        fin15.t.a.6
## 6682                                        fin15.t.a.7
## 6683                                        fin15.t.a.8
## 6684                                        fin15.t.a.9
## 6685                                            fin15q1
## 6686                                            fin15q2
## 6687                                          fin16.t.a
## 6688                                        fin16.t.a.1
## 6689                                       fin16.t.a.10
## 6690                                       fin16.t.a.11
## 6691                                        fin16.t.a.2
## 6692                                        fin16.t.a.3
## 6693                                        fin16.t.a.4
## 6694                                        fin16.t.a.5
## 6695                                        fin16.t.a.6
## 6696                                        fin16.t.a.7
## 6697                                        fin16.t.a.8
## 6698                                        fin16.t.a.9
## 6699                                          fin16_t_a
## 6700                                        fin16_t_a_1
## 6701                                        fin16_t_a_2
## 6702                                        fin16_t_a_3
## 6703                                        fin16_t_a_4
## 6704                                        fin16_t_a_5
## 6705                                        fin16_t_a_6
## 6706                                        fin16_t_a_7
## 6707                                         fin17a.t.a
## 6708                                       fin17a.t.a.1
## 6709                                      fin17a.t.a.10
## 6710                                      fin17a.t.a.11
## 6711                                       fin17a.t.a.2
## 6712                                       fin17a.t.a.3
## 6713                                       fin17a.t.a.4
## 6714                                       fin17a.t.a.5
## 6715                                       fin17a.t.a.6
## 6716                                       fin17a.t.a.7
## 6717                                       fin17a.t.a.8
## 6718                                       fin17a.t.a.9
## 6719                                         fin17a_t_a
## 6720                                       fin17a_t_a_1
## 6721                                       fin17a_t_a_2
## 6722                                       fin17a_t_a_3
## 6723                                       fin17a_t_a_4
## 6724                                       fin17a_t_a_5
## 6725                                       fin17a_t_a_6
## 6726                                       fin17a_t_a_7
## 6727                                         fin17b.t.a
## 6728                                       fin17b.t.a.1
## 6729                                      fin17b.t.a.10
## 6730                                      fin17b.t.a.11
## 6731                                       fin17b.t.a.2
## 6732                                       fin17b.t.a.3
## 6733                                       fin17b.t.a.4
## 6734                                       fin17b.t.a.5
## 6735                                       fin17b.t.a.6
## 6736                                       fin17b.t.a.7
## 6737                                       fin17b.t.a.8
## 6738                                       fin17b.t.a.9
## 6739                                        fin17c.14.a
## 6740                                      fin17c.14.a.1
## 6741                                     fin17c.14.a.10
## 6742                                     fin17c.14.a.11
## 6743                                      fin17c.14.a.2
## 6744                                      fin17c.14.a.3
## 6745                                      fin17c.14.a.4
## 6746                                      fin17c.14.a.5
## 6747                                      fin17c.14.a.6
## 6748                                      fin17c.14.a.7
## 6749                                      fin17c.14.a.8
## 6750                                      fin17c.14.a.9
## 6751                                          fin18.t.d
## 6752                                        fin18.t.d.1
## 6753                                       fin18.t.d.10
## 6754                                       fin18.t.d.11
## 6755                                        fin18.t.d.2
## 6756                                        fin18.t.d.3
## 6757                                        fin18.t.d.4
## 6758                                        fin18.t.d.5
## 6759                                        fin18.t.d.6
## 6760                                        fin18.t.d.7
## 6761                                        fin18.t.d.8
## 6762                                        fin18.t.d.9
## 6763                                          fin19.t.a
## 6764                                        fin19.t.a.1
## 6765                                       fin19.t.a.10
## 6766                                       fin19.t.a.11
## 6767                                        fin19.t.a.2
## 6768                                        fin19.t.a.3
## 6769                                        fin19.t.a.4
## 6770                                        fin19.t.a.5
## 6771                                        fin19.t.a.6
## 6772                                        fin19.t.a.7
## 6773                                        fin19.t.a.8
## 6774                                        fin19.t.a.9
## 6775                                           fin2.t.a
## 6776                                         fin2.t.a.1
## 6777                                        fin2.t.a.10
## 6778                                        fin2.t.a.11
## 6779                                         fin2.t.a.2
## 6780                                         fin2.t.a.3
## 6781                                         fin2.t.a.4
## 6782                                         fin2.t.a.5
## 6783                                         fin2.t.a.6
## 6784                                         fin2.t.a.7
## 6785                                         fin2.t.a.8
## 6786                                         fin2.t.a.9
## 6787                                         fin20b.t.a
## 6788                                       fin20b.t.a.1
## 6789                                      fin20b.t.a.10
## 6790                                      fin20b.t.a.11
## 6791                                       fin20b.t.a.2
## 6792                                       fin20b.t.a.3
## 6793                                       fin20b.t.a.4
## 6794                                       fin20b.t.a.5
## 6795                                       fin20b.t.a.6
## 6796                                       fin20b.t.a.7
## 6797                                       fin20b.t.a.8
## 6798                                       fin20b.t.a.9
## 6799                                          fin21.t.a
## 6800                                        fin21.t.a.1
## 6801                                       fin21.t.a.10
## 6802                                       fin21.t.a.11
## 6803                                        fin21.t.a.2
## 6804                                        fin21.t.a.3
## 6805                                        fin21.t.a.4
## 6806                                        fin21.t.a.5
## 6807                                        fin21.t.a.6
## 6808                                        fin21.t.a.7
## 6809                                        fin21.t.a.8
## 6810                                        fin21.t.a.9
## 6811                                      fin21b.t.14.a
## 6812                                    fin21b.t.14.a.1
## 6813                                   fin21b.t.14.a.10
## 6814                                   fin21b.t.14.a.11
## 6815                                    fin21b.t.14.a.2
## 6816                                    fin21b.t.14.a.3
## 6817                                    fin21b.t.14.a.4
## 6818                                    fin21b.t.14.a.5
## 6819                                    fin21b.t.14.a.6
## 6820                                    fin21b.t.14.a.7
## 6821                                    fin21b.t.14.a.8
## 6822                                    fin21b.t.14.a.9
## 6823                                        fin22a.14.a
## 6824                                      fin22a.14.a.1
## 6825                                     fin22a.14.a.10
## 6826                                     fin22a.14.a.11
## 6827                                      fin22a.14.a.2
## 6828                                      fin22a.14.a.3
## 6829                                      fin22a.14.a.4
## 6830                                      fin22a.14.a.5
## 6831                                      fin22a.14.a.6
## 6832                                      fin22a.14.a.7
## 6833                                      fin22a.14.a.8
## 6834                                      fin22a.14.a.9
## 6835                                         fin22a.t.a
## 6836                                       fin22a.t.a.1
## 6837                                      fin22a.t.a.10
## 6838                                      fin22a.t.a.11
## 6839                                       fin22a.t.a.2
## 6840                                       fin22a.t.a.3
## 6841                                       fin22a.t.a.4
## 6842                                       fin22a.t.a.5
## 6843                                       fin22a.t.a.6
## 6844                                       fin22a.t.a.7
## 6845                                       fin22a.t.a.8
## 6846                                       fin22a.t.a.9
## 6847                                         fin22a.t.d
## 6848                                       fin22a.t.d.1
## 6849                                      fin22a.t.d.10
## 6850                                      fin22a.t.d.11
## 6851                                       fin22a.t.d.2
## 6852                                       fin22a.t.d.3
## 6853                                       fin22a.t.d.4
## 6854                                       fin22a.t.d.5
## 6855                                       fin22a.t.d.6
## 6856                                       fin22a.t.d.7
## 6857                                       fin22a.t.d.8
## 6858                                       fin22a.t.d.9
## 6859                                         fin22a_t_d
## 6860                                       fin22a_t_d_1
## 6861                                       fin22a_t_d_2
## 6862                                       fin22a_t_d_3
## 6863                                       fin22a_t_d_4
## 6864                                       fin22a_t_d_5
## 6865                                       fin22a_t_d_6
## 6866                                       fin22a_t_d_7
## 6867                                         fin22b.t.a
## 6868                                       fin22b.t.a.1
## 6869                                      fin22b.t.a.10
## 6870                                      fin22b.t.a.11
## 6871                                       fin22b.t.a.2
## 6872                                       fin22b.t.a.3
## 6873                                       fin22b.t.a.4
## 6874                                       fin22b.t.a.5
## 6875                                       fin22b.t.a.6
## 6876                                       fin22b.t.a.7
## 6877                                       fin22b.t.a.8
## 6878                                       fin22b.t.a.9
## 6879                                           fin22c.a
## 6880                                         fin22c.a.1
## 6881                                        fin22c.a.10
## 6882                                        fin22c.a.11
## 6883                                         fin22c.a.2
## 6884                                         fin22c.a.3
## 6885                                         fin22c.a.4
## 6886                                         fin22c.a.5
## 6887                                         fin22c.a.6
## 6888                                         fin22c.a.7
## 6889                                         fin22c.a.8
## 6890                                         fin22c.a.9
## 6891                                          fin23.t.d
## 6892                                        fin23.t.d.1
## 6893                                       fin23.t.d.10
## 6894                                       fin23.t.d.11
## 6895                                        fin23.t.d.2
## 6896                                        fin23.t.d.3
## 6897                                        fin23.t.d.4
## 6898                                        fin23.t.d.5
## 6899                                        fin23.t.d.6
## 6900                                        fin23.t.d.7
## 6901                                        fin23.t.d.8
## 6902                                        fin23.t.d.9
## 6903                                         fin24a.t.a
## 6904                                       fin24a.t.a.1
## 6905                                      fin24a.t.a.10
## 6906                                      fin24a.t.a.11
## 6907                                       fin24a.t.a.2
## 6908                                       fin24a.t.a.3
## 6909                                       fin24a.t.a.4
## 6910                                       fin24a.t.a.5
## 6911                                       fin24a.t.a.6
## 6912                                       fin24a.t.a.7
## 6913                                       fin24a.t.a.8
## 6914                                       fin24a.t.a.9
## 6915                                         fin24b.t.a
## 6916                                       fin24b.t.a.1
## 6917                                      fin24b.t.a.10
## 6918                                      fin24b.t.a.11
## 6919                                       fin24b.t.a.2
## 6920                                       fin24b.t.a.3
## 6921                                       fin24b.t.a.4
## 6922                                       fin24b.t.a.5
## 6923                                       fin24b.t.a.6
## 6924                                       fin24b.t.a.7
## 6925                                       fin24b.t.a.8
## 6926                                       fin24b.t.a.9
## 6927                                       fin25a.t.a.s
## 6928                                     fin25a.t.a.s.1
## 6929                                    fin25a.t.a.s.10
## 6930                                    fin25a.t.a.s.11
## 6931                                     fin25a.t.a.s.2
## 6932                                     fin25a.t.a.s.3
## 6933                                     fin25a.t.a.s.4
## 6934                                     fin25a.t.a.s.5
## 6935                                     fin25a.t.a.s.6
## 6936                                     fin25a.t.a.s.7
## 6937                                     fin25a.t.a.s.8
## 6938                                     fin25a.t.a.s.9
## 6939                                       fin25a_t_a_s
## 6940                                     fin25a_t_a_s_1
## 6941                                     fin25a_t_a_s_2
## 6942                                     fin25a_t_a_s_3
## 6943                                     fin25a_t_a_s_4
## 6944                                     fin25a_t_a_s_5
## 6945                                     fin25a_t_a_s_6
## 6946                                     fin25a_t_a_s_7
## 6947                                       fin25b.t.a.s
## 6948                                     fin25b.t.a.s.1
## 6949                                    fin25b.t.a.s.10
## 6950                                    fin25b.t.a.s.11
## 6951                                     fin25b.t.a.s.2
## 6952                                     fin25b.t.a.s.3
## 6953                                     fin25b.t.a.s.4
## 6954                                     fin25b.t.a.s.5
## 6955                                     fin25b.t.a.s.6
## 6956                                     fin25b.t.a.s.7
## 6957                                     fin25b.t.a.s.8
## 6958                                     fin25b.t.a.s.9
## 6959                                         fin25c.a.s
## 6960                                       fin25c.a.s.1
## 6961                                      fin25c.a.s.10
## 6962                                      fin25c.a.s.11
## 6963                                       fin25c.a.s.2
## 6964                                       fin25c.a.s.3
## 6965                                       fin25c.a.s.4
## 6966                                       fin25c.a.s.5
## 6967                                       fin25c.a.s.6
## 6968                                       fin25c.a.s.7
## 6969                                       fin25c.a.s.8
## 6970                                       fin25c.a.s.9
## 6971                                         fin25d.a.s
## 6972                                       fin25d.a.s.1
## 6973                                      fin25d.a.s.10
## 6974                                      fin25d.a.s.11
## 6975                                       fin25d.a.s.2
## 6976                                       fin25d.a.s.3
## 6977                                       fin25d.a.s.4
## 6978                                       fin25d.a.s.5
## 6979                                       fin25d.a.s.6
## 6980                                       fin25d.a.s.7
## 6981                                       fin25d.a.s.8
## 6982                                       fin25d.a.s.9
## 6983                                         fin25e.a.s
## 6984                                       fin25e.a.s.1
## 6985                                      fin25e.a.s.10
## 6986                                      fin25e.a.s.11
## 6987                                       fin25e.a.s.2
## 6988                                       fin25e.a.s.3
## 6989                                       fin25e.a.s.4
## 6990                                       fin25e.a.s.5
## 6991                                       fin25e.a.s.6
## 6992                                       fin25e.a.s.7
## 6993                                       fin25e.a.s.8
## 6994                                       fin25e.a.s.9
## 6995                                         fin25f.a.s
## 6996                                       fin25f.a.s.1
## 6997                                      fin25f.a.s.10
## 6998                                      fin25f.a.s.11
## 6999                                       fin25f.a.s.2
## 7000                                       fin25f.a.s.3
## 7001                                       fin25f.a.s.4
## 7002                                       fin25f.a.s.5
## 7003                                       fin25f.a.s.6
## 7004                                       fin25f.a.s.7
## 7005                                       fin25f.a.s.8
## 7006                                       fin25f.a.s.9
## 7007                                       fin26.28.t.a
## 7008                                     fin26.28.t.a.1
## 7009                                    fin26.28.t.a.10
## 7010                                    fin26.28.t.a.11
## 7011                                     fin26.28.t.a.2
## 7012                                     fin26.28.t.a.3
## 7013                                     fin26.28.t.a.4
## 7014                                     fin26.28.t.a.5
## 7015                                     fin26.28.t.a.6
## 7016                                     fin26.28.t.a.7
## 7017                                     fin26.28.t.a.8
## 7018                                     fin26.28.t.a.9
## 7019                                          fin26.t.a
## 7020                                        fin26.t.a.1
## 7021                                       fin26.t.a.10
## 7022                                       fin26.t.a.11
## 7023                                        fin26.t.a.2
## 7024                                        fin26.t.a.3
## 7025                                        fin26.t.a.4
## 7026                                        fin26.t.a.5
## 7027                                        fin26.t.a.6
## 7028                                        fin26.t.a.7
## 7029                                        fin26.t.a.8
## 7030                                        fin26.t.a.9
## 7031                                      fin27.29a.t.a
## 7032                                    fin27.29a.t.a.s
## 7033                                      fin27.29a.t.d
## 7034                                    fin27.29a.t.d.s
## 7035                                      fin27.29b.t.a
## 7036                                    fin27.29b.t.a.s
## 7037                                     fin27.29c1.t.d
## 7038                                   fin27.29c1.t.d.s
## 7039                                     fin27.29c2.t.a
## 7040                                   fin27.29c2.t.a.s
## 7041                                     fin27.29c2.t.d
## 7042                                   fin27.29c2.t.d.s
## 7043                                         fin27a.t.a
## 7044                                       fin27a.t.a.s
## 7045                                         fin27a.t.d
## 7046                                       fin27a.t.d.s
## 7047                                         fin27b.t.a
## 7048                                       fin27b.t.a.s
## 7049                                        fin27c1.t.d
## 7050                                      fin27c1.t.d.s
## 7051                                        fin27c2.t.a
## 7052                                      fin27c2.t.a.s
## 7053                                        fin27c2.t.d
## 7054                                      fin27c2.t.d.s
## 7055                                          fin28.t.a
## 7056                                        fin28.t.a.1
## 7057                                       fin28.t.a.10
## 7058                                       fin28.t.a.11
## 7059                                        fin28.t.a.2
## 7060                                        fin28.t.a.3
## 7061                                        fin28.t.a.4
## 7062                                        fin28.t.a.5
## 7063                                        fin28.t.a.6
## 7064                                        fin28.t.a.7
## 7065                                        fin28.t.a.8
## 7066                                        fin28.t.a.9
## 7067                                         fin29a.t.a
## 7068                                       fin29a.t.a.s
## 7069                                         fin29a.t.d
## 7070                                       fin29a.t.d.s
## 7071                                         fin29b.t.a
## 7072                                       fin29b.t.a.s
## 7073                                        fin29c1.t.d
## 7074                                      fin29c1.t.d.s
## 7075                                        fin29c2.t.a
## 7076                                      fin29c2.t.a.s
## 7077                                        fin29c2.t.d
## 7078                                      fin29c2.t.d.s
## 7079                                          fin30.t.a
## 7080                                        fin30.t.a.1
## 7081                                       fin30.t.a.10
## 7082                                       fin30.t.a.11
## 7083                                        fin30.t.a.2
## 7084                                        fin30.t.a.3
## 7085                                        fin30.t.a.4
## 7086                                        fin30.t.a.5
## 7087                                        fin30.t.a.6
## 7088                                        fin30.t.a.7
## 7089                                        fin30.t.a.8
## 7090                                        fin30.t.a.9
## 7091                                         fin31a.t.a
## 7092                                       fin31a.t.a.s
## 7093                                         fin31a.t.d
## 7094                                       fin31a.t.d.s
## 7095                                         fin31b.t.a
## 7096                                       fin31b.t.a.s
## 7097                                         fin31c.t.a
## 7098                                       fin31c.t.a.s
## 7099                                          fin32.t.a
## 7100                                        fin32.t.a.1
## 7101                                       fin32.t.a.10
## 7102                                       fin32.t.a.11
## 7103                                        fin32.t.a.2
## 7104                                        fin32.t.a.3
## 7105                                        fin32.t.a.4
## 7106                                        fin32.t.a.5
## 7107                                        fin32.t.a.6
## 7108                                        fin32.t.a.7
## 7109                                        fin32.t.a.8
## 7110                                        fin32.t.a.9
## 7111                                         fin33.14.a
## 7112                                       fin33.14.a.1
## 7113                                      fin33.14.a.10
## 7114                                      fin33.14.a.11
## 7115                                       fin33.14.a.2
## 7116                                       fin33.14.a.3
## 7117                                       fin33.14.a.4
## 7118                                       fin33.14.a.5
## 7119                                       fin33.14.a.6
## 7120                                       fin33.14.a.7
## 7121                                       fin33.14.a.8
## 7122                                       fin33.14.a.9
## 7123                                         fin33n.t.a
## 7124                                       fin33n.t.a.1
## 7125                                      fin33n.t.a.10
## 7126                                      fin33n.t.a.11
## 7127                                       fin33n.t.a.2
## 7128                                       fin33n.t.a.3
## 7129                                       fin33n.t.a.4
## 7130                                       fin33n.t.a.5
## 7131                                       fin33n.t.a.6
## 7132                                       fin33n.t.a.7
## 7133                                       fin33n.t.a.8
## 7134                                       fin33n.t.a.9
## 7135                                         fin33y.t.a
## 7136                                       fin33y.t.a.1
## 7137                                      fin33y.t.a.10
## 7138                                      fin33y.t.a.11
## 7139                                       fin33y.t.a.2
## 7140                                       fin33y.t.a.3
## 7141                                       fin33y.t.a.4
## 7142                                       fin33y.t.a.5
## 7143                                       fin33y.t.a.6
## 7144                                       fin33y.t.a.7
## 7145                                       fin33y.t.a.8
## 7146                                       fin33y.t.a.9
## 7147                                        fin34a.14.a
## 7148                                      fin34a.14.a.s
## 7149                                         fin34a.t.a
## 7150                                       fin34a.t.a.s
## 7151                                         fin34a.t.d
## 7152                                       fin34a.t.d.s
## 7153                                        fin34an.t.a
## 7154                                      fin34an.t.a.s
## 7155                                        fin34an.t.d
## 7156                                      fin34an.t.d.s
## 7157                                        fin34ay.t.a
## 7158                                      fin34ay.t.a.s
## 7159                                        fin34ay.t.d
## 7160                                      fin34ay.t.d.s
## 7161                                        fin34b.14.a
## 7162                                      fin34b.14.a.s
## 7163                                        fin34b.14.d
## 7164                                      fin34b.14.d.s
## 7165                                         fin34b.t.a
## 7166                                       fin34b.t.a.s
## 7167                                        fin34bn.t.a
## 7168                                      fin34bn.t.a.s
## 7169                                        fin34by.t.a
## 7170                                      fin34by.t.a.s
## 7171                                        fin34c.14.a
## 7172                                      fin34c.14.a.s
## 7173                                        fin34c2.t.a
## 7174                                      fin34c2.t.a.s
## 7175                                       fin34c2n.t.a
## 7176                                     fin34c2n.t.a.s
## 7177                                       fin34c2y.t.a
## 7178                                     fin34c2y.t.a.s
## 7179                                          fin36.t.a
## 7180                                        fin36.t.a.s
## 7181                                         fin36n.t.a
## 7182                                       fin36n.t.a.s
## 7183                                         fin36y.t.a
## 7184                                       fin36y.t.a.s
## 7185                                          fin37.t.a
## 7186                                        fin37.t.a.1
## 7187                                       fin37.t.a.10
## 7188                                       fin37.t.a.11
## 7189                                        fin37.t.a.2
## 7190                                        fin37.t.a.3
## 7191                                        fin37.t.a.4
## 7192                                        fin37.t.a.5
## 7193                                        fin37.t.a.6
## 7194                                        fin37.t.a.7
## 7195                                        fin37.t.a.8
## 7196                                        fin37.t.a.9
## 7197                                        fin38.39a.a
## 7198                                      fin38.39a.a.s
## 7199                                       fin38.39c1.a
## 7200                                     fin38.39c1.a.s
## 7201                                         fin38.41.d
## 7202                                       fin38.41.d.s
## 7203                                            fin38.a
## 7204                                          fin38.a.1
## 7205                                         fin38.a.10
## 7206                                         fin38.a.11
## 7207                                          fin38.a.2
## 7208                                          fin38.a.3
## 7209                                          fin38.a.4
## 7210                                          fin38.a.5
## 7211                                          fin38.a.6
## 7212                                          fin38.a.7
## 7213                                          fin38.a.8
## 7214                                          fin38.a.9
## 7215                                           fin39a.d
## 7216                                         fin39a.d.s
## 7217                                         fin39a.t.a
## 7218                                       fin39a.t.a.s
## 7219                                         fin39a.t.d
## 7220                                       fin39a.t.d.s
## 7221                                           fin39b.a
## 7222                                         fin39b.a.s
## 7223                                         fin39b.t.a
## 7224                                       fin39b.t.a.s
## 7225                                        fin39c1.t.a
## 7226                                      fin39c1.t.a.s
## 7227                                           fin4.t.a
## 7228                                           fin4.t.d
## 7229                                           fin4_t_d
## 7230                                          fin41.t.d
## 7231                                        fin41.t.d.s
## 7232                                          fin42.t.a
## 7233                                        fin42.t.a.1
## 7234                                       fin42.t.a.10
## 7235                                       fin42.t.a.11
## 7236                                        fin42.t.a.2
## 7237                                        fin42.t.a.3
## 7238                                        fin42.t.a.4
## 7239                                        fin42.t.a.5
## 7240                                        fin42.t.a.6
## 7241                                        fin42.t.a.7
## 7242                                        fin42.t.a.8
## 7243                                        fin42.t.a.9
## 7244                                         fin43a.t.a
## 7245                                       fin43a.t.a.s
## 7246                                         fin43a.t.d
## 7247                                       fin43a.t.d.s
## 7248                                         fin43b.t.a
## 7249                                       fin43b.t.a.s
## 7250                                        fin43c1.t.a
## 7251                                      fin43c1.t.a.s
## 7252                                            fin45.d
## 7253                                          fin45.d.s
## 7254                                            fin46.a
## 7255                                          fin46.a.1
## 7256                                         fin46.a.10
## 7257                                         fin46.a.11
## 7258                                          fin46.a.2
## 7259                                          fin46.a.3
## 7260                                          fin46.a.4
## 7261                                          fin46.a.5
## 7262                                          fin46.a.6
## 7263                                          fin46.a.7
## 7264                                          fin46.a.8
## 7265                                          fin46.a.9
## 7266                                           fin47a.a
## 7267                                         fin47a.a.s
## 7268                                           fin47a.t
## 7269                                         fin47a.t.s
## 7270                                           fin47b.t
## 7271                                         fin47b.t.s
## 7272                                          fin47c2.a
## 7273                                        fin47c2.a.s
## 7274                                            fin48.a
## 7275                                            fin48_a
## 7276                                          fin48_a_1
## 7277                                          fin48_a_2
## 7278                                          fin48_a_3
## 7279                                          fin48_a_4
## 7280                                          fin48_a_5
## 7281                                          fin48_a_6
## 7282                                          fin48_a_7
## 7283                                             fin5.a
## 7284                                           fin5.a.s
## 7285                                             fin5.d
## 7286                                           fin5.d.1
## 7287                                          fin5.d.10
## 7288                                          fin5.d.11
## 7289                                           fin5.d.2
## 7290                                           fin5.d.3
## 7291                                           fin5.d.4
## 7292                                           fin5.d.5
## 7293                                           fin5.d.6
## 7294                                           fin5.d.7
## 7295                                           fin5.d.8
## 7296                                           fin5.d.9
## 7297                                           fin5.d.s
## 7298                                             fin6.a
## 7299                                             fin6_a
## 7300                                           fin6_a_1
## 7301                                           fin6_a_2
## 7302                                           fin6_a_3
## 7303                                           fin6_a_4
## 7304                                           fin6_a_5
## 7305                                           fin6_a_6
## 7306                                           fin6_a_7
## 7307                                        fin65e.11.a
## 7308                                      fin65e.11.a.1
## 7309                                     fin65e.11.a.10
## 7310                                     fin65e.11.a.11
## 7311                                      fin65e.11.a.2
## 7312                                      fin65e.11.a.3
## 7313                                      fin65e.11.a.4
## 7314                                      fin65e.11.a.5
## 7315                                      fin65e.11.a.6
## 7316                                      fin65e.11.a.7
## 7317                                      fin65e.11.a.8
## 7318                                      fin65e.11.a.9
## 7319                                        fin68a.11.a
## 7320                                           fin7.t.a
## 7321                                         fin7.t.a.1
## 7322                                        fin7.t.a.10
## 7323                                        fin7.t.a.11
## 7324                                         fin7.t.a.2
## 7325                                         fin7.t.a.3
## 7326                                         fin7.t.a.4
## 7327                                         fin7.t.a.5
## 7328                                         fin7.t.a.6
## 7329                                         fin7.t.a.7
## 7330                                         fin7.t.a.8
## 7331                                         fin7.t.a.9
## 7332                                           fin8.t.a
## 7333                                         fin9.t.a.s
## 7334                                           fin9.t.d
## 7335                                         fin9.t.d.s
## 7336                                          fin9.t.d1
## 7337                                        fin9.t.d1.1
## 7338                                       fin9.t.d1.10
## 7339                                       fin9.t.d1.11
## 7340                                        fin9.t.d1.2
## 7341                                        fin9.t.d1.3
## 7342                                        fin9.t.d1.4
## 7343                                        fin9.t.d1.5
## 7344                                        fin9.t.d1.6
## 7345                                        fin9.t.d1.7
## 7346                                        fin9.t.d1.8
## 7347                                        fin9.t.d1.9
## 7348                                        fin9.t.d1.s
## 7349                                     fing2p.39a.t.d
## 7350                                   fing2p.39a.t.d.s
## 7351                                     fing2p.39b.t.d
## 7352                                   fing2p.39b.t.d.s
## 7353                                     fing2p.39c.t.d
## 7354                                   fing2p.39c.t.d.s
## 7355                                     fing2p.39d.t.d
## 7356                                   fing2p.39d.t.d.s
## 7357                                      fing2p.40.t.d
## 7358                                    fing2p.40.t.d.s
## 7359                                         fing2p.t.d
## 7360                                       fing2p.t.d.1
## 7361                                      fing2p.t.d.10
## 7362                                      fing2p.t.d.11
## 7363                                       fing2p.t.d.2
## 7364                                       fing2p.t.d.3
## 7365                                       fing2p.t.d.4
## 7366                                       fing2p.t.d.5
## 7367                                       fing2p.t.d.6
## 7368                                       fing2p.t.d.7
## 7369                                       fing2p.t.d.8
## 7370                                       fing2p.t.d.9
## 7371                                     FM.ASC.DOMO.CN
## 7372                                     FM.ASC.DOMS.CN
## 7373                                     FM.ASC.DOMS.ZS
## 7374                                     FM.ASC.GOVT.CN
## 7375                                     FM.ASC.GOVT.ZS
## 7376                                     FM.ASC.NCGV.CN
## 7377                                     FM.ASC.NFGD.CN
## 7378                                     FM.ASC.NFRG.CN
## 7379                                     FM.ASC.NFRG.ZS
## 7380                                     FM.ASC.OFFO.CN
## 7381                                     FM.ASC.OFIN.CN
## 7382                                     FM.ASC.PRVT.ZS
## 7383                                     FM.ASC.TOTP.CN
## 7384                                  FM.AST.CGOV.ZG.M3
## 7385                                     FM.AST.DOMO.CN
## 7386                                  FM.AST.DOMO.ZG.M3
## 7387                                     FM.AST.DOMS.CN
## 7388                                     FM.AST.GOVT.CN
## 7389                                  FM.AST.GOVT.CN.ZS
## 7390                                  FM.AST.GOVT.ZG.M2
## 7391                                     FM.AST.NCGV.CN
## 7392                                     FM.AST.NFGD.CN
## 7393                                     FM.AST.NFRG.CD
## 7394                                     FM.AST.NFRG.CN
## 7395                                     FM.AST.OFFO.CN
## 7396                                     FM.AST.OFIN.CN
## 7397                                     FM.AST.PRVT.CN
## 7398                                  FM.AST.PRVT.GD.ZS
## 7399                                  FM.AST.PRVT.ZG.M2
## 7400                                  FM.AST.PRVT.ZG.M3
## 7401                                     FM.AST.PUBL.CN
## 7402                                  FM.AST.PUBL.ZG.M2
## 7403                                     FM.AST.TOTP.CN
## 7404                                     FM.LBC.MQMY.CN
## 7405                                     FM.LBC.XMQM.CN
## 7406                                     FM.LBL.BMNY.CN
## 7407                                  FM.LBL.BMNY.GD.ZS
## 7408                                  FM.LBL.BMNY.IR.ZS
## 7409                                     FM.LBL.BMNY.ZG
## 7410                                     FM.LBL.DDPT.CN
## 7411                                     FM.LBL.MONY.CN
## 7412                                     FM.LBL.MQMY.CN
## 7413                                  FM.LBL.MQMY.CN.WB
## 7414                                  FM.LBL.MQMY.GD.ZS
## 7415                                 FM.LBL.MQMY.GDP.ZS
## 7416                                  FM.LBL.MQMY.IR.ZS
## 7417                                     FM.LBL.MQMY.XD
## 7418                                     FM.LBL.MQMY.ZG
## 7419                                     FM.LBL.NBNK.CN
## 7420                                     FM.LBL.QMNY.CN
## 7421                                  FM.LBL.QMNY.CN.WB
## 7422                                 FM.LBL.QMNY.GDP.ZS
## 7423                                 FM.LBL.SEIG.GDP.ZS
## 7424                                     FM.LBL.XMQM.CN
## 7425                                   FN.CRED.AGR.TOTL
## 7426                                   FN.CRED.BUS.TOTL
## 7427                                  FN.CRED.CNSP.TOTL
## 7428                                  FN.CRED.CNST.TOTL
## 7429                                  FN.CRED.INVS.TOTL
## 7430                                  FN.CRED.MINQ.TOTL
## 7431                                   FN.CRED.MNF.TOTL
## 7432                              FN.CRED.SRV.OTHR.TOTL
## 7433                              FN.CRED.SRV.SOCL.TOTL
## 7434                                  FN.CRED.TRAD.TOTL
## 7435                                  FN.CRED.TRAN.TOTL
## 7436                                   FN.CRED.UTL.TOTL
## 7437                                  FN.CRED.WCAP.TOTL
## 7438                                       FN.DPST.TOTL
## 7439                                        FN.INR.CBIR
## 7440                                   FN.LOAN.CBK.TOTL
## 7441                                        FP.CPI.TOTL
## 7442                                     FP.CPI.TOTL.ZG
## 7443                                        FP.FPI.TOTL
## 7444                                     FP.FPI.TOTL.ZG
## 7445                                        FP.WPI.TOTL
## 7446                                     FP.WPI.TOTL.ZG
## 7447                                        FR.INR.DPST
## 7448                                     FR.INR.DPST.DP
## 7449                                        FR.INR.GBND
## 7450                                        FR.INR.IMPL
## 7451                                        FR.INR.LEND
## 7452                                FR.INR.LEND.DPST.DF
## 7453                              FR.INR.LEND.LIBOR3.DF
## 7454                                        FR.INR.LNDP
## 7455                                        FR.INR.LNLB
## 7456                                        FR.INR.MMKT
## 7457                                        FR.INR.RINR
## 7458                                        FR.INR.RISK
## 7459                                        FR.INR.TDPT
## 7460                                     FR.INR.TDPT.RL
## 7461                                  FR.INR.USA.LIBOR3
## 7462                                  FS.AST.CGOV.GD.ZS
## 7463                                  FS.AST.DOMO.GD.ZS
## 7464                                  FS.AST.DOMS.GD.ZS
## 7465                                     FS.AST.DTOT.ZS
## 7466                                     FS.AST.PRVT.CN
## 7467                                  FS.AST.PRVT.GD.ZS
## 7468                                 FS.AST.PRVT.GDP.ZS
## 7469                                  FS.LBL.LIQU.GD.ZS
## 7470                                 FS.LBL.LIQU.GDP.ZS
## 7471                                  FS.LBL.QLIQ.GD.ZS
## 7472                                     FS.XPC.DDPT.CN
## 7473                                     FS.XPC.TDPT.CN
## 7474                                  FX.OWN.TOTL.40.ZS
## 7475                                  FX.OWN.TOTL.60.ZS
## 7476                                  FX.OWN.TOTL.FE.ZS
## 7477                                  FX.OWN.TOTL.MA.ZS
## 7478                                  FX.OWN.TOTL.OL.ZS
## 7479                                  FX.OWN.TOTL.PL.ZS
## 7480                                  FX.OWN.TOTL.SO.ZS
## 7481                                  FX.OWN.TOTL.YG.ZS
## 7482                                     FX.OWN.TOTL.ZS
## 7483                                              g20.t
## 7484                                            g20.t.1
## 7485                                           g20.t.10
## 7486                                           g20.t.11
## 7487                                            g20.t.2
## 7488                                            g20.t.3
## 7489                                            g20.t.4
## 7490                                            g20.t.5
## 7491                                            g20.t.6
## 7492                                            g20.t.7
## 7493                                            g20.t.8
## 7494                                            g20.t.9
## 7495                                         g20.t.made
## 7496                                       g20.t.made.1
## 7497                                      g20.t.made.10
## 7498                                      g20.t.made.11
## 7499                                       g20.t.made.2
## 7500                                       g20.t.made.3
## 7501                                       g20.t.made.4
## 7502                                       g20.t.made.5
## 7503                                       g20.t.made.6
## 7504                                       g20.t.made.7
## 7505                                       g20.t.made.8
## 7506                                       g20.t.made.9
## 7507                                      g20.t.receive
## 7508                                    g20.t.receive.1
## 7509                                   g20.t.receive.10
## 7510                                   g20.t.receive.11
## 7511                                    g20.t.receive.2
## 7512                                    g20.t.receive.3
## 7513                                    g20.t.receive.4
## 7514                                    g20.t.receive.5
## 7515                                    g20.t.receive.6
## 7516                                    g20.t.receive.7
## 7517                                    g20.t.receive.8
## 7518                                    g20.t.receive.9
## 7519                                              g20_t
## 7520                                            g20_t_1
## 7521                                            g20_t_2
## 7522                                            g20_t_3
## 7523                                            g20_t_4
## 7524                                            g20_t_5
## 7525                                            g20_t_6
## 7526                                            g20_t_7
## 7527                                     GB.AMA.ABRD.CN
## 7528                                     GB.BAL.CIGR.CN
## 7529                                     GB.BAL.OVRL.CN
## 7530                                  GB.BAL.OVRL.GD.ZS
## 7531                                 GB.BAL.OVRL.GDP.ZS
## 7532                                     GB.BAL.OVRX.CN
## 7533                                     GB.BAL.OVXG.CN
## 7534                                     GB.BAL.XINT.CN
## 7535                                     GB.DOD.DMSY.CN
## 7536                                     GB.DOD.DNMS.CN
## 7537                                     GB.DOD.FRGN.CD
## 7538                                     GB.DOD.FRGN.CN
## 7539                                     GB.DOD.TOTL.CN
## 7540                                  GB.DOD.TOTL.GD.ZS
## 7541                                 GB.DOD.TOTL.GDP.ZS
## 7542                                     GB.DTA.DOMS.CN
## 7543                                     GB.DTA.FRGN.CN
## 7544                                     GB.FIN.ABRD.CN
## 7545                                  GB.FIN.ABRD.GD.ZS
## 7546                                 GB.FIN.ABRD.GDP.ZS
## 7547                                     GB.FIN.DMSY.CN
## 7548                                     GB.FIN.DNMS.CN
## 7549                                     GB.FIN.DOMS.CN
## 7550                                  GB.FIN.DOMS.GD.ZS
## 7551                                 GB.FIN.DOMS.GDP.ZS
## 7552                                     GB.FIN.IKFR.CN
## 7553                                     GB.GRT.CTOT.CN
## 7554                                     GB.GRT.KFRN.CN
## 7555                                     GB.GRT.TOTL.CN
## 7556                                  GB.INT.DECT.RV.ZS
## 7557                                     GB.NTX.CIGR.CN
## 7558                                  GB.NTX.TOTL.RV.ZS
## 7559                                     GB.NTX.TOTL.ZS
## 7560                                     GB.REV.CTOT.CN
## 7561                                  GB.REV.CTOT.GD.ZS
## 7562                                     GB.REV.IGRT.CN
## 7563                                     GB.REV.TOTL.CN
## 7564                                 GB.REV.TOTL.GDP.ZS
## 7565                                     GB.REV.XAGT.CN
## 7566                                  GB.REV.XAGT.CN.ZS
## 7567                                     GB.RVC.IGRT.CN
## 7568                                     GB.RVC.TOTL.CN
## 7569                                  GB.RVC.TOTL.GD.ZS
## 7570                                     GB.RVK.TOTL.CN
## 7571                                     GB.SOE.DECT.ZS
## 7572                                     GB.SOE.DOMS.ZS
## 7573                                  GB.SOE.ECON.GD.ZS
## 7574                                 GB.SOE.ECON.GDP.ZS
## 7575                                     GB.SOE.EMPL.ZS
## 7576                                     GB.SOE.GDIV.ZS
## 7577                                  GB.SOE.NFLW.GD.ZS
## 7578                                 GB.SOE.NFLW.GDP.ZS
## 7579                                  GB.SOE.OVRL.GD.ZS
## 7580                                 GB.SOE.OVRL.GDP.ZS
## 7581                                     GB.SOE.PRVZ.CD
## 7582                                     GB.TAX.CMAR.ZS
## 7583                                     GB.TAX.DRCT.CN
## 7584                                  GB.TAX.EXPT.BX.ZS
## 7585                                     GB.TAX.EXPT.ZS
## 7586                                     GB.TAX.GSRV.CN
## 7587                                GB.TAX.GSRV.NAGR.ZS
## 7588                                  GB.TAX.GSRV.RV.ZS
## 7589                                  GB.TAX.GSRV.VA.ZS
## 7590                                     GB.TAX.GSRV.ZS
## 7591                                     GB.TAX.IDRT.CN
## 7592                                     GB.TAX.IMAR.CD
## 7593                                     GB.TAX.IMAR.ZS
## 7594                                  GB.TAX.IMPT.BM.ZS
## 7595                                     GB.TAX.IMPT.ZS
## 7596                                     GB.TAX.INCM.ZS
## 7597                                     GB.TAX.INTT.CN
## 7598                                  GB.TAX.INTT.RV.ZS
## 7599                                     GB.TAX.INTT.ZS
## 7600                                  GB.TAX.OTHR.RV.ZS
## 7601                                     GB.TAX.OTHR.ZS
## 7602                                  GB.TAX.SSEC.RV.ZS
## 7603                                     GB.TAX.SSEC.ZS
## 7604                                     GB.TAX.TOTL.CN
## 7605                                  GB.TAX.TOTL.GD.ZS
## 7606                                 GB.TAX.TOTL.GDP.ZS
## 7607                                  GB.TAX.YPKG.RV.ZS
## 7608                                     GB.TAX.YPKG.ZS
## 7609                                     GB.TDS.ABRD.CN
## 7610                                     GB.TDS.FRGN.CN
## 7611                                     GB.XPC.GSRV.CN
## 7612                                     GB.XPC.GSRV.ZS
## 7613                                     GB.XPC.INTD.CN
## 7614                                     GB.XPC.INTE.CN
## 7615                                 GB.XPC.INTP.REV.ZS
## 7616                                     GB.XPC.INTP.ZS
## 7617                                     GB.XPC.SUBS.CN
## 7618                                     GB.XPC.TOTL.CN
## 7619                                     GB.XPC.TRFO.CN
## 7620                                     GB.XPC.TRFT.ZS
## 7621                                     GB.XPC.WAGE.CN
## 7622                                     GB.XPC.WAGE.ZS
## 7623                                     GB.XPD.DEFN.CN
## 7624                                 GB.XPD.DEFN.GDP.ZS
## 7625                                     GB.XPD.INLD.CN
## 7626                                   GB.XPD.RD.GNP.ZS
## 7627                                  GB.XPD.RSDV.GD.ZS
## 7628                                  GB.XPD.RSDV.GN.ZS
## 7629                                     GB.XPD.TOTL.CN
## 7630                                  GB.XPD.TOTL.GD.ZS
## 7631                                 GB.XPD.TOTL.GDP.ZS
## 7632                                     GB.XPK.INLD.CN
## 7633                                     GB.XPK.RINV.CN
## 7634                                     GB.XPK.TOTL.CN
## 7635                                     GB.XPK.TOTL.ZS
## 7636                                     GB.XPL.TRNL.CN
## 7637                                     GC.AST.TOTL.CN
## 7638                                  GC.AST.TOTL.GD.ZS
## 7639                                     GC.BAL.CASH.CD
## 7640                                     GC.BAL.CASH.CN
## 7641                                  GC.BAL.CASH.GD.ZS
## 7642                                     GC.BAL.CIGR.CN
## 7643                                     GC.BAL.CURI.CN
## 7644                                     GC.BAL.OVRL.CN
## 7645                                     GC.DOD.TOTL.CN
## 7646                                  GC.DOD.TOTL.GD.ZS
## 7647                                     GC.EKL.TOTL.CN
## 7648                                     GC.EXC.TOTL.CN
## 7649                                     GC.FIN.DOMS.CN
## 7650                                  GC.FIN.DOMS.GD.ZS
## 7651                                     GC.FIN.FRGN.CN
## 7652                                  GC.FIN.FRGN.GD.ZS
## 7653                                     GC.LBL.TOTL.CN
## 7654                                  GC.LBL.TOTL.GD.ZS
## 7655                                     GC.NFN.TOTL.CN
## 7656                                  GC.NFN.TOTL.GD.ZS
## 7657                                     GC.NLD.TOTL.CN
## 7658                                  GC.NLD.TOTL.GD.ZS
## 7659                                     GC.REV.CIGR.CN
## 7660                                     GC.REV.GOTR.CN
## 7661                                     GC.REV.GOTR.ZS
## 7662                                     GC.REV.KTOT.CN
## 7663                                     GC.REV.SOCL.CN
## 7664                                     GC.REV.SOCL.ZS
## 7665                                     GC.REV.TOTL.CD
## 7666                                     GC.REV.TOTL.CN
## 7667                                     GC.REV.XGRT.CD
## 7668                                     GC.REV.XGRT.CN
## 7669                                  GC.REV.XGRT.GD.ZS
## 7670                                     GC.RVG.CURI.CN
## 7671                                     GC.RVK.TOTL.CN
## 7672                                     GC.TAX.EXPT.CN
## 7673                                     GC.TAX.EXPT.ZS
## 7674                                     GC.TAX.GSRV.CN
## 7675                                  GC.TAX.GSRV.RV.ZS
## 7676                                  GC.TAX.GSRV.VA.ZS
## 7677                                     GC.TAX.IMPT.CN
## 7678                                     GC.TAX.IMPT.ZS
## 7679                                     GC.TAX.INTT.CN
## 7680                                  GC.TAX.INTT.RV.ZS
## 7681                                     GC.TAX.OTHR.CN
## 7682                                  GC.TAX.OTHR.RV.ZS
## 7683                                     GC.TAX.TOTL.CN
## 7684                                  GC.TAX.TOTL.GD.ZS
## 7685                                     GC.TAX.YPKG.CN
## 7686                                  GC.TAX.YPKG.RV.ZS
## 7687                                     GC.TAX.YPKG.ZS
## 7688                                     GC.XPC.TOTL.CN
## 7689                                     GC.XPK.INLD.CN
## 7690                                     GC.XPN.COMP.CN
## 7691                                     GC.XPN.COMP.ZS
## 7692                                     GC.XPN.GSRV.CN
## 7693                                     GC.XPN.GSRV.ZS
## 7694                                     GC.XPN.INTP.CN
## 7695                                  GC.XPN.INTP.RV.ZS
## 7696                                     GC.XPN.INTP.ZS
## 7697                                     GC.XPN.OTHR.CN
## 7698                                     GC.XPN.OTHR.ZS
## 7699                                     GC.XPN.TOTL.CD
## 7700                                     GC.XPN.TOTL.CN
## 7701                                  GC.XPN.TOTL.GD.ZS
## 7702                                     GC.XPN.TRFT.CN
## 7703                                     GC.XPN.TRFT.ZS
## 7704                                  GCI.10THPILLAR.XQ
## 7705                                  GCI.11THPILLAR.XQ
## 7706                                  GCI.12THPILLAR.XQ
## 7707                                   GCI.1STPILLAR.XQ
## 7708                                   GCI.2NDPILLAR.XQ
## 7709                                   GCI.3RDPILLAR.XQ
## 7710                                   GCI.4THPILLAR.XQ
## 7711                                   GCI.5THPILLAR.XQ
## 7712                                   GCI.6THPILLAR.XQ
## 7713                                   GCI.7THPILLAR.XQ
## 7714                                   GCI.8THPILLAR.XQ
## 7715                                   GCI.9THPILLAR.XQ
## 7716                                       GCI.INDEX.XQ
## 7717                                GCI.PILLAR11TO12.XQ
## 7718                                  GCI.PILLAR1TO4.XQ
## 7719                                 GCI.PILLAR5TO10.XQ
## 7720                                        GCI.RANK.XQ
## 7721                                             GE.EST
## 7722                                          GE.NO.SRC
## 7723                                         GE.PER.RNK
## 7724                                   GE.PER.RNK.LOWER
## 7725                                   GE.PER.RNK.UPPER
## 7726                                         GE.STD.ERR
## 7727                                     GF.XPD.BUDG.ZS
## 7728                                             gf10_n
## 7729                                           gf10_n_1
## 7730                                           gf10_n_2
## 7731                                           gf10_n_3
## 7732                                           gf10_n_4
## 7733                                           gf10_n_5
## 7734                                           gf10_n_6
## 7735                                           gf10_n_7
## 7736                                              gf4_n
## 7737                                            gf4_n_1
## 7738                                            gf4_n_2
## 7739                                            gf4_n_3
## 7740                                            gf4_n_4
## 7741                                            gf4_n_5
## 7742                                            gf4_n_6
## 7743                                            gf4_n_7
## 7744                                              gf7_n
## 7745                                            gf7_n_1
## 7746                                            gf7_n_2
## 7747                                            gf7_n_3
## 7748                                            gf7_n_4
## 7749                                            gf7_n_5
## 7750                                            gf7_n_6
## 7751                                            gf7_n_7
## 7752                                         GFDD.AI.01
## 7753                                         GFDD.AI.02
## 7754                                         GFDD.AI.03
## 7755                                         GFDD.AI.04
## 7756                                         GFDD.AI.05
## 7757                                         GFDD.AI.06
## 7758                                         GFDD.AI.07
## 7759                                         GFDD.AI.08
## 7760                                         GFDD.AI.09
## 7761                                         GFDD.AI.10
## 7762                                         GFDD.AI.11
## 7763                                         GFDD.AI.12
## 7764                                         GFDD.AI.13
## 7765                                         GFDD.AI.14
## 7766                                         GFDD.AI.15
## 7767                                         GFDD.AI.16
## 7768                                         GFDD.AI.17
## 7769                                         GFDD.AI.18
## 7770                                         GFDD.AI.19
## 7771                                         GFDD.AI.20
## 7772                                         GFDD.AI.21
## 7773                                         GFDD.AI.22
## 7774                                         GFDD.AI.23
## 7775                                         GFDD.AI.24
## 7776                                         GFDD.AI.25
## 7777                                         GFDD.AI.26
## 7778                                         GFDD.AI.27
## 7779                                         GFDD.AI.28
## 7780                                         GFDD.AI.29
## 7781                                         GFDD.AI.30
## 7782                                         GFDD.AI.31
## 7783                                         GFDD.AI.32
## 7784                                         GFDD.AI.33
## 7785                                         GFDD.AI.34
## 7786                                         GFDD.AI.35
## 7787                                         GFDD.AI.36
## 7788                                         GFDD.AM.01
## 7789                                         GFDD.AM.02
## 7790                                         GFDD.AM.03
## 7791                                         GFDD.AM.04
## 7792                                         GFDD.DI.01
## 7793                                         GFDD.DI.02
## 7794                                         GFDD.DI.03
## 7795                                         GFDD.DI.04
## 7796                                         GFDD.DI.05
## 7797                                         GFDD.DI.06
## 7798                                         GFDD.DI.07
## 7799                                         GFDD.DI.08
## 7800                                         GFDD.DI.09
## 7801                                         GFDD.DI.10
## 7802                                         GFDD.DI.11
## 7803                                         GFDD.DI.12
## 7804                                         GFDD.DI.13
## 7805                                         GFDD.DI.14
## 7806                                         GFDD.DM.01
## 7807                                         GFDD.DM.02
## 7808                                         GFDD.DM.03
## 7809                                         GFDD.DM.04
## 7810                                         GFDD.DM.05
## 7811                                         GFDD.DM.06
## 7812                                         GFDD.DM.07
## 7813                                         GFDD.DM.08
## 7814                                         GFDD.DM.09
## 7815                                         GFDD.DM.10
## 7816                                         GFDD.DM.11
## 7817                                         GFDD.DM.12
## 7818                                         GFDD.DM.13
## 7819                                         GFDD.DM.14
## 7820                                         GFDD.DM.15
## 7821                                         GFDD.DM.16
## 7822                                         GFDD.DM.16
## 7823                                         GFDD.EI.01
## 7824                                         GFDD.EI.02
## 7825                                         GFDD.EI.03
## 7826                                         GFDD.EI.04
## 7827                                         GFDD.EI.05
## 7828                                         GFDD.EI.06
## 7829                                         GFDD.EI.07
## 7830                                         GFDD.EI.08
## 7831                                         GFDD.EI.09
## 7832                                         GFDD.EI.10
## 7833                                         GFDD.EM.01
## 7834                                         GFDD.OE.01
## 7835                                         GFDD.OE.02
## 7836                                         GFDD.OI.01
## 7837                                         GFDD.OI.02
## 7838                                         GFDD.OI.03
## 7839                                         GFDD.OI.04
## 7840                                         GFDD.OI.05
## 7841                                         GFDD.OI.06
## 7842                                         GFDD.OI.07
## 7843                                         GFDD.OI.08
## 7844                                         GFDD.OI.09
## 7845                                         GFDD.OI.10
## 7846                                         GFDD.OI.11
## 7847                                         GFDD.OI.12
## 7848                                         GFDD.OI.13
## 7849                                         GFDD.OI.14
## 7850                                         GFDD.OI.15
## 7851                                         GFDD.OI.16
## 7852                                        GFDD.OI.16a
## 7853                                        GFDD.OI.16a
## 7854                                         GFDD.OI.17
## 7855                                         GFDD.OI.18
## 7856                                         GFDD.OI.19
## 7857                                        GFDD.OI.20a
## 7858                                        GFDD.OI.20a
## 7859                                         GFDD.OM.01
## 7860                                         GFDD.OM.02
## 7861                                         GFDD.SI.01
## 7862                                         GFDD.SI.02
## 7863                                         GFDD.SI.03
## 7864                                         GFDD.SI.04
## 7865                                         GFDD.SI.05
## 7866                                         GFDD.SI.06
## 7867                                         GFDD.SI.07
## 7868                                         GFDD.SM.01
## 7869                                         GPFI1_TOTL
## 7870                                              GPFI2
## 7871                                              GPFI3
## 7872                                              GPFI4
## 7873                                               GPSS
## 7874                                             GPSS_1
## 7875                                             GPSS_2
## 7876                                             GPSS_3
## 7877                                             GPSS_4
## 7878                                             GPSS_5
## 7879                                    gtap10VACapital
## 7880                                      gtap10VALabor
## 7881                                     GV.BAL.OVRL.CN
## 7882                                      GV.CONT.CO.ES
## 7883                                      GV.CONT.CO.NO
## 7884                                      GV.CONT.CO.SE
## 7885                                      GV.GOVT.EF.ES
## 7886                                      GV.GOVT.EF.NO
## 7887                                      GV.GOVT.EF.SE
## 7888                                      GV.POLI.ST.ES
## 7889                                      GV.POLI.ST.NO
## 7890                                      GV.POLI.ST.SE
## 7891                                      GV.REGL.LA.ES
## 7892                                      GV.REGL.LA.NO
## 7893                                      GV.REGL.LA.SE
## 7894                                      GV.RULE.LW.ES
## 7895                                      GV.RULE.LW.NO
## 7896                                      GV.RULE.LW.SE
## 7897                                     GV.TI.RANK.IDX
## 7898                                     GV.TI.SCOR.IDX
## 7899                                      GV.VOIC.AC.ES
## 7900                                      GV.VOIC.AC.NO
## 7901                                      GV.VOIC.AC.SE
## 7902                                             gwp1_n
## 7903                                           gwp1_n_1
## 7904                                           gwp1_n_2
## 7905                                           gwp1_n_3
## 7906                                           gwp1_n_4
## 7907                                           gwp1_n_5
## 7908                                           gwp1_n_6
## 7909                                           gwp1_n_7
## 7910                                             gwp2_n
## 7911                                           gwp2_n_1
## 7912                                           gwp2_n_2
## 7913                                           gwp2_n_3
## 7914                                           gwp2_n_4
## 7915                                           gwp2_n_5
## 7916                                           gwp2_n_6
## 7917                                           gwp2_n_7
## 7918                                        HD.HCI.AMRT
## 7919                                     HD.HCI.AMRT.FE
## 7920                                     HD.HCI.AMRT.MA
## 7921                                        HD.HCI.EYRS
## 7922                                     HD.HCI.EYRS.FE
## 7923                                     HD.HCI.EYRS.MA
## 7924                                        HD.HCI.HLOS
## 7925                                     HD.HCI.HLOS.FE
## 7926                                     HD.HCI.HLOS.MA
## 7927                                        HD.HCI.LAYS
## 7928                                     HD.HCI.LAYS.FE
## 7929                                     HD.HCI.LAYS.MA
## 7930                                        HD.HCI.MORT
## 7931                                     HD.HCI.MORT.FE
## 7932                                     HD.HCI.MORT.MA
## 7933                                        HD.HCI.OVRL
## 7934                                     HD.HCI.OVRL.FE
## 7935                                     HD.HCI.OVRL.LB
## 7936                                  HD.HCI.OVRL.LB.FE
## 7937                                  HD.HCI.OVRL.LB.MA
## 7938                                     HD.HCI.OVRL.MA
## 7939                                     HD.HCI.OVRL.UB
## 7940                                  HD.HCI.OVRL.UB.FE
## 7941                                  HD.HCI.OVRL.UB.MA
## 7942                                        HD.HCI.STNT
## 7943                                     HD.HCI.STNT.FE
## 7944                                     HD.HCI.STNT.MA
## 7945                                  HF.CON.AIDS.FE.ZS
## 7946                               HF.CON.AIDS.FE.ZS.Q1
## 7947                               HF.CON.AIDS.FE.ZS.Q2
## 7948                               HF.CON.AIDS.FE.ZS.Q3
## 7949                               HF.CON.AIDS.FE.ZS.Q4
## 7950                               HF.CON.AIDS.FE.ZS.Q5
## 7951                                     HF.DYN.AIDS.ZS
## 7952                                  HF.DYN.AIDS.ZS.Q1
## 7953                                  HF.DYN.AIDS.ZS.Q2
## 7954                                  HF.DYN.AIDS.ZS.Q3
## 7955                                  HF.DYN.AIDS.ZS.Q4
## 7956                                  HF.DYN.AIDS.ZS.Q5
## 7957                                     HF.DYN.CONM.ZS
## 7958                                  HF.DYN.CONM.ZS.Q1
## 7959                                  HF.DYN.CONM.ZS.Q2
## 7960                                  HF.DYN.CONM.ZS.Q3
## 7961                                  HF.DYN.CONM.ZS.Q4
## 7962                                  HF.DYN.CONM.ZS.Q5
## 7963                                     HF.DYN.IMRT.IN
## 7964                                  HF.DYN.IMRT.IN.Q1
## 7965                                  HF.DYN.IMRT.IN.Q2
## 7966                                  HF.DYN.IMRT.IN.Q3
## 7967                                  HF.DYN.IMRT.IN.Q4
## 7968                                  HF.DYN.IMRT.IN.Q5
## 7969                                        HF.DYN.MORT
## 7970                                     HF.DYN.MORT.Q1
## 7971                                     HF.DYN.MORT.Q2
## 7972                                     HF.DYN.MORT.Q3
## 7973                                     HF.DYN.MORT.Q4
## 7974                                     HF.DYN.MORT.Q5
## 7975                                        HF.DYN.SMEA
## 7976                                     HF.DYN.SMEA.Q1
## 7977                                     HF.DYN.SMEA.Q2
## 7978                                     HF.DYN.SMEA.Q3
## 7979                                     HF.DYN.SMEA.Q4
## 7980                                     HF.DYN.SMEA.Q5
## 7981                                        HF.IMM.FULL
## 7982                                     HF.IMM.FULL.Q1
## 7983                                     HF.IMM.FULL.Q2
## 7984                                     HF.IMM.FULL.Q3
## 7985                                     HF.IMM.FULL.Q4
## 7986                                     HF.IMM.FULL.Q5
## 7987                                        HF.IMM.MEAS
## 7988                                     HF.IMM.MEAS.Q1
## 7989                                     HF.IMM.MEAS.Q2
## 7990                                     HF.IMM.MEAS.Q3
## 7991                                     HF.IMM.MEAS.Q4
## 7992                                     HF.IMM.MEAS.Q5
## 7993                                     HF.MLR.NETS.ZS
## 7994                                  HF.MLR.NETS.ZS.Q1
## 7995                                  HF.MLR.NETS.ZS.Q2
## 7996                                  HF.MLR.NETS.ZS.Q3
## 7997                                  HF.MLR.NETS.ZS.Q4
## 7998                                  HF.MLR.NETS.ZS.Q5
## 7999                                     HF.STA.ANV4.ZS
## 8000                                  HF.STA.ANV4.ZS.Q1
## 8001                                  HF.STA.ANV4.ZS.Q2
## 8002                                  HF.STA.ANV4.ZS.Q3
## 8003                                  HF.STA.ANV4.ZS.Q4
## 8004                                  HF.STA.ANV4.ZS.Q5
## 8005                                     HF.STA.ARIC.ZS
## 8006                                  HF.STA.ARIC.ZS.Q1
## 8007                                  HF.STA.ARIC.ZS.Q2
## 8008                                  HF.STA.ARIC.ZS.Q3
## 8009                                  HF.STA.ARIC.ZS.Q4
## 8010                                  HF.STA.ARIC.ZS.Q5
## 8011                                     HF.STA.BLSG.ZS
## 8012                                  HF.STA.BLSG.ZS.Q1
## 8013                                  HF.STA.BLSG.ZS.Q2
## 8014                                  HF.STA.BLSG.ZS.Q3
## 8015                                  HF.STA.BLSG.ZS.Q4
## 8016                                  HF.STA.BLSG.ZS.Q5
## 8017                                     HF.STA.BM15.FE
## 8018                                  HF.STA.BM15.FE.Q1
## 8019                                  HF.STA.BM15.FE.Q2
## 8020                                  HF.STA.BM15.FE.Q3
## 8021                                  HF.STA.BM15.FE.Q4
## 8022                                  HF.STA.BM15.FE.Q5
## 8023                                        HF.STA.BM18
## 8024                                     HF.STA.BM18.FE
## 8025                                  HF.STA.BM18.FE.Q1
## 8026                                  HF.STA.BM18.FE.Q2
## 8027                                  HF.STA.BM18.FE.Q3
## 8028                                  HF.STA.BM18.FE.Q4
## 8029                                  HF.STA.BM18.FE.Q5
## 8030                                     HF.STA.BM18.Q1
## 8031                                     HF.STA.BM18.Q2
## 8032                                     HF.STA.BM18.Q3
## 8033                                     HF.STA.BM18.Q4
## 8034                                     HF.STA.BM18.Q5
## 8035                                     HF.STA.BMIN.MA
## 8036                                  HF.STA.BMIN.MA.Q1
## 8037                                  HF.STA.BMIN.MA.Q2
## 8038                                  HF.STA.BMIN.MA.Q3
## 8039                                  HF.STA.BMIN.MA.Q4
## 8040                                  HF.STA.BMIN.MA.Q5
## 8041                                     HF.STA.BP18.ZS
## 8042                                  HF.STA.BP18.ZS.Q1
## 8043                                  HF.STA.BP18.ZS.Q2
## 8044                                  HF.STA.BP18.ZS.Q3
## 8045                                  HF.STA.BP18.ZS.Q4
## 8046                                  HF.STA.BP18.ZS.Q5
## 8047                                        HF.STA.BPDI
## 8048                                     HF.STA.BPDI.Q1
## 8049                                     HF.STA.BPDI.Q2
## 8050                                     HF.STA.BPDI.Q3
## 8051                                     HF.STA.BPDI.Q4
## 8052                                     HF.STA.BPDI.Q5
## 8053                                     HF.STA.BPHT.ZS
## 8054                                  HF.STA.BPHT.ZS.Q1
## 8055                                  HF.STA.BPHT.ZS.Q2
## 8056                                  HF.STA.BPHT.ZS.Q3
## 8057                                  HF.STA.BPHT.ZS.Q4
## 8058                                  HF.STA.BPHT.ZS.Q5
## 8059                                        HF.STA.BPSY
## 8060                                     HF.STA.BPSY.Q1
## 8061                                     HF.STA.BPSY.Q2
## 8062                                     HF.STA.BPSY.Q3
## 8063                                     HF.STA.BPSY.Q4
## 8064                                     HF.STA.BPSY.Q5
## 8065                                     HF.STA.BPTR.ZS
## 8066                                  HF.STA.BPTR.ZS.Q1
## 8067                                  HF.STA.BPTR.ZS.Q2
## 8068                                  HF.STA.BPTR.ZS.Q3
## 8069                                  HF.STA.BPTR.ZS.Q4
## 8070                                  HF.STA.BPTR.ZS.Q5
## 8071                                     HF.STA.BRTC.ZS
## 8072                                  HF.STA.BRTC.ZS.Q1
## 8073                                  HF.STA.BRTC.ZS.Q2
## 8074                                  HF.STA.BRTC.ZS.Q3
## 8075                                  HF.STA.BRTC.ZS.Q4
## 8076                                  HF.STA.BRTC.ZS.Q5
## 8077                                        HF.STA.CHOL
## 8078                                     HF.STA.CHOL.ZS
## 8079                                     HF.STA.CHOM.ZS
## 8080                                  HF.STA.CHOM.ZS.Q1
## 8081                                  HF.STA.CHOM.ZS.Q2
## 8082                                  HF.STA.CHOM.ZS.Q3
## 8083                                  HF.STA.CHOM.ZS.Q4
## 8084                                  HF.STA.CHOM.ZS.Q5
## 8085                                     HF.STA.DIAB.ZS
## 8086                                  HF.STA.DIAB.ZS.Q1
## 8087                                  HF.STA.DIAB.ZS.Q2
## 8088                                  HF.STA.DIAB.ZS.Q3
## 8089                                  HF.STA.DIAB.ZS.Q4
## 8090                                  HF.STA.DIAB.ZS.Q5
## 8091                                        HF.STA.GLUC
## 8092                                     HF.STA.GLYC.ZS
## 8093                                     HF.STA.HE15.FE
## 8094                                  HF.STA.HE15.FE.Q1
## 8095                                  HF.STA.HE15.FE.Q2
## 8096                                  HF.STA.HE15.FE.Q3
## 8097                                  HF.STA.HE15.FE.Q4
## 8098                                  HF.STA.HE15.FE.Q5
## 8099                                        HF.STA.HE18
## 8100                                     HF.STA.HE18.FE
## 8101                                  HF.STA.HE18.FE.Q1
## 8102                                  HF.STA.HE18.FE.Q2
## 8103                                  HF.STA.HE18.FE.Q3
## 8104                                  HF.STA.HE18.FE.Q4
## 8105                                  HF.STA.HE18.FE.Q5
## 8106                                     HF.STA.HE18.MA
## 8107                                  HF.STA.HE18.MA.Q1
## 8108                                  HF.STA.HE18.MA.Q2
## 8109                                  HF.STA.HE18.MA.Q3
## 8110                                  HF.STA.HE18.MA.Q4
## 8111                                  HF.STA.HE18.MA.Q5
## 8112                                     HF.STA.HE18.Q1
## 8113                                     HF.STA.HE18.Q2
## 8114                                     HF.STA.HE18.Q3
## 8115                                     HF.STA.HE18.Q4
## 8116                                     HF.STA.HE18.Q5
## 8117                                     HF.STA.INPT.ZS
## 8118                                  HF.STA.INPT.ZS.Q1
## 8119                                  HF.STA.INPT.ZS.Q2
## 8120                                  HF.STA.INPT.ZS.Q3
## 8121                                  HF.STA.INPT.ZS.Q4
## 8122                                  HF.STA.INPT.ZS.Q5
## 8123                                     HF.STA.MALN.ZS
## 8124                                  HF.STA.MALN.ZS.Q1
## 8125                                  HF.STA.MALN.ZS.Q2
## 8126                                  HF.STA.MALN.ZS.Q3
## 8127                                  HF.STA.MALN.ZS.Q4
## 8128                                  HF.STA.MALN.ZS.Q5
## 8129                                     HF.STA.MAMO.ZS
## 8130                                  HF.STA.MAMO.ZS.Q1
## 8131                                  HF.STA.MAMO.ZS.Q2
## 8132                                  HF.STA.MAMO.ZS.Q3
## 8133                                  HF.STA.MAMO.ZS.Q4
## 8134                                  HF.STA.MAMO.ZS.Q5
## 8135                                  HF.STA.OB15.FE.ZS
## 8136                               HF.STA.OB15.FE.ZS.Q1
## 8137                               HF.STA.OB15.FE.ZS.Q2
## 8138                               HF.STA.OB15.FE.ZS.Q3
## 8139                               HF.STA.OB15.FE.ZS.Q4
## 8140                               HF.STA.OB15.FE.ZS.Q5
## 8141                                  HF.STA.OB18.FE.ZS
## 8142                               HF.STA.OB18.FE.ZS.Q1
## 8143                               HF.STA.OB18.FE.ZS.Q2
## 8144                               HF.STA.OB18.FE.ZS.Q3
## 8145                               HF.STA.OB18.FE.ZS.Q4
## 8146                               HF.STA.OB18.FE.ZS.Q5
## 8147                                  HF.STA.OB18.MA.ZS
## 8148                               HF.STA.OB18.MA.ZS.Q1
## 8149                               HF.STA.OB18.MA.ZS.Q2
## 8150                               HF.STA.OB18.MA.ZS.Q3
## 8151                               HF.STA.OB18.MA.ZS.Q4
## 8152                               HF.STA.OB18.MA.ZS.Q5
## 8153                                     HF.STA.OB18.ZS
## 8154                                  HF.STA.OB18.ZS.Q1
## 8155                                  HF.STA.OB18.ZS.Q2
## 8156                                  HF.STA.OB18.ZS.Q3
## 8157                                  HF.STA.OB18.ZS.Q4
## 8158                                  HF.STA.OB18.ZS.Q5
## 8159                                     HF.STA.ORTH.ZS
## 8160                                  HF.STA.ORTH.ZS.Q1
## 8161                                  HF.STA.ORTH.ZS.Q2
## 8162                                  HF.STA.ORTH.ZS.Q3
## 8163                                  HF.STA.ORTH.ZS.Q4
## 8164                                  HF.STA.ORTH.ZS.Q5
## 8165                                  HF.STA.OW15.FE.ZS
## 8166                               HF.STA.OW15.FE.ZS.Q1
## 8167                               HF.STA.OW15.FE.ZS.Q2
## 8168                               HF.STA.OW15.FE.ZS.Q3
## 8169                               HF.STA.OW15.FE.ZS.Q4
## 8170                               HF.STA.OW15.FE.ZS.Q5
## 8171                                  HF.STA.OW18.FE.ZS
## 8172                               HF.STA.OW18.FE.ZS.Q1
## 8173                               HF.STA.OW18.FE.ZS.Q2
## 8174                               HF.STA.OW18.FE.ZS.Q3
## 8175                               HF.STA.OW18.FE.ZS.Q4
## 8176                               HF.STA.OW18.FE.ZS.Q5
## 8177                                  HF.STA.OW18.MA.ZS
## 8178                               HF.STA.OW18.MA.ZS.Q1
## 8179                               HF.STA.OW18.MA.ZS.Q2
## 8180                               HF.STA.OW18.MA.ZS.Q3
## 8181                               HF.STA.OW18.MA.ZS.Q4
## 8182                               HF.STA.OW18.MA.ZS.Q5
## 8183                                     HF.STA.OW18.ZS
## 8184                                  HF.STA.OW18.ZS.Q1
## 8185                                  HF.STA.OW18.ZS.Q2
## 8186                                  HF.STA.OW18.ZS.Q3
## 8187                                  HF.STA.OW18.ZS.Q4
## 8188                                  HF.STA.OW18.ZS.Q5
## 8189                                     HF.STA.STNT.ZS
## 8190                                  HF.STA.STNT.ZS.Q1
## 8191                                  HF.STA.STNT.ZS.Q2
## 8192                                  HF.STA.STNT.ZS.Q3
## 8193                                  HF.STA.STNT.ZS.Q4
## 8194                                  HF.STA.STNT.ZS.Q5
## 8195                                     HF.UHC.CONS.ZS
## 8196                                  HF.UHC.CONS.ZS.Q1
## 8197                                  HF.UHC.CONS.ZS.Q2
## 8198                                  HF.UHC.CONS.ZS.Q3
## 8199                                  HF.UHC.CONS.ZS.Q4
## 8200                                  HF.UHC.CONS.ZS.Q5
## 8201                                     HF.UHC.NOP1.CG
## 8202                                     HF.UHC.NOP1.ZS
## 8203                                  HF.UHC.NOP1.ZS.Q1
## 8204                                  HF.UHC.NOP1.ZS.Q2
## 8205                                  HF.UHC.NOP1.ZS.Q3
## 8206                                  HF.UHC.NOP1.ZS.Q4
## 8207                                  HF.UHC.NOP1.ZS.Q5
## 8208                                     HF.UHC.NOP2.CG
## 8209                                     HF.UHC.NOP2.ZS
## 8210                                  HF.UHC.NOP2.ZS.Q1
## 8211                                  HF.UHC.NOP2.ZS.Q2
## 8212                                  HF.UHC.NOP2.ZS.Q3
## 8213                                  HF.UHC.NOP2.ZS.Q4
## 8214                                  HF.UHC.NOP2.ZS.Q5
## 8215                                     HF.UHC.NOP3.CG
## 8216                                     HF.UHC.NOP3.ZS
## 8217                                  HF.UHC.NOP3.ZS.Q1
## 8218                                  HF.UHC.NOP3.ZS.Q2
## 8219                                  HF.UHC.NOP3.ZS.Q3
## 8220                                  HF.UHC.NOP3.ZS.Q4
## 8221                                  HF.UHC.NOP3.ZS.Q5
## 8222                                     HF.UHC.NOP4.CG
## 8223                                     HF.UHC.NOP4.ZS
## 8224                                  HF.UHC.NOP4.ZS.Q1
## 8225                                  HF.UHC.NOP4.ZS.Q2
## 8226                                  HF.UHC.NOP4.ZS.Q3
## 8227                                  HF.UHC.NOP4.ZS.Q4
## 8228                                  HF.UHC.NOP4.ZS.Q5
## 8229                                     HF.UHC.NOPX.ZS
## 8230                                  HF.UHC.NOPX.ZS.Q1
## 8231                                  HF.UHC.NOPX.ZS.Q2
## 8232                                  HF.UHC.NOPX.ZS.Q3
## 8233                                  HF.UHC.NOPX.ZS.Q4
## 8234                                  HF.UHC.NOPX.ZS.Q5
## 8235                                      HF.UHC.OOP.CG
## 8236                                      HF.UHC.OOP.ZS
## 8237                                   HF.UHC.OOP.ZS.Q1
## 8238                                   HF.UHC.OOP.ZS.Q2
## 8239                                   HF.UHC.OOP.ZS.Q3
## 8240                                   HF.UHC.OOP.ZS.Q4
## 8241                                   HF.UHC.OOP.ZS.Q5
## 8242                                  HF.UHC.OOPC.10.ZS
## 8243                               HF.UHC.OOPC.10.ZS.Q1
## 8244                               HF.UHC.OOPC.10.ZS.Q2
## 8245                               HF.UHC.OOPC.10.ZS.Q3
## 8246                               HF.UHC.OOPC.10.ZS.Q4
## 8247                               HF.UHC.OOPC.10.ZS.Q5
## 8248                                  HF.UHC.OOPC.25.ZS
## 8249                               HF.UHC.OOPC.25.ZS.Q1
## 8250                               HF.UHC.OOPC.25.ZS.Q2
## 8251                               HF.UHC.OOPC.25.ZS.Q3
## 8252                               HF.UHC.OOPC.25.ZS.Q4
## 8253                               HF.UHC.OOPC.25.ZS.Q5
## 8254                                        HF.UWT.TFRT
## 8255                                     HF.UWT.TFRT.Q1
## 8256                                     HF.UWT.TFRT.Q2
## 8257                                     HF.UWT.TFRT.Q3
## 8258                                     HF.UWT.TFRT.Q4
## 8259                                     HF.UWT.TFRT.Q5
## 8260                                              HLG-1
## 8261                                            HLG-1.1
## 8262                                            HLG-1.2
## 8263                                            HLG-1.3
## 8264                                    HOU.ELC.ACSN.ZS
## 8265                                    HOU.H2O.ACSN.ZS
## 8266                                    HOU.MLT.MAIN.ZS
## 8267                                    HOU.STA.ACSN.ZS
## 8268                                  HOU.XPD.EDU.PC.CR
## 8269                                   HOU.XPD.HE.PC.CR
## 8270                                      HOU.XPD.PC.CR
## 8271                             HOU.XPD.TOTL.20POOR.CR
## 8272                                         i_ATMs_pop
## 8273                                  i_branches_A1_pop
## 8274                               i_deposit_acc_A1_pop
## 8275                        i_deposit_acc_A1_sme_perNFC
## 8276                           i_loan_acc_A1_sme_perNFC
## 8277                         i_mob_agent_pop_registered
## 8278                      i_mob_transactions_number_pop
## 8279                                         IBP.OBI.XQ
## 8280                                     IC.BUS.DFRN.XQ
## 8281                                      IC.BUS.DIR.XQ
## 8282                                     IC.BUS.DISC.XQ
## 8283                            IC.BUS.EASE.DFRN.DB1014
## 8284                              IC.BUS.EASE.DFRN.DB15
## 8285                              IC.BUS.EASE.DFRN.DB16
## 8286                         IC.BUS.EASE.DFRN.XQ.DB1719
## 8287                                     IC.BUS.EASE.XQ
## 8288                                     IC.BUS.INVS.XQ
## 8289                                     IC.BUS.NDNS.ZS
## 8290                                        IC.BUS.NREG
## 8291                                     IC.BUS.NREG.ZS
## 8292                                      IC.BUS.SHR.XQ
## 8293                                        IC.BUS.TOTL
## 8294                                          IC.BUS.XQ
## 8295                                 IC.CLS.COST.EST.ZS
## 8296                                        IC.CLS.DURS
## 8297                                      IC.CLS.REC.CD
## 8298                                          IC.CLS.XQ
## 8299                                     IC.CNS.CORR.ZS
## 8300                                     IC.CNS.CRIM.ZS
## 8301                                     IC.CNS.ELEC.ZS
## 8302                                     IC.CNS.FINA.ZS
## 8303                                      IC.CNS.GEN.ZS
## 8304                                    IC.CNS.IMP.DURS
## 8305                                     IC.CNS.INFM.ZS
## 8306                                     IC.CNS.LAND.ZS
## 8307                                     IC.CNS.LBRG.ZS
## 8308                                     IC.CNS.LBSK.ZS
## 8309                                     IC.CNS.LEGL.ZS
## 8310                                      IC.CNS.LIC.ZS
## 8311                                     IC.CNS.LOSS.ZS
## 8312                                    IC.CNS.PER.DURS
## 8313                                     IC.CNS.POLC.ZS
## 8314                                    IC.CNS.TAXAD.ZS
## 8315                                     IC.CNS.TAXR.ZS
## 8316                                     IC.CNS.TRAD.ZS
## 8317                                     IC.CNS.TRSP.ZS
## 8318                           IC.CNST.LIR.XD.02.DB1619
## 8319                            IC.CNST.PC.XD.04.DB1619
## 8320                  IC.CNST.PRMT.BQCI.015.DB1619.DFRN
## 8321                          IC.CNST.PRMT.COST.WRH.VAL
## 8322                     IC.CNST.PRMT.COST.WRH.VAL.DFRN
## 8323                           IC.CNST.PRMT.DFRN.DB0615
## 8324                           IC.CNST.PRMT.DFRN.DB1619
## 8325                               IC.CNST.PRMT.PROC.NO
## 8326                          IC.CNST.PRMT.PROC.NO.DFRN
## 8327                      IC.CNST.PRMT.QBR.XD.02.DB1619
## 8328                        IC.CNST.PRMT.QCAC.XD.DB1619
## 8329                     IC.CNST.PRMT.QCBC.XD.01.DB1619
## 8330                     IC.CNST.PRMT.QCDC.XD.03.DB1619
## 8331                                    IC.CNST.PRMT.RK
## 8332                                 IC.CNST.PRMT.TM.DY
## 8333                            IC.CNST.PRMT.TM.DY.DFRN
## 8334                                     IC.CON.GIFT.ZS
## 8335                                     IC.CRD.INFO.XQ
## 8336                                      IC.CRD.LGL.XQ
## 8337                                     IC.CRD.PRVT.P3
## 8338                                     IC.CRD.PRVT.ZS
## 8339                                     IC.CRD.PUBL.P3
## 8340                                     IC.CRD.PUBL.ZS
## 8341                                          IC.CRD.XQ
## 8342                            IC.CRED.ACC.ACES.DB0514
## 8343                            IC.CRED.ACC.ACES.DB1519
## 8344                        IC.CRED.ACC.CRD.DB0514.DFRN
## 8345                        IC.CRED.ACC.CRD.DB1519.DFRN
## 8346                                 IC.CRED.ACC.CRD.RK
## 8347                 IC.CRED.ACC.DPTH.CISI.XD.06.DB0514
## 8348            IC.CRED.ACC.DPTH.CISI.XD.06.DB0514.DFRN
## 8349                 IC.CRED.ACC.DPTH.CISI.XD.08.DB1519
## 8350            IC.CRED.ACC.DPTH.CISI.XD.08.DB1519.DFRN
## 8351            IC.CRED.ACC.LGL.RGHT.010.XD.DB0514.DFRN
## 8352            IC.CRED.ACC.LGL.RGHT.012.XD.DB1519.DFRN
## 8353                 IC.CRED.ACC.LGL.RGHT.XD.010.DB0514
## 8354                 IC.CRED.ACC.LGL.RGHT.XD.012.DB1519
## 8355                            IC.CRED.ACC.PRVT.CRD.ZS
## 8356                   IC.CRED.ACC.PUBL.CRD.REG.COVR.ZS
## 8357                                     IC.CUS.DURS.EX
## 8358                                     IC.CUS.DURS.IM
## 8359                           IC.DCP.BQC.XD.015.DB1619
## 8360                                     IC.DMKT.BRK.ZS
## 8361                                    IC.DMKT.LOSS.ZS
## 8362                            IC.ELC.ACES.DFRN.DB1015
## 8363                            IC.ELC.ACES.DFRN.DB1619
## 8364                                IC.ELC.ACES.RK.DB19
## 8365                                    IC.ELC.ACS.COST
## 8366                               IC.ELC.ACS.COST.DFRN
## 8367                      IC.ELC.COMM.TRFF.CG.01.DB1619
## 8368                                        IC.ELC.DURS
## 8369                                      IC.ELC.GEN.ZS
## 8370                                     IC.ELC.GIFT.ZS
## 8371                         IC.ELC.LMTG.OUTG.01.DB1619
## 8372                         IC.ELC.MONT.OUTG.01.DB1619
## 8373                                        IC.ELC.OUTG
## 8374                                     IC.ELC.OUTG.DY
## 8375                    IC.ELC.OUTG.FREQ.DURS.03.DB1619
## 8376                                     IC.ELC.OUTG.HR
## 8377                              IC.ELC.OUTG.MN.DB1619
## 8378                                     IC.ELC.OUTG.ZS
## 8379                               IC.ELC.PRI.KH.DB1619
## 8380                                     IC.ELC.PROC.NO
## 8381                                IC.ELC.PROC.NO.DFRN
## 8382                         IC.ELC.REGU.MONT.01.DB1619
## 8383                             IC.ELC.RSTOR.01.DB1619
## 8384                           IC.ELC.RSTT.XD.08.DB1619
## 8385                      IC.ELC.RSTT.XD.08.DFRN.DB1619
## 8386                              IC.ELC.SAID.XD.DB1619
## 8387                              IC.ELC.SAIF.XD.DB1619
## 8388                                        IC.ELC.TIME
## 8389                                   IC.ELC.TIME.DFRN
## 8390                                 IC.ELEC.COST.PC.ZS
## 8391                                       IC.ELEC.PROC
## 8392                                       IC.ELEC.TIME
## 8393                                         IC.ELEC.XQ
## 8394                                     IC.EMP.FIRE.WK
## 8395                                   IC.EMPL.FTRNG.ZS
## 8396                                     IC.EXP.COST.CD
## 8397                                     IC.EXP.CSBC.CD
## 8398                                     IC.EXP.CSDC.CD
## 8399                                        IC.EXP.DOCS
## 8400                                        IC.EXP.DURS
## 8401                                        IC.EXP.TMBC
## 8402                                        IC.EXP.TMDC
## 8403                                      IC.FRM.ACC.ZS
## 8404                                      IC.FRM.AGE.YR
## 8405                                    IC.FRM.AUDIT.ZS
## 8406                                     IC.FRM.BKWC.ZS
## 8407                                     IC.FRM.BNKS.ZS
## 8408                                 IC.FRM.BRIB.GRAFT2
## 8409                                 IC.FRM.BRIB.GRAFT3
## 8410                                     IC.FRM.BRIB.ZS
## 8411                                     IC.FRM.CMPU.ZS
## 8412                                     IC.FRM.COMP.ZS
## 8413                                      IC.FRM.COR.ZS
## 8414                                  IC.FRM.CORR.CORR1
## 8415                                 IC.FRM.CORR.CORR10
## 8416                                 IC.FRM.CORR.CORR11
## 8417                                  IC.FRM.CORR.CORR2
## 8418                                  IC.FRM.CORR.CORR3
## 8419                                  IC.FRM.CORR.CORR4
## 8420                                  IC.FRM.CORR.CORR6
## 8421                                  IC.FRM.CORR.CORR7
## 8422                                  IC.FRM.CORR.CORR8
## 8423                                  IC.FRM.CORR.CORR9
## 8424                                 IC.FRM.CORR.CRIME9
## 8425                                     IC.FRM.CORR.ZS
## 8426                                  IC.FRM.COST.PC.ZS
## 8427                                      IC.FRM.CRD.ZS
## 8428                                     IC.FRM.CRIM.ZS
## 8429                                  IC.FRM.CRM.CRIME1
## 8430                                 IC.FRM.CRM.CRIME10
## 8431                                IC.FRM.CRM.CRIME2_C
## 8432                                IC.FRM.CRM.CRIME3_C
## 8433                                  IC.FRM.CRM.CRIME5
## 8434                                  IC.FRM.CRM.CRIME8
## 8435                                      IC.FRM.CRT.ZS
## 8436                                      IC.FRM.CUS.ZS
## 8437                                        IC.FRM.DURS
## 8438                                     IC.FRM.ELEC.ZS
## 8439                                    IC.FRM.EMAIL.ZS
## 8440                              IC.FRM.EMP.GROW.PEFT2
## 8441                                   IC.FRM.EMPL.PERM
## 8442                                  IC.FRM.EMPL.SKILL
## 8443                                   IC.FRM.EMPL.TEMP
## 8444                                IC.FRM.EMPL.UNSKILL
## 8445                                      IC.FRM.EXP.ZS
## 8446                                  IC.FRM.FCHAR.CAR1
## 8447                                  IC.FRM.FCHAR.CAR2
## 8448                                  IC.FRM.FCHAR.CAR7
## 8449                                  IC.FRM.FCHAR.CAR8
## 8450                                IC.FRM.FCHAR.LFORM3
## 8451                                     IC.FRM.FEMM.ZS
## 8452                                     IC.FRM.FEMO.ZS
## 8453                                     IC.FRM.FEMW.ZS
## 8454                                  IC.FRM.FIAS.PEFT4
## 8455                                    IC.FRM.FIN.FIN1
## 8456                                   IC.FRM.FIN.FIN10
## 8457                                   IC.FRM.FIN.FIN11
## 8458                                   IC.FRM.FIN.FIN12
## 8459                                   IC.FRM.FIN.FIN13
## 8460                                   IC.FRM.FIN.FIN14
## 8461                                   IC.FRM.FIN.FIN15
## 8462                                   IC.FRM.FIN.FIN16
## 8463                                    IC.FRM.FIN.FIN2
## 8464                                   IC.FRM.FIN.FIN20
## 8465                                   IC.FRM.FIN.FIN21
## 8466                                   IC.FRM.FIN.FIN22
## 8467                                    IC.FRM.FIN.FIN7
## 8468                                     IC.FRM.FINA.ZS
## 8469                                   IC.FRM.FINPUT.ZS
## 8470                                     IC.FRM.FREG.ZS
## 8471                                   IC.FRM.GEN.GEND1
## 8472                                   IC.FRM.GEN.GEND2
## 8473                                   IC.FRM.GEN.GEND3
## 8474                                   IC.FRM.GEN.GEND4
## 8475                                   IC.FRM.GEN.GEND5
## 8476                                   IC.FRM.GEN.GEND6
## 8477                                     IC.FRM.INFM.ZS
## 8478                                IC.FRM.INFOR.INFOR1
## 8479                                IC.FRM.INFOR.INFOR2
## 8480                                IC.FRM.INFOR.INFOR4
## 8481                                IC.FRM.INFOR.INFOR5
## 8482                                   IC.FRM.INFRA.IN1
## 8483                                IC.FRM.INFRA.IN10_C
## 8484                                  IC.FRM.INFRA.IN11
## 8485                                  IC.FRM.INFRA.IN12
## 8486                                  IC.FRM.INFRA.IN14
## 8487                                  IC.FRM.INFRA.IN16
## 8488                                  IC.FRM.INFRA.IN17
## 8489                                   IC.FRM.INFRA.IN2
## 8490                                 IC.FRM.INFRA.IN3_C
## 8491                                 IC.FRM.INFRA.IN4_C
## 8492                                   IC.FRM.INFRA.IN6
## 8493                                   IC.FRM.INFRA.IN9
## 8494                                    IC.FRM.INFRM.ZS
## 8495                                    IC.FRM.INNOV.T1
## 8496                                   IC.FRM.INNOV.T10
## 8497                                    IC.FRM.INNOV.T2
## 8498                                    IC.FRM.INNOV.T3
## 8499                                    IC.FRM.INNOV.T4
## 8500                                    IC.FRM.INNOV.T5
## 8501                                    IC.FRM.INNOV.T6
## 8502                                    IC.FRM.INNOV.T7
## 8503                                    IC.FRM.INNOV.T8
## 8504                                    IC.FRM.INNOV.T9
## 8505                                     IC.FRM.ISOC.ZS
## 8506                                     IC.FRM.LBRG.ZS
## 8507                                     IC.FRM.LBSK.ZS
## 8508                                      IC.FRM.LIC.ZS
## 8509                                     IC.FRM.METG.ZS
## 8510                                     IC.FRM.MGR.EXP
## 8511                                   IC.FRM.OBS.OBST1
## 8512                                  IC.FRM.OBS.OBST10
## 8513                                  IC.FRM.OBS.OBST11
## 8514                                  IC.FRM.OBS.OBST12
## 8515                                  IC.FRM.OBS.OBST13
## 8516                                  IC.FRM.OBS.OBST14
## 8517                                  IC.FRM.OBS.OBST15
## 8518                                   IC.FRM.OBS.OBST2
## 8519                                   IC.FRM.OBS.OBST3
## 8520                                   IC.FRM.OBS.OBST4
## 8521                                   IC.FRM.OBS.OBST5
## 8522                                   IC.FRM.OBS.OBST6
## 8523                                   IC.FRM.OBS.OBST7
## 8524                                   IC.FRM.OBS.OBST8
## 8525                                   IC.FRM.OBS.OBST9
## 8526                                     IC.FRM.OUTG.ZS
## 8527                                  IC.FRM.OWN.GOV.ZS
## 8528                                 IC.FRM.OWN.PFOR.ZS
## 8529                                 IC.FRM.OWN.PLOC.ZS
## 8530                                      IC.FRM.OWN.ZS
## 8531                                        IC.FRM.PROC
## 8532                             IC.FRM.PROD.GROW.PEFT3
## 8533                                    IC.FRM.REG.BUS1
## 8534                                    IC.FRM.REG.BUS2
## 8535                                    IC.FRM.REG.BUS3
## 8536                                    IC.FRM.REG.BUS5
## 8537                                    IC.FRM.REG.REG1
## 8538                                  IC.FRM.REG.REG2_C
## 8539                                    IC.FRM.REG.REG4
## 8540                                    IC.FRM.REG.REG5
## 8541                                    IC.FRM.REG.REG6
## 8542                                      IC.FRM.REG.ZS
## 8543                                     IC.FRM.RSDV.ZS
## 8544                                      IC.FRM.SEC.ZS
## 8545                                     IC.FRM.SECR.ZS
## 8546                              IC.FRM.SLS.GROW.PEFT1
## 8547                                    IC.FRM.TAXAD.ZS
## 8548                                     IC.FRM.TAXR.ZS
## 8549                                     IC.FRM.TECH.ZS
## 8550                                     IC.FRM.THEV.ZS
## 8551                                        IC.FRM.TIME
## 8552                                     IC.FRM.TRD.TR1
## 8553                                    IC.FRM.TRD.TR11
## 8554                                    IC.FRM.TRD.TR16
## 8555                                    IC.FRM.TRD.TR17
## 8556                                     IC.FRM.TRD.TR2
## 8557                                     IC.FRM.TRD.TR5
## 8558                                     IC.FRM.TRD.TR8
## 8559                                     IC.FRM.TRD.TR9
## 8560                                     IC.FRM.TRNG.ZS
## 8561                                     IC.FRM.TRSP.ZS
## 8562                                      IC.FRM.WEB.ZS
## 8563                                    IC.FRM.WRKF.WK1
## 8564                                   IC.FRM.WRKF.WK10
## 8565                                   IC.FRM.WRKF.WK14
## 8566                                   IC.FRM.WRKF.WK15
## 8567                                   IC.FRM.WRKF.WK17
## 8568                                   IC.FRM.WRKF.WK18
## 8569                                   IC.FRM.WRKF.WK19
## 8570                                    IC.FRM.WRKF.WK2
## 8571                                    IC.FRM.WRKF.WK8
## 8572                                    IC.FRM.WRKF.WK9
## 8573                                  IC.FRM.WTLIC.DURS
## 8574                                          IC.FRM.XQ
## 8575                                    IC.GCON.GIFT.ZS
## 8576                                     IC.GOV.DURS.ZS
## 8577                                        IC.GRAFT.XQ
## 8578                                     IC.IMP.COST.CD
## 8579                                     IC.IMP.CSBC.CD
## 8580                                     IC.IMP.CSDC.CD
## 8581                                        IC.IMP.DOCS
## 8582                                        IC.IMP.DURS
## 8583                                     IC.IMP.GIFT.ZS
## 8584                                        IC.IMP.TMBC
## 8585                                        IC.IMP.TMDC
## 8586                                        IC.ISV.DURS
## 8587                                     IC.LGL.CONT.XQ
## 8588                                IC.LGL.COST.DEBT.ZS
## 8589                                     IC.LGL.CRED.XQ
## 8590                                        IC.LGL.DURS
## 8591                                     IC.LGL.EMPL.XQ
## 8592                                     IC.LGL.LACK.ZS
## 8593                                        IC.LGL.PROC
## 8594                                     IC.LOAN.COL.ZS
## 8595                                    IC.OPER.GIFT.ZS
## 8596                                IC.PRP.COST.PROP.ZS
## 8597                                        IC.PRP.DURS
## 8598                                        IC.PRP.PROC
## 8599                                          IC.PRP.XQ
## 8600                                   IC.REG.CAP.PC.ZS
## 8601                               IC.REG.COST.PC.FE.ZS
## 8602                          IC.REG.COST.PC.FE.ZS.DRFN
## 8603                               IC.REG.COST.PC.MA.ZS
## 8604                          IC.REG.COST.PC.MA.ZS.DFRN
## 8605                                  IC.REG.COST.PC.ZS
## 8606                                IC.REG.DFRN.PC.DFRN
## 8607                                        IC.REG.DURS
## 8608                                     IC.REG.DURS.FE
## 8609                                  IC.REG.DURS.FE.DY
## 8610                             IC.REG.DURS.FE.DY.DRFN
## 8611                                     IC.REG.DURS.MA
## 8612                                  IC.REG.DURS.MA.DY
## 8613                             IC.REG.DURS.MA.DY.DFRN
## 8614                                     IC.REG.MIN.CAP
## 8615                                        IC.REG.PROC
## 8616                                     IC.REG.PROC.FE
## 8617                                  IC.REG.PROC.FE.NO
## 8618                             IC.REG.PROC.FE.NO.DFRN
## 8619                                     IC.REG.PROC.MA
## 8620                                  IC.REG.PROC.MA.NO
## 8621                             IC.REG.PROC.MA.NO.DFRN
## 8622                           IC.REG.PRRT.COST.PRT.VAL
## 8623                      IC.REG.PRRT.COST.PRT.VAL.DFRN
## 8624                            IC.REG.PRRT.DFRN.DB0515
## 8625                              IC.REG.PRRT.DFRN.DB16
## 8626                            IC.REG.PRRT.DFRN.DB1719
## 8627                                IC.REG.PRRT.DURS.TM
## 8628                           IC.REG.PRRT.DURS.TM.DRFN
## 8629                    IC.REG.PRRT.EQACCS.XD.08.DB1619
## 8630                  IC.REG.PRRT.GEO.COVR.XD.08.DB1619
## 8631                 IC.REG.PRRT.LAND.DISP.XD.08.DB1619
## 8632          IC.REG.PRRT.LNDADM.GEN.XD.030.DB1719.DFRN
## 8633                                IC.REG.PRRT.PROC.NO
## 8634                           IC.REG.PRRT.PROC.NO.DFRN
## 8635                IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16
## 8636           IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16.DFRN
## 8637              IC.REG.PRRT.QUAL.LNDADM.XD.030.DB1719
## 8638                            IC.REG.PRRT.REG.RK.DB19
## 8639                 IC.REG.PRRT.RELI.INFR.XD.09.DB1619
## 8640                 IC.REG.PRRT.TRAP.INFO.XD.06.DB1619
## 8641                               IC.REG.STRT.BUS.DFRN
## 8642                            IC.REG.STRT.BUS.RK.DB19
## 8643                                          IC.REG.XQ
## 8644                                     IC.SALE.DOM.ZS
## 8645                                     IC.SME.EMPL.ZS
## 8646                                        IC.SME.TOTL
## 8647                                     IC.SME.TOTL.P3
## 8648                                        IC.TAX.DURS
## 8649                                     IC.TAX.GIFT.ZS
## 8650                                  IC.TAX.LABR.CP.ZS
## 8651                                      IC.TAX.LBR.ZS
## 8652                                        IC.TAX.METG
## 8653                                      IC.TAX.OTH.ZS
## 8654                                  IC.TAX.OTHR.CP.ZS
## 8655                                        IC.TAX.PAYM
## 8656                                      IC.TAX.PFT.ZS
## 8657                                  IC.TAX.PRFT.CP.ZS
## 8658                                  IC.TAX.TOTL.CP.ZS
## 8659                                  IC.TAX.TOTL.GP.ZS
## 8660                                          IC.TAX.XQ
## 8661                                        IC.TEL.DURS
## 8662                                     IC.TEL.GIFT.ZS
## 8663                                          IC.TRD.XQ
## 8664                                      IC.VAL.COL.ZS
## 8665                                    IC.VALG.GIFT.ZS
## 8666                                        IC.WAT.DURS
## 8667                                     IC.WAT.GIFT.ZS
## 8668                                     IC.WEF.LLCD.FE
## 8669                                  IC.WEF.LLCD.FE.ZS
## 8670                                     IC.WEF.LLCD.MA
## 8671                                  IC.WEF.LLCD.MA.ZS
## 8672                                     IC.WEF.LLCO.FE
## 8673                                  IC.WEF.LLCO.FE.ZS
## 8674                                     IC.WEF.LLCO.MA
## 8675                                  IC.WEF.LLCO.MA.ZS
## 8676                                     IC.WEF.SOLO.FE
## 8677                                  IC.WEF.SOLO.FE.ZS
## 8678                                     IC.WEF.SOLO.MA
## 8679                                  IC.WEF.SOLO.MA.ZS
## 8680                                        IC.WRH.DURS
## 8681                                        IC.WRH.PROC
## 8682                                            IDX.HDI
## 8683                                        IDX.HDI.REV
## 8684                                     IE.ICT.PCAP.CD
## 8685                                     IE.ICT.TOTL.CD
## 8686                                  IE.ICT.TOTL.GD.ZS
## 8687                                     IE.PPI.ENGY.CD
## 8688                                     IE.PPI.ICTI.CD
## 8689                                     IE.PPI.TELE.CD
## 8690                                     IE.PPI.TRAN.CD
## 8691                                     IE.PPI.WATR.CD
## 8692                                     IE.PPN.ENGY.CD
## 8693                                     IE.PPN.ICTI.CD
## 8694                                     IE.PPN.TELE.CD
## 8695                                     IE.PPN.TRAN.CD
## 8696                                     IE.PPN.WATR.CD
## 8697                                             IMPCOV
## 8698                               IN.AGR.GR.IRRIG.AREA
## 8699                                     IN.AGR.YLD.ALL
## 8700                                    IN.AGR.YLD.RICE
## 8701                                IN.AGR.YLD.SUGRCANE
## 8702                          IN.EC.GSDP.PERCAP.NOM.INR
## 8703                          IN.EC.GSDP.PERCAP.NOM.USD
## 8704                         IN.EC.GSDP.PERCAP.REAL.INR
## 8705                IN.EC.GSDP.PERCAP.REAL.INR.GRWTHRAT
## 8706                         IN.EC.GSDP.PERCAP.REAL.USD
## 8707                IN.EC.GSDP.PERCAP.REAL.USD.GRWTHRAT
## 8708                                 IN.EC.POP.GRWTHRAT
## 8709                            IN.EC.POP.GRWTHRAT.RURL
## 8710                            IN.EC.POP.GRWTHRAT.URBN
## 8711                                     IN.EC.POP.RURL
## 8712                                 IN.EC.POP.RURL.PCT
## 8713                                     IN.EC.POP.TOTL
## 8714                                 IN.EC.POP.URBN.PCT
## 8715                                   IN.EDU.ENROL.GEN
## 8716                                  IN.EDU.ENROL.MSLM
## 8717                                   IN.EDU.ENROL.OBC
## 8718                                    IN.EDU.ENROL.SC
## 8719                                    IN.EDU.ENROL.ST
## 8720                               IN.EDU.GR.ENRL.RATIO
## 8721                              IN.EDU.NET.ENRL.RATIO
## 8722                                  IN.EDU.PUPIL.TCHR
## 8723                                    IN.EDU.TCHR.NUM
## 8724                                IN.EDU.TCHRTRNG.NUM
## 8725                                  IN.ENRGY.ELEC.CAP
## 8726                                  IN.ENRGY.ELEC.GEN
## 8727                       IN.ENRGY.ELEC.PERCAP.CONSMPN
## 8728              IN.ENRGY.ELEC.PERCAP.CONSMPN.NONUTLTS
## 8729                  IN.ENRGY.ELEC.PERCAP.CONSMPN.TOTL
## 8730                            IN.ENRGY.GRID.RENEW.CAP
## 8731                      IN.ENRGY.TOWNS.ELECTRFIED.NUM
## 8732                  IN.ENRGY.TOWNS.ELECTRFIED.PERCENT
## 8733                                IN.ENRGY.TOWNS.TOTL
## 8734                         IN.ENRGY.VILLAG.ELECTRFIED
## 8735                 IN.ENRGY.VILLAG.ELECTRFIED.PERCENT
## 8736                               IN.ENRGY.VILLAG.TOTL
## 8737                                    IN.ENV.CO2.CONC
## 8738                             IN.ENV.CO2.PERCAP.CONC
## 8739                   IN.ENV.COASTALZONE.AGRILAND.AREA
## 8740                    IN.ENV.COASTALZONE.AGRILAND.PCT
## 8741                      IN.ENV.COASTALZONE.BUILT.AREA
## 8742                       IN.ENV.COASTALZONE.BUILT.PCT
## 8743                     IN.ENV.COASTALZONE.FOREST.AREA
## 8744                      IN.ENV.COASTALZONE.FOREST.PCT
## 8745                IN.ENV.COASTALZONE.OTHFEATURES.AREA
## 8746                 IN.ENV.COASTALZONE.OTHFEATURES.PCT
## 8747                  IN.ENV.COASTALZONE.SHORELAND.AREA
## 8748                   IN.ENV.COASTALZONE.SHORELAND.PCT
## 8749                  IN.ENV.COASTALZONE.WASTELAND.AREA
## 8750                   IN.ENV.COASTALZONE.WASTELAND.PCT
## 8751                IN.ENV.COASTALZONE.WATERBODIES.AREA
## 8752                 IN.ENV.COASTALZONE.WATERBODIES.PCT
## 8753                    IN.ENV.COASTALZONE.WETLAND.AREA
## 8754                     IN.ENV.COASTALZONE.WETLAND.PCT
## 8755                            IN.ENV.CROPINTENSIT.PCT
## 8756                                 IN.ENV.FOREST.AREA
## 8757                                  IN.ENV.FOREST.PCT
## 8758                                    IN.ENV.GEO.AREA
## 8759                            IN.ENV.GROSS.IRRIG.AREA
## 8760                          IN.ENV.IRRIGTOCROPPED.PCT
## 8761                              IN.ENV.NET.IRRIG.AREA
## 8762                                    IN.ENV.NO2.CONC
## 8763                          IN.ENV.NOCULTIVATION.AREA
## 8764                       IN.ENV.OTHR.UNCULTIVABL.AREA
## 8765                                     IN.ENV.PM.CONC
## 8766                                    IN.ENV.SO2.CONC
## 8767                                IN.FIN.COMMBANK.NUM
## 8768                                IN.FIN.FININCL.INDX
## 8769                           IN.FIN.HH.BNKG.SRVC.RURL
## 8770                           IN.FIN.HH.BNKG.SRVC.TOTL
## 8771                           IN.FIN.HH.BNKG.SRVC.URBN
## 8772                                     IN.FIN.HH.RURL
## 8773                                     IN.FIN.HH.TOTL
## 8774                                     IN.FIN.HH.URBN
## 8775                                 IN.FIN.POP.PERBANK
## 8776                               IN.HLTH.AUXNURSE.NUM
## 8777                                    IN.HLTH.CHC.NUM
## 8778                             IN.HLTH.DISTHOSPTL.NUM
## 8779                               IN.HLTH.DOCS.PER100K
## 8780                         IN.HLTH.GOVHOSPTL.BEDS.NUM
## 8781                     IN.HLTH.GOVHOSPTL.BEDS.PER100K
## 8782                              IN.HLTH.GOVHOSPTL.NUM
## 8783                          IN.HLTH.GOVHOSPTL.PER100K
## 8784                               IN.HLTH.HIVDEATH.EST
## 8785                           IN.HLTH.HIVINFECTION.EST
## 8786                              IN.HLTH.HLTHSTAFF.NUM
## 8787                              IN.HLTH.MALARIA.CASES
## 8788                              IN.HLTH.MALARIA.DEATH
## 8789                                 IN.HLTH.SUBCTR.NUM
## 8790                                  IN.IS.RRS.ELEC.KM
## 8791                                IN.IS.RRS.FRGT.LEAD
## 8792                                IN.IS.RRS.FRGT.RATE
## 8793                    IN.IS.RRS.FRGT.RVENU.NET.TON.KM
## 8794                               IN.IS.RRS.FRGT.SPEED
## 8795                           IN.IS.RRS.FRGT.TONS.ORIG
## 8796                                  IN.IS.RRS.LOCO.NO
## 8797                           IN.IS.RRS.LOCO.TRACT.KG3
## 8798                           IN.IS.RRS.PASG.KM.NONSUB
## 8799                              IN.IS.RRS.PASG.KM.SUB
## 8800                             IN.IS.RRS.PASG.KM.TOTL
## 8801                                   IN.IS.RRS.RUN.KM
## 8802                                  IN.IS.RRS.TOTL.KM
## 8803                          IN.IS.RRS.TRKDENSITY.NTKM
## 8804                         IN.IS.RRS.TRKDENSITY.TRAIN
## 8805                                IN.IS.RRS.WAGN.LEAD
## 8806                    IN.IS.RRS.WAGN.NTKM.PER.WAGNDAY
## 8807                               IN.IS.RRS.WAGN.USAGE
## 8808                                 IN.IS.RRS.WAGON.NO
## 8809                           IN.IS.RRSTRKDENSITY.PASG
## 8810                                   IN.LABR.LABR.MYS
## 8811                                  IN.LABR.LFPR.TOTL
## 8812                             IN.LABR.LFPR.TOTL.DIPL
## 8813                          IN.LABR.LFPR.TOTL.HSCNDRY
## 8814                            IN.LABR.LFPR.TOTL.MIDDL
## 8815                         IN.LABR.LFPR.TOTL.NOTLITRT
## 8816                               IN.LABR.LFPR.TOTL.PG
## 8817                           IN.LABR.LFPR.TOTL.PRIMRY
## 8818                           IN.LABR.LFPR.TOTL.SCNDRY
## 8819                       IN.POV.ASSETS.LANDMOBILE.PCT
## 8820                                IN.POV.HCR.EST.RURL
## 8821                                IN.POV.HCR.EST.TOTL
## 8822                                IN.POV.HCR.EST.URBN
## 8823                 IN.POV.HH.ASSETS.COMP.INTERNET.PCT
## 8824               IN.POV.HH.ASSETS.COMP.NOINTERNET.PCT
## 8825                     IN.POV.HH.ASSETS.COMPUTERS.PCT
## 8826                 IN.POV.HH.ASSETS.LANDLINEPHONE.PCT
## 8827                   IN.POV.HH.ASSETS.MOBILEPHONE.PCT
## 8828                               IN.POV.HH.ASSETS.NUM
## 8829                         IN.POV.HH.ASSETS.PHONE.PCT
## 8830                               IN.POV.HH.DRKNGWATER
## 8831                          IN.POV.HH.DRKNGWATER.AWAY
## 8832                          IN.POV.HH.DRKNGWATER.NEAR
## 8833                        IN.POV.HH.DRKNGWATER.WITHIN
## 8834                     IN.POV.HH.DRNKNGWATER.RURL.PCT
## 8835                     IN.POV.HH.DRNKNGWATER.TOTL.PCT
## 8836                     IN.POV.HH.DRNKNGWATER.URBN.PCT
## 8837                                IN.POV.HH.SLUMS.NUM
## 8838                             IN.POV.HOUSNG.URBN.NUM
## 8839                                IN.POV.INF.MORTRATE
## 8840                          IN.POV.INF.MORTRATE.UNDR5
## 8841                              IN.POV.LIT.RAT.FEMALE
## 8842                                IN.POV.LIT.RAT.MALE
## 8843                                IN.POV.LIT.RAT.RURL
## 8844                    IN.POV.LIT.RAT.SLUMS.FEMALE.PCT
## 8845                      IN.POV.LIT.RAT.SLUMS.MALE.PCT
## 8846                      IN.POV.LIT.RAT.SLUMS.TOTL.PCT
## 8847                                IN.POV.LIT.RAT.TOTL
## 8848                                IN.POV.LIT.RAT.URBN
## 8849                              IN.POV.LTRIN.POV.AWAY
## 8850                            IN.POV.LTRIN.POV.WITHIN
## 8851                       IN.POV.MIGRNTS.5TO9YEARS.NUM
## 8852                IN.POV.MIGRNTS.FEMALE.1TO4YEARS.NUM
## 8853                IN.POV.MIGRNTS.FEMALE.5TO9YEARS.NUM
## 8854                          IN.POV.MIGRNTS.FEMALE.NUM
## 8855               IN.POV.MIGRNTS.FEMALE.UNDER1YEAR.NUM
## 8856                  IN.POV.MIGRNTS.MALE.1TO4YEARS.NUM
## 8857                  IN.POV.MIGRNTS.MALE.5TO9YEARS.NUM
## 8858                            IN.POV.MIGRNTS.MALE.NUM
## 8859                 IN.POV.MIGRNTS.MALE.UNDER1YEAR.NUM
## 8860                  IN.POV.MIGRNTS.TOTL.1TO4YEARS.NUM
## 8861                            IN.POV.MIGRNTS.TOTL.NUM
## 8862                 IN.POV.MIGRNTS.TOTL.UNDER1YEAR.NUM
## 8863                         IN.POV.SLUM.POP.FEMALE.NUM
## 8864                           IN.POV.SLUM.POP.MALE.NUM
## 8865                           IN.POV.SLUM.POP.TOTL.NUM
## 8866                    IN.POV.WORKERS.SLUMS.FEMALE.NUM
## 8867                      IN.POV.WORKERS.SLUMS.MALE.NUM
## 8868                      IN.POV.WORKERS.SLUMS.TOTL.NUM
## 8869                      IN.TRANSPORT.NATLHWY.BELOWSTD
## 8870                       IN.TRANSPORT.NATLHWY.DBLLANE
## 8871                      IN.TRANSPORT.NATLHWY.MULTLANE
## 8872                    IN.TRANSPORT.NATLHWY.ONELANESTD
## 8873                          IN.TRANSPORT.NATLHWY.TOTL
## 8874                               IN.TRANSPORT.RD.URBN
## 8875                  IN.TRANSPORT.RD.URBN.BTCC.SURFACE
## 8876                      IN.TRANSPORT.RD.URBN.SURFACED
## 8877                   IN.TRANSPORT.RD.URBN.WBM.SURFACE
## 8878                    IN.TRANSPORT.RDCRASH.INJURD.NUM
## 8879                           IN.TRANSPORT.RDCRASH.NUM
## 8880                         IN.TRANSPORT.RURLRD.DENSIT
## 8881                         IN.TRANSPORT.TRAFDEATH.NUM
## 8882                         IN.TRANSPORT.URBNRD.DENSIT
## 8883                                        IP.IDS.NRCT
## 8884                                        IP.IDS.RSCT
## 8885                                     IP.JRN.ARTC.SC
## 8886                                        IP.PAT.NRES
## 8887                                        IP.PAT.RESD
## 8888                                        IP.TMK.AGGD
## 8889                                        IP.TMK.MDRD
## 8890                                        IP.TMK.NRCT
## 8891                                        IP.TMK.NRES
## 8892                                        IP.TMK.RESD
## 8893                                        IP.TMK.RSCT
## 8894                                        IP.TMK.TOTL
## 8895                                          IPTOTNSKD
## 8896                                          IPTOTSAKD
## 8897                                     IQ.CPA.BREG.XQ
## 8898                                     IQ.CPA.DEBT.XQ
## 8899                                     IQ.CPA.ECON.XQ
## 8900                                     IQ.CPA.ENVR.XQ
## 8901                                     IQ.CPA.FINQ.XQ
## 8902                                     IQ.CPA.FINS.XQ
## 8903                                     IQ.CPA.FISP.XQ
## 8904                                     IQ.CPA.GNDR.XQ
## 8905                                     IQ.CPA.HRES.XQ
## 8906                                     IQ.CPA.IRAI.XQ
## 8907                                     IQ.CPA.MACR.XQ
## 8908                                     IQ.CPA.PADM.XQ
## 8909                                     IQ.CPA.PRES.XQ
## 8910                                     IQ.CPA.PROP.XQ
## 8911                                     IQ.CPA.PROT.XQ
## 8912                                     IQ.CPA.PUBS.XQ
## 8913                                     IQ.CPA.REVN.XQ
## 8914                                     IQ.CPA.SOCI.XQ
## 8915                                     IQ.CPA.STRC.XQ
## 8916                                     IQ.CPA.TRAD.XQ
## 8917                                     IQ.CPA.TRAN.XQ
## 8918                                     IQ.ICR.RISK.XQ
## 8919                                     IQ.PPN.REGQ.S0
## 8920                                     IQ.PPN.REGQ.S1
## 8921                                     IQ.PPN.REGQ.S2
## 8922                                     IQ.PPN.REGQ.S3
## 8923                                        IQ.SCI.MTHD
## 8924                                        IQ.SCI.OVRL
## 8925                                        IQ.SCI.PRDC
## 8926                                        IQ.SCI.SRCE
## 8927                                        IQ.SPI.OVRL
## 8928                                        IQ.SPI.PIL1
## 8929                                        IQ.SPI.PIL2
## 8930                                        IQ.SPI.PIL3
## 8931                                        IQ.SPI.PIL4
## 8932                                        IQ.SPI.PIL5
## 8933                                     IQ.WEF.CUST.XQ
## 8934                                     IQ.WEF.PORT.XQ
## 8935                                        IS.AIR.DPRT
## 8936                                     IS.AIR.DPRT.P3
## 8937                                  IS.AIR.GOOD.MT.K1
## 8938                                        IS.AIR.PSGR
## 8939                                     IS.AIR.PSGR.P3
## 8940                                     IS.ROD.DESL.KT
## 8941                                     IS.ROD.DESL.PC
## 8942                                     IS.ROD.DNST.K2
## 8943                                     IS.ROD.ENGY.KT
## 8944                                     IS.ROD.ENGY.PC
## 8945                                     IS.ROD.ENGY.ZS
## 8946                                  IS.ROD.GOOD.MT.K6
## 8947                                     IS.ROD.NORM.XD
## 8948                                     IS.ROD.PAVE.ZS
## 8949                                     IS.ROD.PSGR.K6
## 8950                                     IS.ROD.SGAS.KT
## 8951                                     IS.ROD.SGAS.PC
## 8952                                     IS.ROD.TOTL.KM
## 8953                                        IS.ROD.TRAF
## 8954                                     IS.RRS.DESL.ZS
## 8955                                        IS.RRS.DNST
## 8956                                     IS.RRS.ELEC.KM
## 8957                                  IS.RRS.EMPL.TU.ZS
## 8958                                     IS.RRS.GOOD.KM
## 8959                               IS.RRS.GOOD.KM.PP.ZS
## 8960                                  IS.RRS.GOOD.MT.K6
## 8961                               IS.RRS.PASG.K2.PP.ZS
## 8962                                     IS.RRS.PASG.KM
## 8963                                     IS.RRS.TOTL.KM
## 8964                                     IS.RRS.TRFF.PF
## 8965                                     IS.SHP.GCNW.XQ
## 8966                                     IS.SHP.GOOD.TU
## 8967                                     IS.VEH.2CYL.P3
## 8968                                     IS.VEH.NVEH.P3
## 8969                                     IS.VEH.PCAR.P3
## 8970                                     IS.VEH.ROAD.K1
## 8971                                     IT.BBD.USEC.CD
## 8972                                     IT.CEL.COVR.ZS
## 8973                                        IT.CEL.SETS
## 8974                                     IT.CEL.SETS.P2
## 8975                                     IT.CEL.SETS.P3
## 8976                                     IT.CEL.USEC.CD
## 8977                                 IT.CELL.3MIN.CD.OP
## 8978                                 IT.CELL.3MIN.CD.PK
## 8979                                 IT.CELL.3MIN.CN.OP
## 8980                                 IT.CELL.3MIN.CN.PK
## 8981                                    IT.CELL.MSUB.CD
## 8982                                    IT.CELL.MSUB.CN
## 8983                                 IT.CELL.PO.CONN.CD
## 8984                                 IT.CELL.PO.CONN.CN
## 8985                                 IT.CELL.PR.CONN.CD
## 8986                                 IT.CELL.PR.CONN.CN
## 8987                                        IT.CMP.PCMP
## 8988                                     IT.CMP.PCMP.ED
## 8989                                     IT.CMP.PCMP.P2
## 8990                                     IT.CMP.PCMP.P3
## 8991                                     IT.FAX.MACH.P3
## 8992                                     IT.INT.TRAF.MN
## 8993                                  IT.INT.TRAF.MN.PS
## 8994                                     IT.INT.TTRF.MN
## 8995                                  IT.INT.TTRF.MN.PC
## 8996                                     IT.MBL.USEC.CD
## 8997                                  IT.MLT.3MIN.CD.OP
## 8998                                  IT.MLT.3MIN.CD.PK
## 8999                                  IT.MLT.3MIN.CD.US
## 9000                                  IT.MLT.3MIN.CN.OP
## 9001                                  IT.MLT.3MIN.CN.PK
## 9002                                    IT.MLT.BCONN.CD
## 9003                                    IT.MLT.BCONN.CN
## 9004                                     IT.MLT.BSUB.CD
## 9005                                     IT.MLT.BSUB.CN
## 9006                                     IT.MLT.CLCL.CD
## 9007                                     IT.MLT.CONN.CD
## 9008                                     IT.MLT.CONN.CN
## 9009                                        IT.MLT.EMPL
## 9010                                     IT.MLT.FALT.CL
## 9011                                     IT.MLT.FALT.M2
## 9012                                     IT.MLT.INVS.CD
## 9013                                     IT.MLT.INVS.CN
## 9014                                     IT.MLT.LCTY.P3
## 9015                                        IT.MLT.MAIN
## 9016                                     IT.MLT.MAIN.P2
## 9017                                     IT.MLT.MAIN.P3
## 9018                                     IT.MLT.REVN.CD
## 9019                                     IT.MLT.REVN.CN
## 9020                                     IT.MLT.REVN.ZS
## 9021                                     IT.MLT.RSUB.CD
## 9022                                     IT.MLT.RSUB.CN
## 9023                                     IT.MLT.USEC.CD
## 9024                                        IT.MLT.WAIT
## 9025                                     IT.MLT.WAIT.P3
## 9026                                     IT.MLT.WAIT.YR
## 9027                                      IT.MOB.COV.ZS
## 9028                                     IT.MOB.INVS.CD
## 9029                                     IT.MOB.INVS.CN
## 9030                                     IT.MOB.REVN.CD
## 9031                                     IT.MOB.REVN.CN
## 9032                                        IT.NET.BBND
## 9033                                     IT.NET.BBND.P2
## 9034                                     IT.NET.BBND.P3
## 9035                                        IT.NET.BNDW
## 9036                                     IT.NET.BNDW.PC
## 9037                                     IT.NET.CONN.CD
## 9038                                     IT.NET.CONN.CN
## 9039                                     IT.NET.EDUC.ZS
## 9040                                     IT.NET.HOST.P4
## 9041                                     IT.NET.ISPC.CD
## 9042                                        IT.NET.SECR
## 9043                                     IT.NET.SECR.P6
## 9044                                      IT.NET.SUB.CD
## 9045                                      IT.NET.SUB.CN
## 9046                                     IT.NET.TELC.CD
## 9047                                     IT.NET.USEC.CD
## 9048                                     IT.NET.USEC.ZS
## 9049                                        IT.NET.USER
## 9050                                     IT.NET.USER.P2
## 9051                                     IT.NET.USER.P3
## 9052                                     IT.NET.USER.ZS
## 9053                                      IT.PAY.PHONES
## 9054                                   IT.PAY.PHONES.P3
## 9055                                      IT.PC.HOUS.ZS
## 9056                                     IT.PRT.NEWS.P3
## 9057                                     IT.RAD.HOUS.ZS
## 9058                                        IT.RAD.SETS
## 9059                                     IT.RAD.SETS.P3
## 9060                                     IT.RES.USEC.CD
## 9061                                     IT.TEL.EMPL.TO
## 9062                                     IT.TEL.HOUS.ZS
## 9063                                     IT.TEL.INVS.CD
## 9064                                     IT.TEL.INVS.CN
## 9065                                  IT.TEL.INVS.RV.ZS
## 9066                                     IT.TEL.REVN.CD
## 9067                                     IT.TEL.REVN.CN
## 9068                                  IT.TEL.REVN.GD.ZS
## 9069                                        IT.TEL.TOTL
## 9070                                     IT.TEL.TOTL.EM
## 9071                                     IT.TEL.TOTL.P2
## 9072                                     IT.TEL.TOTL.P3
## 9073                                     IT.TEL.UNMT.ZS
## 9074                                      IT.TELC.IM.CD
## 9075                                      IT.TELC.XP.CD
## 9076                                     IT.TVS.CABL.P3
## 9077                                     IT.TVS.HOUS.ZS
## 9078                                     IT.TVS.SETS.P3
## 9079                                        JI.AGE.MPYR
## 9080                                     JI.AGE.MPYR.FE
## 9081                                     JI.AGE.MPYR.HE
## 9082                                     JI.AGE.MPYR.LE
## 9083                                     JI.AGE.MPYR.MA
## 9084                                     JI.AGE.MPYR.OL
## 9085                                     JI.AGE.MPYR.RU
## 9086                                     JI.AGE.MPYR.UR
## 9087                                     JI.AGE.MPYR.YG
## 9088                                        JI.AGE.SELF
## 9089                                     JI.AGE.SELF.FE
## 9090                                     JI.AGE.SELF.HE
## 9091                                     JI.AGE.SELF.LE
## 9092                                     JI.AGE.SELF.MA
## 9093                                     JI.AGE.SELF.OL
## 9094                                     JI.AGE.SELF.RU
## 9095                                     JI.AGE.SELF.UR
## 9096                                     JI.AGE.SELF.YG
## 9097                                        JI.AGE.TOTL
## 9098                                     JI.AGE.TOTL.FE
## 9099                                     JI.AGE.TOTL.HE
## 9100                                     JI.AGE.TOTL.LE
## 9101                                     JI.AGE.TOTL.MA
## 9102                                     JI.AGE.TOTL.OL
## 9103                                     JI.AGE.TOTL.RU
## 9104                                     JI.AGE.TOTL.UR
## 9105                                     JI.AGE.TOTL.YG
## 9106                                        JI.AGE.WAGE
## 9107                                     JI.AGE.WAGE.FE
## 9108                                     JI.AGE.WAGE.HE
## 9109                                     JI.AGE.WAGE.LE
## 9110                                     JI.AGE.WAGE.MA
## 9111                                     JI.AGE.WAGE.OL
## 9112                                     JI.AGE.WAGE.RU
## 9113                                     JI.AGE.WAGE.UR
## 9114                                     JI.AGE.WAGE.YG
## 9115                                        JI.AGE.WORK
## 9116                                     JI.AGE.WORK.FE
## 9117                                     JI.AGE.WORK.HE
## 9118                                     JI.AGE.WORK.LE
## 9119                                     JI.AGE.WORK.MA
## 9120                                     JI.AGE.WORK.OL
## 9121                                     JI.AGE.WORK.RU
## 9122                                     JI.AGE.WORK.UR
## 9123                                     JI.AGE.WORK.YG
## 9124                                        JI.AGR.AGES
## 9125                                     JI.AGR.AGES.FE
## 9126                                     JI.AGR.AGES.HE
## 9127                                     JI.AGR.AGES.LE
## 9128                                     JI.AGR.AGES.MA
## 9129                                     JI.AGR.AGES.OL
## 9130                                     JI.AGR.AGES.RU
## 9131                                     JI.AGR.AGES.UR
## 9132                                     JI.AGR.AGES.YG
## 9133                                  JI.AGR.WAGE.FE.ZS
## 9134                                  JI.AGR.WAGE.HE.ZS
## 9135                                  JI.AGR.WAGE.LE.ZS
## 9136                                  JI.AGR.WAGE.MA.ZS
## 9137                                  JI.AGR.WAGE.MD.CN
## 9138                               JI.AGR.WAGE.MD.FE.CN
## 9139                               JI.AGR.WAGE.MD.HE.CN
## 9140                               JI.AGR.WAGE.MD.LE.CN
## 9141                               JI.AGR.WAGE.MD.MA.CN
## 9142                               JI.AGR.WAGE.MD.OL.CN
## 9143                               JI.AGR.WAGE.MD.RU.CN
## 9144                               JI.AGR.WAGE.MD.UR.CN
## 9145                               JI.AGR.WAGE.MD.YG.CN
## 9146                                  JI.AGR.WAGE.OL.ZS
## 9147                                  JI.AGR.WAGE.RU.ZS
## 9148                                  JI.AGR.WAGE.UR.ZS
## 9149                                  JI.AGR.WAGE.YG.ZS
## 9150                                     JI.AGR.WAGE.ZS
## 9151                                        JI.EDU.17UP
## 9152                                     JI.EDU.17UP.FE
## 9153                                     JI.EDU.17UP.HE
## 9154                                     JI.EDU.17UP.LE
## 9155                                     JI.EDU.17UP.MA
## 9156                                     JI.EDU.17UP.OL
## 9157                                     JI.EDU.17UP.RU
## 9158                                     JI.EDU.17UP.UR
## 9159                                     JI.EDU.17UP.YG
## 9160                                  JI.EMP.1524.FE.ZS
## 9161                                  JI.EMP.1524.HE.ZS
## 9162                                  JI.EMP.1524.LE.ZS
## 9163                                  JI.EMP.1524.MA.ZS
## 9164                                  JI.EMP.1524.RU.ZS
## 9165                                  JI.EMP.1524.UR.ZS
## 9166                                     JI.EMP.1524.ZS
## 9167                                  JI.EMP.1564.FE.ZS
## 9168                                  JI.EMP.1564.HE.ZS
## 9169                                  JI.EMP.1564.LE.ZS
## 9170                                  JI.EMP.1564.MA.ZS
## 9171                                  JI.EMP.1564.OL.ZS
## 9172                                  JI.EMP.1564.RU.ZS
## 9173                                  JI.EMP.1564.UR.ZS
## 9174                                  JI.EMP.1564.YG.ZS
## 9175                                     JI.EMP.1564.ZS
## 9176                                  JI.EMP.AGRI.FE.ZS
## 9177                                  JI.EMP.AGRI.HE.ZS
## 9178                                  JI.EMP.AGRI.LE.ZS
## 9179                                  JI.EMP.AGRI.MA.ZS
## 9180                                  JI.EMP.AGRI.OL.ZS
## 9181                                  JI.EMP.AGRI.RU.ZS
## 9182                                  JI.EMP.AGRI.UR.ZS
## 9183                                  JI.EMP.AGRI.YG.ZS
## 9184                                     JI.EMP.AGRI.ZS
## 9185                                  JI.EMP.ARFC.FE.ZS
## 9186                                  JI.EMP.ARFC.HE.ZS
## 9187                                  JI.EMP.ARFC.LE.ZS
## 9188                                  JI.EMP.ARFC.MA.ZS
## 9189                                  JI.EMP.ARFC.OL.ZS
## 9190                                  JI.EMP.ARFC.RU.ZS
## 9191                                  JI.EMP.ARFC.UR.ZS
## 9192                                  JI.EMP.ARFC.YG.ZS
## 9193                                     JI.EMP.ARFC.ZS
## 9194                                  JI.EMP.CLRK.FE.ZS
## 9195                                  JI.EMP.CLRK.HE.ZS
## 9196                                  JI.EMP.CLRK.LE.ZS
## 9197                                  JI.EMP.CLRK.MA.ZS
## 9198                                  JI.EMP.CLRK.OL.ZS
## 9199                                  JI.EMP.CLRK.RU.ZS
## 9200                                  JI.EMP.CLRK.UR.ZS
## 9201                                  JI.EMP.CLRK.YG.ZS
## 9202                                     JI.EMP.CLRK.ZS
## 9203                                  JI.EMP.CNST.FE.ZS
## 9204                                  JI.EMP.CNST.HE.ZS
## 9205                                  JI.EMP.CNST.LE.ZS
## 9206                                  JI.EMP.CNST.MA.ZS
## 9207                                  JI.EMP.CNST.OL.ZS
## 9208                                  JI.EMP.CNST.RU.ZS
## 9209                                  JI.EMP.CNST.UR.ZS
## 9210                                  JI.EMP.CNST.YG.ZS
## 9211                                     JI.EMP.CNST.ZS
## 9212                                  JI.EMP.COME.FE.ZS
## 9213                                  JI.EMP.COME.HE.ZS
## 9214                                  JI.EMP.COME.LE.ZS
## 9215                                  JI.EMP.COME.MA.ZS
## 9216                                  JI.EMP.COME.OL.ZS
## 9217                                  JI.EMP.COME.RU.ZS
## 9218                                  JI.EMP.COME.UR.ZS
## 9219                                  JI.EMP.COME.YG.ZS
## 9220                                     JI.EMP.COME.ZS
## 9221                                  JI.EMP.CONT.FE.ZS
## 9222                                  JI.EMP.CONT.HE.ZS
## 9223                                  JI.EMP.CONT.LE.ZS
## 9224                                  JI.EMP.CONT.MA.ZS
## 9225                                  JI.EMP.CONT.OL.ZS
## 9226                                  JI.EMP.CONT.RU.ZS
## 9227                                  JI.EMP.CONT.UR.ZS
## 9228                                  JI.EMP.CONT.YG.ZS
## 9229                                     JI.EMP.CONT.ZS
## 9230                                  JI.EMP.CRFT.FE.ZS
## 9231                                  JI.EMP.CRFT.HE.ZS
## 9232                                  JI.EMP.CRFT.LE.ZS
## 9233                                  JI.EMP.CRFT.MA.ZS
## 9234                                  JI.EMP.CRFT.OL.ZS
## 9235                                  JI.EMP.CRFT.RU.ZS
## 9236                                  JI.EMP.CRFT.UR.ZS
## 9237                                  JI.EMP.CRFT.YG.ZS
## 9238                                     JI.EMP.CRFT.ZS
## 9239                                  JI.EMP.ELEC.FE.ZS
## 9240                                  JI.EMP.ELEC.HE.ZS
## 9241                                  JI.EMP.ELEC.LE.ZS
## 9242                                  JI.EMP.ELEC.MA.ZS
## 9243                                  JI.EMP.ELEC.OL.ZS
## 9244                                  JI.EMP.ELEC.RU.ZS
## 9245                                  JI.EMP.ELEC.UR.ZS
## 9246                                  JI.EMP.ELEC.YG.ZS
## 9247                                     JI.EMP.ELEC.ZS
## 9248                                  JI.EMP.ELEM.FE.ZS
## 9249                                  JI.EMP.ELEM.HE.ZS
## 9250                                  JI.EMP.ELEM.LE.ZS
## 9251                                  JI.EMP.ELEM.MA.ZS
## 9252                                  JI.EMP.ELEM.OL.ZS
## 9253                                  JI.EMP.ELEM.RU.ZS
## 9254                                  JI.EMP.ELEM.UR.ZS
## 9255                                  JI.EMP.ELEM.YG.ZS
## 9256                                     JI.EMP.ELEM.ZS
## 9257                                  JI.EMP.FABU.FE.ZS
## 9258                                  JI.EMP.FABU.HE.ZS
## 9259                                  JI.EMP.FABU.LE.ZS
## 9260                                  JI.EMP.FABU.MA.ZS
## 9261                                  JI.EMP.FABU.OL.ZS
## 9262                                  JI.EMP.FABU.RU.ZS
## 9263                                  JI.EMP.FABU.UR.ZS
## 9264                                  JI.EMP.FABU.YG.ZS
## 9265                                     JI.EMP.FABU.ZS
## 9266                                  JI.EMP.HINS.FE.ZS
## 9267                                  JI.EMP.HINS.HE.ZS
## 9268                                  JI.EMP.HINS.LE.ZS
## 9269                                  JI.EMP.HINS.MA.ZS
## 9270                                  JI.EMP.HINS.OL.ZS
## 9271                                  JI.EMP.HINS.RU.ZS
## 9272                                  JI.EMP.HINS.UR.ZS
## 9273                                  JI.EMP.HINS.YG.ZS
## 9274                                     JI.EMP.HINS.ZS
## 9275                                  JI.EMP.IFRM.FE.ZS
## 9276                                  JI.EMP.IFRM.HE.ZS
## 9277                                  JI.EMP.IFRM.LE.ZS
## 9278                                  JI.EMP.IFRM.MA.ZS
## 9279                                  JI.EMP.IFRM.OL.ZS
## 9280                                  JI.EMP.IFRM.RU.ZS
## 9281                                  JI.EMP.IFRM.UR.ZS
## 9282                                  JI.EMP.IFRM.YG.ZS
## 9283                                     JI.EMP.IFRM.ZS
## 9284                                  JI.EMP.INDU.FE.ZS
## 9285                                  JI.EMP.INDU.HE.ZS
## 9286                                  JI.EMP.INDU.LE.ZS
## 9287                                  JI.EMP.INDU.MA.ZS
## 9288                                  JI.EMP.INDU.OL.ZS
## 9289                                  JI.EMP.INDU.RU.ZS
## 9290                                  JI.EMP.INDU.UR.ZS
## 9291                                  JI.EMP.INDU.YG.ZS
## 9292                                     JI.EMP.INDU.ZS
## 9293                                  JI.EMP.MACH.FE.ZS
## 9294                                  JI.EMP.MACH.HE.ZS
## 9295                                  JI.EMP.MACH.LE.ZS
## 9296                                  JI.EMP.MACH.MA.ZS
## 9297                                  JI.EMP.MACH.OL.ZS
## 9298                                  JI.EMP.MACH.RU.ZS
## 9299                                  JI.EMP.MACH.UR.ZS
## 9300                                  JI.EMP.MACH.YG.ZS
## 9301                                     JI.EMP.MACH.ZS
## 9302                                  JI.EMP.MANF.FE.ZS
## 9303                                  JI.EMP.MANF.HE.ZS
## 9304                                  JI.EMP.MANF.LE.ZS
## 9305                                  JI.EMP.MANF.MA.ZS
## 9306                                  JI.EMP.MANF.OL.ZS
## 9307                                  JI.EMP.MANF.RU.ZS
## 9308                                  JI.EMP.MANF.UR.ZS
## 9309                                  JI.EMP.MANF.YG.ZS
## 9310                                     JI.EMP.MANF.ZS
## 9311                                  JI.EMP.MINQ.FE.ZS
## 9312                                  JI.EMP.MINQ.HE.ZS
## 9313                                  JI.EMP.MINQ.LE.ZS
## 9314                                  JI.EMP.MINQ.MA.ZS
## 9315                                  JI.EMP.MINQ.OL.ZS
## 9316                                  JI.EMP.MINQ.RU.ZS
## 9317                                  JI.EMP.MINQ.UR.ZS
## 9318                                  JI.EMP.MINQ.YG.ZS
## 9319                                     JI.EMP.MINQ.ZS
## 9320                                  JI.EMP.MPYR.FE.ZS
## 9321                                  JI.EMP.MPYR.HE.ZS
## 9322                                  JI.EMP.MPYR.LE.ZS
## 9323                                  JI.EMP.MPYR.MA.ZS
## 9324                               JI.EMP.MPYR.NA.FE.ZS
## 9325                               JI.EMP.MPYR.NA.HE.ZS
## 9326                               JI.EMP.MPYR.NA.LE.ZS
## 9327                               JI.EMP.MPYR.NA.MA.ZS
## 9328                               JI.EMP.MPYR.NA.OL.ZS
## 9329                               JI.EMP.MPYR.NA.RU.ZS
## 9330                               JI.EMP.MPYR.NA.UR.ZS
## 9331                               JI.EMP.MPYR.NA.YG.ZS
## 9332                                  JI.EMP.MPYR.NA.ZS
## 9333                                  JI.EMP.MPYR.OL.ZS
## 9334                                  JI.EMP.MPYR.RU.ZS
## 9335                                  JI.EMP.MPYR.UR.ZS
## 9336                                  JI.EMP.MPYR.YG.ZS
## 9337                                     JI.EMP.MPYR.ZS
## 9338                               JI.EMP.NAGR.FE.HE.ZS
## 9339                               JI.EMP.NAGR.FE.LE.ZS
## 9340                               JI.EMP.NAGR.FE.OL.ZS
## 9341                               JI.EMP.NAGR.FE.RU.ZS
## 9342                               JI.EMP.NAGR.FE.UR.ZS
## 9343                               JI.EMP.NAGR.FE.YG.ZS
## 9344                                  JI.EMP.NAGR.FE.ZS
## 9345                               JI.EMP.NAGR.YG.FE.ZS
## 9346                               JI.EMP.NAGR.YG.HE.ZS
## 9347                               JI.EMP.NAGR.YG.LE.ZS
## 9348                               JI.EMP.NAGR.YG.MA.ZS
## 9349                               JI.EMP.NAGR.YG.RU.ZS
## 9350                               JI.EMP.NAGR.YG.UR.ZS
## 9351                                  JI.EMP.NAGR.YG.ZS
## 9352                                  JI.EMP.OSRV.FE.ZS
## 9353                                  JI.EMP.OSRV.HE.ZS
## 9354                                  JI.EMP.OSRV.LE.ZS
## 9355                                  JI.EMP.OSRV.MA.ZS
## 9356                                  JI.EMP.OSRV.OL.ZS
## 9357                                  JI.EMP.OSRV.RU.ZS
## 9358                                  JI.EMP.OSRV.UR.ZS
## 9359                                  JI.EMP.OSRV.YG.ZS
## 9360                                     JI.EMP.OSRV.ZS
## 9361                                  JI.EMP.PADM.FE.ZS
## 9362                                  JI.EMP.PADM.HE.ZS
## 9363                                  JI.EMP.PADM.LE.ZS
## 9364                                  JI.EMP.PADM.MA.ZS
## 9365                                  JI.EMP.PADM.OL.ZS
## 9366                                  JI.EMP.PADM.RU.ZS
## 9367                                  JI.EMP.PADM.UR.ZS
## 9368                                  JI.EMP.PADM.YG.ZS
## 9369                                     JI.EMP.PADM.ZS
## 9370                                  JI.EMP.PROF.FE.ZS
## 9371                                  JI.EMP.PROF.HE.ZS
## 9372                                  JI.EMP.PROF.LE.ZS
## 9373                                  JI.EMP.PROF.MA.ZS
## 9374                                  JI.EMP.PROF.OL.ZS
## 9375                                  JI.EMP.PROF.RU.ZS
## 9376                                  JI.EMP.PROF.UR.ZS
## 9377                                  JI.EMP.PROF.YG.ZS
## 9378                                     JI.EMP.PROF.ZS
## 9379                                  JI.EMP.PUBS.FE.ZS
## 9380                                  JI.EMP.PUBS.HE.ZS
## 9381                                  JI.EMP.PUBS.LE.ZS
## 9382                                  JI.EMP.PUBS.MA.ZS
## 9383                                  JI.EMP.PUBS.OL.ZS
## 9384                                  JI.EMP.PUBS.RU.ZS
## 9385                                  JI.EMP.PUBS.UR.ZS
## 9386                                  JI.EMP.PUBS.YG.ZS
## 9387                                     JI.EMP.PUBS.ZS
## 9388                                  JI.EMP.SELF.FE.ZS
## 9389                                  JI.EMP.SELF.HE.ZS
## 9390                                  JI.EMP.SELF.LE.ZS
## 9391                                  JI.EMP.SELF.MA.ZS
## 9392                               JI.EMP.SELF.NA.FE.ZS
## 9393                               JI.EMP.SELF.NA.HE.ZS
## 9394                               JI.EMP.SELF.NA.LE.ZS
## 9395                               JI.EMP.SELF.NA.MA.ZS
## 9396                               JI.EMP.SELF.NA.OL.ZS
## 9397                               JI.EMP.SELF.NA.RU.ZS
## 9398                               JI.EMP.SELF.NA.UR.ZS
## 9399                               JI.EMP.SELF.NA.YG.ZS
## 9400                                  JI.EMP.SELF.NA.ZS
## 9401                                  JI.EMP.SELF.OL.ZS
## 9402                                  JI.EMP.SELF.RU.ZS
## 9403                                  JI.EMP.SELF.UR.ZS
## 9404                                  JI.EMP.SELF.YG.ZS
## 9405                                     JI.EMP.SELF.ZS
## 9406                                  JI.EMP.SEOF.FE.ZS
## 9407                                  JI.EMP.SEOF.HE.ZS
## 9408                                  JI.EMP.SEOF.LE.ZS
## 9409                                  JI.EMP.SEOF.MA.ZS
## 9410                                  JI.EMP.SEOF.OL.ZS
## 9411                                  JI.EMP.SEOF.RU.ZS
## 9412                                  JI.EMP.SEOF.UR.ZS
## 9413                                  JI.EMP.SEOF.YG.ZS
## 9414                                     JI.EMP.SEOF.ZS
## 9415                                  JI.EMP.SERV.FE.ZS
## 9416                                  JI.EMP.SERV.HE.ZS
## 9417                                  JI.EMP.SERV.LE.ZS
## 9418                                  JI.EMP.SERV.MA.ZS
## 9419                                  JI.EMP.SERV.OL.ZS
## 9420                                  JI.EMP.SERV.RU.ZS
## 9421                                  JI.EMP.SERV.UR.ZS
## 9422                                  JI.EMP.SERV.YG.ZS
## 9423                                     JI.EMP.SERV.ZS
## 9424                                  JI.EMP.SKAG.FE.ZS
## 9425                                  JI.EMP.SKAG.HE.ZS
## 9426                                  JI.EMP.SKAG.LE.ZS
## 9427                                  JI.EMP.SKAG.MA.ZS
## 9428                                  JI.EMP.SKAG.OL.ZS
## 9429                                  JI.EMP.SKAG.RU.ZS
## 9430                                  JI.EMP.SKAG.UR.ZS
## 9431                                  JI.EMP.SKAG.YG.ZS
## 9432                                     JI.EMP.SKAG.ZS
## 9433                                  JI.EMP.SSEC.FE.ZS
## 9434                                  JI.EMP.SSEC.HE.ZS
## 9435                                  JI.EMP.SSEC.LE.ZS
## 9436                                  JI.EMP.SSEC.MA.ZS
## 9437                                  JI.EMP.SSEC.OL.ZS
## 9438                                  JI.EMP.SSEC.RU.ZS
## 9439                                  JI.EMP.SSEC.UR.ZS
## 9440                                  JI.EMP.SSEC.YG.ZS
## 9441                                     JI.EMP.SSEC.ZS
## 9442                                  JI.EMP.SVMK.FE.ZS
## 9443                                  JI.EMP.SVMK.HE.ZS
## 9444                                  JI.EMP.SVMK.LE.ZS
## 9445                                  JI.EMP.SVMK.MA.ZS
## 9446                                  JI.EMP.SVMK.OL.ZS
## 9447                                  JI.EMP.SVMK.RU.ZS
## 9448                                  JI.EMP.SVMK.UR.ZS
## 9449                                  JI.EMP.SVMK.YG.ZS
## 9450                                     JI.EMP.SVMK.ZS
## 9451                                  JI.EMP.TECH.FE.ZS
## 9452                                  JI.EMP.TECH.HE.ZS
## 9453                                  JI.EMP.TECH.LE.ZS
## 9454                                  JI.EMP.TECH.MA.ZS
## 9455                                  JI.EMP.TECH.OL.ZS
## 9456                                  JI.EMP.TECH.RU.ZS
## 9457                                  JI.EMP.TECH.UR.ZS
## 9458                                  JI.EMP.TECH.YG.ZS
## 9459                                     JI.EMP.TECH.ZS
## 9460                               JI.EMP.TOTL.SP.FE.ZS
## 9461                               JI.EMP.TOTL.SP.HE.ZS
## 9462                               JI.EMP.TOTL.SP.LE.ZS
## 9463                               JI.EMP.TOTL.SP.MA.ZS
## 9464                               JI.EMP.TOTL.SP.OL.ZS
## 9465                               JI.EMP.TOTL.SP.RU.ZS
## 9466                               JI.EMP.TOTL.SP.UR.ZS
## 9467                               JI.EMP.TOTL.SP.YG.ZS
## 9468                                  JI.EMP.TOTL.SP.ZS
## 9469                                  JI.EMP.TRCM.FE.ZS
## 9470                                  JI.EMP.TRCM.HE.ZS
## 9471                                  JI.EMP.TRCM.LE.ZS
## 9472                                  JI.EMP.TRCM.MA.ZS
## 9473                                  JI.EMP.TRCM.OL.ZS
## 9474                                  JI.EMP.TRCM.RU.ZS
## 9475                                  JI.EMP.TRCM.UR.ZS
## 9476                                  JI.EMP.TRCM.YG.ZS
## 9477                                     JI.EMP.TRCM.ZS
## 9478                                  JI.EMP.UNPD.FE.ZS
## 9479                                  JI.EMP.UNPD.HE.ZS
## 9480                                  JI.EMP.UNPD.LE.ZS
## 9481                                  JI.EMP.UNPD.MA.ZS
## 9482                               JI.EMP.UNPD.NA.FE.ZS
## 9483                               JI.EMP.UNPD.NA.HE.ZS
## 9484                               JI.EMP.UNPD.NA.LE.ZS
## 9485                               JI.EMP.UNPD.NA.MA.ZS
## 9486                               JI.EMP.UNPD.NA.OL.ZS
## 9487                               JI.EMP.UNPD.NA.RU.ZS
## 9488                               JI.EMP.UNPD.NA.UR.ZS
## 9489                               JI.EMP.UNPD.NA.YG.ZS
## 9490                                  JI.EMP.UNPD.NA.ZS
## 9491                                  JI.EMP.UNPD.OL.ZS
## 9492                                  JI.EMP.UNPD.RU.ZS
## 9493                                  JI.EMP.UNPD.UR.ZS
## 9494                                  JI.EMP.UNPD.YG.ZS
## 9495                                     JI.EMP.UNPD.ZS
## 9496                                  JI.EMP.UPSE.FE.ZS
## 9497                                  JI.EMP.UPSE.HE.ZS
## 9498                                  JI.EMP.UPSE.LE.ZS
## 9499                                  JI.EMP.UPSE.MA.ZS
## 9500                                  JI.EMP.UPSE.OL.ZS
## 9501                                  JI.EMP.UPSE.RU.ZS
## 9502                                  JI.EMP.UPSE.UR.ZS
## 9503                                  JI.EMP.UPSE.YG.ZS
## 9504                                     JI.EMP.UPSE.ZS
## 9505                          JI.EMP.WAGE.1524.NA.FE.ZS
## 9506                          JI.EMP.WAGE.1524.NA.HE.ZS
## 9507                          JI.EMP.WAGE.1524.NA.LE.ZS
## 9508                          JI.EMP.WAGE.1524.NA.MA.ZS
## 9509                          JI.EMP.WAGE.1524.NA.RU.ZS
## 9510                          JI.EMP.WAGE.1524.NA.UR.ZS
## 9511                             JI.EMP.WAGE.1524.NA.ZS
## 9512                                  JI.EMP.WAGE.FE.ZS
## 9513                                  JI.EMP.WAGE.HE.ZS
## 9514                                  JI.EMP.WAGE.LE.ZS
## 9515                                  JI.EMP.WAGE.MA.ZS
## 9516                               JI.EMP.WAGE.NA.FE.ZS
## 9517                               JI.EMP.WAGE.NA.HE.ZS
## 9518                               JI.EMP.WAGE.NA.LE.ZS
## 9519                               JI.EMP.WAGE.NA.MA.ZS
## 9520                               JI.EMP.WAGE.NA.OL.ZS
## 9521                               JI.EMP.WAGE.NA.RU.ZS
## 9522                               JI.EMP.WAGE.NA.UR.ZS
## 9523                               JI.EMP.WAGE.NA.YG.ZS
## 9524                                  JI.EMP.WAGE.NA.ZS
## 9525                                  JI.EMP.WAGE.OL.ZS
## 9526                                  JI.EMP.WAGE.RU.ZS
## 9527                                  JI.EMP.WAGE.UR.ZS
## 9528                                  JI.EMP.WAGE.YG.ZS
## 9529                                     JI.EMP.WAGE.ZS
## 9530                                  JI.ENR.0616.FE.ZS
## 9531                                  JI.ENR.0616.HE.ZS
## 9532                                  JI.ENR.0616.LE.ZS
## 9533                                  JI.ENR.0616.MA.ZS
## 9534                                  JI.ENR.0616.RU.ZS
## 9535                                  JI.ENR.0616.UR.ZS
## 9536                                  JI.ENR.0616.YG.ZS
## 9537                                     JI.ENR.0616.ZS
## 9538                                        JI.IND.AGES
## 9539                                     JI.IND.AGES.FE
## 9540                                     JI.IND.AGES.HE
## 9541                                     JI.IND.AGES.LE
## 9542                                     JI.IND.AGES.MA
## 9543                                     JI.IND.AGES.OL
## 9544                                     JI.IND.AGES.RU
## 9545                                     JI.IND.AGES.UR
## 9546                                     JI.IND.AGES.YG
## 9547                                  JI.IND.WAGE.FE.ZS
## 9548                                  JI.IND.WAGE.HE.ZS
## 9549                                  JI.IND.WAGE.LE.ZS
## 9550                                  JI.IND.WAGE.MA.ZS
## 9551                                  JI.IND.WAGE.MD.CN
## 9552                               JI.IND.WAGE.MD.FE.CN
## 9553                               JI.IND.WAGE.MD.HE.CN
## 9554                               JI.IND.WAGE.MD.LE.CN
## 9555                               JI.IND.WAGE.MD.MA.CN
## 9556                               JI.IND.WAGE.MD.OL.CN
## 9557                               JI.IND.WAGE.MD.RU.CN
## 9558                               JI.IND.WAGE.MD.UR.CN
## 9559                               JI.IND.WAGE.MD.YG.CN
## 9560                                  JI.IND.WAGE.OL.ZS
## 9561                                  JI.IND.WAGE.RU.ZS
## 9562                                  JI.IND.WAGE.UR.ZS
## 9563                                  JI.IND.WAGE.YG.ZS
## 9564                                     JI.IND.WAGE.ZS
## 9565                                  JI.JOB.MLTP.FE.ZS
## 9566                                  JI.JOB.MLTP.HE.ZS
## 9567                                  JI.JOB.MLTP.LE.ZS
## 9568                                  JI.JOB.MLTP.MA.ZS
## 9569                                  JI.JOB.MLTP.OL.ZS
## 9570                                  JI.JOB.MLTP.RU.ZS
## 9571                                  JI.JOB.MLTP.UR.ZS
## 9572                                  JI.JOB.MLTP.YG.ZS
## 9573                                     JI.JOB.MLTP.ZS
## 9574                                  JI.POP.0014.FE.ZS
## 9575                                  JI.POP.0014.HE.ZS
## 9576                                  JI.POP.0014.LE.ZS
## 9577                                  JI.POP.0014.MA.ZS
## 9578                                  JI.POP.0014.RU.ZS
## 9579                                  JI.POP.0014.UR.ZS
## 9580                                     JI.POP.0014.ZS
## 9581                                  JI.POP.1524.FE.ZS
## 9582                                  JI.POP.1524.HE.ZS
## 9583                                  JI.POP.1524.LE.ZS
## 9584                                  JI.POP.1524.MA.ZS
## 9585                                  JI.POP.1524.RU.ZS
## 9586                                  JI.POP.1524.UR.ZS
## 9587                                     JI.POP.1524.ZS
## 9588                                  JI.POP.1564.FE.ZS
## 9589                                  JI.POP.1564.HE.ZS
## 9590                                  JI.POP.1564.LE.ZS
## 9591                                  JI.POP.1564.MA.ZS
## 9592                                  JI.POP.1564.RU.ZS
## 9593                                  JI.POP.1564.UR.ZS
## 9594                                     JI.POP.1564.ZS
## 9595                                  JI.POP.2564.FE.ZS
## 9596                                  JI.POP.2564.HE.ZS
## 9597                                  JI.POP.2564.LE.ZS
## 9598                                  JI.POP.2564.MA.ZS
## 9599                                  JI.POP.2564.RU.ZS
## 9600                                  JI.POP.2564.UR.ZS
## 9601                                     JI.POP.2564.ZS
## 9602                                  JI.POP.65UP.FE.ZS
## 9603                                  JI.POP.65UP.HE.ZS
## 9604                                  JI.POP.65UP.LE.ZS
## 9605                                  JI.POP.65UP.MA.ZS
## 9606                                  JI.POP.65UP.RU.ZS
## 9607                                  JI.POP.65UP.UR.ZS
## 9608                                     JI.POP.65UP.ZS
## 9609                                        JI.POP.DPND
## 9610                                     JI.POP.DPND.OL
## 9611                                     JI.POP.DPND.YG
## 9612                                  JI.POP.NEDU.FE.ZS
## 9613                                  JI.POP.NEDU.LE.ZS
## 9614                                  JI.POP.NEDU.MA.ZS
## 9615                                  JI.POP.NEDU.OL.ZS
## 9616                                  JI.POP.NEDU.RU.ZS
## 9617                                  JI.POP.NEDU.UR.ZS
## 9618                                  JI.POP.NEDU.YG.ZS
## 9619                                     JI.POP.NEDU.ZS
## 9620                                  JI.POP.PRIM.FE.ZS
## 9621                                  JI.POP.PRIM.LE.ZS
## 9622                                  JI.POP.PRIM.MA.ZS
## 9623                                  JI.POP.PRIM.OL.ZS
## 9624                                  JI.POP.PRIM.RU.ZS
## 9625                                  JI.POP.PRIM.UR.ZS
## 9626                                  JI.POP.PRIM.YG.ZS
## 9627                                     JI.POP.PRIM.ZS
## 9628                                  JI.POP.SECO.FE.ZS
## 9629                                  JI.POP.SECO.HE.ZS
## 9630                                  JI.POP.SECO.MA.ZS
## 9631                                  JI.POP.SECO.OL.ZS
## 9632                               JI.POP.SECO.PO.FE.ZS
## 9633                               JI.POP.SECO.PO.HE.ZS
## 9634                               JI.POP.SECO.PO.MA.ZS
## 9635                               JI.POP.SECO.PO.OL.ZS
## 9636                               JI.POP.SECO.PO.RU.ZS
## 9637                               JI.POP.SECO.PO.UR.ZS
## 9638                               JI.POP.SECO.PO.YG.ZS
## 9639                                  JI.POP.SECO.PO.ZS
## 9640                                  JI.POP.SECO.RU.ZS
## 9641                                  JI.POP.SECO.UR.ZS
## 9642                                  JI.POP.SECO.YG.ZS
## 9643                                     JI.POP.SECO.ZS
## 9644                                        JI.POP.TOTL
## 9645                                     JI.POP.TOTL.FE
## 9646                                     JI.POP.TOTL.HE
## 9647                                     JI.POP.TOTL.LE
## 9648                                     JI.POP.TOTL.MA
## 9649                                     JI.POP.TOTL.OL
## 9650                                     JI.POP.TOTL.RU
## 9651                                     JI.POP.TOTL.UR
## 9652                                     JI.POP.TOTL.YG
## 9653                                  JI.POP.URBN.FE.ZS
## 9654                                  JI.POP.URBN.HE.ZS
## 9655                                  JI.POP.URBN.LE.ZS
## 9656                                  JI.POP.URBN.MA.ZS
## 9657                                  JI.POP.URBN.OL.ZS
## 9658                                  JI.POP.URBN.YG.ZS
## 9659                                     JI.POP.URBN.ZS
## 9660                                        JI.SRV.AGES
## 9661                                     JI.SRV.AGES.FE
## 9662                                     JI.SRV.AGES.HE
## 9663                                     JI.SRV.AGES.LE
## 9664                                     JI.SRV.AGES.MA
## 9665                                     JI.SRV.AGES.OL
## 9666                                     JI.SRV.AGES.RU
## 9667                                     JI.SRV.AGES.UR
## 9668                                     JI.SRV.AGES.YG
## 9669                                  JI.SRV.WAGE.FE.ZS
## 9670                                  JI.SRV.WAGE.HE.ZS
## 9671                                  JI.SRV.WAGE.LE.ZS
## 9672                                  JI.SRV.WAGE.MA.ZS
## 9673                                  JI.SRV.WAGE.MD.CN
## 9674                               JI.SRV.WAGE.MD.FE.CN
## 9675                               JI.SRV.WAGE.MD.HE.CN
## 9676                               JI.SRV.WAGE.MD.LE.CN
## 9677                               JI.SRV.WAGE.MD.MA.CN
## 9678                               JI.SRV.WAGE.MD.OL.CN
## 9679                               JI.SRV.WAGE.MD.RU.CN
## 9680                               JI.SRV.WAGE.MD.UR.CN
## 9681                               JI.SRV.WAGE.MD.YG.CN
## 9682                                  JI.SRV.WAGE.OL.ZS
## 9683                                  JI.SRV.WAGE.RU.ZS
## 9684                                  JI.SRV.WAGE.UR.ZS
## 9685                                  JI.SRV.WAGE.YG.ZS
## 9686                                     JI.SRV.WAGE.ZS
## 9687                               JI.TLF.1564.WK.FE.TM
## 9688                               JI.TLF.1564.WK.HE.TM
## 9689                               JI.TLF.1564.WK.LE.TM
## 9690                               JI.TLF.1564.WK.MA.TM
## 9691                               JI.TLF.1564.WK.OL.TM
## 9692                               JI.TLF.1564.WK.RU.TM
## 9693                                  JI.TLF.1564.WK.TM
## 9694                               JI.TLF.1564.WK.UR.TM
## 9695                               JI.TLF.1564.WK.YG.TM
## 9696                               JI.TLF.35BL.TM.FE.ZS
## 9697                               JI.TLF.35BL.TM.HE.ZS
## 9698                               JI.TLF.35BL.TM.LE.ZS
## 9699                               JI.TLF.35BL.TM.MA.ZS
## 9700                               JI.TLF.35BL.TM.OL.ZS
## 9701                               JI.TLF.35BL.TM.RU.ZS
## 9702                               JI.TLF.35BL.TM.UR.ZS
## 9703                               JI.TLF.35BL.TM.YG.ZS
## 9704                                  JI.TLF.35BL.TM.ZS
## 9705                               JI.TLF.48UP.TM.FE.ZS
## 9706                               JI.TLF.48UP.TM.HE.ZS
## 9707                               JI.TLF.48UP.TM.LE.ZS
## 9708                               JI.TLF.48UP.TM.MA.ZS
## 9709                               JI.TLF.48UP.TM.OL.ZS
## 9710                               JI.TLF.48UP.TM.RU.ZS
## 9711                               JI.TLF.48UP.TM.UR.ZS
## 9712                               JI.TLF.48UP.TM.YG.ZS
## 9713                                  JI.TLF.48UP.TM.ZS
## 9714                                  JI.TLF.ACTI.FE.ZS
## 9715                                  JI.TLF.ACTI.HE.ZS
## 9716                                  JI.TLF.ACTI.LE.ZS
## 9717                                  JI.TLF.ACTI.MA.ZS
## 9718                                  JI.TLF.ACTI.OL.ZS
## 9719                                  JI.TLF.ACTI.RU.ZS
## 9720                                  JI.TLF.ACTI.UR.ZS
## 9721                                  JI.TLF.ACTI.YG.ZS
## 9722                                     JI.TLF.ACTI.ZS
## 9723                                        JI.TLF.TOTL
## 9724                                     JI.TLF.TOTL.FE
## 9725                                     JI.TLF.TOTL.HE
## 9726                                     JI.TLF.TOTL.LE
## 9727                                     JI.TLF.TOTL.MA
## 9728                                     JI.TLF.TOTL.OL
## 9729                                     JI.TLF.TOTL.RU
## 9730                                     JI.TLF.TOTL.UR
## 9731                                     JI.TLF.TOTL.YG
## 9732                                  JI.UEM.1524.FE.ZS
## 9733                                  JI.UEM.1524.HE.ZS
## 9734                                  JI.UEM.1524.LE.ZS
## 9735                                  JI.UEM.1524.MA.ZS
## 9736                                  JI.UEM.1524.RU.ZS
## 9737                                  JI.UEM.1524.UR.ZS
## 9738                                     JI.UEM.1524.ZS
## 9739                                  JI.UEM.1564.FE.ZS
## 9740                                  JI.UEM.1564.HE.ZS
## 9741                                  JI.UEM.1564.LE.ZS
## 9742                                  JI.UEM.1564.MA.ZS
## 9743                                  JI.UEM.1564.OL.ZS
## 9744                                  JI.UEM.1564.RU.ZS
## 9745                                  JI.UEM.1564.UR.ZS
## 9746                                  JI.UEM.1564.YG.ZS
## 9747                                     JI.UEM.1564.ZS
## 9748                                  JI.UEM.NEET.FE.ZS
## 9749                                  JI.UEM.NEET.HE.ZS
## 9750                                  JI.UEM.NEET.LE.ZS
## 9751                                  JI.UEM.NEET.MA.ZS
## 9752                                  JI.UEM.NEET.RU.ZS
## 9753                                  JI.UEM.NEET.UR.ZS
## 9754                                     JI.UEM.NEET.ZS
## 9755                                        JI.WAG.GNDR
## 9756                                     JI.WAG.GNDR.HE
## 9757                                     JI.WAG.GNDR.LE
## 9758                                     JI.WAG.GNDR.OL
## 9759                                     JI.WAG.GNDR.RU
## 9760                                     JI.WAG.GNDR.UR
## 9761                                     JI.WAG.GNDR.YG
## 9762                                  JI.WAG.HOUR.MD.10
## 9763                                  JI.WAG.HOUR.MD.CN
## 9764                                  JI.WAG.HOUR.MD.DF
## 9765                               JI.WAG.HOUR.MD.FE.10
## 9766                               JI.WAG.HOUR.MD.FE.CN
## 9767                               JI.WAG.HOUR.MD.FE.DF
## 9768                               JI.WAG.HOUR.MD.HE.10
## 9769                               JI.WAG.HOUR.MD.HE.CN
## 9770                               JI.WAG.HOUR.MD.HE.DF
## 9771                               JI.WAG.HOUR.MD.LE.10
## 9772                               JI.WAG.HOUR.MD.LE.CN
## 9773                               JI.WAG.HOUR.MD.LE.DF
## 9774                               JI.WAG.HOUR.MD.MA.10
## 9775                               JI.WAG.HOUR.MD.MA.CN
## 9776                               JI.WAG.HOUR.MD.MA.DF
## 9777                               JI.WAG.HOUR.MD.OL.10
## 9778                               JI.WAG.HOUR.MD.OL.CN
## 9779                               JI.WAG.HOUR.MD.OL.DF
## 9780                               JI.WAG.HOUR.MD.RU.10
## 9781                               JI.WAG.HOUR.MD.RU.CN
## 9782                               JI.WAG.HOUR.MD.RU.DF
## 9783                               JI.WAG.HOUR.MD.UR.10
## 9784                               JI.WAG.HOUR.MD.UR.CN
## 9785                               JI.WAG.HOUR.MD.UR.DF
## 9786                               JI.WAG.HOUR.MD.YG.10
## 9787                               JI.WAG.HOUR.MD.YG.CN
## 9788                               JI.WAG.HOUR.MD.YG.DF
## 9789                                  JI.WAG.MONT.MD.10
## 9790                                  JI.WAG.MONT.MD.CN
## 9791                                  JI.WAG.MONT.MD.DF
## 9792                               JI.WAG.MONT.MD.FE.10
## 9793                               JI.WAG.MONT.MD.FE.CN
## 9794                               JI.WAG.MONT.MD.FE.DF
## 9795                               JI.WAG.MONT.MD.HE.10
## 9796                               JI.WAG.MONT.MD.HE.CN
## 9797                               JI.WAG.MONT.MD.HE.DF
## 9798                               JI.WAG.MONT.MD.LE.10
## 9799                               JI.WAG.MONT.MD.LE.CN
## 9800                               JI.WAG.MONT.MD.LE.DF
## 9801                               JI.WAG.MONT.MD.MA.10
## 9802                               JI.WAG.MONT.MD.MA.CN
## 9803                               JI.WAG.MONT.MD.MA.DF
## 9804                               JI.WAG.MONT.MD.OL.10
## 9805                               JI.WAG.MONT.MD.OL.CN
## 9806                               JI.WAG.MONT.MD.OL.DF
## 9807                               JI.WAG.MONT.MD.RU.10
## 9808                               JI.WAG.MONT.MD.RU.CN
## 9809                               JI.WAG.MONT.MD.RU.DF
## 9810                               JI.WAG.MONT.MD.UR.10
## 9811                               JI.WAG.MONT.MD.UR.CN
## 9812                               JI.WAG.MONT.MD.UR.DF
## 9813                               JI.WAG.MONT.MD.YG.10
## 9814                               JI.WAG.MONT.MD.YG.CN
## 9815                               JI.WAG.MONT.MD.YG.DF
## 9816                                        JI.WAG.PBPV
## 9817                                     JI.WAG.PBPV.FE
## 9818                                     JI.WAG.PBPV.HE
## 9819                                     JI.WAG.PBPV.LE
## 9820                                     JI.WAG.PBPV.MA
## 9821                                     JI.WAG.PBPV.OL
## 9822                                     JI.WAG.PBPV.RU
## 9823                                     JI.WAG.PBPV.UR
## 9824                                     JI.WAG.PBPV.YG
## 9825                                        lm_ub.bi_q1
## 9826                                      lm_ub.cov_pop
## 9827                                      lm_ub.gen_pop
## 9828                                        LND.TOTL.K2
## 9829                              LO.EGRA.CLPM.AFA.2GRD
## 9830                              LO.EGRA.CLPM.AFA.3GRD
## 9831                              LO.EGRA.CLPM.AMH.2GRD
## 9832                              LO.EGRA.CLPM.AMH.3GRD
## 9833                              LO.EGRA.CLPM.BMN.2GRD
## 9834                              LO.EGRA.CLPM.BOM.2GRD
## 9835                              LO.EGRA.CLPM.CHC.2GRD
## 9836                              LO.EGRA.CLPM.CHC.4GRD
## 9837                              LO.EGRA.CLPM.ENG.2GRD
## 9838                              LO.EGRA.CLPM.ENG.3GRD
## 9839                              LO.EGRA.CLPM.ENG.4GRD
## 9840                              LO.EGRA.CLPM.FLF.2GRD
## 9841                              LO.EGRA.CLPM.FRN.3GRD
## 9842                              LO.EGRA.CLPM.HAR.2GRD
## 9843                              LO.EGRA.CLPM.HAR.3GRD
## 9844                              LO.EGRA.CLPM.SID.2GRD
## 9845                              LO.EGRA.CLPM.SID.3GRD
## 9846                              LO.EGRA.CLPM.SNG.2GRD
## 9847                              LO.EGRA.CLPM.SOM.2GRD
## 9848                              LO.EGRA.CLPM.SOM.3GRD
## 9849                              LO.EGRA.CLPM.SPN.2GRD
## 9850                              LO.EGRA.CLPM.SPN.3GRD
## 9851                              LO.EGRA.CLPM.SPN.4GRD
## 9852                              LO.EGRA.CLPM.TIG.2GRD
## 9853                              LO.EGRA.CLPM.TIG.3GRD
## 9854                             LO.EGRA.CLSPM.AKU.2GRD
## 9855                             LO.EGRA.CLSPM.ARB.2GRD
## 9856                             LO.EGRA.CLSPM.ARB.3GRD
## 9857                             LO.EGRA.CLSPM.AST.2GRD
## 9858                             LO.EGRA.CLSPM.CHI.2GRD
## 9859                             LO.EGRA.CLSPM.CIN.2GRD
## 9860                             LO.EGRA.CLSPM.DAG.2GRD
## 9861                            LO.EGRA.CLSPM.DAGB.2GRD
## 9862                             LO.EGRA.CLSPM.DAN.2GRD
## 9863                             LO.EGRA.CLSPM.ENG.2GRD
## 9864                             LO.EGRA.CLSPM.ENG.3GRD
## 9865                             LO.EGRA.CLSPM.ENG.4GRD
## 9866                             LO.EGRA.CLSPM.ENG.6GRD
## 9867                             LO.EGRA.CLSPM.EWE.2GRD
## 9868                             LO.EGRA.CLSPM.FAN.2GRD
## 9869                             LO.EGRA.CLSPM.FLP.3GRD
## 9870                              LO.EGRA.CLSPM.GA.2GRD
## 9871                             LO.EGRA.CLSPM.GON.2GRD
## 9872                             LO.EGRA.CLSPM.ICI.2GRD
## 9873                             LO.EGRA.CLSPM.IND.2GRD
## 9874                             LO.EGRA.CLSPM.KAS.2GRD
## 9875                             LO.EGRA.CLSPM.KII.2GRD
## 9876                             LO.EGRA.CLSPM.KNY.4GRD
## 9877                             LO.EGRA.CLSPM.KNY.6GRD
## 9878                             LO.EGRA.CLSPM.LUN.2GRD
## 9879                             LO.EGRA.CLSPM.LUV.2GRD
## 9880                             LO.EGRA.CLSPM.NZE.2GRD
## 9881                             LO.EGRA.CLSPM.SIL.2GRD
## 9882                              LO.EGRA.CWPM.AFA.2GRD
## 9883                              LO.EGRA.CWPM.AFA.3GRD
## 9884                              LO.EGRA.CWPM.AMH.2GRD
## 9885                              LO.EGRA.CWPM.AMH.3GRD
## 9886                              LO.EGRA.CWPM.ARB.2GRD
## 9887                              LO.EGRA.CWPM.BMN.2GRD
## 9888                              LO.EGRA.CWPM.BOM.2GRD
## 9889                              LO.EGRA.CWPM.CHC.2GRD
## 9890                              LO.EGRA.CWPM.CHC.4GRD
## 9891                              LO.EGRA.CWPM.ENG.2GRD
## 9892                              LO.EGRA.CWPM.ENG.3GRD
## 9893                              LO.EGRA.CWPM.ENG.4GRD
## 9894                              LO.EGRA.CWPM.ENG.6GRD
## 9895                              LO.EGRA.CWPM.FLF.2GRD
## 9896                              LO.EGRA.CWPM.FLP.3GRD
## 9897                              LO.EGRA.CWPM.HAR.2GRD
## 9898                              LO.EGRA.CWPM.HAR.3GRD
## 9899                              LO.EGRA.CWPM.KIS.2GRD
## 9900                              LO.EGRA.CWPM.KNY.4GRD
## 9901                              LO.EGRA.CWPM.KNY.6GRD
## 9902                              LO.EGRA.CWPM.SID.2GRD
## 9903                              LO.EGRA.CWPM.SID.3GRD
## 9904                              LO.EGRA.CWPM.SNG.2GRD
## 9905                              LO.EGRA.CWPM.SOM.2GRD
## 9906                              LO.EGRA.CWPM.SOM.3GRD
## 9907                              LO.EGRA.CWPM.SPN.2GRD
## 9908                              LO.EGRA.CWPM.SPN.3GRD
## 9909                              LO.EGRA.CWPM.SPN.4GRD
## 9910                              LO.EGRA.CWPM.TIG.2GRD
## 9911                              LO.EGRA.CWPM.TIG.3GRD
## 9912                         LO.EGRA.CWPM.ZERO.AFA.2GRD
## 9913                         LO.EGRA.CWPM.ZERO.AFA.3GRD
## 9914                         LO.EGRA.CWPM.ZERO.AKU.2GRD
## 9915                         LO.EGRA.CWPM.ZERO.AMH.2GRD
## 9916                         LO.EGRA.CWPM.ZERO.AMH.3GRD
## 9917                         LO.EGRA.CWPM.ZERO.ARB.2GRD
## 9918                         LO.EGRA.CWPM.ZERO.ARB.3GRD
## 9919                         LO.EGRA.CWPM.ZERO.AST.2GRD
## 9920                         LO.EGRA.CWPM.ZERO.BMN.2GRD
## 9921                         LO.EGRA.CWPM.ZERO.BOM.2GRD
## 9922                         LO.EGRA.CWPM.ZERO.CHC.2GRD
## 9923                         LO.EGRA.CWPM.ZERO.CHC.4GRD
## 9924                         LO.EGRA.CWPM.ZERO.CHI.2GRD
## 9925                         LO.EGRA.CWPM.ZERO.CIN.2GRD
## 9926                         LO.EGRA.CWPM.ZERO.DAG.2GRD
## 9927                        LO.EGRA.CWPM.ZERO.DAGB.2GRD
## 9928                         LO.EGRA.CWPM.ZERO.DAN.2GRD
## 9929                         LO.EGRA.CWPM.ZERO.ENG.2GRD
## 9930                         LO.EGRA.CWPM.ZERO.ENG.3GRD
## 9931                         LO.EGRA.CWPM.ZERO.ENG.4GRD
## 9932                         LO.EGRA.CWPM.ZERO.ENG.6GRD
## 9933                         LO.EGRA.CWPM.ZERO.EWE.2GRD
## 9934                         LO.EGRA.CWPM.ZERO.FAN.2GRD
## 9935                         LO.EGRA.CWPM.ZERO.FLF.2GRD
## 9936                         LO.EGRA.CWPM.ZERO.FLP.3GRD
## 9937                         LO.EGRA.CWPM.ZERO.FRN.3GRD
## 9938                          LO.EGRA.CWPM.ZERO.GA.2GRD
## 9939                         LO.EGRA.CWPM.ZERO.GON.2GRD
## 9940                         LO.EGRA.CWPM.ZERO.HAR.2GRD
## 9941                         LO.EGRA.CWPM.ZERO.HAR.3GRD
## 9942                         LO.EGRA.CWPM.ZERO.ICI.2GRD
## 9943                         LO.EGRA.CWPM.ZERO.IND.2GRD
## 9944                         LO.EGRA.CWPM.ZERO.KAS.2GRD
## 9945                         LO.EGRA.CWPM.ZERO.KII.2GRD
## 9946                         LO.EGRA.CWPM.ZERO.KIS.2GRD
## 9947                         LO.EGRA.CWPM.ZERO.KNY.4GRD
## 9948                         LO.EGRA.CWPM.ZERO.KNY.6GRD
## 9949                         LO.EGRA.CWPM.ZERO.LUN.2GRD
## 9950                         LO.EGRA.CWPM.ZERO.LUV.2GRD
## 9951                         LO.EGRA.CWPM.ZERO.NZE.2GRD
## 9952                         LO.EGRA.CWPM.ZERO.SID.2GRD
## 9953                         LO.EGRA.CWPM.ZERO.SID.3GRD
## 9954                         LO.EGRA.CWPM.ZERO.SIL.2GRD
## 9955                         LO.EGRA.CWPM.ZERO.SNG.2GRD
## 9956                         LO.EGRA.CWPM.ZERO.SOM.2GRD
## 9957                         LO.EGRA.CWPM.ZERO.SOM.3GRD
## 9958                         LO.EGRA.CWPM.ZERO.SPN.2GRD
## 9959                         LO.EGRA.CWPM.ZERO.SPN.3GRD
## 9960                         LO.EGRA.CWPM.ZERO.SPN.4GRD
## 9961                         LO.EGRA.CWPM.ZERO.TIG.2GRD
## 9962                         LO.EGRA.CWPM.ZERO.TIG.3GRD
## 9963                            LO.EGRA.INIT.0.BMN.2GRD
## 9964                            LO.EGRA.INIT.0.BOM.2GRD
## 9965                            LO.EGRA.INIT.0.CHC.2GRD
## 9966                            LO.EGRA.INIT.0.CHC.4GRD
## 9967                            LO.EGRA.INIT.0.ENG.2GRD
## 9968                            LO.EGRA.INIT.0.ENG.3GRD
## 9969                            LO.EGRA.INIT.0.ENG.4GRD
## 9970                            LO.EGRA.INIT.0.ENG.6GRD
## 9971                            LO.EGRA.INIT.0.FLF.2GRD
## 9972                            LO.EGRA.INIT.0.KNY.4GRD
## 9973                            LO.EGRA.INIT.0.KNY.6GRD
## 9974                            LO.EGRA.INIT.0.SNG.2GRD
## 9975                            LO.EGRA.INIT.0.SPN.2GRD
## 9976                            LO.EGRA.INIT.0.SPN.3GRD
## 9977                            LO.EGRA.INIT.0.SPN.4GRD
## 9978                            LO.EGRA.LSTN.0.AFA.2GRD
## 9979                            LO.EGRA.LSTN.0.AFA.3GRD
## 9980                            LO.EGRA.LSTN.0.AKU.2GRD
## 9981                            LO.EGRA.LSTN.0.AMH.2GRD
## 9982                            LO.EGRA.LSTN.0.AMH.3GRD
## 9983                            LO.EGRA.LSTN.0.ARB.2GRD
## 9984                            LO.EGRA.LSTN.0.ARB.3GRD
## 9985                            LO.EGRA.LSTN.0.AST.2GRD
## 9986                            LO.EGRA.LSTN.0.BMN.2GRD
## 9987                            LO.EGRA.LSTN.0.BOM.2GRD
## 9988                            LO.EGRA.LSTN.0.CHC.2GRD
## 9989                            LO.EGRA.LSTN.0.CHC.4GRD
## 9990                            LO.EGRA.LSTN.0.CHI.2GRD
## 9991                            LO.EGRA.LSTN.0.CIN.2GRD
## 9992                            LO.EGRA.LSTN.0.DAG.2GRD
## 9993                           LO.EGRA.LSTN.0.DAGB.2GRD
## 9994                            LO.EGRA.LSTN.0.DAN.2GRD
## 9995                            LO.EGRA.LSTN.0.ENG.2GRD
## 9996                            LO.EGRA.LSTN.0.ENG.3GRD
## 9997                            LO.EGRA.LSTN.0.ENG.4GRD
## 9998                            LO.EGRA.LSTN.0.ENG.6GRD
## 9999                            LO.EGRA.LSTN.0.EWE.2GRD
## 10000                           LO.EGRA.LSTN.0.FAN.2GRD
## 10001                           LO.EGRA.LSTN.0.FLF.2GRD
## 10002                           LO.EGRA.LSTN.0.FLP.3GRD
## 10003                            LO.EGRA.LSTN.0.GA.2GRD
## 10004                           LO.EGRA.LSTN.0.GON.2GRD
## 10005                           LO.EGRA.LSTN.0.HAR.2GRD
## 10006                           LO.EGRA.LSTN.0.HAR.3GRD
## 10007                           LO.EGRA.LSTN.0.ICI.2GRD
## 10008                           LO.EGRA.LSTN.0.IND.2GRD
## 10009                           LO.EGRA.LSTN.0.KAS.2GRD
## 10010                           LO.EGRA.LSTN.0.KII.2GRD
## 10011                           LO.EGRA.LSTN.0.KIS.2GRD
## 10012                           LO.EGRA.LSTN.0.KNY.4GRD
## 10013                           LO.EGRA.LSTN.0.KNY.6GRD
## 10014                           LO.EGRA.LSTN.0.LUN.2GRD
## 10015                           LO.EGRA.LSTN.0.LUV.2GRD
## 10016                           LO.EGRA.LSTN.0.NZE.2GRD
## 10017                           LO.EGRA.LSTN.0.SID.2GRD
## 10018                           LO.EGRA.LSTN.0.SID.3GRD
## 10019                           LO.EGRA.LSTN.0.SIL.2GRD
## 10020                           LO.EGRA.LSTN.0.SNG.2GRD
## 10021                           LO.EGRA.LSTN.0.SOM.2GRD
## 10022                           LO.EGRA.LSTN.0.SOM.3GRD
## 10023                           LO.EGRA.LSTN.0.SPN.2GRD
## 10024                           LO.EGRA.LSTN.0.SPN.3GRD
## 10025                           LO.EGRA.LSTN.0.SPN.4GRD
## 10026                           LO.EGRA.LSTN.0.TIG.2GRD
## 10027                           LO.EGRA.LSTN.0.TIG.3GRD
## 10028                            LO.EGRA.NCWPM.AFA.2GRD
## 10029                            LO.EGRA.NCWPM.AFA.3GRD
## 10030                            LO.EGRA.NCWPM.AKU.2GRD
## 10031                            LO.EGRA.NCWPM.AMH.2GRD
## 10032                            LO.EGRA.NCWPM.AMH.3GRD
## 10033                            LO.EGRA.NCWPM.ARB.2GRD
## 10034                            LO.EGRA.NCWPM.ARB.3GRD
## 10035                            LO.EGRA.NCWPM.AST.2GRD
## 10036                            LO.EGRA.NCWPM.BMN.2GRD
## 10037                            LO.EGRA.NCWPM.BOM.2GRD
## 10038                            LO.EGRA.NCWPM.CHC.2GRD
## 10039                            LO.EGRA.NCWPM.CHC.4GRD
## 10040                            LO.EGRA.NCWPM.CHI.2GRD
## 10041                            LO.EGRA.NCWPM.CIN.2GRD
## 10042                            LO.EGRA.NCWPM.DAG.2GRD
## 10043                           LO.EGRA.NCWPM.DAGB.2GRD
## 10044                            LO.EGRA.NCWPM.DAN.2GRD
## 10045                            LO.EGRA.NCWPM.ENG.2GRD
## 10046                            LO.EGRA.NCWPM.ENG.3GRD
## 10047                            LO.EGRA.NCWPM.ENG.4GRD
## 10048                            LO.EGRA.NCWPM.ENG.6GRD
## 10049                            LO.EGRA.NCWPM.EWE.2GRD
## 10050                            LO.EGRA.NCWPM.FAN.2GRD
## 10051                            LO.EGRA.NCWPM.FLF.2GRD
## 10052                            LO.EGRA.NCWPM.FLP.3GRD
## 10053                            LO.EGRA.NCWPM.FRN.3GRD
## 10054                             LO.EGRA.NCWPM.GA.2GRD
## 10055                            LO.EGRA.NCWPM.GON.2GRD
## 10056                            LO.EGRA.NCWPM.HAR.2GRD
## 10057                            LO.EGRA.NCWPM.HAR.3GRD
## 10058                            LO.EGRA.NCWPM.ICI.2GRD
## 10059                            LO.EGRA.NCWPM.IND.2GRD
## 10060                            LO.EGRA.NCWPM.KAS.2GRD
## 10061                            LO.EGRA.NCWPM.KII.2GRD
## 10062                            LO.EGRA.NCWPM.KIS.2GRD
## 10063                            LO.EGRA.NCWPM.KNY.4GRD
## 10064                            LO.EGRA.NCWPM.KNY.6GRD
## 10065                            LO.EGRA.NCWPM.LUN.2GRD
## 10066                            LO.EGRA.NCWPM.LUV.2GRD
## 10067                            LO.EGRA.NCWPM.NZE.2GRD
## 10068                            LO.EGRA.NCWPM.SID.2GRD
## 10069                            LO.EGRA.NCWPM.SID.3GRD
## 10070                            LO.EGRA.NCWPM.SIL.2GRD
## 10071                            LO.EGRA.NCWPM.SNG.2GRD
## 10072                            LO.EGRA.NCWPM.SOM.2GRD
## 10073                            LO.EGRA.NCWPM.SOM.3GRD
## 10074                            LO.EGRA.NCWPM.SPN.2GRD
## 10075                            LO.EGRA.NCWPM.SPN.3GRD
## 10076                            LO.EGRA.NCWPM.SPN.4GRD
## 10077                            LO.EGRA.NCWPM.TIG.2GRD
## 10078                            LO.EGRA.NCWPM.TIG.3GRD
## 10079                              LO.EGRA.ORF.AFA.2GRD
## 10080                              LO.EGRA.ORF.AFA.3GRD
## 10081                              LO.EGRA.ORF.AKU.2GRD
## 10082                              LO.EGRA.ORF.AMH.2GRD
## 10083                              LO.EGRA.ORF.AMH.3GRD
## 10084                              LO.EGRA.ORF.ARB.2GRD
## 10085                              LO.EGRA.ORF.ARB.3GRD
## 10086                              LO.EGRA.ORF.AST.2GRD
## 10087                              LO.EGRA.ORF.BMN.2GRD
## 10088                              LO.EGRA.ORF.BOM.2GRD
## 10089                              LO.EGRA.ORF.CHC.2GRD
## 10090                              LO.EGRA.ORF.CHC.4GRD
## 10091                              LO.EGRA.ORF.CHI.2GRD
## 10092                              LO.EGRA.ORF.CIN.2GRD
## 10093                              LO.EGRA.ORF.DAG.2GRD
## 10094                             LO.EGRA.ORF.DAGB.2GRD
## 10095                              LO.EGRA.ORF.DAN.2GRD
## 10096                              LO.EGRA.ORF.ENG.2GRD
## 10097                              LO.EGRA.ORF.ENG.3GRD
## 10098                              LO.EGRA.ORF.ENG.4GRD
## 10099                              LO.EGRA.ORF.ENG.6GRD
## 10100                              LO.EGRA.ORF.EWE.2GRD
## 10101                              LO.EGRA.ORF.FAN.2GRD
## 10102                              LO.EGRA.ORF.FLF.2GRD
## 10103                              LO.EGRA.ORF.FLP.3GRD
## 10104                              LO.EGRA.ORF.FRN.3GRD
## 10105                               LO.EGRA.ORF.GA.2GRD
## 10106                              LO.EGRA.ORF.GON.2GRD
## 10107                              LO.EGRA.ORF.HAR.2GRD
## 10108                              LO.EGRA.ORF.HAR.3GRD
## 10109                              LO.EGRA.ORF.ICI.2GRD
## 10110                              LO.EGRA.ORF.IND.2GRD
## 10111                              LO.EGRA.ORF.KAS.2GRD
## 10112                              LO.EGRA.ORF.KII.2GRD
## 10113                              LO.EGRA.ORF.KIS.2GRD
## 10114                              LO.EGRA.ORF.KNY.4GRD
## 10115                              LO.EGRA.ORF.KNY.6GRD
## 10116                              LO.EGRA.ORF.LUN.2GRD
## 10117                              LO.EGRA.ORF.LUV.2GRD
## 10118                              LO.EGRA.ORF.NZE.2GRD
## 10119                              LO.EGRA.ORF.SID.2GRD
## 10120                              LO.EGRA.ORF.SID.3GRD
## 10121                              LO.EGRA.ORF.SIL.2GRD
## 10122                              LO.EGRA.ORF.SNG.2GRD
## 10123                              LO.EGRA.ORF.SOM.2GRD
## 10124                              LO.EGRA.ORF.SOM.3GRD
## 10125                              LO.EGRA.ORF.SPN.2GRD
## 10126                              LO.EGRA.ORF.SPN.3GRD
## 10127                              LO.EGRA.ORF.SPN.4GRD
## 10128                              LO.EGRA.ORF.TIG.2GRD
## 10129                              LO.EGRA.ORF.TIG.3GRD
## 10130                           LO.EGRA.READ.0.AFA.2GRD
## 10131                           LO.EGRA.READ.0.AFA.3GRD
## 10132                           LO.EGRA.READ.0.AKU.2GRD
## 10133                           LO.EGRA.READ.0.AMH.2GRD
## 10134                           LO.EGRA.READ.0.AMH.3GRD
## 10135                           LO.EGRA.READ.0.ARB.2GRD
## 10136                           LO.EGRA.READ.0.ARB.3GRD
## 10137                           LO.EGRA.READ.0.AST.2GRD
## 10138                           LO.EGRA.READ.0.BMN.2GRD
## 10139                           LO.EGRA.READ.0.BOM.2GRD
## 10140                           LO.EGRA.READ.0.CHC.2GRD
## 10141                           LO.EGRA.READ.0.CHC.4GRD
## 10142                           LO.EGRA.READ.0.CHI.2GRD
## 10143                           LO.EGRA.READ.0.CIN.2GRD
## 10144                           LO.EGRA.READ.0.DAG.2GRD
## 10145                          LO.EGRA.READ.0.DAGB.2GRD
## 10146                           LO.EGRA.READ.0.DAN.2GRD
## 10147                           LO.EGRA.READ.0.ENG.2GRD
## 10148                           LO.EGRA.READ.0.ENG.3GRD
## 10149                           LO.EGRA.READ.0.ENG.4GRD
## 10150                           LO.EGRA.READ.0.ENG.6GRD
## 10151                           LO.EGRA.READ.0.EWE.2GRD
## 10152                           LO.EGRA.READ.0.FAN.2GRD
## 10153                           LO.EGRA.READ.0.FLF.2GRD
## 10154                           LO.EGRA.READ.0.FLP.3GRD
## 10155                           LO.EGRA.READ.0.FRN.3GRD
## 10156                            LO.EGRA.READ.0.GA.2GRD
## 10157                           LO.EGRA.READ.0.GON.2GRD
## 10158                           LO.EGRA.READ.0.HAR.2GRD
## 10159                           LO.EGRA.READ.0.HAR.3GRD
## 10160                           LO.EGRA.READ.0.ICI.2GRD
## 10161                           LO.EGRA.READ.0.IND.2GRD
## 10162                           LO.EGRA.READ.0.KAS.2GRD
## 10163                           LO.EGRA.READ.0.KII.2GRD
## 10164                           LO.EGRA.READ.0.KIS.2GRD
## 10165                           LO.EGRA.READ.0.KNY.4GRD
## 10166                           LO.EGRA.READ.0.KNY.6GRD
## 10167                           LO.EGRA.READ.0.LUN.2GRD
## 10168                           LO.EGRA.READ.0.LUV.2GRD
## 10169                           LO.EGRA.READ.0.NZE.2GRD
## 10170                           LO.EGRA.READ.0.SID.2GRD
## 10171                           LO.EGRA.READ.0.SID.3GRD
## 10172                           LO.EGRA.READ.0.SIL.2GRD
## 10173                           LO.EGRA.READ.0.SNG.2GRD
## 10174                           LO.EGRA.READ.0.SOM.2GRD
## 10175                           LO.EGRA.READ.0.SOM.3GRD
## 10176                           LO.EGRA.READ.0.SPN.2GRD
## 10177                           LO.EGRA.READ.0.SPN.3GRD
## 10178                           LO.EGRA.READ.0.SPN.4GRD
## 10179                           LO.EGRA.READ.0.TIG.2GRD
## 10180                           LO.EGRA.READ.0.TIG.3GRD
## 10181                         LO.EGRA.READ.AFA.ADV.2GRD
## 10182                         LO.EGRA.READ.AFA.ADV.3GRD
## 10183                         LO.EGRA.READ.AKU.ADV.2GRD
## 10184                         LO.EGRA.READ.AMH.ADV.2GRD
## 10185                         LO.EGRA.READ.AMH.ADV.3GRD
## 10186                         LO.EGRA.READ.ARB.ADV.2GRD
## 10187                         LO.EGRA.READ.ARB.ADV.3GRD
## 10188                         LO.EGRA.READ.AST.ADV.2GRD
## 10189                         LO.EGRA.READ.BMN.ADV.2GRD
## 10190                         LO.EGRA.READ.BOM.ADV.2GRD
## 10191                         LO.EGRA.READ.CHC.ADV.2GRD
## 10192                         LO.EGRA.READ.CHC.ADV.4GRD
## 10193                         LO.EGRA.READ.CHI.ADV.2GRD
## 10194                         LO.EGRA.READ.CIN.ADV.2GRD
## 10195                         LO.EGRA.READ.DAG.ADV.2GRD
## 10196                        LO.EGRA.READ.DAGB.ADV.2GRD
## 10197                         LO.EGRA.READ.DAN.ADV.2GRD
## 10198                         LO.EGRA.READ.ENG.ADV.2GRD
## 10199                         LO.EGRA.READ.ENG.ADV.3GRD
## 10200                         LO.EGRA.READ.ENG.ADV.4GRD
## 10201                         LO.EGRA.READ.ENG.ADV.6GRD
## 10202                         LO.EGRA.READ.EWE.ADV.2GRD
## 10203                         LO.EGRA.READ.FAN.ADV.2GRD
## 10204                         LO.EGRA.READ.FLF.ADV.2GRD
## 10205                         LO.EGRA.READ.FLP.ADV.3GRD
## 10206                         LO.EGRA.READ.FRN.ADV.3GRD
## 10207                          LO.EGRA.READ.GA.ADV.2GRD
## 10208                         LO.EGRA.READ.GON.ADV.2GRD
## 10209                         LO.EGRA.READ.HAR.ADV.2GRD
## 10210                         LO.EGRA.READ.HAR.ADV.3GRD
## 10211                         LO.EGRA.READ.ICI.ADV.2GRD
## 10212                         LO.EGRA.READ.IND.ADV.3GRD
## 10213                         LO.EGRA.READ.KAS.ADV.2GRD
## 10214                         LO.EGRA.READ.KII.ADV.2GRD
## 10215                         LO.EGRA.READ.KIS.ADV.2GRD
## 10216                         LO.EGRA.READ.KNY.ADV.4GRD
## 10217                         LO.EGRA.READ.KNY.ADV.6GRD
## 10218                         LO.EGRA.READ.LUN.ADV.2GRD
## 10219                         LO.EGRA.READ.LUV.ADV.2GRD
## 10220                         LO.EGRA.READ.NZE.ADV.2GRD
## 10221                         LO.EGRA.READ.SID.ADV.2GRD
## 10222                         LO.EGRA.READ.SID.ADV.3GRD
## 10223                         LO.EGRA.READ.SIL.ADV.2GRD
## 10224                         LO.EGRA.READ.SNG.ADV.2GRD
## 10225                         LO.EGRA.READ.SOM.ADV.2GRD
## 10226                         LO.EGRA.READ.SOM.ADV.3GRD
## 10227                         LO.EGRA.READ.SPN.ADV.2GRD
## 10228                         LO.EGRA.READ.SPN.ADV.3GRD
## 10229                         LO.EGRA.READ.SPN.ADV.4GRD
## 10230                         LO.EGRA.READ.TIG.ADV.2GRD
## 10231                         LO.EGRA.READ.TIG.ADV.3GRD
## 10232                                     LO.LLECE.MAT3
## 10233                                   LO.LLECE.MAT3.0
## 10234                                LO.LLECE.MAT3.0.FE
## 10235                                LO.LLECE.MAT3.0.MA
## 10236                                   LO.LLECE.MAT3.1
## 10237                                LO.LLECE.MAT3.1.FE
## 10238                                LO.LLECE.MAT3.1.MA
## 10239                                   LO.LLECE.MAT3.2
## 10240                                LO.LLECE.MAT3.2.FE
## 10241                                LO.LLECE.MAT3.2.MA
## 10242                                   LO.LLECE.MAT3.3
## 10243                                LO.LLECE.MAT3.3.FE
## 10244                                LO.LLECE.MAT3.3.MA
## 10245                                   LO.LLECE.MAT3.4
## 10246                                LO.LLECE.MAT3.4.FE
## 10247                                LO.LLECE.MAT3.4.MA
## 10248                                  LO.LLECE.MAT3.FE
## 10249                                  LO.LLECE.MAT3.MA
## 10250                                 LO.LLECE.MAT3.P10
## 10251                                 LO.LLECE.MAT3.P25
## 10252                                 LO.LLECE.MAT3.P50
## 10253                                 LO.LLECE.MAT3.P75
## 10254                                 LO.LLECE.MAT3.P90
## 10255                                     LO.LLECE.MAT4
## 10256                                 LO.LLECE.MAT4.P10
## 10257                                 LO.LLECE.MAT4.P25
## 10258                                 LO.LLECE.MAT4.P50
## 10259                                 LO.LLECE.MAT4.P75
## 10260                                 LO.LLECE.MAT4.P90
## 10261                                     LO.LLECE.MAT6
## 10262                                   LO.LLECE.MAT6.0
## 10263                                LO.LLECE.MAT6.0.FE
## 10264                                LO.LLECE.MAT6.0.MA
## 10265                                   LO.LLECE.MAT6.1
## 10266                                LO.LLECE.MAT6.1.FE
## 10267                                LO.LLECE.MAT6.1.MA
## 10268                                   LO.LLECE.MAT6.2
## 10269                                LO.LLECE.MAT6.2.FE
## 10270                                LO.LLECE.MAT6.2.MA
## 10271                                   LO.LLECE.MAT6.3
## 10272                                LO.LLECE.MAT6.3.FE
## 10273                                LO.LLECE.MAT6.3.MA
## 10274                                   LO.LLECE.MAT6.4
## 10275                                LO.LLECE.MAT6.4.FE
## 10276                                LO.LLECE.MAT6.4.MA
## 10277                                  LO.LLECE.MAT6.FE
## 10278                                  LO.LLECE.MAT6.MA
## 10279                                 LO.LLECE.MAT6.P10
## 10280                                 LO.LLECE.MAT6.P25
## 10281                                 LO.LLECE.MAT6.P50
## 10282                                 LO.LLECE.MAT6.P75
## 10283                                 LO.LLECE.MAT6.P90
## 10284                                     LO.LLECE.REA3
## 10285                                   LO.LLECE.REA3.0
## 10286                                LO.LLECE.REA3.0.FE
## 10287                                LO.LLECE.REA3.0.MA
## 10288                                   LO.LLECE.REA3.1
## 10289                                LO.LLECE.REA3.1.FE
## 10290                                LO.LLECE.REA3.1.MA
## 10291                                   LO.LLECE.REA3.2
## 10292                                LO.LLECE.REA3.2.FE
## 10293                                LO.LLECE.REA3.2.MA
## 10294                                   LO.LLECE.REA3.3
## 10295                                LO.LLECE.REA3.3.FE
## 10296                                LO.LLECE.REA3.3.MA
## 10297                                   LO.LLECE.REA3.4
## 10298                                LO.LLECE.REA3.4.FE
## 10299                                LO.LLECE.REA3.4.MA
## 10300                                  LO.LLECE.REA3.FE
## 10301                                  LO.LLECE.REA3.MA
## 10302                                 LO.LLECE.REA3.P10
## 10303                                 LO.LLECE.REA3.P25
## 10304                                 LO.LLECE.REA3.P50
## 10305                                 LO.LLECE.REA3.P75
## 10306                                 LO.LLECE.REA3.P90
## 10307                                     LO.LLECE.REA4
## 10308                                 LO.LLECE.REA4.P10
## 10309                                 LO.LLECE.REA4.P25
## 10310                                 LO.LLECE.REA4.P50
## 10311                                 LO.LLECE.REA4.P75
## 10312                                 LO.LLECE.REA4.P90
## 10313                                     LO.LLECE.REA6
## 10314                                   LO.LLECE.REA6.0
## 10315                                LO.LLECE.REA6.0.FE
## 10316                                LO.LLECE.REA6.0.MA
## 10317                                   LO.LLECE.REA6.1
## 10318                                LO.LLECE.REA6.1.FE
## 10319                                LO.LLECE.REA6.1.MA
## 10320                                   LO.LLECE.REA6.2
## 10321                                LO.LLECE.REA6.2.FE
## 10322                                LO.LLECE.REA6.2.MA
## 10323                                   LO.LLECE.REA6.3
## 10324                                LO.LLECE.REA6.3.FE
## 10325                                LO.LLECE.REA6.3.MA
## 10326                                   LO.LLECE.REA6.4
## 10327                                LO.LLECE.REA6.4.FE
## 10328                                LO.LLECE.REA6.4.MA
## 10329                                  LO.LLECE.REA6.FE
## 10330                                  LO.LLECE.REA6.MA
## 10331                                 LO.LLECE.REA6.P10
## 10332                                 LO.LLECE.REA6.P25
## 10333                                 LO.LLECE.REA6.P50
## 10334                                 LO.LLECE.REA6.P75
## 10335                                 LO.LLECE.REA6.P90
## 10336                                     LO.LLECE.SCI6
## 10337                                   LO.LLECE.SCI6.0
## 10338                                LO.LLECE.SCI6.0.FE
## 10339                                LO.LLECE.SCI6.0.MA
## 10340                                   LO.LLECE.SCI6.1
## 10341                                LO.LLECE.SCI6.1.FE
## 10342                                LO.LLECE.SCI6.1.MA
## 10343                                   LO.LLECE.SCI6.2
## 10344                                LO.LLECE.SCI6.2.FE
## 10345                                LO.LLECE.SCI6.2.MA
## 10346                                   LO.LLECE.SCI6.3
## 10347                                LO.LLECE.SCI6.3.FE
## 10348                                LO.LLECE.SCI6.3.MA
## 10349                                   LO.LLECE.SCI6.4
## 10350                                LO.LLECE.SCI6.4.FE
## 10351                                LO.LLECE.SCI6.4.MA
## 10352                                  LO.LLECE.SCI6.FE
## 10353                                  LO.LLECE.SCI6.MA
## 10354                                 LO.LLECE.SCI6.P10
## 10355                                 LO.LLECE.SCI6.P25
## 10356                                 LO.LLECE.SCI6.P50
## 10357                                 LO.LLECE.SCI6.P75
## 10358                                 LO.LLECE.SCI6.P90
## 10359                                  LO.PASEC.FRE.P05
## 10360                                  LO.PASEC.FRE.P10
## 10361                                  LO.PASEC.FRE.P25
## 10362                                  LO.PASEC.FRE.P50
## 10363                                  LO.PASEC.FRE.P75
## 10364                                  LO.PASEC.FRE.P90
## 10365                                  LO.PASEC.FRE.P95
## 10366                                     LO.PASEC.FRE5
## 10367                                  LO.PASEC.FRE5.FE
## 10368                                 LO.PASEC.FRE5.HIG
## 10369                              LO.PASEC.FRE5.HIG.FE
## 10370                              LO.PASEC.FRE5.HIG.MA
## 10371                                  LO.PASEC.FRE5.LO
## 10372                               LO.PASEC.FRE5.LO.FE
## 10373                               LO.PASEC.FRE5.LO.MA
## 10374                                  LO.PASEC.FRE5.MA
## 10375                                    LO.PASEC.MAT.2
## 10376                               LO.PASEC.MAT.2.ADD1
## 10377                               LO.PASEC.MAT.2.ADD2
## 10378                               LO.PASEC.MAT.2.ADD3
## 10379                           LO.PASEC.MAT.2.CNT.0T60
## 10380                          LO.PASEC.MAT.2.CNT.61T80
## 10381                           LO.PASEC.MAT.2.CNT.80UP
## 10382                                 LO.PASEC.MAT.2.FE
## 10383                                 LO.PASEC.MAT.2.L0
## 10384                                 LO.PASEC.MAT.2.L1
## 10385                                 LO.PASEC.MAT.2.L2
## 10386                                 LO.PASEC.MAT.2.L3
## 10387                                 LO.PASEC.MAT.2.MA
## 10388                             LO.PASEC.MAT.2.MG.GAP
## 10389                                LO.PASEC.MAT.2.NPP
## 10390                                LO.PASEC.MAT.2.P05
## 10391                                 LO.PASEC.MAT.2.P1
## 10392                                LO.PASEC.MAT.2.P10
## 10393                                LO.PASEC.MAT.2.P25
## 10394                                LO.PASEC.MAT.2.P50
## 10395                                LO.PASEC.MAT.2.P75
## 10396                                LO.PASEC.MAT.2.P90
## 10397                                LO.PASEC.MAT.2.P95
## 10398                                LO.PASEC.MAT.2.P99
## 10399                                 LO.PASEC.MAT.2.PP
## 10400                             LO.PASEC.MAT.2.PP.GAP
## 10401                            LO.PASEC.MAT.2.PRI.GAP
## 10402                             LO.PASEC.MAT.2.RU.GAP
## 10403                               LO.PASEC.MAT.2.SUB1
## 10404                               LO.PASEC.MAT.2.SUB2
## 10405                               LO.PASEC.MAT.2.SUB3
## 10406                                    LO.PASEC.MAT.6
## 10407                                 LO.PASEC.MAT.6.FE
## 10408                                 LO.PASEC.MAT.6.L0
## 10409                                 LO.PASEC.MAT.6.L1
## 10410                                 LO.PASEC.MAT.6.L2
## 10411                                 LO.PASEC.MAT.6.L3
## 10412                                 LO.PASEC.MAT.6.MA
## 10413                             LO.PASEC.MAT.6.MG.GAP
## 10414                                LO.PASEC.MAT.6.NPP
## 10415                                LO.PASEC.MAT.6.P05
## 10416                                 LO.PASEC.MAT.6.P1
## 10417                                LO.PASEC.MAT.6.P10
## 10418                                LO.PASEC.MAT.6.P25
## 10419                                LO.PASEC.MAT.6.P50
## 10420                                LO.PASEC.MAT.6.P75
## 10421                                LO.PASEC.MAT.6.P90
## 10422                                LO.PASEC.MAT.6.P95
## 10423                                LO.PASEC.MAT.6.P99
## 10424                                 LO.PASEC.MAT.6.PP
## 10425                             LO.PASEC.MAT.6.PP.GAP
## 10426                            LO.PASEC.MAT.6.PRI.GAP
## 10427                             LO.PASEC.MAT.6.RU.GAP
## 10428                                  LO.PASEC.MAT.P05
## 10429                                  LO.PASEC.MAT.P10
## 10430                                  LO.PASEC.MAT.P25
## 10431                                  LO.PASEC.MAT.P50
## 10432                                  LO.PASEC.MAT.P75
## 10433                                  LO.PASEC.MAT.P90
## 10434                                  LO.PASEC.MAT.P95
## 10435                                     LO.PASEC.MAT5
## 10436                                  LO.PASEC.MAT5.FE
## 10437                                 LO.PASEC.MAT5.HIG
## 10438                              LO.PASEC.MAT5.HIG.FE
## 10439                              LO.PASEC.MAT5.HIG.MA
## 10440                                  LO.PASEC.MAT5.LO
## 10441                               LO.PASEC.MAT5.LO.FE
## 10442                               LO.PASEC.MAT5.LO.MA
## 10443                                  LO.PASEC.MAT5.MA
## 10444                                    LO.PASEC.REA.2
## 10445                                 LO.PASEC.REA.2.FE
## 10446                                 LO.PASEC.REA.2.L0
## 10447                                 LO.PASEC.REA.2.L1
## 10448                                 LO.PASEC.REA.2.L2
## 10449                                 LO.PASEC.REA.2.L3
## 10450                                 LO.PASEC.REA.2.L4
## 10451                            LO.PASEC.REA.2.LTR.0T5
## 10452                          LO.PASEC.REA.2.LTR.11T20
## 10453                           LO.PASEC.REA.2.LTR.20UP
## 10454                           LO.PASEC.REA.2.LTR.6T10
## 10455                                 LO.PASEC.REA.2.MA
## 10456                             LO.PASEC.REA.2.MG.GAP
## 10457                                LO.PASEC.REA.2.NPP
## 10458                                LO.PASEC.REA.2.P05
## 10459                                 LO.PASEC.REA.2.P1
## 10460                                LO.PASEC.REA.2.P10
## 10461                                LO.PASEC.REA.2.P25
## 10462                                LO.PASEC.REA.2.P50
## 10463                                LO.PASEC.REA.2.P75
## 10464                                LO.PASEC.REA.2.P90
## 10465                                LO.PASEC.REA.2.P95
## 10466                                LO.PASEC.REA.2.P99
## 10467                                 LO.PASEC.REA.2.PP
## 10468                             LO.PASEC.REA.2.PP.GAP
## 10469                            LO.PASEC.REA.2.PRI.GAP
## 10470                             LO.PASEC.REA.2.RU.GAP
## 10471                              LO.PASEC.REA.2.WRD.0
## 10472                          LO.PASEC.REA.2.WRD.11T20
## 10473                            LO.PASEC.REA.2.WRD.1T5
## 10474                           LO.PASEC.REA.2.WRD.20UP
## 10475                           LO.PASEC.REA.2.WRD.6T10
## 10476                                    LO.PASEC.REA.6
## 10477                                 LO.PASEC.REA.6.FE
## 10478                                 LO.PASEC.REA.6.L0
## 10479                                 LO.PASEC.REA.6.L1
## 10480                                 LO.PASEC.REA.6.L2
## 10481                                 LO.PASEC.REA.6.L3
## 10482                                 LO.PASEC.REA.6.L4
## 10483                                 LO.PASEC.REA.6.MA
## 10484                             LO.PASEC.REA.6.MG.GAP
## 10485                                LO.PASEC.REA.6.NPP
## 10486                                LO.PASEC.REA.6.P05
## 10487                                 LO.PASEC.REA.6.P1
## 10488                                LO.PASEC.REA.6.P10
## 10489                                LO.PASEC.REA.6.P25
## 10490                                LO.PASEC.REA.6.P50
## 10491                                LO.PASEC.REA.6.P75
## 10492                                LO.PASEC.REA.6.P90
## 10493                                LO.PASEC.REA.6.P95
## 10494                                LO.PASEC.REA.6.P99
## 10495                                 LO.PASEC.REA.6.PP
## 10496                             LO.PASEC.REA.6.PP.GAP
## 10497                            LO.PASEC.REA.6.PRI.GAP
## 10498                             LO.PASEC.REA.6.RU.GAP
## 10499                                      LO.PIAAC.LIT
## 10500                                    LO.PIAAC.LIT.1
## 10501                                    LO.PIAAC.LIT.2
## 10502                                    LO.PIAAC.LIT.3
## 10503                                    LO.PIAAC.LIT.4
## 10504                                    LO.PIAAC.LIT.5
## 10505                                   LO.PIAAC.LIT.BE
## 10506                                   LO.PIAAC.LIT.FE
## 10507                                 LO.PIAAC.LIT.FE.1
## 10508                                 LO.PIAAC.LIT.FE.2
## 10509                                 LO.PIAAC.LIT.FE.3
## 10510                                 LO.PIAAC.LIT.FE.4
## 10511                                LO.PIAAC.LIT.FE.45
## 10512                                 LO.PIAAC.LIT.FE.5
## 10513                                LO.PIAAC.LIT.FE.BE
## 10514                                   LO.PIAAC.LIT.MA
## 10515                                 LO.PIAAC.LIT.MA.1
## 10516                                 LO.PIAAC.LIT.MA.2
## 10517                                 LO.PIAAC.LIT.MA.3
## 10518                                 LO.PIAAC.LIT.MA.4
## 10519                                LO.PIAAC.LIT.MA.45
## 10520                                 LO.PIAAC.LIT.MA.5
## 10521                                LO.PIAAC.LIT.MA.BE
## 10522                                  LO.PIAAC.LIT.P05
## 10523                                  LO.PIAAC.LIT.P10
## 10524                                  LO.PIAAC.LIT.P25
## 10525                                  LO.PIAAC.LIT.P50
## 10526                                  LO.PIAAC.LIT.P75
## 10527                                  LO.PIAAC.LIT.P90
## 10528                                  LO.PIAAC.LIT.P95
## 10529                                  LO.PIAAC.LIT.YOU
## 10530                                LO.PIAAC.LIT.YOU.1
## 10531                                LO.PIAAC.LIT.YOU.2
## 10532                                LO.PIAAC.LIT.YOU.3
## 10533                                LO.PIAAC.LIT.YOU.4
## 10534                               LO.PIAAC.LIT.YOU.45
## 10535                                LO.PIAAC.LIT.YOU.5
## 10536                               LO.PIAAC.LIT.YOU.BE
## 10537                               LO.PIAAC.LIT.YOU.FE
## 10538                               LO.PIAAC.LIT.YOU.MA
## 10539                                      LO.PIAAC.NUM
## 10540                                    LO.PIAAC.NUM.1
## 10541                                    LO.PIAAC.NUM.2
## 10542                                    LO.PIAAC.NUM.3
## 10543                                    LO.PIAAC.NUM.4
## 10544                                    LO.PIAAC.NUM.5
## 10545                                   LO.PIAAC.NUM.BE
## 10546                                   LO.PIAAC.NUM.FE
## 10547                                 LO.PIAAC.NUM.FE.1
## 10548                                 LO.PIAAC.NUM.FE.2
## 10549                                 LO.PIAAC.NUM.FE.3
## 10550                                 LO.PIAAC.NUM.FE.4
## 10551                                LO.PIAAC.NUM.FE.45
## 10552                                 LO.PIAAC.NUM.FE.5
## 10553                                LO.PIAAC.NUM.FE.BE
## 10554                                   LO.PIAAC.NUM.MA
## 10555                                 LO.PIAAC.NUM.MA.1
## 10556                                 LO.PIAAC.NUM.MA.2
## 10557                                 LO.PIAAC.NUM.MA.3
## 10558                                 LO.PIAAC.NUM.MA.4
## 10559                                LO.PIAAC.NUM.MA.45
## 10560                                 LO.PIAAC.NUM.MA.5
## 10561                                LO.PIAAC.NUM.MA.BE
## 10562                                  LO.PIAAC.NUM.P05
## 10563                                  LO.PIAAC.NUM.P10
## 10564                                  LO.PIAAC.NUM.P25
## 10565                                  LO.PIAAC.NUM.P50
## 10566                                  LO.PIAAC.NUM.P75
## 10567                                  LO.PIAAC.NUM.P90
## 10568                                  LO.PIAAC.NUM.P95
## 10569                                  LO.PIAAC.NUM.YOU
## 10570                                LO.PIAAC.NUM.YOU.1
## 10571                                LO.PIAAC.NUM.YOU.2
## 10572                                LO.PIAAC.NUM.YOU.3
## 10573                                LO.PIAAC.NUM.YOU.4
## 10574                               LO.PIAAC.NUM.YOU.45
## 10575                                LO.PIAAC.NUM.YOU.5
## 10576                               LO.PIAAC.NUM.YOU.BE
## 10577                               LO.PIAAC.NUM.YOU.FE
## 10578                               LO.PIAAC.NUM.YOU.MA
## 10579                                    LO.PIAAC.TEC.1
## 10580                                    LO.PIAAC.TEC.2
## 10581                                    LO.PIAAC.TEC.3
## 10582                                   LO.PIAAC.TEC.BE
## 10583                                 LO.PIAAC.TEC.FAIL
## 10584                                 LO.PIAAC.TEC.FE.1
## 10585                                 LO.PIAAC.TEC.FE.2
## 10586                                 LO.PIAAC.TEC.FE.3
## 10587                                LO.PIAAC.TEC.FE.BE
## 10588                              LO.PIAAC.TEC.FE.FAIL
## 10589                            LO.PIAAC.TEC.FE.FAILNO
## 10590                                LO.PIAAC.TEC.FE.NO
## 10591                               LO.PIAAC.TEC.FE.OPT
## 10592                                 LO.PIAAC.TEC.MA.1
## 10593                                 LO.PIAAC.TEC.MA.2
## 10594                                 LO.PIAAC.TEC.MA.3
## 10595                                LO.PIAAC.TEC.MA.BE
## 10596                              LO.PIAAC.TEC.MA.FAIL
## 10597                            LO.PIAAC.TEC.MA.FAILNO
## 10598                                LO.PIAAC.TEC.MA.NO
## 10599                               LO.PIAAC.TEC.MA.OPT
## 10600                                   LO.PIAAC.TEC.NO
## 10601                                  LO.PIAAC.TEC.OPT
## 10602                                  LO.PIAAC.TEC.P05
## 10603                                  LO.PIAAC.TEC.P10
## 10604                                  LO.PIAAC.TEC.P25
## 10605                                  LO.PIAAC.TEC.P50
## 10606                                  LO.PIAAC.TEC.P75
## 10607                                  LO.PIAAC.TEC.P90
## 10608                                  LO.PIAAC.TEC.P95
## 10609                                LO.PIAAC.TEC.YOU.1
## 10610                                LO.PIAAC.TEC.YOU.2
## 10611                                LO.PIAAC.TEC.YOU.3
## 10612                               LO.PIAAC.TEC.YOU.BE
## 10613                             LO.PIAAC.TEC.YOU.FAIL
## 10614                           LO.PIAAC.TEC.YOU.FAILNO
## 10615                               LO.PIAAC.TEC.YOU.NO
## 10616                              LO.PIAAC.TEC.YOU.OPT
## 10617                                      LO.PIRLS.REA
## 10618                                  LO.PIRLS.REA.ADV
## 10619                               LO.PIRLS.REA.ADV.FE
## 10620                               LO.PIRLS.REA.ADV.MA
## 10621                                   LO.PIRLS.REA.BL
## 10622                                LO.PIRLS.REA.BL.FE
## 10623                                LO.PIRLS.REA.BL.MA
## 10624                                   LO.PIRLS.REA.FE
## 10625                                   LO.PIRLS.REA.HI
## 10626                                LO.PIRLS.REA.HI.FE
## 10627                                LO.PIRLS.REA.HI.MA
## 10628                                  LO.PIRLS.REA.INT
## 10629                               LO.PIRLS.REA.INT.FE
## 10630                               LO.PIRLS.REA.INT.MA
## 10631                                  LO.PIRLS.REA.LOW
## 10632                               LO.PIRLS.REA.LOW.FE
## 10633                               LO.PIRLS.REA.LOW.MA
## 10634                                   LO.PIRLS.REA.MA
## 10635                                  LO.PIRLS.REA.P05
## 10636                                  LO.PIRLS.REA.P10
## 10637                                  LO.PIRLS.REA.P25
## 10638                                  LO.PIRLS.REA.P50
## 10639                                  LO.PIRLS.REA.P75
## 10640                                  LO.PIRLS.REA.P90
## 10641                                  LO.PIRLS.REA.P95
## 10642                                       LO.PISA.MAT
## 10643                                     LO.PISA.MAT.0
## 10644                                  LO.PISA.MAT.0.FE
## 10645                                  LO.PISA.MAT.0.MA
## 10646                                     LO.PISA.MAT.1
## 10647                                  LO.PISA.MAT.1.FE
## 10648                                  LO.PISA.MAT.1.MA
## 10649                                     LO.PISA.MAT.2
## 10650                                  LO.PISA.MAT.2.FE
## 10651                                  LO.PISA.MAT.2.MA
## 10652                                     LO.PISA.MAT.3
## 10653                                  LO.PISA.MAT.3.FE
## 10654                                  LO.PISA.MAT.3.MA
## 10655                                     LO.PISA.MAT.4
## 10656                                  LO.PISA.MAT.4.FE
## 10657                                  LO.PISA.MAT.4.MA
## 10658                                     LO.PISA.MAT.5
## 10659                                  LO.PISA.MAT.5.FE
## 10660                                  LO.PISA.MAT.5.MA
## 10661                                     LO.PISA.MAT.6
## 10662                                  LO.PISA.MAT.6.FE
## 10663                                  LO.PISA.MAT.6.MA
## 10664                                    LO.PISA.MAT.FE
## 10665                                    LO.PISA.MAT.MA
## 10666                                   LO.PISA.MAT.P05
## 10667                                   LO.PISA.MAT.P10
## 10668                                   LO.PISA.MAT.P25
## 10669                                   LO.PISA.MAT.P50
## 10670                                   LO.PISA.MAT.P75
## 10671                                   LO.PISA.MAT.P90
## 10672                                   LO.PISA.MAT.P95
## 10673                                       LO.PISA.REA
## 10674                                     LO.PISA.REA.0
## 10675                                 LO.PISA.REA.0.B1C
## 10676                              LO.PISA.REA.0.B1C.FE
## 10677                              LO.PISA.REA.0.B1C.MA
## 10678                                    LO.PISA.REA.1A
## 10679                                 LO.PISA.REA.1A.FE
## 10680                                 LO.PISA.REA.1A.MA
## 10681                                    LO.PISA.REA.1B
## 10682                                 LO.PISA.REA.1B.FE
## 10683                                 LO.PISA.REA.1B.MA
## 10684                                    LO.PISA.REA.1C
## 10685                                 LO.PISA.REA.1C.FE
## 10686                                 LO.PISA.REA.1C.MA
## 10687                                     LO.PISA.REA.2
## 10688                                  LO.PISA.REA.2.FE
## 10689                                  LO.PISA.REA.2.MA
## 10690                                     LO.PISA.REA.3
## 10691                                  LO.PISA.REA.3.FE
## 10692                                  LO.PISA.REA.3.MA
## 10693                                     LO.PISA.REA.4
## 10694                                  LO.PISA.REA.4.FE
## 10695                                  LO.PISA.REA.4.MA
## 10696                                     LO.PISA.REA.5
## 10697                                  LO.PISA.REA.5.FE
## 10698                                  LO.PISA.REA.5.MA
## 10699                                     LO.PISA.REA.6
## 10700                                  LO.PISA.REA.6.FE
## 10701                                  LO.PISA.REA.6.MA
## 10702                                    LO.PISA.REA.FE
## 10703                                    LO.PISA.REA.MA
## 10704                                   LO.PISA.REA.P05
## 10705                                   LO.PISA.REA.P10
## 10706                                   LO.PISA.REA.P25
## 10707                                   LO.PISA.REA.P50
## 10708                                   LO.PISA.REA.P75
## 10709                                   LO.PISA.REA.P90
## 10710                                   LO.PISA.REA.P95
## 10711                                       LO.PISA.SCI
## 10712                                     LO.PISA.SCI.0
## 10713                                  LO.PISA.SCI.0.FE
## 10714                                  LO.PISA.SCI.0.MA
## 10715                                    LO.PISA.SCI.1A
## 10716                                 LO.PISA.SCI.1A.FE
## 10717                                 LO.PISA.SCI.1A.MA
## 10718                                    LO.PISA.SCI.1B
## 10719                                 LO.PISA.SCI.1B.FE
## 10720                                 LO.PISA.SCI.1B.MA
## 10721                                     LO.PISA.SCI.2
## 10722                                  LO.PISA.SCI.2.FE
## 10723                                  LO.PISA.SCI.2.MA
## 10724                                     LO.PISA.SCI.3
## 10725                                  LO.PISA.SCI.3.FE
## 10726                                  LO.PISA.SCI.3.MA
## 10727                                     LO.PISA.SCI.4
## 10728                                  LO.PISA.SCI.4.FE
## 10729                                  LO.PISA.SCI.4.MA
## 10730                                     LO.PISA.SCI.5
## 10731                                  LO.PISA.SCI.5.FE
## 10732                                  LO.PISA.SCI.5.MA
## 10733                                     LO.PISA.SCI.6
## 10734                                  LO.PISA.SCI.6.FE
## 10735                                  LO.PISA.SCI.6.MA
## 10736                                    LO.PISA.SCI.FE
## 10737                                    LO.PISA.SCI.MA
## 10738                                   LO.PISA.SCI.P05
## 10739                                   LO.PISA.SCI.P10
## 10740                                   LO.PISA.SCI.P25
## 10741                                   LO.PISA.SCI.P50
## 10742                                   LO.PISA.SCI.P75
## 10743                                   LO.PISA.SCI.P90
## 10744                                   LO.PISA.SCI.P95
## 10745                                     LO.SACMEQ.MAT
## 10746                                  LO.SACMEQ.MAT.FE
## 10747                                  LO.SACMEQ.MAT.L1
## 10748                               LO.SACMEQ.MAT.L1.FE
## 10749                               LO.SACMEQ.MAT.L1.MA
## 10750                                  LO.SACMEQ.MAT.L2
## 10751                               LO.SACMEQ.MAT.L2.FE
## 10752                               LO.SACMEQ.MAT.L2.MA
## 10753                                  LO.SACMEQ.MAT.L3
## 10754                               LO.SACMEQ.MAT.L3.FE
## 10755                               LO.SACMEQ.MAT.L3.MA
## 10756                                  LO.SACMEQ.MAT.L4
## 10757                               LO.SACMEQ.MAT.L4.FE
## 10758                               LO.SACMEQ.MAT.L4.MA
## 10759                                  LO.SACMEQ.MAT.L5
## 10760                               LO.SACMEQ.MAT.L5.FE
## 10761                               LO.SACMEQ.MAT.L5.MA
## 10762                                  LO.SACMEQ.MAT.L6
## 10763                               LO.SACMEQ.MAT.L6.FE
## 10764                               LO.SACMEQ.MAT.L6.MA
## 10765                                  LO.SACMEQ.MAT.L7
## 10766                               LO.SACMEQ.MAT.L7.FE
## 10767                               LO.SACMEQ.MAT.L7.MA
## 10768                                  LO.SACMEQ.MAT.L8
## 10769                               LO.SACMEQ.MAT.L8.FE
## 10770                               LO.SACMEQ.MAT.L8.MA
## 10771                                  LO.SACMEQ.MAT.MA
## 10772                                     LO.SACMEQ.REA
## 10773                                  LO.SACMEQ.REA.FE
## 10774                                  LO.SACMEQ.REA.L1
## 10775                               LO.SACMEQ.REA.L1.FE
## 10776                               LO.SACMEQ.REA.L1.MA
## 10777                                  LO.SACMEQ.REA.L2
## 10778                               LO.SACMEQ.REA.L2.FE
## 10779                               LO.SACMEQ.REA.L2.MA
## 10780                                  LO.SACMEQ.REA.L3
## 10781                               LO.SACMEQ.REA.L3.FE
## 10782                               LO.SACMEQ.REA.L3.MA
## 10783                                  LO.SACMEQ.REA.L4
## 10784                               LO.SACMEQ.REA.L4.FE
## 10785                               LO.SACMEQ.REA.L4.MA
## 10786                                  LO.SACMEQ.REA.L5
## 10787                               LO.SACMEQ.REA.L5.FE
## 10788                               LO.SACMEQ.REA.L5.MA
## 10789                                  LO.SACMEQ.REA.L6
## 10790                               LO.SACMEQ.REA.L6.FE
## 10791                               LO.SACMEQ.REA.L6.MA
## 10792                                  LO.SACMEQ.REA.L7
## 10793                               LO.SACMEQ.REA.L7.FE
## 10794                               LO.SACMEQ.REA.L7.MA
## 10795                                  LO.SACMEQ.REA.L8
## 10796                               LO.SACMEQ.REA.L8.FE
## 10797                               LO.SACMEQ.REA.L8.MA
## 10798                                  LO.SACMEQ.REA.MA
## 10799                                     LO.TIMSS.MAT4
## 10800                                 LO.TIMSS.MAT4.ADV
## 10801                              LO.TIMSS.MAT4.ADV.FE
## 10802                              LO.TIMSS.MAT4.ADV.MA
## 10803                                  LO.TIMSS.MAT4.BL
## 10804                               LO.TIMSS.MAT4.BL.FE
## 10805                               LO.TIMSS.MAT4.BL.MA
## 10806                                  LO.TIMSS.MAT4.FE
## 10807                                  LO.TIMSS.MAT4.HI
## 10808                               LO.TIMSS.MAT4.HI.FE
## 10809                               LO.TIMSS.MAT4.HI.MA
## 10810                                 LO.TIMSS.MAT4.INT
## 10811                              LO.TIMSS.MAT4.INT.FE
## 10812                              LO.TIMSS.MAT4.INT.MA
## 10813                                 LO.TIMSS.MAT4.LOW
## 10814                              LO.TIMSS.MAT4.LOW.FE
## 10815                              LO.TIMSS.MAT4.LOW.MA
## 10816                                  LO.TIMSS.MAT4.MA
## 10817                                 LO.TIMSS.MAT4.P05
## 10818                                 LO.TIMSS.MAT4.P10
## 10819                                 LO.TIMSS.MAT4.P25
## 10820                                 LO.TIMSS.MAT4.P50
## 10821                                 LO.TIMSS.MAT4.P75
## 10822                                 LO.TIMSS.MAT4.P90
## 10823                                 LO.TIMSS.MAT4.P95
## 10824                                     LO.TIMSS.MAT8
## 10825                                 LO.TIMSS.MAT8.ADV
## 10826                              LO.TIMSS.MAT8.ADV.FE
## 10827                              LO.TIMSS.MAT8.ADV.MA
## 10828                                  LO.TIMSS.MAT8.BL
## 10829                               LO.TIMSS.MAT8.BL.FE
## 10830                               LO.TIMSS.MAT8.BL.MA
## 10831                                  LO.TIMSS.MAT8.FE
## 10832                                  LO.TIMSS.MAT8.HI
## 10833                               LO.TIMSS.MAT8.HI.FE
## 10834                               LO.TIMSS.MAT8.HI.MA
## 10835                                 LO.TIMSS.MAT8.INT
## 10836                              LO.TIMSS.MAT8.INT.FE
## 10837                              LO.TIMSS.MAT8.INT.MA
## 10838                                 LO.TIMSS.MAT8.LOW
## 10839                              LO.TIMSS.MAT8.LOW.FE
## 10840                              LO.TIMSS.MAT8.LOW.MA
## 10841                                  LO.TIMSS.MAT8.MA
## 10842                                 LO.TIMSS.MAT8.P05
## 10843                                 LO.TIMSS.MAT8.P10
## 10844                                 LO.TIMSS.MAT8.P25
## 10845                                 LO.TIMSS.MAT8.P50
## 10846                                 LO.TIMSS.MAT8.P75
## 10847                                 LO.TIMSS.MAT8.P90
## 10848                                 LO.TIMSS.MAT8.P95
## 10849                                     LO.TIMSS.SCI4
## 10850                                 LO.TIMSS.SCI4.ADV
## 10851                              LO.TIMSS.SCI4.ADV.FE
## 10852                              LO.TIMSS.SCI4.ADV.MA
## 10853                                  LO.TIMSS.SCI4.BL
## 10854                               LO.TIMSS.SCI4.BL.FE
## 10855                               LO.TIMSS.SCI4.BL.MA
## 10856                                  LO.TIMSS.SCI4.FE
## 10857                                  LO.TIMSS.SCI4.HI
## 10858                               LO.TIMSS.SCI4.HI.FE
## 10859                               LO.TIMSS.SCI4.HI.MA
## 10860                                 LO.TIMSS.SCI4.INT
## 10861                              LO.TIMSS.SCI4.INT.FE
## 10862                              LO.TIMSS.SCI4.INT.MA
## 10863                                 LO.TIMSS.SCI4.LOW
## 10864                              LO.TIMSS.SCI4.LOW.FE
## 10865                              LO.TIMSS.SCI4.LOW.MA
## 10866                                  LO.TIMSS.SCI4.MA
## 10867                                 LO.TIMSS.SCI4.P05
## 10868                                 LO.TIMSS.SCI4.P10
## 10869                                 LO.TIMSS.SCI4.P25
## 10870                                 LO.TIMSS.SCI4.P50
## 10871                                 LO.TIMSS.SCI4.P75
## 10872                                 LO.TIMSS.SCI4.P90
## 10873                                 LO.TIMSS.SCI4.P95
## 10874                                     LO.TIMSS.SCI8
## 10875                                 LO.TIMSS.SCI8.ADV
## 10876                              LO.TIMSS.SCI8.ADV.FE
## 10877                              LO.TIMSS.SCI8.ADV.MA
## 10878                                  LO.TIMSS.SCI8.BL
## 10879                               LO.TIMSS.SCI8.BL.FE
## 10880                               LO.TIMSS.SCI8.BL.MA
## 10881                                  LO.TIMSS.SCI8.FE
## 10882                                  LO.TIMSS.SCI8.HI
## 10883                               LO.TIMSS.SCI8.HI.FE
## 10884                               LO.TIMSS.SCI8.HI.MA
## 10885                                 LO.TIMSS.SCI8.INT
## 10886                              LO.TIMSS.SCI8.INT.FE
## 10887                              LO.TIMSS.SCI8.INT.MA
## 10888                                 LO.TIMSS.SCI8.LOW
## 10889                              LO.TIMSS.SCI8.LOW.FE
## 10890                              LO.TIMSS.SCI8.LOW.MA
## 10891                                  LO.TIMSS.SCI8.MA
## 10892                                 LO.TIMSS.SCI8.P05
## 10893                                 LO.TIMSS.SCI8.P10
## 10894                                 LO.TIMSS.SCI8.P25
## 10895                                 LO.TIMSS.SCI8.P50
## 10896                                 LO.TIMSS.SCI8.P75
## 10897                                 LO.TIMSS.SCI8.P90
## 10898                                 LO.TIMSS.SCI8.P95
## 10899                                    LP.EXP.DURS.MD
## 10900                                    LP.IMP.DURS.MD
## 10901                                    LP.LPI.CUST.RK
## 10902                                    LP.LPI.CUST.XQ
## 10903                                    LP.LPI.INFR.RK
## 10904                                    LP.LPI.INFR.XQ
## 10905                                    LP.LPI.ITRN.RK
## 10906                                    LP.LPI.ITRN.XQ
## 10907                                    LP.LPI.LOGS.RK
## 10908                                    LP.LPI.LOGS.XQ
## 10909                                    LP.LPI.OVRL.RK
## 10910                                 LP.LPI.OVRL.RK.LB
## 10911                                 LP.LPI.OVRL.RK.UB
## 10912                                 LP.LPI.OVRL.RK.ZS
## 10913                                    LP.LPI.OVRL.XQ
## 10914                                 LP.LPI.OVRL.XQ.LB
## 10915                                 LP.LPI.OVRL.XQ.UB
## 10916                                    LP.LPI.TIME.RK
## 10917                                    LP.LPI.TIME.XQ
## 10918                                    LP.LPI.TRAC.RK
## 10919                                    LP.LPI.TRAC.XQ
## 10920                                  MO.INDEX.ECON.XQ
## 10921                                  MO.INDEX.HDEV.XQ
## 10922                                   MO.INDEX.PHR.XQ
## 10923                                  MO.INDEX.SRLW.XQ
## 10924                                       MO.INDEX.XQ
## 10925                                 mobileaccount.t.d
## 10926                               mobileaccount.t.d.1
## 10927                              mobileaccount.t.d.10
## 10928                              mobileaccount.t.d.11
## 10929                               mobileaccount.t.d.2
## 10930                               mobileaccount.t.d.3
## 10931                               mobileaccount.t.d.4
## 10932                               mobileaccount.t.d.5
## 10933                               mobileaccount.t.d.6
## 10934                               mobileaccount.t.d.7
## 10935                               mobileaccount.t.d.8
## 10936                               mobileaccount.t.d.9
## 10937                                    MS.MIL.MPRT.KD
## 10938                                    MS.MIL.MPRT.ZS
## 10939                                    MS.MIL.TOTL.P1
## 10940                                 MS.MIL.TOTL.TF.ZS
## 10941                                    MS.MIL.XPND.CD
## 10942                                    MS.MIL.XPND.CN
## 10943                                 MS.MIL.XPND.GD.ZS
## 10944                                 MS.MIL.XPND.GN.ZS
## 10945                                    MS.MIL.XPND.ZS
## 10946                                    MS.MIL.XPRT.KD
## 10947                                    MS.MIL.XPRT.ZS
## 10948                            NA.GDP.ACC.FB.SNA08.CR
## 10949                            NA.GDP.ACC.FB.SNA08.KR
## 10950                                     NA.GDP.AGR.CR
## 10951                                     NA.GDP.AGR.KR
## 10952                               NA.GDP.AGR.SNA08.CR
## 10953                               NA.GDP.AGR.SNA08.KR
## 10954                              NA.GDP.BUSS.SNA08.CR
## 10955                              NA.GDP.BUSS.SNA08.KR
## 10956                                    NA.GDP.CNST.CR
## 10957                                    NA.GDP.CNST.KR
## 10958                              NA.GDP.CNST.SNA08.CR
## 10959                              NA.GDP.CNST.SNA08.KR
## 10960                              NA.GDP.EDUS.SNA08.CR
## 10961                              NA.GDP.EDUS.SNA08.KR
## 10962                          NA.GDP.ELEC.GAS.SNA08.CR
## 10963                          NA.GDP.ELEC.GAS.SNA08.KR
## 10964                                  NA.GDP.EXC.OG.CR
## 10965                                  NA.GDP.EXC.OG.KR
## 10966                                    NA.GDP.FINS.CR
## 10967                                    NA.GDP.FINS.KR
## 10968                              NA.GDP.FINS.SNA08.CR
## 10969                              NA.GDP.FINS.SNA08.KR
## 10970                         NA.GDP.HLTH.SOCW.SNA08.CR
## 10971                         NA.GDP.HLTH.SOCW.SNA08.KR
## 10972                                  NA.GDP.INC.OG.CR
## 10973                                  NA.GDP.INC.OG.KR
## 10974                            NA.GDP.INC.OG.SNA08.CR
## 10975                            NA.GDP.INC.OG.SNA08.KR
## 10976                          NA.GDP.INF.COMM.SNA08.CR
## 10977                          NA.GDP.INF.COMM.SNA08.KR
## 10978                                    NA.GDP.MINQ.CR
## 10979                                    NA.GDP.MINQ.KR
## 10980                              NA.GDP.MINQ.SNA08.CR
## 10981                              NA.GDP.MINQ.SNA08.KR
## 10982                                     NA.GDP.MNF.CR
## 10983                                     NA.GDP.MNF.KR
## 10984                               NA.GDP.MNF.SNA08.CR
## 10985                               NA.GDP.MNF.SNA08.KR
## 10986                          NA.GDP.PADM.DEF.SNA08.CR
## 10987                          NA.GDP.PADM.DEF.SNA08.KR
## 10988                              NA.GDP.REST.SNA08.CR
## 10989                              NA.GDP.REST.SNA08.KR
## 10990                                NA.GDP.SRV.OTHR.CR
## 10991                                NA.GDP.SRV.OTHR.KR
## 10992                          NA.GDP.SRV.OTHR.SNA08.CR
## 10993                          NA.GDP.SRV.OTHR.SNA08.KR
## 10994                               NA.GDP.TRAN.COMM.CR
## 10995                               NA.GDP.TRAN.COMM.KR
## 10996                         NA.GDP.TRAN.STOR.SNA08.CR
## 10997                         NA.GDP.TRAN.STOR.SNA08.KR
## 10998                                 NA.GDP.TRD.HTL.CR
## 10999                                 NA.GDP.TRD.HTL.KR
## 11000                               NA.GDP.TRD.SNA08.CR
## 11001                               NA.GDP.TRD.SNA08.KR
## 11002                                     NA.GDP.UTL.CR
## 11003                                     NA.GDP.UTL.KR
## 11004                           NA.GDP.WTR.WST.SNA08.CR
## 11005                           NA.GDP.WTR.WST.SNA08.KR
## 11006                                    NE.CON.GOVT.CD
## 11007                                    NE.CON.GOVT.CN
## 11008                                    NE.CON.GOVT.KD
## 11009                                 NE.CON.GOVT.KD.87
## 11010                                 NE.CON.GOVT.KD.ZG
## 11011                                    NE.CON.GOVT.KN
## 11012                                 NE.CON.GOVT.KN.87
## 11013                              NE.CON.GOVT.KN.87.ZG
## 11014                                    NE.CON.GOVT.ZS
## 11015                                    NE.CON.PCAP.CD
## 11016                                    NE.CON.PEPC.KD
## 11017                                    NE.CON.PETC.CD
## 11018                                    NE.CON.PETC.CN
## 11019                                    NE.CON.PETC.KD
## 11020                                 NE.CON.PETC.KD.87
## 11021                                 NE.CON.PETC.KD.ZG
## 11022                                    NE.CON.PETC.KN
## 11023                                 NE.CON.PETC.KN.87
## 11024                              NE.CON.PETC.KN.87.ZG
## 11025                                    NE.CON.PETC.ZS
## 11026                                    NE.CON.PRVT.CD
## 11027                                    NE.CON.PRVT.CN
## 11028                                 NE.CON.PRVT.CN.AD
## 11029                                    NE.CON.PRVT.KD
## 11030                                 NE.CON.PRVT.KD.87
## 11031                                 NE.CON.PRVT.KD.ZG
## 11032                                    NE.CON.PRVT.KN
## 11033                                 NE.CON.PRVT.KN.87
## 11034                              NE.CON.PRVT.KN.87.ZG
## 11035                                 NE.CON.PRVT.PC.KD
## 11036                              NE.CON.PRVT.PC.KD.ZG
## 11037                                 NE.CON.PRVT.PC.ZG
## 11038                                 NE.CON.PRVT.PC.ZS
## 11039                                NE.CON.PRVT.POP.ZG
## 11040                                 NE.CON.PRVT.PP.CD
## 11041                                 NE.CON.PRVT.PP.KD
## 11042                                    NE.CON.PRVT.ZS
## 11043                                    NE.CON.PVPC.KD
## 11044                                    NE.CON.TETC.CD
## 11045                                    NE.CON.TETC.CN
## 11046                                    NE.CON.TETC.KD
## 11047                                 NE.CON.TETC.KD.87
## 11048                                 NE.CON.TETC.KD.ZG
## 11049                                    NE.CON.TETC.KN
## 11050                                 NE.CON.TETC.KN.87
## 11051                              NE.CON.TETC.KN.87.ZG
## 11052                                    NE.CON.TETC.ZS
## 11053                                    NE.CON.TOTL.CD
## 11054                                    NE.CON.TOTL.CN
## 11055                                    NE.CON.TOTL.KD
## 11056                                 NE.CON.TOTL.KD.87
## 11057                                 NE.CON.TOTL.KD.ZG
## 11058                                    NE.CON.TOTL.KN
## 11059                                 NE.CON.TOTL.KN.87
## 11060                                    NE.CON.TOTL.ZG
## 11061                                    NE.CON.TOTL.ZS
## 11062                                    NE.DAB.DEFL.ZS
## 11063                                    NE.DAB.TOTL.CD
## 11064                                    NE.DAB.TOTL.CN
## 11065                                    NE.DAB.TOTL.IN
## 11066                                    NE.DAB.TOTL.KD
## 11067                                 NE.DAB.TOTL.KD.87
## 11068                                    NE.DAB.TOTL.KN
## 11069                                 NE.DAB.TOTL.KN.87
## 11070                                    NE.DAB.TOTL.XD
## 11071                                    NE.DAB.TOTL.ZS
## 11072                                    NE.EXP.CAPM.KN
## 11073                                    NE.EXP.GNFS.CD
## 11074                                    NE.EXP.GNFS.CN
## 11075                                    NE.EXP.GNFS.KD
## 11076                                 NE.EXP.GNFS.KD.87
## 11077                                 NE.EXP.GNFS.KD.ZG
## 11078                                    NE.EXP.GNFS.KN
## 11079                                 NE.EXP.GNFS.KN.87
## 11080                              NE.EXP.GNFS.KN.87.ZG
## 11081                                 NE.EXP.GNFS.KN.ZG
## 11082                                    NE.EXP.GNFS.XN
## 11083                                    NE.EXP.GNFS.ZS
## 11084                                    NE.EXP.TTEF.KN
## 11085                                NE.GDI.CON.GOVT.CR
## 11086                          NE.GDI.CON.GOVT.SNA08.CR
## 11087                                 NE.GDI.CON.NPI.CR
## 11088                           NE.GDI.CON.NPI.SNA08.CR
## 11089                                NE.GDI.CON.PRVT.CR
## 11090                          NE.GDI.CON.PRVT.SNA08.CR
## 11091                                    NE.GDI.EXPT.CR
## 11092                              NE.GDI.EXPT.SNA08.CR
## 11093                                    NE.GDI.FCGV.CD
## 11094                                    NE.GDI.FCGV.CN
## 11095                                    NE.GDI.FCGV.KD
## 11096                                    NE.GDI.FCGV.KN
## 11097                                    NE.GDI.FGOV.CD
## 11098                                    NE.GDI.FGOV.CN
## 11099                                    NE.GDI.FGOV.KD
## 11100                                    NE.GDI.FGOV.KN
## 11101                                    NE.GDI.FIXD.CN
## 11102                                    NE.GDI.FIXD.KN
## 11103                                    NE.GDI.FLGV.CD
## 11104                                    NE.GDI.FLGV.CN
## 11105                                    NE.GDI.FLGV.KN
## 11106                                    NE.GDI.FPBE.CD
## 11107                                    NE.GDI.FPBE.CN
## 11108                                    NE.GDI.FPBE.KN
## 11109                                    NE.GDI.FPRV.CD
## 11110                                    NE.GDI.FPRV.CN
## 11111                                 NE.GDI.FPRV.GI.ZS
## 11112                              NE.GDI.FPRV.GI.ZS.IC
## 11113                                 NE.GDI.FPRV.IC.ZS
## 11114                                NE.GDI.FPRV.IFC.ZS
## 11115                                    NE.GDI.FPRV.KD
## 11116                                    NE.GDI.FPRV.KN
## 11117                                    NE.GDI.FPRV.ZS
## 11118                                    NE.GDI.FPUB.CD
## 11119                                    NE.GDI.FPUB.CN
## 11120                                    NE.GDI.FPUB.KD
## 11121                                    NE.GDI.FPUB.KN
## 11122                                    NE.GDI.FPUB.ZS
## 11123                                    NE.GDI.FTOT.CD
## 11124                                    NE.GDI.FTOT.CN
## 11125                                    NE.GDI.FTOT.CR
## 11126                                    NE.GDI.FTOT.KD
## 11127                                 NE.GDI.FTOT.KD.87
## 11128                                 NE.GDI.FTOT.KD.ZG
## 11129                                    NE.GDI.FTOT.KN
## 11130                                 NE.GDI.FTOT.KN.87
## 11131                              NE.GDI.FTOT.KN.87.ZG
## 11132                              NE.GDI.FTOT.SNA08.CR
## 11133                                    NE.GDI.FTOT.ZS
## 11134                                    NE.GDI.IMPT.CR
## 11135                              NE.GDI.IMPT.SNA08.CR
## 11136                              NE.GDI.INEX.SNA08.CR
## 11137                                    NE.GDI.PCAP.KD
## 11138                                 NE.GDI.PCAP.KD.87
## 11139                                    NE.GDI.STKB.CD
## 11140                                    NE.GDI.STKB.CN
## 11141                                    NE.GDI.STKB.CR
## 11142                                 NE.GDI.STKB.KD.87
## 11143                                    NE.GDI.STKB.KN
## 11144                                 NE.GDI.STKB.KN.87
## 11145                              NE.GDI.STKB.SNA08.CR
## 11146                                    NE.GDI.STPB.CD
## 11147                                    NE.GDI.STPB.CN
## 11148                                    NE.GDI.STPB.KN
## 11149                                    NE.GDI.STPV.CD
## 11150                                    NE.GDI.STPV.CN
## 11151                                    NE.GDI.STPV.KN
## 11152                                    NE.GDI.TOTL.CD
## 11153                                    NE.GDI.TOTL.CN
## 11154                                    NE.GDI.TOTL.CR
## 11155                                    NE.GDI.TOTL.KD
## 11156                                 NE.GDI.TOTL.KD.87
## 11157                                 NE.GDI.TOTL.KD.ZG
## 11158                                    NE.GDI.TOTL.KN
## 11159                                 NE.GDI.TOTL.KN.87
## 11160                              NE.GDI.TOTL.KN.87.ZG
## 11161                              NE.GDI.TOTL.SNA08.CR
## 11162                                    NE.GDI.TOTL.ZG
## 11163                                    NE.GDI.TOTL.ZS
## 11164                                    NE.IMP.GNFS.CD
## 11165                                    NE.IMP.GNFS.CN
## 11166                                    NE.IMP.GNFS.KD
## 11167                                 NE.IMP.GNFS.KD.87
## 11168                                 NE.IMP.GNFS.KD.ZG
## 11169                                    NE.IMP.GNFS.KN
## 11170                                 NE.IMP.GNFS.KN.87
## 11171                              NE.IMP.GNFS.KN.87.ZG
## 11172                                    NE.IMP.GNFS.XN
## 11173                                    NE.IMP.GNFS.ZS
## 11174                                    NE.MRCH.GDP.ZS
## 11175                                    NE.RSB.GNFS.CD
## 11176                                    NE.RSB.GNFS.CN
## 11177                                 NE.RSB.GNFS.KD.87
## 11178                                    NE.RSB.GNFS.KN
## 11179                                 NE.RSB.GNFS.KN.87
## 11180                                    NE.RSB.GNFS.ZG
## 11181                                    NE.RSB.GNFS.ZS
## 11182                                    NE.RSB.TOTL.KN
## 11183                                    NE.TRD.GNFS.CD
## 11184                                    NE.TRD.GNFS.ZS
## 11185                                    NE.TRM.TRAD.XN
## 11186                                    NE.TRM.TRAD.XU
## 11187                                              NEER
## 11188                                    NP.AGR.TOTL.CN
## 11189                                    NP.AGR.TOTL.IN
## 11190                                    NP.AGR.TOTL.KN
## 11191                                    NP.AGR.TOTL.ZG
## 11192                                    NP.IND.TOTL.CN
## 11193                                    NP.IND.TOTL.IN
## 11194                                    NP.IND.TOTL.KN
## 11195                                    NP.IND.TOTL.ZG
## 11196                                    NP.MAN.TOTL.CN
## 11197                                    NP.MAN.TOTL.IN
## 11198                                    NP.MAN.TOTL.KN
## 11199                                    NP.SRV.TOTL.CN
## 11200                                    NP.SRV.TOTL.KN
## 11201                                    NP.SRV.TOTL.ZG
## 11202                                  NRRV.SHR.FRST.CR
## 11203                                   NRRV.SHR.FSH.CR
## 11204                                   NRRV.SHR.GAS.CR
## 11205                                  NRRV.SHR.GEOT.CR
## 11206                                   NRRV.SHR.MIN.CR
## 11207                                  NRRV.SHR.PETR.CR
## 11208                                    NV.AGR.EMPL.KD
## 11209                                 NV.AGR.PCAP.KD.ZG
## 11210                                    NV.AGR.TOTL.CD
## 11211                                    NV.AGR.TOTL.CN
## 11212                                    NV.AGR.TOTL.KD
## 11213                                 NV.AGR.TOTL.KD.87
## 11214                                 NV.AGR.TOTL.KD.ZG
## 11215                                    NV.AGR.TOTL.KN
## 11216                                 NV.AGR.TOTL.KN.87
## 11217                              NV.AGR.TOTL.KN.87.ZG
## 11218                                    NV.AGR.TOTL.XD
## 11219                                    NV.AGR.TOTL.ZG
## 11220                                    NV.AGR.TOTL.ZS
## 11221                                    NV.FSM.TOTL.CN
## 11222                                    NV.FSM.TOTL.KN
## 11223                                    NV.IND.CNST.CD
## 11224                                    NV.IND.CNST.CN
## 11225                                    NV.IND.CNST.KN
## 11226                                    NV.IND.EMPL.KD
## 11227                                    NV.IND.GELW.CD
## 11228                                    NV.IND.GELW.CN
## 11229                                    NV.IND.GELW.KN
## 11230                                    NV.IND.MANF.CD
## 11231                                    NV.IND.MANF.CN
## 11232                                    NV.IND.MANF.KD
## 11233                                 NV.IND.MANF.KD.87
## 11234                                 NV.IND.MANF.KD.ZG
## 11235                                    NV.IND.MANF.KN
## 11236                                 NV.IND.MANF.KN.87
## 11237                              NV.IND.MANF.KN.87.ZG
## 11238                                 NV.IND.MANF.KN.ZG
## 11239                                    NV.IND.MANF.XD
## 11240                                    NV.IND.MANF.ZS
## 11241                                    NV.IND.MINQ.CD
## 11242                                    NV.IND.MINQ.CN
## 11243                                    NV.IND.MINQ.KD
## 11244                                    NV.IND.MINQ.KN
## 11245                                    NV.IND.TOTL.CD
## 11246                                    NV.IND.TOTL.CN
## 11247                                    NV.IND.TOTL.KD
## 11248                                 NV.IND.TOTL.KD.87
## 11249                                 NV.IND.TOTL.KD.ZG
## 11250                                    NV.IND.TOTL.KN
## 11251                                 NV.IND.TOTL.KN.87
## 11252                              NV.IND.TOTL.KN.87.ZG
## 11253                                    NV.IND.TOTL.XD
## 11254                                    NV.IND.TOTL.ZG
## 11255                                    NV.IND.TOTL.ZS
## 11256                                 NV.MNF.CHEM.UN.ZS
## 11257                                 NV.MNF.CHEM.ZS.UN
## 11258                                 NV.MNF.FBTO.UN.ZS
## 11259                                 NV.MNF.FBTO.ZS.UN
## 11260                                 NV.MNF.MTRN.UN.ZS
## 11261                                 NV.MNF.MTRN.ZS.UN
## 11262                                 NV.MNF.OTHR.UN.ZS
## 11263                                 NV.MNF.OTHR.ZS.UN
## 11264                                 NV.MNF.TECH.ZS.UN
## 11265                                 NV.MNF.TXTL.UN.ZS
## 11266                                 NV.MNF.TXTL.ZS.UN
## 11267                                    NV.SRV.ADMN.CD
## 11268                                    NV.SRV.ADMN.CN
## 11269                                    NV.SRV.ADMN.KN
## 11270                                    NV.SRV.BNKG.CD
## 11271                                    NV.SRV.BNKG.CN
## 11272                                    NV.SRV.BNKG.KN
## 11273                                    NV.SRV.DISC.CD
## 11274                                    NV.SRV.DISC.CN
## 11275                                    NV.SRV.DISC.KN
## 11276                                    NV.SRV.DWEL.CD
## 11277                                    NV.SRV.DWEL.CN
## 11278                                    NV.SRV.DWEL.KN
## 11279                                    NV.SRV.EMPL.KD
## 11280                                    NV.SRV.OTHR.CD
## 11281                                    NV.SRV.OTHR.CN
## 11282                                    NV.SRV.OTHR.KN
## 11283                                    NV.SRV.TETC.CD
## 11284                                    NV.SRV.TETC.CN
## 11285                                    NV.SRV.TETC.KD
## 11286                                 NV.SRV.TETC.KD.87
## 11287                                 NV.SRV.TETC.KD.ZG
## 11288                                    NV.SRV.TETC.KN
## 11289                                 NV.SRV.TETC.KN.87
## 11290                              NV.SRV.TETC.KN.87.ZG
## 11291                                 NV.SRV.TETC.KN.ZG
## 11292                                    NV.SRV.TETC.ZG
## 11293                                    NV.SRV.TETC.ZS
## 11294                                    NV.SRV.TOTL.CD
## 11295                                    NV.SRV.TOTL.CN
## 11296                                    NV.SRV.TOTL.KD
## 11297                                 NV.SRV.TOTL.KD.ZG
## 11298                                    NV.SRV.TOTL.KN
## 11299                                    NV.SRV.TOTL.ZS
## 11300                                    NV.SRV.TRAD.CD
## 11301                                    NV.SRV.TRAD.CN
## 11302                                    NV.SRV.TRAD.KN
## 11303                                    NV.SRV.TRAN.CD
## 11304                                    NV.SRV.TRAN.CN
## 11305                                    NV.SRV.TRAN.KN
## 11306                                    NW.HCA.FEMA.PC
## 11307                                    NW.HCA.FEMA.TO
## 11308                                    NW.HCA.FEMP.PC
## 11309                                    NW.HCA.FEMP.TO
## 11310                                    NW.HCA.FSEM.PC
## 11311                                    NW.HCA.FSEM.TO
## 11312                                    NW.HCA.MALE.PC
## 11313                                    NW.HCA.MALE.TO
## 11314                                    NW.HCA.MEMP.PC
## 11315                                    NW.HCA.MEMP.TO
## 11316                                    NW.HCA.MSEM.PC
## 11317                                    NW.HCA.MSEM.TO
## 11318                                         NW.HCA.PC
## 11319                                         NW.HCA.TO
## 11320                                    NW.NCA.AGRI.PC
## 11321                                    NW.NCA.AGRI.TO
## 11322                                    NW.NCA.CROL.PC
## 11323                                    NW.NCA.CROL.TO
## 11324                                    NW.NCA.FECO.PC
## 11325                                    NW.NCA.FECO.TO
## 11326                                    NW.NCA.FISH.PC
## 11327                                    NW.NCA.FISH.TO
## 11328                                    NW.NCA.FOSL.PC
## 11329                                    NW.NCA.FOSL.TO
## 11330                                    NW.NCA.FTIM.PC
## 11331                                    NW.NCA.FTIM.TO
## 11332                                    NW.NCA.MANG.PC
## 11333                                    NW.NCA.MANG.TO
## 11334                                    NW.NCA.MINR.PC
## 11335                                    NW.NCA.MINR.TO
## 11336                                    NW.NCA.PASL.PC
## 11337                                    NW.NCA.PASL.TO
## 11338                                         NW.NCA.PC
## 11339                                    NW.NCA.PRAR.PC
## 11340                                    NW.NCA.PRAR.TO
## 11341                                    NW.NCA.RNEW.PC
## 11342                                    NW.NCA.RNEW.TO
## 11343                                    NW.NCA.SACO.PC
## 11344                                    NW.NCA.SACO.TO
## 11345                                    NW.NCA.SAGA.PC
## 11346                                    NW.NCA.SAGA.TO
## 11347                                    NW.NCA.SAOI.PC
## 11348                                    NW.NCA.SAOI.TO
## 11349                                    NW.NCA.SSOI.PC
## 11350                                    NW.NCA.SSOI.TO
## 11351                                         NW.NCA.TO
## 11352                                         NW.NFA.PC
## 11353                                         NW.NFA.TO
## 11354                                         NW.PCA.PC
## 11355                                         NW.PCA.TO
## 11356                                         NW.TOW.PC
## 11357                                         NW.TOW.TO
## 11358                                    NY.ADJ.AEDU.CD
## 11359                                 NY.ADJ.AEDU.GN.ZS
## 11360                                    NY.ADJ.DCO2.CD
## 11361                                 NY.ADJ.DCO2.GN.ZS
## 11362                                    NY.ADJ.DFOR.CD
## 11363                                 NY.ADJ.DFOR.GN.ZS
## 11364                                    NY.ADJ.DKAP.CD
## 11365                                 NY.ADJ.DKAP.GN.ZS
## 11366                                    NY.ADJ.DMIN.CD
## 11367                                 NY.ADJ.DMIN.GN.ZS
## 11368                                    NY.ADJ.DNGY.CD
## 11369                                 NY.ADJ.DNGY.GN.ZS
## 11370                                    NY.ADJ.DPEM.CD
## 11371                                 NY.ADJ.DPEM.GN.ZS
## 11372                                 NY.ADJ.DRES.GN.ZS
## 11373                                    NY.ADJ.ICTR.CD
## 11374                                 NY.ADJ.ICTR.GN.ZS
## 11375                                    NY.ADJ.NNAT.CD
## 11376                                 NY.ADJ.NNAT.GN.ZS
## 11377                                    NY.ADJ.NNTY.CD
## 11378                                    NY.ADJ.NNTY.KD
## 11379                                 NY.ADJ.NNTY.KD.ZG
## 11380                                 NY.ADJ.NNTY.PC.CD
## 11381                                 NY.ADJ.NNTY.PC.KD
## 11382                              NY.ADJ.NNTY.PC.KD.ZG
## 11383                                    NY.ADJ.SVNG.CD
## 11384                                 NY.ADJ.SVNG.GN.ZS
## 11385                                 NY.ADJ.SVNG.PC.CD
## 11386                                    NY.ADJ.SVNX.CD
## 11387                                 NY.ADJ.SVNX.GN.ZS
## 11388                                 NY.AGR.SUBS.GD.ZS
## 11389                                 NY.EXP.CAPM.KD.87
## 11390                                    NY.EXP.CAPM.KN
## 11391                                 NY.EXP.CAPM.KN.87
## 11392                                 NY.GDP.COAL.RT.ZS
## 11393                                 NY.GDP.DEFL.87.ZG
## 11394                                 NY.GDP.DEFL.KD.ZG
## 11395                              NY.GDP.DEFL.KD.ZG.AD
## 11396                                    NY.GDP.DEFL.ZS
## 11397                                 NY.GDP.DEFL.ZS.87
## 11398                                 NY.GDP.DEFL.ZS.AD
## 11399                                    NY.GDP.DISC.CD
## 11400                                    NY.GDP.DISC.CN
## 11401                                    NY.GDP.DISC.KN
## 11402                                    NY.GDP.FCST.CD
## 11403                                    NY.GDP.FCST.CN
## 11404                                    NY.GDP.FCST.KD
## 11405                                 NY.GDP.FCST.KD.87
## 11406                                    NY.GDP.FCST.KN
## 11407                                 NY.GDP.FCST.KN.87
## 11408                                 NY.GDP.FRST.RT.ZS
## 11409                                 NY.GDP.MINR.RT.ZS
## 11410                                    NY.GDP.MKTP.CD
## 11411                                 NY.GDP.MKTP.CD.XD
## 11412                                    NY.GDP.MKTP.CN
## 11413                                 NY.GDP.MKTP.CN.AD
## 11414                                 NY.GDP.MKTP.CN.XD
## 11415                                    NY.GDP.MKTP.IN
## 11416                                    NY.GDP.MKTP.KD
## 11417                                 NY.GDP.MKTP.KD.87
## 11418                                 NY.GDP.MKTP.KD.ZG
## 11419                                    NY.GDP.MKTP.KN
## 11420                                 NY.GDP.MKTP.KN.87
## 11421                              NY.GDP.MKTP.KN.87.ZG
## 11422                                 NY.GDP.MKTP.PP.CD
## 11423                                 NY.GDP.MKTP.PP.KD
## 11424                              NY.GDP.MKTP.PP.KD.87
## 11425                                    NY.GDP.MKTP.XD
## 11426                                  NY.GDP.MKTP.XU.E
## 11427                                    NY.GDP.MKTP.ZG
## 11428                                 NY.GDP.NGAS.RT.ZS
## 11429                                    NY.GDP.PCAP.CD
## 11430                                    NY.GDP.PCAP.CN
## 11431                                    NY.GDP.PCAP.KD
## 11432                                 NY.GDP.PCAP.KD.ZG
## 11433                                    NY.GDP.PCAP.KN
## 11434                                 NY.GDP.PCAP.PP.CD
## 11435                                 NY.GDP.PCAP.PP.KD
## 11436                              NY.GDP.PCAP.PP.KD.87
## 11437                              NY.GDP.PCAP.PP.KD.ZG
## 11438                                 NY.GDP.PETR.RT.ZS
## 11439                                 NY.GDP.TOTL.RT.ZS
## 11440                                    NY.GDS.PRVT.CD
## 11441                                    NY.GDS.PRVT.CN
## 11442                                    NY.GDS.PRVT.KN
## 11443                                    NY.GDS.PUBL.CD
## 11444                                    NY.GDS.PUBL.CN
## 11445                                    NY.GDS.PUBL.KN
## 11446                                    NY.GDS.TOTL.CD
## 11447                                    NY.GDS.TOTL.CN
## 11448                                    NY.GDS.TOTL.KD
## 11449                                 NY.GDS.TOTL.KD.87
## 11450                                    NY.GDS.TOTL.KN
## 11451                                 NY.GDS.TOTL.KN.87
## 11452                                    NY.GDS.TOTL.ZS
## 11453                                    NY.GDY.TOTL.KD
## 11454                                 NY.GDY.TOTL.KD.87
## 11455                                    NY.GDY.TOTL.KN
## 11456                                 NY.GDY.TOTL.KN.87
## 11457                                 NY.GEN.AEDU.GD.ZS
## 11458                                 NY.GEN.DCO2.GD.ZS
## 11459                                 NY.GEN.DFOR.GD.ZS
## 11460                                 NY.GEN.DKAP.GD.ZS
## 11461                                 NY.GEN.DMIN.GD.ZS
## 11462                                 NY.GEN.DNGY.GD.ZS
## 11463                                 NY.GEN.NDOM.GD.ZS
## 11464                                 NY.GEN.SVNG.GD.ZS
## 11465                                    NY.GNP.ATLS.CD
## 11466                                    NY.GNP.MKTP.CD
## 11467                                    NY.GNP.MKTP.CN
## 11468                                 NY.GNP.MKTP.CN.AD
## 11469                                    NY.GNP.MKTP.KD
## 11470                                 NY.GNP.MKTP.KD.87
## 11471                                 NY.GNP.MKTP.KD.ZG
## 11472                                    NY.GNP.MKTP.KN
## 11473                                 NY.GNP.MKTP.KN.87
## 11474                              NY.GNP.MKTP.KN.87.ZG
## 11475                                 NY.GNP.MKTP.PC.CD
## 11476                                 NY.GNP.MKTP.PP.CD
## 11477                                 NY.GNP.MKTP.PP.KD
## 11478                              NY.GNP.MKTP.PP.KD.87
## 11479                                    NY.GNP.PCAP.CD
## 11480                                 NY.GNP.PCAP.CD.AT
## 11481                                    NY.GNP.PCAP.CN
## 11482                                    NY.GNP.PCAP.KD
## 11483                                 NY.GNP.PCAP.KD.87
## 11484                                 NY.GNP.PCAP.KD.ZG
## 11485                                    NY.GNP.PCAP.KN
## 11486                                 NY.GNP.PCAP.KN.87
## 11487                                 NY.GNP.PCAP.PP.CD
## 11488                                 NY.GNP.PCAP.PP.KD
## 11489                              NY.GNP.PCAP.PP.KD.87
## 11490                                    NY.GNP.PCAP.ZG
## 11491                                    NY.GNP.PCAT.CD
## 11492                                    NY.GNS.ICTR.CD
## 11493                                    NY.GNS.ICTR.CN
## 11494                                 NY.GNS.ICTR.GN.ZS
## 11495                                    NY.GNS.ICTR.KD
## 11496                                    NY.GNS.ICTR.KN
## 11497                                    NY.GNS.ICTR.ZS
## 11498                                    NY.GNS.PRVT.CD
## 11499                                    NY.GNS.PRVT.CN
## 11500                                    NY.GNS.PRVT.KN
## 11501                                    NY.GNS.PUBL.CD
## 11502                                    NY.GNS.PUBL.CN
## 11503                                    NY.GNS.PUBL.KN
## 11504                                    NY.GNS.TOTL.CN
## 11505                                    NY.GNY.PCAP.KD
## 11506                                 NY.GNY.PCAP.KD.87
## 11507                                    NY.GNY.TOTL.CN
## 11508                                    NY.GNY.TOTL.KD
## 11509                                 NY.GNY.TOTL.KD.87
## 11510                                    NY.GNY.TOTL.KN
## 11511                                 NY.GNY.TOTL.KN.87
## 11512                                    NY.GNY.TOTL.ZG
## 11513                                    NY.GSR.NFCY.CD
## 11514                                    NY.GSR.NFCY.CN
## 11515                                 NY.GSR.NFCY.KD.87
## 11516                                    NY.GSR.NFCY.KN
## 11517                                 NY.GSR.NFCY.KN.87
## 11518                                    NY.SVF.NFSY.CN
## 11519                                    NY.TAX.IDRT.CD
## 11520                                    NY.TAX.IDRT.CN
## 11521                                    NY.TAX.NIND.CD
## 11522                                    NY.TAX.NIND.CN
## 11523                                 NY.TAX.NIND.KD.87
## 11524                                    NY.TAX.NIND.KN
## 11525                                 NY.TAX.NIND.KN.87
## 11526                                    NY.TAX.SUBS.CD
## 11527                                    NY.TAX.SUBS.CN
## 11528                                    NY.TRF.NCTR.CD
## 11529                                    NY.TRF.NCTR.CN
## 11530                                    NY.TRF.NCTR.KN
## 11531                                 NY.TTF.GNFS.KD.87
## 11532                                    NY.TTF.GNFS.KN
## 11533                                 NY.TTF.GNFS.KN.87
## 11534                                    NY.TTF.MRCH.KN
## 11535                                      NYGDPMKTPKDZ
## 11536                                     NYGDPMKTPSACD
## 11537                                     NYGDPMKTPSACN
## 11538                                     NYGDPMKTPSAKD
## 11539                                     NYGDPMKTPSAKN
## 11540                                    OECD.TSAL.0.E0
## 11541                                   OECD.TSAL.0.E10
## 11542                                   OECD.TSAL.0.E15
## 11543                                  OECD.TSAL.0.ETOP
## 11544                                    OECD.TSAL.1.E0
## 11545                                   OECD.TSAL.1.E10
## 11546                                   OECD.TSAL.1.E15
## 11547                                  OECD.TSAL.1.ETOP
## 11548                                    OECD.TSAL.2.E0
## 11549                                   OECD.TSAL.2.E10
## 11550                                   OECD.TSAL.2.E15
## 11551                                  OECD.TSAL.2.ETOP
## 11552                                    OECD.TSAL.3.E0
## 11553                                   OECD.TSAL.3.E10
## 11554                                   OECD.TSAL.3.E15
## 11555                                  OECD.TSAL.3.ETOP
## 11556                                  OTHR.TAX.PAID.ZS
## 11557                                           p_F_nsk
## 11558                                           p_F_skl
## 11559                                           p_M_nsk
## 11560                                           p_M_skl
## 11561                                       PA.NUS.ATLS
## 11562                                       PA.NUS.FCRF
## 11563                                    PA.NUS.FCRF.XR
## 11564                                        PA.NUS.PPP
## 11565                                     PA.NUS.PPP.05
## 11566                                    PA.NUS.PPPC.RF
## 11567                                    PA.NUS.PRVT.PP
## 11568                                 PA.NUS.PRVT.PP.05
## 11569                                    PA.PPR.MAIZ.CD
## 11570                                    PA.PPR.MAIZ.CN
## 11571                                    PA.PPR.WHEA.CD
## 11572                                    PA.PPR.WHEA.CN
## 11573                                      PALM.LND.DMG
## 11574                                      PALM.LND.IMM
## 11575                                      PALM.LND.MTR
## 11576                                     PALM.LND.PRVT
## 11577                                     PALM.LND.SMHD
## 11578                                      PALM.LND.SOE
## 11579                                     PALM.LND.TOTL
## 11580                                     PALM.PRD.PRVT
## 11581                                     PALM.PRD.SMHD
## 11582                                      PALM.PRD.SOE
## 11583                                     PALM.PRD.TOTL
## 11584                                     PALM.YLD.PRVT
## 11585                                     PALM.YLD.SMHD
## 11586                                      PALM.YLD.SOE
## 11587                        PAY.TAX.COIT.AU.HRS.DB1719
## 11588                PAY.TAX.COIT.AU.HRS.TM.DB1719.DFRN
## 11589                        PAY.TAX.COIT.AU.WKS.DB1719
## 11590                   PAY.TAX.COIT.WKS.TM.DB1719.DFRN
## 11591                               PAY.TAX.DB0616.DFRN
## 11592                               PAY.TAX.DB1719.DRFN
## 11593                         PAY.TAX.LABR.TAX.CONTR.ZS
## 11594              PAY.TAX.POST.FIL.XD.0100.DB1719.DFRN
## 11595                                PAY.TAX.PRFT.CP.ZS
## 11596                              PAY.TAX.PYMT.FREQ.NO
## 11597                              PAY.TAX.PYMT.NO.DFRN
## 11598                                   PAY.TAX.RK.DB19
## 11599                                        PAY.TAX.TM
## 11600                                   PAY.TAX.TM.DFRN
## 11601                             PAY.TAX.TOT.TAX.RT.ZS
## 11602                       PAY.TAX.TOT.TAX.RT.ZS.DRFRN
## 11603                 PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719
## 11604            PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719.DFRN
## 11605               PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719
## 11606          PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719.DFRN
## 11607                                       PE.NUS.FCAE
## 11608                                       PE.USG.LNDN
## 11609                         per_allsp.adq_ep_preT_tot
## 11610                              per_allsp.adq_ep_tot
## 11611                        per_allsp.adq_pop_preT_tot
## 11612                             per_allsp.adq_pop_rur
## 11613                             per_allsp.adq_pop_tot
## 11614                             per_allsp.adq_pop_urb
## 11615                         per_allsp.adq_q1_preT_tot
## 11616                              per_allsp.adq_q1_rur
## 11617                              per_allsp.adq_q1_tot
## 11618                              per_allsp.adq_q1_urb
## 11619                         per_allsp.adq_q2_preT_tot
## 11620                              per_allsp.adq_q2_rur
## 11621                              per_allsp.adq_q2_tot
## 11622                              per_allsp.adq_q2_urb
## 11623                         per_allsp.adq_q3_preT_tot
## 11624                              per_allsp.adq_q3_rur
## 11625                              per_allsp.adq_q3_tot
## 11626                              per_allsp.adq_q3_urb
## 11627                         per_allsp.adq_q4_preT_tot
## 11628                              per_allsp.adq_q4_rur
## 11629                              per_allsp.adq_q4_tot
## 11630                              per_allsp.adq_q4_urb
## 11631                         per_allsp.adq_q5_preT_tot
## 11632                              per_allsp.adq_q5_rur
## 11633                              per_allsp.adq_q5_tot
## 11634                              per_allsp.adq_q5_urb
## 11635                         per_allsp.avt_ep_preT_tot
## 11636                              per_allsp.avt_ep_tot
## 11637                        per_allsp.avt_pop_preT_tot
## 11638                             per_allsp.avt_pop_rur
## 11639                             per_allsp.avt_pop_tot
## 11640                             per_allsp.avt_pop_urb
## 11641                         per_allsp.avt_q1_preT_tot
## 11642                              per_allsp.avt_q1_rur
## 11643                              per_allsp.avt_q1_tot
## 11644                              per_allsp.avt_q1_urb
## 11645                         per_allsp.avt_q2_preT_tot
## 11646                              per_allsp.avt_q2_rur
## 11647                              per_allsp.avt_q2_tot
## 11648                              per_allsp.avt_q2_urb
## 11649                         per_allsp.avt_q3_preT_tot
## 11650                              per_allsp.avt_q3_rur
## 11651                              per_allsp.avt_q3_tot
## 11652                              per_allsp.avt_q3_urb
## 11653                         per_allsp.avt_q4_preT_tot
## 11654                              per_allsp.avt_q4_rur
## 11655                              per_allsp.avt_q4_tot
## 11656                              per_allsp.avt_q4_urb
## 11657                         per_allsp.avt_q5_preT_tot
## 11658                              per_allsp.avt_q5_rur
## 11659                              per_allsp.avt_q5_tot
## 11660                              per_allsp.avt_q5_urb
## 11661                         per_allsp.ben_ep_preT_tot
## 11662                              per_allsp.ben_ep_tot
## 11663                         per_allsp.ben_q1_preT_tot
## 11664                              per_allsp.ben_q1_rur
## 11665                              per_allsp.ben_q1_tot
## 11666                              per_allsp.ben_q1_urb
## 11667                         per_allsp.ben_q2_preT_tot
## 11668                              per_allsp.ben_q2_rur
## 11669                              per_allsp.ben_q2_tot
## 11670                              per_allsp.ben_q2_urb
## 11671                         per_allsp.ben_q3_preT_tot
## 11672                              per_allsp.ben_q3_rur
## 11673                              per_allsp.ben_q3_tot
## 11674                              per_allsp.ben_q3_urb
## 11675                         per_allsp.ben_q4_preT_tot
## 11676                              per_allsp.ben_q4_rur
## 11677                              per_allsp.ben_q4_tot
## 11678                              per_allsp.ben_q4_urb
## 11679                         per_allsp.ben_q5_preT_tot
## 11680                              per_allsp.ben_q5_rur
## 11681                              per_allsp.ben_q5_tot
## 11682                              per_allsp.ben_q5_urb
## 11683                         per_allsp.bry_ep_preT_tot
## 11684                              per_allsp.bry_ep_tot
## 11685                         per_allsp.bry_q1_preT_tot
## 11686                              per_allsp.bry_q1_rur
## 11687                              per_allsp.bry_q1_tot
## 11688                              per_allsp.bry_q1_urb
## 11689                         per_allsp.bry_q2_preT_tot
## 11690                              per_allsp.bry_q2_rur
## 11691                              per_allsp.bry_q2_tot
## 11692                              per_allsp.bry_q2_urb
## 11693                         per_allsp.bry_q3_preT_tot
## 11694                              per_allsp.bry_q3_rur
## 11695                              per_allsp.bry_q3_tot
## 11696                              per_allsp.bry_q3_urb
## 11697                         per_allsp.bry_q4_preT_tot
## 11698                              per_allsp.bry_q4_rur
## 11699                              per_allsp.bry_q4_tot
## 11700                              per_allsp.bry_q4_urb
## 11701                         per_allsp.bry_q5_preT_tot
## 11702                              per_allsp.bry_q5_rur
## 11703                              per_allsp.bry_q5_tot
## 11704                              per_allsp.bry_q5_urb
## 11705                         per_allsp.cba_ep_preT_tot
## 11706                              per_allsp.cba_ep_tot
## 11707                         per_allsp.cba_q1_preT_tot
## 11708                              per_allsp.cba_q1_rur
## 11709                              per_allsp.cba_q1_tot
## 11710                              per_allsp.cba_q1_urb
## 11711                         per_allsp.cov_ep_preT_tot
## 11712                              per_allsp.cov_ep_tot
## 11713                        per_allsp.cov_pop_preT_tot
## 11714                             per_allsp.cov_pop_rur
## 11715                             per_allsp.cov_pop_tot
## 11716                             per_allsp.cov_pop_urb
## 11717                         per_allsp.cov_q1_preT_tot
## 11718                              per_allsp.cov_q1_rur
## 11719                              per_allsp.cov_q1_tot
## 11720                              per_allsp.cov_q1_urb
## 11721                         per_allsp.cov_q2_preT_tot
## 11722                              per_allsp.cov_q2_rur
## 11723                              per_allsp.cov_q2_tot
## 11724                              per_allsp.cov_q2_urb
## 11725                         per_allsp.cov_q3_preT_tot
## 11726                              per_allsp.cov_q3_rur
## 11727                              per_allsp.cov_q3_tot
## 11728                              per_allsp.cov_q3_urb
## 11729                         per_allsp.cov_q4_preT_tot
## 11730                              per_allsp.cov_q4_rur
## 11731                              per_allsp.cov_q4_tot
## 11732                              per_allsp.cov_q4_urb
## 11733                         per_allsp.cov_q5_preT_tot
## 11734                              per_allsp.cov_q5_rur
## 11735                              per_allsp.cov_q5_tot
## 11736                              per_allsp.cov_q5_urb
## 11737                                per_allsp_gini_rur
## 11738                                per_allsp_gini_tot
## 11739                                per_allsp_gini_urb
## 11740                               per_allsp_p0_ep_tot
## 11741                                  per_allsp_p0_rur
## 11742                                  per_allsp_p0_tot
## 11743                                  per_allsp_p0_urb
## 11744                               per_allsp_p1_ep_tot
## 11745                                  per_allsp_p1_rur
## 11746                                  per_allsp_p1_tot
## 11747                                  per_allsp_p1_urb
## 11748                         per_lm_ac.adq_ep_preT_tot
## 11749                              per_lm_ac.adq_ep_tot
## 11750                        per_lm_ac.adq_pop_preT_tot
## 11751                             per_lm_ac.adq_pop_rur
## 11752                             per_lm_ac.adq_pop_tot
## 11753                             per_lm_ac.adq_pop_urb
## 11754                         per_lm_ac.adq_q1_preT_tot
## 11755                              per_lm_ac.adq_q1_rur
## 11756                              per_lm_ac.adq_q1_tot
## 11757                              per_lm_ac.adq_q1_urb
## 11758                         per_lm_ac.adq_q2_preT_tot
## 11759                              per_lm_ac.adq_q2_rur
## 11760                              per_lm_ac.adq_q2_tot
## 11761                              per_lm_ac.adq_q2_urb
## 11762                         per_lm_ac.adq_q3_preT_tot
## 11763                              per_lm_ac.adq_q3_rur
## 11764                              per_lm_ac.adq_q3_tot
## 11765                              per_lm_ac.adq_q3_urb
## 11766                         per_lm_ac.adq_q4_preT_tot
## 11767                              per_lm_ac.adq_q4_rur
## 11768                              per_lm_ac.adq_q4_tot
## 11769                              per_lm_ac.adq_q4_urb
## 11770                         per_lm_ac.adq_q5_preT_tot
## 11771                              per_lm_ac.adq_q5_rur
## 11772                              per_lm_ac.adq_q5_tot
## 11773                              per_lm_ac.adq_q5_urb
## 11774                         per_lm_ac.avt_ep_preT_tot
## 11775                              per_lm_ac.avt_ep_tot
## 11776                        per_lm_ac.avt_pop_preT_tot
## 11777                             per_lm_ac.avt_pop_rur
## 11778                             per_lm_ac.avt_pop_tot
## 11779                             per_lm_ac.avt_pop_urb
## 11780                         per_lm_ac.avt_q1_preT_tot
## 11781                              per_lm_ac.avt_q1_rur
## 11782                              per_lm_ac.avt_q1_tot
## 11783                              per_lm_ac.avt_q1_urb
## 11784                         per_lm_ac.avt_q2_preT_tot
## 11785                              per_lm_ac.avt_q2_rur
## 11786                              per_lm_ac.avt_q2_tot
## 11787                              per_lm_ac.avt_q2_urb
## 11788                         per_lm_ac.avt_q3_preT_tot
## 11789                              per_lm_ac.avt_q3_rur
## 11790                              per_lm_ac.avt_q3_tot
## 11791                              per_lm_ac.avt_q3_urb
## 11792                         per_lm_ac.avt_q4_preT_tot
## 11793                              per_lm_ac.avt_q4_rur
## 11794                              per_lm_ac.avt_q4_tot
## 11795                              per_lm_ac.avt_q4_urb
## 11796                         per_lm_ac.avt_q5_preT_tot
## 11797                              per_lm_ac.avt_q5_rur
## 11798                              per_lm_ac.avt_q5_tot
## 11799                              per_lm_ac.avt_q5_urb
## 11800                         per_lm_ac.ben_ep_preT_tot
## 11801                              per_lm_ac.ben_ep_tot
## 11802                         per_lm_ac.ben_q1_preT_tot
## 11803                              per_lm_ac.ben_q1_rur
## 11804                              per_lm_ac.ben_q1_tot
## 11805                              per_lm_ac.ben_q1_urb
## 11806                         per_lm_ac.ben_q2_preT_tot
## 11807                              per_lm_ac.ben_q2_rur
## 11808                              per_lm_ac.ben_q2_tot
## 11809                              per_lm_ac.ben_q2_urb
## 11810                         per_lm_ac.ben_q3_preT_tot
## 11811                              per_lm_ac.ben_q3_rur
## 11812                              per_lm_ac.ben_q3_tot
## 11813                              per_lm_ac.ben_q3_urb
## 11814                         per_lm_ac.ben_q4_preT_tot
## 11815                              per_lm_ac.ben_q4_rur
## 11816                              per_lm_ac.ben_q4_tot
## 11817                              per_lm_ac.ben_q4_urb
## 11818                         per_lm_ac.ben_q5_preT_tot
## 11819                              per_lm_ac.ben_q5_rur
## 11820                              per_lm_ac.ben_q5_tot
## 11821                              per_lm_ac.ben_q5_urb
## 11822                         per_lm_ac.bry_ep_preT_tot
## 11823                              per_lm_ac.bry_ep_tot
## 11824                         per_lm_ac.bry_q1_preT_tot
## 11825                              per_lm_ac.bry_q1_rur
## 11826                              per_lm_ac.bry_q1_tot
## 11827                              per_lm_ac.bry_q1_urb
## 11828                         per_lm_ac.bry_q2_preT_tot
## 11829                              per_lm_ac.bry_q2_rur
## 11830                              per_lm_ac.bry_q2_tot
## 11831                              per_lm_ac.bry_q2_urb
## 11832                         per_lm_ac.bry_q3_preT_tot
## 11833                              per_lm_ac.bry_q3_rur
## 11834                              per_lm_ac.bry_q3_tot
## 11835                              per_lm_ac.bry_q3_urb
## 11836                         per_lm_ac.bry_q4_preT_tot
## 11837                              per_lm_ac.bry_q4_rur
## 11838                              per_lm_ac.bry_q4_tot
## 11839                              per_lm_ac.bry_q4_urb
## 11840                         per_lm_ac.bry_q5_preT_tot
## 11841                              per_lm_ac.bry_q5_rur
## 11842                              per_lm_ac.bry_q5_tot
## 11843                              per_lm_ac.bry_q5_urb
## 11844                         per_lm_ac.cba_ep_preT_tot
## 11845                              per_lm_ac.cba_ep_tot
## 11846                         per_lm_ac.cba_q1_preT_tot
## 11847                              per_lm_ac.cba_q1_rur
## 11848                              per_lm_ac.cba_q1_tot
## 11849                              per_lm_ac.cba_q1_urb
## 11850                         per_lm_ac.cov_ep_preT_tot
## 11851                              per_lm_ac.cov_ep_tot
## 11852                        per_lm_ac.cov_pop_preT_tot
## 11853                             per_lm_ac.cov_pop_rur
## 11854                             per_lm_ac.cov_pop_tot
## 11855                             per_lm_ac.cov_pop_urb
## 11856                         per_lm_ac.cov_q1_preT_tot
## 11857                              per_lm_ac.cov_q1_rur
## 11858                              per_lm_ac.cov_q1_tot
## 11859                              per_lm_ac.cov_q1_urb
## 11860                         per_lm_ac.cov_q2_preT_tot
## 11861                              per_lm_ac.cov_q2_rur
## 11862                              per_lm_ac.cov_q2_tot
## 11863                              per_lm_ac.cov_q2_urb
## 11864                         per_lm_ac.cov_q3_preT_tot
## 11865                              per_lm_ac.cov_q3_rur
## 11866                              per_lm_ac.cov_q3_tot
## 11867                              per_lm_ac.cov_q3_urb
## 11868                         per_lm_ac.cov_q4_preT_tot
## 11869                              per_lm_ac.cov_q4_rur
## 11870                              per_lm_ac.cov_q4_tot
## 11871                              per_lm_ac.cov_q4_urb
## 11872                         per_lm_ac.cov_q5_preT_tot
## 11873                              per_lm_ac.cov_q5_rur
## 11874                              per_lm_ac.cov_q5_tot
## 11875                              per_lm_ac.cov_q5_urb
## 11876                                per_lm_ac_gini_rur
## 11877                                per_lm_ac_gini_tot
## 11878                                per_lm_ac_gini_urb
## 11879                               per_lm_ac_p0_ep_tot
## 11880                                  per_lm_ac_p0_rur
## 11881                                  per_lm_ac_p0_tot
## 11882                                  per_lm_ac_p0_urb
## 11883                               per_lm_ac_p1_ep_tot
## 11884                                  per_lm_ac_p1_rur
## 11885                                  per_lm_ac_p1_tot
## 11886                                  per_lm_ac_p1_urb
## 11887                      per_lm_alllm.adq_ep_preT_tot
## 11888                           per_lm_alllm.adq_ep_tot
## 11889                     per_lm_alllm.adq_pop_preT_tot
## 11890                          per_lm_alllm.adq_pop_rur
## 11891                          per_lm_alllm.adq_pop_tot
## 11892                          per_lm_alllm.adq_pop_urb
## 11893                      per_lm_alllm.adq_q1_preT_tot
## 11894                           per_lm_alllm.adq_q1_rur
## 11895                           per_lm_alllm.adq_q1_tot
## 11896                           per_lm_alllm.adq_q1_urb
## 11897                      per_lm_alllm.adq_q2_preT_tot
## 11898                           per_lm_alllm.adq_q2_rur
## 11899                           per_lm_alllm.adq_q2_tot
## 11900                           per_lm_alllm.adq_q2_urb
## 11901                      per_lm_alllm.adq_q3_preT_tot
## 11902                           per_lm_alllm.adq_q3_rur
## 11903                           per_lm_alllm.adq_q3_tot
## 11904                           per_lm_alllm.adq_q3_urb
## 11905                      per_lm_alllm.adq_q4_preT_tot
## 11906                           per_lm_alllm.adq_q4_rur
## 11907                           per_lm_alllm.adq_q4_tot
## 11908                           per_lm_alllm.adq_q4_urb
## 11909                      per_lm_alllm.adq_q5_preT_tot
## 11910                           per_lm_alllm.adq_q5_rur
## 11911                           per_lm_alllm.adq_q5_tot
## 11912                           per_lm_alllm.adq_q5_urb
## 11913                      per_lm_alllm.avt_ep_preT_tot
## 11914                           per_lm_alllm.avt_ep_tot
## 11915                     per_lm_alllm.avt_pop_preT_tot
## 11916                          per_lm_alllm.avt_pop_rur
## 11917                          per_lm_alllm.avt_pop_tot
## 11918                          per_lm_alllm.avt_pop_urb
## 11919                      per_lm_alllm.avt_q1_preT_tot
## 11920                           per_lm_alllm.avt_q1_rur
## 11921                           per_lm_alllm.avt_q1_tot
## 11922                           per_lm_alllm.avt_q1_urb
## 11923                      per_lm_alllm.avt_q2_preT_tot
## 11924                           per_lm_alllm.avt_q2_rur
## 11925                           per_lm_alllm.avt_q2_tot
## 11926                           per_lm_alllm.avt_q2_urb
## 11927                      per_lm_alllm.avt_q3_preT_tot
## 11928                           per_lm_alllm.avt_q3_rur
## 11929                           per_lm_alllm.avt_q3_tot
## 11930                           per_lm_alllm.avt_q3_urb
## 11931                      per_lm_alllm.avt_q4_preT_tot
## 11932                           per_lm_alllm.avt_q4_rur
## 11933                           per_lm_alllm.avt_q4_tot
## 11934                           per_lm_alllm.avt_q4_urb
## 11935                      per_lm_alllm.avt_q5_preT_tot
## 11936                           per_lm_alllm.avt_q5_rur
## 11937                           per_lm_alllm.avt_q5_tot
## 11938                           per_lm_alllm.avt_q5_urb
## 11939                      per_lm_alllm.ben_ep_preT_tot
## 11940                           per_lm_alllm.ben_ep_tot
## 11941                      per_lm_alllm.ben_q1_preT_tot
## 11942                           per_lm_alllm.ben_q1_rur
## 11943                           per_lm_alllm.ben_q1_tot
## 11944                           per_lm_alllm.ben_q1_urb
## 11945                      per_lm_alllm.ben_q2_preT_tot
## 11946                           per_lm_alllm.ben_q2_rur
## 11947                           per_lm_alllm.ben_q2_tot
## 11948                           per_lm_alllm.ben_q2_urb
## 11949                      per_lm_alllm.ben_q3_preT_tot
## 11950                           per_lm_alllm.ben_q3_rur
## 11951                           per_lm_alllm.ben_q3_tot
## 11952                           per_lm_alllm.ben_q3_urb
## 11953                      per_lm_alllm.ben_q4_preT_tot
## 11954                           per_lm_alllm.ben_q4_rur
## 11955                           per_lm_alllm.ben_q4_tot
## 11956                           per_lm_alllm.ben_q4_urb
## 11957                      per_lm_alllm.ben_q5_preT_tot
## 11958                           per_lm_alllm.ben_q5_rur
## 11959                           per_lm_alllm.ben_q5_tot
## 11960                           per_lm_alllm.ben_q5_urb
## 11961                      per_lm_alllm.bry_ep_preT_tot
## 11962                           per_lm_alllm.bry_ep_tot
## 11963                      per_lm_alllm.bry_q1_preT_tot
## 11964                           per_lm_alllm.bry_q1_rur
## 11965                           per_lm_alllm.bry_q1_tot
## 11966                           per_lm_alllm.bry_q1_urb
## 11967                      per_lm_alllm.bry_q2_preT_tot
## 11968                           per_lm_alllm.bry_q2_rur
## 11969                           per_lm_alllm.bry_q2_tot
## 11970                           per_lm_alllm.bry_q2_urb
## 11971                      per_lm_alllm.bry_q3_preT_tot
## 11972                           per_lm_alllm.bry_q3_rur
## 11973                           per_lm_alllm.bry_q3_tot
## 11974                           per_lm_alllm.bry_q3_urb
## 11975                      per_lm_alllm.bry_q4_preT_tot
## 11976                           per_lm_alllm.bry_q4_rur
## 11977                           per_lm_alllm.bry_q4_tot
## 11978                           per_lm_alllm.bry_q4_urb
## 11979                      per_lm_alllm.bry_q5_preT_tot
## 11980                           per_lm_alllm.bry_q5_rur
## 11981                           per_lm_alllm.bry_q5_tot
## 11982                           per_lm_alllm.bry_q5_urb
## 11983                      per_lm_alllm.cba_ep_preT_tot
## 11984                           per_lm_alllm.cba_ep_tot
## 11985                      per_lm_alllm.cba_q1_preT_tot
## 11986                           per_lm_alllm.cba_q1_rur
## 11987                           per_lm_alllm.cba_q1_tot
## 11988                           per_lm_alllm.cba_q1_urb
## 11989                      per_lm_alllm.cov_ep_preT_tot
## 11990                           per_lm_alllm.cov_ep_tot
## 11991                     per_lm_alllm.cov_pop_preT_tot
## 11992                          per_lm_alllm.cov_pop_rur
## 11993                          per_lm_alllm.cov_pop_tot
## 11994                          per_lm_alllm.cov_pop_urb
## 11995                      per_lm_alllm.cov_q1_preT_tot
## 11996                           per_lm_alllm.cov_q1_rur
## 11997                           per_lm_alllm.cov_q1_tot
## 11998                           per_lm_alllm.cov_q1_urb
## 11999                      per_lm_alllm.cov_q2_preT_tot
## 12000                           per_lm_alllm.cov_q2_rur
## 12001                           per_lm_alllm.cov_q2_tot
## 12002                           per_lm_alllm.cov_q2_urb
## 12003                      per_lm_alllm.cov_q3_preT_tot
## 12004                           per_lm_alllm.cov_q3_rur
## 12005                           per_lm_alllm.cov_q3_tot
## 12006                           per_lm_alllm.cov_q3_urb
## 12007                      per_lm_alllm.cov_q4_preT_tot
## 12008                           per_lm_alllm.cov_q4_rur
## 12009                           per_lm_alllm.cov_q4_tot
## 12010                           per_lm_alllm.cov_q4_urb
## 12011                      per_lm_alllm.cov_q5_preT_tot
## 12012                           per_lm_alllm.cov_q5_rur
## 12013                           per_lm_alllm.cov_q5_tot
## 12014                           per_lm_alllm.cov_q5_urb
## 12015                             per_lm_alllm_gini_rur
## 12016                             per_lm_alllm_gini_tot
## 12017                             per_lm_alllm_gini_urb
## 12018                            per_lm_alllm_p0_ep_tot
## 12019                               per_lm_alllm_p0_rur
## 12020                               per_lm_alllm_p0_tot
## 12021                               per_lm_alllm_p0_urb
## 12022                            per_lm_alllm_p1_ep_tot
## 12023                               per_lm_alllm_p1_rur
## 12024                               per_lm_alllm_p1_tot
## 12025                               per_lm_alllm_p1_urb
## 12026                         per_lm_pa.adq_ep_preT_tot
## 12027                              per_lm_pa.adq_ep_tot
## 12028                        per_lm_pa.adq_pop_preT_tot
## 12029                             per_lm_pa.adq_pop_rur
## 12030                             per_lm_pa.adq_pop_tot
## 12031                             per_lm_pa.adq_pop_urb
## 12032                         per_lm_pa.adq_q1_preT_tot
## 12033                              per_lm_pa.adq_q1_rur
## 12034                              per_lm_pa.adq_q1_tot
## 12035                              per_lm_pa.adq_q1_urb
## 12036                         per_lm_pa.adq_q2_preT_tot
## 12037                              per_lm_pa.adq_q2_rur
## 12038                              per_lm_pa.adq_q2_tot
## 12039                              per_lm_pa.adq_q2_urb
## 12040                         per_lm_pa.adq_q3_preT_tot
## 12041                              per_lm_pa.adq_q3_rur
## 12042                              per_lm_pa.adq_q3_tot
## 12043                              per_lm_pa.adq_q3_urb
## 12044                         per_lm_pa.adq_q4_preT_tot
## 12045                              per_lm_pa.adq_q4_rur
## 12046                              per_lm_pa.adq_q4_tot
## 12047                              per_lm_pa.adq_q4_urb
## 12048                         per_lm_pa.adq_q5_preT_tot
## 12049                              per_lm_pa.adq_q5_rur
## 12050                              per_lm_pa.adq_q5_tot
## 12051                              per_lm_pa.adq_q5_urb
## 12052                         per_lm_pa.avt_ep_preT_tot
## 12053                              per_lm_pa.avt_ep_tot
## 12054                        per_lm_pa.avt_pop_preT_tot
## 12055                             per_lm_pa.avt_pop_rur
## 12056                             per_lm_pa.avt_pop_tot
## 12057                             per_lm_pa.avt_pop_urb
## 12058                         per_lm_pa.avt_q1_preT_tot
## 12059                              per_lm_pa.avt_q1_rur
## 12060                              per_lm_pa.avt_q1_tot
## 12061                              per_lm_pa.avt_q1_urb
## 12062                         per_lm_pa.avt_q2_preT_tot
## 12063                              per_lm_pa.avt_q2_rur
## 12064                              per_lm_pa.avt_q2_tot
## 12065                              per_lm_pa.avt_q2_urb
## 12066                         per_lm_pa.avt_q3_preT_tot
## 12067                              per_lm_pa.avt_q3_rur
## 12068                              per_lm_pa.avt_q3_tot
## 12069                              per_lm_pa.avt_q3_urb
## 12070                         per_lm_pa.avt_q4_preT_tot
## 12071                              per_lm_pa.avt_q4_rur
## 12072                              per_lm_pa.avt_q4_tot
## 12073                              per_lm_pa.avt_q4_urb
## 12074                         per_lm_pa.avt_q5_preT_tot
## 12075                              per_lm_pa.avt_q5_rur
## 12076                              per_lm_pa.avt_q5_tot
## 12077                              per_lm_pa.avt_q5_urb
## 12078                         per_lm_pa.ben_ep_preT_tot
## 12079                              per_lm_pa.ben_ep_tot
## 12080                         per_lm_pa.ben_q1_preT_tot
## 12081                              per_lm_pa.ben_q1_rur
## 12082                              per_lm_pa.ben_q1_tot
## 12083                              per_lm_pa.ben_q1_urb
## 12084                         per_lm_pa.ben_q2_preT_tot
## 12085                              per_lm_pa.ben_q2_rur
## 12086                              per_lm_pa.ben_q2_tot
## 12087                              per_lm_pa.ben_q2_urb
## 12088                         per_lm_pa.ben_q3_preT_tot
## 12089                              per_lm_pa.ben_q3_rur
## 12090                              per_lm_pa.ben_q3_tot
## 12091                              per_lm_pa.ben_q3_urb
## 12092                         per_lm_pa.ben_q4_preT_tot
## 12093                              per_lm_pa.ben_q4_rur
## 12094                              per_lm_pa.ben_q4_tot
## 12095                              per_lm_pa.ben_q4_urb
## 12096                         per_lm_pa.ben_q5_preT_tot
## 12097                              per_lm_pa.ben_q5_rur
## 12098                              per_lm_pa.ben_q5_tot
## 12099                              per_lm_pa.ben_q5_urb
## 12100                         per_lm_pa.bry_ep_preT_tot
## 12101                              per_lm_pa.bry_ep_tot
## 12102                         per_lm_pa.bry_q1_preT_tot
## 12103                              per_lm_pa.bry_q1_rur
## 12104                              per_lm_pa.bry_q1_tot
## 12105                              per_lm_pa.bry_q1_urb
## 12106                         per_lm_pa.bry_q2_preT_tot
## 12107                              per_lm_pa.bry_q2_rur
## 12108                              per_lm_pa.bry_q2_tot
## 12109                              per_lm_pa.bry_q2_urb
## 12110                         per_lm_pa.bry_q3_preT_tot
## 12111                              per_lm_pa.bry_q3_rur
## 12112                              per_lm_pa.bry_q3_tot
## 12113                              per_lm_pa.bry_q3_urb
## 12114                         per_lm_pa.bry_q4_preT_tot
## 12115                              per_lm_pa.bry_q4_rur
## 12116                              per_lm_pa.bry_q4_tot
## 12117                              per_lm_pa.bry_q4_urb
## 12118                         per_lm_pa.bry_q5_preT_tot
## 12119                              per_lm_pa.bry_q5_rur
## 12120                              per_lm_pa.bry_q5_tot
## 12121                              per_lm_pa.bry_q5_urb
## 12122                         per_lm_pa.cba_ep_preT_tot
## 12123                              per_lm_pa.cba_ep_tot
## 12124                         per_lm_pa.cba_q1_preT_tot
## 12125                              per_lm_pa.cba_q1_rur
## 12126                              per_lm_pa.cba_q1_tot
## 12127                              per_lm_pa.cba_q1_urb
## 12128                         per_lm_pa.cov_ep_preT_tot
## 12129                              per_lm_pa.cov_ep_tot
## 12130                        per_lm_pa.cov_pop_preT_tot
## 12131                             per_lm_pa.cov_pop_rur
## 12132                             per_lm_pa.cov_pop_tot
## 12133                             per_lm_pa.cov_pop_urb
## 12134                         per_lm_pa.cov_q1_preT_tot
## 12135                              per_lm_pa.cov_q1_rur
## 12136                              per_lm_pa.cov_q1_tot
## 12137                              per_lm_pa.cov_q1_urb
## 12138                         per_lm_pa.cov_q2_preT_tot
## 12139                              per_lm_pa.cov_q2_rur
## 12140                              per_lm_pa.cov_q2_tot
## 12141                              per_lm_pa.cov_q2_urb
## 12142                         per_lm_pa.cov_q3_preT_tot
## 12143                              per_lm_pa.cov_q3_rur
## 12144                              per_lm_pa.cov_q3_tot
## 12145                              per_lm_pa.cov_q3_urb
## 12146                         per_lm_pa.cov_q4_preT_tot
## 12147                              per_lm_pa.cov_q4_rur
## 12148                              per_lm_pa.cov_q4_tot
## 12149                              per_lm_pa.cov_q4_urb
## 12150                         per_lm_pa.cov_q5_preT_tot
## 12151                              per_lm_pa.cov_q5_rur
## 12152                              per_lm_pa.cov_q5_tot
## 12153                              per_lm_pa.cov_q5_urb
## 12154                                per_lm_pa_gini_rur
## 12155                                per_lm_pa_gini_tot
## 12156                                per_lm_pa_gini_urb
## 12157                               per_lm_pa_p0_ep_tot
## 12158                                  per_lm_pa_p0_rur
## 12159                                  per_lm_pa_p0_tot
## 12160                                  per_lm_pa_p0_urb
## 12161                               per_lm_pa_p1_ep_tot
## 12162                                  per_lm_pa_p1_rur
## 12163                                  per_lm_pa_p1_tot
## 12164                                  per_lm_pa_p1_urb
## 12165                     per_lmonl.overlap_ep_preT_tot
## 12166                          per_lmonl.overlap_ep_tot
## 12167                    per_lmonl.overlap_pop_preT_tot
## 12168                         per_lmonl.overlap_pop_rur
## 12169                         per_lmonl.overlap_pop_tot
## 12170                         per_lmonl.overlap_pop_urb
## 12171                     per_lmonl.overlap_q1_preT_tot
## 12172                          per_lmonl.overlap_q1_rur
## 12173                          per_lmonl.overlap_q1_tot
## 12174                          per_lmonl.overlap_q1_urb
## 12175                     per_nprog.overlap_ep_preT_tot
## 12176                          per_nprog.overlap_ep_tot
## 12177                    per_nprog.overlap_pop_preT_tot
## 12178                         per_nprog.overlap_pop_rur
## 12179                         per_nprog.overlap_pop_tot
## 12180                         per_nprog.overlap_pop_urb
## 12181                     per_nprog.overlap_q1_preT_tot
## 12182                          per_nprog.overlap_q1_rur
## 12183                          per_nprog.overlap_q1_tot
## 12184                          per_nprog.overlap_q1_urb
## 12185                          per_numprog1_ep_preT_tot
## 12186                               per_numprog1_ep_tot
## 12187                         per_numprog1_pop_preT_tot
## 12188                              per_numprog1_pop_rur
## 12189                              per_numprog1_pop_tot
## 12190                              per_numprog1_pop_urb
## 12191                          per_numprog1_q1_preT_tot
## 12192                               per_numprog1_q1_rur
## 12193                               per_numprog1_q1_tot
## 12194                               per_numprog1_q1_urb
## 12195                          per_numprog2_ep_preT_tot
## 12196                               per_numprog2_ep_tot
## 12197                         per_numprog2_pop_preT_tot
## 12198                              per_numprog2_pop_rur
## 12199                              per_numprog2_pop_tot
## 12200                              per_numprog2_pop_urb
## 12201                          per_numprog2_q1_preT_tot
## 12202                               per_numprog2_q1_rur
## 12203                               per_numprog2_q1_tot
## 12204                               per_numprog2_q1_urb
## 12205                          per_numprog3_ep_preT_tot
## 12206                               per_numprog3_ep_tot
## 12207                         per_numprog3_pop_preT_tot
## 12208                              per_numprog3_pop_rur
## 12209                              per_numprog3_pop_tot
## 12210                              per_numprog3_pop_urb
## 12211                          per_numprog3_q1_preT_tot
## 12212                               per_numprog3_q1_rur
## 12213                               per_numprog3_q1_tot
## 12214                               per_numprog3_q1_urb
## 12215                          per_numprog4_ep_preT_tot
## 12216                               per_numprog4_ep_tot
## 12217                         per_numprog4_pop_preT_tot
## 12218                              per_numprog4_pop_rur
## 12219                              per_numprog4_pop_tot
## 12220                              per_numprog4_pop_urb
## 12221                          per_numprog4_q1_preT_tot
## 12222                               per_numprog4_q1_rur
## 12223                               per_numprog4_q1_tot
## 12224                               per_numprog4_q1_urb
## 12225                      per_pr_allpr.adq_ep_preT_tot
## 12226                           per_pr_allpr.adq_ep_tot
## 12227                     per_pr_allpr.adq_pop_preT_tot
## 12228                          per_pr_allpr.adq_pop_rur
## 12229                          per_pr_allpr.adq_pop_tot
## 12230                          per_pr_allpr.adq_pop_urb
## 12231                      per_pr_allpr.adq_q1_preT_tot
## 12232                           per_pr_allpr.adq_q1_rur
## 12233                           per_pr_allpr.adq_q1_tot
## 12234                           per_pr_allpr.adq_q1_urb
## 12235                      per_pr_allpr.adq_q2_preT_tot
## 12236                           per_pr_allpr.adq_q2_rur
## 12237                           per_pr_allpr.adq_q2_tot
## 12238                           per_pr_allpr.adq_q2_urb
## 12239                      per_pr_allpr.adq_q3_preT_tot
## 12240                           per_pr_allpr.adq_q3_rur
## 12241                           per_pr_allpr.adq_q3_tot
## 12242                           per_pr_allpr.adq_q3_urb
## 12243                      per_pr_allpr.adq_q4_preT_tot
## 12244                           per_pr_allpr.adq_q4_rur
## 12245                           per_pr_allpr.adq_q4_tot
## 12246                           per_pr_allpr.adq_q4_urb
## 12247                      per_pr_allpr.adq_q5_preT_tot
## 12248                           per_pr_allpr.adq_q5_rur
## 12249                           per_pr_allpr.adq_q5_tot
## 12250                           per_pr_allpr.adq_q5_urb
## 12251                      per_pr_allpr.avt_ep_preT_tot
## 12252                           per_pr_allpr.avt_ep_tot
## 12253                     per_pr_allpr.avt_pop_preT_tot
## 12254                          per_pr_allpr.avt_pop_rur
## 12255                          per_pr_allpr.avt_pop_tot
## 12256                          per_pr_allpr.avt_pop_urb
## 12257                      per_pr_allpr.avt_q1_preT_tot
## 12258                           per_pr_allpr.avt_q1_rur
## 12259                           per_pr_allpr.avt_q1_tot
## 12260                           per_pr_allpr.avt_q1_urb
## 12261                      per_pr_allpr.avt_q2_preT_tot
## 12262                           per_pr_allpr.avt_q2_rur
## 12263                           per_pr_allpr.avt_q2_tot
## 12264                           per_pr_allpr.avt_q2_urb
## 12265                      per_pr_allpr.avt_q3_preT_tot
## 12266                           per_pr_allpr.avt_q3_rur
## 12267                           per_pr_allpr.avt_q3_tot
## 12268                           per_pr_allpr.avt_q3_urb
## 12269                      per_pr_allpr.avt_q4_preT_tot
## 12270                           per_pr_allpr.avt_q4_rur
## 12271                           per_pr_allpr.avt_q4_tot
## 12272                           per_pr_allpr.avt_q4_urb
## 12273                      per_pr_allpr.avt_q5_preT_tot
## 12274                           per_pr_allpr.avt_q5_rur
## 12275                           per_pr_allpr.avt_q5_tot
## 12276                           per_pr_allpr.avt_q5_urb
## 12277                      per_pr_allpr.ben_ep_preT_tot
## 12278                           per_pr_allpr.ben_ep_tot
## 12279                      per_pr_allpr.ben_q1_preT_tot
## 12280                           per_pr_allpr.ben_q1_rur
## 12281                           per_pr_allpr.ben_q1_tot
## 12282                           per_pr_allpr.ben_q1_urb
## 12283                      per_pr_allpr.ben_q2_preT_tot
## 12284                           per_pr_allpr.ben_q2_rur
## 12285                           per_pr_allpr.ben_q2_tot
## 12286                           per_pr_allpr.ben_q2_urb
## 12287                      per_pr_allpr.ben_q3_preT_tot
## 12288                           per_pr_allpr.ben_q3_rur
## 12289                           per_pr_allpr.ben_q3_tot
## 12290                           per_pr_allpr.ben_q3_urb
## 12291                      per_pr_allpr.ben_q4_preT_tot
## 12292                           per_pr_allpr.ben_q4_rur
## 12293                           per_pr_allpr.ben_q4_tot
## 12294                           per_pr_allpr.ben_q4_urb
## 12295                      per_pr_allpr.ben_q5_preT_tot
## 12296                           per_pr_allpr.ben_q5_rur
## 12297                           per_pr_allpr.ben_q5_tot
## 12298                           per_pr_allpr.ben_q5_urb
## 12299                      per_pr_allpr.bry_ep_preT_tot
## 12300                           per_pr_allpr.bry_ep_tot
## 12301                      per_pr_allpr.bry_q1_preT_tot
## 12302                           per_pr_allpr.bry_q1_rur
## 12303                           per_pr_allpr.bry_q1_tot
## 12304                           per_pr_allpr.bry_q1_urb
## 12305                      per_pr_allpr.bry_q2_preT_tot
## 12306                           per_pr_allpr.bry_q2_rur
## 12307                           per_pr_allpr.bry_q2_tot
## 12308                           per_pr_allpr.bry_q2_urb
## 12309                      per_pr_allpr.bry_q3_preT_tot
## 12310                           per_pr_allpr.bry_q3_rur
## 12311                           per_pr_allpr.bry_q3_tot
## 12312                           per_pr_allpr.bry_q3_urb
## 12313                      per_pr_allpr.bry_q4_preT_tot
## 12314                           per_pr_allpr.bry_q4_rur
## 12315                           per_pr_allpr.bry_q4_tot
## 12316                           per_pr_allpr.bry_q4_urb
## 12317                      per_pr_allpr.bry_q5_preT_tot
## 12318                           per_pr_allpr.bry_q5_rur
## 12319                           per_pr_allpr.bry_q5_tot
## 12320                           per_pr_allpr.bry_q5_urb
## 12321                      per_pr_allpr.cba_ep_preT_tot
## 12322                           per_pr_allpr.cba_ep_tot
## 12323                      per_pr_allpr.cba_q1_preT_tot
## 12324                           per_pr_allpr.cba_q1_rur
## 12325                           per_pr_allpr.cba_q1_tot
## 12326                           per_pr_allpr.cba_q1_urb
## 12327                      per_pr_allpr.cov_ep_preT_tot
## 12328                           per_pr_allpr.cov_ep_tot
## 12329                     per_pr_allpr.cov_pop_preT_tot
## 12330                          per_pr_allpr.cov_pop_rur
## 12331                          per_pr_allpr.cov_pop_tot
## 12332                          per_pr_allpr.cov_pop_urb
## 12333                      per_pr_allpr.cov_q1_preT_tot
## 12334                           per_pr_allpr.cov_q1_rur
## 12335                           per_pr_allpr.cov_q1_tot
## 12336                           per_pr_allpr.cov_q1_urb
## 12337                      per_pr_allpr.cov_q2_preT_tot
## 12338                           per_pr_allpr.cov_q2_rur
## 12339                           per_pr_allpr.cov_q2_tot
## 12340                           per_pr_allpr.cov_q2_urb
## 12341                      per_pr_allpr.cov_q3_preT_tot
## 12342                           per_pr_allpr.cov_q3_rur
## 12343                           per_pr_allpr.cov_q3_tot
## 12344                           per_pr_allpr.cov_q3_urb
## 12345                      per_pr_allpr.cov_q4_preT_tot
## 12346                           per_pr_allpr.cov_q4_rur
## 12347                           per_pr_allpr.cov_q4_tot
## 12348                           per_pr_allpr.cov_q4_urb
## 12349                      per_pr_allpr.cov_q5_preT_tot
## 12350                           per_pr_allpr.cov_q5_rur
## 12351                           per_pr_allpr.cov_q5_tot
## 12352                           per_pr_allpr.cov_q5_urb
## 12353                             per_pr_allpr_gini_rur
## 12354                             per_pr_allpr_gini_tot
## 12355                             per_pr_allpr_gini_urb
## 12356                            per_pr_allpr_p0_ep_tot
## 12357                               per_pr_allpr_p0_rur
## 12358                               per_pr_allpr_p0_tot
## 12359                               per_pr_allpr_p0_urb
## 12360                            per_pr_allpr_p1_ep_tot
## 12361                               per_pr_allpr_p1_rur
## 12362                               per_pr_allpr_p1_tot
## 12363                               per_pr_allpr_p1_urb
## 12364                         per_pr_dp.adq_ep_preT_tot
## 12365                              per_pr_dp.adq_ep_tot
## 12366                        per_pr_dp.adq_pop_preT_tot
## 12367                             per_pr_dp.adq_pop_rur
## 12368                             per_pr_dp.adq_pop_tot
## 12369                             per_pr_dp.adq_pop_urb
## 12370                         per_pr_dp.adq_q1_preT_tot
## 12371                              per_pr_dp.adq_q1_rur
## 12372                              per_pr_dp.adq_q1_tot
## 12373                              per_pr_dp.adq_q1_urb
## 12374                         per_pr_dp.adq_q2_preT_tot
## 12375                              per_pr_dp.adq_q2_rur
## 12376                              per_pr_dp.adq_q2_tot
## 12377                              per_pr_dp.adq_q2_urb
## 12378                         per_pr_dp.adq_q3_preT_tot
## 12379                              per_pr_dp.adq_q3_rur
## 12380                              per_pr_dp.adq_q3_tot
## 12381                              per_pr_dp.adq_q3_urb
## 12382                         per_pr_dp.adq_q4_preT_tot
## 12383                              per_pr_dp.adq_q4_rur
## 12384                              per_pr_dp.adq_q4_tot
## 12385                              per_pr_dp.adq_q4_urb
## 12386                         per_pr_dp.adq_q5_preT_tot
## 12387                              per_pr_dp.adq_q5_rur
## 12388                              per_pr_dp.adq_q5_tot
## 12389                              per_pr_dp.adq_q5_urb
## 12390                         per_pr_dp.avt_ep_preT_tot
## 12391                              per_pr_dp.avt_ep_tot
## 12392                        per_pr_dp.avt_pop_preT_tot
## 12393                             per_pr_dp.avt_pop_rur
## 12394                             per_pr_dp.avt_pop_tot
## 12395                             per_pr_dp.avt_pop_urb
## 12396                         per_pr_dp.avt_q1_preT_tot
## 12397                              per_pr_dp.avt_q1_rur
## 12398                              per_pr_dp.avt_q1_tot
## 12399                              per_pr_dp.avt_q1_urb
## 12400                         per_pr_dp.avt_q2_preT_tot
## 12401                              per_pr_dp.avt_q2_rur
## 12402                              per_pr_dp.avt_q2_tot
## 12403                              per_pr_dp.avt_q2_urb
## 12404                         per_pr_dp.avt_q3_preT_tot
## 12405                              per_pr_dp.avt_q3_rur
## 12406                              per_pr_dp.avt_q3_tot
## 12407                              per_pr_dp.avt_q3_urb
## 12408                         per_pr_dp.avt_q4_preT_tot
## 12409                              per_pr_dp.avt_q4_rur
## 12410                              per_pr_dp.avt_q4_tot
## 12411                              per_pr_dp.avt_q4_urb
## 12412                         per_pr_dp.avt_q5_preT_tot
## 12413                              per_pr_dp.avt_q5_rur
## 12414                              per_pr_dp.avt_q5_tot
## 12415                              per_pr_dp.avt_q5_urb
## 12416                         per_pr_dp.ben_ep_preT_tot
## 12417                              per_pr_dp.ben_ep_tot
## 12418                         per_pr_dp.ben_q1_preT_tot
## 12419                              per_pr_dp.ben_q1_rur
## 12420                              per_pr_dp.ben_q1_tot
## 12421                              per_pr_dp.ben_q1_urb
## 12422                         per_pr_dp.ben_q2_preT_tot
## 12423                              per_pr_dp.ben_q2_rur
## 12424                              per_pr_dp.ben_q2_tot
## 12425                              per_pr_dp.ben_q2_urb
## 12426                         per_pr_dp.ben_q3_preT_tot
## 12427                              per_pr_dp.ben_q3_rur
## 12428                              per_pr_dp.ben_q3_tot
## 12429                              per_pr_dp.ben_q3_urb
## 12430                         per_pr_dp.ben_q4_preT_tot
## 12431                              per_pr_dp.ben_q4_rur
## 12432                              per_pr_dp.ben_q4_tot
## 12433                              per_pr_dp.ben_q4_urb
## 12434                         per_pr_dp.ben_q5_preT_tot
## 12435                              per_pr_dp.ben_q5_rur
## 12436                              per_pr_dp.ben_q5_tot
## 12437                              per_pr_dp.ben_q5_urb
## 12438                         per_pr_dp.bry_ep_preT_tot
## 12439                              per_pr_dp.bry_ep_tot
## 12440                         per_pr_dp.bry_q1_preT_tot
## 12441                              per_pr_dp.bry_q1_rur
## 12442                              per_pr_dp.bry_q1_tot
## 12443                              per_pr_dp.bry_q1_urb
## 12444                         per_pr_dp.bry_q2_preT_tot
## 12445                              per_pr_dp.bry_q2_rur
## 12446                              per_pr_dp.bry_q2_tot
## 12447                              per_pr_dp.bry_q2_urb
## 12448                         per_pr_dp.bry_q3_preT_tot
## 12449                              per_pr_dp.bry_q3_rur
## 12450                              per_pr_dp.bry_q3_tot
## 12451                              per_pr_dp.bry_q3_urb
## 12452                         per_pr_dp.bry_q4_preT_tot
## 12453                              per_pr_dp.bry_q4_rur
## 12454                              per_pr_dp.bry_q4_tot
## 12455                              per_pr_dp.bry_q4_urb
## 12456                         per_pr_dp.bry_q5_preT_tot
## 12457                              per_pr_dp.bry_q5_rur
## 12458                              per_pr_dp.bry_q5_tot
## 12459                              per_pr_dp.bry_q5_urb
## 12460                         per_pr_dp.cba_ep_preT_tot
## 12461                              per_pr_dp.cba_ep_tot
## 12462                         per_pr_dp.cba_q1_preT_tot
## 12463                              per_pr_dp.cba_q1_rur
## 12464                              per_pr_dp.cba_q1_tot
## 12465                              per_pr_dp.cba_q1_urb
## 12466                         per_pr_dp.cov_ep_preT_tot
## 12467                              per_pr_dp.cov_ep_tot
## 12468                        per_pr_dp.cov_pop_preT_tot
## 12469                             per_pr_dp.cov_pop_rur
## 12470                             per_pr_dp.cov_pop_tot
## 12471                             per_pr_dp.cov_pop_urb
## 12472                         per_pr_dp.cov_q1_preT_tot
## 12473                              per_pr_dp.cov_q1_rur
## 12474                              per_pr_dp.cov_q1_tot
## 12475                              per_pr_dp.cov_q1_urb
## 12476                         per_pr_dp.cov_q2_preT_tot
## 12477                              per_pr_dp.cov_q2_rur
## 12478                              per_pr_dp.cov_q2_tot
## 12479                              per_pr_dp.cov_q2_urb
## 12480                         per_pr_dp.cov_q3_preT_tot
## 12481                              per_pr_dp.cov_q3_rur
## 12482                              per_pr_dp.cov_q3_tot
## 12483                              per_pr_dp.cov_q3_urb
## 12484                         per_pr_dp.cov_q4_preT_tot
## 12485                              per_pr_dp.cov_q4_rur
## 12486                              per_pr_dp.cov_q4_tot
## 12487                              per_pr_dp.cov_q4_urb
## 12488                         per_pr_dp.cov_q5_preT_tot
## 12489                              per_pr_dp.cov_q5_rur
## 12490                              per_pr_dp.cov_q5_tot
## 12491                              per_pr_dp.cov_q5_urb
## 12492                                per_pr_dp_gini_rur
## 12493                                per_pr_dp_gini_tot
## 12494                                per_pr_dp_gini_urb
## 12495                               per_pr_dp_p0_ep_tot
## 12496                                  per_pr_dp_p0_rur
## 12497                                  per_pr_dp_p0_tot
## 12498                                  per_pr_dp_p0_urb
## 12499                               per_pr_dp_p1_ep_tot
## 12500                                  per_pr_dp_p1_rur
## 12501                                  per_pr_dp_p1_tot
## 12502                                  per_pr_dp_p1_urb
## 12503                         per_pr_ip.adq_ep_preT_tot
## 12504                              per_pr_ip.adq_ep_tot
## 12505                        per_pr_ip.adq_pop_preT_tot
## 12506                             per_pr_ip.adq_pop_rur
## 12507                             per_pr_ip.adq_pop_tot
## 12508                             per_pr_ip.adq_pop_urb
## 12509                         per_pr_ip.adq_q1_preT_tot
## 12510                              per_pr_ip.adq_q1_rur
## 12511                              per_pr_ip.adq_q1_tot
## 12512                              per_pr_ip.adq_q1_urb
## 12513                         per_pr_ip.adq_q2_preT_tot
## 12514                              per_pr_ip.adq_q2_rur
## 12515                              per_pr_ip.adq_q2_tot
## 12516                              per_pr_ip.adq_q2_urb
## 12517                         per_pr_ip.adq_q3_preT_tot
## 12518                              per_pr_ip.adq_q3_rur
## 12519                              per_pr_ip.adq_q3_tot
## 12520                              per_pr_ip.adq_q3_urb
## 12521                         per_pr_ip.adq_q4_preT_tot
## 12522                              per_pr_ip.adq_q4_rur
## 12523                              per_pr_ip.adq_q4_tot
## 12524                              per_pr_ip.adq_q4_urb
## 12525                         per_pr_ip.adq_q5_preT_tot
## 12526                              per_pr_ip.adq_q5_rur
## 12527                              per_pr_ip.adq_q5_tot
## 12528                              per_pr_ip.adq_q5_urb
## 12529                         per_pr_ip.avt_ep_preT_tot
## 12530                              per_pr_ip.avt_ep_tot
## 12531                        per_pr_ip.avt_pop_preT_tot
## 12532                             per_pr_ip.avt_pop_rur
## 12533                             per_pr_ip.avt_pop_tot
## 12534                             per_pr_ip.avt_pop_urb
## 12535                         per_pr_ip.avt_q1_preT_tot
## 12536                              per_pr_ip.avt_q1_rur
## 12537                              per_pr_ip.avt_q1_tot
## 12538                              per_pr_ip.avt_q1_urb
## 12539                         per_pr_ip.avt_q2_preT_tot
## 12540                              per_pr_ip.avt_q2_rur
## 12541                              per_pr_ip.avt_q2_tot
## 12542                              per_pr_ip.avt_q2_urb
## 12543                         per_pr_ip.avt_q3_preT_tot
## 12544                              per_pr_ip.avt_q3_rur
## 12545                              per_pr_ip.avt_q3_tot
## 12546                              per_pr_ip.avt_q3_urb
## 12547                         per_pr_ip.avt_q4_preT_tot
## 12548                              per_pr_ip.avt_q4_rur
## 12549                              per_pr_ip.avt_q4_tot
## 12550                              per_pr_ip.avt_q4_urb
## 12551                         per_pr_ip.avt_q5_preT_tot
## 12552                              per_pr_ip.avt_q5_rur
## 12553                              per_pr_ip.avt_q5_tot
## 12554                              per_pr_ip.avt_q5_urb
## 12555                         per_pr_ip.ben_ep_preT_tot
## 12556                              per_pr_ip.ben_ep_tot
## 12557                         per_pr_ip.ben_q1_preT_tot
## 12558                              per_pr_ip.ben_q1_rur
## 12559                              per_pr_ip.ben_q1_tot
## 12560                              per_pr_ip.ben_q1_urb
## 12561                         per_pr_ip.ben_q2_preT_tot
## 12562                              per_pr_ip.ben_q2_rur
## 12563                              per_pr_ip.ben_q2_tot
## 12564                              per_pr_ip.ben_q2_urb
## 12565                         per_pr_ip.ben_q3_preT_tot
## 12566                              per_pr_ip.ben_q3_rur
## 12567                              per_pr_ip.ben_q3_tot
## 12568                              per_pr_ip.ben_q3_urb
## 12569                         per_pr_ip.ben_q4_preT_tot
## 12570                              per_pr_ip.ben_q4_rur
## 12571                              per_pr_ip.ben_q4_tot
## 12572                              per_pr_ip.ben_q4_urb
## 12573                         per_pr_ip.ben_q5_preT_tot
## 12574                              per_pr_ip.ben_q5_rur
## 12575                              per_pr_ip.ben_q5_tot
## 12576                              per_pr_ip.ben_q5_urb
## 12577                         per_pr_ip.bry_ep_preT_tot
## 12578                              per_pr_ip.bry_ep_tot
## 12579                         per_pr_ip.bry_q1_preT_tot
## 12580                              per_pr_ip.bry_q1_rur
## 12581                              per_pr_ip.bry_q1_tot
## 12582                              per_pr_ip.bry_q1_urb
## 12583                         per_pr_ip.bry_q2_preT_tot
## 12584                              per_pr_ip.bry_q2_rur
## 12585                              per_pr_ip.bry_q2_tot
## 12586                              per_pr_ip.bry_q2_urb
## 12587                         per_pr_ip.bry_q3_preT_tot
## 12588                              per_pr_ip.bry_q3_rur
## 12589                              per_pr_ip.bry_q3_tot
## 12590                              per_pr_ip.bry_q3_urb
## 12591                         per_pr_ip.bry_q4_preT_tot
## 12592                              per_pr_ip.bry_q4_rur
## 12593                              per_pr_ip.bry_q4_tot
## 12594                              per_pr_ip.bry_q4_urb
## 12595                         per_pr_ip.bry_q5_preT_tot
## 12596                              per_pr_ip.bry_q5_rur
## 12597                              per_pr_ip.bry_q5_tot
## 12598                              per_pr_ip.bry_q5_urb
## 12599                         per_pr_ip.cba_ep_preT_tot
## 12600                              per_pr_ip.cba_ep_tot
## 12601                         per_pr_ip.cba_q1_preT_tot
## 12602                              per_pr_ip.cba_q1_rur
## 12603                              per_pr_ip.cba_q1_tot
## 12604                              per_pr_ip.cba_q1_urb
## 12605                         per_pr_ip.cov_ep_preT_tot
## 12606                              per_pr_ip.cov_ep_tot
## 12607                        per_pr_ip.cov_pop_preT_tot
## 12608                             per_pr_ip.cov_pop_rur
## 12609                             per_pr_ip.cov_pop_tot
## 12610                             per_pr_ip.cov_pop_urb
## 12611                         per_pr_ip.cov_q1_preT_tot
## 12612                              per_pr_ip.cov_q1_rur
## 12613                              per_pr_ip.cov_q1_tot
## 12614                              per_pr_ip.cov_q1_urb
## 12615                         per_pr_ip.cov_q2_preT_tot
## 12616                              per_pr_ip.cov_q2_rur
## 12617                              per_pr_ip.cov_q2_tot
## 12618                              per_pr_ip.cov_q2_urb
## 12619                         per_pr_ip.cov_q3_preT_tot
## 12620                              per_pr_ip.cov_q3_rur
## 12621                              per_pr_ip.cov_q3_tot
## 12622                              per_pr_ip.cov_q3_urb
## 12623                         per_pr_ip.cov_q4_preT_tot
## 12624                              per_pr_ip.cov_q4_rur
## 12625                              per_pr_ip.cov_q4_tot
## 12626                              per_pr_ip.cov_q4_urb
## 12627                         per_pr_ip.cov_q5_preT_tot
## 12628                              per_pr_ip.cov_q5_rur
## 12629                              per_pr_ip.cov_q5_tot
## 12630                              per_pr_ip.cov_q5_urb
## 12631                                per_pr_ip_gini_rur
## 12632                                per_pr_ip_gini_tot
## 12633                                per_pr_ip_gini_urb
## 12634                               per_pr_ip_p0_ep_tot
## 12635                                  per_pr_ip_p0_rur
## 12636                                  per_pr_ip_p0_tot
## 12637                                  per_pr_ip_p0_urb
## 12638                               per_pr_ip_p1_ep_tot
## 12639                                  per_pr_ip_p1_rur
## 12640                                  per_pr_ip_p1_tot
## 12641                                  per_pr_ip_p1_urb
## 12642                      per_sa_allsa.adq_ep_preT_tot
## 12643                           per_sa_allsa.adq_ep_tot
## 12644                     per_sa_allsa.adq_pop_preT_tot
## 12645                          per_sa_allsa.adq_pop_rur
## 12646                          per_sa_allsa.adq_pop_tot
## 12647                          per_sa_allsa.adq_pop_urb
## 12648                      per_sa_allsa.adq_q1_preT_tot
## 12649                           per_sa_allsa.adq_q1_rur
## 12650                           per_sa_allsa.adq_q1_tot
## 12651                           per_sa_allsa.adq_q1_urb
## 12652                      per_sa_allsa.adq_q2_preT_tot
## 12653                           per_sa_allsa.adq_q2_rur
## 12654                           per_sa_allsa.adq_q2_tot
## 12655                           per_sa_allsa.adq_q2_urb
## 12656                      per_sa_allsa.adq_q3_preT_tot
## 12657                           per_sa_allsa.adq_q3_rur
## 12658                           per_sa_allsa.adq_q3_tot
## 12659                           per_sa_allsa.adq_q3_urb
## 12660                      per_sa_allsa.adq_q4_preT_tot
## 12661                           per_sa_allsa.adq_q4_rur
## 12662                           per_sa_allsa.adq_q4_tot
## 12663                           per_sa_allsa.adq_q4_urb
## 12664                      per_sa_allsa.adq_q5_preT_tot
## 12665                           per_sa_allsa.adq_q5_rur
## 12666                           per_sa_allsa.adq_q5_tot
## 12667                           per_sa_allsa.adq_q5_urb
## 12668                      per_sa_allsa.avt_ep_preT_tot
## 12669                           per_sa_allsa.avt_ep_tot
## 12670                     per_sa_allsa.avt_pop_preT_tot
## 12671                          per_sa_allsa.avt_pop_rur
## 12672                          per_sa_allsa.avt_pop_tot
## 12673                          per_sa_allsa.avt_pop_urb
## 12674                      per_sa_allsa.avt_q1_preT_tot
## 12675                           per_sa_allsa.avt_q1_rur
## 12676                           per_sa_allsa.avt_q1_tot
## 12677                           per_sa_allsa.avt_q1_urb
## 12678                      per_sa_allsa.avt_q2_preT_tot
## 12679                           per_sa_allsa.avt_q2_rur
## 12680                           per_sa_allsa.avt_q2_tot
## 12681                           per_sa_allsa.avt_q2_urb
## 12682                      per_sa_allsa.avt_q3_preT_tot
## 12683                           per_sa_allsa.avt_q3_rur
## 12684                           per_sa_allsa.avt_q3_tot
## 12685                           per_sa_allsa.avt_q3_urb
## 12686                      per_sa_allsa.avt_q4_preT_tot
## 12687                           per_sa_allsa.avt_q4_rur
## 12688                           per_sa_allsa.avt_q4_tot
## 12689                           per_sa_allsa.avt_q4_urb
## 12690                      per_sa_allsa.avt_q5_preT_tot
## 12691                           per_sa_allsa.avt_q5_rur
## 12692                           per_sa_allsa.avt_q5_tot
## 12693                           per_sa_allsa.avt_q5_urb
## 12694                      per_sa_allsa.ben_ep_preT_tot
## 12695                           per_sa_allsa.ben_ep_tot
## 12696                      per_sa_allsa.ben_q1_preT_tot
## 12697                           per_sa_allsa.ben_q1_rur
## 12698                           per_sa_allsa.ben_q1_tot
## 12699                           per_sa_allsa.ben_q1_urb
## 12700                      per_sa_allsa.ben_q2_preT_tot
## 12701                           per_sa_allsa.ben_q2_rur
## 12702                           per_sa_allsa.ben_q2_tot
## 12703                           per_sa_allsa.ben_q2_urb
## 12704                      per_sa_allsa.ben_q3_preT_tot
## 12705                           per_sa_allsa.ben_q3_rur
## 12706                           per_sa_allsa.ben_q3_tot
## 12707                           per_sa_allsa.ben_q3_urb
## 12708                      per_sa_allsa.ben_q4_preT_tot
## 12709                           per_sa_allsa.ben_q4_rur
## 12710                           per_sa_allsa.ben_q4_tot
## 12711                           per_sa_allsa.ben_q4_urb
## 12712                      per_sa_allsa.ben_q5_preT_tot
## 12713                           per_sa_allsa.ben_q5_rur
## 12714                           per_sa_allsa.ben_q5_tot
## 12715                           per_sa_allsa.ben_q5_urb
## 12716                      per_sa_allsa.bry_ep_preT_tot
## 12717                           per_sa_allsa.bry_ep_tot
## 12718                      per_sa_allsa.bry_q1_preT_tot
## 12719                           per_sa_allsa.bry_q1_rur
## 12720                           per_sa_allsa.bry_q1_tot
## 12721                           per_sa_allsa.bry_q1_urb
## 12722                      per_sa_allsa.bry_q2_preT_tot
## 12723                           per_sa_allsa.bry_q2_rur
## 12724                           per_sa_allsa.bry_q2_tot
## 12725                           per_sa_allsa.bry_q2_urb
## 12726                      per_sa_allsa.bry_q3_preT_tot
## 12727                           per_sa_allsa.bry_q3_rur
## 12728                           per_sa_allsa.bry_q3_tot
## 12729                           per_sa_allsa.bry_q3_urb
## 12730                      per_sa_allsa.bry_q4_preT_tot
## 12731                           per_sa_allsa.bry_q4_rur
## 12732                           per_sa_allsa.bry_q4_tot
## 12733                           per_sa_allsa.bry_q4_urb
## 12734                      per_sa_allsa.bry_q5_preT_tot
## 12735                           per_sa_allsa.bry_q5_rur
## 12736                           per_sa_allsa.bry_q5_tot
## 12737                           per_sa_allsa.bry_q5_urb
## 12738                      per_sa_allsa.cba_ep_preT_tot
## 12739                           per_sa_allsa.cba_ep_tot
## 12740                      per_sa_allsa.cba_q1_preT_tot
## 12741                           per_sa_allsa.cba_q1_rur
## 12742                           per_sa_allsa.cba_q1_tot
## 12743                           per_sa_allsa.cba_q1_urb
## 12744                      per_sa_allsa.cov_ep_preT_tot
## 12745                           per_sa_allsa.cov_ep_tot
## 12746                     per_sa_allsa.cov_pop_preT_tot
## 12747                          per_sa_allsa.cov_pop_rur
## 12748                          per_sa_allsa.cov_pop_tot
## 12749                          per_sa_allsa.cov_pop_urb
## 12750                      per_sa_allsa.cov_q1_preT_tot
## 12751                           per_sa_allsa.cov_q1_rur
## 12752                           per_sa_allsa.cov_q1_tot
## 12753                           per_sa_allsa.cov_q1_urb
## 12754                      per_sa_allsa.cov_q2_preT_tot
## 12755                           per_sa_allsa.cov_q2_rur
## 12756                           per_sa_allsa.cov_q2_tot
## 12757                           per_sa_allsa.cov_q2_urb
## 12758                      per_sa_allsa.cov_q3_preT_tot
## 12759                           per_sa_allsa.cov_q3_rur
## 12760                           per_sa_allsa.cov_q3_tot
## 12761                           per_sa_allsa.cov_q3_urb
## 12762                      per_sa_allsa.cov_q4_preT_tot
## 12763                           per_sa_allsa.cov_q4_rur
## 12764                           per_sa_allsa.cov_q4_tot
## 12765                           per_sa_allsa.cov_q4_urb
## 12766                      per_sa_allsa.cov_q5_preT_tot
## 12767                           per_sa_allsa.cov_q5_rur
## 12768                           per_sa_allsa.cov_q5_tot
## 12769                           per_sa_allsa.cov_q5_urb
## 12770                             per_sa_allsa_gini_rur
## 12771                             per_sa_allsa_gini_tot
## 12772                             per_sa_allsa_gini_urb
## 12773                            per_sa_allsa_p0_ep_tot
## 12774                               per_sa_allsa_p0_rur
## 12775                               per_sa_allsa_p0_tot
## 12776                               per_sa_allsa_p0_urb
## 12777                            per_sa_allsa_p1_ep_tot
## 12778                               per_sa_allsa_p1_rur
## 12779                               per_sa_allsa_p1_tot
## 12780                               per_sa_allsa_p1_urb
## 12781                         per_sa_cc.adq_ep_preT_tot
## 12782                              per_sa_cc.adq_ep_tot
## 12783                        per_sa_cc.adq_pop_preT_tot
## 12784                             per_sa_cc.adq_pop_rur
## 12785                             per_sa_cc.adq_pop_tot
## 12786                             per_sa_cc.adq_pop_urb
## 12787                         per_sa_cc.adq_q1_preT_tot
## 12788                              per_sa_cc.adq_q1_rur
## 12789                              per_sa_cc.adq_q1_tot
## 12790                              per_sa_cc.adq_q1_urb
## 12791                         per_sa_cc.adq_q2_preT_tot
## 12792                              per_sa_cc.adq_q2_rur
## 12793                              per_sa_cc.adq_q2_tot
## 12794                              per_sa_cc.adq_q2_urb
## 12795                         per_sa_cc.adq_q3_preT_tot
## 12796                              per_sa_cc.adq_q3_rur
## 12797                              per_sa_cc.adq_q3_tot
## 12798                              per_sa_cc.adq_q3_urb
## 12799                         per_sa_cc.adq_q4_preT_tot
## 12800                              per_sa_cc.adq_q4_rur
## 12801                              per_sa_cc.adq_q4_tot
## 12802                              per_sa_cc.adq_q4_urb
## 12803                         per_sa_cc.adq_q5_preT_tot
## 12804                              per_sa_cc.adq_q5_rur
## 12805                              per_sa_cc.adq_q5_tot
## 12806                              per_sa_cc.adq_q5_urb
## 12807                         per_sa_cc.avt_ep_preT_tot
## 12808                              per_sa_cc.avt_ep_tot
## 12809                        per_sa_cc.avt_pop_preT_tot
## 12810                             per_sa_cc.avt_pop_rur
## 12811                             per_sa_cc.avt_pop_tot
## 12812                             per_sa_cc.avt_pop_urb
## 12813                         per_sa_cc.avt_q1_preT_tot
## 12814                              per_sa_cc.avt_q1_rur
## 12815                              per_sa_cc.avt_q1_tot
## 12816                              per_sa_cc.avt_q1_urb
## 12817                         per_sa_cc.avt_q2_preT_tot
## 12818                              per_sa_cc.avt_q2_rur
## 12819                              per_sa_cc.avt_q2_tot
## 12820                              per_sa_cc.avt_q2_urb
## 12821                         per_sa_cc.avt_q3_preT_tot
## 12822                              per_sa_cc.avt_q3_rur
## 12823                              per_sa_cc.avt_q3_tot
## 12824                              per_sa_cc.avt_q3_urb
## 12825                         per_sa_cc.avt_q4_preT_tot
## 12826                              per_sa_cc.avt_q4_rur
## 12827                              per_sa_cc.avt_q4_tot
## 12828                              per_sa_cc.avt_q4_urb
## 12829                         per_sa_cc.avt_q5_preT_tot
## 12830                              per_sa_cc.avt_q5_rur
## 12831                              per_sa_cc.avt_q5_tot
## 12832                              per_sa_cc.avt_q5_urb
## 12833                         per_sa_cc.ben_ep_preT_tot
## 12834                              per_sa_cc.ben_ep_tot
## 12835                         per_sa_cc.ben_q1_preT_tot
## 12836                              per_sa_cc.ben_q1_rur
## 12837                              per_sa_cc.ben_q1_tot
## 12838                              per_sa_cc.ben_q1_urb
## 12839                         per_sa_cc.ben_q2_preT_tot
## 12840                              per_sa_cc.ben_q2_rur
## 12841                              per_sa_cc.ben_q2_tot
## 12842                              per_sa_cc.ben_q2_urb
## 12843                         per_sa_cc.ben_q3_preT_tot
## 12844                              per_sa_cc.ben_q3_rur
## 12845                              per_sa_cc.ben_q3_tot
## 12846                              per_sa_cc.ben_q3_urb
## 12847                         per_sa_cc.ben_q4_preT_tot
## 12848                              per_sa_cc.ben_q4_rur
## 12849                              per_sa_cc.ben_q4_tot
## 12850                              per_sa_cc.ben_q4_urb
## 12851                         per_sa_cc.ben_q5_preT_tot
## 12852                              per_sa_cc.ben_q5_rur
## 12853                              per_sa_cc.ben_q5_tot
## 12854                              per_sa_cc.ben_q5_urb
## 12855                         per_sa_cc.bry_ep_preT_tot
## 12856                              per_sa_cc.bry_ep_tot
## 12857                         per_sa_cc.bry_q1_preT_tot
## 12858                              per_sa_cc.bry_q1_rur
## 12859                              per_sa_cc.bry_q1_tot
## 12860                              per_sa_cc.bry_q1_urb
## 12861                         per_sa_cc.bry_q2_preT_tot
## 12862                              per_sa_cc.bry_q2_rur
## 12863                              per_sa_cc.bry_q2_tot
## 12864                              per_sa_cc.bry_q2_urb
## 12865                         per_sa_cc.bry_q3_preT_tot
## 12866                              per_sa_cc.bry_q3_rur
## 12867                              per_sa_cc.bry_q3_tot
## 12868                              per_sa_cc.bry_q3_urb
## 12869                         per_sa_cc.bry_q4_preT_tot
## 12870                              per_sa_cc.bry_q4_rur
## 12871                              per_sa_cc.bry_q4_tot
## 12872                              per_sa_cc.bry_q4_urb
## 12873                         per_sa_cc.bry_q5_preT_tot
## 12874                              per_sa_cc.bry_q5_rur
## 12875                              per_sa_cc.bry_q5_tot
## 12876                              per_sa_cc.bry_q5_urb
## 12877                         per_sa_cc.cba_ep_preT_tot
## 12878                              per_sa_cc.cba_ep_tot
## 12879                         per_sa_cc.cba_q1_preT_tot
## 12880                              per_sa_cc.cba_q1_rur
## 12881                              per_sa_cc.cba_q1_tot
## 12882                              per_sa_cc.cba_q1_urb
## 12883                         per_sa_cc.cov_ep_preT_tot
## 12884                              per_sa_cc.cov_ep_tot
## 12885                        per_sa_cc.cov_pop_preT_tot
## 12886                             per_sa_cc.cov_pop_rur
## 12887                             per_sa_cc.cov_pop_tot
## 12888                             per_sa_cc.cov_pop_urb
## 12889                         per_sa_cc.cov_q1_preT_tot
## 12890                              per_sa_cc.cov_q1_rur
## 12891                              per_sa_cc.cov_q1_tot
## 12892                              per_sa_cc.cov_q1_urb
## 12893                         per_sa_cc.cov_q2_preT_tot
## 12894                              per_sa_cc.cov_q2_rur
## 12895                              per_sa_cc.cov_q2_tot
## 12896                              per_sa_cc.cov_q2_urb
## 12897                         per_sa_cc.cov_q3_preT_tot
## 12898                              per_sa_cc.cov_q3_rur
## 12899                              per_sa_cc.cov_q3_tot
## 12900                              per_sa_cc.cov_q3_urb
## 12901                         per_sa_cc.cov_q4_preT_tot
## 12902                              per_sa_cc.cov_q4_rur
## 12903                              per_sa_cc.cov_q4_tot
## 12904                              per_sa_cc.cov_q4_urb
## 12905                         per_sa_cc.cov_q5_preT_tot
## 12906                              per_sa_cc.cov_q5_rur
## 12907                              per_sa_cc.cov_q5_tot
## 12908                              per_sa_cc.cov_q5_urb
## 12909                                per_sa_cc_gini_rur
## 12910                                per_sa_cc_gini_tot
## 12911                                per_sa_cc_gini_urb
## 12912                               per_sa_cc_p0_ep_tot
## 12913                                  per_sa_cc_p0_rur
## 12914                                  per_sa_cc_p0_tot
## 12915                                  per_sa_cc_p0_urb
## 12916                               per_sa_cc_p1_ep_tot
## 12917                                  per_sa_cc_p1_rur
## 12918                                  per_sa_cc_p1_tot
## 12919                                  per_sa_cc_p1_urb
## 12920                         per_sa_ct.adq_ep_preT_tot
## 12921                              per_sa_ct.adq_ep_tot
## 12922                        per_sa_ct.adq_pop_preT_tot
## 12923                             per_sa_ct.adq_pop_rur
## 12924                             per_sa_ct.adq_pop_tot
## 12925                             per_sa_ct.adq_pop_urb
## 12926                         per_sa_ct.adq_q1_preT_tot
## 12927                              per_sa_ct.adq_q1_rur
## 12928                              per_sa_ct.adq_q1_tot
## 12929                              per_sa_ct.adq_q1_urb
## 12930                         per_sa_ct.adq_q2_preT_tot
## 12931                              per_sa_ct.adq_q2_rur
## 12932                              per_sa_ct.adq_q2_tot
## 12933                              per_sa_ct.adq_q2_urb
## 12934                         per_sa_ct.adq_q3_preT_tot
## 12935                              per_sa_ct.adq_q3_rur
## 12936                              per_sa_ct.adq_q3_tot
## 12937                              per_sa_ct.adq_q3_urb
## 12938                         per_sa_ct.adq_q4_preT_tot
## 12939                              per_sa_ct.adq_q4_rur
## 12940                              per_sa_ct.adq_q4_tot
## 12941                              per_sa_ct.adq_q4_urb
## 12942                         per_sa_ct.adq_q5_preT_tot
## 12943                              per_sa_ct.adq_q5_rur
## 12944                              per_sa_ct.adq_q5_tot
## 12945                              per_sa_ct.adq_q5_urb
## 12946                         per_sa_ct.avt_ep_preT_tot
## 12947                              per_sa_ct.avt_ep_tot
## 12948                        per_sa_ct.avt_pop_preT_tot
## 12949                             per_sa_ct.avt_pop_rur
## 12950                             per_sa_ct.avt_pop_tot
## 12951                             per_sa_ct.avt_pop_urb
## 12952                         per_sa_ct.avt_q1_preT_tot
## 12953                              per_sa_ct.avt_q1_rur
## 12954                              per_sa_ct.avt_q1_tot
## 12955                              per_sa_ct.avt_q1_urb
## 12956                         per_sa_ct.avt_q2_preT_tot
## 12957                              per_sa_ct.avt_q2_rur
## 12958                              per_sa_ct.avt_q2_tot
## 12959                              per_sa_ct.avt_q2_urb
## 12960                         per_sa_ct.avt_q3_preT_tot
## 12961                              per_sa_ct.avt_q3_rur
## 12962                              per_sa_ct.avt_q3_tot
## 12963                              per_sa_ct.avt_q3_urb
## 12964                         per_sa_ct.avt_q4_preT_tot
## 12965                              per_sa_ct.avt_q4_rur
## 12966                              per_sa_ct.avt_q4_tot
## 12967                              per_sa_ct.avt_q4_urb
## 12968                         per_sa_ct.avt_q5_preT_tot
## 12969                              per_sa_ct.avt_q5_rur
## 12970                              per_sa_ct.avt_q5_tot
## 12971                              per_sa_ct.avt_q5_urb
## 12972                         per_sa_ct.ben_ep_preT_tot
## 12973                              per_sa_ct.ben_ep_tot
## 12974                         per_sa_ct.ben_q1_preT_tot
## 12975                              per_sa_ct.ben_q1_rur
## 12976                              per_sa_ct.ben_q1_tot
## 12977                              per_sa_ct.ben_q1_urb
## 12978                         per_sa_ct.ben_q2_preT_tot
## 12979                              per_sa_ct.ben_q2_rur
## 12980                              per_sa_ct.ben_q2_tot
## 12981                              per_sa_ct.ben_q2_urb
## 12982                         per_sa_ct.ben_q3_preT_tot
## 12983                              per_sa_ct.ben_q3_rur
## 12984                              per_sa_ct.ben_q3_tot
## 12985                              per_sa_ct.ben_q3_urb
## 12986                         per_sa_ct.ben_q4_preT_tot
## 12987                              per_sa_ct.ben_q4_rur
## 12988                              per_sa_ct.ben_q4_tot
## 12989                              per_sa_ct.ben_q4_urb
## 12990                         per_sa_ct.ben_q5_preT_tot
## 12991                              per_sa_ct.ben_q5_rur
## 12992                              per_sa_ct.ben_q5_tot
## 12993                              per_sa_ct.ben_q5_urb
## 12994                         per_sa_ct.bry_ep_preT_tot
## 12995                              per_sa_ct.bry_ep_tot
## 12996                         per_sa_ct.bry_q1_preT_tot
## 12997                              per_sa_ct.bry_q1_rur
## 12998                              per_sa_ct.bry_q1_tot
## 12999                              per_sa_ct.bry_q1_urb
## 13000                         per_sa_ct.bry_q2_preT_tot
## 13001                              per_sa_ct.bry_q2_rur
## 13002                              per_sa_ct.bry_q2_tot
## 13003                              per_sa_ct.bry_q2_urb
## 13004                         per_sa_ct.bry_q3_preT_tot
## 13005                              per_sa_ct.bry_q3_rur
## 13006                              per_sa_ct.bry_q3_tot
## 13007                              per_sa_ct.bry_q3_urb
## 13008                         per_sa_ct.bry_q4_preT_tot
## 13009                              per_sa_ct.bry_q4_rur
## 13010                              per_sa_ct.bry_q4_tot
## 13011                              per_sa_ct.bry_q4_urb
## 13012                         per_sa_ct.bry_q5_preT_tot
## 13013                              per_sa_ct.bry_q5_rur
## 13014                              per_sa_ct.bry_q5_tot
## 13015                              per_sa_ct.bry_q5_urb
## 13016                         per_sa_ct.cba_ep_preT_tot
## 13017                              per_sa_ct.cba_ep_tot
## 13018                         per_sa_ct.cba_q1_preT_tot
## 13019                              per_sa_ct.cba_q1_rur
## 13020                              per_sa_ct.cba_q1_tot
## 13021                              per_sa_ct.cba_q1_urb
## 13022                         per_sa_ct.cov_ep_preT_tot
## 13023                              per_sa_ct.cov_ep_tot
## 13024                        per_sa_ct.cov_pop_preT_tot
## 13025                             per_sa_ct.cov_pop_rur
## 13026                             per_sa_ct.cov_pop_tot
## 13027                             per_sa_ct.cov_pop_urb
## 13028                         per_sa_ct.cov_q1_preT_tot
## 13029                              per_sa_ct.cov_q1_rur
## 13030                              per_sa_ct.cov_q1_tot
## 13031                              per_sa_ct.cov_q1_urb
## 13032                         per_sa_ct.cov_q2_preT_tot
## 13033                              per_sa_ct.cov_q2_rur
## 13034                              per_sa_ct.cov_q2_tot
## 13035                              per_sa_ct.cov_q2_urb
## 13036                         per_sa_ct.cov_q3_preT_tot
## 13037                              per_sa_ct.cov_q3_rur
## 13038                              per_sa_ct.cov_q3_tot
## 13039                              per_sa_ct.cov_q3_urb
## 13040                         per_sa_ct.cov_q4_preT_tot
## 13041                              per_sa_ct.cov_q4_rur
## 13042                              per_sa_ct.cov_q4_tot
## 13043                              per_sa_ct.cov_q4_urb
## 13044                         per_sa_ct.cov_q5_preT_tot
## 13045                              per_sa_ct.cov_q5_rur
## 13046                              per_sa_ct.cov_q5_tot
## 13047                              per_sa_ct.cov_q5_urb
## 13048                                per_sa_ct_gini_rur
## 13049                                per_sa_ct_gini_tot
## 13050                                per_sa_ct_gini_urb
## 13051                               per_sa_ct_p0_ep_tot
## 13052                                  per_sa_ct_p0_rur
## 13053                                  per_sa_ct_p0_tot
## 13054                                  per_sa_ct_p0_urb
## 13055                               per_sa_ct_p1_ep_tot
## 13056                                  per_sa_ct_p1_rur
## 13057                                  per_sa_ct_p1_tot
## 13058                                  per_sa_ct_p1_urb
## 13059                         per_sa_fw.adq_ep_preT_tot
## 13060                              per_sa_fw.adq_ep_tot
## 13061                        per_sa_fw.adq_pop_preT_tot
## 13062                             per_sa_fw.adq_pop_rur
## 13063                             per_sa_fw.adq_pop_tot
## 13064                             per_sa_fw.adq_pop_urb
## 13065                         per_sa_fw.adq_q1_preT_tot
## 13066                              per_sa_fw.adq_q1_rur
## 13067                              per_sa_fw.adq_q1_tot
## 13068                              per_sa_fw.adq_q1_urb
## 13069                         per_sa_fw.adq_q2_preT_tot
## 13070                              per_sa_fw.adq_q2_rur
## 13071                              per_sa_fw.adq_q2_tot
## 13072                              per_sa_fw.adq_q2_urb
## 13073                         per_sa_fw.adq_q3_preT_tot
## 13074                              per_sa_fw.adq_q3_rur
## 13075                              per_sa_fw.adq_q3_tot
## 13076                              per_sa_fw.adq_q3_urb
## 13077                         per_sa_fw.adq_q4_preT_tot
## 13078                              per_sa_fw.adq_q4_rur
## 13079                              per_sa_fw.adq_q4_tot
## 13080                              per_sa_fw.adq_q4_urb
## 13081                         per_sa_fw.adq_q5_preT_tot
## 13082                              per_sa_fw.adq_q5_rur
## 13083                              per_sa_fw.adq_q5_tot
## 13084                              per_sa_fw.adq_q5_urb
## 13085                         per_sa_fw.avt_ep_preT_tot
## 13086                              per_sa_fw.avt_ep_tot
## 13087                        per_sa_fw.avt_pop_preT_tot
## 13088                             per_sa_fw.avt_pop_rur
## 13089                             per_sa_fw.avt_pop_tot
## 13090                             per_sa_fw.avt_pop_urb
## 13091                         per_sa_fw.avt_q1_preT_tot
## 13092                              per_sa_fw.avt_q1_rur
## 13093                              per_sa_fw.avt_q1_tot
## 13094                              per_sa_fw.avt_q1_urb
## 13095                         per_sa_fw.avt_q2_preT_tot
## 13096                              per_sa_fw.avt_q2_rur
## 13097                              per_sa_fw.avt_q2_tot
## 13098                              per_sa_fw.avt_q2_urb
## 13099                         per_sa_fw.avt_q3_preT_tot
## 13100                              per_sa_fw.avt_q3_rur
## 13101                              per_sa_fw.avt_q3_tot
## 13102                              per_sa_fw.avt_q3_urb
## 13103                         per_sa_fw.avt_q4_preT_tot
## 13104                              per_sa_fw.avt_q4_rur
## 13105                              per_sa_fw.avt_q4_tot
## 13106                              per_sa_fw.avt_q4_urb
## 13107                         per_sa_fw.avt_q5_preT_tot
## 13108                              per_sa_fw.avt_q5_rur
## 13109                              per_sa_fw.avt_q5_tot
## 13110                              per_sa_fw.avt_q5_urb
## 13111                         per_sa_fw.ben_ep_preT_tot
## 13112                              per_sa_fw.ben_ep_tot
## 13113                         per_sa_fw.ben_q1_preT_tot
## 13114                              per_sa_fw.ben_q1_rur
## 13115                              per_sa_fw.ben_q1_tot
## 13116                              per_sa_fw.ben_q1_urb
## 13117                         per_sa_fw.ben_q2_preT_tot
## 13118                              per_sa_fw.ben_q2_rur
## 13119                              per_sa_fw.ben_q2_tot
## 13120                              per_sa_fw.ben_q2_urb
## 13121                         per_sa_fw.ben_q3_preT_tot
## 13122                              per_sa_fw.ben_q3_rur
## 13123                              per_sa_fw.ben_q3_tot
## 13124                              per_sa_fw.ben_q3_urb
## 13125                         per_sa_fw.ben_q4_preT_tot
## 13126                              per_sa_fw.ben_q4_rur
## 13127                              per_sa_fw.ben_q4_tot
## 13128                              per_sa_fw.ben_q4_urb
## 13129                         per_sa_fw.ben_q5_preT_tot
## 13130                              per_sa_fw.ben_q5_rur
## 13131                              per_sa_fw.ben_q5_tot
## 13132                              per_sa_fw.ben_q5_urb
## 13133                         per_sa_fw.bry_ep_preT_tot
## 13134                              per_sa_fw.bry_ep_tot
## 13135                         per_sa_fw.bry_q1_preT_tot
## 13136                              per_sa_fw.bry_q1_rur
## 13137                              per_sa_fw.bry_q1_tot
## 13138                              per_sa_fw.bry_q1_urb
## 13139                         per_sa_fw.bry_q2_preT_tot
## 13140                              per_sa_fw.bry_q2_rur
## 13141                              per_sa_fw.bry_q2_tot
## 13142                              per_sa_fw.bry_q2_urb
## 13143                         per_sa_fw.bry_q3_preT_tot
## 13144                              per_sa_fw.bry_q3_rur
## 13145                              per_sa_fw.bry_q3_tot
## 13146                              per_sa_fw.bry_q3_urb
## 13147                         per_sa_fw.bry_q4_preT_tot
## 13148                              per_sa_fw.bry_q4_rur
## 13149                              per_sa_fw.bry_q4_tot
## 13150                              per_sa_fw.bry_q4_urb
## 13151                         per_sa_fw.bry_q5_preT_tot
## 13152                              per_sa_fw.bry_q5_rur
## 13153                              per_sa_fw.bry_q5_tot
## 13154                              per_sa_fw.bry_q5_urb
## 13155                         per_sa_fw.cba_ep_preT_tot
## 13156                              per_sa_fw.cba_ep_tot
## 13157                         per_sa_fw.cba_q1_preT_tot
## 13158                              per_sa_fw.cba_q1_rur
## 13159                              per_sa_fw.cba_q1_tot
## 13160                              per_sa_fw.cba_q1_urb
## 13161                         per_sa_fw.cov_ep_preT_tot
## 13162                              per_sa_fw.cov_ep_tot
## 13163                        per_sa_fw.cov_pop_preT_tot
## 13164                             per_sa_fw.cov_pop_rur
## 13165                             per_sa_fw.cov_pop_tot
## 13166                             per_sa_fw.cov_pop_urb
## 13167                         per_sa_fw.cov_q1_preT_tot
## 13168                              per_sa_fw.cov_q1_rur
## 13169                              per_sa_fw.cov_q1_tot
## 13170                              per_sa_fw.cov_q1_urb
## 13171                         per_sa_fw.cov_q2_preT_tot
## 13172                              per_sa_fw.cov_q2_rur
## 13173                              per_sa_fw.cov_q2_tot
## 13174                              per_sa_fw.cov_q2_urb
## 13175                         per_sa_fw.cov_q3_preT_tot
## 13176                              per_sa_fw.cov_q3_rur
## 13177                              per_sa_fw.cov_q3_tot
## 13178                              per_sa_fw.cov_q3_urb
## 13179                         per_sa_fw.cov_q4_preT_tot
## 13180                              per_sa_fw.cov_q4_rur
## 13181                              per_sa_fw.cov_q4_tot
## 13182                              per_sa_fw.cov_q4_urb
## 13183                         per_sa_fw.cov_q5_preT_tot
## 13184                              per_sa_fw.cov_q5_rur
## 13185                              per_sa_fw.cov_q5_tot
## 13186                              per_sa_fw.cov_q5_urb
## 13187                                per_sa_fw_gini_rur
## 13188                                per_sa_fw_gini_tot
## 13189                                per_sa_fw_gini_urb
## 13190                               per_sa_fw_p0_ep_tot
## 13191                                  per_sa_fw_p0_rur
## 13192                                  per_sa_fw_p0_tot
## 13193                                  per_sa_fw_p0_urb
## 13194                               per_sa_fw_p1_ep_tot
## 13195                                  per_sa_fw_p1_rur
## 13196                                  per_sa_fw_p1_tot
## 13197                                  per_sa_fw_p1_urb
## 13198                         per_sa_ik.adq_ep_preT_tot
## 13199                              per_sa_ik.adq_ep_tot
## 13200                        per_sa_ik.adq_pop_preT_tot
## 13201                             per_sa_ik.adq_pop_rur
## 13202                             per_sa_ik.adq_pop_tot
## 13203                             per_sa_ik.adq_pop_urb
## 13204                         per_sa_ik.adq_q1_preT_tot
## 13205                              per_sa_ik.adq_q1_rur
## 13206                              per_sa_ik.adq_q1_tot
## 13207                              per_sa_ik.adq_q1_urb
## 13208                         per_sa_ik.adq_q2_preT_tot
## 13209                              per_sa_ik.adq_q2_rur
## 13210                              per_sa_ik.adq_q2_tot
## 13211                              per_sa_ik.adq_q2_urb
## 13212                         per_sa_ik.adq_q3_preT_tot
## 13213                              per_sa_ik.adq_q3_rur
## 13214                              per_sa_ik.adq_q3_tot
## 13215                              per_sa_ik.adq_q3_urb
## 13216                         per_sa_ik.adq_q4_preT_tot
## 13217                              per_sa_ik.adq_q4_rur
## 13218                              per_sa_ik.adq_q4_tot
## 13219                              per_sa_ik.adq_q4_urb
## 13220                         per_sa_ik.adq_q5_preT_tot
## 13221                              per_sa_ik.adq_q5_rur
## 13222                              per_sa_ik.adq_q5_tot
## 13223                              per_sa_ik.adq_q5_urb
## 13224                         per_sa_ik.avt_ep_preT_tot
## 13225                              per_sa_ik.avt_ep_tot
## 13226                        per_sa_ik.avt_pop_preT_tot
## 13227                             per_sa_ik.avt_pop_rur
## 13228                             per_sa_ik.avt_pop_tot
## 13229                             per_sa_ik.avt_pop_urb
## 13230                         per_sa_ik.avt_q1_preT_tot
## 13231                              per_sa_ik.avt_q1_rur
## 13232                              per_sa_ik.avt_q1_tot
## 13233                              per_sa_ik.avt_q1_urb
## 13234                         per_sa_ik.avt_q2_preT_tot
## 13235                              per_sa_ik.avt_q2_rur
## 13236                              per_sa_ik.avt_q2_tot
## 13237                              per_sa_ik.avt_q2_urb
## 13238                         per_sa_ik.avt_q3_preT_tot
## 13239                              per_sa_ik.avt_q3_rur
## 13240                              per_sa_ik.avt_q3_tot
## 13241                              per_sa_ik.avt_q3_urb
## 13242                         per_sa_ik.avt_q4_preT_tot
## 13243                              per_sa_ik.avt_q4_rur
## 13244                              per_sa_ik.avt_q4_tot
## 13245                              per_sa_ik.avt_q4_urb
## 13246                         per_sa_ik.avt_q5_preT_tot
## 13247                              per_sa_ik.avt_q5_rur
## 13248                              per_sa_ik.avt_q5_tot
## 13249                              per_sa_ik.avt_q5_urb
## 13250                         per_sa_ik.ben_ep_preT_tot
## 13251                              per_sa_ik.ben_ep_tot
## 13252                         per_sa_ik.ben_q1_preT_tot
## 13253                              per_sa_ik.ben_q1_rur
## 13254                              per_sa_ik.ben_q1_tot
## 13255                              per_sa_ik.ben_q1_urb
## 13256                         per_sa_ik.ben_q2_preT_tot
## 13257                              per_sa_ik.ben_q2_rur
## 13258                              per_sa_ik.ben_q2_tot
## 13259                              per_sa_ik.ben_q2_urb
## 13260                         per_sa_ik.ben_q3_preT_tot
## 13261                              per_sa_ik.ben_q3_rur
## 13262                              per_sa_ik.ben_q3_tot
## 13263                              per_sa_ik.ben_q3_urb
## 13264                         per_sa_ik.ben_q4_preT_tot
## 13265                              per_sa_ik.ben_q4_rur
## 13266                              per_sa_ik.ben_q4_tot
## 13267                              per_sa_ik.ben_q4_urb
## 13268                         per_sa_ik.ben_q5_preT_tot
## 13269                              per_sa_ik.ben_q5_rur
## 13270                              per_sa_ik.ben_q5_tot
## 13271                              per_sa_ik.ben_q5_urb
## 13272                         per_sa_ik.bry_ep_preT_tot
## 13273                              per_sa_ik.bry_ep_tot
## 13274                         per_sa_ik.bry_q1_preT_tot
## 13275                              per_sa_ik.bry_q1_rur
## 13276                              per_sa_ik.bry_q1_tot
## 13277                              per_sa_ik.bry_q1_urb
## 13278                         per_sa_ik.bry_q2_preT_tot
## 13279                              per_sa_ik.bry_q2_rur
## 13280                              per_sa_ik.bry_q2_tot
## 13281                              per_sa_ik.bry_q2_urb
## 13282                         per_sa_ik.bry_q3_preT_tot
## 13283                              per_sa_ik.bry_q3_rur
## 13284                              per_sa_ik.bry_q3_tot
## 13285                              per_sa_ik.bry_q3_urb
## 13286                         per_sa_ik.bry_q4_preT_tot
## 13287                              per_sa_ik.bry_q4_rur
## 13288                              per_sa_ik.bry_q4_tot
## 13289                              per_sa_ik.bry_q4_urb
## 13290                         per_sa_ik.bry_q5_preT_tot
## 13291                              per_sa_ik.bry_q5_rur
## 13292                              per_sa_ik.bry_q5_tot
## 13293                              per_sa_ik.bry_q5_urb
## 13294                         per_sa_ik.cba_ep_preT_tot
## 13295                              per_sa_ik.cba_ep_tot
## 13296                         per_sa_ik.cba_q1_preT_tot
## 13297                              per_sa_ik.cba_q1_rur
## 13298                              per_sa_ik.cba_q1_tot
## 13299                              per_sa_ik.cba_q1_urb
## 13300                         per_sa_ik.cov_ep_preT_tot
## 13301                              per_sa_ik.cov_ep_tot
## 13302                        per_sa_ik.cov_pop_preT_tot
## 13303                             per_sa_ik.cov_pop_rur
## 13304                             per_sa_ik.cov_pop_tot
## 13305                             per_sa_ik.cov_pop_urb
## 13306                         per_sa_ik.cov_q1_preT_tot
## 13307                              per_sa_ik.cov_q1_rur
## 13308                              per_sa_ik.cov_q1_tot
## 13309                              per_sa_ik.cov_q1_urb
## 13310                         per_sa_ik.cov_q2_preT_tot
## 13311                              per_sa_ik.cov_q2_rur
## 13312                              per_sa_ik.cov_q2_tot
## 13313                              per_sa_ik.cov_q2_urb
## 13314                         per_sa_ik.cov_q3_preT_tot
## 13315                              per_sa_ik.cov_q3_rur
## 13316                              per_sa_ik.cov_q3_tot
## 13317                              per_sa_ik.cov_q3_urb
## 13318                         per_sa_ik.cov_q4_preT_tot
## 13319                              per_sa_ik.cov_q4_rur
## 13320                              per_sa_ik.cov_q4_tot
## 13321                              per_sa_ik.cov_q4_urb
## 13322                         per_sa_ik.cov_q5_preT_tot
## 13323                              per_sa_ik.cov_q5_rur
## 13324                              per_sa_ik.cov_q5_tot
## 13325                              per_sa_ik.cov_q5_urb
## 13326                                per_sa_ik_gini_rur
## 13327                                per_sa_ik_gini_tot
## 13328                                per_sa_ik_gini_urb
## 13329                               per_sa_ik_p0_ep_tot
## 13330                                  per_sa_ik_p0_rur
## 13331                                  per_sa_ik_p0_tot
## 13332                                  per_sa_ik_p0_urb
## 13333                               per_sa_ik_p1_ep_tot
## 13334                                  per_sa_ik_p1_rur
## 13335                                  per_sa_ik_p1_tot
## 13336                                  per_sa_ik_p1_urb
## 13337                         per_sa_os.adq_ep_preT_tot
## 13338                              per_sa_os.adq_ep_tot
## 13339                        per_sa_os.adq_pop_preT_tot
## 13340                             per_sa_os.adq_pop_rur
## 13341                             per_sa_os.adq_pop_tot
## 13342                             per_sa_os.adq_pop_urb
## 13343                         per_sa_os.adq_q1_preT_tot
## 13344                              per_sa_os.adq_q1_rur
## 13345                              per_sa_os.adq_q1_tot
## 13346                              per_sa_os.adq_q1_urb
## 13347                         per_sa_os.adq_q2_preT_tot
## 13348                              per_sa_os.adq_q2_rur
## 13349                              per_sa_os.adq_q2_tot
## 13350                              per_sa_os.adq_q2_urb
## 13351                         per_sa_os.adq_q3_preT_tot
## 13352                              per_sa_os.adq_q3_rur
## 13353                              per_sa_os.adq_q3_tot
## 13354                              per_sa_os.adq_q3_urb
## 13355                         per_sa_os.adq_q4_preT_tot
## 13356                              per_sa_os.adq_q4_rur
## 13357                              per_sa_os.adq_q4_tot
## 13358                              per_sa_os.adq_q4_urb
## 13359                         per_sa_os.adq_q5_preT_tot
## 13360                              per_sa_os.adq_q5_rur
## 13361                              per_sa_os.adq_q5_tot
## 13362                              per_sa_os.adq_q5_urb
## 13363                         per_sa_os.avt_ep_preT_tot
## 13364                              per_sa_os.avt_ep_tot
## 13365                        per_sa_os.avt_pop_preT_tot
## 13366                             per_sa_os.avt_pop_rur
## 13367                             per_sa_os.avt_pop_tot
## 13368                             per_sa_os.avt_pop_urb
## 13369                         per_sa_os.avt_q1_preT_tot
## 13370                              per_sa_os.avt_q1_rur
## 13371                              per_sa_os.avt_q1_tot
## 13372                              per_sa_os.avt_q1_urb
## 13373                         per_sa_os.avt_q2_preT_tot
## 13374                              per_sa_os.avt_q2_rur
## 13375                              per_sa_os.avt_q2_tot
## 13376                              per_sa_os.avt_q2_urb
## 13377                         per_sa_os.avt_q3_preT_tot
## 13378                              per_sa_os.avt_q3_rur
## 13379                              per_sa_os.avt_q3_tot
## 13380                              per_sa_os.avt_q3_urb
## 13381                         per_sa_os.avt_q4_preT_tot
## 13382                              per_sa_os.avt_q4_rur
## 13383                              per_sa_os.avt_q4_tot
## 13384                              per_sa_os.avt_q4_urb
## 13385                         per_sa_os.avt_q5_preT_tot
## 13386                              per_sa_os.avt_q5_rur
## 13387                              per_sa_os.avt_q5_tot
## 13388                              per_sa_os.avt_q5_urb
## 13389                         per_sa_os.ben_ep_preT_tot
## 13390                              per_sa_os.ben_ep_tot
## 13391                         per_sa_os.ben_q1_preT_tot
## 13392                              per_sa_os.ben_q1_rur
## 13393                              per_sa_os.ben_q1_tot
## 13394                              per_sa_os.ben_q1_urb
## 13395                         per_sa_os.ben_q2_preT_tot
## 13396                              per_sa_os.ben_q2_rur
## 13397                              per_sa_os.ben_q2_tot
## 13398                              per_sa_os.ben_q2_urb
## 13399                         per_sa_os.ben_q3_preT_tot
## 13400                              per_sa_os.ben_q3_rur
## 13401                              per_sa_os.ben_q3_tot
## 13402                              per_sa_os.ben_q3_urb
## 13403                         per_sa_os.ben_q4_preT_tot
## 13404                              per_sa_os.ben_q4_rur
## 13405                              per_sa_os.ben_q4_tot
## 13406                              per_sa_os.ben_q4_urb
## 13407                         per_sa_os.ben_q5_preT_tot
## 13408                              per_sa_os.ben_q5_rur
## 13409                              per_sa_os.ben_q5_tot
## 13410                              per_sa_os.ben_q5_urb
## 13411                         per_sa_os.bry_ep_preT_tot
## 13412                              per_sa_os.bry_ep_tot
## 13413                         per_sa_os.bry_q1_preT_tot
## 13414                              per_sa_os.bry_q1_rur
## 13415                              per_sa_os.bry_q1_tot
## 13416                              per_sa_os.bry_q1_urb
## 13417                         per_sa_os.bry_q2_preT_tot
## 13418                              per_sa_os.bry_q2_rur
## 13419                              per_sa_os.bry_q2_tot
## 13420                              per_sa_os.bry_q2_urb
## 13421                         per_sa_os.bry_q3_preT_tot
## 13422                              per_sa_os.bry_q3_rur
## 13423                              per_sa_os.bry_q3_tot
## 13424                              per_sa_os.bry_q3_urb
## 13425                         per_sa_os.bry_q4_preT_tot
## 13426                              per_sa_os.bry_q4_rur
## 13427                              per_sa_os.bry_q4_tot
## 13428                              per_sa_os.bry_q4_urb
## 13429                         per_sa_os.bry_q5_preT_tot
## 13430                              per_sa_os.bry_q5_rur
## 13431                              per_sa_os.bry_q5_tot
## 13432                              per_sa_os.bry_q5_urb
## 13433                         per_sa_os.cba_ep_preT_tot
## 13434                              per_sa_os.cba_ep_tot
## 13435                         per_sa_os.cba_q1_preT_tot
## 13436                              per_sa_os.cba_q1_rur
## 13437                              per_sa_os.cba_q1_tot
## 13438                              per_sa_os.cba_q1_urb
## 13439                         per_sa_os.cov_ep_preT_tot
## 13440                              per_sa_os.cov_ep_tot
## 13441                        per_sa_os.cov_pop_preT_tot
## 13442                             per_sa_os.cov_pop_rur
## 13443                             per_sa_os.cov_pop_tot
## 13444                             per_sa_os.cov_pop_urb
## 13445                         per_sa_os.cov_q1_preT_tot
## 13446                              per_sa_os.cov_q1_rur
## 13447                              per_sa_os.cov_q1_tot
## 13448                              per_sa_os.cov_q1_urb
## 13449                         per_sa_os.cov_q2_preT_tot
## 13450                              per_sa_os.cov_q2_rur
## 13451                              per_sa_os.cov_q2_tot
## 13452                              per_sa_os.cov_q2_urb
## 13453                         per_sa_os.cov_q3_preT_tot
## 13454                              per_sa_os.cov_q3_rur
## 13455                              per_sa_os.cov_q3_tot
## 13456                              per_sa_os.cov_q3_urb
## 13457                         per_sa_os.cov_q4_preT_tot
## 13458                              per_sa_os.cov_q4_rur
## 13459                              per_sa_os.cov_q4_tot
## 13460                              per_sa_os.cov_q4_urb
## 13461                         per_sa_os.cov_q5_preT_tot
## 13462                              per_sa_os.cov_q5_rur
## 13463                              per_sa_os.cov_q5_tot
## 13464                              per_sa_os.cov_q5_urb
## 13465                                per_sa_os_gini_rur
## 13466                                per_sa_os_gini_tot
## 13467                                per_sa_os_gini_urb
## 13468                               per_sa_os_p0_ep_tot
## 13469                                  per_sa_os_p0_rur
## 13470                                  per_sa_os_p0_tot
## 13471                                  per_sa_os_p0_urb
## 13472                               per_sa_os_p1_ep_tot
## 13473                                  per_sa_os_p1_rur
## 13474                                  per_sa_os_p1_tot
## 13475                                  per_sa_os_p1_urb
## 13476                         per_sa_pw.adq_ep_preT_tot
## 13477                              per_sa_pw.adq_ep_tot
## 13478                        per_sa_pw.adq_pop_preT_tot
## 13479                             per_sa_pw.adq_pop_rur
## 13480                             per_sa_pw.adq_pop_tot
## 13481                             per_sa_pw.adq_pop_urb
## 13482                         per_sa_pw.adq_q1_preT_tot
## 13483                              per_sa_pw.adq_q1_rur
## 13484                              per_sa_pw.adq_q1_tot
## 13485                              per_sa_pw.adq_q1_urb
## 13486                         per_sa_pw.adq_q2_preT_tot
## 13487                              per_sa_pw.adq_q2_rur
## 13488                              per_sa_pw.adq_q2_tot
## 13489                              per_sa_pw.adq_q2_urb
## 13490                         per_sa_pw.adq_q3_preT_tot
## 13491                              per_sa_pw.adq_q3_rur
## 13492                              per_sa_pw.adq_q3_tot
## 13493                              per_sa_pw.adq_q3_urb
## 13494                         per_sa_pw.adq_q4_preT_tot
## 13495                              per_sa_pw.adq_q4_rur
## 13496                              per_sa_pw.adq_q4_tot
## 13497                              per_sa_pw.adq_q4_urb
## 13498                         per_sa_pw.adq_q5_preT_tot
## 13499                              per_sa_pw.adq_q5_rur
## 13500                              per_sa_pw.adq_q5_tot
## 13501                              per_sa_pw.adq_q5_urb
## 13502                         per_sa_pw.avt_ep_preT_tot
## 13503                              per_sa_pw.avt_ep_tot
## 13504                        per_sa_pw.avt_pop_preT_tot
## 13505                             per_sa_pw.avt_pop_rur
## 13506                             per_sa_pw.avt_pop_tot
## 13507                             per_sa_pw.avt_pop_urb
## 13508                         per_sa_pw.avt_q1_preT_tot
## 13509                              per_sa_pw.avt_q1_rur
## 13510                              per_sa_pw.avt_q1_tot
## 13511                              per_sa_pw.avt_q1_urb
## 13512                         per_sa_pw.avt_q2_preT_tot
## 13513                              per_sa_pw.avt_q2_rur
## 13514                              per_sa_pw.avt_q2_tot
## 13515                              per_sa_pw.avt_q2_urb
## 13516                         per_sa_pw.avt_q3_preT_tot
## 13517                              per_sa_pw.avt_q3_rur
## 13518                              per_sa_pw.avt_q3_tot
## 13519                              per_sa_pw.avt_q3_urb
## 13520                         per_sa_pw.avt_q4_preT_tot
## 13521                              per_sa_pw.avt_q4_rur
## 13522                              per_sa_pw.avt_q4_tot
## 13523                              per_sa_pw.avt_q4_urb
## 13524                         per_sa_pw.avt_q5_preT_tot
## 13525                              per_sa_pw.avt_q5_rur
## 13526                              per_sa_pw.avt_q5_tot
## 13527                              per_sa_pw.avt_q5_urb
## 13528                         per_sa_pw.ben_ep_preT_tot
## 13529                              per_sa_pw.ben_ep_tot
## 13530                         per_sa_pw.ben_q1_preT_tot
## 13531                              per_sa_pw.ben_q1_rur
## 13532                              per_sa_pw.ben_q1_tot
## 13533                              per_sa_pw.ben_q1_urb
## 13534                         per_sa_pw.ben_q2_preT_tot
## 13535                              per_sa_pw.ben_q2_rur
## 13536                              per_sa_pw.ben_q2_tot
## 13537                              per_sa_pw.ben_q2_urb
## 13538                         per_sa_pw.ben_q3_preT_tot
## 13539                              per_sa_pw.ben_q3_rur
## 13540                              per_sa_pw.ben_q3_tot
## 13541                              per_sa_pw.ben_q3_urb
## 13542                         per_sa_pw.ben_q4_preT_tot
## 13543                              per_sa_pw.ben_q4_rur
## 13544                              per_sa_pw.ben_q4_tot
## 13545                              per_sa_pw.ben_q4_urb
## 13546                         per_sa_pw.ben_q5_preT_tot
## 13547                              per_sa_pw.ben_q5_rur
## 13548                              per_sa_pw.ben_q5_tot
## 13549                              per_sa_pw.ben_q5_urb
## 13550                         per_sa_pw.bry_ep_preT_tot
## 13551                              per_sa_pw.bry_ep_tot
## 13552                         per_sa_pw.bry_q1_preT_tot
## 13553                              per_sa_pw.bry_q1_rur
## 13554                              per_sa_pw.bry_q1_tot
## 13555                              per_sa_pw.bry_q1_urb
## 13556                         per_sa_pw.bry_q2_preT_tot
## 13557                              per_sa_pw.bry_q2_rur
## 13558                              per_sa_pw.bry_q2_tot
## 13559                              per_sa_pw.bry_q2_urb
## 13560                         per_sa_pw.bry_q3_preT_tot
## 13561                              per_sa_pw.bry_q3_rur
## 13562                              per_sa_pw.bry_q3_tot
## 13563                              per_sa_pw.bry_q3_urb
## 13564                         per_sa_pw.bry_q4_preT_tot
## 13565                              per_sa_pw.bry_q4_rur
## 13566                              per_sa_pw.bry_q4_tot
## 13567                              per_sa_pw.bry_q4_urb
## 13568                         per_sa_pw.bry_q5_preT_tot
## 13569                              per_sa_pw.bry_q5_rur
## 13570                              per_sa_pw.bry_q5_tot
## 13571                              per_sa_pw.bry_q5_urb
## 13572                         per_sa_pw.cba_ep_preT_tot
## 13573                              per_sa_pw.cba_ep_tot
## 13574                         per_sa_pw.cba_q1_preT_tot
## 13575                              per_sa_pw.cba_q1_rur
## 13576                              per_sa_pw.cba_q1_tot
## 13577                              per_sa_pw.cba_q1_urb
## 13578                         per_sa_pw.cov_ep_preT_tot
## 13579                              per_sa_pw.cov_ep_tot
## 13580                        per_sa_pw.cov_pop_preT_tot
## 13581                             per_sa_pw.cov_pop_rur
## 13582                             per_sa_pw.cov_pop_tot
## 13583                             per_sa_pw.cov_pop_urb
## 13584                         per_sa_pw.cov_q1_preT_tot
## 13585                              per_sa_pw.cov_q1_rur
## 13586                              per_sa_pw.cov_q1_tot
## 13587                              per_sa_pw.cov_q1_urb
## 13588                         per_sa_pw.cov_q2_preT_tot
## 13589                              per_sa_pw.cov_q2_rur
## 13590                              per_sa_pw.cov_q2_tot
## 13591                              per_sa_pw.cov_q2_urb
## 13592                         per_sa_pw.cov_q3_preT_tot
## 13593                              per_sa_pw.cov_q3_rur
## 13594                              per_sa_pw.cov_q3_tot
## 13595                              per_sa_pw.cov_q3_urb
## 13596                         per_sa_pw.cov_q4_preT_tot
## 13597                              per_sa_pw.cov_q4_rur
## 13598                              per_sa_pw.cov_q4_tot
## 13599                              per_sa_pw.cov_q4_urb
## 13600                         per_sa_pw.cov_q5_preT_tot
## 13601                              per_sa_pw.cov_q5_rur
## 13602                              per_sa_pw.cov_q5_tot
## 13603                              per_sa_pw.cov_q5_urb
## 13604                                per_sa_pw_gini_rur
## 13605                                per_sa_pw_gini_tot
## 13606                                per_sa_pw_gini_urb
## 13607                               per_sa_pw_p0_ep_tot
## 13608                                  per_sa_pw_p0_rur
## 13609                                  per_sa_pw_p0_tot
## 13610                                  per_sa_pw_p0_urb
## 13611                               per_sa_pw_p1_ep_tot
## 13612                                  per_sa_pw_p1_rur
## 13613                                  per_sa_pw_p1_tot
## 13614                                  per_sa_pw_p1_urb
## 13615                         per_sa_sf.adq_ep_preT_tot
## 13616                              per_sa_sf.adq_ep_tot
## 13617                        per_sa_sf.adq_pop_preT_tot
## 13618                             per_sa_sf.adq_pop_rur
## 13619                             per_sa_sf.adq_pop_tot
## 13620                             per_sa_sf.adq_pop_urb
## 13621                         per_sa_sf.adq_q1_preT_tot
## 13622                              per_sa_sf.adq_q1_rur
## 13623                              per_sa_sf.adq_q1_tot
## 13624                              per_sa_sf.adq_q1_urb
## 13625                         per_sa_sf.adq_q2_preT_tot
## 13626                              per_sa_sf.adq_q2_rur
## 13627                              per_sa_sf.adq_q2_tot
## 13628                              per_sa_sf.adq_q2_urb
## 13629                         per_sa_sf.adq_q3_preT_tot
## 13630                              per_sa_sf.adq_q3_rur
## 13631                              per_sa_sf.adq_q3_tot
## 13632                              per_sa_sf.adq_q3_urb
## 13633                         per_sa_sf.adq_q4_preT_tot
## 13634                              per_sa_sf.adq_q4_rur
## 13635                              per_sa_sf.adq_q4_tot
## 13636                              per_sa_sf.adq_q4_urb
## 13637                         per_sa_sf.adq_q5_preT_tot
## 13638                              per_sa_sf.adq_q5_rur
## 13639                              per_sa_sf.adq_q5_tot
## 13640                              per_sa_sf.adq_q5_urb
## 13641                         per_sa_sf.avt_ep_preT_tot
## 13642                              per_sa_sf.avt_ep_tot
## 13643                        per_sa_sf.avt_pop_preT_tot
## 13644                             per_sa_sf.avt_pop_rur
## 13645                             per_sa_sf.avt_pop_tot
## 13646                             per_sa_sf.avt_pop_urb
## 13647                         per_sa_sf.avt_q1_preT_tot
## 13648                              per_sa_sf.avt_q1_rur
## 13649                              per_sa_sf.avt_q1_tot
## 13650                              per_sa_sf.avt_q1_urb
## 13651                         per_sa_sf.avt_q2_preT_tot
## 13652                              per_sa_sf.avt_q2_rur
## 13653                              per_sa_sf.avt_q2_tot
## 13654                              per_sa_sf.avt_q2_urb
## 13655                         per_sa_sf.avt_q3_preT_tot
## 13656                              per_sa_sf.avt_q3_rur
## 13657                              per_sa_sf.avt_q3_tot
## 13658                              per_sa_sf.avt_q3_urb
## 13659                         per_sa_sf.avt_q4_preT_tot
## 13660                              per_sa_sf.avt_q4_rur
## 13661                              per_sa_sf.avt_q4_tot
## 13662                              per_sa_sf.avt_q4_urb
## 13663                         per_sa_sf.avt_q5_preT_tot
## 13664                              per_sa_sf.avt_q5_rur
## 13665                              per_sa_sf.avt_q5_tot
## 13666                              per_sa_sf.avt_q5_urb
## 13667                         per_sa_sf.ben_ep_preT_tot
## 13668                              per_sa_sf.ben_ep_tot
## 13669                         per_sa_sf.ben_q1_preT_tot
## 13670                              per_sa_sf.ben_q1_rur
## 13671                              per_sa_sf.ben_q1_tot
## 13672                              per_sa_sf.ben_q1_urb
## 13673                         per_sa_sf.ben_q2_preT_tot
## 13674                              per_sa_sf.ben_q2_rur
## 13675                              per_sa_sf.ben_q2_tot
## 13676                              per_sa_sf.ben_q2_urb
## 13677                         per_sa_sf.ben_q3_preT_tot
## 13678                              per_sa_sf.ben_q3_rur
## 13679                              per_sa_sf.ben_q3_tot
## 13680                              per_sa_sf.ben_q3_urb
## 13681                         per_sa_sf.ben_q4_preT_tot
## 13682                              per_sa_sf.ben_q4_rur
## 13683                              per_sa_sf.ben_q4_tot
## 13684                              per_sa_sf.ben_q4_urb
## 13685                         per_sa_sf.ben_q5_preT_tot
## 13686                              per_sa_sf.ben_q5_rur
## 13687                              per_sa_sf.ben_q5_tot
## 13688                              per_sa_sf.ben_q5_urb
## 13689                         per_sa_sf.bry_ep_preT_tot
## 13690                              per_sa_sf.bry_ep_tot
## 13691                         per_sa_sf.bry_q1_preT_tot
## 13692                              per_sa_sf.bry_q1_rur
## 13693                              per_sa_sf.bry_q1_tot
## 13694                              per_sa_sf.bry_q1_urb
## 13695                         per_sa_sf.bry_q2_preT_tot
## 13696                              per_sa_sf.bry_q2_rur
## 13697                              per_sa_sf.bry_q2_tot
## 13698                              per_sa_sf.bry_q2_urb
## 13699                         per_sa_sf.bry_q3_preT_tot
## 13700                              per_sa_sf.bry_q3_rur
## 13701                              per_sa_sf.bry_q3_tot
## 13702                              per_sa_sf.bry_q3_urb
## 13703                         per_sa_sf.bry_q4_preT_tot
## 13704                              per_sa_sf.bry_q4_rur
## 13705                              per_sa_sf.bry_q4_tot
## 13706                              per_sa_sf.bry_q4_urb
## 13707                         per_sa_sf.bry_q5_preT_tot
## 13708                              per_sa_sf.bry_q5_rur
## 13709                              per_sa_sf.bry_q5_tot
## 13710                              per_sa_sf.bry_q5_urb
## 13711                         per_sa_sf.cba_ep_preT_tot
## 13712                              per_sa_sf.cba_ep_tot
## 13713                         per_sa_sf.cba_q1_preT_tot
## 13714                              per_sa_sf.cba_q1_rur
## 13715                              per_sa_sf.cba_q1_tot
## 13716                              per_sa_sf.cba_q1_urb
## 13717                         per_sa_sf.cov_ep_preT_tot
## 13718                              per_sa_sf.cov_ep_tot
## 13719                        per_sa_sf.cov_pop_preT_tot
## 13720                             per_sa_sf.cov_pop_rur
## 13721                             per_sa_sf.cov_pop_tot
## 13722                             per_sa_sf.cov_pop_urb
## 13723                         per_sa_sf.cov_q1_preT_tot
## 13724                              per_sa_sf.cov_q1_rur
## 13725                              per_sa_sf.cov_q1_tot
## 13726                              per_sa_sf.cov_q1_urb
## 13727                         per_sa_sf.cov_q2_preT_tot
## 13728                              per_sa_sf.cov_q2_rur
## 13729                              per_sa_sf.cov_q2_tot
## 13730                              per_sa_sf.cov_q2_urb
## 13731                         per_sa_sf.cov_q3_preT_tot
## 13732                              per_sa_sf.cov_q3_rur
## 13733                              per_sa_sf.cov_q3_tot
## 13734                              per_sa_sf.cov_q3_urb
## 13735                         per_sa_sf.cov_q4_preT_tot
## 13736                              per_sa_sf.cov_q4_rur
## 13737                              per_sa_sf.cov_q4_tot
## 13738                              per_sa_sf.cov_q4_urb
## 13739                         per_sa_sf.cov_q5_preT_tot
## 13740                              per_sa_sf.cov_q5_rur
## 13741                              per_sa_sf.cov_q5_tot
## 13742                              per_sa_sf.cov_q5_urb
## 13743                                per_sa_sf_gini_rur
## 13744                                per_sa_sf_gini_tot
## 13745                                per_sa_sf_gini_urb
## 13746                               per_sa_sf_p0_ep_tot
## 13747                                  per_sa_sf_p0_rur
## 13748                                  per_sa_sf_p0_tot
## 13749                                  per_sa_sf_p0_urb
## 13750                               per_sa_sf_p1_ep_tot
## 13751                                  per_sa_sf_p1_rur
## 13752                                  per_sa_sf_p1_tot
## 13753                                  per_sa_sf_p1_urb
## 13754                         per_sa_sp.adq_ep_preT_tot
## 13755                              per_sa_sp.adq_ep_tot
## 13756                        per_sa_sp.adq_pop_preT_tot
## 13757                             per_sa_sp.adq_pop_rur
## 13758                             per_sa_sp.adq_pop_tot
## 13759                             per_sa_sp.adq_pop_urb
## 13760                         per_sa_sp.adq_q1_preT_tot
## 13761                              per_sa_sp.adq_q1_rur
## 13762                              per_sa_sp.adq_q1_tot
## 13763                              per_sa_sp.adq_q1_urb
## 13764                         per_sa_sp.adq_q2_preT_tot
## 13765                              per_sa_sp.adq_q2_rur
## 13766                              per_sa_sp.adq_q2_tot
## 13767                              per_sa_sp.adq_q2_urb
## 13768                         per_sa_sp.adq_q3_preT_tot
## 13769                              per_sa_sp.adq_q3_rur
## 13770                              per_sa_sp.adq_q3_tot
## 13771                              per_sa_sp.adq_q3_urb
## 13772                         per_sa_sp.adq_q4_preT_tot
## 13773                              per_sa_sp.adq_q4_rur
## 13774                              per_sa_sp.adq_q4_tot
## 13775                              per_sa_sp.adq_q4_urb
## 13776                         per_sa_sp.adq_q5_preT_tot
## 13777                              per_sa_sp.adq_q5_rur
## 13778                              per_sa_sp.adq_q5_tot
## 13779                              per_sa_sp.adq_q5_urb
## 13780                         per_sa_sp.avt_ep_preT_tot
## 13781                              per_sa_sp.avt_ep_tot
## 13782                        per_sa_sp.avt_pop_preT_tot
## 13783                             per_sa_sp.avt_pop_rur
## 13784                             per_sa_sp.avt_pop_tot
## 13785                             per_sa_sp.avt_pop_urb
## 13786                         per_sa_sp.avt_q1_preT_tot
## 13787                              per_sa_sp.avt_q1_rur
## 13788                              per_sa_sp.avt_q1_tot
## 13789                              per_sa_sp.avt_q1_urb
## 13790                         per_sa_sp.avt_q2_preT_tot
## 13791                              per_sa_sp.avt_q2_rur
## 13792                              per_sa_sp.avt_q2_tot
## 13793                              per_sa_sp.avt_q2_urb
## 13794                         per_sa_sp.avt_q3_preT_tot
## 13795                              per_sa_sp.avt_q3_rur
## 13796                              per_sa_sp.avt_q3_tot
## 13797                              per_sa_sp.avt_q3_urb
## 13798                         per_sa_sp.avt_q4_preT_tot
## 13799                              per_sa_sp.avt_q4_rur
## 13800                              per_sa_sp.avt_q4_tot
## 13801                              per_sa_sp.avt_q4_urb
## 13802                         per_sa_sp.avt_q5_preT_tot
## 13803                              per_sa_sp.avt_q5_rur
## 13804                              per_sa_sp.avt_q5_tot
## 13805                              per_sa_sp.avt_q5_urb
## 13806                         per_sa_sp.ben_ep_preT_tot
## 13807                              per_sa_sp.ben_ep_tot
## 13808                         per_sa_sp.ben_q1_preT_tot
## 13809                              per_sa_sp.ben_q1_rur
## 13810                              per_sa_sp.ben_q1_tot
## 13811                              per_sa_sp.ben_q1_urb
## 13812                         per_sa_sp.ben_q2_preT_tot
## 13813                              per_sa_sp.ben_q2_rur
## 13814                              per_sa_sp.ben_q2_tot
## 13815                              per_sa_sp.ben_q2_urb
## 13816                         per_sa_sp.ben_q3_preT_tot
## 13817                              per_sa_sp.ben_q3_rur
## 13818                              per_sa_sp.ben_q3_tot
## 13819                              per_sa_sp.ben_q3_urb
## 13820                         per_sa_sp.ben_q4_preT_tot
## 13821                              per_sa_sp.ben_q4_rur
## 13822                              per_sa_sp.ben_q4_tot
## 13823                              per_sa_sp.ben_q4_urb
## 13824                         per_sa_sp.ben_q5_preT_tot
## 13825                              per_sa_sp.ben_q5_rur
## 13826                              per_sa_sp.ben_q5_tot
## 13827                              per_sa_sp.ben_q5_urb
## 13828                         per_sa_sp.bry_ep_preT_tot
## 13829                              per_sa_sp.bry_ep_tot
## 13830                         per_sa_sp.bry_q1_preT_tot
## 13831                              per_sa_sp.bry_q1_rur
## 13832                              per_sa_sp.bry_q1_tot
## 13833                              per_sa_sp.bry_q1_urb
## 13834                         per_sa_sp.bry_q2_preT_tot
## 13835                              per_sa_sp.bry_q2_rur
## 13836                              per_sa_sp.bry_q2_tot
## 13837                              per_sa_sp.bry_q2_urb
## 13838                         per_sa_sp.bry_q3_preT_tot
## 13839                              per_sa_sp.bry_q3_rur
## 13840                              per_sa_sp.bry_q3_tot
## 13841                              per_sa_sp.bry_q3_urb
## 13842                         per_sa_sp.bry_q4_preT_tot
## 13843                              per_sa_sp.bry_q4_rur
## 13844                              per_sa_sp.bry_q4_tot
## 13845                              per_sa_sp.bry_q4_urb
## 13846                         per_sa_sp.bry_q5_preT_tot
## 13847                              per_sa_sp.bry_q5_rur
## 13848                              per_sa_sp.bry_q5_tot
## 13849                              per_sa_sp.bry_q5_urb
## 13850                         per_sa_sp.cba_ep_preT_tot
## 13851                              per_sa_sp.cba_ep_tot
## 13852                         per_sa_sp.cba_q1_preT_tot
## 13853                              per_sa_sp.cba_q1_rur
## 13854                              per_sa_sp.cba_q1_tot
## 13855                              per_sa_sp.cba_q1_urb
## 13856                         per_sa_sp.cov_ep_preT_tot
## 13857                              per_sa_sp.cov_ep_tot
## 13858                        per_sa_sp.cov_pop_preT_tot
## 13859                             per_sa_sp.cov_pop_rur
## 13860                             per_sa_sp.cov_pop_tot
## 13861                             per_sa_sp.cov_pop_urb
## 13862                         per_sa_sp.cov_q1_preT_tot
## 13863                              per_sa_sp.cov_q1_rur
## 13864                              per_sa_sp.cov_q1_tot
## 13865                              per_sa_sp.cov_q1_urb
## 13866                         per_sa_sp.cov_q2_preT_tot
## 13867                              per_sa_sp.cov_q2_rur
## 13868                              per_sa_sp.cov_q2_tot
## 13869                              per_sa_sp.cov_q2_urb
## 13870                         per_sa_sp.cov_q3_preT_tot
## 13871                              per_sa_sp.cov_q3_rur
## 13872                              per_sa_sp.cov_q3_tot
## 13873                              per_sa_sp.cov_q3_urb
## 13874                         per_sa_sp.cov_q4_preT_tot
## 13875                              per_sa_sp.cov_q4_rur
## 13876                              per_sa_sp.cov_q4_tot
## 13877                              per_sa_sp.cov_q4_urb
## 13878                         per_sa_sp.cov_q5_preT_tot
## 13879                              per_sa_sp.cov_q5_rur
## 13880                              per_sa_sp.cov_q5_tot
## 13881                              per_sa_sp.cov_q5_urb
## 13882                                per_sa_sp_gini_rur
## 13883                                per_sa_sp_gini_tot
## 13884                                per_sa_sp_gini_urb
## 13885                               per_sa_sp_p0_ep_tot
## 13886                                  per_sa_sp_p0_rur
## 13887                                  per_sa_sp_p0_tot
## 13888                                  per_sa_sp_p0_urb
## 13889                               per_sa_sp_p1_ep_tot
## 13890                                  per_sa_sp_p1_rur
## 13891                                  per_sa_sp_p1_tot
## 13892                                  per_sa_sp_p1_urb
## 13893                     per_saonl.overlap_ep_preT_tot
## 13894                          per_saonl.overlap_ep_tot
## 13895                    per_saonl.overlap_pop_preT_tot
## 13896                         per_saonl.overlap_pop_rur
## 13897                         per_saonl.overlap_pop_tot
## 13898                         per_saonl.overlap_pop_urb
## 13899                     per_saonl.overlap_q1_preT_tot
## 13900                          per_saonl.overlap_q1_rur
## 13901                          per_saonl.overlap_q1_tot
## 13902                          per_saonl.overlap_q1_urb
## 13903                     per_saoth.overlap_ep_preT_tot
## 13904                          per_saoth.overlap_ep_tot
## 13905                    per_saoth.overlap_pop_preT_tot
## 13906                         per_saoth.overlap_pop_rur
## 13907                         per_saoth.overlap_pop_tot
## 13908                         per_saoth.overlap_pop_urb
## 13909                     per_saoth.overlap_q1_preT_tot
## 13910                          per_saoth.overlap_q1_rur
## 13911                          per_saoth.overlap_q1_tot
## 13912                          per_saoth.overlap_q1_urb
## 13913                      per_si_allsi.adq_ep_preT_tot
## 13914                           per_si_allsi.adq_ep_tot
## 13915                     per_si_allsi.adq_pop_preT_tot
## 13916                          per_si_allsi.adq_pop_rur
## 13917                          per_si_allsi.adq_pop_tot
## 13918                          per_si_allsi.adq_pop_urb
## 13919                      per_si_allsi.adq_q1_preT_tot
## 13920                           per_si_allsi.adq_q1_rur
## 13921                           per_si_allsi.adq_q1_tot
## 13922                           per_si_allsi.adq_q1_urb
## 13923                      per_si_allsi.adq_q2_preT_tot
## 13924                           per_si_allsi.adq_q2_rur
## 13925                           per_si_allsi.adq_q2_tot
## 13926                           per_si_allsi.adq_q2_urb
## 13927                      per_si_allsi.adq_q3_preT_tot
## 13928                           per_si_allsi.adq_q3_rur
## 13929                           per_si_allsi.adq_q3_tot
## 13930                           per_si_allsi.adq_q3_urb
## 13931                      per_si_allsi.adq_q4_preT_tot
## 13932                           per_si_allsi.adq_q4_rur
## 13933                           per_si_allsi.adq_q4_tot
## 13934                           per_si_allsi.adq_q4_urb
## 13935                      per_si_allsi.adq_q5_preT_tot
## 13936                           per_si_allsi.adq_q5_rur
## 13937                           per_si_allsi.adq_q5_tot
## 13938                           per_si_allsi.adq_q5_urb
## 13939                      per_si_allsi.avt_ep_preT_tot
## 13940                           per_si_allsi.avt_ep_tot
## 13941                     per_si_allsi.avt_pop_preT_tot
## 13942                          per_si_allsi.avt_pop_rur
## 13943                          per_si_allsi.avt_pop_tot
## 13944                          per_si_allsi.avt_pop_urb
## 13945                      per_si_allsi.avt_q1_preT_tot
## 13946                           per_si_allsi.avt_q1_rur
## 13947                           per_si_allsi.avt_q1_tot
## 13948                           per_si_allsi.avt_q1_urb
## 13949                      per_si_allsi.avt_q2_preT_tot
## 13950                           per_si_allsi.avt_q2_rur
## 13951                           per_si_allsi.avt_q2_tot
## 13952                           per_si_allsi.avt_q2_urb
## 13953                      per_si_allsi.avt_q3_preT_tot
## 13954                           per_si_allsi.avt_q3_rur
## 13955                           per_si_allsi.avt_q3_tot
## 13956                           per_si_allsi.avt_q3_urb
## 13957                      per_si_allsi.avt_q4_preT_tot
## 13958                           per_si_allsi.avt_q4_rur
## 13959                           per_si_allsi.avt_q4_tot
## 13960                           per_si_allsi.avt_q4_urb
## 13961                      per_si_allsi.avt_q5_preT_tot
## 13962                           per_si_allsi.avt_q5_rur
## 13963                           per_si_allsi.avt_q5_tot
## 13964                           per_si_allsi.avt_q5_urb
## 13965                      per_si_allsi.ben_ep_preT_tot
## 13966                           per_si_allsi.ben_ep_tot
## 13967                      per_si_allsi.ben_q1_preT_tot
## 13968                           per_si_allsi.ben_q1_rur
## 13969                           per_si_allsi.ben_q1_tot
## 13970                           per_si_allsi.ben_q1_urb
## 13971                      per_si_allsi.ben_q2_preT_tot
## 13972                           per_si_allsi.ben_q2_rur
## 13973                           per_si_allsi.ben_q2_tot
## 13974                           per_si_allsi.ben_q2_urb
## 13975                      per_si_allsi.ben_q3_preT_tot
## 13976                           per_si_allsi.ben_q3_rur
## 13977                           per_si_allsi.ben_q3_tot
## 13978                           per_si_allsi.ben_q3_urb
## 13979                      per_si_allsi.ben_q4_preT_tot
## 13980                           per_si_allsi.ben_q4_rur
## 13981                           per_si_allsi.ben_q4_tot
## 13982                           per_si_allsi.ben_q4_urb
## 13983                      per_si_allsi.ben_q5_preT_tot
## 13984                           per_si_allsi.ben_q5_rur
## 13985                           per_si_allsi.ben_q5_tot
## 13986                           per_si_allsi.ben_q5_urb
## 13987                      per_si_allsi.bry_ep_preT_tot
## 13988                           per_si_allsi.bry_ep_tot
## 13989                      per_si_allsi.bry_q1_preT_tot
## 13990                           per_si_allsi.bry_q1_rur
## 13991                           per_si_allsi.bry_q1_tot
## 13992                           per_si_allsi.bry_q1_urb
## 13993                      per_si_allsi.bry_q2_preT_tot
## 13994                           per_si_allsi.bry_q2_rur
## 13995                           per_si_allsi.bry_q2_tot
## 13996                           per_si_allsi.bry_q2_urb
## 13997                      per_si_allsi.bry_q3_preT_tot
## 13998                           per_si_allsi.bry_q3_rur
## 13999                           per_si_allsi.bry_q3_tot
## 14000                           per_si_allsi.bry_q3_urb
## 14001                      per_si_allsi.bry_q4_preT_tot
## 14002                           per_si_allsi.bry_q4_rur
## 14003                           per_si_allsi.bry_q4_tot
## 14004                           per_si_allsi.bry_q4_urb
## 14005                      per_si_allsi.bry_q5_preT_tot
## 14006                           per_si_allsi.bry_q5_rur
## 14007                           per_si_allsi.bry_q5_tot
## 14008                           per_si_allsi.bry_q5_urb
## 14009                      per_si_allsi.cba_ep_preT_tot
## 14010                           per_si_allsi.cba_ep_tot
## 14011                      per_si_allsi.cba_q1_preT_tot
## 14012                           per_si_allsi.cba_q1_rur
## 14013                           per_si_allsi.cba_q1_tot
## 14014                           per_si_allsi.cba_q1_urb
## 14015                      per_si_allsi.cov_ep_preT_tot
## 14016                           per_si_allsi.cov_ep_tot
## 14017                     per_si_allsi.cov_pop_preT_tot
## 14018                          per_si_allsi.cov_pop_rur
## 14019                          per_si_allsi.cov_pop_tot
## 14020                          per_si_allsi.cov_pop_urb
## 14021                      per_si_allsi.cov_q1_preT_tot
## 14022                           per_si_allsi.cov_q1_rur
## 14023                           per_si_allsi.cov_q1_tot
## 14024                           per_si_allsi.cov_q1_urb
## 14025                      per_si_allsi.cov_q2_preT_tot
## 14026                           per_si_allsi.cov_q2_rur
## 14027                           per_si_allsi.cov_q2_tot
## 14028                           per_si_allsi.cov_q2_urb
## 14029                      per_si_allsi.cov_q3_preT_tot
## 14030                           per_si_allsi.cov_q3_rur
## 14031                           per_si_allsi.cov_q3_tot
## 14032                           per_si_allsi.cov_q3_urb
## 14033                      per_si_allsi.cov_q4_preT_tot
## 14034                           per_si_allsi.cov_q4_rur
## 14035                           per_si_allsi.cov_q4_tot
## 14036                           per_si_allsi.cov_q4_urb
## 14037                      per_si_allsi.cov_q5_preT_tot
## 14038                           per_si_allsi.cov_q5_rur
## 14039                           per_si_allsi.cov_q5_tot
## 14040                           per_si_allsi.cov_q5_urb
## 14041                             per_si_allsi_gini_rur
## 14042                             per_si_allsi_gini_tot
## 14043                             per_si_allsi_gini_urb
## 14044                            per_si_allsi_p0_ep_tot
## 14045                               per_si_allsi_p0_rur
## 14046                               per_si_allsi_p0_tot
## 14047                               per_si_allsi_p0_urb
## 14048                            per_si_allsi_p1_ep_tot
## 14049                               per_si_allsi_p1_rur
## 14050                               per_si_allsi_p1_tot
## 14051                               per_si_allsi_p1_urb
## 14052                         per_si_cp.adq_ep_preT_tot
## 14053                              per_si_cp.adq_ep_tot
## 14054                        per_si_cp.adq_pop_preT_tot
## 14055                             per_si_cp.adq_pop_rur
## 14056                             per_si_cp.adq_pop_tot
## 14057                             per_si_cp.adq_pop_urb
## 14058                         per_si_cp.adq_q1_preT_tot
## 14059                              per_si_cp.adq_q1_rur
## 14060                              per_si_cp.adq_q1_tot
## 14061                              per_si_cp.adq_q1_urb
## 14062                         per_si_cp.adq_q2_preT_tot
## 14063                              per_si_cp.adq_q2_rur
## 14064                              per_si_cp.adq_q2_tot
## 14065                              per_si_cp.adq_q2_urb
## 14066                         per_si_cp.adq_q3_preT_tot
## 14067                              per_si_cp.adq_q3_rur
## 14068                              per_si_cp.adq_q3_tot
## 14069                              per_si_cp.adq_q3_urb
## 14070                         per_si_cp.adq_q4_preT_tot
## 14071                              per_si_cp.adq_q4_rur
## 14072                              per_si_cp.adq_q4_tot
## 14073                              per_si_cp.adq_q4_urb
## 14074                         per_si_cp.adq_q5_preT_tot
## 14075                              per_si_cp.adq_q5_rur
## 14076                              per_si_cp.adq_q5_tot
## 14077                              per_si_cp.adq_q5_urb
## 14078                         per_si_cp.avt_ep_preT_tot
## 14079                              per_si_cp.avt_ep_tot
## 14080                        per_si_cp.avt_pop_preT_tot
## 14081                             per_si_cp.avt_pop_rur
## 14082                             per_si_cp.avt_pop_tot
## 14083                             per_si_cp.avt_pop_urb
## 14084                         per_si_cp.avt_q1_preT_tot
## 14085                              per_si_cp.avt_q1_rur
## 14086                              per_si_cp.avt_q1_tot
## 14087                              per_si_cp.avt_q1_urb
## 14088                         per_si_cp.avt_q2_preT_tot
## 14089                              per_si_cp.avt_q2_rur
## 14090                              per_si_cp.avt_q2_tot
## 14091                              per_si_cp.avt_q2_urb
## 14092                         per_si_cp.avt_q3_preT_tot
## 14093                              per_si_cp.avt_q3_rur
## 14094                              per_si_cp.avt_q3_tot
## 14095                              per_si_cp.avt_q3_urb
## 14096                         per_si_cp.avt_q4_preT_tot
## 14097                              per_si_cp.avt_q4_rur
## 14098                              per_si_cp.avt_q4_tot
## 14099                              per_si_cp.avt_q4_urb
## 14100                         per_si_cp.avt_q5_preT_tot
## 14101                              per_si_cp.avt_q5_rur
## 14102                              per_si_cp.avt_q5_tot
## 14103                              per_si_cp.avt_q5_urb
## 14104                         per_si_cp.ben_ep_preT_tot
## 14105                              per_si_cp.ben_ep_tot
## 14106                         per_si_cp.ben_q1_preT_tot
## 14107                              per_si_cp.ben_q1_rur
## 14108                              per_si_cp.ben_q1_tot
## 14109                              per_si_cp.ben_q1_urb
## 14110                         per_si_cp.ben_q2_preT_tot
## 14111                              per_si_cp.ben_q2_rur
## 14112                              per_si_cp.ben_q2_tot
## 14113                              per_si_cp.ben_q2_urb
## 14114                         per_si_cp.ben_q3_preT_tot
## 14115                              per_si_cp.ben_q3_rur
## 14116                              per_si_cp.ben_q3_tot
## 14117                              per_si_cp.ben_q3_urb
## 14118                         per_si_cp.ben_q4_preT_tot
## 14119                              per_si_cp.ben_q4_rur
## 14120                              per_si_cp.ben_q4_tot
## 14121                              per_si_cp.ben_q4_urb
## 14122                         per_si_cp.ben_q5_preT_tot
## 14123                              per_si_cp.ben_q5_rur
## 14124                              per_si_cp.ben_q5_tot
## 14125                              per_si_cp.ben_q5_urb
## 14126                         per_si_cp.bry_ep_preT_tot
## 14127                              per_si_cp.bry_ep_tot
## 14128                         per_si_cp.bry_q1_preT_tot
## 14129                              per_si_cp.bry_q1_rur
## 14130                              per_si_cp.bry_q1_tot
## 14131                              per_si_cp.bry_q1_urb
## 14132                         per_si_cp.bry_q2_preT_tot
## 14133                              per_si_cp.bry_q2_rur
## 14134                              per_si_cp.bry_q2_tot
## 14135                              per_si_cp.bry_q2_urb
## 14136                         per_si_cp.bry_q3_preT_tot
## 14137                              per_si_cp.bry_q3_rur
## 14138                              per_si_cp.bry_q3_tot
## 14139                              per_si_cp.bry_q3_urb
## 14140                         per_si_cp.bry_q4_preT_tot
## 14141                              per_si_cp.bry_q4_rur
## 14142                              per_si_cp.bry_q4_tot
## 14143                              per_si_cp.bry_q4_urb
## 14144                         per_si_cp.bry_q5_preT_tot
## 14145                              per_si_cp.bry_q5_rur
## 14146                              per_si_cp.bry_q5_tot
## 14147                              per_si_cp.bry_q5_urb
## 14148                         per_si_cp.cba_ep_preT_tot
## 14149                              per_si_cp.cba_ep_tot
## 14150                         per_si_cp.cba_q1_preT_tot
## 14151                              per_si_cp.cba_q1_rur
## 14152                              per_si_cp.cba_q1_tot
## 14153                              per_si_cp.cba_q1_urb
## 14154                         per_si_cp.cov_ep_preT_tot
## 14155                              per_si_cp.cov_ep_tot
## 14156                        per_si_cp.cov_pop_preT_tot
## 14157                             per_si_cp.cov_pop_rur
## 14158                             per_si_cp.cov_pop_tot
## 14159                             per_si_cp.cov_pop_urb
## 14160                         per_si_cp.cov_q1_preT_tot
## 14161                              per_si_cp.cov_q1_rur
## 14162                              per_si_cp.cov_q1_tot
## 14163                              per_si_cp.cov_q1_urb
## 14164                         per_si_cp.cov_q2_preT_tot
## 14165                              per_si_cp.cov_q2_rur
## 14166                              per_si_cp.cov_q2_tot
## 14167                              per_si_cp.cov_q2_urb
## 14168                         per_si_cp.cov_q3_preT_tot
## 14169                              per_si_cp.cov_q3_rur
## 14170                              per_si_cp.cov_q3_tot
## 14171                              per_si_cp.cov_q3_urb
## 14172                         per_si_cp.cov_q4_preT_tot
## 14173                              per_si_cp.cov_q4_rur
## 14174                              per_si_cp.cov_q4_tot
## 14175                              per_si_cp.cov_q4_urb
## 14176                         per_si_cp.cov_q5_preT_tot
## 14177                              per_si_cp.cov_q5_rur
## 14178                              per_si_cp.cov_q5_tot
## 14179                              per_si_cp.cov_q5_urb
## 14180                                per_si_cp_gini_rur
## 14181                                per_si_cp_gini_tot
## 14182                                per_si_cp_gini_urb
## 14183                               per_si_cp_p0_ep_tot
## 14184                                  per_si_cp_p0_rur
## 14185                                  per_si_cp_p0_tot
## 14186                                  per_si_cp_p0_urb
## 14187                               per_si_cp_p1_ep_tot
## 14188                                  per_si_cp_p1_rur
## 14189                                  per_si_cp_p1_tot
## 14190                                  per_si_cp_p1_urb
## 14191                         per_si_ss.adq_ep_preT_tot
## 14192                              per_si_ss.adq_ep_tot
## 14193                        per_si_ss.adq_pop_preT_tot
## 14194                             per_si_ss.adq_pop_rur
## 14195                             per_si_ss.adq_pop_tot
## 14196                             per_si_ss.adq_pop_urb
## 14197                         per_si_ss.adq_q1_preT_tot
## 14198                              per_si_ss.adq_q1_rur
## 14199                              per_si_ss.adq_q1_tot
## 14200                              per_si_ss.adq_q1_urb
## 14201                         per_si_ss.adq_q2_preT_tot
## 14202                              per_si_ss.adq_q2_rur
## 14203                              per_si_ss.adq_q2_tot
## 14204                              per_si_ss.adq_q2_urb
## 14205                         per_si_ss.adq_q3_preT_tot
## 14206                              per_si_ss.adq_q3_rur
## 14207                              per_si_ss.adq_q3_tot
## 14208                              per_si_ss.adq_q3_urb
## 14209                         per_si_ss.adq_q4_preT_tot
## 14210                              per_si_ss.adq_q4_rur
## 14211                              per_si_ss.adq_q4_tot
## 14212                              per_si_ss.adq_q4_urb
## 14213                         per_si_ss.adq_q5_preT_tot
## 14214                              per_si_ss.adq_q5_rur
## 14215                              per_si_ss.adq_q5_tot
## 14216                              per_si_ss.adq_q5_urb
## 14217                         per_si_ss.avt_ep_preT_tot
## 14218                              per_si_ss.avt_ep_tot
## 14219                        per_si_ss.avt_pop_preT_tot
## 14220                             per_si_ss.avt_pop_rur
## 14221                             per_si_ss.avt_pop_tot
## 14222                             per_si_ss.avt_pop_urb
## 14223                         per_si_ss.avt_q1_preT_tot
## 14224                              per_si_ss.avt_q1_rur
## 14225                              per_si_ss.avt_q1_tot
## 14226                              per_si_ss.avt_q1_urb
## 14227                         per_si_ss.avt_q2_preT_tot
## 14228                              per_si_ss.avt_q2_rur
## 14229                              per_si_ss.avt_q2_tot
## 14230                              per_si_ss.avt_q2_urb
## 14231                         per_si_ss.avt_q3_preT_tot
## 14232                              per_si_ss.avt_q3_rur
## 14233                              per_si_ss.avt_q3_tot
## 14234                              per_si_ss.avt_q3_urb
## 14235                         per_si_ss.avt_q4_preT_tot
## 14236                              per_si_ss.avt_q4_rur
## 14237                              per_si_ss.avt_q4_tot
## 14238                              per_si_ss.avt_q4_urb
## 14239                         per_si_ss.avt_q5_preT_tot
## 14240                              per_si_ss.avt_q5_rur
## 14241                              per_si_ss.avt_q5_tot
## 14242                              per_si_ss.avt_q5_urb
## 14243                         per_si_ss.ben_ep_preT_tot
## 14244                              per_si_ss.ben_ep_tot
## 14245                         per_si_ss.ben_q1_preT_tot
## 14246                              per_si_ss.ben_q1_rur
## 14247                              per_si_ss.ben_q1_tot
## 14248                              per_si_ss.ben_q1_urb
## 14249                         per_si_ss.ben_q2_preT_tot
## 14250                              per_si_ss.ben_q2_rur
## 14251                              per_si_ss.ben_q2_tot
## 14252                              per_si_ss.ben_q2_urb
## 14253                         per_si_ss.ben_q3_preT_tot
## 14254                              per_si_ss.ben_q3_rur
## 14255                              per_si_ss.ben_q3_tot
## 14256                              per_si_ss.ben_q3_urb
## 14257                         per_si_ss.ben_q4_preT_tot
## 14258                              per_si_ss.ben_q4_rur
## 14259                              per_si_ss.ben_q4_tot
## 14260                              per_si_ss.ben_q4_urb
## 14261                         per_si_ss.ben_q5_preT_tot
## 14262                              per_si_ss.ben_q5_rur
## 14263                              per_si_ss.ben_q5_tot
## 14264                              per_si_ss.ben_q5_urb
## 14265                         per_si_ss.bry_ep_preT_tot
## 14266                              per_si_ss.bry_ep_tot
## 14267                         per_si_ss.bry_q1_preT_tot
## 14268                              per_si_ss.bry_q1_rur
## 14269                              per_si_ss.bry_q1_tot
## 14270                              per_si_ss.bry_q1_urb
## 14271                         per_si_ss.bry_q2_preT_tot
## 14272                              per_si_ss.bry_q2_rur
## 14273                              per_si_ss.bry_q2_tot
## 14274                              per_si_ss.bry_q2_urb
## 14275                         per_si_ss.bry_q3_preT_tot
## 14276                              per_si_ss.bry_q3_rur
## 14277                              per_si_ss.bry_q3_tot
## 14278                              per_si_ss.bry_q3_urb
## 14279                         per_si_ss.bry_q4_preT_tot
## 14280                              per_si_ss.bry_q4_rur
## 14281                              per_si_ss.bry_q4_tot
## 14282                              per_si_ss.bry_q4_urb
## 14283                         per_si_ss.bry_q5_preT_tot
## 14284                              per_si_ss.bry_q5_rur
## 14285                              per_si_ss.bry_q5_tot
## 14286                              per_si_ss.bry_q5_urb
## 14287                         per_si_ss.cba_ep_preT_tot
## 14288                              per_si_ss.cba_ep_tot
## 14289                         per_si_ss.cba_q1_preT_tot
## 14290                              per_si_ss.cba_q1_rur
## 14291                              per_si_ss.cba_q1_tot
## 14292                              per_si_ss.cba_q1_urb
## 14293                         per_si_ss.cov_ep_preT_tot
## 14294                              per_si_ss.cov_ep_tot
## 14295                        per_si_ss.cov_pop_preT_tot
## 14296                             per_si_ss.cov_pop_rur
## 14297                             per_si_ss.cov_pop_tot
## 14298                             per_si_ss.cov_pop_urb
## 14299                         per_si_ss.cov_q1_preT_tot
## 14300                              per_si_ss.cov_q1_rur
## 14301                              per_si_ss.cov_q1_tot
## 14302                              per_si_ss.cov_q1_urb
## 14303                         per_si_ss.cov_q2_preT_tot
## 14304                              per_si_ss.cov_q2_rur
## 14305                              per_si_ss.cov_q2_tot
## 14306                              per_si_ss.cov_q2_urb
## 14307                         per_si_ss.cov_q3_preT_tot
## 14308                              per_si_ss.cov_q3_rur
## 14309                              per_si_ss.cov_q3_tot
## 14310                              per_si_ss.cov_q3_urb
## 14311                         per_si_ss.cov_q4_preT_tot
## 14312                              per_si_ss.cov_q4_rur
## 14313                              per_si_ss.cov_q4_tot
## 14314                              per_si_ss.cov_q4_urb
## 14315                         per_si_ss.cov_q5_preT_tot
## 14316                              per_si_ss.cov_q5_rur
## 14317                              per_si_ss.cov_q5_tot
## 14318                              per_si_ss.cov_q5_urb
## 14319                                per_si_ss_gini_rur
## 14320                                per_si_ss_gini_tot
## 14321                                per_si_ss_gini_urb
## 14322                               per_si_ss_p0_ep_tot
## 14323                                  per_si_ss_p0_rur
## 14324                                  per_si_ss_p0_tot
## 14325                                  per_si_ss_p0_urb
## 14326                               per_si_ss_p1_ep_tot
## 14327                                  per_si_ss_p1_rur
## 14328                                  per_si_ss_p1_tot
## 14329                                  per_si_ss_p1_urb
## 14330                      per_silm.overlap_ep_preT_tot
## 14331                           per_silm.overlap_ep_tot
## 14332                     per_silm.overlap_pop_preT_tot
## 14333                          per_silm.overlap_pop_rur
## 14334                          per_silm.overlap_pop_tot
## 14335                          per_silm.overlap_pop_urb
## 14336                      per_silm.overlap_q1_preT_tot
## 14337                           per_silm.overlap_q1_rur
## 14338                           per_silm.overlap_q1_tot
## 14339                           per_silm.overlap_q1_urb
## 14340                     per_sionl.overlap_ep_preT_tot
## 14341                          per_sionl.overlap_ep_tot
## 14342                    per_sionl.overlap_pop_preT_tot
## 14343                         per_sionl.overlap_pop_rur
## 14344                         per_sionl.overlap_pop_tot
## 14345                         per_sionl.overlap_pop_urb
## 14346                     per_sionl.overlap_q1_preT_tot
## 14347                          per_sionl.overlap_q1_rur
## 14348                          per_sionl.overlap_q1_tot
## 14349                          per_sionl.overlap_q1_urb
## 14350                                              PI-1
## 14351                                             PI-10
## 14352                                             PI-11
## 14353                                           PI-11.1
## 14354                                           PI-11.2
## 14355                                           PI-11.3
## 14356                                             PI-12
## 14357                                           PI-12.1
## 14358                                           PI-12.2
## 14359                                           PI-12.3
## 14360                                           PI-12.4
## 14361                                             PI-13
## 14362                                           PI-13.1
## 14363                                           PI-13.2
## 14364                                           PI-13.3
## 14365                                             PI-14
## 14366                                           PI-14.1
## 14367                                           PI-14.2
## 14368                                           PI-14.3
## 14369                                             PI-15
## 14370                                           PI-15.1
## 14371                                           PI-15.2
## 14372                                           PI-15.3
## 14373                                             PI-16
## 14374                                           PI-16.1
## 14375                                           PI-16.2
## 14376                                           PI-16.3
## 14377                                             PI-17
## 14378                                           PI-17.1
## 14379                                           PI-17.2
## 14380                                           PI-17.3
## 14381                                             PI-18
## 14382                                           PI-18.1
## 14383                                           PI-18.2
## 14384                                           PI-18.3
## 14385                                           PI-18.4
## 14386                                             PI-19
## 14387                                           PI-19.1
## 14388                                           PI-19.2
## 14389                                           PI-19.3
## 14390                                           PI-19.4
## 14391                                           PI-19.5
## 14392                                           PI-19.6
## 14393                                           PI-19.7
## 14394                                              PI-2
## 14395                                            PI-2.1
## 14396                                            PI-2.2
## 14397                                             PI-20
## 14398                                           PI-20.1
## 14399                                           PI-20.2
## 14400                                           PI-20.3
## 14401                                             PI-21
## 14402                                           PI-21.1
## 14403                                           PI-21.2
## 14404                                           PI-21.3
## 14405                                             PI-22
## 14406                                           PI-22.1
## 14407                                           PI-22.2
## 14408                                             PI-23
## 14409                                             PI-24
## 14410                                           PI-24.1
## 14411                                           PI-24.2
## 14412                                           PI-24.3
## 14413                                             PI-25
## 14414                                           PI-25.1
## 14415                                           PI-25.2
## 14416                                           PI-25.3
## 14417                                             PI-26
## 14418                                           PI-26.1
## 14419                                           PI-26.2
## 14420                                           PI-26.3
## 14421                                             PI-27
## 14422                                           PI-27.1
## 14423                                           PI-27.2
## 14424                                           PI-27.3
## 14425                                           PI-27.4
## 14426                                             PI-28
## 14427                                           PI-28.1
## 14428                                           PI-28.2
## 14429                                           PI-28.3
## 14430                                              PI-3
## 14431                                              PI-4
## 14432                                            PI-4.1
## 14433                                            PI-4.2
## 14434                                              PI-5
## 14435                                              PI-6
## 14436                                              PI-7
## 14437                                            PI-7.1
## 14438                                            PI-7.2
## 14439                                              PI-8
## 14440                                            PI-8.1
## 14441                                            PI-8.2
## 14442                                            PI-8.3
## 14443                                              PI-9
## 14444                                            PI-9.1
## 14445                                            PI-9.2
## 14446                                 PRJ.ATT.1519.1.FE
## 14447                                 PRJ.ATT.1519.1.MA
## 14448                                 PRJ.ATT.1519.1.MF
## 14449                                 PRJ.ATT.1519.2.FE
## 14450                                 PRJ.ATT.1519.2.MA
## 14451                                 PRJ.ATT.1519.2.MF
## 14452                                 PRJ.ATT.1519.3.FE
## 14453                                 PRJ.ATT.1519.3.MA
## 14454                                 PRJ.ATT.1519.3.MF
## 14455                                 PRJ.ATT.1519.4.FE
## 14456                                 PRJ.ATT.1519.4.MA
## 14457                                 PRJ.ATT.1519.4.MF
## 14458                               PRJ.ATT.1519.NED.FE
## 14459                               PRJ.ATT.1519.NED.MA
## 14460                               PRJ.ATT.1519.NED.MF
## 14461                                PRJ.ATT.1519.S1.FE
## 14462                                PRJ.ATT.1519.S1.MA
## 14463                                PRJ.ATT.1519.S1.MF
## 14464                                 PRJ.ATT.15UP.1.FE
## 14465                                 PRJ.ATT.15UP.1.MA
## 14466                                 PRJ.ATT.15UP.1.MF
## 14467                                 PRJ.ATT.15UP.2.FE
## 14468                                 PRJ.ATT.15UP.2.MA
## 14469                                 PRJ.ATT.15UP.2.MF
## 14470                                 PRJ.ATT.15UP.3.FE
## 14471                                 PRJ.ATT.15UP.3.MA
## 14472                                 PRJ.ATT.15UP.3.MF
## 14473                                 PRJ.ATT.15UP.4.FE
## 14474                                 PRJ.ATT.15UP.4.MA
## 14475                                 PRJ.ATT.15UP.4.MF
## 14476                               PRJ.ATT.15UP.NED.FE
## 14477                               PRJ.ATT.15UP.NED.MA
## 14478                               PRJ.ATT.15UP.NED.MF
## 14479                                PRJ.ATT.15UP.S1.FE
## 14480                                PRJ.ATT.15UP.S1.MA
## 14481                                PRJ.ATT.15UP.S1.MF
## 14482                                 PRJ.ATT.2024.1.FE
## 14483                                 PRJ.ATT.2024.1.MA
## 14484                                 PRJ.ATT.2024.1.MF
## 14485                                 PRJ.ATT.2024.2.FE
## 14486                                 PRJ.ATT.2024.2.MA
## 14487                                 PRJ.ATT.2024.2.MF
## 14488                                 PRJ.ATT.2024.3.FE
## 14489                                 PRJ.ATT.2024.3.MA
## 14490                                 PRJ.ATT.2024.3.MF
## 14491                                 PRJ.ATT.2024.4.FE
## 14492                                 PRJ.ATT.2024.4.MA
## 14493                                 PRJ.ATT.2024.4.MF
## 14494                               PRJ.ATT.2024.NED.FE
## 14495                               PRJ.ATT.2024.NED.MA
## 14496                               PRJ.ATT.2024.NED.MF
## 14497                                PRJ.ATT.2024.S1.FE
## 14498                                PRJ.ATT.2024.S1.MA
## 14499                                PRJ.ATT.2024.S1.MF
## 14500                                 PRJ.ATT.2039.1.FE
## 14501                                 PRJ.ATT.2039.1.MA
## 14502                                 PRJ.ATT.2039.1.MF
## 14503                                 PRJ.ATT.2039.2.FE
## 14504                                 PRJ.ATT.2039.2.MA
## 14505                                 PRJ.ATT.2039.2.MF
## 14506                                 PRJ.ATT.2039.3.FE
## 14507                                 PRJ.ATT.2039.3.MA
## 14508                                 PRJ.ATT.2039.3.MF
## 14509                                 PRJ.ATT.2039.4.FE
## 14510                                 PRJ.ATT.2039.4.MA
## 14511                                 PRJ.ATT.2039.4.MF
## 14512                               PRJ.ATT.2039.NED.FE
## 14513                               PRJ.ATT.2039.NED.MA
## 14514                               PRJ.ATT.2039.NED.MF
## 14515                                PRJ.ATT.2039.S1.FE
## 14516                                PRJ.ATT.2039.S1.MA
## 14517                                PRJ.ATT.2039.S1.MF
## 14518                                 PRJ.ATT.2064.1.FE
## 14519                                 PRJ.ATT.2064.1.MA
## 14520                                 PRJ.ATT.2064.1.MF
## 14521                                 PRJ.ATT.2064.2.FE
## 14522                                 PRJ.ATT.2064.2.MA
## 14523                                 PRJ.ATT.2064.2.MF
## 14524                                 PRJ.ATT.2064.3.FE
## 14525                                 PRJ.ATT.2064.3.MA
## 14526                                 PRJ.ATT.2064.3.MF
## 14527                                 PRJ.ATT.2064.4.FE
## 14528                                 PRJ.ATT.2064.4.MA
## 14529                                 PRJ.ATT.2064.4.MF
## 14530                               PRJ.ATT.2064.NED.FE
## 14531                               PRJ.ATT.2064.NED.MA
## 14532                               PRJ.ATT.2064.NED.MF
## 14533                                PRJ.ATT.2064.S1.FE
## 14534                                PRJ.ATT.2064.S1.MA
## 14535                                PRJ.ATT.2064.S1.MF
## 14536                                 PRJ.ATT.2529.1.FE
## 14537                                 PRJ.ATT.2529.1.MA
## 14538                                 PRJ.ATT.2529.1.MF
## 14539                                 PRJ.ATT.2529.2.FE
## 14540                                 PRJ.ATT.2529.2.MA
## 14541                                 PRJ.ATT.2529.2.MF
## 14542                                 PRJ.ATT.2529.3.FE
## 14543                                 PRJ.ATT.2529.3.MA
## 14544                                 PRJ.ATT.2529.3.MF
## 14545                                 PRJ.ATT.2529.4.FE
## 14546                                 PRJ.ATT.2529.4.MA
## 14547                                 PRJ.ATT.2529.4.MF
## 14548                               PRJ.ATT.2529.NED.FE
## 14549                               PRJ.ATT.2529.NED.MA
## 14550                               PRJ.ATT.2529.NED.MF
## 14551                                PRJ.ATT.2529.S1.FE
## 14552                                PRJ.ATT.2529.S1.MA
## 14553                                PRJ.ATT.2529.S1.MF
## 14554                                 PRJ.ATT.25UP.1.FE
## 14555                                 PRJ.ATT.25UP.1.MA
## 14556                                 PRJ.ATT.25UP.1.MF
## 14557                                 PRJ.ATT.25UP.2.FE
## 14558                                 PRJ.ATT.25UP.2.MA
## 14559                                 PRJ.ATT.25UP.2.MF
## 14560                                 PRJ.ATT.25UP.3.FE
## 14561                                 PRJ.ATT.25UP.3.MA
## 14562                                 PRJ.ATT.25UP.3.MF
## 14563                                 PRJ.ATT.25UP.4.FE
## 14564                                 PRJ.ATT.25UP.4.MA
## 14565                                 PRJ.ATT.25UP.4.MF
## 14566                               PRJ.ATT.25UP.NED.FE
## 14567                               PRJ.ATT.25UP.NED.MA
## 14568                               PRJ.ATT.25UP.NED.MF
## 14569                                PRJ.ATT.25UP.S1.FE
## 14570                                PRJ.ATT.25UP.S1.MA
## 14571                                PRJ.ATT.25UP.S1.MF
## 14572                                 PRJ.ATT.4064.1.FE
## 14573                                 PRJ.ATT.4064.1.MA
## 14574                                 PRJ.ATT.4064.1.MF
## 14575                                 PRJ.ATT.4064.2.FE
## 14576                                 PRJ.ATT.4064.2.MA
## 14577                                 PRJ.ATT.4064.2.MF
## 14578                                 PRJ.ATT.4064.3.FE
## 14579                                 PRJ.ATT.4064.3.MA
## 14580                                 PRJ.ATT.4064.3.MF
## 14581                                 PRJ.ATT.4064.4.FE
## 14582                                 PRJ.ATT.4064.4.MA
## 14583                                 PRJ.ATT.4064.4.MF
## 14584                               PRJ.ATT.4064.NED.FE
## 14585                               PRJ.ATT.4064.NED.MA
## 14586                               PRJ.ATT.4064.NED.MF
## 14587                                PRJ.ATT.4064.S1.FE
## 14588                                PRJ.ATT.4064.S1.MA
## 14589                                PRJ.ATT.4064.S1.MF
## 14590                                 PRJ.ATT.60UP.1.FE
## 14591                                 PRJ.ATT.60UP.1.MA
## 14592                                 PRJ.ATT.60UP.1.MF
## 14593                                 PRJ.ATT.60UP.2.FE
## 14594                                 PRJ.ATT.60UP.2.MA
## 14595                                 PRJ.ATT.60UP.2.MF
## 14596                                 PRJ.ATT.60UP.3.FE
## 14597                                 PRJ.ATT.60UP.3.MA
## 14598                                 PRJ.ATT.60UP.3.MF
## 14599                                 PRJ.ATT.60UP.4.FE
## 14600                                 PRJ.ATT.60UP.4.MA
## 14601                                 PRJ.ATT.60UP.4.MF
## 14602                               PRJ.ATT.60UP.NED.FE
## 14603                               PRJ.ATT.60UP.NED.MA
## 14604                               PRJ.ATT.60UP.NED.MF
## 14605                                PRJ.ATT.60UP.S1.FE
## 14606                                PRJ.ATT.60UP.S1.MA
## 14607                                PRJ.ATT.60UP.S1.MF
## 14608                                 PRJ.ATT.80UP.1.FE
## 14609                                 PRJ.ATT.80UP.1.MA
## 14610                                 PRJ.ATT.80UP.1.MF
## 14611                                 PRJ.ATT.80UP.2.FE
## 14612                                 PRJ.ATT.80UP.2.MA
## 14613                                 PRJ.ATT.80UP.2.MF
## 14614                                 PRJ.ATT.80UP.3.FE
## 14615                                 PRJ.ATT.80UP.3.MA
## 14616                                 PRJ.ATT.80UP.3.MF
## 14617                                 PRJ.ATT.80UP.4.FE
## 14618                                 PRJ.ATT.80UP.4.MA
## 14619                                 PRJ.ATT.80UP.4.MF
## 14620                               PRJ.ATT.80UP.NED.FE
## 14621                               PRJ.ATT.80UP.NED.MA
## 14622                               PRJ.ATT.80UP.NED.MF
## 14623                                PRJ.ATT.80UP.S1.FE
## 14624                                PRJ.ATT.80UP.S1.MA
## 14625                                PRJ.ATT.80UP.S1.MF
## 14626                                  PRJ.ATT.ALL.1.FE
## 14627                                  PRJ.ATT.ALL.1.MA
## 14628                                  PRJ.ATT.ALL.1.MF
## 14629                                  PRJ.ATT.ALL.2.FE
## 14630                                  PRJ.ATT.ALL.2.MA
## 14631                                  PRJ.ATT.ALL.2.MF
## 14632                                  PRJ.ATT.ALL.3.FE
## 14633                                  PRJ.ATT.ALL.3.MA
## 14634                                  PRJ.ATT.ALL.3.MF
## 14635                                  PRJ.ATT.ALL.4.FE
## 14636                                  PRJ.ATT.ALL.4.MA
## 14637                                  PRJ.ATT.ALL.4.MF
## 14638                                PRJ.ATT.ALL.NED.FE
## 14639                                PRJ.ATT.ALL.NED.MA
## 14640                                PRJ.ATT.ALL.NED.MF
## 14641                                 PRJ.ATT.ALL.S1.FE
## 14642                                 PRJ.ATT.ALL.S1.MA
## 14643                                 PRJ.ATT.ALL.S1.MF
## 14644                                   PRJ.MYS.0T19.FE
## 14645                                   PRJ.MYS.0T19.MA
## 14646                                   PRJ.MYS.0T19.MF
## 14647                                   PRJ.MYS.1519.FE
## 14648                                   PRJ.MYS.1519.MA
## 14649                                   PRJ.MYS.1519.MF
## 14650                                   PRJ.MYS.15UP.FE
## 14651                                  PRJ.MYS.15UP.GPI
## 14652                                   PRJ.MYS.15UP.MA
## 14653                                   PRJ.MYS.15UP.MF
## 14654                                   PRJ.MYS.2024.FE
## 14655                                   PRJ.MYS.2024.MA
## 14656                                   PRJ.MYS.2024.MF
## 14657                                   PRJ.MYS.2039.FE
## 14658                                   PRJ.MYS.2039.MA
## 14659                                   PRJ.MYS.2039.MF
## 14660                                   PRJ.MYS.2064.FE
## 14661                                   PRJ.MYS.2064.MA
## 14662                                   PRJ.MYS.2064.MF
## 14663                                   PRJ.MYS.2529.FE
## 14664                                   PRJ.MYS.2529.MA
## 14665                                   PRJ.MYS.2529.MF
## 14666                                   PRJ.MYS.25UP.FE
## 14667                                  PRJ.MYS.25UP.GPI
## 14668                                   PRJ.MYS.25UP.MA
## 14669                                   PRJ.MYS.25UP.MF
## 14670                                   PRJ.MYS.4064.FE
## 14671                                   PRJ.MYS.4064.MA
## 14672                                   PRJ.MYS.4064.MF
## 14673                                   PRJ.MYS.60UP.FE
## 14674                                   PRJ.MYS.60UP.MA
## 14675                                   PRJ.MYS.60UP.MF
## 14676                                   PRJ.MYS.65UP.FE
## 14677                                   PRJ.MYS.65UP.MA
## 14678                                   PRJ.MYS.65UP.MF
## 14679                                   PRJ.MYS.80UP.FE
## 14680                                   PRJ.MYS.80UP.MA
## 14681                                   PRJ.MYS.80UP.MF
## 14682                                 PRJ.POP.1519.1.FE
## 14683                                 PRJ.POP.1519.1.MA
## 14684                                 PRJ.POP.1519.1.MF
## 14685                                 PRJ.POP.1519.2.FE
## 14686                                 PRJ.POP.1519.2.MA
## 14687                                 PRJ.POP.1519.2.MF
## 14688                                 PRJ.POP.1519.3.FE
## 14689                                 PRJ.POP.1519.3.MA
## 14690                                 PRJ.POP.1519.3.MF
## 14691                                 PRJ.POP.1519.4.FE
## 14692                                 PRJ.POP.1519.4.MA
## 14693                                 PRJ.POP.1519.4.MF
## 14694                               PRJ.POP.1519.NED.FE
## 14695                               PRJ.POP.1519.NED.MA
## 14696                               PRJ.POP.1519.NED.MF
## 14697                                PRJ.POP.1519.S1.FE
## 14698                                PRJ.POP.1519.S1.MA
## 14699                                PRJ.POP.1519.S1.MF
## 14700                                 PRJ.POP.2024.1.FE
## 14701                                 PRJ.POP.2024.1.MA
## 14702                                 PRJ.POP.2024.1.MF
## 14703                                 PRJ.POP.2024.2.FE
## 14704                                 PRJ.POP.2024.2.MA
## 14705                                 PRJ.POP.2024.2.MF
## 14706                                 PRJ.POP.2024.3.FE
## 14707                                 PRJ.POP.2024.3.MA
## 14708                                 PRJ.POP.2024.3.MF
## 14709                                 PRJ.POP.2024.4.FE
## 14710                                 PRJ.POP.2024.4.MA
## 14711                                 PRJ.POP.2024.4.MF
## 14712                               PRJ.POP.2024.NED.FE
## 14713                               PRJ.POP.2024.NED.MA
## 14714                               PRJ.POP.2024.NED.MF
## 14715                                PRJ.POP.2024.S1.FE
## 14716                                PRJ.POP.2024.S1.MA
## 14717                                PRJ.POP.2024.S1.MF
## 14718                                 PRJ.POP.2529.1.FE
## 14719                                 PRJ.POP.2529.1.MA
## 14720                                 PRJ.POP.2529.1.MF
## 14721                                 PRJ.POP.2529.2.FE
## 14722                                 PRJ.POP.2529.2.MA
## 14723                                 PRJ.POP.2529.2.MF
## 14724                                 PRJ.POP.2529.3.FE
## 14725                                 PRJ.POP.2529.3.MA
## 14726                                 PRJ.POP.2529.3.MF
## 14727                                 PRJ.POP.2529.4.FE
## 14728                                 PRJ.POP.2529.4.MA
## 14729                                 PRJ.POP.2529.4.MF
## 14730                               PRJ.POP.2529.NED.FE
## 14731                               PRJ.POP.2529.NED.MA
## 14732                               PRJ.POP.2529.NED.MF
## 14733                                PRJ.POP.2529.S1.FE
## 14734                                PRJ.POP.2529.S1.MA
## 14735                                PRJ.POP.2529.S1.MF
## 14736                                  PRJ.POP.ALL.1.FE
## 14737                                  PRJ.POP.ALL.1.MA
## 14738                                  PRJ.POP.ALL.1.MF
## 14739                                  PRJ.POP.ALL.2.FE
## 14740                                  PRJ.POP.ALL.2.MA
## 14741                                  PRJ.POP.ALL.2.MF
## 14742                                  PRJ.POP.ALL.3.FE
## 14743                                  PRJ.POP.ALL.3.MA
## 14744                                  PRJ.POP.ALL.3.MF
## 14745                                  PRJ.POP.ALL.4.FE
## 14746                                  PRJ.POP.ALL.4.MA
## 14747                                  PRJ.POP.ALL.4.MF
## 14748                                PRJ.POP.ALL.NED.FE
## 14749                                PRJ.POP.ALL.NED.MA
## 14750                                PRJ.POP.ALL.NED.MF
## 14751                                 PRJ.POP.ALL.S1.FE
## 14752                                 PRJ.POP.ALL.S1.MA
## 14753                                 PRJ.POP.ALL.S1.MF
## 14754                        PROT.MINOR.INV.DFRN.DB0614
## 14755                        PROT.MINOR.INV.DFRN.DB1519
## 14756       PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB0614
## 14757       PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB1519
## 14758       PROT.MINOR.INV.EASE.SSI.XD.0010.DB0614.DFRN
## 14759       PROT.MINOR.INV.EASE.SSI.XD.0010.DB1519.DFRN
## 14760                PROT.MINOR.INV.EXT.BUS.DISC.010.XD
## 14761      PROT.MINOR.INV.EXT.CONFL.INTER.XD.010.DB1519
## 14762      PROT.MINOR.INV.EXT.CORP.TRANP.XD.0010.DB1519
## 14763  PROT.MINOR.INV.EXT.CORP.TRANS.XD.010.DB1519.DFRN
## 14764            PROT.MINOR.INV.EXT.DIR.LBL.010.XD.DFRN
## 14765               PROT.MINOR.INV.EXT.DISC.010.XD.DFRN
## 14766       PROT.MINOR.INV.EXT.OWNR.CONT.XD.0100.DB1519
## 14767         PROT.MINOR.INV.EXT.OWNR.CONTL.010.XD.DFRN
## 14768        PROT.MINOR.INV.EXT.SHARE.GOV.XD.010.DB1519
## 14769        PROT.MINOR.INV.EXT.SHARE.RTS.XD.010.DB1519
## 14770 PROT.MINOR.INV.EXT.SHRHLD.RGT.XD.0010.DB1519.DRFN
## 14771         PROT.MINOR.INV.IC.PRIN.EXT.DIR.LGL.010.XD
## 14772                   PROT.MINOR.INV.IC.PRIN.MINOR.RK
## 14773      PROT.MINOR.INV.STRENG.INV.PROT.XD.010.DB0614
## 14774  PROT.MINOR.INV.STRENG.MIN.INV.PROT.XD.010.DB0614
## 14775                                 PRT.PDCL.IND1.IDX
## 14776                           PRT.PDCL.IND10A.ALLD.ZS
## 14777                           PRT.PDCL.IND10B.ALLD.ZS
## 14778                                PRT.PDCL.IND11.IDX
## 14779                                PRT.PDCL.IND12.IDX
## 14780                                PRT.PDCL.IND2A.IDX
## 14781                                PRT.PDCL.IND2B.IDX
## 14782                             PRT.PDCL.IND3.ALLD.ZS
## 14783                             PRT.PDCL.IND4.ALLD.ZS
## 14784                            PRT.PDCL.IND5A.ALLD.ZS
## 14785                            PRT.PDCL.IND5B.ALLD.ZS
## 14786                            PRT.PDCL.IND6.ALLD.NUM
## 14787                             PRT.PDCL.IND7.ALLD.ZS
## 14788                             PRT.PDCL.IND8.ALLD.ZS
## 14789                             PRT.PDCL.IND9.ALLD.ZS
## 14790                                            PV.EST
## 14791                                         PV.NO.SRC
## 14792                                        PV.PER.RNK
## 14793                                  PV.PER.RNK.LOWER
## 14794                                  PV.PER.RNK.UPPER
## 14795                                        PV.STD.ERR
## 14796                                       PX.MUV.TOTL
## 14797                                    PX.MUV.TOTL.XU
## 14798                                       PX.REC.REER
## 14799                                       PX.REX.REER
## 14800          Q.1C0.1C0.C.9A.ALL.PITT.1.ALL.MV.TO1.ALL
## 14801          Q.1C0.1C0.C.9A.MOA.RXGT.1.ALL.MV.TO1.ALL
## 14802          Q.1C0.1C0.C.9B.IFI.LMIM.1.ALL.NV.SDR.MOA
## 14803          Q.1C0.1C0.C.9B.IFI.LMIM.1.STR.NV.SDR.MOA
## 14804          Q.1C0.1C0.C.9B.IFI.SDAL.1.ALL.MV.SDR.MOA
## 14805          Q.1C0.1C0.C.9E.ALL.DSTT.1.ALL.MV.TO1.ALL
## 14806          Q.1C0.1C0.C.9E.ALL.DSTT.1.STO.MV.TO1.ALL
## 14807          Q.1C0.1C0.D.9B.MOA.SDHO.1.ALL.MV.SDR.IFI
## 14808          Q.1E0.1E0.C.9B.IFI.LMOI.1.ALL.NV.TO1.ALL
## 14809          Q.1E0.1E0.C.9B.IFI.LMTT.1.ALL.NV.TO1.ALL
## 14810          Q.5A0.5A0.C.9C.GGO.LOBA.1.ALL.NV.TO1.ALL
## 14811          Q.5A0.5A0.C.9C.GGO.LOBN.1.ALL.NV.TO1.ALL
## 14812          Q.5A0.5A0.C.9C.GGO.LOBT.1.ALL.NV.TO1.ALL
## 14813          Q.5B0.5B0.C.5A.BKC.ASTT.1.ALL.MX.TO1.ALL
## 14814          Q.5B0.5B0.C.5A.BKC.ASTT.1.STR.MX.TO1.ALL
## 14815          Q.5B0.5B0.C.5A.BKL.ASTT.1.ALL.MX.TO1.ALL
## 14816          Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.ALL
## 14817          Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.NBK
## 14818          Q.5B0.5B0.D.5A.ALL.DFXB.1.ALL.NV.TO1.BMA
## 14819          Q.5B0.5B0.D.5A.NBK.DFXB.1.ALL.NV.TO1.BMA
## 14820          Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.ALL
## 14821          Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.NBK
## 14822          Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.ALL
## 14823          Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.NBK
## 14824          Q.6T0.5B0.C.3P.GGO.PCNO.1.ALL.NV.TO1.GGO
## 14825          Q.6T0.5B0.C.3P.GGO.PCOD.1.ALL.NV.TO1.GGO
## 14826          Q.8A0.5B0.C.5A.ALL.IECE.1.ALL.MX.TO1.ALL
## 14827          Q.8A0.5B0.C.5A.ALL.IECE.1.STR.MX.TO1.ALL
## 14828                                      RAW.5.1.DILG
## 14829                                      RAW.5.3.DISK
## 14830                                      RAW.5.4.DIPN
## 14831                                      RAW.5.5.DIFI
## 14832                                     RAW.D2.1.IDDS
## 14833                         RAW.D2.2.Download.options
## 14834                         RAW.D2.2.Machine.readable
## 14835                       RAW.D2.2.Metadata.available
## 14836                          RAW.D2.2.Non.proprietary
## 14837                        RAW.D2.2.Openness.subscore
## 14838                             RAW.D2.2.Terms.of.use
## 14839                                     RAW.D2.4.NADA
## 14840                                RAW.D2.4.NADA_text
## 14841                            RAW.D4.1.1.POPU.CENSUS
## 14842                            RAW.D4.1.2.AGRI.CENSUS
## 14843                            RAW.D4.1.3.BIZZ.CENSUS
## 14844                           RAW.D4.1.4.HOUS.SURVEYS
## 14845                           RAW.D4.1.5.AGRI.SURVEYS
## 14846                           RAW.D4.1.6.LABR.SURVEYS
## 14847                           RAW.D4.1.7.HLTH.SURVEYS
## 14848                           RAW.D4.1.8.BIZZ.SURVEYS
## 14849                                    RAW.D4.2.1.SPL
## 14850                                RAW.D4.2.2.EDU.NAS
## 14851                                RAW.D4.2.2.EDU.OOS
## 14852                               RAW.D4.2.2.EDU.ORGL
## 14853                                   RAW.D4.2.3.CRVS
## 14854                             RAW.D4.2.4.LBR.EMPOFF
## 14855                             RAW.D4.2.4.LBR.EMPORG
## 14856                               RAW.D4.2.4.LBR.INSP
## 14857                              RAW.D4.2.4.LBR.INSUR
## 14858                              RAW.D4.2.4.LBR.OTHER
## 14859                             RAW.D4.2.4.LBR.WRKORG
## 14860                      RAW.D4.3.GEO.1st.admin.level
## 14861                      RAW.D4.3.GEO.2nd.admin.level
## 14862                                   RAW.D5.2.1.SNAU
## 14863                                  RAW.D5.2.10.GSBP
## 14864                                   RAW.D5.2.2.NABY
## 14865                                   RAW.D5.2.3.CNIN
## 14866                                  RAW.D5.2.4.CPIBY
## 14867                                   RAW.D5.2.5.HOUS
## 14868                                   RAW.D5.2.6.EMPL
## 14869                                   RAW.D5.2.7.CGOV
## 14870                                   RAW.D5.2.8.FINA
## 14871                                   RAW.D5.2.9.MONY
## 14872                                              REER
## 14873                                      RES.DPST.CBK
## 14874                       RESLV.ISV.COPR.03.XD.DB1519
## 14875                                 RESLV.ISV.COST.ZS
## 14876                        RESLV.ISV.CPI.04.XD.DB1519
## 14877                             RESLV.ISV.DB0414.DFRN
## 14878                             RESLV.ISV.DB1519.DFRN
## 14879                            RESLV.ISV.DFRN.RCOV.RT
## 14880                                 RESLV.ISV.DURS.YR
## 14881                          RESLV.ISV.MGDA.XD.DB1519
## 14882                                    RESLV.ISV.OTCM
## 14883                                 RESLV.ISV.RCOV.RT
## 14884                 RESLV.ISV.RCOV.RT.016.DB1519.DFRN
## 14885                                 RESLV.ISV.RK.DB19
## 14886                       RESLV.ISV.ROPC.03.XD.DB1519
## 14887                          RESLV.ISV.SOIF.06.DB1519
## 14888                                        RETSALESSA
## 14889                                        REV.DAK.CR
## 14890                                        REV.DAU.CR
## 14891                                   REV.NRRV.SHR.CR
## 14892                                       REV.OSRV.CR
## 14893                                       REV.OTHR.CR
## 14894                                     REV.RV.SHR.CR
## 14895                                       REV.TOTL.CR
## 14896                                   REV.TXRV.SHR.CR
## 14897                                            RL.EST
## 14898                                         RL.NO.SRC
## 14899                                        RL.PER.RNK
## 14900                                  RL.PER.RNK.LOWER
## 14901                                  RL.PER.RNK.UPPER
## 14902                                        RL.STD.ERR
## 14903                                  ROD.DIST.ASPH.KM
## 14904                               ROD.DIST.BDMG.BM.KM
## 14905                                  ROD.DIST.BDMG.KM
## 14906                                  ROD.DIST.DIRT.KM
## 14907                               ROD.DIST.FAIR.BM.KM
## 14908                                  ROD.DIST.FAIR.KM
## 14909                               ROD.DIST.GOOD.BM.KM
## 14910                                  ROD.DIST.GOOD.KM
## 14911                                 ROD.DIST.GRAVL.KM
## 14912                               ROD.DIST.LDMG.BM.KM
## 14913                                  ROD.DIST.LDMG.KM
## 14914                                  ROD.DIST.OTHR.KM
## 14915                                  ROD.NATL.ASPH.KM
## 14916                                  ROD.NATL.BDMG.KM
## 14917                                  ROD.NATL.DIRT.KM
## 14918                                  ROD.NATL.FAIR.KM
## 14919                                  ROD.NATL.GOOD.KM
## 14920                                 ROD.NATL.GRAVL.KM
## 14921                                  ROD.NATL.LDMG.KM
## 14922                                  ROD.NATL.OTHR.KM
## 14923                                  ROD.PROV.ASPH.KM
## 14924                                  ROD.PROV.BDMG.KM
## 14925                                  ROD.PROV.DIRT.KM
## 14926                                  ROD.PROV.FAIR.KM
## 14927                                  ROD.PROV.GOOD.KM
## 14928                                 ROD.PROV.GRAVL.KM
## 14929                                  ROD.PROV.LDMG.KM
## 14930                                  ROD.PROV.OTHR.KM
## 14931                                  ROD.VILG.ASPH.ZS
## 14932                                  ROD.VILG.DIRT.ZS
## 14933                                 ROD.VILG.GRAVL.ZS
## 14934                                  ROD.VILG.OTHR.ZS
## 14935                                            RQ.EST
## 14936                                         RQ.NO.SRC
## 14937                                        RQ.PER.RNK
## 14938                                  RQ.PER.RNK.LOWER
## 14939                                  RQ.PER.RNK.UPPER
## 14940                                        RQ.STD.ERR
## 14941                                        s_loans_A1
## 14942                           s_policyholders_B2_life
## 14943                        s_policyholders_B2_nonlife
## 14944                                  SABER.EMIS.GOAL1
## 14945                             SABER.EMIS.GOAL1.LVL1
## 14946                             SABER.EMIS.GOAL1.LVL2
## 14947                             SABER.EMIS.GOAL1.LVL3
## 14948                             SABER.EMIS.GOAL1.LVL4
## 14949                             SABER.EMIS.GOAL1.LVL5
## 14950                             SABER.EMIS.GOAL1.LVL6
## 14951                                  SABER.EMIS.GOAL2
## 14952                             SABER.EMIS.GOAL2.LVL1
## 14953                             SABER.EMIS.GOAL2.LVL2
## 14954                             SABER.EMIS.GOAL2.LVL3
## 14955                             SABER.EMIS.GOAL2.LVL4
## 14956                             SABER.EMIS.GOAL2.LVL5
## 14957                                  SABER.EMIS.GOAL3
## 14958                             SABER.EMIS.GOAL3.LVL1
## 14959                             SABER.EMIS.GOAL3.LVL2
## 14960                             SABER.EMIS.GOAL3.LVL3
## 14961                             SABER.EMIS.GOAL3.LVL4
## 14962                                  SABER.EMIS.GOAL4
## 14963                             SABER.EMIS.GOAL4.LVL1
## 14964                             SABER.EMIS.GOAL4.LVL2
## 14965                             SABER.EMIS.GOAL4.LVL3
## 14966                             SABER.EMIS.GOAL4.LVL4
## 14967                              SABER.ERL.CHLD.GOAL1
## 14968                         SABER.ERL.CHLD.GOAL1.LVL1
## 14969                         SABER.ERL.CHLD.GOAL1.LVL2
## 14970                         SABER.ERL.CHLD.GOAL1.LVL3
## 14971                              SABER.ERL.CHLD.GOAL2
## 14972                         SABER.ERL.CHLD.GOAL2.LVL1
## 14973                         SABER.ERL.CHLD.GOAL2.LVL2
## 14974                         SABER.ERL.CHLD.GOAL2.LVL3
## 14975                              SABER.ERL.CHLD.GOAL3
## 14976                         SABER.ERL.CHLD.GOAL3.LVL1
## 14977                         SABER.ERL.CHLD.GOAL3.LVL2
## 14978                         SABER.ERL.CHLD.GOAL3.LVL3
## 14979                                  SABER.GRVT.GOAL5
## 14980                             SABER.GRVT.GOAL5.LVL1
## 14981                             SABER.GRVT.GOAL5.LVL2
## 14982                             SABER.GRVT.GOAL5.LVL3
## 14983                             SABER.GRVT.GOAL5.LVL4
## 14984                             SABER.GRVT.GOAL5.LVL5
## 14985                             SABER.GRVT.GOAL5.LVL6
## 14986                             SABER.GRVT.GOAL5.LVL7
## 14987                                  SABER.GRVT.GOAL6
## 14988                             SABER.GRVT.GOAL6.LVL1
## 14989                             SABER.GRVT.GOAL6.LVL2
## 14990                             SABER.GRVT.GOAL6.LVL3
## 14991                             SABER.GRVT.GOAL6.LVL4
## 14992                             SABER.GRVT.GOAL6.LVL5
## 14993                             SABER.GRVT.GOAL6.LVL6
## 14994                                  SABER.GRVT.GOAL7
## 14995                             SABER.GRVT.GOAL7.LVL1
## 14996                             SABER.GRVT.GOAL7.LVL2
## 14997                             SABER.GRVT.GOAL7.LVL3
## 14998                             SABER.GRVT.GOAL7.LVL4
## 14999                                  SABER.GRVT.GOAL8
## 15000                             SABER.GRVT.GOAL8.LVL1
## 15001                             SABER.GRVT.GOAL8.LVL2
## 15002                             SABER.GRVT.GOAL8.LVL3
## 15003                             SABER.GRVT.GOAL8.LVL4
## 15004                             SABER.GRVT.GOAL8.LVL5
## 15005                             SABER.GRVT.GOAL8.LVL6
## 15006                             SABER.GRVT.GOAL8.LVL7
## 15007                                  SABER.HLTH.GOAL1
## 15008                                  SABER.HLTH.GOAL2
## 15009                                  SABER.HLTH.GOAL3
## 15010                                  SABER.HLTH.GOAL4
## 15011                                  SABER.HLTH.GOAL5
## 15012                                  SABER.HLTH.GOAL6
## 15013                                  SABER.HLTH.GOAL7
## 15014                                  SABER.HLTH.GOAL8
## 15015                                  SABER.HLTH.GOAL9
## 15016                                  SABER.PRVT.GOAL1
## 15017                             SABER.PRVT.GOAL1.LVL1
## 15018                             SABER.PRVT.GOAL1.LVL2
## 15019                             SABER.PRVT.GOAL1.LVL3
## 15020                             SABER.PRVT.GOAL1.LVL4
## 15021                             SABER.PRVT.GOAL1.LVL5
## 15022                             SABER.PRVT.GOAL1.LVL6
## 15023                                  SABER.PRVT.GOAL2
## 15024                             SABER.PRVT.GOAL2.LVL1
## 15025                             SABER.PRVT.GOAL2.LVL2
## 15026                             SABER.PRVT.GOAL2.LVL3
## 15027                             SABER.PRVT.GOAL2.LVL4
## 15028                             SABER.PRVT.GOAL2.LVL5
## 15029                                  SABER.PRVT.GOAL3
## 15030                             SABER.PRVT.GOAL3.LVL1
## 15031                             SABER.PRVT.GOAL3.LVL2
## 15032                             SABER.PRVT.GOAL3.LVL3
## 15033                                  SABER.PRVT.GOAL4
## 15034                             SABER.PRVT.GOAL4.LVL1
## 15035                             SABER.PRVT.GOAL4.LVL2
## 15036                             SABER.PRVT.GOAL4.LVL3
## 15037                             SABER.PRVT.GOAL4.LVL4
## 15038                             SABER.PRVT.GOAL4.LVL5
## 15039                              SABER.SCH.ATNM.GOAL1
## 15040                         SABER.SCH.ATNM.GOAL1.LVL1
## 15041                         SABER.SCH.ATNM.GOAL1.LVL2
## 15042                         SABER.SCH.ATNM.GOAL1.LVL3
## 15043                         SABER.SCH.ATNM.GOAL1.LVL4
## 15044                         SABER.SCH.ATNM.GOAL1.LVL5
## 15045                              SABER.SCH.ATNM.GOAL2
## 15046                         SABER.SCH.ATNM.GOAL2.LVL1
## 15047                         SABER.SCH.ATNM.GOAL2.LVL2
## 15048                         SABER.SCH.ATNM.GOAL2.LVL3
## 15049                              SABER.SCH.ATNM.GOAL3
## 15050                         SABER.SCH.ATNM.GOAL3.LVL1
## 15051                         SABER.SCH.ATNM.GOAL3.LVL2
## 15052                         SABER.SCH.ATNM.GOAL3.LVL3
## 15053                         SABER.SCH.ATNM.GOAL3.LVL4
## 15054                         SABER.SCH.ATNM.GOAL3.LVL5
## 15055                         SABER.SCH.ATNM.GOAL3.LVL6
## 15056                              SABER.SCH.ATNM.GOAL4
## 15057                         SABER.SCH.ATNM.GOAL4.LVL1
## 15058                         SABER.SCH.ATNM.GOAL4.LVL2
## 15059                         SABER.SCH.ATNM.GOAL4.LVL3
## 15060                         SABER.SCH.ATNM.GOAL4.LVL4
## 15061                         SABER.SCH.ATNM.GOAL4.LVL5
## 15062                              SABER.SCH.ATNM.GOAL5
## 15063                         SABER.SCH.ATNM.GOAL5.LVL1
## 15064                         SABER.SCH.ATNM.GOAL5.LVL2
## 15065                         SABER.SCH.ATNM.GOAL5.LVL3
## 15066                         SABER.SCH.ATNM.GOAL5.LVL4
## 15067                         SABER.SCH.ATNM.GOAL5.LVL5
## 15068                              SABER.SCH.FNNC.GOAL1
## 15069                         SABER.SCH.FNNC.GOAL1.LVL1
## 15070                         SABER.SCH.FNNC.GOAL1.LVL2
## 15071                              SABER.SCH.FNNC.GOAL2
## 15072                         SABER.SCH.FNNC.GOAL2.LVL1
## 15073                         SABER.SCH.FNNC.GOAL2.LVL2
## 15074                              SABER.SCH.FNNC.GOAL3
## 15075                         SABER.SCH.FNNC.GOAL3.LVL1
## 15076                         SABER.SCH.FNNC.GOAL3.LVL2
## 15077                              SABER.SCH.FNNC.GOAL4
## 15078                         SABER.SCH.FNNC.GOAL4.LVL1
## 15079                         SABER.SCH.FNNC.GOAL4.LVL2
## 15080                              SABER.SCH.FNNC.GOAL5
## 15081                         SABER.SCH.FNNC.GOAL5.LVL1
## 15082                         SABER.SCH.FNNC.GOAL5.LVL2
## 15083                              SABER.SCH.FNNC.GOAL6
## 15084                         SABER.SCH.FNNC.GOAL6.LVL1
## 15085                         SABER.SCH.FNNC.GOAL6.LVL2
## 15086                               SABER.STD.ASS.GOAL1
## 15087                          SABER.STD.ASS.GOAL1.LVL1
## 15088                          SABER.STD.ASS.GOAL1.LVL2
## 15089                               SABER.STD.ASS.GOAL2
## 15090                          SABER.STD.ASS.GOAL2.LVL1
## 15091                          SABER.STD.ASS.GOAL2.LVL2
## 15092                          SABER.STD.ASS.GOAL2.LVL3
## 15093                               SABER.STD.ASS.GOAL3
## 15094                          SABER.STD.ASS.GOAL3.LVL1
## 15095                          SABER.STD.ASS.GOAL3.LVL2
## 15096                          SABER.STD.ASS.GOAL3.LVL3
## 15097                               SABER.STD.ASS.GOAL4
## 15098                          SABER.STD.ASS.GOAL4.LVL1
## 15099                          SABER.STD.ASS.GOAL4.LVL2
## 15100                          SABER.STD.ASS.GOAL4.LVL3
## 15101                                  SABER.TECH.GOAL1
## 15102                             SABER.TECH.GOAL1.LVL1
## 15103                             SABER.TECH.GOAL1.LVL2
## 15104                                  SABER.TECH.GOAL2
## 15105                             SABER.TECH.GOAL2.LVL1
## 15106                             SABER.TECH.GOAL2.LVL2
## 15107                             SABER.TECH.GOAL2.LVL3
## 15108                             SABER.TECH.GOAL2.LVL4
## 15109                                  SABER.TECH.GOAL3
## 15110                             SABER.TECH.GOAL3.LVL1
## 15111                             SABER.TECH.GOAL3.LVL2
## 15112                                  SABER.TECH.GOAL4
## 15113                             SABER.TECH.GOAL4.LVL1
## 15114                             SABER.TECH.GOAL4.LVL2
## 15115                                  SABER.TECH.GOAL5
## 15116                             SABER.TECH.GOAL5.LVL1
## 15117                             SABER.TECH.GOAL5.LVL2
## 15118                                  SABER.TECH.GOAL6
## 15119                             SABER.TECH.GOAL6.LVL1
## 15120                             SABER.TECH.GOAL6.LVL2
## 15121                             SABER.TECH.GOAL6.LVL3
## 15122                                  SABER.TECH.GOAL7
## 15123                             SABER.TECH.GOAL7.LVL1
## 15124                             SABER.TECH.GOAL7.LVL2
## 15125                             SABER.TECH.GOAL7.LVL3
## 15126                                  SABER.TECH.GOAL8
## 15127                             SABER.TECH.GOAL8.LVL1
## 15128                             SABER.TECH.GOAL8.LVL2
## 15129                             SABER.TECH.GOAL8.LVL3
## 15130                                   SABER.TER.GOAL1
## 15131                              SABER.TER.GOAL1.LVL1
## 15132                                   SABER.TER.GOAL2
## 15133                              SABER.TER.GOAL2.LVL1
## 15134                                   SABER.TER.GOAL3
## 15135                              SABER.TER.GOAL3.LVL1
## 15136                              SABER.TER.GOAL3.LVL2
## 15137                                   SABER.TER.GOAL4
## 15138                              SABER.TER.GOAL4.LVL1
## 15139                              SABER.TER.GOAL4.LVL2
## 15140                              SABER.TER.GOAL4.LVL3
## 15141                                   SABER.TER.GOAL5
## 15142                              SABER.TER.GOAL5.LVL1
## 15143                              SABER.TER.GOAL5.LVL2
## 15144                                   SABER.TER.GOAL6
## 15145                              SABER.TER.GOAL6.LVL1
## 15146                              SABER.TER.GOAL6.LVL2
## 15147                              SABER.TER.GOAL6.LVL3
## 15148                                  SABER.WORK.GOAL1
## 15149                             SABER.WORK.GOAL1.LVL1
## 15150                             SABER.WORK.GOAL1.LVL2
## 15151                             SABER.WORK.GOAL1.LVL3
## 15152                                  SABER.WORK.GOAL2
## 15153                             SABER.WORK.GOAL2.LVL1
## 15154                             SABER.WORK.GOAL2.LVL2
## 15155                             SABER.WORK.GOAL2.LVL3
## 15156                                  SABER.WORK.GOAL3
## 15157                             SABER.WORK.GOAL3.LVL1
## 15158                             SABER.WORK.GOAL3.LVL2
## 15159                             SABER.WORK.GOAL3.LVL3
## 15160                              SE.ADT.1524.IL.FE.ZS
## 15161                              SE.ADT.1524.IL.MA.ZS
## 15162                                 SE.ADT.1524.IL.ZS
## 15163                              SE.ADT.1524.LT.FE.ZS
## 15164                              SE.ADT.1524.LT.FM.ZS
## 15165                              SE.ADT.1524.LT.MA.ZS
## 15166                                 SE.ADT.1524.LT.ZS
## 15167                                 SE.ADT.ILIT.FE.ZS
## 15168                                 SE.ADT.ILIT.MA.ZS
## 15169                                    SE.ADT.ILIT.ZS
## 15170                                 SE.ADT.LITR.FE.ZS
## 15171                                 SE.ADT.LITR.MA.ZS
## 15172                                    SE.ADT.LITR.ZS
## 15173                                       SE.COM.DURS
## 15174                                       SE.ENR.ORPH
## 15175                                 SE.ENR.PRIM.FM.ZS
## 15176                                    SE.ENR.PRIM.ZS
## 15177                                 SE.ENR.PRSC.FM.ZS
## 15178                                 SE.ENR.SECO.FM.ZS
## 15179                                    SE.ENR.SECO.ZS
## 15180                                 SE.ENR.TERT.FM.ZS
## 15181                                      SE.GEPD.PRIM
## 15182                                    SE.GEPD.PRIM.1
## 15183                                  SE.GEPD.PRIM.BMP
## 15184                                SE.GEPD.PRIM.BMP.1
## 15185                                  SE.JRSEC.NENR.ZS
## 15186                                   SE.LITR.15UP.ZS
## 15187                                       SE.LPV.PRIM
## 15188                                   SE.LPV.PRIM.BMP
## 15189                                SE.LPV.PRIM.BMP.FE
## 15190                                SE.LPV.PRIM.BMP.MA
## 15191                                    SE.LPV.PRIM.FE
## 15192                                    SE.LPV.PRIM.MA
## 15193                                   SE.LPV.PRIM.OOS
## 15194                                SE.LPV.PRIM.OOS.FE
## 15195                                SE.LPV.PRIM.OOS.MA
## 15196                                 SE.NEXM.SCR.JRSEC
## 15197                                   SE.NEXM.SCR.PRM
## 15198                                 SE.NEXM.SCR.SRSEC
## 15199                                       SE.PRE.DURS
## 15200                                       SE.PRE.ENRL
## 15201                                    SE.PRE.ENRL.FE
## 15202                                 SE.PRE.ENRL.TC.ZS
## 15203                                       SE.PRE.ENRR
## 15204                                    SE.PRE.ENRR.FE
## 15205                                    SE.PRE.ENRR.MA
## 15206                                    SE.PRE.PRIV.ZS
## 15207                                 SE.PRE.TCAQ.FE.ZS
## 15208                                 SE.PRE.TCAQ.MA.ZS
## 15209                                    SE.PRE.TCAQ.ZS
## 15210                                       SE.PRE.TCHR
## 15211                                    SE.PRE.TCHR.FE
## 15212                                 SE.PRE.TCHR.FE.ZS
## 15213                                    SE.PRM.AGEE.ZS
## 15214                                       SE.PRM.AGES
## 15215                                       SE.PRM.ATTD
## 15216                                     SE.PRM.ATTD.1
## 15217                                   SE.PRM.ATTD.1.F
## 15218                                   SE.PRM.ATTD.1.M
## 15219                                   SE.PRM.ATTD.1.R
## 15220                                   SE.PRM.ATTD.1.U
## 15221                                       SE.PRM.BFIN
## 15222                                     SE.PRM.BFIN.1
## 15223                                     SE.PRM.BFIN.2
## 15224                                     SE.PRM.BFIN.3
## 15225                                     SE.PRM.BFIN.4
## 15226                                     SE.PRM.BFIN.5
## 15227                                       SE.PRM.BIMP
## 15228                                     SE.PRM.BIMP.1
## 15229                                     SE.PRM.BIMP.2
## 15230                                     SE.PRM.BIMP.3
## 15231                                     SE.PRM.BIMP.4
## 15232                                     SE.PRM.BIMP.5
## 15233                                       SE.PRM.BMAC
## 15234                                     SE.PRM.BMAC.1
## 15235                                     SE.PRM.BMAC.2
## 15236                                     SE.PRM.BMAC.3
## 15237                                     SE.PRM.BMAC.4
## 15238                                       SE.PRM.BNLG
## 15239                                     SE.PRM.BNLG.1
## 15240                                     SE.PRM.BNLG.2
## 15241                                     SE.PRM.BNLG.3
## 15242                                     SE.PRM.BNLG.4
## 15243                                     SE.PRM.BNLG.5
## 15244                                       SE.PRM.BQBR
## 15245                                     SE.PRM.BQBR.1
## 15246                                     SE.PRM.BQBR.2
## 15247                                     SE.PRM.BQBR.3
## 15248                                     SE.PRM.BQBR.4
## 15249                                     SE.PRM.BQBR.5
## 15250                                 SE.PRM.CMPL.FE.ZS
## 15251                                 SE.PRM.CMPL.MA.ZS
## 15252                                    SE.PRM.CMPL.ZS
## 15253                                 SE.PRM.CMPR.FE.ZS
## 15254                                 SE.PRM.CMPR.MA.ZS
## 15255                                 SE.PRM.CMPR.Q1.ZS
## 15256                                 SE.PRM.CMPR.Q5.ZS
## 15257                                 SE.PRM.CMPR.RU.ZS
## 15258                                 SE.PRM.CMPR.UR.ZS
## 15259                                 SE.PRM.CMPT.FE.ZS
## 15260                                 SE.PRM.CMPT.MA.ZS
## 15261                                    SE.PRM.CMPT.ZS
## 15262                                       SE.PRM.CONT
## 15263                                     SE.PRM.CONT.1
## 15264                                   SE.PRM.CONT.1.F
## 15265                                   SE.PRM.CONT.1.M
## 15266                                   SE.PRM.CONT.1.R
## 15267                                   SE.PRM.CONT.1.U
## 15268                                     SE.PRM.CONT.2
## 15269                                   SE.PRM.CONT.2.F
## 15270                                   SE.PRM.CONT.2.M
## 15271                                   SE.PRM.CONT.2.R
## 15272                                   SE.PRM.CONT.2.U
## 15273                                     SE.PRM.CONT.3
## 15274                                   SE.PRM.CONT.3.F
## 15275                                   SE.PRM.CONT.3.M
## 15276                                   SE.PRM.CONT.3.R
## 15277                                   SE.PRM.CONT.3.U
## 15278                                 SE.PRM.CUAT.FE.ZS
## 15279                                 SE.PRM.CUAT.MA.ZS
## 15280                                    SE.PRM.CUAT.ZS
## 15281                                       SE.PRM.DURS
## 15282                                       SE.PRM.EFFT
## 15283                                     SE.PRM.EFFT.1
## 15284                                   SE.PRM.EFFT.1.F
## 15285                                   SE.PRM.EFFT.1.M
## 15286                                   SE.PRM.EFFT.1.R
## 15287                                   SE.PRM.EFFT.1.U
## 15288                                     SE.PRM.EFFT.2
## 15289                                   SE.PRM.EFFT.2.F
## 15290                                   SE.PRM.EFFT.2.M
## 15291                                   SE.PRM.EFFT.2.R
## 15292                                   SE.PRM.EFFT.2.U
## 15293                                    SE.PRM.ENNR.FE
## 15294                                       SE.PRM.ENRL
## 15295                                    SE.PRM.ENRL.FE
## 15296                                 SE.PRM.ENRL.FE.ZS
## 15297                                 SE.PRM.ENRL.TC.ZS
## 15298                                       SE.PRM.ENRR
## 15299                                    SE.PRM.ENRR.FE
## 15300                                    SE.PRM.ENRR.MA
## 15301                                    SE.PRM.ENRR.MF
## 15302                                 SE.PRM.GINT.FE.ZS
## 15303                                 SE.PRM.GINT.MA.ZS
## 15304                                    SE.PRM.GINT.ZS
## 15305                                       SE.PRM.ILDR
## 15306                                     SE.PRM.ILDR.1
## 15307                                   SE.PRM.ILDR.1.F
## 15308                                   SE.PRM.ILDR.1.M
## 15309                                   SE.PRM.ILDR.1.R
## 15310                                   SE.PRM.ILDR.1.U
## 15311                                     SE.PRM.ILDR.2
## 15312                                   SE.PRM.ILDR.2.F
## 15313                                   SE.PRM.ILDR.2.M
## 15314                                   SE.PRM.ILDR.2.R
## 15315                                   SE.PRM.ILDR.2.U
## 15316                                     SE.PRM.ILDR.3
## 15317                                   SE.PRM.ILDR.3.F
## 15318                                   SE.PRM.ILDR.3.M
## 15319                                   SE.PRM.ILDR.3.R
## 15320                                   SE.PRM.ILDR.3.U
## 15321                                     SE.PRM.ILDR.4
## 15322                                   SE.PRM.ILDR.4.F
## 15323                                   SE.PRM.ILDR.4.M
## 15324                                   SE.PRM.ILDR.4.R
## 15325                                   SE.PRM.ILDR.4.U
## 15326                                     SE.PRM.ILDR.5
## 15327                                   SE.PRM.ILDR.5.F
## 15328                                   SE.PRM.ILDR.5.M
## 15329                                   SE.PRM.ILDR.5.R
## 15330                                   SE.PRM.ILDR.5.U
## 15331                                     SE.PRM.ILDR.6
## 15332                                   SE.PRM.ILDR.6.F
## 15333                                   SE.PRM.ILDR.6.M
## 15334                                   SE.PRM.ILDR.6.R
## 15335                                   SE.PRM.ILDR.6.U
## 15336                                     SE.PRM.ILDR.7
## 15337                                   SE.PRM.ILDR.7.F
## 15338                                   SE.PRM.ILDR.7.M
## 15339                                   SE.PRM.ILDR.7.R
## 15340                                   SE.PRM.ILDR.7.U
## 15341                                     SE.PRM.ILDR.8
## 15342                                   SE.PRM.ILDR.8.F
## 15343                                   SE.PRM.ILDR.8.M
## 15344                                   SE.PRM.ILDR.8.R
## 15345                                   SE.PRM.ILDR.8.U
## 15346                                       SE.PRM.IMON
## 15347                                     SE.PRM.IMON.1
## 15348                                    SE.PRM.IMON.10
## 15349                                     SE.PRM.IMON.2
## 15350                                     SE.PRM.IMON.3
## 15351                                     SE.PRM.IMON.4
## 15352                                     SE.PRM.IMON.5
## 15353                                     SE.PRM.IMON.6
## 15354                                     SE.PRM.IMON.7
## 15355                                     SE.PRM.IMON.8
## 15356                                     SE.PRM.IMON.9
## 15357                                    SE.PRM.IMON.DF
## 15358                                    SE.PRM.IMON.DJ
## 15359                                       SE.PRM.INFR
## 15360                                     SE.PRM.INFR.1
## 15361                                   SE.PRM.INFR.1.R
## 15362                                   SE.PRM.INFR.1.U
## 15363                                     SE.PRM.INFR.2
## 15364                                   SE.PRM.INFR.2.R
## 15365                                   SE.PRM.INFR.2.U
## 15366                                     SE.PRM.INFR.3
## 15367                                   SE.PRM.INFR.3.R
## 15368                                   SE.PRM.INFR.3.U
## 15369                                     SE.PRM.INFR.4
## 15370                                   SE.PRM.INFR.4.R
## 15371                                   SE.PRM.INFR.4.U
## 15372                                     SE.PRM.INFR.5
## 15373                                   SE.PRM.INFR.5.R
## 15374                                   SE.PRM.INFR.5.U
## 15375                                     SE.PRM.INFR.6
## 15376                                   SE.PRM.INFR.6.R
## 15377                                   SE.PRM.INFR.6.U
## 15378                                       SE.PRM.INPT
## 15379                                     SE.PRM.INPT.1
## 15380                                   SE.PRM.INPT.1.R
## 15381                                   SE.PRM.INPT.1.U
## 15382                                     SE.PRM.INPT.2
## 15383                                   SE.PRM.INPT.2.R
## 15384                                   SE.PRM.INPT.2.U
## 15385                                     SE.PRM.INPT.3
## 15386                                   SE.PRM.INPT.3.R
## 15387                                   SE.PRM.INPT.3.U
## 15388                                     SE.PRM.INPT.4
## 15389                                   SE.PRM.INPT.4.R
## 15390                                   SE.PRM.INPT.4.U
## 15391                                     SE.PRM.INPT.5
## 15392                                   SE.PRM.INPT.5.R
## 15393                                   SE.PRM.INPT.5.U
## 15394                                       SE.PRM.ISTD
## 15395                                     SE.PRM.ISTD.1
## 15396                                    SE.PRM.ISTD.10
## 15397                                    SE.PRM.ISTD.11
## 15398                                    SE.PRM.ISTD.12
## 15399                                    SE.PRM.ISTD.13
## 15400                                    SE.PRM.ISTD.14
## 15401                                     SE.PRM.ISTD.2
## 15402                                     SE.PRM.ISTD.3
## 15403                                     SE.PRM.ISTD.4
## 15404                                     SE.PRM.ISTD.5
## 15405                                     SE.PRM.ISTD.6
## 15406                                     SE.PRM.ISTD.7
## 15407                                     SE.PRM.ISTD.8
## 15408                                     SE.PRM.ISTD.9
## 15409                                    SE.PRM.ISTD.DF
## 15410                                    SE.PRM.ISTD.DJ
## 15411                                       SE.PRM.LCAP
## 15412                                     SE.PRM.LCAP.1
## 15413                                   SE.PRM.LCAP.1.F
## 15414                                   SE.PRM.LCAP.1.M
## 15415                                   SE.PRM.LCAP.1.R
## 15416                                   SE.PRM.LCAP.1.U
## 15417                                     SE.PRM.LCAP.2
## 15418                                   SE.PRM.LCAP.2.F
## 15419                                   SE.PRM.LCAP.2.M
## 15420                                   SE.PRM.LCAP.2.R
## 15421                                   SE.PRM.LCAP.2.U
## 15422                                     SE.PRM.LCAP.3
## 15423                                   SE.PRM.LCAP.3.F
## 15424                                   SE.PRM.LCAP.3.M
## 15425                                   SE.PRM.LCAP.3.R
## 15426                                   SE.PRM.LCAP.3.U
## 15427                                     SE.PRM.LCAP.4
## 15428                                   SE.PRM.LCAP.4.F
## 15429                                   SE.PRM.LCAP.4.M
## 15430                                   SE.PRM.LCAP.4.R
## 15431                                   SE.PRM.LCAP.4.U
## 15432                                     SE.PRM.LCAP.5
## 15433                                   SE.PRM.LCAP.5.F
## 15434                                   SE.PRM.LCAP.5.M
## 15435                                   SE.PRM.LCAP.5.R
## 15436                                   SE.PRM.LCAP.5.U
## 15437                                       SE.PRM.LCBC
## 15438                                     SE.PRM.LCBC.1
## 15439                                     SE.PRM.LCBC.2
## 15440                                     SE.PRM.LCBC.3
## 15441                                     SE.PRM.LCBC.4
## 15442                                     SE.PRM.LCBC.5
## 15443                                    SE.PRM.LCBC.DF
## 15444                                    SE.PRM.LCBC.DJ
## 15445                                       SE.PRM.LERN
## 15446                                     SE.PRM.LERN.1
## 15447                                   SE.PRM.LERN.1.F
## 15448                                   SE.PRM.LERN.1.M
## 15449                                   SE.PRM.LERN.1.R
## 15450                                   SE.PRM.LERN.1.U
## 15451                                     SE.PRM.LERN.2
## 15452                                   SE.PRM.LERN.2.F
## 15453                                   SE.PRM.LERN.2.M
## 15454                                   SE.PRM.LERN.2.R
## 15455                                   SE.PRM.LERN.2.U
## 15456                                     SE.PRM.LERN.3
## 15457                                   SE.PRM.LERN.3.F
## 15458                                   SE.PRM.LERN.3.M
## 15459                                   SE.PRM.LERN.3.R
## 15460                                   SE.PRM.LERN.3.U
## 15461                                       SE.PRM.LFCP
## 15462                                     SE.PRM.LFCP.1
## 15463                                     SE.PRM.LFCP.2
## 15464                                     SE.PRM.LFCP.3
## 15465                                     SE.PRM.LFCP.4
## 15466                                    SE.PRM.LFCP.DF
## 15467                                    SE.PRM.LFCP.DJ
## 15468                                       SE.PRM.LHTH
## 15469                                     SE.PRM.LHTH.1
## 15470                                     SE.PRM.LHTH.2
## 15471                                     SE.PRM.LHTH.3
## 15472                                     SE.PRM.LHTH.4
## 15473                                     SE.PRM.LHTH.5
## 15474                                     SE.PRM.LHTH.6
## 15475                                     SE.PRM.LHTH.7
## 15476                                     SE.PRM.LHTH.8
## 15477                                    SE.PRM.LHTH.DF
## 15478                                    SE.PRM.LHTH.DJ
## 15479                                       SE.PRM.LNTN
## 15480                                     SE.PRM.LNTN.1
## 15481                                     SE.PRM.LNTN.2
## 15482                                     SE.PRM.LNTN.3
## 15483                                     SE.PRM.LNTN.4
## 15484                                     SE.PRM.LNTN.5
## 15485                                     SE.PRM.LNTN.6
## 15486                                     SE.PRM.LNTN.7
## 15487                                     SE.PRM.LNTN.8
## 15488                                    SE.PRM.LNTN.DF
## 15489                                    SE.PRM.LNTN.DJ
## 15490                                       SE.PRM.LSKC
## 15491                                     SE.PRM.LSKC.1
## 15492                                     SE.PRM.LSKC.2
## 15493                                     SE.PRM.LSKC.3
## 15494                                     SE.PRM.LSKC.4
## 15495                                    SE.PRM.LSKC.DF
## 15496                                    SE.PRM.LSKC.DJ
## 15497                                       SE.PRM.NENR
## 15498                                    SE.PRM.NENR.FE
## 15499                                    SE.PRM.NENR.MA
## 15500                                    SE.PRM.NENR.ZS
## 15501                                 SE.PRM.NINT.FE.ZS
## 15502                                 SE.PRM.NINT.MA.ZS
## 15503                                    SE.PRM.NINT.ZS
## 15504                                 SE.PRM.OENR.FE.ZS
## 15505                                 SE.PRM.OENR.MA.ZS
## 15506                                    SE.PRM.OENR.ZS
## 15507                                       SE.PRM.OPMN
## 15508                                     SE.PRM.OPMN.1
## 15509                                   SE.PRM.OPMN.1.F
## 15510                                   SE.PRM.OPMN.1.M
## 15511                                   SE.PRM.OPMN.1.R
## 15512                                   SE.PRM.OPMN.1.U
## 15513                                     SE.PRM.OPMN.2
## 15514                                   SE.PRM.OPMN.2.F
## 15515                                   SE.PRM.OPMN.2.M
## 15516                                   SE.PRM.OPMN.2.R
## 15517                                   SE.PRM.OPMN.2.U
## 15518                                     SE.PRM.OPMN.3
## 15519                                   SE.PRM.OPMN.3.F
## 15520                                   SE.PRM.OPMN.3.M
## 15521                                   SE.PRM.OPMN.3.R
## 15522                                   SE.PRM.OPMN.3.U
## 15523                                       SE.PRM.PEDG
## 15524                                     SE.PRM.PEDG.1
## 15525                                   SE.PRM.PEDG.1.F
## 15526                                   SE.PRM.PEDG.1.M
## 15527                                   SE.PRM.PEDG.1.R
## 15528                                   SE.PRM.PEDG.1.U
## 15529                                     SE.PRM.PEDG.2
## 15530                                   SE.PRM.PEDG.2.F
## 15531                                   SE.PRM.PEDG.2.M
## 15532                                   SE.PRM.PEDG.2.R
## 15533                                   SE.PRM.PEDG.2.U
## 15534                                     SE.PRM.PEDG.3
## 15535                                   SE.PRM.PEDG.3.F
## 15536                                   SE.PRM.PEDG.3.M
## 15537                                   SE.PRM.PEDG.3.R
## 15538                                   SE.PRM.PEDG.3.U
## 15539                                     SE.PRM.PEDG.4
## 15540                                   SE.PRM.PEDG.4.F
## 15541                                   SE.PRM.PEDG.4.M
## 15542                                   SE.PRM.PEDG.4.R
## 15543                                   SE.PRM.PEDG.4.U
## 15544                                       SE.PRM.PKNW
## 15545                                     SE.PRM.PKNW.1
## 15546                                   SE.PRM.PKNW.1.F
## 15547                                   SE.PRM.PKNW.1.M
## 15548                                   SE.PRM.PKNW.1.R
## 15549                                   SE.PRM.PKNW.1.U
## 15550                                     SE.PRM.PKNW.2
## 15551                                   SE.PRM.PKNW.2.F
## 15552                                   SE.PRM.PKNW.2.M
## 15553                                   SE.PRM.PKNW.2.R
## 15554                                   SE.PRM.PKNW.2.U
## 15555                                     SE.PRM.PKNW.3
## 15556                                   SE.PRM.PKNW.3.F
## 15557                                   SE.PRM.PKNW.3.M
## 15558                                   SE.PRM.PKNW.3.R
## 15559                                   SE.PRM.PKNW.3.U
## 15560                                     SE.PRM.PKNW.4
## 15561                                   SE.PRM.PKNW.4.F
## 15562                                   SE.PRM.PKNW.4.M
## 15563                                   SE.PRM.PKNW.4.R
## 15564                                   SE.PRM.PKNW.4.U
## 15565                                       SE.PRM.PMAN
## 15566                                     SE.PRM.PMAN.1
## 15567                                   SE.PRM.PMAN.1.F
## 15568                                   SE.PRM.PMAN.1.M
## 15569                                   SE.PRM.PMAN.1.R
## 15570                                   SE.PRM.PMAN.1.U
## 15571                                     SE.PRM.PMAN.2
## 15572                                   SE.PRM.PMAN.2.F
## 15573                                   SE.PRM.PMAN.2.M
## 15574                                   SE.PRM.PMAN.2.R
## 15575                                   SE.PRM.PMAN.2.U
## 15576                                     SE.PRM.PMAN.3
## 15577                                   SE.PRM.PMAN.3.F
## 15578                                   SE.PRM.PMAN.3.M
## 15579                                   SE.PRM.PMAN.3.R
## 15580                                   SE.PRM.PMAN.3.U
## 15581                                    SE.PRM.PRIV.ZS
## 15582                                       SE.PRM.PROE
## 15583                                     SE.PRM.PROE.1
## 15584                                 SE.PRM.PRS4.FE.ZS
## 15585                                 SE.PRM.PRS4.MA.ZS
## 15586                                    SE.PRM.PRS4.ZS
## 15587                                 SE.PRM.PRS5.FE.ZS
## 15588                                 SE.PRM.PRS5.MA.ZS
## 15589                                    SE.PRM.PRS5.ZS
## 15590                                 SE.PRM.PRSL.FE.ZS
## 15591                                 SE.PRM.PRSL.MA.ZS
## 15592                                    SE.PRM.PRSL.ZS
## 15593                                       SE.PRM.PTRA
## 15594                                 SE.PRM.REPT.FE.ZS
## 15595                                 SE.PRM.REPT.MA.ZS
## 15596                                    SE.PRM.REPT.ZS
## 15597                                       SE.PRM.SATT
## 15598                                     SE.PRM.SATT.1
## 15599                                     SE.PRM.SATT.2
## 15600                                     SE.PRM.SATT.3
## 15601                                    SE.PRM.SATT.DF
## 15602                                    SE.PRM.SATT.DJ
## 15603                                       SE.PRM.SCFN
## 15604                                     SE.PRM.SCFN.1
## 15605                                    SE.PRM.SCFN.10
## 15606                                    SE.PRM.SCFN.11
## 15607                                    SE.PRM.SCFN.12
## 15608                                    SE.PRM.SCFN.13
## 15609                                    SE.PRM.SCFN.14
## 15610                                     SE.PRM.SCFN.2
## 15611                                     SE.PRM.SCFN.3
## 15612                                     SE.PRM.SCFN.4
## 15613                                     SE.PRM.SCFN.5
## 15614                                     SE.PRM.SCFN.6
## 15615                                     SE.PRM.SCFN.7
## 15616                                     SE.PRM.SCFN.8
## 15617                                     SE.PRM.SCFN.9
## 15618                                    SE.PRM.SCFN.DF
## 15619                                    SE.PRM.SCFN.DJ
## 15620                                       SE.PRM.SEVL
## 15621                                     SE.PRM.SEVL.1
## 15622                                     SE.PRM.SEVL.2
## 15623                                     SE.PRM.SEVL.3
## 15624                                     SE.PRM.SEVL.4
## 15625                                     SE.PRM.SEVL.5
## 15626                                     SE.PRM.SEVL.6
## 15627                                    SE.PRM.SEVL.DF
## 15628                                    SE.PRM.SEVL.DJ
## 15629                                       SE.PRM.SSLD
## 15630                                     SE.PRM.SSLD.1
## 15631                                    SE.PRM.SSLD.10
## 15632                                    SE.PRM.SSLD.11
## 15633                                    SE.PRM.SSLD.12
## 15634                                    SE.PRM.SSLD.13
## 15635                                    SE.PRM.SSLD.14
## 15636                                    SE.PRM.SSLD.15
## 15637                                    SE.PRM.SSLD.16
## 15638                                     SE.PRM.SSLD.2
## 15639                                     SE.PRM.SSLD.3
## 15640                                     SE.PRM.SSLD.4
## 15641                                     SE.PRM.SSLD.5
## 15642                                     SE.PRM.SSLD.6
## 15643                                     SE.PRM.SSLD.7
## 15644                                     SE.PRM.SSLD.8
## 15645                                     SE.PRM.SSLD.9
## 15646                                    SE.PRM.SSLD.DF
## 15647                                    SE.PRM.SSLD.DJ
## 15648                                       SE.PRM.SSUP
## 15649                                     SE.PRM.SSUP.1
## 15650                                    SE.PRM.SSUP.10
## 15651                                    SE.PRM.SSUP.11
## 15652                                     SE.PRM.SSUP.2
## 15653                                     SE.PRM.SSUP.3
## 15654                                     SE.PRM.SSUP.4
## 15655                                     SE.PRM.SSUP.5
## 15656                                     SE.PRM.SSUP.6
## 15657                                     SE.PRM.SSUP.7
## 15658                                     SE.PRM.SSUP.8
## 15659                                     SE.PRM.SSUP.9
## 15660                                    SE.PRM.SSUP.DF
## 15661                                    SE.PRM.SSUP.DJ
## 15662                                       SE.PRM.TATT
## 15663                                     SE.PRM.TATT.1
## 15664                                     SE.PRM.TATT.2
## 15665                                     SE.PRM.TATT.3
## 15666                                     SE.PRM.TATT.4
## 15667                                     SE.PRM.TATT.5
## 15668                                     SE.PRM.TATT.6
## 15669                                     SE.PRM.TATT.7
## 15670                                     SE.PRM.TATT.8
## 15671                                    SE.PRM.TATT.DF
## 15672                                    SE.PRM.TATT.DJ
## 15673                                 SE.PRM.TCAQ.FE.ZS
## 15674                                 SE.PRM.TCAQ.MA.ZS
## 15675                                    SE.PRM.TCAQ.ZS
## 15676                                       SE.PRM.TCHR
## 15677                                    SE.PRM.TCHR.FE
## 15678                                 SE.PRM.TCHR.FE.ZS
## 15679                                       SE.PRM.TENR
## 15680                                     SE.PRM.TENR.1
## 15681                                    SE.PRM.TENR.FE
## 15682                                    SE.PRM.TENR.MA
## 15683                                       SE.PRM.TEVL
## 15684                                     SE.PRM.TEVL.1
## 15685                                     SE.PRM.TEVL.2
## 15686                                     SE.PRM.TEVL.3
## 15687                                     SE.PRM.TEVL.4
## 15688                                     SE.PRM.TEVL.5
## 15689                                     SE.PRM.TEVL.6
## 15690                                     SE.PRM.TEVL.7
## 15691                                     SE.PRM.TEVL.8
## 15692                                     SE.PRM.TEVL.9
## 15693                                    SE.PRM.TEVL.DF
## 15694                                    SE.PRM.TEVL.DJ
## 15695                                       SE.PRM.TINM
## 15696                                     SE.PRM.TINM.1
## 15697                                    SE.PRM.TINM.10
## 15698                                    SE.PRM.TINM.11
## 15699                                    SE.PRM.TINM.12
## 15700                                    SE.PRM.TINM.13
## 15701                                     SE.PRM.TINM.2
## 15702                                     SE.PRM.TINM.3
## 15703                                     SE.PRM.TINM.4
## 15704                                     SE.PRM.TINM.5
## 15705                                     SE.PRM.TINM.6
## 15706                                     SE.PRM.TINM.7
## 15707                                     SE.PRM.TINM.8
## 15708                                     SE.PRM.TINM.9
## 15709                                    SE.PRM.TINM.DF
## 15710                                    SE.PRM.TINM.DJ
## 15711                                       SE.PRM.TMNA
## 15712                                     SE.PRM.TMNA.1
## 15713                                     SE.PRM.TMNA.2
## 15714                                     SE.PRM.TMNA.3
## 15715                                     SE.PRM.TMNA.4
## 15716                                     SE.PRM.TMNA.5
## 15717                                    SE.PRM.TMNA.DF
## 15718                                    SE.PRM.TMNA.DJ
## 15719                                       SE.PRM.TSDP
## 15720                                     SE.PRM.TSDP.1
## 15721                                     SE.PRM.TSDP.2
## 15722                                     SE.PRM.TSDP.3
## 15723                                     SE.PRM.TSDP.4
## 15724                                     SE.PRM.TSDP.5
## 15725                                     SE.PRM.TSDP.6
## 15726                                     SE.PRM.TSDP.7
## 15727                                    SE.PRM.TSDP.DF
## 15728                                    SE.PRM.TSDP.DJ
## 15729                                       SE.PRM.TSUP
## 15730                                     SE.PRM.TSUP.1
## 15731                                     SE.PRM.TSUP.2
## 15732                                     SE.PRM.TSUP.3
## 15733                                     SE.PRM.TSUP.4
## 15734                                     SE.PRM.TSUP.5
## 15735                                     SE.PRM.TSUP.6
## 15736                                     SE.PRM.TSUP.7
## 15737                                     SE.PRM.TSUP.8
## 15738                                     SE.PRM.TSUP.9
## 15739                                    SE.PRM.TSUP.DF
## 15740                                    SE.PRM.TSUP.DJ
## 15741                                       SE.PRM.UNER
## 15742                                    SE.PRM.UNER.FE
## 15743                                 SE.PRM.UNER.FE.ZS
## 15744                                    SE.PRM.UNER.MA
## 15745                                 SE.PRM.UNER.MA.ZS
## 15746                                 SE.PRM.UNER.Q1.ZS
## 15747                                 SE.PRM.UNER.Q5.ZS
## 15748                                    SE.PRM.UNER.ZS
## 15749                                    SE.SCH.EFIC.ZS
## 15750                                       SE.SCH.LIFE
## 15751                                    SE.SCH.LIFE.FE
## 15752                                    SE.SCH.LIFE.MA
## 15753                                     SE.SCHL.JRSEC
## 15754                                       SE.SCHL.PRM
## 15755                                     SE.SCHL.SRSEC
## 15756                                    SE.SEC.AGEE.ZS
## 15757                                       SE.SEC.AGES
## 15758                              SE.SEC.CMPT.LO.FE.ZS
## 15759                              SE.SEC.CMPT.LO.MA.ZS
## 15760                                 SE.SEC.CMPT.LO.ZS
## 15761                              SE.SEC.CUAT.LO.FE.ZS
## 15762                              SE.SEC.CUAT.LO.MA.ZS
## 15763                                 SE.SEC.CUAT.LO.ZS
## 15764                              SE.SEC.CUAT.PO.FE.ZS
## 15765                              SE.SEC.CUAT.PO.MA.ZS
## 15766                                 SE.SEC.CUAT.PO.ZS
## 15767                              SE.SEC.CUAT.UP.FE.ZS
## 15768                              SE.SEC.CUAT.UP.MA.ZS
## 15769                                 SE.SEC.CUAT.UP.ZS
## 15770                                       SE.SEC.DURS
## 15771                                    SE.SEC.DURS.LO
## 15772                                    SE.SEC.DURS.UP
## 15773                                       SE.SEC.ENRL
## 15774                                    SE.SEC.ENRL.FE
## 15775                              SE.SEC.ENRL.FE.VO.ZS
## 15776                                 SE.SEC.ENRL.FE.ZS
## 15777                                    SE.SEC.ENRL.GC
## 15778                              SE.SEC.ENRL.GC.FE.ZS
## 15779                              SE.SEC.ENRL.LO.TC.ZS
## 15780                              SE.SEC.ENRL.MA.VO.ZS
## 15781                                 SE.SEC.ENRL.TC.ZS
## 15782                              SE.SEC.ENRL.UP.TC.ZS
## 15783                                    SE.SEC.ENRL.VO
## 15784                              SE.SEC.ENRL.VO.FE.ZS
## 15785                                 SE.SEC.ENRL.VO.ZS
## 15786                                       SE.SEC.ENRR
## 15787                                    SE.SEC.ENRR.FE
## 15788                                    SE.SEC.ENRR.LO
## 15789                                 SE.SEC.ENRR.LO.FE
## 15790                                 SE.SEC.ENRR.LO.MA
## 15791                                    SE.SEC.ENRR.MA
## 15792                                    SE.SEC.ENRR.MF
## 15793                                    SE.SEC.ENRR.UP
## 15794                                 SE.SEC.ENRR.UP.FE
## 15795                                 SE.SEC.ENRR.UP.MA
## 15796                                       SE.SEC.NENR
## 15797                                    SE.SEC.NENR.FE
## 15798                                    SE.SEC.NENR.MA
## 15799                                    SE.SEC.PRIV.ZS
## 15800                                 SE.SEC.PROG.FE.ZS
## 15801                                 SE.SEC.PROG.MA.ZS
## 15802                                    SE.SEC.PROG.ZS
## 15803                                 SE.SEC.REPT.FE.ZS
## 15804                                 SE.SEC.REPT.MA.ZS
## 15805                                    SE.SEC.REPT.ZS
## 15806                                 SE.SEC.TCAQ.FE.ZS
## 15807                              SE.SEC.TCAQ.LO.FE.ZS
## 15808                              SE.SEC.TCAQ.LO.MA.ZS
## 15809                                 SE.SEC.TCAQ.LO.ZS
## 15810                                 SE.SEC.TCAQ.MA.ZS
## 15811                              SE.SEC.TCAQ.UP.FE.ZS
## 15812                              SE.SEC.TCAQ.UP.MA.ZS
## 15813                                 SE.SEC.TCAQ.UP.ZS
## 15814                                    SE.SEC.TCAQ.ZS
## 15815                                       SE.SEC.TCHR
## 15816                                    SE.SEC.TCHR.FE
## 15817                                 SE.SEC.TCHR.FE.ZS
## 15818                                    SE.SEC.TCHR.GC
## 15819                              SE.SEC.TCHR.GC.FE.ZS
## 15820                                    SE.SEC.TCHR.VO
## 15821                              SE.SEC.TCHR.VO.FE.ZS
## 15822                                       SE.SEC.UNER
## 15823                                    SE.SEC.UNER.FE
## 15824                                 SE.SEC.UNER.FE.ZS
## 15825                              SE.SEC.UNER.LO.FE.ZS
## 15826                              SE.SEC.UNER.LO.MA.ZS
## 15827                                 SE.SEC.UNER.LO.ZS
## 15828                                    SE.SEC.UNER.MA
## 15829                                 SE.SEC.UNER.MA.ZS
## 15830                                    SE.SEC.UNER.ZS
## 15831                                  SE.SRSEC.NENR.ZS
## 15832                                     SE.STUD.JRSEC
## 15833                                       SE.STUD.PRM
## 15834                                     SE.STUD.SRSEC
## 15835                                     SE.TCHR.JRSEC
## 15836                                       SE.TCHR.PRM
## 15837                                     SE.TCHR.SRSEC
## 15838                                 SE.TER.CMPL.FE.ZS
## 15839                                 SE.TER.CMPL.MA.ZS
## 15840                                    SE.TER.CMPL.ZS
## 15841                              SE.TER.CUAT.BA.FE.ZS
## 15842                              SE.TER.CUAT.BA.MA.ZS
## 15843                                 SE.TER.CUAT.BA.ZS
## 15844                              SE.TER.CUAT.DO.FE.ZS
## 15845                              SE.TER.CUAT.DO.MA.ZS
## 15846                                 SE.TER.CUAT.DO.ZS
## 15847                              SE.TER.CUAT.MS.FE.ZS
## 15848                              SE.TER.CUAT.MS.MA.ZS
## 15849                                 SE.TER.CUAT.MS.ZS
## 15850                              SE.TER.CUAT.ST.FE.ZS
## 15851                              SE.TER.CUAT.ST.MA.ZS
## 15852                                 SE.TER.CUAT.ST.ZS
## 15853                                       SE.TER.ENRL
## 15854                                    SE.TER.ENRL.FE
## 15855                                 SE.TER.ENRL.FE.ZS
## 15856                                 SE.TER.ENRL.TC.ZS
## 15857                                       SE.TER.ENRR
## 15858                                    SE.TER.ENRR.FE
## 15859                                    SE.TER.ENRR.MA
## 15860                                 SE.TER.GRAD.AG.ZS
## 15861                                 SE.TER.GRAD.ED.ZS
## 15862                                 SE.TER.GRAD.EN.ZS
## 15863                              SE.TER.GRAD.FE.AG.ZS
## 15864                              SE.TER.GRAD.FE.ED.ZS
## 15865                              SE.TER.GRAD.FE.EN.ZS
## 15866                              SE.TER.GRAD.FE.HL.ZS
## 15867                              SE.TER.GRAD.FE.HU.ZS
## 15868                              SE.TER.GRAD.FE.OT.ZS
## 15869                              SE.TER.GRAD.FE.SC.ZS
## 15870                              SE.TER.GRAD.FE.SI.ZS
## 15871                              SE.TER.GRAD.FE.SS.ZS
## 15872                              SE.TER.GRAD.FE.SV.ZS
## 15873                                 SE.TER.GRAD.HL.ZS
## 15874                                 SE.TER.GRAD.HU.ZS
## 15875                                 SE.TER.GRAD.OT.ZS
## 15876                                 SE.TER.GRAD.SC.ZS
## 15877                                 SE.TER.GRAD.SS.ZS
## 15878                                 SE.TER.GRAD.SV.ZS
## 15879                                    SE.TER.PRIV.ZS
## 15880                                    SE.TER.SCIE.ZS
## 15881                                       SE.TER.TCHR
## 15882                                    SE.TER.TCHR.FE
## 15883                                 SE.TER.TCHR.FE.ZS
## 15884                                       SE.TOT.ENRR
## 15885                                    SE.XPD.CPRM.ZS
## 15886                                    SE.XPD.CSEC.ZS
## 15887                                    SE.XPD.CTER.ZS
## 15888                                    SE.XPD.CTOT.ZS
## 15889                                SE.XPD.CUR.TOTL.ZS
## 15890                                    SE.XPD.EDUC.ZS
## 15891                                    SE.XPD.MPRM.ZS
## 15892                                    SE.XPD.MSEC.ZS
## 15893                                    SE.XPD.MTER.ZS
## 15894                                    SE.XPD.MTOT.ZS
## 15895                                SE.XPD.PRIM.GDP.ZS
## 15896                                 SE.XPD.PRIM.PC.ZS
## 15897                                    SE.XPD.PRIM.ZS
## 15898                                    SE.XPD.PTCH.ZS
## 15899                                SE.XPD.SECO.GDP.ZS
## 15900                                 SE.XPD.SECO.PC.ZS
## 15901                                    SE.XPD.SECO.ZS
## 15902                                    SE.XPD.STCH.ZS
## 15903                                 SE.XPD.TCHR.XC.ZS
## 15904                                SE.XPD.TERT.GDP.ZS
## 15905                                 SE.XPD.TERT.PC.ZS
## 15906                                    SE.XPD.TERT.ZS
## 15907                                 SE.XPD.TOTL.GB.ZS
## 15908                                 SE.XPD.TOTL.GD.ZS
## 15909                                 SE.XPD.TOTL.GN.ZS
## 15910                               SE.YRS.SCHL.1519.Q1
## 15911                               SE.YRS.SCHL.1519.Q5
## 15912                                     SF.CMN.FAX.TH
## 15913                               SF.CMN.ICALL.3MN.CD
## 15914                                SF.CMN.ICALL.MN.SU
## 15915                              SF.CMN.INET.USER.10K
## 15916                                    SF.CMN.MNLN.TH
## 15917                                    SF.CMN.NEWS.TH
## 15918                                      SF.CMN.PC.TH
## 15919                               SF.CMN.PHON.CELL.TH
## 15920                               SF.CMN.PHON.LCTY.ZS
## 15921                               SF.CMN.PHON.LN.WAIT
## 15922                                    SF.CMN.RDIO.TH
## 15923                                    SF.CMN.TELE.TH
## 15924                                   SF.TRN.AIR.DPRT
## 15925                                    SF.TRN.AIR.GDS
## 15926                                   SF.TRN.AIR.PSGR
## 15927                                   SF.TRN.RAIL.GDS
## 15928                                 SF.TRN.RAIL.KM.ZS
## 15929                                   SF.TRN.ROAD.GDS
## 15930                                  SF.TRN.ROAD.NORM
## 15931                                 SF.TRN.ROAD.PV.ZS
## 15932                                       SG.ABS.PENB
## 15933                                    SG.AGE.FUPN.EQ
## 15934                                    SG.AGE.MRET.EQ
## 15935                                    SG.AGE.PAPN.EQ
## 15936                                    SG.AGE.RTRE.FE
## 15937                                 SG.AGE.RTRE.FL.FE
## 15938                                 SG.AGE.RTRE.FL.MA
## 15939                                    SG.AGE.RTRE.MA
## 15940                                 SG.AGE.RTRE.PL.FE
## 15941                                 SG.AGE.RTRE.PL.MA
## 15942                                    SG.APL.PSPT.EQ
## 15943                                    SG.BUS.REGT.EQ
## 15944                                    SG.CNT.SIGN.EQ
## 15945                                    SG.COK.CHCO.ZS
## 15946                                    SG.COK.CROP.ZS
## 15947                                    SG.COK.DUNG.ZS
## 15948                                    SG.COK.ELEC.ZS
## 15949                                    SG.COK.HOUS.ZS
## 15950                                    SG.COK.LPGN.ZS
## 15951                                    SG.COK.OTHR.ZS
## 15952                                    SG.COK.OUTD.ZS
## 15953                                    SG.COK.SBLD.ZS
## 15954                                    SG.COK.STRW.ZS
## 15955                                    SG.COK.WOOD.ZS
## 15956                                    SG.CTR.TRVL.EQ
## 15957                                 SG.DMK.ALLD.FN.ZS
## 15958                                 SG.DMK.DPCH.FN.ZS
## 15959                                 SG.DMK.FOOD.FN.ZS
## 15960                                 SG.DMK.HLTH.FN.ZS
## 15961                                 SG.DMK.HLTH.HB.ZS
## 15962                                 SG.DMK.HLTH.OT.ZS
## 15963                                 SG.DMK.HLTH.SE.ZS
## 15964                                 SG.DMK.HLTH.WF.ZS
## 15965                                 SG.DMK.HLTH.WH.ZS
## 15966                                 SG.DMK.NONE.FN.ZS
## 15967                                 SG.DMK.PRCH.FN.ZS
## 15968                                 SG.DMK.PRCH.HB.ZS
## 15969                                 SG.DMK.PRCH.OT.ZS
## 15970                                 SG.DMK.PRCH.SE.ZS
## 15971                                 SG.DMK.PRCH.WF.ZS
## 15972                                 SG.DMK.PRCH.WH.ZS
## 15973                                 SG.DMK.SRCR.FN.ZS
## 15974                                 SG.DMK.VISI.FN.ZS
## 15975                                 SG.DMK.VISI.HB.ZS
## 15976                                 SG.DMK.VISI.OT.ZS
## 15977                                 SG.DMK.VISI.SE.ZS
## 15978                                 SG.DMK.VISI.WF.ZS
## 15979                                 SG.DMK.VISI.WH.ZS
## 15980                                       SG.DML.PRGW
## 15981                                 SG.DNG.WORK.DN.EQ
## 15982                                    SG.GEN.LSOM.ZS
## 15983                                    SG.GEN.MNST.ZS
## 15984                                    SG.GEN.PARL.ZS
## 15985                                    SG.GEN.TECH.ZS
## 15986                                    SG.GET.JOBS.EQ
## 15987                                 SG.H2O.PRMS.HH.ZS
## 15988                                 SG.H2O.TL30.HH.ZS
## 15989                                 SG.H2O.TM30.HH.ZS
## 15990                                    SG.HLD.HEAD.EQ
## 15991                                    SG.HME.TRVL.EQ
## 15992                                    SG.IHT.ASST.EQ
## 15993                                 SG.IHT.ASST.PT.EQ
## 15994                                    SG.IND.WORK.EQ
## 15995                                    SG.JOB.NOPN.EQ
## 15996                                    SG.LAW.ASST.AR
## 15997                                       SG.LAW.CHMR
## 15998                                    SG.LAW.CRDD.GR
## 15999                                    SG.LAW.EQRM.WK
## 16000                                       SG.LAW.INDX
## 16001                                    SG.LAW.INDX.AS
## 16002                                    SG.LAW.INDX.EN
## 16003                                    SG.LAW.INDX.MO
## 16004                                    SG.LAW.INDX.MR
## 16005                                    SG.LAW.INDX.PE
## 16006                                    SG.LAW.INDX.PR
## 16007                                    SG.LAW.INDX.PY
## 16008                                    SG.LAW.INDX.WP
## 16009                                    SG.LAW.LEVE.PU
## 16010                                       SG.LAW.NMCN
## 16011                                    SG.LAW.NODC.HR
## 16012                                 SG.LAW.OBHB.MR.NO
## 16013                                       SG.LEG.DVAW
## 16014                                    SG.LEG.SXHR.EM
## 16015                                    SG.LOC.LIVE.EQ
## 16016                                 SG.MHG.PADP.RU.ZS
## 16017                                 SG.MHG.PADP.UR.ZS
## 16018                                    SG.MHG.PADP.ZS
## 16019                                 SG.MHG.PPDP.RU.ZS
## 16020                                 SG.MHG.PPDP.UR.ZS
## 16021                                    SG.MHG.PPDP.ZS
## 16022                                 SG.MHG.UMDP.RU.ZS
## 16023                                 SG.MHG.UMDP.UR.ZS
## 16024                                    SG.MHG.UMDP.ZS
## 16025                                    SG.MMR.LEVE.EP
## 16026                                    SG.NGT.WORK.EQ
## 16027                                       SG.NOD.CONS
## 16028                                    SG.OBT.DVRC.EQ
## 16029                                    SG.OPN.BANK.EQ
## 16030                              SG.OWN.HSAJ.FE.Q1.ZS
## 16031                              SG.OWN.HSAJ.FE.Q2.ZS
## 16032                              SG.OWN.HSAJ.FE.Q3.ZS
## 16033                              SG.OWN.HSAJ.FE.Q4.ZS
## 16034                              SG.OWN.HSAJ.FE.Q5.ZS
## 16035                                 SG.OWN.HSAJ.FE.ZS
## 16036                              SG.OWN.HSAJ.MA.Q1.ZS
## 16037                              SG.OWN.HSAJ.MA.Q2.ZS
## 16038                              SG.OWN.HSAJ.MA.Q3.ZS
## 16039                              SG.OWN.HSAJ.MA.Q4.ZS
## 16040                              SG.OWN.HSAJ.MA.Q5.ZS
## 16041                                 SG.OWN.HSAJ.MA.ZS
## 16042                              SG.OWN.HSAL.FE.Q1.ZS
## 16043                              SG.OWN.HSAL.FE.Q2.ZS
## 16044                              SG.OWN.HSAL.FE.Q3.ZS
## 16045                              SG.OWN.HSAL.FE.Q4.ZS
## 16046                              SG.OWN.HSAL.FE.Q5.ZS
## 16047                                 SG.OWN.HSAL.FE.ZS
## 16048                              SG.OWN.HSAL.MA.Q1.ZS
## 16049                              SG.OWN.HSAL.MA.Q2.ZS
## 16050                              SG.OWN.HSAL.MA.Q3.ZS
## 16051                              SG.OWN.HSAL.MA.Q4.ZS
## 16052                              SG.OWN.HSAL.MA.Q5.ZS
## 16053                                 SG.OWN.HSAL.MA.ZS
## 16054                              SG.OWN.HSJT.FE.Q1.ZS
## 16055                              SG.OWN.HSJT.FE.Q2.ZS
## 16056                              SG.OWN.HSJT.FE.Q3.ZS
## 16057                              SG.OWN.HSJT.FE.Q4.ZS
## 16058                              SG.OWN.HSJT.FE.Q5.ZS
## 16059                                 SG.OWN.HSJT.FE.ZS
## 16060                              SG.OWN.HSJT.MA.Q1.ZS
## 16061                              SG.OWN.HSJT.MA.Q2.ZS
## 16062                              SG.OWN.HSJT.MA.Q3.ZS
## 16063                              SG.OWN.HSJT.MA.Q4.ZS
## 16064                              SG.OWN.HSJT.MA.Q5.ZS
## 16065                                 SG.OWN.HSJT.MA.ZS
## 16066                              SG.OWN.HSNO.FE.Q1.ZS
## 16067                              SG.OWN.HSNO.FE.Q2.ZS
## 16068                              SG.OWN.HSNO.FE.Q3.ZS
## 16069                              SG.OWN.HSNO.FE.Q4.ZS
## 16070                              SG.OWN.HSNO.FE.Q5.ZS
## 16071                                 SG.OWN.HSNO.FE.ZS
## 16072                              SG.OWN.HSNO.MA.Q1.ZS
## 16073                              SG.OWN.HSNO.MA.Q2.ZS
## 16074                              SG.OWN.HSNO.MA.Q3.ZS
## 16075                              SG.OWN.HSNO.MA.Q4.ZS
## 16076                              SG.OWN.HSNO.MA.Q5.ZS
## 16077                                 SG.OWN.HSNO.MA.ZS
## 16078                              SG.OWN.LDAJ.FE.Q1.ZS
## 16079                              SG.OWN.LDAJ.FE.Q2.ZS
## 16080                              SG.OWN.LDAJ.FE.Q3.ZS
## 16081                              SG.OWN.LDAJ.FE.Q4.ZS
## 16082                              SG.OWN.LDAJ.FE.Q5.ZS
## 16083                                 SG.OWN.LDAJ.FE.ZS
## 16084                              SG.OWN.LDAJ.MA.Q1.ZS
## 16085                              SG.OWN.LDAJ.MA.Q2.ZS
## 16086                              SG.OWN.LDAJ.MA.Q3.ZS
## 16087                              SG.OWN.LDAJ.MA.Q4.ZS
## 16088                              SG.OWN.LDAJ.MA.Q5.ZS
## 16089                                 SG.OWN.LDAJ.MA.ZS
## 16090                              SG.OWN.LDAL.FE.Q1.ZS
## 16091                              SG.OWN.LDAL.FE.Q2.ZS
## 16092                              SG.OWN.LDAL.FE.Q3.ZS
## 16093                              SG.OWN.LDAL.FE.Q4.ZS
## 16094                              SG.OWN.LDAL.FE.Q5.ZS
## 16095                                 SG.OWN.LDAL.FE.ZS
## 16096                              SG.OWN.LDAL.MA.Q1.ZS
## 16097                              SG.OWN.LDAL.MA.Q2.ZS
## 16098                              SG.OWN.LDAL.MA.Q3.ZS
## 16099                              SG.OWN.LDAL.MA.Q4.ZS
## 16100                              SG.OWN.LDAL.MA.Q5.ZS
## 16101                                 SG.OWN.LDAL.MA.ZS
## 16102                              SG.OWN.LDJT.FE.Q1.ZS
## 16103                              SG.OWN.LDJT.FE.Q2.ZS
## 16104                              SG.OWN.LDJT.FE.Q3.ZS
## 16105                              SG.OWN.LDJT.FE.Q4.ZS
## 16106                              SG.OWN.LDJT.FE.Q5.ZS
## 16107                                 SG.OWN.LDJT.FE.ZS
## 16108                              SG.OWN.LDJT.MA.Q1.ZS
## 16109                              SG.OWN.LDJT.MA.Q2.ZS
## 16110                              SG.OWN.LDJT.MA.Q3.ZS
## 16111                              SG.OWN.LDJT.MA.Q4.ZS
## 16112                              SG.OWN.LDJT.MA.Q5.ZS
## 16113                                 SG.OWN.LDJT.MA.ZS
## 16114                              SG.OWN.LDNO.FE.Q1.ZS
## 16115                              SG.OWN.LDNO.FE.Q2.ZS
## 16116                              SG.OWN.LDNO.FE.Q3.ZS
## 16117                              SG.OWN.LDNO.FE.Q4.ZS
## 16118                              SG.OWN.LDNO.FE.Q5.ZS
## 16119                                 SG.OWN.LDNO.FE.ZS
## 16120                              SG.OWN.LDNO.MA.Q1.ZS
## 16121                              SG.OWN.LDNO.MA.Q2.ZS
## 16122                              SG.OWN.LDNO.MA.Q3.ZS
## 16123                              SG.OWN.LDNO.MA.Q4.ZS
## 16124                              SG.OWN.LDNO.MA.Q5.ZS
## 16125                                 SG.OWN.LDNO.MA.ZS
## 16126                                    SG.OWN.PRRT.IM
## 16127                                    SG.PEN.SXHR.EM
## 16128                                 SG.POP.MIGR.FE.ZS
## 16129                                 SG.REG.NLID.FE.ZS
## 16130                                 SG.REG.NLID.MA.ZS
## 16131                                    SG.REM.RIGT.EQ
## 16132                                 SG.RSX.BRTH.Q1.ZS
## 16133                                 SG.RSX.BRTH.Q2.ZS
## 16134                                 SG.RSX.BRTH.Q3.ZS
## 16135                                 SG.RSX.BRTH.Q4.ZS
## 16136                                 SG.RSX.BRTH.Q5.ZS
## 16137                                    SG.RSX.BRTH.ZS
## 16138                                 SG.RSX.NORS.Q1.ZS
## 16139                                 SG.RSX.NORS.Q2.ZS
## 16140                                 SG.RSX.NORS.Q3.ZS
## 16141                                 SG.RSX.NORS.Q4.ZS
## 16142                                 SG.RSX.NORS.Q5.ZS
## 16143                                    SG.RSX.NORS.ZS
## 16144                                 SG.RSX.REAS.Q1.ZS
## 16145                                 SG.RSX.REAS.Q2.ZS
## 16146                                 SG.RSX.REAS.Q3.ZS
## 16147                                 SG.RSX.REAS.Q4.ZS
## 16148                                 SG.RSX.REAS.Q5.ZS
## 16149                                    SG.RSX.REAS.ZS
## 16150                                 SG.RSX.SXOT.Q1.ZS
## 16151                                 SG.RSX.SXOT.Q2.ZS
## 16152                                 SG.RSX.SXOT.Q3.ZS
## 16153                                 SG.RSX.SXOT.Q4.ZS
## 16154                                 SG.RSX.SXOT.Q5.ZS
## 16155                                    SG.RSX.SXOT.ZS
## 16156                                 SG.RSX.TIRD.Q1.ZS
## 16157                                 SG.RSX.TIRD.Q2.ZS
## 16158                                 SG.RSX.TIRD.Q3.ZS
## 16159                                 SG.RSX.TIRD.Q4.ZS
## 16160                                 SG.RSX.TIRD.Q5.ZS
## 16161                                    SG.RSX.TIRD.ZS
## 16162                                 SG.RSX.TMDS.Q1.ZS
## 16163                                 SG.RSX.TMDS.Q2.ZS
## 16164                                 SG.RSX.TMDS.Q3.ZS
## 16165                                 SG.RSX.TMDS.Q4.ZS
## 16166                                 SG.RSX.TMDS.Q5.ZS
## 16167                                    SG.RSX.TMDS.ZS
## 16168                                    SG.TIM.UWRK.FE
## 16169                                    SG.TIM.UWRK.MA
## 16170                                    SG.VAW.1549.ZS
## 16171                                    SG.VAW.AFSX.ZS
## 16172                                 SG.VAW.ARGU.Q1.ZS
## 16173                                 SG.VAW.ARGU.Q2.ZS
## 16174                                 SG.VAW.ARGU.Q3.ZS
## 16175                                 SG.VAW.ARGU.Q4.ZS
## 16176                                 SG.VAW.ARGU.Q5.ZS
## 16177                                    SG.VAW.ARGU.ZS
## 16178                                 SG.VAW.BURN.Q1.ZS
## 16179                                 SG.VAW.BURN.Q2.ZS
## 16180                                 SG.VAW.BURN.Q3.ZS
## 16181                                 SG.VAW.BURN.Q4.ZS
## 16182                                 SG.VAW.BURN.Q5.ZS
## 16183                                    SG.VAW.BURN.ZS
## 16184                                 SG.VAW.GOES.Q1.ZS
## 16185                                 SG.VAW.GOES.Q2.ZS
## 16186                                 SG.VAW.GOES.Q3.ZS
## 16187                                 SG.VAW.GOES.Q4.ZS
## 16188                                 SG.VAW.GOES.Q5.ZS
## 16189                                    SG.VAW.GOES.ZS
## 16190                                    SG.VAW.HLPV.ZS
## 16191                                    SG.VAW.IPVE.ZS
## 16192                                    SG.VAW.MARR.ZS
## 16193                                 SG.VAW.NEGL.Q1.ZS
## 16194                                 SG.VAW.NEGL.Q2.ZS
## 16195                                 SG.VAW.NEGL.Q3.ZS
## 16196                                 SG.VAW.NEGL.Q4.ZS
## 16197                                 SG.VAW.NEGL.Q5.ZS
## 16198                                    SG.VAW.NEGL.ZS
## 16199                                 SG.VAW.REAS.Q1.ZS
## 16200                                 SG.VAW.REAS.Q2.ZS
## 16201                                 SG.VAW.REAS.Q3.ZS
## 16202                                 SG.VAW.REAS.Q4.ZS
## 16203                                 SG.VAW.REAS.Q5.ZS
## 16204                                    SG.VAW.REAS.ZS
## 16205                                 SG.VAW.REFU.Q1.ZS
## 16206                                 SG.VAW.REFU.Q2.ZS
## 16207                                 SG.VAW.REFU.Q3.ZS
## 16208                                 SG.VAW.REFU.Q4.ZS
## 16209                                 SG.VAW.REFU.Q5.ZS
## 16210                                    SG.VAW.REFU.ZS
## 16211                                 SH.ACS.ALON.Q1.ZS
## 16212                                 SH.ACS.ALON.Q2.ZS
## 16213                                 SH.ACS.ALON.Q3.ZS
## 16214                                 SH.ACS.ALON.Q4.ZS
## 16215                                 SH.ACS.ALON.Q5.ZS
## 16216                                 SH.ACS.DIST.Q1.ZS
## 16217                                 SH.ACS.DIST.Q2.ZS
## 16218                                 SH.ACS.DIST.Q3.ZS
## 16219                                 SH.ACS.DIST.Q4.ZS
## 16220                                 SH.ACS.DIST.Q5.ZS
## 16221                                 SH.ACS.MONY.Q1.ZS
## 16222                                 SH.ACS.MONY.Q2.ZS
## 16223                                 SH.ACS.MONY.Q3.ZS
## 16224                                 SH.ACS.MONY.Q4.ZS
## 16225                                 SH.ACS.MONY.Q5.ZS
## 16226                                 SH.ACS.NOFP.Q1.ZS
## 16227                                 SH.ACS.NOFP.Q2.ZS
## 16228                                 SH.ACS.NOFP.Q3.ZS
## 16229                                 SH.ACS.NOFP.Q4.ZS
## 16230                                 SH.ACS.NOFP.Q5.ZS
## 16231                                 SH.ACS.PERM.Q1.ZS
## 16232                                 SH.ACS.PERM.Q2.ZS
## 16233                                 SH.ACS.PERM.Q3.ZS
## 16234                                 SH.ACS.PERM.Q4.ZS
## 16235                                 SH.ACS.PERM.Q5.ZS
## 16236                                 SH.ACS.PROB.Q1.ZS
## 16237                                 SH.ACS.PROB.Q2.ZS
## 16238                                 SH.ACS.PROB.Q3.ZS
## 16239                                 SH.ACS.PROB.Q4.ZS
## 16240                                 SH.ACS.PROB.Q5.ZS
## 16241                                 SH.ACS.TRAN.Q1.ZS
## 16242                                 SH.ACS.TRAN.Q2.ZS
## 16243                                 SH.ACS.TRAN.Q3.ZS
## 16244                                 SH.ACS.TRAN.Q4.ZS
## 16245                                 SH.ACS.TRAN.Q5.ZS
## 16246                                 SH.ACS.WHER.Q1.ZS
## 16247                                 SH.ACS.WHER.Q2.ZS
## 16248                                 SH.ACS.WHER.Q3.ZS
## 16249                                 SH.ACS.WHER.Q4.ZS
## 16250                                 SH.ACS.WHER.Q5.ZS
## 16251                                       SH.ADM.INPT
## 16252                                 SH.ALC.PCAP.FE.LI
## 16253                                    SH.ALC.PCAP.LI
## 16254                                 SH.ALC.PCAP.MA.LI
## 16255                                    SH.ANM.ALLW.ZS
## 16256                                    SH.ANM.CHLD.ZS
## 16257                                    SH.ANM.NPRG.ZS
## 16258                                 SH.CON.1524.FE.ZS
## 16259                                 SH.CON.1524.MA.ZS
## 16260                                 SH.CON.AIDS.FE.ZS
## 16261                                 SH.CON.AIDS.MA.ZS
## 16262                                        SH.DR.TOTL
## 16263                                       SH.DTH.0509
## 16264                                       SH.DTH.0514
## 16265                                       SH.DTH.1014
## 16266                                       SH.DTH.1019
## 16267                                       SH.DTH.1519
## 16268                                       SH.DTH.2024
## 16269                            SH.DTH.COMM.0004.FE.ZS
## 16270                            SH.DTH.COMM.0004.MA.ZS
## 16271                               SH.DTH.COMM.0004.ZS
## 16272                            SH.DTH.COMM.0514.FE.ZS
## 16273                            SH.DTH.COMM.0514.MA.ZS
## 16274                               SH.DTH.COMM.0514.ZS
## 16275                            SH.DTH.COMM.1559.FE.ZS
## 16276                            SH.DTH.COMM.1559.MA.ZS
## 16277                               SH.DTH.COMM.1559.ZS
## 16278                            SH.DTH.COMM.60UP.FE.ZS
## 16279                            SH.DTH.COMM.60UP.MA.ZS
## 16280                               SH.DTH.COMM.60UP.ZS
## 16281                                 SH.DTH.COMM.FE.ZS
## 16282                                 SH.DTH.COMM.MA.ZS
## 16283                                    SH.DTH.COMM.ZS
## 16284                                       SH.DTH.IMRT
## 16285                                    SH.DTH.IMRT.FE
## 16286                                    SH.DTH.IMRT.MA
## 16287                            SH.DTH.INJR.0004.FE.ZS
## 16288                            SH.DTH.INJR.0004.MA.ZS
## 16289                               SH.DTH.INJR.0004.ZS
## 16290                            SH.DTH.INJR.0514.FE.ZS
## 16291                            SH.DTH.INJR.0514.MA.ZS
## 16292                               SH.DTH.INJR.0514.ZS
## 16293                            SH.DTH.INJR.1559.FE.ZS
## 16294                            SH.DTH.INJR.1559.MA.ZS
## 16295                               SH.DTH.INJR.1559.ZS
## 16296                            SH.DTH.INJR.60UP.FE.ZS
## 16297                            SH.DTH.INJR.60UP.MA.ZS
## 16298                               SH.DTH.INJR.60UP.ZS
## 16299                                 SH.DTH.INJR.FE.ZS
## 16300                                 SH.DTH.INJR.MA.ZS
## 16301                                    SH.DTH.INJR.ZS
## 16302                                       SH.DTH.MORT
## 16303                                    SH.DTH.MORT.FE
## 16304                                    SH.DTH.MORT.MA
## 16305                            SH.DTH.NCOM.0004.FE.ZS
## 16306                            SH.DTH.NCOM.0004.MA.ZS
## 16307                               SH.DTH.NCOM.0004.ZS
## 16308                            SH.DTH.NCOM.0514.FE.ZS
## 16309                            SH.DTH.NCOM.0514.MA.ZS
## 16310                               SH.DTH.NCOM.0514.ZS
## 16311                            SH.DTH.NCOM.1559.FE.ZS
## 16312                            SH.DTH.NCOM.1559.MA.ZS
## 16313                               SH.DTH.NCOM.1559.ZS
## 16314                            SH.DTH.NCOM.60UP.FE.ZS
## 16315                            SH.DTH.NCOM.60UP.MA.ZS
## 16316                               SH.DTH.NCOM.60UP.ZS
## 16317                                 SH.DTH.NCOM.FE.ZS
## 16318                                 SH.DTH.NCOM.MA.ZS
## 16319                                    SH.DTH.NCOM.ZS
## 16320                                       SH.DTH.NMRT
## 16321                                       SH.DTH.STLB
## 16322                                       SH.DYN.0509
## 16323                                       SH.DYN.0514
## 16324                                       SH.DYN.1014
## 16325                                       SH.DYN.1019
## 16326                                       SH.DYN.1519
## 16327                                       SH.DYN.2024
## 16328                                       SH.DYN.AIDS
## 16329                                    SH.DYN.AIDS.DH
## 16330                                 SH.DYN.AIDS.FE.ZS
## 16331                                 SH.DYN.AIDS.HG.ZS
## 16332                                 SH.DYN.AIDS.LW.ZS
## 16333                                    SH.DYN.AIDS.ZS
## 16334                                    SH.DYN.CHLD.FE
## 16335                                    SH.DYN.CHLD.MA
## 16336                                       SH.DYN.MORT
## 16337                                    SH.DYN.MORT.FE
## 16338                                    SH.DYN.MORT.MA
## 16339                                    SH.DYN.MORT.Q1
## 16340                                    SH.DYN.MORT.Q2
## 16341                                    SH.DYN.MORT.Q3
## 16342                                    SH.DYN.MORT.Q4
## 16343                                    SH.DYN.MORT.Q5
## 16344                                 SH.DYN.NCOM.FE.ZS
## 16345                                 SH.DYN.NCOM.MA.ZS
## 16346                                    SH.DYN.NCOM.ZS
## 16347                                       SH.DYN.NMRT
## 16348                                       SH.DYN.STLB
## 16349                                 SH.FPL.ACPT.Q1.ZS
## 16350                                 SH.FPL.ACPT.Q2.ZS
## 16351                                 SH.FPL.ACPT.Q3.ZS
## 16352                                 SH.FPL.ACPT.Q4.ZS
## 16353                                 SH.FPL.ACPT.Q5.ZS
## 16354                                 SH.FPL.FBRT.Q1.ZS
## 16355                                 SH.FPL.FBRT.Q2.ZS
## 16356                                 SH.FPL.FBRT.Q3.ZS
## 16357                                 SH.FPL.FBRT.Q4.ZS
## 16358                                 SH.FPL.FBRT.Q5.ZS
## 16359                                 SH.FPL.FMAR.Q1.ZS
## 16360                                 SH.FPL.FMAR.Q2.ZS
## 16361                                 SH.FPL.FMAR.Q3.ZS
## 16362                                 SH.FPL.FMAR.Q4.ZS
## 16363                                 SH.FPL.FMAR.Q5.ZS
## 16364                                 SH.FPL.FSEX.Q1.ZS
## 16365                                 SH.FPL.FSEX.Q2.ZS
## 16366                                 SH.FPL.FSEX.Q3.ZS
## 16367                                 SH.FPL.FSEX.Q4.ZS
## 16368                                 SH.FPL.FSEX.Q5.ZS
## 16369                                 SH.FPL.HEAR.Q1.ZS
## 16370                                 SH.FPL.HEAR.Q2.ZS
## 16371                                 SH.FPL.HEAR.Q3.ZS
## 16372                                 SH.FPL.HEAR.Q4.ZS
## 16373                                 SH.FPL.HEAR.Q5.ZS
## 16374                                    SH.FPL.IDLC.Q1
## 16375                                    SH.FPL.IDLC.Q2
## 16376                                    SH.FPL.IDLC.Q3
## 16377                                    SH.FPL.IDLC.Q4
## 16378                                    SH.FPL.IDLC.Q5
## 16379                                 SH.FPL.KNOW.Q1.ZS
## 16380                                 SH.FPL.KNOW.Q2.ZS
## 16381                                 SH.FPL.KNOW.Q3.ZS
## 16382                                 SH.FPL.KNOW.Q4.ZS
## 16383                                 SH.FPL.KNOW.Q5.ZS
## 16384                                 SH.FPL.KWMD.Q1.ZS
## 16385                                 SH.FPL.KWMD.Q2.ZS
## 16386                                 SH.FPL.KWMD.Q3.ZS
## 16387                                 SH.FPL.KWMD.Q4.ZS
## 16388                                 SH.FPL.KWMD.Q5.ZS
## 16389                                 SH.FPL.LIMT.Q1.ZS
## 16390                                 SH.FPL.LIMT.Q2.ZS
## 16391                                 SH.FPL.LIMT.Q3.ZS
## 16392                                 SH.FPL.LIMT.Q4.ZS
## 16393                                 SH.FPL.LIMT.Q5.ZS
## 16394                                    SH.FPL.MBRI.Q1
## 16395                                    SH.FPL.MBRI.Q2
## 16396                                    SH.FPL.MBRI.Q3
## 16397                                    SH.FPL.MBRI.Q4
## 16398                                    SH.FPL.MBRI.Q5
## 16399                                 SH.FPL.MSTM.Q1.ZS
## 16400                                 SH.FPL.MSTM.Q2.ZS
## 16401                                 SH.FPL.MSTM.Q3.ZS
## 16402                                 SH.FPL.MSTM.Q4.ZS
## 16403                                 SH.FPL.MSTM.Q5.ZS
## 16404                                 SH.FPL.READ.Q1.ZS
## 16405                                 SH.FPL.READ.Q2.ZS
## 16406                                 SH.FPL.READ.Q3.ZS
## 16407                                 SH.FPL.READ.Q4.ZS
## 16408                                 SH.FPL.READ.Q5.ZS
## 16409                                    SH.FPL.SATI.ZS
## 16410                                    SH.FPL.SATM.ZS
## 16411                                 SH.FPL.UWTD.Q1.ZS
## 16412                                 SH.FPL.UWTD.Q2.ZS
## 16413                                 SH.FPL.UWTD.Q3.ZS
## 16414                                 SH.FPL.UWTD.Q4.ZS
## 16415                                 SH.FPL.UWTD.Q5.ZS
## 16416                                 SH.FPL.WNTD.Q1.ZS
## 16417                                 SH.FPL.WNTD.Q2.ZS
## 16418                                 SH.FPL.WNTD.Q3.ZS
## 16419                                 SH.FPL.WNTD.Q4.ZS
## 16420                                 SH.FPL.WNTD.Q5.ZS
## 16421                                 SH.H2O.BASW.Q1.ZS
## 16422                                 SH.H2O.BASW.Q2.ZS
## 16423                                 SH.H2O.BASW.Q3.ZS
## 16424                                 SH.H2O.BASW.Q4.ZS
## 16425                                 SH.H2O.BASW.Q5.ZS
## 16426                              SH.H2O.BASW.RU.Q1.ZS
## 16427                              SH.H2O.BASW.RU.Q2.ZS
## 16428                              SH.H2O.BASW.RU.Q3.ZS
## 16429                              SH.H2O.BASW.RU.Q4.ZS
## 16430                              SH.H2O.BASW.RU.Q5.ZS
## 16431                                 SH.H2O.BASW.RU.ZS
## 16432                              SH.H2O.BASW.UR.Q1.ZS
## 16433                              SH.H2O.BASW.UR.Q2.ZS
## 16434                              SH.H2O.BASW.UR.Q3.ZS
## 16435                              SH.H2O.BASW.UR.Q4.ZS
## 16436                              SH.H2O.BASW.UR.Q5.ZS
## 16437                                 SH.H2O.BASW.UR.ZS
## 16438                                    SH.H2O.BASW.ZS
## 16439                                 SH.H2O.SAFE.RU.ZS
## 16440                                 SH.H2O.SAFE.UR.ZS
## 16441                                    SH.H2O.SAFE.ZS
## 16442                                 SH.H2O.SMDW.RU.ZS
## 16443                                 SH.H2O.SMDW.UR.ZS
## 16444                                    SH.H2O.SMDW.ZS
## 16445                                       SH.HIV.0014
## 16446                              SH.HIV.1524.FE.HG.ZS
## 16447                              SH.HIV.1524.FE.LW.ZS
## 16448                                 SH.HIV.1524.FE.ZS
## 16449                              SH.HIV.1524.KW.FE.ZS
## 16450                              SH.HIV.1524.KW.MA.ZS
## 16451                              SH.HIV.1524.MA.HG.ZS
## 16452                              SH.HIV.1524.MA.LW.ZS
## 16453                                 SH.HIV.1524.MA.ZS
## 16454                                 SH.HIV.ARTC.FE.ZS
## 16455                                 SH.HIV.ARTC.MA.ZS
## 16456                                    SH.HIV.ARTC.ZS
## 16457                                 SH.HIV.DTS.HG.NUM
## 16458                                 SH.HIV.DTS.LW.NUM
## 16459                                    SH.HIV.DTS.NUM
## 16460                                       SH.HIV.INCD
## 16461                                    SH.HIV.INCD.14
## 16462                                 SH.HIV.INCD.50.P3
## 16463                                 SH.HIV.INCD.FE.P3
## 16464                                 SH.HIV.INCD.MA.P3
## 16465                                    SH.HIV.INCD.TL
## 16466                                 SH.HIV.INCD.TL.P3
## 16467                                    SH.HIV.INCD.YG
## 16468                              SH.HIV.INCD.YG.FE.P3
## 16469                              SH.HIV.INCD.YG.MA.P3
## 16470                                 SH.HIV.INCD.YG.P3
## 16471                                    SH.HIV.INCD.ZS
## 16472                                 SH.HIV.KNOW.FE.ZS
## 16473                                 SH.HIV.KNOW.MA.ZS
## 16474                            SH.HIV.NEW.0014.HG.NUM
## 16475                            SH.HIV.NEW.0014.LW.NUM
## 16476                               SH.HIV.NEW.0014.NUM
## 16477                            SH.HIV.NEW.TOTL.HG.NUM
## 16478                            SH.HIV.NEW.TOTL.LW.NUM
## 16479                               SH.HIV.NEW.TOTL.NUM
## 16480                                 SH.HIV.ORP.HG.NUM
## 16481                                 SH.HIV.ORP.LW.NUM
## 16482                                    SH.HIV.ORP.NUM
## 16483                                       SH.HIV.ORPH
## 16484                                    SH.HIV.PMTC.ZS
## 16485                          SH.HIV.PREG.VIRALS.HG.ZS
## 16486                          SH.HIV.PREG.VIRALS.LW.ZS
## 16487                            SH.HIV.PREG.VIRALS.NUM
## 16488                             SH.HIV.PREG.VIRALS.ZS
## 16489                                       SH.HIV.TOTL
## 16490                                SH.HIV.TOTL.HG.NUM
## 16491                                SH.HIV.TOTL.LW.NUM
## 16492                                   SH.HIV.TOTL.NUM
## 16493                                      SH.HOSP.TOTL
## 16494                                 SH.HTN.PREV.FE.ZS
## 16495                                 SH.HTN.PREV.MA.ZS
## 16496                                    SH.HTN.PREV.ZS
## 16497                                 SH.HTN.TRET.FE.ZS
## 16498                                 SH.HTN.TRET.MA.ZS
## 16499                                    SH.HTN.TRET.ZS
## 16500                                 SH.IMM.ALLV.Q1.ZS
## 16501                                 SH.IMM.ALLV.Q2.ZS
## 16502                                 SH.IMM.ALLV.Q3.ZS
## 16503                                 SH.IMM.ALLV.Q4.ZS
## 16504                                 SH.IMM.ALLV.Q5.ZS
## 16505                                    SH.IMM.CHLD.ZS
## 16506                                       SH.IMM.HEPB
## 16507                                       SH.IMM.HIB3
## 16508                                       SH.IMM.IBCG
## 16509                                 SH.IMM.IBCG.Q1.ZS
## 16510                                 SH.IMM.IBCG.Q2.ZS
## 16511                                 SH.IMM.IBCG.Q3.ZS
## 16512                                 SH.IMM.IBCG.Q4.ZS
## 16513                                 SH.IMM.IBCG.Q5.ZS
## 16514                                       SH.IMM.IDPT
## 16515                                 SH.IMM.IDPT.Q1.ZS
## 16516                                 SH.IMM.IDPT.Q2.ZS
## 16517                                 SH.IMM.IDPT.Q3.ZS
## 16518                                 SH.IMM.IDPT.Q4.ZS
## 16519                                 SH.IMM.IDPT.Q5.ZS
## 16520                                       SH.IMM.MEA2
## 16521                                       SH.IMM.MEAS
## 16522                                 SH.IMM.MEAS.Q1.ZS
## 16523                                 SH.IMM.MEAS.Q2.ZS
## 16524                                 SH.IMM.MEAS.Q3.ZS
## 16525                                 SH.IMM.MEAS.Q4.ZS
## 16526                                 SH.IMM.MEAS.Q5.ZS
## 16527                                 SH.IMM.NONE.Q1.ZS
## 16528                                 SH.IMM.NONE.Q2.ZS
## 16529                                 SH.IMM.NONE.Q3.ZS
## 16530                                 SH.IMM.NONE.Q4.ZS
## 16531                                 SH.IMM.NONE.Q5.ZS
## 16532                                       SH.IMM.POL3
## 16533                                    SH.MED.BEDS.ZS
## 16534                                    SH.MED.CMHW.P3
## 16535                                  SH.MED.MWIV.TOTL
## 16536                                    SH.MED.NUMW.P3
## 16537                                    SH.MED.NURS.ZS
## 16538                                    SH.MED.PHYS.ZS
## 16539                                    SH.MED.SAOP.P5
## 16540                                  SH.MLR.CSES.TOTL
## 16541                               SH.MLR.DTHS.CHLD.ZS
## 16542                                  SH.MLR.DTHS.TOTL
## 16543                                       SH.MLR.INCD
## 16544                                    SH.MLR.INCD.P3
## 16545                                    SH.MLR.IPTP.ZS
## 16546                                 SH.MLR.ITN.1HH.ZS
## 16547                                 SH.MLR.NETA.Q1.ZS
## 16548                                 SH.MLR.NETA.Q2.ZS
## 16549                                 SH.MLR.NETA.Q3.ZS
## 16550                                 SH.MLR.NETA.Q4.ZS
## 16551                                 SH.MLR.NETA.Q5.ZS
## 16552                                 SH.MLR.NETH.Q1.ZS
## 16553                                 SH.MLR.NETH.Q2.ZS
## 16554                                 SH.MLR.NETH.Q3.ZS
## 16555                                 SH.MLR.NETH.Q4.ZS
## 16556                                 SH.MLR.NETH.Q5.ZS
## 16557                                 SH.MLR.NETP.Q1.ZS
## 16558                                 SH.MLR.NETP.Q2.ZS
## 16559                                 SH.MLR.NETP.Q3.ZS
## 16560                                 SH.MLR.NETP.Q4.ZS
## 16561                                 SH.MLR.NETP.Q5.ZS
## 16562                                 SH.MLR.NETS.Q1.ZS
## 16563                                 SH.MLR.NETS.Q2.ZS
## 16564                                 SH.MLR.NETS.Q3.ZS
## 16565                                 SH.MLR.NETS.Q4.ZS
## 16566                                 SH.MLR.NETS.Q5.ZS
## 16567                                    SH.MLR.NETS.ZS
## 16568                                 SH.MLR.NTHI.Q1.ZS
## 16569                                 SH.MLR.NTHI.Q2.ZS
## 16570                                 SH.MLR.NTHI.Q3.ZS
## 16571                                 SH.MLR.NTHI.Q4.ZS
## 16572                                 SH.MLR.NTHI.Q5.ZS
## 16573                                 SH.MLR.NTPI.Q1.ZS
## 16574                                 SH.MLR.NTPI.Q2.ZS
## 16575                                 SH.MLR.NTPI.Q3.ZS
## 16576                                 SH.MLR.NTPI.Q4.ZS
## 16577                                 SH.MLR.NTPI.Q5.ZS
## 16578                               SH.MLR.PREG.2IPT.ZS
## 16579                                 SH.MLR.SPFN.Q1.ZS
## 16580                                 SH.MLR.SPFN.Q2.ZS
## 16581                                 SH.MLR.SPFN.Q3.ZS
## 16582                                 SH.MLR.SPFN.Q4.ZS
## 16583                                 SH.MLR.SPFN.Q5.ZS
## 16584                                 SH.MLR.TRET.Q1.ZS
## 16585                                 SH.MLR.TRET.Q2.ZS
## 16586                                 SH.MLR.TRET.Q3.ZS
## 16587                                 SH.MLR.TRET.Q4.ZS
## 16588                                 SH.MLR.TRET.Q5.ZS
## 16589                                    SH.MLR.TRET.ZS
## 16590                                       SH.MMR.DTHS
## 16591                                       SH.MMR.LEVE
## 16592                                    SH.MMR.LEVE.AL
## 16593                                    SH.MMR.LEVE.GT
## 16594                                       SH.MMR.RISK
## 16595                                    SH.MMR.RISK.ZS
## 16596                                    SH.MMR.WAGE.ZS
## 16597                                        SH.MORB.ZS
## 16598                                       SH.PAR.LEVE
## 16599                                    SH.PAR.LEVE.AL
## 16600                                    SH.PAR.LEVE.FE
## 16601                                    SH.PAR.LEVE.MA
## 16602                                  SH.POLINDES.TOTL
## 16603                                       SH.PRG.ANEM
## 16604                                    SH.PRG.SYPH.ZS
## 16605                                       SH.PRV.SMOK
## 16606                                    SH.PRV.SMOK.FE
## 16607                              SH.PRV.SMOK.FE.Q1.ZS
## 16608                              SH.PRV.SMOK.FE.Q2.ZS
## 16609                              SH.PRV.SMOK.FE.Q3.ZS
## 16610                              SH.PRV.SMOK.FE.Q4.ZS
## 16611                              SH.PRV.SMOK.FE.Q5.ZS
## 16612                                    SH.PRV.SMOK.MA
## 16613                                       SH.PTR.LEVE
## 16614                                    SH.PTR.LEVE.AL
## 16615                                 SH.PUSKESMAS.TOTL
## 16616                                    SH.SGR.CRSK.ZS
## 16617                                    SH.SGR.IRSK.ZS
## 16618                                    SH.SGR.PROC.P5
## 16619                                    SH.STA.ACCH.ZS
## 16620                                       SH.STA.ACSN
## 16621                                    SH.STA.ACSN.RU
## 16622                                    SH.STA.ACSN.UR
## 16623                                 SH.STA.AIRP.FE.P5
## 16624                                 SH.STA.AIRP.MA.P5
## 16625                                    SH.STA.AIRP.P5
## 16626                                 SH.STA.ANCP.Q1.ZS
## 16627                                 SH.STA.ANCP.Q2.ZS
## 16628                                 SH.STA.ANCP.Q3.ZS
## 16629                                 SH.STA.ANCP.Q4.ZS
## 16630                                 SH.STA.ANCP.Q5.ZS
## 16631                                    SH.STA.ANV4.ZS
## 16632                                 SH.STA.ANVC.Q1.ZS
## 16633                                 SH.STA.ANVC.Q2.ZS
## 16634                                 SH.STA.ANVC.Q3.ZS
## 16635                                 SH.STA.ANVC.Q4.ZS
## 16636                                 SH.STA.ANVC.Q5.ZS
## 16637                                    SH.STA.ANVC.ZS
## 16638                                 SH.STA.ANVP.Q1.ZS
## 16639                                 SH.STA.ANVP.Q2.ZS
## 16640                                 SH.STA.ANVP.Q3.ZS
## 16641                                 SH.STA.ANVP.Q4.ZS
## 16642                                 SH.STA.ANVP.Q5.ZS
## 16643                                 SH.STA.ARIC.Q1.ZS
## 16644                                 SH.STA.ARIC.Q2.ZS
## 16645                                 SH.STA.ARIC.Q3.ZS
## 16646                                 SH.STA.ARIC.Q4.ZS
## 16647                                 SH.STA.ARIC.Q5.ZS
## 16648                                    SH.STA.ARIC.ZS
## 16649                                 SH.STA.ARIF.Q1.ZS
## 16650                                 SH.STA.ARIF.Q2.ZS
## 16651                                 SH.STA.ARIF.Q3.ZS
## 16652                                 SH.STA.ARIF.Q4.ZS
## 16653                                 SH.STA.ARIF.Q5.ZS
## 16654                                    SH.STA.ARIF.ZS
## 16655                                 SH.STA.BASS.Q1.ZS
## 16656                                 SH.STA.BASS.Q2.ZS
## 16657                                 SH.STA.BASS.Q3.ZS
## 16658                                 SH.STA.BASS.Q4.ZS
## 16659                                 SH.STA.BASS.Q5.ZS
## 16660                              SH.STA.BASS.RU.Q1.ZS
## 16661                              SH.STA.BASS.RU.Q2.ZS
## 16662                              SH.STA.BASS.RU.Q3.ZS
## 16663                              SH.STA.BASS.RU.Q4.ZS
## 16664                              SH.STA.BASS.RU.Q5.ZS
## 16665                                 SH.STA.BASS.RU.ZS
## 16666                              SH.STA.BASS.UR.Q1.ZS
## 16667                              SH.STA.BASS.UR.Q2.ZS
## 16668                              SH.STA.BASS.UR.Q3.ZS
## 16669                              SH.STA.BASS.UR.Q4.ZS
## 16670                              SH.STA.BASS.UR.Q5.ZS
## 16671                                 SH.STA.BASS.UR.ZS
## 16672                                    SH.STA.BASS.ZS
## 16673                                 SH.STA.BFED.Q1.ZS
## 16674                                 SH.STA.BFED.Q2.ZS
## 16675                                 SH.STA.BFED.Q3.ZS
## 16676                                 SH.STA.BFED.Q4.ZS
## 16677                                 SH.STA.BFED.Q5.ZS
## 16678                                    SH.STA.BFED.ZS
## 16679                                 SH.STA.BRTC.Q1.ZS
## 16680                                 SH.STA.BRTC.Q2.ZS
## 16681                                 SH.STA.BRTC.Q3.ZS
## 16682                                 SH.STA.BRTC.Q4.ZS
## 16683                                 SH.STA.BRTC.Q5.ZS
## 16684                                    SH.STA.BRTC.ZS
## 16685                                 SH.STA.BRTF.Q1.ZS
## 16686                                 SH.STA.BRTF.Q2.ZS
## 16687                                 SH.STA.BRTF.Q3.ZS
## 16688                                 SH.STA.BRTF.Q4.ZS
## 16689                                 SH.STA.BRTF.Q5.ZS
## 16690                                 SH.STA.BRTP.Q1.ZS
## 16691                                 SH.STA.BRTP.Q2.ZS
## 16692                                 SH.STA.BRTP.Q3.ZS
## 16693                                 SH.STA.BRTP.Q4.ZS
## 16694                                 SH.STA.BRTP.Q5.ZS
## 16695                                    SH.STA.BRTW.ZS
## 16696                                    SH.STA.DIAB.ZS
## 16697                                 SH.STA.DIRH.Q1.ZS
## 16698                                 SH.STA.DIRH.Q2.ZS
## 16699                                 SH.STA.DIRH.Q3.ZS
## 16700                                 SH.STA.DIRH.Q4.ZS
## 16701                                 SH.STA.DIRH.Q5.ZS
## 16702                                    SH.STA.DIRH.ZS
## 16703                                 SH.STA.FEVR.Q1.ZS
## 16704                                 SH.STA.FEVR.Q2.ZS
## 16705                                 SH.STA.FEVR.Q3.ZS
## 16706                                 SH.STA.FEVR.Q4.ZS
## 16707                                 SH.STA.FEVR.Q5.ZS
## 16708                                 SH.STA.FGMS.Q1.ZS
## 16709                                 SH.STA.FGMS.Q2.ZS
## 16710                                 SH.STA.FGMS.Q3.ZS
## 16711                                 SH.STA.FGMS.Q4.ZS
## 16712                                 SH.STA.FGMS.Q5.ZS
## 16713                                    SH.STA.FGMS.ZS
## 16714                                 SH.STA.HYGN.Q1.ZS
## 16715                                 SH.STA.HYGN.Q2.ZS
## 16716                                 SH.STA.HYGN.Q3.ZS
## 16717                                 SH.STA.HYGN.Q4.ZS
## 16718                                 SH.STA.HYGN.Q5.ZS
## 16719                              SH.STA.HYGN.RU.Q1.ZS
## 16720                              SH.STA.HYGN.RU.Q2.ZS
## 16721                              SH.STA.HYGN.RU.Q3.ZS
## 16722                              SH.STA.HYGN.RU.Q4.ZS
## 16723                              SH.STA.HYGN.RU.Q5.ZS
## 16724                                 SH.STA.HYGN.RU.ZS
## 16725                              SH.STA.HYGN.UR.Q1.ZS
## 16726                              SH.STA.HYGN.UR.Q2.ZS
## 16727                              SH.STA.HYGN.UR.Q3.ZS
## 16728                              SH.STA.HYGN.UR.Q4.ZS
## 16729                              SH.STA.HYGN.UR.Q5.ZS
## 16730                                 SH.STA.HYGN.UR.ZS
## 16731                                    SH.STA.HYGN.ZS
## 16732                                    SH.STA.IYCF.ZS
## 16733                                 SH.STA.LBMI.Q1.ZS
## 16734                                 SH.STA.LBMI.Q2.ZS
## 16735                                 SH.STA.LBMI.Q3.ZS
## 16736                                 SH.STA.LBMI.Q4.ZS
## 16737                                 SH.STA.LBMI.Q5.ZS
## 16738                                 SH.STA.MALN.FE.ZS
## 16739                                 SH.STA.MALN.MA.ZS
## 16740                                 SH.STA.MALN.Q1.ZS
## 16741                                 SH.STA.MALN.Q2.ZS
## 16742                                 SH.STA.MALN.Q3.ZS
## 16743                                 SH.STA.MALN.Q4.ZS
## 16744                                 SH.STA.MALN.Q5.ZS
## 16745                                    SH.STA.MALN.ZS
## 16746                                       SH.STA.MALR
## 16747                                 SH.STA.MLN3.Q1.ZS
## 16748                                 SH.STA.MLN3.Q2.ZS
## 16749                                 SH.STA.MLN3.Q3.ZS
## 16750                                 SH.STA.MLN3.Q4.ZS
## 16751                                 SH.STA.MLN3.Q5.ZS
## 16752                                       SH.STA.MMRT
## 16753                                    SH.STA.MMRT.NE
## 16754                                 SH.STA.OB18.FE.ZS
## 16755                                 SH.STA.OB18.MA.ZS
## 16756                                 SH.STA.ODFC.Q1.ZS
## 16757                                 SH.STA.ODFC.Q2.ZS
## 16758                                 SH.STA.ODFC.Q3.ZS
## 16759                                 SH.STA.ODFC.Q4.ZS
## 16760                                 SH.STA.ODFC.Q5.ZS
## 16761                              SH.STA.ODFC.RU.Q1.ZS
## 16762                              SH.STA.ODFC.RU.Q2.ZS
## 16763                              SH.STA.ODFC.RU.Q3.ZS
## 16764                              SH.STA.ODFC.RU.Q4.ZS
## 16765                              SH.STA.ODFC.RU.Q5.ZS
## 16766                                 SH.STA.ODFC.RU.ZS
## 16767                              SH.STA.ODFC.UR.Q1.ZS
## 16768                              SH.STA.ODFC.UR.Q2.ZS
## 16769                              SH.STA.ODFC.UR.Q3.ZS
## 16770                              SH.STA.ODFC.UR.Q4.ZS
## 16771                              SH.STA.ODFC.UR.Q5.ZS
## 16772                                 SH.STA.ODFC.UR.ZS
## 16773                                    SH.STA.ODFC.ZS
## 16774                                    SH.STA.ORCF.ZS
## 16775                                 SH.STA.ORHF.Q1.ZS
## 16776                                 SH.STA.ORHF.Q2.ZS
## 16777                                 SH.STA.ORHF.Q3.ZS
## 16778                                 SH.STA.ORHF.Q4.ZS
## 16779                                 SH.STA.ORHF.Q5.ZS
## 16780                                 SH.STA.ORHK.Q1.ZS
## 16781                                 SH.STA.ORHK.Q2.ZS
## 16782                                 SH.STA.ORHK.Q3.ZS
## 16783                                 SH.STA.ORHK.Q4.ZS
## 16784                                 SH.STA.ORHK.Q5.ZS
## 16785                                  SH.STA.ORHS.Q1ZS
## 16786                                  SH.STA.ORHS.Q2ZS
## 16787                                  SH.STA.ORHS.Q3ZS
## 16788                                  SH.STA.ORHS.Q4ZS
## 16789                                  SH.STA.ORHS.Q5ZS
## 16790                                       SH.STA.ORTH
## 16791                                 SH.STA.OWAD.FE.ZS
## 16792                                 SH.STA.OWAD.MA.ZS
## 16793                                    SH.STA.OWAD.ZS
## 16794                                 SH.STA.OWGH.FE.ZS
## 16795                                 SH.STA.OWGH.MA.ZS
## 16796                                 SH.STA.OWGH.ME.ZS
## 16797                                    SH.STA.OWGH.ZS
## 16798                                    SH.STA.PNVC.ZS
## 16799                                    SH.STA.POIS.P5
## 16800                                 SH.STA.POIS.P5.FE
## 16801                                 SH.STA.POIS.P5.MA
## 16802                                 SH.STA.SMSS.RU.ZS
## 16803                                 SH.STA.SMSS.UR.ZS
## 16804                                    SH.STA.SMSS.ZS
## 16805                                 SH.STA.STN3.Q1.ZS
## 16806                                 SH.STA.STN3.Q2.ZS
## 16807                                 SH.STA.STN3.Q3.ZS
## 16808                                 SH.STA.STN3.Q4.ZS
## 16809                                 SH.STA.STN3.Q5.ZS
## 16810                                 SH.STA.STNT.FE.ZS
## 16811                                 SH.STA.STNT.MA.ZS
## 16812                                 SH.STA.STNT.ME.ZS
## 16813                                 SH.STA.STNT.Q1.ZS
## 16814                                 SH.STA.STNT.Q2.ZS
## 16815                                 SH.STA.STNT.Q3.ZS
## 16816                                 SH.STA.STNT.Q4.ZS
## 16817                                 SH.STA.STNT.Q5.ZS
## 16818                                    SH.STA.STNT.ZS
## 16819                                 SH.STA.SUIC.FE.P5
## 16820                                 SH.STA.SUIC.MA.P5
## 16821                                    SH.STA.SUIC.P5
## 16822                                 SH.STA.TRAF.FE.P5
## 16823                                 SH.STA.TRAF.MA.P5
## 16824                                    SH.STA.TRAF.P5
## 16825                                 SH.STA.WASH.FE.P5
## 16826                                 SH.STA.WASH.MA.P5
## 16827                                    SH.STA.WASH.P5
## 16828                                 SH.STA.WAST.FE.ZS
## 16829                                 SH.STA.WAST.MA.ZS
## 16830                                 SH.STA.WAST.Q1.ZS
## 16831                                 SH.STA.WAST.Q2.ZS
## 16832                                 SH.STA.WAST.Q3.ZS
## 16833                                 SH.STA.WAST.Q4.ZS
## 16834                                 SH.STA.WAST.Q5.ZS
## 16835                                    SH.STA.WAST.ZS
## 16836                                 SH.STA.WST3.Q1.ZS
## 16837                                 SH.STA.WST3.Q2.ZS
## 16838                                 SH.STA.WST3.Q3.ZS
## 16839                                 SH.STA.WST3.Q4.ZS
## 16840                                 SH.STA.WST3.Q5.ZS
## 16841                                 SH.SVR.WAST.FE.ZS
## 16842                                 SH.SVR.WAST.MA.ZS
## 16843                                    SH.SVR.WAST.ZS
## 16844                                    SH.TBS.CURE.ZS
## 16845                                       SH.TBS.DOTS
## 16846                                    SH.TBS.DTEC.ZS
## 16847                                       SH.TBS.INCD
## 16848                                    SH.TBS.INCD.HG
## 16849                                    SH.TBS.INCD.LW
## 16850                                       SH.TBS.MORT
## 16851                                    SH.TBS.MORT.HG
## 16852                                    SH.TBS.MORT.LW
## 16853                                       SH.TBS.PREV
## 16854                                    SH.TBS.PREV.HG
## 16855                                    SH.TBS.PREV.LW
## 16856                                    SH.UHC.CONS.TO
## 16857                                    SH.UHC.CONS.ZS
## 16858                                    SH.UHC.FBP1.TO
## 16859                                    SH.UHC.FBP1.ZS
## 16860                                    SH.UHC.FBP2.TO
## 16861                                    SH.UHC.FBP2.ZS
## 16862                                    SH.UHC.FBPR.TO
## 16863                                    SH.UHC.FBPR.ZS
## 16864                                    SH.UHC.NOP1.CG
## 16865                                    SH.UHC.NOP1.TO
## 16866                                    SH.UHC.NOP1.ZG
## 16867                                    SH.UHC.NOP1.ZS
## 16868                                    SH.UHC.NOP2.CG
## 16869                                    SH.UHC.NOP2.TO
## 16870                                    SH.UHC.NOP2.ZG
## 16871                                    SH.UHC.NOP2.ZS
## 16872                                    SH.UHC.NOPR.TO
## 16873                                    SH.UHC.NOPR.ZS
## 16874                                 SH.UHC.OOPC.10.TO
## 16875                                 SH.UHC.OOPC.10.ZS
## 16876                                 SH.UHC.OOPC.25.TO
## 16877                                 SH.UHC.OOPC.25.ZS
## 16878                                 SH.UHC.SRVS.CV.XD
## 16879                                 SH.VAC.TTNS.Q1.ZS
## 16880                                 SH.VAC.TTNS.Q2.ZS
## 16881                                 SH.VAC.TTNS.Q3.ZS
## 16882                                 SH.VAC.TTNS.Q4.ZS
## 16883                                 SH.VAC.TTNS.Q5.ZS
## 16884                                    SH.VAC.TTNS.ZS
## 16885                                       SH.VST.OUTP
## 16886                                 SH.XPD.CHEX.GD.ZS
## 16887                                 SH.XPD.CHEX.PC.CD
## 16888                                 SH.XPD.CHEX.PP.CD
## 16889                                 SH.XPD.EHEX.CH.ZS
## 16890                                 SH.XPD.EHEX.EH.ZS
## 16891                                 SH.XPD.EHEX.PC.CD
## 16892                                 SH.XPD.EHEX.PP.CD
## 16893                                    SH.XPD.EXTR.ZS
## 16894                                 SH.XPD.GHED.CH.ZS
## 16895                                 SH.XPD.GHED.GD.ZS
## 16896                                 SH.XPD.GHED.GE.ZS
## 16897                                 SH.XPD.GHED.PC.CD
## 16898                                 SH.XPD.GHED.PP.CD
## 16899                                    SH.XPD.HLTH.ZS
## 16900                                 SH.XPD.KHEX.GD.ZS
## 16901                                 SH.XPD.OOPC.CH.ZS
## 16902                                 SH.XPD.OOPC.PC.CD
## 16903                                 SH.XPD.OOPC.PP.CD
## 16904                                 SH.XPD.OOPC.TO.ZS
## 16905                                    SH.XPD.OOPC.ZS
## 16906                                       SH.XPD.PCAP
## 16907                                    SH.XPD.PCAP.GX
## 16908                                 SH.XPD.PCAP.PP.KD
## 16909                                       SH.XPD.PPPC
## 16910                                       SH.XPD.PRIV
## 16911                               SH.XPD.PRIV.PRPP.ZS
## 16912                                    SH.XPD.PRIV.ZS
## 16913                                       SH.XPD.PUBL
## 16914                                 SH.XPD.PUBL.GX.ZS
## 16915                                    SH.XPD.PUBL.ZS
## 16916                                 SH.XPD.PVTD.CH.ZS
## 16917                                 SH.XPD.PVTD.PC.CD
## 16918                                 SH.XPD.PVTD.PP.CD
## 16919                                 SH.XPD.SOSE.GX.ZS
## 16920                                    SH.XPD.TOTL.CD
## 16921                                    SH.XPD.TOTL.ZS
## 16922                                    SI.DST.02ND.20
## 16923                                    SI.DST.03RD.20
## 16924                                    SI.DST.04TH.20
## 16925                                    SI.DST.05TH.20
## 16926                                    SI.DST.10TH.10
## 16927                                       SI.DST.50MD
## 16928                                    SI.DST.FRST.10
## 16929                                    SI.DST.FRST.20
## 16930                                       SI.POV.2DAY
## 16931                                    SI.POV.ATTM.MI
## 16932                                        SI.POV.BPL
## 16933                                       SI.POV.DDAY
## 16934                                    SI.POV.DDAY.14
## 16935                                  SI.POV.DDAY.1564
## 16936                                 SI.POV.DDAY.16.PL
## 16937                                 SI.POV.DDAY.16.PR
## 16938                                 SI.POV.DDAY.16.SG
## 16939                                 SI.POV.DDAY.16.ST
## 16940                                    SI.POV.DDAY.65
## 16941                                    SI.POV.DDAY.CV
## 16942                                    SI.POV.DDAY.FE
## 16943                                    SI.POV.DDAY.FS
## 16944                                    SI.POV.DDAY.MA
## 16945                                    SI.POV.DDAY.MI
## 16946                                    SI.POV.DDAY.RU
## 16947                                    SI.POV.DDAY.SG
## 16948                                    SI.POV.DDAY.SH
## 16949                                    SI.POV.DDAY.TH
## 16950                                    SI.POV.DDAY.UR
## 16951                                    SI.POV.ELEC.MI
## 16952                                    SI.POV.ENRL.MI
## 16953                                       SI.POV.GAP2
## 16954                                       SI.POV.GAPS
## 16955                                       SI.POV.GINI
## 16956                                    SI.POV.GINI.FS
## 16957                                    SI.POV.GINI.SG
## 16958                                    SI.POV.GINI.TH
## 16959                                    SI.POV.HCRT.MI
## 16960                                       SI.POV.LMIC
## 16961                                    SI.POV.LMIC.FS
## 16962                                    SI.POV.LMIC.GP
## 16963                                    SI.POV.LMIC.NO
## 16964                                    SI.POV.LMIC.SG
## 16965                                    SI.POV.LMIC.TH
## 16966                                       SI.POV.MDIM
## 16967                                    SI.POV.MDIM.17
## 16968                                 SI.POV.MDIM.17.XQ
## 16969                                    SI.POV.MDIM.FE
## 16970                                    SI.POV.MDIM.HH
## 16971                                    SI.POV.MDIM.IT
## 16972                                    SI.POV.MDIM.MA
## 16973                                    SI.POV.MDIM.XQ
## 16974                                       SI.POV.NAGP
## 16975                                    SI.POV.NAGP.NC
## 16976                                       SI.POV.NAHC
## 16977                                    SI.POV.NAHC.NC
## 16978                                       SI.POV.NAPL
## 16979                                    SI.POV.NAPR.ZS
## 16980                                       SI.POV.NGAP
## 16981                                       SI.POV.NOP1
## 16982                                       SI.POV.NOP2
## 16983                                       SI.POV.NSEV
## 16984                                       SI.POV.RUGP
## 16985                                       SI.POV.RUHC
## 16986                                    SI.POV.SANI.MI
## 16987                                       SI.POV.UMIC
## 16988                                    SI.POV.UMIC.FS
## 16989                                    SI.POV.UMIC.GP
## 16990                                    SI.POV.UMIC.NO
## 16991                                    SI.POV.UMIC.SG
## 16992                                    SI.POV.UMIC.TH
## 16993                                       SI.POV.URGP
## 16994                                       SI.POV.URHC
## 16995                                    SI.POV.WATR.MI
## 16996                                    SI.POV.XPND.MD
## 16997                                 SI.POV.XPND.MD.ZG
## 16998                                 SI.RMT.COST.IB.ZS
## 16999                                 SI.RMT.COST.OB.ZS
## 17000                                    SI.RMT.COST.ZS
## 17001                                    SI.SPR.BL50.ZS
## 17002                                       SI.SPR.PC40
## 17003                                    SI.SPR.PC40.05
## 17004                                    SI.SPR.PC40.ZG
## 17005                                       SI.SPR.PCAP
## 17006                                    SI.SPR.PCAP.05
## 17007                                    SI.SPR.PCAP.ZG
## 17008                                       SI.SPR.PT10
## 17009                                    SI.SPR.PT10.ZG
## 17010                                       SI.SPR.PT60
## 17011                                    SI.SPR.PT60.ZG
## 17012                                 SL.AGR.0714.FE.ZS
## 17013                                 SL.AGR.0714.MA.ZS
## 17014                                    SL.AGR.0714.ZS
## 17015                              SL.AGR.EMPL.FE.TO.ZS
## 17016                                 SL.AGR.EMPL.FE.ZS
## 17017                                 SL.AGR.EMPL.MA.ZS
## 17018                                    SL.AGR.EMPL.ZS
## 17019                                 SL.AGR.TOTL.IN.ZS
## 17020                                    SL.AGR.TOTL.MF
## 17021                                    SL.AGR.TOTL.ZS
## 17022                                    SL.ALL.SIZE.FE
## 17023                           SL.EMP.1524.SP.FE.NE.ZS
## 17024                              SL.EMP.1524.SP.FE.ZS
## 17025                           SL.EMP.1524.SP.MA.NE.ZS
## 17026                              SL.EMP.1524.SP.MA.ZS
## 17027                              SL.EMP.1524.SP.NE.ZS
## 17028                                 SL.EMP.1524.SP.ZS
## 17029                               SL.EMP.AGR.FRST.FSH
## 17030                                       SL.EMP.CNST
## 17031                                        SL.EMP.ELC
## 17032                                       SL.EMP.FINS
## 17033                                        SL.EMP.IND
## 17034                                 SL.EMP.INSV.FE.ZS
## 17035                                       SL.EMP.MINQ
## 17036                                 SL.EMP.MPYR.FE.ZS
## 17037                                 SL.EMP.MPYR.MA.ZS
## 17038                                    SL.EMP.MPYR.ZS
## 17039                                 SL.EMP.OWAC.FE.ZS
## 17040                                 SL.EMP.OWAC.MA.ZS
## 17041                                    SL.EMP.OWAC.ZS
## 17042                                 SL.EMP.SELF.FE.ZS
## 17043                                 SL.EMP.SELF.MA.ZS
## 17044                                    SL.EMP.SELF.ZS
## 17045                                 SL.EMP.SMGT.FE.ZS
## 17046                                       SL.EMP.SOCL
## 17047                                       SL.EMP.TOTL
## 17048                                    SL.EMP.TOTL.FE
## 17049                                    SL.EMP.TOTL.MA
## 17050                           SL.EMP.TOTL.SP.FE.NE.ZS
## 17051                              SL.EMP.TOTL.SP.FE.ZS
## 17052                           SL.EMP.TOTL.SP.MA.NE.ZS
## 17053                              SL.EMP.TOTL.SP.MA.ZS
## 17054                              SL.EMP.TOTL.SP.NE.ZS
## 17055                                 SL.EMP.TOTL.SP.ZS
## 17056                                       SL.EMP.TRAD
## 17057                                       SL.EMP.TRAN
## 17058                                       SL.EMP.UNDR
## 17059                                 SL.EMP.UNDR.FE.ZS
## 17060                                 SL.EMP.UNDR.MA.ZS
## 17061                                 SL.EMP.VULN.FE.ZS
## 17062                                 SL.EMP.VULN.MA.ZS
## 17063                                    SL.EMP.VULN.ZS
## 17064                                 SL.EMP.WORK.FE.ZS
## 17065                                 SL.EMP.WORK.MA.ZS
## 17066                                    SL.EMP.WORK.ZS
## 17067                                 SL.FAM.0714.FE.ZS
## 17068                                 SL.FAM.0714.MA.ZS
## 17069                                    SL.FAM.0714.ZS
## 17070                                 SL.FAM.WORK.FE.ZS
## 17071                                 SL.FAM.WORK.MA.ZS
## 17072                                    SL.FAM.WORK.ZS
## 17073                                 SL.GDP.PCAP.EM.KD
## 17074                              SL.GDP.PCAP.EM.KD.ZG
## 17075                                 SL.GDP.PCAP.EM.XD
## 17076                                 SL.IND.EMPL.FE.ZS
## 17077                                 SL.IND.EMPL.MA.ZS
## 17078                                    SL.IND.EMPL.ZS
## 17079                                 SL.ISV.IFRM.FE.ZS
## 17080                                 SL.ISV.IFRM.MA.ZS
## 17081                                    SL.ISV.IFRM.ZS
## 17082                                 SL.MNF.0714.FE.ZS
## 17083                                 SL.MNF.0714.MA.ZS
## 17084                                    SL.MNF.0714.ZS
## 17085                                    SL.MNF.WAGE.FM
## 17086                                 SL.SLF.0714.FE.ZS
## 17087                                 SL.SLF.0714.MA.ZS
## 17088                                    SL.SLF.0714.ZS
## 17089                                 SL.SRV.0714.FE.ZS
## 17090                                 SL.SRV.0714.MA.ZS
## 17091                                    SL.SRV.0714.ZS
## 17092                                 SL.SRV.EMPL.FE.ZS
## 17093                                 SL.SRV.EMPL.MA.ZS
## 17094                                    SL.SRV.EMPL.ZS
## 17095                                            SL.TLF
## 17096                                 SL.TLF.0714.FE.ZS
## 17097                                 SL.TLF.0714.MA.ZS
## 17098                              SL.TLF.0714.SW.FE.TM
## 17099                              SL.TLF.0714.SW.FE.ZS
## 17100                              SL.TLF.0714.SW.MA.TM
## 17101                              SL.TLF.0714.SW.MA.ZS
## 17102                                 SL.TLF.0714.SW.TM
## 17103                                 SL.TLF.0714.SW.ZS
## 17104                              SL.TLF.0714.WK.FE.TM
## 17105                              SL.TLF.0714.WK.FE.ZS
## 17106                              SL.TLF.0714.WK.MA.TM
## 17107                              SL.TLF.0714.WK.MA.ZS
## 17108                                 SL.TLF.0714.WK.TM
## 17109                                 SL.TLF.0714.WK.ZS
## 17110                                    SL.TLF.0714.ZS
## 17111                                 SL.TLF.1524.FE.IN
## 17112                                 SL.TLF.1524.FE.ZS
## 17113                                    SL.TLF.1524.IN
## 17114                                 SL.TLF.1524.MA.IN
## 17115                                 SL.TLF.1524.MA.ZS
## 17116                                 SL.TLF.1564.FE.IN
## 17117                                 SL.TLF.1564.FE.ZS
## 17118                                    SL.TLF.1564.IN
## 17119                                 SL.TLF.1564.MA.IN
## 17120                                 SL.TLF.1564.MA.ZS
## 17121                         SL.TLF.ACTI.1524.FE.NE.ZS
## 17122                            SL.TLF.ACTI.1524.FE.ZS
## 17123                         SL.TLF.ACTI.1524.MA.NE.ZS
## 17124                            SL.TLF.ACTI.1524.MA.ZS
## 17125                            SL.TLF.ACTI.1524.NE.ZS
## 17126                               SL.TLF.ACTI.1524.ZS
## 17127                                 SL.TLF.ACTI.FE.ZS
## 17128                                 SL.TLF.ACTI.MA.ZS
## 17129                                    SL.TLF.ACTI.ZS
## 17130                                 SL.TLF.ADVN.FE.ZS
## 17131                                 SL.TLF.ADVN.MA.ZS
## 17132                                    SL.TLF.ADVN.ZS
## 17133                                 SL.TLF.BASC.FE.ZS
## 17134                                 SL.TLF.BASC.MA.ZS
## 17135                                    SL.TLF.BASC.ZS
## 17136                            SL.TLF.CACT.2534.FE.ZS
## 17137                            SL.TLF.CACT.2534.MA.ZS
## 17138                               SL.TLF.CACT.2534.ZS
## 17139                            SL.TLF.CACT.2554.FE.ZS
## 17140                            SL.TLF.CACT.2554.MA.ZS
## 17141                               SL.TLF.CACT.2554.ZS
## 17142                            SL.TLF.CACT.3554.FE.ZS
## 17143                            SL.TLF.CACT.3554.MA.ZS
## 17144                               SL.TLF.CACT.3554.ZS
## 17145                            SL.TLF.CACT.5564.FE.ZS
## 17146                            SL.TLF.CACT.5564.MA.ZS
## 17147                               SL.TLF.CACT.5564.ZS
## 17148                            SL.TLF.CACT.65UP.FE.ZS
## 17149                            SL.TLF.CACT.65UP.MA.ZS
## 17150                               SL.TLF.CACT.65UP.ZS
## 17151                              SL.TLF.CACT.FE.NE.ZS
## 17152                                 SL.TLF.CACT.FE.ZS
## 17153                              SL.TLF.CACT.FM.NE.ZS
## 17154                                 SL.TLF.CACT.FM.ZS
## 17155                              SL.TLF.CACT.MA.NE.ZS
## 17156                                 SL.TLF.CACT.MA.ZS
## 17157                                 SL.TLF.CACT.NE.ZS
## 17158                                    SL.TLF.CACT.ZS
## 17159                                       SL.TLF.CHLD
## 17160                                    SL.TLF.CHLD.ZS
## 17161                                 SL.TLF.INTM.FE.ZS
## 17162                                 SL.TLF.INTM.MA.ZS
## 17163                                    SL.TLF.INTM.ZS
## 17164                                 SL.TLF.PART.FE.ZS
## 17165                                 SL.TLF.PART.MA.ZS
## 17166                              SL.TLF.PART.TL.FE.ZS
## 17167                                    SL.TLF.PART.ZS
## 17168                                 SL.TLF.PRIM.FE.ZS
## 17169                                 SL.TLF.PRIM.MA.ZS
## 17170                                    SL.TLF.PRIM.ZS
## 17171                                 SL.TLF.SECO.FE.ZS
## 17172                                 SL.TLF.SECO.MA.ZS
## 17173                                    SL.TLF.SECO.ZS
## 17174                                 SL.TLF.TERT.FE.ZS
## 17175                                 SL.TLF.TERT.MA.ZS
## 17176                                    SL.TLF.TERT.ZS
## 17177                                 SL.TLF.TOTL.FE.IN
## 17178                              SL.TLF.TOTL.FE.IN.ZS
## 17179                                 SL.TLF.TOTL.FE.ZS
## 17180                                    SL.TLF.TOTL.IN
## 17181                                 SL.TLF.TOTL.IN.ZG
## 17182                                 SL.TLF.TOTL.MA.IN
## 17183                                 SL.TLF.TOTL.MA.ZS
## 17184                              SL.UEM.1524.FE.NE.ZS
## 17185                                 SL.UEM.1524.FE.ZS
## 17186                              SL.UEM.1524.FM.NE.ZS
## 17187                                 SL.UEM.1524.FM.ZS
## 17188                              SL.UEM.1524.MA.NE.ZS
## 17189                                 SL.UEM.1524.MA.ZS
## 17190                                 SL.UEM.1524.NE.ZS
## 17191                                    SL.UEM.1524.ZS
## 17192                                 SL.UEM.ADVN.FE.ZS
## 17193                                 SL.UEM.ADVN.MA.ZS
## 17194                                    SL.UEM.ADVN.ZS
## 17195                                 SL.UEM.BASC.FE.ZS
## 17196                                 SL.UEM.BASC.MA.ZS
## 17197                                    SL.UEM.BASC.ZS
## 17198                                 SL.UEM.INTM.FE.ZS
## 17199                                 SL.UEM.INTM.MA.ZS
## 17200                                    SL.UEM.INTM.ZS
## 17201                                 SL.UEM.LTRM.FE.ZS
## 17202                                 SL.UEM.LTRM.MA.ZS
## 17203                                    SL.UEM.LTRM.ZS
## 17204                                 SL.UEM.NEET.FE.ZS
## 17205                                 SL.UEM.NEET.MA.ZS
## 17206                                    SL.UEM.NEET.ZS
## 17207                                 SL.UEM.PRIM.FE.ZS
## 17208                                 SL.UEM.PRIM.MA.ZS
## 17209                                    SL.UEM.PRIM.ZS
## 17210                                 SL.UEM.SECO.FE.ZS
## 17211                                 SL.UEM.SECO.MA.ZS
## 17212                                    SL.UEM.SECO.ZS
## 17213                                 SL.UEM.TERT.FE.ZS
## 17214                                 SL.UEM.TERT.MA.ZS
## 17215                                    SL.UEM.TERT.ZS
## 17216                                       SL.UEM.TOTL
## 17217                              SL.UEM.TOTL.FE.NE.ZS
## 17218                                 SL.UEM.TOTL.FE.ZS
## 17219                              SL.UEM.TOTL.MA.NE.ZS
## 17220                                 SL.UEM.TOTL.MA.ZS
## 17221                                 SL.UEM.TOTL.NE.ZS
## 17222                                    SL.UEM.TOTL.ZS
## 17223                                 SL.WAG.0714.FE.ZS
## 17224                                 SL.WAG.0714.MA.ZS
## 17225                                    SL.WAG.0714.ZS
## 17226                                    SM.EMI.TERT.ZS
## 17227                                       SM.MMR.DTHS
## 17228                                       SM.POP.FRGN
## 17229                                    SM.POP.FRGN.ZS
## 17230                                       SM.POP.IASY
## 17231                                       SM.POP.IFRN
## 17232                                       SM.POP.NETM
## 17233                                       SM.POP.REFG
## 17234                                    SM.POP.REFG.OR
## 17235                                       SM.POP.TOTL
## 17236                                    SM.POP.TOTL.ZS
## 17237                                    SM.TLF.FRGN.ZS
## 17238                                       SM.TLF.IFRN
## 17239                                       SN.ITK.DEFC
## 17240                                   SN.ITK.DEFC.POP
## 17241                                    SN.ITK.DEFC.ZS
## 17242                                       SN.ITK.DFCT
## 17243                                       SN.ITK.DPTH
## 17244                                    SN.ITK.MSFI.ZS
## 17245                                    SN.ITK.SALT.ZS
## 17246                                    SN.ITK.SVFI.ZS
## 17247                                 SN.ITK.VAPP.Q1.ZS
## 17248                                 SN.ITK.VAPP.Q2.ZS
## 17249                                 SN.ITK.VAPP.Q3.ZS
## 17250                                 SN.ITK.VAPP.Q4.ZS
## 17251                                 SN.ITK.VAPP.Q5.ZS
## 17252                                 SN.ITK.VITA.Q1.ZS
## 17253                                 SN.ITK.VITA.Q2.ZS
## 17254                                 SN.ITK.VITA.Q3.ZS
## 17255                                 SN.ITK.VITA.Q4.ZS
## 17256                                 SN.ITK.VITA.Q5.ZS
## 17257                                    SN.ITK.VITA.ZS
## 17258                                       SN.PRD.FOOD
## 17259                                    SN.PRD.FOOD.ZC
## 17260                                 SN.SH.STA.MALN.ZS
## 17261                                 SN.SH.STA.OWGH.ZS
## 17262                                 SN.SH.STA.STNT.ZS
## 17263                                 SN.SH.STA.WAST.ZS
## 17264                                 SN.SH.SVR.WAST.ZS
## 17265                                       SN.STA.FPRD
## 17266                                       SP.ADO.TFRT
## 17267                                    SP.BRT.CRUD.ZT
## 17268                                    SP.DTH.INFR.ZS
## 17269                                    SP.DTH.REPT.ZS
## 17270                                   SP.DYN.1ANTE.ZS
## 17271                                   SP.DYN.4ANTE.ZS
## 17272                                    SP.DYN.AMRT.FE
## 17273                                    SP.DYN.AMRT.MA
## 17274                                       SP.DYN.CBRT
## 17275                                    SP.DYN.CBRT.IN
## 17276                                    SP.DYN.CDRT.IN
## 17277                                    SP.DYN.CEBN.Q1
## 17278                                    SP.DYN.CEBN.Q2
## 17279                                    SP.DYN.CEBN.Q3
## 17280                                    SP.DYN.CEBN.Q4
## 17281                                    SP.DYN.CEBN.Q5
## 17282                                 SP.DYN.CONM.Q1.ZS
## 17283                                 SP.DYN.CONM.Q2.ZS
## 17284                                 SP.DYN.CONM.Q3.ZS
## 17285                                 SP.DYN.CONM.Q4.ZS
## 17286                                 SP.DYN.CONM.Q5.ZS
## 17287                                 SP.DYN.CONM.SA.ZS
## 17288                                    SP.DYN.CONM.ZS
## 17289                                SP.DYN.CONU.CDM.ZS
## 17290                                SP.DYN.CONU.MDN.ZS
## 17291                                 SP.DYN.CONU.Q1.ZS
## 17292                                 SP.DYN.CONU.Q2.ZS
## 17293                                 SP.DYN.CONU.Q3.ZS
## 17294                                 SP.DYN.CONU.Q4.ZS
## 17295                                 SP.DYN.CONU.Q5.ZS
## 17296                                 SP.DYN.CONU.SA.ZS
## 17297                                    SP.DYN.CONU.ZS
## 17298                                       SP.DYN.IMRT
## 17299                                 SP.DYN.IMRT.FE.IN
## 17300                                    SP.DYN.IMRT.IN
## 17301                                 SP.DYN.IMRT.MA.IN
## 17302                                    SP.DYN.IMRT.Q1
## 17303                                    SP.DYN.IMRT.Q2
## 17304                                    SP.DYN.IMRT.Q3
## 17305                                    SP.DYN.IMRT.Q4
## 17306                                    SP.DYN.IMRT.Q5
## 17307                                 SP.DYN.LE00.FE.IN
## 17308                                    SP.DYN.LE00.IN
## 17309                                 SP.DYN.LE00.MA.IN
## 17310                                 SP.DYN.LE60.FE.IN
## 17311                                 SP.DYN.LE60.MA.IN
## 17312                                    SP.DYN.LIFE.MF
## 17313                                    SP.DYN.SMAM.FE
## 17314                                    SP.DYN.SMAM.MA
## 17315                                       SP.DYN.TFRT
## 17316                                    SP.DYN.TFRT.IN
## 17317                                    SP.DYN.TFRT.Q1
## 17318                                    SP.DYN.TFRT.Q2
## 17319                                    SP.DYN.TFRT.Q3
## 17320                                    SP.DYN.TFRT.Q4
## 17321                                    SP.DYN.TFRT.Q5
## 17322                                 SP.DYN.TO65.FE.ZS
## 17323                                 SP.DYN.TO65.MA.ZS
## 17324                                       SP.DYN.WFRT
## 17325                                    SP.DYN.WFRT.Q1
## 17326                                    SP.DYN.WFRT.Q2
## 17327                                    SP.DYN.WFRT.Q3
## 17328                                    SP.DYN.WFRT.Q4
## 17329                                    SP.DYN.WFRT.Q5
## 17330                                 SP.EXCHG.RATE.ICP
## 17331                                    SP.FER.TOTL.ZR
## 17332                                    SP.HOU.FEMA.ZS
## 17333                                 SP.M15.2024.FE.ZS
## 17334                                 SP.M18.2024.FE.ZS
## 17335                                    SP.MOR.INFA.ZT
## 17336                                 SP.MTR.1519.Q1.ZS
## 17337                                 SP.MTR.1519.Q2.ZS
## 17338                                 SP.MTR.1519.Q3.ZS
## 17339                                 SP.MTR.1519.Q4.ZS
## 17340                                 SP.MTR.1519.Q5.ZS
## 17341                                    SP.MTR.1519.ZS
## 17342                                    SP.POP.0004.FE
## 17343                                 SP.POP.0004.FE.5Y
## 17344                                    SP.POP.0004.MA
## 17345                                 SP.POP.0004.MA.5Y
## 17346                                 SP.POP.0014.FE.IN
## 17347                                 SP.POP.0014.FE.ZS
## 17348                                 SP.POP.0014.MA.IN
## 17349                                 SP.POP.0014.MA.ZS
## 17350                                    SP.POP.0014.TO
## 17351                                 SP.POP.0014.TO.ZS
## 17352                                 SP.POP.0024.TO.ZS
## 17353                                 SP.POP.0305.FE.UN
## 17354                                 SP.POP.0305.MA.UN
## 17355                                 SP.POP.0305.TO.UN
## 17356                                 SP.POP.0406.FE.UN
## 17357                                 SP.POP.0406.MA.UN
## 17358                                 SP.POP.0406.TO.UN
## 17359                                    SP.POP.0509.FE
## 17360                                 SP.POP.0509.FE.5Y
## 17361                                 SP.POP.0509.FE.UN
## 17362                                    SP.POP.0509.MA
## 17363                                 SP.POP.0509.MA.5Y
## 17364                                 SP.POP.0509.MA.UN
## 17365                                 SP.POP.0509.TO.UN
## 17366                                 SP.POP.0510.FE.UN
## 17367                                 SP.POP.0510.MA.UN
## 17368                                 SP.POP.0510.TO.UN
## 17369                                 SP.POP.0511.FE.UN
## 17370                                 SP.POP.0511.MA.UN
## 17371                                 SP.POP.0511.TO.UN
## 17372                                 SP.POP.0609.FE.UN
## 17373                                 SP.POP.0609.MA.UN
## 17374                                 SP.POP.0609.TO.UN
## 17375                                 SP.POP.0610.FE.UN
## 17376                                 SP.POP.0610.MA.UN
## 17377                                 SP.POP.0610.TO.UN
## 17378                                 SP.POP.0611.FE.UN
## 17379                                 SP.POP.0611.MA.UN
## 17380                                 SP.POP.0611.TO.UN
## 17381                                 SP.POP.0612.FE.UN
## 17382                                 SP.POP.0612.MA.UN
## 17383                                 SP.POP.0612.TO.UN
## 17384                                 SP.POP.0709.FE.UN
## 17385                                 SP.POP.0709.MA.UN
## 17386                                 SP.POP.0709.TO.UN
## 17387                                 SP.POP.0710.FE.UN
## 17388                                 SP.POP.0710.MA.UN
## 17389                                 SP.POP.0710.TO.UN
## 17390                                 SP.POP.0711.FE.UN
## 17391                                 SP.POP.0711.MA.UN
## 17392                                 SP.POP.0711.TO.UN
## 17393                                 SP.POP.0712.FE.UN
## 17394                                 SP.POP.0712.MA.UN
## 17395                                 SP.POP.0712.TO.UN
## 17396                                 SP.POP.0713.FE.UN
## 17397                                 SP.POP.0713.MA.UN
## 17398                                 SP.POP.0713.TO.UN
## 17399                                    SP.POP.1014.FE
## 17400                                 SP.POP.1014.FE.5Y
## 17401                                 SP.POP.1014.FE.UN
## 17402                                    SP.POP.1014.MA
## 17403                                 SP.POP.1014.MA.5Y
## 17404                                 SP.POP.1014.MA.UN
## 17405                                 SP.POP.1014.TO.UN
## 17406                                 SP.POP.1015.FE.UN
## 17407                                 SP.POP.1015.MA.UN
## 17408                                 SP.POP.1015.TO.UN
## 17409                                 SP.POP.1016.FE.UN
## 17410                                 SP.POP.1016.MA.UN
## 17411                                 SP.POP.1016.TO.UN
## 17412                                 SP.POP.1017.FE.UN
## 17413                                 SP.POP.1017.MA.UN
## 17414                                 SP.POP.1017.TO.UN
## 17415                                 SP.POP.1018.FE.UN
## 17416                                 SP.POP.1018.MA.UN
## 17417                                 SP.POP.1018.TO.UN
## 17418                                 SP.POP.1115.FE.UN
## 17419                                 SP.POP.1115.MA.UN
## 17420                                 SP.POP.1115.TO.UN
## 17421                                 SP.POP.1116.FE.UN
## 17422                                 SP.POP.1116.MA.UN
## 17423                                 SP.POP.1116.TO.UN
## 17424                                 SP.POP.1117.FE.UN
## 17425                                 SP.POP.1117.MA.UN
## 17426                                 SP.POP.1117.TO.UN
## 17427                                 SP.POP.1118.FE.UN
## 17428                                 SP.POP.1118.MA.UN
## 17429                                 SP.POP.1118.TO.UN
## 17430                                 SP.POP.1215.FE.UN
## 17431                                 SP.POP.1215.MA.UN
## 17432                                 SP.POP.1215.TO.UN
## 17433                                 SP.POP.1216.FE.UN
## 17434                                 SP.POP.1216.MA.UN
## 17435                                 SP.POP.1216.TO.UN
## 17436                                 SP.POP.1217.FE.UN
## 17437                                 SP.POP.1217.MA.UN
## 17438                                 SP.POP.1217.TO.UN
## 17439                                 SP.POP.1218.FE.UN
## 17440                                 SP.POP.1218.MA.UN
## 17441                                 SP.POP.1218.TO.UN
## 17442                                 SP.POP.1316.FE.UN
## 17443                                 SP.POP.1316.MA.UN
## 17444                                 SP.POP.1316.TO.UN
## 17445                                 SP.POP.1317.FE.UN
## 17446                                 SP.POP.1317.MA.UN
## 17447                                 SP.POP.1317.TO.UN
## 17448                                 SP.POP.1318.FE.UN
## 17449                                 SP.POP.1318.MA.UN
## 17450                                 SP.POP.1318.TO.UN
## 17451                                 SP.POP.1319.FE.UN
## 17452                                 SP.POP.1319.MA.UN
## 17453                                 SP.POP.1319.TO.UN
## 17454                                 SP.POP.1418.FE.UN
## 17455                                 SP.POP.1418.MA.UN
## 17456                                 SP.POP.1418.TO.UN
## 17457                                 SP.POP.1419.FE.UN
## 17458                                 SP.POP.1419.MA.UN
## 17459                                 SP.POP.1419.TO.UN
## 17460                                    SP.POP.1519.FE
## 17461                                 SP.POP.1519.FE.5Y
## 17462                                    SP.POP.1519.MA
## 17463                                 SP.POP.1519.MA.5Y
## 17464                                 SP.POP.1524.FE.UN
## 17465                                 SP.POP.1524.MA.UN
## 17466                                 SP.POP.1524.TO.UN
## 17467                                 SP.POP.1564.FE.IN
## 17468                                 SP.POP.1564.FE.ZS
## 17469                                    SP.POP.1564.IN
## 17470                                 SP.POP.1564.IN.ZS
## 17471                                 SP.POP.1564.MA.IN
## 17472                                 SP.POP.1564.MA.ZS
## 17473                                    SP.POP.1564.TO
## 17474                                 SP.POP.1564.TO.ZS
## 17475                                    SP.POP.2024.FE
## 17476                                 SP.POP.2024.FE.5Y
## 17477                                    SP.POP.2024.MA
## 17478                                 SP.POP.2024.MA.5Y
## 17479                                    SP.POP.2529.FE
## 17480                                 SP.POP.2529.FE.5Y
## 17481                                    SP.POP.2529.MA
## 17482                                 SP.POP.2529.MA.5Y
## 17483                                    SP.POP.3034.FE
## 17484                                 SP.POP.3034.FE.5Y
## 17485                                    SP.POP.3034.MA
## 17486                                 SP.POP.3034.MA.5Y
## 17487                                    SP.POP.3539.FE
## 17488                                 SP.POP.3539.FE.5Y
## 17489                                    SP.POP.3539.MA
## 17490                                 SP.POP.3539.MA.5Y
## 17491                                    SP.POP.4044.FE
## 17492                                 SP.POP.4044.FE.5Y
## 17493                                    SP.POP.4044.MA
## 17494                                 SP.POP.4044.MA.5Y
## 17495                                    SP.POP.4549.FE
## 17496                                 SP.POP.4549.FE.5Y
## 17497                                    SP.POP.4549.MA
## 17498                                 SP.POP.4549.MA.5Y
## 17499                                    SP.POP.5054.FE
## 17500                                 SP.POP.5054.FE.5Y
## 17501                                    SP.POP.5054.MA
## 17502                                 SP.POP.5054.MA.5Y
## 17503                                    SP.POP.5559.FE
## 17504                                 SP.POP.5559.FE.5Y
## 17505                                    SP.POP.5559.MA
## 17506                                 SP.POP.5559.MA.5Y
## 17507                                    SP.POP.6064.FE
## 17508                                 SP.POP.6064.FE.5Y
## 17509                                    SP.POP.6064.MA
## 17510                                 SP.POP.6064.MA.5Y
## 17511                                    SP.POP.6569.FE
## 17512                                 SP.POP.6569.FE.5Y
## 17513                                    SP.POP.6569.MA
## 17514                                 SP.POP.6569.MA.5Y
## 17515                                 SP.POP.65UP.FE.IN
## 17516                                 SP.POP.65UP.FE.ZS
## 17517                                 SP.POP.65UP.MA.IN
## 17518                                 SP.POP.65UP.MA.ZS
## 17519                                 SP.POP.65UP.MF.ZS
## 17520                                    SP.POP.65UP.TO
## 17521                                 SP.POP.65UP.TO.ZS
## 17522                                    SP.POP.7074.FE
## 17523                                 SP.POP.7074.FE.5Y
## 17524                                    SP.POP.7074.MA
## 17525                                 SP.POP.7074.MA.5Y
## 17526                                    SP.POP.7579.FE
## 17527                                 SP.POP.7579.FE.5Y
## 17528                                    SP.POP.7579.MA
## 17529                                 SP.POP.7579.MA.5Y
## 17530                                    SP.POP.80UP.FE
## 17531                                 SP.POP.80UP.FE.5Y
## 17532                                    SP.POP.80UP.MA
## 17533                                 SP.POP.80UP.MA.5Y
## 17534                                 SP.POP.AG00.FE.IN
## 17535                                 SP.POP.AG00.FE.UN
## 17536                                 SP.POP.AG00.MA.IN
## 17537                                 SP.POP.AG00.MA.UN
## 17538                                 SP.POP.AG00.TO.UN
## 17539                                 SP.POP.AG01.FE.IN
## 17540                                 SP.POP.AG01.FE.UN
## 17541                                 SP.POP.AG01.MA.IN
## 17542                                 SP.POP.AG01.MA.UN
## 17543                                 SP.POP.AG01.TO.UN
## 17544                                 SP.POP.AG02.FE.IN
## 17545                                 SP.POP.AG02.FE.UN
## 17546                                 SP.POP.AG02.MA.IN
## 17547                                 SP.POP.AG02.MA.UN
## 17548                                 SP.POP.AG02.TO.UN
## 17549                                 SP.POP.AG03.FE.IN
## 17550                                 SP.POP.AG03.FE.UN
## 17551                                 SP.POP.AG03.MA.IN
## 17552                                 SP.POP.AG03.MA.UN
## 17553                                 SP.POP.AG03.TO.UN
## 17554                                 SP.POP.AG04.FE.IN
## 17555                                 SP.POP.AG04.FE.UN
## 17556                                 SP.POP.AG04.MA.IN
## 17557                                 SP.POP.AG04.MA.UN
## 17558                                 SP.POP.AG04.TO.UN
## 17559                                 SP.POP.AG05.FE.IN
## 17560                                 SP.POP.AG05.FE.UN
## 17561                                 SP.POP.AG05.MA.IN
## 17562                                 SP.POP.AG05.MA.UN
## 17563                                 SP.POP.AG05.TO.UN
## 17564                                 SP.POP.AG06.FE.IN
## 17565                                 SP.POP.AG06.FE.UN
## 17566                                 SP.POP.AG06.MA.IN
## 17567                                 SP.POP.AG06.MA.UN
## 17568                                 SP.POP.AG06.TO.UN
## 17569                                 SP.POP.AG07.FE.IN
## 17570                                 SP.POP.AG07.FE.UN
## 17571                                 SP.POP.AG07.MA.IN
## 17572                                 SP.POP.AG07.MA.UN
## 17573                                 SP.POP.AG07.TO.UN
## 17574                                 SP.POP.AG08.FE.IN
## 17575                                 SP.POP.AG08.FE.UN
## 17576                                 SP.POP.AG08.MA.IN
## 17577                                 SP.POP.AG08.MA.UN
## 17578                                 SP.POP.AG08.TO.UN
## 17579                                 SP.POP.AG09.FE.IN
## 17580                                 SP.POP.AG09.FE.UN
## 17581                                 SP.POP.AG09.MA.IN
## 17582                                 SP.POP.AG09.MA.UN
## 17583                                 SP.POP.AG09.TO.UN
## 17584                                 SP.POP.AG10.FE.IN
## 17585                                 SP.POP.AG10.FE.UN
## 17586                                 SP.POP.AG10.MA.IN
## 17587                                 SP.POP.AG10.MA.UN
## 17588                                 SP.POP.AG10.TO.UN
## 17589                                 SP.POP.AG11.FE.IN
## 17590                                 SP.POP.AG11.FE.UN
## 17591                                 SP.POP.AG11.MA.IN
## 17592                                 SP.POP.AG11.MA.UN
## 17593                                 SP.POP.AG11.TO.UN
## 17594                                 SP.POP.AG12.FE.IN
## 17595                                 SP.POP.AG12.FE.UN
## 17596                                 SP.POP.AG12.MA.IN
## 17597                                 SP.POP.AG12.MA.UN
## 17598                                 SP.POP.AG12.TO.UN
## 17599                                 SP.POP.AG13.FE.IN
## 17600                                 SP.POP.AG13.FE.UN
## 17601                                 SP.POP.AG13.MA.IN
## 17602                                 SP.POP.AG13.MA.UN
## 17603                                 SP.POP.AG13.TO.UN
## 17604                                 SP.POP.AG14.FE.IN
## 17605                                 SP.POP.AG14.FE.UN
## 17606                                 SP.POP.AG14.MA.IN
## 17607                                 SP.POP.AG14.MA.UN
## 17608                                 SP.POP.AG14.TO.UN
## 17609                                 SP.POP.AG15.FE.IN
## 17610                                 SP.POP.AG15.FE.UN
## 17611                                 SP.POP.AG15.MA.IN
## 17612                                 SP.POP.AG15.MA.UN
## 17613                                 SP.POP.AG15.TO.UN
## 17614                                 SP.POP.AG16.FE.IN
## 17615                                 SP.POP.AG16.FE.UN
## 17616                                 SP.POP.AG16.MA.IN
## 17617                                 SP.POP.AG16.MA.UN
## 17618                                 SP.POP.AG16.TO.UN
## 17619                                 SP.POP.AG17.FE.IN
## 17620                                 SP.POP.AG17.FE.UN
## 17621                                 SP.POP.AG17.MA.IN
## 17622                                 SP.POP.AG17.MA.UN
## 17623                                 SP.POP.AG17.TO.UN
## 17624                                 SP.POP.AG18.FE.IN
## 17625                                 SP.POP.AG18.FE.UN
## 17626                                 SP.POP.AG18.MA.IN
## 17627                                 SP.POP.AG18.MA.UN
## 17628                                 SP.POP.AG18.TO.UN
## 17629                                 SP.POP.AG19.FE.IN
## 17630                                 SP.POP.AG19.FE.UN
## 17631                                 SP.POP.AG19.MA.IN
## 17632                                 SP.POP.AG19.MA.UN
## 17633                                 SP.POP.AG19.TO.UN
## 17634                                 SP.POP.AG20.FE.IN
## 17635                                 SP.POP.AG20.FE.UN
## 17636                                 SP.POP.AG20.MA.IN
## 17637                                 SP.POP.AG20.MA.UN
## 17638                                 SP.POP.AG20.TO.UN
## 17639                                 SP.POP.AG21.FE.IN
## 17640                                 SP.POP.AG21.FE.UN
## 17641                                 SP.POP.AG21.MA.IN
## 17642                                 SP.POP.AG21.MA.UN
## 17643                                 SP.POP.AG21.TO.UN
## 17644                                 SP.POP.AG22.FE.IN
## 17645                                 SP.POP.AG22.FE.UN
## 17646                                 SP.POP.AG22.MA.IN
## 17647                                 SP.POP.AG22.MA.UN
## 17648                                 SP.POP.AG22.TO.UN
## 17649                                 SP.POP.AG23.FE.IN
## 17650                                 SP.POP.AG23.FE.UN
## 17651                                 SP.POP.AG23.MA.IN
## 17652                                 SP.POP.AG23.MA.UN
## 17653                                 SP.POP.AG23.TO.UN
## 17654                                 SP.POP.AG24.FE.IN
## 17655                                 SP.POP.AG24.FE.UN
## 17656                                 SP.POP.AG24.MA.IN
## 17657                                 SP.POP.AG24.MA.UN
## 17658                                 SP.POP.AG24.TO.UN
## 17659                                 SP.POP.AG25.FE.IN
## 17660                                 SP.POP.AG25.FE.UN
## 17661                                 SP.POP.AG25.MA.IN
## 17662                                 SP.POP.AG25.MA.UN
## 17663                                 SP.POP.AG25.TO.UN
## 17664                                    SP.POP.BRTH.MF
## 17665                                       SP.POP.DPND
## 17666                                    SP.POP.DPND.OL
## 17667                                    SP.POP.DPND.YG
## 17668                                       SP.POP.GROW
## 17669                                    SP.POP.LAND.ZS
## 17670                                    SP.POP.SCIE.RD
## 17671                                 SP.POP.SCIE.RD.P6
## 17672                                    SP.POP.TECH.RD
## 17673                                 SP.POP.TECH.RD.P6
## 17674                                       SP.POP.TOTL
## 17675                                 SP.POP.TOTL.FE.IN
## 17676                                 SP.POP.TOTL.FE.ZS
## 17677                                   SP.POP.TOTL.ICP
## 17678                                SP.POP.TOTL.ICP.ZS
## 17679                                 SP.POP.TOTL.MA.IN
## 17680                                 SP.POP.TOTL.MA.ZS
## 17681                                    SP.POP.TOTL.ZS
## 17682                                 SP.PRE.TOTL.FE.IN
## 17683                                    SP.PRE.TOTL.IN
## 17684                                 SP.PRE.TOTL.MA.IN
## 17685                                    SP.PRM.GRAD.FE
## 17686                                    SP.PRM.GRAD.MA
## 17687                                    SP.PRM.GRAD.TO
## 17688                                 SP.PRM.TOTL.FE.IN
## 17689                                    SP.PRM.TOTL.IN
## 17690                                 SP.PRM.TOTL.MA.IN
## 17691                                 SP.REG.BRTH.FE.ZS
## 17692                                 SP.REG.BRTH.MA.ZS
## 17693                                 SP.REG.BRTH.Q1.ZS
## 17694                                 SP.REG.BRTH.Q2.ZS
## 17695                                 SP.REG.BRTH.Q3.ZS
## 17696                                 SP.REG.BRTH.Q4.ZS
## 17697                                 SP.REG.BRTH.Q5.ZS
## 17698                                 SP.REG.BRTH.RU.ZS
## 17699                                 SP.REG.BRTH.UR.ZS
## 17700                                    SP.REG.BRTH.ZS
## 17701                                    SP.REG.DTHS.ZS
## 17702                                       SP.RUR.TOTL
## 17703                                 SP.RUR.TOTL.FE.ZS
## 17704                                 SP.RUR.TOTL.MA.ZS
## 17705                                    SP.RUR.TOTL.ZG
## 17706                                    SP.RUR.TOTL.ZS
## 17707                                 SP.SEC.LTOT.FE.IN
## 17708                                    SP.SEC.LTOT.IN
## 17709                                 SP.SEC.LTOT.MA.IN
## 17710                                 SP.SEC.TOTL.FE.IN
## 17711                                    SP.SEC.TOTL.IN
## 17712                                 SP.SEC.TOTL.MA.IN
## 17713                                 SP.SEC.UTOT.FE.IN
## 17714                                    SP.SEC.UTOT.IN
## 17715                                 SP.SEC.UTOT.MA.IN
## 17716                                 SP.TER.TOTL.FE.IN
## 17717                                    SP.TER.TOTL.IN
## 17718                                 SP.TER.TOTL.MA.IN
## 17719                                       SP.URB.GROW
## 17720                                       SP.URB.LCTY
## 17721                                 SP.URB.LCTY.UR.ZS
## 17722                                       SP.URB.MCTY
## 17723                                 SP.URB.MCTY.UR.ZS
## 17724                                       SP.URB.TOTL
## 17725                                 SP.URB.TOTL.FE.ZS
## 17726                                 SP.URB.TOTL.IN.ZS
## 17727                                 SP.URB.TOTL.MA.ZS
## 17728                                    SP.URB.TOTL.ZS
## 17729                                 SP.UWT.LMTG.Q1.ZS
## 17730                                 SP.UWT.LMTG.Q2.ZS
## 17731                                 SP.UWT.LMTG.Q3.ZS
## 17732                                 SP.UWT.LMTG.Q4.ZS
## 17733                                 SP.UWT.LMTG.Q5.ZS
## 17734                                 SP.UWT.SPCG.Q1.ZS
## 17735                                 SP.UWT.SPCG.Q2.ZS
## 17736                                 SP.UWT.SPCG.Q3.ZS
## 17737                                 SP.UWT.SPCG.Q4.ZS
## 17738                                 SP.UWT.SPCG.Q5.ZS
## 17739                                       SP.UWT.TFRT
## 17740                                 SP.UWT.TFRT.Q1.ZS
## 17741                                 SP.UWT.TFRT.Q2.ZS
## 17742                                 SP.UWT.TFRT.Q3.ZS
## 17743                                 SP.UWT.TFRT.Q4.ZS
## 17744                                 SP.UWT.TFRT.Q5.ZS
## 17745                                SPI.D1.5.CHLD.MORT
## 17746                        SPI.D1.5.DT.TDS.DPPF.XP.ZS
## 17747                                      SPI.D1.5.LFP
## 17748                                      SPI.D1.5.POV
## 17749                           SPI.D1.5.SAFE.MAN.WATER
## 17750                                     SPI.D2.1.GDDS
## 17751                        SPI.D2.2.Openness.subscore
## 17752                                     SPI.D2.3.DSAS
## 17753                                     SPI.D2.4.NADA
## 17754                                      SPI.D3.1.POV
## 17755                                    SPI.D3.10.NEQL
## 17756                                    SPI.D3.11.CITY
## 17757                                    SPI.D3.12.CNSP
## 17758                                    SPI.D3.13.CLMT
## 17759                                    SPI.D3.14.LFWT
## 17760                                    SPI.D3.15.LAND
## 17761                                    SPI.D3.16.INST
## 17762                                    SPI.D3.17.PTNS
## 17763                                     SPI.D3.2.HNGR
## 17764                                     SPI.D3.3.HLTH
## 17765                                     SPI.D3.4.EDUC
## 17766                                     SPI.D3.5.GEND
## 17767                                     SPI.D3.6.WTRS
## 17768                                     SPI.D3.7.ENRG
## 17769                                     SPI.D3.8.WORK
## 17770                                     SPI.D3.9.INDY
## 17771                                   SPI.D4.1.1.POPU
## 17772                                   SPI.D4.1.2.AGRI
## 17773                                   SPI.D4.1.3.BIZZ
## 17774                                   SPI.D4.1.4.HOUS
## 17775                                  SPI.D4.1.5.AGSVY
## 17776                                   SPI.D4.1.6.LABR
## 17777                                   SPI.D4.1.7.HLTH
## 17778                                  SPI.D4.1.8.BZSVY
## 17779                                    SPI.D4.2.1.SPL
## 17780                                    SPI.D4.2.2.EDU
## 17781                                   SPI.D4.2.3.CRVS
## 17782                                    SPI.D4.2.4.LBR
## 17783                    SPI.D4.3.GEO.first.admin.level
## 17784                                     SPI.D4.4.SOPC
## 17785                                     SPI.D5.1.DILG
## 17786                                   SPI.D5.2.1.SNAU
## 17787                                  SPI.D5.2.10.GSBP
## 17788                                   SPI.D5.2.2.NABY
## 17789                                   SPI.D5.2.3.CNIN
## 17790                                  SPI.D5.2.4.CPIBY
## 17791                                   SPI.D5.2.5.HOUS
## 17792                                   SPI.D5.2.6.EMPL
## 17793                                   SPI.D5.2.7.CGOV
## 17794                                   SPI.D5.2.8.FINA
## 17795                                   SPI.D5.2.9.MONY
## 17796                                     SPI.D5.3.DISK
## 17797                                     SPI.D5.4.DIPN
## 17798                                     SPI.D5.5.DIFI
## 17799                                  SPI.DIM1.5.INDEX
## 17800                                  SPI.DIM2.1.INDEX
## 17801                                  SPI.DIM2.2.INDEX
## 17802                                  SPI.DIM2.4.INDEX
## 17803                                  SPI.DIM3.1.INDEX
## 17804                                  SPI.DIM3.2.INDEX
## 17805                                  SPI.DIM3.3.INDEX
## 17806                                  SPI.DIM3.4.INDEX
## 17807                              SPI.DIM4.1.CEN.INDEX
## 17808                              SPI.DIM4.1.SVY.INDEX
## 17809                                  SPI.DIM4.2.INDEX
## 17810                                  SPI.DIM4.3.INDEX
## 17811                                  SPI.DIM5.1.INDEX
## 17812                                  SPI.DIM5.2.INDEX
## 17813                                  SPI.DIM5.5.INDEX
## 17814                                         SPI.INDEX
## 17815                                    SPI.INDEX.PIL1
## 17816                                    SPI.INDEX.PIL2
## 17817                                    SPI.INDEX.PIL3
## 17818                                    SPI.INDEX.PIL4
## 17819                                    SPI.INDEX.PIL5
## 17820                                    SR.ARE.ARBL.K2
## 17821                                    SR.ARE.SURF.K2
## 17822                                    SS.H2O.FAIL.DY
## 17823                                       ST.INT.ARVL
## 17824                                       ST.INT.DPRT
## 17825                                    ST.INT.RCPT.CD
## 17826                                 ST.INT.RCPT.XP.ZS
## 17827                                    ST.INT.TRNR.CD
## 17828                                    ST.INT.TRNX.CD
## 17829                                    ST.INT.TVLR.CD
## 17830                                    ST.INT.TVLX.CD
## 17831                                    ST.INT.XPND.CD
## 17832                                 ST.INT.XPND.MP.ZS
## 17833                              TG.VAL.TOTL.GD.PP.ZS
## 17834                                 TG.VAL.TOTL.GD.ZS
## 17835                                 TG.VAL.TOTL.GG.ZS
## 17836                                    TM.CONC.DIV.NO
## 17837                                    TM.CONC.IND.XQ
## 17838                                     TM.DIV.IND.XQ
## 17839                                        TM.GATS.XD
## 17840                                 TM.MRC.NOTX.DV.ZS
## 17841                                 TM.MRC.NOTX.LD.ZS
## 17842                                 TM.PRI.MRCH.CD.UN
## 17843                                    TM.PRI.MRCH.ID
## 17844                                    TM.PRI.MRCH.XD
## 17845                                 TM.PRI.MRCH.XD.WB
## 17846                                    TM.PRI.NFSV.XU
## 17847                                 TM.QTY.ENGY.XD.WB
## 17848                                 TM.QTY.FOOD.XD.WB
## 17849                                 TM.QTY.KGDS.XD.WB
## 17850                                 TM.QTY.MRCH.XD.WB
## 17851                                 TM.QTY.MRCH.XD.WD
## 17852                                 TM.QTY.NFCG.XD.WB
## 17853                                    TM.QTY.NFSV.XD
## 17854                                 TM.QTY.RAWM.XD.WB
## 17855                                 TM.QTY.RAWP.XD.WB
## 17856                                 TM.QTY.RAWT.XD.WB
## 17857                                 TM.TAX.AGRI.CD.DV
## 17858                                 TM.TAX.AGRI.CD.LD
## 17859                                 TM.TAX.CLTH.CD.DV
## 17860                                 TM.TAX.CLTH.CD.LD
## 17861                                  TM.TAX.MANF.B.ZS
## 17862                                 TM.TAX.MANF.BC.ZS
## 17863                                 TM.TAX.MANF.BR.ZS
## 17864                                 TM.TAX.MANF.DM.ZS
## 17865                                 TM.TAX.MANF.DP.ZS
## 17866                                 TM.TAX.MANF.IP.ZS
## 17867                              TM.TAX.MANF.SM.AR.ZS
## 17868                              TM.TAX.MANF.SM.FN.ZS
## 17869                                 TM.TAX.MANF.SR.ZS
## 17870                              TM.TAX.MANF.WM.AR.ZS
## 17871                              TM.TAX.MANF.WM.FN.ZS
## 17872                                  TM.TAX.MRCH.B.ZS
## 17873                                 TM.TAX.MRCH.BC.ZS
## 17874                                 TM.TAX.MRCH.BR.ZS
## 17875                                 TM.TAX.MRCH.DM.ZS
## 17876                                 TM.TAX.MRCH.DP.ZS
## 17877                                 TM.TAX.MRCH.IP.ZS
## 17878                              TM.TAX.MRCH.SM.AR.ZS
## 17879                              TM.TAX.MRCH.SM.FN.ZS
## 17880                                 TM.TAX.MRCH.SR.ZS
## 17881                              TM.TAX.MRCH.WM.AR.ZS
## 17882                              TM.TAX.MRCH.WM.FN.ZS
## 17883                                  TM.TAX.TCOM.B.ZS
## 17884                                 TM.TAX.TCOM.BC.ZS
## 17885                                 TM.TAX.TCOM.BR.ZS
## 17886                                 TM.TAX.TCOM.DM.ZS
## 17887                                 TM.TAX.TCOM.DP.ZS
## 17888                                 TM.TAX.TCOM.IP.ZS
## 17889                              TM.TAX.TCOM.SM.AR.ZS
## 17890                              TM.TAX.TCOM.SM.FN.ZS
## 17891                                 TM.TAX.TCOM.SR.ZS
## 17892                              TM.TAX.TCOM.WM.AR.ZS
## 17893                              TM.TAX.TCOM.WM.FN.ZS
## 17894                                 TM.TAX.TXTL.CD.DV
## 17895                                 TM.TAX.TXTL.CD.LD
## 17896                                 TM.UVI.MRCH.XD.WD
## 17897                                 TM.VAL.AGRI.ZS.UN
## 17898                                 TM.VAL.ENGY.CD.WB
## 17899                                 TM.VAL.ENGY.KD.WB
## 17900                                 TM.VAL.FOOD.CD.WB
## 17901                                 TM.VAL.FOOD.KD.WB
## 17902                                 TM.VAL.FOOD.UN.ZS
## 17903                                 TM.VAL.FOOD.ZS.UN
## 17904                                    TM.VAL.FUEL.CD
## 17905                                 TM.VAL.FUEL.UN.ZS
## 17906                                 TM.VAL.FUEL.ZS.UN
## 17907                                 TM.VAL.ICTG.ZS.UN
## 17908                                 TM.VAL.INSF.ZS.WT
## 17909                                 TM.VAL.KGDS.CD.WB
## 17910                                 TM.VAL.KGDS.KD.WB
## 17911                                    TM.VAL.MANF.CD
## 17912                                 TM.VAL.MANF.ZS.UN
## 17913                                 TM.VAL.MCHT.UN.ZS
## 17914                                 TM.VAL.METL.UN.ZS
## 17915                                 TM.VAL.MMTL.ZS.UN
## 17916                                 TM.VAL.MRCH.AL.ZS
## 17917                                    TM.VAL.MRCH.CD
## 17918                                 TM.VAL.MRCH.CD.UN
## 17919                              TM.VAL.MRCH.CD.UN.ZG
## 17920                                 TM.VAL.MRCH.CD.WB
## 17921                                 TM.VAL.MRCH.CD.WT
## 17922                                 TM.VAL.MRCH.HI.ZS
## 17923                                    TM.VAL.MRCH.KD
## 17924                                 TM.VAL.MRCH.KD.UN
## 17925                              TM.VAL.MRCH.KD.UN.ZG
## 17926                                 TM.VAL.MRCH.KD.WB
## 17927                                 TM.VAL.MRCH.OR.ZS
## 17928                                 TM.VAL.MRCH.R1.ZS
## 17929                                 TM.VAL.MRCH.R2.ZS
## 17930                                 TM.VAL.MRCH.R3.ZS
## 17931                                 TM.VAL.MRCH.R4.ZS
## 17932                                 TM.VAL.MRCH.R5.ZS
## 17933                                 TM.VAL.MRCH.R6.ZS
## 17934                                 TM.VAL.MRCH.RS.ZS
## 17935                                 TM.VAL.MRCH.WL.CD
## 17936                                 TM.VAL.MRCH.WR.ZS
## 17937                                 TM.VAL.MRCH.XD.WD
## 17938                                 TM.VAL.NFCG.CD.WB
## 17939                                 TM.VAL.NFCG.KD.WB
## 17940                                 TM.VAL.NFOD.UN.ZS
## 17941                                    TM.VAL.NFPP.CD
## 17942                                    TM.VAL.NFPR.CD
## 17943                                 TM.VAL.OMFG.UN.ZS
## 17944                                 TM.VAL.OPRM.UN.ZS
## 17945                                 TM.VAL.OTHR.ZS.WT
## 17946                                 TM.VAL.RAWM.CD.WB
## 17947                                 TM.VAL.RAWM.KD.WB
## 17948                                 TM.VAL.RAWP.CD.WB
## 17949                                 TM.VAL.RAWP.KD.WB
## 17950                                 TM.VAL.RAWT.CD.WB
## 17951                                 TM.VAL.RAWT.KD.WB
## 17952                                 TM.VAL.SERV.CD.WT
## 17953                                 TM.VAL.TRAN.ZS.WT
## 17954                                 TM.VAL.TRVL.ZS.WT
## 17955                                    TM.VOL.MRCH.ZG
## 17956                                    TN.PRI.MRCH.ID
## 17957                                               TOT
## 17958                                           TOTRESV
## 17959                                    TRAD.EXPT.BVTO
## 17960                                    TRAD.EXPT.CHEM
## 17961                                    TRAD.EXPT.CRUD
## 17962                                   TRAD.EXPT.FLVSK
## 17963                                    TRAD.EXPT.FUEL
## 17964                                    TRAD.EXPT.MANF
## 17965                               TRAD.EXPT.MANF.OTHR
## 17966                                    TRAD.EXPT.MTRN
## 17967                                   TRAD.EXPT.OLFTW
## 17968                                    TRAD.EXPT.OTHR
## 17969                                    TRAD.IMPT.BVTO
## 17970                                    TRAD.IMPT.CHEM
## 17971                                    TRAD.IMPT.CRUD
## 17972                                   TRAD.IMPT.FLVSK
## 17973                                    TRAD.IMPT.FUEL
## 17974                                    TRAD.IMPT.MANF
## 17975                               TRAD.IMPT.MANF.OTHR
## 17976                                    TRAD.IMPT.MTRN
## 17977                                   TRAD.IMPT.OLFTW
## 17978                                    TRAD.IMPT.OTHR
## 17979                         TRD.ACRS.BRDR.DB0615.DFRN
## 17980                         TRD.ACRS.BRDR.DB1619.DFRN
## 17981                  TRD.ACRS.BRDR.DOC.COMP.HR.DB1619
## 17982                 TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615
## 17983            TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615.DFRN
## 17984                  TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615
## 17985             TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615.DFRN
## 17986            TRD.ACRS.BRDR.EXPT.BRDR.COMP.HR.DB1619
## 17987       TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619
## 17988  TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619.DFRN
## 17989                 TRD.ACRS.BRDR.EXPT.COST.CD.DB0615
## 17990            TRD.ACRS.BRDR.EXPT.COST.CD.DB0615.DFRN
## 17991        TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619
## 17992   TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619.DFRN
## 17993                 TRD.ACRS.BRDR.EXPT.DURS.DY.DB0615
## 17994    TRD.ACRS.BRDR.EXPT.TM.BRDR.COMP.HR.DB1619.DFRN
## 17995     TRD.ACRS.BRDR.EXPT.TM.DOC.COMP.HR.DB1619.DFRN
## 17996              TRD.ACRS.BRDR.EXPT.TM.DY.DB0615.DFRN
## 17997             TRD.ACRS.BRDR.IMP.BRDR.COMP.HR.DB1619
## 17998        TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619
## 17999   TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619.DFRN
## 18000                  TRD.ACRS.BRDR.IMP.COST.CD.DB0615
## 18001             TRD.ACRS.BRDR.IMP.COST.CD.DB0615.DFRN
## 18002         TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619
## 18003    TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619.DFRN
## 18004              TRD.ACRS.BRDR.IMP.DOC.COMP.HR.DB1619
## 18005                  TRD.ACRS.BRDR.IMP.DURS.DY.DB0615
## 18006     TRD.ACRS.BRDR.IMP.TM.BRDR.COMP.HR.DB1619.DFRN
## 18007      TRD.ACRS.BRDR.IMP.TM.DOC.COMP.HR.DB1619.DFRN
## 18008               TRD.ACRS.BRDR.IMP.TM.DY.DB0615.DFRN
## 18009                             TRD.ACRS.BRDR.RK.DB19
## 18010                                 TT.INC.MRCH.XD.UN
## 18011                                    TT.PRI.MRCH.XD
## 18012                                 TT.PRI.MRCH.XD.UN
## 18013                                 TT.PRI.MRCH.XD.WB
## 18014                                 TT.PRI.MRCH.XD.WD
## 18015                                    TX.CONC.DIV.NO
## 18016                                    TX.CONC.IND.XQ
## 18017                                     TX.DIV.IND.XQ
## 18018                                 TX.MNF.TECH.ZS.UN
## 18019                                    TX.PRI.FUEL.ID
## 18020                                    TX.PRI.MANF.ID
## 18021                                 TX.PRI.MRCH.CD.UN
## 18022                                    TX.PRI.MRCH.ID
## 18023                                    TX.PRI.MRCH.XD
## 18024                                 TX.PRI.MRCH.XD.WB
## 18025                                    TX.PRI.NFPR.ID
## 18026                                    TX.PRI.NFSV.XU
## 18027                                 TX.QTY.COM1.XD.WB
## 18028                                 TX.QTY.COM2.XD.WB
## 18029                                 TX.QTY.COM3.XD.WB
## 18030                                 TX.QTY.COM4.XD.WB
## 18031                                 TX.QTY.MANF.XD.WB
## 18032                                 TX.QTY.MRCH.XD.WB
## 18033                                 TX.QTY.MRCH.XD.WD
## 18034                                    TX.QTY.NFSV.XD
## 18035                                 TX.QTY.OCOM.XD.WB
## 18036                                 TX.UVI.MRCH.XD.WD
## 18037                                 TX.VAL.AGRI.ZS.UN
## 18038                                 TX.VAL.COM1.CD.WB
## 18039                                 TX.VAL.COM1.KD.WB
## 18040                                 TX.VAL.COM2.CD.WB
## 18041                                 TX.VAL.COM2.KD.WB
## 18042                                 TX.VAL.COM3.CD.WB
## 18043                                 TX.VAL.COM3.KD.WB
## 18044                                 TX.VAL.COM4.CD.WB
## 18045                                 TX.VAL.COM4.KD.WB
## 18046                                 TX.VAL.FMTL.UN.ZS
## 18047                                 TX.VAL.FOOD.UN.ZS
## 18048                                 TX.VAL.FOOD.ZS.UN
## 18049                                    TX.VAL.FUEL.CD
## 18050                                 TX.VAL.FUEL.ZS.UN
## 18051                                 TX.VAL.ICTG.ZS.UN
## 18052                                 TX.VAL.INSF.ZS.WT
## 18053                                    TX.VAL.MANF.CD
## 18054                                 TX.VAL.MANF.CD.WB
## 18055                                 TX.VAL.MANF.KD.WB
## 18056                                 TX.VAL.MANF.UN.ZS
## 18057                                 TX.VAL.MANF.ZS.UN
## 18058                                 TX.VAL.MCHT.UN.ZS
## 18059                                 TX.VAL.METL.UN.ZS
## 18060                                 TX.VAL.MMTL.ZS.UN
## 18061                                 TX.VAL.MNRL.UN.ZS
## 18062                                 TX.VAL.MRCH.AL.ZS
## 18063                                    TX.VAL.MRCH.CD
## 18064                                 TX.VAL.MRCH.CD.UN
## 18065                              TX.VAL.MRCH.CD.UN.ZG
## 18066                                 TX.VAL.MRCH.CD.WB
## 18067                                 TX.VAL.MRCH.CD.WT
## 18068                                 TX.VAL.MRCH.HI.CD
## 18069                                 TX.VAL.MRCH.HI.ZS
## 18070                                    TX.VAL.MRCH.KD
## 18071                                 TX.VAL.MRCH.KD.UN
## 18072                              TX.VAL.MRCH.KD.UN.ZG
## 18073                                 TX.VAL.MRCH.KD.WB
## 18074                                 TX.VAL.MRCH.OR.CD
## 18075                                 TX.VAL.MRCH.OR.ZS
## 18076                                 TX.VAL.MRCH.R1.CD
## 18077                                 TX.VAL.MRCH.R1.ZS
## 18078                                 TX.VAL.MRCH.R2.CD
## 18079                                 TX.VAL.MRCH.R2.ZS
## 18080                                 TX.VAL.MRCH.R3.CD
## 18081                                 TX.VAL.MRCH.R3.ZS
## 18082                                 TX.VAL.MRCH.R4.CD
## 18083                                 TX.VAL.MRCH.R4.ZS
## 18084                                 TX.VAL.MRCH.R5.CD
## 18085                                 TX.VAL.MRCH.R5.ZS
## 18086                                 TX.VAL.MRCH.R6.CD
## 18087                                 TX.VAL.MRCH.R6.ZS
## 18088                                 TX.VAL.MRCH.RS.ZS
## 18089                                 TX.VAL.MRCH.WL.CD
## 18090                                 TX.VAL.MRCH.WR.CD
## 18091                                 TX.VAL.MRCH.WR.ZS
## 18092                                 TX.VAL.MRCH.XD.WD
## 18093                                 TX.VAL.NFOD.UN.ZS
## 18094                                    TX.VAL.NFPP.CD
## 18095                                    TX.VAL.NFPR.CD
## 18096                                 TX.VAL.OCOM.CD.WB
## 18097                                 TX.VAL.OCOM.KD.WB
## 18098                                 TX.VAL.OPRM.UN.ZS
## 18099                                 TX.VAL.OTHR.ZS.WT
## 18100                                 TX.VAL.SERV.CD.WT
## 18101                                 TX.VAL.SERV.MT.ZS
## 18102                                 TX.VAL.TCOM.CD.WB
## 18103                                 TX.VAL.TCOM.KD.WB
## 18104                                    TX.VAL.TECH.CD
## 18105                               TX.VAL.TECH.MANF.ZS
## 18106                                 TX.VAL.TECH.MF.ZS
## 18107                                 TX.VAL.TRAN.ZS.WT
## 18108                                 TX.VAL.TRVL.ZS.WT
## 18109                                 TX.VAL.TXTL.UN.ZS
## 18110                                 TX.VAL.XTHR.UN.ZS
## 18111                                    TX.VOL.MRCH.ZG
## 18112                        UIS.ADMI.ENDOFLOWERSEC.MAT
## 18113                       UIS.ADMI.ENDOFLOWERSEC.READ
## 18114                            UIS.ADMI.ENDOFPRIM.MAT
## 18115                           UIS.ADMI.ENDOFPRIM.READ
## 18116                        UIS.ADMI.GRADE2OR3PRIM.MAT
## 18117                       UIS.ADMI.GRADE2OR3PRIM.READ
## 18118                        UIS.AIDEDUC.LOWINCOMECOUNT
## 18119                              UIS.AIR.1.GLAST.GPIA
## 18120                          UIS.AIR.2.GPV.GLAST.GPIA
## 18121                                    UIS.ASTAFF.6T8
## 18122                                  UIS.ASTAFF.6T8.F
## 18123                                  UIS.ASTAFF.6T8.M
## 18124                                       UIS.CEAGE.1
## 18125                                          UIS.CR.1
## 18126                                        UIS.CR.1.F
## 18127                                   UIS.CR.1.F.LPIA
## 18128                                   UIS.CR.1.F.WPIA
## 18129                                     UIS.CR.1.GPIA
## 18130                                     UIS.CR.1.LPIA
## 18131                                        UIS.CR.1.M
## 18132                                   UIS.CR.1.M.LPIA
## 18133                                   UIS.CR.1.M.WPIA
## 18134                                       UIS.CR.1.Q1
## 18135                                     UIS.CR.1.Q1.F
## 18136                                UIS.CR.1.Q1.F.LPIA
## 18137                                  UIS.CR.1.Q1.GPIA
## 18138                                  UIS.CR.1.Q1.LPIA
## 18139                                     UIS.CR.1.Q1.M
## 18140                                UIS.CR.1.Q1.M.LPIA
## 18141                                       UIS.CR.1.Q2
## 18142                                     UIS.CR.1.Q2.F
## 18143                                UIS.CR.1.Q2.F.LPIA
## 18144                                  UIS.CR.1.Q2.GPIA
## 18145                                  UIS.CR.1.Q2.LPIA
## 18146                                     UIS.CR.1.Q2.M
## 18147                                UIS.CR.1.Q2.M.LPIA
## 18148                                       UIS.CR.1.Q3
## 18149                                     UIS.CR.1.Q3.F
## 18150                                UIS.CR.1.Q3.F.LPIA
## 18151                                  UIS.CR.1.Q3.GPIA
## 18152                                  UIS.CR.1.Q3.LPIA
## 18153                                     UIS.CR.1.Q3.M
## 18154                                UIS.CR.1.Q3.M.LPIA
## 18155                                       UIS.CR.1.Q4
## 18156                                     UIS.CR.1.Q4.F
## 18157                                UIS.CR.1.Q4.F.LPIA
## 18158                                  UIS.CR.1.Q4.GPIA
## 18159                                  UIS.CR.1.Q4.LPIA
## 18160                                     UIS.CR.1.Q4.M
## 18161                                UIS.CR.1.Q4.M.LPIA
## 18162                                       UIS.CR.1.Q5
## 18163                                     UIS.CR.1.Q5.F
## 18164                                UIS.CR.1.Q5.F.LPIA
## 18165                                  UIS.CR.1.Q5.GPIA
## 18166                                  UIS.CR.1.Q5.LPIA
## 18167                                     UIS.CR.1.Q5.M
## 18168                                UIS.CR.1.Q5.M.LPIA
## 18169                                      UIS.CR.1.RUR
## 18170                                    UIS.CR.1.RUR.F
## 18171                               UIS.CR.1.RUR.F.WPIA
## 18172                                 UIS.CR.1.RUR.GPIA
## 18173                                    UIS.CR.1.RUR.M
## 18174                               UIS.CR.1.RUR.M.WPIA
## 18175                                   UIS.CR.1.RUR.Q1
## 18176                                 UIS.CR.1.RUR.Q1.F
## 18177                              UIS.CR.1.RUR.Q1.GPIA
## 18178                                 UIS.CR.1.RUR.Q1.M
## 18179                                   UIS.CR.1.RUR.Q2
## 18180                                 UIS.CR.1.RUR.Q2.F
## 18181                              UIS.CR.1.RUR.Q2.GPIA
## 18182                                 UIS.CR.1.RUR.Q2.M
## 18183                                   UIS.CR.1.RUR.Q3
## 18184                                 UIS.CR.1.RUR.Q3.F
## 18185                              UIS.CR.1.RUR.Q3.GPIA
## 18186                                 UIS.CR.1.RUR.Q3.M
## 18187                                   UIS.CR.1.RUR.Q4
## 18188                                 UIS.CR.1.RUR.Q4.F
## 18189                              UIS.CR.1.RUR.Q4.GPIA
## 18190                                 UIS.CR.1.RUR.Q4.M
## 18191                                   UIS.CR.1.RUR.Q5
## 18192                                 UIS.CR.1.RUR.Q5.F
## 18193                              UIS.CR.1.RUR.Q5.GPIA
## 18194                                 UIS.CR.1.RUR.Q5.M
## 18195                                 UIS.CR.1.RUR.WPIA
## 18196                                      UIS.CR.1.URB
## 18197                                    UIS.CR.1.URB.F
## 18198                               UIS.CR.1.URB.F.WPIA
## 18199                                 UIS.CR.1.URB.GPIA
## 18200                                    UIS.CR.1.URB.M
## 18201                               UIS.CR.1.URB.M.WPIA
## 18202                                   UIS.CR.1.URB.Q1
## 18203                                 UIS.CR.1.URB.Q1.F
## 18204                              UIS.CR.1.URB.Q1.GPIA
## 18205                                 UIS.CR.1.URB.Q1.M
## 18206                                   UIS.CR.1.URB.Q2
## 18207                                 UIS.CR.1.URB.Q2.F
## 18208                              UIS.CR.1.URB.Q2.GPIA
## 18209                                 UIS.CR.1.URB.Q2.M
## 18210                                   UIS.CR.1.URB.Q3
## 18211                                 UIS.CR.1.URB.Q3.F
## 18212                              UIS.CR.1.URB.Q3.GPIA
## 18213                                 UIS.CR.1.URB.Q3.M
## 18214                                   UIS.CR.1.URB.Q4
## 18215                                 UIS.CR.1.URB.Q4.F
## 18216                              UIS.CR.1.URB.Q4.GPIA
## 18217                                 UIS.CR.1.URB.Q4.M
## 18218                                   UIS.CR.1.URB.Q5
## 18219                                 UIS.CR.1.URB.Q5.F
## 18220                              UIS.CR.1.URB.Q5.GPIA
## 18221                                 UIS.CR.1.URB.Q5.M
## 18222                                 UIS.CR.1.URB.WPIA
## 18223                                     UIS.CR.1.WPIA
## 18224                                          UIS.CR.2
## 18225                                        UIS.CR.2.F
## 18226                                   UIS.CR.2.F.LPIA
## 18227                                   UIS.CR.2.F.WPIA
## 18228                                     UIS.CR.2.GPIA
## 18229                                     UIS.CR.2.LPIA
## 18230                                        UIS.CR.2.M
## 18231                                   UIS.CR.2.M.LPIA
## 18232                                   UIS.CR.2.M.WPIA
## 18233                                       UIS.CR.2.Q1
## 18234                                     UIS.CR.2.Q1.F
## 18235                                UIS.CR.2.Q1.F.LPIA
## 18236                                  UIS.CR.2.Q1.GPIA
## 18237                                  UIS.CR.2.Q1.LPIA
## 18238                                     UIS.CR.2.Q1.M
## 18239                                UIS.CR.2.Q1.M.LPIA
## 18240                                       UIS.CR.2.Q2
## 18241                                     UIS.CR.2.Q2.F
## 18242                                UIS.CR.2.Q2.F.LPIA
## 18243                                  UIS.CR.2.Q2.GPIA
## 18244                                  UIS.CR.2.Q2.LPIA
## 18245                                     UIS.CR.2.Q2.M
## 18246                                UIS.CR.2.Q2.M.LPIA
## 18247                                       UIS.CR.2.Q3
## 18248                                     UIS.CR.2.Q3.F
## 18249                                UIS.CR.2.Q3.F.LPIA
## 18250                                  UIS.CR.2.Q3.GPIA
## 18251                                  UIS.CR.2.Q3.LPIA
## 18252                                     UIS.CR.2.Q3.M
## 18253                                UIS.CR.2.Q3.M.LPIA
## 18254                                       UIS.CR.2.Q4
## 18255                                     UIS.CR.2.Q4.F
## 18256                                UIS.CR.2.Q4.F.LPIA
## 18257                                  UIS.CR.2.Q4.GPIA
## 18258                                  UIS.CR.2.Q4.LPIA
## 18259                                     UIS.CR.2.Q4.M
## 18260                                UIS.CR.2.Q4.M.LPIA
## 18261                                       UIS.CR.2.Q5
## 18262                                     UIS.CR.2.Q5.F
## 18263                                UIS.CR.2.Q5.F.LPIA
## 18264                                  UIS.CR.2.Q5.GPIA
## 18265                                  UIS.CR.2.Q5.LPIA
## 18266                                     UIS.CR.2.Q5.M
## 18267                                UIS.CR.2.Q5.M.LPIA
## 18268                                      UIS.CR.2.RUR
## 18269                                    UIS.CR.2.RUR.F
## 18270                               UIS.CR.2.RUR.F.WPIA
## 18271                                 UIS.CR.2.RUR.GPIA
## 18272                                    UIS.CR.2.RUR.M
## 18273                               UIS.CR.2.RUR.M.WPIA
## 18274                                   UIS.CR.2.RUR.Q1
## 18275                                 UIS.CR.2.RUR.Q1.F
## 18276                              UIS.CR.2.RUR.Q1.GPIA
## 18277                                 UIS.CR.2.RUR.Q1.M
## 18278                                   UIS.CR.2.RUR.Q2
## 18279                                 UIS.CR.2.RUR.Q2.F
## 18280                              UIS.CR.2.RUR.Q2.GPIA
## 18281                                 UIS.CR.2.RUR.Q2.M
## 18282                                   UIS.CR.2.RUR.Q3
## 18283                                 UIS.CR.2.RUR.Q3.F
## 18284                              UIS.CR.2.RUR.Q3.GPIA
## 18285                                 UIS.CR.2.RUR.Q3.M
## 18286                                   UIS.CR.2.RUR.Q4
## 18287                                 UIS.CR.2.RUR.Q4.F
## 18288                              UIS.CR.2.RUR.Q4.GPIA
## 18289                                 UIS.CR.2.RUR.Q4.M
## 18290                                   UIS.CR.2.RUR.Q5
## 18291                                 UIS.CR.2.RUR.Q5.F
## 18292                              UIS.CR.2.RUR.Q5.GPIA
## 18293                                 UIS.CR.2.RUR.Q5.M
## 18294                                 UIS.CR.2.RUR.WPIA
## 18295                                      UIS.CR.2.URB
## 18296                                    UIS.CR.2.URB.F
## 18297                               UIS.CR.2.URB.F.WPIA
## 18298                                 UIS.CR.2.URB.GPIA
## 18299                                    UIS.CR.2.URB.M
## 18300                               UIS.CR.2.URB.M.WPIA
## 18301                                   UIS.CR.2.URB.Q1
## 18302                                 UIS.CR.2.URB.Q1.F
## 18303                              UIS.CR.2.URB.Q1.GPIA
## 18304                                 UIS.CR.2.URB.Q1.M
## 18305                                   UIS.CR.2.URB.Q2
## 18306                                 UIS.CR.2.URB.Q2.F
## 18307                              UIS.CR.2.URB.Q2.GPIA
## 18308                                 UIS.CR.2.URB.Q2.M
## 18309                                   UIS.CR.2.URB.Q3
## 18310                                 UIS.CR.2.URB.Q3.F
## 18311                              UIS.CR.2.URB.Q3.GPIA
## 18312                                 UIS.CR.2.URB.Q3.M
## 18313                                   UIS.CR.2.URB.Q4
## 18314                                 UIS.CR.2.URB.Q4.F
## 18315                              UIS.CR.2.URB.Q4.GPIA
## 18316                                 UIS.CR.2.URB.Q4.M
## 18317                                   UIS.CR.2.URB.Q5
## 18318                                 UIS.CR.2.URB.Q5.F
## 18319                              UIS.CR.2.URB.Q5.GPIA
## 18320                                 UIS.CR.2.URB.Q5.M
## 18321                                 UIS.CR.2.URB.WPIA
## 18322                                     UIS.CR.2.WPIA
## 18323                                          UIS.CR.3
## 18324                                        UIS.CR.3.F
## 18325                                   UIS.CR.3.F.LPIA
## 18326                                   UIS.CR.3.F.WPIA
## 18327                                     UIS.CR.3.GPIA
## 18328                                     UIS.CR.3.LPIA
## 18329                                        UIS.CR.3.M
## 18330                                   UIS.CR.3.M.LPIA
## 18331                                   UIS.CR.3.M.WPIA
## 18332                                       UIS.CR.3.Q1
## 18333                                     UIS.CR.3.Q1.F
## 18334                                UIS.CR.3.Q1.F.LPIA
## 18335                                  UIS.CR.3.Q1.GPIA
## 18336                                  UIS.CR.3.Q1.LPIA
## 18337                                     UIS.CR.3.Q1.M
## 18338                                UIS.CR.3.Q1.M.LPIA
## 18339                                       UIS.CR.3.Q2
## 18340                                     UIS.CR.3.Q2.F
## 18341                                UIS.CR.3.Q2.F.LPIA
## 18342                                  UIS.CR.3.Q2.GPIA
## 18343                                  UIS.CR.3.Q2.LPIA
## 18344                                     UIS.CR.3.Q2.M
## 18345                                UIS.CR.3.Q2.M.LPIA
## 18346                                       UIS.CR.3.Q3
## 18347                                     UIS.CR.3.Q3.F
## 18348                                UIS.CR.3.Q3.F.LPIA
## 18349                                  UIS.CR.3.Q3.GPIA
## 18350                                  UIS.CR.3.Q3.LPIA
## 18351                                     UIS.CR.3.Q3.M
## 18352                                UIS.CR.3.Q3.M.LPIA
## 18353                                       UIS.CR.3.Q4
## 18354                                     UIS.CR.3.Q4.F
## 18355                                UIS.CR.3.Q4.F.LPIA
## 18356                                  UIS.CR.3.Q4.GPIA
## 18357                                  UIS.CR.3.Q4.LPIA
## 18358                                     UIS.CR.3.Q4.M
## 18359                                UIS.CR.3.Q4.M.LPIA
## 18360                                       UIS.CR.3.Q5
## 18361                                     UIS.CR.3.Q5.F
## 18362                                UIS.CR.3.Q5.F.LPIA
## 18363                                  UIS.CR.3.Q5.GPIA
## 18364                                  UIS.CR.3.Q5.LPIA
## 18365                                     UIS.CR.3.Q5.M
## 18366                                UIS.CR.3.Q5.M.LPIA
## 18367                                      UIS.CR.3.RUR
## 18368                                    UIS.CR.3.RUR.F
## 18369                               UIS.CR.3.RUR.F.WPIA
## 18370                                 UIS.CR.3.RUR.GPIA
## 18371                                    UIS.CR.3.RUR.M
## 18372                               UIS.CR.3.RUR.M.WPIA
## 18373                                   UIS.CR.3.RUR.Q1
## 18374                                 UIS.CR.3.RUR.Q1.F
## 18375                              UIS.CR.3.RUR.Q1.GPIA
## 18376                                 UIS.CR.3.RUR.Q1.M
## 18377                                   UIS.CR.3.RUR.Q2
## 18378                                 UIS.CR.3.RUR.Q2.F
## 18379                              UIS.CR.3.RUR.Q2.GPIA
## 18380                                 UIS.CR.3.RUR.Q2.M
## 18381                                   UIS.CR.3.RUR.Q3
## 18382                                 UIS.CR.3.RUR.Q3.F
## 18383                              UIS.CR.3.RUR.Q3.GPIA
## 18384                                 UIS.CR.3.RUR.Q3.M
## 18385                                   UIS.CR.3.RUR.Q4
## 18386                                 UIS.CR.3.RUR.Q4.F
## 18387                              UIS.CR.3.RUR.Q4.GPIA
## 18388                                 UIS.CR.3.RUR.Q4.M
## 18389                                   UIS.CR.3.RUR.Q5
## 18390                                 UIS.CR.3.RUR.Q5.F
## 18391                              UIS.CR.3.RUR.Q5.GPIA
## 18392                                 UIS.CR.3.RUR.Q5.M
## 18393                                 UIS.CR.3.RUR.WPIA
## 18394                                      UIS.CR.3.URB
## 18395                                    UIS.CR.3.URB.F
## 18396                               UIS.CR.3.URB.F.WPIA
## 18397                                 UIS.CR.3.URB.GPIA
## 18398                                    UIS.CR.3.URB.M
## 18399                               UIS.CR.3.URB.M.WPIA
## 18400                                   UIS.CR.3.URB.Q1
## 18401                                 UIS.CR.3.URB.Q1.F
## 18402                              UIS.CR.3.URB.Q1.GPIA
## 18403                                 UIS.CR.3.URB.Q1.M
## 18404                                   UIS.CR.3.URB.Q2
## 18405                                 UIS.CR.3.URB.Q2.F
## 18406                              UIS.CR.3.URB.Q2.GPIA
## 18407                                 UIS.CR.3.URB.Q2.M
## 18408                                   UIS.CR.3.URB.Q3
## 18409                                 UIS.CR.3.URB.Q3.F
## 18410                              UIS.CR.3.URB.Q3.GPIA
## 18411                                 UIS.CR.3.URB.Q3.M
## 18412                                   UIS.CR.3.URB.Q4
## 18413                                 UIS.CR.3.URB.Q4.F
## 18414                              UIS.CR.3.URB.Q4.GPIA
## 18415                                 UIS.CR.3.URB.Q4.M
## 18416                                   UIS.CR.3.URB.Q5
## 18417                                 UIS.CR.3.URB.Q5.F
## 18418                              UIS.CR.3.URB.Q5.GPIA
## 18419                                 UIS.CR.3.URB.Q5.M
## 18420                                 UIS.CR.3.URB.WPIA
## 18421                                     UIS.CR.3.WPIA
## 18422                                         UIS.E.0.F
## 18423                                         UIS.E.0.M
## 18424                                         UIS.E.0.T
## 18425                                        UIS.E.01.F
## 18426                                        UIS.E.01.M
## 18427                                        UIS.E.01.T
## 18428                                        UIS.E.02.M
## 18429                                         UIS.E.1.M
## 18430                                           UIS.E.2
## 18431                                         UIS.E.2.F
## 18432                                         UIS.E.2.M
## 18433                                        UIS.E.23.M
## 18434                                           UIS.E.3
## 18435                                         UIS.E.3.F
## 18436                                         UIS.E.3.M
## 18437                                           UIS.E.4
## 18438                                         UIS.E.4.F
## 18439                                         UIS.E.4.M
## 18440                                           UIS.E.5
## 18441                                         UIS.E.5.F
## 18442                                         UIS.E.5.M
## 18443                                        UIS.E.58.M
## 18444                                           UIS.E.6
## 18445                                         UIS.E.6.F
## 18446                                         UIS.E.6.M
## 18447                                           UIS.E.7
## 18448                                         UIS.E.7.F
## 18449                                         UIS.E.7.M
## 18450                                           UIS.E.8
## 18451                                         UIS.E.8.F
## 18452                                         UIS.E.8.M
## 18453                                  UIS.EA.1.AG25T99
## 18454                                UIS.EA.1.AG25T99.F
## 18455                                UIS.EA.1.AG25T99.M
## 18456                                UIS.EA.1T6.AG25T99
## 18457                              UIS.EA.1T6.AG25T99.F
## 18458                              UIS.EA.1T6.AG25T99.M
## 18459                           UIS.EA.1T8.AG25T99.GPIA
## 18460                                  UIS.EA.2.AG25T99
## 18461                                UIS.EA.2.AG25T99.F
## 18462                                UIS.EA.2.AG25T99.M
## 18463                                UIS.EA.2T6.AG25T99
## 18464                              UIS.EA.2T6.AG25T99.F
## 18465                              UIS.EA.2T6.AG25T99.M
## 18466                           UIS.EA.2T8.AG25T99.GPIA
## 18467                                  UIS.EA.3.AG25T99
## 18468                                UIS.EA.3.AG25T99.F
## 18469                                UIS.EA.3.AG25T99.M
## 18470                                UIS.EA.3T6.AG25T99
## 18471                              UIS.EA.3T6.AG25T99.F
## 18472                              UIS.EA.3T6.AG25T99.M
## 18473                           UIS.EA.3T8.AG25T99.GPIA
## 18474                                  UIS.EA.4.AG25T99
## 18475                                UIS.EA.4.AG25T99.F
## 18476                                UIS.EA.4.AG25T99.M
## 18477                                UIS.EA.4T6.AG25T99
## 18478                              UIS.EA.4T6.AG25T99.F
## 18479                              UIS.EA.4T6.AG25T99.M
## 18480                           UIS.EA.4T8.AG25T99.GPIA
## 18481                                  UIS.EA.5.AG25T99
## 18482                                UIS.EA.5.AG25T99.F
## 18483                                UIS.EA.5.AG25T99.M
## 18484                                UIS.EA.5T8.AG25T99
## 18485                              UIS.EA.5T8.AG25T99.F
## 18486                           UIS.EA.5T8.AG25T99.GPIA
## 18487                              UIS.EA.5T8.AG25T99.M
## 18488                                  UIS.EA.6.AG25T99
## 18489                                UIS.EA.6.AG25T99.F
## 18490                                UIS.EA.6.AG25T99.M
## 18491                                UIS.EA.6T8.AG25T99
## 18492                              UIS.EA.6T8.AG25T99.F
## 18493                           UIS.EA.6T8.AG25T99.GPIA
## 18494                              UIS.EA.6T8.AG25T99.M
## 18495                                  UIS.EA.7.AG25T99
## 18496                                UIS.EA.7.AG25T99.F
## 18497                                UIS.EA.7.AG25T99.M
## 18498                                UIS.EA.7T8.AG25T99
## 18499                              UIS.EA.7T8.AG25T99.F
## 18500                           UIS.EA.7T8.AG25T99.GPIA
## 18501                              UIS.EA.7T8.AG25T99.M
## 18502                                  UIS.EA.8.AG25T99
## 18503                                UIS.EA.8.AG25T99.F
## 18504                             UIS.EA.8.AG25T99.GPIA
## 18505                                UIS.EA.8.AG25T99.M
## 18506                           UIS.EA.MEAN.1T6.AG25T99
## 18507                         UIS.EA.MEAN.1T6.AG25T99.F
## 18508                         UIS.EA.MEAN.1T6.AG25T99.M
## 18509                                 UIS.EA.NS.AG25T99
## 18510                               UIS.EA.NS.AG25T99.F
## 18511                               UIS.EA.NS.AG25T99.M
## 18512                                 UIS.EA.S1.AG25T99
## 18513                               UIS.EA.S1.AG25T99.F
## 18514                               UIS.EA.S1.AG25T99.M
## 18515                               UIS.EA.S1T8.AG25T99
## 18516                             UIS.EA.S1T8.AG25T99.F
## 18517                          UIS.EA.S1T8.AG25T99.GPIA
## 18518                             UIS.EA.S1T8.AG25T99.M
## 18519                                 UIS.EA.UK.AG25T99
## 18520                               UIS.EA.UK.AG25T99.F
## 18521                               UIS.EA.UK.AG25T99.M
## 18522                                  UIS.ESG.LOWERSEC
## 18523                             UIS.ESG.LOWERSEC.COGN
## 18524                           UIS.ESG.LOWERSEC.COGN.F
## 18525                        UIS.ESG.LOWERSEC.COGN.GPIA
## 18526                           UIS.ESG.LOWERSEC.COGN.M
## 18527                                UIS.ESG.LOWERSEC.F
## 18528                             UIS.ESG.LOWERSEC.GPIA
## 18529                                UIS.ESG.LOWERSEC.M
## 18530                        UIS.ESG.LOWERSEC.NCOG.CONF
## 18531                      UIS.ESG.LOWERSEC.NCOG.CONF.F
## 18532                    UIS.ESG.LOWERSEC.NCOG.CONF.GPI
## 18533                      UIS.ESG.LOWERSEC.NCOG.CONF.M
## 18534                        UIS.ESG.LOWERSEC.NCOG.ENJO
## 18535                      UIS.ESG.LOWERSEC.NCOG.ENJO.F
## 18536                    UIS.ESG.LOWERSEC.NCOG.ENJO.GPI
## 18537                      UIS.ESG.LOWERSEC.NCOG.ENJO.M
## 18538                                 UIS.EV1524P.2T5.V
## 18539                               UIS.EV1524P.2T5.V.F
## 18540                            UIS.EV1524P.2T5.V.GPIA
## 18541                               UIS.EV1524P.2T5.V.M
## 18542                                       UIS.FEP.2.V
## 18543                                       UIS.FEP.3.V
## 18544                                       UIS.FEP.4.V
## 18545                                  UIS.FGP.5T8.F400
## 18546                                  UIS.FGP.5T8.F600
## 18547                         UIS.FGP.5T8.FNON500600700
## 18548                                   UIS.FHLANGILP.1
## 18549                                 UIS.FHLANGILP.1.F
## 18550                              UIS.FHLANGILP.1.GPIA
## 18551                           UIS.FHLANGILP.1.HIGHSES
## 18552                            UIS.FHLANGILP.1.LOWSES
## 18553                              UIS.FHLANGILP.1.LPIA
## 18554                                 UIS.FHLANGILP.1.M
## 18555                               UIS.FHLANGILP.1.RUR
## 18556                               UIS.FHLANGILP.1.URB
## 18557                              UIS.FHLANGILP.1.WPIA
## 18558                                UIS.FOSGP.5T8.F400
## 18559                          UIS.FOSGP.5T8.F500600700
## 18560                                UIS.FOSGP.5T8.F600
## 18561                       UIS.FOSGP.5T8.FNON500600700
## 18562                                         UIS.FTP.2
## 18563                                         UIS.FTP.3
## 18564                                         UIS.FTP.4
## 18565                                       UIS.GAR.5T8
## 18566                                     UIS.GAR.5T8.F
## 18567                                UIS.GAR.5T8.F.LPIA
## 18568                                UIS.GAR.5T8.F.WPIA
## 18569                                  UIS.GAR.5T8.GPIA
## 18570                                  UIS.GAR.5T8.LPIA
## 18571                                     UIS.GAR.5T8.M
## 18572                                UIS.GAR.5T8.M.LPIA
## 18573                                UIS.GAR.5T8.M.WPIA
## 18574                                    UIS.GAR.5T8.Q1
## 18575                                  UIS.GAR.5T8.Q1.F
## 18576                             UIS.GAR.5T8.Q1.F.LPIA
## 18577                               UIS.GAR.5T8.Q1.GPIA
## 18578                               UIS.GAR.5T8.Q1.LPIA
## 18579                                  UIS.GAR.5T8.Q1.M
## 18580                             UIS.GAR.5T8.Q1.M.LPIA
## 18581                                    UIS.GAR.5T8.Q2
## 18582                                  UIS.GAR.5T8.Q2.F
## 18583                             UIS.GAR.5T8.Q2.F.LPIA
## 18584                               UIS.GAR.5T8.Q2.GPIA
## 18585                               UIS.GAR.5T8.Q2.LPIA
## 18586                                  UIS.GAR.5T8.Q2.M
## 18587                             UIS.GAR.5T8.Q2.M.LPIA
## 18588                                    UIS.GAR.5T8.Q3
## 18589                                  UIS.GAR.5T8.Q3.F
## 18590                             UIS.GAR.5T8.Q3.F.LPIA
## 18591                               UIS.GAR.5T8.Q3.GPIA
## 18592                               UIS.GAR.5T8.Q3.LPIA
## 18593                                  UIS.GAR.5T8.Q3.M
## 18594                             UIS.GAR.5T8.Q3.M.LPIA
## 18595                                    UIS.GAR.5T8.Q4
## 18596                                  UIS.GAR.5T8.Q4.F
## 18597                             UIS.GAR.5T8.Q4.F.LPIA
## 18598                               UIS.GAR.5T8.Q4.GPIA
## 18599                               UIS.GAR.5T8.Q4.LPIA
## 18600                                  UIS.GAR.5T8.Q4.M
## 18601                             UIS.GAR.5T8.Q4.M.LPIA
## 18602                                    UIS.GAR.5T8.Q5
## 18603                                  UIS.GAR.5T8.Q5.F
## 18604                             UIS.GAR.5T8.Q5.F.LPIA
## 18605                               UIS.GAR.5T8.Q5.GPIA
## 18606                               UIS.GAR.5T8.Q5.LPIA
## 18607                                  UIS.GAR.5T8.Q5.M
## 18608                             UIS.GAR.5T8.Q5.M.LPIA
## 18609                                   UIS.GAR.5T8.RUR
## 18610                                 UIS.GAR.5T8.RUR.F
## 18611                            UIS.GAR.5T8.RUR.F.WPIA
## 18612                              UIS.GAR.5T8.RUR.GPIA
## 18613                                 UIS.GAR.5T8.RUR.M
## 18614                            UIS.GAR.5T8.RUR.M.WPIA
## 18615                                UIS.GAR.5T8.RUR.Q1
## 18616                              UIS.GAR.5T8.RUR.Q1.F
## 18617                           UIS.GAR.5T8.RUR.Q1.GPIA
## 18618                              UIS.GAR.5T8.RUR.Q1.M
## 18619                                UIS.GAR.5T8.RUR.Q2
## 18620                              UIS.GAR.5T8.RUR.Q2.F
## 18621                           UIS.GAR.5T8.RUR.Q2.GPIA
## 18622                              UIS.GAR.5T8.RUR.Q2.M
## 18623                                UIS.GAR.5T8.RUR.Q3
## 18624                              UIS.GAR.5T8.RUR.Q3.F
## 18625                           UIS.GAR.5T8.RUR.Q3.GPIA
## 18626                              UIS.GAR.5T8.RUR.Q3.M
## 18627                                UIS.GAR.5T8.RUR.Q4
## 18628                              UIS.GAR.5T8.RUR.Q4.F
## 18629                           UIS.GAR.5T8.RUR.Q4.GPIA
## 18630                              UIS.GAR.5T8.RUR.Q4.M
## 18631                                UIS.GAR.5T8.RUR.Q5
## 18632                              UIS.GAR.5T8.RUR.Q5.F
## 18633                           UIS.GAR.5T8.RUR.Q5.GPIA
## 18634                              UIS.GAR.5T8.RUR.Q5.M
## 18635                              UIS.GAR.5T8.RUR.WPIA
## 18636                                   UIS.GAR.5T8.URB
## 18637                                 UIS.GAR.5T8.URB.F
## 18638                            UIS.GAR.5T8.URB.F.WPIA
## 18639                              UIS.GAR.5T8.URB.GPIA
## 18640                                 UIS.GAR.5T8.URB.M
## 18641                            UIS.GAR.5T8.URB.M.WPIA
## 18642                                UIS.GAR.5T8.URB.Q1
## 18643                              UIS.GAR.5T8.URB.Q1.F
## 18644                           UIS.GAR.5T8.URB.Q1.GPIA
## 18645                              UIS.GAR.5T8.URB.Q1.M
## 18646                                UIS.GAR.5T8.URB.Q2
## 18647                              UIS.GAR.5T8.URB.Q2.F
## 18648                           UIS.GAR.5T8.URB.Q2.GPIA
## 18649                              UIS.GAR.5T8.URB.Q2.M
## 18650                                UIS.GAR.5T8.URB.Q3
## 18651                              UIS.GAR.5T8.URB.Q3.F
## 18652                           UIS.GAR.5T8.URB.Q3.GPIA
## 18653                              UIS.GAR.5T8.URB.Q3.M
## 18654                                UIS.GAR.5T8.URB.Q4
## 18655                              UIS.GAR.5T8.URB.Q4.F
## 18656                           UIS.GAR.5T8.URB.Q4.GPIA
## 18657                              UIS.GAR.5T8.URB.Q4.M
## 18658                                UIS.GAR.5T8.URB.Q5
## 18659                              UIS.GAR.5T8.URB.Q5.F
## 18660                           UIS.GAR.5T8.URB.Q5.GPIA
## 18661                              UIS.GAR.5T8.URB.Q5.M
## 18662                              UIS.GAR.5T8.URB.WPIA
## 18663                                  UIS.GAR.5T8.WPIA
## 18664                                  UIS.GCS.LOWERSEC
## 18665                              UIS.GCS.LOWERSEC.COG
## 18666                            UIS.GCS.LOWERSEC.COG.F
## 18667                         UIS.GCS.LOWERSEC.COG.GPIA
## 18668                            UIS.GCS.LOWERSEC.COG.M
## 18669                                UIS.GCS.LOWERSEC.F
## 18670                             UIS.GCS.LOWERSEC.GPIA
## 18671                                UIS.GCS.LOWERSEC.M
## 18672                        UIS.GCS.LOWERSEC.NCOG.FREE
## 18673                      UIS.GCS.LOWERSEC.NCOG.FREE.F
## 18674                    UIS.GCS.LOWERSEC.NCOG.FREE.GPI
## 18675                      UIS.GCS.LOWERSEC.NCOG.FREE.M
## 18676                        UIS.GCS.LOWERSEC.NCOG.GEQU
## 18677                      UIS.GCS.LOWERSEC.NCOG.GEQU.F
## 18678                    UIS.GCS.LOWERSEC.NCOG.GEQU.GPI
## 18679                      UIS.GCS.LOWERSEC.NCOG.GEQU.M
## 18680                        UIS.GCS.LOWERSEC.NCOG.GLOC
## 18681                      UIS.GCS.LOWERSEC.NCOG.GLOC.F
## 18682                    UIS.GCS.LOWERSEC.NCOG.GLOC.GPI
## 18683                      UIS.GCS.LOWERSEC.NCOG.GLOC.M
## 18684                        UIS.GCS.LOWERSEC.NCOG.MULT
## 18685                      UIS.GCS.LOWERSEC.NCOG.MULT.F
## 18686                    UIS.GCS.LOWERSEC.NCOG.MULT.GPI
## 18687                      UIS.GCS.LOWERSEC.NCOG.MULT.M
## 18688                        UIS.GCS.LOWERSEC.NCOG.PEAC
## 18689                      UIS.GCS.LOWERSEC.NCOG.PEAC.F
## 18690                    UIS.GCS.LOWERSEC.NCOG.PEAC.GPI
## 18691                      UIS.GCS.LOWERSEC.NCOG.PEAC.M
## 18692                        UIS.GCS.LOWERSEC.NCOG.SDEV
## 18693                      UIS.GCS.LOWERSEC.NCOG.SDEV.F
## 18694                    UIS.GCS.LOWERSEC.NCOG.SDEV.GPI
## 18695                      UIS.GCS.LOWERSEC.NCOG.SDEV.M
## 18696                        UIS.GCS.LOWERSEC.NCOG.SJUS
## 18697                      UIS.GCS.LOWERSEC.NCOG.SJUS.F
## 18698                    UIS.GCS.LOWERSEC.NCOG.SJUS.GPI
## 18699                      UIS.GCS.LOWERSEC.NCOG.SJUS.M
## 18700                                         UIS.GER.0
## 18701                                       UIS.GER.0.F
## 18702                                    UIS.GER.0.GPIA
## 18703                                       UIS.GER.0.M
## 18704                                        UIS.GER.01
## 18705                                      UIS.GER.01.F
## 18706                                   UIS.GER.01.GPIA
## 18707                                      UIS.GER.01.M
## 18708                                   UIS.GER.02.GPIA
## 18709                                        UIS.GER.12
## 18710                                      UIS.GER.12.F
## 18711                                    UIS.GER.12.GPI
## 18712                                      UIS.GER.12.M
## 18713                                       UIS.GER.123
## 18714                                     UIS.GER.123.F
## 18715                                     UIS.GER.123.M
## 18716                                     UIS.GER.1T6.F
## 18717                                   UIS.GER.1T6.GPI
## 18718                                     UIS.GER.1T6.M
## 18719                                     UIS.GER.2.GPI
## 18720                                     UIS.GER.3.GPI
## 18721                                         UIS.GER.4
## 18722                                       UIS.GER.4.F
## 18723                                     UIS.GER.4.GPI
## 18724                                       UIS.GER.4.M
## 18725                                  UIS.GER.5T8.GPIA
## 18726                                   UIS.GGR.5.A.GPI
## 18727                                    UIS.GTVP.2.GPV
## 18728                                      UIS.GTVP.2.V
## 18729                                    UIS.GTVP.2.V.F
## 18730                                    UIS.GTVP.2.V.M
## 18731                                   UIS.GTVP.23.GPV
## 18732                                    UIS.GTVP.3.GPV
## 18733                                      UIS.GTVP.3.V
## 18734                                    UIS.GTVP.3.V.F
## 18735                                    UIS.GTVP.3.V.M
## 18736                                    UIS.GTVP.4.GPV
## 18737                                      UIS.GTVP.4.V
## 18738                                    UIS.GTVP.4.V.F
## 18739                                    UIS.GTVP.4.V.M
## 18740                                UIS.ICTSKILLATTACH
## 18741                              UIS.ICTSKILLATTACH.F
## 18742                           UIS.ICTSKILLATTACH.GPIA
## 18743                              UIS.ICTSKILLATTACH.M
## 18744                                UIS.ICTSKILLCONNEC
## 18745                              UIS.ICTSKILLCONNEC.F
## 18746                           UIS.ICTSKILLCONNEC.GPIA
## 18747                              UIS.ICTSKILLCONNEC.M
## 18748                                  UIS.ICTSKILLCOPI
## 18749                                UIS.ICTSKILLCOPI.F
## 18750                             UIS.ICTSKILLCOPI.GPIA
## 18751                                UIS.ICTSKILLCOPI.M
## 18752                                 UIS.ICTSKILLCREAT
## 18753                               UIS.ICTSKILLCREAT.F
## 18754                            UIS.ICTSKILLCREAT.GPIA
## 18755                               UIS.ICTSKILLCREAT.M
## 18756                                UIS.ICTSKILLDUPLIC
## 18757                              UIS.ICTSKILLDUPLIC.F
## 18758                           UIS.ICTSKILLDUPLIC.GPIA
## 18759                              UIS.ICTSKILLDUPLIC.M
## 18760                               UIS.ICTSKILLFORMULA
## 18761                             UIS.ICTSKILLFORMULA.F
## 18762                          UIS.ICTSKILLFORMULA.GPIA
## 18763                             UIS.ICTSKILLFORMULA.M
## 18764                              UIS.ICTSKILLPROGLANG
## 18765                            UIS.ICTSKILLPROGLANG.F
## 18766                         UIS.ICTSKILLPROGLANG.GPIA
## 18767                            UIS.ICTSKILLPROGLANG.M
## 18768                              UIS.ICTSKILLSOFTWARE
## 18769                            UIS.ICTSKILLSOFTWARE.F
## 18770                         UIS.ICTSKILLSOFTWARE.GPIA
## 18771                            UIS.ICTSKILLSOFTWARE.M
## 18772                          UIS.ICTSKILLTRANSFERFILE
## 18773                        UIS.ICTSKILLTRANSFERFILE.F
## 18774                     UIS.ICTSKILLTRANSFERFILE.GPIA
## 18775                        UIS.ICTSKILLTRANSFERFILE.M
## 18776                                UIS.ILLPOP.AG25T64
## 18777                              UIS.ILLPOP.AG25T64.F
## 18778                              UIS.ILLPOP.AG25T64.M
## 18779                               UIS.ILLPOPF.AG25T64
## 18780                                    UIS.LP.AG15T24
## 18781                                  UIS.LP.AG15T24.F
## 18782                                  UIS.LP.AG15T24.M
## 18783                                    UIS.LP.AG15T99
## 18784                                  UIS.LP.AG15T99.F
## 18785                                  UIS.LP.AG15T99.M
## 18786                                       UIS.LP.AG65
## 18787                                     UIS.LP.AG65.F
## 18788                                     UIS.LP.AG65.M
## 18789                                   UIS.LPP.AG15T24
## 18790                                   UIS.LPP.AG15T99
## 18791                                      UIS.LPP.AG65
## 18792                             UIS.LR.AG15T24.F.LPIA
## 18793                               UIS.LR.AG15T24.GPIA
## 18794                               UIS.LR.AG15T24.LPIA
## 18795                             UIS.LR.AG15T24.M.LPIA
## 18796                                UIS.LR.AG15T24.RUR
## 18797                              UIS.LR.AG15T24.RUR.F
## 18798                           UIS.LR.AG15T24.RUR.GPIA
## 18799                              UIS.LR.AG15T24.RUR.M
## 18800                                UIS.LR.AG15T24.URB
## 18801                              UIS.LR.AG15T24.URB.F
## 18802                           UIS.LR.AG15T24.URB.GPIA
## 18803                              UIS.LR.AG15T24.URB.M
## 18804                             UIS.LR.AG15T99.F.LPIA
## 18805                               UIS.LR.AG15T99.GPIA
## 18806                               UIS.LR.AG15T99.LPIA
## 18807                             UIS.LR.AG15T99.M.LPIA
## 18808                                UIS.LR.AG15T99.RUR
## 18809                              UIS.LR.AG15T99.RUR.F
## 18810                           UIS.LR.AG15T99.RUR.GPIA
## 18811                              UIS.LR.AG15T99.RUR.M
## 18812                                UIS.LR.AG15T99.URB
## 18813                              UIS.LR.AG15T99.URB.F
## 18814                           UIS.LR.AG15T99.URB.GPIA
## 18815                              UIS.LR.AG15T99.URB.M
## 18816                                    UIS.LR.AG25T64
## 18817                                  UIS.LR.AG25T64.F
## 18818                             UIS.LR.AG25T64.F.LPIA
## 18819                               UIS.LR.AG25T64.GPIA
## 18820                               UIS.LR.AG25T64.LPIA
## 18821                                  UIS.LR.AG25T64.M
## 18822                             UIS.LR.AG25T64.M.LPIA
## 18823                                UIS.LR.AG25T64.RUR
## 18824                              UIS.LR.AG25T64.RUR.F
## 18825                           UIS.LR.AG25T64.RUR.GPIA
## 18826                              UIS.LR.AG25T64.RUR.M
## 18827                                UIS.LR.AG25T64.URB
## 18828                              UIS.LR.AG25T64.URB.F
## 18829                           UIS.LR.AG25T64.URB.GPIA
## 18830                              UIS.LR.AG25T64.URB.M
## 18831                                       UIS.LR.AG65
## 18832                                     UIS.LR.AG65.F
## 18833                                     UIS.LR.AG65.M
## 18834                             UIS.LR.AG65T99.F.LPIA
## 18835                               UIS.LR.AG65T99.GPIA
## 18836                               UIS.LR.AG65T99.LPIA
## 18837                             UIS.LR.AG65T99.M.LPIA
## 18838                                UIS.LR.AG65T99.RUR
## 18839                              UIS.LR.AG65T99.RUR.F
## 18840                           UIS.LR.AG65T99.RUR.GPIA
## 18841                              UIS.LR.AG65T99.RUR.M
## 18842                                UIS.LR.AG65T99.URB
## 18843                              UIS.LR.AG65T99.URB.F
## 18844                           UIS.LR.AG65T99.URB.GPIA
## 18845                              UIS.LR.AG65T99.URB.M
## 18846                                     UIS.MATH.G2T3
## 18847                                   UIS.MATH.G2T3.F
## 18848                                UIS.MATH.G2T3.GPIA
## 18849                             UIS.MATH.G2T3.HIGHSES
## 18850                            UIS.MATH.G2T3.LANGTEST
## 18851                              UIS.MATH.G2T3.LOWSES
## 18852                                UIS.MATH.G2T3.LPIA
## 18853                               UIS.MATH.G2T3.LTPIA
## 18854                                   UIS.MATH.G2T3.M
## 18855                              UIS.MATH.G2T3.NATIVE
## 18856                         UIS.MATH.G2T3.NONLANGTEST
## 18857                           UIS.MATH.G2T3.NONNATIVE
## 18858                                UIS.MATH.G2T3.NPIA
## 18859                               UIS.MATH.G2T3.RURAL
## 18860                               UIS.MATH.G2T3.URBAN
## 18861                                UIS.MATH.G2T3.WPIA
## 18862                                 UIS.MATH.LOWERSEC
## 18863                               UIS.MATH.LOWERSEC.F
## 18864                            UIS.MATH.LOWERSEC.GPIA
## 18865                         UIS.MATH.LOWERSEC.HIGHSES
## 18866                        UIS.MATH.LOWERSEC.LANGTEST
## 18867                          UIS.MATH.LOWERSEC.LOWSES
## 18868                            UIS.MATH.LOWERSEC.LPIA
## 18869                           UIS.MATH.LOWERSEC.LTPIA
## 18870                               UIS.MATH.LOWERSEC.M
## 18871                          UIS.MATH.LOWERSEC.NATIVE
## 18872                     UIS.MATH.LOWERSEC.NONLANGTEST
## 18873                       UIS.MATH.LOWERSEC.NONNATIVE
## 18874                            UIS.MATH.LOWERSEC.NPIA
## 18875                           UIS.MATH.LOWERSEC.RURAL
## 18876                           UIS.MATH.LOWERSEC.URBAN
## 18877                            UIS.MATH.LOWERSEC.WPIA
## 18878                                  UIS.MATH.PRIMARY
## 18879                                UIS.MATH.PRIMARY.F
## 18880                             UIS.MATH.PRIMARY.GPIA
## 18881                          UIS.MATH.PRIMARY.HIGHSES
## 18882                         UIS.MATH.PRIMARY.LANGTEST
## 18883                           UIS.MATH.PRIMARY.LOWSES
## 18884                             UIS.MATH.PRIMARY.LPIA
## 18885                            UIS.MATH.PRIMARY.LTPIA
## 18886                                UIS.MATH.PRIMARY.M
## 18887                           UIS.MATH.PRIMARY.NATIVE
## 18888                      UIS.MATH.PRIMARY.NONLANGTEST
## 18889                        UIS.MATH.PRIMARY.NONNATIVE
## 18890                             UIS.MATH.PRIMARY.NPIA
## 18891                            UIS.MATH.PRIMARY.RURAL
## 18892                            UIS.MATH.PRIMARY.URBAN
## 18893                             UIS.MATH.PRIMARY.WPIA
## 18894                                       UIS.MENF.56
## 18895                                      UIS.MENFR.56
## 18896                                       UIS.MS.56.F
## 18897                                       UIS.MS.56.M
## 18898                                       UIS.MS.56.T
## 18899                                       UIS.MSEP.56
## 18900                                     UIS.MSEP.56.F
## 18901                                     UIS.MSEP.56.M
## 18902                                     UIS.N.ATTACKS
## 18903                                     UIS.NARA.AGM1
## 18904                                   UIS.NARA.AGM1.F
## 18905                              UIS.NARA.AGM1.F.LPIA
## 18906                              UIS.NARA.AGM1.F.WPIA
## 18907                                UIS.NARA.AGM1.GPIA
## 18908                                UIS.NARA.AGM1.LPIA
## 18909                                   UIS.NARA.AGM1.M
## 18910                              UIS.NARA.AGM1.M.LPIA
## 18911                              UIS.NARA.AGM1.M.WPIA
## 18912                                  UIS.NARA.AGM1.Q1
## 18913                                UIS.NARA.AGM1.Q1.F
## 18914                           UIS.NARA.AGM1.Q1.F.LPIA
## 18915                             UIS.NARA.AGM1.Q1.GPIA
## 18916                             UIS.NARA.AGM1.Q1.LPIA
## 18917                                UIS.NARA.AGM1.Q1.M
## 18918                           UIS.NARA.AGM1.Q1.M.LPIA
## 18919                                  UIS.NARA.AGM1.Q2
## 18920                                UIS.NARA.AGM1.Q2.F
## 18921                           UIS.NARA.AGM1.Q2.F.LPIA
## 18922                             UIS.NARA.AGM1.Q2.GPIA
## 18923                             UIS.NARA.AGM1.Q2.LPIA
## 18924                                UIS.NARA.AGM1.Q2.M
## 18925                           UIS.NARA.AGM1.Q2.M.LPIA
## 18926                                  UIS.NARA.AGM1.Q3
## 18927                                UIS.NARA.AGM1.Q3.F
## 18928                           UIS.NARA.AGM1.Q3.F.LPIA
## 18929                             UIS.NARA.AGM1.Q3.GPIA
## 18930                             UIS.NARA.AGM1.Q3.LPIA
## 18931                                UIS.NARA.AGM1.Q3.M
## 18932                           UIS.NARA.AGM1.Q3.M.LPIA
## 18933                                  UIS.NARA.AGM1.Q4
## 18934                                UIS.NARA.AGM1.Q4.F
## 18935                           UIS.NARA.AGM1.Q4.F.LPIA
## 18936                             UIS.NARA.AGM1.Q4.GPIA
## 18937                             UIS.NARA.AGM1.Q4.LPIA
## 18938                                UIS.NARA.AGM1.Q4.M
## 18939                           UIS.NARA.AGM1.Q4.M.LPIA
## 18940                                  UIS.NARA.AGM1.Q5
## 18941                                UIS.NARA.AGM1.Q5.F
## 18942                           UIS.NARA.AGM1.Q5.F.LPIA
## 18943                             UIS.NARA.AGM1.Q5.GPIA
## 18944                             UIS.NARA.AGM1.Q5.LPIA
## 18945                                UIS.NARA.AGM1.Q5.M
## 18946                           UIS.NARA.AGM1.Q5.M.LPIA
## 18947                                 UIS.NARA.AGM1.RUR
## 18948                               UIS.NARA.AGM1.RUR.F
## 18949                          UIS.NARA.AGM1.RUR.F.WPIA
## 18950                            UIS.NARA.AGM1.RUR.GPIA
## 18951                               UIS.NARA.AGM1.RUR.M
## 18952                          UIS.NARA.AGM1.RUR.M.WPIA
## 18953                              UIS.NARA.AGM1.RUR.Q1
## 18954                            UIS.NARA.AGM1.RUR.Q1.F
## 18955                         UIS.NARA.AGM1.RUR.Q1.GPIA
## 18956                            UIS.NARA.AGM1.RUR.Q1.M
## 18957                              UIS.NARA.AGM1.RUR.Q2
## 18958                            UIS.NARA.AGM1.RUR.Q2.F
## 18959                         UIS.NARA.AGM1.RUR.Q2.GPIA
## 18960                            UIS.NARA.AGM1.RUR.Q2.M
## 18961                              UIS.NARA.AGM1.RUR.Q3
## 18962                            UIS.NARA.AGM1.RUR.Q3.F
## 18963                         UIS.NARA.AGM1.RUR.Q3.GPIA
## 18964                            UIS.NARA.AGM1.RUR.Q3.M
## 18965                              UIS.NARA.AGM1.RUR.Q4
## 18966                            UIS.NARA.AGM1.RUR.Q4.F
## 18967                         UIS.NARA.AGM1.RUR.Q4.GPIA
## 18968                            UIS.NARA.AGM1.RUR.Q4.M
## 18969                              UIS.NARA.AGM1.RUR.Q5
## 18970                            UIS.NARA.AGM1.RUR.Q5.F
## 18971                         UIS.NARA.AGM1.RUR.Q5.GPIA
## 18972                            UIS.NARA.AGM1.RUR.Q5.M
## 18973                            UIS.NARA.AGM1.RUR.WPIA
## 18974                                 UIS.NARA.AGM1.URB
## 18975                               UIS.NARA.AGM1.URB.F
## 18976                          UIS.NARA.AGM1.URB.F.WPIA
## 18977                            UIS.NARA.AGM1.URB.GPIA
## 18978                               UIS.NARA.AGM1.URB.M
## 18979                          UIS.NARA.AGM1.URB.M.WPIA
## 18980                              UIS.NARA.AGM1.URB.Q1
## 18981                            UIS.NARA.AGM1.URB.Q1.F
## 18982                         UIS.NARA.AGM1.URB.Q1.GPIA
## 18983                            UIS.NARA.AGM1.URB.Q1.M
## 18984                              UIS.NARA.AGM1.URB.Q2
## 18985                            UIS.NARA.AGM1.URB.Q2.F
## 18986                         UIS.NARA.AGM1.URB.Q2.GPIA
## 18987                            UIS.NARA.AGM1.URB.Q2.M
## 18988                              UIS.NARA.AGM1.URB.Q3
## 18989                            UIS.NARA.AGM1.URB.Q3.F
## 18990                         UIS.NARA.AGM1.URB.Q3.GPIA
## 18991                            UIS.NARA.AGM1.URB.Q3.M
## 18992                              UIS.NARA.AGM1.URB.Q4
## 18993                            UIS.NARA.AGM1.URB.Q4.F
## 18994                         UIS.NARA.AGM1.URB.Q4.GPIA
## 18995                            UIS.NARA.AGM1.URB.Q4.M
## 18996                              UIS.NARA.AGM1.URB.Q5
## 18997                            UIS.NARA.AGM1.URB.Q5.F
## 18998                         UIS.NARA.AGM1.URB.Q5.GPIA
## 18999                            UIS.NARA.AGM1.URB.Q5.M
## 19000                            UIS.NARA.AGM1.URB.WPIA
## 19001                                UIS.NARA.AGM1.WPIA
## 19002                                        UIS.NART.1
## 19003                                      UIS.NART.1.F
## 19004                                 UIS.NART.1.F.LPIA
## 19005                                 UIS.NART.1.F.WPIA
## 19006                                   UIS.NART.1.GPIA
## 19007                                   UIS.NART.1.LPIA
## 19008                                      UIS.NART.1.M
## 19009                                 UIS.NART.1.M.LPIA
## 19010                                 UIS.NART.1.M.WPIA
## 19011                                     UIS.NART.1.Q1
## 19012                                   UIS.NART.1.Q1.F
## 19013                              UIS.NART.1.Q1.F.LPIA
## 19014                                UIS.NART.1.Q1.GPIA
## 19015                                UIS.NART.1.Q1.LPIA
## 19016                                   UIS.NART.1.Q1.M
## 19017                              UIS.NART.1.Q1.M.LPIA
## 19018                                     UIS.NART.1.Q2
## 19019                                   UIS.NART.1.Q2.F
## 19020                              UIS.NART.1.Q2.F.LPIA
## 19021                                UIS.NART.1.Q2.GPIA
## 19022                                UIS.NART.1.Q2.LPIA
## 19023                                   UIS.NART.1.Q2.M
## 19024                              UIS.NART.1.Q2.M.LPIA
## 19025                                     UIS.NART.1.Q3
## 19026                                   UIS.NART.1.Q3.F
## 19027                              UIS.NART.1.Q3.F.LPIA
## 19028                                UIS.NART.1.Q3.GPIA
## 19029                                UIS.NART.1.Q3.LPIA
## 19030                                   UIS.NART.1.Q3.M
## 19031                              UIS.NART.1.Q3.M.LPIA
## 19032                                     UIS.NART.1.Q4
## 19033                                   UIS.NART.1.Q4.F
## 19034                              UIS.NART.1.Q4.F.LPIA
## 19035                                UIS.NART.1.Q4.GPIA
## 19036                                UIS.NART.1.Q4.LPIA
## 19037                                   UIS.NART.1.Q4.M
## 19038                              UIS.NART.1.Q4.M.LPIA
## 19039                                     UIS.NART.1.Q5
## 19040                                   UIS.NART.1.Q5.F
## 19041                              UIS.NART.1.Q5.F.LPIA
## 19042                                UIS.NART.1.Q5.GPIA
## 19043                                UIS.NART.1.Q5.LPIA
## 19044                                   UIS.NART.1.Q5.M
## 19045                              UIS.NART.1.Q5.M.LPIA
## 19046                                    UIS.NART.1.RUR
## 19047                                  UIS.NART.1.RUR.F
## 19048                             UIS.NART.1.RUR.F.WPIA
## 19049                               UIS.NART.1.RUR.GPIA
## 19050                                  UIS.NART.1.RUR.M
## 19051                             UIS.NART.1.RUR.M.WPIA
## 19052                                 UIS.NART.1.RUR.Q1
## 19053                               UIS.NART.1.RUR.Q1.F
## 19054                            UIS.NART.1.RUR.Q1.GPIA
## 19055                               UIS.NART.1.RUR.Q1.M
## 19056                                 UIS.NART.1.RUR.Q2
## 19057                               UIS.NART.1.RUR.Q2.F
## 19058                            UIS.NART.1.RUR.Q2.GPIA
## 19059                               UIS.NART.1.RUR.Q2.M
## 19060                                 UIS.NART.1.RUR.Q3
## 19061                               UIS.NART.1.RUR.Q3.F
## 19062                            UIS.NART.1.RUR.Q3.GPIA
## 19063                               UIS.NART.1.RUR.Q3.M
## 19064                                 UIS.NART.1.RUR.Q4
## 19065                               UIS.NART.1.RUR.Q4.F
## 19066                            UIS.NART.1.RUR.Q4.GPIA
## 19067                               UIS.NART.1.RUR.Q4.M
## 19068                                 UIS.NART.1.RUR.Q5
## 19069                               UIS.NART.1.RUR.Q5.F
## 19070                            UIS.NART.1.RUR.Q5.GPIA
## 19071                               UIS.NART.1.RUR.Q5.M
## 19072                               UIS.NART.1.RUR.WPIA
## 19073                                    UIS.NART.1.URB
## 19074                                  UIS.NART.1.URB.F
## 19075                             UIS.NART.1.URB.F.WPIA
## 19076                               UIS.NART.1.URB.GPIA
## 19077                                  UIS.NART.1.URB.M
## 19078                             UIS.NART.1.URB.M.WPIA
## 19079                                 UIS.NART.1.URB.Q1
## 19080                               UIS.NART.1.URB.Q1.F
## 19081                            UIS.NART.1.URB.Q1.GPIA
## 19082                               UIS.NART.1.URB.Q1.M
## 19083                                 UIS.NART.1.URB.Q2
## 19084                               UIS.NART.1.URB.Q2.F
## 19085                            UIS.NART.1.URB.Q2.GPIA
## 19086                               UIS.NART.1.URB.Q2.M
## 19087                                 UIS.NART.1.URB.Q3
## 19088                               UIS.NART.1.URB.Q3.F
## 19089                            UIS.NART.1.URB.Q3.GPIA
## 19090                               UIS.NART.1.URB.Q3.M
## 19091                                 UIS.NART.1.URB.Q4
## 19092                               UIS.NART.1.URB.Q4.F
## 19093                            UIS.NART.1.URB.Q4.GPIA
## 19094                               UIS.NART.1.URB.Q4.M
## 19095                                 UIS.NART.1.URB.Q5
## 19096                               UIS.NART.1.URB.Q5.F
## 19097                            UIS.NART.1.URB.Q5.GPIA
## 19098                               UIS.NART.1.URB.Q5.M
## 19099                               UIS.NART.1.URB.WPIA
## 19100                                   UIS.NART.1.WPIA
## 19101                                        UIS.NART.2
## 19102                                      UIS.NART.2.F
## 19103                                 UIS.NART.2.F.LPIA
## 19104                                 UIS.NART.2.F.WPIA
## 19105                                   UIS.NART.2.GPIA
## 19106                                   UIS.NART.2.LPIA
## 19107                                      UIS.NART.2.M
## 19108                                 UIS.NART.2.M.LPIA
## 19109                                 UIS.NART.2.M.WPIA
## 19110                                     UIS.NART.2.Q1
## 19111                                   UIS.NART.2.Q1.F
## 19112                              UIS.NART.2.Q1.F.LPIA
## 19113                                UIS.NART.2.Q1.GPIA
## 19114                                UIS.NART.2.Q1.LPIA
## 19115                                   UIS.NART.2.Q1.M
## 19116                              UIS.NART.2.Q1.M.LPIA
## 19117                                     UIS.NART.2.Q2
## 19118                                   UIS.NART.2.Q2.F
## 19119                              UIS.NART.2.Q2.F.LPIA
## 19120                                UIS.NART.2.Q2.GPIA
## 19121                                UIS.NART.2.Q2.LPIA
## 19122                                   UIS.NART.2.Q2.M
## 19123                              UIS.NART.2.Q2.M.LPIA
## 19124                                     UIS.NART.2.Q3
## 19125                                   UIS.NART.2.Q3.F
## 19126                              UIS.NART.2.Q3.F.LPIA
## 19127                                UIS.NART.2.Q3.GPIA
## 19128                                UIS.NART.2.Q3.LPIA
## 19129                                   UIS.NART.2.Q3.M
## 19130                              UIS.NART.2.Q3.M.LPIA
## 19131                                     UIS.NART.2.Q4
## 19132                                   UIS.NART.2.Q4.F
## 19133                              UIS.NART.2.Q4.F.LPIA
## 19134                                UIS.NART.2.Q4.GPIA
## 19135                                UIS.NART.2.Q4.LPIA
## 19136                                   UIS.NART.2.Q4.M
## 19137                              UIS.NART.2.Q4.M.LPIA
## 19138                                     UIS.NART.2.Q5
## 19139                                   UIS.NART.2.Q5.F
## 19140                              UIS.NART.2.Q5.F.LPIA
## 19141                                UIS.NART.2.Q5.GPIA
## 19142                                UIS.NART.2.Q5.LPIA
## 19143                                   UIS.NART.2.Q5.M
## 19144                              UIS.NART.2.Q5.M.LPIA
## 19145                                    UIS.NART.2.RUR
## 19146                                  UIS.NART.2.RUR.F
## 19147                             UIS.NART.2.RUR.F.WPIA
## 19148                               UIS.NART.2.RUR.GPIA
## 19149                                  UIS.NART.2.RUR.M
## 19150                             UIS.NART.2.RUR.M.WPIA
## 19151                                 UIS.NART.2.RUR.Q1
## 19152                               UIS.NART.2.RUR.Q1.F
## 19153                            UIS.NART.2.RUR.Q1.GPIA
## 19154                               UIS.NART.2.RUR.Q1.M
## 19155                                 UIS.NART.2.RUR.Q2
## 19156                               UIS.NART.2.RUR.Q2.F
## 19157                            UIS.NART.2.RUR.Q2.GPIA
## 19158                               UIS.NART.2.RUR.Q2.M
## 19159                                 UIS.NART.2.RUR.Q3
## 19160                               UIS.NART.2.RUR.Q3.F
## 19161                            UIS.NART.2.RUR.Q3.GPIA
## 19162                               UIS.NART.2.RUR.Q3.M
## 19163                                 UIS.NART.2.RUR.Q4
## 19164                               UIS.NART.2.RUR.Q4.F
## 19165                            UIS.NART.2.RUR.Q4.GPIA
## 19166                               UIS.NART.2.RUR.Q4.M
## 19167                                 UIS.NART.2.RUR.Q5
## 19168                               UIS.NART.2.RUR.Q5.F
## 19169                            UIS.NART.2.RUR.Q5.GPIA
## 19170                               UIS.NART.2.RUR.Q5.M
## 19171                               UIS.NART.2.RUR.WPIA
## 19172                                    UIS.NART.2.URB
## 19173                                  UIS.NART.2.URB.F
## 19174                             UIS.NART.2.URB.F.WPIA
## 19175                               UIS.NART.2.URB.GPIA
## 19176                                  UIS.NART.2.URB.M
## 19177                             UIS.NART.2.URB.M.WPIA
## 19178                                 UIS.NART.2.URB.Q1
## 19179                               UIS.NART.2.URB.Q1.F
## 19180                            UIS.NART.2.URB.Q1.GPIA
## 19181                               UIS.NART.2.URB.Q1.M
## 19182                                 UIS.NART.2.URB.Q2
## 19183                               UIS.NART.2.URB.Q2.F
## 19184                            UIS.NART.2.URB.Q2.GPIA
## 19185                               UIS.NART.2.URB.Q2.M
## 19186                                 UIS.NART.2.URB.Q3
## 19187                               UIS.NART.2.URB.Q3.F
## 19188                            UIS.NART.2.URB.Q3.GPIA
## 19189                               UIS.NART.2.URB.Q3.M
## 19190                                 UIS.NART.2.URB.Q4
## 19191                               UIS.NART.2.URB.Q4.F
## 19192                            UIS.NART.2.URB.Q4.GPIA
## 19193                               UIS.NART.2.URB.Q4.M
## 19194                                 UIS.NART.2.URB.Q5
## 19195                               UIS.NART.2.URB.Q5.F
## 19196                            UIS.NART.2.URB.Q5.GPIA
## 19197                               UIS.NART.2.URB.Q5.M
## 19198                               UIS.NART.2.URB.WPIA
## 19199                                   UIS.NART.2.WPIA
## 19200                                        UIS.NART.3
## 19201                                      UIS.NART.3.F
## 19202                                 UIS.NART.3.F.LPIA
## 19203                                 UIS.NART.3.F.WPIA
## 19204                                   UIS.NART.3.GPIA
## 19205                                   UIS.NART.3.LPIA
## 19206                                      UIS.NART.3.M
## 19207                                 UIS.NART.3.M.LPIA
## 19208                                 UIS.NART.3.M.WPIA
## 19209                                     UIS.NART.3.Q1
## 19210                                   UIS.NART.3.Q1.F
## 19211                              UIS.NART.3.Q1.F.LPIA
## 19212                                UIS.NART.3.Q1.GPIA
## 19213                                UIS.NART.3.Q1.LPIA
## 19214                                   UIS.NART.3.Q1.M
## 19215                              UIS.NART.3.Q1.M.LPIA
## 19216                                     UIS.NART.3.Q2
## 19217                                   UIS.NART.3.Q2.F
## 19218                              UIS.NART.3.Q2.F.LPIA
## 19219                                UIS.NART.3.Q2.GPIA
## 19220                                UIS.NART.3.Q2.LPIA
## 19221                                   UIS.NART.3.Q2.M
## 19222                              UIS.NART.3.Q2.M.LPIA
## 19223                                     UIS.NART.3.Q3
## 19224                                   UIS.NART.3.Q3.F
## 19225                              UIS.NART.3.Q3.F.LPIA
## 19226                                UIS.NART.3.Q3.GPIA
## 19227                                UIS.NART.3.Q3.LPIA
## 19228                                   UIS.NART.3.Q3.M
## 19229                              UIS.NART.3.Q3.M.LPIA
## 19230                                     UIS.NART.3.Q4
## 19231                                   UIS.NART.3.Q4.F
## 19232                              UIS.NART.3.Q4.F.LPIA
## 19233                                UIS.NART.3.Q4.GPIA
## 19234                                UIS.NART.3.Q4.LPIA
## 19235                                   UIS.NART.3.Q4.M
## 19236                              UIS.NART.3.Q4.M.LPIA
## 19237                                     UIS.NART.3.Q5
## 19238                                   UIS.NART.3.Q5.F
## 19239                              UIS.NART.3.Q5.F.LPIA
## 19240                                UIS.NART.3.Q5.GPIA
## 19241                                UIS.NART.3.Q5.LPIA
## 19242                                   UIS.NART.3.Q5.M
## 19243                              UIS.NART.3.Q5.M.LPIA
## 19244                                    UIS.NART.3.RUR
## 19245                                  UIS.NART.3.RUR.F
## 19246                             UIS.NART.3.RUR.F.WPIA
## 19247                               UIS.NART.3.RUR.GPIA
## 19248                                  UIS.NART.3.RUR.M
## 19249                             UIS.NART.3.RUR.M.WPIA
## 19250                                 UIS.NART.3.RUR.Q1
## 19251                               UIS.NART.3.RUR.Q1.F
## 19252                            UIS.NART.3.RUR.Q1.GPIA
## 19253                               UIS.NART.3.RUR.Q1.M
## 19254                                 UIS.NART.3.RUR.Q2
## 19255                               UIS.NART.3.RUR.Q2.F
## 19256                            UIS.NART.3.RUR.Q2.GPIA
## 19257                               UIS.NART.3.RUR.Q2.M
## 19258                                 UIS.NART.3.RUR.Q3
## 19259                               UIS.NART.3.RUR.Q3.F
## 19260                            UIS.NART.3.RUR.Q3.GPIA
## 19261                               UIS.NART.3.RUR.Q3.M
## 19262                                 UIS.NART.3.RUR.Q4
## 19263                               UIS.NART.3.RUR.Q4.F
## 19264                            UIS.NART.3.RUR.Q4.GPIA
## 19265                               UIS.NART.3.RUR.Q4.M
## 19266                                 UIS.NART.3.RUR.Q5
## 19267                               UIS.NART.3.RUR.Q5.F
## 19268                            UIS.NART.3.RUR.Q5.GPIA
## 19269                               UIS.NART.3.RUR.Q5.M
## 19270                               UIS.NART.3.RUR.WPIA
## 19271                                    UIS.NART.3.URB
## 19272                                  UIS.NART.3.URB.F
## 19273                             UIS.NART.3.URB.F.WPIA
## 19274                               UIS.NART.3.URB.GPIA
## 19275                                  UIS.NART.3.URB.M
## 19276                             UIS.NART.3.URB.M.WPIA
## 19277                                 UIS.NART.3.URB.Q1
## 19278                               UIS.NART.3.URB.Q1.F
## 19279                            UIS.NART.3.URB.Q1.GPIA
## 19280                               UIS.NART.3.URB.Q1.M
## 19281                                 UIS.NART.3.URB.Q2
## 19282                               UIS.NART.3.URB.Q2.F
## 19283                            UIS.NART.3.URB.Q2.GPIA
## 19284                               UIS.NART.3.URB.Q2.M
## 19285                                 UIS.NART.3.URB.Q3
## 19286                               UIS.NART.3.URB.Q3.F
## 19287                            UIS.NART.3.URB.Q3.GPIA
## 19288                               UIS.NART.3.URB.Q3.M
## 19289                                 UIS.NART.3.URB.Q4
## 19290                               UIS.NART.3.URB.Q4.F
## 19291                            UIS.NART.3.URB.Q4.GPIA
## 19292                               UIS.NART.3.URB.Q4.M
## 19293                                 UIS.NART.3.URB.Q5
## 19294                               UIS.NART.3.URB.Q5.F
## 19295                            UIS.NART.3.URB.Q5.GPIA
## 19296                               UIS.NART.3.URB.Q5.M
## 19297                               UIS.NART.3.URB.WPIA
## 19298                                   UIS.NART.3.WPIA
## 19299                                     UIS.NERA.AGM1
## 19300                                   UIS.NERA.AGM1.F
## 19301                             UIS.NERA.AGM1.GPIA.CP
## 19302                                   UIS.NERA.AGM1.M
## 19303                                        UIS.NERT.1
## 19304                                      UIS.NERT.1.F
## 19305                                    UIS.NERT.1.GPI
## 19306                                      UIS.NERT.1.M
## 19307                                        UIS.NERT.2
## 19308                                      UIS.NERT.2.F
## 19309                                    UIS.NERT.2.GPI
## 19310                                      UIS.NERT.2.M
## 19311                                        UIS.NERT.3
## 19312                                      UIS.NERT.3.F
## 19313                                    UIS.NERT.3.GPI
## 19314                                      UIS.NERT.3.M
## 19315                                       UIS.OAEPG.1
## 19316                                     UIS.OAEPG.1.F
## 19317                                  UIS.OAEPG.1.GPIA
## 19318                                     UIS.OAEPG.1.M
## 19319                                   UIS.OAEPG.2.GPV
## 19320                                 UIS.OAEPG.2.GPV.F
## 19321                              UIS.OAEPG.2.GPV.GPIA
## 19322                                 UIS.OAEPG.2.GPV.M
## 19323                     UIS.ODAFLOW.VOLUMESCHOLARSHIP
## 19324                                   UIS.OE.56.40510
## 19325                                   UIS.OFST.1T2.CP
## 19326                                 UIS.OFST.1T2.F.CP
## 19327                                 UIS.OFST.1T2.M.CP
## 19328                                   UIS.OFST.1T3.CP
## 19329                                 UIS.OFST.1T3.F.CP
## 19330                                 UIS.OFST.1T3.M.CP
## 19331                                        UIS.OFST.2
## 19332                                      UIS.OFST.2.F
## 19333                                      UIS.OFST.2.M
## 19334                                   UIS.OFST.2T3.CP
## 19335                                 UIS.OFST.2T3.F.CP
## 19336                                 UIS.OFST.2T3.M.CP
## 19337                                     UIS.OFST.3.CP
## 19338                                   UIS.OFST.3.F.CP
## 19339                                   UIS.OFST.3.M.CP
## 19340                                  UIS.OFST.AGM1.CP
## 19341                                UIS.OFST.AGM1.F.CP
## 19342                                UIS.OFST.AGM1.M.CP
## 19343                                        UIS.OMR.56
## 19344                         UIS.ONTRACK.THREE.DOMAINS
## 19345                       UIS.ONTRACK.THREE.DOMAINS.F
## 19346                    UIS.ONTRACK.THREE.DOMAINS.GPIA
## 19347                       UIS.ONTRACK.THREE.DOMAINS.M
## 19348                             UIS.PER.11T15.BULLIED
## 19349                           UIS.PER.11T15.BULLIED.F
## 19350                        UIS.PER.11T15.BULLIED.GPIA
## 19351                     UIS.PER.11T15.BULLIED.HIGHSES
## 19352                      UIS.PER.11T15.BULLIED.LOWSES
## 19353                           UIS.PER.11T15.BULLIED.M
## 19354                      UIS.PER.11T15.BULLIED.NATIVE
## 19355                         UIS.PER.11T15.BULLIED.NON
## 19356                        UIS.PER.11T15.BULLIED.NPIA
## 19357                        UIS.PER.11T15.BULLIED.WPIA
## 19358                                      UIS.PLILLITP
## 19359                                    UIS.PLILLITP.F
## 19360                                    UIS.PLILLITP.M
## 19361                                    UIS.POSTIMUENV
## 19362                                  UIS.POSTIMUENV.F
## 19363                               UIS.POSTIMUENV.GPIA
## 19364                               UIS.POSTIMUENV.LPIA
## 19365                                  UIS.POSTIMUENV.M
## 19366                                UIS.POSTIMUENV.RUR
## 19367                                UIS.POSTIMUENV.URB
## 19368                               UIS.POSTIMUENV.WPIA
## 19369                                UIS.POSTIMUENV.WQ1
## 19370                                UIS.POSTIMUENV.WQ5
## 19371                                         UIS.PRP.0
## 19372                                        UIS.PRP.01
## 19373                                         UIS.PRP.2
## 19374                                         UIS.PRP.3
## 19375                                         UIS.PRP.4
## 19376                                     UIS.PRYA.12MO
## 19377                                   UIS.PRYA.12MO.F
## 19378                                 UIS.PRYA.12MO.GPI
## 19379                                   UIS.PRYA.12MO.M
## 19380                            UIS.PTRHC.02.QUALIFIED
## 19381                              UIS.PTRHC.02.TRAINED
## 19382                             UIS.PTRHC.1.QUALIFIED
## 19383                               UIS.PTRHC.1.TRAINED
## 19384                             UIS.PTRHC.2.QUALIFIED
## 19385                               UIS.PTRHC.2.TRAINED
## 19386                           UIS.PTRHC.2T3.QUALIFIED
## 19387                             UIS.PTRHC.2T3.TRAINED
## 19388                             UIS.PTRHC.3.QUALIFIED
## 19389                               UIS.PTRHC.3.TRAINED
## 19390                                       UIS.QUTP.02
## 19391                                     UIS.QUTP.02.F
## 19392                                  UIS.QUTP.02.GPIA
## 19393                                     UIS.QUTP.02.M
## 19394                                        UIS.QUTP.1
## 19395                                      UIS.QUTP.1.F
## 19396                                   UIS.QUTP.1.GPIA
## 19397                                      UIS.QUTP.1.M
## 19398                                        UIS.QUTP.2
## 19399                                      UIS.QUTP.2.F
## 19400                                   UIS.QUTP.2.GPIA
## 19401                                      UIS.QUTP.2.M
## 19402                                      UIS.QUTP.2T3
## 19403                                    UIS.QUTP.2T3.F
## 19404                                 UIS.QUTP.2T3.GPIA
## 19405                                    UIS.QUTP.2T3.M
## 19406                                        UIS.QUTP.3
## 19407                                      UIS.QUTP.3.F
## 19408                                   UIS.QUTP.3.GPIA
## 19409                                      UIS.QUTP.3.M
## 19410                                           UIS.R.1
## 19411                                         UIS.R.1.F
## 19412                                        UIS.R.1.G1
## 19413                                      UIS.R.1.G1.F
## 19414                                      UIS.R.1.G1.M
## 19415                                        UIS.R.1.G2
## 19416                                      UIS.R.1.G2.F
## 19417                                      UIS.R.1.G2.M
## 19418                                        UIS.R.1.G3
## 19419                                      UIS.R.1.G3.F
## 19420                                      UIS.R.1.G3.M
## 19421                                        UIS.R.1.G4
## 19422                                      UIS.R.1.G4.F
## 19423                                      UIS.R.1.G4.M
## 19424                                        UIS.R.1.G5
## 19425                                      UIS.R.1.G5.F
## 19426                                      UIS.R.1.G5.M
## 19427                                        UIS.R.1.G6
## 19428                                      UIS.R.1.G6.F
## 19429                                      UIS.R.1.G6.M
## 19430                                        UIS.R.1.G7
## 19431                                      UIS.R.1.G7.F
## 19432                                      UIS.R.1.G7.M
## 19433                                       UIS.R.1.GUK
## 19434                                     UIS.R.1.GUK.F
## 19435                                     UIS.R.1.GUK.M
## 19436                                         UIS.R.1.M
## 19437                                       UIS.R.2.GPV
## 19438                                     UIS.R.2.GPV.F
## 19439                                    UIS.R.2.GPV.G1
## 19440                                  UIS.R.2.GPV.G1.F
## 19441                                  UIS.R.2.GPV.G1.M
## 19442                                    UIS.R.2.GPV.G2
## 19443                                  UIS.R.2.GPV.G2.F
## 19444                                  UIS.R.2.GPV.G2.M
## 19445                                    UIS.R.2.GPV.G3
## 19446                                  UIS.R.2.GPV.G3.F
## 19447                                  UIS.R.2.GPV.G3.M
## 19448                                    UIS.R.2.GPV.G4
## 19449                                  UIS.R.2.GPV.G4.F
## 19450                                  UIS.R.2.GPV.G4.M
## 19451                                    UIS.R.2.GPV.G5
## 19452                                  UIS.R.2.GPV.G5.F
## 19453                                  UIS.R.2.GPV.G5.M
## 19454                                    UIS.R.2.GPV.G6
## 19455                                  UIS.R.2.GPV.G6.F
## 19456                                  UIS.R.2.GPV.G6.M
## 19457                                   UIS.R.2.GPV.GUK
## 19458                                 UIS.R.2.GPV.GUK.F
## 19459                                 UIS.R.2.GPV.GUK.M
## 19460                                     UIS.R.2.GPV.M
## 19461                                     UIS.READ.G2T3
## 19462                                   UIS.READ.G2T3.F
## 19463                                UIS.READ.G2T3.GPIA
## 19464                             UIS.READ.G2T3.HIGHSES
## 19465                            UIS.READ.G2T3.LANGTEST
## 19466                              UIS.READ.G2T3.LOWSES
## 19467                                UIS.READ.G2T3.LPIA
## 19468                               UIS.READ.G2T3.LTPIA
## 19469                                   UIS.READ.G2T3.M
## 19470                              UIS.READ.G2T3.NATIVE
## 19471                         UIS.READ.G2T3.NONLANGTEST
## 19472                           UIS.READ.G2T3.NONNATIVE
## 19473                                UIS.READ.G2T3.NPIA
## 19474                               UIS.READ.G2T3.RURAL
## 19475                               UIS.READ.G2T3.URBAN
## 19476                                UIS.READ.G2T3.WPIA
## 19477                                 UIS.READ.LOWERSEC
## 19478                               UIS.READ.LOWERSEC.F
## 19479                            UIS.READ.LOWERSEC.GPIA
## 19480                         UIS.READ.LOWERSEC.HIGHSES
## 19481                        UIS.READ.LOWERSEC.LANGTEST
## 19482                          UIS.READ.LOWERSEC.LOWSES
## 19483                            UIS.READ.LOWERSEC.LPIA
## 19484                           UIS.READ.LOWERSEC.LTPIA
## 19485                               UIS.READ.LOWERSEC.M
## 19486                          UIS.READ.LOWERSEC.NATIVE
## 19487                     UIS.READ.LOWERSEC.NONLANGTEST
## 19488                       UIS.READ.LOWERSEC.NONNATIVE
## 19489                            UIS.READ.LOWERSEC.NPIA
## 19490                           UIS.READ.LOWERSEC.RURAL
## 19491                           UIS.READ.LOWERSEC.URBAN
## 19492                            UIS.READ.LOWERSEC.WPIA
## 19493                                  UIS.READ.PRIMARY
## 19494                                UIS.READ.PRIMARY.F
## 19495                             UIS.READ.PRIMARY.GPIA
## 19496                          UIS.READ.PRIMARY.HIGHSES
## 19497                         UIS.READ.PRIMARY.LANGTEST
## 19498                           UIS.READ.PRIMARY.LOWSES
## 19499                             UIS.READ.PRIMARY.LPIA
## 19500                            UIS.READ.PRIMARY.LTPIA
## 19501                                UIS.READ.PRIMARY.M
## 19502                           UIS.READ.PRIMARY.NATIVE
## 19503                      UIS.READ.PRIMARY.NONLANGTEST
## 19504                        UIS.READ.PRIMARY.NONNATIVE
## 19505                             UIS.READ.PRIMARY.NPIA
## 19506                            UIS.READ.PRIMARY.RURAL
## 19507                            UIS.READ.PRIMARY.URBAN
## 19508                             UIS.READ.PRIMARY.WPIA
## 19509                                        UIS.REPR.1
## 19510                                      UIS.REPR.1.F
## 19511                                     UIS.REPR.1.G1
## 19512                                   UIS.REPR.1.G1.F
## 19513                                   UIS.REPR.1.G1.M
## 19514                                     UIS.REPR.1.G2
## 19515                                   UIS.REPR.1.G2.F
## 19516                                   UIS.REPR.1.G2.M
## 19517                                     UIS.REPR.1.G3
## 19518                                   UIS.REPR.1.G3.F
## 19519                                   UIS.REPR.1.G3.M
## 19520                                     UIS.REPR.1.G4
## 19521                                   UIS.REPR.1.G4.F
## 19522                                   UIS.REPR.1.G4.M
## 19523                                     UIS.REPR.1.G5
## 19524                                   UIS.REPR.1.G5.F
## 19525                                   UIS.REPR.1.G5.M
## 19526                                     UIS.REPR.1.G6
## 19527                                   UIS.REPR.1.G6.F
## 19528                                   UIS.REPR.1.G6.M
## 19529                                     UIS.REPR.1.G7
## 19530                                   UIS.REPR.1.G7.F
## 19531                                   UIS.REPR.1.G7.M
## 19532                                      UIS.REPR.1.M
## 19533                                    UIS.REPR.2.GPV
## 19534                                  UIS.REPR.2.GPV.F
## 19535                                 UIS.REPR.2.GPV.G1
## 19536                               UIS.REPR.2.GPV.G1.F
## 19537                               UIS.REPR.2.GPV.G1.M
## 19538                                 UIS.REPR.2.GPV.G2
## 19539                               UIS.REPR.2.GPV.G2.F
## 19540                               UIS.REPR.2.GPV.G2.M
## 19541                                 UIS.REPR.2.GPV.G3
## 19542                               UIS.REPR.2.GPV.G3.F
## 19543                               UIS.REPR.2.GPV.G3.M
## 19544                                 UIS.REPR.2.GPV.G4
## 19545                               UIS.REPR.2.GPV.G4.F
## 19546                               UIS.REPR.2.GPV.G4.M
## 19547                                 UIS.REPR.2.GPV.G5
## 19548                               UIS.REPR.2.GPV.G5.F
## 19549                               UIS.REPR.2.GPV.G5.M
## 19550                                  UIS.REPR.2.GPV.M
## 19551                                       UIS.ROFST.1
## 19552                                     UIS.ROFST.1.F
## 19553                               UIS.ROFST.1.GPIA.CP
## 19554                                     UIS.ROFST.1.M
## 19555                                  UIS.ROFST.1T2.CP
## 19556                                UIS.ROFST.1T2.F.CP
## 19557                             UIS.ROFST.1T2.GPIA.CP
## 19558                                UIS.ROFST.1T2.M.CP
## 19559                                  UIS.ROFST.1T3.CP
## 19560                                UIS.ROFST.1T3.F.CP
## 19561                             UIS.ROFST.1T3.GPIA.CP
## 19562                                UIS.ROFST.1T3.M.CP
## 19563                                       UIS.ROFST.2
## 19564                                     UIS.ROFST.2.F
## 19565                               UIS.ROFST.2.GPIA.CP
## 19566                                     UIS.ROFST.2.M
## 19567                                  UIS.ROFST.2T3.CP
## 19568                                UIS.ROFST.2T3.F.CP
## 19569                             UIS.ROFST.2T3.GPIA.CP
## 19570                                UIS.ROFST.2T3.M.CP
## 19571                                    UIS.ROFST.3.CP
## 19572                                  UIS.ROFST.3.F.CP
## 19573                               UIS.ROFST.3.GPIA.CP
## 19574                                  UIS.ROFST.3.M.CP
## 19575                                 UIS.ROFST.AGM1.CP
## 19576                               UIS.ROFST.AGM1.F.CP
## 19577                            UIS.ROFST.AGM1.GPIA.CP
## 19578                               UIS.ROFST.AGM1.M.CP
## 19579                                     UIS.ROFST.H.1
## 19580                                   UIS.ROFST.H.1.F
## 19581                              UIS.ROFST.H.1.F.LPIA
## 19582                              UIS.ROFST.H.1.F.WPIA
## 19583                                UIS.ROFST.H.1.GPIA
## 19584                                UIS.ROFST.H.1.LPIA
## 19585                                   UIS.ROFST.H.1.M
## 19586                              UIS.ROFST.H.1.M.LPIA
## 19587                              UIS.ROFST.H.1.M.WPIA
## 19588                                  UIS.ROFST.H.1.Q1
## 19589                                UIS.ROFST.H.1.Q1.F
## 19590                           UIS.ROFST.H.1.Q1.F.LPIA
## 19591                             UIS.ROFST.H.1.Q1.GPIA
## 19592                             UIS.ROFST.H.1.Q1.LPIA
## 19593                                UIS.ROFST.H.1.Q1.M
## 19594                           UIS.ROFST.H.1.Q1.M.LPIA
## 19595                                  UIS.ROFST.H.1.Q2
## 19596                                UIS.ROFST.H.1.Q2.F
## 19597                           UIS.ROFST.H.1.Q2.F.LPIA
## 19598                             UIS.ROFST.H.1.Q2.GPIA
## 19599                             UIS.ROFST.H.1.Q2.LPIA
## 19600                                UIS.ROFST.H.1.Q2.M
## 19601                           UIS.ROFST.H.1.Q2.M.LPIA
## 19602                                  UIS.ROFST.H.1.Q3
## 19603                                UIS.ROFST.H.1.Q3.F
## 19604                           UIS.ROFST.H.1.Q3.F.LPIA
## 19605                             UIS.ROFST.H.1.Q3.GPIA
## 19606                             UIS.ROFST.H.1.Q3.LPIA
## 19607                                UIS.ROFST.H.1.Q3.M
## 19608                           UIS.ROFST.H.1.Q3.M.LPIA
## 19609                                  UIS.ROFST.H.1.Q4
## 19610                                UIS.ROFST.H.1.Q4.F
## 19611                           UIS.ROFST.H.1.Q4.F.LPIA
## 19612                             UIS.ROFST.H.1.Q4.GPIA
## 19613                             UIS.ROFST.H.1.Q4.LPIA
## 19614                                UIS.ROFST.H.1.Q4.M
## 19615                           UIS.ROFST.H.1.Q4.M.LPIA
## 19616                                  UIS.ROFST.H.1.Q5
## 19617                                UIS.ROFST.H.1.Q5.F
## 19618                           UIS.ROFST.H.1.Q5.F.LPIA
## 19619                             UIS.ROFST.H.1.Q5.GPIA
## 19620                             UIS.ROFST.H.1.Q5.LPIA
## 19621                                UIS.ROFST.H.1.Q5.M
## 19622                           UIS.ROFST.H.1.Q5.M.LPIA
## 19623                                 UIS.ROFST.H.1.RUR
## 19624                               UIS.ROFST.H.1.RUR.F
## 19625                          UIS.ROFST.H.1.RUR.F.WPIA
## 19626                            UIS.ROFST.H.1.RUR.GPIA
## 19627                               UIS.ROFST.H.1.RUR.M
## 19628                          UIS.ROFST.H.1.RUR.M.WPIA
## 19629                              UIS.ROFST.H.1.RUR.Q1
## 19630                            UIS.ROFST.H.1.RUR.Q1.F
## 19631                         UIS.ROFST.H.1.RUR.Q1.GPIA
## 19632                            UIS.ROFST.H.1.RUR.Q1.M
## 19633                              UIS.ROFST.H.1.RUR.Q2
## 19634                            UIS.ROFST.H.1.RUR.Q2.F
## 19635                         UIS.ROFST.H.1.RUR.Q2.GPIA
## 19636                            UIS.ROFST.H.1.RUR.Q2.M
## 19637                              UIS.ROFST.H.1.RUR.Q3
## 19638                            UIS.ROFST.H.1.RUR.Q3.F
## 19639                         UIS.ROFST.H.1.RUR.Q3.GPIA
## 19640                            UIS.ROFST.H.1.RUR.Q3.M
## 19641                              UIS.ROFST.H.1.RUR.Q4
## 19642                            UIS.ROFST.H.1.RUR.Q4.F
## 19643                         UIS.ROFST.H.1.RUR.Q4.GPIA
## 19644                            UIS.ROFST.H.1.RUR.Q4.M
## 19645                              UIS.ROFST.H.1.RUR.Q5
## 19646                            UIS.ROFST.H.1.RUR.Q5.F
## 19647                         UIS.ROFST.H.1.RUR.Q5.GPIA
## 19648                            UIS.ROFST.H.1.RUR.Q5.M
## 19649                            UIS.ROFST.H.1.RUR.WPIA
## 19650                                 UIS.ROFST.H.1.URB
## 19651                               UIS.ROFST.H.1.URB.F
## 19652                          UIS.ROFST.H.1.URB.F.WPIA
## 19653                            UIS.ROFST.H.1.URB.GPIA
## 19654                               UIS.ROFST.H.1.URB.M
## 19655                          UIS.ROFST.H.1.URB.M.WPIA
## 19656                              UIS.ROFST.H.1.URB.Q1
## 19657                            UIS.ROFST.H.1.URB.Q1.F
## 19658                         UIS.ROFST.H.1.URB.Q1.GPIA
## 19659                            UIS.ROFST.H.1.URB.Q1.M
## 19660                              UIS.ROFST.H.1.URB.Q2
## 19661                            UIS.ROFST.H.1.URB.Q2.F
## 19662                         UIS.ROFST.H.1.URB.Q2.GPIA
## 19663                            UIS.ROFST.H.1.URB.Q2.M
## 19664                              UIS.ROFST.H.1.URB.Q3
## 19665                            UIS.ROFST.H.1.URB.Q3.F
## 19666                         UIS.ROFST.H.1.URB.Q3.GPIA
## 19667                            UIS.ROFST.H.1.URB.Q3.M
## 19668                              UIS.ROFST.H.1.URB.Q4
## 19669                            UIS.ROFST.H.1.URB.Q4.F
## 19670                         UIS.ROFST.H.1.URB.Q4.GPIA
## 19671                            UIS.ROFST.H.1.URB.Q4.M
## 19672                              UIS.ROFST.H.1.URB.Q5
## 19673                            UIS.ROFST.H.1.URB.Q5.F
## 19674                         UIS.ROFST.H.1.URB.Q5.GPIA
## 19675                            UIS.ROFST.H.1.URB.Q5.M
## 19676                            UIS.ROFST.H.1.URB.WPIA
## 19677                                UIS.ROFST.H.1.WPIA
## 19678                                     UIS.ROFST.H.2
## 19679                                   UIS.ROFST.H.2.F
## 19680                              UIS.ROFST.H.2.F.LPIA
## 19681                              UIS.ROFST.H.2.F.WPIA
## 19682                                UIS.ROFST.H.2.GPIA
## 19683                                UIS.ROFST.H.2.LPIA
## 19684                                   UIS.ROFST.H.2.M
## 19685                              UIS.ROFST.H.2.M.LPIA
## 19686                              UIS.ROFST.H.2.M.WPIA
## 19687                                  UIS.ROFST.H.2.Q1
## 19688                                UIS.ROFST.H.2.Q1.F
## 19689                           UIS.ROFST.H.2.Q1.F.LPIA
## 19690                             UIS.ROFST.H.2.Q1.GPIA
## 19691                             UIS.ROFST.H.2.Q1.LPIA
## 19692                                UIS.ROFST.H.2.Q1.M
## 19693                           UIS.ROFST.H.2.Q1.M.LPIA
## 19694                                  UIS.ROFST.H.2.Q2
## 19695                                UIS.ROFST.H.2.Q2.F
## 19696                           UIS.ROFST.H.2.Q2.F.LPIA
## 19697                             UIS.ROFST.H.2.Q2.GPIA
## 19698                             UIS.ROFST.H.2.Q2.LPIA
## 19699                                UIS.ROFST.H.2.Q2.M
## 19700                           UIS.ROFST.H.2.Q2.M.LPIA
## 19701                                  UIS.ROFST.H.2.Q3
## 19702                                UIS.ROFST.H.2.Q3.F
## 19703                           UIS.ROFST.H.2.Q3.F.LPIA
## 19704                             UIS.ROFST.H.2.Q3.GPIA
## 19705                             UIS.ROFST.H.2.Q3.LPIA
## 19706                                UIS.ROFST.H.2.Q3.M
## 19707                           UIS.ROFST.H.2.Q3.M.LPIA
## 19708                                  UIS.ROFST.H.2.Q4
## 19709                                UIS.ROFST.H.2.Q4.F
## 19710                           UIS.ROFST.H.2.Q4.F.LPIA
## 19711                             UIS.ROFST.H.2.Q4.GPIA
## 19712                             UIS.ROFST.H.2.Q4.LPIA
## 19713                                UIS.ROFST.H.2.Q4.M
## 19714                           UIS.ROFST.H.2.Q4.M.LPIA
## 19715                                  UIS.ROFST.H.2.Q5
## 19716                                UIS.ROFST.H.2.Q5.F
## 19717                           UIS.ROFST.H.2.Q5.F.LPIA
## 19718                             UIS.ROFST.H.2.Q5.GPIA
## 19719                             UIS.ROFST.H.2.Q5.LPIA
## 19720                                UIS.ROFST.H.2.Q5.M
## 19721                           UIS.ROFST.H.2.Q5.M.LPIA
## 19722                                 UIS.ROFST.H.2.RUR
## 19723                               UIS.ROFST.H.2.RUR.F
## 19724                          UIS.ROFST.H.2.RUR.F.WPIA
## 19725                            UIS.ROFST.H.2.RUR.GPIA
## 19726                               UIS.ROFST.H.2.RUR.M
## 19727                          UIS.ROFST.H.2.RUR.M.WPIA
## 19728                              UIS.ROFST.H.2.RUR.Q1
## 19729                            UIS.ROFST.H.2.RUR.Q1.F
## 19730                         UIS.ROFST.H.2.RUR.Q1.GPIA
## 19731                            UIS.ROFST.H.2.RUR.Q1.M
## 19732                              UIS.ROFST.H.2.RUR.Q2
## 19733                            UIS.ROFST.H.2.RUR.Q2.F
## 19734                         UIS.ROFST.H.2.RUR.Q2.GPIA
## 19735                            UIS.ROFST.H.2.RUR.Q2.M
## 19736                              UIS.ROFST.H.2.RUR.Q3
## 19737                            UIS.ROFST.H.2.RUR.Q3.F
## 19738                         UIS.ROFST.H.2.RUR.Q3.GPIA
## 19739                            UIS.ROFST.H.2.RUR.Q3.M
## 19740                              UIS.ROFST.H.2.RUR.Q4
## 19741                            UIS.ROFST.H.2.RUR.Q4.F
## 19742                         UIS.ROFST.H.2.RUR.Q4.GPIA
## 19743                            UIS.ROFST.H.2.RUR.Q4.M
## 19744                              UIS.ROFST.H.2.RUR.Q5
## 19745                            UIS.ROFST.H.2.RUR.Q5.F
## 19746                         UIS.ROFST.H.2.RUR.Q5.GPIA
## 19747                            UIS.ROFST.H.2.RUR.Q5.M
## 19748                            UIS.ROFST.H.2.RUR.WPIA
## 19749                                 UIS.ROFST.H.2.URB
## 19750                               UIS.ROFST.H.2.URB.F
## 19751                          UIS.ROFST.H.2.URB.F.WPIA
## 19752                            UIS.ROFST.H.2.URB.GPIA
## 19753                               UIS.ROFST.H.2.URB.M
## 19754                          UIS.ROFST.H.2.URB.M.WPIA
## 19755                              UIS.ROFST.H.2.URB.Q1
## 19756                            UIS.ROFST.H.2.URB.Q1.F
## 19757                         UIS.ROFST.H.2.URB.Q1.GPIA
## 19758                            UIS.ROFST.H.2.URB.Q1.M
## 19759                              UIS.ROFST.H.2.URB.Q2
## 19760                            UIS.ROFST.H.2.URB.Q2.F
## 19761                         UIS.ROFST.H.2.URB.Q2.GPIA
## 19762                            UIS.ROFST.H.2.URB.Q2.M
## 19763                              UIS.ROFST.H.2.URB.Q3
## 19764                            UIS.ROFST.H.2.URB.Q3.F
## 19765                         UIS.ROFST.H.2.URB.Q3.GPIA
## 19766                            UIS.ROFST.H.2.URB.Q3.M
## 19767                              UIS.ROFST.H.2.URB.Q4
## 19768                            UIS.ROFST.H.2.URB.Q4.F
## 19769                         UIS.ROFST.H.2.URB.Q4.GPIA
## 19770                            UIS.ROFST.H.2.URB.Q4.M
## 19771                              UIS.ROFST.H.2.URB.Q5
## 19772                            UIS.ROFST.H.2.URB.Q5.F
## 19773                         UIS.ROFST.H.2.URB.Q5.GPIA
## 19774                            UIS.ROFST.H.2.URB.Q5.M
## 19775                            UIS.ROFST.H.2.URB.WPIA
## 19776                                UIS.ROFST.H.2.WPIA
## 19777                                     UIS.ROFST.H.3
## 19778                                   UIS.ROFST.H.3.F
## 19779                              UIS.ROFST.H.3.F.LPIA
## 19780                              UIS.ROFST.H.3.F.WPIA
## 19781                                UIS.ROFST.H.3.GPIA
## 19782                                UIS.ROFST.H.3.LPIA
## 19783                                   UIS.ROFST.H.3.M
## 19784                              UIS.ROFST.H.3.M.LPIA
## 19785                              UIS.ROFST.H.3.M.WPIA
## 19786                                  UIS.ROFST.H.3.Q1
## 19787                                UIS.ROFST.H.3.Q1.F
## 19788                           UIS.ROFST.H.3.Q1.F.LPIA
## 19789                             UIS.ROFST.H.3.Q1.GPIA
## 19790                             UIS.ROFST.H.3.Q1.LPIA
## 19791                                UIS.ROFST.H.3.Q1.M
## 19792                           UIS.ROFST.H.3.Q1.M.LPIA
## 19793                                  UIS.ROFST.H.3.Q2
## 19794                                UIS.ROFST.H.3.Q2.F
## 19795                           UIS.ROFST.H.3.Q2.F.LPIA
## 19796                             UIS.ROFST.H.3.Q2.GPIA
## 19797                             UIS.ROFST.H.3.Q2.LPIA
## 19798                                UIS.ROFST.H.3.Q2.M
## 19799                           UIS.ROFST.H.3.Q2.M.LPIA
## 19800                                  UIS.ROFST.H.3.Q3
## 19801                                UIS.ROFST.H.3.Q3.F
## 19802                           UIS.ROFST.H.3.Q3.F.LPIA
## 19803                             UIS.ROFST.H.3.Q3.GPIA
## 19804                             UIS.ROFST.H.3.Q3.LPIA
## 19805                                UIS.ROFST.H.3.Q3.M
## 19806                           UIS.ROFST.H.3.Q3.M.LPIA
## 19807                                  UIS.ROFST.H.3.Q4
## 19808                                UIS.ROFST.H.3.Q4.F
## 19809                           UIS.ROFST.H.3.Q4.F.LPIA
## 19810                             UIS.ROFST.H.3.Q4.GPIA
## 19811                             UIS.ROFST.H.3.Q4.LPIA
## 19812                                UIS.ROFST.H.3.Q4.M
## 19813                           UIS.ROFST.H.3.Q4.M.LPIA
## 19814                                  UIS.ROFST.H.3.Q5
## 19815                                UIS.ROFST.H.3.Q5.F
## 19816                           UIS.ROFST.H.3.Q5.F.LPIA
## 19817                             UIS.ROFST.H.3.Q5.GPIA
## 19818                             UIS.ROFST.H.3.Q5.LPIA
## 19819                                UIS.ROFST.H.3.Q5.M
## 19820                           UIS.ROFST.H.3.Q5.M.LPIA
## 19821                                 UIS.ROFST.H.3.RUR
## 19822                               UIS.ROFST.H.3.RUR.F
## 19823                          UIS.ROFST.H.3.RUR.F.WPIA
## 19824                            UIS.ROFST.H.3.RUR.GPIA
## 19825                               UIS.ROFST.H.3.RUR.M
## 19826                          UIS.ROFST.H.3.RUR.M.WPIA
## 19827                              UIS.ROFST.H.3.RUR.Q1
## 19828                            UIS.ROFST.H.3.RUR.Q1.F
## 19829                         UIS.ROFST.H.3.RUR.Q1.GPIA
## 19830                            UIS.ROFST.H.3.RUR.Q1.M
## 19831                              UIS.ROFST.H.3.RUR.Q2
## 19832                            UIS.ROFST.H.3.RUR.Q2.F
## 19833                         UIS.ROFST.H.3.RUR.Q2.GPIA
## 19834                            UIS.ROFST.H.3.RUR.Q2.M
## 19835                              UIS.ROFST.H.3.RUR.Q3
## 19836                            UIS.ROFST.H.3.RUR.Q3.F
## 19837                         UIS.ROFST.H.3.RUR.Q3.GPIA
## 19838                            UIS.ROFST.H.3.RUR.Q3.M
## 19839                              UIS.ROFST.H.3.RUR.Q4
## 19840                            UIS.ROFST.H.3.RUR.Q4.F
## 19841                         UIS.ROFST.H.3.RUR.Q4.GPIA
## 19842                            UIS.ROFST.H.3.RUR.Q4.M
## 19843                              UIS.ROFST.H.3.RUR.Q5
## 19844                            UIS.ROFST.H.3.RUR.Q5.F
## 19845                         UIS.ROFST.H.3.RUR.Q5.GPIA
## 19846                            UIS.ROFST.H.3.RUR.Q5.M
## 19847                            UIS.ROFST.H.3.RUR.WPIA
## 19848                                 UIS.ROFST.H.3.URB
## 19849                               UIS.ROFST.H.3.URB.F
## 19850                          UIS.ROFST.H.3.URB.F.WPIA
## 19851                            UIS.ROFST.H.3.URB.GPIA
## 19852                               UIS.ROFST.H.3.URB.M
## 19853                          UIS.ROFST.H.3.URB.M.WPIA
## 19854                              UIS.ROFST.H.3.URB.Q1
## 19855                            UIS.ROFST.H.3.URB.Q1.F
## 19856                         UIS.ROFST.H.3.URB.Q1.GPIA
## 19857                            UIS.ROFST.H.3.URB.Q1.M
## 19858                              UIS.ROFST.H.3.URB.Q2
## 19859                            UIS.ROFST.H.3.URB.Q2.F
## 19860                         UIS.ROFST.H.3.URB.Q2.GPIA
## 19861                            UIS.ROFST.H.3.URB.Q2.M
## 19862                              UIS.ROFST.H.3.URB.Q3
## 19863                            UIS.ROFST.H.3.URB.Q3.F
## 19864                         UIS.ROFST.H.3.URB.Q3.GPIA
## 19865                            UIS.ROFST.H.3.URB.Q3.M
## 19866                              UIS.ROFST.H.3.URB.Q4
## 19867                            UIS.ROFST.H.3.URB.Q4.F
## 19868                         UIS.ROFST.H.3.URB.Q4.GPIA
## 19869                            UIS.ROFST.H.3.URB.Q4.M
## 19870                              UIS.ROFST.H.3.URB.Q5
## 19871                            UIS.ROFST.H.3.URB.Q5.F
## 19872                         UIS.ROFST.H.3.URB.Q5.GPIA
## 19873                            UIS.ROFST.H.3.URB.Q5.M
## 19874                            UIS.ROFST.H.3.URB.WPIA
## 19875                                UIS.ROFST.H.3.WPIA
## 19876                                         UIS.SAP.0
## 19877                                       UIS.SAP.0.F
## 19878                                       UIS.SAP.0.M
## 19879                                        UIS.SAP.01
## 19880                                      UIS.SAP.01.F
## 19881                                      UIS.SAP.01.M
## 19882                                    UIS.SAP.1.AGM1
## 19883                                  UIS.SAP.1.AGM1.F
## 19884                                  UIS.SAP.1.AGM1.M
## 19885                                      UIS.SAP.1.G1
## 19886                                    UIS.SAP.1.G1.F
## 19887                                    UIS.SAP.1.G1.M
## 19888                                 UIS.SAP.23.GPV.G1
## 19889                               UIS.SAP.23.GPV.G1.F
## 19890                               UIS.SAP.23.GPV.G1.M
## 19891                                         UIS.SAP.4
## 19892                                       UIS.SAP.4.F
## 19893                                       UIS.SAP.4.M
## 19894                                        UIS.SAP.CE
## 19895                                      UIS.SAP.CE.F
## 19896                                      UIS.SAP.CE.M
## 19897                              UIS.SCHBSP.1.WCOMPUT
## 19898                                UIS.SCHBSP.1.WELEC
## 19899                            UIS.SCHBSP.1.WHIVSEXED
## 19900                           UIS.SCHBSP.1.WINFSTUDIS
## 19901                              UIS.SCHBSP.1.WINTERN
## 19902                               UIS.SCHBSP.1.WTOILA
## 19903                                UIS.SCHBSP.1.WWASH
## 19904                                UIS.SCHBSP.1.WWATA
## 19905                              UIS.SCHBSP.2.WCOMPUT
## 19906                                UIS.SCHBSP.2.WELEC
## 19907                            UIS.SCHBSP.2.WHIVSEXED
## 19908                           UIS.SCHBSP.2.WINFSTUDIS
## 19909                              UIS.SCHBSP.2.WINTERN
## 19910                               UIS.SCHBSP.2.WTOILA
## 19911                                UIS.SCHBSP.2.WWASH
## 19912                                UIS.SCHBSP.2.WWATA
## 19913                            UIS.SCHBSP.2T3.WCOMPUT
## 19914                            UIS.SCHBSP.2T3.WINTERN
## 19915                              UIS.SCHBSP.3.WCOMPUT
## 19916                                UIS.SCHBSP.3.WELEC
## 19917                            UIS.SCHBSP.3.WHIVSEXED
## 19918                           UIS.SCHBSP.3.WINFSTUDIS
## 19919                              UIS.SCHBSP.3.WINTERN
## 19920                               UIS.SCHBSP.3.WTOILA
## 19921                                UIS.SCHBSP.3.WWASH
## 19922                                UIS.SCHBSP.3.WWATA
## 19923                                        UIS.SLE.02
## 19924                                      UIS.SLE.02.F
## 19925                                    UIS.SLE.02.GPI
## 19926                                      UIS.SLE.02.M
## 19927                                         UIS.SLE.1
## 19928                                       UIS.SLE.1.F
## 19929                                     UIS.SLE.1.GPI
## 19930                                       UIS.SLE.1.M
## 19931                                        UIS.SLE.12
## 19932                                      UIS.SLE.12.F
## 19933                                      UIS.SLE.12.M
## 19934                                       UIS.SLE.123
## 19935                                     UIS.SLE.123.F
## 19936                                   UIS.SLE.123.GPI
## 19937                                     UIS.SLE.123.M
## 19938                                   UIS.SLE.1T2.GPI
## 19939                                   UIS.SLE.1T6.GPI
## 19940                                        UIS.SLE.23
## 19941                                      UIS.SLE.23.F
## 19942                                    UIS.SLE.23.GPI
## 19943                                      UIS.SLE.23.M
## 19944                                         UIS.SLE.4
## 19945                                       UIS.SLE.4.F
## 19946                                     UIS.SLE.4.GPI
## 19947                                       UIS.SLE.4.M
## 19948                                        UIS.SLE.56
## 19949                                      UIS.SLE.56.F
## 19950                                    UIS.SLE.56.GPI
## 19951                                      UIS.SLE.56.M
## 19952                                       UIS.SR.1.G4
## 19953                                     UIS.SR.1.G4.F
## 19954                                   UIS.SR.1.G4.GPI
## 19955                                     UIS.SR.1.G4.M
## 19956                                   UIS.SR.1.G5.GPI
## 19957                                UIS.SR.1.GLAST.GPI
## 19958                                          UIS.T.01
## 19959                                        UIS.T.01.F
## 19960                                        UIS.T.01.M
## 19961                                        UIS.T.02.M
## 19962                                         UIS.T.1.M
## 19963                                           UIS.T.2
## 19964                                         UIS.T.2.F
## 19965                                         UIS.T.2.M
## 19966                                        UIS.T.23.M
## 19967                                           UIS.T.3
## 19968                                         UIS.T.3.F
## 19969                                         UIS.T.3.M
## 19970                                           UIS.T.4
## 19971                                         UIS.T.4.F
## 19972                                         UIS.T.4.M
## 19973                                           UIS.T.5
## 19974                                         UIS.T.5.F
## 19975                                         UIS.T.5.M
## 19976                                        UIS.T.58.M
## 19977                                     UIS.TATTRR.02
## 19978                                   UIS.TATTRR.02.F
## 19979                                UIS.TATTRR.02.GPIA
## 19980                                   UIS.TATTRR.02.M
## 19981                                    UIS.TATTRR.1.F
## 19982                                 UIS.TATTRR.1.GPIA
## 19983                                    UIS.TATTRR.1.M
## 19984                                    UIS.TATTRR.1.T
## 19985                                    UIS.TATTRR.2.F
## 19986                                 UIS.TATTRR.2.GPIA
## 19987                                    UIS.TATTRR.2.M
## 19988                                    UIS.TATTRR.2.T
## 19989                                    UIS.TATTRR.2T3
## 19990                                  UIS.TATTRR.2T3.F
## 19991                               UIS.TATTRR.2T3.GPIA
## 19992                                UIS.TATTRR.2T3.GPV
## 19993                              UIS.TATTRR.2T3.GPV.F
## 19994                              UIS.TATTRR.2T3.GPV.M
## 19995                                  UIS.TATTRR.2T3.M
## 19996                                  UIS.TATTRR.2T3.V
## 19997                                UIS.TATTRR.2T3.V.F
## 19998                                UIS.TATTRR.2T3.V.M
## 19999                                    UIS.TATTRR.3.F
## 20000                                 UIS.TATTRR.3.GPIA
## 20001                                    UIS.TATTRR.3.M
## 20002                                    UIS.TATTRR.3.T
## 20003                                       UIS.THAGE.0
## 20004                                      UIS.THAGE.01
## 20005                                      UIS.THAGE.02
## 20006                                 UIS.THAGE.3.A.GPV
## 20007                                 UIS.THAGE.4.A.GPV
## 20008                                       UIS.THDUR.0
## 20009                                      UIS.THDUR.01
## 20010                                      UIS.THDUR.02
## 20011                                 UIS.THDUR.4.A.GPV
## 20012                                       UIS.TRTP.02
## 20013                                     UIS.TRTP.02.F
## 20014                                  UIS.TRTP.02.GPIA
## 20015                                     UIS.TRTP.02.M
## 20016                                   UIS.TRTP.1.GPIA
## 20017                                        UIS.TRTP.2
## 20018                                      UIS.TRTP.2.F
## 20019                                   UIS.TRTP.2.GPIA
## 20020                                      UIS.TRTP.2.M
## 20021                                 UIS.TRTP.2T3.GPIA
## 20022                                        UIS.TRTP.3
## 20023                                      UIS.TRTP.3.F
## 20024                                   UIS.TRTP.3.GPIA
## 20025                                      UIS.TRTP.3.M
## 20026                                UIS.X.PPP.02.FSGOV
## 20027                                 UIS.X.PPP.1.FSGOV
## 20028                                 UIS.X.PPP.2.FSGOV
## 20029                               UIS.X.PPP.2T3.FSGOV
## 20030                             UIS.X.PPP.2T4.V.FSGOV
## 20031                                 UIS.X.PPP.3.FSGOV
## 20032                                 UIS.X.PPP.4.FSGOV
## 20033                               UIS.X.PPP.5T8.FSGOV
## 20034                                   UIS.X.PPP.FSGOV
## 20035                                UIS.X.PPP.UK.FSGOV
## 20036                           UIS.X.PPPCONST.02.FSGOV
## 20037                            UIS.X.PPPCONST.1.FSGOV
## 20038                            UIS.X.PPPCONST.2.FSGOV
## 20039                          UIS.X.PPPCONST.2T3.FSGOV
## 20040                        UIS.X.PPPCONST.2T4.V.FSGOV
## 20041                            UIS.X.PPPCONST.3.FSGOV
## 20042                            UIS.X.PPPCONST.4.FSGOV
## 20043                          UIS.X.PPPCONST.5T8.FSGOV
## 20044                              UIS.X.PPPCONST.FSGOV
## 20045                           UIS.X.PPPCONST.UK.FSGOV
## 20046                                 UIS.X.US.02.FSGOV
## 20047                                  UIS.X.US.1.FSGOV
## 20048                                  UIS.X.US.2.FSGOV
## 20049                                UIS.X.US.2T3.FSGOV
## 20050                              UIS.X.US.2T4.V.FSGOV
## 20051                                  UIS.X.US.3.FSGOV
## 20052                                  UIS.X.US.4.FSGOV
## 20053                                UIS.X.US.5T8.FSGOV
## 20054                                    UIS.X.US.FSGOV
## 20055                                 UIS.X.US.UK.FSGOV
## 20056                            UIS.X.USCONST.02.FSGOV
## 20057                             UIS.X.USCONST.1.FSGOV
## 20058                             UIS.X.USCONST.2.FSGOV
## 20059                           UIS.X.USCONST.2T3.FSGOV
## 20060                         UIS.X.USCONST.2T4.V.FSGOV
## 20061                             UIS.X.USCONST.3.FSGOV
## 20062                             UIS.X.USCONST.4.FSGOV
## 20063                           UIS.X.USCONST.5T8.FSGOV
## 20064                               UIS.X.USCONST.FSGOV
## 20065                            UIS.X.USCONST.UK.FSGOV
## 20066                                  UIS.XGDP.0.FSGOV
## 20067                                  UIS.XGDP.1.FSGOV
## 20068                                  UIS.XGDP.2.FSGOV
## 20069                                 UIS.XGDP.23.FSGOV
## 20070                              UIS.XGDP.2T4.V.FSGOV
## 20071                                  UIS.XGDP.3.FSGOV
## 20072                                  UIS.XGDP.4.FSGOV
## 20073                                 UIS.XGDP.56.FSGOV
## 20074                         UIS.XSPENDP.0.FDPUB.FNCAP
## 20075                         UIS.XSPENDP.0.FDPUB.FNCUR
## 20076                        UIS.XSPENDP.0.FDPUB.FNNONS
## 20077                           UIS.XSPENDP.0.FDPUB.FNS
## 20078                        UIS.XSPENDP.02.FDPUB.FNNTS
## 20079                         UIS.XSPENDP.02.FDPUB.FNTS
## 20080                       UIS.XSPENDP.1.FDPUB.FNBOOKS
## 20081                         UIS.XSPENDP.1.FDPUB.FNCAP
## 20082                         UIS.XSPENDP.1.FDPUB.FNCUR
## 20083                        UIS.XSPENDP.1.FDPUB.FNNONS
## 20084                         UIS.XSPENDP.1.FDPUB.FNNTS
## 20085                           UIS.XSPENDP.1.FDPUB.FNS
## 20086                          UIS.XSPENDP.1.FDPUB.FNTS
## 20087                         UIS.XSPENDP.2.FDPUB.FNCAP
## 20088                         UIS.XSPENDP.2.FDPUB.FNCUR
## 20089                        UIS.XSPENDP.2.FDPUB.FNNONS
## 20090                         UIS.XSPENDP.2.FDPUB.FNNTS
## 20091                           UIS.XSPENDP.2.FDPUB.FNS
## 20092                          UIS.XSPENDP.2.FDPUB.FNTS
## 20093                      UIS.XSPENDP.23.FDPUB.FNBOOKS
## 20094                        UIS.XSPENDP.23.FDPUB.FNCAP
## 20095                        UIS.XSPENDP.23.FDPUB.FNCUR
## 20096                       UIS.XSPENDP.23.FDPUB.FNNONS
## 20097                        UIS.XSPENDP.23.FDPUB.FNNTS
## 20098                          UIS.XSPENDP.23.FDPUB.FNS
## 20099                         UIS.XSPENDP.23.FDPUB.FNTS
## 20100                         UIS.XSPENDP.3.FDPUB.FNCAP
## 20101                         UIS.XSPENDP.3.FDPUB.FNCUR
## 20102                        UIS.XSPENDP.3.FDPUB.FNNONS
## 20103                         UIS.XSPENDP.3.FDPUB.FNNTS
## 20104                           UIS.XSPENDP.3.FDPUB.FNS
## 20105                          UIS.XSPENDP.3.FDPUB.FNTS
## 20106                         UIS.XSPENDP.4.FDPUB.FNCAP
## 20107                         UIS.XSPENDP.4.FDPUB.FNCUR
## 20108                        UIS.XSPENDP.4.FDPUB.FNNONS
## 20109                         UIS.XSPENDP.4.FDPUB.FNNTS
## 20110                           UIS.XSPENDP.4.FDPUB.FNS
## 20111                          UIS.XSPENDP.4.FDPUB.FNTS
## 20112                        UIS.XSPENDP.56.FDPUB.FNCAP
## 20113                        UIS.XSPENDP.56.FDPUB.FNCUR
## 20114                       UIS.XSPENDP.56.FDPUB.FNNONS
## 20115                        UIS.XSPENDP.56.FDPUB.FNNTS
## 20116                          UIS.XSPENDP.56.FDPUB.FNS
## 20117                         UIS.XSPENDP.56.FDPUB.FNTS
## 20118                           UIS.XSPENDP.FDPUB.FNCAP
## 20119                          UIS.XSPENDP.FDPUB.FNNONS
## 20120                           UIS.XSPENDP.FDPUB.FNNTS
## 20121                             UIS.XSPENDP.FDPUB.FNS
## 20122                            UIS.XSPENDP.FDPUB.FNTS
## 20123                         UIS.XUNIT.GDPCAP.02.FSGOV
## 20124                          UIS.XUNIT.GDPCAP.1.FSGOV
## 20125                           UIS.XUNIT.GDPCAP.1.FSHH
## 20126                          UIS.XUNIT.GDPCAP.2.FSGOV
## 20127                         UIS.XUNIT.GDPCAP.23.FSGOV
## 20128                          UIS.XUNIT.GDPCAP.23.FSHH
## 20129                          UIS.XUNIT.GDPCAP.3.FSGOV
## 20130                        UIS.XUNIT.GDPCAP.5T8.FSGOV
## 20131                         UIS.XUNIT.GDPCAP.5T8.FSHH
## 20132                       UIS.XUNIT.PPPCONST.02.FSGOV
## 20133                        UIS.XUNIT.PPPCONST.1.FSGOV
## 20134                         UIS.XUNIT.PPPCONST.1.FSHH
## 20135                        UIS.XUNIT.PPPCONST.2.FSGOV
## 20136                       UIS.XUNIT.PPPCONST.23.FSGOV
## 20137                        UIS.XUNIT.PPPCONST.23.FSHH
## 20138                        UIS.XUNIT.PPPCONST.3.FSGOV
## 20139                      UIS.XUNIT.PPPCONST.5T8.FSGOV
## 20140                       UIS.XUNIT.PPPCONST.5T8.FSHH
## 20141                          UIS.YADULT.PROFILITERACY
## 20142                        UIS.YADULT.PROFILITERACY.F
## 20143                     UIS.YADULT.PROFILITERACY.GPIA
## 20144                     UIS.YADULT.PROFILITERACY.HSES
## 20145                     UIS.YADULT.PROFILITERACY.LSES
## 20146                        UIS.YADULT.PROFILITERACY.M
## 20147                      UIS.YADULT.PROFILITERACY.NAT
## 20148                      UIS.YADULT.PROFILITERACY.NON
## 20149                     UIS.YADULT.PROFILITERACY.NPIA
## 20150                     UIS.YADULT.PROFILITERACY.WPIA
## 20151                          UIS.YADULT.PROFINUMERACY
## 20152                        UIS.YADULT.PROFINUMERACY.F
## 20153                     UIS.YADULT.PROFINUMERACY.GPIA
## 20154                     UIS.YADULT.PROFINUMERACY.HSES
## 20155                     UIS.YADULT.PROFINUMERACY.LSES
## 20156                        UIS.YADULT.PROFINUMERACY.M
## 20157                      UIS.YADULT.PROFINUMERACY.NAT
## 20158                      UIS.YADULT.PROFINUMERACY.NON
## 20159                     UIS.YADULT.PROFINUMERACY.NPIA
## 20160                     UIS.YADULT.PROFINUMERACY.WPIA
## 20161                              UIS.YEARS.FC.COMP.02
## 20162                             UIS.YEARS.FC.COMP.1T3
## 20163                              UIS.YEARS.FC.FREE.02
## 20164                             UIS.YEARS.FC.FREE.1T3
## 20165                                   UIS.YR.END.01T5
## 20166                                    UIS.YR.END.6T8
## 20167                               UIS.YR.END.MON.01T5
## 20168                                UIS.YR.END.MON.6T8
## 20169                                    UIS.YR.ST.01T5
## 20170                                     UIS.YR.ST.6T8
## 20171                                UIS.YR.ST.MON.01T5
## 20172                                 UIS.YR.ST.MON.6T8
## 20173                                    UM.EMP.ROUT.IN
## 20174                                    UM.EMP.ROUT.XD
## 20175                                    UM.EMP.RWAG.IN
## 20176                                    UM.EMP.RWAG.XD
## 20177                                    UM.EMP.TOTL.IN
## 20178                                    UM.EMP.TOTL.XU
## 20179                                    UM.VAD.WAGE.SN
## 20180                                    UM.VAD.WAGE.ZS
## 20181                                       UNDP.HDI.XD
## 20182                                          UNEMPSA_
## 20183                                    UPP.COM.POL.XQ
## 20184                                   UPP.INS.AUTO.XQ
## 20185                                   UPP.INS.DEMO.XQ
## 20186                                    UPP.REV.POL.XQ
## 20187                                           v_F_nsk
## 20188                                           v_F_skl
## 20189                                           v_M_nsk
## 20190                                           v_M_skl
## 20191                                            VA.EST
## 20192                                         VA.NO.SRC
## 20193                                        VA.PER.RNK
## 20194                                  VA.PER.RNK.LOWER
## 20195                                  VA.PER.RNK.UPPER
## 20196                                        VA.STD.ERR
## 20197                                       VC.BTL.DETH
## 20198                                 VC.HOM.ITEN.P5.HE
## 20199                                 VC.HOM.ITEN.P5.LE
## 20200                                       VC.IDP.NWCV
## 20201                                       VC.IDP.NWDS
## 20202                                       VC.IDP.TOCV
## 20203                                       VC.IDP.TOTL
## 20204                                    VC.IDP.TOTL.HE
## 20205                                    VC.IDP.TOTL.LE
## 20206                                    VC.IHR.ICTS.P5
## 20207                                    VC.IHR.IPBH.P5
## 20208                                    VC.IHR.IPOL.P5
## 20209                                    VC.IHR.NPOL.P5
## 20210                                 VC.IHR.PSRC.FE.P5
## 20211                                 VC.IHR.PSRC.MA.P5
## 20212                                    VC.IHR.PSRC.P5
## 20213                                    VC.PKP.TOTL.UN
## 20214                                           w_F_nsk
## 20215                                           w_F_skl
## 20216                                           w_M_nsk
## 20217                                           w_M_skl
## 20218                                      WP_time_01.1
## 20219                                      WP_time_01.2
## 20220                                      WP_time_01.3
## 20221                                      WP_time_01.8
## 20222                                      WP_time_01.9
## 20223                                      WP_time_10.1
## 20224                                      WP_time_10.2
## 20225                                      WP_time_10.3
## 20226                                      WP_time_10.4
## 20227                                      WP_time_10.5
## 20228                                      WP_time_10.6
## 20229                                      WP_time_10.7
## 20230                                      WP_time_10.8
## 20231                                      WP_time_10.9
## 20232                                       WP15163_4.1
## 20233                                       WP15163_4.2
## 20234                                       WP15163_4.3
## 20235                                       WP15163_4.8
## 20236                                       WP15163_4.9
## 20237                                         wpremia_F
## 20238                                         wpremia_M
##                                                                                                                                                                                                                                                                                             name
## 1                                                                                                                                                                                                                                                                Poverty Headcount ($1.90 a day)
## 2                                                                                                                                                                                                                                                                Poverty Headcount ($2.50 a day)
## 3                                                                                                                                                                                                                                                          Middle Class ($10-50 a day) Headcount
## 4                                                                                                                                                                                                                                                        Official Moderate Poverty Rate-National
## 5                                                                                                                                                                                                                                                                   Poverty Headcount ($4 a day)
## 6                                                                                                                                                                                                                                                             Vulnerable ($4-10 a day) Headcount
## 7                                                                                                                                                                                                                                                                      Poverty Gap ($1.90 a day)
## 8                                                                                                                                                                                                                                                                      Poverty Gap ($2.50 a day)
## 9                                                                                                                                                                                                                                                                         Poverty Gap ($4 a day)
## 10                                                                                                                                                                                                                                                                Poverty Severity ($1.90 a day)
## 11                                                                                                                                                                                                                                                                Poverty Severity ($2.50 a day)
## 12                                                                                                                                                                                                                                                                   Poverty Severity ($4 a day)
## 13                                                                                                                                                                                                                                                         Poverty Headcount ($1.90 a day)-Rural
## 14                                                                                                                                                                                                                                                         Poverty Headcount ($2.50 a day)-Rural
## 15                                                                                                                                                                                                                                                   Middle Class ($10-50 a day) Headcount-Rural
## 16                                                                                                                                                                                                                                                         Official Moderate Poverty Rate- Rural
## 17                                                                                                                                                                                                                                                            Poverty Headcount ($4 a day)-Rural
## 18                                                                                                                                                                                                                                                      Vulnerable ($4-10 a day) Headcount-Rural
## 19                                                                                                                                                                                                                                                               Poverty Gap ($1.90 a day)-Rural
## 20                                                                                                                                                                                                                                                               Poverty Gap ($2.50 a day)-Rural
## 21                                                                                                                                                                                                                                                                  Poverty Gap ($4 a day)-Rural
## 22                                                                                                                                                                                                                                                          Poverty Severity ($1.90 a day)-Rural
## 23                                                                                                                                                                                                                                                          Poverty Severity ($2.50 a day)-Rural
## 24                                                                                                                                                                                                                                                             Poverty Severity ($4 a day)-Rural
## 25                                                                                                                                                                                                                                                 Access to electricity (% of total population)
## 26                                                                                                                                                                                                                                                         Total final energy consumption (TFEC)
## 27                                                                                                                                                                                                                                          Literacy rate, youth total (% of people ages 15-24) 
## 28                                                                                                                                                                                                                                                         Poverty Headcount ($1.90 a day)-Urban
## 29                                                                                                                                                                                                                                                         Poverty Headcount ($2.50 a day)-Urban
## 30                                                                                                                                                                                                                                                   Middle Class ($10-50 a day) Headcount-Urban
## 31                                                                                                                                                                                                                                                          Official Moderate Poverty Rate-Urban
## 32                                                                                                                                                                                                                                                            Poverty Headcount ($4 a day)-Urban
## 33                                                                                                                                                                                                                                                      Vulnerable ($4-10 a day) Headcount-Urban
## 34                                                                                                                                                                                                                                                               Poverty Gap ($1.90 a day)-Urban
## 35                                                                                                                                                                                                                                                               Poverty Gap ($2.50 a day)-Urban
## 36                                                                                                                                                                                                                                                                  Poverty Gap ($4 a day)-Urban
## 37                                                                                                                                                                                                                                                          Poverty Severity ($1.90 a day)-Urban
## 38                                                                                                                                                                                                                                                          Poverty Severity ($2.50 a day)-Urban
## 39                                                                                                                                                                                                                                                             Poverty Severity ($4 a day)-Urban
## 40                                                                                                                                                                                                                                                 Access to electricity (% of rural population)
## 41                                                                                                                                                                                                                                                 Access to electricity (% of urban population)
## 42                                                                                                                                                                                                                                                                 100000:GROSS DOMESTIC PRODUCT
## 43                                                                                                                                                                                                                                                                1000000:GROSS DOMESTIC PRODUCT
## 44                                                                                                                                                                                                                                       110000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS
## 45                                                                                                                                                                                                                                                       110100:FOOD AND NON-ALCOHOLIC BEVERAGES
## 46                                                                                                                                                                                                                                                      1101000:FOOD AND NON-ALCOHOLIC BEVERAGES
## 47                                                                                                                                                                                                                                                                                   110110:FOOD
## 48                                                                                                                                                                                                                                                                                  1101100:FOOD
## 49                                                                                                                                                                                                                                                              110111:Bread and cereals (Class)
## 50                                                                                                                                                                                                                                                                     1101110:Bread and cereals
## 51                                                                                                                                                                                                                                                                           110112:Meat (Class)
## 52                                                                                                                                                                                                                                                                                  1101120:Meat
## 53                                                                                                                                                                                                                                                               110113:Fish and seafood (Class)
## 54                                                                                                                                                                                                                                                                      1101130:Fish and seafood
## 55                                                                                                                                                                                                                                                          110114:Milk, cheese and eggs (Class)
## 56                                                                                                                                                                                                                                                                 1101140:Milk, cheese and eggs
## 57                                                                                                                                                                                                                                                                  110115:Oils and fats (Class)
## 58                                                                                                                                                                                                                                                                         1101150:Oils and fats
## 59                                                                                                                                                                                                                                                                          110116:Fruit (Class)
## 60                                                                                                                                                                                                                                                                                 1101160:Fruit
## 61                                                                                                                                                                                                                                                                     110117:Vegetables (Class)
## 62                                                                                                                                                                                                                                                                            1101170:Vegetables
## 63                                                                                                                                                                                                                                 110118:Sugar, jam, honey, chocolate and confectionery (Class)
## 64                                                                                                                                                                                                                                        1101180:Sugar, jam, honey, chocolate and confectionery
## 65                                                                                                                                                                                                                                                              110119:Food products nec (Class)
## 66                                                                                                                                                                                                                                                          1101190:Food products n.e.c. (Class)
## 67                                                                                                                                                                                                                                                                110120:NON-ALCOHOLIC BEVERAGES
## 68                                                                                                                                                                                                                                                               1101200:NON-ALCOHOLIC BEVERAGES
## 69                                                                                                                                                                                                                                               110200:ALCOHOL BEVERAGES, TOBACCO AND NARCOTICS
## 70                                                                                                                                                                                                                                            1102000:ALCOHOLIC BEVERAGES, TOBACCO AND NARCOTICS
## 71                                                                                                                                                                                                                                                                      110210:ALCOHOL BEVERAGES
## 72                                                                                                                                                                                                                                                                   1102100:ALCOHOLIC BEVERAGES
## 73                                                                                                                                                                                                                                                                                110220:TOBACCO
## 74                                                                                                                                                                                                                                                                               1102200:TOBACCO
## 75                                                                                                                                                                                                                                                                  110300:CLOTHING AND FOOTWEAR
## 76                                                                                                                                                                                                                                                                 1103000:CLOTHING AND FOOTWEAR
## 77                                                                                                                                                                                                                                      110400:HOUSING, WATER, ELECTRICITY, GAS, AND OTHER FUELS
## 78                                                                                                                                                                                                                   110500:FURNISHING, HOUSEHOLD EQUIPMENT AND ROUTINE MAINTENANCE OF THE HOUSE
## 79                                                                                                                                                                                                                    1105000:FURNISHINGS, HOUSEHOLD EQUIPMENT AND ROUTINE HOUSEHOLD MAINTENANCE
## 80                                                                                                                                                                                                                                                                110600:HEALTH - HHC (Category)
## 81                                                                                                                                                                                                                                                                              110700:TRANSPORT
## 82                                                                                                                                                                                                                                                                             1107000:TRANSPORT
## 83                                                                                                                                                                                                                                                                   110710:PURCHASE OF VEHICLES
## 84                                                                                                                                                                                                                                                                  1107100:PURCHASE OF VEHICLES
## 85                                                                                                                                                                                                                                                                     110730:TRANSPORT SERVICES
## 86                                                                                                                                                                                                                                                                    1107300:TRANSPORT SERVICES
## 87                                                                                                                                                                                                                                                                          110800:COMMUNICATION
## 88                                                                                                                                                                                                                                                                         1108000:COMMUNICATION
## 89                                                                                                                                                                                                                                                                 111100:RESTAURANTS AND HOTELS
## 90                                                                                                                                                                                                                                                                1111000:RESTAURANTS AND HOTELS
## 91                                                                                                                                                                                111300:BALANCE OF EXPENDITURES OF RESIDENTS ABROAD AND EXPENDITURES OF NON-RESIDENTS IN THE ECONOMIC TERRITORY
## 92                                                                                                                                                                                                                                                                  1113000:NET PURCHASES ABROAD
## 93                                                                                                                                                                                                                                       130000:INDIVIDUAL CONSUMPTION EXPENDITURE BY GOVERNMENT
## 94                                                                                                                                                                                                                                      1300000:INDIVIDUAL CONSUMPTION EXPENDITURE BY GOVERNMENT
## 95                                                                                                                                                                                                                                       140000:COLLECTIVE CONSUMPTION EXPENDITURE BY GOVERNMENT
## 96                                                                                                                                                                                                                                      1400000:COLLECTIVE CONSUMPTION EXPENDITURE BY GOVERNMENT
## 97                                                                                                                                                                                                                                                          150000:GROSS FIXED CAPITAL FORMATION
## 98                                                                                                                                                                                                                                                               1500000:GROSS CAPITAL FORMATION
## 99                                                                                                                                                                                                                                                                150100:MACHINERY AND EQUIPMENT
## 100                                                                                                                                                                                                                                                        1501000:GROSS FIXED CAPITAL FORMATION
## 101                                                                                                                                                                                                                                                              1501100:MACHINERY AND EQUIPMENT
## 102                                                                                                                                                                                                                                                                         1501200:CONSTRUCTION
## 103                                                                                                                                                                                                                                                                       1501300:OTHER PRODUCTS
## 104                                                                                                                                                                                                                                                                          150200:CONSTRUCTION
## 105                                                                                                                                                                                                                                                               1502000:CHANGES IN INVENTORIES
## 106                                                                                                                                                                                                                                                                        150300:OTHER PRODUCTS
## 107                                                                                                                                                                                                                                  1503000:ACQUISITIONS LESS DISPOSALS OF VALUABLES (Category)
## 108                                                                                                                                                                                                                                                       1600000:BALANCE OF EXPORTS AND IMPORTS
## 109                                                                                                                                                                                                                                                                160100:CHANGES IN INVENTORIES
## 110                                                                                                                                                                                                                                              160200:ACQUISITIONS LESS DISPOSALS OF VALUABLES
## 111                                                                                                                                                                                                                                                        170000:BALANCE OF EXPORTS AND IMPORTS
## 112                                                                                                                                                                                                                                                                       Coverage: Mobile Phone
## 113                                                                                                                                                                                                                                                                        Coverage: Electricity
## 114                                                                                                                                                                                                                                                            Coverage: Finished Primary School
## 115                                                                                                                                                                                                                                                                          Coverage: Internet 
## 116                                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 2
## 117                                                                                                                                                                                                                                   Coverage: Mathematics Proficiency Level 2, Private schools
## 118                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 2, Public schools
## 119                                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 3
## 120                                                                                                                                                                                                                                   Coverage: Mathematics Proficiency Level 3, Private schools
## 121                                                                                                                                                                                                                                    Coverage: Mathematics Proficiency Level 3, Public schools
## 122                                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 2
## 123                                                                                                                                                                                                                                       Coverage: Reading Proficiency Level 2, Private schools
## 124                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 2, Public schools
## 125                                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 3
## 126                                                                                                                                                                                                                                       Coverage: Reading Proficiency Level 3, Private schools
## 127                                                                                                                                                                                                                                        Coverage: Reading Proficiency Level 3, Public schools
## 128                                                                                                                                                                                                                                                                         Coverage: Sanitation
## 129                                                                                                                                                                                                                                                                  Coverage: School Enrollment
## 130                                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 2
## 131                                                                                                                                                                                                                                       Coverage: Science Proficiency Level 2, Private schools
## 132                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 2, Public schools
## 133                                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 3
## 134                                                                                                                                                                                                                                       Coverage: Science Proficiency Level 3, Private schools
## 135                                                                                                                                                                                                                                        Coverage: Science Proficiency Level 3, Public schools
## 136                                                                                                                                                                                                                                                                              Coverage: Water
## 137                                                                                                                                                                                                                                                                            HOI: Mobile Phone
## 138                                                                                                                                                                                                                                                                             HOI: Electricity
## 139                                                                                                                                                                                                                                                                 HOI: Finished Primary School
## 140                                                                                                                                                                                                                                                                               HOI: Internet 
## 141                                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 2
## 142                                                                                                                                                                                                                                        HOI: Mathematics Proficiency Level 2, Private schools
## 143                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 2, Public schools
## 144                                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 3
## 145                                                                                                                                                                                                                                        HOI: Mathematics Proficiency Level 3, Private schools
## 146                                                                                                                                                                                                                                         HOI: Mathematics Proficiency Level 3, Public schools
## 147                                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 2
## 148                                                                                                                                                                                                                                            HOI: Reading Proficiency Level 2, Private schools
## 149                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 2, Public schools
## 150                                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 3
## 151                                                                                                                                                                                                                                            HOI: Reading Proficiency Level 3, Private schools
## 152                                                                                                                                                                                                                                             HOI: Reading Proficiency Level 3, Public schools
## 153                                                                                                                                                                                                                                                                              HOI: Sanitation
## 154                                                                                                                                                                                                                                                                       HOI: School Enrollment
## 155                                                                                                                                                                                                                                                             HOI: Science Proficiency Level 2
## 156                                                                                                                                                                                                                                            HOI: Science Proficiency Level 2, Private schools
## 157                                                                                                                                                                                                                                             HOI: Science Proficiency Level 2, Public schools
## 158                                                                                                                                                                                                                                                             HOI: Science Proficiency Level 3
## 159                                                                                                                                                                                                                                            HOI: Science Proficiency Level 3, Private schools
## 160                                                                                                                                                                                                                                             HOI: Science Proficiency Level 3, Public schools
## 161                                                                                                                                                                                                                                                                                   HOI: Water
## 162                                                                                                                                                                                                                                                                  National accounts base year
## 163                                                                                                                                                                                                                                                               Consumer price index base year
## 164                                                                                                                                                                                                                                                            Balance of payments manual in use
## 165                                                                                                                                                                                                                   Access to Clean Fuels and Technologies for cooking (% of total population)
## 166                                                                                                                                                                                                                                      School enrolment, preprimary, national source (% gross)
## 167                                                                                                                                                                                                                                                      Renewable energy consumption(% in TFEC)
## 168                                                                                                                                                                                                              Gross intake ratio in grade 1, total, national source (% of relevant age group)
## 169                                                                                                                                                                                                                                        Gender parity index for gross intake ratio in grade 1
## 170                                                                                                                                                                                                                   Rate of out of school children, national source (% of relevant age group) 
## 171                                                                                                                                                                                                                    Primary completion rate, total, national source (% of relevant age group)
## 172                                                                                                                                                                                                                                             Gender parity index for primary completion rate 
## 173                                                                                                                                                                                                                                         Progression to secondary school, national source (%)
## 174                                                                                                                                                                                                            Lower secondary completion rate, total, national source (% of relevant age group)
## 175                                                                                                                                                                                                                                                                              Atkinson, A(.5)
## 176                                                                                                                                                                                                                                                                               Atkinson, A(1)
## 177                                                                                                                                                                                                                                                                               Atkinson, A(2)
## 178                                                                                                                                                                                                                                                                 Generalized Entrophy, GE(-1)
## 179                                                                                                                                                                                                                                                                  Generalized Entrophy, GE(2)
## 180                                                                                                                                                                                                                                                                             Gini Coefficient
## 181                                                                                                                                                                                                                                                            Gini Coefficient (No Zero Income)
## 182                                                                                                                                                                                                                                                               Income Share of First Quintile
## 183                                                                                                                                                                                                                                                              Income Share of Second Quintile
## 184                                                                                                                                                                                                                                                               Income Share of Third Quintile
## 185                                                                                                                                                                                                                                                              Income Share of Fourth Quintile
## 186                                                                                                                                                                                                                                                               Income Share of Fifth Quintile
## 187                                                                                                                                                                                                                                                                    Mean Log Deviation, GE(0)
## 188                                                                                                                                                                                                                                                                                   Rate 75/25
## 189                                                                                                                                                                                                                                                                                   Rate 90/10
## 190                                                                                                                                                                                                                                                                           Theil Index, GE(1)
## 191                                                                                                                                                                                                                                                                          Agricultural census
## 192                                                                                                                                                                                                                                                                Government finance accounting
## 193                                                                                                                                                                                                                                                                                  Gini, Rural
## 194                                                                                                                                                                                                                                                             Mean Log Deviation, GE(0), Rural
## 195                                                                                                                                                                                                                                                                    Theil Index, GE(1), Rural
## 196                                                                                                                                                                                                                                     Lower secondary education, new teachers, national source
## 197                                                                                                                                                                                                                                             Primary education, new entrants, national source
## 198                                                                                                                                                                                                                                                            Renewable energy consumption (TJ)
## 199                                                                                                                                                                                                                                                                            Population census
## 200                                                                                                                                                                                                                                                           Vital registration system coverage
## 201                                                                                                                                                                                                                                       Lower secondary education, classrooms, national source
## 202                                                                                                                                                                                                                                   Lower secondary education, new classrooms, national source
## 203                                                                                                                                                                                                                                 Ratio of textbooks per pupil, primary education, mathematics
## 204                                                                                                                                                                                                                                    Ratio of textbooks per pupil, primary education, language
## 205                                                                                                                                                                                                                          Last study on effective learning time and teacher attendance (year)
## 206                                                                                                                                                                                                                                                                                  Gini, Urban
## 207                                                                                                                                                                                                                                                              Mean Log Deviation, GE(0),Urban
## 208                                                                                                                                                                                                                                                                     Theil Index, GE(1),Urban
## 209                                                                                                                                                                                                                                                   Primary education, pupils, national source
## 210                                                                                                                                                                                                                                                 Primary education, teachers, national source
## 211                                                                                                                                                                                                                                             Primary education, new teachers, national source
## 212                                                                                                                                                                                                                                               Primary education, classrooms, national source
## 213                                                                                                                                                                                                                                           Primary education, new classrooms, national source
## 214                                                                                                                                                                                                                                     Lower Secondary education, new entrants, national source
## 215                                                                                                                                                                                                                                           Lower secondary education, pupils, national source
## 216                                                                                                                                                                                                                                         Lower secondary education, teachers, national source
## 217                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (15-18)
## 218                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (15-24)
## 219                                                                                                                                                                                                                                                Youth: Neither in School Nor Working  (19-24)
## 220                                                                                                                                                                                                                                                                     Youth: In School (15-18)
## 221                                                                                                                                                                                                                                                                     Youth: In School (15-24)
## 222                                                                                                                                                                                                                                                                     Youth: In School (19-24)
## 223                                                                                                                                                                                                                                                        Youth: In School and Employed (15-18)
## 224                                                                                                                                                                                                                                                        Youth: In School and Employed (15-24)
## 225                                                                                                                                                                                                                                                        Youth: In School and Employed (19-24)
## 226                                                                                                                                                                                                                                                                      Youth: Employed (15-18)
## 227                                                                                                                                                                                                                                                                      Youth: Employed (15-24)
## 228                                                                                                                                                                                                                                                                      Youth: Employed (19-24)
## 229                                                                                                                                                                                                                                                               Total electricity output (GWh)
## 230                                                                                                                                                                                                                                                    Renewable energy electricity output (GWh)
## 231                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (15-18), Male
## 232                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (15-24), Male
## 233                                                                                                                                                                                                                                          Youth: Neither in School Nor Working  (19-24), Male
## 234                                                                                                                                                                                                                                                               Youth: In School (15-18), Male
## 235                                                                                                                                                                                                                                                               Youth: In School (15-24), Male
## 236                                                                                                                                                                                                                                                               Youth: In School (19-24), Male
## 237                                                                                                                                                                                                                                                  Youth: In School and Employed (15-18), Male
## 238                                                                                                                                                                                                                                                  Youth: In School and Employed (15-24), Male
## 239                                                                                                                                                                                                                                                  Youth: In School and Employed (19-24), Male
## 240                                                                                                                                                                                                                                                                Youth: Employed (15-18), Male
## 241                                                                                                                                                                                                                                                                Youth: Employed (15-24), Male
## 242                                                                                                                                                                                                                                                                Youth: Employed (19-24), Male
## 243                                                                                                                                                                                                                                        Renewable electricity (% in total electricity output)
## 244                                                                                                                                                                                                                              Public spending on total education (% of total public spending)
## 245                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (15-18), Female
## 246                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (15-24), Female
## 247                                                                                                                                                                                                                                        Youth: Neither in School Nor Working  (19-24), Female
## 248                                                                                                                                                                                                                                                             Youth: In School (15-18), Female
## 249                                                                                                                                                                                                                                                             Youth: In School (15-24), Female
## 250                                                                                                                                                                                                                                                             Youth: In School (19-24), Female
## 251                                                                                                                                                                                                                                                Youth: In School and Employed (15-18), Female
## 252                                                                                                                                                                                                                                                Youth: In School and Employed (15-24), Female
## 253                                                                                                                                                                                                                                                Youth: In School and Employed (19-24), Female
## 254                                                                                                                                                                                                                                                              Youth: Employed (15-18), Female
## 255                                                                                                                                                                                                                                                              Youth: Employed (15-24), Female
## 256                                                                                                                                                                                                                                                              Youth: Employed (19-24), Female
## 257                                                                                                                                                                                                                 Public spending on basic education (% of public spending on total education)
## 258                                                                                                                                                                                                          Public recurrent spending on total education (% of total public recurrent spending)
## 259                                                                                                                                                                                             Public recurrent spending on basic education (% of public recurrent spending on total education)
## 260                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2004-2014)
## 261                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2004-2014)
## 262                                                                                                                                                                                                                                                                  Industrial production index
## 263                                                                                                                                                                                                                                                               External debt reporting status
## 264                                                                                                                                                                                                                                                              Import and export price indexes
## 265                                                                                                                                                                                                            International aid disbursed to total education, CIDA to Afghanistan (USD million)
## 266                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Albania (USD million)
## 267                                                                                                                                                                                                           International aid disbursed to total education, CIDA to Burkina Faso (USD million)
## 268                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  
## 269                                                                                                                                                                                                         International aid disbursed to total education, AfDB to Côte d'Ivoire (USD million) 
## 270                                                                                                                                                                                                              International aid disbursed to total education, AfDB to Cameroun (USD million) 
## 271                                                                                                                                                                                                   International aid disbursed to total education, World Bank (IDA) to Djibouti (USD million)
## 272                                                                                                                                                                                                                International aid disbursed to total education, ADB to Ethiopia (USD million)
## 273                                                                                                                                                                                                 International aid disbursed to total education, European Commission to Georgia (USD million)
## 274                                                                                                                                                                                                              International aid disbursed to total education, DFID to Djibouti (USD million) 
## 275                                                                                                                                                                                                                 International aid disbursed to total education, AFD to Guinea (USD million) 
## 276                                                                                                                                                                                        International aid disbursed to total education, ADPP (European Union) to Guinea Bissau (USD million) 
## 277                                                                                                                                                                                            International aid disbursed to total education, European Commission to Kyrgyzstan (USD million)  
## 278                                                                                                                                                                                                             International aid disbursed to total education, AfDB to Cambodia (USD million)  
## 279                                                                                                                                                                                                                  International aid disbursed to total education, ADB to Laos (USD million)  
## 280                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Liberia (USD million)  
## 281                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Moldova (USD million)  
## 282                                                                                                                                                                              International aid to total education executed by World Bank (including GPE funds) in Madagascar (USD million)  
## 283                                                                                                                                                                                                          International aid disbursed to total education, Canada to Mozambique (USD million) 
## 284                                                                                                                                                                                                             International aid disbursed to total education, AFD to Mauritania (USD million) 
## 285                                                                                                                                                                                                                International aid disbursed to total education, AfDB to Malawi (USD million) 
## 286                                                                                                                                                                                                                  International aid disbursed to total education, AFD to Niger (USD million) 
## 287                                                                                                                                                                                                               International aid disbursed to total education, DFID to Rwanda (USD million)  
## 288                                                                                                                                                                                                              International aid disbursed to total education, CIDA to Senegal (USD million)  
## 289                                                                                                                                                                                                         International aid disbursed to total education, DFID to Sierra Leone (USD million)  
## 290                                                                                                                                                                                                            International aid disbursed to total education, Belgium to Vietnam (USD million) 
## 291                                                                                                                                                                                                              International aid disbursed to total education, Denmark to Zambia (USD million)
## 292                                                                                                                                                                                                            International aid disbursed to total education, Sida to Afghanistan (USD million)
## 293                                                                                                                                                                                                  International aid disbursed to total education, Japan Government to Ethiopia (USD million) 
## 294                                                                                                                                                                                                              International aid disbursed to total education, WFP to Cambodia (USD million)  
## 295                                                                                                                                                                                                           International aid disbursed to total education, World Bank to Laos (USD million)  
## 296                                                                                                                                                                                       International aid to total education executed by the European Commission in Madagascar (USD million)  
## 297                                                                                                                                                                                                           International aid disbursed to total education, Japan to Mozambique (USD million) 
## 298                                                                                                                                                                                                                 International aid disbursed to total education, WFP to Malawi (USD million) 
## 299                                                                                                                                                                                                              International aid disbursed to total  education, UNICEF to Niger (USD million) 
## 300                                                                                                                                                                                                     International aid disbursed to total education, World Bank to Tajikistan (USD million)  
## 301                                                                                                                                                                                                          International aid disbursed to total education, UNESCO to Afghanistan (USD million)
## 302                                                                                                                                                                                                              International aid disbursed to total education, JICA to Ethiopia (USD million) 
## 303                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Cambodia (USD million) 
## 304                                                                                                                                                                                                   International aid disbursed to total education, International NGOs to Laos (USD million)  
## 305                                                                                                                                                                                                     International aid disbursed to total education, Netherlands to Mozambique (USD million) 
## 306                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Malawi (USD million) 
## 307                                                                                                                                                                                                           International aid disbursed to total education, USAID to Afghanistan (USD million)
## 308                                                                                                                                                                                                               International aid disbursed to total education, KfW to Ethiopia (USD million) 
## 309                                                                                                                                                                                                        International aid disbursed to total education, Portugal to Mozambique (USD million) 
## 310                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Afghanistan (USD million)
## 311                                                                                                                                                                                                       International aid disbursed to total education, Netherlands to Ethiopia (USD million) 
## 312                                                                                                                                                                                                           International aid disbursed to total education, Spain to Mozambique (USD million) 
## 313                                                                                                                                                                                                              International aid disbursed to total education, Sida to Ethiopia (USD million) 
## 314                                                                                                                                                                                                          International aid disbursed to total education, UNICEF to Mozambique (USD million) 
## 315                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Ethiopia (USD million) 
## 316                                                                                                                                                                                                           International aid disbursed to total education, USAID to Mozambique (USD million) 
## 317                                                                                                                                                                                                             International aid disbursed to total education, USAID to Ethiopia (USD million) 
## 318                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Mozambique (USD million) 
## 319                                                                                                                                                                                                               International aid disbursed to total education, WFP to Ethiopia (USD million) 
## 320                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Ethiopia (USD million) 
## 321                                                                                                                                                                                                          International aid disbursed to total education, DANIDA to Afghanistan (USD million)
## 322                                                                                                                                                                                                                 International aid disbursed to total education, BEI to Albania (USD million)
## 323                                                                                                                                                                                                          International aid disbursed to total education, AFD to Burkina Faso (USD million)  
## 324                                                                                                                                                                                                       International aid disbursed to total education, BADEA to Côte d'Ivoire (USD million)  
## 325                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Cameroun (USD million) 
## 326                                                                                                                                                                                                               International aid disbursed to total education, FSD to Djibouti (USD million) 
## 327                                                                                                                                                                                                 International aid disbursed to total education, Belgium (VLIR USO) to Ethiopia (USD million)
## 328                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Georgia (USD million)
## 329                                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Djibouti (USD million)  
## 330                                                                                                                                                                                                                International aid disbursed to total education, AfDB to Guinea (USD million) 
## 331                                                                                                                                                                               International aid disbursed to total education, ADPP (Humana People to People) to Guinea Bissau (USD million) 
## 332                                                                                                                                                                                                            International aid disbursed to total education, GIZ to Kyrgyzstan (USD million)  
## 333                                                                                                                                                                                                         International aid disbursed to total education, Belgium to Cambodia (USD million)   
## 334                                                                                                                                                                                                               International aid disbursed to total education, AusAID to Laos (USD million)  
## 335                                                                                                                                                                                                             International aid disbursed to total education, USAID to Liberia (USD million)  
## 336                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Moldova (USD million)  
## 337                                                                                                                                                                                                           International aid to total education executed by ILO in Madagascar (USD million)  
## 338                                                                                                                                                                                                          International aid disbursed to total education, DANIDA to Mozambique (USD million) 
## 339                                                                                                                                                                                                            International aid disbursed to total education, IsDB to Mauritania (USD million) 
## 340                                                                                                                                                                                                                International aid disbursed to total education, CIDA to Malawi (USD million) 
## 341                                                                                                                                                                                                             International aid disbursed to total  education, Belgium to Niger (USD million) 
## 342                                                                                                                                                                                   International aid disbursed to total education, Global Partnership for Education to Rwanda (USD million)  
## 343                                                                                                                                                                                            International aid disbursed to total education, AFD and French Embassy to Senegal (USD million)  
## 344                                                                                                                                                                                          International aid disbursed to total education, European Commission to Sierra Leone (USD million)  
## 345                                                                                                                                                                                                        International aid disbursed to total education, Aga Khan to Tajikistan (USD million) 
## 346                                                                                                                                                                                                                International aid disbursed to total education, CIDA to Vietnam (USD million)
## 347                                                                                                                                                                                                             International aid disbursed to total education, Ireland to Zambia (USD million) 
## 348                                                                                                                                                                                                          International aid disbursed to total education, France to Afghanistan (USD million)
## 349                                                                                                                                                                                                                International aid disbursed to total education, CEIB to Albania (USD million)
## 350                                                                                                                                                                                                  International aid disbursed to total education, Switzerland to Burkina Faso (USD million)  
## 351                                                                                                                                                                                                 International aid disbursed to total education, World Bank to Côte d'Ivoire (USD million)   
## 352                                                                                                                                                                                            International aid disbursed to total education, AFD and French Embassy to Cameroun (USD million) 
## 353                                                                                                                                                                                                               International aid disbursed to total education, AFD to Djibouti (USD million) 
## 354                                                                                                                                                                                                              International aid disbursed to total education, DFID to Ethiopia (USD million) 
## 355                                                                                                                                                                                                               International aid disbursed to total education, USAID to Georgia (USD million)
## 356                                                                                                                                                                                                              International aid disbursed to total education, JICA to Djibouti (USD million) 
## 357                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Guinea (USD million) 
## 358                                                                                                                                                                                          International aid disbursed to total education, ADPP (other donors) to Guinea Bissau (USD million) 
## 359                                                                                                                                                                                                         International aid disbursed to total education, UNICEF to Kyrgyzstan (USD million)  
## 360                                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Cambodia (USD million)  
## 361                                                                                                                                                                                                  International aid disbursed to total education, European Commission to Laos (USD million)  
## 362                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Liberia (USD million)  
## 363                                                                                                                                                                                        International aid to total education executed by AFD and French Embassy in Madagascar (USD million)  
## 364                                                                                                                                                                                                            International aid disbursed to total education, DFID to Mozambique (USD million) 
## 365                                                                                                                                                                                              International aid disbursed to total education, Spanish Cooperation to Mauritania (USD million)
## 366                                                                                                                                                                                                                 International aid disbursed to total education, DFID to Malawi (USD million)
## 367                                                                                                                                                                                                      International aid disbursed to total  education, French Embassy to Niger (USD million) 
## 368                                                                                                                                                                                                             International aid disbursed to total education, UNICEF to Rwanda (USD million)  
## 369                                                                                                                                                                                  International aid disbursed to total education, Global Partnership for Education to Senegal (USD million)  
## 370                                                                                                                                                                                                          International aid disbursed to total education, GIZ to Sierra Leone (USD million)  
## 371                                                                                                                                                                                       International aid disbursed to total education, Open Society Foundations to Tajikistan (USD million)  
## 372                                                                                                                                                                                                               International aid disbursed to total education, DFID to Vietnam (USD million) 
## 373                                                                                                                                                                                                                 International aid disbursed to total education, ILO to Zambia (USD million) 
## 374                                                                                                                                                                                                         International aid disbursed to total education, Germany to Afghanistan (USD million)
## 375                                                                                                                                                                                                      International aid disbursed to total education, Denmark to Burkina Faso (USD million)  
## 376                                                                                                                                                                                                        International aid disbursed to total education, IsDB to Côte d'Ivoire (USD million)  
## 377                                                                                                                                                                                                              International aid disbursed to total education, JICA to Cameroun (USD million) 
## 378                                                                                                                                                                                                              International aid disbursed to total education, AfDB to Djibouti (USD million) 
## 379                                                                                                                                                                                                 International aid disbursed to total education, DVV international to Ethiopia (USD million) 
## 380                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Georgia (USD million)
## 381                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Djibouti (USD million) 
## 382                                                                                                                                                                                    International aid disbursed to total education, Global Partnership for Education to Guinea (USD million) 
## 383                                                                                                                                                                                           International aid disbursed to total education, European Commission to Guinea Bissau (USD million)
## 384                                                                                                                                                                                                      International aid disbursed to total education, World Bank to Kyrgyzstan (USD million) 
## 385                                                                                                                                                                                              International aid disbursed to total education, European Commission to Cambodia (USD million)  
## 386                                                                                                                                                                                                International aid disbursed to total education, Germany (GIZ and KfW) to Laos (USD million)  
## 387                                                                                                                                                                                                          International aid to total education executed by JICA in Madagascar (USD million)  
## 388                                                                                                                                                                                                         International aid disbursed to total education, Finland to Mozambique (USD million) 
## 389                                                                                                                                                                                                          International aid disbursed to total education, UNESCO to Mauritania (USD million) 
## 390                                                                                                                                                                                                                 International aid disbursed to total education, GIZ to Malawi (USD million) 
## 391                                                                                                                                                                                                               International aid disbursed to total  education, Japan to Niger (USD million) 
## 392                                                                                                                                                                                                              International aid disbursed to total education, USAID to Rwanda (USD million)  
## 393                                                                                                                                                                                                             International aid disbursed to total education, Italy to Senegal (USD million)  
## 394                                                                                                                                                                                                         International aid disbursed to total education, JICA to Sierra Leone (USD million)  
## 395                                                                                                                                                                                            International aid disbursed to total education, European Commission to Tajikistan (USD million)  
## 396                                                                                                                                                                                                              International aid disbursed to total education, JICA to Vietnam (USD million)  
## 397                                                                                                                                                                                                               International aid disbursed to total education, Japan to Zambia (USD million) 
## 398                                                                                                                                                                                                           International aid disbursed to total education, India to Afghanistan (USD million)
## 399                                                                                                                                                                                                         International aid disbursed to total education, JICA to Burkina Faso (USD million)  
## 400                                                                                                                                                                                                         International aid disbursed to total education, FSD to Côte d'Ivoire (USD million)  
## 401                                                                                                                                                                                                             International aid disbursed to total education, UNESCO to Cameroun (USD million)
## 402                                                                                                                                                                                                               International aid disbursed to total education, IsDB to Djibouti (USD million)
## 403                                                                                                                                                                                               International aid disbursed to total education, European Commission to Ethiopia (USD million) 
## 404                                                                                                                                                                                                             International aid disbursed to total education, USAID to Djibouti (USD million) 
## 405                                                                                                                                                                                                                  International aid disbursed to total education, GIZ to Guinea (USD million)
## 406                                                                                                                                                                                       International aid disbursed to total education, AFD and French Embassy to Guinea Bissau (USD million) 
## 407                                                                                                                                                                                                            International aid disbursed to total education, Japan to Cambodia (USD million)  
## 408                                                                                                                                                                                     International aid disbursed to total education, Global Partnership for Education to Laos (USD million)  
## 409                                                                                                                                                                                                        International aid to total education executed by Norway in Madagascar (USD million)  
## 410                                                                                                                                                                                                        International aid disbursed to total education, Flanders to Mozambique (USD million) 
## 411                                                                                                                                                                                                          International aid disbursed to total education, UNICEF to Mauritania (USD million) 
## 412                                                                                                                                                                                    International aid disbursed to total education, Global Partnership for Education to Malawi (USD million) 
## 413                                                                                                                                                                                                                 International aid disbursed to total  education, KfW to Niger (USD million) 
## 414                                                                                                                                                                                                         International aid disbursed to total education, World Bank to Rwanda (USD million)  
## 415                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Senegal (USD million)  
## 416                                                                                                                                                                                                         International aid disbursed to total education, Sida to Sierra Leone (USD million)  
## 417                                                                                                                                                                                                            International aid disbursed to total education, GIZ to Tajikistan (USD million)  
## 418                                                                                                                                                                                                             International aid disbursed to total education, UNESCO to Vietnam (USD million) 
## 419                                                                                                                                                                                                         International aid disbursed to total education, Netherlands to Zambia (USD million) 
## 420                                                                                                                                                                                                    International aid disbursed to total education, Japan's MoFA to Afghanistan (USD million)
## 421                                                                                                                                                                                                 International aid disbursed to total education, Netherlands to Burkina Faso (USD million)   
## 422                                                                                                                                                                                                         International aid disbursed to total education, KfW to Côte d'Ivoire (USD million)  
## 423                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Cameroun (USD million) 
## 424                                                                                                                                                                                                              International aid disbursed to total education, IMOA to Djibouti (USD million) 
## 425                                                                                                                                                                                                           International aid disbursed to total education, Finland to Ethiopia (USD million) 
## 426                                                                                                                                                                                                               International aid disbursed to total education, WFP to Djibouti (USD million) 
## 427                                                                                                                                                                                                                 International aid disbursed to total education, KfW to Guinea (USD million) 
## 428                                                                                                                                                                                        International aid disbursed to total education, Portuguese Cooperation to Guinea Bissau (USD million)
## 429                                                                                                                                                                                                           International aid disbursed to total education, Sweden to Cambodia (USD million)  
## 430                                                                                                                                                                                                                 International aid disbursed to total education, JICA to Laos (USD million)  
## 431                                                                                                                                                                                                           International aid to total education executed by WFP in Madagascar (USD million)  
## 432                                                                                                                                                                                           International aid disbursed to total education, Germany (GIZ and KfW) to Mozambique (USD million) 
## 433                                                                                                                                                                                                                International aid disbursed to total education, JICA to Malawi (USD million) 
## 434                                                                                                                                                                                                                 International aid disbursed to total  education, WFP to Niger (USD million) 
## 435                                                                                                                                                                                                             International aid disbursed to total education, USAID to Senegal (USD million)  
## 436                                                                                                                                                                                                       International aid disbursed to total education, UNICEF to Sierra Leone (USD million)  
## 437                                                                                                                                                                  International aid disbursed to total education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) 
## 438                                                                                                                                                                                                            International aid disbursed to total education, UNICEF to Vietnam (USD million)  
## 439                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Zambia (USD million) 
## 440                                                                                                                                                                                                            International aid disbursed to total education, JICA to Afghanistan (USD million)
## 441                                                                                                                                                                                                       International aid disbursed to total education, UNICEF to Burkina Faso (USD million)  
## 442                                                                                                                                                                                                      International aid disbursed to total education, UNICEF to Côte d'Ivoire (USD million)  
## 443                                                                                                                                                                                                           International aid disbursed to total education, GIZ/BMZ to Ethiopia (USD million) 
## 444                                                                                                                                                                                                        International aid disbursed to total education, World Bank to Djibouti (USD million) 
## 445                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Guinea (USD million) 
## 446                                                                                                                                                                               International aid disbursed to total education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) 
## 447                                                                                                                                                                                                           International aid disbursed to total education, UNESCO to Cambodia (USD million)  
## 448                                                                                                                                                                                                               International aid disbursed to total education, UNESCO to Laos (USD million)  
## 449                                                                                                                                                                                                        International aid to total education executed by UNESCO in Madagascar (USD million)  
## 450                                                                                                                                                                                                             International aid disbursed to total education, GPE to Mozambique (USD million) 
## 451                                                                                                                                                                                                                International aid disbursed to total education,  KfW to Malawi (USD million) 
## 452                                                                                                                                                                                                                International aid disbursed to total  education, DFID to Niger (USD million) 
## 453                                                                                                                                                   International aid disbursed to total education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) 
## 454                                                                                                                                                                                                         International aid disbursed to total education, UNICEF to Tajikistan (USD million)  
## 455                                                                                                                                                                                                              International aid disbursed to total education, USAID to Vietnam (USD million) 
## 456                                                                                                                                                                                                               International aid disbursed to total education, USAID to Zambia (USD million) 
## 457                                                                                                                                                                                                     International aid disbursed to total education, Netherlands to Afghanistan (USD million)
## 458                                                                                                                                                                                           International aid disbursed to total education, European Commission to Burkina Faso (USD million) 
## 459                                                                                                                                                                                                       International aid disbursed to total education, USAID to Côte d'Ivoire (USD million)  
## 460                                                                                                                                                                                                International aid disbursed to total education, GPE Catalytic Fund to Ethiopia (USD million) 
## 461                                                                                                                                                                                           International aid disbursed to total education, Japan (via UNICEF) to Guinea Bissau (USD million) 
## 462                                                                                                                                                                                                           International aid disbursed to total education, UNICEF to Cambodia (USD million)  
## 463                                                                                                                                                                                                               International aid disbursed to total education, UNICEF to Laos (USD million)  
## 464                                                                                                                                                                                  International aid to total education executed by UNICEF (excluding GPE funds) in Madagascar (USD million)  
## 465                                                                                                                                                                                                         International aid disbursed to total education, Ireland to Mozambique (USD million) 
## 466                                                                                                                                                                                                              International aid disbursed to total education, UNICEF to Malawi (USD million) 
## 467                                                                                                                                                                                                         International aid disbursed to total  education, Switzerland to Niger (USD million) 
## 468                                                                                                                                                                                                      International aid disbursed to total education from WFP to Sierra Leone (USD million)  
## 469                                                                                                                                                                                                          International aid disbursed to total education, USAID to Tajikistan (USD million)  
## 470                                                                                                                                                                                                          International aid disbursed to total education, World Bank to Vietnam (USD million)
## 471                                                                                                                                                                                                     International aid disbursed to total education, New Zealand to Afghanistan (USD million)
## 472                                                                                                                                                                                                International aid disbursed to total education, Italian Cooperation to Ethiopia (USD million)
## 473                                                                                                                                                                                                            International aid disbursed to total education, USAID to Cambodia (USD million)  
## 474                                                                                                                                                                                                                  International aid disbursed to total education, WFP to Laos (USD million)  
## 475                                                                                                                                                   International aid disbursed to total education from the Global Partnership for Education (via UNICEF and WB) to Madagascar (USD million)  
## 476                                                                                                                                                                                                           International aid disbursed to total education, Italy to Mozambique (USD million) 
## 477                                                                                                                                                                                                               International aid disbursed to total education, USAID to Malawi (USD million) 
## 478                                                                                                                                                                                                          International aid disbursed to total  education, Luxembourg to Niger (USD million) 
## 479                                                                                                                                                                                                            International aid disbursed to total education, WFP to Tajikistan (USD million)  
## 480                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2004-2009)
## 481                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2004-2009)
## 482                                                                                                                                              International aid for total education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)
## 483                                                                                                                                                                                                                                                                             UNESCO reporting
## 484                                                                                                                                                                                                                                                                                Health survey
## 485                                                                                                                                                                                                                                                               National immunization coverage
## 486                                                                                                                                                                                                                                                                               Poverty survey
## 487                                                                                                                                                                                                            International aid disbursed to basic education, CIDA to Afghanistan (USD million)
## 488                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Albania (USD million)
## 489                                                                                                                                                                                                           International aid disbursed to basic education, CIDA to Burkina Faso (USD million)
## 490                                                                                                                                                                 International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  
## 491                                                                                                                                                                                                         International aid disbursed to basic education, AfDB to Côte d'Ivoire (USD million) 
## 492                                                                                                                                                                                                              International aid disbursed to basic education, AfDB to Cameroun (USD million) 
## 493                                                                                                                                                                                                   International aid disbursed to basic education, World Bank (IDA) to Djibouti (USD million)
## 494                                                                                                                                                                                                                International aid disbursed to basic education, ADB to Ethiopia (USD million)
## 495                                                                                                                                                                                                 International aid disbursed to basic education, European Commission to Georgia (USD million)
## 496                                                                                                                                                                                                              International aid disbursed to basic education, DFID to Djibouti (USD million) 
## 497                                                                                                                                                                                                                 International aid disbursed to basic education, AFD to Guinea (USD million) 
## 498                                                                                                                                                                                        International aid disbursed to basic education, ADPP (European Union) to Guinea Bissau (USD million) 
## 499                                                                                                                                                                                            International aid disbursed to basic education, European Commission to Kyrgyzstan (USD million)  
## 500                                                                                                                                                                                                             International aid disbursed to basic education, AfDB to Cambodia (USD million)  
## 501                                                                                                                                                                                                                  International aid disbursed to basic education, ADB to Laos (USD million)  
## 502                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Liberia (USD million)  
## 503                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Moldova (USD million)  
## 504                                                                                                                                                                                        International aid to basic education executed by World Bank (GPE funds) in Madagascar (USD million)  
## 505                                                                                                                                                                                                             International aid disbursed to total education, WFP to Mauritania (USD million) 
## 506                                                                                                                                                                                                               International aid disbursed to basic education,  AfDB to Malawi (USD million) 
## 507                                                                                                                                                                                                                  International aid disbursed to basic education, AFD to Niger (USD million) 
## 508                                                                                                                                                                                                               International aid disbursed to basic education, DFID to Rwanda (USD million)  
## 509                                                                                                                                                                                                              International aid disbursed to basic education, CIDA to Senegal (USD million)  
## 510                                                                                                                                                                                                         International aid disbursed to basic education, DFID to Sierra Leone (USD million)  
## 511                                                                                                                                                                                                        International aid disbursed to basic education, Aga Khan to Tajikistan (USD million) 
## 512                                                                                                                                                                                 International aid disbursed to total education, AusAID and ChildFund Australia to Tajikistan (USD million)  
## 513                                                                                                                                                                                                                International aid disbursed to basic education, CIDA to Vietnam (USD million)
## 514                                                                                                                                                                                                              International aid disbursed to basic education, Denmark to Zambia (USD million)
## 515                                                                                                                                                                                                            International aid disbursed to basic education, Sida to Afghanistan (USD million)
## 516                                                                                                                                                                                                  International aid disbursed to basic education, Japan Government to Ethiopia (USD million) 
## 517                                                                                                                                                                                                              International aid disbursed to basic education, WFP to Cambodia (USD million)  
## 518                                                                                                                                                                                                           International aid disbursed to basic education, World Bank to Laos (USD million)  
## 519                                                                                                                                                                                       International aid to basic education executed by the European Commission in Madagascar (USD million)  
## 520                                                                                                                                                                                                                 International aid disbursed to basic education, WFP to Malawi (USD million) 
## 521                                                                                                                                                                                                               International aid disbursed to basic education, UNICEF to Niger (USD million) 
## 522                                                                                                                                                                                                International aid disbursed to total education, private donors to Timor-Leste (USD million)  
## 523                                                                                                                                                                                                          International aid disbursed to basic education, UNESCO to Afghanistan (USD million)
## 524                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Ethiopia (USD million) 
## 525                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Cambodia (USD million) 
## 526                                                                                                                                                                                                   International aid disbursed to basic education, International NGOs to Laos (USD million)  
## 527                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Malawi (USD million) 
## 528                                                                                                                                                                                                        International aid disbursed to total education, UNICEF to Timor-Leste (USD million)  
## 529                                                                                                                                                                                                           International aid disbursed to basic education, USAID to Afghanistan (USD million)
## 530                                                                                                                                                                                                               International aid disbursed to basic education, KfW to Ethiopia (USD million) 
## 531                                                                                                                                                                                                         International aid disbursed to total education, USAID to Timor-Leste (USD million)  
## 532                                                                                                                                                                                                      International aid disbursed to basic education, World Bank to Afghanistan (USD million)
## 533                                                                                                                                                                                                       International aid disbursed to basic education, Netherlands to Ethiopia (USD million) 
## 534                                                                                                                                                                                                              International aid disbursed to basic education, Sida to Ethiopia (USD million) 
## 535                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Ethiopia (USD million) 
## 536                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Ethiopia (USD million) 
## 537                                                                                                                                                                                                               International aid disbursed to basic education, WFP to Ethiopia (USD million) 
## 538                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Ethiopia (USD million) 
## 539                                                                                                                                                                                                          International aid disbursed to basic education, DANIDA to Afghanistan (USD million)
## 540                                                                                                                                                                                                                 International aid disbursed to basic education, BEI to Albania (USD million)
## 541                                                                                                                                                                                                          International aid disbursed to basic education, AFD to Burkina Faso (USD million)  
## 542                                                                                                                                                                                                       International aid disbursed to basic education, BADEA to Côte d'Ivoire (USD million)  
## 543                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Cameroun (USD million) 
## 544                                                                                                                                                                                                               International aid disbursed to basic education, FSD to Djibouti (USD million) 
## 545                                                                                                                                                                                                 International aid disbursed to basic education, Belgium (VLIR USO) to Ethiopia (USD million)
## 546                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Georgia (USD million)
## 547                                                                                                                                                                                 International aid disbursed to basic education, Global Partnership for Education to Djibouti (USD million)  
## 548                                                                                                                                                                                                                International aid disbursed to basic education, AfDB to Guinea (USD million) 
## 549                                                                                                                                                                               International aid disbursed to basic education, ADPP (Humana People to People) to Guinea Bissau (USD million) 
## 550                                                                                                                                                                                                            International aid disbursed to basic education, GIZ to Kyrgyzstan (USD million)  
## 551                                                                                                                                                                                                         International aid disbursed to basic education, Belgium to Cambodia (USD million)   
## 552                                                                                                                                                                                                               International aid disbursed to basic education, AusAID to Laos (USD million)  
## 553                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Liberia (USD million)  
## 554                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Moldova (USD million)  
## 555                                                                                                                                                                                                           International aid to basic education executed by ILO in Madagascar (USD million)  
## 556                                                                                                                                                                                                             International aid disbursed to basic education, AFD to Mauritania (USD million) 
## 557                                                                                                                                                                                                                International aid disbursed to basic education, CIDA to Malawi (USD million) 
## 558                                                                                                                                                                                                              International aid disbursed to basic education, Belgium to Niger (USD million) 
## 559                                                                                                                                                                                   International aid disbursed to basic education, Global Partnership for Education to Rwanda (USD million)  
## 560                                                                                                                                                                                            International aid disbursed to basic education, AFD and French Embassy to Senegal (USD million)  
## 561                                                                                                                                                                                          International aid disbursed to basic education, European Commission to Sierra Leone (USD million)  
## 562                                                                                                                                                                                       International aid disbursed to basic education, Open Society Foundations to Tajikistan (USD million)  
## 563                                                                                                                                                                                           International aid disbursed to total education, AusAID (World Bank) to Timor-Leste (USD million)  
## 564                                                                                                                                                                                                               International aid disbursed to basic education, DFID to Vietnam (USD million) 
## 565                                                                                                                                                                                                             International aid disbursed to basic education, Ireland to Zambia (USD million) 
## 566                                                                                                                                                                                                          International aid disbursed to basic education, France to Afghanistan (USD million)
## 567                                                                                                                                                                                                                International aid disbursed to basic education, CEIB to Albania (USD million)
## 568                                                                                                                                                                                                  International aid disbursed to basic education, Switzerland to Burkina Faso (USD million)  
## 569                                                                                                                                                                                                 International aid disbursed to basic education, World Bank to Côte d'Ivoire (USD million)   
## 570                                                                                                                                                                                            International aid disbursed to basic education, AFD and French Embassy to Cameroun (USD million) 
## 571                                                                                                                                                                                                               International aid disbursed to basic education, AFD to Djibouti (USD million) 
## 572                                                                                                                                                                                                              International aid disbursed to basic education, DFID to Ethiopia (USD million) 
## 573                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Georgia (USD million)
## 574                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Djibouti (USD million) 
## 575                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Guinea (USD million) 
## 576                                                                                                                                                                                          International aid disbursed to basic education, ADPP (other donors) to Guinea Bissau (USD million) 
## 577                                                                                                                                                                                                         International aid disbursed to basic education, UNICEF to Kyrgyzstan (USD million)  
## 578                                                                                                                                                                                 International aid disbursed to basic education, Global Partnership for Education to Cambodia (USD million)  
## 579                                                                                                                                                                                                  International aid disbursed to basic education, European Commission to Laos (USD million)  
## 580                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Liberia (USD million)  
## 581                                                                                                                                                                                        International aid to basic education executed by AFD and French Embassy in Madagascar (USD million)  
## 582                                                                                                                                                                                                            International aid disbursed to basic education, IsDB to Mauritania (USD million) 
## 583                                                                                                                                                                                                                 International aid disbursed to basic education, DFID to Malawi (USD million)
## 584                                                                                                                                                                                                       International aid disbursed to basic education, French Embassy to Niger (USD million) 
## 585                                                                                                                                                                                                             International aid disbursed to basic education, UNICEF to Rwanda (USD million)  
## 586                                                                                                                                                                                  International aid disbursed to basic education, Global Partnership for Education to Senegal (USD million)  
## 587                                                                                                                                                                                                          International aid disbursed to basic education, GIZ to Sierra Leone (USD million)  
## 588                                                                                                                                                                                            International aid disbursed to basic education, European Commission to Tajikistan (USD million)  
## 589                                                                                                                                                                                                      International aid disbursed to total education, Australia to Timor-Leste (USD million) 
## 590                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Vietnam (USD million)  
## 591                                                                                                                                                                                                                 International aid disbursed to basic education, ILO to Zambia (USD million) 
## 592                                                                                                                                                                                                         International aid disbursed to basic education, Germany to Afghanistan (USD million)
## 593                                                                                                                                                                                                      International aid disbursed to basic education, Denmark to Burkina Faso (USD million)  
## 594                                                                                                                                                                                                        International aid disbursed to basic education, IsDB to Côte d'Ivoire (USD million)  
## 595                                                                                                                                                                                                              International aid disbursed to basic education, JICA to Cameroun (USD million) 
## 596                                                                                                                                                                                                              International aid disbursed to basic education, AfDB to Djibouti (USD million) 
## 597                                                                                                                                                                                                 International aid disbursed to basic education, DVV international to Ethiopia (USD million) 
## 598                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Georgia (USD million)
## 599                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Djibouti (USD million) 
## 600                                                                                                                                                                                    International aid disbursed to basic education, Global Partnership for Education to Guinea (USD million) 
## 601                                                                                                                                                                                           International aid disbursed to basic education, European Commission to Guinea Bissau (USD million)
## 602                                                                                                                                                                                                      International aid disbursed to basic education, World Bank to Kyrgyzstan (USD million) 
## 603                                                                                                                                                                                              International aid disbursed to basic education, European Commission to Cambodia (USD million)  
## 604                                                                                                                                                                                                International aid disbursed to basic education, Germany (GIZ and KfW) to Laos (USD million)  
## 605                                                                                                                                                                                                          International aid to basic education executed by JICA in Madagascar (USD million)  
## 606                                                                                                                                                                                              International aid disbursed to basic education, Spanish Cooperation to Mauritania (USD million)
## 607                                                                                                                                                                                                                 International aid disbursed to basic education, GIZ to Malawi (USD million) 
## 608                                                                                                                                                                                                                International aid disbursed to basic education, Japan to Niger (USD million) 
## 609                                                                                                                                                                                                              International aid disbursed to basic education, USAID to Rwanda (USD million)  
## 610                                                                                                                                                                                                             International aid disbursed to basic education, Italy to Senegal (USD million)  
## 611                                                                                                                                                                                                         International aid disbursed to basic education, JICA to Sierra Leone (USD million)  
## 612                                                                                                                                                                                                            International aid disbursed to basic education, GIZ to Tajikistan (USD million)  
## 613                                                                                                                                                                                              International aid disbursed to total education, World Bank (IDA) to Timor-Leste (USD million)  
## 614                                                                                                                                                                                                             International aid disbursed to basic education, UNESCO to Vietnam (USD million) 
## 615                                                                                                                                                                                                               International aid disbursed to basic education, Japan to Zambia (USD million) 
## 616                                                                                                                                                                                                           International aid disbursed to basic education, India to Afghanistan (USD million)
## 617                                                                                                                                                                                                         International aid disbursed to basic education, JICA to Burkina Faso (USD million)  
## 618                                                                                                                                                                                                         International aid disbursed to basic education, FSD to Côte d'Ivoire (USD million)  
## 619                                                                                                                                                                                                             International aid disbursed to basic education, UNESCO to Cameroun (USD million)
## 620                                                                                                                                                                                                               International aid disbursed to basic education, IsDB to Djibouti (USD million)
## 621                                                                                                                                                                                               International aid disbursed to basic education, European Commission to Ethiopia (USD million) 
## 622                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Djibouti (USD million) 
## 623                                                                                                                                                                                                                  International aid disbursed to basic education, GIZ to Guinea (USD million)
## 624                                                                                                                                                                                       International aid disbursed to basic education, AFD and French Embassy to Guinea Bissau (USD million) 
## 625                                                                                                                                                                                                            International aid disbursed to basic education, Japan to Cambodia (USD million)  
## 626                                                                                                                                                                                     International aid disbursed to basic education, Global Partnership for Education to Laos (USD million)  
## 627                                                                                                                                                                                                        International aid to basic education executed by Norway in Madagascar (USD million)  
## 628                                                                                                                                                                                                          International aid disbursed to basic education, UNESCO to Mauritania (USD million) 
## 629                                                                                                                                                                                    International aid disbursed to basic education, Global Partnership for Education to Malawi (USD million) 
## 630                                                                                                                                                                                                                  International aid disbursed to basic education, KfW to Niger (USD million) 
## 631                                                                                                                                                                                                         International aid disbursed to basic education, World Bank to Rwanda (USD million)  
## 632                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Senegal (USD million)  
## 633                                                                                                                                                                                                         International aid disbursed to basic education, Sida to Sierra Leone (USD million)  
## 634                                                                                                                                                                  International aid disbursed to basic education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) 
## 635                                                                                                                                                                                                         International aid disbursed to total education, Japan to Timor-Leste (USD million)  
## 636                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Vietnam (USD million)  
## 637                                                                                                                                                                                                         International aid disbursed to basic education, Netherlands to Zambia (USD million) 
## 638                                                                                                                                                                                                    International aid disbursed to basic education, Japan's MoFA to Afghanistan (USD million)
## 639                                                                                                                                                                                                 International aid disbursed to basic education, Netherlands to Burkina Faso (USD million)   
## 640                                                                                                                                                                                                         International aid disbursed to basic education, KfW to Côte d'Ivoire (USD million)  
## 641                                                                                                                                                                                                            International aid disbursed to basic education, UNICEF to Cameroun (USD million) 
## 642                                                                                                                                                                                                              International aid disbursed to basic education, IMOA to Djibouti (USD million) 
## 643                                                                                                                                                                                                           International aid disbursed to basic education, Finland to Ethiopia (USD million) 
## 644                                                                                                                                                                                                               International aid disbursed to basic education, WFP to Djibouti (USD million) 
## 645                                                                                                                                                                                                                 International aid disbursed to basic education, KfW to Guinea (USD million) 
## 646                                                                                                                                                                                        International aid disbursed to basic education, Portuguese Cooperation to Guinea Bissau (USD million)
## 647                                                                                                                                                                                                           International aid disbursed to basic education, Sweden to Cambodia (USD million)  
## 648                                                                                                                                                                                                                 International aid disbursed to basic education, JICA to Laos (USD million)  
## 649                                                                                                                                                                                                           International aid to basic education executed by WFP in Madagascar (USD million)  
## 650                                                                                                                                                                                                          International aid disbursed to basic education, UNICEF to Mauritania (USD million) 
## 651                                                                                                                                                                                                               International aid disbursed to basic education,  JICA to Malawi (USD million) 
## 652                                                                                                                                                                                                                  International aid disbursed to basic education, WFP to Niger (USD million) 
## 653                                                                                                                                                                                                             International aid disbursed to basic education, USAID to Senegal (USD million)  
## 654                                                                                                                                                                                                       International aid disbursed to basic education, UNICEF to Sierra Leone (USD million)  
## 655                                                                                                                                                                                                         International aid disbursed to basic education, UNICEF to Tajikistan (USD million)  
## 656                                                                                                                                                                                                   International aid disbursed to total education, South Korea to Timor-Leste (USD million)  
## 657                                                                                                                                                                                                              International aid disbursed to basic education, USAID to Vietnam (USD million) 
## 658                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Zambia (USD million) 
## 659                                                                                                                                                                                                            International aid disbursed to basic education, JICA to Afghanistan (USD million)
## 660                                                                                                                                                                                                       International aid disbursed to basic education, UNICEF to Burkina Faso (USD million)  
## 661                                                                                                                                                                                                      International aid disbursed to basic education, UNICEF to Côte d'Ivoire (USD million)  
## 662                                                                                                                                                                                                           International aid disbursed to basic education, GIZ/BMZ to Ethiopia (USD million) 
## 663                                                                                                                                                                                                        International aid disbursed to basic education, World Bank to Djibouti (USD million) 
## 664                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Guinea (USD million) 
## 665                                                                                                                                                                               International aid disbursed to basic education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) 
## 666                                                                                                                                                                                                           International aid disbursed to basic education, UNESCO to Cambodia (USD million)  
## 667                                                                                                                                                                                                               International aid disbursed to basic education, UNESCO to Laos (USD million)  
## 668                                                                                                                                                                                                        International aid to basic education executed by UNESCO in Madagascar (USD million)  
## 669                                                                                                                                                                                                             International aid disbursed to basic education, WFP to Mauritania (USD million) 
## 670                                                                                                                                                                                                                 International aid disbursed to basic education, KfW to Malawi (USD million) 
## 671                                                                                                                                                                                                                 International aid disbursed to basic education, DFID to Niger (USD million) 
## 672                                                                                                                                                   International aid disbursed to basic education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) 
## 673                                                                                                                                                                                                          International aid disbursed to basic education, USAID to Tajikistan (USD million)  
## 674                                                                                                                                                                                                   International aid disbursed to total education, New Zealand to Timor-Leste (USD million)  
## 675                                                                                                                                                                                                          International aid disbursed to basic education, World Bank to Vietnam (USD million)
## 676                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Zambia (USD million) 
## 677                                                                                                                                                                                                     International aid disbursed to basic education, Netherlands to Afghanistan (USD million)
## 678                                                                                                                                                                                           International aid disbursed to basic education, European Commission to Burkina Faso (USD million) 
## 679                                                                                                                                                                                                       International aid disbursed to basic education, USAID to Côte d'Ivoire (USD million)  
## 680                                                                                                                                                                                                International aid disbursed to basic education, GPE Catalytic Fund to Ethiopia (USD million) 
## 681                                                                                                                                                                                           International aid disbursed to basic education, Japan (via UNICEF) to Guinea Bissau (USD million) 
## 682                                                                                                                                                                                                           International aid disbursed to basic education, UNICEF to Cambodia (USD million)  
## 683                                                                                                                                                                                                               International aid disbursed to basic education, UNICEF to Laos (USD million)  
## 684                                                                                                                                                                                                        International aid to basic education executed by UNICEF in Madagascar (USD million)  
## 685                                                                                                                                                                                                              International aid disbursed to basic education, UNICEF to Malawi (USD million) 
## 686                                                                                                                                                                                                          International aid disbursed to basic education, Switzerland to Niger (USD million) 
## 687                                                                                                                                                                                                          International aid disbursed to basic education, WFP to Sierra Leone (USD million)  
## 688                                                                                                                                                                                                            International aid disbursed to basic education, WFP to Tajikistan (USD million)  
## 689                                                                                                                                                                                    International aid disbursed to total education, ChildFund NZAID and UNICEF to Timor-Leste (USD million)  
## 690                                                                                                                                                                                                     International aid disbursed to basic education, New Zealand to Afghanistan (USD million)
## 691                                                                                                                                                                                                International aid disbursed to basic education, Italian Cooperation to Ethiopia (USD million)
## 692                                                                                                                                                                                                           International aid disbursed to basic education, AUSAID to Cambodia (USD million)  
## 693                                                                                                                                                                                                                  International aid disbursed to basic education, WFP to Laos (USD million)  
## 694                                                                                                                                                                               International aid disbursed to basic education, Global Partnership for Education to Madagascar (USD million)  
## 695                                                                                                                                                                                                               International aid disbursed to basic education, USAID to Malawi (USD million) 
## 696                                                                                                                                                                                                           International aid disbursed to basic education, Luxembourg to Niger (USD million) 
## 697                                                                                                                                                                                                     International aid disbursed to basic education, World Bank to Tajikistan (USD million)  
## 698                                                                                                                                                                                                      International aid disbursed to total education, Portugal to Timor-Leste (USD million)  
## 699                                                                                                                                                                                                                                                    Annualized Mean Income Growth (2009-2014)
## 700                                                                                                                                                                                                                                  Annualized Mean Income Growth Bottom 40 Percent (2009-2014)
## 701                                                                                                                                              International aid for basic education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)
## 702                                                                                                                                                                                                                                                          Special Data Dissemination Standard
## 703                                                                                                                                                                                                                                                                               Income poverty
## 704                                                                                                                                                                                                                                                                           Child malnutrition
## 705                                                                                                                                                                                                                                                                              Child mortality
## 706                                                                                                                                                                                                                                                                                 Immunization
## 707                                                                                                                                                                                                                                                                                     HIV/AIDS
## 708                                                                                                                                                                                                                                                                              Maternal health
## 709                                                                                                                                                                                                                                                                              Gender equality
## 710                                                                                                                                                                                                                                                                           Primary completion
## 711                                                                                                                                                                                                                                                                              Access to water
## 712                                                                                                                                                                                                                                                                        Per capita GDP growth
## 713                                                                                                                                                                                                                                                              Consumption per capita (2011 $)
## 714                                                                                                                                                                                                                                                                              GDP (current $)
## 715                                                                                                                                                                                                                                                                        GDP growth (annual %)
## 716                                                                                                                                                                                                                                                                        GDP (constant 2005 $)
## 717                                                                                                                                                                                                                                         GDP per capita, PPP (constant 2011 international $) 
## 718                                                                                                                                                                                                                                                                      GNI per capita (2011 $)
## 719                                                                                                                                                                                                                               Coordinating agency of Local Education Group (1=text in notes)
## 720                                                                                                                                                                                                                                      Energy intensity level of primary energy (MJ/$2005 PPP)
## 721                                                                                                                                                                                                                                     Donor members in Local Education Group (1=text in notes)
## 722                                                                                                                                                                                                                       Civil society organizations in Local Education Group (1=text in notes)
## 723                                                                                                                                                                                                                         Date of last Joint Education Sector Review (year=full date in notes)
## 724                                                                                                                                                                                                                         Date of next Joint Education Sector Review (year=full date in notes)
## 725                                                                                                                                                                                                            Starting year of current Education Sector Plan period (year=full period in notes)
## 726                                                                                                                                                                                                              Ending year of current Education Sector Plan period (year=full period in notes)
## 727                                                                                                                                                                                                                        Current allocation - Supervising or managing entity (1=text in notes)
## 728                                                                                                                                                                                                                                              Current allocation - Modality (1=text in notes)
## 729                                                                                                                                                                                                                        Current allocation - Total disbursements as of 12/2011 (USD millions)
## 730                                                                                                                                                                                                                                      Current allocation - Annual disbursements (USD million)
## 731                                                                                                                                                                                                                                                  Endorsement of Education Sector Plan (year)
## 732                                                                                                                                                                                                                                                        Previous allocation - Approval (year)
## 733                                                                                                                                                                                                                                         Previous allocation - Amount disbursed (USD million)
## 734                                                                                                                                                                                                                                                         Current allocation - Approval (year)
## 735                                                                                                                                                                                                                                   Current allocation - Total indicative amount (USD million)
## 736                                                                                                                                                                                                      Current allocation - Starting year of implementation period (year=full period in notes)
## 737                                                                                                                                                                                                        Current allocation - Ending year of Implementation period (year=full period in notes)
## 738                                                                                                                                                                                                                                Current allocation - Signature date (year=full date in notes)
## 739                                                                                                                                                                                                                                  Current allocation - Closing date (year=full date in notes)
## 740                                                                                                                                                                                                                                                                   Labor Income Poverty Index
## 741                                                                                                                                                                                                                 Administration of school leaving exams (yes=1, no=0, see notes if available)
## 742                                                                                                                                                                                                                   Participation in international tests (yes=1, no=0, see notes if available)
## 743                                                                                                                                                                                                         National assessment for learning outcomes in Albania, grade 9, Language (mean score)
## 744                                                                                                                                                                                                                                              PASEC in Burkina Faso, CP2, French (mean score)
## 745                                                                                                                                                                                                                           Brevet des colleges in Central African Republic, success rate (%) 
## 746                                                                                                                                                                                      National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), mean score of all subjects 
## 747                                                                                                                                                                                                                                       PASEC in Cameroon, grades 2 and 5, French (mean score)
## 748                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, English, optimal competency (%)
## 749                                                                                                                                                                                                                                              PIRLS in Georgia, grade 4, Reading (mean score)
## 750                                                                                                                                                                                                     National assessment for learning outcomes in Ghana, P3, English, students above mean (%)
## 751                                                                                                                                                                                                                                                    PASEC in Guinea, CP2, French (mean score)
## 752                                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - overall (mean score)
## 753                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 3, Language (mean score)
## 754                                                                                                                                                                                                            National assessment for learning outcomes in Laos, grade 5, Language (mean score)
## 755                                                                                                                                                                                                           National assessment for learning outcomes in Moldova, grade 4, mean competency (%)
## 756                                                                                                                                                                                                                                                PASEC in Madagascar, CM2, French (mean score)
## 757                                                                                                                                                                                                                                          SACMEQ in Mozambique, grade 5, Reading (mean score)
## 758                                                                                                                                                                                                                                            PASEC in Mauritania, grade 5, French (mean score)
## 759                                                                                                                                                                                                                                      SACMEQ in Malawi, standards 3,5,7, Reading (mean score)
## 760                                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, French (mean score)
## 761                                                                                                                                                                                       National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, minimal competency (%)
## 762                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 763                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 1, scores in indicated level (%)
## 764                                                                                                                                                                                                           National assessment for learning outcomes in Zambia, grade 5, Reading (mean score)
## 765                                                                                                                                                                                           National assessment for learning outcomes in Ethiopia, grade 12, Chemistry, optimal competency (%)
## 766                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in lowest level (%)
## 767                                                                                                                                                                                        National assessment for learning outcomes in Ghana, P6, English, students above proficient levels (%)
## 768                                                                                                                                                                                                              PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)
## 769                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CP, French, under minimal competency (%)
## 770                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, Physics, optimal competency (%)
## 771                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in lowest level (%)
## 772                                                                                                                                                                                    National assessment for learning outcomes in Ghana, P3, Mathematics, students above proficient levels (%)
## 773                                                                                                                                                                                                       National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade) (mean score)
## 774                                                                                                                                                                                                National assessment for learning outcomes in Niger, CE2, French, under minimal competency (%)
## 775                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, average of all subjects, optimal competency (%)
## 776                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in medium level (%)
## 777                                                                                                                                                                                    National assessment for learning outcomes in Ghana, P6, Mathematics, students above proficient levels (%)
## 778                                                                                                                                                                                                    National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade (mean score)
## 779                                                                                                                                                                                                National assessment for learning outcomes in Niger, CM2, French, under minimal competency (%)
## 780                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in medium level (%)
## 781                                                                                                                                                                                                                                            TIMSS in Ghana, grade 8, Mathematics (mean score)
## 782                                                                                                                                                                                                          National assessment at the end of secondary (BAC) in Guinea, Terminale (mean score)
## 783                                                                                                                                                                                                             National assessment for learning outcomes in Niger, CP, Mathematics (mean score)
## 784                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in medium level (%)
## 785                                                                                                                                                                                                                                                TIMSS in Ghana, grade 8, Science (mean score)
## 786                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), minimal competency 
## 787                                                                                                                                                                                                            National assessment for learning outcomes in Niger, CE2, Mathematics (mean score)
## 788                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in higher level (%)
## 789                                                                                                                                                                                                         Making the Grade Scores in Ghana, P3, Literacy in English, Letters per minute (mean)
## 790                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, minimum competency 
## 791                                                                                                                                                                                                            National assessment for learning outcomes in Niger, CM2, Mathematics (mean score)
## 792                                                                                                                                                                                        National assessment for learning outcomes in Georgia, grade 9, Language, students in higher level (%)
## 793                                                                                                                                                                                                         Making the Grade Scores in Ghana, P5, Literacy in English, Letters per minute (mean)
## 794                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, minimal competency 
## 795                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, Mathematics, optimal competency (%)
## 796                                                                                                                                                                                     National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in higher level (%)
## 797                                                                                                                                                                                                            Making the Grade Scores in Ghana, P3 Literacy in English, Words per minute (mean)
## 798                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), optimal competency 
## 799                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, Mathematics, optimal competency (%)
## 800                                                                                                                                                                                       National assessment for learning outcomes in Georgia, grade 9, Language, students in highest level (%)
## 801                                                                                                                                                                                                           Making the Grade Scores in Ghana, P5, Literacy in English, Words per minute (mean)
## 802                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, optimal competency 
## 803                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, Mathematics, optimal competency (%)
## 804                                                                                                                                                                                    National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in highest level (%)
## 805                                                                                                                                                                                                                       Making the Grade Scores in Ghana, P3, Literacy in English, Zero score 
## 806                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, optimal competency 
## 807                                                                                                                                                                                                  National assessment for learning outcomes in Niger, CP, Mathematics, minimal competency (%)
## 808                                                                                                                                                                                                      National assessment for learning outcomes in Albania, grade 9, Mathematics (mean score)
## 809                                                                                                                                                                                                                                              PASEC in Burkina Faso, CM1, French (mean score)
## 810                                                                                                                                                                                         Baccalaureate in Central African Republic, exam at the end of secondary education, success rate (%) 
## 811                                                                                                                                                                              National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), mean score of all subjects 
## 812                                                                                                                                                                                                                                  PASEC in Cameroon, grades 2 and 5, Mathematics (mean score)
## 813                                                                                                                                                                                         National assessment for learning outcomes in Ethiopia, grade 10, Mathematics, optimal competency (%)
## 814                                                                                                                                                                                                                                          TIMSS in Georgia, grade 4, Mathematics (mean score)
## 815                                                                                                                                                                                                     National assessment for learning outcomes in Ghana, P6, English, students above mean (%)
## 816                                                                                                                                                                                                                                               PASEC in Guinea, CP2, Mathematics (mean score)
## 817                                                                                                                                                                                                                   PISA in Kyrgyzstan, grades 8-9, Reading - access and retrieve (mean score)
## 818                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 3, Mathematics (mean score)
## 819                                                                                                                                                                                                    National assessment for learning outcomes in Laos, grade 5, Language (minimal competency)
## 820                                                                                                                                                                                                           National assessment for learning outcomes in Moldova, grade 9, mean competency (%)
## 821                                                                                                                                                                                                                                           PASEC in Madagascar, CM2, Mathematics (mean score)
## 822                                                                                                                                                                                                                                      SACMEQ in Mozambique, grade 5, Mathematics (mean score)
## 823                                                                                                                                                                                                                                       PASEC in Mauritania, grade 5, Mathematics (mean score)
## 824                                                                                                                                                                                                                                  SACMEQ in Malawi, standards 3,5,7, Mathematics (mean score)
## 825                                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, French (mean score)
## 826                                                                                                                                                                                            National assessment for learning outcomes (SNERS) in Senegal, CE2, French, minimal competency (%)
## 827                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 828                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 2, scores in indicated level (%)
## 829                                                                                                                                                                                                       National assessment for learning outcomes in Zambia, grade 5, Mathematics (mean score)
## 830                                                                                                                                                                                                                       Making the Grade Scores in Ghana, P5, Literacy in English, Zero score 
## 831                                                                                                                                                                                               National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), maximal competency 
## 832                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CE2, Mathematics, minimal competency (%)
## 833                                                                                                                                                                                                                        Making the Grade Scores in Ghana, P3, Numeracy, Correct Additions (%)
## 834                                                                                                                                                                                            National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, maximal competency 
## 835                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, Mathematics, minimal competency (%)
## 836                                                                                                                                                                                                                        Making the Grade Scores in Ghana, P5, Numeracy, Correct Additions (%)
## 837                                                                                                                                                                                                             National assessment at the end of secondary (BAC) in Guinea, maximal competency 
## 838                                                                                                                                                                                            National assessment for learning outcomes in Niger, CP, Mathematics, under minimal competency (%)
## 839                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P3, Numeracy, Correct Multiplications (%)
## 840                                                                                                                                                                                                  National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), success rate (%)
## 841                                                                                                                                                                                           National assessment for learning outcomes in Niger, CE2, Mathematics, under minimal competency (%)
## 842                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P5, Numeracy, Correct Multiplications (%)
## 843                                                                                                                                                                                               National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, success rate (%)
## 844                                                                                                                                                                                           National assessment for learning outcomes in Niger, CM2, Mathematics, under minimal competency (%)
## 845                                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P3, Numeracy, Zero score 
## 846                                                                                                                                                                                                                National assessment at the end of secondary (BAC) in Guinea, success rate (%)
## 847                                                                                                                                                                                          National assessment for learning outcomes in Niger, end of 1st degree certificate, success rate (%)
## 848                                                                                                                                                                                                                                  Making the Grade Scores in Ghana, P5, Numeracy, Zero score 
## 849                                                                                                                                                                                                                                        PISA in Albania, grade 9 and 10, Reading (mean score)
## 850                                                                                                                                                                                                                                         PASEC in Burkina Faso, CP2, Mathematics (mean score)
## 851                                                                                                                                                                                           National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), minimal competency (%)
## 852                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, Biology, optimal competency (%)
## 853                                                                                                                                                                                                                                              TIMSS in Georgia, grade 4, Science (mean score)
## 854                                                                                                                                                                                                 National assessment for learning outcomes in Ghana, P3, Mathematics, students above mean (%)
## 855                                                                                                                                                                                                                                    PASEC in Guinea, CP2, French and Mathematics (mean score)
## 856                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - integrate and interpret (mean score)
## 857                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 6, Language (mean score)
## 858                                                                                                                                                                                                           National assessment for learning outcomes in Laos, grade 5, Language (proficiency)
## 859                                                                                                                                                                                                        National assessment for learning outcomes in Moldova, grade 4, minimal competency (%)
## 860                                                                                                                                                                                                                 National assessment for learning outcomes in Niger, CM2, French (mean score)
## 861                                                                                                                                                                                       National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, optimal competency (%)
## 862                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 863                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 3, scores in indicated level (%)
## 864                                                                                                                                                                                                                                              SACMEQ in Zambia, grade 5, Reading (mean score)
## 865                                                                                                                                                                                                                                    PISA in Albania, grade 9 and 10, Mathematics (mean score)
## 866                                                                                                                                                                                                                                         PASEC in Burkina Faso, CM1, Mathematics (mean score)
## 867                                                                                                                                                                                   National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), minimal competency (%)
## 868                                                                                                                                                                                           National assessment for learning outcomes in Ethiopia, grade 10, Chemistry, optimal competency (%)
## 869                                                                                                                                                                                                                                          TIMSS in Georgia, grade 8, Mathematics (mean score)
## 870                                                                                                                                                                                                 National assessment for learning outcomes in Ghana, P6, Mathematics, students above mean (%)
## 871                                                                                                                                                                                                                                                    PASEC in Guinea, CM1, French (mean score)
## 872                                                                                                                                                                                                                  PISA in Kyrgyzstan, grades 8-9, Reading - reflect and evaluate (mean score)
## 873                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 6, Mathematics (mean score)
## 874                                                                                                                                                                                                         National assessment for learning outcomes in Laos, grade 5, Mathematics (mean score)
## 875                                                                                                                                                                                                        National assessment for learning outcomes in Moldova, grade 9, minimal competency (%)
## 876                                                                                                                                                                                                       National assessment for learning outcomes in Niger, CP, French, optimal competency (%)
## 877                                                                                                                                                                                            National assessment for learning outcomes (SNERS) in Senegal, CE2, French, optimal competency (%)
## 878                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 879                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 4, scores in indicated level (%)
## 880                                                                                                                                                                                                                                          SACMEQ in Zambia, grade 5, Mathematics (mean score)
## 881                                                                                                                                                                                                                                        PISA in Albania, grade 9 and 10, Science (mean score)
## 882                                                                                                                                                                                           National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), optimal competency (%)
## 883                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, Physics, optimal competency (%)
## 884                                                                                                                                                                                                                                              TIMSS in Georgia, grade 8, Science (mean score)
## 885                                                                                                                                                                                       National assessment for learning outcomes in Ghana, P3, English, students above minimal competency (%)
## 886                                                                                                                                                                                                                                               PASEC in Guinea, CM1, Mathematics (mean score)
## 887                                                                                                                                                                                                                      PISA in Kyrgyzstan, grades 8-9, Reading - continuous texts (mean score)
## 888                                                                                                                                                                                                        National assessment for learning outcomes in Cambodia, grade 9, Language (mean score)
## 889                                                                                                                                                                                                 National assessment for learning outcomes in Laos, grade 5, Mathematics (minimal competency)
## 890                                                                                                                                                                                                     National assessment for learning outcomes in Moldova, grade 4, proficient competency (%)
## 891                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CE2, French, optimal competency (%)
## 892                                                                                                                                                                                                                                              PASEC in Senegal, CM1, Mathematics (mean score)
## 893                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 894                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 5, scores in indicated level (%)
## 895                                                                                                                                                                                   National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), optimal competency (%)
## 896                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 10, average of all subjects, optimal competency (%)
## 897                                                                                                                                                                                                                                               PISA in Georgia, grade 9, Reading (mean score)
## 898                                                                                                                                                                                       National assessment for learning outcomes in Ghana, P6, English, students above minimum competency (%)
## 899                                                                                                                                                                                                                                    PASEC in Guinea, CM1, French and Mathematics (mean score)
## 900                                                                                                                                                                                                                  PISA in Kyrgyzstan, grades 8-9, Reading - non-continuous texts (mean score)
## 901                                                                                                                                                                                                     National assessment for learning outcomes in Cambodia, grade 9, Mathematics (mean score)
## 902                                                                                                                                                                                                        National assessment for learning outcomes in Laos, grade 5, Mathematics (proficiency)
## 903                                                                                                                                                                                                     National assessment for learning outcomes in Moldova, grade 9, proficient competency (%)
## 904                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CM2, French, optimal competency (%)
## 905                                                                                                                                                                                                                                                   PASEC in Senegal, CM1, French (mean score)
## 906                                                                                                                                                                          National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)
## 907                                                                                                                                                                              National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 6, scores in indicated level (%)
## 908                                                                                                                                                                                                                     PASEC in Côte d'Ivoire, CP2 and CM1, French and Mathematics (mean score)
## 909                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, English, optimal competency (%)
## 910                                                                                                                                                                                                                                           PISA in Georgia, grade 9, Mathematics (mean score)
## 911                                                                                                                                                                                   National assessment for learning outcomes in Ghana, P3, Mathematics, students above minimal competency (%)
## 912                                                                                                                                                                                                              PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)
## 913                                                                                                                                                                                                                           PISA in Kyrgyzstan, grades 8-9, Reading - mathematics (mean score)
## 914                                                                                                                                                                                                     National assessment for learning outcomes in Laos, grade 5, world around us (mean score)
## 915                                                                                                                                                                                                                                              PIRLS in Moldova, grade 4, Reading (mean score)
## 916                                                                                                                                                                                                       National assessment for learning outcomes in Niger, CP, French, minimal competency (%)
## 917                                                                                                                                                                                                                                                  PASEC in Senegal, Mathematics, (mean score)
## 918                                                                                                                                                                                         National assessment for learning outcomes in Ethiopia, grade 12, Mathematics, optimal competency (%)
## 919                                                                                                                                                                                                                                               PISA in Georgia, grade 9, Science (mean score)
## 920                                                                                                                                                                                   National assessment for learning outcomes in Ghana, P6, Mathematics, students above minimal competency (%)
## 921                                                                                                                                                                                                              PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)
## 922                                                                                                                                                                                                                               PISA in Kyrgyzstan, grades 8-9, Reading - science (mean score)
## 923                                                                                                                                                                                             National assessment for learning outcomes in Laos, grade 5, world around us (minimal competency)
## 924                                                                                                                                                                                                                                                   TIMSS in Moldova, Mathematics (mean score)
## 925                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CE2, French, minimal competency (%)
## 926                                                                                                                                                                                                                                                        PASEC in Senegal, French (mean score)
## 927                                                                                                                                                                                             National assessment for learning outcomes in Ethiopia, grade 12, Biology, optimal competency (%)
## 928                                                                                                                                                                                         National assessment for learning outcomes in Georgia, grade 1, English, students in lowest level (%)
## 929                                                                                                                                                                                        National assessment for learning outcomes in Ghana, P3, English, students above proficient levels (%)
## 930                                                                                                                                                                                                              PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)
## 931                                                                                                                                                                                                    National assessment for learning outcomes in Laos, grade 5, world around us (proficiency)
## 932                                                                                                                                                                                                                                                       TIMSS in Moldova, Science (mean score)
## 933                                                                                                                                                                                                      National assessment for learning outcomes in Niger, CM2, French, minimal competency (%)
## 934                                                                                                                                                                                                                    Realization of national assessments (yes=1, no=0, see notes if available)
## 935                                                                                                                                                                                                           Administration of oral reading fluency tests (yes=1, no=0, see notes if available)
## 936                                                                                                                                                                                                                                                                                Employees (%)
## 937                                                                                                                                                                                                                                                              Employees-Bottom 40 Percent (%)
## 938                                                                                                                                                                                                                                                                 Employees-Top 60 Percent (%)
## 939                                                                                                                                                                                                                                                                                Employers (%)
## 940                                                                                                                                                                                                                                                              Employers-Bottom 40 Percent (%)
## 941                                                                                                                                                                                                                                                                 Employers-Top 60 Percent (%)
## 942                                                                                                                                                                                                                                                           Labor Force Participation Rate (%)
## 943                                                                                                                                                                                                                                         Labor Force Participation Rate (%)-Bottom 40 Percent
## 944                                                                                                                                                                                                                                            Labor Force Participation Rate (%)-Top 60 Percent
## 945                                                                                                                                                                                                                                                                            Self-Employed (%)
## 946                                                                                                                                                                                                                                                          Self-Employed-Bottom 40 Percent (%)
## 947                                                                                                                                                                                                                                                             Self-Employed-Top 60 Percent (%)
## 948                                                                                                                                                                                                                                                                               Unemployed (%)
## 949                                                                                                                                                                                                                                                             Unemployed-Bottom 40 Percent (%)
## 950                                                                                                                                                                                                                                                                Unemployed-Top 60 Percent (%)
## 951                                                                                                                                                                                                                                                                           Unpaid Workers (%)
## 952                                                                                                                                                                                                                                                         Unpaid Workers-Bottom 40 Percent (%)
## 953                                                                                                                                                                                                                                                            Unpaid Workers-Top 60 Percent (%)
## 954                                                                                                                                                                                                                                                                          Employees (%), Male
## 955                                                                                                                                                                                                                                                        Employees-Bottom 40 Percent (%), Male
## 956                                                                                                                                                                                                                                                           Employees-Top 60 Percent (%), Male
## 957                                                                                                                                                                                                                                                                          Employers (%), Male
## 958                                                                                                                                                                                                                                                        Employers-Bottom 40 Percent (%), Male
## 959                                                                                                                                                                                                                                                           Employers-Top 60 Percent (%), Male
## 960                                                                                                                                                                                                                                                     Labor Force Participation Rate (%), Male
## 961                                                                                                                                                                                                                                   Labor Force Participation Rate (%)-Bottom 40 Percent, Male
## 962                                                                                                                                                                                                                                      Labor Force Participation Rate (%)-Top 60 Percent, Male
## 963                                                                                                                                                                                                                                                                      Self-Employed (%), Male
## 964                                                                                                                                                                                                                                                    Self-Employed-Bottom 40 Percent (%), Male
## 965                                                                                                                                                                                                                                                       Self-Employed-Top 60 Percent (%), Male
## 966                                                                                                                                                                                                                                                                         Unemployed (%), Male
## 967                                                                                                                                                                                                                                                       Unemployed-Bottom 40 Percent (%), Male
## 968                                                                                                                                                                                                                                                          Unemployed-Top 60 Percent (%), Male
## 969                                                                                                                                                                                                                                                                     Unpaid Workers (%), Male
## 970                                                                                                                                                                                                                                                   Unpaid Workers-Bottom 40 Percent (%), Male
## 971                                                                                                                                                                                                                                                      Unpaid Workers-Top 60 Percent (%), Male
## 972                                                                                                                                                                                                                    Alignment of aid to education (% of total international aid to education)
## 973                                                                                                                                                                                                                                                                        Employees (%), Female
## 974                                                                                                                                                                                                                                                      Employees-Bottom 40 Percent (%), Female
## 975                                                                                                                                                                                                                                                         Employees-Top 60 Percent (%), Female
## 976                                                                                                                                                                                                                                                                        Employers (%), Female
## 977                                                                                                                                                                                                                                                      Employers-Bottom 40 Percent (%), Female
## 978                                                                                                                                                                                                                                                         Employers-Top 60 Percent (%), Female
## 979                                                                                                                                                                                                                                                   Labor Force Participation Rate (%), Female
## 980                                                                                                                                                                                                                                 Labor Force Participation Rate (%)-Bottom 40 Percent, Female
## 981                                                                                                                                                                                                                                    Labor Force Participation Rate (%)-Top 60 Percent, Female
## 982                                                                                                                                                                                                                                                                    Self-Employed (%), Female
## 983                                                                                                                                                                                                                                                  Self-Employed-Bottom 40 Percent (%), Female
## 984                                                                                                                                                                                                                                                     Self-Employed-Top 60 Percent (%), Female
## 985                                                                                                                                                                                                                                                                       Unemployed (%), Female
## 986                                                                                                                                                                                                                                                     Unemployed-Bottom 40 Percent (%), Female
## 987                                                                                                                                                                                                                                                        Unemployed-Top 60 Percent (%), Female
## 988                                                                                                                                                                                                                                                                   Unpaid Workers (%), Female
## 989                                                                                                                                                                                                                                                 Unpaid Workers-Bottom 40 Percent (%), Female
## 990                                                                                                                                                                                                                                                    Unpaid Workers-Top 60 Percent (%), Female
## 991                                                                                                                                                                                                                      Coordinated technical cooperation (% of total cooperation to education)
## 992                                                                                                                                                                                               Use of public financial management country systems (% of total international aid to education)
## 993                                                                                                                                                                                                               Use of procurement country systems (% of total international aid to education)
## 994                                                                                                                                                                                                                                    Number of parallel implementation units, education sector
## 995                                                                                                                                                                                                          Aid provided through program based approaches (% of international aid to education)
## 996                                                                                                                                                                                                                                                        9020000:ACTUAL INDIVIDUAL CONSUMPTION
## 997                                                                                                                                                                                                                              9060000:ACTUAL HOUSING, WATER, ELECTRICITY, GAS AND OTHER FUELS
## 998                                                                                                                                                                                                                                                                        9080000:ACTUAL HEALTH
## 999                                                                                                                                                                                                                                  9100000:HOUSEHOLDS AND NPISHS FINAL CONSUMPTION EXPENDITURE
## 1000                                                                                                                                                                                                                                                       9110000:ACTUAL RECREATION AND CULTURE
## 1001                                                                                                                                                                                                                                                                    9120000:ACTUAL EDUCATION
## 1002                                                                                                                                                                                                                                             9140000:ACTUAL MISCELLANEOUS GOODS AND SERVICES
## 1003                                                                                                                                                                                                                                                                 9250000:DOMESTIC ABSORPTION
## 1004                                                                                                                                                                                                                    9260000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS WITHOUT HOUSING
## 1005                                                                                                                                                                                                                                    9270000:GENERAL GOVERNMENT FINAL CONSUMPTION EXPENDITURE
## 1006                                                                                                                                                                                                                                                                     001.Number of Exporters
## 1007                                                                                                                                                                                                                                                        026.Export Value per Incumbent: Mean
## 1008                                                                                                                                                                                                                                                      027.Export Value per Incumbent: Median
## 1009                                                                                                                                                                                                                                                      028.Export Value per Incumbent: StDev.
## 1010                                                                                                                                                                                                                                              029.Export Value per Incumbent: First Quartile
## 1011                                                                                                                                                                                                                                              030.Export Value per Incumbent: Third Quartile
## 1012                                                                                                                                                                                                                                                              031.Growth of Incumbents: Mean
## 1013                                                                                                                                                                                                                                                            032.Growth of Incumbents: Median
## 1014                                                                                                                                                                                                                                                            033.Growth of Incumbents: StDev.
## 1015                                                                                                                                                                                                                                                    034.Growth of Incumbents: First Quartile
## 1016                                                                                                                                                                                                                                                    035.Growth of Incumbents: Third Quartile
## 1017                                                                                                                                                                                                                                                      036.Growth of Surviving Entrants: Mean
## 1018                                                                                                                                                                                                                                                    037.Growth of Surviving Entrants: Median
## 1019                                                                                                                                                                                                                                                    038.Growth of Surviving Entrants: StDev.
## 1020                                                                                                                                                                                                                                            039.Growth of Surviving Entrants: First Quartile
## 1021                                                                                                                                                                                                                                            040.Growth of Surviving Entrants: Third Quartile
## 1022                                                                                                                                                                                                                                                                      002.Number of Entrants
## 1023                                                                                                                                                                                                                                                                       003.Number of Exiters
## 1024                                                                                                                                                                                                                                                            004.Number of Surviving Entrants
## 1025                                                                                                                                                                                                                                                                    005.Number of Incumbents
## 1026                                                                                                                                                                                                                                                         006.Export Value per Exporter: Mean
## 1027                                                                                                                                                                                                                                                       007.Export Value per Exporter: Median
## 1028                                                                                                                                                                                                                                                       008.Export Value per Exporter: StDev.
## 1029                                                                                                                                                                                                                                               009.Export Value per Exporter: First Quartile
## 1030                                                                                                                                                                                                                                               010.Export Value per Exporter: Third Quartile
## 1031                                                                                                                                                                                                                                                          011.Export Value per Entrant: Mean
## 1032                                                                                                                                                                                                                                                        012.Export Value per Entrant: Median
## 1033                                                                                                                                                                                                                                                        013.Export Value per Entrant: StDev.
## 1034                                                                                                                                                                                                                                                014.Export Value per Entrant: First Quartile
## 1035                                                                                                                                                                                                                                                015.Export Value per Entrant: Third Quartile
## 1036                                                                                                                                                                                                                                                           016.Export Value per Exiter: Mean
## 1037                                                                                                                                                                                                                                                         017.Export Value per Exiter: Median
## 1038                                                                                                                                                                                                                                                         018.Export Value per Exiter: StDev.
## 1039                                                                                                                                                                                                                                                 019.Export Value per Exiter: First Quartile
## 1040                                                                                                                                                                                                                                                 020.Export Value per Exiter: Third Quartile
## 1041                                                                                                                                                                                                                                                021.Export Value per Surviving Entrant: Mean
## 1042                                                                                                                                                                                                                                              022.Export Value per Surviving Entrant: Median
## 1043                                                                                                                                                                                                                                              023.Export Value per Surviving Entrant: StDev.
## 1044                                                                                                                                                                                                                                      024.Export Value per Surviving Entrant: First Quartile
## 1045                                                                                                                                                                                                                                      025.Export Value per Surviving Entrant: Third Quartile
## 1046                                                                                                                                                                                                                                                                         Account (% age 15+)
## 1047                                                                                                                                                                                                                                                                   Account, male (% age 15+)
## 1048                                                                                                                                                                                                                                                         Account, in labor force (% age 15+)
## 1049                                                                                                                                                                                                                                                     Account, out of labor force (% age 15+)
## 1050                                                                                                                                                                                                                                                                 Account, female (% age 15+)
## 1051                                                                                                                                                                                                                                                        Account, young adults (% ages 15-24)
## 1052                                                                                                                                                                                                                                                          Account, older adults (% ages 25+)
## 1053                                                                                                                                                                                                                                             Account, primary education or less (% ages 15+)
## 1054                                                                                                                                                                                                                                           Account, secondary education or more (% ages 15+)
## 1055                                                                                                                                                                                                                                                   Account, income, poorest 40% (% ages 15+)
## 1056                                                                                                                                                                                                                                                   Account, income, richest 60% (% ages 15+)
## 1057                                                                                                                                                                                                                                                                  Account, rural (% age 15+)
## 1058                                                                                                                                                                                                                                                                         Account (% age 15+)
## 1059                                                                                                                                                                                                                                                                 Account, female (% age 15+)
## 1060                                                                                                                                                                                                                                                                   Account, male (% age 15+)
## 1061                                                                                                                                                                                                                                                    Account, income, poorest 40% (% age 15+)
## 1062                                                                                                                                                                                                                                                    Account, income, richest 60% (% age 15+)
## 1063                                                                                                                                                                                                                                                                      Account (% ages 15-34)
## 1064                                                                                                                                                                                                                                                                      Account (% ages 35-59)
## 1065                                                                                                                                                                                                                                                                         Account (% age 60+)
## 1066                                                                                                                                                                                                                                                            Agricultural machinery, tractors
## 1067                                                                                                                                                                                                                                                    Cereal food aid deliveries (FAO, tonnes)
## 1068                                                                                                                                                                                                                       Total food (cereals and non-cereal) food aid deliveries (FAO, tonnes)
## 1069                                                                                                                                                                                                                                                Non-cereal food aid deliveries (FAO, tonnes)
## 1070                                                                                                                                                                                                                                                        Fertilizer consumption (metric tons)
## 1071                                                                                                                                                                                                                                         Fertilizer consumption (% of fertilizer production)
## 1072                                                                                                                                                                                                                               Fertilizer consumption (kilograms per hectare of arable land)
## 1073                                                                                                                                                                                                                                                         Pesticide consumption (metric tons)
## 1074                                                                                                                                                                                                                                          Producer Price for Barley (per tonne, current US$)
## 1075                                                                                                                                                                                                                                          Producer Price for Barley (per tonne, current LCU)
## 1076                                                                                                                                                                                                                                           Producer Price for Fonio (per tonne, current US$)
## 1077                                                                                                                                                                                                                                           Producer Price for Fonio (per tonne, current LCU)
## 1078                                                                                                                                                                                                                                          Producer Price for Millet (per tonne, current US$)
## 1079                                                                                                                                                                                                                                          Producer Price for Millet (per tonne, current LCU)
## 1080                                                                                                                                                                                                                                           Producer Price for Maize (per tonne, current US$)
## 1081                                                                                                                                                                                                                                           Producer Price for Maize (per tonne, current LCU)
## 1082                                                                                                                                                                                                                                     Producer Price for Rice, paddy (per tonne, current US$)
## 1083                                                                                                                                                                                                                                     Producer Price for Rice, paddy (per tonne, current LCU)
## 1084                                                                                                                                                                                                                                         Producer Price for Sorghum (per tonne, current US$)
## 1085                                                                                                                                                                                                                                         Producer Price for Sorghum (per tonne, current LCU)
## 1086                                                                                                                                                                                                                                           Producer Price for Wheat (per tonne, current US$)
## 1087                                                                                                                                                                                                                                           Producer Price for Wheat (per tonne, current LCU)
## 1088                                                                                                                                                                                                                                                  Wood charcoal production quantity (tonnes)
## 1089                                                                                                                                                                                                                                     Wood fuel production quantity (CUM, solid volume units)
## 1090                                                                                                                                                                                                                                                                Cereal imports (metric tons)
## 1091                                                                                                                                                                                                                                                                Agricultural land (hectares)
## 1092                                                                                                                                                                                                                                                                  Agricultural land (sq. km)
## 1093                                                                                                                                                                                                                                                          Agricultural land (% of land area)
## 1094                                                                                                                                                                                                                                                                      Arable land (hectares)
## 1095                                                                                                                                                                                                                                                           Arable land (hectares per person)
## 1096                                                                                                                                                                                                                                                                Arable land (% of land area)
## 1097                                                                                                                                                                                                                                                     Land under barley production (hectares)
## 1098                                                                                                                                                                                                                                                            Cereal cropland (% of land area)
## 1099                                                                                                                                                                                                                                                     Land under cereal production (hectares)
## 1100                                                                                                                                                                                                                                                               Permanent cropland (hectares)
## 1101                                                                                                                                                                                                                                                         Permanent cropland (% of land area)
## 1102                                                                                                                                                                                                                                                    Arable and permanent cropland (hectares)
## 1103                                                                                                                                                                                                                                  Rural land area where elevation is below 5 meters (sq. km)
## 1104                                                                                                                                                                                                                    Rural land area where elevation is below 5 meters (% of total land area)
## 1105                                                                                                                                                                                                                                  Urban land area where elevation is below 5 meters (sq. km)
## 1106                                                                                                                                                                                                                    Urban land area where elevation is below 5 meters (% of total land area)
## 1107                                                                                                                                                                                                                          Land area where elevation is below 5 meters (% of total land area)
## 1108                                                                                                                                                                                                                                                      Land under fonio production (hectares)
## 1109                                                                                                                                                                                                                                                                      Forest area (hectares)
## 1110                                                                                                                                                                                                                                                                        Forest area (sq. km)
## 1111                                                                                                                                                                                                                                                                Forest area (% of land area)
## 1112                                                                                                                                                                                                                                  Agricultural irrigated land (% of total agricultural land)
## 1113                                                                                                                                                                                                                                                         Land use, irrigated land (hectares)
## 1114                                                                                                                                                                                                                                                            Agricultural area irrigated (ha)
## 1115                                                                                                                                                                                                                                                Land area equipped for irrigation (hectares)
## 1116                                                                                                                                                                                                                                                              Irrigated land (% of cropland)
## 1117                                                                                                                                                                                                                                                     Land under millet production (hectares)
## 1118                                                                                                                                                                                                                                                      Land under maize production (hectares)
## 1119                                                                                                                                                                                                                                                            Land use, other (% of land area)
## 1120                                                                                                                                                                                                                                                           Arable land (hectares per person)
## 1121                                                                                                                                                                                                                                                          Permanent pasture (% of land area)
## 1122                                                                                                                                                                                                                                                Average precipitation in depth (mm per year)
## 1123                                                                                                                                                                                                                                                       Land under rice production (hectares)
## 1124                                                                                                                                                                                                                                                    Land under sorghum production (hectares)
## 1125                                                                                                                                                                                                                                                                        Land area (hectares)
## 1126                                                                                                                                                                                                                                                                          Land area (sq. km)
## 1127                                                                                                                                                                                                                                                                    Rural land area (sq. km)
## 1128                                                                                                                                                                                                                                                                    Urban land area (sq. km)
## 1129                                                                                                                                                                                                                              Agricultural machinery, tractors per 100 sq. km of arable land
## 1130                                                                                                                                                                                                                                                      Land under wheat production (hectares)
## 1131                                                                                                                                                                                                                                              Agriculture production index (1999-2001 = 100)
## 1132                                                                                                                                                                                                                                                             Barley production (metric tons)
## 1133                                                                                                                                                                                                                                                             Cereal production (metric tons)
## 1134                                                                                                                                                                                                                                                   Cereal production index (1999-2001 = 100)
## 1135                                                                                                                                                                                                                                                     Crop production index (2014-2016 = 100)
## 1136                                                                                                                                                                                                                                                              Fonio production (metric tons)
## 1137                                                                                                                                                                                                                                                     Food production index (2014-2016 = 100)
## 1138                                                                                                                                                                                                                                       Agriculture production index (gross, 1999-2001 = 100)
## 1139                                                                                                                                                                                                                                            Cereal production index (gross, 1999-2001 = 100)
## 1140                                                                                                                                                                                                                                              Crop production index (gross, 1999-2001 = 100)
## 1141                                                                                                                                                                                                                                              Food production index (gross, 1999-2001 = 100)
## 1142                                                                                                                                                                                                                                         Livestock production index (gross, 1999-2001 = 100)
## 1143                                                                                                                                                                                                                                          Non-food production index (gross, 1999-2001 = 100)
## 1144                                                                                                                                                                                                                                                Livestock production index (2014-2016 = 100)
## 1145                                                                                                                                                                                                                                                             Millet production (metric tons)
## 1146                                                                                                                                                                                                                                                              Maize production (metric tons)
## 1147                                                                                                                                                                                                                                           Gross non-food production index (1999-2001 = 100)
## 1148                                                                                                                                                                                                                                                               Rice production (metric tons)
## 1149                                                                                                                                                                                                                                                   Roots and tubers production (metric tons)
## 1150                                                                                                                                                                                                                                                            Sorghum production (metric tons)
## 1151                                                                                                                                                                                                                                                              Wheat production (metric tons)
## 1152                                                                                                                                                                                                                                                   Barley seed quantity (FAO, metric tonnes)
## 1153                                                                                                                                                                                                                                                   Cereal seed quantity (FAO, metric tonnes)
## 1154                                                                                                                                                                                                                                                    Fonio seed quantity (FAO, metric tonnes)
## 1155                                                                                                                                                                                                                                                   Millet seed quantity (FAO, metric tonnes)
## 1156                                                                                                                                                                                                                                                    Maize seed quantity (FAO, metric tonnes)
## 1157                                                                                                                                                                                                                                                     Rice seed quantity (FAO, metric tonnes)
## 1158                                                                                                                                                                                                                                                  Sorghum seed quantity (FAO, metric tonnes)
## 1159                                                                                                                                                                                                                                                    Wheat seed quantity (FAO, metric tonnes)
## 1160                                                                                                                                                                                                                                                                           Surface area (ha)
## 1161                                                                                                                                                                                                                                                                       Surface area (sq. km)
## 1162                                                                                                                                                                                                                                    Agricultural machinery, tractors per agricultural worker
## 1163                                                                                                                                                                                                                                                      Pesticide consumption (kg per hectare)
## 1164                                                                                                                                                                                                                                                               Barley yield (kg per hectare)
## 1165                                                                                                                                                                                                                                                               Cereal yield (kg per hectare)
## 1166                                                                                                                                                                                                                                                                Fonio yield (kg per hectare)
## 1167                                                                                                                                                                                                                                                               Millet yield (kg per hectare)
## 1168                                                                                                                                                                                                                                                                Maize yield (kg per hectare)
## 1169                                                                                                                                                                                                                                                                 Rice yield (kg per hectare)
## 1170                                                                                                                                                                                                                                                              Sorghum yield (kg per hectare)
## 1171                                                                                                                                                                                                                                                                Wheat yield (kg per hectare)
## 1172                                                                                                                                                                                        Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits)
## 1173                                                                                                                                                                                                                                    Coverage of social safety net programs (% of population)
## 1174                                                                                                                                                                                                     Generosity of social safety net programs (% of total welfare of beneficiary households)
## 1175                                                                                                                                                                                   Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits)
## 1176                                                                                                                                                                                                                                     Coverage of social insurance programs (% of population)
## 1177                                                                                                                                                                                                      Generosity of social insurance programs (% of total welfare of beneficiary households)
## 1178                                                                                                                                                                                     Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits)
## 1179                                                                                                                                                                                                                          Coverage of social protection and labor programs (% of population)
## 1180                                                                                                                                                                                           Generosity of social protection and labor programs (% of total welfare of beneficiary households)
## 1181                                                                                                                                                                                                                                                              041.Herfindahl-Hirschman Index
## 1182                                                                                                                                                                                                                                   042.Share of top 1% Exporters in TEV (Total Export Value)
## 1183                                                                                                                                                                                                                                   043.Share of top 5% Exporters in TEV (Total Export Value)
## 1184                                                                                                                                                                                                                                  044.Share of top 25% Exporters in TEV (Total Export Value)
## 1185                                                                                                                                                                                                                                               045.Number of HS6 Products per Exporter: Mean
## 1186                                                                                                                                                                                                                                             046.Number of HS6 Products per Exporter: Median
## 1187                                                                                                                                                                                                                                             047.Number of HS6 Products per Exporter: StDev.
## 1188                                                                                                                                                                                                                                               048.Number of Destinations per Exporter: Mean
## 1189                                                                                                                                                                                                                                             049.Number of Destinations per Exporter: Median
## 1190                                                                                                                                                                                                                                             050.Number of Destinations per Exporter: StDev.
## 1191                                                                                                                                                                                                                                               051.Number of Exporters per HS6 Product: Mean
## 1192                                                                                                                                                                                                                                             052.Number of Exporters per HS6 Product: Median
## 1193                                                                                                                                                                                                                                             053.Number of Exporters per HS6 Product: StDev.
## 1194                                                                                                                                                                                                                                               054.Number of Exporters per Destination: Mean
## 1195                                                                                                                                                                                                                                             055.Number of Exporters per Destination: Median
## 1196                                                                                                                                                                                                                                             056.Number of Exporters per Destination: StDev.
## 1197                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 15-19 with no education
## 1198                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 15-19 with no education
## 1199                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 15+ with no education
## 1200                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 15+ with no education
## 1201                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 20-24 with no education
## 1202                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 20-24 with no education
## 1203                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 25-29 with no education
## 1204                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 25-29 with no education
## 1205                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 25+ with no education
## 1206                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 25+ with no education
## 1207                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 30-34 with no education
## 1208                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 30-34 with no education
## 1209                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 35-39 with no education
## 1210                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 35-39 with no education
## 1211                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 40-44 with no education
## 1212                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 40-44 with no education
## 1213                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 45-49 with no education
## 1214                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 45-49 with no education
## 1215                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 50-54 with no education
## 1216                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 50-54 with no education
## 1217                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 55-59 with no education
## 1218                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 55-59 with no education
## 1219                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 60-64 with no education
## 1220                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 60-64 with no education
## 1221                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 65-69 with no education
## 1222                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 65-69 with no education
## 1223                                                                                                                                                                                                                      Barro-Lee: Percentage of female population age 70-74 with no education
## 1224                                                                                                                                                                                                                             Barro-Lee: Percentage of population age 70-74 with no education
## 1225                                                                                                                                                                                                                        Barro-Lee: Percentage of female population age 75+ with no education
## 1226                                                                                                                                                                                                                               Barro-Lee: Percentage of population age 75+ with no education
## 1227                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 15-19, total
## 1228                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 15-19, female
## 1229                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 15+, total
## 1230                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 15+, female
## 1231                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 20-24, total
## 1232                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 20-24, female
## 1233                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 25-29, total
## 1234                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 25-29, female
## 1235                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 25+, total
## 1236                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 25+, female
## 1237                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 30-34, total
## 1238                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 30-34, female
## 1239                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 35-39, total
## 1240                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 35-39, female
## 1241                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 40-44, total
## 1242                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 40-44, female
## 1243                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 45-49, total
## 1244                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 45-49, female
## 1245                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 50-54, total
## 1246                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 50-54, female
## 1247                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 55-59, total
## 1248                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 55-59, female
## 1249                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 60-64, total
## 1250                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 60-64, female
## 1251                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 65-69, total
## 1252                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 65-69, female
## 1253                                                                                                                                                                                                                                        Barro-Lee: Population in thousands, age 70-74, total
## 1254                                                                                                                                                                                                                                       Barro-Lee: Population in thousands, age 70-74, female
## 1255                                                                                                                                                                                                                                          Barro-Lee: Population in thousands, age 75+, total
## 1256                                                                                                                                                                                                                                         Barro-Lee: Population in thousands, age 75+, female
## 1257                                                                                                                                                                                              Barro-Lee: Percentage of female population age 15-19 with primary schooling. Completed Primary
## 1258                                                                                                                                                                                                     Barro-Lee: Percentage of population age 15-19 with primary schooling. Completed Primary
## 1259                                                                                                                                                                                                Barro-Lee: Percentage of female population age 15+ with primary schooling. Completed Primary
## 1260                                                                                                                                                                                                       Barro-Lee: Percentage of population age 15+ with primary schooling. Completed Primary
## 1261                                                                                                                                                                                              Barro-Lee: Percentage of female population age 20-24 with primary schooling. Completed Primary
## 1262                                                                                                                                                                                                     Barro-Lee: Percentage of population age 20-24 with primary schooling. Completed Primary
## 1263                                                                                                                                                                                              Barro-Lee: Percentage of female population age 25-29 with primary schooling. Completed Primary
## 1264                                                                                                                                                                                                     Barro-Lee: Percentage of population age 25-29 with primary schooling. Completed Primary
## 1265                                                                                                                                                                                                Barro-Lee: Percentage of female population age 25+ with primary schooling. Completed Primary
## 1266                                                                                                                                                                                                       Barro-Lee: Percentage of population age 25+ with primary schooling. Completed Primary
## 1267                                                                                                                                                                                              Barro-Lee: Percentage of female population age 30-34 with primary schooling. Completed Primary
## 1268                                                                                                                                                                                                     Barro-Lee: Percentage of population age 30-34 with primary schooling. Completed Primary
## 1269                                                                                                                                                                                              Barro-Lee: Percentage of female population age 35-39 with primary schooling. Completed Primary
## 1270                                                                                                                                                                                                     Barro-Lee: Percentage of population age 35-39 with primary schooling. Completed Primary
## 1271                                                                                                                                                                                              Barro-Lee: Percentage of female population age 40-44 with primary schooling. Completed Primary
## 1272                                                                                                                                                                                                     Barro-Lee: Percentage of population age 40-44 with primary schooling. Completed Primary
## 1273                                                                                                                                                                                              Barro-Lee: Percentage of female population age 45-49 with primary schooling. Completed Primary
## 1274                                                                                                                                                                                                     Barro-Lee: Percentage of population age 45-49 with primary schooling. Completed Primary
## 1275                                                                                                                                                                                              Barro-Lee: Percentage of female population age 50-54 with primary schooling. Completed Primary
## 1276                                                                                                                                                                                                     Barro-Lee: Percentage of population age 50-54 with primary schooling. Completed Primary
## 1277                                                                                                                                                                                              Barro-Lee: Percentage of female population age 55-59 with primary schooling. Completed Primary
## 1278                                                                                                                                                                                                     Barro-Lee: Percentage of population age 55-59 with primary schooling. Completed Primary
## 1279                                                                                                                                                                                              Barro-Lee: Percentage of female population age 60-64 with primary schooling. Completed Primary
## 1280                                                                                                                                                                                                     Barro-Lee: Percentage of population age 60-64 with primary schooling. Completed Primary
## 1281                                                                                                                                                                                              Barro-Lee: Percentage of female population age 65-69 with primary schooling. Completed Primary
## 1282                                                                                                                                                                                                     Barro-Lee: Percentage of population age 65-69 with primary schooling. Completed Primary
## 1283                                                                                                                                                                                              Barro-Lee: Percentage of female population age 70-74 with primary schooling. Completed Primary
## 1284                                                                                                                                                                                                     Barro-Lee: Percentage of population age 70-74 with primary schooling. Completed Primary
## 1285                                                                                                                                                                                                Barro-Lee: Percentage of female population age 75+ with primary schooling. Completed Primary
## 1286                                                                                                                                                                                                       Barro-Lee: Percentage of population age 75+ with primary schooling. Completed Primary
## 1287                                                                                                                                                                       Barro-Lee: Percentage of female population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)
## 1288                                                                                                                                                                              Barro-Lee: Percentage of population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)
## 1289                                                                                                                                                                         Barro-Lee: Percentage of female population age 15+ with primary schooling. Total (Incomplete and Completed Primary)
## 1290                                                                                                                                                                                Barro-Lee: Percentage of population age 15+ with primary schooling. Total (Incomplete and Completed Primary)
## 1291                                                                                                                                                                       Barro-Lee: Percentage of female population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)
## 1292                                                                                                                                                                              Barro-Lee: Percentage of population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)
## 1293                                                                                                                                                                       Barro-Lee: Percentage of female population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)
## 1294                                                                                                                                                                              Barro-Lee: Percentage of population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)
## 1295                                                                                                                                                                         Barro-Lee: Percentage of female population age 25+ with primary schooling. Total (Incomplete and Completed Primary)
## 1296                                                                                                                                                                                Barro-Lee: Percentage of population age 25+ with primary schooling. Total (Incomplete and Completed Primary)
## 1297                                                                                                                                                                       Barro-Lee: Percentage of female population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)
## 1298                                                                                                                                                                              Barro-Lee: Percentage of population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)
## 1299                                                                                                                                                                       Barro-Lee: Percentage of female population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)
## 1300                                                                                                                                                                              Barro-Lee: Percentage of population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)
## 1301                                                                                                                                                                       Barro-Lee: Percentage of female population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)
## 1302                                                                                                                                                                              Barro-Lee: Percentage of population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)
## 1303                                                                                                                                                                       Barro-Lee: Percentage of female population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)
## 1304                                                                                                                                                                              Barro-Lee: Percentage of population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)
## 1305                                                                                                                                                                       Barro-Lee: Percentage of female population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)
## 1306                                                                                                                                                                              Barro-Lee: Percentage of population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)
## 1307                                                                                                                                                                       Barro-Lee: Percentage of female population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)
## 1308                                                                                                                                                                              Barro-Lee: Percentage of population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)
## 1309                                                                                                                                                                       Barro-Lee: Percentage of female population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)
## 1310                                                                                                                                                                              Barro-Lee: Percentage of population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)
## 1311                                                                                                                                                                       Barro-Lee: Percentage of female population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)
## 1312                                                                                                                                                                              Barro-Lee: Percentage of population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)
## 1313                                                                                                                                                                       Barro-Lee: Percentage of female population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)
## 1314                                                                                                                                                                              Barro-Lee: Percentage of population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)
## 1315                                                                                                                                                                         Barro-Lee: Percentage of female population age 75+ with primary schooling. Total (Incomplete and Completed Primary)
## 1316                                                                                                                                                                                Barro-Lee: Percentage of population age 75+ with primary schooling. Total (Incomplete and Completed Primary)
## 1317                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 15-19, total
## 1318                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 15-19, female
## 1319                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 15+, total
## 1320                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 15+, female
## 1321                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 20-24, total
## 1322                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 20-24, female
## 1323                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 25-29, total
## 1324                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 25-29, female
## 1325                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 25+, total
## 1326                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 25+, female
## 1327                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 30-34, total
## 1328                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 30-34, female
## 1329                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 35-39, total
## 1330                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 35-39, female
## 1331                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 40-44, total
## 1332                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 40-44, female
## 1333                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 45-49, total
## 1334                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 45-49, female
## 1335                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 50-54, total
## 1336                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 50-54, female
## 1337                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 55-59, total
## 1338                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 55-59, female
## 1339                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 60-64, total
## 1340                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 60-64, female
## 1341                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 65-69, total
## 1342                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 65-69, female
## 1343                                                                                                                                                                                                                             Barro-Lee: Average years of primary schooling, age 70-74, total
## 1344                                                                                                                                                                                                                            Barro-Lee: Average years of primary schooling, age 70-74, female
## 1345                                                                                                                                                                                                                               Barro-Lee: Average years of primary schooling, age 75+, total
## 1346                                                                                                                                                                                                                              Barro-Lee: Average years of primary schooling, age 75+, female
## 1347                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 15-19, total
## 1348                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 15-19, female
## 1349                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 15+, total
## 1350                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 15+, female
## 1351                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 20-24, total
## 1352                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 20-24, female
## 1353                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 25-29, total
## 1354                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 25-29, female
## 1355                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 25+, total
## 1356                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 25+, female
## 1357                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 30-34, total
## 1358                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 30-34, female
## 1359                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 35-39, total
## 1360                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 35-39, female
## 1361                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 40-44, total
## 1362                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 40-44, female
## 1363                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 45-49, total
## 1364                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 45-49, female
## 1365                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 50-54, total
## 1366                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 50-54, female
## 1367                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 55-59, total
## 1368                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 55-59, female
## 1369                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 60-64, total
## 1370                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 60-64, female
## 1371                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 65-69, total
## 1372                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 65-69, female
## 1373                                                                                                                                                                                                                               Barro-Lee: Average years of total schooling, age 70-74, total
## 1374                                                                                                                                                                                                                              Barro-Lee: Average years of total schooling, age 70-74, female
## 1375                                                                                                                                                                                                                                 Barro-Lee: Average years of total schooling, age 75+, total
## 1376                                                                                                                                                                                                                                Barro-Lee: Average years of total schooling, age 75+, female
## 1377                                                                                                                                                                                          Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Completed Secondary
## 1378                                                                                                                                                                                                 Barro-Lee: Percentage of population age 15-19 with secondary schooling. Completed Secondary
## 1379                                                                                                                                                                                            Barro-Lee: Percentage of female population age 15+ with secondary schooling. Completed Secondary
## 1380                                                                                                                                                                                                   Barro-Lee: Percentage of population age 15+ with secondary schooling. Completed Secondary
## 1381                                                                                                                                                                                          Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Completed Secondary
## 1382                                                                                                                                                                                                 Barro-Lee: Percentage of population age 20-24 with secondary schooling. Completed Secondary
## 1383                                                                                                                                                                                          Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Completed Secondary
## 1384                                                                                                                                                                                                 Barro-Lee: Percentage of population age 25-29 with secondary schooling. Completed Secondary
## 1385                                                                                                                                                                                            Barro-Lee: Percentage of female population age 25+ with secondary schooling. Completed Secondary
## 1386                                                                                                                                                                                                   Barro-Lee: Percentage of population age 25+ with secondary schooling. Completed Secondary
## 1387                                                                                                                                                                                          Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Completed Secondary
## 1388                                                                                                                                                                                                 Barro-Lee: Percentage of population age 30-34 with secondary schooling. Completed Secondary
## 1389                                                                                                                                                                                          Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Completed Secondary
## 1390                                                                                                                                                                                                 Barro-Lee: Percentage of population age 35-39 with secondary schooling. Completed Secondary
## 1391                                                                                                                                                                                          Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Completed Secondary
## 1392                                                                                                                                                                                                 Barro-Lee: Percentage of population age 40-44 with secondary schooling. Completed Secondary
## 1393                                                                                                                                                                                          Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Completed Secondary
## 1394                                                                                                                                                                                                 Barro-Lee: Percentage of population age 45-49 with secondary schooling. Completed Secondary
## 1395                                                                                                                                                                                          Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Completed Secondary
## 1396                                                                                                                                                                                                 Barro-Lee: Percentage of population age 50-54 with secondary schooling. Completed Secondary
## 1397                                                                                                                                                                                          Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Completed Secondary
## 1398                                                                                                                                                                                                 Barro-Lee: Percentage of population age 55-59 with secondary schooling. Completed Secondary
## 1399                                                                                                                                                                                          Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Completed Secondary
## 1400                                                                                                                                                                                                 Barro-Lee: Percentage of population age 60-64 with secondary schooling. Completed Secondary
## 1401                                                                                                                                                                                          Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Completed Secondary
## 1402                                                                                                                                                                                                 Barro-Lee: Percentage of population age 65-69 with secondary schooling. Completed Secondary
## 1403                                                                                                                                                                                          Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Completed Secondary
## 1404                                                                                                                                                                                                 Barro-Lee: Percentage of population age 70-74 with secondary schooling. Completed Secondary
## 1405                                                                                                                                                                                            Barro-Lee: Percentage of female population age 75+ with secondary schooling. Completed Secondary
## 1406                                                                                                                                                                                                   Barro-Lee: Percentage of population age 75+ with secondary schooling. Completed Secondary
## 1407                                                                                                                                                                   Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1408                                                                                                                                                                          Barro-Lee: Percentage of population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1409                                                                                                                                                                     Barro-Lee: Percentage of female population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1410                                                                                                                                                                            Barro-Lee: Percentage of population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1411                                                                                                                                                                   Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1412                                                                                                                                                                          Barro-Lee: Percentage of population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1413                                                                                                                                                                   Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1414                                                                                                                                                                          Barro-Lee: Percentage of population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1415                                                                                                                                                                     Barro-Lee: Percentage of female population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1416                                                                                                                                                                            Barro-Lee: Percentage of population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1417                                                                                                                                                                   Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1418                                                                                                                                                                          Barro-Lee: Percentage of population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1419                                                                                                                                                                   Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1420                                                                                                                                                                          Barro-Lee: Percentage of population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1421                                                                                                                                                                   Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1422                                                                                                                                                                          Barro-Lee: Percentage of population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1423                                                                                                                                                                   Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1424                                                                                                                                                                          Barro-Lee: Percentage of population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1425                                                                                                                                                                   Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1426                                                                                                                                                                          Barro-Lee: Percentage of population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1427                                                                                                                                                                   Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1428                                                                                                                                                                          Barro-Lee: Percentage of population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1429                                                                                                                                                                   Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1430                                                                                                                                                                          Barro-Lee: Percentage of population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1431                                                                                                                                                                   Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1432                                                                                                                                                                          Barro-Lee: Percentage of population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1433                                                                                                                                                                   Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1434                                                                                                                                                                          Barro-Lee: Percentage of population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)
## 1435                                                                                                                                                                     Barro-Lee: Percentage of female population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1436                                                                                                                                                                            Barro-Lee: Percentage of population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)
## 1437                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 15-19, total
## 1438                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 15-19, female
## 1439                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 15+, total
## 1440                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 15+, female
## 1441                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 20-24, total
## 1442                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 20-24, female
## 1443                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 25-29, total
## 1444                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 25-29, female
## 1445                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 25+, total
## 1446                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 25+, female
## 1447                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 30-34, total
## 1448                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 30-34, female
## 1449                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 35-39, total
## 1450                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 35-39, female
## 1451                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 40-44, total
## 1452                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 40-44, female
## 1453                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 45-49, total
## 1454                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 45-49, female
## 1455                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 50-54, total
## 1456                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 50-54, female
## 1457                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 55-59, total
## 1458                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 55-59, female
## 1459                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 60-64, total
## 1460                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 60-64, female
## 1461                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 65-69, total
## 1462                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 65-69, female
## 1463                                                                                                                                                                                                                           Barro-Lee: Average years of secondary schooling, age 70-74, total
## 1464                                                                                                                                                                                                                          Barro-Lee: Average years of secondary schooling, age 70-74, female
## 1465                                                                                                                                                                                                                             Barro-Lee: Average years of secondary schooling, age 75+, total
## 1466                                                                                                                                                                                                                            Barro-Lee: Average years of secondary schooling, age 75+, female
## 1467                                                                                                                                                                                            Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Completed Tertiary
## 1468                                                                                                                                                                                                   Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Completed Tertiary
## 1469                                                                                                                                                                                              Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Completed Tertiary
## 1470                                                                                                                                                                                                     Barro-Lee: Percentage of population age 15+ with tertiary schooling. Completed Tertiary
## 1471                                                                                                                                                                                            Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Completed Tertiary
## 1472                                                                                                                                                                                                   Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Completed Tertiary
## 1473                                                                                                                                                                                            Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Completed Tertiary
## 1474                                                                                                                                                                                                   Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Completed Tertiary
## 1475                                                                                                                                                                                              Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Completed Tertiary
## 1476                                                                                                                                                                                                     Barro-Lee: Percentage of population age 25+ with tertiary schooling. Completed Tertiary
## 1477                                                                                                                                                                                            Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Completed Tertiary
## 1478                                                                                                                                                                                                   Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Completed Tertiary
## 1479                                                                                                                                                                                            Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Completed Tertiary
## 1480                                                                                                                                                                                                   Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Completed Tertiary
## 1481                                                                                                                                                                                            Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Completed Tertiary
## 1482                                                                                                                                                                                                   Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Completed Tertiary
## 1483                                                                                                                                                                                            Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Completed Tertiary
## 1484                                                                                                                                                                                                   Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Completed Tertiary
## 1485                                                                                                                                                                                            Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Completed Tertiary
## 1486                                                                                                                                                                                                   Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Completed Tertiary
## 1487                                                                                                                                                                                            Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Completed Tertiary
## 1488                                                                                                                                                                                                   Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Completed Tertiary
## 1489                                                                                                                                                                                            Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Completed Tertiary
## 1490                                                                                                                                                                                                   Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Completed Tertiary
## 1491                                                                                                                                                                                            Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Completed Tertiary
## 1492                                                                                                                                                                                                   Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Completed Tertiary
## 1493                                                                                                                                                                                            Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Completed Tertiary
## 1494                                                                                                                                                                                                   Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Completed Tertiary
## 1495                                                                                                                                                                                              Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Completed Tertiary
## 1496                                                                                                                                                                                                     Barro-Lee: Percentage of population age 75+ with tertiary schooling. Completed Tertiary
## 1497                                                                                                                                                                     Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1498                                                                                                                                                                            Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1499                                                                                                                                                                       Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1500                                                                                                                                                                              Barro-Lee: Percentage of population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1501                                                                                                                                                                     Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1502                                                                                                                                                                            Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1503                                                                                                                                                                     Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1504                                                                                                                                                                            Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1505                                                                                                                                                                       Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1506                                                                                                                                                                              Barro-Lee: Percentage of population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1507                                                                                                                                                                     Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1508                                                                                                                                                                            Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1509                                                                                                                                                                     Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1510                                                                                                                                                                            Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1511                                                                                                                                                                     Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1512                                                                                                                                                                            Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1513                                                                                                                                                                     Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1514                                                                                                                                                                            Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1515                                                                                                                                                                     Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1516                                                                                                                                                                            Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1517                                                                                                                                                                     Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1518                                                                                                                                                                            Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1519                                                                                                                                                                     Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1520                                                                                                                                                                            Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1521                                                                                                                                                                     Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1522                                                                                                                                                                            Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1523                                                                                                                                                                     Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1524                                                                                                                                                                            Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1525                                                                                                                                                                       Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1526                                                                                                                                                                              Barro-Lee: Percentage of population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)
## 1527                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 15-19, total
## 1528                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 15-19, female
## 1529                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 15+, total
## 1530                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 15+, female
## 1531                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 20-24, total
## 1532                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 20-24, female
## 1533                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 25-29, total
## 1534                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 25-29, female
## 1535                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 25+, total
## 1536                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 25+, female
## 1537                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 30-34, total
## 1538                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 30-34, female
## 1539                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 35-39, total
## 1540                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 35-39, female
## 1541                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 40-44, total
## 1542                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 40-44, female
## 1543                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 45-49, total
## 1544                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 45-49, female
## 1545                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 50-54, total
## 1546                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 50-54, female
## 1547                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 55-59, total
## 1548                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 55-59, female
## 1549                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 60-64, total
## 1550                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 60-64, female
## 1551                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 65-69, total
## 1552                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 65-69, female
## 1553                                                                                                                                                                                                                            Barro-Lee: Average years of tertiary schooling, age 70-74, total
## 1554                                                                                                                                                                                                                           Barro-Lee: Average years of tertiary schooling, age 70-74, female
## 1555                                                                                                                                                                                                                              Barro-Lee: Average years of tertiary schooling, age 75+, total
## 1556                                                                                                                                                                                                                             Barro-Lee: Average years of tertiary schooling, age 75+, female
## 1557                                                                                                                                                                                                                                                                Trade in services (% of GDP)
## 1558                                                                                                                                                                                                                                                 Gross private capital flows (% of GDP, PPP)
## 1559                                                                                                                                                                                                                                                      Gross private capital flows (% of GDP)
## 1560                                                                                                                                                                                                                                             Gross foreign direct investment (% of GDP, PPP)
## 1561                                                                                                                                                                                                                                                  Gross foreign direct investment (% of GDP)
## 1562                                                                                                                                                                                                                                    Education workers, as a share of public formal employees
## 1563                                                                                                                                                                                                                                       Health workers, as a share of public formal employees
## 1564                                                                                                                                                                                                           Public sector employment, as a share of formal employment, by industry: Education
## 1565                                                                                                                                                                                                              Public sector employment, as a share of formal employment, by industry: Health
## 1566                                                                                                                                                                                                                         Public adminstration workers, as a share of public formal employees
## 1567                                                                                                                                                                                                                                   Public sector employment, as a share of formal employment
## 1568                                                                                                                                                                                                       Public sector female employment, as a share of paid employment by industry: Education
## 1569                                                                                                                                                                                                          Public sector female employment, as a share of paid employment by industry: Health
## 1570                                                                                                                                                                                                                                      Education workers, as a share of public paid employees
## 1571                                                                                                                                                                                                                                         Health workers, as a share of public paid employees
## 1572                                                                                                                                                                                                             Public sector employment, as a share of paid employment, by industry: Education
## 1573                                                                                                                                                                                                                   Public sector employment, as a share of paid employment by gender: Female
## 1574                                                                                                                                                                                                                Public sector employment, as a share of paid employment, by industry: Health
## 1575                                                                                                                                                                                                                     Public sector employment, as a share of paid employment by gender: Male
## 1576                                                                                                                                                                                                                           Public adminstration workers, as a share of public paid employees
## 1577                                                                                                                                                                                                                  Public sector employment, as a share of paid employment by location: Rural
## 1578                                                                                                                                                                                                                  Public sector employment, as a share of paid employment by location: Urban
## 1579                                                                                                                                                                                                                                     Public sector employment, as a share of paid employment
## 1580                                                                                                                                                                                                                                     Education workers, as a share of public total employees
## 1581                                                                                                                                                                                                                                        Health workers, as a share of public total employees
## 1582                                                                                                                                                                                                                                                              Number of employed individuals
## 1583                                                                                                                                                                                                                                        Number of employed employees, by industry: Education
## 1584                                                                                                                                                                                                                                           Number of employed employees, by industry: Health
## 1585                                                                                                                                                                                                                             Number of employed employees, by industry: Public adminstration
## 1586                                                                                                                                                                                                            Public sector employment, as a share of total employment, by industry: Education
## 1587                                                                                                                                                                                                                  Public sector employment, as a share of total employment by gender: Female
## 1588                                                                                                                                                                                                               Public sector employment, as a share of total employment, by industry: Health
## 1589                                                                                                                                                                                                                    Public sector employment, as a share of total employment by gender: Male
## 1590                                                                                                                                                                                                                          Public adminstration workers, as a share of public total employees
## 1591                                                                                                                                                                                                                 Public sector employment, as a share of total employment by location: Rural
## 1592                                                                                                                                                                                                              Proportion of total employees with tertiary education working in public sector
## 1593                                                                                                                                                                                                                 Public sector employment, as a share of total employment by location: Urban
## 1594                                                                                                                                                                                                                                    Public sector employment, as a share of total employment
## 1595                                                                                                                                                                                                                                                                                 Sample size
## 1596                                                                                                                                                                                                                                 Median age of public paid employees, by industry: Education
## 1597                                                                                                                                                                                                                                   Mean age of public paid employees, by industry: Education
## 1598                                                                                                                                                                                                                                    Median age of public paid employees, by industry: Health
## 1599                                                                                                                                                                                                                                      Mean age of public paid employees, by industry: Health
## 1600                                                                                                                                                                                                                                                         Median age of public paid employees
## 1601                                                                                                                                                                                                                      Median age of public paid employees, by industry: Public adminstration
## 1602                                                                                                                                                                                                                        Mean age of public paid employees, by industry: Public adminstration
## 1603                                                                                                                                                                                                                                                           Mean age of public paid employees
## 1604                                                                                                                                                                                                                                Median age of private paid employees, by industry: Education
## 1605                                                                                                                                                                                                                                  Mean age of private paid employees, by industry: Education
## 1606                                                                                                                                                                                                                                   Median age of private paid employees, by industry: Health
## 1607                                                                                                                                                                                                                                     Mean age of private paid employees, by industry: Health
## 1608                                                                                                                                                                                                                                                        Median age of private paid employees
## 1609                                                                                                                                                                                                                                                          Mean age of private paid employees
## 1610                                                                                                                                                                                        Cross-country public sector pay comparison ratio, by occupation: Government economist (using median)
## 1611                                                                                                                                                                                          Cross-country public sector pay comparison ratio, by occupation: Government economist (using mean)
## 1612                                                                                                                                                                                             Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using median)
## 1613                                                                                                                                                                                               Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using mean)
## 1614                                                                                                                                                                                              Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using median)
## 1615                                                                                                                                                                                                Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using mean)
## 1616                                                                                                                                                                                                       Cross-country public sector pay comparison ratio, by occupation: Judge (using median)
## 1617                                                                                                                                                                                                         Cross-country public sector pay comparison ratio, by occupation: Judge (using mean)
## 1618                                                                                                                                                                                              Cross-country public sector pay comparison ratio, by occupation: Police officer (using median)
## 1619                                                                                                                                                                                                Cross-country public sector pay comparison ratio, by occupation: Police officer (using mean)
## 1620                                                                                                                                                                                      Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using median)
## 1621                                                                                                                                                                                        Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using mean)
## 1622                                                                                                                                                                                             Cross-country public sector pay comparison ratio, by occupation: Senior official (using median)
## 1623                                                                                                                                                                                               Cross-country public sector pay comparison ratio, by occupation: Senior official (using mean)
## 1624                                                                                                                                                                                    Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using median)
## 1625                                                                                                                                                                                      Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using mean)
## 1626                                                                                                                                                                                          Cross-country public sector pay comparison ratio, by occupation: University teacher (using median)
## 1627                                                                                                                                                                                            Cross-country public sector pay comparison ratio, by occupation: University teacher (using mean)
## 1628                                                                                                                                                                                                                         Females, as a share of private paid employees by occupation: Clerks
## 1629                                                                                                                                                                                                                                             Share of private paid employees with a contract
## 1630                                                                                                                                                                                                          Females, as a share of private paid employees by occupation: Elementary occupation
## 1631                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 1
## 1632                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 2
## 1633                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 3
## 1634                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 4
## 1635                                                                                                                                                                                                                  Females, as a share of private paid employees by wage quintile: Quintile 5
## 1636                                                                                                                                                                                                                                               Females, as a share of private paid employees
## 1637                                                                                                                                                                                                                                       Share of private paid employees with health insurance
## 1638                                                                                                                                                                                                                          Individuals with no education as a share of private paid employees
## 1639                                                                                                                                                                                                                  Females, as a share of private paid employees by occupation: Professionals
## 1640                                                                                                                                                                                                                     Individuals with primary education as a share of private paid employees
## 1641                                                                                                                                                                                                                                       Rural residents, as a share of private paid employees
## 1642                                                                                                                                                                                                                   Individuals with secondary education as a share of private paid employees
## 1643                                                                                                                                                                                                                       Females, as a share of private paid employees by occupation: Managers
## 1644                                                                                                                                                                                                                                        Share of private paid employees with social security
## 1645                                                                                                                                                                                                                    Females, as a share of private paid employees by occupation: Technicians
## 1646                                                                                                                                                                                            Individuals with tertiary education as a share of private paid employees, by industry: Education
## 1647                                                                                                                                                                                               Individuals with tertiary education as a share of private paid employees, by industry: Health
## 1648                                                                                                                                                                                                                    Individuals with tertiary education as a share of private paid employees
## 1649                                                                                                                                                                                                                                       Share of private paid employees with union membership
## 1650                                                                                                                                                                                                                          Females, as a share of public paid employees by occupation: Clerks
## 1651                                                                                                                                                                                                                                              Share of public paid employees with a contract
## 1652                                                                                                                                                                                                                         Females, as a share of public paid employees by industry: Education
## 1653                                                                                                                                                                                                           Females, as a share of public paid employees by occupation: Elementary occupation
## 1654                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 1
## 1655                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 2
## 1656                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 3
## 1657                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 4
## 1658                                                                                                                                                                                                                   Females, as a share of public paid employees by wage quintile: Quintile 5
## 1659                                                                                                                                                                                                                                                Females, as a share of public paid employees
## 1660                                                                                                                                                                                                                            Females, as a share of public paid employees by industry: Health
## 1661                                                                                                                                                                                                                                        Share of public paid employees with health insurance
## 1662                                                                                                                                                                                                                           Individuals with no education as a share of public paid employees
## 1663                                                                                                                                                                                                                                                             Number of public paid employees
## 1664                                                                                                                                                                                                                                     Number of public paid employees, by industry: Education
## 1665                                                                                                                                                                                                                                        Number of public paid employees, by industry: Health
## 1666                                                                                                                                                                                                                          Number of public paid employees, by industry: Public adminstration
## 1667                                                                                                                                                                                                              Females, as a share of public paid employees by industry: Public adminstration
## 1668                                                                                                                                                                                                                   Females, as a share of public paid employees by occupation: Professionals
## 1669                                                                                                                                                                                                                      Individuals with primary education as a share of public paid employees
## 1670                                                                                                                                                                                                                Rural residents, as a share of public paid employees, by industry: Education
## 1671                                                                                                                                                                                                                   Rural residents, as a share of public paid employees, by industry: Health
## 1672                                                                                                                                                                                                     Rural residents, as a share of public paid employees, by industry: Public adminstration
## 1673                                                                                                                                                                                                                                        Rural residents, as a share of public paid employees
## 1674                                                                                                                                                                                                                    Individuals with secondary education as a share of public paid employees
## 1675                                                                                                                                                                                                                        Females, as a share of public paid employees by occupation: Managers
## 1676                                                                                                                                                                                                                                         Share of public paid employees with social security
## 1677                                                                                                                                                                                                                     Females, as a share of public paid employees by occupation: Technicians
## 1678                                                                                                                                                                                             Individuals with tertiary education as a share of public paid employees, by industry: Education
## 1679                                                                                                                                                                                                Individuals with tertiary education as a share of public paid employees, by industry: Health
## 1680                                                                                                                                                                                  Individuals with tertiary education as a share of public paid employees, by industry: Public adminstration
## 1681                                                                                                                                                                                                                     Individuals with tertiary education as a share of public paid employees
## 1682                                                                                                                                                                                                                                        Share of public paid employees with union membership
## 1683                                                                                                                                                                                                                                                                    Number of paid employees
## 1684                                                                                                                                                                                                                                            Number of paid employees, by industry: Education
## 1685                                                                                                                                                                                                                                               Number of paid employees, by industry: Health
## 1686                                                                                                                                                                                                                                 Number of paid employees, by industry: Public adminstration
## 1687                                                                                                                                                                                            Pay compression ratio in public sector, by occupation: Government economist (clerk as reference)
## 1688                                                                                                                                                                                                 Pay compression ratio in public sector, by occupation: Hospital doctor (clerk as reference)
## 1689                                                                                                                                                                                                  Pay compression ratio in public sector, by occupation: Hospital nurse (clerk as reference)
## 1690                                                                                                                                                                                                           Pay compression ratio in public sector, by occupation: Judge (clerk as reference)
## 1691                                                                                                                                                                                                  Pay compression ratio in public sector, by occupation: Police officer (clerk as reference)
## 1692                                                                                                                                                                                          Pay compression ratio in public sector, by occupation: Primary school teacher (clerk as reference)
## 1693                                                                                                                                                                                                Pay compression ratio in public sector, by occupation: Senior officials (clerk as reference)
## 1694                                                                                                                                                                                        Pay compression ratio in public sector, by occupation: Secondary school teacher (clerk as reference)
## 1695                                                                                                                                                                                              Pay compression ratio in public sector, by occupation: University teacher (clerk as reference)
## 1696                                                                                                                                                                                                              Pay compression ratio in public sector (ratio of 90th/10th percentile earners)
## 1697                                                                                                                                                                                                             Pay compression ratio in private sector (ratio of 90th/10th percentile earners)
## 1698                                                                                                                                                                                                      Public sector wage premium, by industry: Education (compared to formal wage employees)
## 1699                                                                                                                                                                                                      Public sector wage premium, by industry: Education (compared to all private employees)
## 1700                                                                                                                                                                                            Public sector wage premium for females, by industry: Education (compared to paid wage employees)
## 1701                                                                                                                                                                                               Public sector wage premium for females, by industry: Health (compared to paid wage employees)
## 1702                                                                                                                                                                                                         Public sector wage premium, by industry: Health (compared to formal wage employees)
## 1703                                                                                                                                                                                                         Public sector wage premium, by industry: Health (compared to all private employees)
## 1704                                                                                                                                                                                              Public sector wage premium for males, by industry: Education (compared to paid wage employees)
## 1705                                                                                                                                                                                                 Public sector wage premium for males, by industry: Health (compared to paid wage employees)
## 1706                                                                                                                                                                                                                              Public sector wage premium (compared to formal wage employees)
## 1707                                                                                                                                                                                                       Public sector wage premium, by occupation: Clerks (compared to formal wage employees)
## 1708                                                                                                                                                                                                 P-Value: Public sector wage premium, by education level (compared to formal wage employees)
## 1709                                                                                                                                                                                             P-Value: Public sector wage premium, by industry: Education (compared to all private employees)
## 1710                                                                                                                                                                                             P-Value: Public sector wage premium, by industry: Education (compared to formal wage employees)
## 1711                                                                                                                                                                                        Public sector wage premium, by occupation: Elementary occupation (compared to formal wage employees)
## 1712                                                                                                                                                                                                           Public sector wage premium, by gender: Female (compared to all private employees)
## 1713                                                                                                                                                                                   P-Value: Public sector wage premium for females, by industry: Education (compared to paid wage employees)
## 1714                                                                                                                                                                                      P-Value: Public sector wage premium for females, by industry: Health (compared to paid wage employees)
## 1715                                                                                                                                                                                                                     P-Value: Public sector wage premium (compared to formal wage employees)
## 1716                                                                                                                                                                                                          P-Value: Public sector wage premium, by gender (compared to all private employees)
## 1717                                                                                                                                                                                 P-Value: Gender wage premium in the public sector, by industry: Education (compared to male paid employees)
## 1718                                                                                                                                                                                    P-Value: Gender wage premium in the public sector, by industry: Health (compared to male paid employees)
## 1719                                                                                                                                                                      P-Value: Gender wage premium in the public sector, by industry: Public adminstration (compared to male paid employees)
## 1720                                                                                                                                                                                                                              Public sector wage premium (compared to all private employees)
## 1721                                                                                                                                                                                                P-Value: Public sector wage premium, by industry: Health (compared to all private employees)
## 1722                                                                                                                                                                                                P-Value: Public sector wage premium, by industry: Health (compared to formal wage employees)
## 1723                                                                                                                                                                                                             Public sector wage premium, by gender: Male (compared to all private employees)
## 1724                                                                                                                                                                                     P-Value: Public sector wage premium for males, by industry: Education (compared to paid wage employees)
## 1725                                                                                                                                                                                        P-Value: Public sector wage premium for males, by industry: Health (compared to paid wage employees)
## 1726                                                                                                                                                                                            Public sector wage premium, by education level: No education (compared to formal wage employees)
## 1727                                                                                                                                                                                                      P-Value: Public sector wage premium, by occupation (compared to formal wage employees)
## 1728                                                                                                                                                                                                Public sector wage premium, by occupation: Professionals (compared to formal wage employees)
## 1729                                                                                                                                                                                       Public sector wage premium, by education level: Primary education (compared to formal wage employees)
## 1730                                                                                                                                                                                                                     P-Value: Public sector wage premium (compared to all private employees)
## 1731                                                                                                                                                                                     Public sector wage premium, by education level: Secondary education (compared to formal wage employees)
## 1732                                                                                                                                                                                                     Public sector wage premium, by occupation: Managers (compared to formal wage employees)
## 1733                                                                                                                                                                                                  Public sector wage premium, by occupation: Technicians (compared to formal wage employees)
## 1734                                                                                                                                                                                      Public sector wage premium, by education level: Tertiary education (compared to formal wage employees)
## 1735                                                                                                                                                                                P-Value: Gender wage premium in the private sector, by industry: Education (compared to male paid employees)
## 1736                                                                                                                                                                                   P-Value: Gender wage premium in the private sector, by industry: Health (compared to male paid employees)
## 1737                                                                                                                                                                                         Gender wage premium in the private sector, by industry: Education (compared to male paid employees)
## 1738                                                                                                                                                                                                                              Female to male wage ratio in the private sector (using median)
## 1739                                                                                                                                                                                                                                Female to male wage ratio in the private sector (using mean)
## 1740                                                                                                                                                                                            Gender wage premium in the private sector, by industry: Health (compared to male paid employees)
## 1741                                                                                                                                                                                                                 Relative wage of Professionals (using clerk as reference) in private sector
## 1742                                                                                                                                                                                                                      Relative wage of Managers (using clerk as reference) in private sector
## 1743                                                                                                                                                                                                                   Relative wage of Technicians (using clerk as reference) in private sector
## 1744                                                                                                                                                                                          Gender wage premium in the public sector, by industry: Education (compared to male paid employees)
## 1745                                                                                                                                                                                                                               Female to male wage ratio in the public sector (using median)
## 1746                                                                                                                                                                                                                                 Female to male wage ratio in the public sector (using mean)
## 1747                                                                                                                                                                                             Gender wage premium in the public sector, by industry: Health (compared to male paid employees)
## 1748                                                                                                                                                                               Gender wage premium in the public sector, by industry: Public adminstration (compared to male paid employees)
## 1749                                                                                                                                                                                                                  Relative wage of Professionals (using clerk as reference) in public sector
## 1750                                                                                                                                                                                                                       Relative wage of Managers (using clerk as reference) in public sector
## 1751                                                                                                                                                                                                                    Relative wage of Technicians (using clerk as reference) in public sector
## 1752                                                                                                                                                                                                                                                            Wage bill as a percentage of GDP
## 1753                                                                                                                                                                                                                                            Wage bill as a percentage of public expenditures
## 1754                                                                                                                                                                                                                                           Agricultural tractors, exports (FAO, current US$)
## 1755                                                                                                                                                                                                                                                              Agricultural tractors, exports
## 1756                                                                                                                                                                                                                                                           Cereal exports (FAO, current US$)
## 1757                                                                                                                                                                                                                                                       Cereal exports quantity (FAO, tonnes)
## 1758                                                                                                                                                                                                                                                  Forest products imports (FAO, current US$)
## 1759                                                                                                                                                                                                                                             Hazardous pesticides imports (FAO, current US$)
## 1760                                                                                                                                                                                                                                                       Pesticides imports (FAO, current US$)
## 1761                                                                                                                                                                                                                                              Food imports excluding fish (FAO, current US$)
## 1762                                                                                                                                                                                                                                               Total agricultural imports (FAO, current US$)
## 1763                                                                                                                                                                                                                                  Communications, computer, etc. (% of service imports, BoP)
## 1764                                                                                                                                                                                                                                         Communications services, imports (BoP, current US$)
## 1765                                                                                                                                                                                                                                                  Primary income payments (BoP, current US$)
## 1766                                                                                                                                                                                                                                              Financial services, imports (BoP, current US$)
## 1767                                                                                                                                                                                                                                                    Other income payments (BoP, current US$)
## 1768                                                                                                                                                                                                                                            Imports of goods and services (BoP, current US$)
## 1769                                                                                                                                                                                                                                Insurance and financial services (% of service imports, BoP)
## 1770                                                                                                                                                                                                                                              Insurance services, imports (BoP, current US$)
## 1771                                                                                                                                                                                                                                                            Goods imports (BoP, current US$)
## 1772                                                                                                                                                                                                                                            Merchandise imports (BOP): percentage of GDP (%)
## 1773                                                                                                                                                                                                                                                          Service imports (BoP, current US$)
## 1774                                                                                                                                                                                                                                                          Other services, imports (BoP, US$)
## 1775                                                                                                                                                                                                                   Charges for the use of intellectual property, payments (BoP, current US$)
## 1776                                                                                                                                                                                                                                             Imports of  total services (Debit, current US$)
## 1777                                                                                                                                                                                                                            Imports of goods, services and primary income (BoP, current US$)
## 1778                                                                                                                                                                                                                                              Transport services, imports (BoP, current US$)
## 1779                                                                                                                                                                                                                                              Transport services (% of service imports, BoP)
## 1780                                                                                                                                                                                                                                                 Travel services, imports (BoP, current US$)
## 1781                                                                                                                                                                                                                                                 Travel services (% of service imports, BoP)
## 1782                                                                                                                                                                                                         Foreign direct investment, net outflows by reporting economy (IMF-BoP, current US$)
## 1783                                                                                                                                                                                                                                  Foreign direct investment, net outflows (BoP, current US$)
## 1784                                                                                                                                                                                                                                          Foreign direct investment, net outflows (% of GDP)
## 1785                                                                                                                                                                                                                                          Foreign direct investment, net outflows (% of GDP)
## 1786                                                                                                                                                                                                                                                          Factor Service Payments (US$, BoP)
## 1787                                                                                                                                                                                                                                                     Non-Factor Services Payments (US$, BoP)
## 1788                                                                                                                                                                                                                                              Current transfers, payments (BoP, current US$)
## 1789                                                                                                                                                                                                                                                   Migrant remittance outflows (current US$)
## 1790                                                                                                                                                                                                                                     Official current transfers, payments (BoP, current US$)
## 1791                                                                                                                                                                                                                                Secondary income, other sectors, payments (BoP, current US$)
## 1792                                                                                                                                                                                                                                           Workers' remittances, payments (BoP, current US$)
## 1793                                                                                                                                                                                                                                                    Personal remittances, paid (current US$)
## 1794                                                                                                                                                                                                                                              Private current transfers, payments (BoP, US$)
## 1795                                                                                                                                                                                                                                             Current Acc. Bal. after Off. Transf. (US$, BoP)
## 1796                                                                                                                                                                                                                                        Current Account Balance after off. trans. (US$, BoP)
## 1797                                                                                                                                                                                                                                                  Current account balance (BoP, current US$)
## 1798                                                                                                                                                                                                                                                          Current account balance (% of GDP)
## 1799                                                                                                                                                                                                                                                          Current account balance (% of GDP)
## 1800                                                                                                                                                                                                                                                          Current account balance (% of GNP)
## 1801                                                                                                                                                                                                                                             Current Acc. Bal. before Off. Transf.(US$, BoP)
## 1802                                                                                                                                                                                                                                          Curr. acc. bal. before official transf. (% of GDP)
## 1803                                                                                                                                                                                                                                                 Current Account Balance (IMF def)(US$, BoP)
## 1804                                                                                                                                                                                                                                                     Total Deficit to be Financed (US$, BoP)
## 1805                                                                                                                                                                                                                    Current account balance excluding net official capital grants (% of GDP)
## 1806                                                                                                                                                                                                                                                    Debt service not paid (BoP, current US$)
## 1807                                                                                                                                                                                                                              Debt Service not paid: Arrears Accumulation (BoP, current US$)
## 1808                                                                                                                                                                                                                                                    Net financial account (BoP, current US$)
## 1809                                                                                                                                                                                                                                                             Net private capital flows (US$)
## 1810                                                                                                                                                                                                                                                       Net primary income (BoP, current US$)
## 1811                                                                                                                                                                                                                                                                       Net income (% of GDP)
## 1812                                                                                                                                                                                                                                          Net trade in goods and services (BoP, current US$)
## 1813                                                                                                                                                                                                                                                       Net trade in goods (BoP, current US$)
## 1814                                                                                                                                                                                                                                                 Net errors and omissions (BoP, current US$)
## 1815                                                                                                                                                                                                                                     Capital flows not elsewhere included (BoP, current US$)
## 1816                                                                                                                                                                                                                                                 Other capital flows, net (BoP, current US$)
## 1817                                                                                                                                                                                                                                                      Other Capital Inflows (net) (US$, BoP)
## 1818                                                                                                                                                                                                                                           Foreign direct investment, net (BoP, current US$)
## 1819                                                                                                                                                                                                                                                Foreign direct investment, net inflows (US$)
## 1820                                                                                                                                                                                                                                                        Foreign direct investment (% of GDP)
## 1821                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDI)
## 1822                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1823                                                                                                                                                                                                                                                  Net long-term borrowing (BoP, current US$)
## 1824                                                                                                                                                                                                                                                             Other net investment (BoP, US$)
## 1825                                                                                                                                                                                                                                             Other long-term inflows, net (BoP, current US$)
## 1826                                                                                                                                                                                                                                             Private capital flows, total (BoP, current US$)
## 1827                                                                                                                                                                                                                                         Private capital flows, net total (DRS, current US$)
## 1828                                                                                                                                                                                                                                                     Private capital flows, total (% of GDP)
## 1829                                                                                                                                                                                                                                                Portfolio Investment, net (BoP, current US$)
## 1830                                                                                                                                                                                                                                                    Other Long-Term Inflows (net) (US$, BoP)
## 1831                                                                                                                                                                                                                                                   Net direct and portfolio investment (US$)
## 1832                                                                                                                                                                                                                                                   Long-Term Capital Inflow (net) (US$, BoP)
## 1833                                                                                                                                                                                                                                                    Long-Term Capital Inflow, net (US$, BoP)
## 1834                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1835                                                                                                                                                                                                                                                       Reserves and related items (BoP, US$)
## 1836                                                                                                                                                                                                                                               Reserves and related items (BoP, current US$)
## 1837                                                                                                                                                                                                                                                Change in Reserves (- = increase) (US$, BoP)
## 1838                                                                                                                                                                                                                                                     Net secondary income (BoP, current US$)
## 1839                                                                                                                                                                                                                                                            Net current transfers (% of GDP)
## 1840                                                                                                                                                                                                                                                      Net capital account (BoP, current US$)
## 1841                                                                                                                                                                                                                                          Official current transfers, net (BoP, current US$)
## 1842                                                                                                                                                                                                                                                      Net Official Capital Grants (US$, BoP)
## 1843                                                                                                                                                                                                                                                         Official Transfers (net) (US$, BoP)
## 1844                                                                                                                                                                                                                                                          Official Transfers, net (US$, BoP)
## 1845                                                                                                                                                                                                                                           Private current transfers, net (BoP, current US$)
## 1846                                                                                                                                                                                                                                                Workers' remittances, net (BoP, current US$)
## 1847                                                                                                                                                                                                                                                     Personal remittances, net (current US$)
## 1848                                                                                                                                                                                                                                                   Private current transfers, net (BoP, US$)
## 1849                                                                                                                                                                                                                              Grants (disbursements) from new commitments (BoP, current US$)
## 1850                                                                                                                                                                                                                                                     BPK Audit Report on Sub-National Budget
## 1851                                                                                                                                                                                                                                           Agricultural tractors, imports (FAO, current US$)
## 1852                                                                                                                                                                                                                                                              Agricultural tractors, imports
## 1853                                                                                                                                                                                                                                                           Cereal imports (FAO, current US$)
## 1854                                                                                                                                                                                                                                                       Cereal imports quantity (FAO, tonnes)
## 1855                                                                                                                                                                                                                                                  Forest products exports (FAO, current US$)
## 1856                                                                                                                                                                                                                                             Hazardous pesticides exports (FAO, current US$)
## 1857                                                                                                                                                                                                                                                       Pesticides exports (FAO, current US$)
## 1858                                                                                                                                                                                                                                              Food exports excluding fish (FAO, current US$)
## 1859                                                                                                                                                                                                                                       Grants, excluding technical cooperation (current US$)
## 1860                                                                                                                                                                                                                                  Grants, excluding technical cooperation (BoP, current US$)
## 1861                                                                                                                                                                                                                                                  Technical cooperation grants (current US$)
## 1862                                                                                                                                                                                                                                             Technical cooperation grants (BoP, current US$)
## 1863                                                                                                                                                                                                                                               Total agricultural exports (FAO, current US$)
## 1864                                                                                                                                                                                                                                                      ICT service exports (BoP, current US$)
## 1865                                                                                                                                                                                                                                             ICT service exports (% of service exports, BoP)
## 1866                                                                                                                                                                                                                                  Communications, computer, etc. (% of service exports, BoP)
## 1867                                                                                                                                                                                                                                         Communications services, exports (BoP, current US$)
## 1868                                                                                                                                                                                                                                                  Primary income receipts (BoP, current US$)
## 1869                                                                                                                                                                                                                                              Financial services, exports (BoP, current US$)
## 1870                                                                                                                                                                                                                                            Exports of goods and services (BoP, current US$)
## 1871                                                                                                                                                                                                              Exports of goods, services, income and workers' remittances (BoP, current US$)
## 1872                                                                                                                                                                                                                                Insurance and financial services (% of service exports, BoP)
## 1873                                                                                                                                                                                                                                              Insurance services, exports (BoP, current US$)
## 1874                                                                                                                                                                                                                                                            Goods exports (BoP, current US$)
## 1875                                                                                                                                                                                                                                            Merchandise exports (BOP): percentage of GDP (%)
## 1876                                                                                                                                                                                                                                                          Service exports (BoP, current US$)
## 1877                                                                                                                                                                                                                                                          Other services, exports (BoP, US$)
## 1878                                                                                                                                                                                                                   Charges for the use of intellectual property, receipts (BoP, current US$)
## 1879                                                                                                                                                                                                                            Exports of goods, services and primary income (BoP, current US$)
## 1880                                                                                                                                                                                                                                              Transport services, exports (BoP, current US$)
## 1881                                                                                                                                                                                                                                              Transport services (% of service exports, BoP)
## 1882                                                                                                                                                                                                                                                 Travel services, exports (BoP, current US$)
## 1883                                                                                                                                                                                                                                                 Travel services (% of service exports, BoP)
## 1884                                                                                                                                                                                                          Foreign direct investment, net inflows in reporting economy (IMF-BoP, current US$)
## 1885                                                                                                                                                                                                              Foreign direct investment, net inflows in reporting economy (DRS, current US$)
## 1886                                                                                                                                                                                                                                   Foreign direct investment, net inflows (BoP, current US$)
## 1887                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1888                                                                                                                                                                                                                       Foreign direct investment, net inflows (% of gross capital formation)
## 1889                                                                                                                                                                                                                                           Foreign direct investment, net inflows (% of GDP)
## 1890                                                                                                                                                                                                                                                         Primary income on FDI (current US$)
## 1891                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1892                                                                                                                                                                                                                                             Portfolio investment, equity (DRS, current US$)
## 1893                                                                                                                                                                                                                                            Portfolio equity, net inflows (BoP, current US$)
## 1894                                                                                                                                                                                                                                                          Factor Service Receipts (US$, BoP)
## 1895                                                                                                                                                                                                                                                     Non-Factor Services Receipts (US$, BoP)
## 1896                                                                                                                                                                                                                                                Secondary income receipts (BoP, current US$)
## 1897                                                                                                                                                                                                                                                    Migrant remittance inflows (current US$)
## 1898                                                                                                                                                                                                                                                       Migrant remittance inflows (% of GDP)
## 1899                                                                                                                                                                                                                                     Official current transfers, receipts (BoP, current US$)
## 1900                                                                                                                                                                                                                               Official transfers, current and capital (Credit, current US$)
## 1901                                                                                                                                                                                                                                      Private current transfers, receipts (BoP, current US$)
## 1902                                                                                                                                                                                                                                             Personal transfers, receipts (BoP, current US$)
## 1903                                                                                                                                                                                                                                                Personal remittances, received (current US$)
## 1904                                                                                                                                                                                                                                                   Personal remittances, received (% of GDP)
## 1905                                                                                                                                                                                                                                                   Workers' remittances, receipts (% of GDP)
## 1906                                                                                                                                                                                                                                              Private current transfers, receipts (BoP, US$)
## 1907                                                                                                                                                                                                                                                                                      Region
## 1908                                                                                                                                                                                                                                                                                Country ISO3
## 1909                                                                                                                                                                                                                                                                             Public comments
## 1910                                                                                                                                                                                                                                                                               Resource name
## 1911                                                                                                                                                                                                                                                                                Resource URL
## 1912                                                                                                                                                                                                                                                                         057.Firm Entry Rate
## 1913                                                                                                                                                                                                                                                   Membership in international organizations
## 1914                                                                                                                                                                                                                                                                     World Bank funding page
## 1915                                                                                                                                                                                                                                                             Gross domestic product (in USD)
## 1916                                                                                                                                                                                                                                                                                  Population
## 1917                                                                                                                                                                                                                                                                               Base currency
## 1918                                                                                                                                                                                                                                                Conversion rate (from local currency to USD)
## 1919                                                                                                                                                                                                                                                                                Income level
## 1920                                                                                                                                                                                                                                                              Gross national income (in USD)
## 1921                                                                                                                                                                                                                                                            Gross national income per capita
## 1922                                                                                                                                                                                                                   Percentage(%) of Gross Domestic Product as Public Procurement Expenditure
## 1923                                                                                                                                                                                                                                                                          058.Firm Exit Rate
## 1924                                                                                                                                                                                                                                                     Name of Public Procurement Agency (PPA)
## 1925                                                                                                                                                                                                                                                                                 PPA website
## 1926                                                                                                                                                                                                                                                           Is PPA a Central Purchasing Body?
## 1927                                                                                                                                                                                                                                        Number of certified contracting officers (e.g. CIPS)
## 1928                                                                                                                                                                                                                                                  Contracting officers certification program
## 1929                                                                                                                                                                                                                                                       Name of Central Purchasing Body (CPB)
## 1930                                                                                                                                                                                                                                                                  Sectors covered by the CPB
## 1931                                                                                                                                                                                                                                                                   Name of relevant ministry
## 1932                                                                                                                                                                                                                                                                   Region covered by the CPB
## 1933                                                                                                                                                                                                                                                                                 CPB website
## 1934                                                                                                                                                                                                                                                                      Public procurement law
## 1935                                                                                                                                                                                                                                                    Total Cost of Ownership (TCO) law clause
## 1936                                                                                                                                                                                                                                                         Life Cycle Costing (LLC) law clause
## 1937                                                                                                                                                                                                                                                            Value for Money (VfM) law clause
## 1938                                                                                                                                                                                                                                     Most Economically Advantageous Tender (MEAT) law clause
## 1939                                                                                                                                                                                                                                                                   Sustainability law clause
## 1940                                                                                                                                                                                           Public Procurement Law requirement for awards to SMEs (Small and Medium-sized Enterprises) clause
## 1941                                                                                                                                                                                                                                                Bid Securities and/or bid declaration clause
## 1942                                                                                                                                                                                                                                                                  Public bid openings clause
## 1943                                                                                                                                                                                                                                                                  Domestic preference clause
## 1944                                                                                                                                                                                                                                                          Complaint resolution period clause
## 1945                                                                                                                                                                                                                                     Standstill period for goods contracts regulation clause
## 1946                                                                                                                                                                                                                                     Standstill period for works contracts regulation clause
## 1947                                                                                                                                                                                                                                   Standstill period for services contacts regulation clause
## 1948                                                                                                                                                                                                                                       Bid validity period of goods awards regulation clause
## 1949                                                                                                                                                                                                                                       Bid validity period of works awards regulation clause
## 1950                                                                                                                                                                                                                                    Bid validity period of services awards regulation clause
## 1951                                                                                                                                                                                                                                                  Contract award disclosure threshold clause
## 1952                                                                                                                                                                                                                                                                      Tender threshold value
## 1953                                                                                                                                                                                                                                     Number of days for advertisement of goods awards clause
## 1954                                                                                                                                                                                                                                     Number of days for advertisement of works awards clause
## 1955                                                                                                                                                                                                                                  Number of days for advertisement of services awards clause
## 1956                                                                                                                                                                                                                                  Threshold value for direct contract awards of goods clause
## 1957                                                                                                                                                                                                                                  Threshold value for direct contract awards of works clause
## 1958                                                                                                                                                                                                                               Threshold value for direct contract awards of services clause
## 1959                                                                                                                                                                                                                                                          059.Entrant 1st Year Survival Rate
## 1960                                                                                                                                                                                                                                                                    eProcurement system name
## 1961                                                                                                                                                                                                                                                                 eProcurement system website
## 1962                                                                                                                                                                                                                                                             eProcurement system launch date
## 1963                                                                                                                                                                                                                                                      eProcurement functionalities supported
## 1964                                                                                                                                                                                                                                                                  eSignature functionalities
## 1965                                                                                                                                                                                                                                                  eProcurement System used by the World Bank
## 1966                                                                                                                                                                                                                                        World Bank procurement method used for certification
## 1967                                                                                                                                                                                                                                             eProcurement system supported by the World Bank
## 1968                                                                                                                                                                                                                                                                       Supported language(s)
## 1969                                                                                                                                                                                                                                                                        Supported currencies
## 1970                                                                                                                                                                                                                                                                          Applicable charges
## 1971                                                                                                                                                                                                               eProcurement system custom vs Commercial Off the Shelf (COTS) vs. Open Source
## 1972                                                                                                                                                                                                                                                             Business model for eProcurement
## 1973                                                                                                                                                                                         Website where eProcurement data are published as per Open Contracting Data Standard (OCDS) standard
## 1974                                                                                                                                                                                                                                                           Tender documents are downloadable
## 1975                                                                                                                                                                                                                                                                    eProcurement assessments
## 1976                                                                                                                                                                                                            Percentage of value spent through the use of eProcurement over total value spent
## 1977                                                                                                                                                                                      Percentage of number of transactions through the use of eProcurement over total number of transactions
## 1978                                                                                                                                                                                                                                   Number of professionals certified on eProcurement systems
## 1979                                                                                                                                                                                                                    Estimated annual savings value through the use of eProcurement (in USDs)
## 1980                                                                                                                                                                                                        Percentage of savings value through the use of eProcurement over total cost estimate
## 1981                                                                                                                                                                                                        Methodology used in order to calculate savings value through the use of eProcurement
## 1982                                                                                                                                                                                                                                           060.Share of Entrants in TEV (Total Export Value)
## 1983                                                                                                                                                                                                                                                                  Common spend taxonomy used
## 1984                                                                                                                                                                                                                                    Average number of bidders per tender for goods contracts
## 1985                                                                                                                                                                                                                                    Average number of bidders per tender for works contracts
## 1986                                                                                                                                                                                                                                 Average number of bidders per tender for services contracts
## 1987                                                                                                                                                                                                                                                     Number of accepted/justified complaints
## 1988                                                                                                                                                                                                                                                   Number of rejected/unjustified complaints
## 1989                                                                                                                                                                                                                                                    Number of complaints under investigation
## 1990                                                                                                                                                                                                                       Complaint resolution period (include average resolution time in days)
## 1991                                                                                                                                                                                                                                                  Number of cancelled procurement procedures
## 1992                                                                                                                                                                                                                                                 Published public procurement annual reports
## 1993                                                                                                                                                                                                                                                                      Procurement statistics
## 1994                                                                                                                                                                                                                                                                    Number of annual tenders
## 1995                                                                                                                                                                                                                                                            Value of annual tenders (in USD)
## 1996                                                                                                                                                                                                                                                                  Number of annual contracts
## 1997                                                                                                                                                                                                                                                          Value of annual contracts (in USD)
## 1998                                                                                                                                                                                                                                                          Number of contract awards of goods
## 1999                                                                                                                                                                                                                                                 Value of contracts awards of goods (in USD)
## 2000                                                                                                                                                                                                                                                          Number of contract awards of works
## 2001                                                                                                                                                                                                                                                 Value of contracts awards of works (in USD)
## 2002                                                                                                                                                                                                                                                       Number of contract awards of services
## 2003                                                                                                                                                                                                                                              Value of contracts awards of services (in USD)
## 2004                                                                                                                                                                                                                                                          Number of domestic contract awards
## 2005                                                                                                                                                                                                                                                  Value of domestic contract awards (in USD)
## 2006                                                                                                                                                                                                                                                     Number of international contract awards
## 2007                                                                                                                                                                                                                                             Value of international contract awards (in USD)
## 2008                                                                                                                                                                                                                                                              Number of open contract awards
## 2009                                                                                                                                                                                                                                                      Value of open contract awards (in USD)
## 2010                                                                                                                                                                                                                                                            Number of direct contract awards
## 2011                                                                                                                                                                                                                                                    Value of direct contract awards (in USD)
## 2012                                                                                                                                                                                                                                                                    Number of awards to SMEs
## 2013                                                                                                                                                                                                                                                            Value of awards to SMEs (in USD)
## 2014                                                                                                                                                                                                                                        Number of contract awards under framework agreements
## 2015                                                                                                                                                                                                                                Value of contract awards under framework agreements (in USD)
## 2016                                                                                                                                                                                                                                           Number of contract awards evaluated based on MEAT
## 2017                                                                                                                                                                                                                                   Value of contract awards evaluated based on MEAT (in USD)
## 2018                                                                                                                                                                                                                            Number of contract awards evaluated based on Lowest Price method
## 2019                                                                                                                                                                                                                    Value of contract awards evaluated based on Lowest Price method (in USD)
## 2020                                                                                                                                                                                                                                                          061.Entrant 2nd Year Survival Rate
## 2021                                                                                                                                                                                                                                         Number of days from advertisement to contract award
## 2022                                                                                                                                                                                                                                                             Average time for bid evaluation
## 2023                                                                                                                                                                                                                                                          062.Entrant 3rd Year Survival Rate
## 2024                                                                                                                                                     Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Min. exposure, 2100
## 2025                                                                                                                                                      Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Max exposure, 2100
## 2026                                                                                                                                                     Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Min. exposure, 2050
## 2027                                                                                                                                                      Additional population exposed to annual coastal floods due to sea level rise, as a share of actual population (%) - Max exposure, 2050
## 2028                                                                                                                                                                                                                                                          Nitrogen application (tons per ha)
## 2029                                                                                                                                                                                                              Additional people below $1.90 as % of total population by impact - All impacts
## 2030                                                                                                                                                                                                     Additional people below $1.90 as % of total population by impact - Agriculture Revenues
## 2031                                                                                                                                                                                                                Additional people below $1.90 as % of total population by impact - Disasters
## 2032                                                                                                                                                                                                              Additional people below $1.90 as % of total population by impact - Food prices
## 2033                                                                                                                                                                                                                   Additional people below $1.90 as % of total population by impact - Health
## 2034                                                                                                                                                                                                       Additional people below $1.90 as % of total population by impact - Labor productivity
## 2035                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - Agriculture
## 2036                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - All Impacts
## 2037                                                                                                                                                                                                          Additional people below $4 as % of total population by impact, by 2030 - Disasters
## 2038                                                                                                                                                                                                             Additional people below $4 as % of total population by impact, by 2030 - Health
## 2039                                                                                                                                                                                                        Additional people below $4 as % of total population by impact, by 2030 - Temperature
## 2040                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - Agriculture (original)
## 2041                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - All Impacts (original)
## 2042                                                                                                                                                                                             Change in income (%) for bottom 40% of the population by impact, by 2030 - Disasters (original)
## 2043                                                                                                                                                                                                Change in income (%) for bottom 40% of the population by impact, by 2030 - Health (original)
## 2044                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact, by 2030 - Temperature (original)
## 2045                                                                                                                                                                                             Change in income (%) for bottom 40% of the population by impact - Agriculture Revenues (update)
## 2046                                                                                                                                                                                                      Change in income (%) for bottom 40% of the population by impact - All impacts (update)
## 2047                                                                                                                                                                                                        Change in income (%) for bottom 40% of the population by impact - Disasters (update)
## 2048                                                                                                                                                                                                      Change in income (%) for bottom 40% of the population by impact - Food prices (update)
## 2049                                                                                                                                                                                                           Change in income (%) for bottom 40% of the population by impact - Health (update)
## 2050                                                                                                                                                                                               Change in income (%) for bottom 40% of the population by impact - Labor productivity (update)
## 2051                                                                                                                                                                                                                                          CO2 emissions by sector (Mt CO2 eq) - Bunker Fuels
## 2052                                                                                                                                                                                                                                              CO2 emissions by sector (Mt CO2 eq) - Building
## 2053                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2054                                                                                                                                                                                                                                                CO2 emissions by sector (Mt CO2 eq) - Energy
## 2055                                                                                                                                                                                                                                    CO2 emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2056                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Total including LUCF
## 2057                                                                                                                                                                                                                                  CO2 emissions by sector (Mt CO2 eq) - Industrial Processes
## 2058                                                                                                                                                                                                                          CO2 emissions by sector (Mt CO2 eq) - Land-Use Change and Forestry
## 2059                                                                                                                                                                                                                            CO2 emissions by sector (Mt CO2 eq) - Manufacturing/Construction
## 2060                                                                                                                                                                                                                                        CO2 emissions by sector (Mt CO2 eq) - Transportation
## 2061                                                                                                                                                                                                                        Annual methane emissions at operating coal mines (Mt CO2e 100 years)
## 2062                                                                                                                                                                                                                            Annual CO2 combustion emissions at operating coal mines (Mt CO2)
## 2063                                                                                                                                                                                                                     Annual methane emisssions at proposed coal projects (Mt CO2e 100 years)
## 2064                                                                                                                                                                                                                                            Annual coal production (Mt per year) - Operating
## 2065                                                                                                                                                                                                                            Annual coal production (Mt per year) - Proposed Projects (Total)
## 2066                                                                                                                                                                                                                                  Children under 5 years of age who are stunted (% of total)
## 2067                                                                                                                                                                                                                                            Emission Totals - Direct emissions (N2O) - AFOLU
## 2068                                                                                                                                                                                                                               Emission Totals - Direct emissions (N2O) - Agricultural Soils
## 2069                                                                                                                                                                                                                                    Emission Totals - Direct emissions (N2O) - Crop Residues
## 2070                                                                                                                                                                                                                   Emission Totals - Direct emissions (N2O) - Emissions on agricultural land
## 2071                                                                                                                                                                                                                              Emission Totals - Direct emissions (N2O) - Farm-gate emissions
## 2072                                                                                                                                                                                                                                 Emission Totals - Direct emissions (N2O) - IPCC Agriculture
## 2073                                                                                                                                                                                                                           Emission Totals - Direct emissions (N2O) - Manure left on Pasture
## 2074                                                                                                                                                                                                                          Emission Totals - Direct emissions (N2O) - Manure applied to Soils
## 2075                                                                                                                                                                                                                            Emission Totals - Direct emissions (N2O) - Synthetic Fertilizers
## 2076                                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - AFOLU
## 2077                                                                                                                                                                                                                              Emission Totals - Emissions (CO2eq) (AR5) - Agricultural Soils
## 2078                                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) (AR5) - Burning - Crop residues
## 2079                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) (AR5) - Crop Residues
## 2080                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils (CO2)
## 2081                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils (N2O)
## 2082                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Drained organic soils
## 2083                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) (AR5) - Emissions on agricultural land
## 2084                                                                                                                                                                                                                            Emission Totals - Emissions (CO2eq) (AR5) - Enteric Fermentation
## 2085                                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) (AR5) - Forest fires
## 2086                                                                                                                                                                                                                             Emission Totals - Emissions (CO2eq) (AR5) - Farm-gate emissions
## 2087                                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) (AR5) - Forestland
## 2088                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - Fires in organic soils
## 2089                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) (AR5) - Fires in humid tropical forests
## 2090                                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) (AR5) - IPCC Agriculture
## 2091                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) (AR5) - Land Use change
## 2092                                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - LULUCF
## 2093                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) (AR5) - Manure left on Pasture
## 2094                                                                                                                                                                                                                               Emission Totals - Emissions (CO2eq) (AR5) - Manure Management
## 2095                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Net Forest conversion
## 2096                                                                                                                                                                                                                              Emission Totals - Emissions (CO2eq) (AR5) - On-farm energy use
## 2097                                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) (AR5) - Rice Cultivation
## 2098                                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) (AR5) - Manure applied to Soils
## 2099                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) (AR5) - Synthetic Fertilizers
## 2100                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) (AR5) - Savanna fires
## 2101                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from CH4 (AR5) - AFOLU
## 2102                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Burning - Crop residues
## 2103                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Emissions on agricultural land
## 2104                                                                                                                                                                                                                   Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Enteric Fermentation
## 2105                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Forest fires
## 2106                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Farm-gate emissions
## 2107                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Fires in organic soils
## 2108                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Fires in humid tropical forests
## 2109                                                                                                                                                                                                                Capacity of Liquefied Natural Gas export terminals (Mt per year) - Cancelled
## 2110                                                                                                                                                                                 Capacity of Liquefied Natural Gas export terminals (Mt per year) - In Development (Proposed + Construction)
## 2111                                                                                                                                                                                                                Capacity of Liquefied Natural Gas export terminals (Mt per year) - Operating
## 2112                                                                                                                                                                                                                  Capacity of Liquefied Natural Gas export terminals (Mt per year) - Shelved
## 2113                                                                                                                                                                                                                Capacity of Liquefied Natural Gas import terminals (Mt per year) - Cancelled
## 2114                                                                                                                                                                                 Capacity of Liquefied Natural Gas import terminals (Mt per year) - In Development (Proposed + Construction)
## 2115                                                                                                                                                                                                                Capacity of Liquefied Natural Gas import terminals (Mt per year) - Operating
## 2116                                                                                                                                                                                                                  Capacity of Liquefied Natural Gas import terminals (Mt per year) - Shelved
## 2117                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from CH4 (AR5) - IPCC Agriculture
## 2118                                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Land Use change
## 2119                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from CH4 (AR5) - LULUCF
## 2120                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Manure Management
## 2121                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from CH4 (AR5) - On-farm energy use
## 2122                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Rice Cultivation
## 2123                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from CH4 (AR5) - Savanna fires
## 2124                                                                                                                                                                                                                                                   Emission Totals - Emissions (CH4) - AFOLU
## 2125                                                                                                                                                                                                                                 Emission Totals - Emissions (CH4) - Burning - Crop residues
## 2126                                                                                                                                                                                                                          Emission Totals - Emissions (CH4) - Emissions on agricultural land
## 2127                                                                                                                                                                                                                                    Emission Totals - Emissions (CH4) - Enteric Fermentation
## 2128                                                                                                                                                                                                                                            Emission Totals - Emissions (CH4) - Forest fires
## 2129                                                                                                                                                                                                                                     Emission Totals - Emissions (CH4) - Farm-gate emissions
## 2130                                                                                                                                                                                                                                  Emission Totals - Emissions (CH4) - Fires in organic soils
## 2131                                                                                                                                                                                                                         Emission Totals - Emissions (CH4) - Fires in humid tropical forests
## 2132                                                                                                                                                                                                                                        Emission Totals - Emissions (CH4) - IPCC Agriculture
## 2133                                                                                                                                                                                                                                         Emission Totals - Emissions (CH4) - Land Use change
## 2134                                                                                                                                                                                                                                                  Emission Totals - Emissions (CH4) - LULUCF
## 2135                                                                                                                                                                                                                                       Emission Totals - Emissions (CH4) - Manure Management
## 2136                                                                                                                                                                                                                                      Emission Totals - Emissions (CH4) - On-farm energy use
## 2137                                                                                                                                                                                                                                        Emission Totals - Emissions (CH4) - Rice Cultivation
## 2138                                                                                                                                                                                                                                           Emission Totals - Emissions (CH4) - Savanna fires
## 2139                                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2) - AFOLU
## 2140                                                                                                                                                                                                                             Emission Totals - Emissions (CO2) - Drained organic soils (CO2)
## 2141                                                                                                                                                                                                                          Emission Totals - Emissions (CO2) - Emissions on agricultural land
## 2142                                                                                                                                                                                                                                     Emission Totals - Emissions (CO2) - Farm-gate emissions
## 2143                                                                                                                                                                                                                                              Emission Totals - Emissions (CO2) - Forestland
## 2144                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2) - Fires in organic soils
## 2145                                                                                                                                                                                                                                         Emission Totals - Emissions (CO2) - Land Use change
## 2146                                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2) - LULUCF
## 2147                                                                                                                                                                                                                                   Emission Totals - Emissions (CO2) - Net Forest conversion
## 2148                                                                                                                                                                                                                                      Emission Totals - Emissions (CO2) - On-farm energy use
## 2149                                                                                                                                                                                                                           Per capita daily coal consumption (short tons per capita per day)
## 2150                                                                                                                                                                                                                   Per capita daily gas consumption (thousand cubic feet per capita per day)
## 2151                                                                                                                                                                                                                               Per capita daily oil consumption (barrels per capita per day)
## 2152                                                                                                                                                                                                         CO2 emissions per dollar of manufacturing value added (kgCO2 per constant 2010 US$)
## 2153                                                                                                                                                                                                                                          Energy intensity of the economy (kWh per 2011$PPP)
## 2154                                                                                                                                                                                                                                             Average practical solar potential (kWh/kWp/day)
## 2155                                                                                                                                                                                                                                      Total steelmaking capacity (thousand tonnes per annum)
## 2156                                                                                                                                                                                                                   Fossil-fuel pre-tax subsidies (consumption and production) USD per capita
## 2157                                                                                                                                                                                                                                               Offshore wind potential - Per capita (kW/cap)
## 2158                                                                                                                                                                                                                                                        Offshore wind potential - Total (GW)
## 2159                                                                                                                                                                                                                                                                 Electricity net consumption
## 2160                                                                                                                                                                                                                                                                  Electricity net generation
## 2161                                                                                                                                                                                                                                            Lifetime CO2 emissions from coal plants (Mt CO2)
## 2162                                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from N2O (AR5) - AFOLU
## 2163                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from N2O (AR5) - Agricultural Soils
## 2164                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from N2O (AR5) - Burning - Crop residues
## 2165                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from N2O (AR5) - Crop Residues
## 2166                                                                                                                                                                                                            Emission Totals - Emissions (CO2eq) from N2O (AR5) - Drained organic soils (N2O)
## 2167                                                                                                                                                                                                         Emission Totals - Emissions (CO2eq) from N2O (AR5) - Emissions on agricultural land
## 2168                                                                                                                                                                                                                           Emission Totals - Emissions (CO2eq) from N2O (AR5) - Forest fires
## 2169                                                                                                                                                                                                                    Emission Totals - Emissions (CO2eq) from N2O (AR5) - Farm-gate emissions
## 2170                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from N2O (AR5) - Fires in humid tropical forests
## 2171                                                                                                                                                                                                                       Emission Totals - Emissions (CO2eq) from N2O (AR5) - IPCC Agriculture
## 2172                                                                                                                                                                                                                        Emission Totals - Emissions (CO2eq) from N2O (AR5) - Land Use change
## 2173                                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from N2O (AR5) - LULUCF
## 2174                                                                                                                                                                                                                 Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure left on Pasture
## 2175                                                                                                                                                                                                                      Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure Management
## 2176                                                                                                                                                                                                                     Emission Totals - Emissions (CO2eq) from N2O (AR5) - On-farm energy use
## 2177                                                                                                                                                                                                                Emission Totals - Emissions (CO2eq) from N2O (AR5) - Manure applied to Soils
## 2178                                                                                                                                                                                                                  Emission Totals - Emissions (CO2eq) from N2O (AR5) - Synthetic Fertilizers
## 2179                                                                                                                                                                                                                          Emission Totals - Emissions (CO2eq) from N2O (AR5) - Savanna fires
## 2180                                                                                                                                                                                                                                                   Emission Totals - Emissions (N2O) - AFOLU
## 2181                                                                                                                                                                                                                                      Emission Totals - Emissions (N2O) - Agricultural Soils
## 2182                                                                                                                                                                                                                                 Emission Totals - Emissions (N2O) - Burning - Crop residues
## 2183                                                                                                                                                                                                                                           Emission Totals - Emissions (N2O) - Crop Residues
## 2184                                                                                                                                                                                                                             Emission Totals - Emissions (N2O) - Drained organic soils (N2O)
## 2185                                                                                                                                                                                                                          Emission Totals - Emissions (N2O) - Emissions on agricultural land
## 2186                                                                                                                                                                                                                                            Emission Totals - Emissions (N2O) - Forest fires
## 2187                                                                                                                                                                                                                                     Emission Totals - Emissions (N2O) - Farm-gate emissions
## 2188                                                                                                                                                                                                                         Emission Totals - Emissions (N2O) - Fires in humid tropical forests
## 2189                                                                                                                                                                                                                                        Emission Totals - Emissions (N2O) - IPCC Agriculture
## 2190                                                                                                                                                                                                                                         Emission Totals - Emissions (N2O) - Land Use change
## 2191                                                                                                                                                                                                                                                  Emission Totals - Emissions (N2O) - LULUCF
## 2192                                                                                                                                                                                                                                  Emission Totals - Emissions (N2O) - Manure left on Pasture
## 2193                                                                                                                                                                                                                                       Emission Totals - Emissions (N2O) - Manure Management
## 2194                                                                                                                                                                                                                                      Emission Totals - Emissions (N2O) - On-farm energy use
## 2195                                                                                                                                                                                                                                 Emission Totals - Emissions (N2O) - Manure applied to Soils
## 2196                                                                                                                                                                                                                                   Emission Totals - Emissions (N2O) - Synthetic Fertilizers
## 2197                                                                                                                                                                                                                                           Emission Totals - Emissions (N2O) - Savanna fires
## 2198                                                                                                                                                                                                                                                         Total energy tax revenue (% of GDP)
## 2199                                                                                                                                                                                                                                        Comparative advantage in environmental goods (index)
## 2200                                                                                                                                                                                                                                  Trade in environmental goods as share of total exports (%)
## 2201                                                                                                                                                                                                                                  Trade in environmental goods as share of total imports (%)
## 2202                                                                                                                                                                                                                         Employment by sector and gender (% of total) - Agriculture - Female
## 2203                                                                                                                                                                                                                           Employment by sector and gender (% of total) - Agriculture - Male
## 2204                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Commerce - Female
## 2205                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Commerce - Male
## 2206                                                                                                                                                                                                                        Employment by sector and gender (% of total) - Construction - Female
## 2207                                                                                                                                                                                                                          Employment by sector and gender (% of total) - Construction - Male
## 2208                                                                                                                                                                                                           Employment by sector and gender (% of total) - Electricity and utilities - Female
## 2209                                                                                                                                                                                                             Employment by sector and gender (% of total) - Electricity and utilities - Male
## 2210                                                                                                                                                                                                     Employment by sector and gender (% of total) - Financial and Business Services - Female
## 2211                                                                                                                                                                                                       Employment by sector and gender (% of total) - Financial and Business Services - Male
## 2212                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Industry - Female
## 2213                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Industry - Male
## 2214                                                                                                                                                                                                                       Employment by sector and gender (% of total) - Manufacturing - Female
## 2215                                                                                                                                                                                                                         Employment by sector and gender (% of total) - Manufacturing - Male
## 2216                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Mining - Female
## 2217                                                                                                                                                                                                                                Employment by sector and gender (% of total) - Mining - Male
## 2218                                                                                                                                                                                                                      Employment by sector and gender (% of total) - Other services - Female
## 2219                                                                                                                                                                                                                        Employment by sector and gender (% of total) - Other services - Male
## 2220                                                                                                                                                                                                               Employment by sector and gender (% of total) - Public Administration - Female
## 2221                                                                                                                                                                                                                 Employment by sector and gender (% of total) - Public Administration - Male
## 2222                                                                                                                                                                                                            Employment by sector and gender (% of total) - Public sector employment - Female
## 2223                                                                                                                                                                                                              Employment by sector and gender (% of total) - Public sector employment - Male
## 2224                                                                                                                                                                                                                            Employment by sector and gender (% of total) - Services - Female
## 2225                                                                                                                                                                                                                              Employment by sector and gender (% of total) - Services - Male
## 2226                                                                                                                                                                                                           Employment by sector and gender (% of total) - Transport & Communication - Female
## 2227                                                                                                                                                                                                             Employment by sector and gender (% of total) - Transport & Communication - Male
## 2228                                                                                                                                                                                                                                                             Control of Corruption: Estimate
## 2229                                                                                                                                                                                                                           Food GHG emissions by system stage (Share of total) - Consumption
## 2230                                                                                                                                                                                                                           Food GHG emissions by system stage (Share of total) - End_of_Life
## 2231                                                                                                                                                                                                                    Food GHG emissions by system stage (Share of total) - LULUC (Production)
## 2232                                                                                                                                                                                                                             Food GHG emissions by system stage (Share of total) - Packaging
## 2233                                                                                                                                                                                                                            Food GHG emissions by system stage (Share of total) - Production
## 2234                                                                                                                                                                                                                                Food GHG emissions by system stage (Share of total) - Retail
## 2235                                                                                                                                                                                                                             Food GHG emissions by system stage (Share of total) - Transport
## 2236                                                                                                                                                                                                                              Population exposed to floods (share of population below $5.50)
## 2237                                                                                                                                                                                                                                    Population exposed to floods (share of total population)
## 2238                                                                                                                                                                                                                                        Share of animal products in food supply (% of total)
## 2239                                                                                                                                                                                                                                       Share of vegetal products in food supply (% of total)
## 2240                                                                                                                                                                                                                                    Freight volume by mode (billion tons-km) - Air transport
## 2241                                                                                                                                                                                                                        Freight volume by mode (billion tons-km) - Inland waterway transport
## 2242                                                                                                                                                                                                                                   Freight volume by mode (billion tons-km) - Rail transport
## 2243                                                                                                                                                                                                                                   Freight volume by mode (billion tons-km) - Road transport
## 2244                                                                                                                                                                                                     Gas pipeline capacity by project status (barrels of oil equivalent per day) - Cancelled
## 2245                                                                                                                                                                                                  Gas pipeline capacity by project status (barrels of oil equivalent per day) - Construction
## 2246                                                                                                                                                                      Gas pipeline capacity by project status (barrels of oil equivalent per day) - In Development (Proposed + Construction)
## 2247                                                                                                                                                                                                    Gas pipeline capacity by project status (barrels of oil equivalent per day) - Mothballed
## 2248                                                                                                                                                                                                     Gas pipeline capacity by project status (barrels of oil equivalent per day) - Operating
## 2249                                                                                                                                                                                                      Gas pipeline capacity by project status (barrels of oil equivalent per day) - Proposed
## 2250                                                                                                                                                                                                       Gas pipeline capacity by project status (barrels of oil equivalent per day) - Shelved
## 2251                                                                                                                                                                                                                                     Total GHG emissions by sector (Mt CO2 eq) - Agriculture
## 2252                                                                                                                                                                                                                                    Total GHG emissions by sector (Mt CO2 eq) - Bunker Fuels
## 2253                                                                                                                                                                                                                                        Total GHG emissions by sector (Mt CO2 eq) - Building
## 2254                                                                                                                                                                                                                                Total GHG emissions by sector (Mt CO2 eq) - Electricity/Heat
## 2255                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2256                                                                                                                                                                                                                                          Total GHG emissions by sector (Mt CO2 eq) - Energy
## 2257                                                                                                                                                                                                                              Total GHG emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2258                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Total including LUCF
## 2259                                                                                                                                                                                                                            Total GHG emissions by sector (Mt CO2 eq) - Industrial Processes
## 2260                                                                                                                                                                                                                    Total GHG emissions by sector (Mt CO2 eq) - Land-Use Change and Forestry
## 2261                                                                                                                                                                                                                      Total GHG emissions by sector (Mt CO2 eq) - Manufacturing/Construction
## 2262                                                                                                                                                                                                                           Total GHG emissions by sector (Mt CO2 eq) - Other Fuel Combustion
## 2263                                                                                                                                                                                                                                  Total GHG emissions by sector (Mt CO2 eq) - Transportation
## 2264                                                                                                                                                                                                                                           Total GHG emissions by sector (Mt CO2 eq) - Waste
## 2265                                                                                                                                                                                                                               GHG emissions from food systems, by gas (Mt CO2 eq) - Methane
## 2266                                                                                                                                                                                                                                   GHG emissions from food systems, by gas (Mt CO2 eq) - CO2
## 2267                                                                                                                                                                                                                               GHG emissions from food systems, by gas (Mt CO2 eq) - F-gases
## 2268                                                                                                                                                                                                                                   GHG emissions from food systems, by gas (Mt CO2 eq) - N2O
## 2269                                                                                                                                                                                                                                                                       GHG growth (annual %)
## 2270                                                                                                                                                                                                   Macro drivers of GHG emissions growth in the period 2012-2018 - Emission Intensity of GDP
## 2271                                                                                                                                                                                                              Macro drivers of GHG emissions growth in the period 2012-2018 - GDP per capita
## 2272                                                                                                                                                                                                                  Macro drivers of GHG emissions growth in the period 2012-2018 - Population
## 2273                                                                                                                                                                                                                                                      Per capita GHG emissions (tons/capita)
## 2274                                                                                                                                                                            Sectoral drivers of GHG emissions growth in the period 2012-2018 - Agriculture (contribution to total growth, %)
## 2275                                                                                                                                                                               Sectoral drivers of GHG emissions growth in the period 2012-2018 - Building (contribution to total growth, %)
## 2276                                                                                                                                                                       Sectoral drivers of GHG emissions growth in the period 2012-2018 - Electricity/Heat (contribution to total growth, %)
## 2277                                                                                                                                                                     Sectoral drivers of GHG emissions growth in the period 2012-2018 - Fugitive Emissions (contribution to total growth, %)
## 2278                                                                                                                                                           Sectoral drivers of GHG emissions growth in the period 2012-2018 - Land-Use Change and Forestry (contribution to total growth, %)
## 2279                                                                                                                                                             Sectoral drivers of GHG emissions growth in the period 2012-2018 - Manufacturing/Construction (contribution to total growth, %)
## 2280                                                                                                                                                                  Sectoral drivers of GHG emissions growth in the period 2012-2018 - Other Fuel Combustion (contribution to total growth, %)
## 2281                                                                                                                                                                         Sectoral drivers of GHG emissions growth in the period 2012-2018 - Transportation (contribution to total growth, %)
## 2282                                                                                                                                                                                  Sectoral drivers of GHG emissions growth in the period 2012-2018 - Waste (contribution to total growth, %)
## 2283                                                                                                                                                                                                                                          Total sovereign green bonds issuance (billion US$)
## 2284                                                                                                                                                                                                                                          Emission Totals - Indirect emissions (N2O) - AFOLU
## 2285                                                                                                                                                                                                                             Emission Totals - Indirect emissions (N2O) - Agricultural Soils
## 2286                                                                                                                                                                                                                                  Emission Totals - Indirect emissions (N2O) - Crop Residues
## 2287                                                                                                                                                                                                                 Emission Totals - Indirect emissions (N2O) - Emissions on agricultural land
## 2288                                                                                                                                                                                                                            Emission Totals - Indirect emissions (N2O) - Farm-gate emissions
## 2289                                                                                                                                                                                                                               Emission Totals - Indirect emissions (N2O) - IPCC Agriculture
## 2290                                                                                                                                                                                                                         Emission Totals - Indirect emissions (N2O) - Manure left on Pasture
## 2291                                                                                                                                                                                                                        Emission Totals - Indirect emissions (N2O) - Manure applied to Soils
## 2292                                                                                                                                                                                                                          Emission Totals - Indirect emissions (N2O) - Synthetic Fertilizers
## 2293                                                                                                                                                                                            Annual investment needs for coastal protection, by risk strategy (% of GDP) - low risk tolerance
## 2294                                                                                                                                                                                  Annual investment needs for coastal protection, by risk strategy (% of GDP) - constant relative flood risk
## 2295                                                                                                                                                                                            Annual investment needs for coastal protection, by risk strategy (% of GDP) - optimal protection
## 2296                                                                                                                                                                                          Informal employment by sector and gender (% of total) - Agriculture, forestry and fishing - Female
## 2297                                                                                                                                                                                            Informal employment by sector and gender (% of total) - Agriculture, forestry and fishing - Male
## 2298                                                                                                                                                                                                            Informal employment by sector and gender (% of total) - Non-agriculture - Female
## 2299                                                                                                                                                                                                              Informal employment by sector and gender (% of total) - Non-agriculture - Male
## 2300                                                                                                                                                                                                               Informal employment by sector and gender (% of total) - No breakdown - Female
## 2301                                                                                                                                                                                                                 Informal employment by sector and gender (% of total) - No breakdown - Male
## 2302                                                                                                                                                                                                       Proportion of freshwater key biodiversity areas (KBAs) covered by protected areas (%)
## 2303                                                                                                                                                                                                      Proportion of terrestrial key biodiversity areas (KBAs) covered by protected areas (%)
## 2304                                                                                                                                                                                                                                   Non-CO2 GHG emissions by sector (Mt CO2 eq) - Agriculture
## 2305                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Total excluding LUCF
## 2306                                                                                                                                                                                                                                        Non-CO2 GHG emissions by sector (Mt CO2 eq) - Energy
## 2307                                                                                                                                                                                                                            Non-CO2 GHG emissions by sector (Mt CO2 eq) - Fugitive Emissions
## 2308                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Total including LUCF
## 2309                                                                                                                                                                                                                          Non-CO2 GHG emissions by sector (Mt CO2 eq) - Industrial Processes
## 2310                                                                                                                                                                                                                         Non-CO2 GHG emissions by sector (Mt CO2 eq) - Other Fuel Combustion
## 2311                                                                                                                                                                                                                                         Non-CO2 GHG emissions by sector (Mt CO2 eq) - Waste
## 2312                                                                                                                                                                                                                                                           Net food imports by crop - Barley
## 2313                                                                                                                                                                                                                                                      Net food imports by crop - Rice, paddy
## 2314                                                                                                                                                                                                                                                            Net food imports by crop - Maize
## 2315                                                                                                                                                                                                                                                     Net food imports by crop - Rice, broken
## 2316                                                                                                                                                                                                                             Net food imports by crop - Rice, paddy (rice milled equivalent)
## 2317                                                                                                                                                                                                                                                     Net food imports by crop - Rice, husked
## 2318                                                                                                                                                                                                                                              Net food imports by crop - Rice, milled/husked
## 2319                                                                                                                                                                                                                                                     Net food imports by crop - Rice, milled
## 2320                                                                                                                                                                                                                                                         Net food imports by crop - Soybeans
## 2321                                                                                                                                                                                                                                                            Net food imports by crop - Wheat
## 2322                                                                                                                                                                                                                                                    Control of Corruption: Number of Sources
## 2323                                                                                                                                                                                                     Oil pipeline capacity by project status (barrels of oil equivalent per day) - Cancelled
## 2324                                                                                                                                                                                                  Oil pipeline capacity by project status (barrels of oil equivalent per day) - Construction
## 2325                                                                                                                                                                      Oil pipeline capacity by project status (barrels of oil equivalent per day) - In Development (Proposed + Construction)
## 2326                                                                                                                                                                                                     Oil pipeline capacity by project status (barrels of oil equivalent per day) - Operating
## 2327                                                                                                                                                                                                      Oil pipeline capacity by project status (barrels of oil equivalent per day) - Proposed
## 2328                                                                                                                                                                                                       Oil pipeline capacity by project status (barrels of oil equivalent per day) - Retired
## 2329                                                                                                                                                                                                       Oil pipeline capacity by project status (barrels of oil equivalent per day) - Shelved
## 2330                                                                                                                                                                                                                Operating coal power capacity by plant age (MW) - Coal plant age (0-9 years)
## 2331                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (10-19 years)
## 2332                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (20-29 years)
## 2333                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (30-39 years)
## 2334                                                                                                                                                                                                              Operating coal power capacity by plant age (MW) - Coal plant age (40-49 years)
## 2335                                                                                                                                                                                                            Operating coal power capacity by plant age (MW) - Coal plant age (50-plus years)
## 2336                                                                                                                                                                                                             Operating coal power capacity by plant type (MW) - Plant Type (Subcritical/CCS)
## 2337                                                                                                                                                                                                                         Operating coal power capacity by plant type (MW) - Plant Type (CFB)
## 2338                                                                                                                                                                                                                        Operating coal power capacity by plant type (MW) - Plant Type (IGCC)
## 2339                                                                                                                                                                                                               Operating coal power capacity by plant type (MW) - Plant Type (Supercritical)
## 2340                                                                                                                                                                                                                 Operating coal power capacity by plant type (MW) - Plant Type (Subcritical)
## 2341                                                                                                                                                                                                                     Operating coal power capacity by plant type (MW) - Plant Type (Unknown)
## 2342                                                                                                                                                                                                                 Operating coal power capacity by plant type (MW) - Plant Type (Ultra-super)
## 2343                                                                                                                                                                                                                                                      Control of Corruption: Percentile Rank
## 2344                                                                                                                                                                                                              Control of Corruption: Percentile Rank, Lower Bound of 90% Confidence Interval
## 2345                                                                                                                                                                                                              Control of Corruption: Percentile Rank, Upper Bound of 90% Confidence Interval
## 2346                                                                                                                        Percentage of people who believe it is somewhat very likely that they could use the right to use their property of part of it against their will in the next 5 years
## 2347                                                                                                                   Percentage of people who believe it is very unlikely or unlikely that they could use the right to use their property of part of it against their will in the next 5 years
## 2348                                                                                                                                   Percentage of people who say they have formal documents, legally-binding documents that demonstrate their right to live in or use any of their properties
## 2349                                                                                                                                                            Percentage of people who say they have informal documents that demonstrate their right to live in or use any of their properties
## 2350                                                                                                                                            Percentage of people who say they have no documents or informal documents that demonstrate their right to live in or use any of their properties
## 2351                                                                                                                                                                                                                                      Average supply of protein of animal origin (g/cap/day)
## 2352                                                                                                                                                                                                                                 Passenger volume by mode (billion tons-km) - Rail transport
## 2353                                                                                                                                                                                                                                 Passenger volume by mode (billion tons-km) - Road transport
## 2354                                                                                                                                                                                                                                Prevalence of undernourishment (3-year average) (% of total)
## 2355                                                                                                                                                                                                                                                         Rice supply quantity (g/capita/day)
## 2356                                                                                                                                                                                                                                           Risk to asset (average annual losses as % of GDP)
## 2357                                                                                                                                                                                                                                       Risk to wellbeing (average annual losses as % of GDP)
## 2358                                                                                                                                                                                                                                             Percentage of population with Primary Education
## 2359                                                                                                                                                                                                                                           Percentage of population with Secondary Education
## 2360                                                                                                                                                                                                                              Mean number of years of education completed, aged 17 and older
## 2361                                                                                                                                                                                                      Mortality rate attributable to household air pollution (deaths per 100 000 population)
## 2362                                                                                                                                                                                                        Mortality rate attributable to ambient air pollution (deaths per 100 000 population)
## 2363                                                                                                                                                                                                                   Share of population covered by at least one social protection benefit (%)
## 2364                                                                                                                                                                                                                                              Public social protection expenditure (%of GDP)
## 2365                                                                                                                                                                                                                                                       Control of Corruption: Standard Error
## 2366                                                                                                                                                                                                                        Number of companies that are TCFD compliant by sector - Central Bank
## 2367                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Consumer Discretionary
## 2368                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Communication Services
## 2369                                                                                                                                                                                                                    Number of companies that are TCFD compliant by sector - Consumer Staples
## 2370                                                                                                                                                                                                                          Number of companies that are TCFD compliant by sector - Financials
## 2371                                                                                                                                                                                                                          Number of companies that are TCFD compliant by sector - Government
## 2372                                                                                                                                                                                                                         Number of companies that are TCFD compliant by sector - Health Care
## 2373                                                                                                                                                                                                              Number of companies that are TCFD compliant by sector - Information Technology
## 2374                                                                                                                                                                                                                           Number of companies that are TCFD compliant by sector - Materials
## 2375                                                                                                                                                                                                                               Number of companies that are TCFD compliant by sector - Other
## 2376                                                                                                                                                                                                                         Number of companies that are TCFD compliant by sector - Real Estate
## 2377                                                                                                                                                                                                                      Number of companies that are TCFD compliant by sector - Transportation
## 2378                                                                                                                                                                                                                           Number of companies that are TCFD compliant by sector - Utilities
## 2379                                                                                                                                                                                                                                                       Natural hazard levels - Coastal flood
## 2380                                                                                                                                                                                                                                                             Natural hazard levels - Cyclone
## 2381                                                                                                                                                                                                                                                        Natural hazard levels - Extreme heat
## 2382                                                                                                                                                                                                                                                          Natural hazard levels - Earthquake
## 2383                                                                                                                                                                                                                                                           Natural hazard levels - Landslide
## 2384                                                                                                                                                                                                                                                         Natural hazard levels - River flood
## 2385                                                                                                                                                                                                                                                             Natural hazard levels - Tsunami
## 2386                                                                                                                                                                                                                                                         Natural hazard levels - Urban flood
## 2387                                                                                                                                                                                                                                                            Natural hazard levels - Wildfire
## 2388                                                                                                                                                                                                                                          Share of transport network exposed to cyclones (%)
## 2389                                                                                                                                                                                                                                       Share of transport network exposed to earthquakes (%)
## 2390                                                                                                                                                                                                                                            Share of transport network exposed to floods (%)
## 2391                                                                                                                                                                                                                                 Share of transport network exposed to natural disasters (%)
## 2392                                                                                                                                                                                                                                      Total GHG emissions growth in the period 2012-2018 (%)
## 2393                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Cancelled
## 2394                                                                                                                                                                                                                                     Total coal capacity by plant status (MW) - Construction
## 2395                                                                                                                                                                                                                                       Total coal capacity by plant status (MW) - Mothballed
## 2396                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Operating
## 2397                                                                                                                                                                                                                                        Total coal capacity by plant status (MW) - Permitted
## 2398                                                                                                                                                                                                                                       Total coal capacity by plant status (MW) - Pre-permit
## 2399                                                                                                                                                                                                                                          Total coal capacity by plant status (MW) - Retired
## 2400                                                                                                                                                                                                                                          Total coal capacity by plant status (MW) - Shelved
## 2401                                                                                                                                                                                                                       Financing via international capital markets (gross inflows, % of GDP)
## 2402                                                                                                                                                                                                                                                 S&P Global Equity Indices (annual % change)
## 2403                                                                                                                                                                                                                            Market capitalization of listed domestic companies (current US$)
## 2404                                                                                                                                                                                                                               Market capitalization of listed domestic companies (% of GDP)
## 2405                                                                                                                                                                                                                                                            Listed domestic companies, total
## 2406                                                                                                                                                                                                                                                    Stocks traded, total value (current US$)
## 2407                                                                                                                                                                                                                                                       Stocks traded, total value (% of GDP)
## 2408                                                                                                                                                                                                                                        Stocks traded, turnover ratio of domestic shares (%)
## 2409                                                                                                                                                                                                                                                           Cost of an energy sufficient diet
## 2410                                                                                                                                                                                                              Affordability of an energy sufficient diet: ratio of cost to food expenditures
## 2411                                                                                                                                                                                                            Percent of the population who cannot afford sufficient calories at 52% of income
## 2412                                                                                                                                                                                                    Affordability of an energy sufficient diet: ratio of cost to the $0.99 food poverty line
## 2413                                                                                                                                                                                                                   Millions of people who cannot afford sufficient calories at 52% of income
## 2414                                                                                                                                                                                                                                                                      Cost of a healthy diet
## 2415                                                                                                                                                                                                                                                                 Cost of animal-source foods
## 2416                                                                                                                                                                                                                            Cost share for animal-sourced foods in a least-cost healthy diet
## 2417                                                                                                                                                                                                   Cost of animal-sourced foods relative to the starchy staples in a least-cost healthy diet
## 2418                                                                                                                                                                                                       Cost of a healthy diet relative to the cost of sufficient energy from starchy staples
## 2419                                                                                                                                                                                                                                                                              Cost of fruits
## 2420                                                                                                                                                                                                                                          Cost share for fruits in a least-cost healthy diet
## 2421                                                                                                                                                                                                                 Cost of fruits relative to the starchy staples in a least-cost healthy diet
## 2422                                                                                                                                                                                                                         Affordability of a healthy diet: ratio of cost to food expenditures
## 2423                                                                                                                                                                                                                 Percent of the population who cannot afford a healthy diet at 52% of income
## 2424                                                                                                                                                                                                                                                             Cost of legumes, nuts and seeds
## 2425                                                                                                                                                                                                                         Cost share for legumes, nuts and seeds in a least-cost healthy diet
## 2426                                                                                                                                                                                                Cost of legumes, nuts and seeds relative to the starchy staples in a least-cost healthy diet
## 2427                                                                                                                                                                                                                                                                       Cost of oils and fats
## 2428                                                                                                                                                                                                                                   Cost share for oils and fats in a least-cost healthy diet
## 2429                                                                                                                                                                                                          Cost of oils and fats relative to the starchy staples in a least-cost healthy diet
## 2430                                                                                                                                                                                                               Affordability of a healthy diet: ratio of cost to the $0.99 food poverty line
## 2431                                                                                                                                                                                                                                                                     Cost of starchy staples
## 2432                                                                                                                                                                                                                                 Cost share for starchy staples in a least-cost healthy diet
## 2433                                                                                                                                                                                                                        Millions of people who cannot afford a healthy diet at 52% of income
## 2434                                                                                                                                                                                                                                                                          Cost of vegetables
## 2435                                                                                                                                                                                                                                      Cost share for vegetables in a least-cost healthy diet
## 2436                                                                                                                                                                                                             Cost of vegetables relative to the starchy staples in a least-cost healthy diet
## 2437                                                                                                                                                                                                                                                            Cost of a nutrient adequate diet
## 2438                                                                                                                                                                                                               Affordability of a nutrient adequate diet: ratio of cost to food expenditures
## 2439                                                                                                                                                                                                              Percent of the population who cannot afford nutrient adequacy at 52% of income
## 2440                                                                                                                                                                                                     Affordability of a nutrient adequate diet: ratio of cost to the $0.99 food poverty line
## 2441                                                                                                                                                                                                                     Millions of people who cannot afford nutrient adequacy at 52% of income
## 2442                                                                                                                                                                                                                                                                    Core CPI,not seas.adj,,,
## 2443                                                                                                                                                                                                                                                                        Core CPI,seas.adj,,,
## 2444                                                                                                                                                                                                                                                                          CPI Price, nominal
## 2445                                                                                                                                                                                                                                             CPI Price, % y-o-y, median weighted, seas. adj.
## 2446                                                                                                                                                                                                                                                              CPI Price, nominal, seas. adj.
## 2447                                                                                                                                                                                                                                                     CPI Price, % y-o-y, nominal, seas. adj.
## 2448                                                                                                                                                                                                                                                     Predictability of Direct Budget Support
## 2449                                                                 (i) Annual deviation of actual budget support from the forecast provided by the donor agencies at least six weeks prior to the government submitting its budget proposals to the legislature (or equivalent approving body)
## 2450                                                                                                                                                                                              (ii) In-year timeliness of donor disbursements (compliance with aggregate quarterly estimates)
## 2451                                                                                                                                                                                             Financial information provided by donors for budgeting and reporting on project and program aid
## 2452                                                                                                                                                                                                           (i) Completeness and timeliness of budget estimates by donors for project support
## 2453                                                                                                                                                                                                (ii) Frequency and coverage of reporting by donors on actual donor flows for project support
## 2454                                                                                                                                                                                                                             Proportion of aid that is managed by use of national procedures
## 2455                                                                                                                                                                                                                                                  063.Product Entry Rate of Incumbents: Mean
## 2456                                                                                                                                                                                                                                                064.Product Entry Rate of Incumbents: Median
## 2457                                                                                                                                                                                                                                                065.Product Entry Rate of Incumbents: StDev.
## 2458                                                                                                                                                                                                                                          066.Product Entry Rate of Surviving Entrants: Mean
## 2459                                                                                                                                                                                                                                        067.Product Entry Rate of Surviving Entrants: Median
## 2460                                                                                                                                                                                                                                        068.Product Entry Rate of Surviving Entrants: StDev.
## 2461                                                                                                                                                                                                                                        069.Share of New Products in TEV of Incumbents: Mean
## 2462                                                                                                                                                                                                                                      070.Share of New Products in TEV of Incumbents: Median
## 2463                                                                                                                                                                                                                                      071.Share of New Products in TEV of Incumbents: StDev.
## 2464                                                                                                                                                                                                                                072.Share of New Products in TEV of Surviving Entrants: Mean
## 2465                                                                                                                                                                                                                              073.Share of New Products in TEV of Surviving Entrants: Median
## 2466                                                                                                                                                                                                                              074.Share of New Products in TEV of Surviving Entrants: StDev.
## 2467                                                                                                                                                                                                                                                   075.Product Exit Rate of Incumbents: Mean
## 2468                                                                                                                                                                                                                                                 076.Product Exit Rate of Incumbents: Median
## 2469                                                                                                                                                                                                                                                 077.Product Exit Rate of Incumbents: StDev.
## 2470                                                                                                                                                                                                                                        078.Product Survival Rate of 2-year Incumbents: Mean
## 2471                                                                                                                                                                                                                                      079.Product Survival Rate of 2-year Incumbents: Median
## 2472                                                                                                                                                                                                                                      080.Product Survival Rate of 2-year Incumbents: StDev.
## 2473                                                                                                                                                                                                                            Total Specific Allocation Grant for Agriculture (in IDR Billion)
## 2474                                                                                                                                                                                                                              Total Specific Allocation Grant for Education (in IDR Billion)
## 2475                                                                                                                                                                                                                            Total Specific Allocation Grant for Environment (in IDR Billion)
## 2476                                                                                                                                                                                                                               Total Specific Allocation Grant for Forestry (in IDR Billion)
## 2477                                                                                                                                                                                                                                Total Specific Allocation Grant for Fishery (in IDR Billion)
## 2478                                                                                                                                                                                                                      Total Specific Allocation Grant for Government Sector (in IDR Billion)
## 2479                                                                                                                                                                                                Total Specific Allocation Grant for Health Sector (Subsect: Basic Services) (in IDR Billion)
## 2480                                                                                                                                                                                                                                 Total Specific Allocation Grant for Health (in IDR Billion)
## 2481                                                                                                                                                                                          Total Specific Allocation Grant for Health Sector (Subsect: Recommended Services) (in IDR Billion)
## 2482                                                                                                                                                                                                                         Total Specific Allocation Grant for Infrastructure (in IDR Billion)
## 2483                                                                                                                                                                                                 Total Specific Allocation Grant for Infrastructure Sector (Subsect: Water) (in IDR Billion)
## 2484                                                                                                                                                                                            Total Specific Allocation Grant for Infrastructure Sector (Subsect: Irrigation) (in IDR Billion)
## 2485                                                                                                                                                                                                  Total Specific Allocation Grant for Infrastructure Sector (Subsect: Road) (in IDR Billion)
## 2486                                                                                                                                                                                                                            Total Specific Allocation Grant for Demographic (in IDR Billion)
## 2487                                                                                                                                                                                                                                  Total Specific Allocation Grant for Trade (in IDR Billion)
## 2488                                                                                                                                                                                                                                Total Specific Allocation Grant for Village (in IDR Billion)
## 2489                                                                                                                                                                                                                                                      Central Government External Debt (US$)
## 2490                                                                                                                                                                                                                                    Official aid provided to part II countries (current US$)
## 2491                                                                                                                                                                                                                            Net bilateral aid flows from DAC donors, Australia (current US$)
## 2492                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Austria (current US$)
## 2493                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Belgium (current US$)
## 2494                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Canada (current US$)
## 2495                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, European Union institutions (current US$)
## 2496                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Switzerland (current US$)
## 2497                                                                                                                                                                                                                       Net bilateral aid flows from DAC donors, Czech Republic (current US$)
## 2498                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Germany (current US$)
## 2499                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Denmark (current US$)
## 2500                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Spain (current US$)
## 2501                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Finland (current US$)
## 2502                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, France (current US$)
## 2503                                                                                                                                                                                                                       Net bilateral aid flows from DAC donors, United Kingdom (current US$)
## 2504                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Greece (current US$)
## 2505                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Hungary (current US$)
## 2506                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Ireland (current US$)
## 2507                                                                                                                                                                                                                              Net bilateral aid flows from DAC donors, Iceland (current US$)
## 2508                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Italy (current US$)
## 2509                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Japan (current US$)
## 2510                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)
## 2511                                                                                                                                                                                                                           Net bilateral aid flows from DAC donors, Luxembourg (current US$)
## 2512                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, Netherlands (current US$)
## 2513                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Norway (current US$)
## 2514                                                                                                                                                                                                                          Net bilateral aid flows from DAC donors, New Zealand (current US$)
## 2515                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Poland (current US$)
## 2516                                                                                                                                                                                                                             Net bilateral aid flows from DAC donors, Portugal (current US$)
## 2517                                                                                                                                                                                                                      Net bilateral aid flows from DAC donors, Slovak Republic (current US$)
## 2518                                                                                                                                                                                                                             Net bilateral aid flows from DAC donors, Slovenia (current US$)
## 2519                                                                                                                                                                                                                               Net bilateral aid flows from DAC donors, Sweden (current US$)
## 2520                                                                                                                                                                                                                                Net bilateral aid flows from DAC donors, Total (current US$)
## 2521                                                                                                                                                                                                                        Net bilateral aid flows from DAC donors, United States (current US$)
## 2522                                                                                                                                                                                                                                               Total bilateral ODA commitments (current US$)
## 2523                                                                                                                                                                                                                              Total bilateral sector allocable ODA commitments (current US$)
## 2524                                                                                                                                                                                                                      Bilateral, sector-allocable ODA to basic social services (current US$)
## 2525                                                                                                                                                                                                   Bilateral, sector-allocable ODA to basic social services (% of bilateral ODA commitments)
## 2526                                                                                                                                                                                                                            Net ODA provided, to the least developed countries (current US$)
## 2527                                                                                                                                                                                                                                Net ODA provided to the least developed countries (% of GNI)
## 2528                                                                                                                                                                                                                                                       Net ODA provided, total (current US$)
## 2529                                                                                                                                                                                                                                                          Net ODA provided, total (% of GNI)
## 2530                                                                                                                                                                                                                                                 Net ODA provided, total (constant 2020 US$)
## 2531                                                                                                                                                                                                                                      Bilateral ODA commitments that is untied (current US$)
## 2532                                                                                                                                                                                                                   Bilateral ODA commitments that is untied (% of bilateral ODA commitments)
## 2533                                                                                                                                                                                                                                              Non-financial Pub. Enterprises Ext. Debt (US$)
## 2534                                                                                                                                                                                                                                        Pub. LT Debt, IBRD&IDA (US$, IBRD DRS - end of year)
## 2535                                                                                                                                                                                                                                             Pub. LT Debt, Official Creditors(US$, IBRD DRS)
## 2536                                                                                                                                                                                                                                             Pub. LT Debt, Private Creditors (US$, IBRD DRS)
## 2537                                                                                                                                                                                                                                             Public/Pub. Guar. Long-Term Debt(US$, IBRD DRS)
## 2538                                                                                                                                                                                                                                                       Use of Fund Credit (US$, end of year)
## 2539                                                                                                                                                                                                                                             Repay on Long-Term Loans (US$, as per IBRD DRS)
## 2540                                                                                                                                                                                                                                             Disb. of Long-Term Loans (US$, as per IBRD DRS)
## 2541                                                                                                                                                                                                                                                              Central Bank, incl. IMF credit
## 2542                                                                                                                                                                                                                                                                          Central Government
## 2543                                                                                                                                                                                                                                                                  Long-Term Debt (by debtor)
## 2544                                                                                                                                                                                                                                                            Non-financial Public Enterprices
## 2545                                                                                                                                                                                                                                                        Private sector, incl. non-guaranteed
## 2546                                                                                                                                                                                                                                                                  Rest of General Government
## 2547                                                                                                                                                                                                                                               Long-Term Interest Payments (as per IBRD DRS)
## 2548                                                                                                                                                                                                                                                Long-Term Loans (net) (US$, as per IBRD DRS)
## 2549                                                                                                                                                                                                                                              Central Bank Ext. Debt, incl. IMF credit (US$)
## 2550                                                                                                                                                                                                                                         Imports Merchandise, Customs, current US$, millions
## 2551                                                                                                                                                                                                                                        Imports Merchandise, Customs, constant US$, millions
## 2552                                                                                                                                                                                                                                                    Imports Merchandise, Customs, Price, US$
## 2553                                                                                                                                                                                                                             Imports Merchandise, Customs, current US$, millions, seas. adj.
## 2554                                                                                                                                                                                                                            Imports Merchandise, Customs, constant US$, millions, seas. adj.
## 2555                                                                                                                                                                                                                                        Imports Merchandise, Customs, Price, US$, seas. adj.
## 2556                                                                                                                                                                                                                                             Non-guar. Private Long-Term Debt(US$, IBRD DRS)
## 2557                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2558                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2559                                                                                                                                                                             Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2560                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2561                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2562                                                                                                                                                                                       Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2563                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2564                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2565                                                                                                                                                                             Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2566                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2567                                                                                                                                                                                            Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2568                                                                                                                                                                                       Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2569                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2570                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2571                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP
## 2572                                                                                                                                                                             Gross PSD, Public Sector, All maturities, All instruments, Domestic creditors, Nominal Value, National Currency
## 2573                                                                                                                                                                                                   Gross PSD, Total, All maturities, All instruments, Domestic creditors, Nominal Value, US$
## 2574                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2575                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2576                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2577                                                                                                                                                                                Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2578                                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2579                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2580                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2581                                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2582                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2583                                                                                                                                                                                Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2584                                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2585                                                                                                                                                                                         Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2586                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2587                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2588                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP
## 2589                                                                                                                                                                               Gross PSD, Public Sector, All maturities, All instruments, Foreign currency, Nominal Value, National Currency
## 2590                                                                                                                                                                                                     Gross PSD, Total, All maturities, All instruments, Foreign currency, Nominal Value, US$
## 2591                                                                                                                                                                     Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2592                                                                                                                                                                                   Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2593                                                                                                                                                                              Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2594                                                                                                                                                                               Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2595                                                                                                                                                                                             Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2596                                                                                                                                                                                        Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2597                                                                                                                                                                     Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2598                                                                                                                                                                                   Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2599                                                                                                                                                                              Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2600                                                                                                                                                                               Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2601                                                                                                                                                                                             Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2602                                                                                                                                                                                        Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2603                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2604                                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2605                                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP
## 2606                                                                                                                                                                              Gross PSD, Public Sector, All maturities, All instruments, Domestic currency, Nominal Value, National Currency
## 2607                                                                                                                                                                                                    Gross PSD, Total, All maturities, All instruments, Domestic currency, Nominal Value, US$
## 2608                                                                                                                                                                                        Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, National Currency
## 2609                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, US$
## 2610                                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2611                                                                                                                                                                                                  Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, National Currency
## 2612                                                                                                                                                                                                                Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, US$
## 2613                                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2614                                                                                                                                                                                        Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, National Currency
## 2615                                                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, US$
## 2616                                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2617                                                                                                                                                                                                  Gross PSD, General Gov., All maturities, All instruments, Nominal Value, National Currency
## 2618                                                                                                                                                                                                                Gross PSD, General Gov., All maturities, All instruments, Nominal Value, US$
## 2619                                                                                                                                                                                                           Gross PSD, General Gov., All maturities, All instruments, Nominal Value, % of GDP
## 2620                                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, National Currency
## 2621                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, US$
## 2622                                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, % of GDP
## 2623                                                                                                                                                                                                 Gross PSD, Public Sector, All maturities, All instruments, Nominal Value, National Currency
## 2624                                                                                                                                                                                                                       Gross PSD, Total, All maturities, All instruments, Nominal Value, US$
## 2625                                                                                                                                                                    Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2626                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2627                                                                                                                                                                             Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2628                                                                                                                                                                              Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2629                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2630                                                                                                                                                                                       Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2631                                                                                                                                                                    Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2632                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$
## 2633                                                                                                                                                                             Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2634                                                                                                                                                                              Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2635                                                                                                                                                                                            Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, US$
## 2636                                                                                                                                                                                       Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2637                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2638                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$
## 2639                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP
## 2640                                                                                                                                                                             Gross PSD, Public Sector, All maturities, All instruments, External creditors, Nominal Value, National Currency
## 2641                                                                                                                                                                                                   Gross PSD, Total, All maturities, All instruments, External creditors, Nominal Value, US$
## 2642                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2643                                                                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2644                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2645                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2646                                                                                                                                                                                                          Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2647                                                                                                                                                                                                     Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2648                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency
## 2649                                                                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, US$
## 2650                                                                                                                                                                                           Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2651                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, National Currency
## 2652                                                                                                                                                                                                          Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, US$
## 2653                                                                                                                                                                                                     Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2654                                                                                                                                                 Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2655                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2656                                                                                                                                                          Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2657                                                                                                                                                           Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2658                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2659                                                                                                                                                                    Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2660                                                                                                                                                 Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2661                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2662                                                                                                                                                          Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2663                                                                                                                                                           Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2664                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2665                                                                                                                                                                    Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2666                                                                                                                                              Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2667                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2668                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP
## 2669                                                                                                                                                          Gross PSD, Public Sector, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency
## 2670                                                                                                                                                                                Gross PSD, Total, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$
## 2671                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2672                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2673                                                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2674                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2675                                                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2676                                                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2677                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2678                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2679                                                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2680                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2681                                                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2682                                                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2683                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2684                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2685                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP
## 2686                                                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency
## 2687                                                                                                                                                                              Gross PSD, Total, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$
## 2688                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency
## 2689                                                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, US$
## 2690                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP
## 2691                                                                                                                                                                                           Gross PSD, Public Sector, All maturities, Currency and deposits, Nominal Value, National Currency
## 2692                                                                                                                                                                                                                 Gross PSD, Total, All maturities, Currency and deposits, Nominal Value, US$
## 2693                                                                                                                                                                                                     Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$
## 2694                                                                                                                                                                                                Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2695                                                                                                                                                                                                     Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$
## 2696                                                                                                                                                                                                Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP
## 2697                                                                                                                                                                                            Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$
## 2698                                                                                                                                                                                       Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2699                                                                                                                                                                                            Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$
## 2700                                                                                                                                                                                       Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP
## 2701                                                                                                                                                                                                Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$
## 2702                                                                                                                                                                                           Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2703                                                                                                                                                                                                Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$
## 2704                                                                                                                                                                                           Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP
## 2705                                                                                                                                                                                                   Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$
## 2706                                                                                                                                                                                              Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2707                                                                                                                                                                                                   Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$
## 2708                                                                                                                                                                                              Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP
## 2709                                                                                                                                                                         Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$
## 2710                                                                                                                                                                    Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2711                                                                                                                                                                         Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$
## 2712                                                                                                                                                                    Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP
## 2713                                                                                                                                                                                        Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2714                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, US$
## 2715                                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2716                                                                                                                                                                                                  Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2717                                                                                                                                                                                                                Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, US$
## 2718                                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2719                                                                                                                                                                                        Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, National Currency
## 2720                                                                                                                                                                                                      Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, US$
## 2721                                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2722                                                                                                                                                                                                  Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, National Currency
## 2723                                                                                                                                                                                                                Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, US$
## 2724                                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, % of GDP
## 2725                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2726                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2727                                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2728                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2729                                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2730                                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2731                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2732                                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2733                                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2734                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2735                                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2736                                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2737                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2738                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2739                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP
## 2740                                                                                                                                                                Gross PSD, Public Sector, Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency
## 2741                                                                                                                                                                                      Gross PSD, Total, Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$
## 2742                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2743                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2744                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2745                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2746                                                                                                                                                                             Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2747                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2748                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2749                                                                                                                                                                   Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2750                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2751                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2752                                                                                                                                                                             Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2753                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2754                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2755                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2756                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP
## 2757                                                                                                                                                              Gross PSD, Public Sector, Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency
## 2758                                                                                                                                                                                    Gross PSD, Total, Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$
## 2759                                                                                                                                                                                         Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, National Currency
## 2760                                                                                                                                                                                                       Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, US$
## 2761                                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2762                                                                                                                                                                                                   Gross PSD, Central Gov., All maturities, Debt Securities, Market value, National Currency
## 2763                                                                                                                                                                                                                 Gross PSD, Central Gov., All maturities, Debt Securities, Market value, US$
## 2764                                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Debt Securities, Market value, % of GDP
## 2765                                                                                                                                                                                         Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, National Currency
## 2766                                                                                                                                                                                                       Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, US$
## 2767                                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2768                                                                                                                                                                                                   Gross PSD, General Gov., All maturities, Debt Securities, Market value, National Currency
## 2769                                                                                                                                                                                                                 Gross PSD, General Gov., All maturities, Debt Securities, Market value, US$
## 2770                                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Debt Securities, Market value, % of GDP
## 2771                                                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, National Currency
## 2772                                                                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, US$
## 2773                                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, % of GDP
## 2774                                                                                                                                                                                                  Gross PSD, Public Sector, All maturities, Debt Securities, Market value, National Currency
## 2775                                                                                                                                                                                                                        Gross PSD, Total, All maturities, Debt Securities, Market value, US$
## 2776                                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, National Currency
## 2777                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, US$
## 2778                                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP
## 2779                                                                                                                                                                                                 Gross PSD, Public Sector, All maturities, Debt securities, Nominal Value, National Currency
## 2780                                                                                                                                                                                                                       Gross PSD, Total, All maturities, Debt securities, Nominal Value, US$
## 2781                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2782                                                                                                                                                              Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2783                                                                                                                                                         Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2784                                                                                                                                                          Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2785                                                                                                                                                                        Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2786                                                                                                                                                                   Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2787                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2788                                                                                                                                                              Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2789                                                                                                                                                         Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2790                                                                                                                                                          Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2791                                                                                                                                                                        Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2792                                                                                                                                                                   Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2793                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2794                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2795                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2796                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2797                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2798                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2799                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2800                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2801                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2802                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2803                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2804                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2805                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2806                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2807                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2808                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2809                                                                                                                                              Gross PSD, Total, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2810                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2811                                                                                                                           Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2812                                                                                                                      Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2813                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2814                                                                                                                                     Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2815                                                                                                                                Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2816                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2817                                                                                                                           Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2818                                                                                                                      Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2819                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2820                                                                                                                                     Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2821                                                                                                                                Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2822                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2823                                                                                                                        Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2824                                                                                                                   Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2825                                                                                                                      Gross PSD, Public Sector, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2826                                                                                                                                            Gross PSD, Total, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2827                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2828                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2829                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 2830                                                                                                                                                         Gross PSD, Public Sector, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 2831                                                                                                                                                                               Gross PSD, Total, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 2832                                                                                                                                                                                                  Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, National Currency
## 2833                                                                                                                                                                                                                Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, US$
## 2834                                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2835                                                                                                                                                                                                            Gross PSD, Central Gov., All maturities, Loans, Nominal Value, National Currency
## 2836                                                                                                                                                                                                                          Gross PSD, Central Gov., All maturities, Loans, Nominal Value, US$
## 2837                                                                                                                                                                                                                     Gross PSD, Central Gov., All maturities, Loans, Nominal Value, % of GDP
## 2838                                                                                                                                                                                                  Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, National Currency
## 2839                                                                                                                                                                                                                Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, US$
## 2840                                                                                                                                                                                                           Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2841                                                                                                                                                                                                            Gross PSD, General Gov., All maturities, Loans, Nominal Value, National Currency
## 2842                                                                                                                                                                                                                          Gross PSD, General Gov., All maturities, Loans, Nominal Value, US$
## 2843                                                                                                                                                                                                                     Gross PSD, General Gov., All maturities, Loans, Nominal Value, % of GDP
## 2844                                                                                                                                                                 Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2845                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2846                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2847                                                                                                                                                                           Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2848                                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2849                                                                                                                                                                                    Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2850                                                                                                                                                                 Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2851                                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2852                                                                                                                                                                          Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2853                                                                                                                                                                           Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2854                                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2855                                                                                                                                                                                    Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2856                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2857                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2858                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP
## 2859                                                                                                                                                                          Gross PSD, Public Sector, Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency
## 2860                                                                                                                                                                                                Gross PSD, Total, Long-term, With payment due in one year or less, Loans, Nominal Value, US$
## 2861                                                                                                                                                               Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2862                                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2863                                                                                                                                                                        Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2864                                                                                                                                                                         Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2865                                                                                                                                                                                       Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2866                                                                                                                                                                                  Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2867                                                                                                                                                               Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2868                                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2869                                                                                                                                                                        Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2870                                                                                                                                                                         Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2871                                                                                                                                                                                       Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2872                                                                                                                                                                                  Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2873                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2874                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2875                                                                                                                                                                     Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP
## 2876                                                                                                                                                                        Gross PSD, Public Sector, Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency
## 2877                                                                                                                                                                                              Gross PSD, Total, Long-term, With payment due in more than one year, Loans, Nominal Value, US$
## 2878                                                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, National Currency
## 2879                                                                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, US$
## 2880                                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, % of GDP
## 2881                                                                                                                                                                                                           Gross PSD, Public Sector, All maturities, Loans, Nominal Value, National Currency
## 2882                                                                                                                                                                                                                                 Gross PSD, Total, All maturities, Loans, Nominal Value, US$
## 2883                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2884                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2885                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2886                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2887                                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2888                                                                                                                                                                                                    Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2889                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency
## 2890                                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, US$
## 2891                                                                                                                                                                                          Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2892                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, National Currency
## 2893                                                                                                                                                                                                         Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, US$
## 2894                                                                                                                                                                                                    Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2895                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2896                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2897                                                                                                                                                         Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2898                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2899                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2900                                                                                                                                                                   Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2901                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2902                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2903                                                                                                                                                         Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2904                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2905                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2906                                                                                                                                                                   Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2907                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2908                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2909                                                                                                                                                      Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP
## 2910                                                                                                                                                         Gross PSD, Public Sector, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency
## 2911                                                                                                                                                                               Gross PSD, Total, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$
## 2912                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2913                                                                                                                                                            Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2914                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2915                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2916                                                                                                                                                                      Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2917                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2918                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2919                                                                                                                                                            Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2920                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2921                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2922                                                                                                                                                                      Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2923                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2924                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2925                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2926                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP
## 2927                                                                                                                                                       Gross PSD, Public Sector, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency
## 2928                                                                                                                                                                             Gross PSD, Total, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$
## 2929                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency
## 2930                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, US$
## 2931                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP
## 2932                                                                                                                                                                                          Gross PSD, Public Sector, All maturities, Other accounts payable, Nominal Value, National Currency
## 2933                                                                                                                                                                                                                Gross PSD, Total, All maturities, Other accounts payable, Nominal Value, US$
## 2934                                                                                                                                                                                 Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2935                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2936                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2937                                                                                                                                                                                           Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2938                                                                                                                                                                                                         Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2939                                                                                                                                                                                                    Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2940                                                                                                                                                                                 Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2941                                                                                                                                                                                               Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$
## 2942                                                                                                                                                                                          Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2943                                                                                                                                                                                           Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2944                                                                                                                                                                                                         Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, US$
## 2945                                                                                                                                                                                                    Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2946                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2947                                                                                                                                                            Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2948                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2949                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2950                                                                                                                                                                      Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2951                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2952                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2953                                                                                                                                                            Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2954                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2955                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2956                                                                                                                                                                      Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2957                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2958                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2959                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2960                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP
## 2961                                                                                                                                                       Gross PSD, Public Sector, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency
## 2962                                                                                                                                                                             Gross PSD, Total, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$
## 2963                                                                                                                                                                              Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2964                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$
## 2965                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP
## 2966                                                                                                                                                                                          Gross PSD, Public Sector, All maturities, Special Drawing Rights, Nominal Value, National Currency
## 2967                                                                                                                                                                                                                Gross PSD, Total, All maturities, Special Drawing Rights, Nominal Value, US$
## 2968                                                                                                                                                                                             Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, National Currency
## 2969                                                                                                                                                                                                           Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, US$
## 2970                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2971                                                                                                                                                                                                       Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, National Currency
## 2972                                                                                                                                                                                                                     Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, US$
## 2973                                                                                                                                                                                                                Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2974                                                                                                                                                                                             Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, National Currency
## 2975                                                                                                                                                                                                           Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, US$
## 2976                                                                                                                                                                                                      Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 2977                                                                                                                                                                                                       Gross PSD, General Gov., Long-term, All instruments, Nominal Value, National Currency
## 2978                                                                                                                                                                                                                     Gross PSD, General Gov., Long-term, All instruments, Nominal Value, US$
## 2979                                                                                                                                                                                                                Gross PSD, General Gov., Long-term, All instruments, Nominal Value, % of GDP
## 2980                                                                                                                                                       Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2981                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2982                                                                                                                                                                Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2983                                                                                                                                                                 Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2984                                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2985                                                                                                                                                                          Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2986                                                                                                                                                       Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2987                                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2988                                                                                                                                                                Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2989                                                                                                                                                                 Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2990                                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2991                                                                                                                                                                          Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2992                                                                                                                                                    Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2993                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2994                                                                                                                                                             Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP
## 2995                                                                                                                                                                Gross PSD, Public Sector, Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency
## 2996                                                                                                                                                                                      Gross PSD, Total, Long-term, With payment due in one year or less, All instruments, Nominal Value, US$
## 2997                                                                                                                                                     Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 2998                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 2999                                                                                                                                                              Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3000                                                                                                                                                               Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3001                                                                                                                                                                             Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3002                                                                                                                                                                        Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3003                                                                                                                                                     Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3004                                                                                                                                                                   Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3005                                                                                                                                                              Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3006                                                                                                                                                               Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3007                                                                                                                                                                             Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3008                                                                                                                                                                        Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3009                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3010                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3011                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP
## 3012                                                                                                                                                              Gross PSD, Public Sector, Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency
## 3013                                                                                                                                                                                    Gross PSD, Total, Long-term, With payment due in more than one year, All instruments, Nominal Value, US$
## 3014                                                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, National Currency
## 3015                                                                                                                                                                                                        Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, US$
## 3016                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, % of GDP
## 3017                                                                                                                                                                                                      Gross PSD, Public Sector, Long-term, All instruments, Nominal Value, National Currency
## 3018                                                                                                                                                                                                                            Gross PSD, Total, Long-term, All instruments, Nominal Value, US$
## 3019                                                                                                                                                                                                                                             Priv. Sector Ext. Debt, incl. non-guarant.(US$)
## 3020                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3021                                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3022                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3023                                                                                                                                                                                                Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3024                                                                                                                                                                                                              Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3025                                                                                                                                                                                                         Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3026                                                                                                                                                                                      Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency
## 3027                                                                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, US$
## 3028                                                                                                                                                                                               Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3029                                                                                                                                                                                                Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, National Currency
## 3030                                                                                                                                                                                                              Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, US$
## 3031                                                                                                                                                                                                         Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3032                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency
## 3033                                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, US$
## 3034                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP
## 3035                                                                                                                                                                                               Gross PSD, Public Sector, Short-term, Currency and deposits, Nominal Value, National Currency
## 3036                                                                                                                                                                                                                     Gross PSD, Total, Short-term, Currency and deposits, Nominal Value, US$
## 3037                                                                                                                                                                                            Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3038                                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, US$
## 3039                                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3040                                                                                                                                                                                                      Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3041                                                                                                                                                                                                                    Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, US$
## 3042                                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3043                                                                                                                                                                                            Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, National Currency
## 3044                                                                                                                                                                                                          Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, US$
## 3045                                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3046                                                                                                                                                                                                      Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, National Currency
## 3047                                                                                                                                                                                                                    Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, US$
## 3048                                                                                                                                                                                                               Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, % of GDP
## 3049                                                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, National Currency
## 3050                                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, US$
## 3051                                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP
## 3052                                                                                                                                                                                                     Gross PSD, Public Sector, Short-term, Debt securities, Nominal Value, National Currency
## 3053                                                                                                                                                                                                                           Gross PSD, Total, Short-term, Debt securities, Nominal Value, US$
## 3054                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3055                                                                                                                                                                  Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3056                                                                                                                                                             Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3057                                                                                                                                                              Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3058                                                                                                                                                                            Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3059                                                                                                                                                                       Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3060                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3061                                                                                                                                                                  Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3062                                                                                                                                                             Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3063                                                                                                                                                              Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3064                                                                                                                                                                            Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3065                                                                                                                                                                       Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3066                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3067                                                                                                                                                               Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3068                                                                                                                                                          Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP
## 3069                                                                                                                                                             Gross PSD, Public Sector, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency
## 3070                                                                                                                                                                                   Gross PSD, Total, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$
## 3071                                                                                                                                                                                                      Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, National Currency
## 3072                                                                                                                                                                                                                    Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, US$
## 3073                                                                                                                                                                                                               Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3074                                                                                                                                                                                                                Gross PSD, Central Gov., Short-term, Loans, Nominal Value, National Currency
## 3075                                                                                                                                                                                                                              Gross PSD, Central Gov., Short-term, Loans, Nominal Value, US$
## 3076                                                                                                                                                                                                                         Gross PSD, Central Gov., Short-term, Loans, Nominal Value, % of GDP
## 3077                                                                                                                                                                                                      Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, National Currency
## 3078                                                                                                                                                                                                                    Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, US$
## 3079                                                                                                                                                                                                               Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3080                                                                                                                                                                                                                Gross PSD, General Gov., Short-term, Loans, Nominal Value, National Currency
## 3081                                                                                                                                                                                                                              Gross PSD, General Gov., Short-term, Loans, Nominal Value, US$
## 3082                                                                                                                                                                                                                         Gross PSD, General Gov., Short-term, Loans, Nominal Value, % of GDP
## 3083                                                                                                                                                                                                   Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, National Currency
## 3084                                                                                                                                                                                                                 Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, US$
## 3085                                                                                                                                                                                                            Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, % of GDP
## 3086                                                                                                                                                                                                               Gross PSD, Public Sector, Short-term, Loans, Nominal Value, National Currency
## 3087                                                                                                                                                                                                                                     Gross PSD, Total, Short-term, Loans, Nominal Value, US$
## 3088                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3089                                                                                                                                                                                                   Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3090                                                                                                                                                                                              Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3091                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3092                                                                                                                                                                                                             Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3093                                                                                                                                                                                                        Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3094                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency
## 3095                                                                                                                                                                                                   Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, US$
## 3096                                                                                                                                                                                              Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3097                                                                                                                                                                                               Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, National Currency
## 3098                                                                                                                                                                                                             Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, US$
## 3099                                                                                                                                                                                                        Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3100                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency
## 3101                                                                                                                                                                                                Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, US$
## 3102                                                                                                                                                                                           Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP
## 3103                                                                                                                                                                                              Gross PSD, Public Sector, Short-term, Other accounts payable, Nominal Value, National Currency
## 3104                                                                                                                                                                                                                    Gross PSD, Total, Short-term, Other accounts payable, Nominal Value, US$
## 3105                                                                                                                                                                                            Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, National Currency
## 3106                                                                                                                                                                                                          Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, US$
## 3107                                                                                                                                                                                                     Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3108                                                                                                                                                                                                      Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, National Currency
## 3109                                                                                                                                                                                                                    Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, US$
## 3110                                                                                                                                                                                                               Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3111                                                                                                                                                                                            Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, National Currency
## 3112                                                                                                                                                                                                          Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, US$
## 3113                                                                                                                                                                                                     Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3114                                                                                                                                                                                                      Gross PSD, General Gov., Short-term, All instruments, Nominal Value, National Currency
## 3115                                                                                                                                                                                                                    Gross PSD, General Gov., Short-term, All instruments, Nominal Value, US$
## 3116                                                                                                                                                                                                               Gross PSD, General Gov., Short-term, All instruments, Nominal Value, % of GDP
## 3117                                                                                                                                                                                         Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, National Currency
## 3118                                                                                                                                                                                                       Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, US$
## 3119                                                                                                                                                                                                  Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, % of GDP
## 3120                                                                                                                                                                                                     Gross PSD, Public Sector, Short-term, All instruments, Nominal Value, National Currency
## 3121                                                                                                                                                                                                                           Gross PSD, Total, Short-term, All instruments, Nominal Value, US$
## 3122                                                                                                                                                                                                                                         Official exchange rate, LCU per USD, period average
## 3123                                                                                                                                                                                                                            Exchange rate, new LCU per USD extended backward, period average
## 3124                                                                                                                                                                                                                             Exchange rate, old LCU per USD extended forward, period average
## 3125                                                                                                                                                                                                                                              Rest of General Government External Debt (US$)
## 3126                                                                                                                                                                                                                                                                             Short-Term Debt
## 3127                                                                                                                                                                                                                                               Identified Short-Term Debt (US$, end of year)
## 3128                                                                                                                                                                                                                                                                          Stock Markets, US$
## 3129                                                                                                                                                                                                                                                                          Stock Markets, LCU
## 3130                                                                                                                                                                                                                         LT Principal due per balance of payments account (BoP, current US$)
## 3131                                                                                                                                                                                                                                                            CB, bilateral (AMT, current US$)
## 3132                                                                                                                                                                                                                                                           PPG, bilateral (AMT, current US$)
## 3133                                                                                                                                                                                                                                                            GG, bilateral (AMT, current US$)
## 3134                                                                                                                                                                                                                                                           OPS, bilateral (AMT, current US$)
## 3135                                                                                                                                                                                                                                                          PRVG, bilateral (AMT, current US$)
## 3136                                                                                                                                                                                                                                                            PS, bilateral (AMT, current US$)
## 3137                                                                                                                                                                                                                                               CB, bilateral concessional (AMT, current US$)
## 3138                                                                                                                                                                                                                                              PPG, bilateral concessional (AMT, current US$)
## 3139                                                                                                                                                                                                                                               GG, bilateral concessional (AMT, current US$)
## 3140                                                                                                                                                                                                                                              OPS, bilateral concessional (AMT, current US$)
## 3141                                                                                                                                                                                                                                             PRVG, bilateral concessional (AMT, current US$)
## 3142                                                                                                                                                                                                                                               PS, bilateral concessional (AMT, current US$)
## 3143                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Principal, USD
## 3144                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Principal, USD
## 3145                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Principal, USD
## 3146                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Principal, USD
## 3147                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Principal, USD
## 3148                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Principal, USD
## 3149                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Principal, USD
## 3150                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Principal, USD
## 3151                                                                                                                                                                                                                Principal repayments on external debt, central bank (PPG) (AMT, current US$)
## 3152                                                                                                                                                                                                                                                   Principal repayments, Total (current US$)
## 3153                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3154                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD
## 3155                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3156                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3157                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3158                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3159                                                                                                                                                                            Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3160                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3161                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD
## 3162                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3163                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3164                                                                                                                                                                                                     Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD
## 3165                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3166                                                                                                                                                                  Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3167                                                                                                                                                                                                     Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD
## 3168                                                                                                                                                                    Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3169                                                                                                                                                                                                         Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD
## 3170                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD
## 3171                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD
## 3172                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD
## 3173                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD
## 3174                                                                                                                                                                                                       Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD
## 3175                                                                                                                                                                                                       Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD
## 3176                                                                                                                                                                                                           Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD
## 3177                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD
## 3178                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD
## 3179                                                                                                                                                                                                                Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Principal, USD
## 3180                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Principal, USD
## 3181                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Principal, USD
## 3182                                                                                                                                                                                   Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Principal, USD
## 3183                                                                                                                                                                                   Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Principal, USD
## 3184                                                                                                                                                                                       Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Principal, USD
## 3185                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Principal, USD
## 3186                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Principal, USD
## 3187                                                                                                                                                                                            Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Principal, USD
## 3188                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Principal, USD
## 3189                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Principal, USD
## 3190                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Principal, USD
## 3191                                                                                                                                                                                              Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Principal, USD
## 3192                                                                                                                                                                                              Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Principal, USD
## 3193                                                                                                                                                                                                  Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Principal, USD
## 3194                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Principal, USD
## 3195                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Principal, USD
## 3196                                                                                                                                                                                                       Ext. Debt Service Pmt, General Government, Immediate, All instruments, Principal, USD
## 3197                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, One year or less, All instruments, Principal, USD
## 3198                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Principal, USD
## 3199                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Principal, USD
## 3200                                                                                                                                                                                            Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Principal, USD
## 3201                                                                                                                                                                                            Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Principal, USD
## 3202                                                                                                                                                                                                Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Principal, USD
## 3203                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Principal, USD
## 3204                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Principal, USD
## 3205                                                                                                                                                                                                     Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Principal, USD
## 3206                                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Principal, USD
## 3207                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3208                                                                                                                                                                                                              Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Principal, USD
## 3209                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Principal, USD
## 3210                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Principal, USD
## 3211                                                                                                                                                                                                    Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Principal, USD
## 3212                                                                                                                                                                                                    Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Principal, USD
## 3213                                                                                                                                                                                                        Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Principal, USD
## 3214                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Principal, USD
## 3215                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Principal, USD
## 3216                                                                                                                                                                                                             Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Principal, USD
## 3217                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Principal, USD
## 3218                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Principal, USD
## 3219                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Principal, USD
## 3220                                                                                                                                                                                                   Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Principal, USD
## 3221                                                                                                                                                                                                   Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Principal, USD
## 3222                                                                                                                                                                                                       Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Principal, USD
## 3223                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Principal, USD
## 3224                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Principal, USD
## 3225                                                                                                                                                                                                            Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Principal, USD
## 3226                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Principal, USD
## 3227                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Principal, USD
## 3228                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Principal, USD
## 3229                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Principal, USD
## 3230                                                                                                                                                                                    Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Principal, USD
## 3231                                                                                                                                                                                    Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Principal, USD
## 3232                                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Principal, USD
## 3233                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Principal, USD
## 3234                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Principal, USD
## 3235                                                                                                                                                                                             Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Principal, USD
## 3236                                                                                                                                                                                                   Principal repayments on external debt, general government sector (PPG) (AMT, current US$)
## 3237                                                                                                                                                                                                               Principal repayments on external debt, public sector (PPG) (AMT, current US$)
## 3238                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3239                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3240                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3241                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3242                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3243                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3244                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3245                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Principal, USD
## 3246                                                                                                                                                                                                                                                          IMF repurchases (AMT, current US$)
## 3247                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Principal, USD
## 3248                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Principal, USD
## 3249                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Principal, USD
## 3250                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Principal, USD
## 3251                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Principal, USD
## 3252                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Principal, USD
## 3253                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Principal, USD
## 3254                                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Principal, USD
## 3255                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Principal, USD
## 3256                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Principal, USD
## 3257                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Principal, USD
## 3258                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Principal, USD
## 3259                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Principal, USD
## 3260                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Principal, USD
## 3261                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Principal, USD
## 3262                                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Principal, USD
## 3263                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Principal, USD
## 3264                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Principal, USD
## 3265                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Principal, USD
## 3266                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Principal, USD
## 3267                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Principal, USD
## 3268                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Principal, USD
## 3269                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Principal, USD
## 3270                                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Principal, USD
## 3271                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Principal, USD
## 3272                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Principal, USD
## 3273                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Principal, USD
## 3274                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Principal, USD
## 3275                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Principal, USD
## 3276                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Principal, USD
## 3277                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Principal, USD
## 3278                                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Principal, USD
## 3279                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Principal, USD
## 3280                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Principal, USD
## 3281                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Principal, USD
## 3282                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Principal, USD
## 3283                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Principal, USD
## 3284                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Principal, USD
## 3285                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Principal, USD
## 3286                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Principal, USD
## 3287                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Principal, USD
## 3288                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Principal, USD
## 3289                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Principal, USD
## 3290                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Principal, USD
## 3291                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Principal, USD
## 3292                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Principal, USD
## 3293                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Principal, USD
## 3294                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Principal, USD
## 3295                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Principal, USD
## 3296                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Principal, USD
## 3297                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Principal, USD
## 3298                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Principal, USD
## 3299                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Principal, USD
## 3300                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Principal, USD
## 3301                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Principal, USD
## 3302                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Principal, USD
## 3303                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Principal, USD
## 3304                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Principal, USD
## 3305                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Principal, USD
## 3306                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Principal, USD
## 3307                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Principal, USD
## 3308                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Principal, USD
## 3309                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Principal, USD
## 3310                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Principal, USD
## 3311                                                                                                                                                                                                                   Principal repayments on external debt, long-term + IMF (AMT, current US$)
## 3312                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Principal, USD
## 3313                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Principal, USD
## 3314                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Principal, USD
## 3315                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Principal, USD
## 3316                                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Principal, USD
## 3317                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Principal, USD
## 3318                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Principal, USD
## 3319                                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Principal, USD
## 3320                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Principal, USD
## 3321                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Principal, USD
## 3322                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Principal, USD
## 3323                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Principal, USD
## 3324                                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Principal, USD
## 3325                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Principal, USD
## 3326                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Principal, USD
## 3327                                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Loans, Principal, USD
## 3328                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Principal, USD
## 3329                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Principal, USD
## 3330                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Principal, USD
## 3331                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Principal, USD
## 3332                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Principal, USD
## 3333                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Principal, USD
## 3334                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Principal, USD
## 3335                                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Principal, USD
## 3336                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Principal, USD
## 3337                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Principal, USD
## 3338                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Principal, USD
## 3339                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Principal, USD
## 3340                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Principal, USD
## 3341                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Principal, USD
## 3342                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Principal, USD
## 3343                                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Principal, USD
## 3344                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Principal, USD
## 3345                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Principal, USD
## 3346                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Principal, USD
## 3347                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Principal, USD
## 3348                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Principal, USD
## 3349                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Principal, USD
## 3350                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Principal, USD
## 3351                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Principal, USD
## 3352                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Principal, USD
## 3353                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Principal, USD
## 3354                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Principal, USD
## 3355                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Principal, USD
## 3356                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Principal, USD
## 3357                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Principal, USD
## 3358                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Principal, USD
## 3359                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Principal, USD
## 3360                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Principal, USD
## 3361                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Principal, USD
## 3362                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Principal, USD
## 3363                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Principal, USD
## 3364                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Principal, USD
## 3365                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Principal, USD
## 3366                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Principal, USD
## 3367                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Principal, USD
## 3368                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Principal, USD
## 3369                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Principal, USD
## 3370                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Principal, USD
## 3371                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Principal, USD
## 3372                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Principal, USD
## 3373                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Principal, USD
## 3374                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Principal, USD
## 3375                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Principal, USD
## 3376                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Principal, USD
## 3377                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Principal, USD
## 3378                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Principal, USD
## 3379                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Principal, USD
## 3380                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Principal, USD
## 3381                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Principal, USD
## 3382                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Principal, USD
## 3383                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Principal, USD
## 3384                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Principal, USD
## 3385                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Principal, USD
## 3386                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Principal, USD
## 3387                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Principal, USD
## 3388                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Principal, USD
## 3389                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Principal, USD
## 3390                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Principal, USD
## 3391                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Principal, USD
## 3392                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Principal, USD
## 3393                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Principal, USD
## 3394                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Principal, USD
## 3395                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Principal, USD
## 3396                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Principal, USD
## 3397                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Principal, USD
## 3398                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Principal, USD
## 3399                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Principal, USD
## 3400                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Principal, USD
## 3401                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Principal, USD
## 3402                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Principal, USD
## 3403                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Principal, USD
## 3404                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Principal, USD
## 3405                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Principal, USD
## 3406                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Principal, USD
## 3407                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Principal, USD
## 3408                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Principal, USD
## 3409                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Principal, USD
## 3410                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Principal, USD
## 3411                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Principal, USD
## 3412                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Principal, USD
## 3413                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Principal, USD
## 3414                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Principal, USD
## 3415                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Principal, USD
## 3416                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Principal, USD
## 3417                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Principal, USD
## 3418                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Principal, USD
## 3419                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Principal, USD
## 3420                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Principal, USD
## 3421                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Principal, USD
## 3422                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Principal, USD
## 3423                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Principal, USD
## 3424                                                                                                                                                                                                                         Principal repayments on external debt, long-term (AMT, current US$)
## 3425                                                                                                                                                                                                         Principal repayments on external debt, other public sector (PPG) (AMT, current US$)
## 3426                                                                                                                                                                                                       Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)
## 3427                                                                                                                                                                                              Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)
## 3428                                                                                                                                                                                                                                                                PPG, IBRD (AMT, current US$)
## 3429                                                                                                                                                                                                                                                                 PPG, IDA (AMT, current US$)
## 3430                                                                                                                                                                                                                                                         CB, multilateral (AMT, current US$)
## 3431                                                                                                                                                                                                                                                        PPG, multilateral (AMT, current US$)
## 3432                                                                                                                                                                                                                                                         GG, multilateral (AMT, current US$)
## 3433                                                                                                                                                                                                                                                        OPS, multilateral (AMT, current US$)
## 3434                                                                                                                                                                                                                                                       PRVG, multilateral (AMT, current US$)
## 3435                                                                                                                                                                                                                                                         PS, multilateral (AMT, current US$)
## 3436                                                                                                                                                                                                                                            CB, multilateral concessional (AMT, current US$)
## 3437                                                                                                                                                                                                                                           PPG, multilateral concessional (AMT, current US$)
## 3438                                                                                                                                                                                                                                            GG, multilateral concessional (AMT, current US$)
## 3439                                                                                                                                                                                                                                           OPS, multilateral concessional (AMT, current US$)
## 3440                                                                                                                                                                                                                                          PRVG, multilateral concessional (AMT, current US$)
## 3441                                                                                                                                                                                                                                            PS, multilateral concessional (AMT, current US$)
## 3442                                                                                                                                                                                                                                                   CB, official creditors (AMT, current US$)
## 3443                                                                                                                                                                                                                                                  PPG, official creditors (AMT, current US$)
## 3444                                                                                                                                                                                                                                                   GG, official creditors (AMT, current US$)
## 3445                                                                                                                                                                                                                                                  OPS, official creditors (AMT, current US$)
## 3446                                                                                                                                                                                                                                                 PRVG, official creditors (AMT, current US$)
## 3447                                                                                                                                                                                                                                                   PS, official creditors (AMT, current US$)
## 3448                                                                                                                                                                                                                                                                CB, bonds (AMT, current US$)
## 3449                                                                                                                                                                                                                                                               PPG, bonds (AMT, current US$)
## 3450                                                                                                                                                                                                                                                                GG, bonds (AMT, current US$)
## 3451                                                                                                                                                                                                                                                               OPS, bonds (AMT, current US$)
## 3452                                                                                                                                                                                                                                                              PRVG, bonds (AMT, current US$)
## 3453                                                                                                                                                                                                                                                                PS, bonds (AMT, current US$)
## 3454                                                                                                                                                                                                                                                     CB, commercial banks (AMT, current US$)
## 3455                                                                                                                                                                                                                                                    PPG, commercial banks (AMT, current US$)
## 3456                                                                                                                                                                                                                                                     GG, commercial banks (AMT, current US$)
## 3457                                                                                                                                                                                                                                                    OPS, commercial banks (AMT, current US$)
## 3458                                                                                                                                                                                                                                                   PRVG, commercial banks (AMT, current US$)
## 3459                                                                                                                                                                                                                                                     PS, commercial banks (AMT, current US$)
## 3460                                                                                                                                                                                                                      Principal repayments, PPG and PNG private creditors (AMT, current US$)
## 3461                                                                                                                                                                                                                                                               PNG, bonds (AMT, current US$)
## 3462                                                                                                                                                                                                                                PNG, commercial banks and other creditors (AMT, current US$)
## 3463                                                                                                                                                                                                                                              CB, other private creditors (AMT, current US$)
## 3464                                                                                                                                                                                                                                             PPG, other private creditors (AMT, current US$)
## 3465                                                                                                                                                                                                                                              GG, other private creditors (AMT, current US$)
## 3466                                                                                                                                                                                                                                             OPS, other private creditors (AMT, current US$)
## 3467                                                                                                                                                                                                                                            PRVG, other private creditors (AMT, current US$)
## 3468                                                                                                                                                                                                                                              PS, other private creditors (AMT, current US$)
## 3469                                                                                                                                                                                         Principal repayments on external debt, private guaranteed by public sector (PPG) (AMT, current US$)
## 3470                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3471                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3472                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3473                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3474                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3475                                                                                                                                                                                       Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3476                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3477                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3478                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3479                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3480                                                                                                                                                                             Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3481                                                                                                                                                                               Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3482                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3483                                                                                                                                                                                                                                                    CB, private creditors (AMT, current US$)
## 3484                                                                                                                                                                                                                                                   PPG, private creditors (AMT, current US$)
## 3485                                                                                                                                                                                                                                                    GG, private creditors (AMT, current US$)
## 3486                                                                                                                                                                                                                                                   OPS, private creditors (AMT, current US$)
## 3487                                                                                                                                                                                                                                                  PRVG, private creditors (AMT, current US$)
## 3488                                                                                                                                                                                                                                                    PS, private creditors (AMT, current US$)
## 3489                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD
## 3490                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Principal, USD
## 3491                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD
## 3492                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Principal, USD
## 3493                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD
## 3494                                                                                                                                                                                                       Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Principal, USD
## 3495                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD
## 3496                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD
## 3497                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD
## 3498                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD
## 3499                                                                                                                                                                                             Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Principal, USD
## 3500                                                                                                                                                                                               Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD
## 3501                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Principal, USD
## 3502                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Principal, USD
## 3503                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, All maturities, All instruments, Principal, Arrears, USD
## 3504                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Principal, USD
## 3505                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Principal, USD
## 3506                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Principal, USD
## 3507                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Principal, USD
## 3508                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Principal, USD
## 3509                                                                                                                                                                              Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Principal, USD
## 3510                                                                                                                                                                                            Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Principal, USD
## 3511                                                                                                                                                                              Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Principal, USD
## 3512                                                                                                                                                                                                                                                            Principal arrears, long-term DOD
## 3513                                                                                                                                                                                                                                                      Principal arrears, long-term DOD (US$)
## 3514                                                                                                                                                                                                                                         Principal arrears, official creditors (current US$)
## 3515                                                                                                                                                                                                                                          Principal arrears, private creditors (current US$)
## 3516                                                                                                                                                                                                                                                            Principal forgiven (current US$)
## 3517                                                                                                                                                                                                                                                         Principal rescheduled (current US$)
## 3518                                                                                                                                                                                                                                               Principal rescheduled, official (current US$)
## 3519                                                                                                                                                                                                                                                Principal rescheduled, private (current US$)
## 3520                                                                                                                                                                                                                                         Commitments, bilateral creditors (COM, current US$)
## 3521                                                                                                                                                                                                                              Commitments, public and publicly guaranteed (COM, current US$)
## 3522                                                                                                                                                                                                                                                        Commitments, IBRD (COM, current US$)
## 3523                                                                                                                                                                                                                                                         Commitments, IDA (COM, current US$)
## 3524                                                                                                                                                                                                                                      Commitments, multilateral creditors (COM, current US$)
## 3525                                                                                                                                                                                                                                          Commitments, official creditors (COM, current US$)
## 3526                                                                                                                                                                                                                                           Commitments, private creditors (COM, current US$)
## 3527                                                                                                                                                                                                                                                      Cross-currency valuation (current US$)
## 3528                                                                                                                                                                                                                                         Currency composition of PPG debt, Deutsche mark (%)
## 3529                                                                                                                                                                                                                                                  Currency composition of PPG debt, Euro (%)
## 3530                                                                                                                                                                                                                                          Currency composition of PPG debt, French franc (%)
## 3531                                                                                                                                                                                                                                          Currency composition of PPG debt, Japanese yen (%)
## 3532                                                                                                                                                                                                                                   Currency composition of PPG debt, Multiple currencies (%)
## 3533                                                                                                                                                                                                                                  Currency composition of PPG debt, all other currencies (%)
## 3534                                                                                                                                                                                                                                                   Currency composition of PPG debt, SDR (%)
## 3535                                                                                                                                                                                                                                           Currency composition of PPG debt, Swiss franc (%)
## 3536                                                                                                                                                                                                                                        Currency composition of PPG debt, Pound sterling (%)
## 3537                                                                                                                                                                                                                                          Currency composition of PPG debt, U.S. dollars (%)
## 3538                                                                                                                                                                                                                                                 Debt forgiveness or reduction (current US$)
## 3539                                                                                                                                                                                                                                                            CB, bilateral (DIS, current US$)
## 3540                                                                                                                                                                                                                                                           PPG, bilateral (DIS, current US$)
## 3541                                                                                                                                                                                                                                                            GG, bilateral (DIS, current US$)
## 3542                                                                                                                                                                                                                                                           OPS, bilateral (DIS, current US$)
## 3543                                                                                                                                                                                                                                                          PRVG, bilateral (DIS, current US$)
## 3544                                                                                                                                                                                                                                                            PS, bilateral (DIS, current US$)
## 3545                                                                                                                                                                                                                        Disbursements, Bilateral on nonconcessional terms (DIS, current US$)
## 3546                                                                                                                                                                                                                                               CB, bilateral concessional (DIS, current US$)
## 3547                                                                                                                                                                                                                                              PPG, bilateral concessional (DIS, current US$)
## 3548                                                                                                                                                                                                                                               GG, bilateral concessional (DIS, current US$)
## 3549                                                                                                                                                                                                                                              OPS, bilateral concessional (DIS, current US$)
## 3550                                                                                                                                                                                                                                             PRVG, bilateral concessional (DIS, current US$)
## 3551                                                                                                                                                                                                                                               PS, bilateral concessional (DIS, current US$)
## 3552                                                                                                                                                                                                                       Disbursements on external debt, central bank (PPG) (DIS, current US$)
## 3553                                                                                                                                                                                                                                                          Disbursements, Total (current US$)
## 3554                                                                                                                                                                                                          Disbursements on external debt, general government sector (PPG) (DIS, current US$)
## 3555                                                                                                                                                                                                                      Disbursements on external debt, public sector (PPG) (DIS, current US$)
## 3556                                                                                                                                                                                                                                                            IMF purchases (DIS, current US$)
## 3557                                                                                                                                                                                                                          Disbursements on external debt, long-term + IMF (DIS, current US$)
## 3558                                                                                                                                                                                                                                Disbursements on external debt, long-term (DIS, current US$)
## 3559                                                                                                                                                                                                                Disbursements on external debt, other public sector (PPG) (DIS, current US$)
## 3560                                                                                                                                                                                                              Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)
## 3561                                                                                                                                                                                                     Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)
## 3562                                                                                                                                                                                                                                                Disbursements, Short-term (DIS, current US$)
## 3563                                                                                                                                                                                                                                                                    IDA grants (current US$)
## 3564                                                                                                                                                                                                                                                                PPG, IBRD (DIS, current US$)
## 3565                                                                                                                                                                                                                                                                 PPG, IDA (DIS, current US$)
## 3566                                                                                                                                                                                                                                                         CB, multilateral (DIS, current US$)
## 3567                                                                                                                                                                                                                                                        PPG, multilateral (DIS, current US$)
## 3568                                                                                                                                                                                                                                                         GG, multilateral (DIS, current US$)
## 3569                                                                                                                                                                                                                                                        OPS, multilateral (DIS, current US$)
## 3570                                                                                                                                                                                                                                                       PRVG, multilateral (DIS, current US$)
## 3571                                                                                                                                                                                                                                                         PS, multilateral (DIS, current US$)
## 3572                                                                                                                                                                                                                Disbursements, PPG Multilateral creditors nonconcessional (DIS, current US$)
## 3573                                                                                                                                                                                                                                            CB, multilateral concessional (DIS, current US$)
## 3574                                                                                                                                                                                                                                           PPG, multilateral concessional (DIS, current US$)
## 3575                                                                                                                                                                                                                                            GG, multilateral concessional (DIS, current US$)
## 3576                                                                                                                                                                                                                                           OPS, multilateral concessional (DIS, current US$)
## 3577                                                                                                                                                                                                                                          PRVG, multilateral concessional (DIS, current US$)
## 3578                                                                                                                                                                                                                                            PS, multilateral concessional (DIS, current US$)
## 3579                                                                                                                                                                                                                                                   CB, official creditors (DIS, current US$)
## 3580                                                                                                                                                                                                                                                  PPG, official creditors (DIS, current US$)
## 3581                                                                                                                                                                                                                                                   GG, official creditors (DIS, current US$)
## 3582                                                                                                                                                                                                                                                  OPS, official creditors (DIS, current US$)
## 3583                                                                                                                                                                                                                                                 PRVG, official creditors (DIS, current US$)
## 3584                                                                                                                                                                                                                                                   PS, official creditors (DIS, current US$)
## 3585                                                                                                                                                                                                                                                                CB, bonds (DIS, current US$)
## 3586                                                                                                                                                                                                                                                               PPG, bonds (DIS, current US$)
## 3587                                                                                                                                                                                                                                                                GG, bonds (DIS, current US$)
## 3588                                                                                                                                                                                                                                                               OPS, bonds (DIS, current US$)
## 3589                                                                                                                                                                                                                                                              PRVG, bonds (DIS, current US$)
## 3590                                                                                                                                                                                                                                                                PS, bonds (DIS, current US$)
## 3591                                                                                                                                                                                                                                                     CB, commercial banks (DIS, current US$)
## 3592                                                                                                                                                                                                                                                    PPG, commercial banks (DIS, current US$)
## 3593                                                                                                                                                                                                                                                     GG, commercial banks (DIS, current US$)
## 3594                                                                                                                                                                                                                                                    OPS, commercial banks (DIS, current US$)
## 3595                                                                                                                                                                                                                                                   PRVG, commercial banks (DIS, current US$)
## 3596                                                                                                                                                                                                                                                     PS, commercial banks (DIS, current US$)
## 3597                                                                                                                                                                                                                                  Disbursements, PPG and PNG private creditors (current US$)
## 3598                                                                                                                                                                                                                                                               PNG, bonds (DIS, current US$)
## 3599                                                                                                                                                                                                                                PNG, commercial banks and other creditors (DIS, current US$)
## 3600                                                                                                                                                                                                                                              CB, other private creditors (DIS, current US$)
## 3601                                                                                                                                                                                                                                             PPG, other private creditors (DIS, current US$)
## 3602                                                                                                                                                                                                                                              GG, other private creditors (DIS, current US$)
## 3603                                                                                                                                                                                                                                             OPS, other private creditors (DIS, current US$)
## 3604                                                                                                                                                                                                                                            PRVG, other private creditors (DIS, current US$)
## 3605                                                                                                                                                                                                                                              PS, other private creditors (DIS, current US$)
## 3606                                                                                                                                                                                                Disbursements on external debt, private guaranteed by public sector (PPG) (DIS, current US$)
## 3607                                                                                                                                                                                                                                                    CB, private creditors (DIS, current US$)
## 3608                                                                                                                                                                                                                                                   PPG, private creditors (DIS, current US$)
## 3609                                                                                                                                                                                                                                                    GG, private creditors (DIS, current US$)
## 3610                                                                                                                                                                                                                                                   OPS, private creditors (DIS, current US$)
## 3611                                                                                                                                                                                                                                                  PRVG, private creditors (DIS, current US$)
## 3612                                                                                                                                                                                                                                                    PS, private creditors (DIS, current US$)
## 3613                                                                                                                                                                                                                                       External debt stocks, concessional (DOD, current US$)
## 3614                                                                                                                                                                                                                                                Concessional debt (% of total external debt)
## 3615                                                                                                                                                                                                                                                Debt on Concessional terms to GDP (% of GDP)
## 3616                                                                                                                                                                                                                                   Debt on Concessional terms to export ratio (% of exports)
## 3617                                                                                                                                                                                                                                                Debt on Non-concessional terms (current US$)
## 3618                                                                                                                                                                                                                                            Debt on Non-concessional terms to GDP (% of GDP)
## 3619                                                                                                                                                                                                                               Debt on Non-concessional terms to export ratio (% of exports)
## 3620                                                                                                                                                                                                                                                            CB, bilateral (DOD, current US$)
## 3621                                                                                                                                                                                                                                                           PPG, bilateral (DOD, current US$)
## 3622                                                                                                                                                                                                                                                            GG, bilateral (DOD, current US$)
## 3623                                                                                                                                                                                                                                                           OPS, bilateral (DOD, current US$)
## 3624                                                                                                                                                                                                                                                          PRVG, bilateral (DOD, current US$)
## 3625                                                                                                                                                                                                                                                            PS, bilateral (DOD, current US$)
## 3626                                                                                                                                                                                                                                               CB, bilateral concessional (DOD, current US$)
## 3627                                                                                                                                                                                                                                              PPG, bilateral concessional (DOD, current US$)
## 3628                                                                                                                                                                                                                                               GG, bilateral concessional (DOD, current US$)
## 3629                                                                                                                                                                                                                                              OPS, bilateral concessional (DOD, current US$)
## 3630                                                                                                                                                                                                                                             PRVG, bilateral concessional (DOD, current US$)
## 3631                                                                                                                                                                                                                                               PS, bilateral concessional (DOD, current US$)
## 3632                                                                                                                                                                                                   Debt outstanding and disbursed, PPG Bilateral on nonconcessional terms (DOD, current US$)
## 3633                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, USD
## 3634                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, USD
## 3635                                                                                                                                                                                        Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Currency and deposits, USD
## 3636                                                                                                                                                                                                        Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Currency and deposits, USD
## 3637                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Currency and deposits, USD
## 3638                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Currency and deposits, USD
## 3639                                                                                                                                                                                                                                 External debt stocks, central bank (PPG) (DOD, current US$)
## 3640                                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, Prin. and Int., USD
## 3641                                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Arrears, USD
## 3642                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD
## 3643                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Memo item, USD
## 3644                                                                                                                                                                                                                                              External debt stocks, total (DOD, current US$)
## 3645                                                                                                                                                                                                Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning of period, USD
## 3646                                                                                                                                                                                                          Ext. Assets in Debt Instruments, All Sectors, All maturities, All instruments, USD
## 3647                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, end of period, USD
## 3648                                                                                                                                                                                                 Gross Ext. Debt Pos., All Sectors, All maturities, All instruments,  Exchange rate chg, USD
## 3649                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning pos., USD
## 3650                                                                                                                                                                                                                   Net Ext. Debt Position, All Sectors, All maturities, All instruments, USD
## 3651                                                                                                                                                                                                  Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other chg in vol., USD
## 3652                                                                                                                                                                                                    Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other price chg, USD
## 3653                                                                                                                                                                                                                             Gross Ext. Debt Pos., All Sectors, All maturities, Arrears, USD
## 3654                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Transactions, USD
## 3655                                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD
## 3656                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning of period, USD
## 3657                                                                                                                                                                                        Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3658                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, end of period, USD
## 3659                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Exchange rate chg, USD
## 3660                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning pos., USD
## 3661                                                                                                                                                                                                 Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3662                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other chg in vol., USD
## 3663                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other price chg, USD
## 3664                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Transactions, USD
## 3665                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 3666                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Diff. with Market Value, USD
## 3667                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Market Value, USD
## 3668                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Nominal Value, USD
## 3669                                                                                                                                                                                                                                          Total change in external debt stocks (current US$)
## 3670                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD
## 3671                                                                                                                                                                                                  Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD
## 3672                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD
## 3673                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Euro, USD
## 3674                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Yen, USD
## 3675                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other curr., USD
## 3676                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, All curr., USD
## 3677                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, US dollar, USD
## 3678                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Euro, USD
## 3679                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Yen, USD
## 3680                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Other curr., USD
## 3681                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, All curr., USD
## 3682                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, US dollar, USD
## 3683                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Euro, USD
## 3684                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Yen, USD
## 3685                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other curr., USD
## 3686                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, All curr., USD
## 3687                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, US dollar, USD
## 3688                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Euro, USD
## 3689                                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Yen, USD
## 3690                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Other curr., USD
## 3691                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, All curr., USD
## 3692                                                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, US dollar, USD
## 3693                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Euro, USD
## 3694                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Yen, USD
## 3695                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Other curr., USD
## 3696                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, All curr., USD
## 3697                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, US dollar, USD
## 3698                                                                                                                                                                Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD
## 3699                                                                                                                                                                                                   Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD
## 3700                                                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Euro, USD
## 3701                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Other curr., USD
## 3702                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, All curr., USD
## 3703                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, US dollar, USD
## 3704                                                                                                                                                                                                        Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Yen, USD
## 3705                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning of period, USD
## 3706                                                                                                                                                                                                   Ext. Assets in Debt Instruments, General Government, All maturities, All instruments, USD
## 3707                                                                                                                                                                                              Gross Ext. Debt Pos., General Government , All maturities, All instruments, end of period, USD
## 3708                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Exchange rate chg, USD
## 3709                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning pos., USD
## 3710                                                                                                                                                                                                            Net Ext. Debt Position, General Government, All maturities, All instruments, USD
## 3711                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other chg in vol., USD
## 3712                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other price chg, USD
## 3713                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, All maturities, All instruments, Transactions, USD
## 3714                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, All maturities, All instruments, USD
## 3715                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Diff. with Market Value, USD
## 3716                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Market Value, USD
## 3717                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Nominal Value, USD
## 3718                                                                                                                                                                                              Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, USD
## 3719                                                                                                                                                                                       Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning of period, USD
## 3720                                                                                                                                                                                                 Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, All instruments, USD
## 3721                                                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, end of period, USD
## 3722                                                                                                                                                                                         Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Exchange rate chg, USD
## 3723                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning pos., USD
## 3724                                                                                                                                                                                                          Net Ext. Debt Position, DI: Intercom Lending, All maturities, All instruments, USD
## 3725                                                                                                                                                                                         Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other chg in vol., USD
## 3726                                                                                                                                                                                           Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other price chg, USD
## 3727                                                                                                                                                                                              Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Transactions, USD
## 3728                                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, USD
## 3729                                                                                                                                                                                                 Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Diff. with Market Value, USD
## 3730                                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Market Value, USD
## 3731                                                                                                                                                                                                           Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Nominal Value, USD
## 3732                                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD
## 3733                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning of period, USD
## 3734                                                                                                                                                                                                         Ext. Assets in Debt Instruments, Central Bank, All maturities, All instruments, USD
## 3735                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, end of period, USD
## 3736                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Exchange rate chg, USD
## 3737                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning pos., USD
## 3738                                                                                                                                                                                                                  Net Ext. Debt Position, Central Bank, All maturities, All instruments, USD
## 3739                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other chg in vol., USD
## 3740                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other price chg, USD
## 3741                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Transactions, USD
## 3742                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, USD
## 3743                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Diff. with Market Value, USD
## 3744                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Market Value, USD
## 3745                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Nominal Value, USD
## 3746                                                                                                                                                                                                       Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, USD
## 3747                                                                                                                                                                                                    Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, USD
## 3748                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning of period, USD
## 3749                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Other Sectors, All maturities, All instruments, USD
## 3750                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, end of period, USD
## 3751                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Exchange rate chg, USD
## 3752                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning pos., USD
## 3753                                                                                                                                                                                                                 Net Ext. Debt Position, Other Sectors, All maturities, All instruments, USD
## 3754                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other chg in vol., USD
## 3755                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other price chg, USD
## 3756                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Transactions, USD
## 3757                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, USD
## 3758                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Diff. with Market Value, USD
## 3759                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Market Value, USD
## 3760                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Nominal Value, USD
## 3761                                                                                                                                                                                                                         Debt outstanding and disbursed, Total per capita (DOD, current US$)
## 3762                                                                                                                                                                                                Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Diff. with Market Value, USD
## 3763                                                                                                                                                                                                           Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Market Value, USD
## 3764                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Nominal Value, USD
## 3765                                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD
## 3766                                                                                                                                                                                            Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Diff. with Market Value, USD
## 3767                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Market Value, USD
## 3768                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Nominal Value, USD
## 3769                                                                                                                                                                                                                     Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD
## 3770                                                                                                                                                                                                               Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, USD
## 3771                                                                                                                                                                     Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD
## 3772                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD
## 3773                                                                                                                                                                                                                                     Debt outstanding and disbursed, Total to GDP (% of GDP)
## 3774                                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 3775                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Memo item, USD
## 3776                                                                                                                                                                                                                   External debt stocks (% of exports of goods, services and primary income)
## 3777                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, All instruments, Arrears, USD
## 3778                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Memo item, USD
## 3779                                                                                                                                                                                                                                                             External debt stocks (% of GNI)
## 3780                                                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Arrears, USD
## 3781                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Arrears, USD
## 3782                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Memo item, USD
## 3783                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Arrears, USD
## 3784                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Memo item, USD
## 3785                                                                                                                                                                                               Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD
## 3786                                                                                                                                                                                                                    External debt stocks, general government sector (PPG) (DOD, current US$)
## 3787                                                                                                                                                                                                                                External debt stocks, public sector (PPG) (DOD, current US$)
## 3788                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Euro, USD
## 3789                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Yen, USD
## 3790                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other curr., USD
## 3791                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, All curr., USD
## 3792                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, US dollar, USD
## 3793                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Beginning of period, USD
## 3794                                                                                                                                                                  Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD
## 3795                                                                                                                                                                     Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, end of period, USD
## 3796                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Exchange rate chg, USD
## 3797                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, Beginning pos., USD
## 3798                                                                                                                                                                           Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD
## 3799                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other chg in vol., USD
## 3800                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other price chg, USD
## 3801                                                                                                                                                                      Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Transactions, USD
## 3802                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3803                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3804                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD
## 3805                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Euro, USD
## 3806                                                                                                                                                                        Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Yen, USD
## 3807                                                                                                                                                                Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Other curr., USD
## 3808                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., All curr., USD
## 3809                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, US dollar, USD
## 3810                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent. , Beginning of period, USD
## 3811                                                                                                                                                                                 Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD
## 3812                                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., end of period, USD
## 3813                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Exchange rate chg, USD
## 3814                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt between fellow enterprises, Beginning pos., USD
## 3815                                                                                                                                                                                          Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD
## 3816                                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other chg in vol., USD
## 3817                                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other price chg, USD
## 3818                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Transactions, USD
## 3819                                                                                                                                                                                                  Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., USD
## 3820                                                                                                                                                                               Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD
## 3821                                                                                                                                                                                               Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD
## 3822                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Euro, USD
## 3823                                                                                                                                                                       Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Yen, USD
## 3824                                                                                                                                                               Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other curr., USD
## 3825                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., All curr., USD
## 3826                                                                                                                                                                 Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., US dollar, USD
## 3827                                                                                                                                                               Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Beginning of period, USD
## 3828                                                                                                                                                                  Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD
## 3829                                                                                                                                                                     Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., end of period, USD
## 3830                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Exchange rate chg, USD
## 3831                                                                                                                                                             Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., Beginning pos., USD
## 3832                                                                                                                                                                           Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD
## 3833                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other chg in vol., USD
## 3834                                                                                                                                                                   Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other price chg, USD
## 3835                                                                                                                                                                      Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Transactions, USD
## 3836                                                                                                                                                                                    Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3837                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3838                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD
## 3839                                                                                                                                                                                    Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, DI: Intercom Lending, USD
## 3840                                                                                                                                                                                                    Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, DI: Intercom Lending, USD
## 3841                                                                                                                                                                                                                                                        Use of IMF credit (DOD, current US$)
## 3842                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning of period, USD
## 3843                                                                                                                                                                                             Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3844                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, end of period, USD
## 3845                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Exchange rate chg, USD
## 3846                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning pos., USD
## 3847                                                                                                                                                                                                      Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3848                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other chg in vol., USD
## 3849                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other price chg, USD
## 3850                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Transactions, USD
## 3851                                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD
## 3852                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning of period, USD
## 3853                                                                                                                                                                                                        Ext. Assets in Debt Instruments, General Government, Long-term, Debt securities, USD
## 3854                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Debt securities, end of period, USD
## 3855                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Exchange rate chg, USD
## 3856                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning pos., USD
## 3857                                                                                                                                                                                                                 Net Ext. Debt Position, General Government, Long-term, Debt securities, USD
## 3858                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other chg in vol., USD
## 3859                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other price chg, USD
## 3860                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Transactions, USD
## 3861                                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, Debt securities, USD
## 3862                                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Debt securities, USD
## 3863                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning of period, USD
## 3864                                                                                                                                                                                                              Ext. Assets in Debt Instruments, Central Bank, Long-term, Debt securities, USD
## 3865                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, end of period, USD
## 3866                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Exchange rate chg, USD
## 3867                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning pos., USD
## 3868                                                                                                                                                                                                                       Net Ext. Debt Position, Central Bank, Long-term, Debt securities, USD
## 3869                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other chg in vol., USD
## 3870                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other price chg, USD
## 3871                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Transactions, USD
## 3872                                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, USD
## 3873                                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Debt securities, USD
## 3874                                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, Long-term, Debt securities, USD
## 3875                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning of period, USD
## 3876                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Other Sectors, Long-term, Debt securities, USD
## 3877                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, end of period, USD
## 3878                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Exchange rate chg, USD
## 3879                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning pos., USD
## 3880                                                                                                                                                                                                                      Net Ext. Debt Position, Other Sectors, Long-term, Debt securities, USD
## 3881                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other chg in vol., USD
## 3882                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other price chg, USD
## 3883                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Transactions, USD
## 3884                                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, USD
## 3885                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning of period, USD
## 3886                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits , USD
## 3887                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, end of period, USD
## 3888                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Exchange rate chg, USD
## 3889                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning pos., USD
## 3890                                                                                                                                                                                                Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD
## 3891                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other chg in vol., USD
## 3892                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other price chg, USD
## 3893                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Transactions, USD
## 3894                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD
## 3895                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning of period, USD
## 3896                                                                                                                                                                                                  Ext. Assets in Debt Instruments, General Government, Long-term, Currency and deposits, USD
## 3897                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, end of period, USD
## 3898                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Exchange rate chg, USD
## 3899                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning pos., USD
## 3900                                                                                                                                                                                                           Net Ext. Debt Position, General Government, Long-term, Currency and deposits, USD
## 3901                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other chg in vol., USD
## 3902                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other price chg, USD
## 3903                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Transactions, USD
## 3904                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, USD
## 3905                                                                                                                                                                                             Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Currency and deposits, USD
## 3906                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning of period, USD
## 3907                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Central Bank, Long-term, Currency and deposits, USD
## 3908                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, end of period, USD
## 3909                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Exchange rate chg, USD
## 3910                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning pos., USD
## 3911                                                                                                                                                                                                                 Net Ext. Debt Position, Central Bank, Long-term, Currency and deposits, USD
## 3912                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other chg in vol., USD
## 3913                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other price chg, USD
## 3914                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Transactions, USD
## 3915                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, USD
## 3916                                                                                                                                                                                                      Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Currency and deposits, USD
## 3917                                                                                                                                                                                                   Gross Ext. Debt Pos., Other financial corporations, Long-term, Currency and deposits, USD
## 3918                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning of period, USD
## 3919                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Other Sectors, Long-term, Currency and deposits, USD
## 3920                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, end of period, USD
## 3921                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Exchange rate chg, USD
## 3922                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning pos., USD
## 3923                                                                                                                                                                                                                Net Ext. Debt Position, Other Sectors, Long-term, Currency and deposits, USD
## 3924                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other chg in vol., USD
## 3925                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other price chg, USD
## 3926                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Transactions, USD
## 3927                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, USD
## 3928                                                                                                                                                                                                      Debt outstanding and disbursed, Long-term debt including IMF credit (DOD, current US$)
## 3929                                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning of period, USD
## 3930                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3931                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, end of period, USD
## 3932                                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Exchange rate chg, USD
## 3933                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning pos., USD
## 3934                                                                                                                                                                                                                Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3935                                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other chg in vol., USD
## 3936                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other price chg, USD
## 3937                                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Transactions, USD
## 3938                                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, USD
## 3939                                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning of period, USD
## 3940                                                                                                                                                                                                                  Ext. Assets in Debt Instruments, General Government, Long-term, Loans, USD
## 3941                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Loans, end of period, USD
## 3942                                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Loans, Exchange rate chg, USD
## 3943                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning pos., USD
## 3944                                                                                                                                                                                                                           Net Ext. Debt Position, General Government, Long-term, Loans, USD
## 3945                                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Loans, Other chg in vol., USD
## 3946                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Loans, Other price chg, USD
## 3947                                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Loans, Transactions, USD
## 3948                                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Loans, USD
## 3949                                                                                                                                                                                                             Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Loans, USD
## 3950                                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning of period, USD
## 3951                                                                                                                                                                                                                        Ext. Assets in Debt Instruments, Central Bank, Long-term, Loans, USD
## 3952                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Loans, end of period, USD
## 3953                                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Exchange rate chg, USD
## 3954                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning pos., USD
## 3955                                                                                                                                                                                                                                 Net Ext. Debt Position, Central Bank, Long-term, Loans, USD
## 3956                                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other chg in vol., USD
## 3957                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other price chg, USD
## 3958                                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Transactions, USD
## 3959                                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Loans, USD
## 3960                                                                                                                                                                                                                      Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Loans, USD
## 3961                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other financial corporations, Long-term, Loans, USD
## 3962                                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning of period, USD
## 3963                                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Other Sectors, Long-term, Loans, USD
## 3964                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, end of period, USD
## 3965                                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Exchange rate chg, USD
## 3966                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning pos., USD
## 3967                                                                                                                                                                                                                                Net Ext. Debt Position, Other Sectors, Long-term, Loans, USD
## 3968                                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other chg in vol., USD
## 3969                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other price chg, USD
## 3970                                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Transactions, USD
## 3971                                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, USD
## 3972                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Beginning of period, USD
## 3973                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD
## 3974                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, end of period, USD
## 3975                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3976                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, Beginning pos., USD
## 3977                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD
## 3978                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other chg in vol., USD
## 3979                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other price chg, USD
## 3980                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Transactions, USD
## 3981                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, USD
## 3982                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Beginning of period, USD
## 3983                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Long-term, Other debt instruments, USD
## 3984                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, end of period, USD
## 3985                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3986                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Other debt instruments, Beginning pos., USD
## 3987                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Long-term, Other debt instruments, USD
## 3988                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other chg in vol., USD
## 3989                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other price chg, USD
## 3990                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Transactions, USD
## 3991                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, USD
## 3992                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Other debt liabilities, USD
## 3993                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Beginning of period, USD
## 3994                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Long-term, Other debt instruments, USD
## 3995                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, end of period, USD
## 3996                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Exchange rate chg, USD
## 3997                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Other debt instruments, Beginning pos., USD
## 3998                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Long-term, Other debt instruments, USD
## 3999                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other chg in vol., USD
## 4000                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other price chg, USD
## 4001                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Transactions, USD
## 4002                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, USD
## 4003                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Other debt liabilities, USD
## 4004                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Long-term, Other debt liabilities, USD
## 4005                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Beginning of period, USD
## 4006                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Long-term, Other debt instruments, USD
## 4007                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, end of period, USD
## 4008                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Exchange rate chg, USD
## 4009                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt instruments, Beginning pos., USD
## 4010                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Long-term, Other debt instruments, USD
## 4011                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Other chg in vol., USD
## 4012                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Other price chg, USD
## 4013                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Transactions, USD
## 4014                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, USD
## 4015                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Beginning of period, USD
## 4016                                                                                                                                                                                          Ext. Assets in Debt Instruments, General Government, Long-term, Special drawing rights (SDRs), USD
## 4017                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), end of period, USD
## 4018                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Exchange rate chg, USD
## 4019                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (SDRs), Beginning pos., USD
## 4020                                                                                                                                                                                                   Net Ext. Debt Position, General Government, Long-term, Special drawing rights (SDRs), USD
## 4021                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other chg in vol., USD
## 4022                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other price chg, USD
## 4023                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Transactions, USD
## 4024                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), USD
## 4025                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Beginning of period, USD
## 4026                                                                                                                                                                                                Ext. Assets in Debt Instruments, Central Bank, Long-term, Special drawing rights (SDRs), USD
## 4027                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), end of period, USD
## 4028                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Exchange rate chg, USD
## 4029                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (SDRs), Beginning pos., USD
## 4030                                                                                                                                                                                                         Net Ext. Debt Position, Central Bank, Long-term, Special drawing rights (SDRs), USD
## 4031                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other chg in vol., USD
## 4032                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other price chg, USD
## 4033                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Transactions, USD
## 4034                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), USD
## 4035                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning of period, USD
## 4036                                                                                                                                                                                   Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4037                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, end of period, USD
## 4038                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4039                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning pos., USD
## 4040                                                                                                                                                                                            Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4041                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other chg in vol., USD
## 4042                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other price chg, USD
## 4043                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Transactions, USD
## 4044                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD
## 4045                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning of period, USD
## 4046                                                                                                                                                                                              Ext. Assets in Debt Instruments, General Government, Long-term, Trade credit and advances, USD
## 4047                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, end of period, USD
## 4048                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4049                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning pos., USD
## 4050                                                                                                                                                                                                       Net Ext. Debt Position, General Government, Long-term, Trade credit and advances, USD
## 4051                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other chg in vol., USD
## 4052                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other price chg, USD
## 4053                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Transactions, USD
## 4054                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, USD
## 4055                                                                                                                                                                                         Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Trade credit and advances, USD
## 4056                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Beginning of period, USD
## 4057                                                                                                                                                                                                    Ext. Assets in Debt Instruments, Central Bank, Long-term, Trade credit and advances, USD
## 4058                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, end of period, USD
## 4059                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4060                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances , Beginning pos., USD
## 4061                                                                                                                                                                                                            Net Ext. Debt Position, Central Bank, Long-term, Trade credit and advances , USD
## 4062                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other chg in vol., USD
## 4063                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other price chg, USD
## 4064                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Transactions, USD
## 4065                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, USD
## 4066                                                                                                                                                                                                  Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Trade credit and advances, USD
## 4067                                                                                                                                                                                               Gross Ext. Debt Pos., Other financial corporations, Long-term, Trade credit and advances, USD
## 4068                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning of period, USD
## 4069                                                                                                                                                                                                   Ext. Assets in Debt Instruments, Other Sectors, Long-term, Trade credit and advances, USD
## 4070                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, end of period, USD
## 4071                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Exchange rate chg, USD
## 4072                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning pos., USD
## 4073                                                                                                                                                                                                            Net Ext. Debt Position, Other Sectors, Long-term, Trade credit and advances, USD
## 4074                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other chg in vol., USD
## 4075                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other price chg, USD
## 4076                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Transactions, USD
## 4077                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, USD
## 4078                                                                                                                                                                                                                                          External debt stocks, long-term (DOD, current US$)
## 4079                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning of period, USD
## 4080                                                                                                                                                                                             Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4081                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, end of period, USD
## 4082                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Exchange rate chg, USD
## 4083                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning pos., USD
## 4084                                                                                                                                                                                                      Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4085                                                                                                                                                                                     Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other chg in vol., USD
## 4086                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other price chg, USD
## 4087                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Transactions, USD
## 4088                                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD
## 4089                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Diff. with Market Value, USD
## 4090                                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Market Value, USD
## 4091                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Nominal Value, USD
## 4092                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD
## 4093                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD
## 4094                                                                                                                                                                                                                                                   Long-Term External Debt (by debtor) (US$)
## 4095                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Euro, USD
## 4096                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Yen, USD
## 4097                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other curr., USD
## 4098                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, All curr., USD
## 4099                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, US dollar, USD
## 4100                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Euro, USD
## 4101                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Yen, USD
## 4102                                                                                                                                                                                              Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Other curr., USD
## 4103                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, All curr., USD
## 4104                                                                                                                                                                                                Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, US dollar, USD
## 4105                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Euro, USD
## 4106                                                                                                                                                                                                            Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Yen, USD
## 4107                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Other curr., USD
## 4108                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, All curr., USD
## 4109                                                                                                                                                                                                      Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, US dollar, USD
## 4110                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Euro, USD
## 4111                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Yen, USD
## 4112                                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Other curr., USD
## 4113                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, All curr., USD
## 4114                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, US dollar, USD
## 4115                                                                                                                                                                     Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD
## 4116                                                                                                                                                                                                        Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD
## 4117                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning of period, USD
## 4118                                                                                                                                                                                                        Ext. Assets in Debt Instruments, General Government, Long-term, All instruments, USD
## 4119                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, All instruments, end of period, USD
## 4120                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, All instruments, Exchange rate chg, USD
## 4121                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning pos., USD
## 4122                                                                                                                                                                                                                 Net Ext. Debt Position, General Government, Long-term, All instruments, USD
## 4123                                                                                                                                                                                                Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other chg in vol., USD
## 4124                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other price chg, USD
## 4125                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, All instruments, Transactions, USD
## 4126                                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Long-term, All instruments, USD
## 4127                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Diff. with Market Value, USD
## 4128                                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Market Value, USD
## 4129                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Nominal Value, USD
## 4130                                                                                                                                                                                                   Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, All instruments, USD
## 4131                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning of period, USD
## 4132                                                                                                                                                                                                              Ext. Assets in Debt Instruments, Central Bank, Long-term, All instruments, USD
## 4133                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, end of period, USD
## 4134                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Exchange rate chg, USD
## 4135                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning pos., USD
## 4136                                                                                                                                                                                                                       Net Ext. Debt Position, Central Bank, Long-term, All instruments, USD
## 4137                                                                                                                                                                                                      Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other chg in vol., USD
## 4138                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other price chg, USD
## 4139                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Transactions, USD
## 4140                                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, USD
## 4141                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Diff. with Market Value, USD
## 4142                                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Market Value, USD
## 4143                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Nominal Value, USD
## 4144                                                                                                                                                                                                            Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, All instruments, USD
## 4145                                                                                                                                                                                                         Gross Ext. Debt Pos., Other financial corporations, Long-term, All instruments, USD
## 4146                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning of period, USD
## 4147                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Other Sectors, Long-term, All instruments, USD
## 4148                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, end of period, USD
## 4149                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Exchange rate chg, USD
## 4150                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning pos., USD
## 4151                                                                                                                                                                                                                      Net Ext. Debt Position, Other Sectors, Long-term, All instruments, USD
## 4152                                                                                                                                                                                                     Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other chg in vol., USD
## 4153                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other price chg, USD
## 4154                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Transactions, USD
## 4155                                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, USD
## 4156                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Diff. with Market Value, USD
## 4157                                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Market Value, USD
## 4158                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Nominal Value, USD
## 4159                                                                                                                                                                                                                          Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD
## 4160                                                                                                                                                                                   Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, Memo item, USD
## 4161                                                                                                                                                                                                   Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, Memo item, USD
## 4162                                                                                                                                                                                                                                                            Present value of debt (% of GNP)
## 4163                                                                                                                                                                                                                                  Present value of debt (% of exports of goods and services)
## 4164                                                                                                                                                                                                                          External debt stocks, other public sector (PPG) (DOD, current US$)
## 4165                                                                                                                                                                                                                        External debt stocks, private nonguaranteed (PNG) (DOD, current US$)
## 4166                                                                                                                                                                                             Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, Arrears, USD
## 4167                                                                                                                                                                                          Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Long-term, All instruments, USD
## 4168                                                                                                                                                                                         Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Short-term, All instruments, USD
## 4169                                                                                                                                                                                     Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, All instruments, USD
## 4170                                                                                                                                                                                                                                             Private nonguaranteed debt (% of external debt)
## 4171                                                                                                                                                                  Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD
## 4172                                                                                                                                                                                Public and Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4173                                                                                                                                                                      Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4174                                                                                                                                                                                                               External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)
## 4175                                                                                                                                                                              Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4176                                                                                                                                                                   Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4177                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning of period, USD
## 4178                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4179                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, end of period, USD
## 4180                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Exchange rate chg, USD
## 4181                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning pos., USD
## 4182                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4183                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other chg in vol., USD
## 4184                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other price chg, USD
## 4185                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Transactions, USD
## 4186                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD
## 4187                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning of period, USD
## 4188                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Short-term, Currency and deposits, USD
## 4189                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, end of period, USD
## 4190                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Exchange rate chg, USD
## 4191                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning pos., USD
## 4192                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Short-term, Currency and deposits, USD
## 4193                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other chg in vol., USD
## 4194                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other price chg, USD
## 4195                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Transactions, USD
## 4196                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, USD
## 4197                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Currency and deposits, USD
## 4198                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning of period, USD
## 4199                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Short-term, Currency and deposits, USD
## 4200                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, end of period, USD
## 4201                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Exchange rate chg, USD
## 4202                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning pos., USD
## 4203                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Short-term, Currency and deposits, USD
## 4204                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other chg in vol., USD
## 4205                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other price chg, USD
## 4206                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Transactions, USD
## 4207                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, USD
## 4208                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Currency and deposits, USD
## 4209                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Short-term, Currency and deposits, USD
## 4210                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning of period, USD
## 4211                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Short-term, Currency and deposits, USD
## 4212                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, end of period, USD
## 4213                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Exchange rate chg, USD
## 4214                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning pos., USD
## 4215                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Short-term, Currency and deposits, USD
## 4216                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other chg in vol., USD
## 4217                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other price chg, USD
## 4218                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Transactions, USD
## 4219                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, USD
## 4220                                                                                                                                                                                                                                       Use of IMF credit, SDR allocations (DOD, current US$)
## 4221                                                                                                                                                                           Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Beginning of period, USD
## 4222                                                                                                                                                                                     Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD
## 4223                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, end of period, USD
## 4224                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4225                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, Beginning pos., USD
## 4226                                                                                                                                                                                              Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD
## 4227                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other chg in vol., USD
## 4228                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other price chg, USD
## 4229                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Transactions, USD
## 4230                                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, USD
## 4231                                                                                                                                                                                      Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Beginning of period, USD
## 4232                                                                                                                                                                                                Ext. Assets in Debt Instruments, General Government, Short-term, Other debt instruments, USD
## 4233                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, end of period, USD
## 4234                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4235                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Other debt instruments, Beginning pos., USD
## 4236                                                                                                                                                                                                         Net Ext. Debt Position, General Government, Short-term, Other debt instruments, USD
## 4237                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other chg in vol., USD
## 4238                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other price chg, USD
## 4239                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Transactions, USD
## 4240                                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, USD
## 4241                                                                                                                                                                                            Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Beginning of period, USD
## 4242                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Central Bank, Short-term, Other debt instruments, USD
## 4243                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, end of period, USD
## 4244                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4245                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Other debt instruments, Beginning pos., USD
## 4246                                                                                                                                                                                                               Net Ext. Debt Position, Central Bank, Short-term, Other debt instruments, USD
## 4247                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other chg in vol., USD
## 4248                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other price chg, USD
## 4249                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Transactions, USD
## 4250                                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, USD
## 4251                                                                                                                                                                                           Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Beginning of period, USD
## 4252                                                                                                                                                                                                     Ext. Assets in Debt Instruments, Other Sectors, Short-term, Other debt instruments, USD
## 4253                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, end of period, USD
## 4254                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Exchange rate chg, USD
## 4255                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt instruments, Beginning pos., USD
## 4256                                                                                                                                                                                                              Net Ext. Debt Position, Other Sectors, Short-term, Other debt instruments, USD
## 4257                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other chg in vol., USD
## 4258                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other price chg, USD
## 4259                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Transactions, USD
## 4260                                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, USD
## 4261                                                                                                                                                                                                                                         External debt stocks, short-term (DOD, current US$)
## 4262                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning of period, USD
## 4263                                                                                                                                                                                            Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4264                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, end of period, USD
## 4265                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Exchange rate chg, USD
## 4266                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning pos., USD
## 4267                                                                                                                                                                                                     Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4268                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other chg in vol., USD
## 4269                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other price chg, USD
## 4270                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Transactions, USD
## 4271                                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD
## 4272                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Diff. with Market Value, USD
## 4273                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Market Value, USD
## 4274                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Nominal Value, USD
## 4275                                                                                                                                                                   Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD
## 4276                                                                                                                                                                                                      Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD
## 4277                                                                                                                                                                                                                                                              Short-Term External Debt (US$)
## 4278                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Euro, USD
## 4279                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Yen, USD
## 4280                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other curr., USD
## 4281                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, All curr., USD
## 4282                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, US dollar, USD
## 4283                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Euro, USD
## 4284                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Yen, USD
## 4285                                                                                                                                                                                             Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Other curr., USD
## 4286                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, All curr., USD
## 4287                                                                                                                                                                                               Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, US dollar, USD
## 4288                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Euro, USD
## 4289                                                                                                                                                                                                           Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Yen, USD
## 4290                                                                                                                                                                                                   Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Other curr., USD
## 4291                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, All curr., USD
## 4292                                                                                                                                                                                                     Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, US dollar, USD
## 4293                                                                                                                                                                                                         Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Euro, USD
## 4294                                                                                                                                                                                                          Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Yen, USD
## 4295                                                                                                                                                                                                  Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Other curr., USD
## 4296                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, All curr., USD
## 4297                                                                                                                                                                                                    Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, US dollar, USD
## 4298                                                                                                                                                                    Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD
## 4299                                                                                                                                                                                                       Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD
## 4300                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning of period, USD
## 4301                                                                                                                                                                                                       Ext. Assets in Debt Instruments, General Government, Short-term, All instruments, USD
## 4302                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, All instruments, end of period, USD
## 4303                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, All instruments, Exchange rate chg, USD
## 4304                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning pos., USD
## 4305                                                                                                                                                                                                                Net Ext. Debt Position, General Government, Short-term, All instruments, USD
## 4306                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other chg in vol., USD
## 4307                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other price chg, USD
## 4308                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, All instruments, Transactions, USD
## 4309                                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, All instruments, USD
## 4310                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Diff. with Market Value, USD
## 4311                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Market Value, USD
## 4312                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Nominal Value, USD
## 4313                                                                                                                                                                                                  Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, All instruments, USD
## 4314                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning of period, USD
## 4315                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Central Bank, Short-term, All instruments, USD
## 4316                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, end of period, USD
## 4317                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Exchange rate chg, USD
## 4318                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning pos., USD
## 4319                                                                                                                                                                                                                      Net Ext. Debt Position, Central Bank, Short-term, All instruments, USD
## 4320                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other chg in vol., USD
## 4321                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other price chg, USD
## 4322                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Transactions, USD
## 4323                                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, USD
## 4324                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Diff. with Market Value, USD
## 4325                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Market Value, USD
## 4326                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Nominal Value, USD
## 4327                                                                                                                                                                                                           Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, All instruments, USD
## 4328                                                                                                                                                                                                        Gross Ext. Debt Pos., Other financial corporations, Short-term, All instruments, USD
## 4329                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning of period, USD
## 4330                                                                                                                                                                                                            Ext. Assets in Debt Instruments, Other Sectors, Short-term, All instruments, USD
## 4331                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, end of period, USD
## 4332                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Exchange rate chg, USD
## 4333                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning pos., USD
## 4334                                                                                                                                                                                                                     Net Ext. Debt Position, Other Sectors, Short-term, All instruments, USD
## 4335                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other chg in vol., USD
## 4336                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other price chg, USD
## 4337                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Transactions, USD
## 4338                                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, USD
## 4339                                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD
## 4340                                                                                                                                                                                                                                                       Short-term debt (% of total reserves)
## 4341                                                                                                                                                                                  Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, Memo item, USD
## 4342                                                                                                                                                                                                  Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, Memo item, USD
## 4343                                                                                                                                                                                                                        Short-term debt (% of exports of goods, services and primary income)
## 4344                                                                                                                                                                                                                                                  Short-term debt (% of total external debt)
## 4345                                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning of period, USD
## 4346                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4347                                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, end of period, USD
## 4348                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Exchange rate chg, USD
## 4349                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning pos., USD
## 4350                                                                                                                                                                                                               Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4351                                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other chg in vol., USD
## 4352                                                                                                                                                                                                Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other price chg, USD
## 4353                                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Transactions, USD
## 4354                                                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, USD
## 4355                                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning of period, USD
## 4356                                                                                                                                                                                                                 Ext. Assets in Debt Instruments, General Government, Short-term, Loans, USD
## 4357                                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Loans, end of period, USD
## 4358                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Loans, Exchange rate chg, USD
## 4359                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning pos., USD
## 4360                                                                                                                                                                                                                          Net Ext. Debt Position, General Government, Short-term, Loans, USD
## 4361                                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Loans, Other chg in vol., USD
## 4362                                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, Short-term, Loans, Other price chg, USD
## 4363                                                                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Loans, Transactions, USD
## 4364                                                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, Short-term, Loans, USD
## 4365                                                                                                                                                                                                            Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Loans, USD
## 4366                                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning of period, USD
## 4367                                                                                                                                                                                                                       Ext. Assets in Debt Instruments, Central Bank, Short-term, Loans, USD
## 4368                                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Loans, end of period, USD
## 4369                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Exchange rate chg, USD
## 4370                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning pos., USD
## 4371                                                                                                                                                                                                                                Net Ext. Debt Position, Central Bank, Short-term, Loans, USD
## 4372                                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other chg in vol., USD
## 4373                                                                                                                                                                                                                 Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other price chg, USD
## 4374                                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Transactions, USD
## 4375                                                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, Short-term, Loans, USD
## 4376                                                                                                                                                                                                                     Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Loans, USD
## 4377                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other financial corporations, Short-term, Loans, USD
## 4378                                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning of period, USD
## 4379                                                                                                                                                                                                                      Ext. Assets in Debt Instruments, Other Sectors, Short-term, Loans, USD
## 4380                                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, end of period, USD
## 4381                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Exchange rate chg, USD
## 4382                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning pos., USD
## 4383                                                                                                                                                                                                                               Net Ext. Debt Position, Other Sectors, Short-term, Loans, USD
## 4384                                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other chg in vol., USD
## 4385                                                                                                                                                                                                                Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other price chg, USD
## 4386                                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Transactions, USD
## 4387                                                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, USD
## 4388                                                                                                                                                                                  Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning of period, USD
## 4389                                                                                                                                                                                            Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4390                                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, end of period, USD
## 4391                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Exchange rate chg, USD
## 4392                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning pos., USD
## 4393                                                                                                                                                                                                     Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4394                                                                                                                                                                                    Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other chg in vol., USD
## 4395                                                                                                                                                                                      Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other price chg, USD
## 4396                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Transactions, USD
## 4397                                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD
## 4398                                                                                                                                                                                             Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning of period, USD
## 4399                                                                                                                                                                                                       Ext. Assets in Debt Instruments, General Government, Short-term, Debt securities, USD
## 4400                                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Debt securities, end of period, USD
## 4401                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Exchange rate chg, USD
## 4402                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning pos., USD
## 4403                                                                                                                                                                                                                Net Ext. Debt Position, General Government, Short-term, Debt securities, USD
## 4404                                                                                                                                                                                               Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other chg in vol., USD
## 4405                                                                                                                                                                                                 Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other price chg, USD
## 4406                                                                                                                                                                                                    Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Transactions, USD
## 4407                                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, Short-term, Debt securities, USD
## 4408                                                                                                                                                                                                  Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Debt securities, USD
## 4409                                                                                                                                                                                                   Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning of period, USD
## 4410                                                                                                                                                                                                             Ext. Assets in Debt Instruments, Central Bank, Short-term, Debt securities, USD
## 4411                                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, end of period, USD
## 4412                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Exchange rate chg, USD
## 4413                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning pos., USD
## 4414                                                                                                                                                                                                                      Net Ext. Debt Position, Central Bank, Short-term, Debt securities, USD
## 4415                                                                                                                                                                                                     Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other chg in vol., USD
## 4416                                                                                                                                                                                                       Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other price chg, USD
## 4417                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Transactions, USD
## 4418                                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, USD
## 4419                                                                                                                                                                                                           Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Debt securities, USD
## 4420                                                                                                                                                                                                        Gross Ext. Debt Pos., Other financial corporations, Short-term, Debt securities, USD
## 4421                                                                                                                                                                                                  Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning of period, USD
## 4422                                                                                                                                                                                                            Ext. Assets in Debt Instruments, Other Sectors, Short-term, Debt securities, USD
## 4423                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, end of period, USD
## 4424                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Exchange rate chg, USD
## 4425                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning pos., USD
## 4426                                                                                                                                                                                                                     Net Ext. Debt Position, Other Sectors, Short-term, Debt securities, USD
## 4427                                                                                                                                                                                                    Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other chg in vol., USD
## 4428                                                                                                                                                                                                      Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other price chg, USD
## 4429                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Transactions, USD
## 4430                                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, USD
## 4431                                                                                                                                                                                           Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Other debt liabilities, USD
## 4432                                                                                                                                                                                                    Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Other debt liabilities, USD
## 4433                                                                                                                                                                                                 Gross Ext. Debt Pos., Other financial corporations, Short-term, Other debt liabilities, USD
## 4434                                                                                                                                                                        Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning of period, USD
## 4435                                                                                                                                                                                  Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4436                                                                                                                                                                              Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, end of period, USD
## 4437                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4438                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning pos., USD
## 4439                                                                                                                                                                                           Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4440                                                                                                                                                                          Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other chg in vol., USD
## 4441                                                                                                                                                                            Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other price chg, USD
## 4442                                                                                                                                                                               Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Transactions, USD
## 4443                                                                                                                                                                                             Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD
## 4444                                                                                                                                                                                   Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning of period, USD
## 4445                                                                                                                                                                                             Ext. Assets in Debt Instruments, General Government, Short-term, Trade credit and advances, USD
## 4446                                                                                                                                                                                         Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, end of period, USD
## 4447                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4448                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning pos., USD
## 4449                                                                                                                                                                                                      Net Ext. Debt Position, General Government, Short-term, Trade credit and advances, USD
## 4450                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other chg in vol., USD
## 4451                                                                                                                                                                                       Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other price chg, USD
## 4452                                                                                                                                                                                          Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Transactions, USD
## 4453                                                                                                                                                                                                        Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, USD
## 4454                                                                                                                                                                                        Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Trade credit and advances, USD
## 4455                                                                                                                                                                                         Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning of period, USD
## 4456                                                                                                                                                                                                   Ext. Assets in Debt Instruments, Central Bank, Short-term, Trade credit and advances, USD
## 4457                                                                                                                                                                                               Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, end of period, USD
## 4458                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4459                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning pos., USD
## 4460                                                                                                                                                                                                            Net Ext. Debt Position, Central Bank, Short-term, Trade credit and advances, USD
## 4461                                                                                                                                                                                           Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other chg in vol., USD
## 4462                                                                                                                                                                                             Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other price chg, USD
## 4463                                                                                                                                                                                                Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Transactions, USD
## 4464                                                                                                                                                                                                              Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, USD
## 4465                                                                                                                                                                                                 Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Trade credit and advances, USD
## 4466                                                                                                                                                                                              Gross Ext. Debt Pos., Other financial corporations, Short-term, Trade credit and advances, USD
## 4467                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning of period, USD
## 4468                                                                                                                                                                                                  Ext. Assets in Debt Instruments, Other Sectors, Short-term, Trade credit and advances, USD
## 4469                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, end of period, USD
## 4470                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Exchange rate chg, USD
## 4471                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning pos., USD
## 4472                                                                                                                                                                                                           Net Ext. Debt Position, Other Sectors, Short-term, Trade credit and advances, USD
## 4473                                                                                                                                                                                          Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other chg in vol., USD
## 4474                                                                                                                                                                                            Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other price chg, USD
## 4475                                                                                                                                                                                               Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Transactions, USD
## 4476                                                                                                                                                                                                             Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, USD
## 4477                                                                                                                                                                                              Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Diff. with Market Value, USD
## 4478                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Market Value, USD
## 4479                                                                                                                                                                                                        Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Nominal Value, USD
## 4480                                                                                                                                                                   Ext. Assets in Debt Instruments, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4481                                                                                                                                                              Gross Ext. Debt Pos., General Government, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD
## 4482                                                                                                                                                                            Net Ext. Debt Position, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4483                                                                                                                                                                         Ext. Assets in Debt Instruments, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4484                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD
## 4485                                                                                                                                                                                  Net Ext. Debt Position, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD
## 4486                                                                                                                                                                                                        Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Loans, USD
## 4487                                                                                                                                                                                                                        Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Loans, USD
## 4488                                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Loans, USD
## 4489                                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Loans, USD
## 4490                                                                                                                                                                                                                                                                        External Debt, total
## 4491                                                                                                                                                                                                                                                       Debt forgiveness grants (current US$)
## 4492                                                                                                                                                                                                                                                                PPG, IBRD (DOD, current US$)
## 4493                                                                                                                                                                                                                                                                 PPG, IDA (DOD, current US$)
## 4494                                                                                                                                                                                                                                                         CB, multilateral (DOD, current US$)
## 4495                                                                                                                                                                                                                                                        PPG, multilateral (DOD, current US$)
## 4496                                                                                                                                                                                                                                                         GG, multilateral (DOD, current US$)
## 4497                                                                                                                                                                                                                                                        OPS, multilateral (DOD, current US$)
## 4498                                                                                                                                                                                                                                                       PRVG, multilateral (DOD, current US$)
## 4499                                                                                                                                                                                                                                                         PS, multilateral (DOD, current US$)
## 4500                                                                                                                                                                                                                                                Multilateral debt (% of total external debt)
## 4501                                                                                                                                                                                                                                            CB, multilateral concessional (DOD, current US$)
## 4502                                                                                                                                                                                                                                           PPG, multilateral concessional (DOD, current US$)
## 4503                                                                                                                                                                                                                                            GG, multilateral concessional (DOD, current US$)
## 4504                                                                                                                                                                                                                                           OPS, multilateral concessional (DOD, current US$)
## 4505                                                                                                                                                                                                                                          PRVG, multilateral concessional (DOD, current US$)
## 4506                                                                                                                                                                                                                                            PS, multilateral concessional (DOD, current US$)
## 4507                                                                                                                                                                                                Debt outstanding and disbursed, PPG Multilateral on nonconcessional terms (DOD, current US$)
## 4508                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, USD
## 4509                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, USD
## 4510                                                                                                                                                                                                                                               IBRD loans and IDA credits (DOD, current US$)
## 4511                                                                                                                                                                                                                                                   CB, official creditors (DOD, current US$)
## 4512                                                                                                                                                                                                                                                  PPG, official creditors (DOD, current US$)
## 4513                                                                                                                                                                                         Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4514                                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD
## 4515                                                                                                                                                                                                                                                   GG, official creditors (DOD, current US$)
## 4516                                                                                                                                                                                                                                                  OPS, official creditors (DOD, current US$)
## 4517                                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4518                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4519                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Interest, USD
## 4520                                                                                                                                                                                      Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Principal, USD
## 4521                                                                                                                                                                                                                                                 PRVG, official creditors (DOD, current US$)
## 4522                                                                                                                                                                                                                                                   PS, official creditors (DOD, current US$)
## 4523                                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD
## 4524                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt securities, Memo item, USD
## 4525                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Interest, USD
## 4526                                                                                                                                                                                                      Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Principal, USD
## 4527                                                                                                                                                                                       Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Other debt liabilities, USD
## 4528                                                                                                                                                                                                       Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Other debt liabilities, USD
## 4529                                                                                                                                                                                      Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Other debt liabilities, USD
## 4530                                                                                                                                                                                                      Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Other debt liabilities, USD
## 4531                                                                                                                                                                                                                                                                CB, bonds (DOD, current US$)
## 4532                                                                                                                                                                                                                                                               PPG, bonds (DOD, current US$)
## 4533                                                                                                                                                                                                                                                                GG, bonds (DOD, current US$)
## 4534                                                                                                                                                                                                                                                               OPS, bonds (DOD, current US$)
## 4535                                                                                                                                                                                                                                                              PRVG, bonds (DOD, current US$)
## 4536                                                                                                                                                                                                                                                                PS, bonds (DOD, current US$)
## 4537                                                                                                                                                                                                                                                     CB, commercial banks (DOD, current US$)
## 4538                                                                                                                                                                                                                                                    PPG, commercial banks (DOD, current US$)
## 4539                                                                                                                                                                                                                                                     GG, commercial banks (DOD, current US$)
## 4540                                                                                                                                                                                                                                                    OPS, commercial banks (DOD, current US$)
## 4541                                                                                                                                                                                                                                                   PRVG, commercial banks (DOD, current US$)
## 4542                                                                                                                                                                                                                                                     PS, commercial banks (DOD, current US$)
## 4543                                                                                                                                                                  Public and Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4544                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD
## 4545                                                                                                                                                                                 Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD
## 4546                                                                                                                                                                             Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4547                                                                                                                                                                                                  Public Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD
## 4548                                                                                                                                                                                                 Public Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD
## 4549                                                                                                                                                                                             Public Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD
## 4550                                                                                                                                                                                                            Debt outstanding and disbursed, PPG and PNG private creditors (DOD, current US$)
## 4551                                                                                                                                                                                                                                                               PNG, bonds (DOD, current US$)
## 4552                                                                                                                                                                                                                                PNG, commercial banks and other creditors (DOD, current US$)
## 4553                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD
## 4554                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD
## 4555                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD
## 4556                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD
## 4557                                                                                                                                                                                 Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD
## 4558                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD
## 4559                                                                                                                                                                            Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD
## 4560                                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, USD
## 4561                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Currency and deposits , USD
## 4562                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Currency and deposits , USD
## 4563                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD
## 4564                                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD
## 4565                                                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Loans, USD
## 4566                                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Loans, USD
## 4567                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD
## 4568                                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, USD
## 4569                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD
## 4570                                                                                                                                                                                      Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD
## 4571                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD
## 4572                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD
## 4573                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD
## 4574                                                                                                                                                                                                                                              CB, other private creditors (DOD, current US$)
## 4575                                                                                                                                                                                                                                             PPG, other private creditors (DOD, current US$)
## 4576                                                                                                                                                                                                                                              GG, other private creditors (DOD, current US$)
## 4577                                                                                                                                                                                                                                             OPS, other private creditors (DOD, current US$)
## 4578                                                                                                                                                                                                                                            PRVG, other private creditors (DOD, current US$)
## 4579                                                                                                                                                                                                                                              PS, other private creditors (DOD, current US$)
## 4580                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD
## 4581                                                                                                                                                                                             Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD
## 4582                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD
## 4583                                                                                                                                                                                                          External debt stocks, private guaranteed by public sector (PPG) (DOD, current US$)
## 4584                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD
## 4585                                                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD
## 4586                                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD
## 4587                                                                                                                                                                                     Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD
## 4588                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD
## 4589                                                                                                                                                                                Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD
## 4590                                                                                                                                                                                                  Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD
## 4591                                                                                                                                                                                                                           External debt stocks, long-term private sector (DOD, current US$)
## 4592                                                                                                                                                                                                 Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, USD
## 4593                                                                                                                                                                                              Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD
## 4594                                                                                                                                                                                             Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD
## 4595                                                                                                                                                                                           Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4596                                                                                                                                                                                         Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD
## 4597                                                                                                                                                                                                         Publicly Guar. Private Sector Ext. Debt Pos., Long-term, DI: Intercom. Lending, USD
## 4598                                                                                                                                                                                                    Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD
## 4599                                                                                                                                                                                                   Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD
## 4600                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 4601                                                                                                                                                                                                        Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD
## 4602                                                                                                                                                                                                               Publicly Guar. Private Sector Ext. Debt Pos., Long-term, All instruments, USD
## 4603                                                                                                                                                                                                       Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD
## 4604                                                                                                                                                                                                              Publicly Guar. Private Sector Ext. Debt Pos., Short-term, All instruments, USD
## 4605                                                                                                                                                                                                          Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD
## 4606                                                                                                                                                                                                                                                    CB, private creditors (DOD, current US$)
## 4607                                                                                                                                                                                                                                                   PPG, private creditors (DOD, current US$)
## 4608                                                                                                                                                                                                                                                    GG, private creditors (DOD, current US$)
## 4609                                                                                                                                                                                                                                                   OPS, private creditors (DOD, current US$)
## 4610                                                                                                                                                                                                                                                  PRVG, private creditors (DOD, current US$)
## 4611                                                                                                                                                                                                                                                    PS, private creditors (DOD, current US$)
## 4612                                                                                                                                                                                                          Public Sector Ext. Debt Pos., Long-term, Special drawing rights (allocations), USD
## 4613                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD
## 4614                                                                                                                                                                                     Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD
## 4615                                                                                                                                                                                    Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD
## 4616                                                                                                                                                                                Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD
## 4617                                                                                                                                                                                                 Public Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD
## 4618                                                                                                                                                                                                Public Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD
## 4619                                                                                                                                                                                            Public Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD
## 4620                                                                                                                                                                                                                               Public Sector Ext. Debt Pos., Long-term, Debt securities, USD
## 4621                                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD
## 4622                                                                                                                                                                                                                            External debt stocks, long-term public sector (DOD, current US$)
## 4623                                                                                                                                                                                                                 Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, USD
## 4624                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD
## 4625                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD
## 4626                                                                                                                                                                                                           Public Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD
## 4627                                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD
## 4628                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., All maturities, DI: Intercom. Lending, USD
## 4629                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD
## 4630                                                                                                                                                                                                                   Public Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD
## 4631                                                                                                                                                                                                               Public Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD
## 4632                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD
## 4633                                                                                                                                                                                                                               Public Sector Ext. Debt Pos., Long-term, All instruments, USD
## 4634                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD
## 4635                                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Short-term, All instruments, USD
## 4636                                                                                                                                                                                                                          Public Sector Ext. Debt Pos., All maturities, All instruments, USD
## 4637                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Long-term, Currency and deposits , USD
## 4638                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Short-term, Currency and deposits , USD
## 4639                                                                                                                                                                                                  Public Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD
## 4640                                                                                                                                                                                                                Public Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD
## 4641                                                                                                                                                                                                                                         Public Sector Ext. Debt Pos., Long-term, Loans, USD
## 4642                                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Short-term, Loans, USD
## 4643                                                                                                                                                                                                              Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD
## 4644                                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Short-term, Debt securities, USD
## 4645                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD
## 4646                                                                                                                                                                                                      Public Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD
## 4647                                                                                                                                                                                                  Public Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD
## 4648                                                                                                                                                                                                                        Public Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD
## 4649                                                                                                                                                                                                                       Public Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD
## 4650                                                                                                                                                                                                              Public Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD
## 4651                                                                                                                                                                                                             Public Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD
## 4652                                                                                                                                                                                                         Public Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD
## 4653                                                                                                                                                                                                             Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD
## 4654                                                                                                                                                                                                                     Public Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD
## 4655                                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD
## 4656                                                                                                                                                                                                     Public Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD
## 4657                                                                                                                                                                                                    Public Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD
## 4658                                                                                                                                                                                                Public Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD
## 4659                                                                                                                                                                                                                                                                 Present value of debt (US$)
## 4660                                                                                                                                                                                                                                                Present value of external debt (current US$)
## 4661                                                                                                                                                                                                         Present value of external debt (% of exports of goods, services and primary income)
## 4662                                                                                                                                                                                                                                                   Present value of external debt (% of GNI)
## 4663                                                                                                                                                                                                                                                  Present value to nominal value of debt (%)
## 4664                                                                                                                                                                                                                                      Residual, debt stock-flow reconciliation (current US$)
## 4665                                                                                                                                                                                         Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Special drawing rights (allocations), USD
## 4666                                                                                                                                                                                    Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Trade credit and advances, USD
## 4667                                                                                                                                                                                                    Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Trade credit and advances, USD
## 4668                                                                                                                                                                                   Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Trade credit and advances, USD
## 4669                                                                                                                                                                                                   Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Trade credit and advances, USD
## 4670                                                                                                                                                                                                                                      External debt stocks, variable rate (DOD, current US$)
## 4671                                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Arrears, USD
## 4672                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD
## 4673                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, Debt securities, Memo item, USD
## 4674                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD
## 4675                                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, USD
## 4676                                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, USD
## 4677                                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, USD
## 4678                                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, USD
## 4679                                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, Debt securities, Memo item, USD
## 4680                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, Arrears, USD
## 4681                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, All maturities, Debt securities, Memo item, USD
## 4682                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, Arrears, USD
## 4683                                                                                                                                                                                                  Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, Arrears, USD
## 4684                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, Debt securities, Memo item, USD
## 4685                                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, Arrears, USD
## 4686                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, Debt securities, Memo item, USD
## 4687                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Reserve related liabilities, USD
## 4688                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of DI ent. to dir. investors, USD
## 4689                                                                                                                                                                              Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. to fellow ent., USD
## 4690                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of dir. investors to DI ent., USD
## 4691                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Debt securities, USD
## 4692                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Debt securities, USD
## 4693                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Debt securities, USD
## 4694                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Debt securities, USD
## 4695                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4696                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4697                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4698                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Currency and deposits, USD
## 4699                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Loans, USD
## 4700                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Loans, USD
## 4701                                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Loans, USD
## 4702                                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Loans, USD
## 4703                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4704                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4705                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4706                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Other debt liabilities, USD
## 4707                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4708                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4709                                                                                                                                                                                  Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4710                                                                                                                                                                                 Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Trade credit and advances, USD
## 4711                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, All instruments, USD
## 4712                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, All instruments, USD
## 4713                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, All instruments, USD
## 4714                                                                                                                                                                                           Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, All instruments, USD
## 4715                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Currency and deposits, USD
## 4716                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Currency and deposits, USD
## 4717                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Currency and deposits, USD
## 4718                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Currency and deposits, USD
## 4719                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Other debt liabilities, USD
## 4720                                                                                                                                                                                   Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Other debt liabilities, USD
## 4721                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Other debt liabilities, USD
## 4722                                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Other debt liabilities, USD
## 4723                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, All instruments, USD
## 4724                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, All instruments, USD
## 4725                                                                                                                                                                                        Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, All instruments, USD
## 4726                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, All instruments, USD
## 4727                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, All instruments, USD
## 4728                                                                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, USD
## 4729                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Loans, USD
## 4730                                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Loans, USD
## 4731                                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Loans, USD
## 4732                                                                                                                                                                                                         Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Loans, USD
## 4733                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Debt securities, USD
## 4734                                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Debt securities, USD
## 4735                                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Debt securities, USD
## 4736                                                                                                                                                                                               Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Debt securities, USD
## 4737                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Trade credit and advances, USD
## 4738                                                                                                                                                                                Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Trade credit and advances, USD
## 4739                                                                                                                                                                                      Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Trade credit and advances, USD
## 4740                                                                                                                                                                                     Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Trade credit and advances, USD
## 4741                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of DI ent. to dir. investors, USD
## 4742                                                                                                                                                                          Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. to fellow ent., USD
## 4743                                                                                                                                                            Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of dir. investors to DI ent., USD
## 4744                                                                                                                                                                                    Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, All instruments, USD
## 4745                                                                                                                                                                                                                                                                  Debt buyback (current US$)
## 4746                                                                                                                                                                                                                                                          Debt stock reduction (current US$)
## 4747                                                                                                                                                                                                                      Total stock of arrears (principal and interest payments) (current US$)
## 4748                                                                                                                                                                                                                                                                       Adjustment to Arrears
## 4749                                                                                                                                                                                                                                                        Debt stock rescheduled (current US$)
## 4750                                                                                                                                                                                                                               Average grace period on new external debt commitments (years)
## 4751                                                                                                                                                                                                                     Average grace period on new external debt commitments, official (years)
## 4752                                                                                                                                                                                                                      Average grace period on new external debt commitments, private (years)
## 4753                                                                                                                                                                                                                                  Average grant element on new external debt commitments (%)
## 4754                                                                                                                                                                                                                        Average grant element on new external debt commitments, official (%)
## 4755                                                                                                                                                                                                                         Average grant element on new external debt commitments, private (%)
## 4756                                                                                                                                                                                                           Debt relief committed under HIPC initiative, cumulative US$ in end-2012 NPV terms
## 4757                                                                                                                                                                                                   Debt relief delivered in full under MDRI initiative, cumulative US$ in end-2012 NPV terms
## 4758                                                                                                                                                                                                                                                       Status under enhanced HIPC initiative
## 4759                                                                                                                                                                                                 Debt relief committed under HIPC and MDRI initiatives, cumulative US$ in end-2012 NPV terms
## 4760                                                                                                                                                                                                                                             Adjustments to scheduled interest (current US$)
## 4761                                                                                                                                                                                                           Interest due, total long-term and short term, including IMF per BOP (current US$)
## 4762                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 0 to 3 mo., All instruments, USD
## 4763                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 3yrs, All instruments, USD
## 4764                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 3 to 6 mo., All instruments, USD
## 4765                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 4yrs, All instruments, USD
## 4766                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, 5 to 10 yrs, All instruments, USD
## 4767                                                                                                                                                                                                     Ext. Debt Service Pmt, Interest payments on SDR allocations, 5yrs, All instruments, USD
## 4768                                                                                                                                                                                               Ext. Debt Service Pmt, Interest payments on SDR allocations, 6 to 9 mo., All instruments, USD
## 4769                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, 9 to 12 mo., All instruments, USD
## 4770                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 10 to 15 yrs, All instruments, USD
## 4771                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 12 to 18 mo., All instruments, USD
## 4772                                                                                                                                                                                             Ext. Debt Service Pmt, Interest payments on SDR allocations, 18 to 24 mo., All instruments, USD
## 4773                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 0 to 3, USD
## 4774                                                                                                                                                                                                         Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 9 to 12, USD
## 4775                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 12 to 18, USD
## 4776                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 18 to 24, USD
## 4777                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 3 to 6, USD
## 4778                                                                                                                                                                                                          Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 6 to 9, USD
## 4779                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 0 to 3, USD
## 4780                                                                                                                                                                                                           Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 9 to 12, USD
## 4781                                                                                                                                                                                                          Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 12 to 18, USD
## 4782                                                                                                                                                                                                          Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 18 to 24, USD
## 4783                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 3 to 6, USD
## 4784                                                                                                                                                                                                            Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 6 to 9, USD
## 4785                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Interest payments on SDR allocations, Immediate, USD
## 4786                                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediate, USD
## 4787                                                                                                                                                                                              Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediately, All instruments, USD
## 4788                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 0 to 3 mo., All instruments, USD
## 4789                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3yrs, All instruments, USD
## 4790                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3 to 6 mo., All instruments, USD
## 4791                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 4yrs, All instruments, USD
## 4792                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5 to 10 yrs, All instruments, USD
## 4793                                                                                                                                                                                                        Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5yrs, All instruments, USD
## 4794                                                                                                                                                                                                  Ext. Debt Service Pmt, Interest receipts on SDR holdings, 6 to 9 mo., All instruments, USD
## 4795                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, 9 to 12 mo., All instruments, USD
## 4796                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 10 to 15 yrs, All instruments, USD
## 4797                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 12 to 18 mo., All instruments, USD
## 4798                                                                                                                                                                                                Ext. Debt Service Pmt, Interest receipts on SDR holdings, 18 to 24 mo., All instruments, USD
## 4799                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD
## 4800                                                                                                                                                                                                            Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD
## 4801                                                                                                                                                                                                           Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD
## 4802                                                                                                                                                                                                           Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD
## 4803                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD
## 4804                                                                                                                                                                                                             Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD
## 4805                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD
## 4806                                                                                                                                                                                                              Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD
## 4807                                                                                                                                                                                                             Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD
## 4808                                                                                                                                                                                                             Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD
## 4809                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD
## 4810                                                                                                                                                                                                               Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD
## 4811                                                                                                                                                                                                                      Gross Ext. Debt Pmt, Interest receipts on SDR holdings, Immediate, USD
## 4812                                                                                                                                                                                                                    Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediate, USD
## 4813                                                                                                                                                                                                 Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediately, All instruments, USD
## 4814                                                                                                                                                                                                                                       Average interest on new external debt commitments (%)
## 4815                                                                                                                                                                                                                             Average interest on new external debt commitments, official (%)
## 4816                                                                                                                                                                                                                              Average interest on new external debt commitments, private (%)
## 4817                                                                                                                                                                                                                                                            CB, bilateral (INT, current US$)
## 4818                                                                                                                                                                                                                                                           PPG, bilateral (INT, current US$)
## 4819                                                                                                                                                                                                                                                            GG, bilateral (INT, current US$)
## 4820                                                                                                                                                                                                                                                           OPS, bilateral (INT, current US$)
## 4821                                                                                                                                                                                                                                                          PRVG, bilateral (INT, current US$)
## 4822                                                                                                                                                                                                                                                            PS, bilateral (INT, current US$)
## 4823                                                                                                                                                                                                                                               CB, bilateral concessional (INT, current US$)
## 4824                                                                                                                                                                                                                                              PPG, bilateral concessional (INT, current US$)
## 4825                                                                                                                                                                                                                                               GG, bilateral concessional (INT, current US$)
## 4826                                                                                                                                                                                                                                              OPS, bilateral concessional (INT, current US$)
## 4827                                                                                                                                                                                                                                             PRVG, bilateral concessional (INT, current US$)
## 4828                                                                                                                                                                                                                                               PS, bilateral concessional (INT, current US$)
## 4829                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Interest, USD
## 4830                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Interest, USD
## 4831                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Interest, USD
## 4832                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Interest, USD
## 4833                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Interest, USD
## 4834                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Interest, USD
## 4835                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Interest, USD
## 4836                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Interest, USD
## 4837                                                                                                                                                                                                                   Interest payments on external debt, central bank (PPG) (INT, current US$)
## 4838                                                                                                                                                                                                                                Interest payments on external debt, total (INT, current US$)
## 4839                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 4840                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD
## 4841                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 4842                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 4843                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 4844                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 4845                                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 4846                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 4847                                                                                                                                                                                                       Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD
## 4848                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 4849                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 4850                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD
## 4851                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 4852                                                                                                                                                                   Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 4853                                                                                                                                                                                                      Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD
## 4854                                                                                                                                                                     Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 4855                                                                                                                                                                                                          Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD
## 4856                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD
## 4857                                                                                                                                                                                                        Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD
## 4858                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD
## 4859                                                                                                                                                                                                         Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD
## 4860                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD
## 4861                                                                                                                                                                                                        Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD
## 4862                                                                                                                                                                                                            Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD
## 4863                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD
## 4864                                                                                                                                                                                                          Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD
## 4865                                                                                                                                                                                                                 Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Interest, USD
## 4866                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Interest, USD
## 4867                                                                                                                                                                                     Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Interest, USD
## 4868                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Interest, USD
## 4869                                                                                                                                                                                    Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Interest, USD
## 4870                                                                                                                                                                                        Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Interest, USD
## 4871                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Interest, USD
## 4872                                                                                                                                                                                      Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Interest, USD
## 4873                                                                                                                                                                                             Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Interest, USD
## 4874                                                                                                                                                                                       Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Interest, USD
## 4875                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Interest, USD
## 4876                                                                                                                                                                                                Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Interest, USD
## 4877                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Interest, USD
## 4878                                                                                                                                                                                               Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Interest, USD
## 4879                                                                                                                                                                                                   Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Interest, USD
## 4880                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Interest, USD
## 4881                                                                                                                                                                                                 Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Interest, USD
## 4882                                                                                                                                                                                                        Ext. Debt Service Pmt, General Government, Immediate, All instruments, Interest, USD
## 4883                                                                                                                                                                                                  Gross Ext. Debt Pos., General Government, One year or less, All instruments, Interest, USD
## 4884                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Interest, USD
## 4885                                                                                                                                                                                              Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Interest, USD
## 4886                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Interest, USD
## 4887                                                                                                                                                                                             Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Interest, USD
## 4888                                                                                                                                                                                                 Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Interest, USD
## 4889                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Interest, USD
## 4890                                                                                                                                                                                               Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Interest, USD
## 4891                                                                                                                                                                                                      Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Interest, USD
## 4892                                                                                                                                                                                                Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Interest, USD
## 4893                                                                                                                                                                      Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 4894                                                                                                                                                                                                               Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Interest, USD
## 4895                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Interest, USD
## 4896                                                                                                                                                                                                      Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Interest, USD
## 4897                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Interest, USD
## 4898                                                                                                                                                                                                     Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Interest, USD
## 4899                                                                                                                                                                                                         Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Interest, USD
## 4900                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Interest, USD
## 4901                                                                                                                                                                                                       Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Interest, USD
## 4902                                                                                                                                                                                                              Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Interest, USD
## 4903                                                                                                                                                                                                        Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Interest, USD
## 4904                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Interest, USD
## 4905                                                                                                                                                                                                     Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Interest, USD
## 4906                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Interest, USD
## 4907                                                                                                                                                                                                    Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Interest, USD
## 4908                                                                                                                                                                                                        Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Interest, USD
## 4909                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Interest, USD
## 4910                                                                                                                                                                                                      Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Interest, USD
## 4911                                                                                                                                                                                                             Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Interest, USD
## 4912                                                                                                                                                                                                       Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Interest, USD
## 4913                                                                                                                                                                                                         Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Interest, USD
## 4914                                                                                                                                                                                                     Interest payments on external debt (% of exports of goods, services and primary income)
## 4915                                                                                                                                                                                                                                               Interest payments on external debt (% of GNI)
## 4916                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Interest, USD
## 4917                                                                                                                                                                                      Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Interest, USD
## 4918                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Interest, USD
## 4919                                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Interest, USD
## 4920                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Interest, USD
## 4921                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Interest, USD
## 4922                                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Interest, USD
## 4923                                                                                                                                                                                              Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Interest, USD
## 4924                                                                                                                                                                                                      Interest payments on external debt, general government sector (PPG) (INT, current US$)
## 4925                                                                                                                                                                                                                  Interest payments on external debt, public sector (PPG) (INT, current US$)
## 4926                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4927                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4928                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4929                                                                                                                                                                       Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4930                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4931                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4932                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4933                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Interest, USD
## 4934                                                                                                                                                                                                                                                              IMF charges (INT, current US$)
## 4935                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Interest, USD
## 4936                                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Interest, USD
## 4937                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Interest, USD
## 4938                                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Interest, USD
## 4939                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Interest, USD
## 4940                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Interest, USD
## 4941                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Interest, USD
## 4942                                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Interest, USD
## 4943                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Interest, USD
## 4944                                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Interest, USD
## 4945                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Interest, USD
## 4946                                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Interest, USD
## 4947                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Interest, USD
## 4948                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Interest, USD
## 4949                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Interest, USD
## 4950                                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Interest, USD
## 4951                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Interest, USD
## 4952                                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Interest, USD
## 4953                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Interest, USD
## 4954                                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Interest, USD
## 4955                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Interest, USD
## 4956                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Interest, USD
## 4957                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Interest, USD
## 4958                                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Interest, USD
## 4959                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Interest, USD
## 4960                                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Interest, USD
## 4961                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Interest, USD
## 4962                                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Interest, USD
## 4963                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Interest, USD
## 4964                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Interest, USD
## 4965                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Interest, USD
## 4966                                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Interest, USD
## 4967                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Interest, USD
## 4968                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Interest, USD
## 4969                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Interest, USD
## 4970                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Interest, USD
## 4971                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Interest, USD
## 4972                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Interest, USD
## 4973                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Interest, USD
## 4974                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Interest, USD
## 4975                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Interest, USD
## 4976                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Interest, USD
## 4977                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Interest, USD
## 4978                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Interest, USD
## 4979                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Interest, USD
## 4980                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Interest, USD
## 4981                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Interest, USD
## 4982                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Interest, USD
## 4983                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Interest, USD
## 4984                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Interest, USD
## 4985                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Interest, USD
## 4986                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Interest, USD
## 4987                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Interest, USD
## 4988                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Interest, USD
## 4989                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Interest, USD
## 4990                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Interest, USD
## 4991                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Interest, USD
## 4992                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Interest, USD
## 4993                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Interest, USD
## 4994                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Interest, USD
## 4995                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Interest, USD
## 4996                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Interest, USD
## 4997                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Interest, USD
## 4998                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Interest, USD
## 4999                                                                                                                                                                                                                        Interest payments, Long-term debt including IMF credit (current US$)
## 5000                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Interest, USD
## 5001                                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Interest, USD
## 5002                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Interest, USD
## 5003                                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Interest, USD
## 5004                                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Interest, USD
## 5005                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Interest, USD
## 5006                                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Interest, USD
## 5007                                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Interest, USD
## 5008                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Interest, USD
## 5009                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Interest, USD
## 5010                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Interest, USD
## 5011                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Interest, USD
## 5012                                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Interest, USD
## 5013                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Interest, USD
## 5014                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Interest, USD
## 5015                                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Interest, USD
## 5016                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Interest, USD
## 5017                                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Interest, USD
## 5018                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Interest, USD
## 5019                                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Interest, USD
## 5020                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Interest, USD
## 5021                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Interest, USD
## 5022                                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Interest, USD
## 5023                                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Interest, USD
## 5024                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Interest, USD
## 5025                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Interest, USD
## 5026                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Interest, USD
## 5027                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Interest, USD
## 5028                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Interest, USD
## 5029                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Interest, USD
## 5030                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Interest, USD
## 5031                                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Interest, USD
## 5032                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Interest, USD
## 5033                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Interest, USD
## 5034                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Interest, USD
## 5035                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Interest, USD
## 5036                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Interest, USD
## 5037                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Interest, USD
## 5038                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Interest, USD
## 5039                                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Interest, USD
## 5040                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Interest, USD
## 5041                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Interest, USD
## 5042                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Interest, USD
## 5043                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Interest, USD
## 5044                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Interest, USD
## 5045                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Interest, USD
## 5046                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Interest, USD
## 5047                                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Interest, USD
## 5048                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Interest, USD
## 5049                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Interest, USD
## 5050                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Interest, USD
## 5051                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Interest, USD
## 5052                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Interest, USD
## 5053                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Interest, USD
## 5054                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Interest, USD
## 5055                                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Interest, USD
## 5056                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Interest, USD
## 5057                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Interest, USD
## 5058                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Interest, USD
## 5059                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Interest, USD
## 5060                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Interest, USD
## 5061                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Interest, USD
## 5062                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Interest, USD
## 5063                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Interest, USD
## 5064                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Interest, USD
## 5065                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Interest, USD
## 5066                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Interest, USD
## 5067                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Interest, USD
## 5068                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Interest, USD
## 5069                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Interest, USD
## 5070                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Interest, USD
## 5071                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Interest, USD
## 5072                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Interest, USD
## 5073                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Interest, USD
## 5074                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Interest, USD
## 5075                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Interest, USD
## 5076                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Interest, USD
## 5077                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Interest, USD
## 5078                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Interest, USD
## 5079                                                                                                                                                                                     Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Interest, USD
## 5080                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Interest, USD
## 5081                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Interest, USD
## 5082                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Interest, USD
## 5083                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Interest, USD
## 5084                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Interest, USD
## 5085                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Interest, USD
## 5086                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Interest, USD
## 5087                                                                                                                                                                                                Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Interest, USD
## 5088                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Interest, USD
## 5089                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Interest, USD
## 5090                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Interest, USD
## 5091                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Interest, USD
## 5092                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Interest, USD
## 5093                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Interest, USD
## 5094                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Interest, USD
## 5095                                                                                                                                                                                                      Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Interest, USD
## 5096                                                                                                                                                                                                                            Interest payments on external debt, long-term (INT, current US$)
## 5097                                                                                                                                                                                                            Interest payments on external debt, other public sector (PPG) (INT, current US$)
## 5098                                                                                                                                                                                                          Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)
## 5099                                                                                                                                                                                                 Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)
## 5100                                                                                                                                                                                                                           Interest payments on external debt, short-term (INT, current US$)
## 5101                                                                                                                                                                                                                                                                PPG, IBRD (INT, current US$)
## 5102                                                                                                                                                                                                                                                                 PPG, IDA (INT, current US$)
## 5103                                                                                                                                                                                                                                                         CB, multilateral (INT, current US$)
## 5104                                                                                                                                                                                                                                                        PPG, multilateral (INT, current US$)
## 5105                                                                                                                                                                                                                                                         GG, multilateral (INT, current US$)
## 5106                                                                                                                                                                                                                                                        OPS, multilateral (INT, current US$)
## 5107                                                                                                                                                                                                                                                       PRVG, multilateral (INT, current US$)
## 5108                                                                                                                                                                                                                                                         PS, multilateral (INT, current US$)
## 5109                                                                                                                                                                                                                                            CB, multilateral concessional (INT, current US$)
## 5110                                                                                                                                                                                                                                           PPG, multilateral concessional (INT, current US$)
## 5111                                                                                                                                                                                                                                            GG, multilateral concessional (INT, current US$)
## 5112                                                                                                                                                                                                                                           OPS, multilateral concessional (INT, current US$)
## 5113                                                                                                                                                                                                                                          PRVG, multilateral concessional (INT, current US$)
## 5114                                                                                                                                                                                                                                            PS, multilateral concessional (INT, current US$)
## 5115                                                                                                                                                                                                                                                   CB, official creditors (INT, current US$)
## 5116                                                                                                                                                                                                                                                  PPG, official creditors (INT, current US$)
## 5117                                                                                                                                                                                                                                                   GG, official creditors (INT, current US$)
## 5118                                                                                                                                                                                                                                                  OPS, official creditors (INT, current US$)
## 5119                                                                                                                                                                                                                                                 PRVG, official creditors (INT, current US$)
## 5120                                                                                                                                                                                                                                                   PS, official creditors (INT, current US$)
## 5121                                                                                                                                                                                                                                                                CB, bonds (INT, current US$)
## 5122                                                                                                                                                                                                                                                               PPG, bonds (INT, current US$)
## 5123                                                                                                                                                                                                                                                                GG, bonds (INT, current US$)
## 5124                                                                                                                                                                                                                                                               OPS, bonds (INT, current US$)
## 5125                                                                                                                                                                                                                                                              PRVG, bonds (INT, current US$)
## 5126                                                                                                                                                                                                                                                                PS, bonds (INT, current US$)
## 5127                                                                                                                                                                                                                                                     CB, commercial banks (INT, current US$)
## 5128                                                                                                                                                                                                                                                    PPG, commercial banks (INT, current US$)
## 5129                                                                                                                                                                                                                                                     GG, commercial banks (INT, current US$)
## 5130                                                                                                                                                                                                                                                    OPS, commercial banks (INT, current US$)
## 5131                                                                                                                                                                                                                                                   PRVG, commercial banks (INT, current US$)
## 5132                                                                                                                                                                                                                                                     PS, commercial banks (INT, current US$)
## 5133                                                                                                                                                                                                                              Interest payments, PPG and PNG Private creditors (current US$)
## 5134                                                                                                                                                                                                                                                               PNG, bonds (INT, current US$)
## 5135                                                                                                                                                                                                                                PNG, commercial banks and other creditors (INT, current US$)
## 5136                                                                                                                                                                                                                                              CB, other private creditors (INT, current US$)
## 5137                                                                                                                                                                                                                                             PPG, other private creditors (INT, current US$)
## 5138                                                                                                                                                                                                                                              GG, other private creditors (INT, current US$)
## 5139                                                                                                                                                                                                                                             OPS, other private creditors (INT, current US$)
## 5140                                                                                                                                                                                                                                            PRVG, other private creditors (INT, current US$)
## 5141                                                                                                                                                                                                                                              PS, other private creditors (INT, current US$)
## 5142                                                                                                                                                                                            Interest payments on external debt, private guaranteed by public sector (PPG) (INT, current US$)
## 5143                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 5144                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 5145                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 5146                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 5147                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 5148                                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 5149                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 5150                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 5151                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 5152                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 5153                                                                                                                                                                              Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 5154                                                                                                                                                                                Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 5155                                                                                                                                                                                 Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 5156                                                                                                                                                                                                                                                    CB, private creditors (INT, current US$)
## 5157                                                                                                                                                                                                                                                   PPG, private creditors (INT, current US$)
## 5158                                                                                                                                                                                                                                                    GG, private creditors (INT, current US$)
## 5159                                                                                                                                                                                                                                                   OPS, private creditors (INT, current US$)
## 5160                                                                                                                                                                                                                                                  PRVG, private creditors (INT, current US$)
## 5161                                                                                                                                                                                                                                                    PS, private creditors (INT, current US$)
## 5162                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD
## 5163                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Interest, USD
## 5164                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD
## 5165                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Interest, USD
## 5166                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD
## 5167                                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Interest, USD
## 5168                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD
## 5169                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD
## 5170                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD
## 5171                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD
## 5172                                                                                                                                                                                              Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Interest, USD
## 5173                                                                                                                                                                                                Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD
## 5174                                                                                                                                                                                                 Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Interest, USD
## 5175                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Interest, USD
## 5176                                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Interest, USD
## 5177                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Interest, USD
## 5178                                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Interest, USD
## 5179                                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Interest, USD
## 5180                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Interest, USD
## 5181                                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Interest, USD
## 5182                                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Loans, Interest, USD
## 5183                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Interest, USD
## 5184                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Interest, USD
## 5185                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Interest, USD
## 5186                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Interest, USD
## 5187                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Interest, USD
## 5188                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Interest, USD
## 5189                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Interest, USD
## 5190                                                                                                                                                                                                     Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Interest, USD
## 5191                                                                                                                                                                                    Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Interest, USD
## 5192                                                                                                                                                                                          Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Interest, USD
## 5193                                                                                                                                                                                             Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Interest, USD
## 5194                                                                                                                                                                                         Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Interest, USD
## 5195                                                                                                                                                                                           Gross Ext. Debt Pos., General Government, All maturities, All instruments, Interest, Arrears, USD
## 5196                                                                                                                                                                                                          Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Interest, USD
## 5197                                                                                                                                                                                                         Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Interest, USD
## 5198                                                                                                                                                                               Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Interest, USD
## 5199                                                                                                                                                                                             Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Interest, USD
## 5200                                                                                                                                                                               Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Interest, USD
## 5201                                                                                                                                                                                                                                                             Interest arrears, long-term DOD
## 5202                                                                                                                                                                                                                                                       Interest arrears, long-term DOD (US$)
## 5203                                                                                                                                                                                                                                                Net change in interest arrears (current US$)
## 5204                                                                                                                                                                                                                                          Interest arrears, official creditors (current US$)
## 5205                                                                                                                                                                                                                                           Interest arrears, private creditors (current US$)
## 5206                                                                                                                                                                                                                                                             Interest forgiven (current US$)
## 5207                                                                                                                                                                                                                                            Interest rescheduled (capitalized) (current US$)
## 5208                                                                                                                                                                                                                                                Interest rescheduled, official (current US$)
## 5209                                                                                                                                                                                                                                                 Interest rescheduled, private (current US$)
## 5210                                                                                                                                                                                                                                   Average maturity on new external debt commitments (years)
## 5211                                                                                                                                                                                                                         Average maturity on new external debt commitments, official (years)
## 5212                                                                                                                                                                                                                          Average maturity on new external debt commitments, private (years)
## 5213                                                                                                                                                                                                                                                            CB, bilateral (NFL, current US$)
## 5214                                                                                                                                                                                                                                           Net financial flows, bilateral (NFL, current US$)
## 5215                                                                                                                                                                                                                                                            GG, bilateral (NFL, current US$)
## 5216                                                                                                                                                                                                                                                           OPS, bilateral (NFL, current US$)
## 5217                                                                                                                                                                                                                                                          PRVG, bilateral (NFL, current US$)
## 5218                                                                                                                                                                                                                                                            PS, bilateral (NFL, current US$)
## 5219                                                                                                                                                                                                                                               CB, bilateral concessional (NFL, current US$)
## 5220                                                                                                                                                                                                                                              PPG, bilateral concessional (NFL, current US$)
## 5221                                                                                                                                                                                                                                               GG, bilateral concessional (NFL, current US$)
## 5222                                                                                                                                                                                                                                              OPS, bilateral concessional (NFL, current US$)
## 5223                                                                                                                                                                                                                                             PRVG, bilateral concessional (NFL, current US$)
## 5224                                                                                                                                                                                                                                               PS, bilateral concessional (NFL, current US$)
## 5225                                                                                                                                                                                                                                  Portfolio investment, bonds (PPG + PNG) (NFL, current US$)
## 5226                                                                                                                                                                                                                           Net flows on external debt, central bank (PPG) (NFL, current US$)
## 5227                                                                                                                                                                                                                                        Net flows on external debt, total (NFL, current US$)
## 5228                                                                                                                                                                                                              Net flows on external debt, general government sector (PPG) (NFL, current US$)
## 5229                                                                                                                                                                                                                          Net flows on external debt, public sector (PPG) (NFL, current US$)
## 5230                                                                                                                                                                                                                                    Net flows on external debt, long-term (NFL, current US$)
## 5231                                                                                                                                                                                                                    Net flows on external debt, other public sector (PPG) (NFL, current US$)
## 5232                                                                                                                                                                                                                  Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)
## 5233                                                                                                                                                                                                         Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)
## 5234                                                                                                                                                                                                                                   Net flows on external debt, short-term (NFL, current US$)
## 5235                                                                                                                                                                                                                                      Net official flows from UN agencies, FAO (current US$)
## 5236                                                                                                                                                                                                                                     Net official flows from UN agencies, IAEA (current US$)
## 5237                                                                                                                                                                                                                                     Net official flows from UN agencies, IFAD (current US$)
## 5238                                                                                                                                                                                                                                      Net official flows from UN agencies, ILO (current US$)
## 5239                                                                                                                                                                                                                                    Net financial flows, IMF concessional (NFL, current US$)
## 5240                                                                                                                                                                                                                                 Net financial flows, IMF nonconcessional (NFL, current US$)
## 5241                                                                                                                                                                                                                                                Net financial flows, IBRD (NFL, current US$)
## 5242                                                                                                                                                                                                                                                 Net financial flows, IDA (NFL, current US$)
## 5243                                                                                                                                                                                                                                                         CB, multilateral (NFL, current US$)
## 5244                                                                                                                                                                                                                                        Net financial flows, multilateral (NFL, current US$)
## 5245                                                                                                                                                                                                                                                         GG, multilateral (NFL, current US$)
## 5246                                                                                                                                                                                                                                                        OPS, multilateral (NFL, current US$)
## 5247                                                                                                                                                                                                                                                       PRVG, multilateral (NFL, current US$)
## 5248                                                                                                                                                                                                                                                         PS, multilateral (NFL, current US$)
## 5249                                                                                                                                                                                                                                            CB, multilateral concessional (NFL, current US$)
## 5250                                                                                                                                                                                                                                           PPG, multilateral concessional (NFL, current US$)
## 5251                                                                                                                                                                                                                                            GG, multilateral concessional (NFL, current US$)
## 5252                                                                                                                                                                                                                                           OPS, multilateral concessional (NFL, current US$)
## 5253                                                                                                                                                                                                                                          PRVG, multilateral concessional (NFL, current US$)
## 5254                                                                                                                                                                                                                                            PS, multilateral concessional (NFL, current US$)
## 5255                                                                                                                                                                                                                                              Net financial flows, others (NFL, current US$)
## 5256                                                                                                                                                                                                                                              EBRD, private nonguaranteed (NFL, current US$)
## 5257                                                                                                                                                                                                                                               IFC, private nonguaranteed (NFL, current US$)
## 5258                                                                                                                                                                                                                                                   CB, official creditors (NFL, current US$)
## 5259                                                                                                                                                                                                                                                  PPG, official creditors (NFL, current US$)
## 5260                                                                                                                                                                                                                                                   GG, official creditors (NFL, current US$)
## 5261                                                                                                                                                                                                                                                  OPS, official creditors (NFL, current US$)
## 5262                                                                                                                                                                                                                                                 PRVG, official creditors (NFL, current US$)
## 5263                                                                                                                                                                                                                                                   PS, official creditors (NFL, current US$)
## 5264                                                                                                                                                                                                                                                                CB, bonds (NFL, current US$)
## 5265                                                                                                                                                                                                                                                               PPG, bonds (NFL, current US$)
## 5266                                                                                                                                                                                                                                                                GG, bonds (NFL, current US$)
## 5267                                                                                                                                                                                                                                                               OPS, bonds (NFL, current US$)
## 5268                                                                                                                                                                                                                                                              PRVG, bonds (NFL, current US$)
## 5269                                                                                                                                                                                                                                                                PS, bonds (NFL, current US$)
## 5270                                                                                                                                                                                                                                                     CB, commercial banks (NFL, current US$)
## 5271                                                                                                                                                                                                                                                    PPG, commercial banks (NFL, current US$)
## 5272                                                                                                                                                                                                                                                     GG, commercial banks (NFL, current US$)
## 5273                                                                                                                                                                                                                                                    OPS, commercial banks (NFL, current US$)
## 5274                                                                                                                                                                                                                                                   PRVG, commercial banks (NFL, current US$)
## 5275                                                                                                                                                                                                                                                     PS, commercial banks (NFL, current US$)
## 5276                                                                                                                                                                                                                           Commercial banks and other lending (PPG + PNG) (NFL, current US$)
## 5277                                                                                                                                                                                                                                                               PNG, bonds (NFL, current US$)
## 5278                                                                                                                                                                                                                                PNG, commercial banks and other creditors (NFL, current US$)
## 5279                                                                                                                                                                                                                                              CB, other private creditors (NFL, current US$)
## 5280                                                                                                                                                                                                                                             PPG, other private creditors (NFL, current US$)
## 5281                                                                                                                                                                                                                                              GG, other private creditors (NFL, current US$)
## 5282                                                                                                                                                                                                                                             OPS, other private creditors (NFL, current US$)
## 5283                                                                                                                                                                                                                                            PRVG, other private creditors (NFL, current US$)
## 5284                                                                                                                                                                                                                                              PS, other private creditors (NFL, current US$)
## 5285                                                                                                                                                                                                    Net flows on external debt, private guaranteed by public sector (PPG) (NFL, current US$)
## 5286                                                                                                                                                                                                                                                    CB, private creditors (NFL, current US$)
## 5287                                                                                                                                                                                                                                                   PPG, private creditors (NFL, current US$)
## 5288                                                                                                                                                                                                                                                    GG, private creditors (NFL, current US$)
## 5289                                                                                                                                                                                                                                                   OPS, private creditors (NFL, current US$)
## 5290                                                                                                                                                                                                                                                  PRVG, private creditors (NFL, current US$)
## 5291                                                                                                                                                                                                                                                    PS, private creditors (NFL, current US$)
## 5292                                                                                                                                                                                                                                    Net financial flows, RDB concessional (NFL, current US$)
## 5293                                                                                                                                                                                                                                 Net financial flows, RDB nonconcessional (NFL, current US$)
## 5294                                                                                                                                                                                                                                   Net official flows from UN agencies, UNAIDS (current US$)
## 5295                                                                                                                                                                                                                                   Net official flows from UN agencies, UNICEF (current US$)
## 5296                                                                                                                                                                                                                                    Net official flows from UN agencies, UNHCR (current US$)
## 5297                                                                                                                                                                                                                                     Net official flows from UN agencies, UNDP (current US$)
## 5298                                                                                                                                                                                                                                    Net official flows from UN agencies, UNECE (current US$)
## 5299                                                                                                                                                                                                                                     Net official flows from UN agencies, UNEP (current US$)
## 5300                                                                                                                                                                                                                                    Net official flows from UN agencies, UNFPA (current US$)
## 5301                                                                                                                                                                                                                                   Net official flows from UN agencies, UNIDIR (current US$)
## 5302                                                                                                                                                                                                                                    Net official flows from UN agencies, UNPBF (current US$)
## 5303                                                                                                                                                                                                                                    Net official flows from UN agencies, UNRWA (current US$)
## 5304                                                                                                                                                                                                                                     Net official flows from UN agencies, UNTA (current US$)
## 5305                                                                                                                                                                                                                                    Net official flows from UN agencies, UNWTO (current US$)
## 5306                                                                                                                                                                                                                                      Net official flows from UN agencies, WFP (current US$)
## 5307                                                                                                                                                                                                                                      Net official flows from UN agencies, WHO (current US$)
## 5308                                                                                                                                                                                                                                                            CB, bilateral (NTR, current US$)
## 5309                                                                                                                                                                                                                                                           PPG, bilateral (NTR, current US$)
## 5310                                                                                                                                                                                                                                                            GG, bilateral (NTR, current US$)
## 5311                                                                                                                                                                                                                                                           OPS, bilateral (NTR, current US$)
## 5312                                                                                                                                                                                                                                                          PRVG, bilateral (NTR, current US$)
## 5313                                                                                                                                                                                                                                                            PS, bilateral (NTR, current US$)
## 5314                                                                                                                                                                                                                                               CB, bilateral concessional (NTR, current US$)
## 5315                                                                                                                                                                                                                                              PPG, bilateral concessional (NTR, current US$)
## 5316                                                                                                                                                                                                                                               GG, bilateral concessional (NTR, current US$)
## 5317                                                                                                                                                                                                                                              OPS, bilateral concessional (NTR, current US$)
## 5318                                                                                                                                                                                                                                             PRVG, bilateral concessional (NTR, current US$)
## 5319                                                                                                                                                                                                                                               PS, bilateral concessional (NTR, current US$)
## 5320                                                                                                                                                                                                                       Net transfers on external debt, central bank (PPG) (NTR, current US$)
## 5321                                                                                                                                                                                                                                    Net transfers on external debt, total (NTR, current US$)
## 5322                                                                                                                                                                                                          Net transfers on external debt, general government sector (PPG) (NTR, current US$)
## 5323                                                                                                                                                                                                                      Net transfers on external debt, public sector (PPG) (NTR, current US$)
## 5324                                                                                                                                                                                                                                Net transfers on external debt, long-term (NTR, current US$)
## 5325                                                                                                                                                                                                                Net transfers on external debt, other public sector (PPG) (NTR, current US$)
## 5326                                                                                                                                                                                                              Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)
## 5327                                                                                                                                                                                                     Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)
## 5328                                                                                                                                                                                                                                                                PPG, IBRD (NTR, current US$)
## 5329                                                                                                                                                                                                                                                                 PPG, IDA (NTR, current US$)
## 5330                                                                                                                                                                                                                                                         CB, multilateral (NTR, current US$)
## 5331                                                                                                                                                                                                                                                        PPG, multilateral (NTR, current US$)
## 5332                                                                                                                                                                                                                                                         GG, multilateral (NTR, current US$)
## 5333                                                                                                                                                                                                                                                        OPS, multilateral (NTR, current US$)
## 5334                                                                                                                                                                                                                                                       PRVG, multilateral (NTR, current US$)
## 5335                                                                                                                                                                                                                                                         PS, multilateral (NTR, current US$)
## 5336                                                                                                                                                                                                                                            CB, multilateral concessional (NTR, current US$)
## 5337                                                                                                                                                                                                                                           PPG, multilateral concessional (NTR, current US$)
## 5338                                                                                                                                                                                                                                            GG, multilateral concessional (NTR, current US$)
## 5339                                                                                                                                                                                                                                           OPS, multilateral concessional (NTR, current US$)
## 5340                                                                                                                                                                                                                                          PRVG, multilateral concessional (NTR, current US$)
## 5341                                                                                                                                                                                                                                            PS, multilateral concessional (NTR, current US$)
## 5342                                                                                                                                                                                                                                                   CB, official creditors (NTR, current US$)
## 5343                                                                                                                                                                                                                                                  PPG, official creditors (NTR, current US$)
## 5344                                                                                                                                                                                                                                                   GG, official creditors (NTR, current US$)
## 5345                                                                                                                                                                                                                                                  OPS, official creditors (NTR, current US$)
## 5346                                                                                                                                                                                                                                                 PRVG, official creditors (NTR, current US$)
## 5347                                                                                                                                                                                                                                                   PS, official creditors (NTR, current US$)
## 5348                                                                                                                                                                                                                                                                CB, bonds (NTR, current US$)
## 5349                                                                                                                                                                                                                                                               PPG, bonds (NTR, current US$)
## 5350                                                                                                                                                                                                                                                                GG, bonds (NTR, current US$)
## 5351                                                                                                                                                                                                                                                               OPS, bonds (NTR, current US$)
## 5352                                                                                                                                                                                                                                                              PRVG, bonds (NTR, current US$)
## 5353                                                                                                                                                                                                                                                                PS, bonds (NTR, current US$)
## 5354                                                                                                                                                                                                                                                     CB, commercial banks (NTR, current US$)
## 5355                                                                                                                                                                                                                                                    PPG, commercial banks (NTR, current US$)
## 5356                                                                                                                                                                                                                                                     GG, commercial banks (NTR, current US$)
## 5357                                                                                                                                                                                                                                                    OPS, commercial banks (NTR, current US$)
## 5358                                                                                                                                                                                                                                                   PRVG, commercial banks (NTR, current US$)
## 5359                                                                                                                                                                                                                                                     PS, commercial banks (NTR, current US$)
## 5360                                                                                                                                                                                                                                                               PNG, bonds (NTR, current US$)
## 5361                                                                                                                                                                                                                                PNG, commercial banks and other creditors (NTR, current US$)
## 5362                                                                                                                                                                                                                                              CB, other private creditors (NTR, current US$)
## 5363                                                                                                                                                                                                                                             PPG, other private creditors (NTR, current US$)
## 5364                                                                                                                                                                                                                                              GG, other private creditors (NTR, current US$)
## 5365                                                                                                                                                                                                                                             OPS, other private creditors (NTR, current US$)
## 5366                                                                                                                                                                                                                                            PRVG, other private creditors (NTR, current US$)
## 5367                                                                                                                                                                                                                                              PS, other private creditors (NTR, current US$)
## 5368                                                                                                                                                                                                Net transfers on external debt, private guaranteed by public sector (PPG) (NTR, current US$)
## 5369                                                                                                                                                                                                                                                    CB, private creditors (NTR, current US$)
## 5370                                                                                                                                                                                                                                                   PPG, private creditors (NTR, current US$)
## 5371                                                                                                                                                                                                                                                    GG, private creditors (NTR, current US$)
## 5372                                                                                                                                                                                                                                                   OPS, private creditors (NTR, current US$)
## 5373                                                                                                                                                                                                                                                  PRVG, private creditors (NTR, current US$)
## 5374                                                                                                                                                                                                                                                    PS, private creditors (NTR, current US$)
## 5375                                                                                                                                                                                                                 Net official development assistance and official aid received (current US$)
## 5376                                                                                                                                                                                                                                                                 Net ODA received (% of GDP)
## 5377                                                                                                                                                                                                                                                                              Aid (% of GDI)
## 5378                                                                                                                                                                                                                 Net official development assistance received (% of gross capital formation)
## 5379                                                                                                                                                                                                                                                                 Net ODA received (% of GNP)
## 5380                                                                                                                                                                                                                                                                              Aid (% of GNP)
## 5381                                                                                                                                                                                                          ODA aid disbursements for STD control including HIV/AIDS, all donors (current US$)
## 5382                                                                                                                                                                                                           ODA aid disbursements for Social mitigation of HIV/AIDS, all donors (current US$)
## 5383                                                                                                                                                                                                                                                    Aid (% of imports of goods and services)
## 5384                                                                                                                                                                                                           Net official development assistance and official aid received (constant 2020 US$)
## 5385                                                                                                                                                                                                                         ODA aid disbursements for Malaria control, all donors (current US$)
## 5386                                                                                                                                                                                                                                                    Net ODA received (% exports and imports)
## 5387                                                                                                                                                                                                                       Net official development assistance received per capita (current US$)
## 5388                                                                                                                                                                                                                                                                        Aid per capita (US$)
## 5389                                                                                                                                                                                                                                             Total ODA Private Net, all donors (current US$)
## 5390                                                                                                                                                                                                                                      Net ODA received (% of central government expenditure)
## 5391                                                                                                                                                                                                                                                  Aid (% of central government expenditures)
## 5392                                                                                                                                                                                               Gross ODA aid disbursement for administrative costs of donors, DAC donors total (current US$)
## 5393                                                                                                                                                                                                       Gross ODA aid disbursement for general budget support, DAC donors total (current US$)
## 5394                                                                                                                                                                                     Gross ODA aid disbursement for commodity and general program assistance, DAC donors total (current US$)
## 5395                                                                                                                                                                              Gross ODA aid disbursement for developmental food aid/food security assistance, DAC donors total (current US$)
## 5396                                                                                                                                                                                                   Gross ODA aid disbursement for other commodity assistance, DAC donors total (current US$)
## 5397                                                                                                                                                                                                    Gross ODA aid disbursement for all sectors and functions, DAC donors total (current US$)
## 5398                                                                                                                                                                                                                                              Net ODA received from DAC donors (current US$)
## 5399                                                                                                                                                                                                                                    Net ODA received per capita from DAC donors(current US$)
## 5400                                                                                                                                                                                                       Gross ODA aid disbursement for action related to debt, DAC donors total (current US$)
## 5401                                                                                                                                                                                                 Gross ODA aid disbursement for banking & financial services, DAC donors total (current US$)
## 5402                                                                                                                                                                                                    Gross ODA aid disbursement for business & other services, DAC donors total (current US$)
## 5403                                                                                                                                                                                                      Gross ODA aid disbursement for economic infrastructure, DAC donors total (current US$)
## 5404                                                                                                                                                                                                               Gross ODA aid disbursement for communications, DAC donors total (current US$)
## 5405                                                                                                                                                                                                                      Gross ODA aid disbursement for energy,  DAC donors total (current US$)
## 5406                                                                                                                                                                                                        Gross ODA aid disbursement for transport and storage, DAC donors total (current US$)
## 5407                                                                                                                                                                                                              Gross ODA aid disbursement for basic education, DAC donors total (current US$)
## 5408                                                                                                                                                                                                                    Gross ODA aid disbursement for education, DAC donors total (current US$)
## 5409                                                                                                                                                                                                     Gross ODA aid disbursement for post-secondary education, DAC donors total (current US$)
## 5410                                                                                                                                                                                                          Gross ODA aid disbursement for secondary education, DAC donors total (current US$)
## 5411                                                                                                                                                                                                Gross ODA aid disbursement for education (level unspecified), DAC donors total (current US$)
## 5412                                                                                                                                                                                                             Gross ODA aid disbursement for humanitarian aid, DAC donors total (current US$)
## 5413                                                                                                                                                                                           Gross ODA aid disbursement for disaster prevention & preparedness, DAC donors total (current US$)
## 5414                                                                                                                                                                                                           Gross ODA aid disbursement for emergency response, DAC donors total (current US$)
## 5415                                                                                                                                                                                     Gross ODA aid disbursement for reconstruction relief and rehabilitation, DAC donors total (current US$)
## 5416                                                                                                                                                                                                   Gross ODA aid disbursement for government & civil society, DAC donors total (current US$)
## 5417                                                                                                                                                                                                 Gross ODA aid disbursement for conflict, peace and security, DAC donors total (current US$)
## 5418                                                                                                                                                                                         Gross ODA aid disbursement for general government and civil society, DAC donors total (current US$)
## 5419                                                                                                                                                                                                          ODA aid disbursements for STD control including HIV/AIDS, DAC donors (current US$)
## 5420                                                                                                                                                                                                           ODA aid disbursements for Social mitigation of HIV/AIDS, DAC donors (current US$)
## 5421                                                                                                                                                                                                                 Gross ODA aid disbursement for basic health, DAC donors total (current US$)
## 5422                                                                                                                                                                                                                       Gross ODA aid disbursement for health, DAC donors total (current US$)
## 5423                                                                                                                                                                                                               Gross ODA aid disbursement for general health, DAC donors total (current US$)
## 5424                                                                                                                                                                                                                                        Net ODA received from DAC donors (constant 2010 US$)
## 5425                                                                                                                                                                                                                   ODA aid disbursements for Malaria control, DAC donors total (current US$)
## 5426                                                                                                                                                                                                                 Gross ODA aid disbursement for multisector,  DAC donors total (current US$)
## 5427                                                                                                                                                                                               Gross ODA aid disbursement for general environment protection, DAC donors total (current US$)
## 5428                                                                                                                                                                                                Gross ODA aid disbursement for other multisector initiatives, DAC donors total (current US$)
## 5429                                                                                                                                                                                Gross ODA aid disbursement for population programmes and reproductive health, DAC donors total (current US$)
## 5430                                                                                                                                                                                                                  Gross ODA aid disbursement for agriculture, DAC donors total (current US$)
## 5431                                                                                                                                                                                     Gross ODA aid disbursement for agriculture, forestry and fishing sector, DAC donors total (current US$)
## 5432                                                                                                                                                                                                                      Gross ODA aid disbursement for fishing, DAC donors total (current US$)
## 5433                                                                                                                                                                                                                     Gross ODA aid disbursement for forestry, DAC donors total (current US$)
## 5434                                                                                                                                                                                                          Gross ODA aid disbursement for production sectors,  DAC donors total (current US$)
## 5435                                                                                                                                                                                            Gross ODA aid disbursement for industry, mining and construction, DAC donors total (current US$)
## 5436                                                                                                                                                                                                                Gross ODA aid disbursement for construction,  DAC donors total (current US$)
## 5437                                                                                                                                                                                                                    Gross ODA aid disbursement for industry,  DAC donors total (current US$)
## 5438                                                                                                                                                                                                Gross ODA aid disbursement for mineral resources and mining,  DAC donors total (current US$)
## 5439                                                                                                                                                                                                 Gross ODA aid disbursement for trade policy and regulations, DAC donors total (current US$)
## 5440                                                                                                                                                                                                               Gross ODA aid disbursement for tourism sector, DAC donors total (current US$)
## 5441                                                                                                                                                                                                                                             Total ODA Private Net, DAC donors (current US$)
## 5442                                                                                                                                                                                                 Gross ODA aid disbursement for refugees in donor countries,  DAC donors total (current US$)
## 5443                                                                                                                                                                                            Gross ODA aid disbursement for social infrastructure & services,  DAC donors total (current US$)
## 5444                                                                                                                                                                                                       Gross ODA aid disbursement for total sector allocable, DAC donors total (current US$)
## 5445                                                                                                                                                                                              Gross ODA aid disbursement for unallocated/unspecified support, DAC donors total (current US$)
## 5446                                                                                                                                                                                                  Gross ODA aid disbursement for water supply and sanitation, DAC donors total (current US$)
## 5447                                                                                                                                                                                                                                     Net ODA received from DAC donors (% of recipient's GDP)
## 5448                                                                                                                                                                                                                                     Net ODA received from DAC donors (% of recipient's GDI)
## 5449                                                                                                                                                                                                                                     Net ODA received from multilateral donors (current US$)
## 5450                                                                                                                                                                                                                          Net ODA received per capita from multilateral donors (current US$)
## 5451                                                                                                                                                                                                                               Net ODA received from multilateral donors (constant 2010 US$)
## 5452                                                                                                                                                                                                                                        Net ODA received from multilateral donors (% of GDP)
## 5453                                                                                                                                                                                                                    Net ODA received from multilateral donors (% of gross capital formation)
## 5454                                                                                                                                                                                                 ODA aid disbursements for STD control including HIV/AIDS, Multilateral donors (current US$)
## 5455                                                                                                                                                                                                  ODA aid disbursements for Social mitigation of HIV/AIDS, Multilateral donors (current US$)
## 5456                                                                                                                                                                                                          ODA aid disbursements for Malaria control, multilateral donors total (current US$)
## 5457                                                                                                                                                                                                                                          Net ODA received from non-DAC donors (current US$)
## 5458                                                                                                                                                                                                                                    Net ODA received from non-DAC donors (constant 2010 US$)
## 5459                                                                                                                                                                                                                                         Total ODA Private Net, non-DAC donors (current US$)
## 5460                                                                                                                                                                                                                                   Net ODA received from non-DAC bilateral donors (% of GDP)
## 5461                                                                                                                                                                                                               Net ODA received from non-DAC bilateral donors (% of gross capital formation)
## 5462                                                                                                                                                                                                                                                     Net official aid received (current US$)
## 5463                                                                                                                                                                                                                                               Net official aid received (constant 2020 US$)
## 5464                                                                                                                                                                                                                                  Net official development assistance received (current US$)
## 5465                                                                                                                                                                                                                                  Net official development assistance received (current US$)
## 5466                                                                                                                                                                                                                                                                 Net ODA received (% of GDP)
## 5467                                                                                                                                                                                                                                             Net ODA received (% of gross capital formation)
## 5468                                                                                                                                                                                                                                                                 Net ODA received (% of GNI)
## 5469                                                                                                                                                                                                                            Net official development assistance received (constant 2020 US$)
## 5470                                                                                                                                                                                                                       Net ODA received (% of imports of goods, services and primary income)
## 5471                                                                                                                                                                                                                                                   Net ODA received per capita (current US$)
## 5472                                                                                                                                                                                                                                          Net ODA received (% of central government expense)
## 5473                                                                                                                                                                                                                                                   Debt service to export ratio, ex-post (%)
## 5474                                                                                                                                                                                                                                         Adjustments to scheduled debt service (current US$)
## 5475                                                                                                                                                                                                                                                            CB, bilateral (TDS, current US$)
## 5476                                                                                                                                                                                                                                                           PPG, bilateral (TDS, current US$)
## 5477                                                                                                                                                                                                                                                            GG, bilateral (TDS, current US$)
## 5478                                                                                                                                                                                                                                                           OPS, bilateral (TDS, current US$)
## 5479                                                                                                                                                                                                                                                          PRVG, bilateral (TDS, current US$)
## 5480                                                                                                                                                                                                                                                            PS, bilateral (TDS, current US$)
## 5481                                                                                                                                                                                                                                               CB, bilateral concessional (TDS, current US$)
## 5482                                                                                                                                                                                                                                              PPG, bilateral concessional (TDS, current US$)
## 5483                                                                                                                                                                                                                                               GG, bilateral concessional (TDS, current US$)
## 5484                                                                                                                                                                                                                                              OPS, bilateral concessional (TDS, current US$)
## 5485                                                                                                                                                                                                                                             PRVG, bilateral concessional (TDS, current US$)
## 5486                                                                                                                                                                                                                                               PS, bilateral concessional (TDS, current US$)
## 5487                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5488                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5489                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5490                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5491                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5492                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5493                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5494                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Prin. and Int., USD
## 5495                                                                                                                                                                                                                         Debt service (PPG and IMF only, % of exports of goods and services)
## 5496                                                                                                                                                                                                                        Debt service on external debt, central bank (PPG) (TDS, current US$)
## 5497                                                                                                                                                                                                     Ext. Debt Service Pmt, SDR allocations, More than15yrs, All instruments, Principal, USD
## 5498                                                                                                                                                                                                                                     Debt service on external debt, total (TDS, current US$)
## 5499                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5500                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5501                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5502                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5503                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5504                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5505                                                                                                                                                                       Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5506                                                                                                                                                                 Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5507                                                                                                                                                                                                 Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5508                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5509                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5510                                                                                                                                                                                                Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5511                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5512                                                                                                                                                             Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5513                                                                                                                                                                                                Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5514                                                                                                                                                               Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5515                                                                                                                                                                                                    Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5516                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5517                                                                                                                                                                                                  Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5518                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5519                                                                                                                                                                                                   Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5520                                                                                                                                                                                                  Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5521                                                                                                                                                                                                  Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5522                                                                                                                                                                                                      Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5523                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5524                                                                                                                                                                                                    Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5525                                                                                                                                                                                                           Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD
## 5526                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD
## 5527                                                                                                                                                                               Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD
## 5528                                                                                                                                                                              Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD
## 5529                                                                                                                                                                              Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD
## 5530                                                                                                                                                                                  Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD
## 5531                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD
## 5532                                                                                                                                                                                Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD
## 5533                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD
## 5534                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD
## 5535                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD
## 5536                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD
## 5537                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD
## 5538                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD
## 5539                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD
## 5540                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD
## 5541                                                                                                                                                                                       Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD
## 5542                                                                                                                                                                                 Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Prin. and Int., USD
## 5543                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD
## 5544                                                                                                                                                                                          Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD
## 5545                                                                                                                                                                                         Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD
## 5546                                                                                                                                                                                         Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD
## 5547                                                                                                                                                                                             Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD
## 5548                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD
## 5549                                                                                                                                                                                           Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD
## 5550                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD
## 5551                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD
## 5552                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD
## 5553                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD
## 5554                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD
## 5555                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD
## 5556                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD
## 5557                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, All instruments, Prin. and Int., USD
## 5558                                                                                                                                                                                                  Ext. Debt Service Pmt, General Government, Immediate, All instruments, Prin. and Int., USD
## 5559                                                                                                                                                                                            Gross Ext. Debt Pos., General Government, One year or less, All instruments, Prin. and Int., USD
## 5560                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD
## 5561                                                                                                                                                                                        Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD
## 5562                                                                                                                                                                                       Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD
## 5563                                                                                                                                                                                       Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD
## 5564                                                                                                                                                                                           Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD
## 5565                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD
## 5566                                                                                                                                                                                         Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD
## 5567                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD
## 5568                                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD
## 5569                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD
## 5570                                                                                                                                                                                         Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD
## 5571                                                                                                                                                                                             Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD
## 5572                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD
## 5573                                                                                                                                                                                           Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD
## 5574                                                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD
## 5575                                                                                                                                                                                                Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD
## 5576                                                                                                                                                                                          Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Prin. and Int., USD
## 5577                                                                                                                                                                Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5578                                                                                                                                                                                                         Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD
## 5579                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD
## 5580                                                                                                                                                                                                Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD
## 5581                                                                                                                                                                                               Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD
## 5582                                                                                                                                                                                               Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD
## 5583                                                                                                                                                                                                   Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD
## 5584                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD
## 5585                                                                                                                                                                                                 Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD
## 5586                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD
## 5587                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD
## 5588                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD
## 5589                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD
## 5590                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD
## 5591                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD
## 5592                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD
## 5593                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD
## 5594                                                                                                                                                                                                        Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD
## 5595                                                                                                                                                                                                  Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Prin. and Int., USD
## 5596                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5597                                                                                                                                                                                               Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5598                                                                                                                                                                                              Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5599                                                                                                                                                                                              Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5600                                                                                                                                                                                                  Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5601                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5602                                                                                                                                                                                                Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5603                                                                                                                                                                                                       Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD
## 5604                                                                                                                                                                                                 Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Prin. and Int., USD
## 5605                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD
## 5606                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD
## 5607                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD
## 5608                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD
## 5609                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD
## 5610                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD
## 5611                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD
## 5612                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD
## 5613                                                                                                                                                                                                   Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Prin. and Int., USD
## 5614                                                                                                                                                                                                     Ext. Debt Service Pmt, SDR allocations, More than 2yrs, All instruments, Principal, USD
## 5615                                                                                                                                                                                                                     Total debt service (% of exports of goods, services and primary income)
## 5616                                                                                                                                                                                                                                                               Total debt service (% of GDP)
## 5617                                                                                                                                                                                                                                                               Total debt service (% of GNI)
## 5618                                                                                                                                                                                                                                                               Total debt service (% of GNP)
## 5619                                                                                                                                                                                                                                    Total debt service ( % of exports of goods and services)
## 5620                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Prin. and Int., USD
## 5621                                                                                                                                                                                Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Prin. and Int., USD
## 5622                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Prin. and Int., USD
## 5623                                                                                                                                                                               Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Prin. and Int., USD
## 5624                                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Prin. and Int., USD
## 5625                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Prin. and Int., USD
## 5626                                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Prin. and Int., USD
## 5627                                                                                                                                                                                        Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Prin. and Int., USD
## 5628                                                                                                                                                                                                           Debt service on external debt, general government sector (PPG) (TDS, current US$)
## 5629                                                                                                                                                                                                                       Debt service on external debt, public sector (PPG) (TDS, current US$)
## 5630                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5631                                                                                                                                                                  Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5632                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5633                                                                                                                                                                 Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5634                                                                                                                                                                     Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5635                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5636                                                                                                                                                                   Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5637                                                                                                                                                                          Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD
## 5638                                                                                                                                                                                                                                              IMF repurchases and charges (TDS, current US$)
## 5639                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5640                                                                                                                                                                                 Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5641                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5642                                                                                                                                                                                Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5643                                                                                                                                                                                    Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Prin. and Int., USD
## 5644                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5645                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5646                                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Prin. and Int., USD
## 5647                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5648                                                                                                                                                                                            Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5649                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5650                                                                                                                                                                                           Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5651                                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Prin. and Int., USD
## 5652                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5653                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5654                                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Prin. and Int., USD
## 5655                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5656                                                                                                                                                                                                  Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5657                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5658                                                                                                                                                                                                 Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5659                                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Prin. and Int., USD
## 5660                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5661                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5662                                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Prin. and Int., USD
## 5663                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Prin. and Int., USD
## 5664                                                                                                                                                                                                 Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Prin. and Int., USD
## 5665                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Prin. and Int., USD
## 5666                                                                                                                                                                                                Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Prin. and Int., USD
## 5667                                                                                                                                                                                                    Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Prin. and Int., USD
## 5668                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Prin. and Int., USD
## 5669                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Prin. and Int., USD
## 5670                                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Prin. and Int., USD
## 5671                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5672                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5673                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5674                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5675                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5676                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5677                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5678                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Prin. and Int., USD
## 5679                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5680                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5681                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5682                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5683                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5684                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5685                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5686                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Prin. and Int., USD
## 5687                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5688                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5689                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5690                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5691                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5692                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5693                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5694                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Prin. and Int., USD
## 5695                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Prin. and Int., USD
## 5696                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Prin. and Int., USD
## 5697                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Prin. and Int., USD
## 5698                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Prin. and Int., USD
## 5699                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Prin. and Int., USD
## 5700                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Prin. and Int., USD
## 5701                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Prin. and Int., USD
## 5702                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Prin. and Int., USD
## 5703                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Prin. and Int., USD
## 5704                                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Prin. and Int., USD
## 5705                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Prin. and Int., USD
## 5706                                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Prin. and Int., USD
## 5707                                                                                                                                                                                              Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Prin. and Int., USD
## 5708                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Prin. and Int., USD
## 5709                                                                                                                                                                                            Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Prin. and Int., USD
## 5710                                                                                                                                                                                                   Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Prin. and Int., USD
## 5711                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Prin. and Int., USD
## 5712                                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Prin. and Int., USD
## 5713                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Prin. and Int., USD
## 5714                                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Prin. and Int., USD
## 5715                                                                                                                                                                                                         Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Prin. and Int., USD
## 5716                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Prin. and Int., USD
## 5717                                                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Prin. and Int., USD
## 5718                                                                                                                                                                                                              Gross Ext. Debt Pmt, General Government, Immediate, Loans, Prin. and Int., USD
## 5719                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Prin. and Int., USD
## 5720                                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Prin. and Int., USD
## 5721                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Prin. and Int., USD
## 5722                                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Prin. and Int., USD
## 5723                                                                                                                                                                                                               Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Prin. and Int., USD
## 5724                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Prin. and Int., USD
## 5725                                                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Prin. and Int., USD
## 5726                                                                                                                                                                                                                    Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Prin. and Int., USD
## 5727                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Prin. and Int., USD
## 5728                                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Prin. and Int., USD
## 5729                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Prin. and Int., USD
## 5730                                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Prin. and Int., USD
## 5731                                                                                                                                                                                                              Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Prin. and Int., USD
## 5732                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Prin. and Int., USD
## 5733                                                                                                                                                                                                            Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Prin. and Int., USD
## 5734                                                                                                                                                                                                                   Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Prin. and Int., USD
## 5735                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5736                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5737                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5738                                                                                                                                                                         Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5739                                                                                                                                                                             Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5740                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5741                                                                                                                                                                           Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5742                                                                                                                                                                                  Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Prin. and Int., USD
## 5743                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5744                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5745                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5746                                                                                                                                                                                    Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5747                                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5748                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5749                                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5750                                                                                                                                                                                             Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Prin. and Int., USD
## 5751                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5752                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5753                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5754                                                                                                                                                                                          Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5755                                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5756                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5757                                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5758                                                                                                                                                                                                   Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Prin. and Int., USD
## 5759                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Prin. and Int., USD
## 5760                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Prin. and Int., USD
## 5761                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Prin. and Int., USD
## 5762                                                                                                                                                                                         Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Prin. and Int., USD
## 5763                                                                                                                                                                                             Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Prin. and Int., USD
## 5764                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Prin. and Int., USD
## 5765                                                                                                                                                                                           Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Prin. and Int., USD
## 5766                                                                                                                                                                                                  Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Prin. and Int., USD
## 5767                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD
## 5768                                                                                                                                                                       Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD
## 5769                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD
## 5770                                                                                                                                                                      Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD
## 5771                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD
## 5772                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD
## 5773                                                                                                                                                                        Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD
## 5774                                                                                                                                                                               Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Prin. and Int., USD
## 5775                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD
## 5776                                                                                                                                                                             Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD
## 5777                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD
## 5778                                                                                                                                                                            Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD
## 5779                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD
## 5780                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD
## 5781                                                                                                                                                                              Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD
## 5782                                                                                                                                                                                     Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Prin. and Int., USD
## 5783                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5784                                                                                                                                                                       Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5785                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5786                                                                                                                                                                      Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5787                                                                                                                                                                          Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5788                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5789                                                                                                                                                                        Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5790                                                                                                                                                                               Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Prin. and Int., USD
## 5791                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5792                                                                                                                                                                                  Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5793                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5794                                                                                                                                                                                 Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5795                                                                                                                                                                                     Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5796                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5797                                                                                                                                                                                   Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5798                                                                                                                                                                                          Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Prin. and Int., USD
## 5799                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5800                                                                                                                                                                                        Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5801                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5802                                                                                                                                                                                       Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5803                                                                                                                                                                                           Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5804                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5805                                                                                                                                                                                         Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5806                                                                                                                                                                                                Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Prin. and Int., USD
## 5807                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Prin. and Int., USD
## 5808                                                                                                                                                                                       Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Prin. and Int., USD
## 5809                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Prin. and Int., USD
## 5810                                                                                                                                                                                      Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Prin. and Int., USD
## 5811                                                                                                                                                                                          Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Prin. and Int., USD
## 5812                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Prin. and Int., USD
## 5813                                                                                                                                                                                        Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Prin. and Int., USD
## 5814                                                                                                                                                                                               Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Prin. and Int., USD
## 5815                                                                                                                                                                                                                                 Debt service on external debt, long-term (TDS, current US$)
## 5816                                                                                                                                                                                                                 Debt service on external debt, other public sector (PPG) (TDS, current US$)
## 5817                                                                                                                                                                                                               Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)
## 5818                                                                                                                                                                                                         Debt service (PPG and IMF only, % of exports of goods, services and primary income)
## 5819                                                                                                                                                                                                      Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)
## 5820                                                                                                                                                                                                                                      Public and publicly guaranteed debt service (% of GNI)
## 5821                                                                                                                                                                                                                                  PPG debt service (% of central government current revenue)
## 5822                                                                                                                                                                                                                                  PPG debt service (% of central government current revenue)
## 5823                                                                                                                                                                                            Public and publicly guaranteed debt service (% of exports of goods, services and primary income)
## 5824                                                                                                                                                                                                                                                                PPG, IBRD (TDS, current US$)
## 5825                                                                                                                                                                                                                                                                 PPG, IDA (TDS, current US$)
## 5826                                                                                                                                                                                                                                                         CB, multilateral (TDS, current US$)
## 5827                                                                                                                                                                                                                                                Multilateral debt service (TDS, current US$)
## 5828                                                                                                                                                                                                                                                         GG, multilateral (TDS, current US$)
## 5829                                                                                                                                                                                                                                                        OPS, multilateral (TDS, current US$)
## 5830                                                                                                                                                                                                                Multilateral debt service (% of public and publicly guaranteed debt service)
## 5831                                                                                                                                                                                                                                                       PRVG, multilateral (TDS, current US$)
## 5832                                                                                                                                                                                                                                                         PS, multilateral (TDS, current US$)
## 5833                                                                                                                                                                                                                                            CB, multilateral concessional (TDS, current US$)
## 5834                                                                                                                                                                                                                                           PPG, multilateral concessional (TDS, current US$)
## 5835                                                                                                                                                                                                                                            GG, multilateral concessional (TDS, current US$)
## 5836                                                                                                                                                                                                                                           OPS, multilateral concessional (TDS, current US$)
## 5837                                                                                                                                                                                                                                          PRVG, multilateral concessional (TDS, current US$)
## 5838                                                                                                                                                                                                                                            PS, multilateral concessional (TDS, current US$)
## 5839                                                                                                                                                                                                                                                   CB, official creditors (TDS, current US$)
## 5840                                                                                                                                                                                                                                                  PPG, official creditors (TDS, current US$)
## 5841                                                                                                                                                                                                                                                   GG, official creditors (TDS, current US$)
## 5842                                                                                                                                                                                                                                                  OPS, official creditors (TDS, current US$)
## 5843                                                                                                                                                                                                                                                 PRVG, official creditors (TDS, current US$)
## 5844                                                                                                                                                                                                                                                   PS, official creditors (TDS, current US$)
## 5845                                                                                                                                                                                                                                                                CB, bonds (TDS, current US$)
## 5846                                                                                                                                                                                                                                                               PPG, bonds (TDS, current US$)
## 5847                                                                                                                                                                                                                                                                GG, bonds (TDS, current US$)
## 5848                                                                                                                                                                                                                                                               OPS, bonds (TDS, current US$)
## 5849                                                                                                                                                                                                                                                              PRVG, bonds (TDS, current US$)
## 5850                                                                                                                                                                                                                                                                PS, bonds (TDS, current US$)
## 5851                                                                                                                                                                                                                                                     CB, commercial banks (TDS, current US$)
## 5852                                                                                                                                                                                                                                                    PPG, commercial banks (TDS, current US$)
## 5853                                                                                                                                                                                                                                                     GG, commercial banks (TDS, current US$)
## 5854                                                                                                                                                                                                                                                    OPS, commercial banks (TDS, current US$)
## 5855                                                                                                                                                                                                                                                   PRVG, commercial banks (TDS, current US$)
## 5856                                                                                                                                                                                                                                                     PS, commercial banks (TDS, current US$)
## 5857                                                                                                                                                                                                                              Debt service, PPG and PNG private creditors (TDS, current US$)
## 5858                                                                                                                                                                                                                                                               PNG, bonds (TDS, current US$)
## 5859                                                                                                                                                                                                                                PNG, commercial banks and other creditors (TDS, current US$)
## 5860                                                                                                                                                                                                                                              CB, other private creditors (TDS, current US$)
## 5861                                                                                                                                                                                                                                             PPG, other private creditors (TDS, current US$)
## 5862                                                                                                                                                                                                                                              GG, other private creditors (TDS, current US$)
## 5863                                                                                                                                                                                                                                             OPS, other private creditors (TDS, current US$)
## 5864                                                                                                                                                                                                                                            PRVG, other private creditors (TDS, current US$)
## 5865                                                                                                                                                                                                                                              PS, other private creditors (TDS, current US$)
## 5866                                                                                                                                                                                                 Debt service on external debt, private guaranteed by public sector (PPG) (TDS, current US$)
## 5867                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5868                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5869                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5870                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5871                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5872                                                                                                                                                                                  Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5873                                                                                                                                                                            Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5874                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5875                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5876                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5877                                                                                                                                                                        Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5878                                                                                                                                                                          Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5879                                                                                                                                                                           Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5880                                                                                                                                                                                                                                                    CB, private creditors (TDS, current US$)
## 5881                                                                                                                                                                                                                                                   PPG, private creditors (TDS, current US$)
## 5882                                                                                                                                                                                                                                                    GG, private creditors (TDS, current US$)
## 5883                                                                                                                                                                                                                                                   OPS, private creditors (TDS, current US$)
## 5884                                                                                                                                                                                                                                                  PRVG, private creditors (TDS, current US$)
## 5885                                                                                                                                                                                                                                                    PS, private creditors (TDS, current US$)
## 5886                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD
## 5887                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD
## 5888                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD
## 5889                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD
## 5890                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD
## 5891                                                                                                                                                                                                  Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD
## 5892                                                                                                                                                                                            Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD
## 5893                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD
## 5894                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD
## 5895                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD
## 5896                                                                                                                                                                                        Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD
## 5897                                                                                                                                                                                          Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD
## 5898                                                                                                                                                                                           Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD
## 5899                                                                                                                                                                                                                                Debt service, reduction in arrears/prepayments (current US$)
## 5900                                                                                                                                                                                   Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Prin. and Int., USD
## 5901                                                                                                                                                                                     Gross Ext. Debt Pos., General Government, All maturities, All instruments, Prin. and Int., Arrears, USD
## 5902                                                                                                                                                                                                  Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Interest, USD
## 5903                                                                                                                                                                                                 Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Principal, USD
## 5904                                                                                                                                                                                            Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Prin. and Int., USD
## 5905                                                                                                                                                                                                    Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Prin. and Int., USD
## 5906                                                                                                                                                                              Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Prin. and Int., USD
## 5907                                                                                                                                                                                    Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Prin. and Int., USD
## 5908                                                                                                                                                                                       Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Prin. and Int., USD
## 5909                                                                                                                                                                                                   Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Prin. and Int., USD
## 5910                                                                                                                                                                                               Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, Prin. and Int., USD
## 5911                                                                                                                                                                         Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Prin. and Int., USD
## 5912                                                                                                                                                                                       Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Prin. and Int., USD
## 5913                                                                                                                                                                         Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Prin. and Int., USD
## 5914                                                                                                                                                                                                                                              Total amount of debt rescheduled (current US$)
## 5915                                                                                                                                                                                                                                         Undisbursed external debt, total (UND, current US$)
## 5916                                                                                                                                                                                                                            Undisbursed external debt, official creditors (UND, current US$)
## 5917                                                                                                                                                                                                                             Undisbursed external debt, private creditors (UND, current US$)
## 5918                                                                                                                                                                                                                                         Exports Merchandise, Customs, current US$, millions
## 5919                                                                                                                                                                                                                                        Exports Merchandise, Customs, constant US$, millions
## 5920                                                                                                                                                                                                                                                    Exports Merchandise, Customs, Price, US$
## 5921                                                                                                                                                                                                                             Exports Merchandise, Customs, current US$, millions, seas. adj.
## 5922                                                                                                                                                                                                                            Exports Merchandise, Customs, constant US$, millions, seas. adj.
## 5923                                                                                                                                                                                                                                        Exports Merchandise, Customs, Price, US$, seas. adj.
## 5924                                                                                                                                                                                                                                              081.Destination Entry Rate of Incumbents: Mean
## 5925                                                                                                                                                                                                                                            082.Destination Entry Rate of Incumbents: Median
## 5926                                                                                                                                                                                                                                            083.Destination Entry Rate of Incumbents: StDev.
## 5927                                                                                                                                                                                                                                      084.Destination Entry Rate of Surviving Entrants: Mean
## 5928                                                                                                                                                                                                                                    085.Destination Entry Rate of Surviving Entrants: Median
## 5929                                                                                                                                                                                                                                    086.Destination Entry Rate of Surviving Entrants: StDev.
## 5930                                                                                                                                                                                                                                    087.Share of New Destinations in TEV of Incumbents: Mean
## 5931                                                                                                                                                                                                                                  088.Share of New Destinations in TEV of Incumbents: Median
## 5932                                                                                                                                                                                                                                  089.Share of New Destinations in TEV of Incumbents: StDev.
## 5933                                                                                                                                                                                                                            090.Share of New Destinations in TEV of Surviving Entrants: Mean
## 5934                                                                                                                                                                                                                          091.Share of New Destinations in TEV of Surviving Entrants: Median
## 5935                                                                                                                                                                                                                          092.Share of New Destinations in TEV of Surviving Entrants: StDev.
## 5936                                                                                                                                                                                                                                               093.Destination Exit Rate of Incumbents: Mean
## 5937                                                                                                                                                                                                                                             094.Destination Exit Rate of Incumbents: Median
## 5938                                                                                                                                                                                                                                             095.Destination Exit Rate of Incumbents: StDev.
## 5939                                                                                                                                                                                                                                    096.Destination Survival Rate of 2-year Incumbents: Mean
## 5940                                                                                                                                                                                                                                  097.Destination Survival Rate of 2-year Incumbents: Median
## 5941                                                                                                                                                                                                                                  098.Destination Survival Rate of 2-year Incumbents: StDev.
## 5942                                                                                                                                                                                                                                                     Agricultural land per worker (hectares)
## 5943                                                                                                                                                                                                                                             Additional Conv. Factor (Annual avg. Local/US$)
## 5944                                                                                                                                                                                                                                           Conversion Factor (Annual average, local per US$)
## 5945                                                                                                                                                                                                                                      Agriculture value added per worker (constant 2010 US$)
## 5946                                                                                                                                                                                                                Agriculture value added per hectare of agricultural land (constant 1995 US$)
## 5947                                                                                                                                                                                                                                                                Capital expenditure (in IDR)
## 5948                                                                                                                                                                                                                                                     Goods and services expenditure (in IDR)
## 5949                                                                                                                                                                                                                                                                 Others expenditure (in IDR)
## 5950                                                                                                                                                                                                                                                              Personnel expenditure (in IDR)
## 5951                                                                                                                                                                                                                                                                  Total Expenditure (in IDR)
## 5952                                                                                                                                                                                                                         Water pollution, clay and glass industry (% of total BOD emissions)
## 5953                                                                                                                                                                                                                               Water pollution, chemical industry (% of total BOD emissions)
## 5954                                                                                                                                                                                                                                   Water pollution, food industry (% of total BOD emissions)
## 5955                                                                                                                                                                                                                                  Water pollution, metal industry (% of total BOD emissions)
## 5956                                                                                                                                                                                                                                  Water pollution, other industry (% of total BOD emissions)
## 5957                                                                                                                                                                                                                         Water pollution, paper and pulp industry (% of total BOD emissions)
## 5958                                                                                                                                                                                                                                        Organic water pollutant (BOD) emissions (kg per day)
## 5959                                                                                                                                                                                                                                Water pollution, textile industry (% of total BOD emissions)
## 5960                                                                                                                                                                                                                                   Water pollution, wood industry (% of total BOD emissions)
## 5961                                                                                                                                                                                                                             Organic water pollutant (BOD) emissions (kg per day per worker)
## 5962                                                                                                                                                                                                                                                                     Economic Fitness Metric
## 5963                                                                                                                                                                                                                                                                     Economic Fitness Metric
## 5964                                                                                                                                                                                                                                              Economic Fitness Ranking (1 = high, 149 = low)
## 5965                                                                                                                                                                                                                                                           Universal Economic Fitness Metric
## 5966                                                                                                                                                                                                           Access to clean fuels and technologies for cooking, rural (% of rural population)
## 5967                                                                                                                                                                                                           Access to clean fuels and technologies for cooking, urban (% of urban population)
## 5968                                                                                                                                                                                                                        Access to clean fuels and technologies for cooking (% of population)
## 5969                                                                                                                                                                                                                                 Energy intensity level of primary energy (MJ/$2017 PPP GDP)
## 5970                                                                                                                                                                                                                                                    Energy production (kt of oil equivalent)
## 5971                                                                                                                                                                                                                                        Access to electricity, rural (% of rural population)
## 5972                                                                                                                                                                                                                                        Access to electricity, urban (% of urban population)
## 5973                                                                                                                                                                                                                                                     Access to electricity (% of population)
## 5974                                                                                                                                                                                                                                              Electricity production from coal sources (kWh)
## 5975                                                                                                                                                                                                                                       Electricity production from coal sources (% of total)
## 5976                                                                                                                                                                                                                          Electricity production from oil, gas and coal sources (% of total)
## 5977                                                                                                                                                                                                                                     Electricity production from hydroelectric sources (kWh)
## 5978                                                                                                                                                                                                                              Electricity production from hydroelectric sources (% of total)
## 5979                                                                                                                                                                                                                                   Electric power transmission and distribution losses (kWh)
## 5980                                                                                                                                                                                                                           Electric power transmission and distribution losses (% of output)
## 5981                                                                                                                                                                                                                                       Electricity production from natural gas sources (kWh)
## 5982                                                                                                                                                                                                                                Electricity production from natural gas sources (% of total)
## 5983                                                                                                                                                                                                                                           Electricity production from nuclear sources (kWh)
## 5984                                                                                                                                                                                                                                    Electricity production from nuclear sources (% of total)
## 5985                                                                                                                                                                                                                                               Electricity production from oil sources (kWh)
## 5986                                                                                                                                                                                                                                        Electricity production from oil sources (% of total)
## 5987                                                                                                                                                                                                                                                                Electricity production (kWh)
## 5988                                                                                                                                                                                                                                         Electricity production from renewable sources (kWh)
## 5989                                                                                                                                                                                                                                Renewable electricity output (% of total electricity output)
## 5990                                                                                                                                                                                                                Electricity production from renewable sources, excluding hydroelectric (kWh)
## 5991                                                                                                                                                                                                         Electricity production from renewable sources, excluding hydroelectric (% of total)
## 5992                                                                                                                                                                                                                          Renewable energy consumption (% of total final energy consumption)
## 5993                                                                                                                                                                                                                              GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 5994                                                                                                                                                                                                                              GDP per unit of energy use (2000 US$ per kg of oil equivalent)
## 5995                                                                                                                                                                                                                                 GDP per unit of energy use (PPP $ per kg of oil equivalent)
## 5996                                                                                                                                                                                                                   GDP per unit of energy use (constant 2017 PPP $ per kg of oil equivalent)
## 5997                                                                                                                                                                                                                                                       Energy imports, net (% of energy use)
## 5998                                                                                                                                                                                                                                                       Energy imports (kt of oil equivalent)
## 5999                                                                                                                                                                                                                                     Access to non-solid fuel, rural (% of rural population)
## 6000                                                                                                                                                                                                                                     Access to non-solid fuel, urban (% of urban population)
## 6001                                                                                                                                                                                                                                                  Access to non-solid fuel (% of population)
## 6002                                                                                                                                                                                                                                      Alternative and nuclear energy (% of total energy use)
## 6003                                                                                                                                                                                                                                                 Fossil fuel energy consumption (% of total)
## 6004                                                                                                                                                                                                                        Energy use (kg of oil equivalent) per $1,000 GDP (constant 2017 PPP)
## 6005                                                                                                                                                                                                                                                           Energy use (kt of oil equivalent)
## 6006                                                                                                                                                                                                                            Combustible renewables and waste (metric tons of oil equivalent)
## 6007                                                                                                                                                                                                                                        Combustible renewables and waste (% of total energy)
## 6008                                                                                                                                                                                                                                                            Electric power consumption (kWh)
## 6009                                                                                                                                                                                                                                                 Electric power consumption (kWh per capita)
## 6010                                                                                                                                                                                                                                                Energy use (kg of oil equivalent per capita)
## 6011                                                                                                                                                                                                                                        J.P. Morgan Emerging Markets Bond Spread (EMBI+),,,,
## 6012                                                                                                                                                                                                                                          J.P. Morgan Emerging Markets Bond Index(EMBI+),,,,
## 6013                                                                                                                                                                                                                                      Economically active population in agriculture (number)
## 6014                                                                                                                                                                                                                         Economically active population in agriculture, female (FAO, number)
## 6015                                                                                                                                                                                                                                                       Agricultural population (FAO, number)
## 6016                                                                                                                                                                                                                           Economically active population in agriculture, male (FAO, number)
## 6017                                                                                                                                                                                                                                                                  Animal species, threatened
## 6018                                                                                                                                                                                                                                                     Arable land area (% of total land area)
## 6019                                                                                                                                                                                                                                 CO2 emissions from cement production (thousand metric tons)
## 6020                                                                                                                                                                                                                                      CO2 intensity (kg per kg of oil equivalent energy use)
## 6021                                                                                                                                                                                                                               CO2 emissions from fossil-fuels, total (thousand metric tons)
## 6022                                                                                                                                                                                                                                                CO2 emissions from fossil-fuels (% of total)
## 6023                                                                                                                                                                                                                                          CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6024                                                                                                                                                                                                                                           CO2 emissions from gaseous fuel consumption (kt) 
## 6025                                                                                                                                                                                                                                   CO2 emissions from gaseous fuel consumption (% of total) 
## 6026                                                                                                                                                                                                                                       CO2 emissions from gas flaring (thousand metric tons)
## 6027                                                                                                                                                                                                                                          CO2 emissions, industrial (kg per 1987 US$ of GDP)
## 6028                                                                                                                                                                                                                                                      CO2 emissions (kg per 2015 US$ of GDP)
## 6029                                                                                                                                                                                                                                                                          CO2 emissions (kt)
## 6030                                                                                                                                                                                                                                            CO2 emissions from liquid fuel consumption (kt) 
## 6031                                                                                                                                                                                                                                    CO2 emissions from liquid fuel consumption (% of total) 
## 6032                                                                                                                                                                                                                                                      CO2 emissions (metric tons per capita)
## 6033                                                                                                                                                                                                                                                         CO2 emissions (kg per PPP $ of GDP)
## 6034                                                                                                                                                                                                                                                    CO2 emissions (kg per 2017 PPP $ of GDP)
## 6035                                                                                                                                                                                                                                             CO2 emissions from solid fuel consumption (kt) 
## 6036                                                                                                                                                                                                                                      CO2 emissions from solid fuel consumption (% of total)
## 6037                                                                                                                                                                                                   Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)
## 6038                                                                                                                                                                                                                                         Other greenhouse gas emissions (% change from 1990)
## 6039                                                                                                                                                                                                                                       Total greenhouse gas emissions (kt of CO2 equivalent)
## 6040                                                                                                                                                                                                                                         Total greenhouse gas emissions (% change from 1990)
## 6041                                                                                                                                                                                                                                  HFC gas emissions (thousand metric tons of CO2 equivalent)
## 6042                                                                                                                                                                                                                     Agricultural methane emissions (thousand metric tons of CO2 equivalent)
## 6043                                                                                                                                                                                                                                                 Agricultural methane emissions (% of total)
## 6044                                                                                                                                                                                                                 Methane emissions in energy sector (thousand metric tons of CO2 equivalent)
## 6045                                                                                                                                                                                                                                               Energy related methane emissions (% of total)
## 6046                                                                                                                                                                                                                                               Energy related methane emissions (% of total)
## 6047                                                                                                                                                                                                                                                    Methane emissions (kt of CO2 equivalent)
## 6048                                                                                                                                                                                                                                         Methane emissions (kt of CO2 equivalent per capita)
## 6049                                                                                                                                                                                                                                                      Methane emissions (% change from 1990)
## 6050                                                                                                                                                                                                               Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6051                                                                                                                                                                                                                                           Agricultural nitrous oxide emissions (% of total)
## 6052                                                                                                                                                                                                           Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent)
## 6053                                                                                                                                                                                                                                       Nitrous oxide emissions in energy sector (% of total)
## 6054                                                                                                                                                                                             Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)
## 6055                                                                                                                                                                                                                 Industrial nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6056                                                                                                                                                                                             Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)
## 6057                                                                                                                                                                                                                            Nitrous oxide emissions (thousand metric tons of CO2 equivalent)
## 6058                                                                                                                                                                                                                                     Nitrous oxide emissions (metric tons of CO2 equivalent)
## 6059                                                                                                                                                                                                                          Nitrous oxide emissions (metric tons of CO2 equivalent per capita)
## 6060                                                                                                                                                                                                                                                Nitrous oxide emissions (% change from 1990)
## 6061                                                                                                                                                                                                                                  PFC gas emissions (thousand metric tons of CO2 equivalent)
## 6062                                                                                                                                                                                                                                            PM10, country level (micrograms per cubic meter)
## 6063                                                                                                                                                                                                                      PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)
## 6064                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-1 value (% of total)
## 6065                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-2 value (% of total)
## 6066                                                                                                                                                                                             PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-3 value (% of total)
## 6067                                                                                                                                                                                                PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)
## 6068                                                                                                                                                                                                                                  SF6 gas emissions (thousand metric tons of CO2 equivalent)
## 6069                                                                                                                                                                                                                                                                    Bird species, threatened
## 6070                                                                                                                                                                                                                                                                   Bird species, total known
## 6071                                                                                                                                                                                                                          Cooling Degree Days (projected change in number of degree Celsius)
## 6072                                                                                                                                                                                                                                  Disaster risk reduction progress score (1-5 scale; 5=best)
## 6073                                                                                                                                                                                                                                   GHG net emissions/removals by LUCF (Mt of CO2 equivalent)
## 6074                                                                                                                                                                                                                                                    Heat Index 35 (projected change in days)
## 6075                                                                                                                                                                                                                 Droughts, floods, extreme temperatures (% of population, average 1990-2009)
## 6076                                                                                                                                                                                                                       Maximum 5-day Rainfall, 25-year Return Level (projected change in mm)
## 6077                                                                                                                                                                                                                                             Mean Drought Index (projected change, unitless)
## 6078                                                                                                                                                                                           CO2 emissions from residential buildings and commercial and public services (million metric tons)
## 6079                                                                                                                                                                                    CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion)
## 6080                                                                                                                                                                                                             CO2 emissions from electricity and heat production, total (million metric tons)
## 6081                                                                                                                                                                                                      CO2 emissions from electricity and heat production, total (% of total fuel combustion)
## 6082                                                                                                                                                                                                          CO2 emissions from manufacturing industries and construction (million metric tons)
## 6083                                                                                                                                                                                                   CO2 emissions from manufacturing industries and construction (% of total fuel combustion)
## 6084                                                                                                                                                                  CO2 emissions from other sectors, excluding residential buildings and commercial and public services (million metric tons)
## 6085                                                                                                                                                           CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)
## 6086                                                                                                                                                                                                                                          CO2 emissions from transport (million metric tons)
## 6087                                                                                                                                                                                                                                   CO2 emissions from transport (% of total fuel combustion)
## 6088                                                                                                                                                                                                                                         Commercial energy production (kt of oil equivalent)
## 6089                                                                                                                                                                                                                                                     Electric power production (million kwh)
## 6090                                                                                                                                                                                                                           Electric power transmission and distribution losses (% of output)
## 6091                                                                                                                                                                                                                                                                    Fish species, threatened
## 6092                                                                                                                                                                                                                                                          Plant species (higher), threatened
## 6093                                                                                                                                                                                                                                                         Plant species (higher), total known
## 6094                                                                                                                                                                                                                                                                  Land use, cropland (sq km)
## 6095                                                                                                                                                                                                                                                         Land use, cropland (% of land area)
## 6096                                                                                                                                                                                                                                                                     Land use, other (sq km)
## 6097                                                                                                                                                                                                                                                            Land use, other (% of land area)
## 6098                                                                                                                                                                                                                                                         Land use, permanent pasture (sq km)
## 6099                                                                                                                                                                                                                                                Land use, permanent pasture (% of land area)
## 6100                                                                                                                                                                                                                                                                           Land area (sq km)
## 6101                                                                                                                                                                                                                                                           Irrigated land (% of arable land)
## 6102                                                                                                                                                                                                                                                                  Mammal species, threatened
## 6103                                                                                                                                                                                                                                                   Non-agricultural population (FAO, number)
## 6104                                                                                                                                                                                                                                         Population density (people per sq. km of land area)
## 6105                                                                                                                                                                                                  Rural population living in areas where elevation is below 5 meters (% of total population)
## 6106                                                                                                                                                                                                  Urban population living in areas where elevation is below 5 meters (% of total population)
## 6107                                                                                                                                                                                                        Population living in areas where elevation is below 5 meters (% of total population)
## 6108                                                                                                                                                                                                                                          Population living in slums (% of urban population)
## 6109                                                                                                                                                                                                                                                        Electricity production (million kwh)
## 6110                                                                                                                                                                                                                                                     Electricity production (kwh per capita)
## 6111                                                                                                                                                                                                                                                                           Traffic accidents
## 6112                                                                                                                                                                                                                                                              Road traffic (vehicles per km)
## 6113                                                                                                                                                                                                                       Rural population density (rural population per sq. km of arable land)
## 6114                                                                                                                                                                                                                                                Population density, rural (people per sq km)
## 6115                                                                                                                                                                                                                                                 Traditional fuel use (kt of oil equivalent)
## 6116                                                                                                                                                                                                                                                Traditional fuel use (% of total energy use)
## 6117                                                                                                                                                                                                                                    Traffic accidents (injured or killed per 1,000 vehicles)
## 6118                                                                                                                                                                                                                                                                 Vehicles (per 1,000 people)
## 6119                                                                                                                                                                                                                                                                   Vehicles (per km of road)
## 6120                                                                                                                                                                                                                                                                  Population in largest city
## 6121                                                                                                                                                                                                                                      Population in the largest city (% of urban population)
## 6122                                                                                                                                                                                                                                   Population in urban agglomerations of more than 1 million
## 6123                                                                                                                                                                                                           Population in urban agglomerations of more than 1 million (% of total population)
## 6124                                                                                                                                                                                                             Enforcing contracts: Alternative dispute resolution (0-3) (DB16-20 methodology)
## 6125                                                                                                                                                                                                                                             Enforcing contracts: Attorney fees (% of claim)
## 6126                                                                                                                                                                                                                                                      Enforcing contracts: Cost (% of claim)
## 6127                                                                                                                                                                                                                                              Enforcing contracts: Cost (% of claim) - Score
## 6128                                                                                                                                                                                                                            Enforcing contracts: Case management (0-6) (DB16-20 methodology)
## 6129                                                                                                                                                                                                                           Enforcing contracts: Court automation (0-4) (DB17-20 methodology)
## 6130                                                                                                                                                                                                                                                Enforcing contracts: Court fees (% of claim)
## 6131                                                                                                                                                                                                               Enforcing contracts: Court structure and proceedings (0-5) (DB16 methodology)
## 6132                                                                                                                                                                                                            Enforcing contracts: Court structure and proceedings (0-5) (DB17-20 methodology)
## 6133                                                                                                                                                                                                                                           Enforcing contracts (DB04-15 methodology) - Score
## 6134                                                                                                                                                                                                                                              Enforcing contracts (DB16 methodology) - Score
## 6135                                                                                                                                                                                                                                           Enforcing contracts (DB17-20 methodology) - Score
## 6136                                                                                                                                                                                                                                          Enforcing contracts: Enforcement fees (% of claim)
## 6137                                                                                                                                                                                                                                         Enforcing contracts: Enforcement of judgment (days)
## 6138                                                                                                                                                                                                                                              Enforcing contracts: Filing and service (days)
## 6139                                                                                                                                                                                                                                                    Enforcing contracts: Procedures (number)
## 6140                                                                                                                                                                                                                                            Enforcing contracts: Procedures (number) - Score
## 6141                                                                                                                                                                                           Enforcing contracts: Quality of the judicial processes index (0-19) (DB17-20 methodology) - Score
## 6142                                                                                                                                                                                               Enforcing contracts: Quality of judicial processes index (0-19) (DB17-19 methodology) - Score
## 6143                                                                                                                                                                                                   Enforcing contracts: Quality of the judicial processes index (0-18) (DB17-20 methodology)
## 6144                                                                                                                                                                                                                            Rank: Enforcing contracts (1=most business-friendly regulations)
## 6145                                                                                                                                                                                                                                              Enforcing contracts: Trial and judgment (days)
## 6146                                                                                                                                                                                                                                                            Enforcing contracts: Time (days)
## 6147                                                                                                                                                                                                                                                    Enforcing contracts: Time (days) - Score
## 6148                                                                                                                                                                                                  Enforcing contracts: Quality of judicial administration index (0-18) (DB17-19 methodology)
## 6149                                                                                                                                                                                                                                                 Consumer Price Index in 42 cities base 1996
## 6150                                                                                                                                                                                                                                                 Consumer Price Index in 45 cities base 2002
## 6151                                                                                                                                                                                                                                                 Consumer Price Index in 66 cities base 2007
## 6152                                                                                                                                                                                                                                                 Consumer Price Index in 82 cities base 2012
## 6153                                                                                                                                                                                                                                                  Pump price for diesel fuel (US$ per liter)
## 6154                                                                                                                                                                                                                                                     Pump price for gasoline (US$ per liter)
## 6155                                                                                                                                                                                                                                     Bread and cereals price in PPP terms (U.S. price = 100)
## 6156                                                                                                                                                                                                                                       Agricultural producer price, maize ($ per metric ton)
## 6157                                                                                                                                                                                                                                                  Meat price in PPP terms (U.S. price = 100)
## 6158                                                                                                                                                                                                                                       Agricultural producer price, wheat ($ per metric ton)
## 6159                                                                                                                                                                                                        GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum)
## 6160                                                                                                                                                                                                                                                        Aquaculture production (metric tons)
## 6161                                                                                                                                                                                                                                                  Capture fisheries production (metric tons)
## 6162                                                                                                                                                                                                                                                    Total fisheries production (metric tons)
## 6163                                                                                                                                                                                                                                                          Annual deforestation (% of change)
## 6164                                                                                                                                                                                            Water productivity, total (constant 2015 US$ GDP per cubic meter of total freshwater withdrawal)
## 6165                                                                                                                                                                                                               Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)
## 6166                                                                                                                                                                                                                  Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)
## 6167                                                                                                                                                                                                                  Annual freshwater withdrawals, industry (% of total freshwater withdrawal)
## 6168                                                                                                                                                                                              Level of water stress: freshwater withdrawal as a proportion of available freshwater resources
## 6169                                                                                                                                                                                                                                 Annual freshwater withdrawals, total (billion cubic meters)
## 6170                                                                                                                                                                                                                              Annual freshwater withdrawals, total (% of internal resources)
## 6171                                                                                                                                                                                                                       Renewable internal freshwater resources, total (billion cubic meters)
## 6172                                                                                                                                                                                                                           Renewable internal freshwater resources per capita (cubic meters)
## 6173                                                                                                                                                                                                                                                       Terrestrial protected areas  (sq. km)
## 6174                                                                                                                                                                                                                                                        Terrestrial protected areas (number)
## 6175                                                                                                                                                                                                                                       Terrestrial protected areas (% of total surface area)
## 6176                                                                                                                                                                                                                                          Terrestrial protected areas (% of total land area)
## 6177                                                                                                                                                                                                                                                             Marine protected areas (sq. km)
## 6178                                                                                                                                                                                                                                                             Marine protected areas (number)
## 6179                                                                                                                                                                                                                                            Marine protected areas (% of territorial waters)
## 6180                                                                                                                                                                                                                        Terrestrial and marine protected areas (% of total territorial area)
## 6181                                                                                                                                                                                                                                            Energy imports, net (% of commercial energy use)
## 6182                                                                                                                                                                                                                              GDP per unit of energy use (1987 US$ per kg of oil equivalent)
## 6183                                                                                                                                                                                                                                     Commercial energy use (kg of oil equivalent per capita)
## 6184                                                                                                                                                                                                                                                Commercial energy use (kt of oil equivalent)
## 6185                                                                                                                                                                                                                                                             Currency Outside Banks  (local)
## 6186                                                                                                                                                                                                                      Banking assets held by foreign-owned banks (% of total banking assets)
## 6187                                                                                                                                                                                                                                          Loan accounts, commercial banks (per 1,000 adults)
## 6188                                                                                                                                                                                                                                              Loan accounts, cooperatives (per 1,000 adults)
## 6189                                                                                                                                                                                                                                 Loan accounts, microfinance institutions (per 1,000 adults)
## 6190                                                                                                                                                                                                                  Loan accounts, specialized state financial institutions (per 1,000 adults)
## 6191                                                                                                                                                                                                                                           Bank nonperforming loans to total gross loans (%)
## 6192                                                                                                                                                                                                                   Banking assets held by government-owned banks (% of total banking assets)
## 6193                                                                                                                                                                                                                                       Automated teller machines (ATMs) (per 100,000 adults)
## 6194                                                                                                                                                                                                                                             Branches, commercial banks (per 100,000 adults)
## 6195                                                                                                                                                                                                                                                 Branches, cooperatives (per 100,000 adults)
## 6196                                                                                                                                                                                                                                    Branches, microfinance institutions (per 100,000 adults)
## 6197                                                                                                                                                                                                                                                          Bank branches (per 100,000 people)
## 6198                                                                                                                                                                                                                     Branches, specialized state financial institutions (per 100,000 adults)
## 6199                                                                                                                                                                                                                                                            Bank capital to assets ratio (%)
## 6200                                                                                                                                                      656_Does a dedicated, national, multi-stakeholder structure exist to promote and coordinate provision of financial education?_#VHQB_00
## 6201                                                                                                                                                       660_Does government, industry, and NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6202                                                                                                                                                         659_Does government and industry only participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6203                                                                                                                                                                           657_Does government participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6204                                                                                                                                                                        658_Does industry only participate in the multi-stakeholder structure to promote and coordinate financial education?
## 6205                                                                                                                                               661_Does government, industry, or NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?_#VHQC_00
## 6206                                                                                                                                                                                           655_Are there multiple agencies responsible for financial education policy and programs?_#VHQA_01
## 6207                                                                                                                                                                                              654_Is there a single agency responsible for financial education policy and programs?_#VHQA_00
## 6208                                                                                                                                                             653_Does this country have a formal definition for financial education or financial literacy or financial capability? _#VHPA_00
## 6209                                                                                                                                 685_Does the government itself or with partners maintain a website with educational content, tools, and resources for broader financial education?_#VHXA_01
## 6210                                                                                                                                                                                    674_Is financial education integrated into any government-provided social assistance programs? _#VHVA_00
## 6211                                                                                                                                                            669_Has the government issued written guidelines directed to all providers of financial education on content and/or methodology?
## 6212                                                                                                                                               668_Has the government issued written guidelines directed to a limited set of providers of financial education on content and/or methodology?
## 6213                                                                                                                             670_Has the government issued written guidelines directed to all, some, or none of the providers of financial education on content and/or methodology?_#VHUA_00
## 6214                                                                                                                                662_Has the government, either by itself or with partners, undertaken a national mapping of financial education activities in the past five years? _#VHRA_00
## 6215                                                                                                                    667_Has a nationally representative broader survey with a component on financial capability of individuals or households been conducted in the past five years?_#VHTA_01
## 6216                                                                                                                                   666_Has a nationally representative dedicated survey of financial capability of individuals or households been conducted in the past five years?_#VHTA_00
## 6217                                                                                                                                              678_Is financial education at the stage of curriculum development planned within the next 1-2 years within public school curriculums?_#VHWA_03
## 6218                                                                                                                                                                                   675_Is financial education included in public school curriculums as a distinct topic or subject?_#VHWA_00
## 6219                                                                                                                                                      677_Is financial education at the stage of implementation planned within the next 1-2 years within public school curriculums?_#VHWA_02
## 6220                                                                                                                                                     681_Is financial education currently or soon to be included as a topic in public school curriculums at junior secondary level?_#VHWB_01
## 6221                                                                                                                                                                                        679_Is financial education at the stage of not being included in public school curriculums?_#VHWA_04
## 6222                                                                                                                                                              680_Is financial education currently or soon to be included as a topic in public school curriculums at primary level?_#VHWB_00
## 6223                                                                                                                                                     682_Is financial education currently or soon to be included as a topic in public school curriculums at senior secondary level?_#VHWB_02
## 6224                                                                                                                                           676_Is financial education included in public school curriculums as a subtopic integrated into one or multiple other topics or subjects?_#VHWA_01
## 6225                                                                                                                                                           683_Is financial education currently or soon to be included as a topic in public school curriculums at university level?_#VHWB_03
## 6226                                                                                                                                                       684_Does the government itself or with partners maintain a website to disclose pricing and terms and conditions information?_#VHXA_00
## 6227                                                                                                                                                                                    672_Does the government explicitly require all financial service providers to offer financial education?
## 6228                                                                                                                                                                       671_Does the government explicitly require a limited set of financial service providers to offer financial education?
## 6229                                                                                                                                                     673_Does the government explicitly require all, some, or none of the financial service providers to offer financial education?_#VHUB_00
## 6230                                                                                                                                                              664_Does the government regularly collect data from all known providers of financial education on the reach of their programs?
## 6231                                                                                                                                                       663_Does the government regularly collect data from a limited set of providers of financial education on the reach of their programs?
## 6232                                                                                                                               665_Does the government regularly collect data from all, some, or none of the known providers of financial education on the reach of their programs?_#VHSA_00
## 6233                                                                                                                                                                                                                                               Commercial bank branches (per 100,000 adults)
## 6234                                                                                                                                                                                                                                          Borrowers from commercial banks (per 1,000 adults)
## 6235                                                                                                                                                                                                                                         Depositors with commercial banks (per 1,000 adults)
## 6236                                                                                                                                                                                                                                            Deposit insurance coverage (% of GDP per capita)
## 6237                                                                                                                                       593_Do laws and regulations allow consumers a cooling-off period during which they can withdraw from a product or service without a penalty?_#VHHA_02
## 6238                                                                                                                                                                  583_Do laws and regulations require assessment of borrower's ability to repay, without specific borrowing limits?_#VHFA_01
## 6239                                                                                                                                                                                                            582_Do laws and regulations set explicit limits on excessive borrowing?_#VHFA_00
## 6240                                                                                                                                                                                                 585_Do laws and regulations contain no provisions to restrict excessive borrowing?_#VHFA_03
## 6241                                                                                                                                                                                                         584_Do laws and regulations set other restrictions on excessive borrowing?_#VHFA_02
## 6242                                                                                                                                                 600_Are financial institutions required to have a minimum level of professional competence/training for agents and intermediaries?_#VHIB_04
## 6243                                                                                                                             595_Are financial institutions required to have a minimum level of professional competence/training for all relevant personnel dealing with consumers?_#VHIA_00
## 6244                                                                                                                                                       599_Are financial institutions required to have a minimum level of professional competence/training for complaints officers?_#VHIB_03
## 6245                                                                                                                                                           596_Are financial institutions required to have a minimum level of professional competence/training for credit officers?_#VHIB_00
## 6246                                                                                                                                          601_Are financial institutions required to have a minimum level of professional competence/training for customer service representatives?_#VHIB_05
## 6247                                                                                                                                                           598_Are financial institutions required to have a minimum level of professional competence/training for marketing staff?_#VHIB_02
## 6248                                                                                                                                                         597_Are financial institutions required to have a minimum level of professional competence/training for recovery officers?_#VHIB_01
## 6249                                                                                                                                                                                                602_Do laws or regulations require minimum standards for debt collection practices?_#VHJA_00
## 6250                                                                                                                               590_Do laws and regulations prohibit or restrict bundling and tying services and products in a manner that unduly restricts the choice of consumers?_#VHGA_04
## 6251                                                                                                                               589_Do laws and regulations prohibit or restrict discriminating consumers based on gender, ethnicity, faith, political affiliation, or appearance?  _#VHGA_03
## 6252                                                                                                                                               591_Do laws and regulations limit fees and charges for account closure that impede customer mobility between financial institutions?_#VHHA_00
## 6253                                                                                                                                                          594_Do laws and regulations limit early repayment penalties that impede customer mobility between financial institutions?_#VHHA_03
## 6254                                                                                                                                   592_Do laws and regulations prohibit extra burdening procedures for account closure that limit customer mobility between financial institutions?_#VHHA_01
## 6255                                                                                                                   588_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the right of the consumer?  _#VHGA_02
## 6256                                                                                             587_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the liability of the financial service provider?  _#VHGA_01
## 6257                                                                                                                      586_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that is unfair, excessively unbalanced or abusive?  _#VHGA_00
## 6258                                                                                                                                                                           629_Does the alternative dispute resolution (ADR) entity analyze the complaints data to identify trends?_#VHMF_01
## 6259                                                                                                                                                                                       619_Does the alternative dispute resolution (ADR) entity also cover non-financial services? _#VHMB_01
## 6260                                                                                                                                              612_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides both binding decisions and mediation services?_#VHLA_01
## 6261                                                                                                                                                                     613_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides binding decisions only?_#VHLA_02
## 6262                                                                                                                               627_Does the alternative dispute resolution (ADR) entity require that consumers first submit their complaints to the relevant financial institution?_#VHME_00
## 6263                                                                                                                                                                            630_Does the alternative dispute resolution (ADR) entity communicate complaint trends to the regulator?_#VHMF_02
## 6264                                                                                                                                                                    628_Does the alternative dispute resolution (ADR) entity maintain a database of registered/recorded complaints?_#VHMF_00
## 6265                                                                                                                                                                     623_Is the alternative dispute resolution (ADR) entity funded from the budget of a specific government agency?_#VHMD_01
## 6266                                                                                                                                                                    626_Is the alternative dispute resolution (ADR) entity funded by a combination of government and other sources?_#VHMD_04
## 6267                                                                                                                                                                   622_Is the alternative dispute resolution (ADR) entity funded from a budget allocated by the central government?_#VHMD_00
## 6268                                                                                                                                                                                 624_Is the alternative dispute resolution (ADR) entity funded by a financial industry association?_#VHMD_02
## 6269                                                                                                                                                                              625_Is the alternative dispute resolution (ADR) entity funded by direct contributions of its members?_#VHMD_03
## 6270                                                                                                                                                                                         618_Does the alternative dispute resolution (ADR) entity focus only on financial services?_#VHMB_00
## 6271                                                                                                                                                                     639_Are agents among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_06
## 6272                                                                                                                                                           638_Are ATM transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_05
## 6273                                                                                                                                               637_Is bundling or tying of products among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_04
## 6274                                                                                                                                                         649_Are current accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_06
## 6275                                                                                                                                                             643_Are credit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_00
## 6276                                                                                                                                                           646_Are consumer loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_03
## 6277                                                                                                                                                         648_Are deposit accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_05
## 6278                                                                                                                                                              644_Are debit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_01
## 6279                                                                                                                                                 634_Are excessive interest or fees among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_01
## 6280                                                                                                                                                         652_Are e-money products among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_09
## 6281                                                                                                                                                                       635_Is fraud among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_02
## 6282                                                                                                                                                645_Are mortgage or housing loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_02
## 6283                                                                                                                                                            650_Is life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_07
## 6284                                                                                                                                                              647_Are micro loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_04
## 6285                                                                                                                                                        651_Is non-life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_08
## 6286                                                                                                                                                               642_Are other issues among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_09
## 6287                                                                                                                                                641_Is product switching or closure among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_08
## 6288                                                                                                                                                   633_Are unclear interest or fees among the top three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_00
## 6289                                                                                                                                                    640_Are unpaid insurance claims among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_07
## 6290                                                                                                                                      636_Are mistaken or unauthorized transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_03
## 6291                                                                                                                                                                            621_Is the alternative dispute resolution (ADR) entity independent from the financial sector regulator?_#VHMC_01
## 6292                                                                                                                                                                                         617_Is the alternative dispute resolution (ADR) entity a mandatory, industry-based entity?_#VHMA_02
## 6293                                                                                                                                                                    614_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides mediation services only?_#VHLA_03
## 6294                                                                                                                                                                                   631_Does the alternative dispute resolution (ADR) entity regularly publish complaint statistics?_#VHMF_03
## 6295                                                                                                                                                                             632_Does the alternative dispute resolution (ADR) entity report complaint statistics to the regulator?_#VHMF_04
## 6296                                                                                                       611_Is there an out-of-court alternative dispute resolution (ADR) entity that provides consumers of financial services affordable and efficient recourse with a third party?_#VHLA_00
## 6297                                                                                                                                                                                                         615_Is the alternative dispute resolution (ADR) entity a statutory entity?_#VHMA_00
## 6298                                                                                                                                                                                         616_Is the alternative dispute resolution (ADR) entity a voluntary, industry-based entity?_#VHMA_01
## 6299                                                                                                                                                                          620_Is the alternative dispute resolution (ADR) entity established within the financial sector regulator?_#VHMC_00
## 6300                                                                                                                                                                                      607_Do laws or regulations set standards for accessibility in resolving customer complaints? _#VHKB_03
## 6301                                                                                                                                                  605_Do laws or regulations require financial institutions to have a designated office or unit for resolving customer complaints? _#VHKB_01
## 6302                                                                                                                                        610_Do laws or regulations set standards for providing consumers the details of a relevant external dispute resolution mechanism (if any)? _#VHKB_06
## 6303                                                                                                                                                                          604_Do laws or regulations require implementing procedures and processes to resolve customer complaints? _#VHKB_00
## 6304                                                                                                                                                                                    609_Do laws or regulations set standards for reporting complaints data to a government agency? _#VHKB_05
## 6305                                                                                                                                                                                               608_Do laws or regulations set standards for record-keeping of customer complaints? _#VHKB_04
## 6306                                                                                                                                                                        603_Do laws or regulations set standards for complaints resolution and handling by financial institutions? _#VHKA_00
## 6307                                                                                                                                                             606_Do laws or regulations set standards for timeliness of response to customer complaints by financial institutions? _#VHKB_02
## 6308                                                                                                                                                                                                 407_Do disclosure requirements for commercial banks include any form requirements?_#VGYA_02
## 6309                                                                                                                                                                                          406_Do disclosure requirements for commercial banks include a local language requirement?_#VGYA_01
## 6310                                                                                                                                                                                          405_Do disclosure requirements for commercial banks include a plain language requirement?_#VGYA_00
## 6311                                                                                                                                                                          408_Do disclosure requirements for commercial banks include information on recourse rights and processes?_#VGYA_03
## 6312                                                                                                                                                      338_Are commercial banks required to provide customers with specific types of product information at the advertisement stage?_#VGWA_00
## 6313                                                                                                                                                        341_Are commercial banks required to provide customers with specific types of product information at the contractual stage?_#VGWA_03
## 6314                                                                                                                                                     340_Are commercial banks required to provide customers with specific types of product information at the precontractual stage?_#VGWA_02
## 6315                                                                                                                                                           339_Are commercial banks required to provide customers with specific types of product information at the shopping stage?_#VGWA_01
## 6316                                                                                                                                                                    342_Are commercial banks required to provide customers with specific types of product information upon request?_#VGWA_04
## 6317                                                                                                                                                                   432_Are commercial banks required to disclose account closure fees at the shopping and/or pre-contractual stage?_#VGZA_03
## 6318                                                                                                                                                                     461_Are commercial banks required to disclose computation method at the shopping and/or pre-contractual stage?_#VHAA_02
## 6319                                                                                                                                                433_Are commercial banks required to disclose deposit insurance coverage availability at the shopping and/or pre-contractual stage?_#VGZA_04
## 6320                                                                                                                                                                459_Are commercial banks required to disclose effective interest rate at the shopping and/or pre-contractual stage?_#VHAA_00
## 6321                                                                                                                                                                     460_Are commercial banks required to disclose fees and penalties at the shopping and/or pre-contractual stage?_#VHAA_01
## 6322                                                                                                                                                           429_Are commercial banks required to disclose minimum balance requirements at the shopping and/or pre-contractual stage?_#VGZA_00
## 6323                                                                                                                                                                431_Are commercial banks required to disclose account maintenance fee at the shopping and/or pre-contractual stage?_#VGZA_02
## 6324                                                                                                                                                                    430_Are commercial banks required to disclose account opening fee at the shopping and/or pre-contractual stage?_#VGZA_01
## 6325                                                                                                                                                                     462_Are commercial banks required to disclose required insurance at the shopping and/or pre-contractual stage?_#VHAA_03
## 6326                                                                                                                                                                      463_Are commercial banks required to disclose specific warnings at the shopping and/or pre-contractual stage?_#VHAA_04
## 6327                                                                                                                                           398_Are commercial banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_00
## 6328                                                                                                                                                                     334_Does the financial consumer protection (FCP) agency have enforcement powers to impose fines and penalties?_#VGVB_03
## 6329                                                                                                                                                              335_Does the financial consumer protection (FCP) agency have enforcement powers to issue public notice of violations?_#VGVB_04
## 6330                                                                                                                                            337_Does the financial consumer protection (FCP) agency have enforcement powers to issue administrative sanctions to senior management?_#VGVB_06
## 6331                                                                                                                                                       331_Does the financial consumer protection (FCP) agency have enforcement powers to issue warnings to financial institutions?_#VGVB_00
## 6332                                                                                                                                                   332_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to refund fees and charges?_#VGVB_01
## 6333                                                                                                                                                          336_Does the financial consumer protection (FCP) agency have enforcement powers to revoke or recommend to revoke license?_#VGVB_05
## 6334                                                                                                                                        333_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to withdraw misleading advertisements?_#VGVB_02
## 6335                                                                                                                                                                                       313_Was the financial consumer protection (FCP) unit in this country established after the year 2010?
## 6336                                                                                                                                                                                      311_Was the financial consumer protection (FCP) unit in this country established before the year 2000?
## 6337                                                                                                                                                                           312_Was the financial consumer protection (FCP) unit in this country established between the years 2000 and 2010?
## 6338                                                                                                                                                                                             314_When was the financial consumer protection (FCP) unit in this country established?_#VGUF_00
## 6339                                                                                                                                     400_Are financial cooperatives required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_02
## 6340                                                                                                                            402_Are microcredit institutions (MCIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_04
## 6341                                                                                                                           403_Are non-bank e-money issuers (NBEIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_05
## 6342                                                                                                                                                                           317_Does the financial consumer protection (FCP) unit in this country have the staff of between 50 and 99 people?
## 6343                                                                                                                                                                           316_Does the financial consumer protection (FCP) unit in this country have the staff of between 10 and 49 people?
## 6344                                                                                                                                                                                           319_How many staff work in the financial consumer protection (FCP) unit in this country?_#VGUG_00
## 6345                                                                                                                                                                                315_Does the financial consumer protection (FCP) unit in this country have the staff of less than 10 people?
## 6346                                                                                                                                                                                 318_Does the financial consumer protection (FCP) unit in this country have the staff of 100 or more people?
## 6347                                                                                                                                                399_Are other banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_01
## 6348                                                                                                                  401_Are other deposit taking institutions (ODTIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_03
## 6349                                                                                                                                                                             321_Is complaints handling one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_01
## 6350                                                                                                                                                  328_Are off-site inspection of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_08
## 6351                                                                                                                                                                             330_Is financial education one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_10
## 6352                                                                                                                                 327_Are on-site inspection and investigation of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_07
## 6353                                                                                                                                                    320_Is drafting or providing inputs into regulation one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_00
## 6354                                                                                                                                                                               325_Is market monitoring one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_05
## 6355                                                                                                                                                   326_Is market research by studying consumer behavior one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_06
## 6356                                                                                                                                                                      324_Is mystery/incognito shopping one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_04
## 6357                                                                                                                322_Is collecting data from financial institutions on the number of complaints received one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_02
## 6358                                                                                                        323_Is collecting data from financial institutions on the rates and fees for financial services one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_03
## 6359                                                                                                                                                                               329_Are thematic reviews one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_09
## 6360                                                                                                                                    404_Are at least some financial institutions required to provide customers with specific types of product information in a standardized format?_#VGXH_00
## 6361                                                                                               302_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a dedicated financial consumer protection authority model?
## 6362                                                                                                           303_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a general consumer protection authority model?
## 6363                                                                                                   300_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated single financial sector authority model?
## 6364                                                                                                 301_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated sectoral financial sector authority model?
## 6365                                                                                      304_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a shared financial and general consumer protection authority model?
## 6366                                                                                                                                        305_What type of institutional structure for financial consumer protection (FCP) regulation and supervision is implemented in this country?_#VGUC_00
## 6367                                                                                                                                                                306_Under the agency overseeing financial consumer protection (FCP) in this country, is there a dedicated FCP unit?_#VGUD_00
## 6368                                                                                                                                                                                                             295_Is there a stand-alone financial consumer protection law in place?_#VGUA_02
## 6369                                                                                                                                                                                       299_Are consumer protection provisions in place within broader financial sector regulations?_#VGUB_01
## 6370                                                                                                                                                                             294_Is there a general consumer protection law with explicit reference to financial services in place?_#VGUA_01
## 6371                                                                                                                                                                          293_Is there a general consumer protection law without explicit reference to financial services in place?_#VGUA_00
## 6372                                                                                                                                                                                                 297_Is there no legal framework for financial consumer protection in this country?_#VGUA_04
## 6373                                                                                                                                                                                                      298_Are stand-alone financial consumer protection (FCP) regulations in place?_#VGUB_00
## 6374                                                                                                                                                                                        296_Are there consumer protection provisions in place within broader financial sector laws?_#VGUA_03
## 6375                                                                                                                                                                                                          Financial information infrastructure index (0=less developed to 10=more developed)
## 6376                                                                                                                                                                                  287_Is the ceiling on the minimum balance for savings/current accounts regulated in this country?_#VGTA_01
## 6377                                                                                                                                                                                       288_Are the maximum maintenance fees for savings/current accounts regulated in this country?_#VGTA_02
## 6378                                                                                                                                                                                  289_Are the maximum overdraft penalty or below minimum balance penalty regulated in this country?_#VGTA_03
## 6379                                                                                                                                                                                               286_Is the maximum cost to open a savings/current account regulated in this country?_#VGTA_00
## 6380                                                                                                                                                                            292_Is there no cost for customers to open a savings/current account as per regulation in this country?_#VGTA_06
## 6381                                                                                                                                                                                         291_Is there no law or regulation regarding the cost of customer accounts in this country?_#VGTA_05
## 6382                                                                                                                                                                                                  290_Are other factors in the cost of customer accounts regulated in this country?_#VGTA_04
## 6383                                                                                                                                                                                 231_Are non-bank e-money issuers (NBEIs) permitted to pay interest on customers' e-money accounts?_#VGOA_00
## 6384                                                                                                                                                              233_Are non-bank e-money issuers (NBEIs) not permitted to pay interest or share profits with their e-money customers?_#VGOA_02
## 6385                                                                                                                              230_Are non-bank e-money issuers (NBEIs) prohibited from using customer funds for purposes other than redeeming e-money and executing fund transfers?_#VGNA_00
## 6386                                                                                                                                                                                  232_Are non-bank e-money issuers (NBEIs) permitted to share profits with their e-money customers?_#VGOA_01
## 6387                                                                                                                                                                                                227_Is the use of accounts at the central bank required to safeguard e-money funds?_#VGMA_03
## 6388                                                                                                                                                                                                             225_Is the use of escrow accounts required to safeguard e-money funds?_#VGMA_01
## 6389                                                                                                                                                                                                                228_Is the type of accounts to safeguard e-money funds not defined?_#VGMA_04
## 6390                                                                                                                                                                                      229_Is some other type of accounts (not mentioned above) required to safeguard e-money funds?_#VGMA_05
## 6391                                                                                                                                                                                                            226_Is the use of regular accounts required to safeguard e-money funds?_#VGMA_02
## 6392                                                                                                                                                                                                              224_Is the use of trust accounts required to safeguard e-money funds?_#VGMA_00
## 6393                                                                                 220_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at more than one prudentially regulated financial institution, possibly the central bank and others?
## 6394                                                                                                 219_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at a single prudentially regulated financial institution, possibly the central bank?
## 6395                                                                                                                                                                                             222_Is it not required that customers' e-money funds are separated from e-money issuer's funds?
## 6396                                                                        221_Is only a fraction of customers' e-money funds required to be separated from e-money issuer's funds and kept at one or more prudentially regulated financial institutions, possibly the central bank and others?
## 6397                                                                                                          223_What fraction of customers' e-money funds is required to be separated from e-money issuer's funds and kept at how many prudentially regulated financial institutions?_#VGLA_00
## 6398                                                                                                                                                                                192_For commercial banks, is authorization of new or modified financial products always explicitly required?
## 6399                                                                                                                                                                                 194_For commercial banks, is authorization of new or modified financial products never explicitly required?
## 6400                                                                                                                                                                    193_For commercial banks, is authorization of new or modified financial products only in some cases explicitly required?
## 6401                                                                                                                                                                              195_For commercial banks, is authorization of new or modified financial products explicitly required?_#VGJA_00
## 6402                                                                                                                      266_For commercial banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_00
## 6403                                                                                                                                                                                             162_Are commercial banks required to check/report to credit bureau for some/all loans?_#VGHA_00
## 6404                                                                                                                                                                                                   168_For commercial banks, is all lending subject to interest rate caps or pricing limits?
## 6405                                                                                                                                                                                                                169_For commercial banks, are there no interest rate caps or pricing limits?
## 6406                                                                                                                                                                   170_For commercial banks, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6407                                                                                                                                                                             171_For commercial banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_00
## 6408                                                                                                                                   271_Are commercial banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSA_01
## 6409                                                                                                                                                          270_Are commercial banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSA_00
## 6410                                                                                                                                                                  273_Are commercial banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSA_03
## 6411                                                                                                                                               272_Are commercial banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSA_02
## 6412                                                                                                                                                                                                      123_Are commercial banks liable for any actions or omissions of their agents?_#VGFA_00
## 6413                                                                                                                                                                          200_For financial cooperatives, is authorization of new or modified financial products always explicitly required?
## 6414                                                                                                                                                                           202_For financial cooperatives, is authorization of new or modified financial products never explicitly required?
## 6415                                                                                                                                                              201_For financial cooperatives, is authorization of new or modified financial products only in some cases explicitly required?
## 6416                                                                                                                                                                        203_For financial cooperatives, is authorization of new or modified financial products explicitly required?_#VGJA_02
## 6417                                                                                                                268_For financial cooperatives, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_02
## 6418                                                                                                                                                                                       164_Are financial cooperatives required to check/report to credit bureau for some/all loans?_#VGHA_02
## 6419                                                                                                                                                                                             176_For financial cooperatives, is all lending subject to interest rate caps or pricing limits?
## 6420                                                                                                                                                                                                          177_For financial cooperatives, are there no interest rate caps or pricing limits?
## 6421                                                                                                                                                             178_For financial cooperatives, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6422                                                                                                                                                                       179_For financial cooperatives, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_02
## 6423                                                                                                                             279_Are financial cooperatives allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSC_01
## 6424                                                                                                                                                    278_Are financial cooperatives allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSC_00
## 6425                                                                                                                                                            281_Are financial cooperatives allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSC_03
## 6426                                                                                                                                         280_Are financial cooperatives allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSC_02
## 6427                                                                                                                                                                                                131_Are financial cooperatives liable for any actions or omissions of their agents?_#VGFC_00
## 6428                                                                                                                                                                               218_Are consumer risks assessed during authorization process for modified or new financial products?_#VGKA_02
## 6429                                                                                                                                                                                217_Are AML/CFT risks assessed during authorization process for modified or new financial products?_#VGKA_01
## 6430                                                                                                                                                                            216_Are operational risks assessed during authorization process for modified or new financial products?_#VGKA_00
## 6431                                                                                                                                                                                                            001_Does a regulatory/supervisory framework exist for commercial banks?_#VGAA_00
## 6432                                                                                                                                                                                                      003_Does a regulatory/supervisory framework exist for financial cooperatives?_#VGAA_02
## 6433                                                                                                                                                                                             005_Does a regulatory/supervisory framework exist for microcredit institutions (MCIs)?_#VGAA_04
## 6434                                                                                                                                                                                            006_Does a regulatory/supervisory framework exist for non-bank e-money issuers (NBEIs)?_#VGAA_05
## 6435                                                                                                                                                                                                                 002_Does a regulatory/supervisory framework exist for other banks?_#VGAA_01
## 6436                                                                                                                                                                                   004_Does a regulatory/supervisory framework exist for other deposit taking institutions (ODTIs)?_#VGAA_03
## 6437                                                                                                                                                                 208_For microcredit institutions (MCIs), is authorization of new or modified financial products always explicitly required?
## 6438                                                                                                                                                                  210_For microcredit institutions (MCIs), is authorization of new or modified financial products never explicitly required?
## 6439                                                                                                                                                     209_For microcredit institutions (MCIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6440                                                                                                                                                               211_For microcredit institutions (MCIs), is authorization of new or modified financial products explicitly required?_#VGJA_04
## 6441                                                                                                                                                                              166_Are microcredit institutions (MCIs) required to check/report to credit bureau for some/all loans?_#VGHA_04
## 6442                                                                                                                                                                                    184_For microcredit institutions (MCIs), is all lending subject to interest rate caps or pricing limits?
## 6443                                                                                                                                                                                                 185_For microcredit institutions (MCIs), are there no interest rate caps or pricing limits?
## 6444                                                                                                                                                    186_For microcredit institutions (MCIs), are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6445                                                                                                                                                              187_For microcredit institutions (MCIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_04
## 6446                                                                                                                                                                                       139_Are microcredit institutions (MCIs) liable for any actions or omissions of their agents?_#VGFE_00
## 6447                                                                                                                                                                212_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products always explicitly required?
## 6448                                                                                                                                                                 214_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products never explicitly required?
## 6449                                                                                                                                                    213_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6450                                                                                                                                                              215_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products explicitly required?_#VGJA_05
## 6451                                                                                                                                                                             167_Are non-bank e-money issuers (NBEIs) required to check/report to credit bureau for some/all loans?_#VGHA_05
## 6452                                                                                                                                                                                      143_Are non-bank e-money issuers (NBEIs) liable for any actions or omissions of their agents?_#VGFF_00
## 6453                                                                                                                                                                                     196_For other banks, is authorization of new or modified financial products always explicitly required?
## 6454                                                                                                                                                                                      198_For other banks, is authorization of new or modified financial products never explicitly required?
## 6455                                                                                                                                                                         197_For other banks, is authorization of new or modified financial products only in some cases explicitly required?
## 6456                                                                                                                                                                                   199_For other banks, is authorization of new or modified financial products explicitly required?_#VGJA_01
## 6457                                                                                                                           267_For other banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_01
## 6458                                                                                                                                                                                                  163_Are other banks required to check/report to credit bureau for some/all loans?_#VGHA_01
## 6459                                                                                                                                                                                                        172_For other banks, is all lending subject to interest rate caps or pricing limits?
## 6460                                                                                                                                                                                                                     173_For other banks, are there no interest rate caps or pricing limits?
## 6461                                                                                                                                                                        174_For other banks, are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6462                                                                                                                                                                                  175_For other banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_01
## 6463                                                                                                                                        275_Are other banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSB_01
## 6464                                                                                                                                                               274_Are other banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSB_00
## 6465                                                                                                                                                                       277_Are other banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSB_03
## 6466                                                                                                                                                    276_Are other banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSB_02
## 6467                                                                                                                                                                                                           127_Are other banks liable for any actions or omissions of their agents?_#VGFB_00
## 6468                                                                                                                                                       204_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products always explicitly required?
## 6469                                                                                                                                                        206_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products never explicitly required?
## 6470                                                                                                                                           205_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products only in some cases explicitly required?
## 6471                                                                                                                                                     207_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products explicitly required?_#VGJA_03
## 6472                                                                                             269_For other deposit taking institutions (ODTIs), are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_03
## 6473                                                                                                                                                                    165_Are other deposit taking institutions (ODTIs) required to check/report to credit bureau for some/all loans?_#VGHA_03
## 6474                                                                                                                                                                          180_For other deposit taking institutions (ODTIs), is all lending subject to interest rate caps or pricing limits?
## 6475                                                                                                                                                                                       181_For other deposit taking institutions (ODTIs), are there no interest rate caps or pricing limits?
## 6476                                                                                                                                          182_For other deposit taking institutions (ODTIs), are there some interest rate caps or pricing limits that apply to certain products or segments?
## 6477                                                                                                                                                    183_For other deposit taking institutions (ODTIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_03
## 6478                                                                                                          283_Are other deposit taking institutions (ODTIs) allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSD_01
## 6479                                                                                                                                 282_Are other deposit taking institutions (ODTIs) allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSD_00
## 6480                                                                                                                                         285_Are other deposit taking institutions (ODTIs) allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSD_03
## 6481                                                                                                                      284_Are other deposit taking institutions (ODTIs) allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSD_02
## 6482                                                                                                                                                                             135_Are other deposit taking institutions (ODTIs) liable for any actions or omissions of their agents?_#VGFD_00
## 6483                                                                                                                                                                                                     028_Are commercial banks permitted to act as an agent of a financial provider?_#VGDA_02
## 6484                                                                                                                                                                                                        026_Are commercial banks permitted to provide checking or current accounts?_#VGDA_00
## 6485                                                                                                                                                                                            032_Are commercial banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDA_06
## 6486                                                                                                                                                                                                                        033_Are commercial banks permitted to distribute insurance?_#VGDA_07
## 6487                                                                                                                                                                           031_Are commercial banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDA_05
## 6488                                                                                                                                                                                                                 034_Are commercial banks permitted to distribute pension products?_#VGDA_08
## 6489                                                                                                                                                                                027_Are commercial banks permitted to contract with retail agents as third-party delivery channels?_#VGDA_01
## 6490                                                                                                                                                                                               046_Are financial cooperatives permitted to act as an agent of a financial provider?_#VGDC_02
## 6491                                                                                                                                                                                                  044_Are financial cooperatives permitted to provide checking or current accounts?_#VGDC_00
## 6492                                                                                                                                                                                      050_Are financial cooperatives permitted to issue e-money (including prepaid e-money cards) ?_#VGDC_06
## 6493                                                                                                                                                                                                                  051_Are financial cooperatives permitted to distribute insurance?_#VGDC_07
## 6494                                                                                                                                                                     049_Are financial cooperatives permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDC_05
## 6495                                                                                                                                                                                                           052_Are financial cooperatives permitted to distribute pension products?_#VGDC_08
## 6496                                                                                                                                                                          045_Are financial cooperatives permitted to contract with retail agents as third-party delivery channels?_#VGDC_01
## 6497                                                                                                                                                                                      064_Are microcredit institutions (MCIs) permitted to act as an agent of a financial provider?_#VGDE_02
## 6498                                                                                                                                                                                         062_Are microcredit institutions (MCIs) permitted to provide checking or current accounts?_#VGDE_00
## 6499                                                                                                                                                                             068_Are microcredit institutions (MCIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDE_06
## 6500                                                                                                                                                                                                         069_Are microcredit institutions (MCIs) permitted to distribute insurance?_#VGDE_07
## 6501                                                                                                                                                            067_Are microcredit institutions (MCIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDE_05
## 6502                                                                                                                                                                                                  070_Are microcredit institutions (MCIs) permitted to distribute pension products?_#VGDE_08
## 6503                                                                                                                                                                 063_Are microcredit institutions (MCIs) permitted to contract with retail agents as third-party delivery channels?_#VGDE_01
## 6504                                                                                                                                                                                     073_Are non-bank e-money issuers (NBEIs) permitted to act as an agent of a financial provider?_#VGDF_02
## 6505                                                                                                                                                                                        071_Are non-bank e-money issuers (NBEIs) permitted to provide checking or current accounts?_#VGDF_00
## 6506                                                                                                                                                                            077_Are non-bank e-money issuers (NBEIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDF_06
## 6507                                                                                                                                                                                                        078_Are non-bank e-money issuers (NBEIs) permitted to distribute insurance?_#VGDF_07
## 6508                                                                                                                                                           076_Are non-bank e-money issuers (NBEIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDF_05
## 6509                                                                                                                                                                                                 079_Are non-bank e-money issuers (NBEIs) permitted to distribute pension products?_#VGDF_08
## 6510                                                                                                                                                                072_Are non-bank e-money issuers (NBEIs) permitted to contract with retail agents as third-party delivery channels?_#VGDF_01
## 6511                                                                                                                                                                                                          037_Are other banks permitted to act as an agent of a financial provider?_#VGDB_02
## 6512                                                                                                                                                                                                             035_Are other banks permitted to provide checking or current accounts?_#VGDB_00
## 6513                                                                                                                                                                                                 041_Are other banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDB_06
## 6514                                                                                                                                                                                                                             042_Are other banks permitted to distribute insurance?_#VGDB_07
## 6515                                                                                                                                                                                040_Are other banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDB_05
## 6516                                                                                                                                                                                                                      043_Are other banks permitted to distribute pension products?_#VGDB_08
## 6517                                                                                                                                                                                     036_Are other banks permitted to contract with retail agents as third-party delivery channels?_#VGDB_01
## 6518                                                                                                                                                                            055_Are other deposit taking institutions (ODTIs) permitted to act as an agent of a financial provider?_#VGDD_02
## 6519                                                                                                                                                                               053_Are other deposit taking institutions (ODTIs) permitted to provide checking or current accounts?_#VGDD_00
## 6520                                                                                                                                                                   059_Are other deposit taking institutions (ODTIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDD_06
## 6521                                                                                                                                                                                               060_Are other deposit taking institutions (ODTIs) permitted to distribute insurance?_#VGDD_07
## 6522                                                                                                                                                  058_Are other deposit taking institutions (ODTIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDD_05
## 6523                                                                                                                                                                                        061_Are other deposit taking institutions (ODTIs) permitted to distribute pension products?_#VGDD_08
## 6524                                                                                                                                                       054_Are other deposit taking institutions (ODTIs) permitted to contract with retail agents as third-party delivery channels?_#VGDD_01
## 6525                                                                                                                                                                                                     007_Are any non-bank e-money issuers subsidiaries of mobile network operators?_#VGAB_00
## 6526                                                                                                                                          081_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of commercial banks?_#VGEB_00
## 6527                                                                                                                                     083_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of commercial banks?_#VGEB_02
## 6528                                                                                                                                                                      084_Are third parties such as retail agents allowed to open a customer account on behalf of commercial banks?_#VGEB_03
## 6529                                                                                                                                                                             086_Are third parties such as retail agents allowed to receive deposits on behalf of commercial banks?_#VGEB_05
## 6530                                                                                                                                    095_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of financial cooperatives?_#VGED_00
## 6531                                                                                                                               097_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of financial cooperatives?_#VGED_02
## 6532                                                                                                                                                                098_Are third parties such as retail agents allowed to open a customer account on behalf of financial cooperatives?_#VGED_03
## 6533                                                                                                                                                                       100_Are third parties such as retail agents allowed to receive deposits on behalf of financial cooperatives?_#VGED_05
## 6534                                                                                                                           109_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of microcredit institutions (MCIs)?_#VGEF_00
## 6535                                                                                                                      111_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of microcredit institutions (MCIs)?_#VGEF_02
## 6536                                                                                                                                                       112_Are third parties such as retail agents allowed to open a customer account on behalf of microcredit institutions (MCIs)?_#VGEF_03
## 6537                                                                                                                                                              114_Are third parties such as retail agents allowed to receive deposits on behalf of microcredit institutions (MCIs)?_#VGEF_05
## 6538                                                                                                                          116_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_00
## 6539                                                                                                                     118_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_02
## 6540                                                                                                                                                      119_Are third parties such as retail agents allowed to open a customer account on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_03
## 6541                                                                                                                                                             121_Are third parties such as retail agents allowed to receive deposits on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_05
## 6542                                                                                                                                               088_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other banks?_#VGEC_00
## 6543                                                                                                                                          090_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other banks?_#VGEC_02
## 6544                                                                                                                                                                           091_Are third parties such as retail agents allowed to open a customer account on behalf of other banks?_#VGEC_03
## 6545                                                                                                                                                                                  093_Are third parties such as retail agents allowed to receive deposits on behalf of other banks?_#VGEC_05
## 6546                                                                                                                 102_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other deposit taking institutions (ODTIs)?_#VGEE_00
## 6547                                                                                                            104_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other deposit taking institutions (ODTIs)?_#VGEE_02
## 6548                                                                                                                                             105_Are third parties such as retail agents allowed to open a customer account on behalf of other deposit taking institutions (ODTIs)?_#VGEE_03
## 6549                                                                                                                                                    107_Are third parties such as retail agents allowed to receive deposits on behalf of other deposit taking institutions (ODTIs)?_#VGEE_05
## 6550                                                                                                                                                                 080_Are at least some financial service providers permitted to use retail agents as third-party delivery channels?_#VGEA_00
## 6551                                                                                                                                                                                                            148_Is the term of microcredit explicitly defined in law or regulation?_#VGGA_01
## 6552                                                                                                                                                                                                           147_Is the term of microfinance explicitly defined in law or regulation?_#VGGA_00
## 6553                                                                                                                                                                                                           149_Is the term of microsavings explicitly defined in law or regulation?_#VGGA_02
## 6554                                                                                                                                                                             018_Is a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) under development?_#VGAG_01
## 6555                                                                                                                                                                        017_Has a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) already been launched?_#VGAG_00
## 6556                                                                                                                                                                                                           009_Is a national financial inclusion strategy (NFIS) under development?_#VGAC_01
## 6557                                                                                                                                                                                                      008_Has a national financial inclusion strategy (NFIS) already been launched?_#VGAC_00
## 6558                                                                                                                                                          012_Is a general financial sector development strategy with a financial inclusion component (GFSDS/FI) under development?_#VGAD_01
## 6559                                                                                                                                                     011_Has a general financial sector development strategy with a financial inclusion component (GFSDS/FI) already been launched?_#VGAD_00
## 6560                                                                                                                                                                                                                   016_Is a national microfinance strategy (NMS) under development?_#VGAF_01
## 6561                                                                                                                                                                                                              015_Has a national microfinance strategy (NMS) already been launched?_#VGAF_00
## 6562                                                                                                                                                                            014_Is a national development strategy with a financial inclusion component (NDS/FI) under development?_#VGAE_01
## 6563                                                                                                                                                                       013_Has a national development strategy with a financial inclusion component (NDS/FI) already been launched?_#VGAE_00
## 6564                                                                                                                                                                     022_Are deposit-taking institutions required to offer basic financial products to promote financial inclusion?_#VGBA_03
## 6565                                                                                                                                                                       023_Are recipients of government transfers encouraged or mandated to open an account to receive their funds?_#VGBA_04
## 6566                                                                                                                                                                                                         020_Are priority lending policies in place to promote financial inclusion?_#VGBA_01
## 6567                                                                                                                                                                   019_Are requirements, exceptions, tax incentives, or subsidies policies in place to promote financial inclusion?_#VGBA_00
## 6568                                                                                                                                                                                                     021_Are tax incentive savings schemes in place to promote financial inclusion?_#VGBA_02
## 6569                                                                                                                                                      025_Has a survey of firms including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_01
## 6570                                                                                                                                  024_Has a survey of households or individuals including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_00
## 6571                                                                                                                                                                                                                                       Deposit accounts, commercial banks (per 1,000 adults)
## 6572                                                                                                                                                                                                                                           Deposit accounts, cooperatives (per 1,000 adults)
## 6573                                                                                                                                                                                                                              Deposit accounts, microfinance institutions (per 1,000 adults)
## 6574                                                                                                                                                                                                                                                    Bank deposit accounts (per 1,000 people)
## 6575                                                                                                                                                                                                               Deposit accounts, specialized state financial institutions (per 1,000 adults)
## 6576                                                                                                                                                                                                                                                Point-of-sale terminals (per 100,000 adults)
## 6577                                                                                                                                                                                                                                        General administration function expenditure (in IDR)
## 6578                                                                                                                                                                                                                                                   Agriculture function expenditure (in IDR)
## 6579                                                                                                                                                                                                                                                       Economy function expenditure (in IDR)
## 6580                                                                                                                                                                                                                                                     Education function expenditure (in IDR)
## 6581                                                                                                                                                                                                                                                   Environment function expenditure (in IDR)
## 6582                                                                                                                                                                                                                                                        Health function expenditure (in IDR)
## 6583                                                                                                                                                                                                                                 Housing and public facilities function expenditure (in IDR)
## 6584                                                                                                                                                                                                                                                Infrastructure function expenditure (in IDR)
## 6585                                                                                                                                                                                                                                             Social protection function expenditure (in IDR)
## 6586                                                                                                                                                                                                                                         Public, law and order function expenditure (in IDR)
## 6587                                                                                                                                                                                                                                                     Religious function expenditure (in IDR)
## 6588                                                                                                                                                                                                                                           Tourism and culture function expenditure (in IDR)
## 6589                                                                                                                                                                                                                                       Domestic credit to private sector by banks (% of GDP)
## 6590                                                                                                                                                                                                                                               Bank liquid reserves to bank assets ratio (%)
## 6591                                                                                                                                                                                                                                       Gold Holdings at London market price (US$ end period)
## 6592                                                                                                                                                                                                                                        Gold, valued at year-end London prices (current US$)
## 6593                                                                                                                                                                                                                                                 Total reserves (includes gold, current US$)
## 6594                                                                                                                                                                                                                     Total reserves including gold valued at London gold price (current US$)
## 6595                                                                                                                                                                                                                                                     Total reserves includes gold (% of GDP)
## 6596                                                                                                                                                                                                                                                   Total reserves (% of total external debt)
## 6597                                                                                                                                                                                                                                                         Total reserves in months of imports
## 6598                                                                                                                                                                                                                                   Total reserves in months of imports of goods and services
## 6599                                                                                                                                                                                                                                                     Total reserves minus gold (current US$)
## 6600                                                                                                                                                                                                                                                   Financial institution account (% age 15+)
## 6601                                                                                                                                                                                                                                               Financial institution account,male(% age 15+)
## 6602                                                                                                                                                                                                                                    Financial institution account, in labor force(% age 15+)
## 6603                                                                                                                                                                                                                               Financial institution account, out of labor force (% age 15+)
## 6604                                                                                                                                                                                                                                             Financial institution account,female(% age 15+)
## 6605                                                                                                                                                                                                                                     Financial institution account,young adults(% age 15-24)
## 6606                                                                                                                                                                                                                                      Financial institution account, older adults(% age 25+)
## 6607                                                                                                                                                                                                                         Financial institution account, primary education or less(% age 15+)
## 6608                                                                                                                                                                                                                        Financial institution account, seconday education or more(% age 15+)
## 6609                                                                                                                                                                                                                                Financial institution account,income,poorest 40% (% age 15+)
## 6610                                                                                                                                                                                                                                Financial institution account,income,richest 60% (% age 15+)
## 6611                                                                                                                                                                                                                                             Financial institution account, rural(% age 15+)
## 6612                                                                                                                                                                                                               Withdrawal in the past year (% with a financial institution account, age 15+)
## 6613                                                                                                                                                                                                                      No account because financial institutions are too far away (% age 15+)
## 6614                                                                                                                                                                             No account because financial institutions are too far away (% without a financial institution account, age 15+)
## 6615                                                                                                                                                                                                                         No account because financial services are too expensive (% age 15+)
## 6616                                                                                                                                                                                No account because financial services are too expensive (% without a financial institution account, age 15+)
## 6617                                                                                                                                                                                                                           No account because of lack of necessary documentation (% age 15+)
## 6618                                                                                                                                                                                  No account because of lack of necessary documentation (% without a financial institution account, age 15+)
## 6619                                                                                                                                                                                                                   No account because of lack of trust in financial institutions (% age 15+)
## 6620                                                                                                                                                                          No account because of lack of trust in financial institutions (% without a financial institution account, age 15+)
## 6621                                                                                                                                                                                                                                         No account because of religious reasons (% age 15+)
## 6622                                                                                                                                                                                                No account because of religious reasons (% without a financial institution account, age 15+)
## 6623                                                                                                                                                                                                                                        No account because of insufficient funds (% age 15+)
## 6624                                                                                                                                                                                               No account because of insufficient funds (% without a financial institution account, age 15+)
## 6625                                                                                                                                                                                                                         No account because someone in the family has an account (% age 15+)
## 6626                                                                                                                                                                                No account because someone in the family has an account (% without a financial institution account, age 15+)
## 6627                                                                                                                                                                                                                       No account because of no need for financial services ONLY (% age 15+)
## 6628                                                                                                                                                                              No account because of no need for financial services ONLY (% without a financial institution account, age 15+)
## 6629                                                                                                                                                                                                         SMEs with at least one female owner with a proportion of loans requiring collateral
## 6630                                                                                                                                                                                                                                        SMEs with a proportion of loans requiring collateral
## 6631                                                                                                                                                                                                              Main mode of withdrawal: ATM (% with a financial institution account, age 15+)
## 6632                                                                                                                                                                                                      Main mode of withdrawal: bank teller (% with a financial institution account, age 15+)
## 6633                                                                                                                                                                                                                                 Used the internet to pay bills in the past year (% age 15+)
## 6634                                                                                                                                                                                                                           Used the internet to pay bills in the past year, male (% age 15+)
## 6635                                                                                                                                                                                                                Used the internet to pay bills in the past year, in labor force  (% age 15+)
## 6636                                                                                                                                                                                                             Used the internet to pay bills in the past year, out of labor force (% age 15+)
## 6637                                                                                                                                                                                                                         Used the internet to pay bills in the past year , female(% age 15+)
## 6638                                                                                                                                                                                                                Used the internet to pay bills in the past year , young adults (% age 15-24)
## 6639                                                                                                                                                                                                                  Used the internet to pay bills in the past year , older adults (% age 25+)
## 6640                                                                                                                                                                                                      Used the internet to pay bills in the past year, primary education or less (% age 15+)
## 6641                                                                                                                                                                                                   Used the internet to pay bills in the past year , secondary education or more (% age 15+)
## 6642                                                                                                                                                                                                             Used the internet to pay bills in the past year, income, poorest 40%(% age 15+)
## 6643                                                                                                                                                                                                            Used the internet to pay bills in the past year , income, richest 60%(% age 15+)
## 6644                                                                                                                                                                                                                         Used the internet to pay bills in the past year , rural (% age 15+)
## 6645                                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year (% age 15+)
## 6646                                                                                                                                                                                                Used the internet to pay bills or to buy something online in the past year, male (% age 15+)
## 6647                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year, in labor force (% age 15+)
## 6648                                                                                                                                                                                  Used the internet to pay bills or to buy something online in the past year, out of labor force (% age 15+)
## 6649                                                                                                                                                                                              Used the internet to pay bills or to buy something online in the past year, female (% age 15+)
## 6650                                                                                                                                                                                      Used the internet to pay bills or to buy something online in the past year, young adults (% age 15-24)
## 6651                                                                                                                                                                                        Used the internet to pay bills or to buy something online in the past year, older adults (% age 25+)
## 6652                                                                                                                                                                           Used the internet to pay bills or to buy something online in the past year, primary education or less (% age 15+)
## 6653                                                                                                                                                                         Used the internet to pay bills or to buy something online in the past year, secondary education or less (% age 15+)
## 6654                                                                                                                                                                                 Used the internet to pay bills or to buy something online in the past year, income, poorest 40% (% age 15+)
## 6655                                                                                                                                                                                 Used the internet to pay bills or to buy something online in the past year, income, richest 60% (% age 15+)
## 6656                                                                                                                                                                                               Used the internet to pay bills or to buy something online in the past year, rural (% age 15+)
## 6657                                                                                                                                                                                                                       Used the internet to buy something online in the past year(% age 15+)
## 6658                                                                                                                                                                                                                 Used the internet to buy something online in the past year, male(% age 15+)
## 6659                                                                                                                                                                                                      Used the internet to buy something online in the past year, in labor force (% age 15+)
## 6660                                                                                                                                                                                                  Used the internet to buy something online in the past year, out of labor force (% age 15+)
## 6661                                                                                                                                                                                                               Used the internet to buy something online in the past year, female(% age 15+)
## 6662                                                                                                                                                                                                      Used the internet to buy something online in the past year, young adults (% age 15-24)
## 6663                                                                                                                                                                                                        Used the internet to buy something online in the past year, older adults (% age 25+)
## 6664                                                                                                                                                                                           Used the internet to buy something online in the past year, primary education or less (% age 15+)
## 6665                                                                                                                                                                                         Used the internet to buy something online in the past year, secondary education or more (% age 15+)
## 6666                                                                                                                                                                                                 Used the internet to buy something online in the past year, income, poorest 40% (% age 15+)
## 6667                                                                                                                                                                                                 Used the internet to buy something online in the past year, income, richest 60% (% age 15+)
## 6668                                                                                                                                                                                                               Used the internet to buy something online in the past year, rural (% age 15+)
## 6669                                                                                                                                                                                                                          Paid online for internet purchase (% internet purchasers, age 15+)
## 6670                                                                                                                                                                                                                Paid cash on delivery for internet purchase (% internet purchasers, age 15+)
## 6671                                                                                                                                                                                                              SMEs with at least one female owner with an outstanding loan or line of credit
## 6672                                                                                                                                                                                                                                             SMEs with an outstanding loan or line of credit
## 6673                                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business (% age 15+)
## 6674                                                                                                                                                                                                                     Saved to start, operate, or expand a farm or business, male (% age 15+)
## 6675                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business, in labor force (% age 15+)
## 6676                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, out of labor force  (% age 15+)
## 6677                                                                                                                                                                                                                   Saved to start, operate, or expand a farm or business, female (% age 15+)
## 6678                                                                                                                                                                                                           Saved to start, operate, or expand a farm or business, young adults (% age 15-24)
## 6679                                                                                                                                                                                                             Saved to start, operate, or expand a farm or business, older adults (% age 25+)
## 6680                                                                                                                                                                                                Saved to start, operate, or expand a farm or business, primary education or less (% age 15+)
## 6681                                                                                                                                                                                               Saved to start, operate, or expand a farm or business, secondary education or less(% age 15+)
## 6682                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, income, poorest 40% (% age 15+)
## 6683                                                                                                                                                                                                      Saved to start, operate, or expand a farm or business, income, richest 60% (% age 15+)
## 6684                                                                                                                                                                                                                    Saved to start, operate, or expand a farm or business, rural (% age 15+)
## 6685                                                                                                                                                                                                       SMEs with at least one female owner with an account at a formal financial institution
## 6686                                                                                                                                                                                                                                      SMEs with an account at a formal financial institution
## 6687                                                                                                                                                                                                                                                               Saved for old age (% age 15+)
## 6688                                                                                                                                                                                                                                                         Saved for old age, male (% age 15+)
## 6689                                                                                                                                                                                                                                               Saved for old age, in labor force (% age 15+)
## 6690                                                                                                                                                                                                                                           Saved for old age, out of labor force (% age 15+)
## 6691                                                                                                                                                                                                                                                       Saved for old age, female (% age 15+)
## 6692                                                                                                                                                                                                                                              Saved for old age, young adults  (% age 15-24)
## 6693                                                                                                                                                                                                                                                  Saved for old age,older adults (% age 25+)
## 6694                                                                                                                                                                                                                                    Saved for old age, primary education or less (% age 15+)
## 6695                                                                                                                                                                                                                                  Saved for old age, secondary education or more (% age 15+)
## 6696                                                                                                                                                                                                                                          Saved for old age, income, poorest 40% (% age 15+)
## 6697                                                                                                                                                                                                                                          Saved for old age, income, richest 60% (% age 15+)
## 6698                                                                                                                                                                                                                                                        Saved for old age, rural (% age 15+)
## 6699                                                                                                                                                                                                                                                               Saved for old age (% age 15+)
## 6700                                                                                                                                                                                                                                                       Saved for old age, female (% age 15+)
## 6701                                                                                                                                                                                                                                                         Saved for old age, male (% age 15+)
## 6702                                                                                                                                                                                                                                          Saved for old age, income, poorest 40% (% age 15+)
## 6703                                                                                                                                                                                                                                          Saved for old age, income, richest 60% (% age 15+)
## 6704                                                                                                                                                                                                                                                            Saved for old age (% ages 15-34)
## 6705                                                                                                                                                                                                                                                            Saved for old age (% ages 35-59)
## 6706                                                                                                                                                                                                                                                               Saved for old age (% age 60+)
## 6707                                                                                                                                                                                                                                                Saved at a financial institution (% age 15+)
## 6708                                                                                                                                                                                                                                          Saved at a financial institution, male (% age 15+)
## 6709                                                                                                                                                                                                                                Saved at a financial institution, in labor force (% age 15+)
## 6710                                                                                                                                                                                                                           Saved at a financial institution , out of labor force (% age 15+)
## 6711                                                                                                                                                                                                                                        Saved at a financial institution, female (% age 15+)
## 6712                                                                                                                                                                                                                                Saved at a financial institution, young adults (% age 15-24)
## 6713                                                                                                                                                                                                                                  Saved at a financial institution, older adults (% age 25+)
## 6714                                                                                                                                                                                                                      Saved at a financial institution, primary education or less(% age 15+)
## 6715                                                                                                                                                                                                                   Saved at a financial institution, secondary education or more (% age 15+)
## 6716                                                                                                                                                                                                                           Saved at a financial institution, income, poorest 40% (% age 15+)
## 6717                                                                                                                                                                                                                          Saved at a financial institution, income, richest 60%  (% age 15+)
## 6718                                                                                                                                                                                                                                        Saved at a financial institution, rural  (% age 15+)
## 6719                                                                                                                                                                                                                                                Saved at a financial institution (% age 15+)
## 6720                                                                                                                                                                                                                                       Saved at a financial institution, female  (% age 15+)
## 6721                                                                                                                                                                                                                                          Saved at a financial institution, male (% age 15+)
## 6722                                                                                                                                                                                                                           Saved at a financial institution, income, poorest 40% (% age 15+)
## 6723                                                                                                                                                                                                                           Saved at a financial institution, income, richest 60% (% age 15+)
## 6724                                                                                                                                                                                                                                             Saved at a financial institution (% ages 15-34)
## 6725                                                                                                                                                                                                                                             Saved at a financial institution (% ages 35-59)
## 6726                                                                                                                                                                                                                                                Saved at a financial institution (% age 60+)
## 6727                                                                                                                                                                                                                       Saved using a savings club or a person outside the family (% age 15+)
## 6728                                                                                                                                                                                                                 Saved using a savings club or a person outside the family, male (% age 15+)
## 6729                                                                                                                                                                                                       Saved using a savings club or a person outside the family , in labor force(% age 15+)
## 6730                                                                                                                                                                                                   Saved using a savings club or a person outside the family, out of labor force (% age 15+)
## 6731                                                                                                                                                                                                               Saved using a savings club or a person outside the family, female (% age 15+)
## 6732                                                                                                                                                                                                       Saved using a savings club or a person outside the family, young adults (% age 15-24)
## 6733                                                                                                                                                                                                         Saved using a savings club or a person outside the family, older adults (% age 25+)
## 6734                                                                                                                                                                                            Saved using a savings club or a person outside the family, primary education or less (% age 15+)
## 6735                                                                                                                                                                                          Saved using a savings club or a person outside the family, secondary education or more (% age 15+)
## 6736                                                                                                                                                                                                   Saved using a savings club or a person outside the family, income, poorest 40%(% age 15+)
## 6737                                                                                                                                                                                                  Saved using a savings club or a person outside the family, income, richest 60% (% age 15+)
## 6738                                                                                                                                                                                                                Saved using a savings club or a person outside the family, rural (% age 15+)
## 6739                                                                                                                                                                                                                                              Saved for education or school fees (% age 15+)
## 6740                                                                                                                                                                                                                                        Saved for education or school fees, male (% age 15+)
## 6741                                                                                                                                                                                                                              Saved for education or school fees, in labor force (% age 15+)
## 6742                                                                                                                                                                                                                          Saved for education or school fees, out of labor force (% age 15+)
## 6743                                                                                                                                                                                                                                     Saved for education or school fees, female  (% age 15+)
## 6744                                                                                                                                                                                                                             Saved for education or school fees , young adults (% age 15-24)
## 6745                                                                                                                                                                                                                               Saved for education or school fees , older adults (% age 25+)
## 6746                                                                                                                                                                                                                   Saved for education or school fees, primary education or less (% age 15+)
## 6747                                                                                                                                                                                                                 Saved for education or school fees, secondary education or more (% age 15+)
## 6748                                                                                                                                                                                                                          Saved for education or school fees, income, poorest 40%(% age 15+)
## 6749                                                                                                                                                                                                                         Saved for education or school fees, income, richest 60% (% age 15+)
## 6750                                                                                                                                                                                                                                      Saved for education or school fees, rural  (% age 15+)
## 6751                                                                                                                                                                                                                                                Saved any money in the past year (% age 15+)
## 6752                                                                                                                                                                                                                                         Saved any money in the past year, male  (% age 15+)
## 6753                                                                                                                                                                                                                               Saved any money in the past year, in labor force  (% age 15+)
## 6754                                                                                                                                                                                                                            Saved any money in the past year, out of labor force (% age 15+)
## 6755                                                                                                                                                                                                                                       Saved any money in the past year, female  (% age 15+)
## 6756                                                                                                                                                                                                                               Saved any money in the past year, young adults  (% age 15-24)
## 6757                                                                                                                                                                                                                                 Saved any money in the past year, older adults  (% age 25+)
## 6758                                                                                                                                                                                                                     Saved any money in the past year, primary education or less (% age 15+)
## 6759                                                                                                                                                                                                                   Saved any money in the past year, secondary education or more (% age 15+)
## 6760                                                                                                                                                                                                                            Saved any money in the past year, income, poorest 40%(% age 15+)
## 6761                                                                                                                                                                                                                           Saved any money in the past year, income, richest 60% (% age 15+)
## 6762                                                                                                                                                                                                                                        Saved any money in the past year, rural  (% age 15+)
## 6763                                                                                                                                                                                                                                                        Outstanding housing loan (% age 15+)
## 6764                                                                                                                                                                                                                                                 Outstanding housing loan, male  (% age 15+)
## 6765                                                                                                                                                                                                                                        Outstanding housing loan, in labor force (% age 15+)
## 6766                                                                                                                                                                                                                                    Outstanding housing loan, out of labor force (% age 15+)
## 6767                                                                                                                                                                                                                                                Outstanding housing loan, female (% age 15+)
## 6768                                                                                                                                                                                                                                        Outstanding housing loan, young adults (% age 15-24)
## 6769                                                                                                                                                                                                                                          Outstanding housing loan, older adults (% age 25+)
## 6770                                                                                                                                                                                                                             Outstanding housing loan, primary education or less (% age 15+)
## 6771                                                                                                                                                                                                                            Outstanding housing loan, secondary education or more(% age 15+)
## 6772                                                                                                                                                                                                                                   Outstanding housing loan, income, poorest 40% (% age 15+)
## 6773                                                                                                                                                                                                                                   Outstanding housing loan, income, richest 60% (% age 15+)
## 6774                                                                                                                                                                                                                                                Outstanding housing loan, rural  (% age 15+)
## 6775                                                                                                                                                                                                                                                            Debit card ownership (% age 15+)
## 6776                                                                                                                                                                                                                                                     Debit card ownership, male  (% age 15+)
## 6777                                                                                                                                                                                                                                            Debit card ownership, in labor force (% age 15+)
## 6778                                                                                                                                                                                                                                        Debit card ownership, out of labor force (% age 15+)
## 6779                                                                                                                                                                                                                                                    Debit card ownership, female (% age 15+)
## 6780                                                                                                                                                                                                                                            Debit card ownership, young adults (% age 15-24)
## 6781                                                                                                                                                                                                                                              Debit card ownership, older adults (% age 25+)
## 6782                                                                                                                                                                                                                                 Debit card ownership, primary education or less (% age 15+)
## 6783                                                                                                                                                                                                                               Debit card ownership, secondary education or more (% age 15+)
## 6784                                                                                                                                                                                                                                       Debit card ownership, income, poorest 40% (% age 15+)
## 6785                                                                                                                                                                                                                                       Debit card ownership, income, richest 60% (% age 15+)
## 6786                                                                                                                                                                                                                                                     Debit card ownership, rural (% age 15+)
## 6787                                                                                                                                                                                                                                         Borrowed for health or medical purposes (% age 15+)
## 6788                                                                                                                                                                                                                                  Borrowed for health or medical purposes, male  (% age 15+)
## 6789                                                                                                                                                                                                                       Borrowed for health or medical purposes , in labor force  (% age 15+)
## 6790                                                                                                                                                                                                                     Borrowed for health or medical purposes, out of labor force (% age 15+)
## 6791                                                                                                                                                                                                                                Borrowed for health or medical purposes, female  (% age 15+)
## 6792                                                                                                                                                                                                                         Borrowed for health or medical purposes, young adults (% age 15-24)
## 6793                                                                                                                                                                                                                           Borrowed for health or medical purposes, older adults (% age 25+)
## 6794                                                                                                                                                                                                              Borrowed for health or medical purposes, primary education or less (% age 15+)
## 6795                                                                                                                                                                                                           Borrowed for health or medical purposes, secondary education or more  (% age 15+)
## 6796                                                                                                                                                                                                                    Borrowed for health or medical purposes, income, poorest 40% (% age 15+)
## 6797                                                                                                                                                                                                                   Borrowed for health or medical purposes, income, richest 60%  (% age 15+)
## 6798                                                                                                                                                                                                                                 Borrowed for health or medical purposes, rural  (% age 15+)
## 6799                                                                                                                                                                                                                        Borrowed to start, operate, or expand a farm or business (% age 15+)
## 6800                                                                                                                                                                                                                  Borrowed to start, operate, or expand a farm or business, male (% age 15+)
## 6801                                                                                                                                                                                                       Borrowed to start, operate, or expand a farm or business, in labor force  (% age 15+)
## 6802                                                                                                                                                                                                    Borrowed to start, operate, or expand a farm or business, out of labor force (% age 15+)
## 6803                                                                                                                                                                                                                Borrowed to start, operate, or expand a farm or business, female (% age 15+)
## 6804                                                                                                                                                                                                       Borrowed to start, operate, or expand a farm or business, young adults  (% age 15-24)
## 6805                                                                                                                                                                                                          Borrowed to start, operate, or expand a farm or business, older adults (% age 25+)
## 6806                                                                                                                                                                                              Borrowed to start, operate, or expand a farm or busines, primary education or less (% age 15+)
## 6807                                                                                                                                                                                           Borrowed to start, operate, or expand a farm or business, secondary education or more (% age 15+)
## 6808                                                                                                                                                                                                  Borrowed to start, operate, or expand a farm or business, income, poorest 40%  (% age 15+)
## 6809                                                                                                                                                                                                   Borrowed to start, operate, or expand a farm or business, income, richest 60% (% age 15+)
## 6810                                                                                                                                                                                                                 Borrowed to start, operate, or expand a farm or business, rural (% age 15+)
## 6811                                                                                                                                                                                                                                       Borrowed from a store by buying on credit (% age 15+)
## 6812                                                                                                                                                                                                                                 Borrowed from a store by buying on credit, male (% age 15+)
## 6813                                                                                                                                                                                                                       Borrowed from a store by buying on credit, in labor force (% age 15+)
## 6814                                                                                                                                                                                                                   Borrowed from a store by buying on credit, out of labor force (% age 15+)
## 6815                                                                                                                                                                                                                               Borrowed from a store by buying on credit, female (% age 15+)
## 6816                                                                                                                                                                                                                       Borrowed from a store by buying on credit, young adults (% age 15-24)
## 6817                                                                                                                                                                                                                         Borrowed from a store by buying on credit, older adults (% age 25+)
## 6818                                                                                                                                                                                                            Borrowed from a store by buying on credit, primary education or less (% age 15+)
## 6819                                                                                                                                                                                                          Borrowed from a store by buying on credit, secondary education or more (% age 15+)
## 6820                                                                                                                                                                                                                 Borrowed from a store by buying on credit, income, poorest 40%  (% age 15+)
## 6821                                                                                                                                                                                                                  Borrowed from a store by buying on credit, income, richest 60% (% age 15+)
## 6822                                                                                                                                                                                                                               Borrowed from a store by buying on credit, rural  (% age 15+)
## 6823                                                                                                                                                                                                                                           Borrowed for education or school fees (% age 15+)
## 6824                                                                                                                                                                                                                                    Borrowed for education or school fees, male  (% age 15+)
## 6825                                                                                                                                                                                                                          Borrowed for education or school fees, in labor force  (% age 15+)
## 6826                                                                                                                                                                                                                      Borrowed for education or school fees , out of labor force (% age 15+)
## 6827                                                                                                                                                                                                                                  Borrowed for education or school fees, female  (% age 15+)
## 6828                                                                                                                                                                                                                          Borrowed for education or school fees, young adults  (% age 15-24)
## 6829                                                                                                                                                                                                                            Borrowed for education or school fees, older adults  (% age 25+)
## 6830                                                                                                                                                                                                                Borrowed for education or school fees, primary education or less (% age 15+)
## 6831                                                                                                                                                                                                              Borrowed for education or school fees, secondary education or more (% age 15+)
## 6832                                                                                                                                                                                                                      Borrowed for education or school fees, income, poorest 40 %(% age 15+)
## 6833                                                                                                                                                                                                                      Borrowed for education or school fees, income, richest 60% (% age 15+)
## 6834                                                                                                                                                                                                                                   Borrowed for education or school fees, rural  (% age 15+)
## 6835                                                                                                                                                                                                                                           Borrowed from a financial institution (% age 15+)
## 6836                                                                                                                                                                                                                                     Borrowed from a financial institution, male (% age 15+)
## 6837                                                                                                                                                                                                                           Borrowed from a financial institution, in labor force (% age 15+)
## 6838                                                                                                                                                                                                                       Borrowed from a financial institution, out of labor force (% age 15+)
## 6839                                                                                                                                                                                                                                   Borrowed from a financial institution, female (% age 15+)
## 6840                                                                                                                                                                                                                          Borrowed from a financial institution, young adults  (% age 15-24)
## 6841                                                                                                                                                                                                                            Borrowed from a financial institution, older adults  (% age 25+)
## 6842                                                                                                                                                                                                                Borrowed from a financial institution, primary education or less (% age 15+)
## 6843                                                                                                                                                                                                              Borrowed from a financial institution, secondary education or more (% age 15+)
## 6844                                                                                                                                                                                                                      Borrowed from a financial institution, income, poorest 40% (% age 15+)
## 6845                                                                                                                                                                                                                      Borrowed from a financial institution, income, richest 60% (% age 15+)
## 6846                                                                                                                                                                                                                                    Borrowed from a financial institution, rural (% age 15+)
## 6847                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 15+)
## 6848                                                                                                                                                                                                               Borrowed from a financial institution or used a credit card, male (% age 15+)
## 6849                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card, in labor force (% age 15+)
## 6850                                                                                                                                                                                                 Borrowed from a financial institution or used a credit card, out of labor force (% age 15+)
## 6851                                                                                                                                                                                                             Borrowed from a financial institution or used a credit card, female (% age 15+)
## 6852                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card, young adults (% age 15-24)
## 6853                                                                                                                                                                                                       Borrowed from a financial institution or used a credit card, older adults (% age 25+)
## 6854                                                                                                                                                                                          Borrowed from a financial institution or used a credit card, primary education or less (% age 15+)
## 6855                                                                                                                                                                                        Borrowed from a financial institution or used a credit card, secondary education or more (% age 15+)
## 6856                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, poorest 40% (% age 15+)
## 6857                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, richest 60% (% age 15+)
## 6858                                                                                                                                                                                                              Borrowed from a financial institution or used a credit card, rural (% age 15+)
## 6859                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 15+)
## 6860                                                                                                                                                                                                             Borrowed from a financial institution or used a credit card, female (% age 15+)
## 6861                                                                                                                                                                                                               Borrowed from a financial institution or used a credit card, male (% age 15+)
## 6862                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, poorest 40% (% age 15+)
## 6863                                                                                                                                                                                                Borrowed from a financial institution or used a credit card, income, richest 60% (% age 15+)
## 6864                                                                                                                                                                                                                  Borrowed from a financial institution or used a credit card (% ages 15-34)
## 6865                                                                                                                                                                                                                  Borrowed from a financial institution or used a credit card (% ages 35-59)
## 6866                                                                                                                                                                                                                     Borrowed from a financial institution or used a credit card (% age 60+)
## 6867                                                                                                                                                                                                                                                 Borrowed from family or friends (% age 15+)
## 6868                                                                                                                                                                                                                                          Borrowed from family or friends, male  (% age 15+)
## 6869                                                                                                                                                                                                                                Borrowed from family or friends, in labor force  (% age 15+)
## 6870                                                                                                                                                                                                                             Borrowed from family or friends, out of labor force (% age 15+)
## 6871                                                                                                                                                                                                                                         Borrowed from family or friends, female (% age 15+)
## 6872                                                                                                                                                                                                                                 Borrowed from family or friends, young adults (% age 15-24)
## 6873                                                                                                                                                                                                                                  Borrowed from family or friends, older adults  (% age 25+)
## 6874                                                                                                                                                                                                                      Borrowed from family or friends, primary education or less (% age 15+)
## 6875                                                                                                                                                                                                                    Borrowed from family or friends, secondary education or more (% age 15+)
## 6876                                                                                                                                                                                                                           Borrowed from family or friends, income, poorest 40%  (% age 15+)
## 6877                                                                                                                                                                                                                           Borrowed from family or friends, income, richest 60%  (% age 15+)
## 6878                                                                                                                                                                                                                                          Borrowed from family or friends, rural (% age 15+)
## 6879                                                                                                                                                                                                                                                    Borrowed from a savings club (% age 15+)
## 6880                                                                                                                                                                                                                                             Borrowed from a savings club, male  (% age 15+)
## 6881                                                                                                                                                                                                                                    Borrowed from a savings club, in labor force (% age 15+)
## 6882                                                                                                                                                                                                                                Borrowed from a savings club, out of labor force (% age 15+)
## 6883                                                                                                                                                                                                                                            Borrowed from a savings club, female (% age 15+)
## 6884                                                                                                                                                                                                                                    Borrowed from a savings club, young adults (% age 15-24)
## 6885                                                                                                                                                                                                                                     Borrowed from a savings club, older adults  (% age 25+)
## 6886                                                                                                                                                                                                                         Borrowed from a savings club, primary education or less (% age 15+)
## 6887                                                                                                                                                                                                                       Borrowed from a savings club, secondary education or more (% age 15+)
## 6888                                                                                                                                                                                                                               Borrowed from a savings club, income, poorest 40% (% age 15+)
## 6889                                                                                                                                                                                                                               Borrowed from a savings club, income, richest 60% (% age 15+)
## 6890                                                                                                                                                                                                                                            Borrowed from a savings club, rural  (% age 15+)
## 6891                                                                                                                                                                                                                                             Borrowed any money in the past year (% age 15+)
## 6892                                                                                                                                                                                                                                      Borrowed any money in the past year, male  (% age 15+)
## 6893                                                                                                                                                                                                                            Borrowed any money in the past year, in labor force  (% age 15+)
## 6894                                                                                                                                                                                                                        Borrowed any money in the past year, out of labor force  (% age 15+)
## 6895                                                                                                                                                                                                                                     Borrowed any money in the past year, female (% age 15+)
## 6896                                                                                                                                                                                                                            Borrowed any money in the past year, young adults  (% age 15-24)
## 6897                                                                                                                                                                                                                              Borrowed any money in the past year, older adults  (% age 25+)
## 6898                                                                                                                                                                                                                  Borrowed any money in the past year, primary education or less (% age 15+)
## 6899                                                                                                                                                                                                                Borrowed any money in the past year, secondary education or more (% age 15+)
## 6900                                                                                                                                                                                                                        Borrowed any money in the past year, income, poorest 40% (% age 15+)
## 6901                                                                                                                                                                                                                        Borrowed any money in the past year, income, richest 60% (% age 15+)
## 6902                                                                                                                                                                                                                                     Borrowed any money in the past year, rural  (% age 15+)
## 6903                                                                                                                                                                                                                                        Coming up with emergency funds: possible (% age 15+)
## 6904                                                                                                                                                                                                                                  Coming up with emergency funds: possible, male (% age 15+)
## 6905                                                                                                                                                                                                                        Coming up with emergency funds: possible, in labor force (% age 15+)
## 6906                                                                                                                                                                                                                     Coming up with emergency funds: possible, out of labor force(% age 15+)
## 6907                                                                                                                                                                                                                                Coming up with emergency funds: possible, female (% age 15+)
## 6908                                                                                                                                                                                                                        Coming up with emergency funds: possible, young adults (% age 15-24)
## 6909                                                                                                                                                                                                                          Coming up with emergency funds: possible, older adults (% age 25+)
## 6910                                                                                                                                                                                                             Coming up with emergency funds: possible, primary education or less (% age 15+)
## 6911                                                                                                                                                                                                           Coming up with emergency funds: possible, secondary education or more (% age 15+)
## 6912                                                                                                                                                                                                                   Coming up with emergency funds: possible, income, poorest 40% (% age 15+)
## 6913                                                                                                                                                                                                                   Coming up with emergency funds: possible, income, richest 60% (% age 15+)
## 6914                                                                                                                                                                                                                                 Coming up with emergency funds: possible, rural (% age 15+)
## 6915                                                                                                                                                                                                                                    Coming up with emergency funds: not possible (% age 15+)
## 6916                                                                                                                                                                                                                              Coming up with emergency funds: not possible, male (% age 15+)
## 6917                                                                                                                                                                                                                    Coming up with emergency funds: not possible, in labor force (% age 15+)
## 6918                                                                                                                                                                                                                Coming up with emergency funds: not possible, out of labor force (% age 15+)
## 6919                                                                                                                                                                                                                           Coming up with emergency funds: not possible, female  (% age 15+)
## 6920                                                                                                                                                                                                                    Coming up with emergency funds: not possible, young adults (% age 15-24)
## 6921                                                                                                                                                                                                                      Coming up with emergency funds: not possible, older adults (% age 25+)
## 6922                                                                                                                                                                                                         Coming up with emergency funds: not possible, primary education or less (% age 15+)
## 6923                                                                                                                                                                                                       Coming up with emergency funds: not possible, secondary education or more (% age 15+)
## 6924                                                                                                                                                                                                               Coming up with emergency funds: not possible, income, poorest 40% (% age 15+)
## 6925                                                                                                                                                                                                               Coming up with emergency funds: not possible, income, richest 60% (% age 15+)
## 6926                                                                                                                                                                                                                             Coming up with emergency funds: not possible, rural (% age 15+)
## 6927                                                                                                                                                                                                                    Main source of emergency funds: savings (% able to raise funds, age 15+)
## 6928                                                                                                                                                                                                             Main source of emergency funds: savings, male  (% able to raise funds, age 15+)
## 6929                                                                                                                                                                                                    Main source of emergency funds: savings, in labor force (% able to raise funds, age 15+)
## 6930                                                                                                                                                                                                Main source of emergency funds: savings, out of labor force (% able to raise funds, age 15+)
## 6931                                                                                                                                                                                                            Main source of emergency funds: savings, female (% able to raise funds, age 15+)
## 6932                                                                                                                                                                                                    Main source of emergency funds: savings, young adults (% able to raise funds, age 15-24)
## 6933                                                                                                                                                                                                      Main source of emergency funds: savings, older adults (% able to raise funds, age 25+)
## 6934                                                                                                                                                                                         Main source of emergency funds: savings, primary education or less (% able to raise funds, age 15+)
## 6935                                                                                                                                                                                       Main source of emergency funds: savings, secondary education or more (% able to raise funds, age 15+)
## 6936                                                                                                                                                                                               Main source of emergency funds: savings, income, poorest 40% (% able to raise funds, age 15+)
## 6937                                                                                                                                                                                               Main source of emergency funds: savings, income, richest 60% (% able to raise funds, age 15+)
## 6938                                                                                                                                                                                                             Main source of emergency funds: savings, rural (% able to raise funds, age 15+)
## 6939                                                                                                                                                                                                                                         Main source of emergency funds: savings (% age 15+)
## 6940                                                                                                                                                                                                                                Main source of emergency funds: savings, female  (% age 15+)
## 6941                                                                                                                                                                                                                                   Main source of emergency funds: savings, male (% age 15+)
## 6942                                                                                                                                                                                                                    Main source of emergency funds: savings, income, poorest 40% (% age 15+)
## 6943                                                                                                                                                                                                                    Main source of emergency funds: savings, income, richest 60% (% age 15+)
## 6944                                                                                                                                                                                                                                     Main source of emergency funds: savings, (% ages 15-34)
## 6945                                                                                                                                                                                                                                      Main source of emergency funds: savings (% ages 35-59)
## 6946                                                                                                                                                                                                                                         Main source of emergency funds: savings (% age 60+)
## 6947                                                                                                                                                                                                          Main source of emergency funds: family or friends (% able to raise funds, age 15+)
## 6948                                                                                                                                                                                                   Main source of emergency funds: family or friends, male  (% able to raise funds, age 15+)
## 6949                                                                                                                                                                                          Main source of emergency funds: family or friends, in labor force (% able to raise funds, age 15+)
## 6950                                                                                                                                                                                      Main source of emergency funds: family or friends, out of labor force (% able to raise funds, age 15+)
## 6951                                                                                                                                                                                                 Main source of emergency funds: family or friends, female  (% able to raise funds, age 15+)
## 6952                                                                                                                                                                                         Main source of emergency funds: family or friends, young adults  (% able to raise funds, age 15-24)
## 6953                                                                                                                                                                                           Main source of emergency funds: family or friends, older adults  (% able to raise funds, age 25+)
## 6954                                                                                                                                                                               Main source of emergency funds: family or friends, primary education or less (% able to raise funds, age 15+)
## 6955                                                                                                                                                                             Main source of emergency funds: family or friends, secondary education or more (% able to raise funds, age 15+)
## 6956                                                                                                                                                                                      Main source of emergency funds: family or friends, income, poorest 40%(% able to raise funds, age 15+)
## 6957                                                                                                                                                                                     Main source of emergency funds: family or friends, income, richest 60% (% able to raise funds, age 15+)
## 6958                                                                                                                                                                                                   Main source of emergency funds: family or friends, rural (% able to raise funds, age 15+)
## 6959                                                                                                                                                                                                         Main source of emergency funds: money from working (% able to raise funds, age 15+)
## 6960                                                                                                                                                                                                  Main source of emergency funds: money from working, male  (% able to raise funds, age 15+)
## 6961                                                                                                                                                                                         Main source of emergency funds: money from working, in labor force (% able to raise funds, age 15+)
## 6962                                                                                                                                                                                     Main source of emergency funds: money from working, out of labor force (% able to raise funds, age 15+)
## 6963                                                                                                                                                                                                 Main source of emergency funds: money from working, female (% able to raise funds, age 15+)
## 6964                                                                                                                                                                                         Main source of emergency funds: money from working, young adults (% able to raise funds, age 15-24)
## 6965                                                                                                                                                                                           Main source of emergency funds: money from working, older adults (% able to raise funds, age 25+)
## 6966                                                                                                                                                                             Main source of emergency funds: money from working, primary education or less  (% able to raise funds, age 15+)
## 6967                                                                                                                                                                            Main source of emergency funds: money from working, secondary education or more (% able to raise funds, age 15+)
## 6968                                                                                                                                                                                    Main source of emergency funds: money from working, income, poorest 40% (% able to raise funds, age 15+)
## 6969                                                                                                                                                                                    Main source of emergency funds: money from working, income, richest 60% (% able to raise funds, age 15+)
## 6970                                                                                                                                                                                                  Main source of emergency funds: money from working, rural (% able to raise funds, age 15+)
## 6971                                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender (% able to raise funds, age 15+)
## 6972                                                                                                                                                                       Main source of emergency funds: loan from a bank, employer, or private lender, male  (% able to raise funds, age 15+)
## 6973                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender, in labor force (% able to raise funds, age 15+)
## 6974                                                                                                                                                          Main source of emergency funds: loan from a bank, employer, or private lender, out of labor force (% able to raise funds, age 15+)
## 6975                                                                                                                                                                      Main source of emergency funds: loan from a bank, employer, or private lender, female (% able to raise funds, age 15+)
## 6976                                                                                                                                                              Main source of emergency funds: loan from a bank, employer, or private lender, young adults (% able to raise funds, age 15-24)
## 6977                                                                                                                                                                Main source of emergency funds: loan from a bank, employer, or private lender, older adults (% able to raise funds, age 25+)
## 6978                                                                                                                                                   Main source of emergency funds: loan from a bank, employer, or private lender, primary education or less (% able to raise funds, age 15+)
## 6979                                                                                                                                                 Main source of emergency funds: loan from a bank, employer, or private lender, secondary education or more (% able to raise funds, age 15+)
## 6980                                                                                                                                                          Main source of emergency funds: loan from a bank, employer, or private lender, income, poorest 40%(% able to raise funds, age 15+)
## 6981                                                                                                                                                         Main source of emergency funds: loan from a bank, employer, or private lender, income, richest 60% (% able to raise funds, age 15+)
## 6982                                                                                                                                                                      Main source of emergency funds: loan from a bank, employer, or private lender, rural  (% able to raise funds, age 15+)
## 6983                                                                                                                                                                                                             Main source of emergency funds: sale of assets (% able to raise funds, age 15+)
## 6984                                                                                                                                                                                                      Main source of emergency funds: sale of assets , male (% able to raise funds, age 15+)
## 6985                                                                                                                                                                                             Main source of emergency funds: sale of assets, in labor force (% able to raise funds, age 15+)
## 6986                                                                                                                                                                                         Main source of emergency funds: sale of assets, out of labor force (% able to raise funds, age 15+)
## 6987                                                                                                                                                                                                    Main source of emergency funds: sale of assets, female  (% able to raise funds, age 15+)
## 6988                                                                                                                                                                                             Main source of emergency funds: sale of assets, young adults (% able to raise funds, age 15-24)
## 6989                                                                                                                                                                                               Main source of emergency funds: sale of assets, older adults (% able to raise funds, age 25+)
## 6990                                                                                                                                                                                  Main source of emergency funds: sale of assets, primary education or less (% able to raise funds, age 15+)
## 6991                                                                                                                                                                                Main source of emergency funds: sale of assets, secondary education or more (% able to raise funds, age 15+)
## 6992                                                                                                                                                                                        Main source of emergency funds: sale of assets, income, poorest 40% (% able to raise funds, age 15+)
## 6993                                                                                                                                                                                        Main source of emergency funds: sale of assets, income, richest 60% (% able to raise funds, age 15+)
## 6994                                                                                                                                                                                                     Main source of emergency funds: sale of assets, rural  (% able to raise funds, age 15+)
## 6995                                                                                                                                                                                                                      Main source of emergency funds: other (% able to raise funds, age 15+)
## 6996                                                                                                                                                                                                                Main source of emergency funds: other, male (% able to raise funds, age 15+)
## 6997                                                                                                                                                                                                      Main source of emergency funds: other, in labor force (% able to raise funds, age 15+)
## 6998                                                                                                                                                                                                  Main source of emergency funds: other, out of labor force (% able to raise funds, age 15+)
## 6999                                                                                                                                                                                                              Main source of emergency funds: other, female (% able to raise funds, age 15+)
## 7000                                                                                                                                                                                                      Main source of emergency funds: other, young adults (% able to raise funds, age 15-24)
## 7001                                                                                                                                                                                                        Main source of emergency funds: other, older adults (% able to raise funds, age 25+)
## 7002                                                                                                                                                                                           Main source of emergency funds: other, primary education or less (% able to raise funds, age 15+)
## 7003                                                                                                                                                                                         Main source of emergency funds: other, secondary education or more (% able to raise funds, age 15+)
## 7004                                                                                                                                                                                                 Main source of emergency funds: other, income, poorest 40% (% able to raise funds, age 15+)
## 7005                                                                                                                                                                                                 Main source of emergency funds: other, income, richest 60% (% able to raise funds, age 15+)
## 7006                                                                                                                                                                                                               Main source of emergency funds: other, rural (% able to raise funds, age 15+)
## 7007                                                                                                                                                                                                                          Sent or received domestic remittances in the past year (% age 15+)
## 7008                                                                                                                                                                                                                    Sent or received domestic remittances in the past year, male (% age 15+)
## 7009                                                                                                                                                                                                         Sent or received domestic remittances in the past year, in labor force  (% age 15+)
## 7010                                                                                                                                                                                                     Sent or received domestic remittances in the past year, out of labor force  (% age 15+)
## 7011                                                                                                                                                                                                                  Sent or received domestic remittances in the past year, female (% age 15+)
## 7012                                                                                                                                                                                                          Sent or received domestic remittances in the past year, young adults (% age 15-24)
## 7013                                                                                                                                                                                                            Sent or received domestic remittances in the past year, older adults (% age 25+)
## 7014                                                                                                                                                                                               Sent or received domestic remittances in the past year, primary education or less (% age 15+)
## 7015                                                                                                                                                                                             Sent or received domestic remittances in the past year, secondary education or more (% age 15+)
## 7016                                                                                                                                                                                                     Sent or received domestic remittances in the past year, income, poorest 40% (% age 15+)
## 7017                                                                                                                                                                                                    Sent or received domestic remittances in the past year, income, richest 60%  (% age 15+)
## 7018                                                                                                                                                                                                                  Sent or received domestic remittances in the past year, rural  (% age 15+)
## 7019                                                                                                                                                                                                                                  Received domestic remittances in the past year (% age 15+)
## 7020                                                                                                                                                                                                                           Received domestic remittances in the past year, male  (% age 15+)
## 7021                                                                                                                                                                                                                  Received domestic remittances in the past year, in labor force (% age 15+)
## 7022                                                                                                                                                                                                              Received domestic remittances in the past year, out of labor force (% age 15+)
## 7023                                                                                                                                                                                                                          Received domestic remittances in the past year, female (% age 15+)
## 7024                                                                                                                                                                                                                  Received domestic remittances in the past year, young adults (% age 15-24)
## 7025                                                                                                                                                                                                                    Received domestic remittances in the past year, older adults (% age 25+)
## 7026                                                                                                                                                                                                       Received domestic remittances in the past year, primary education or less (% age 15+)
## 7027                                                                                                                                                                                                     Received domestic remittances in the past year, secondary education or more (% age 15+)
## 7028                                                                                                                                                                                                             Received domestic remittances in the past year, income, poorest 40% (% age 15+)
## 7029                                                                                                                                                                                                             Received domestic remittances in the past year, income, richest 60% (% age 15+)
## 7030                                                                                                                                                                                                                           Received domestic remittances in the past year, rural (% age 15+)
## 7031                                                                                                                                                                                                          Sent or received domestic remittances: through a financial institution (% age 15+)
## 7032                                                                                                                                                                                  Sent or received domestic remittances: through a financial institution (% senders and recipients, age 15+)
## 7033                                                                                                                                                                                                                         Sent or received domestic remittances: using an account (% age 15+)
## 7034                                                                                                                                                                                                 Sent or received domestic remittances: using an account (% senders and recipients, age 15+)
## 7035                                                                                                                                                                                                                   Sent or received domestic remittances: through a mobile phone (% age 15+)
## 7036                                                                                                                                                                                           Sent or received domestic remittances: through a mobile phone (% senders and recipients, age 15+)
## 7037                                                                                                                                                                                                               Sent or received domestic remittances: in person and in cash only (% age 15+)
## 7038                                                                                                                                                                                       Sent or received domestic remittances: in person and in cash only (% senders and recipients, age 15+)
## 7039                                                                                                                                                                                                         Sent or received domestic remittances: through a money transfer service (% age 15+)
## 7040                                                                                                                                                                                 Sent or received domestic remittances: through a money transfer service (% senders and recipients, age 15+)
## 7041                                                                                                                                                                                                      Sent or received domestic remittances: through an over-the-counter service (% age 15+)
## 7042                                                                                                                                                                              Sent or received domestic remittances: through an over-the-counter service (% senders and recipients, age 15+)
## 7043                                                                                                                                                                                                                  Received domestic remittances: through a financial institution (% age 15+)
## 7044                                                                                                                                                                                                      Received domestic remittances: through a financial institution (% recipients, age 15+)
## 7045                                                                                                                                                                                                                                 Received domestic remittances: using an account (% age 15+)
## 7046                                                                                                                                                                                                                     Received domestic remittances: using an account (% recipients, age 15+)
## 7047                                                                                                                                                                                                                           Received domestic remittances: through a mobile phone (% age 15+)
## 7048                                                                                                                                                                                                               Received domestic remittances: through a mobile phone (% recipients, age 15+)
## 7049                                                                                                                                                                                                                       Received domestic remittances: in person and in cash only (% age 15+)
## 7050                                                                                                                                                                                                           Received domestic remittances: in person and in cash only (% recipients, age 15+)
## 7051                                                                                                                                                                                                                 Received domestic remittances: through a money transfer service (% age 15+)
## 7052                                                                                                                                                                                                     Received domestic remittances: through a money transfer service (% recipients, age 15+)
## 7053                                                                                                                                                                                                              Received domestic remittances: through an over-the-counter service (% age 15+)
## 7054                                                                                                                                                                                                  Received domestic remittances: through an over-the-counter service (% recipients, age 15+)
## 7055                                                                                                                                                                                                                                      Sent domestic remittances in the past year (% age 15+)
## 7056                                                                                                                                                                                                                                Sent domestic remittances in the past year, male (% age 15+)
## 7057                                                                                                                                                                                                                      Sent domestic remittances in the past year, in labor force (% age 15+)
## 7058                                                                                                                                                                                                                 Sent domestic remittances in the past year, out of labor force  (% age 15+)
## 7059                                                                                                                                                                                                                             Sent domestic remittances in the past year, female  (% age 15+)
## 7060                                                                                                                                                                                                                     Sent domestic remittances in the past year, young adults  (% age 15-24)
## 7061                                                                                                                                                                                                                        Sent domestic remittances in the past year, older adults (% age 25+)
## 7062                                                                                                                                                                                                           Sent domestic remittances in the past year, primary education or less (% age 15+)
## 7063                                                                                                                                                                                                        Sent domestic remittances in the past year, secondary education or more  (% age 15+)
## 7064                                                                                                                                                                                                                Sent domestic remittances in the past year, income, poorest 40%  (% age 15+)
## 7065                                                                                                                                                                                                                Sent domestic remittances in the past year, income, richest 60%  (% age 15+)
## 7066                                                                                                                                                                                                                              Sent domestic remittances in the past year, rural  (% age 15+)
## 7067                                                                                                                                                                                                                      Sent domestic remittances: through a financial institution (% age 15+)
## 7068                                                                                                                                                                                                             Sent domestic remittances: through a financial institution (% senders, age 15+)
## 7069                                                                                                                                                                                                                                     Sent domestic remittances: using an account (% age 15+)
## 7070                                                                                                                                                                                                                            Sent domestic remittances: using an account (% senders, age 15+)
## 7071                                                                                                                                                                                                                               Sent domestic remittances: through a mobile phone (% age 15+)
## 7072                                                                                                                                                                                                                      Sent domestic remittances: through a mobile phone (% senders, age 15+)
## 7073                                                                                                                                                                                                                           Sent domestic remittances: in person and in cash only (% age 15+)
## 7074                                                                                                                                                                                                                  Sent domestic remittances: in person and in cash only (% senders, age 15+)
## 7075                                                                                                                                                                                                                     Sent domestic remittances: through a money transfer service (% age 15+)
## 7076                                                                                                                                                                                                            Sent domestic remittances: through a money transfer service (% senders, age 15+)
## 7077                                                                                                                                                                                                                  Sent domestic remittances: through an over-the-counter service (% age 15+)
## 7078                                                                                                                                                                                                         Sent domestic remittances: through an over-the-counter service (% senders, age 15+)
## 7079                                                                                                                                                                                                                                             Paid utility bills in the past year (% age 15+)
## 7080                                                                                                                                                                                                                                       Paid utility bills in the past year, male (% age 15+)
## 7081                                                                                                                                                                                                                            Paid utility bills in the past year, in labor force  (% age 15+)
## 7082                                                                                                                                                                                                                        Paid utility bills in the past year, out of labor force  (% age 15+)
## 7083                                                                                                                                                                                                                                     Paid utility bills in the past year, female (% age 15+)
## 7084                                                                                                                                                                                                                             Paid utility bills in the past year, young adults (% age 15-24)
## 7085                                                                                                                                                                                                                              Paid utility bills in the past year, older adults  (% age 25+)
## 7086                                                                                                                                                                                                                  Paid utility bills in the past year, primary education or less (% age 15+)
## 7087                                                                                                                                                                                                               Paid utility bills in the past year, secondary education or more  (% age 15+)
## 7088                                                                                                                                                                                                                       Paid utility bills in the past year, income, poorest 40%  (% age 15+)
## 7089                                                                                                                                                                                                                       Paid utility bills in the past year, income, richest 60%  (% age 15+)
## 7090                                                                                                                                                                                                                                     Paid utility bills in the past year , rural (% age 15+)
## 7091                                                                                                                                                                                                                       Paid utility bills: using a financial institution account (% age 15+)
## 7092                                                                                                                                                                                                 Paid utility bills: using a financial institution account (% paying utility bills, age 15+)
## 7093                                                                                                                                                                                                                                            Paid utility bills: using an account (% age 15+)
## 7094                                                                                                                                                                                                                      Paid utility bills: using an account (% paying utility bills, age 15+)
## 7095                                                                                                                                                                                                                                        Paid utility bills: using a mobile phone (% age 15+)
## 7096                                                                                                                                                                                                                  Paid utility bills: using a mobile phone (% paying utility bills, age 15+)
## 7097                                                                                                                                                                                                                                             Paid utility bills: using cash only (% age 15+)
## 7098                                                                                                                                                                                                                       Paid utility bills: using cash only (% paying utility bills, age 15+)
## 7099                                                                                                                                                                                                                                                 Received wages in the past year (% age 15+)
## 7100                                                                                                                                                                                                                                           Received wages in the past year, male (% age 15+)
## 7101                                                                                                                                                                                                                                 Received wages in the past year, in labor force (% age 15+)
## 7102                                                                                                                                                                                                                            Received wages in the past year, out of labor force  (% age 15+)
## 7103                                                                                                                                                                                                                                         Received wages in the past year, female (% age 15+)
## 7104                                                                                                                                                                                                                                Received wages in the past year, young adults  (% age 15-24)
## 7105                                                                                                                                                                                                                                   Received wages in the past year, older adults (% age 25+)
## 7106                                                                                                                                                                                                                      Received wages in the past year, primary education or less (% age 15+)
## 7107                                                                                                                                                                                                                   Received wages in the past year, secondary education or more  (% age 15+)
## 7108                                                                                                                                                                                                                           Received wages in the past year, income, poorest 40%  (% age 15+)
## 7109                                                                                                                                                                                                                           Received wages in the past year, income, richest 60%  (% age 15+)
## 7110                                                                                                                                                                                                                                         Received wages in the past year, rural  (% age 15+)
## 7111                                                                                                                                                                                                                                               Paid school fees in the past year (% age 15+)
## 7112                                                                                                                                                                                                                                         Paid school fees in the past year, male (% age 15+)
## 7113                                                                                                                                                                                                                               Paid school fees in the past year, in labor force (% age 15+)
## 7114                                                                                                                                                                                                                          Paid school fees in the past year, out of labor force  (% age 15+)
## 7115                                                                                                                                                                                                                                      Paid school fees in the past year, female  (% age 15+)
## 7116                                                                                                                                                                                                                              Paid school fees in the past year, young adults  (% age 15-24)
## 7117                                                                                                                                                                                                                                 Paid school fees in the past year, older adults (% age 25+)
## 7118                                                                                                                                                                                                                    Paid school fees in the past year, primary education or less (% age 15+)
## 7119                                                                                                                                                                                                                   Paid school fees in the past year,secondary education or more (% age 15+)
## 7120                                                                                                                                                                                                                         Paid school fees in the past year, income, poorest 40%  (% age 15+)
## 7121                                                                                                                                                                                                                          Paid school fees in the past year, income, richest 60% (% age 15+)
## 7122                                                                                                                                                                                                                                       Paid school fees in the past year, rural  (% age 15+)
## 7123                                                                                                                                                                                                                                  Received private sector wages in the past year (% age 15+)
## 7124                                                                                                                                                                                                                            Received private sector wages in the past year, male (% age 15+)
## 7125                                                                                                                                                                                                                  Received private sector wages in the past year, in labor force (% age 15+)
## 7126                                                                                                                                                                                                              Received private sector wages in the past year, out of labor force (% age 15+)
## 7127                                                                                                                                                                                                                          Received private sector wages in the past year, female (% age 15+)
## 7128                                                                                                                                                                                                                  Received private sector wages in the past year, young adults (% age 15-24)
## 7129                                                                                                                                                                                                                    Received private sector wages in the past year, older adults (% age 25+)
## 7130                                                                                                                                                                                                       Received private sector wages in the past year, primary education or less (% age 15+)
## 7131                                                                                                                                                                                                     Received private sector wages in the past year, secondary education or more (% age 15+)
## 7132                                                                                                                                                                                                             Received private sector wages in the past year, income, poorest 40% (% age 15+)
## 7133                                                                                                                                                                                                              Received private sector wages in the past year, income, richest 60%(% age 15+)
## 7134                                                                                                                                                                                                                          Received private sector wages in the past year, rural  (% age 15+)
## 7135                                                                                                                                                                                                                                   Received public sector wages in the past year (% age 15+)
## 7136                                                                                                                                                                                                                             Received public sector wages in the past year, male (% age 15+)
## 7137                                                                                                                                                                                                                  Received public sector wages in the past year, in labor force  (% age 15+)
## 7138                                                                                                                                                                                                               Received public sector wages in the past year, out of labor force (% age 15+)
## 7139                                                                                                                                                                                                                           Received public sector wages in the past year, female (% age 15+)
## 7140                                                                                                                                                                                                                   Received public sector wages in the past year, young adults (% age 15-24)
## 7141                                                                                                                                                                                                                    Received public sector wages in the past year, older adults  (% age 25+)
## 7142                                                                                                                                                                                                        Received public sector wages in the past year, primary education or less (% age 15+)
## 7143                                                                                                                                                                                                       Received public sector wages in the past year, secondary education or more(% age 15+)
## 7144                                                                                                                                                                                                              Received public sector wages in the past year, income, poorest 40% (% age 15+)
## 7145                                                                                                                                                                                                              Received public sector wages in the past year, income, richest 60% (% age 15+)
## 7146                                                                                                                                                                                                                            Received public sector wages in the past year, rural (% age 15+)
## 7147                                                                                                                                                                                                                                               Paid school fees: using cash only (% age 15+)
## 7148                                                                                                                                                                                                                           Paid school fees: using cash only (% paying school fees, age 15+)
## 7149                                                                                                                                                                                                                            Received wages: into a financial institution account (% age 15+)
## 7150                                                                                                                                                                                                           Received wages: into a financial institution account (% wage recipients, age 15+)
## 7151                                                                                                                                                                                                                                                 Received wages: into an account (% age 15+)
## 7152                                                                                                                                                                                                                                Received wages: into an account (% wage recipients, age 15+)
## 7153                                                                                                                                                                                                             Received private sector wages: into a financial institution account (% age 15+)
## 7154                                                                                                                                                                                            Received private sector wages: into a financial institution account (% wage recipients, age 15+)
## 7155                                                                                                                                                                                                                                  Received private sector wages: into an account (% age 15+)
## 7156                                                                                                                                                                                                                 Received private sector wages: into an account (% wage recipients, age 15+)
## 7157                                                                                                                                                                                                              Received public sector wages: into a financial institution account (% age 15+)
## 7158                                                                                                                                                                                             Received public sector wages: into a financial institution account (% wage recipients, age 15+)
## 7159                                                                                                                                                                                                                                   Received public sector wages: into an account (% age 15+)
## 7160                                                                                                                                                                                                                  Received public sector wages: into an account (% wage recipients, age 15+)
## 7161                                                                                                                                                                                                                         Paid school fees: using a financial institution account (% age 15+)
## 7162                                                                                                                                                                                                     Paid school fees: using a financial institution account (% paying school fees, age 15+)
## 7163                                                                                                                                                                                                                                              Paid school fees: using an account (% age 15+)
## 7164                                                                                                                                                                                                                          Paid school fees: using an account (% paying school fees, age 15+)
## 7165                                                                                                                                                                                                                                          Received wages: through a mobile phone (% age 15+)
## 7166                                                                                                                                                                                                                         Received wages: through a mobile phone (% wage recipients, age 15+)
## 7167                                                                                                                                                                                                                           Received private sector wages: through a mobile phone (% age 15+)
## 7168                                                                                                                                                                                                          Received private sector wages: through a mobile phone (% wage recipients, age 15+)
## 7169                                                                                                                                                                                                                            Received public sector wages: through a mobile phone (% age 15+)
## 7170                                                                                                                                                                                                           Received public sector wages: through a mobile phone (% wage recipients, age 15+)
## 7171                                                                                                                                                                                                                                          Paid school fees: using a mobile phone (% age 15+)
## 7172                                                                                                                                                                                                                      Paid school fees: using a mobile phone (% paying school fees, age 15+)
## 7173                                                                                                                                                                                                                                                    Received wages: in cash only (% age 15+)
## 7174                                                                                                                                                                                                                                   Received wages: in cash only (% wage recipients, age 15+)
## 7175                                                                                                                                                                                                                                     Received private sector wages: in cash only (% age 15+)
## 7176                                                                                                                                                                                                                    Received private sector wages: in cash only (% wage recipients, age 15+)
## 7177                                                                                                                                                                                                                                      Received public sector wages: in cash only (% age 15+)
## 7178                                                                                                                                                                                                                     Received public sector wages: in cash only (% wage recipients, age 15+)
## 7179                                                                                                                                                                                                                           Received wages: first account opened to receive wages (% age 15+)
## 7180                                                                                                                                                                                          Received wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7181                                                                                                                                                                                                            Received private sector wages: first account opened to receive wages (% age 15+)
## 7182                                                                                                                                                                           Received private sector wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7183                                                                                                                                                                                                             Received public sector wages: first account opened to receive wages (% age 15+)
## 7184                                                                                                                                                                            Received public sector wages: first account opened to receive wages (% receiving wages into an account, age 15+)
## 7185                                                                                                                                                                                                                                  Received government transfers in the past year (% age 15+)
## 7186                                                                                                                                                                                                                           Received government transfers in the past year, male  (% age 15+)
## 7187                                                                                                                                                                                                                 Received government transfers in the past year, in labor force  (% age 15+)
## 7188                                                                                                                                                                                                             Received government transfers in the past year, out of labor force  (% age 15+)
## 7189                                                                                                                                                                                                                          Received government transfers in the past year, female (% age 15+)
## 7190                                                                                                                                                                                                                  Received government transfers in the past year, young adults (% age 15-24)
## 7191                                                                                                                                                                                                                    Received government transfers in the past year, older adults (% age 25+)
## 7192                                                                                                                                                                                                       Received government transfers in the past year, primary education or less (% age 15+)
## 7193                                                                                                                                                                                                    Received government transfers in the past year, secondary education or more  (% age 15+)
## 7194                                                                                                                                                                                                            Received government transfers in the past year, income, poorest 40 % (% age 15+)
## 7195                                                                                                                                                                                                              Received government transfers in the past year, income richest 60% (% age 15+)
## 7196                                                                                                                                                                                                                          Received government transfers in the past year, rural  (% age 15+)
## 7197                                                                                                                                                                                                          Received a public sector pension: into a financial institution account (% age 15+)
## 7198                                                                                                                                                                                      Received a public sector pension: into a financial institution account (% pension recipients, age 15+)
## 7199                                                                                                                                                                                                                                  Received a public sector pension: in cash only (% age 15+)
## 7200                                                                                                                                                                                                              Received a public sector pension: in cash only (% pension recipients, age 15+)
## 7201                                                                                                                                                                                                       Received a public sector pension: first account opened to receive pension (% age 15+)
## 7202                                                                                                                                                                    Received a public sector pension: first account opened to receive pension (% receiving pension into an account, age 15+)
## 7203                                                                                                                                                                                                                               Received a public sector pension in the past year (% age 15+)
## 7204                                                                                                                                                                                                                        Received a public sector pension in the past year, male  (% age 15+)
## 7205                                                                                                                                                                                                               Received a public sector pension in the past year, in labor force (% age 15+)
## 7206                                                                                                                                                                                                          Received a public sector pension in the past year, out of labor force  (% age 15+)
## 7207                                                                                                                                                                                                                       Received a public sector pension in the past year, female (% age 15+)
## 7208                                                                                                                                                                                                               Received a public sector pension in the past year, young adults (% age 15-24)
## 7209                                                                                                                                                                                                                 Received a public sector pension in the past year, older adults (% age 25+)
## 7210                                                                                                                                                                                                   Received a public sector pension in the past year, primary education or less  (% age 15+)
## 7211                                                                                                                                                                                                  Received a public sector pension in the past year, secondary education or more (% age 15+)
## 7212                                                                                                                                                                                                           Received a public sector pension in the past year, income, poorest 40%(% age 15+)
## 7213                                                                                                                                                                                                           Received a public sector pension in the past year, income, riches 60% (% age 15+)
## 7214                                                                                                                                                                                                                       Received a public sector pension in the past year, rural  (% age 15+)
## 7215                                                                                                                                                                                                                               Received a public sector pension: into an account (% age 15+)
## 7216                                                                                                                                                                                                           Received a public sector pension: into an account (% pension recipients, age 15+)
## 7217                                                                                                                                                                                                             Received government transfers: into a financial institution account (% age 15+)
## 7218                                                                                                                                                                                        Received government transfers: into a financial institution account (% transfer recipients, age 15+)
## 7219                                                                                                                                                                                                                                  Received government transfers: into an account (% age 15+)
## 7220                                                                                                                                                                                                             Received government transfers: into an account (% transfer recipients, age 15+)
## 7221                                                                                                                                                                                                                        Received a public sector pension: through a mobile phone (% age 15+)
## 7222                                                                                                                                                                                                    Received a public sector pension: through a mobile phone (% pension recipients, age 15+)
## 7223                                                                                                                                                                                                                           Received government transfers: through a mobile phone (% age 15+)
## 7224                                                                                                                                                                                                      Received government transfers: through a mobile phone (% transfer recipients, age 15+)
## 7225                                                                                                                                                                                                                                     Received government transfers: in cash only (% age 15+)
## 7226                                                                                                                                                                                                                Received government transfers: in cash only (% transfer recipients, age 15+)
## 7227                                                                                                                                                                                                                             Debit card used to make a purchase in the past year (% age 15+)
## 7228                                                                                                                                                                                                                 Used a debit or credit card to make a purchase in the past year (% age 15+)
## 7229                                                                                                                                                                                                                 Used a debit or credit card to make a purchase in the past year (% age 15+)
## 7230                                                                                                                                                                                             Received government transfers: first account opened to receive government transfers (% age 15+)
## 7231                                                                                                                                                        Received government transfers: first account opened to receive government transfers (% receiving transfers into an account, age 15+)
## 7232                                                                                                                                                                                                                    Received payments for agricultural products in the past year (% age 15+)
## 7233                                                                                                                                                                                                              Received payments for agricultural products in the past year, male (% age 15+)
## 7234                                                                                                                                                                                                    Received payments for agricultural products in the past year, in labor force (% age 15+)
## 7235                                                                                                                                                                                               Received payments for agricultural products in the past year, out of labor force  (% age 15+)
## 7236                                                                                                                                                                                                            Received payments for agricultural products in the past year, female (% age 15+)
## 7237                                                                                                                                                                                                    Received payments for agricultural products in the past year, young adults (% age 15-24)
## 7238                                                                                                                                                                                                     Received payments for agricultural products in the past year, older adults  (% age 25+)
## 7239                                                                                                                                                                                        Received payments for agricultural products in the past year, primary education or less  (% age 15+)
## 7240                                                                                                                                                                                       Received payments for agricultural products in the past year, secondary education or more (% age 15+)
## 7241                                                                                                                                                                                               Received payments for agricultural products in the past year, income, poorest 40% (% age 15+)
## 7242                                                                                                                                                                                              Received payments for agricultural products in the past year, income, richest 60%  (% age 15+)
## 7243                                                                                                                                                                                                            Received payments for agricultural products in the past year, rural  (% age 15+)
## 7244                                                                                                                                                                                               Received payments for agricultural products: into a financial institution account (% age 15+)
## 7245                                                                                                                                                                           Received payments for agricultural products: into a financial institution account (% payment recipients, age 15+)
## 7246                                                                                                                                                                                                                    Received payments for agricultural products: into an account (% age 15+)
## 7247                                                                                                                                                                                                Received payments for agricultural products: into an account (% payment recipients, age 15+)
## 7248                                                                                                                                                                                                             Received payments for agricultural products: through a mobile phone (% age 15+)
## 7249                                                                                                                                                                                         Received payments for agricultural products: through a mobile phone (% payment recipients, age 15+)
## 7250                                                                                                                                                                                                                       Received payments for agricultural products: in cash only (% age 15+)
## 7251                                                                                                                                                                                                   Received payments for agricultural products: in cash only (% payment recipients, age 15+)
## 7252                                                                                                                                                                              Received payments for agricultural products: first account opened to receive agricultural payments (% age 15+)
## 7253                                                                                                                                          Received payments for agricultural products: first account opened to receive agricultural payments (% receiving payments into an account, age 15+)
## 7254                                                                                                                                                                                                                         Received payments from self-employment in the past year (% age 15+)
## 7255                                                                                                                                                                                                                   Received payments from self-employment in the past year, male (% age 15+)
## 7256                                                                                                                                                                                                        Received payments from self-employment in the past year, in labor force  (% age 15+)
## 7257                                                                                                                                                                                                    Received payments from self-employment in the past year, out of labor force  (% age 15+)
## 7258                                                                                                                                                                                                                Received payments from self-employment in the past year, female  (% age 15+)
## 7259                                                                                                                                                                                                        Received payments from self-employment in the past year, young adults  (% age 15-24)
## 7260                                                                                                                                                                                                          Received payments from self-employment in the past year, older adults  (% age 25+)
## 7261                                                                                                                                                                                              Received payments from self-employment in the past year, primary education or less (% age 15+)
## 7262                                                                                                                                                                                            Received payments from self-employment in the past year, secondary education or more (% age 15+)
## 7263                                                                                                                                                                                                   Received payments from self-employment in the past year, income, poorest 40%  (% age 15+)
## 7264                                                                                                                                                                                                   Received payments from self-employment in the past year, income, richest 60%  (% age 15+)
## 7265                                                                                                                                                                                                                 Received payments from self-employment in the past year, rural  (% age 15+)
## 7266                                                                                                                                                                                                    Received payments from self-employment: into a financial institution account (% age 15+)
## 7267                                                                                                                                                                                Received payments from self-employment: into a financial institution account (% payment recipients, age 15+)
## 7268                                                                                                                                                                                                                         Received payments from self-employment: into an account (% age 15+)
## 7269                                                                                                                                                                                                     Received payments from self-employment: into an account (% payment recipients, age 15+)
## 7270                                                                                                                                                                                                                  Received payments from self-employment: through a mobile phone (% age 15+)
## 7271                                                                                                                                                                                              Received payments from self-employment: through a mobile phone (% payment recipients, age 15+)
## 7272                                                                                                                                                                                                                            Received payments from self-employment: in cash only (% age 15+)
## 7273                                                                                                                                                                                                        Received payments from self-employment: in cash only (% payment recipients, age 15+)
## 7274                                                                                                                                                                                                                                                    Has a national identity card (% age 15+)
## 7275                                                                                                                                                                                                                                                    Has a national identity card (% age 15+)
## 7276                                                                                                                                                                                                                                            Has a national identity card, female (% age 15+)
## 7277                                                                                                                                                                                                                                              Has a national identity card, male (% age 15+)
## 7278                                                                                                                                                                                                                               Has a national identity card, income, poorest 40% (% age 15+)
## 7279                                                                                                                                                                                                                               Has a national identity card, income, richest 60% (% age 15+)
## 7280                                                                                                                                                                                                                                                 Has a national identity card (% ages 15-34)
## 7281                                                                                                                                                                                                                                                 Has a national identity card (% ages 35-59)
## 7282                                                                                                                                                                                                                                                    Has a national identity card (% age 60+)
## 7283                                                                                                                                                                                  Used a mobile phone or the internet to access a financial institution account in the past year (% age 15+)
## 7284                                                                                                                                            Used a mobile phone or the internet to access a financial institution account in the past year (% with a financial institution account, age 15+)
## 7285                                                                                                                                                                                                                        Used a mobile phone or the internet to access an account (% age 15+)
## 7286                                                                                                                                                                                                                  Used a mobile phone or the internet to access an account, male (% age 15+)
## 7287                                                                                                                                                                                                       Used a mobile phone or the internet to access an account, in labor force  (% age 15+)
## 7288                                                                                                                                                                                                   Used a mobile phone or the internet to access an account, out of labor force  (% age 15+)
## 7289                                                                                                                                                                                                               Used a mobile phone or the internet to access an account, female  (% age 15+)
## 7290                                                                                                                                                                                                        Used a mobile phone or the internet to access an account, young adults (% age 15-24)
## 7291                                                                                                                                                                                                          Used a mobile phone or the internet to access an account, older adults (% age 25+)
## 7292                                                                                                                                                                                            Used a mobile phone or the internet to access an account, primary education or less  (% age 15+)
## 7293                                                                                                                                                                                          Used a mobile phone or the internet to access an account, secondary education or more  (% age 15+)
## 7294                                                                                                                                                                                                  Used a mobile phone or the internet to access an account, income, poorest 40%  (% age 15+)
## 7295                                                                                                                                                                                                   Used a mobile phone or the internet to access an account, income, richest 60% (% age 15+)
## 7296                                                                                                                                                                                                                Used a mobile phone or the internet to access an account, rural  (% age 15+)
## 7297                                                                                                                                                                                                       Used a mobile phone or the internet to access an account (% with an account, age 15+)
## 7298                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 15+)
## 7299                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 15+)
## 7300                                                                                                                                                                                          Used a mobile phone or the internet to check account balance in the past year, female  (% age 15+)
## 7301                                                                                                                                                                                            Used a mobile phone or the internet to check account balance in the past year, male (% age 15+)"
## 7302                                                                                                                                                                              Used a mobile phone or the internet to check account balance in the past year, income, poorest 40% (% age 15+)
## 7303                                                                                                                                                                              Used a mobile phone or the internet to check account balance in the past year, income, richest 60% (% age 15+)
## 7304                                                                                                                                                                                                Used a mobile phone or the internet to check account balance in the past year (% ages 15-34)
## 7305                                                                                                                                                                                                Used a mobile phone or the internet to check account balance in the past year (% ages 35-59)
## 7306                                                                                                                                                                                                   Used a mobile phone or the internet to check account balance in the past year (% age 60+)
## 7307                                                                                                                                                                                                                                       Outstanding loan for a funeral or wedding (% age 15+)
## 7308                                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, male (% age 15+)
## 7309                                                                                                                                                                                                                      Outstanding loan for a funeral or wedding, in labor force  (% age 15+)
## 7310                                                                                                                                                                                                                  Outstanding loan for a funeral or wedding, out of labor force  (% age 15+)
## 7311                                                                                                                                                                                                                               Outstanding loan for a funeral or wedding, female (% age 15+)
## 7312                                                                                                                                                                                                                      Outstanding loan for a funeral or wedding, young adults  (% age 15-24)
## 7313                                                                                                                                                                                                                        Outstanding loan for a funeral or wedding, older adults  (% age 25+)
## 7314                                                                                                                                                                                                           Outstanding loan for a funeral or wedding, primary education or less  (% age 15+)
## 7315                                                                                                                                                                                                          Outstanding loan for a funeral or wedding, secondary education or more (% age 15+)
## 7316                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, income, poorest 40%  (% age 15+)
## 7317                                                                                                                                                                                                                 Outstanding loan for a funeral or wedding, income, richest 60%  (% age 15+)
## 7318                                                                                                                                                                                                                               Outstanding loan for a funeral or wedding, rural  (% age 15+)
## 7319                                                                                                                                                                                                                                   Used checks to make payments in the past year (% age 15+)
## 7320                                                                                                                                                                                                                                                           Credit card ownership (% age 15+)
## 7321                                                                                                                                                                                                                                                     Credit card ownership, male (% age 15+)
## 7322                                                                                                                                                                                                                                          Credit card ownership, in labor force  (% age 15+)
## 7323                                                                                                                                                                                                                                      Credit card ownership, out of labor force  (% age 15+)
## 7324                                                                                                                                                                                                                                                  Credit card ownership, female  (% age 15+)
## 7325                                                                                                                                                                                                                                          Credit card ownership, young adults  (% age 15-24)
## 7326                                                                                                                                                                                                                                            Credit card ownership, older adults  (% age 25+)
## 7327                                                                                                                                                                                                                               Credit card ownership, primary education or less  (% age 15+)
## 7328                                                                                                                                                                                                                             Credit card ownership, secondary education or more  (% age 15+)
## 7329                                                                                                                                                                                                                                     Credit card ownership, income, poorest 40%  (% age 15+)
## 7330                                                                                                                                                                                                                                      Credit card ownership, income, richest 60% (% age 15+)
## 7331                                                                                                                                                                                                                                                   Credit card ownership, rural  (% age 15+)
## 7332                                                                                                                                                                                                                                               Credit card used in the past year (% age 15+)
## 7333                                                                                                                                                                                                                  Deposit in the past year (% with a financial institution account, age 15+)
## 7334                                                                                                                                                                                              No deposit and no withdrawal from a financial institution account in the past year (% age 15+)
## 7335                                                                                                                                                                                             No deposit and no withdrawal in the past year (% with a financial institution account, age 15+)
## 7336                                                                                                                                                                                                                   No deposit and no withdrawal from an account in the past year (% age 15+)
## 7337                                                                                                                                                                                                            No deposit and no withdrawal from an account in the past year, male  (% age 15+)
## 7338                                                                                                                                                                                                   No deposit and no withdrawal from an account in the past year, in labor force (% age 15+)
## 7339                                                                                                                                                                                               No deposit and no withdrawal from an account in the past year, out of labor force (% age 15+)
## 7340                                                                                                                                                                                                           No deposit and no withdrawal from an account in the past year, female (% age 15+)
## 7341                                                                                                                                                                                                  No deposit and no withdrawal from an account in the past year, young adults  (% age 15-24)
## 7342                                                                                                                                                                                                     No deposit and no withdrawal from an account in the past year, older adults (% age 25+)
## 7343                                                                                                                                                                                        No deposit and no withdrawal from an account in the past year, primary education or less (% age 15+)
## 7344                                                                                                                                                                                      No deposit and no withdrawal from an account in the past year, secondary education or less (% age 15+)
## 7345                                                                                                                                                                                              No deposit and no withdrawal from an account in the past year, income, poorest 40% (% age 15+)
## 7346                                                                                                                                                                                             No deposit and no withdrawal from an account in the past year, income, richest 60%  (% age 15+)
## 7347                                                                                                                                                                                                           No deposit and no withdrawal from an account in the past year, rural  (% age 15+)
## 7348                                                                                                                                                                                                                  No deposit and no withdrawal in the past year (% with an account, age 15+)
## 7349                                                                                                                                                                                                              Received government payments: into a financial institution account (% age 15+)
## 7350                                                                                                                                                                                          Received government payments: into a financial institution account (% payment recipients, age 15+)
## 7351                                                                                                                                                                                                                            Received government payments: through a mobile phone (% age 15+)
## 7352                                                                                                                                                                                                        Received government payments: through a mobile phone (% payment recipients, age 15+)
## 7353                                                                                                                                                                                                                                      Received government payments: in cash only (% age 15+)
## 7354                                                                                                                                                                                                                  Received government payments: in cash only (% payment recipients, age 15+)
## 7355                                                                                                                                                                                                                                   Received government payments: into an account (% age 15+)
## 7356                                                                                                                                                                                                               Received government payments: into an account (% payment recipients, age 15+)
## 7357                                                                                                                                                                                               Received government payments: first account opened to receive government payments (% age 15+)
## 7358                                                                                                                                                           Received government payments: first account opened to receive government payments (% receiving payments into an account, age 15+)
## 7359                                                                                                                                                                                                                                   Received government payments in the past year (% age 15+)
## 7360                                                                                                                                                                                                                             Received government payments in the past year, male (% age 15+)
## 7361                                                                                                                                                                                                                   Received government payments in the past year, in labor force (% age 15+)
## 7362                                                                                                                                                                                                               Received government payments in the past year, out of labor force (% age 15+)
## 7363                                                                                                                                                                                                                           Received government payments in the past year, female (% age 15+)
## 7364                                                                                                                                                                                                                   Received government payments in the past year, young adults (% age 15-24)
## 7365                                                                                                                                                                                                                     Received government payments in the past year, older adults (% age 25+)
## 7366                                                                                                                                                                                                        Received government payments in the past year, primary education or less (% age 15+)
## 7367                                                                                                                                                                                                      Received government payments in the past year, secondary education or more (% age 15+)
## 7368                                                                                                                                                                                                              Received government payments in the past year, income, poorest 40% (% age 15+)
## 7369                                                                                                                                                                                                             Received government payments in the past year, income, richest 60%  (% age 15+)
## 7370                                                                                                                                                                                                                           Received government payments in the past year, rural  (% age 15+)
## 7371                                                                                                                                                                                                                                                Claims on private sector, flow (current LCU)
## 7372                                                                                                                                                                                                                                                     Net domestic credit, flow (current LCU)
## 7373                                                                                                                                                                                                                                            Net domestic credit as % of M2 (annual % change)
## 7374                                                                                                                                                                                                                                       Net domestic credit to government, flow (current LCU)
## 7375                                                                                                                                                                                                                                    Claims on governments, etc. as % of M2 (annual % change)
## 7376                                                                                                                                                                                                                                            Claims on central government, flow (current LCU)
## 7377                                                                                                                                                                                                                                                            Total assets, flow (current LCU)
## 7378                                                                                                                                                                                                                                                      Net foreign assets, flow (current LCU)
## 7379                                                                                                                                                                                                                                             Net foreign assets as % of M2 (annual % change)
## 7380                                                                                                                                                                                                                                       Claims on other official entities, flow (current LCU)
## 7381                                                                                                                                                                                                                            Claims on nonmonetary financial institutions, flow (current LCU)
## 7382                                                                                                                                                                                                                                       Claims on private sector as % of M2 (annual % change)
## 7383                                                                                                                                                                                                               Claims on private sector and other financial institutions, flow (current LCU)
## 7384                                                                                                                                                                                                                            Claims on central government (annual growth as % of broad money)
## 7385                                                                                                                                                                                                                                  Net domestic credit to private sector, stock (current LCU)
## 7386                                                                                                                                                                                                         Claims on other sectors of the domestic economy (annual growth as % of broad money)
## 7387                                                                                                                                                                                                                                                           Net domestic credit (current LCU)
## 7388                                                                                                                                                                                                                               Claims on governments and other public entities (current LCU)
## 7389                                                                                                                                                                                                                                  Claims on governments and other public entities (% of GDP)
## 7390                                                                                                                                                                                                                                      Claims on governments, etc. (annual growth as % of M2)
## 7391                                                                                                                                                                                                                                                  Claims on central government (current LCU)
## 7392                                                                                                                                                                                                                                                                  Total assets (current LCU)
## 7393                                                                                                                                                                                                                                                            Net foreign assets (current US$)
## 7394                                                                                                                                                                                                                                                            Net foreign assets (current LCU)
## 7395                                                                                                                                                                                                                         Net domestic credit to other official entities, stock (current LCU)
## 7396                                                                                                                                                                                                            Net domestic credit to other private financial institutions, stock (current LCU)
## 7397                                                                                                                                                                                                                                Banking survey: claims on private sector (net) (current LCU)
## 7398                                                                                                                                                                                                                                            Monetary Sector credit to private sector (% GDP)
## 7399                                                                                                                                                                                                                                         Claims on private sector (annual growth as % of M2)
## 7400                                                                                                                                                                                                                                Claims on private sector (annual growth as % of broad money)
## 7401                                                                                                                                                                                                                               Claims on governments and other public entities (current LCU)
## 7402                                                                                                                                                                                                                                      Claims on governments, etc. (annual growth as % of M2)
## 7403                                                                                                                                                                                                                                 Net domestic credit to rest of economy, stock (current LCU)
## 7404                                                                                                                                                                                                                                              Money and quasi money (M2), flow (current LCU)
## 7405                                                                                                                                                                                                                                          Other liabilities excluding M2, flow (current LCU)
## 7406                                                                                                                                                                                                                                                                   Broad money (current LCU)
## 7407                                                                                                                                                                                                                                                                      Broad money (% of GDP)
## 7408                                                                                                                                                                                                                                                         Broad money to total reserves ratio
## 7409                                                                                                                                                                                                                                                               Broad money growth (annual %)
## 7410                                                                                                                                                                                                                                                                     Demand Deposits (local)
## 7411                                                                                                                                                                                                                                                                         Money (current LCU)
## 7412                                                                                                                                                                                                                                                    Money and quasi money (M2) (current LCU)
## 7413                                                                                                                                                                                                                                                       Money Supply, Broadly Defined (local)
## 7414                                                                                                                                                                                                                                                      Money and quasi money (M2) as % of GDP
## 7415                                                                                                                                                                                                                                                      Money and quasi money (M2) as % of GDP
## 7416                                                                                                                                                                                                                                          Money and quasi money (M2) to total reserves ratio
## 7417                                                                                                                                                                                                                                                           Income velocity of money (GDP/M2)
## 7418                                                                                                                                                                                                                                                     Money and quasi money growth (annual %)
## 7419                                                                                                                                                                                                                                                               Currency Ouside Banks (local)
## 7420                                                                                                                                                                                                                                                                   Quasi money (current LCU)
## 7421                                                                                                                                                                                                                                                          Quasi-Monetary Liabilities (local)
## 7422                                                                                                                                                                                                                                                         Quasi-liquid liabilities (% of GDP)
## 7423                                                                                                                                                                                                                                                                       Seignorage (% of GDP)
## 7424                                                                                                                                                                                                                                                Other liabilities excluding M2 (current LCU)
## 7425                                                                                                                                                                                                                        Total Credit by Sector: Agriculture (province level, in IDR Million)
## 7426                                                                                                                                                                                                                           Total Credit by Sector: Business (province level, in IDR Million)
## 7427                                                                                                                                                                                                                   Total Credit by Utilization: Consumption (province level, in IDR Million)
## 7428                                                                                                                                                                                                                       Total Credit by Sector: Construction (province level, in IDR Million)
## 7429                                                                                                                                                                                                                    Total credit by Utilization: Investment (province level, in IDR Million)
## 7430                                                                                                                                                                                                               Total Credit by Sector: Mining and Quarrying (province level, in IDR Million)
## 7431                                                                                                                                                                                                                        Total Credit by Sector: Manufacture (province level, in IDR Million)
## 7432                                                                                                                                                                                                                     Total Credit by Sector: Other Services (province level, in IDR Million)
## 7433                                                                                                                                                                                                                    Total Credit by Sector: Social Services (province level, in IDR Million)
## 7434                                                                                                                                                                                                                              Total Credit by Sector: Trade (province level, in IDR Million)
## 7435                                                                                                                                                                                                                     Total Credit by Sector: Transportation (province level, in IDR Million)
## 7436                                                                                                                                                                                                                          Total Credit by Sector: Utilities (province level, in IDR Million)
## 7437                                                                                                                                                                                                               Total Credit by Utilization: Working Capital (province level, in IDR Million)
## 7438                                                                                                                                                                                                                                             Total Deposits (province level, in IDR Million)
## 7439                                                                                                                                                                                                                                                          Central bank intervention rate (%)
## 7440                                                                                                                                                                                         Total Commercial and Rural Banks Loans Rupiah and Foreign Currency (province level, in IDR Million)
## 7441                                                                                                                                                                                                                                                           Consumer price index (2010 = 100)
## 7442                                                                                                                                                                                                                                                       Inflation, consumer prices (annual %)
## 7443                                                                                                                                                                                                                                                               Food price index (2000 = 100)
## 7444                                                                                                                                                                                                                                                           Inflation, food prices (annual %)
## 7445                                                                                                                                                                                                                                                          Wholesale price index (2010 = 100)
## 7446                                                                                                                                                                                                                                                      Inflation, wholesale prices (annual %)
## 7447                                                                                                                                                                                                                                                                   Deposit interest rate (%)
## 7448                                                                                                                                                                                                                                                              Real deposit interest rate (%)
## 7449                                                                                                                                                                                                                                                                      Bond interest rate (%)
## 7450                                                                                                                                                                                                                                                   International interest rate, implicit (%)
## 7451                                                                                                                                                                                                                                                                   Lending interest rate (%)
## 7452                                                                                                                                                                                                                                           Interest rate spread (lending rate minus deposit)
## 7453                                                                                                                                                                                                                                             Interest rate spread (lending rate minus LIBOR)
## 7454                                                                                                                                                                                                                                   Interest rate spread (lending rate minus deposit rate, %)
## 7455                                                                                                                                                                                                                                          Interest rate spread (lending rate minus LIBOR, %)
## 7456                                                                                                                                                                                                                                                                       Money market rate (%)
## 7457                                                                                                                                                                                                                                                                      Real interest rate (%)
## 7458                                                                                                                                                                                                                          Risk premium on lending (lending rate minus treasury bill rate, %)
## 7459                                                                                                                                                                                                                                                             Time deposits interest rate (%)
## 7460                                                                                                                                                                                                                                                           Real interest on time deposit (%)
## 7461                                                                                                                                                                                                                                                                              LIBOR rate (%)
## 7462                                                                                                                                                                                                                                                  Claims on central government, etc. (% GDP)
## 7463                                                                                                                                                                                                                                  Claims on other sectors of the domestic economy (% of GDP)
## 7464                                                                                                                                                                                                                                     Domestic credit provided by financial sector (% of GDP)
## 7465                                                                                                                                                                                                                                       Domestic credit provided by banking sector (% of GDP)
## 7466                                                                                                                                                                                                                                      Banking survey: claims on private sector (current LCU)
## 7467                                                                                                                                                                                                                                                Domestic credit to private sector (% of GDP)
## 7468                                                                                                                                                                                                                                                         Credit to private sector (% of GDP)
## 7469                                                                                                                                                                                                                                                         Liquid liabilities (M3) as % of GDP
## 7470                                                                                                                                                                                                                                                         Liquid liabilities (M3) as % of GDP
## 7471                                                                                                                                                                                                                                                         Quasi-liquid liabilities (% of GDP)
## 7472                                                                                                                                                                                                                                                               Demand deposits (current LCU)
## 7473                                                                                                                                                                                                                                                                 Time deposits (current LCU)
## 7474                                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, poorest 40% (% of population ages 15+)
## 7475                                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, richest 60% (% of population ages 15+)
## 7476                                                                                                                                                                     Account ownership at a financial institution or with a mobile-money-service provider, female (% of population ages 15+)
## 7477                                                                                                                                                                       Account ownership at a financial institution or with a mobile-money-service provider, male (% of population ages 15+)
## 7478                                                                                                                                                               Account ownership at a financial institution or with a mobile-money-service provider, older adults (% of population ages 25+)
## 7479                                                                                                                                                  Account ownership at a financial institution or with a mobile-money-service provider, primary education or less (% of population ages 15+)
## 7480                                                                                                                                                Account ownership at a financial institution or with a mobile-money-service provider, secondary education or more (% of population ages 15+)
## 7481                                                                                                                                                             Account ownership at a financial institution or with a mobile-money-service provider, young adults (% of population ages 15-24)
## 7482                                                                                                                                                                             Account ownership at a financial institution or with a mobile-money-service provider (% of population ages 15+)
## 7483                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 15+)
## 7484                                                                                                                                                                                                                       Made or received digital payments in the past year, male  (% age 15+)
## 7485                                                                                                                                                                                                             Made or received digital payments in the past year, in labor force  (% age 15+)
## 7486                                                                                                                                                                                                         Made or received digital payments in the past year, out of labor force  (% age 15+)
## 7487                                                                                                                                                                                                                     Made or received digital payments in the past year, female  (% age 15+)
## 7488                                                                                                                                                                                                             Made or received digital payments in the past year, young adults  (% age 15-24)
## 7489                                                                                                                                                                                                               Made or received digital payments in the past year, older adults  (% age 25+)
## 7490                                                                                                                                                                                                   Made or received digital payments in the past year, primary education or less (% age 15+)
## 7491                                                                                                                                                                                                 Made or received digital payments in the past year, secondary education or more (% age 15+)
## 7492                                                                                                                                                                                                        Made or received digital payments in the past year, income, poorest 40%  (% age 15+)
## 7493                                                                                                                                                                                                         Made or received digital payments in the past year, income, richest 60% (% age 15+)
## 7494                                                                                                                                                                                                                      Made or received digital payments in the past year, rural  (% age 15+)
## 7495                                                                                                                                                                                                                                          Made digital payments in the past year (% age 15+)
## 7496                                                                                                                                                                                                                                   Made digital payments in the past year, male  (% age 15+)
## 7497                                                                                                                                                                                                                          Made digital payments in the past year, in labor force (% age 15+)
## 7498                                                                                                                                                                                                                     Made digital payments in the past year, out of labor force  (% age 15+)
## 7499                                                                                                                                                                                                                                 Made digital payments in the past year, female  (% age 15+)
## 7500                                                                                                                                                                                                                         Made digital payments in the past year, young adults  (% age 15-24)
## 7501                                                                                                                                                                                                                           Made digital payments in the past year, older adults  (% age 25+)
## 7502                                                                                                                                                                                                              Made digital payments in the past year, primary education or less  (% age 15+)
## 7503                                                                                                                                                                                                            Made digital payments in the past year, secondary education or more  (% age 15+)
## 7504                                                                                                                                                                                                                    Made digital payments in the past year, income, poorest 40%  (% age 15+)
## 7505                                                                                                                                                                                                                    Made digital payments in the past year, income, richest 60%  (% age 15+)
## 7506                                                                                                                                                                                                                                  Made digital payments in the past year, rural  (% age 15+)
## 7507                                                                                                                                                                                                                                      Received digital payments in the past year (% age 15+)
## 7508                                                                                                                                                                                                                                Received digital payments in the past year, male (% age 15+)
## 7509                                                                                                                                                                                                                      Received digital payments in the past year, in labor force (% age 15+)
## 7510                                                                                                                                                                                                                  Received digital payments in the past year, out of labor force (% age 15+)
## 7511                                                                                                                                                                                                                             Received digital payments in the past year, female  (% age 15+)
## 7512                                                                                                                                                                                                                     Received digital payments in the past year, young adults  (% age 15-24)
## 7513                                                                                                                                                                                                                       Received digital payments in the past year, older adults  (% age 25+)
## 7514                                                                                                                                                                                                          Received digital payments in the past year, primary education or less  (% age 15+)
## 7515                                                                                                                                                                                                        Received digital payments in the past year, secondary education or more  (% age 15+)
## 7516                                                                                                                                                                                                                Received digital payments in the past year, income, poorest 40%  (% age 15+)
## 7517                                                                                                                                                                                                                Received digital payments in the past year, income, richest 60%  (% age 15+)
## 7518                                                                                                                                                                                                                               Received digital payments in the past year, rural (% age 15+)
## 7519                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 15+)
## 7520                                                                                                                                                                                                                      Made or received digital payments in the past year, female (% age 15+)
## 7521                                                                                                                                                                                                                        Made or received digital payments in the past year, male (% age 15+)
## 7522                                                                                                                                                                                                         Made or received digital payments in the past year, income, poorest 40% (% age 15+)
## 7523                                                                                                                                                                                                         Made or received digital payments in the past year, income, richest 60% (% age 15+)
## 7524                                                                                                                                                                                                                           Made or received digital payments in the past year (% ages 15-34)
## 7525                                                                                                                                                                                                                           Made or received digital payments in the past year (% ages 35-59)
## 7526                                                                                                                                                                                                                              Made or received digital payments in the past year (% age 60+)
## 7527                                                                                                                                                                                                                         Adjustments to foreign scheduled principal repayments (current LCU)
## 7528                                                                                                                                                                                                                                      Current budget balance, including grants (current LCU)
## 7529                                                                                                                                                                                                                                      Overall budget balance, including grants (current LCU)
## 7530                                                                                                                                                                                                                                         Overall budget balance, including grants (% of GDP)
## 7531                                                                                                                                                                                                                                         Overall budget deficit, including grants (% of GDP)
## 7532                                                                                                                                                                                                                             Overall surplus/deficit, excluding current grants (current LCU)
## 7533                                                                                                                                                                                                                                 Overall surplus/deficit, excluding all grants (current LCU)
## 7534                                                                                                                                                                                                                                           Primary balance, excluding interest (current LCU)
## 7535                                                                                                                                                                                                                               Central government debt, monetary system credit (current LCU)
## 7536                                                                                                                                                                                                                                       Central government debt, other domestic (current LCU)
## 7537                                                                                                                                                                                                                                                       External debt, end year (current US$)
## 7538                                                                                                                                                                                                                                                       External debt, end year (current LCU)
## 7539                                                                                                                                                                                                                                                         Total government debt (current LCU)
## 7540                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7541                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7542                                                                                                                                                                                                                                   Central government arrears on domestic debt (current LCU)
## 7543                                                                                                                                                                                                                                   Central government arrears on external debt (current LCU)
## 7544                                                                                                                                                                                                                                                       External borrowing, net (current LCU)
## 7545                                                                                                                                                                                                                                                            Financing from abroad (% of GDP)
## 7546                                                                                                                                                                                                                                                            Financing from abroad (% of GDP)
## 7547                                                                                                                                                                                                                                    Domestic financing, monetary system credit (current LCU)
## 7548                                                                                                                                                                                                                                                      Other domestic borrowing (current LCU)
## 7549                                                                                                                                                                                                                                                     Domestic financing, total (current LCU)
## 7550                                                                                                                                                                                                                                                        Domestic financing, total (% of GDP)
## 7551                                                                                                                                                                                                                                                              Domestic finanacing (% of GDP)
## 7552                                                                                                                                                                                                                                  Financing, including external capital grants (current LCU)
## 7553                                                                                                                                                                                                                                                          Total current grants (current LCU)
## 7554                                                                                                                                                                                                                                                       External capital grants (current LCU)
## 7555                                                                                                                                                                                                                                                                     Grants (local currency)
## 7556                                                                                                                                                                                                                                                    Interest payments (% of current revenue)
## 7557                                                                                                                                                                                                                                                               Nontax receipts (current LCU)
## 7558                                                                                                                                                                                                                                                       Nontax revenue (% of current revenue)
## 7559                                                                                                                                                                                                                                                       Nontax revenue (% of current revenue)
## 7560                                                                                                                                                                                                                                             Current revenue, excluding grants (current LCU)
## 7561                                                                                                                                                                                                                                                Current revenue, excluding grants (% of GDP)
## 7562                                                                                                                                                                                                                                        Total revenue including current grants (current LCU)
## 7563                                                                                                                                                                                                                                                            Current revenue (local currency)
## 7564                                                                                                                                                                                                                                                                  Current revenue (% of GDP)
## 7565                                                                                                                                                                                                                              Central government revenue excluding all grants  (current LCU)
## 7566                                                                                                                                                                                                                                Central government revenues, excluding all grants (% of GDP)
## 7567                                                                                                                                                                                                                             Total currrent revenues  including current grants (current LCU)
## 7568                                                                                                                                                                                                                                             Current revenue, excluding grants (current LCU)
## 7569                                                                                                                                                                                                                                                Current revenue, excluding grants (% of GDP)
## 7570                                                                                                                                                                                                                                                               Capital revenue (current LCU)
## 7571                                                                                                                                                                                                                                                                SOE external debt (% of GDP)
## 7572                                                                                                                                                                                                                                State-owned enterprises, credit (% of gross domestic credit)
## 7573                                                                                                                                                                                                                                       State-owned enterprises, economic activity (% of GDP)
## 7574                                                                                                                                                                                                                                                            SOE economic activity (% of GDP)
## 7575                                                                                                                                                                                                                                            State-owned enterprises, employment (% of total)
## 7576                                                                                                                                                                                                                                              State-owned enterprises, investment (% of GDI)
## 7577                                                                                                                                                                                                                     State-owned enterprises, net financial flows from government (% of GDP)
## 7578                                                                                                                                                                                                                                          SOE net financial flows from government (% of GDP)
## 7579                                                                                                                                                                                                                        State-owned enterprises, overall balance before transfers (% of GDP)
## 7580                                                                                                                                                                                                                                           SOE overall balance before transfers (% of total)
## 7581                                                                                                                                                                                                                                                        Privatization proceeds (current US$)
## 7582                                                                                                                                                                                                                                               Highest marginal tax rate, corporate rate (%)
## 7583                                                                                                                                                                                                                                                                  Direct taxes (current LCU)
## 7584                                                                                                                                                                                                                                                                Export duties (% of exports)
## 7585                                                                                                                                                                                                                                                            Export duties (% of tax revenue)
## 7586                                                                                                                                                                                                                                               Taxes on goods and services, GB (current LCU)
## 7587                                                                                                                                                                                                                            Taxes on goods and services (% value added of industry and srv.)
## 7588                                                                                                                                                                                                                                          Taxes on goods and services (% of current revenue)
## 7589                                                                                                                                                                                                                        Taxes on goods and services (% value added of industry and services)
## 7590                                                                                                                                                                                                                                          Taxes on goods and services (% of current revenue)
## 7591                                                                                                                                                                                                                                                 Indirect taxes less subsidies (current LCU)
## 7592                                                                                                                                                                                                                            Highest marginal tax rate, individual (on income exceeding, US$)
## 7593                                                                                                                                                                                                                                              Highest marginal tax rate, individual rate (%)
## 7594                                                                                                                                                                                                                                                                Import duties (% of imports)
## 7595                                                                                                                                                                                                                                                            Import duties (% of tax revenue)
## 7596                                                                                                                                                                                                                              Income, profit, and capital gains taxes (% of current revenue)
## 7597                                                                                                                                                                                                                                              Taxes on international trade, GB (current LCU)
## 7598                                                                                                                                                                                                                                         Taxes on international trade (% of current revenue)
## 7599                                                                                                                                                                                                                                         Taxes on international trade (% of current revenue)
## 7600                                                                                                                                                                                                                                                          Other taxes (% of current revenue)
## 7601                                                                                                                                                                                                                                                          Other taxes (% of current revenue)
## 7602                                                                                                                                                                                                                                                Social security taxes (% of current revenue)
## 7603                                                                                                                                                                                                                                                Social security taxes (% of current revenue)
## 7604                                                                                                                                                                                                                                                                   Tax revenue (current LCU)
## 7605                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7606                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7607                                                                                                                                                                                                                           Taxes on income, profits and capital gains (% of current revenue)
## 7608                                                                                                                                                                                                                               Taxes on income, profits and capital gains (% of total taxes)
## 7609                                                                                                                                                                                                                                 Adjustments to foreign scheduled debt service (current LCU)
## 7610                                                                                                                                                                                                                                     Central government debt service, external (current LCU)
## 7611                                                                                                                                                                                                                                                        Government consumption (current LCU)
## 7612                                                                                                                                                                                                                                     Goods and services expenditure (% of total expenditure)
## 7613                                                                                                                                                                                                                                                     Interest on domestic debt (current LCU)
## 7614                                                                                                                                                                                                                                                     Interest on external debt (current LCU)
## 7615                                                                                                                                                                                                                                                     Interest payment (% of current revenue)
## 7616                                                                                                                                                                                                                                                  Interest payments (% of total expenditure)
## 7617                                                                                                                                                                                                                                                                Subsidies (GFS, current LCU)
## 7618                                                                                                                                                                                                                                                    Current expenditure, total (current LCU)
## 7619                                                                                                                                                                                                                                                       Other current transfers (current LCU)
## 7620                                                                                                                                                                                                                              Subsidies and other current transfers (% of total expenditure)
## 7621                                                                                                                                                                                                                                                            Wages and salaries (current LCU)
## 7622                                                                                                                                                                                                                                                 Wages and salaries (% of total expenditure)
## 7623                                                                                                                                                                                                                                                           Defense expenditure (current LCU)
## 7624                                                                                                                                                                                                                                                              Defense expenditure (% of GDP)
## 7625                                                                                                                                                                                                                                             Total expenditure and net lending (current LCU)
## 7626                                                                                                                                                                                                                                        Expenditures for research and development (% of GNP)
## 7627                                                                                                                                                                                                                                             Research and development expenditure (% of GDP)
## 7628                                                                                                                                                                                                                                             Research and development expenditure (% of GNI)
## 7629                                                                                                                                                                                                                                                            Expenditure, total (current LCU)
## 7630                                                                                                                                                                                                                                                               Expenditure, total (% of GDP)
## 7631                                                                                                                                                                                                                                                                Total expenditure (% of GDP)
## 7632                                                                                                                                                                                                                                     Total capital expenditure and net lending (current LCU)
## 7633                                                                                                                                                                                                                                                          Budgetary investment (current LCU)
## 7634                                                                                                                                                                                                                                                           Capital expenditure (current LCU)
## 7635                                                                                                                                                                                                                                                Capital expenditure (% of total expenditure)
## 7636                                                                                                                                                                                                                                                             Capital transfers (current LCU)
## 7637                                                                                                                                                                                                                                           Net acquisition of financial assets (current LCU)
## 7638                                                                                                                                                                                                                                              Net acquisition of financial assets (% of GDP)
## 7639                                                                                                                                                                                                                                          Fiscal balance, cash surplus/deficit (current US$)
## 7640                                                                                                                                                                                                                                                          Cash surplus/deficit (current LCU)
## 7641                                                                                                                                                                                                                                                             Cash surplus/deficit (% of GDP)
## 7642                                                                                                                                                                                                                                                   Government Current Budget Balance (local)
## 7643                                                                                                                                                                                                                                            Gov. Current Budget Balance (+C&K Grants)(Local)
## 7644                                                                                                                                                                                                                                                   Government Deficit (-) or Surplus (local)
## 7645                                                                                                                                                                                                                                                Central government debt, total (current LCU)
## 7646                                                                                                                                                                                                                                                   Central government debt, total (% of GDP)
## 7647                                                                                                                                                                                                                                                   Gov. Capital Payments (+Net lend.)(Local)
## 7648                                                                                                                                                                                                                                                            Gov. Current Expenditure (Local)
## 7649                                                                                                                                                                                                                                       Net incurrence of liabilities, domestic (current LCU)
## 7650                                                                                                                                                                                                                                          Net incurrence of liabilities, domestic (% of GDP)
## 7651                                                                                                                                                                                                                                        Net incurrence of liabilities, foreign (current LCU)
## 7652                                                                                                                                                                                                                                           Net incurrence of liabilities, foreign (% of GDP)
## 7653                                                                                                                                                                                                                                          Net incurrence of liabilities, total (current LCU)
## 7654                                                                                                                                                                                                                                             Net incurrence of liabilities, total (% of GDP)
## 7655                                                                                                                                                                                                                                         Net investment in nonfinancial assets (current LCU)
## 7656                                                                                                                                                                                                                                            Net investment in nonfinancial assets (% of GDP)
## 7657                                                                                                                                                                                                                                           Net lending (+) / net borrowing (-) (current LCU)
## 7658                                                                                                                                                                                                                                              Net lending (+) / net borrowing (-) (% of GDP)
## 7659                                                                                                                                                                                                                                                          Government Current Revenue (local)
## 7660                                                                                                                                                                                                                                                      Grants and other revenue (current LCU)
## 7661                                                                                                                                                                                                                                                     Grants and other revenue (% of revenue)
## 7662                                                                                                                                                                                                                                                         Government Capital Receipts (local)
## 7663                                                                                                                                                                                                                                                          Social contributions (current LCU)
## 7664                                                                                                                                                                                                                                                         Social contributions (% of revenue)
## 7665                                                                                                                                                                                                                                                                 Total revenue (current US$)
## 7666                                                                                                                                                                                                                                                                 Total revenue (current LCU)
## 7667                                                                                                                                                                                                                                                     Revenue, excluding grants (current US$)
## 7668                                                                                                                                                                                                                                                     Revenue, excluding grants (current LCU)
## 7669                                                                                                                                                                                                                                                        Revenue, excluding grants (% of GDP)
## 7670                                                                                                                                                                                                                                                   Gov. Current Revenue (+C&K Grants)(Local)
## 7671                                                                                                                                                                                                                                                               Gov. Capital Receipts (Local)
## 7672                                                                                                                                                                                                                                                              Taxes on exports (current LCU)
## 7673                                                                                                                                                                                                                                                         Taxes on exports (% of tax revenue)
## 7674                                                                                                                                                                                                                                                   Taxes on goods and services (current LCU)
## 7675                                                                                                                                                                                                                                                  Taxes on goods and services (% of revenue)
## 7676                                                                                                                                                                                                                        Taxes on goods and services (% value added of industry and services)
## 7677                                                                                                                                                                                                                                               Customs and other import duties (current LCU)
## 7678                                                                                                                                                                                                                                          Customs and other import duties (% of tax revenue)
## 7679                                                                                                                                                                                                                                                  Taxes on international trade (current LCU)
## 7680                                                                                                                                                                                                                                                 Taxes on international trade (% of revenue)
## 7681                                                                                                                                                                                                                                                                   Other taxes (current LCU)
## 7682                                                                                                                                                                                                                                                                  Other taxes (% of revenue)
## 7683                                                                                                                                                                                                                                                                   Tax revenue (current LCU)
## 7684                                                                                                                                                                                                                                                                      Tax revenue (% of GDP)
## 7685                                                                                                                                                                                                                                    Taxes on income, profits and capital gains (current LCU)
## 7686                                                                                                                                                                                                                                   Taxes on income, profits and capital gains (% of revenue)
## 7687                                                                                                                                                                                                                               Taxes on income, profits and capital gains (% of total taxes)
## 7688                                                                                                                                                                                                                                                      Government Current Expenditure (local)
## 7689                                                                                                                                                                                                                                                         Government Capital Payments (local)
## 7690                                                                                                                                                                                                                                                     Compensation of employees (current LCU)
## 7691                                                                                                                                                                                                                                                    Compensation of employees (% of expense)
## 7692                                                                                                                                                                                                                                                    Goods and services expense (current LCU)
## 7693                                                                                                                                                                                                                                                   Goods and services expense (% of expense)
## 7694                                                                                                                                                                                                                                                             Interest payments (current LCU)
## 7695                                                                                                                                                                                                                                                            Interest payments (% of revenue)
## 7696                                                                                                                                                                                                                                                            Interest payments (% of expense)
## 7697                                                                                                                                                                                                                                                                 Other expense (current LCU)
## 7698                                                                                                                                                                                                                                                                Other expense (% of expense)
## 7699                                                                                                                                                                                                                                                                       Expense (current US$)
## 7700                                                                                                                                                                                                                                                                       Expense (current LCU)
## 7701                                                                                                                                                                                                                                                                          Expense (% of GDP)
## 7702                                                                                                                                                                                                                                                 Subsidies and other transfers (current LCU)
## 7703                                                                                                                                                                                                                                                Subsidies and other transfers (% of expense)
## 7704                                                                                                                                                                                                                                                                    10th pillar: Market size
## 7705                                                                                                                                                                                                                                                        11th pillar: Business sophistication
## 7706                                                                                                                                                                                                                                                                     12th pillar: Innovation
## 7707                                                                                                                                                                                                                                                                    1st pillar: Institutions
## 7708                                                                                                                                                                                                                                                                  2nd pillar: Infrastructure
## 7709                                                                                                                                                                                                                                                         3rd pillar: Macroeconomic stability
## 7710                                                                                                                                                                                                                                                     4th pllar: Health and primary education
## 7711                                                                                                                                                                                                                                                   5th pillar: Higher education and training
## 7712                                                                                                                                                                                                                                                         6th pillar: Goods market efficiency
## 7713                                                                                                                                                                                                                                                         7th pillar: Labor market efficiency
## 7714                                                                                                                                                                                                                                                 8th pillar: Financial market sophistication
## 7715                                                                                                                                                                                                                                                        9th pillar: Techonological readiness
## 7716                                                                                                                                                                                                                                                          Global Competitiveness Index (GCI)
## 7717                                                                                                                                                                                                          Innovation and sophistication factors (weighted index 11th pillar to 12 th pillar)
## 7718                                                                                                                                                                                                                                Basic requirements (weighted index 1st pillar to 4th pillar)
## 7719                                                                                                                                                                                                                                    Efficiency enhancers (weighted index 5th to 10th pillar)
## 7720                                                                                                                                                                                                                                                         Global Competitive Index (GCI) rank
## 7721                                                                                                                                                                                                                                                          Government Effectiveness: Estimate
## 7722                                                                                                                                                                                                                                                 Government Effectiveness: Number of Sources
## 7723                                                                                                                                                                                                                                                   Government Effectiveness: Percentile Rank
## 7724                                                                                                                                                                                                           Government Effectiveness: Percentile Rank, Lower Bound of 90% Confidence Interval
## 7725                                                                                                                                                                                                           Government Effectiveness: Percentile Rank, Upper Bound of 90% Confidence Interval
## 7726                                                                                                                                                                                                                                                    Government Effectiveness: Standard Error
## 7727                                                                                                                                                                                                             Primary government expenditures as a proportion of original approved budget (%)
## 7728                                                                                                                                                                                                                          Received wages or government transfers into an account (% age 15+)
## 7729                                                                                                                                                                                                                  Received wages or government transfers into an account, female (% age 15+)
## 7730                                                                                                                                                                                                                    Received wages or government transfers into an account, male (% age 15+)
## 7731                                                                                                                                                                                                     Received wages or government transfers into an account, income, poorest 40% (% age 15+)
## 7732                                                                                                                                                                                                     Received wages or government transfers into an account, income, richest 60% (% age 15+)
## 7733                                                                                                                                                                                                                      Received wages or government transfers into an account, (% ages 15-34)
## 7734                                                                                                                                                                                                                       Received wages or government transfers into an account (% ages 35-59)
## 7735                                                                                                                                                                                                                          Received wages or government transfers into an account (% age 60+)
## 7736                                                                                                                                                                                                                               Made payment using a mobile phone or the internet (% age 15+)
## 7737                                                                                                                                                                                                                       Made payment using a mobile phone or the internet, female (% age 15+)
## 7738                                                                                                                                                                                                                         Made payment using a mobile phone or the internet, male (% age 15+)
## 7739                                                                                                                                                                                                          Made payment using a mobile phone or the internet, income, poorest 40% (% age 15+)
## 7740                                                                                                                                                                                                          Made payment using a mobile phone or the internet, income, richest 60% (% age 15+)
## 7741                                                                                                                                                                                                                            Made payment using a mobile phone or the internet (% ages 15-34)
## 7742                                                                                                                                                                                                                            Made payment using a mobile phone or the internet (% ages 35-59)
## 7743                                                                                                                                                                                                                               Made payment using a mobile phone or the internet (% age 60+)
## 7744                                                                                                                                                                                                                                                                  Active account (% age 15+)
## 7745                                                                                                                                                                                                                                                          Active account, female (% age 15+)
## 7746                                                                                                                                                                                                                                                            Active account, male (% age 15+)
## 7747                                                                                                                                                                                                                                             Active account, income, poorest 40% (% age 15+)
## 7748                                                                                                                                                                                                                                             Active account, income, richest 60% (% age 15+)
## 7749                                                                                                                                                                                                                                                               Active account (% ages 15-34)
## 7750                                                                                                                                                                                                                                                               Active account (% ages 35-59)
## 7751                                                                                                                                                                                                                                                                  Active account (% age 60+)
## 7752                                                                                                                                                                                                                                                              Bank accounts per 1,000 adults
## 7753                                                                                                                                                                                                                                                           Bank branches per 100,000 adults 
## 7754                                                                                                                                                                                                                                                Firms with a bank loan or line of credit (%)
## 7755                                                                                                                                                                                                                                          Small firms with a bank loan or line of credit (%)
## 7756                                                                                                                                                                                                                                       Account at a formal financial institution (% age 15+)
## 7757                                                                                                                                                                                                                               Saved at a financial institution in the past year (% age 15+)
## 7758                                                                                                                                                                                                                              Loan from a financial institution in the past year (% age 15+)
## 7759                                                                                                                                                                                                                                              Account used for business purposes (% age 15+)
## 7760                                                                                                                                                                                                                                     Account used to receive government payments (% age 15+)
## 7761                                                                                                                                                                                                                                             Account used to receive remittances (% age 15+)
## 7762                                                                                                                                                                                                                                                   Account used to receive wages (% age 15+)
## 7763                                                                                                                                                                                                                                                Saved any money in the past year (% age 15+)
## 7764                                                                                                                                                                                                                                     Saved using a savings club in the past year (% age 15+)
## 7765                                                                                                                                                                                                                                                           Loan in the past year (% age 15+)
## 7766                                                                                                                                                                                                                                     Loan from a private lender in the past year (% age 15+)
## 7767                                                                                                                                                                                                                                          Loan from an employer in the past year (% age 15+)
## 7768                                                                                                                                                                                                                                      Loan through store credit in the past year (% age 15+)
## 7769                                                                                                                                                                                                                                    Loan from family or friends in the past year (% age 15+)
## 7770                                                                                                                                                                                                                                                    Checks used to make payments (% age 15+)
## 7771                                                                                                                                                                                                                                                                     Credit card (% age 15+)
## 7772                                                                                                                                                                                                                                                                      Debit card (% age 15+)
## 7773                                                                                                                                                                                                                                       Electronic payments used to make payments (% age 15+)
## 7774                                                                                                                                                                                                                                                  Mobile phone used to pay bills (% age 15+)
## 7775                                                                                                                                                                                                                                                 Mobile phone used to send money (% age 15+)
## 7776                                                                                                                                                                                                                                                                     ATMs per 100,000 adults
## 7777                                                                                                                                                                                                                         Depositing/withdrawing at least once in a typical month (% age 15+)
## 7778                                                                                                                                                                                                                                                Firms with a checking or savings account (%)
## 7779                                                                                                                                                                                                                                                Firms using banks to finance investments (%)
## 7780                                                                                                                                                                                                                                            Firms using banks to finance working capital (%)
## 7781                                                                                                                                                                                                                                                              Loans requiring collateral (%)
## 7782                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 7783                                                                                                                                                                                                                                                                Firms not needing a loan (%)
## 7784                                                                                                                                                                                                                                        Firms whose recent loan application was rejected (%)
## 7785                                                                                                                                                                                                                                                           Investments financed by banks (%)
## 7786                                                                                                                                                                                                                                                       Working capital financed by banks (%)
## 7787                                                                                                                                                                                                                               Firms identifying access to finance as a major constraint (%)
## 7788                                                                                                                                                                                                                    Value traded excluding top 10 traded companies to total value traded (%)
## 7789                                                                                                                                                                                                         Market capitalization excluding top 10 companies to total market capitalization (%)
## 7790                                                                                                                                                                                                                       Nonfinancial corporate bonds to total bonds and notes outstanding (%)
## 7791                                                                                                                                                                                                                                           Investments financed by equity or stock sales (%)
## 7792                                                                                                                                                                                                                                            Private credit by deposit money banks to GDP (%)
## 7793                                                                                                                                                                                                                                                     Deposit money banks'' assets to GDP (%)
## 7794                                                                                                                                                                                                                                           Nonbank financial institutions’ assets to GDP (%)
## 7795                                                                                                                                                                                                          Deposit money bank assets to deposit money bank assets and central bank assets (%)
## 7796                                                                                                                                                                                                                                                               Liquid liabilities to GDP (%)
## 7797                                                                                                                                                                                                                                                              Central bank assets to GDP (%)
## 7798                                                                                                                                                                                                                                                               Mutual fund assets to GDP (%)
## 7799                                                                                                                                                                                                                                                        Financial system deposits to GDP (%)
## 7800                                                                                                                                                                                                                                                    Life insurance premium volume to GDP (%)
## 7801                                                                                                                                                                                                                                                Non-life insurance premium volume to GDP (%)
## 7802                                                                                                                                                                                                                                                         Insurance company assets to GDP (%)
## 7803                                                                                                                                                                                                           Private credit by deposit money banks and other financial institutions to GDP (%)
## 7804                                                                                                                                                                                                                                                              Pension fund assets to GDP (%)
## 7805                                                                                                                                                                                                                                                Domestic credit to private sector (% of GDP)
## 7806                                                                                                                                                                                                                                                      Stock market capitalization to GDP (%)
## 7807                                                                                                                                                                                                                                                  Stock market total value traded to GDP (%)
## 7808                                                                                                                                                                                                                                     Outstanding domestic private debt securities to GDP (%)
## 7809                                                                                                                                                                                                                                      Outstanding domestic public debt securities to GDP (%)
## 7810                                                                                                                                                                                                                                Outstanding international private debt securities to GDP (%)
## 7811                                                                                                                                                                                                                                 Outstanding international public debt securities to GDP (%)
## 7812                                                                                                                                                                                                                                                        International debt issues to GDP (%)
## 7813                                                                                                                                                                                                                                               Gross portfolio equity liabilities to GDP (%)
## 7814                                                                                                                                                                                                                                                    Gross portfolio equity assets to GDP (%)
## 7815                                                                                                                                                                                                                                                 Gross portfolio debt liabilities to GDP (%)
## 7816                                                                                                                                                                                                                                                      Gross portfolio debt assets to GDP (%)
## 7817                                                                                                                                                                                                                                                  Syndicated loan issuance volume to GDP (%)
## 7818                                                                                                                                                                                                                                                   Corporate bond issuance volume to GDP (%)
## 7819                                                                                                                                                                                                                                                    Syndicated loan average maturity (years)
## 7820                                                                                                                                                                                                                                                     Corporate bond average maturity (years)
## 7821                                                                                                                                                                                                                                    Credit flows by fintech and bigtech companies to GDP (%)
## 7822                                                                                                                                                                                                                                    Credit flows by fintech and bigtech companies to GDP (%)
## 7823                                                                                                                                                                                                                                                                Bank net interest margin (%)
## 7824                                                                                                                                                                                                                                                                 Bank lending-deposit spread
## 7825                                                                                                                                                                                                                                                 Bank noninterest income to total income (%)
## 7826                                                                                                                                                                                                                                                     Bank overhead costs to total assets (%)
## 7827                                                                                                                                                                                                                                                        Bank return on assets (%, after tax)
## 7828                                                                                                                                                                                                                                                        Bank return on equity (%, after tax)
## 7829                                                                                                                                                                                                                                                               Bank cost to income ratio (%)
## 7830                                                                                                                                                                                                                                 Credit to government and state-owned enterprises to GDP (%)
## 7831                                                                                                                                                                                                                                                       Bank return on assets (%, before tax)
## 7832                                                                                                                                                                                                                                                       Bank return on equity (%, before tax)
## 7833                                                                                                                                                                                                                                                             Stock market turnover ratio (%)
## 7834                                                                                                                                                                                                                                                   Consumer price index (2010=100, December)
## 7835                                                                                                                                                                                                                                                    Consumer price index (2010=100, average)
## 7836                                                                                                                                                                                                                                                                      Bank concentration (%)
## 7837                                                                                                                                                                                                                                                                    Bank deposits to GDP (%)
## 7838                                                                                                                                                                                                                                                                                 H-statistic
## 7839                                                                                                                                                                                                                                                                                Lerner index
## 7840                                                                                                                                                                                                                                                                             Boone indicator
## 7841                                                                                                                                                                                                                                                                  5-bank asset concentration
## 7842                                                                                                                                                                                                                                          Liquid liabilities in millions USD (2000 constant)
## 7843                                                                                                                                                                                                                                               Loans from nonresident banks (net) to GDP (%)
## 7844                                                                                                                                                                                                                               Loans from nonresident banks (amounts outstanding) to GDP (%)
## 7845                                                                                                                                                                                   External loans and deposits of reporting banks vis-à-vis the banking sector (% of domestic bank deposits)
## 7846                                                                                                                                                                               External loans and deposits of reporting banks vis-à-vis the nonbanking sectors (% of domestic bank deposits)
## 7847                                                                                                                                                                                          External loans and deposits of reporting banks vis-à-vis all sectors (% of domestic bank deposits)
## 7848                                                                                                                                                                                                                                                               Remittance inflows to GDP (%)
## 7849                                                                                                                                                                                                                               Consolidated foreign claims of BIS reporting banks to GDP (%)
## 7850                                                                                                                                                                                                                                                         Foreign banks among total banks (%)
## 7851                                                                                                                                                                                                                                             Foreign bank assets among total bank assets (%)
## 7852                                                                                                                                                                                                                                            Foreign bank assets among total banks assets (%)
## 7853                                                                                                                                                                                                                                            Foreign bank assets among total banks assets (%)
## 7854                                                                                                                                                                                                                                                            Global leasing volume to GDP (%)
## 7855                                                                                                                                                                                                                                                           Total factoring volume to GDP (%)
## 7856                                                                                                                                                                                                                                             Banking crisis dummy (1=banking crisis, 0=none)
## 7857                                                                                                                                                                                                                                          Government bank assets among total bank assets (%)
## 7858                                                                                                                                                                                                                                          Government bank assets among total bank assets (%)
## 7859                                                                                                                                                                                                                                            Number of listed companies per 1,000,000 people 
## 7860                                                                                                                                                                                                                                                       Stock market return (%, year-on-year)
## 7861                                                                                                                                                                                                                                                                                Bank Z-score
## 7862                                                                                                                                                                                                                                                Bank non-performing loans to gross loans (%)
## 7863                                                                                                                                                                                                                                                            Bank capital to total assets (%)
## 7864                                                                                                                                                                                                                                                            Bank credit to bank deposits (%)
## 7865                                                                                                                                                                                                                                        Bank regulatory capital to risk-weighted assets (%) 
## 7866                                                                                                                                                                                                                                        Liquid assets to deposits and short term funding (%)
## 7867                                                                                                                                                                                                                                                       Provisions to nonperforming loans (%)
## 7868                                                                                                                                                                                                                                                                      Stock price volatility
## 7869                                                                                                                                                                                                                                                             Financial knowledge score (0-3)
## 7870                                                                                                                                                                                                                                                                      Disclosure index (0-5)
## 7871                                                                                                                                                                                                                                                              Dispute resolution index (0-1)
## 7872                                                                                                                                                                                                                                                Getting credit: Distance to frontier (0-100)
## 7873                                                                                                                                                                                                                Interoperability of ATM networks and interoperability of POS terminals (0-1)
## 7874                                                                                                                                                                                                                                                           E-money accounts per 1,000 adults
## 7875                                                                                                                                                                                                                                               Retail cashless transactions per 1,000 adults
## 7876                                                                                                                                                                                                                                      Agents of payment service providers per 100,000 adults
## 7877                                                                                                                                                                                                                                                            POS terminals per 100,000 adults
## 7878                                                                                                                                                                                                                                                                Debit cards per 1,000 adults
## 7879                                                                                                                                                                                                                                                     Value-added from Capital in GTAP10P3COD
## 7880                                                                                                                                                                                                                                 Value-added from labor in GTAP10P3COD (in USD 2014 million)
## 7881                                                                                                                                                                                                                                                   Government Deficit (-) or Surplus (local)
## 7882                                                                                                                                                                                                                                                            Control of Corruption (estimate)
## 7883                                                                                                                                                                                                                                             Control of Corruption (number of surveys/polls)
## 7884                                                                                                                                                                                                                                                      Control of Corruption (standard error)
## 7885                                                                                                                                                                                                                                                         Government Effectiveness (estimate)
## 7886                                                                                                                                                                                                                                          Government Effectiveness (number of surveys/polls)
## 7887                                                                                                                                                                                                                                                   Government Effectiveness (standard error)
## 7888                                                                                                                                                                                                                                                  Political Stability/No Violence (estimate)
## 7889                                                                                                                                                                                                                                   Political Stability/No Violence (number of surveys/polls)
## 7890                                                                                                                                                                                                                                            Political Stability/No Violence (standard error)
## 7891                                                                                                                                                                                                                                                               Regulatory Quality (estimate)
## 7892                                                                                                                                                                                                                                                Regulatory Quality (number of surveys/polls)
## 7893                                                                                                                                                                                                                                                         Regulatory Quality (standard error)
## 7894                                                                                                                                                                                                                                                                      Rule of Law (estimate)
## 7895                                                                                                                                                                                                                                                      Rule of Law (number off surveys/polls)
## 7896                                                                                                                                                                                                                                                                Rule of Law (standard error)
## 7897                                                                                                                                                                                                                                                         Corruption Perceptions Index (rank)
## 7898                                                                                                                                                                                                                                                        Corruption Perceptions Index (score)
## 7899                                                                                                                                                                                                                                                         Voice and Accountability (estimate)
## 7900                                                                                                                                                                                                                                          Voice and Accountability (number of surveys/polls)
## 7901                                                                                                                                                                                                                                                   Voice and Accountability (standard error)
## 7902                                                                                                                                                                                                                                                        Access to a mobile phone (% age 15+)
## 7903                                                                                                                                                                                                                                                Access to a mobile phone, female (% age 15+)
## 7904                                                                                                                                                                                                                                                  Access to a mobile phone, male (% age 15+)
## 7905                                                                                                                                                                                                                                   Access to a mobile phone, income, poorest 40% (% age 15+)
## 7906                                                                                                                                                                                                                                   Access to a mobile phone, income, richest 60% (% age 15+)
## 7907                                                                                                                                                                                                                                                     Access to a mobile phone (% ages 15-34)
## 7908                                                                                                                                                                                                                                                     Access to a mobile phone (% ages 35-59)
## 7909                                                                                                                                                                                                                                                        Access to a mobile phone (% age 60+)
## 7910                                                                                                                                                                                                                                                              Access to internet (% age 15+)
## 7911                                                                                                                                                                                                                                                      Access to internet, female (% age 15+)
## 7912                                                                                                                                                                                                                                                        Access to internet, male (% age 15+)
## 7913                                                                                                                                                                                                                                         Access to internet, income, poorest 40% (% age 15+)
## 7914                                                                                                                                                                                                                                         Access to internet, income, richest 60% (% age 15+)
## 7915                                                                                                                                                                                                                                                           Access to internet (% ages 15-34)
## 7916                                                                                                                                                                                                                                                           Access to internet (% ages 35-59)
## 7917                                                                                                                                                                                                                                                              Access to internet (% age 60+)
## 7918                                                                                                                                                                                                                                                                Survival Rate from Age 15-60
## 7919                                                                                                                                                                                                                                                        Survival Rate from Age 15-60, Female
## 7920                                                                                                                                                                                                                                                          Survival Rate from Age 15-60, Male
## 7921                                                                                                                                                                                                                                                                    Expected Years of School
## 7922                                                                                                                                                                                                                                                            Expected Years of School, Female
## 7923                                                                                                                                                                                                                                                              Expected Years of School, Male
## 7924                                                                                                                                                                                                                                                                      Harmonized Test Scores
## 7925                                                                                                                                                                                                                                                              Harmonized Test Scores, Female
## 7926                                                                                                                                                                                                                                                                Harmonized Test Scores, Male
## 7927                                                                                                                                                                                                                                                           Learning-Adjusted Years of School
## 7928                                                                                                                                                                                                                                                   Learning-Adjusted Years of School, Female
## 7929                                                                                                                                                                                                                                                     Learning-Adjusted Years of School, Male
## 7930                                                                                                                                                                                                                                                            Probability of Survival to Age 5
## 7931                                                                                                                                                                                                                                                    Probability of Survival to Age 5, Female
## 7932                                                                                                                                                                                                                                                      Probability of Survival to Age 5, Male
## 7933                                                                                                                                                                                                                                                       Human Capital Index (HCI) (scale 0-1)
## 7934                                                                                                                                                                                                                                               Human Capital Index (HCI), Female (scale 0-1)
## 7935                                                                                                                                                                                                                                          Human Capital Index (HCI), Lower Bound (scale 0-1)
## 7936                                                                                                                                                                                                                                  Human Capital Index (HCI), Female, Lower Bound (scale 0-1)
## 7937                                                                                                                                                                                                                                    Human Capital Index (HCI), Male, Lower Bound (scale 0-1)
## 7938                                                                                                                                                                                                                                                 Human Capital Index (HCI), Male (scale 0-1)
## 7939                                                                                                                                                                                                                                          Human Capital Index (HCI), Upper Bound (scale 0-1)
## 7940                                                                                                                                                                                                                                  Human Capital Index (HCI), Female, Upper Bound (scale 0-1)
## 7941                                                                                                                                                                                                                                    Human Capital Index (HCI), Male, Upper Bound (scale 0-1)
## 7942                                                                                                                                                                                                                                                    Fraction of Children Under 5 Not Stunted
## 7943                                                                                                                                                                                                                                            Fraction of Children Under 5 Not Stunted, Female
## 7944                                                                                                                                                                                                                                              Fraction of Children Under 5 Not Stunted, Male
## 7945                                                                                                                                                                                                                            Condom use in last intercourse (% of females at risk population)
## 7946                                                                                                                                                                                                               Condom use in last intercourse (% of females at risk population): Q1 (lowest)
## 7947                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q2
## 7948                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q3
## 7949                                                                                                                                                                                                                        Condom use in last intercourse (% of females at risk population): Q4
## 7950                                                                                                                                                                                                              Condom use in last intercourse (% of females at risk population): Q5 (highest)
## 7951                                                                                                                                                                                                                                       Prevalence of HIV, total (% of population ages 15-49)
## 7952                                                                                                                                                                                                                          Prevalence of HIV, total (% of population ages 15-49): Q1 (lowest)
## 7953                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q2
## 7954                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q3
## 7955                                                                                                                                                                                                                                   Prevalence of HIV, total (% of population ages 15-49): Q4
## 7956                                                                                                                                                                                                                         Prevalence of HIV, total (% of population ages 15-49): Q5 (highest)
## 7957                                                                                                                                                                                                                          Contraceptive prevalence, modern methods (% of females ages 15-49)
## 7958                                                                                                                                                                                                             Contraceptive prevalence, modern methods (% of females ages 15-49): Q1 (lowest)
## 7959                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q2
## 7960                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q3
## 7961                                                                                                                                                                                                                      Contraceptive prevalence, modern methods (% of females ages 15-49): Q4
## 7962                                                                                                                                                                                                            Contraceptive prevalence, modern methods (% of females ages 15-49): Q5 (highest)
## 7963                                                                                                                                                                                                                                              Mortality rate, infant (per 1,000 live births)
## 7964                                                                                                                                                                                                                                 Mortality rate, infant (per 1,000 live births): Q1 (lowest)
## 7965                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q2
## 7966                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q3
## 7967                                                                                                                                                                                                                                          Mortality rate, infant (per 1,000 live births): Q4
## 7968                                                                                                                                                                                                                                Mortality rate, infant (per 1,000 live births): Q5 (highest)
## 7969                                                                                                                                                                                                                                                         Mortality rate, under-5 (per 1,000)
## 7970                                                                                                                                                                                                                                            Mortality rate, under-5 (per 1,000): Q1 (lowest)
## 7971                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q2
## 7972                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q3
## 7973                                                                                                                                                                                                                                                     Mortality rate, under-5 (per 1,000): Q4
## 7974                                                                                                                                                                                                                                           Mortality rate, under-5 (per 1,000): Q5 (highest)
## 7975                                                                                                                                                                                                                                              Pap smear in last 5 years (% of females 30-49)
## 7976                                                                                                                                                                                                                                 Pap smear in last 5 years (% of females 30-49): Q1 (lowest)
## 7977                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q2
## 7978                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q3
## 7979                                                                                                                                                                                                                                          Pap smear in last 5 years (% of females 30-49): Q4
## 7980                                                                                                                                                                                                                                Pap smear in last 5 years (% of females 30-49): Q5 (highest)
## 7981                                                                                                                                                                                                                                        Immunization, full (% of children ages 15-23 months)
## 7982                                                                                                                                                                                                                           Immunization, full (% of children ages 15-23 months): Q1 (lowest)
## 7983                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q2
## 7984                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q3
## 7985                                                                                                                                                                                                                                    Immunization, full (% of children ages 15-23 months): Q4
## 7986                                                                                                                                                                                                                          Immunization, full (% of children ages 15-23 months): Q5 (highest)
## 7987                                                                                                                                                                                                                                     Immunization, measles (% of children ages 15-23 months)
## 7988                                                                                                                                                                                                                        Immunization, measles (% of children ages 15-23 months): Q1 (lowest)
## 7989                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q2
## 7990                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q3
## 7991                                                                                                                                                                                                                                 Immunization, measles (% of children ages 15-23 months): Q4
## 7992                                                                                                                                                                                                                       Immunization, measles (% of children ages 15-23 months): Q5 (highest)
## 7993                                                                                                                                                                                                                               Use of insecticide-treated bed nets (% of under-5 population)
## 7994                                                                                                                                                                                                                  Use of insecticide-treated bed nets (% of under-5 population): Q1 (lowest)
## 7995                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q2
## 7996                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q3
## 7997                                                                                                                                                                                                                           Use of insecticide-treated bed nets (% of under-5 population): Q4
## 7998                                                                                                                                                                                                                 Use of insecticide-treated bed nets (% of under-5 population): Q5 (highest)
## 7999                                                                                                                                                                                                        Pregnant women receiving prenatal care of at least four visits (% of pregnant women)
## 8000                                                                                                                                                                                           Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q1 (lowest)
## 8001                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q2
## 8002                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q3
## 8003                                                                                                                                                                                                    Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q4
## 8004                                                                                                                                                                                          Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q5 (highest)
## 8005                                                                                                                                                                                                 Acute respiratory infections treated (% of children under 5 with cough and rapid breathing)
## 8006                                                                                                                                                                                    Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q1 (lowest)
## 8007                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q2
## 8008                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q3
## 8009                                                                                                                                                                                             Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q4
## 8010                                                                                                                                                                                   Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q5 (highest)
## 8011                                                                                                                                                                                                                  Blood sugar measured in last 5 years (% of population at risk of diabetes)
## 8012                                                                                                                                                                                                     Blood sugar measured in last 5 years (% of population at risk of diabetes): Q1 (lowest)
## 8013                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q2
## 8014                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q3
## 8015                                                                                                                                                                                                              Blood sugar measured in last 5 years (% of population at risk of diabetes): Q4
## 8016                                                                                                                                                                                                    Blood sugar measured in last 5 years (% of population at risk of diabetes): Q5 (highest)
## 8017                                                                                                                                                                                                                                                               Mean BMI, female (ages 15-49)
## 8018                                                                                                                                                                                                                                                  Mean BMI, female (ages 15-49): Q1 (lowest)
## 8019                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q2
## 8020                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q3
## 8021                                                                                                                                                                                                                                                           Mean BMI, female (ages 15-49): Q4
## 8022                                                                                                                                                                                                                                                 Mean BMI, female (ages 15-49): Q5 (highest)
## 8023                                                                                                                                                                                                                                                                  Mean BMI, adults (age 18+)
## 8024                                                                                                                                                                                                                                                                  Mean BMI, female (age 18+)
## 8025                                                                                                                                                                                                                                                     Mean BMI, female (age 18+): Q1 (lowest)
## 8026                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q2
## 8027                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q3
## 8028                                                                                                                                                                                                                                                              Mean BMI, female (age 18+): Q4
## 8029                                                                                                                                                                                                                                                    Mean BMI, female (age 18+): Q5 (highest)
## 8030                                                                                                                                                                                                                                                     Mean BMI, adults (age 18+): Q1 (lowest)
## 8031                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q2
## 8032                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q3
## 8033                                                                                                                                                                                                                                                              Mean BMI, adults (age 18+): Q4
## 8034                                                                                                                                                                                                                                                    Mean BMI, adults (age 18+): Q5 (highest)
## 8035                                                                                                                                                                                                                                                                    Mean BMI, male (age 18+)
## 8036                                                                                                                                                                                                                                                       Mean BMI, male (age 18+): Q1 (lowest)
## 8037                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q2
## 8038                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q3
## 8039                                                                                                                                                                                                                                                                Mean BMI, male (age 18+): Q4
## 8040                                                                                                                                                                                                                                                      Mean BMI, male (age 18+): Q5 (highest)
## 8041                                                                                                                                                                                                                         Blood pressure measured in last 12 months (% of population age 18+)
## 8042                                                                                                                                                                                                            Blood pressure measured in last 12 months (% of population age 18+): Q1 (lowest)
## 8043                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q2
## 8044                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q3
## 8045                                                                                                                                                                                                                     Blood pressure measured in last 12 months (% of population age 18+): Q4
## 8046                                                                                                                                                                                                           Blood pressure measured in last 12 months (% of population age 18+): Q5 (highest)
## 8047                                                                                                                                                                                                                                      Mean diastolic blood pressure, adult population (mmHg)
## 8048                                                                                                                                                                                                                         Mean diastolic blood pressure, adult population (mmHg): Q1 (lowest)
## 8049                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q2
## 8050                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q3
## 8051                                                                                                                                                                                                                                  Mean diastolic blood pressure, adult population (mmHg): Q4
## 8052                                                                                                                                                                                                                        Mean diastolic blood pressure, adult population (mmHg): Q5 (highest)
## 8053                                                                                                                                                                                                        High blood pressure or being treated for high blood pressure (% of adult population)
## 8054                                                                                                                                                                                           High blood pressure or being treated for high blood pressure (% of adult population): Q1 (lowest)
## 8055                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q2
## 8056                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q3
## 8057                                                                                                                                                                                                    High blood pressure or being treated for high blood pressure (% of adult population): Q4
## 8058                                                                                                                                                                                          High blood pressure or being treated for high blood pressure (% of adult population): Q5 (highest)
## 8059                                                                                                                                                                                                                                       Mean systolic blood pressure, adult population (mmHg)
## 8060                                                                                                                                                                                                                          Mean systolic blood pressure, adult population (mmHg): Q1 (lowest)
## 8061                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q2
## 8062                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q3
## 8063                                                                                                                                                                                                                                   Mean systolic blood pressure, adult population (mmHg): Q4
## 8064                                                                                                                                                                                                                         Mean systolic blood pressure, adult population (mmHg): Q5 (highest)
## 8065                                                                                                                                                                                                                                     Treated for high blood pressure (% of adult population)
## 8066                                                                                                                                                                                                                        Treated for high blood pressure (% of adult population): Q1 (lowest)
## 8067                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q2
## 8068                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q3
## 8069                                                                                                                                                                                                                                 Treated for high blood pressure (% of adult population): Q4
## 8070                                                                                                                                                                                                                       Treated for high blood pressure (% of adult population): Q5 (highest)
## 8071                                                                                                                                                                                                                                        Births attended by skilled health staff (% of total)
## 8072                                                                                                                                                                                                                           Births attended by skilled health staff (% of total): Q1 (lowest)
## 8073                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q2
## 8074                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q3
## 8075                                                                                                                                                                                                                                    Births attended by skilled health staff (% of total): Q4
## 8076                                                                                                                                                                                                                          Births attended by skilled health staff (% of total): Q5 (highest)
## 8077                                                                                                                                                                                                                                                 Mean cholesterol, adult population (mmol/L)
## 8078                                                                                                                                                                                                               High cholesterol or on treatment for high cholesterol (% of adult population)
## 8079                                                                                                                                                                                                       Cholesterol measured in last five years (% of population at risk of high cholesterol)
## 8080                                                                                                                                                                                          Cholesterol measured in last five years (% of population at risk of high cholesterol): Q1 (lowest)
## 8081                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q2
## 8082                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q3
## 8083                                                                                                                                                                                                   Cholesterol measured in last five years (% of population at risk of high cholesterol): Q4
## 8084                                                                                                                                                                                         Cholesterol measured in last five years (% of population at risk of high cholesterol): Q5 (highest)
## 8085                                                                                                                                                                                                                        Treated for raised blood glucose or diabetes (% of adult population)
## 8086                                                                                                                                                                                                           Treated for raised blood glucose or diabetes (% of adult population): Q1 (lowest)
## 8087                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q2
## 8088                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q3
## 8089                                                                                                                                                                                                                    Treated for raised blood glucose or diabetes (% of adult population): Q4
## 8090                                                                                                                                                                                                          Treated for raised blood glucose or diabetes (% of adult population): Q5 (highest)
## 8091                                                                                                                                                                                                                                       Mean fasting blood glucose, adult population (mmol/L)
## 8092                                                                                                                                                                                                                                          Impaired fasting glycaemia (% of adult population)
## 8093                                                                                                                                                                                                                                                  Mean height in meters, female, (age 15-49)
## 8094                                                                                                                                                                                                                                     Mean height in meters, female, (age 15-49): Q1 (lowest)
## 8095                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q2
## 8096                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q3
## 8097                                                                                                                                                                                                                                              Mean height in meters, female, (age 15-49): Q4
## 8098                                                                                                                                                                                                                                    Mean height in meters, female, (age 15-49): Q5 (highest)
## 8099                                                                                                                                                                                                                                                     Mean height in meters, adults (age 18+)
## 8100                                                                                                                                                                                                                                                     Mean height in meters, female (age 18+)
## 8101                                                                                                                                                                                                                                        Mean height in meters, female (age 18+): Q1 (lowest)
## 8102                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q2
## 8103                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q3
## 8104                                                                                                                                                                                                                                                 Mean height in meters, female (age 18+): Q4
## 8105                                                                                                                                                                                                                                       Mean height in meters, female (age 18+): Q5 (highest)
## 8106                                                                                                                                                                                                                                                       Mean height in meters, male (age 18+)
## 8107                                                                                                                                                                                                                                          Mean height in meters, male (age 18+): Q1 (lowest)
## 8108                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q2
## 8109                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q3
## 8110                                                                                                                                                                                                                                                   Mean height in meters, male (age 18+): Q4
## 8111                                                                                                                                                                                                                                         Mean height in meters, male (age 18+): Q5 (highest)
## 8112                                                                                                                                                                                                                                        Mean height in meters, adults (age 18+): Q1 (lowest)
## 8113                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q2
## 8114                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q3
## 8115                                                                                                                                                                                                                                                 Mean height in meters, adults (age 18+): Q4
## 8116                                                                                                                                                                                                                                       Mean height in meters, adults (age 18+): Q5 (highest)
## 8117                                                                                                                                                                                                                                  Inpatient care use in last 12 months (% of population 18+)
## 8118                                                                                                                                                                                                                     Inpatient care use in last 12 months (% of population 18+): Q1 (lowest)
## 8119                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q2
## 8120                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q3
## 8121                                                                                                                                                                                                                              Inpatient care use in last 12 months (% of population 18+): Q4
## 8122                                                                                                                                                                                                                    Inpatient care use in last 12 months (% of population 18+): Q5 (highest)
## 8123                                                                                                                                                                                                                           Prevalence of underweight, weight for age (% of children under 5)
## 8124                                                                                                                                                                                                              Prevalence of underweight, weight for age (% of children under 5): Q1 (lowest)
## 8125                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q2
## 8126                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q3
## 8127                                                                                                                                                                                                                       Prevalence of underweight, weight for age (% of children under 5): Q4
## 8128                                                                                                                                                                                                             Prevalence of underweight, weight for age (% of children under 5): Q5 (highest)
## 8129                                                                                                                                                                                                                                           Mammography in last 2 years, (% of females 50-69)
## 8130                                                                                                                                                                                                                              Mammography in last 2 years, (% of females 50-69): Q1 (lowest)
## 8131                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q2
## 8132                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q3
## 8133                                                                                                                                                                                                                                       Mammography in last 2 years, (% of females 50-69): Q4
## 8134                                                                                                                                                                                                                             Mammography in last 2 years, (% of females 50-69): Q5 (highest)
## 8135                                                                                                                                                                                                                             Prevalence of obesity, female, BMI > 30 (% of population 15-49)
## 8136                                                                                                                                                                                                                Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q1 (lowest)
## 8137                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q2
## 8138                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q3
## 8139                                                                                                                                                                                                                         Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q4
## 8140                                                                                                                                                                                                               Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q5 (highest)
## 8141                                                                                                                                                                                                                               Prevalence of obesity, female, BMI > 30 (% of population 18+)
## 8142                                                                                                                                                                                                                  Prevalence of obesity, female, BMI > 30 (% of population 18+): Q1 (lowest)
## 8143                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q2
## 8144                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q3
## 8145                                                                                                                                                                                                                           Prevalence of obesity, female, BMI > 30 (% of population 18+): Q4
## 8146                                                                                                                                                                                                                 Prevalence of obesity, female, BMI > 30 (% of population 18+): Q5 (highest)
## 8147                                                                                                                                                                                                                                 Prevalence of obesity, male, BMI > 30 (% of population 18+)
## 8148                                                                                                                                                                                                                    Prevalence of obesity, male, BMI > 30 (% of population 18+): Q1 (lowest)
## 8149                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q2
## 8150                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q3
## 8151                                                                                                                                                                                                                             Prevalence of obesity, male, BMI > 30 (% of population 18+): Q4
## 8152                                                                                                                                                                                                                   Prevalence of obesity, male, BMI > 30 (% of population 18+): Q5 (highest)
## 8153                                                                                                                                                                                                                                       Prevalence of obesity, BMI > 30 (% of population 18+)
## 8154                                                                                                                                                                                                                          Prevalence of obesity, BMI > 30 (% of population 18+): Q1 (lowest)
## 8155                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q2
## 8156                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q3
## 8157                                                                                                                                                                                                                                   Prevalence of obesity, BMI > 30 (% of population 18+): Q4
## 8158                                                                                                                                                                                                                         Prevalence of obesity, BMI > 30 (% of population 18+): Q5 (highest)
## 8159                                                                                                                                                                                                                                 Diarrhea treatment (% of children under 5 who received ORS)
## 8160                                                                                                                                                                                                                    Diarrhea treatment (% of children under 5 who received ORS): Q1 (lowest)
## 8161                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q2
## 8162                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q3
## 8163                                                                                                                                                                                                                             Diarrhea treatment (% of children under 5 who received ORS): Q4
## 8164                                                                                                                                                                                                                   Diarrhea treatment (% of children under 5 who received ORS): Q5 (highest)
## 8165                                                                                                                                                                                                                     Prevalence of overweight, female, BMI > 25 (% of population ages 15-49)
## 8166                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q1 (lowest)
## 8167                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q2
## 8168                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q3
## 8169                                                                                                                                                                                                                 Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q4
## 8170                                                                                                                                                                                                       Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q5 (highest)
## 8171                                                                                                                                                                                                                            Prevalence of overweight, female, BMI > 25 (% of population 18+)
## 8172                                                                                                                                                                                                               Prevalence of overweight, female, BMI > 25 (% of population 18+): Q1 (lowest)
## 8173                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q2
## 8174                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q3
## 8175                                                                                                                                                                                                                        Prevalence of overweight, female, BMI > 25 (% of population 18+): Q4
## 8176                                                                                                                                                                                                              Prevalence of overweight, female, BMI > 25 (% of population 18+): Q5 (highest)
## 8177                                                                                                                                                                                                                              Prevalence of overweight, male, BMI > 25 (% of population 18+)
## 8178                                                                                                                                                                                                                 Prevalence of overweight, male, BMI > 25 (% of population 18+): Q1 (lowest)
## 8179                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q2
## 8180                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q3
## 8181                                                                                                                                                                                                                          Prevalence of overweight, male, BMI > 25 (% of population 18+): Q4
## 8182                                                                                                                                                                                                                Prevalence of overweight, male, BMI > 25 (% of population 18+): Q5 (highest)
## 8183                                                                                                                                                                                                                                    Prevalence of overweight, BMI > 25 (% of population 18+)
## 8184                                                                                                                                                                                                                       Prevalence of overweight, BMI > 25 (% of population 18+): Q1 (lowest)
## 8185                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q2
## 8186                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q3
## 8187                                                                                                                                                                                                                                Prevalence of overweight, BMI > 25 (% of population 18+): Q4
## 8188                                                                                                                                                                                                                      Prevalence of overweight, BMI > 25 (% of population 18+): Q5 (highest)
## 8189                                                                                                                                                                                                                              Prevalence of stunting, height for age (% of children under 5)
## 8190                                                                                                                                                                                                                 Prevalence of stunting, height for age (% of children under 5): Q1 (lowest)
## 8191                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q2
## 8192                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q3
## 8193                                                                                                                                                                                                                          Prevalence of stunting, height for age (% of children under 5): Q4
## 8194                                                                                                                                                                                                                Prevalence of stunting, height for age (% of children under 5): Q5 (highest)
## 8195                                                                                                                                                                  Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%)
## 8196                                                                                                                                                     Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8197                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q2
## 8198                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q3
## 8199                                                                                                                                                              Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q4
## 8200                                                                                                                                                    Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8201                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $1.90 poverty line
## 8202                                                                                                                                                                      Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8203                                                                                                                                                         Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8204                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8205                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8206                                                                                                                                                                  Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8207                                                                                                                                                        Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8208                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $3.20 poverty line
## 8209                                                                                                                                                                      Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8210                                                                                                                                                         Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8211                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8212                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8213                                                                                                                                                                  Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8214                                                                                                                                                        Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8215                                                                                                                                                                                                 Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $5.50 poverty line
## 8216                                                                                                                                                                      Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8217                                                                                                                                                         Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8218                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8219                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8220                                                                                                                                                                  Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8221                                                                                                                                                        Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8222                                                                                                                                                                                                Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $21.70 poverty line
## 8223                                                                                                                                                                     Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 8224                                                                                                                                                        Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest)
## 8225                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2
## 8226                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3
## 8227                                                                                                                                                                 Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4
## 8228                                                                                                                                                       Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest)
## 8229                                                                     Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)
## 8230                                         Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q1 (lowest)
## 8231                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q2
## 8232                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q3
## 8233                                                  Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q4
## 8234                                        Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)               : Q5 (highest)
## 8235                                                                                                                                                                                                                        Mean household per capita out-of-pocket health spending ($ 2011 PPP)
## 8236                                                                                                                                                                                                     Mean share of household consumption or income used on out-of-pocket health spending (%)
## 8237                                                                                                                                                                                        Mean share of household consumption or income used on out-of-pocket health spending (%): Q1 (lowest)
## 8238                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q2
## 8239                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q3
## 8240                                                                                                                                                                                                 Mean share of household consumption or income used on out-of-pocket health spending (%): Q4
## 8241                                                                                                                                                                                       Mean share of household consumption or income used on out-of-pocket health spending (%): Q5 (highest)
## 8242                                                                                                                                                             Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%)
## 8243                                                                                                                                                Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest)
## 8244                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q2
## 8245                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q3
## 8246                                                                                                                                                         Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q4
## 8247                                                                                                                                               Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest)
## 8248                                                                                                                                                             Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%)
## 8249                                                                                                                                                Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest)
## 8250                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q2
## 8251                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q3
## 8252                                                                                                                                                         Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q4
## 8253                                                                                                                                               Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest)
## 8254                                                                                                                                                                                                                                      Unmet need for contraception (% of females ages 15-49)
## 8255                                                                                                                                                                                                                         Unmet need for contraception (% of females ages 15-49): Q1 (lowest)
## 8256                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q2
## 8257                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q3
## 8258                                                                                                                                                                                                                                  Unmet need for contraception (% of females ages 15-49): Q4
## 8259                                                                                                                                                                                                                        Unmet need for contraception (% of females ages 15-49): Q5 (highest)
## 8260                                                                                                                                                                                                                                 Predictability of Transfers from Higher Level of Government
## 8261                                                                                                                           (i) Annual deviation of actual total HLG transfers from the original total estimated amount provided by HLG to the SN entity for inclusion in the latter’s budget
## 8262                                                                                                                                                                                                             (ii) Annual variance between actual and estimated transfers of earmarked grants
## 8263                                                                                                            (iii) In-year timeliness of transfers from HLG (compliance with timetables for in-year distribution of disbursements agreed within one month of the start of the SN fiscal year)
## 8264                                                                                                                                                                                                                            Household Access to Electricity: Total (in % of total household)
## 8265                                                                                                                                                                                                                                    Household Access to Safe Water (in % of total household)
## 8266                                                                                                                                                                                                                   Household Access to Fixed Line Phone Connection (in % of total Household)
## 8267                                                                                                                                                                                                                               Household Access to safe Sanitation (in % of total Household)
## 8268                                                                                                                                                                                                                                 Monthly Per Capita Household Education Expenditure (in IDR)
## 8269                                                                                                                                                                                                                                    Monthly Per Capita Household Health Expenditure (in IDR)
## 8270                                                                                                                                                                                                                                                   Household per capita expenditure (in IDR)
## 8271                                                                                                                                                                                                          Monthly Per Capita TOTAL Household Expenditure for The Poorest 20 percent (in IDR)
## 8272                                                                                                                                                                                                                                                                     ATMs per 100,000 adults
## 8273                                                                                                                                                                                                                                                                 Branches per 100,000 adults
## 8274                                                                                                                                                                                                                                                           Deposit accounts per 1,000 adults
## 8275                                                                                                                                                                                                                        SME deposit accounts (as a % of non-financial corporation borrowers)
## 8276                                                                                                                                                                                                                           SME loan accounts (as a % of non-financial corporation borrowers)
## 8277                                                                                                                                                                                                                                                     Mobile agent outlets per 100,000 adults
## 8278                                                                                                                                                                                                                                                Mobile money transactions per 100,000 adults
## 8279                                                                                                                                                                                                                                                     Open Budget Index Overall Country Score
## 8280                                                                                                                                                                                                             Ease of doing business score (0 = lowest performance to 100 = best performance)
## 8281                                                                                                                                                                                                                                              Protecting investors, director liability index
## 8282                                                                                                                                                                                                               Business extent of disclosure index (0=less disclosure to 10=more disclosure)
## 8283                                                                                                                                                                                                                                  Global: Ease of doing business score (DB10-14 methodology)
## 8284                                                                                                                                                                                                                                             Ease of doing business score (DB15 methodology)
## 8285                                                                                                                                                                                                                                     Global: Ease of doing business score (DB15 methodology)
## 8286                                                                                                                                                                                                                                  Global: Ease of doing business score (DB17-20 methodology)
## 8287                                                                                                                                                                                                                          Ease of doing business rank (1=most business-friendly regulations)
## 8288                                                                                                                                                                                                                                             Protecting investors, investor protection index
## 8289                                                                                                                                                                                                                        New business density (new registrations per 1,000 people ages 15-64)
## 8290                                                                                                                                                                                                                                                          New businesses registered (number)
## 8291                                                                                                                                                                                                                                       Business entry rate (new registrations as % of total)
## 8292                                                                                                                                                                                                                                               Protecting investors, shareholder suits index
## 8293                                                                                                                                                                                                                                                        Total businesses registered (number)
## 8294                                                                                                                                                                                                                                                                 Protecting investors (rank)
## 8295                                                                                                                                                                                                                                                      Closing a business, cost (% of estate)
## 8296                                                                                                                                                                                                                                                            Closing a business, time (years)
## 8297                                                                                                                                                                                                                                     Closing a business, recovery rate (cents on the dollar)
## 8298                                                                                                                                                                                                                                                                   Closing a business (rank)
## 8299                                                                                                                                                                                                                      Corruption (% of managers surveyed ranking this as a major constraint)
## 8300                                                                                                                                                                                                                           Crime (% of managers surveyed ranking this as a major constraint)
## 8301                                                                                                                                                                                                                     Electricity (% of managers surveyed ranking this as a major constraint)
## 8302                                                                                                                                                                                                                         Finance (% of managers surveyed ranking this as a major constraint)
## 8303                                                                                                                                                                                                                                    Firms that share or own their own generator (% of firms)
## 8304                                                                                                                                                                                                                                                               Days to Obtain Import License
## 8305                                                                                                                                                                                                       Practices Informal Sector (% of managers surveyed ranking this as a major constraint)
## 8306                                                                                                                                                                                                                  Access to Land (% of managers surveyed ranking this as a major constraint)
## 8307                                                                                                                                                                                                               Labor regulations (% of managers surveyed ranking this as a major constraint)
## 8308                                                                                                                                                                                                                    Labor skills (% of managers surveyed ranking this as a major constraint)
## 8309                                                                                                                                                                                                                          Courts (% of managers surveyed ranking this as a major constraint)
## 8310                                                                                                                                                                                                              Licenses & Permits (% of managers surveyed ranking this as a major constraint)
## 8311                                                                                                                                                                                                            Losses Due to Theft, Robbery, Vandalism, and Arson Against the Firm (% of Sales)
## 8312                                                                                                                                                                                                                                                  Days to Obtain Construction-related Permit
## 8313                                                                                                                                                                                                              Policy uncertainty (% of managers surveyed ranking this as a major constraint)
## 8314                                                                                                                                                                                                              Tax administration (% of managers surveyed ranking this as a major constraint)
## 8315                                                                                                                                                                                                                       Tax rates (% of managers surveyed ranking this as a major constraint)
## 8316                                                                                                                                                                                                     Customs & trade regulations (% of managers surveyed ranking this as a major constraint)
## 8317                                                                                                                                                                                                                  Transportation (% of managers surveyed ranking this as a major constraint)
## 8318                                                                                                                                                                                        Dealing with construction permits: Liability and insurance regimes index (0-2) (DB16-20 methodology)
## 8319                                                                                                                                                                                            Dealing with construction permits: Professional certifications index (0-4) (DB16-20 methodology)
## 8320                                                                                                                                                                                      Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology) - Score
## 8321                                                                                                                                                                                                                              Dealing with construction permits: Cost (% of Warehouse value)
## 8322                                                                                                                                                                                                                      Dealing with construction permits: Cost (% of Warehouse value) - Score
## 8323                                                                                                                                                                                                                             Dealing with construction permits (DB06-15 methodology) - Score
## 8324                                                                                                                                                                                                                             Dealing with construction permits (DB16-20 methodology) - Score
## 8325                                                                                                                                                                                                                                      Dealing with construction permits: Procedures (number)
## 8326                                                                                                                                                                                                                              Dealing with construction permits: Procedures (number) - Score
## 8327                                                                                                                                                                                        Dealing with construction permits: Quality of building regulations index (0-2) (DB16-20 methodology)
## 8328                                                                                                                                                                                     Dealing with construction permits: Quality control after construction index (0-3) (DB16-20 methodology)
## 8329                                                                                                                                                                                    Dealing with construction permits: Quality control before construction index (0-1) (DB16-20 methodology)
## 8330                                                                                                                                                                                    Dealing with construction permits: Quality control during construction index (0-3) (DB16-20 methodology)
## 8331                                                                                                                                                                                                              Rank: Dealing with construction permits (1=most business-friendly regulations)
## 8332                                                                                                                                                                                                                                              Dealing with construction permits: Time (days)
## 8333                                                                                                                                                                                                                                     Dealing with construction permits: Time (days)  - Score
## 8334                                                                                                                                                                                                                            Expected to give gifts to get a Construction Permit (% of firms)
## 8335                                                                                                                                                                                                                                         Depth of credit information index (0=low to 8=high)
## 8336                                                                                                                                                                                                                                                          Getting credit, legal rights index
## 8337                                                                                                                                                                                                                                 Private credit bureau coverage (borrowers per 1,000 adults)
## 8338                                                                                                                                                                                                                                                Private credit bureau coverage (% of adults)
## 8339                                                                                                                                                                                                                                Public credit registry coverage (borrowers per 1,000 adults)
## 8340                                                                                                                                                                                                                                               Public credit registry coverage (% of adults)
## 8341                                                                                                                                                                                                                                                                       Getting credit (rank)
## 8342                                                                                                                                                                                                                                            Getting Credit total score (DB05-14 methodology)
## 8343                                                                                                                                                                                                                                            Getting Credit total score (DB15-20 methodology)
## 8344                                                                                                                                                                                                                                                Getting credit (DB05-14 methodology) - Score
## 8345                                                                                                                                                                                                                                                Getting credit (DB15-20 methodology) - Score
## 8346                                                                                                                                                                                                                                 Rank: Getting credit (1=most business-friendly regulations)
## 8347                                                                                                                                                                                                               Getting credit: Depth of credit information index (0-6) (DB05-14 methodology)
## 8348                                                                                                                                                                                                       Getting credit: Depth of credit information index (0-6) (DB05-14 methodology) - Score
## 8349                                                                                                                                                                                                               Getting credit: Depth of credit information index (0-8) (DB15-20 methodology)
## 8350                                                                                                                                                                                                       Getting credit: Depth of credit information index (0-8) (DB15-20 methodology) - Score
## 8351                                                                                                                                                                                                         Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology) - Score
## 8352                                                                                                                                                                                                         Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology) - Score
## 8353                                                                                                                                                                                                                 Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology)
## 8354                                                                                                                                                                                                                 Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology)
## 8355                                                                                                                                                                                                                                        Getting credit: Credit bureau coverage (% of adults)
## 8356                                                                                                                                                                                                                                      Getting credit: Credit registry coverage (% of adults)
## 8357                                                                                                                                                                                                                                        Average time to clear exports through customs (days)
## 8358                                                                                                                                                                                                                                           Average time to clear imports from customs (days)
## 8359                                                                                                                                                                                              Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology)
## 8360                                                                                                                                                                                                            Products shipped to supply domestic markets lost due to breakage or spoilage (%)
## 8361                                                                                                                                                                                                                           Products shipped to supply domestic markets lost due to theft (%)
## 8362                                                                                                                                                                                                                                           Getting electricity (DB10-15 methodology) - Score
## 8363                                                                                                                                                                                                                                           Getting electricity (DB16-20 methodology) - Score
## 8364                                                                                                                                                                                                                            Rank: Getting electricity (1=most business-friendly regulations)
## 8365                                                                                                                                                                                                                       Getting electricity: Cost to get electricity (% of income per capita)
## 8366                                                                                                                                                                                                               Getting electricity: Cost to get electricity (% of income per capita) - Score
## 8367                                                                                                                                                                                                Getting electricity: Communication of tariffs and tariff changes (0-1) (DB16-20 methodology)
## 8368                                                                                                                                                                                                                                              Time to obtain an electrical connection (days)
## 8369                                                                                                                                                                                                                                                              Electricity from Generator (%)
## 8370                                                                                                                                                                                                                         Expected to give gifts to get an electrical connection (% of firms)
## 8371                                                                                                                                                                                             Getting electricity: Financial deterrents aimed at limiting outages (0-1) (DB16-20 methodology)
## 8372                                                                                                                                                                                                          Getting electricity: Mechanisms for monitoring outages (0-1) (DB16-20 methodology)
## 8373                                                                                                                                                                                                                                          Power outages in firms in a typical month (number)
## 8374                                                                                                                                                                                                                                                                   Electrical outages (days)
## 8375                                                                                                                                                                                Getting electricity: Total duration and frequency of outages per customer a year (0-3) (DB16-20 methodology)
## 8376                                                                                                                                                                                                                                                   Average duration of power outages (hours)
## 8377                                                                                                                                                                                                                Getting electricity: Minimum outage time (in minutes)  (DB16-20 methodology)
## 8378                                                                                                                                                                                                                                          Firms experiencing electrical outages (% of firms)
## 8379                                                                                                                                                                                                          Getting electricity: Price of electricity (US cents per kWh) (DB16-20 methodology)
## 8380                                                                                                                                                                                                                                                    Getting electricity: Procedures (number)
## 8381                                                                                                                                                                                                                                            Getting electricity: Procedures (number) - Score
## 8382                                                                                                                                                                                                                      Getting electricity: Regulatory monitoring (0-1) (DB16-20 methodology)
## 8383                                                                                                                                                                                                           Getting electricity: Mechanisms for restoring service (0-1) (DB16-20 methodology)
## 8384                                                                                                                                                                                     Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology)
## 8385                                                                                                                                                                             Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology) - Score
## 8386                                                                                                                                                                                               Getting electricity: System average interruption duration index (SAIDI) (DB16-20 methodology)
## 8387                                                                                                                                                                                              Getting electricity: System average interruption frequency index (SAIFI) (DB16-20 methodology)
## 8388                                                                                                                                                                                                                                                     Time required to get electricity (days)
## 8389                                                                                                                                                                                                                                                    Getting electricity: Time (days) - Score
## 8390                                                                                                                                                                                                                                 Cost to get electricity connection (% of income per capita)
## 8391                                                                                                                                                                                                                                             Procedures required to get electricity (number)
## 8392                                                                                                                                                                                                                                                     Time required to get electricity (days)
## 8393                                                                                                                                                                                                                                                                  Getting electricity (rank)
## 8394                                                                                                                                                                                                                                                                Firing cost (weeks of wages)
## 8395                                                                                                                                                                                                                                                       Employees offered formal training (%)
## 8396                                                                                                                                                                                                                                                          Cost to export (US$ per container)
## 8397                                                                                                                                                                                                                                                     Cost to export, border compliance (US$)
## 8398                                                                                                                                                                                                                                                Cost to export, documentary compliance (US$)
## 8399                                                                                                                                                                                                                                                                Documents to export (number)
## 8400                                                                                                                                                                                                                                                                       Time to export (days)
## 8401                                                                                                                                                                                                                                                   Time to export, border compliance (hours)
## 8402                                                                                                                                                                                                                                              Time to export, documentary compliance (hours)
## 8403                                                                                                                                                                                                                                       Firms with a Checking or Savings Account (% of firms)
## 8404                                                                                                                                                                                                                                                                         Age of firm (years)
## 8405                                                                                                                                                                                                             Firms with annual Financial Statement reviewed by External Auditor (% of firms)
## 8406                                                                                                                                                                                                                                  Firms using banks to finance working capital (% of firms) 
## 8407                                                                                                                                                                                                                                        Firms using banks to finance investment (% of firms)
## 8408                                                                                                                                                                                                     Bribery depth (% of public transactions where a gift or informal payment was requested)
## 8409                                                                                                                                                                                                        Bribery incidence (percent of firms experiencing at least one bribe payment request)
## 8410                                                                                                                                                                                                              Bribery incidence (% of firms experiencing at least one bribe payment request)
## 8411                                                                                                                                                                                                                                     Firms competing against unregistered firms (% of firms)
## 8412                                                                                                                                                                                        Firms identifying practices of competitors in the Informal Sector as a major constraint (% of firms)
## 8413                                                                                                                                                                                                                             Firms identifying corruption as a major constraint (% of firms)
## 8414                                                                                                                                                                                                                      Percent of firms expected to give gifts in meetings with tax officials
## 8415                                                                                                                                                                                                                         Percent of firms expected to give gifts to get an operating license
## 8416                                                                                                                                                                                                                               Percent of firms identifying corruption as a major constraint
## 8417                                                                                                                                                                                                                       Percent of firms expected to give gifts to secure government contract
## 8418                                                                                                                                                                                                                Value of gift expected to secure a government contract (% of contract value)
## 8419                                                                                                                                                                                                           Percent of firms expected to give gifts to public officials "to get things done" 
## 8420                                                                                                                                                                                                                     Percent of firms expected to give gifts to get an electrical connection
## 8421                                                                                                                                                                                                                           Percent of firms expected to give gifts to get a water connection
## 8422                                                                                                                                                                                                                        Percent of firms expected to give gifts to get a construction permit
## 8423                                                                                                                                                                                                                           Percent of firms expected to give gifts to get an import license 
## 8424                                                                                                                                                                                               Percent of firms identifying the courts system as a major constraint                         
## 8425                                                                                                                                                                                                                                          Informal payments to public officials (% of firms)
## 8426                                                                                                                                                                                                                            Dealing with construction permits, cost (% of income per capita)
## 8427                                                                                                                                                                                                                 Firms with Line of Credit or Loans from Financial Institutions (% of firms)
## 8428                                                                                                                                                                                                                     Losses due to theft and vandalism (% of annual sales of affected firms)
## 8429                                                                                                                                                                                                                                                        Percent of firms paying for security
## 8430                                                                                                                                                                                                                             Percent of firms experiencing losses due to theft and vandalism
## 8431                                                                                                                                                                                                          If the establishment pays for security, average security costs (% of annual sales)
## 8432                                                                                                                                                                                                         If there were losses, average losses due to theft and vandalism (% of annual sales)
## 8433                                                                                                                                                                                                Products shipped to supply domestic markets that were lost due to theft (% of product value)
## 8434                                                                                                                                                                                                  Percent of firms identifying crime, theft and disorder as a major constraint              
## 8435                                                                                                                                                                            Believing the court system is fair, impartial and uncorrupted (% of firms identifying this as a major contraint)
## 8436                                                                                                                                                                                                 Firms that trade identifying customs & trade regulations as a major constraint (% of firms)
## 8437                                                                                                                                                                                                                                         Time required to obtain an operating license (days)
## 8438                                                                                                                                                                                                                             Electricity (% of firms identifying this as a major constraint)
## 8439                                                                                                                                                                                                                        Firms using email to communicate with clients/suppliers (% of firms)
## 8440                                                                                                                                                                                                                                                                Annual employment growth (%)
## 8441                                                                                                                                                                                                                                            Average number of permanent, full time employees
## 8442                                                                                                                                                                                                                                              Average number of skilled production employees
## 8443                                                                                                                                                                                                                                   Average number of seasonal/temporary, full-time employees
## 8444                                                                                                                                                                                                                                              Average number of unskilled production workers
## 8445                                                                                                                                                                                                                                                                 Exporter firms (% of firms)
## 8446                                                                                                                                                                                                                                                            Age of the establishment (years)
## 8447                                                                                                                                                                                                                                      Proportion of private domestic ownership in a firm (%)
## 8448                                                                                                                                                                                                                                     Percent of firms with at least 10% of foreign ownership
## 8449                                                                                                                                                                                                                            Percent of firms with at least 10% of government/state ownership
## 8450                                                                                                                                                                                                                                   Percent of firms with legal status of Sole Proprietorship
## 8451                                                                                                                                                                                                                                                  Firms with female top manager (% of firms)
## 8452                                                                                                                                                                                                                                   Firms with female participation in ownership (% of firms)
## 8453                                                                                                                                                                                                                                                                Full time female workers (%)
## 8454                                                                                                                                                                                                                                                        Percent of firms buying fixed assets
## 8455                                                                                                                                                                                                                                            Proportion of investment financed internally (%)
## 8456                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 8457                                                                                                                                                                                                                                                Proportion of loans requiring collateral (%)
## 8458                                                                                                                                                                                                                                         Percent of firms using banks to finance investments
## 8459                                                                                                                                                                                                                                     Percent of firms using banks to finance working capital
## 8460                                                                                                                                                                                                                                            Percent of firms with a bank loan/line of credit
## 8461                                                                                                                                                                                                                                         Percent of firms with a checking or savings account
## 8462                                                                                                                                                                                                                        Percent of firms identifying access to finance as a major constraint
## 8463                                                                                                                                                                                                                                              Proportion of investment financed by banks (%)
## 8464                                                                                                                                                                                                                                                         Percent of firms not needing a loan
## 8465                                                                                                                                                                                                                                 Percent of firms whose recent loan application was rejected
## 8466                                                                                                                                                                                                                  Percent of firms using supplier/customer credit to finance working capital
## 8467                                                                                                                                                                                                                                         Proportion of working capital financed by banks (%)
## 8468                                                                                                                                                                                                                       Access to finance (% of firms identifying this as a major constraint)
## 8469                                                                                                                                                                                                                            Firms that use material inputs and/or supplies of foreign origin
## 8470                                                                                                                                                                                                                              Firms formally registered when operations started (% of firms)
## 8471                                                                                                                                                                                                                                     Percent of firms with female participation in ownership
## 8472                                                                                                                                                                                                                               Proportion of permanent full-time workers that are female (%)
## 8473                                                                                                                                                                                                                Proportion of permanent full-time non-production workers that are female (%)
## 8474                                                                                                                                                                                                                                                  Percent of firms with a female top manager
## 8475                                                                                                                                                                                                                    Proportion of permanent full-time production workers that are female (%)
## 8476                                                                                                                                                                                                                                             Percent of firms with majority female ownership
## 8477                                                                                                                                                                                                                            Firms that do not report all sales for tax purposes (% of firms)
## 8478                                                                                                                                                                                                                           Percent of firms competing against unregistered or informal firms
## 8479                                                                                                                                                                                        Percent of firms identifying practices of competitors in the informal sector as a major constraint  
## 8480                                                                                                                                                                                                            Percent of firms formally registered when they started operations in the country
## 8481                                                                                                                                                                                                                                   Number of years firm operated without formal registration
## 8482                                                                                                                                                                                                                                  Days to obtain an electrical connection (upon application)
## 8483                                                                                                                                                                                                              If a generator is used, average proportion of electricity from a generator (%)
## 8484                                                                                                                                                                                                                           Percent of firms identifying transportation as a major constraint
## 8485                                                                                                                                                                                                                              Percent of firms identifying electricity as a major constraint
## 8486                                                                                                                                                                                                 Proportion of products lost to breakage or spoilage during shipping to domestic markets (%)
## 8487                                                                                                                                                                                                                                            Percent of firms experiencing electrical outages
## 8488                                                                                                                                                                                                                                         Percent of firms experiencing water insufficiencies
## 8489                                                                                                                                                                                                                                             Number of electrical outages in a typical month
## 8490                                                                                                                                                                                                              If there were outages, average duration of a typical electrical outage (hours)
## 8491                                                                                                                                                                                                         If there were outages, average losses due to electrical outages (% of annual sales)
## 8492                                                                                                                                                                                                                                          Number of water insufficiencies in a typical month
## 8493                                                                                                                                                                                                                                              Percent of firms owning or sharing a generator
## 8494                                                                                                                                                                                                        Services firms competing against unregistered or informal firms (% of service firms)
## 8495                                                                                                                                                                                                                   Percent of firms with an internationally-recognized quality certification
## 8496                                                                                                                                                                                                                                                          Percent of firms that spend on R&D
## 8497                                                                                                                                                                                                          Percent of firms with an annual financial statement reviewed by external auditors 
## 8498                                                                                                                                                                                                                                                                    Capacity utilization (%)
## 8499                                                                                                                                                                                                                           Percent of firms using technology licensed from foreign companies
## 8500                                                                                                                                                                                                                                                  Percent of firms having their own Web site
## 8501                                                                                                                                                                                                                            Percent of firms using e-mail to interact with clients/suppliers
## 8502                                                                                                                                                                                                                                      Percent of firms that introduced a new product/service
## 8503                                                                                                                                                                                                                   Percent of firms whose new product/service is also new to the main market
## 8504                                                                                                                                                                                                                                       Percent of firms that introduced a process innovation
## 8505                                                                                                                                                                                                                               Internationally-recognized quality certification (% of firms)
## 8506                                                                                                                                                                                                                       Labor regulations (% of firms identifying this as a major constraint)
## 8507                                                                                                                                                                                                                       Labor skill level (% of firms identifying this as a major constraint)
## 8508                                                                                                                                                                                                            Business Licensing and Permits (% of firms Identifying this as major constraint)
## 8509                                                                                                                                                                                                                          Firms visited or required meetings with tax officials (% of firms)
## 8510                                                                                                                                                                                                                         Years of experience of the Top Manager working in the firm's sector
## 8511                                                                                                                                                                                                                       Percent of firms choosing access to finance as their biggest obstacle
## 8512                                                                                                                                                                                                                       Percent of firms choosing labor regulations as their biggest obstacle
## 8513                                                                                                                                                                                                                   Percent of firms choosing political instability as their biggest obstacle
## 8514                                                                                                                                                                                                        Percent of firms choosing practices of the informal sector as their biggest obstacle
## 8515                                                                                                                                                                                                                      Percent of firms choosing tax administration as their biggest obstacle
## 8516                                                                                                                                                                                                                               Percent of firms choosing tax rates as their biggest obstacle
## 8517                                                                                                                                                                                                                          Percent of firms choosing transportation as their biggest obstacle
## 8518                                                                                                                                                                                                                          Percent of firms choosing access to land as their biggest obstacle
## 8519                                                                                                                                                                                                          Percent of firms choosing business licensing and permits as their biggest obstacle
## 8520                                                                                                                                                                                                                              Percent of firms choosing corruption as their biggest obstacle
## 8521                                                                                                                                                                                                                                  Percent of firms choosing courts as their biggest obstacle
## 8522                                                                                                                                                                                                               Percent of firms choosing crime, theft and disorder as their biggest obstacle
## 8523                                                                                                                                                                                                           Percent of firms choosing customs and trade regulations as their biggest obstacle
## 8524                                                                                                                                                                                                                             Percent of firms choosing electricity as their biggest obstacle
## 8525                                                                                                                                                                                                         Percent of firms choosing inadequately educated workforce as their biggest obstacle
## 8526                                                                                                                                                                                                                        Value lost due to electrical outages (% of sales for affected firms)
## 8527                                                                                                                                                                                                                                                 Enterprise ownership - Government/state (%)
## 8528                                                                                                                                                                                                                                                  Enterprise ownership - Private Foreign (%)
## 8529                                                                                                                                                                                                                                                 Enterprise ownership - Private Domestic (%)
## 8530                                                                                                                                                                                                                                                           Largest shareholder ownership (%)
## 8531                                                                                                                                                                                                                                              Dealing with construction, procedures (number)
## 8532                                                                                                                                                                                                                                                   Real annual labor productivity growth (%)
## 8533                                                                                                                                                                                                                                                            Days to obtain an import license
## 8534                                                                                                                                                                                                                                                         Days to obtain an operating license
## 8535                                                                                                                                                                                                                                                Days to obtain a construction-related permit
## 8536                                                                                                                                                                                                           Percent of firms identifying business licensing and permits as a major constraint
## 8537                                                                                                                                                                                                     Senior management time spent dealing with the requirements of government regulation (%)
## 8538                                                                                                                                                                                                      If there were visits, average number of visits or required meetings with tax officials
## 8539                                                                                                                                                                                                                                Percent of firms identifying tax rates as a major constraint
## 8540                                                                                                                                                                                                                       Percent of firms identifying tax administration as a major constraint
## 8541                                                                                                                                                                                                                             Percent of firms visited or required to meet with tax officials
## 8542                                                                                                                                                                                                               Firms Formally Registered when Started Operations in the Country (% of firms)
## 8543                                                                                                                                                                                                                                                        Firms that spend on R&D (% of firms)
## 8544                                                                                                                                                                                                                                                      Firms Paying for Security (% of firms)
## 8545                                                                                                                                                                                                                                                                 Security costs (% of sales)
## 8546                                                                                                                                                                                                                                                                Real annual sales growth (%)
## 8547                                                                                                                                                                                                                        Tax Administration (% of firms identifying this as major constraint)
## 8548                                                                                                                                                                                                                                 Tax rates (% of firms identifying this as major constraint)
## 8549                                                                                                                                                                                                                         Firms using technology licensed from foreign companies (% of firms)
## 8550                                                                                                                                                                                                                           Firms experiencing losses due to theft and vandalism (% of firms)
## 8551                                                                                                                                                                                                                                      Time required to deal with construction permits (days)
## 8552                                                                                                                                                                                                                                                Days to clear direct exports through customs
## 8553                                                                                                                                                                                                                    Percent of firms using material inputs and/or supplies of foreign origin
## 8554                                                                                                                                                                                                                                 Percent of firms exporting directly (at least 10% of sales)
## 8555                                                                                                                                                                                                                   Percent of firms exporting directly or indirectly (at least 10% of sales)
## 8556                                                                                                                                                                                                                                                          Days to clear imports from customs
## 8557                                                                                                                                                                                                                                    Proportion of total sales that are exported directly (%)
## 8558                                                                                                                                                                                                                                   Proportion of total inputs that are of foreign origin (%)
## 8559                                                                                                                                                                                                            Percent of firms identifying customs and trade regulations as a major constraint
## 8560                                                                                                                                                                                                                                                 Firms offering formal training (% of firms)
## 8561                                                                                                                                                                                                                          Transportation (% of firms identifying this as a major constraint)
## 8562                                                                                                                                                                                                                                                    Firms using its own website (% of firms)
## 8563                                                                                                                                                                                                                                                   Percent of firms offering formal training
## 8564                                                                                                                                                                                                       Percent of firms identifying an inadequately educated workforce as a major constraint
## 8565                                                                                                                                                                                                                                                                           Number of workers
## 8566                                                                                                                                                                                                                             Proportion of production workers (out of all permanent workers)
## 8567                                                                                                                                                                                                                                        Proportion of temporary workers (out of all workers)
## 8568                                                                                                                                                                                                                                        Proportion of permanent workers (out of all workers)
## 8569                                                                                                                                                                                                                           Proportion of skilled workers (out of all production workers) (%)
## 8570                                                                                                                                                                                                                                           Proportion of workers offered formal training (%)
## 8571                                                                                                                                                                                                                          Years of the top manager's experience working in the firm's sector
## 8572                                                                                                                                                                                                                        Percent of firms identifying labor regulations as a major constraint
## 8573                                                                                                                                                                                                                                  Number of years firms operated without formal registration
## 8574                                                                                                                                                                                                                                                    Dealing with construction permits (rank)
## 8575                                                                                                                                                                                                                         Expected to give gifts to secure a Government contract (% of firms)
## 8576                                                                                                                                                                                            Time spent dealing with the requirements of government regulations (% of senior management time)
## 8577                                                                                                                                                                                                                                                                    Incidence of Graft index
## 8578                                                                                                                                                                                                                                                          Cost to import (US$ per container)
## 8579                                                                                                                                                                                                                                                     Cost to import, border compliance (US$)
## 8580                                                                                                                                                                                                                                                Cost to import, documentary compliance (US$)
## 8581                                                                                                                                                                                                                                                                Documents to import (number)
## 8582                                                                                                                                                                                                                                                                       Time to import (days)
## 8583                                                                                                                                                                                                                                Expected to give gifts to get an Import License (% of firms)
## 8584                                                                                                                                                                                                                                                   Time to import, border compliance (hours)
## 8585                                                                                                                                                                                                                                              Time to import, documentary compliance (hours)
## 8586                                                                                                                                                                                                                                                          Time to resolve insolvency (years)
## 8587                                                                                                                                                                                                                                                                  Enforcing contracts (rank)
## 8588                                                                                                                                                                                                                                                      Enforcing contracts, cost (% of claim)
## 8589                                                                                                                                                                                                                                        Strength of legal rights index (0=weak to 12=strong)
## 8590                                                                                                                                                                                                                                                  Time required to enforce a contract (days)
## 8591                                                                                                                                                                                                                               Rigidity of employment index (0=less rigid to 100=more rigid)
## 8592                                                                                                                                                                                                      Courts (% of managers surveyed lacking confidence in courts to uphold property rights)
## 8593                                                                                                                                                                                                                                                   Procedures to enforce a contract (number)
## 8594                                                                                                                                                                                                                                                              Loans requiring collateral (%)
## 8595                                                                                                                                                                                                                             Expected to give gifts to get an Operating License (% of firms)
## 8596                                                                                                                                                                                                                                          Cost of registering property (% of property value)
## 8597                                                                                                                                                                                                                                                   Time required to register property (days)
## 8598                                                                                                                                                                                                                                                    Procedures to register property (number)
## 8599                                                                                                                                                                                                                                                                 Registering property (rank)
## 8600                                                                                                                                                                                                                           Minimum capital for starting a business  (% of income per capita)
## 8601                                                                                                                                                                                                                          Cost of business start-up procedures, female (% of GNI per capita)
## 8602                                                                                                                                                                                                                          Starting a business: Cost - Women (% of income per capita) - Score
## 8603                                                                                                                                                                                                                            Cost of business start-up procedures, male (% of GNI per capita)
## 8604                                                                                                                                                                                                                            Starting a business: Cost - Men (% of income per capita) - Score
## 8605                                                                                                                                                                                                                                  Cost of business start-up procedures (% of GNI per capita)
## 8606                                                                                                                                                                                                               Starting a business: Paid-in Minimum capital (% of income per capita) - Score
## 8607                                                                                                                                                                                                                                                    Time required to start a business (days)
## 8608                                                                                                                                                                                                                                            Time required to start a business, female (days)
## 8609                                                                                                                                                                                                                                                    Starting a business: Time - Women (days)
## 8610                                                                                                                                                                                                                                             Starting a business: Time - Women (days)- Score
## 8611                                                                                                                                                                                                                                              Time required to start a business, male (days)
## 8612                                                                                                                                                                                                                                                      Starting a business: Time - Men (days)
## 8613                                                                                                                                                                                                                                              Starting a business: Time - Men (days) - Score
## 8614                                                                                                                                                                                                                               Starting a business: Minimum capital (% of income per capita)
## 8615                                                                                                                                                                                                                                         Start-up procedures to register a business (number)
## 8616                                                                                                                                                                                                                                 Start-up procedures to register a business, female (number)
## 8617                                                                                                                                                                                                                                   Starting a business: Procedures required - Women (number)
## 8618                                                                                                                                                                                                                           Starting a business: Procedures required - Women (number) - Score
## 8619                                                                                                                                                                                                                                   Start-up procedures to register a business, male (number)
## 8620                                                                                                                                                                                                                                     Starting a business: Procedures required - Men (number)
## 8621                                                                                                                                                                                                                             Starting a business: Procedures required - Men (number) - Score
## 8622                                                                                                                                                                                                                                            Registering property: Cost (% of property value)
## 8623                                                                                                                                                                                                                                    Registering property: Cost (% of property value) - Score
## 8624                                                                                                                                                                                                                                          Registering property (DB05-15 methodology) - Score
## 8625                                                                                                                                                                                                                                             Registering property (DB16 methodology) - Score
## 8626                                                                                                                                                                                                                                          Registering property (DB17-20 methodology) - Score
## 8627                                                                                                                                                                                                                                                           Registering property: Time (days)
## 8628                                                                                                                                                                                                                                                   Registering property: Time (days) - Score
## 8629                                                                                                                                                                                                    Registering property: Equal access to property rights index (-2-0) (DB17-20 methodology)
## 8630                                                                                                                                                                                                                 Registering property: Geographic coverage index (0-8) (DB16-20 methodology)
## 8631                                                                                                                                                                                                             Registering property: Land dispute resolution index (0-8) (DB16-20 methodology)
## 8632                                                                                                                                                                                 Registering property: Quality of land administration index with Gender (0-30) (DB17-19 methodology) - Score
## 8633                                                                                                                                                                                                                                                   Registering property: Procedures (number)
## 8634                                                                                                                                                                                                                                           Registering property: Procedures (number) - Score
## 8635                                                                                                                                                                                                     Registering property: Quality of land administration index (0-30) (DB17-20 methodology)
## 8636                                                                                                                                                                                             Registering property: Quality of land administration index (0-30) (DB17-20 methodology) - Score
## 8637                                                                                                                                                                                                     Registering property: Quality of land administration index (0-30) (DB17-19 methodology)
## 8638                                                                                                                                                                                                                           Rank: Registering property (1=most business-friendly regulations)
## 8639                                                                                                                                                                                                       Registering property: Reliability of infrastructure index (0-8) (DB16-20 methodology)
## 8640                                                                                                                                                                                                         Registering property: Transparency of information index (0-6) (DB16-20 methodology)
## 8641                                                                                                                                                                                                                                                                 Starting a business - Score
## 8642                                                                                                                                                                                                                            Rank: Starting a business (1=most business-friendly regulations)
## 8643                                                                                                                                                                                                                                                                  Starting a business (rank)
## 8644                                                                                                                                                                                                                                                                    Domestic Sales (% sales)
## 8645                                                                                                                                                                                                                                                     MSME employment (% of total employment)
## 8646                                                                                                                                                                                                                                               Micro, small and medium enterprises (number) 
## 8647                                                                                                                                                                                                                                      Micro, small and medium enterprises (per 1,000 people)
## 8648                                                                                                                                                                                                                                                       Time to prepare and pay taxes (hours)
## 8649                                                                                                                                                                                                                    Firms expected to give gifts in meetings with tax officials (% of firms)
## 8650                                                                                                                                                                                                                                       Labor tax and contributions (% of commercial profits)
## 8651                                                                                                                                                                                                                                               Paying taxes, labor tax and contributions (%)
## 8652                                                                                                                                                                                                       Number of visits or required meetings with tax officials (average for affected firms)
## 8653                                                                                                                                                                                                                                                               Paying taxes, other taxes (%)
## 8654                                                                                                                                                                                                                                 Other taxes payable by businesses (% of commercial profits)
## 8655                                                                                                                                                                                                                                                                       Tax payments (number)
## 8656                                                                                                                                                                                                                                                                Paying taxes, profit tax (%)
## 8657                                                                                                                                                                                                                                                        Profit tax (% of commercial profits)
## 8658                                                                                                                                                                                                                                               Total tax and contribution rate (% of profit)
## 8659                                                                                                                                                                                                                                         Total tax payable by businesses (% of gross profit)
## 8660                                                                                                                                                                                                                                                                         Paying taxes (rank)
## 8661                                                                                                                                                                                                                                   Delay in obtaining a mainline telephone connection (days)
## 8662                                                                                                                                                                                                                               Expected to give gifts to get a phone connection (% of firms)
## 8663                                                                                                                                                                                                                                                               Trading across borders (rank)
## 8664                                                                                                                                                                                                                                Value of collateral needed for a loan (% of the loan amount)
## 8665                                                                                                                                                                                                                        Value of gift expected to secure Government Contract (% of Contract)
## 8666                                                                                                                                                                                                                                               Delay in obtaining a water connections (days)
## 8667                                                                                                                                                                                                                               Expected to give gifts to get a water connection (% of firms)
## 8668                                                                                                                                                                                                                                                                  Number of female directors
## 8669                                                                                                                                                                                                                                            Share of female directors (% of total directors)
## 8670                                                                                                                                                                                                                                                                    Number of male directors
## 8671                                                                                                                                                                                                                                              Share of male directors (% of total directors)
## 8672                                                                                                                                                                                                                                                            Number of female business owners
## 8673                                                                                                                                                                                                                                Share of female business owners (% of total business owners)
## 8674                                                                                                                                                                                                                                                              Number of male business owners
## 8675                                                                                                                                                                                                                                 Share of male business owners  (% of total business owners)
## 8676                                                                                                                                                                                                                                                           Number of female sole proprietors
## 8677                                                                                                                                                                                                                                   Share of female sole proprietors  (% of sole proprietors)
## 8678                                                                                                                                                                                                                                                             Number of male sole proprietors
## 8679                                                                                                                                                                                                                                     Share of male sole proprietors  (% of sole proprietors)
## 8680                                                                                                                                                                                                                                                   Time required to build a warehouse (days)
## 8681                                                                                                                                                                                                                                                    Procedures to build a warehouse (number)
## 8682                                                                                                                                                                                                                                                                     Human Development Index
## 8683                                                                                                                                                                                                                                                     Human Development Index, revised method
## 8684                                                                                                                                                                                                               Information and communication technology expenditure per capita (current US$)
## 8685                                                                                                                                                                                                                          Information and communication technology expenditure (current US$)
## 8686                                                                                                                                                                                                                             Information and communication technology expenditure (% of GDP)
## 8687                                                                                                                                                                                                                               Investment in energy with private participation (current US$)
## 8688                                                                                                                                                                                                                                  Investment in ICT with private participation (current US$)
## 8689                                                                                                                                                                                                                             Investment in telecoms with private participation (current US$)
## 8690                                                                                                                                                                                                                            Investment in transport with private participation (current US$)
## 8691                                                                                                                                                                                                                 Investment in water and sanitation with private participation (current US$)
## 8692                                                                                                                                                                                                                              Public private partnerships investment in energy (current US$)
## 8693                                                                                                                                                                                                                                 Public private partnerships investment in ICT (current US$)
## 8694                                                                                                                                                                                                                             Public private partnerships investment in telecom (current US$)
## 8695                                                                                                                                                                                                                           Public private partnerships investment in transport (current US$)
## 8696                                                                                                                                                                                                                Public private partnerships investment in water and sanitation (current US$)
## 8697                                                                                                                                                                                                                                                Foreign Reserves, Months Import Cover, Goods
## 8698                                                                                                                                                                                                                                        Gross Irrigated Area under all crops ('000 hectares)
## 8699                                                                                                                                                                                                                                                        Yield - All Foodgrains (Kgs/Hectare)
## 8700                                                                                                                                                                                                                                                                  Yield - Rice (Kgs/Hectare)
## 8701                                                                                                                                                                                                                                                             Yield - Sugarcane (Kgs/Hectare)
## 8702                                                                                                                                                                                                                                                               Nominal GSDP Per Capita (INR)
## 8703                                                                                                                                                                                                                                                               Nominal GSDP Per Capita (USD)
## 8704                                                                                                                                                                                                                                                                  Real GSDP Per Capita (INR)
## 8705                                                                                                                                                                                                                                                      Real GSDP Per Capita (INR) Growth Rate
## 8706                                                                                                                                                                                                                                                                  Real GSDP Per Capita (USD)
## 8707                                                                                                                                                                                                                                                      Real GSDP Per Capita (USD) Growth Rate
## 8708                                                                                                                                                                                                                                                            Decadal Growth of Population (%)
## 8709                                                                                                                                                                                                                                                     Decadal Growth of Population, Rural (%)
## 8710                                                                                                                                                                                                                                                     Decadal Growth of Population, Urban (%)
## 8711                                                                                                                                                                                                                                                               Population, Rural (Thousands)
## 8712                                                                                                                                                                                                                                                                       Population, Rural (%)
## 8713                                                                                                                                                                                                                                                                      Population (Thousands)
## 8714                                                                                                                                                                                                                                                                       Population, Urban (%)
## 8715                                                                                                                                                                                                                                                              Enrolment by Caste-General (%)
## 8716                                                                                                                                                                                                                                                               Enrolment by Caste-Muslim (%)
## 8717                                                                                                                                                                                                                                                                  Enrolment by Caste-OBC (%)
## 8718                                                                                                                                                                                                                                                                   Enrolment by Caste-SC (%)
## 8719                                                                                                                                                                                                                                                                   Enrolment by Caste-ST (%)
## 8720                                                                                                                                                                                                                                                                   Gross Enrolment Ratio (%)
## 8721                                                                                                                                                                                                                                                                     Net Enrolment Ratio (%)
## 8722                                                                                                                                                                                                                                                                         Pupil-Teacher Ratio
## 8723                                                                                                                                                                                                                                                                           Teachers (Number)
## 8724                                                                                                                                                                                                                                           Teacher Education Institutes (DIETs, CTEs, IASEs)
## 8725                                                                                                                                                                                                                                                              Total- Installed Capacity (MW)
## 8726                                                                                                                                                                                                                                                     Total-Electricity Generated Gross (GWh)
## 8727                                                                                                                                                                                                                                        Utilities/Non Utilities Per Capita Consumption (KWh)
## 8728                                                                                                                                                                                                                                                  Non Utilities Per Capita Consumption (KWh)
## 8729                                                                                                                                                                                                                              Total (Utilities & Non-Utilities) Per Capita Consumption (KWh)
## 8730                                                                                                                                                                                                                                    Grid interactive renewable power installed capacity (MW)
## 8731                                                                                                                                                                                                                                               Number of Towns Electrified (Per 2001 Census)
## 8732                                                                                                                                                                                                                                                    Number of Towns Electrified (Percentage)
## 8733                                                                                                                                                                                                                                                     Number of Towns Total (Per 2001 Census)
## 8734                                                                                                                                                                                                                                                              Number of Villages Electrified
## 8735                                                                                                                                                                                                                                                 Number of Villages Electrified (Percentage)
## 8736                                                                                                                                                                                                                                                  Number of Villages Total (Per 2001 Census)
## 8737                                                                                                                                                                                                                                            CO2 Emission (in thousand metric tons of Carbon)
## 8738                                                                                                                                                                                                                                                Per Capita Emission ( metric tons of Carbon)
## 8739                                                                                                                                                                                                                                                                  Agricultural land (SQ KMs)
## 8740                                                                                                                                                                                                                                 Ratio: Agricultural land to total coastal area of state (%)
## 8741                                                                                                                                                                                                                                                                      Built-up land (SQ KMs)
## 8742                                                                                                                                                                                                                                     Ratio: Built-up land to total coastal area of state (%)
## 8743                                                                                                                                                                                                                                                    Forest (Non- tidal)/ Plantation (SQ KMs)
## 8744                                                                                                                                                                                                                   Ratio: Forest (Non- tidal)/ Plantation to total coastal area of state (%)
## 8745                                                                                                                                                                                                                                                                     Other features (SQ KMs)
## 8746                                                                                                                                                                                                                                    Ratio: Other features to total coastal area of state (%)
## 8747                                                                                                                                                                                                                                                                         Shore land (SQ KMs)
## 8748                                                                                                                                                                                                                                        Ratio: Shore land to total coastal area of state (%)
## 8749                                                                                                                                                                                                                                                                   Barren wasteland (SQ KMs)
## 8750                                                                                                                                                                                                                                 Ratio: Barren/ wasteland to total coastal area of state (%)
## 8751                                                                                                                                                                                                                                                                       Water bodies (SQ KMs)
## 8752                                                                                                                                                                                                                                      Ratio: Water bodies to total coastal area of state (%)
## 8753                                                                                                                                                                                                                                                                           Wetlands (SQ KMs)
## 8754                                                                                                                                                                                                                                           Ratio: Wetland to total coastal area of state (%)
## 8755                                                                                                                                                                                                                                                                      Cropping Intensity (%)
## 8756                                                                                                                                                                                                                                                               Forest Cover  ('000 hectares)
## 8757                                                                                                                                                                                                                                                 Forest Cover (Percent of Geographical Area)
## 8758                                                                                                                                                                                                                                                           Geographical Area ('000 hectares)
## 8759                                                                                                                                                                                                                                                        Gross Irrigated Area ('000 hectares)
## 8760                                                                                                                                                                                                                                            Ratio: Gross Irrigated to Total Cropped Area (%)
## 8761                                                                                                                                                                                                                                                          Net Irrigated Area ('000 hectares)
## 8762                                                                                                                                                                                                                                        AIr Quality: Nitrogen Oxide (Micrograms/Cubic Meter)
## 8763                                                                                                                                                                                                                                          Area not available for cultivation ('000 hectares)
## 8764                                                                                                                                                                                                                                      Other uncultivated (excl. fallow land) ('000 hectares)
## 8765                                                                                                                                                                                                                                    AIr Quality: Particulate Matter (Micrograms/Cubic Meter)
## 8766                                                                                                                                                                                                                                        AIr Quality: Sulfur Dioxide (Micrograms/Cubic Meter)
## 8767                                                                                                                                                                                                                                                             Commercial Bank Offices (Total)
## 8768                                                                                                                                                                                                                                                   Financial Inclusion Index (CRISIL Method)
## 8769                                                                                                                                                                                                                                Total number of households availing banking services - Rural
## 8770                                                                                                                                                                                                                                        Total number of households availing banking services
## 8771                                                                                                                                                                                                                                Total number of households availing banking services - Urban
## 8772                                                                                                                                                                                                                                                           Total number of households -Rural
## 8773                                                                                                                                                                                                                                                                  Total number of households
## 8774                                                                                                                                                                                                                                                          Total number of households - Urban
## 8775                                                                                                                                                                                                                                           Average Population Per Bank Office (In Thousands)
## 8776                                                                                                                                                                                                                                                                  Auxiliary nursing midwives
## 8777                                                                                                                                                                                                                                                   Number of Community Health Centers (CHCs)
## 8778                                                                                                                                                                                                                                                                Number of District Hospitals
## 8779                                                                                                                                                                                                                              Number of Government Allopathic Doctors Per 100,000 Population
## 8780                                                                                                                                                                                                                                                         Government Hospitals Number of beds
## 8781                                                                                                                                                                                                                                  Government Hospitals Number of beds Per 100,000 Population
## 8782                                                                                                                                                                                                                                                               Government Hospitals (Number)
## 8783                                                                                                                                                                                                                                        Government Hospitals (Number) Per 100,000 Population
## 8784                                                                                                                                                                                                                                                            HIV/AIDS Related Death Estimates
## 8785                                                                                                                                                                                                                                                                     HIV Infection Estimates
## 8786                                                                                                                                                                                                                                                        Health visitors & Health supervisors
## 8787                                                                                                                                                                                                                                                                             Malaria - Cases
## 8788                                                                                                                                                                                                                                                                            Malaria - Deaths
## 8789                                                                                                                                                                                                                                                                 Number of Sub-Centers (SCs)
## 8790                                                                                                                                                                                                                                                                Electrified Route Kilometres
## 8791                                                                                                                                                                                                                     Freight Traffic (revenue earning) - Lead (Average no. of KMs per tonne)
## 8792                                                                                                                                                                                                                           Average Freight Rate per Tonne-KM (in Paise, for all commodities)
## 8793                                                                                                                                                                                                                          Freight Traffic (revenue earning) -Net Tonne Kilometers (millions)
## 8794                                                                                                                                                                                                                                                          Speed of Freight Trains (KMs/hour)
## 8795                                                                                                                                                                                                                                             Freight Traffic - Tonnes originating (Millions)
## 8796                                                                                                                                                                                                                                                             Locomotives - Number in service
## 8797                                                                                                                                                                                                                                              Locomotives -Total tractive effort ('000  Kgs)
## 8798                                                                                                                                                                                                                                    Passenger-Kilometers Traffic (Non-Suburban), in millions
## 8799                                                                                                                                                                                                                                        Passenger-Kilometers Traffic (Suburban), in millions
## 8800                                                                                                                                                                                                                                             Total Passenger-Kilometers Traffic, in millions
## 8801                                                                                                                                                                                                                                                                    Running Track Kilometres
## 8802                                                                                                                                                                                                                                                                      Total Route Kilometers
## 8803                                                                                                                                                                                                                                            Net tonnes Kms. per Route Km. per Annum (' 000s)
## 8804                                                                                                                                                                                                                                                    Train Kms. per Running Track Km. per Day
## 8805                                                                                                                                                                                                                                      Wagon Usage: Avergae Wagon Lead during run (in Tonnes)
## 8806                                                                                                                                                                                                                                                       Wagon Usage: Net Tonne-KMs/Weagon Day
## 8807                                                                                                                                                                                                                                                                 Wagon Usage (KMs/Wagon Day)
## 8808                                                                                                                                                                                                                                                    Number of wagons in service (All Gauges)
## 8809                                                                                                                                                                                                                                                 Passenger Kms. per Route Km. per Annum 000s
## 8810                                                                                                                                                                                                                                 Labor Force ages 15+ Rural & Urban: Mean Years of Schooling
## 8811                                                                                                                                                                                                                                  LFPR per 1000 for ages 15+ Rural & Urban: Level All Levels
## 8812                                                                                                                                                                                                                                LFPR per 1000 for ages 15+ Rural & Urban: Level Diploma/Cert
## 8813                                                                                                                                                                                                                               LFPR per 1000 for ages 15+ Rural & Urban: Level Hr. Secondary
## 8814                                                                                                                                                                                                                                      LFPR per 1000 for ages 15+ Rural & Urban: Level Middle
## 8815                                                                                                                                                                                                                                LFPR per 1000 for ages 15+ Rural & Urban: Level Not Literate
## 8816                                                                                                                                                                                                                      LFPR per 1000 for ages 15+ Rural & Urban: Level Degree + Post Graduate
## 8817                                                                                                                                                                                                                       LFPR per 1000 for ages 15+ Rural & Urban: Level Literacy upto Primary
## 8818                                                                                                                                                                                                                                   LFPR per 1000 for ages 15+ Rural & Urban: Level Secondary
## 8819                                                                                                                                                                                                                                           Households with telephones (Landline & Mobile, %)
## 8820                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Rural
## 8821                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Total
## 8822                                                                                                                                                                                                                                                           Poverty HCR Estimates (%) - Urban
## 8823                                                                                                                                                                                                                                          Households having computer laptops (w/Internet, %)
## 8824                                                                                                                                                                                                                                        Households having computer laptops (w/o Internet, %)
## 8825                                                                                                                                                                                                                                                      Households having computer laptops (%)
## 8826                                                                                                                                                                                                                                                    Households with telephones (Landline, %)
## 8827                                                                                                                                                                                                                                                      Households with telephones (Mobile, %)
## 8828                                                                                                                                                                                                                                                             Households with assets (Number)
## 8829                                                                                                                                                                                                                                                              Households with telephones (%)
## 8830                                                                                                                                                                                                                                               Total households with drinking water facility
## 8831                                                                                                                                                                                                                                           Availability of drinking water from a source away
## 8832                                                                                                                                                                                                                                     Availability of drinking water source near the premises
## 8833                                                                                                                                                                                                                                   Availability of drinking water source within the premises
## 8834                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Rural (%)
## 8835                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Total (%)
## 8836                                                                                                                                                                                                                                        Households Access to Safe Drinking Water - Urban (%)
## 8837                                                                                                                                                                                                                                                                Households in Slums (Number)
## 8838                                                                                                                                                                                                                                         Urban housing - approved (number, cumulative total)
## 8839                                                                                                                                                                                                                                                           Infant Mortality Rate (per 1,000)
## 8840                                                                                                                                                                                                                                                          Under 5 Mortality Rate (Per 1,000)
## 8841                                                                                                                                                                                                                                                                    Literacy Rate Female (%)
## 8842                                                                                                                                                                                                                                                                      Literacy Rate Male (%)
## 8843                                                                                                                                                                                                                                                                    Literacy rate, Rural (%)
## 8844                                                                                                                                                                                                                                                           Literacy Rate in Slums-Female (%)
## 8845                                                                                                                                                                                                                                                           Literacy Rate in Slums - Male (%)
## 8846                                                                                                                                                                                                                                                         Literacy Rate in Slums  - Total (%)
## 8847                                                                                                                                                                                                                                                                           Literacy Rate (%)
## 8848                                                                                                                                                                                                                                                                    Literacy rate, Urban (%)
## 8849                                                                                                                                                                                                                                                       Latrine not available within premises
## 8850                                                                                                                                                                                                                                                  Latrine facility available within premises
## 8851                                                                                                                                                                                                                                           Migrants, Total: 5 to 9 years  residence (Number)
## 8852                                                                                                                                                                                                                                           Migrants, Female 1 to 4 years  residence (Number)
## 8853                                                                                                                                                                                                                                          Migrants, Female: 5 to 9 years  residence (Number)
## 8854                                                                                                                                                                                                                                                                  Migrants - Female (Number)
## 8855                                                                                                                                                                                                                                      Migrants, Female: less than 1 Year  residence (Number)
## 8856                                                                                                                                                                                                                                            Migrants, Male: 1 to 4 years  residence (Number)
## 8857                                                                                                                                                                                                                                            Migrants, Male: 5 to 9 years  residence (Number)
## 8858                                                                                                                                                                                                                                                                    Migrants - Male (Number)
## 8859                                                                                                                                                                                                                                        Migrants, Male: less than 1 Year  residence (Number)
## 8860                                                                                                                                                                                                                                           Migrants, Total: 1 to 4 years  residence (Number)
## 8861                                                                                                                                                                                                                                                                    Migrants, Total (Number)
## 8862                                                                                                                                                                                                                                       Migrants, Total: less than 1 Year  residence (Number)
## 8863                                                                                                                                                                                                                                                     Total Slum Population - Female (Number)
## 8864                                                                                                                                                                                                                                                       Total Slum Population - Male (Number)
## 8865                                                                                                                                                                                                                                                              Total Slum Population (Number)
## 8866                                                                                                                                                                                                                                                    Total Workers in Slums - Female (Number)
## 8867                                                                                                                                                                                                                                                      Total Workers in Slums - Male (Number)
## 8868                                                                                                                                                                                                                                                             Total Workers in Slums (Number)
## 8869                                                                                                                                                                                                                      National Highways (surfaced length) - Below standard single lane (KMs)
## 8870                                                                                                                                                                                                                            National Highways (surfaced length) - Standard double lane (KMs)
## 8871                                                                                                                                                                                                                             National Highways (surfaced length) - Standard multi lane (KMs)
## 8872                                                                                                                                                                                                                            National Highways (surfaced length) - Standard single lane (KMs)
## 8873                                                                                                                                                                                                                                           National Highways (surfaced length) - Total (KMs)
## 8874                                                                                                                                                                                                                                                                           Urban Roads (KMs)
## 8875                                                                                                                                                                                                                                                         Urban Roads,  B.T/C.C surface (KMs)
## 8876                                                                                                                                                                                                                                                                  Urban Roads Surfaced (KMs)
## 8877                                                                                                                                                                                                                                                           Urban Roads, W.B.M. surface (KMs)
## 8878                                                                                                                                                                                                                                         Number of seriously injured in road traffic crashes
## 8879                                                                                                                                                                                                                                                                      Number of road crashes
## 8880                                                                                                                                                                                                                                                    Rural Road Density (KMs/1000 Population)
## 8881                                                                                                                                                                                                                                                               Number of road traffic deaths
## 8882                                                                                                                                                                                                                                                Urban Road Density (KMs Per 1000 Population)
## 8883                                                                                                                                                                                                                                       Industrial design applications, nonresident, by count
## 8884                                                                                                                                                                                                                                          Industrial design applications, resident, by count
## 8885                                                                                                                                                                                                                                                   Scientific and technical journal articles
## 8886                                                                                                                                                                                                                                                           Patent applications, nonresidents
## 8887                                                                                                                                                                                                                                                              Patent applications, residents
## 8888                                                                                                                                                                                                                                                    Trademark applications, aggregate direct
## 8889                                                                                                                                                                                                                                                              Trademark applications, Madrid
## 8890                                                                                                                                                                                                                                               Trademark applications, nonresident, by count
## 8891                                                                                                                                                                                                                                                  Trademark applications, direct nonresident
## 8892                                                                                                                                                                                                                                                     Trademark applications, direct resident
## 8893                                                                                                                                                                                                                                                  Trademark applications, resident, by count
## 8894                                                                                                                                                                                                                                                               Trademark applications, total
## 8895                                                                                                                                                                                                                                                         Industrial Production, constant US$
## 8896                                                                                                                                                                                                                                             Industrial Production, constant US$, seas. adj.
## 8897                                                                                                                                                                                                                               CPIA business regulatory environment rating (1=low to 6=high)
## 8898                                                                                                                                                                                                                                                   CPIA debt policy rating (1=low to 6=high)
## 8899                                                                                                                                                                                                                                  CPIA economic management cluster average (1=low to 6=high)
## 8900                                                                                                                                                                                                      CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)
## 8901                                                                                                                                                                                                                 CPIA quality of budgetary and financial management rating (1=low to 6=high)
## 8902                                                                                                                                                                                                                                              CPIA financial sector rating (1=low to 6=high)
## 8903                                                                                                                                                                                                                                                 CPIA fiscal policy rating (1=low to 6=high)
## 8904                                                                                                                                                                                                                                               CPIA gender equality rating (1=low to 6=high)
## 8905                                                                                                                                                                                                                                      CPIA building human resources rating (1=low to 6=high)
## 8906                                                                                                                                                                                                                                             IDA resource allocation index (1=low to 6=high)
## 8907                                                                                                                                                                                                                                      CPIA macroeconomic management rating (1=low to 6=high)
## 8908                                                                                                                                                                                                                              CPIA quality of public administration rating (1=low to 6=high)
## 8909                                                                                                                                                                                                                                 CPIA equity of public resource use rating (1=low to 6=high)
## 8910                                                                                                                                                                                                                     CPIA property rights and rule-based governance rating (1=low to 6=high)
## 8911                                                                                                                                                                                                                                             CPIA social protection rating (1=low to 6=high)
## 8912                                                                                                                                                                                                            CPIA public sector management and institutions cluster average (1=low to 6=high)
## 8913                                                                                                                                                                                                                            CPIA efficiency of revenue mobilization rating (1=low to 6=high)
## 8914                                                                                                                                                                                                                 CPIA policies for social inclusion/equity cluster average (1=low to 6=high)
## 8915                                                                                                                                                                                                                                  CPIA structural policies cluster average (1=low to 6=high)
## 8916                                                                                                                                                                                                                                                         CPIA trade rating (1=low to 6=high)
## 8917                                                                                                                                                                                             CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)
## 8918                                                                                                                                                                                                                                   ICRG composite risk rating (0=highest risk to 100=lowest)
## 8919                                                                                                                                                                    Assessment of country’s adherence to the best regulatory practices at the preparation stage of PPP project (scale 1-100)
## 8920                                                                                                                                                                    Assessment of country’s adherence to the best regulatory practices at the procurement stage of PPP project (scale 1-100)
## 8921                                                                                                                                                                     Assessment of country’s adherence to the best regulatory practices at the management stage of PPP project (scale 1-100)
## 8922                                                                                                                                                                      Assessment of country’s adherence to the best regulatory practices, procurement of unsolicited proposals (scale 1-100)
## 8923                                                                                                                                                                                                                              Methodology assessment of statistical capacity (scale 0 - 100)
## 8924                                                                                                                                                                                                                                Statistical Capacity Score (Overall Average) (scale 0 - 100)
## 8925                                                                                                                                                                                                               Periodicity and timeliness assessment of statistical capacity (scale 0 - 100)
## 8926                                                                                                                                                                                                                              Source data assessment of statistical capacity (scale 0 - 100)
## 8927                                                                                                                                                                                                                       Statistical performance indicators (SPI): Overall score (scale 0-100)
## 8928                                                                                                                                                                                                             Statistical performance indicators (SPI): Pillar 1 data use score (scale 0-100)
## 8929                                                                                                                                                                                                        Statistical performance indicators (SPI): Pillar 2 data services score (scale 0-100)
## 8930                                                                                                                                                                                                       Statistical performance indicators (SPI): Pillar 3 data products score  (scale 0-100)
## 8931                                                                                                                                                                                                         Statistical performance indicators (SPI): Pillar 4 data sources score (scale 0-100)
## 8932                                                                                                                                                                                                  Statistical performance indicators (SPI): Pillar 5 data infrastructure score (scale 0-100)
## 8933                                                                                                                                                                                                         Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)
## 8934                                                                                                                                                               Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)
## 8935                                                                                                                                                                                                                                      Air transport, registered carrier departures worldwide
## 8936                                                                                                                                                                                                                                                             Aircraft departures (thousands)
## 8937                                                                                                                                                                                                                                                     Air transport, freight (million ton-km)
## 8938                                                                                                                                                                                                                                                           Air transport, passengers carried
## 8939                                                                                                                                                                                                                                               Air transport, passengers carried (thousands)
## 8940                                                                                                                                                                                                                                  Road sector diesel fuel consumption (kt of oil equivalent)
## 8941                                                                                                                                                                                                                       Road sector diesel fuel consumption per capita (kg of oil equivalent)
## 8942                                                                                                                                                                                                                                       Road density (km of road per 100 sq. km of land area)
## 8943                                                                                                                                                                                                                                       Road sector energy consumption (kt of oil equivalent)
## 8944                                                                                                                                                                                                                            Road sector energy consumption per capita (kg of oil equivalent)
## 8945                                                                                                                                                                                                                              Road sector energy consumption (% of total energy consumption)
## 8946                                                                                                                                                                                                                                                   Roads, goods transported (million ton-km)
## 8947                                                                                                                                                                                                                                       Roads, normalized index (100 = expected total length)
## 8948                                                                                                                                                                                                                                                             Roads, paved (% of total roads)
## 8949                                                                                                                                                                                                                                            Roads, passengers carried (million passenger-km)
## 8950                                                                                                                                                                                                                                Road sector gasoline fuel consumption (kt of oil equivalent)
## 8951                                                                                                                                                                                                                     Road sector gasoline fuel consumption per capita (kg of oil equivalent)
## 8952                                                                                                                                                                                                                                                                   Roads, total network (km)
## 8953                                                                                                                                                                                                                                                           Road traffic (million vehicle-km)
## 8954                                                                                                                                                                                                                  Diesel locomotives available (in service as % of total diesel locomotives)
## 8955                                                                                                                                                                                                                                            Rail traffic density (passengers and freight/km)
## 8956                                                                                                                                                                                                                                                                   Rail lines, electric (km)
## 8957                                                                                                                                                                                                                                  Railway employee productivity (traffic units per employee)
## 8958                                                                                                                                                                                                                                                              Railways, good hauled (ton-km)
## 8959                                                                                                                                                                                                                               Railways, goods transported (ton-km per PPP $ million of GDP)
## 8960                                                                                                                                                                                                                                                Railways, goods transported (million ton-km)
## 8961                                                                                                                                                                                                                                           Railways, passenger-km (per PPP $ million of GDP)
## 8962                                                                                                                                                                                                                                         Railways, passengers carried (million passenger-km)
## 8963                                                                                                                                                                                                                                                                 Rail lines (total route-km)
## 8964                                                                                                                                                                                                                                          Ratio of rail passenger tariffs to freight tariffs
## 8965                                                                                                                                                                                                                             Liner shipping connectivity index (maximum value in 2004 = 100)
## 8966                                                                                                                                                                                                                                      Container port traffic (TEU: 20 foot equivalent units)
## 8967                                                                                                                                                                                                                                                             Two-wheelers (per 1,000 people)
## 8968                                                                                                                                                                                                                                                           Motor vehicles (per 1,000 people)
## 8969                                                                                                                                                                                                                                                           Passenger cars (per 1,000 people)
## 8970                                                                                                                                                                                                                                                                   Vehicles (per km of road)
## 8971                                                                                                                                                                                                                                      Fixed broadband Internet access tariff (US$ per month)
## 8972                                                                                                                                                                                                                                           Population covered by mobile cellular network (%)
## 8973                                                                                                                                                                                                                                                               Mobile cellular subscriptions
## 8974                                                                                                                                                                                                                                              Mobile cellular subscriptions (per 100 people)
## 8975                                                                                                                                                                                                                                                 Mobile phone subscribers (per 1,000 people)
## 8976                                                                                                                                                                                                                                                     Price basket for mobile (US$ per month)
## 8977                                                                                                                                                                                                                Mobile cellular - price of 3-minute local call (off-peak rate - current US$)
## 8978                                                                                                                                                                                                                    Mobile cellular - price of 3-minute local call (peak rate - current US$)
## 8979                                                                                                                                                                                                                Mobile cellular - price of 3-minute local call (off-peak rate - current LCU)
## 8980                                                                                                                                                                                                                    Mobile cellular - price of 3-minute local call (peak rate - current LCU)
## 8981                                                                                                                                                                                                                                          Mobile cellular monthly subscription (current US$)
## 8982                                                                                                                                                                                                                                          Mobile cellular monthly subscription (current LCU)
## 8983                                                                                                                                                                                                                                    Mobile cellular postpaid connection charge (current US$)
## 8984                                                                                                                                                                                                                                    Mobile cellular postpaid connection charge (current LCU)
## 8985                                                                                                                                                                                                                                     Mobile cellular prepaid connection charge (current US$)
## 8986                                                                                                                                                                                                                                     Mobile cellular prepaid connection charge (current LCU)
## 8987                                                                                                                                                                                                                                                                          Personal computers
## 8988                                                                                                                                                                                                                                                   Personal computers installed in education
## 8989                                                                                                                                                                                                                                                         Personal computers (per 100 people)
## 8990                                                                                                                                                                                                                                                       Personal computers (per 1,000 people)
## 8991                                                                                                                                                                                                                                                             Fax machines (per 1,000 people)
## 8992                                                                                                                                                                                                                            International telecom, outgoing traffic (minutes per subscriber)
## 8993                                                                                                                                                                                                                            International telecom, outgoing traffic (minutes per subscriber)
## 8994                                                                                                                                                                                                                   International voice traffic, total fixed and mobile (out and in, minutes)
## 8995                                                                                                                                                                                                                    International voice traffic, total fixed and mobile (minutes per person)
## 8996                                                                                                                                                                                                                                              Mobile cellular prepaid tariff (US$ per month)
## 8997                                                                                                                                                                                                                Price of a 3-minute fixed telephone local call (off-peak rate - current US$)
## 8998                                                                                                                                                                                                                    Price of a 3-minute fixed telephone local call (peak rate - current US$)
## 8999                                                                                                                                                                                                                                Telephone average cost of call to US (US$ per three minutes)
## 9000                                                                                                                                                                                                                Price of a 3-minute fixed telephone local call (off-peak rate - current LCU)
## 9001                                                                                                                                                                                                                    Price of a 3-minute fixed telephone local call (peak rate - current LCU)
## 9002                                                                                                                                                                                                                                          Business telephone connection charge (current US$)
## 9003                                                                                                                                                                                                                                          Business telephone connection charge (current LCU)
## 9004                                                                                                                                                                                                                                       Business telephone monthly subscription (current US$)
## 9005                                                                                                                                                                                                                                       Business telephone monthly subscription (current LCU)
## 9006                                                                                                                                                                                                                                Telephone average cost of local call (US$ per three minutes)
## 9007                                                                                                                                                                                                                                       Residential telephone connection charge (current US$)
## 9008                                                                                                                                                                                                                                       Residential telephone connection charge (current LCU)
## 9009                                                                                                                                                                                                                                                            Telephone mainlines per employee
## 9010                                                                                                                                                                                                                                            Telephone faults cleared by next working day (%)
## 9011                                                                                                                                                                                                                                                        Telephone faults (per 100 mainlines)
## 9012                                                                                                                                                                                                                                            Fixed telephone service investment (current US$)
## 9013                                                                                                                                                                                                                                            Fixed telephone service investment (current LCU)
## 9014                                                                                                                                                                                                                                      Telephone mainlines in largest city (per 1,000 people)
## 9015                                                                                                                                                                                                                                                               Fixed telephone subscriptions
## 9016                                                                                                                                                                                                                                              Fixed telephone subscriptions (per 100 people)
## 9017                                                                                                                                                                                                                                                      Telephone mainlines (per 1,000 people)
## 9018                                                                                                                                                                                                                                          Revenue from fixed telephone service (current US$)
## 9019                                                                                                                                                                                                                                          Revenue from fixed telephone service (current LCU)
## 9020                                                                                                                                                                                                                                                Telephone revenue per mainline (current US$)
## 9021                                                                                                                                                                                                                                    Residential monthly telephone subscription (current US$)
## 9022                                                                                                                                                                                                                                    Residential monthly telephone subscription (current LCU)
## 9023                                                                                                                                                                                                                                     Price basket for residential fixed line (US$ per month)
## 9024                                                                                                                                                                                                                                                           Telephone mainlines, waiting list
## 9025                                                                                                                                                                                                                                               Telephone mainlines, waiting list (thousands)
## 9026                                                                                                                                                                                                                                                                                Invalid Code
## 9027                                                                                                                                                                                                                                        Population coverage of mobile cellular telephony (%)
## 9028                                                                                                                                                                                                                                               Mobile communication investment (current US$)
## 9029                                                                                                                                                                                                                                               Mobile communication investment (current LCU)
## 9030                                                                                                                                                                                                                                             Revenue from mobile communication (current US$)
## 9031                                                                                                                                                                                                                                             Revenue from mobile communication (current LCU)
## 9032                                                                                                                                                                                                                                                               Fixed broadband subscriptions
## 9033                                                                                                                                                                                                                                              Fixed broadband subscriptions (per 100 people)
## 9034                                                                                                                                                                                                                                                    Broadband subscribers (per 1,000 people)
## 9035                                                                                                                                                                                                                                                     International Internet bandwidth (Mbps)
## 9036                                                                                                                                                                                                                                          International Internet bandwidth (bits per person)
## 9037                                                                                                                                                                                                                                    Fixed broadband Internet connection charge (current US$)
## 9038                                                                                                                                                                                                                                    Fixed broadband Internet connection charge (current LCU)
## 9039                                                                                                                                                                                                                                                       Schools connected to the Internet (%)
## 9040                                                                                                                                                                                                                                                          Internet hosts (per 10,000 people)
## 9041                                                                                                                                                                                                                          Internet service provider access charges ($ per 30 off-peak hours)
## 9042                                                                                                                                                                                                                                                                     Secure Internet servers
## 9043                                                                                                                                                                                                                                              Secure Internet servers (per 1 million people)
## 9044                                                                                                                                                                                                                                 Fixed broadband Internet monthly subscription (current US$)
## 9045                                                                                                                                                                                                                                 Fixed broadband Internet monthly subscription (current LCU)
## 9046                                                                                                                                                                                                                                 Internet telephone access charges ($ per 30 off-peak hours)
## 9047                                                                                                                                                                                                                                                   Price basket for Internet (US$ per month)
## 9048                                                                                                                                                                                                                                  Internet total monthly price (% of monthly GNI per capita)
## 9049                                                                                                                                                                                                                                                                              Internet users
## 9050                                                                                                                                                                                                                                                             Internet users (per 100 people)
## 9051                                                                                                                                                                                                                                                           Internet users (per 1,000 people)
## 9052                                                                                                                                                                                                                                            Individuals using the Internet (% of population)
## 9053                                                                                                                                                                                                                                                                            Public payphones
## 9054                                                                                                                                                                                                                                                         Public payphones (per 1,000 people)
## 9055                                                                                                                                                                                                                                                          Homes with a personal computer (%)
## 9056                                                                                                                                                                                                                                                         Daily newspapers (per 1,000 people)
## 9057                                                                                                                                                                                                                                                                 Households with a radio (%)
## 9058                                                                                                                                                                                                                                                                       Number of radio sets 
## 9059                                                                                                                                                                                                                                                               Radio sets (per 1,000 people)
## 9060                                                                                                                                                                                                                                     Residential fixed line telephone tariff (US$ per month)
## 9061                                                                                                                                                                                                                                                                  Telephone employees, total
## 9062                                                                                                                                                                                                                                                             Households with a telephone (%)
## 9063                                                                                                                                                                                                                                            Total annual investment in telecom (current US$)
## 9064                                                                                                                                                                                                                                                 Telecommunications investment (current LCU)
## 9065                                                                                                                                                                                                                                                Telecommunications investment (% of revenue)
## 9066                                                                                                                                                                                                                             Total revenue from all telecommunication services (current US$)
## 9067                                                                                                                                                                                                                                                    Telecommunications revenue (current LCU)
## 9068                                                                                                                                                                                                                                                          Telecommunications revenue (% GDP)
## 9069                                                                                                                                                                                                                                                 Mobile and fixed-line telephone subscribers
## 9070                                                                                                                                                                                                                                   Fixed line and mobile cellular subscriptions per employee
## 9071                                                                                                                                                                                                                               Fixed line and mobile cellular subscriptions (per 100 people)
## 9072                                                                                                                                                                                                                       Telephone (mainlines and mobile phone) subscribers (per 1,000 people)
## 9073                                                                                                                                                                                                          Unmet demand (% of waiting list to number main fixed telephone lines in operation)
## 9074                                                                                                                                                                                                                                          Telecommunication equipment - import (current US$)
## 9075                                                                                                                                                                                                                                          Telecommunication equipment - export (current US$)
## 9076                                                                                                                                                                                                                                             Cable television subscribers (per 1,000 people)
## 9077                                                                                                                                                                                                                                                              Households with television (%)
## 9078                                                                                                                                                                                                                                                          Television sets (per 1,000 people)
## 9079                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, total
## 9080                                                                                                                                                                                                                                                Average age of employers, aged 15-64, female
## 9081                                                                                                                                                                                                                               Average age of employers, aged 15-64, above primary education
## 9082                                                                                                                                                                                                                           Average age of employers, aged 15-64, primary education and below
## 9083                                                                                                                                                                                                                                                  Average age of employers, aged 15-64, male
## 9084                                                                                                                                                                                                                                                        Average age of employers, aged 25-64
## 9085                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, rural
## 9086                                                                                                                                                                                                                                                 Average age of employers, aged 15-64, urban
## 9087                                                                                                                                                                                                                                                        Average age of employers, aged 15-24
## 9088                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, total
## 9089                                                                                                                                                                                                                          Average age of self-employed or unpaid workers, aged 15-64, female
## 9090                                                                                                                                                                                                         Average age of self-employed or unpaid workers, aged 15-64, above primary education
## 9091                                                                                                                                                                                                     Average age of self-employed or unpaid workers, aged 15-64, primary education and below
## 9092                                                                                                                                                                                                                            Average age of self-employed or unpaid workers, aged 15-64, male
## 9093                                                                                                                                                                                                                                  Average age of self-employed or unpaid workers, aged 25-64
## 9094                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, rural
## 9095                                                                                                                                                                                                                           Average age of self-employed or unpaid workers, aged 15-64, urban
## 9096                                                                                                                                                                                                                                  Average age of self-employed or unpaid workers, aged 15-24
## 9097                                                                                                                                                                                                                                                                          Average age, total
## 9098                                                                                                                                                                                                                                                                         Average age, female
## 9099                                                                                                                                                                                                                                                        Average age, above primary education
## 9100                                                                                                                                                                                                                                                    Average age, primary education and below
## 9101                                                                                                                                                                                                                                                                           Average age, male
## 9102                                                                                                                                                                                                                                                                     Average age, aged 25-64
## 9103                                                                                                                                                                                                                                                                          Average age, rural
## 9104                                                                                                                                                                                                                                                                          Average age, urban
## 9105                                                                                                                                                                                                                                                                     Average age, aged 15-24
## 9106                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, total
## 9107                                                                                                                                                                                                                                             Average age of wage workers, aged 15-64, female
## 9108                                                                                                                                                                                                                            Average age of wage workers, aged 15-64, above primary education
## 9109                                                                                                                                                                                                                        Average age of wage workers, aged 15-64, primary education and below
## 9110                                                                                                                                                                                                                                               Average age of wage workers, aged 15-64, male
## 9111                                                                                                                                                                                                                                                     Average age of wage workers, aged 25-64
## 9112                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, rural
## 9113                                                                                                                                                                                                                                              Average age of wage workers, aged 15-64, urban
## 9114                                                                                                                                                                                                                                                     Average age of wage workers, aged 15-24
## 9115                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, total
## 9116                                                                                                                                                                                                                                                  Average age of workers, aged 15-64, female
## 9117                                                                                                                                                                                                                                 Average age of workers, aged 15-64, above primary education
## 9118                                                                                                                                                                                                                             Average age of workers, aged 15-64, primary education and below
## 9119                                                                                                                                                                                                                                                    Average age of workers, aged 15-64, male
## 9120                                                                                                                                                                                                                                                          Average age of workers, aged 25-64
## 9121                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, rural
## 9122                                                                                                                                                                                                                                                   Average age of workers, aged 15-64, urban
## 9123                                                                                                                                                                                                                                                          Average age of workers, aged 15-24
## 9124                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, total
## 9125                                                                                                                                                                                                                       Average age of workers in the agricultural sector, aged 15-64, female
## 9126                                                                                                                                                                                                      Average age of workers in the agricultural sector, aged 15-64, above primary education
## 9127                                                                                                                                                                                                  Average age of workers in the agricultural sector, aged 15-64, primary education and below
## 9128                                                                                                                                                                                                                         Average age of workers in the agricultural sector, aged 15-64, male
## 9129                                                                                                                                                                                                                               Average age of workers in the agricultural sector, aged 25-64
## 9130                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, rural
## 9131                                                                                                                                                                                                                        Average age of workers in the agricultural sector, aged 15-64, urban
## 9132                                                                                                                                                                                                                               Average age of workers in the agricultural sector, aged 15-24
## 9133                                                                                                                                                                                         Wage employment in agriculture, aged 15-64, female (% of female workers in the agricultural sector)
## 9134                                                                                                                                                           Wage employment in agriculture, aged 15-64, above primary education (% of workers with high education in the agricultural sector)
## 9135                                                                                                                                                        Wage employment in agriculture, aged 15-64, primary education and below (% of workers with low education in the agricultural sector)
## 9136                                                                                                                                                                                             Wage employment in agriculture, aged 15-64, male (% of male workers in the agricultural sector)
## 9137                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, total
## 9138                                                                                                                                                                                             Median earnings per month in the agricultural sector, aged 15-64, local currency values, female
## 9139                                                                                                                                                                            Median earnings per month in the agricultural sector, aged 15-64, local currency values, above primary education
## 9140                                                                                                                                                                        Median earnings per month in the agricultural sector, aged 15-64, local currency values, primary education and below
## 9141                                                                                                                                                                                               Median earnings per month in the agricultural sector, aged 15-64, local currency values, male
## 9142                                                                                                                                                                                                     Median earnings per month in the agricultural sector, aged 25-64, local currency values
## 9143                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, rural
## 9144                                                                                                                                                                                              Median earnings per month in the agricultural sector, aged 15-64, local currency values, urban
## 9145                                                                                                                                                                                                     Median earnings per month in the agricultural sector, aged 15-24, local currency values
## 9146                                                                                                                                                                                             Wage employment in agriculture, aged 25-64 (% of workers aged 25-64 in the agricultural sector)
## 9147                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, rural (% of rural workers in the agricultural sector)
## 9148                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, urban (% of urban workers in the agricultural sector)
## 9149                                                                                                                                                                                             Wage employment in agriculture, aged 15-24 (% of workers aged 15-24 in the agricultural sector)
## 9150                                                                                                                                                                                           Wage employment in agriculture, aged 15-64, total (% of total workers in the agricultural sector)
## 9151                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, total
## 9152                                                                                                                                                                                                            Average number of completed years in formal education, aged 17 and above, female
## 9153                                                                                                                                                                                           Average number of completed years in formal education, aged 17 and above, above primary education
## 9154                                                                                                                                                                                       Average number of completed years in formal education, aged 17 and above, primary education and below
## 9155                                                                                                                                                                                                              Average number of completed years in formal education, aged 17 and above, male
## 9156                                                                                                                                                                                                                    Average number of completed years in formal education, aged 25 and above
## 9157                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, rural
## 9158                                                                                                                                                                                                             Average number of completed years in formal education, aged 17 and above, urban
## 9159                                                                                                                                                                                                                           Average number of completed years in formal education, aged 17-24
## 9160                                                                                                                                                                                                                   Youth employment rate, aged 15-24, female (% of female youth labor force)
## 9161                                                                                                                                                                                     Youth employment rate, aged 15-24, above primary education (% of youth labor force with high education)
## 9162                                                                                                                                                                                  Youth employment rate, aged 15-24, primary education and below (% of youth labor force with low education)
## 9163                                                                                                                                                                                                                       Youth employment rate, aged 15-24, male (% of male youth labor force)
## 9164                                                                                                                                                                                                                     Youth employment rate, aged 15-24, rural (% of rural youth labor force)
## 9165                                                                                                                                                                                                                     Youth employment rate, aged 15-24, urban (% of urban youth labor force)
## 9166                                                                                                                                                                                                                     Youth employment rate, aged 15-24, total (% of total youth labor force)
## 9167                                                                                                                                                                                                                Employment rate, aged 15-64, female (% of female labor force in working age)
## 9168                                                                                                                                                                                  Employment rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9169                                                                                                                                                                               Employment rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9170                                                                                                                                                                                                                    Employment rate, aged 15-64, male (% of male labor force in working age)
## 9171                                                                                                                                                                                                                                   Employment rate, aged 25-64 (% of labor force aged 25-64)
## 9172                                                                                                                                                                                                                 Employment rate, aged 15-64, rural  (% of rural labor force in working age)
## 9173                                                                                                                                                                                                                  Employment rate, aged 15-64, urban (% of urban labor force in working age)
## 9174                                                                                                                                                                                                                                   Employment rate, aged 15-24 (% of labor force aged 15-24)
## 9175                                                                                                                                                                                                                  Employment rate, aged 15-64, total (% of total labor force in working age)
## 9176                                                                                                                                                                                  Employment in the agricultural sector, aged 15-64, female (% of female employed population in working age)
## 9177                                                                                                                                                    Employment in the agricultural sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9178                                                                                                                                                 Employment in the agricultural sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9179                                                                                                                                                                                      Employment in the agricultural sector, aged 15-64, male (% of male employed population in working age)
## 9180                                                                                                                                                                                                     Employment in the agricultural sector, aged 25-64 (% of employed population aged 25-64)
## 9181                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, rural (% of rural employed population in working age)
## 9182                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, urban (% of urban employed population in working age)
## 9183                                                                                                                                                                                                     Employment in the agricultural sector, aged 15-24 (% of employed population aged 15-24)
## 9184                                                                                                                                                                                    Employment in the agricultural sector, aged 15-64, total (% of total employed population in working age)
## 9185                                                                                                                                                                        Employment in the armed forces occupation group, aged 15-64, female (% of female employed population in working age)
## 9186                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9187                                                                                                                                       Employment in the armed forces occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9188                                                                                                                                                                            Employment in the armed forces occupation group, aged 15-64, male (% of male employed population in working age)
## 9189                                                                                                                                                                                           Employment in the armed forces occupation group, aged 25-64 (% of employed population aged 25-64)
## 9190                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9191                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9192                                                                                                                                                                                           Employment in the armed forces occupation group, aged 15-24 (% of employed population aged 15-24)
## 9193                                                                                                                                                                          Employment in the armed forces occupation group, aged 15-64, total (% of total employed population in working age)
## 9194                                                                                                                                                                              Employment in the clerks occupation group, aged 15-64, female (% of female employed population in working age)
## 9195                                                                                                                                                Employment in the clerks occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9196                                                                                                                                             Employment in the clerks occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9197                                                                                                                                                                                  Employment in the clerks occupation group, aged 15-64, male (% of male employed population in working age)
## 9198                                                                                                                                                                                                 Employment in the clerks occupation group, aged 25-64 (% of employed population aged 25-64)
## 9199                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9200                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9201                                                                                                                                                                                                 Employment in the clerks occupation group, aged 15-24 (% of employed population aged 15-24)
## 9202                                                                                                                                                                                Employment in the clerks occupation group, aged 15-64, total (% of total employed population in working age)
## 9203                                                                                                                                                                                  Employment in the construction sector, aged 15-64, female (% of female employed population in working age)
## 9204                                                                                                                                                    Employment in the construction sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9205                                                                                                                                                 Employment in the construction sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9206                                                                                                                                                                                      Employment in the construction sector, aged 15-64, male (% of male employed population in working age)
## 9207                                                                                                                                                                                                     Employment in the construction sector, aged 25-64 (% of employed population aged 25-64)
## 9208                                                                                                                                                                                    Employment in the construction sector, aged 15-64, rural (% of rural employed population in working age)
## 9209                                                                                                                                                                                    Employment in the construction sector, aged 15-64, urban (% of urban employed population in working age)
## 9210                                                                                                                                                                                                     Employment in the construction sector, aged 15-24 (% of employed population aged 15-24)
## 9211                                                                                                                                                                                    Employment in the construction sector, aged 15-64, total (% of total employed population in working age)
## 9212                                                                                                                                                                                      Employment in the commerce sector, aged 15-64, female (% of female employed population in working age)
## 9213                                                                                                                                                        Employment in the commerce sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9214                                                                                                                                                     Employment in the commerce sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9215                                                                                                                                                                                          Employment in the commerce sector, aged 15-64, male (% of male employed population in working age)
## 9216                                                                                                                                                                                                         Employment in the commerce sector, aged 25-64 (% of employed population aged 25-64)
## 9217                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, rural (% of rural employed population in working age)
## 9218                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, urban (% of urban employed population in working age)
## 9219                                                                                                                                                                                                         Employment in the commerce sector, aged 15-24 (% of employed population aged 15-24)
## 9220                                                                                                                                                                                        Employment in the commerce sector, aged 15-64, total (% of total employed population in working age)
## 9221                                                                                                                                                                                  Employed workers with a work contract, aged 15-64, female (% of female employed population in working age)
## 9222                                                                                                                                                    Employed workers with a work contract, aged 15-64, above primary education (% of employed population with high education in working age)
## 9223                                                                                                                                                 Employed workers with a work contract, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9224                                                                                                                                                                                      Employed workers with a work contract, aged 15-64, male (% of male employed population in working age)
## 9225                                                                                                                                                                                                     Employed workers with a work contract, aged 25-64 (% of employed population aged 25-64)
## 9226                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, rural (% of rural employed population in working age)
## 9227                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, urban (% of urban employed population in working age)
## 9228                                                                                                                                                                                                     Employed workers with a work contract, aged 15-24 (% of employed population aged 15-24)
## 9229                                                                                                                                                                                    Employed workers with a work contract, aged 15-64, total (% of total employed population in working age)
## 9230                                                                                                                                                                       Employment in the craft workers occupation group, aged 15-64, female (% of female employed population in working age)
## 9231                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9232                                                                                                                                      Employment in the craft workers occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9233                                                                                                                                                                           Employment in the craft workers occupation group, aged 15-64, male (% of male employed population in working age)
## 9234                                                                                                                                                                                          Employment in the craft workers occupation group, aged 25-64 (% of employed population aged 25-64)
## 9235                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9236                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9237                                                                                                                                                                                          Employment in the craft workers occupation group, aged 15-24 (% of employed population aged 15-24)
## 9238                                                                                                                                                                         Employment in the craft workers occupation group, aged 15-64, total (% of total employed population in working age)
## 9239                                                                                                                                                               Employment in the eletricity and public utilities sector, aged 15-64, female (% of female employed population in working age)
## 9240                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9241                                                                                                                              Employment in the eletricity and public utilities sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9242                                                                                                                                                                   Employment in the eletricity and public utilities sector, aged 15-64, male (% of male employed population in working age)
## 9243                                                                                                                                                                                  Employment in the eletricity and public utilities sector, aged 25-64 (% of employed population aged 25-64)
## 9244                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, rural (% of rural employed population in working age)
## 9245                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, urban (% of urban employed population in working age)
## 9246                                                                                                                                                                                  Employment in the eletricity and public utilities sector, aged 15-24 (% of employed population aged 15-24)
## 9247                                                                                                                                                                 Employment in the eletricity and public utilities sector, aged 15-64, total (% of total employed population in working age)
## 9248                                                                                                                                                                          Employment in the elementary occupation group, aged 15-64, female (% of female employed population in working age)
## 9249                                                                                                                                            Employment in the elementary occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9250                                                                                                                                         Employment in the elementary occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9251                                                                                                                                                                              Employment in the elementary occupation group, aged 15-64, male (% of male employed population in working age)
## 9252                                                                                                                                                                                             Employment in the elementary occupation group, aged 25-64 (% of employed population aged 25-64)
## 9253                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9254                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9255                                                                                                                                                                                             Employment in the elementary occupation group, aged 15-24 (% of employed population aged 15-24)
## 9256                                                                                                                                                                            Employment in the elementary occupation group, aged 15-64, total (% of total employed population in working age)
## 9257                                                                                                                                                               Employment in the financial and business services sector, aged 15-64, female (% of female employed population in working age)
## 9258                                                                                                                                 Employment in the financial and business services sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9259                                                                                                                              Employment in the financial and business services sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9260                                                                                                                                                                   Employment in the financial and business services sector, aged 15-64, male (% of male employed population in working age)
## 9261                                                                                                                                                                                  Employment in the financial and business services sector, aged 25-64 (% of employed population aged 25-64)
## 9262                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, rural (% of rural employed population in working age)
## 9263                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, urban (% of urban employed population in working age)
## 9264                                                                                                                                                                                  Employment in the financial and business services sector, aged 15-24 (% of employed population aged 15-24)
## 9265                                                                                                                                                                 Employment in the financial and business services sector, aged 15-64, total (% of total employed population in working age)
## 9266                                                                                                                                                                                 Employed workers with health insurance, aged 15-64, female (% of female employed population in working age)
## 9267                                                                                                                                                   Employed workers with health insurance, aged 15-64, above primary education (% of employed population with high education in working age)
## 9268                                                                                                                                                Employed workers with health insurance, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9269                                                                                                                                                                                     Employed workers with health insurance, aged 15-64, male (% of male employed population in working age)
## 9270                                                                                                                                                                                                    Employed workers with health insurance, aged 25-64 (% of employed population aged 25-64)
## 9271                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, rural (% of rural employed population in working age)
## 9272                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, urban (% of urban employed population in working age)
## 9273                                                                                                                                                                                                    Employed workers with health insurance, aged 15-24 (% of employed population aged 15-24)
## 9274                                                                                                                                                                                   Employed workers with health insurance, aged 15-64, total (% of total employed population in working age)
## 9275                                                                                                                                                                                                   Informal job workers, aged 15-64, female (% of female employed population in working age)
## 9276                                                                                                                                                                     Informal job workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9277                                                                                                                                                                  Informal job workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9278                                                                                                                                                                                                       Informal job workers, aged 15-64, male (% of male employed population in working age)
## 9279                                                                                                                                                                                                                      Informal job workers, aged 25-64 (% of employed population aged 25-64)
## 9280                                                                                                                                                                                                     Informal job workers, aged 15-64, rural (% of rural employed population in working age)
## 9281                                                                                                                                                                                                     Informal job workers, aged 15-64, urban (% of urban employed population in working age)
## 9282                                                                                                                                                                                                                      Informal job workers, aged 15-24 (% of employed population aged 15-24)
## 9283                                                                                                                                                                                                     Informal job workers, aged 15-64, total (% of total employed population in working age)
## 9284                                                                                                                                                                                    Employment in the industrial sector, aged 15-64, female (% of female employed population in working age)
## 9285                                                                                                                                                      Employment in the industrial sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9286                                                                                                                                                   Employment in the industrial sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9287                                                                                                                                                                                        Employment in the industrial sector, aged 15-64, male (% of male employed population in working age)
## 9288                                                                                                                                                                                                       Employment in the industrial sector, aged 25-64 (% of employed population aged 25-64)
## 9289                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, rural (% of rural employed population in working age)
## 9290                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, urban (% of urban employed population in working age)
## 9291                                                                                                                                                                                                       Employment in the industrial sector, aged 15-24 (% of employed population aged 15-24)
## 9292                                                                                                                                                                                      Employment in the industrial sector, aged 15-64, total (% of total employed population in working age)
## 9293                                                                                                                                                                   Employment in the machine operators occupation group, aged 15-64, female (% of female employed population in working age)
## 9294                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9295                                                                                                                                  Employment in the machine operators occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9296                                                                                                                                                                       Employment in the machine operators occupation group, aged 15-64, male (% of male employed population in working age)
## 9297                                                                                                                                                                                      Employment in the machine operators occupation group, aged 25-64 (% of employed population aged 25-64)
## 9298                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9299                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9300                                                                                                                                                                                      Employment in the machine operators occupation group, aged 15-24 (% of employed population aged 15-24)
## 9301                                                                                                                                                                     Employment in the machine operators occupation group, aged 15-64, total (% of total employed population in working age)
## 9302                                                                                                                                                                                 Employment in the manufacturing sector, aged 15-64, female (% of female employed population in working age)
## 9303                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9304                                                                                                                                                Employment in the manufacturing sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9305                                                                                                                                                                                     Employment in the manufacturing sector, aged 15-64, male (% of male employed population in working age)
## 9306                                                                                                                                                                                                    Employment in the manufacturing sector, aged 25-64 (% of employed population aged 25-64)
## 9307                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, rural (% of rural employed population in working age)
## 9308                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, urban (% of urban employed population in working age)
## 9309                                                                                                                                                                                                    Employment in the manufacturing sector, aged 15-24 (% of employed population aged 15-24)
## 9310                                                                                                                                                                                   Employment in the manufacturing sector, aged 15-64, total (% of total employed population in working age)
## 9311                                                                                                                                                                                        Employment in the mining sector, aged 15-64, female (% of female employed population in working age)
## 9312                                                                                                                                                          Employment in the mining sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9313                                                                                                                                                       Employment in the mining sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9314                                                                                                                                                                                            Employment in the mining sector, aged 15-64, male (% of male employed population in working age)
## 9315                                                                                                                                                                                                           Employment in the mining sector, aged 25-64 (% of employed population aged 25-64)
## 9316                                                                                                                                                                                          Employment in the mining sector, aged 15-64, rural (% of rural employed population in working age)
## 9317                                                                                                                                                                                          Employment in the mining sector, aged 15-64, urban (% of urban employed population in working age)
## 9318                                                                                                                                                                                                           Employment in the mining sector, aged 15-24 (% of employed population aged 15-24)
## 9319                                                                                                                                                                                          Employment in the mining sector, aged 15-64, total (% of total employed population in working age)
## 9320                                                                                                                                                                                                              Employers, aged 15-64, female (% of female employed population in working age)
## 9321                                                                                                                                                                                Employers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9322                                                                                                                                                                             Employers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9323                                                                                                                                                                                                                  Employers, aged 15-64, male (% of male employed population in working age)
## 9324                                                                                                                                                                                             Non-agricultural employers, aged 15-64, female (% of female employed population in working age)
## 9325                                                                                                                                                               Non-agricultural employers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9326                                                                                                                                                            Non-agricultural employers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9327                                                                                                                                                                                                 Non-agricultural employers, aged 15-64, male (% of male employed population in working age)
## 9328                                                                                                                                                                                                                Non-agricultural employers, aged 25-64 (% of employed population aged 25-64)
## 9329                                                                                                                                                                                               Non-agricultural employers, aged 15-64, rural (% of rural employed population in working age)
## 9330                                                                                                                                                                                               Non-agricultural employers, aged 15-64, urban (% of urban employed population in working age)
## 9331                                                                                                                                                                                                                Non-agricultural employers, aged 15-24 (% of employed population aged 15-24)
## 9332                                                                                                                                                                                               Non-agricultural employers, aged 15-64, total (% of total employed population in working age)
## 9333                                                                                                                                                                                                                                 Employers, aged 25-64 (% of employed population aged 25-64)
## 9334                                                                                                                                                                                                                Employers, aged 15-64, rural (% of rural employed population in working age)
## 9335                                                                                                                                                                                                                Employers, aged 15-64, urban (% of urban employed population in working age)
## 9336                                                                                                                                                                                                                                 Employers, aged 15-24 (% of employed population aged 15-24)
## 9337                                                                                                                                                                                                                Employers, aged 15-64, total (% of total employed population in working age)
## 9338                                                                                                                                             Female in non-agricultural employment, aged 15-64, above primary education (% of employed female population with high education in working age)
## 9339                                                                                                                                          Female in non-agricultural employment, aged 15-64, primary education and below (% of employed female population with low education in working age)
## 9340                                                                                                                                                                                              Female in non-agricultural employment, aged 25-64 (% of employed female population aged 25-64)
## 9341                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, rural (% of rural employed female population in working age)
## 9342                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, urban (% of urban employed female population in working age)
## 9343                                                                                                                                                                                              Female in non-agricultural employment, aged 15-24 (% of employed female population aged 15-24)
## 9344                                                                                                                                                                             Female in non-agricultural employment, aged 15-64, total (% of total employed female population in working age)
## 9345                                                                                                                                                                                            Youth in non-agricultural employment, aged 15-24, female (% of female employed youth aged 15-24)
## 9346                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, above primary education (% of employed youth with high education aged 15-24)
## 9347                                                                                                                                                           Youth in non-agricultural employment, aged 15-24, primary education and below (% of employed youth with low education aged 15-24)
## 9348                                                                                                                                                                                                Youth in non-agricultural employment, aged 15-24, male (% of male employed youth aged 15-24)
## 9349                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, rural (% of rural employed youth aged 15-24)
## 9350                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, urban (% of urban employed youth aged 15-24)
## 9351                                                                                                                                                                                              Youth in non-agricultural employment, aged 15-24, total (% of total employed youth aged 15-24)
## 9352                                                                                                                                                                                Employment in the other services sector, aged 15-64, female (% of female employed population in working age)
## 9353                                                                                                                                                  Employment in the other services sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9354                                                                                                                                               Employment in the other services sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9355                                                                                                                                                                                    Employment in the other services sector, aged 15-64, male (% of male employed population in working age)
## 9356                                                                                                                                                                                                   Employment in the other services sector, aged 25-64 (% of employed population aged 25-64)
## 9357                                                                                                                                                                                  Employment in the other services sector, aged 15-64, rural (% of rural employed population in working age)
## 9358                                                                                                                                                                                  Employment in the other services sector, aged 15-64, urban (% of urban employed population in working age)
## 9359                                                                                                                                                                                                   Employment in the other services sector, aged 15-24 (% of employed population aged 15-24)
## 9360                                                                                                                                                                                  Employment in the other services sector, aged 15-64, total (% of total employed population in working age)
## 9361                                                                                                                                                                         Employment in the public administration sector, aged 15-64, female (% of female employed population in working age)
## 9362                                                                                                                                           Employment in the public administration sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9363                                                                                                                                        Employment in the public administration sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9364                                                                                                                                                                             Employment in the public administration sector, aged 15-64, male (% of male employed population in working age)
## 9365                                                                                                                                                                                            Employment in the public administration sector, aged 25-64 (% of employed population aged 25-64)
## 9366                                                                                                                                                                           Employment in the public administration sector, aged 15-64, rural (% of rural employed population in working age)
## 9367                                                                                                                                                                           Employment in the public administration sector, aged 15-64, urban (% of urban employed population in working age)
## 9368                                                                                                                                                                                            Employment in the public administration sector, aged 15-24 (% of employed population aged 15-24)
## 9369                                                                                                                                                                           Employment in the public administration sector, aged 15-64, total (% of total employed population in working age)
## 9370                                                                                                                                                                       Employment in the professionals occupation group, aged 15-64, female (% of female employed population in working age)
## 9371                                                                                                                                         Employment in the professionals occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9372                                                                                                                                      Employment in the professionals occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9373                                                                                                                                                                           Employment in the professionals occupation group, aged 15-64, male (% of male employed population in working age)
## 9374                                                                                                                                                                                          Employment in the professionals occupation group, aged 25-64 (% of employed population aged 25-64)
## 9375                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9376                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9377                                                                                                                                                                                          Employment in the professionals occupation group, aged 15-24 (% of employed population aged 15-24)
## 9378                                                                                                                                                                         Employment in the professionals occupation group, aged 15-64, total (% of total employed population in working age)
## 9379                                                                                                                                                                                        Employment in the public sector, aged 15-64, female (% of female employed population in working age)
## 9380                                                                                                                                                          Employment in the public sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9381                                                                                                                                                       Employment in the public sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9382                                                                                                                                                                                            Employment in the public sector, aged 15-64, male (% of male employed population in working age)
## 9383                                                                                                                                                                                                           Employment in the public sector, aged 25-64 (% of employed population aged 25-64)
## 9384                                                                                                                                                                                          Employment in the public sector, aged 15-64, rural (% of rural employed population in working age)
## 9385                                                                                                                                                                                          Employment in the public sector, aged 15-64, urban (% of urban employed population in working age)
## 9386                                                                                                                                                                                                           Employment in the public sector, aged 15-24 (% of employed population aged 15-24)
## 9387                                                                                                                                                                                          Employment in the public sector, aged 15-64, total (% of total employed population in working age)
## 9388                                                                                                                                                                                                  Self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9389                                                                                                                                                                    Self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9390                                                                                                                                                                 Self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9391                                                                                                                                                                                                      Self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9392                                                                                                                                                                                 Non-agricultural self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9393                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9394                                                                                                                                                Non-agricultural self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9395                                                                                                                                                                                     Non-agricultural self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9396                                                                                                                                                                                                    Non-agricultural self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9397                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9398                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9399                                                                                                                                                                                                    Non-agricultural self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9400                                                                                                                                                                                   Non-agricultural self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9401                                                                                                                                                                                                                     Self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9402                                                                                                                                                                                                    Self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9403                                                                                                                                                                                                    Self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9404                                                                                                                                                                                                                     Self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9405                                                                                                                                                                                                    Self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9406                                                                                                                                                                    Employment in the senior officials occupation group, aged 15-64, female (% of female employed population in working age)
## 9407                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9408                                                                                                                                   Employment in the senior officials occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9409                                                                                                                                                                        Employment in the senior officials occupation group, aged 15-64, male (% of male employed population in working age)
## 9410                                                                                                                                                                                       Employment in the senior officials occupation group, aged 25-64 (% of employed population aged 25-64)
## 9411                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9412                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9413                                                                                                                                                                                       Employment in the senior officials occupation group, aged 15-24 (% of employed population aged 15-24)
## 9414                                                                                                                                                                      Employment in the senior officials occupation group, aged 15-64, total (% of total employed population in working age)
## 9415                                                                                                                                                                                       Employment in the service sector, aged 15-64, female (% of female employed population in working age)
## 9416                                                                                                                                                         Employment in the service sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9417                                                                                                                                                      Employment in the service sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9418                                                                                                                                                                                           Employment in the service sector, aged 15-64, male (% of male employed population in working age)
## 9419                                                                                                                                                                                                          Employment in the service sector, aged 25-64 (% of employed population aged 25-64)
## 9420                                                                                                                                                                                         Employment in the service sector, aged 15-64, rural (% of rural employed population in working age)
## 9421                                                                                                                                                                                         Employment in the service sector, aged 15-64, urban (% of urban employed population in working age)
## 9422                                                                                                                                                                                                          Employment in the service sector, aged 15-24 (% of employed population aged 15-24)
## 9423                                                                                                                                                                                         Employment in the service sector, aged 15-64, total (% of total employed population in working age)
## 9424                                                                                                                                                                 Employment in the skilled agriculture occupation group, aged 15-64, female (% of female employed population in working age)
## 9425                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9426                                                                                                                                Employment in the skilled agriculture occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9427                                                                                                                                                                     Employment in the skilled agriculture occupation group, aged 15-64, male (% of male employed population in working age)
## 9428                                                                                                                                                                                    Employment in the skilled agriculture occupation group, aged 25-64 (% of employed population aged 25-64)
## 9429                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9430                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9431                                                                                                                                                                                    Employment in the skilled agriculture occupation group, aged 15-24 (% of employed population aged 15-24)
## 9432                                                                                                                                                                   Employment in the skilled agriculture occupation group, aged 15-64, total (% of total employed population in working age)
## 9433                                                                                                                                                                                  Employed workers with social security, aged 15-64, female (% of female employed population in working age)
## 9434                                                                                                                                                    Employed workers with social security, aged 15-64, above primary education (% of employed population with high education in working age)
## 9435                                                                                                                                                 Employed workers with social security, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9436                                                                                                                                                                                      Employed workers with social security, aged 15-64, male (% of male employed population in working age)
## 9437                                                                                                                                                                                                     Employed workers with social security, aged 25-64 (% of employed population aged 25-64)
## 9438                                                                                                                                                                                    Employed workers with social security, aged 15-64, rural (% of rural employed population in working age)
## 9439                                                                                                                                                                                    Employed workers with social security, aged 15-64, urban (% of urban employed population in working age)
## 9440                                                                                                                                                                                                     Employed workers with social security, aged 15-24 (% of employed population aged 15-24)
## 9441                                                                                                                                                                                    Employed workers with social security, aged 15-64, total (% of total employed population in working age)
## 9442                                                                                                                                                            Employment in the service and market sales occupation group, aged 15-64, female (% of female employed population in working age)
## 9443                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9444                                                                                                                           Employment in the service and market sales occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9445                                                                                                                                                                Employment in the service and market sales occupation group, aged 15-64, male (% of male employed population in working age)
## 9446                                                                                                                                                                               Employment in the service and market sales occupation group, aged 25-64 (% of employed population aged 25-64)
## 9447                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9448                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9449                                                                                                                                                                               Employment in the service and market sales occupation group, aged 15-24 (% of employed population aged 15-24)
## 9450                                                                                                                                                              Employment in the service and market sales occupation group, aged 15-64, total (% of total employed population in working age)
## 9451                                                                                                                                                                         Employment in the technicians occupation group, aged 15-64, female (% of female employed population in working age)
## 9452                                                                                                                                           Employment in the technicians occupation group, aged 15-64, above primary education (% of employed population with high education in working age)
## 9453                                                                                                                                        Employment in the technicians occupation group, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9454                                                                                                                                                                             Employment in the technicians occupation group, aged 15-64, male (% of male employed population in working age)
## 9455                                                                                                                                                                                            Employment in the technicians occupation group, aged 25-64 (% of employed population aged 25-64)
## 9456                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, rural (% of rural employed population in working age)
## 9457                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, urban (% of urban employed population in working age)
## 9458                                                                                                                                                                                            Employment in the technicians occupation group, aged 15-24 (% of employed population aged 15-24)
## 9459                                                                                                                                                                           Employment in the technicians occupation group, aged 15-64, total (% of total employed population in working age)
## 9460                                                                                                                                                                                                  Employment to population ratio, aged 15-64, female (% of female population in working age)
## 9461                                                                                                                                                                    Employment to population ratio, aged 15-64, above primary education (% of population with high education in working age)
## 9462                                                                                                                                                                 Employment to population ratio, aged 15-64, primary education and below (% of population with low education in working age)
## 9463                                                                                                                                                                                                      Employment to population ratio, aged 15-64, male (% of male population in working age)
## 9464                                                                                                                                                                                                                     Employment to population ratio, aged 25-64 (% of population aged 25-64)
## 9465                                                                                                                                                                                                    Employment to population ratio, aged 15-64, rural (% of rural population in working age)
## 9466                                                                                                                                                                                                    Employment to population ratio, aged 15-64, urban (% of urban population in working age)
## 9467                                                                                                                                                                                                                     Employment to population ratio, aged 15-24 (% of population aged 15-24)
## 9468                                                                                                                                                                                                    Employment to population ratio, aged 15-64, total (% of total population in working age)
## 9469                                                                                                                                                                   Employment in the transport and communication sector, aged 15-64, female (% of female employed population in working age)
## 9470                                                                                                                                     Employment in the transport and communication sector, aged 15-64, above primary education (% of employed population with high education in working age)
## 9471                                                                                                                                  Employment in the transport and communication sector, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9472                                                                                                                                                                       Employment in the transport and communication sector, aged 15-64, male (% of male employed population in working age)
## 9473                                                                                                                                                                                      Employment in the transport and communication sector, aged 25-64 (% of employed population aged 25-64)
## 9474                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, rural (% of rural employed population in working age)
## 9475                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, urban (% of urban employed population in working age)
## 9476                                                                                                                                                                                      Employment in the transport and communication sector, aged 15-24 (% of employed population aged 15-24)
## 9477                                                                                                                                                                     Employment in the transport and communication sector, aged 15-64, total (% of total employed population in working age)
## 9478                                                                                                                                                                                                         Unpaid workers, aged 15-64, female (% of female employed population in working age)
## 9479                                                                                                                                                                           Unpaid workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9480                                                                                                                                                                        Unpaid workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9481                                                                                                                                                                                                             Unpaid workers, aged 15-64, male (% of male employed population in working age)
## 9482                                                                                                                                                                                     Non-agricultural unpaid employment, aged 15-64, female (% of female employed population in working age)
## 9483                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, above primary education (% of employed population with high education in working age)
## 9484                                                                                                                                                    Non-agricultural unpaid employment, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9485                                                                                                                                                                                         Non-agricultural unpaid employment, aged 15-64, male (% of male employed population in working age)
## 9486                                                                                                                                                                                                        Non-agricultural unpaid employment, aged 25-64 (% of employed population aged 25-64)
## 9487                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, rural (% of rural employed population in working age)
## 9488                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, urban (% of urban employed population in working age)
## 9489                                                                                                                                                                                                        Non-agricultural unpaid employment, aged 15-24 (% of employed population aged 15-24)
## 9490                                                                                                                                                                                       Non-agricultural unpaid employment, aged 15-64, total (% of total employed population in working age)
## 9491                                                                                                                                                                                                                            Unpaid workers, aged 25-64 (% of employed population aged 25-64)
## 9492                                                                                                                                                                                                           Unpaid workers, aged 15-64, rural (% of rural employed population in working age)
## 9493                                                                                                                                                                                                           Unpaid workers, aged 15-64, urban (% of urban employed population in working age)
## 9494                                                                                                                                                                                                                            Unpaid workers, aged 15-24 (% of employed population aged 15-24)
## 9495                                                                                                                                                                                                           Unpaid workers, aged 15-64, total (% of total employed population in working age)
## 9496                                                                                                                                                                                        Unpaid or self-employed workers, aged 15-64, female (% of female employed population in working age)
## 9497                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9498                                                                                                                                                       Unpaid or self-employed workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9499                                                                                                                                                                                            Unpaid or self-employed workers, aged 15-64, male (% of male employed population in working age)
## 9500                                                                                                                                                                                                           Unpaid or self-employed workers, aged 25-64 (% of employed population aged 25-64)
## 9501                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, rural (% of rural employed population in working age)
## 9502                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, urban (% of urban employed population in working age)
## 9503                                                                                                                                                                                                           Unpaid or self-employed workers, aged 15-24 (% of employed population aged 15-24)
## 9504                                                                                                                                                                                          Unpaid or self-employed workers, aged 15-64, total (% of total employed population in working age)
## 9505                                                                                                                                                                                             Youth in non-agricultural wage employment, ages 15-24, female (% of female youth in employment)
## 9506                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, above primary education (% of employed youth with high education aged 15-24)
## 9507                                                                                                                                                      Youth in non-agricultural wage employment, aged 15-24, primary education and below (% of employed youth with low education aged 15-24)
## 9508                                                                                                                                                                                           Youth in non-agricultural wage employment, aged 15-24, male (% of male employed youth aged 15-24)
## 9509                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, rural (% of rural employed youth aged 15-24)
## 9510                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, urban (% of urban employed youth aged 15-24)
## 9511                                                                                                                                                                                         Youth in non-agricultural wage employment, aged 15-24, total (% of total employed youth aged 15-24)
## 9512                                                                                                                                                                                                           Wage workers, aged 15-64, female (% of female employed population in working age)
## 9513                                                                                                                                                                             Wage workers, aged 15-64, above primary education (% of employed population with high education in working age)
## 9514                                                                                                                                                                          Wage workers, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9515                                                                                                                                                                                                               Wage workers, aged 15-64, male (% of male employed population in working age)
## 9516                                                                                                                                                                                       Non-agricultural wage employment, aged 15-64, female (% of female employed population in working age)
## 9517                                                                                                                                                         Non-agricultural wage employment, aged 15-64, above primary education (% of employed population with high education in working age)
## 9518                                                                                                                                                      Non-agricultural wage employment, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9519                                                                                                                                                                                           Non-agricultural wage employment, aged 15-64, male (% of male employed population in working age)
## 9520                                                                                                                                                                                                          Non-agricultural wage employment, aged 25-64 (% of employed population aged 25-64)
## 9521                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, rural (% of rural employed population in working age)
## 9522                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, urban (% of urban employed population in working age)
## 9523                                                                                                                                                                                                          Non-agricultural wage employment, aged 15-24 (% of employed population aged 15-24)
## 9524                                                                                                                                                                                         Non-agricultural wage employment, aged 15-64, total (% of total employed population in working age)
## 9525                                                                                                                                                                                                                              Wage workers, aged 25-64 (% of employed population aged 25-64)
## 9526                                                                                                                                                                                                             Wage workers, aged 15-64, rural (% of rural employed population in working age)
## 9527                                                                                                                                                                                                             Wage workers, aged 15-64, urban (% of urban employed population in working age)
## 9528                                                                                                                                                                                                                              Wage workers, aged 15-24 (% of employed population aged 15-24)
## 9529                                                                                                                                                                                                             Wage workers, aged 15-64, total (% of total employed population in working age)
## 9530                                                                                                                                                                                                                       Enrollment rate, aged 6-16, female (% of female population aged 6-16)
## 9531                                                                                                                                                                                         Enrollment rate, aged 6-16, above primary education (% of population with high education aged 6-16)
## 9532                                                                                                                                                                                      Enrollment rate, aged 6-16, primary education and below (% of population with low education aged 6-16)
## 9533                                                                                                                                                                                                                           Enrollment rate, aged 6-16, male (% of male population aged 6-16)
## 9534                                                                                                                                                                                                                         Enrollment rate, aged 6-16, rural (% of rural population aged 6-16)
## 9535                                                                                                                                                                                                                         Enrollment rate, aged 6-16, urban (% of urban population aged 6-16)
## 9536                                                                                                                                                                                                                                    Enrollment rate, aged 15-16 (% of population aged 15-16)
## 9537                                                                                                                                                                                                                         Enrollment rate, aged 6-16, total (% of total population aged 6-16)
## 9538                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, total
## 9539                                                                                                                                                                                                                         Average age of workers in the industrial sector, aged 15-64, female
## 9540                                                                                                                                                                                                        Average age of workers in the industrial sector, aged 15-64, above primary education
## 9541                                                                                                                                                                                                    Average age of workers in the industrial sector, aged 15-64, primary education and below
## 9542                                                                                                                                                                                                                           Average age of workers in the industrial sector, aged 15-64, male
## 9543                                                                                                                                                                                                                                 Average age of workers in the industrial sector, aged 25-64
## 9544                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, rural
## 9545                                                                                                                                                                                                                          Average age of workers in the industrial sector, aged 15-64, urban
## 9546                                                                                                                                                                                                                                 Average age of workers in the industrial sector, aged 15-24
## 9547                                                                                                                                                                                              Wage employment in industry, aged 15-64, female (% of female workers in the industrial sector)
## 9548                                                                                                                                                                Wage employment in industry, aged 15-64, above primary education (% of workers with high education in the industrial sector)
## 9549                                                                                                                                                             Wage employment in industry, aged 15-64, primary education and below (% of workers with low education in the industrial sector)
## 9550                                                                                                                                                                                                  Wage employment in industry, aged 15-64, male (% of male workers in the industrial sector)
## 9551                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, total
## 9552                                                                                                                                                                                               Median earnings per month in the industrial sector, aged 15-64, local currency values, female
## 9553                                                                                                                                                                              Median earnings per month in the industrial sector, aged 15-64, local currency values, above primary education
## 9554                                                                                                                                                                          Median earnings per month in the industrial sector, aged 15-64, local currency values, primary education and below
## 9555                                                                                                                                                                                                 Median earnings per month in the industrial sector, aged 15-64, local currency values, male
## 9556                                                                                                                                                                                                       Median earnings per month in the industrial sector, aged 25-64, local currency values
## 9557                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, rural
## 9558                                                                                                                                                                                                Median earnings per month in the industrial sector, aged 15-64, local currency values, urban
## 9559                                                                                                                                                                                                       Median earnings per month in the industrial sector, aged 15-24, local currency values
## 9560                                                                                                                                                                                                  Wage employment in industry, aged 25-64 (% of workers aged 25-64 in the industrial sector)
## 9561                                                                                                                                                                                                Wage employment in industry, aged 15-64, rural (% of rural workers in the industrial sector)
## 9562                                                                                                                                                                                                Wage employment in industry, aged 15-64, urban (% of urban workers in the industrial sector)
## 9563                                                                                                                                                                                                  Wage employment in industry, aged 15-24 (% of workers aged 15-24 in the industrial sector)
## 9564                                                                                                                                                                                                Wage employment in industry, aged 15-64, total (% of total workers in the industrial sector)
## 9565                                                                                                                                                                           Workers with more than one jobs in last week, aged 15-64, female (% of female employed population in working age)
## 9566                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9567                                                                                                                                          Workers with more than one jobs in last week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9568                                                                                                                                                                               Workers with more than one jobs in last week, aged 15-64, male (% of male employed population in working age)
## 9569                                                                                                                                                                                              Workers with more than one jobs in last week, aged 25-64 (% of employed population aged 25-64)
## 9570                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, rural (% of rural employed population in working age)
## 9571                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, urban (% of urban employed population in working age)
## 9572                                                                                                                                                                                              Workers with more than one jobs in last week, aged 15-24 (% of employed population aged 15-24)
## 9573                                                                                                                                                                             Workers with more than one jobs in last week, aged 15-64, total (% of total employed population in working age)
## 9574                                                                                                                                                                                                                                       Population aged 0-14, female (% of female population)
## 9575                                                                                                                                                                                                         Population aged 0-14, above primary education (% of population with high edcuation)
## 9576                                                                                                                                                                                                      Population aged 0-14, primary education and below (% of population with low edcuation)
## 9577                                                                                                                                                                                                                                           Population aged 0-14, male (% of male population)
## 9578                                                                                                                                                                                                                                         Population aged 0-14, rural (% of rural population)
## 9579                                                                                                                                                                                                                                         Population aged 0-14, urban (% of urban population)
## 9580                                                                                                                                                                                                                                         Population aged 0-14, total (% of total population)
## 9581                                                                                                                                                                                                                                      Population aged 15-24, female (% of female population)
## 9582                                                                                                                                                                                                        Population aged 15-24, above primary education (% of population with high edcuation)
## 9583                                                                                                                                                                                                     Population aged 15-24, primary education and below (% of population with low edcuation)
## 9584                                                                                                                                                                                                                                          Population aged 15-24, male (% of male population)
## 9585                                                                                                                                                                                                                                        Population aged 15-24, rural (% of rural population)
## 9586                                                                                                                                                                                                                                        Population aged 15-24, urban (% of urban population)
## 9587                                                                                                                                                                                                                                        Population aged 15-24, total (% of total population)
## 9588                                                                                                                                                                                                                         Working-age population, aged 15-64, female (% of female population)
## 9589                                                                                                                                                                                           Working-age population, aged 15-64, above primary education (% of population with high education)
## 9590                                                                                                                                                                                        Working-age population, aged 15-64, primary education and below (% of population with low education)
## 9591                                                                                                                                                                                                                             Working-age population, aged 15-64, male (% of male population)
## 9592                                                                                                                                                                                                                           Working-age population, aged 15-64, rural (% of rural population)
## 9593                                                                                                                                                                                                                           Working-age population, aged 15-64, urban (% of urban population)
## 9594                                                                                                                                                                                                                           Working-age population, aged 15-64, total (% of total population)
## 9595                                                                                                                                                                                                                                      Population aged 25-64, female (% of female population)
## 9596                                                                                                                                                                                                        Population aged 25-64, above primary education (% of population with high edcuation)
## 9597                                                                                                                                                                                                     Population aged 25-64, primary education and below (% of population with low edcuation)
## 9598                                                                                                                                                                                                                                          Population aged 25-64, male (% of male population)
## 9599                                                                                                                                                                                                                                        Population aged 25-64, rural (% of rural population)
## 9600                                                                                                                                                                                                                                        Population aged 25-64, urban (% of urban population)
## 9601                                                                                                                                                                                                                                        Population aged 25-64, total (% of total population)
## 9602                                                                                                                                                                                                                               Population aged 65 and above, female (% of female population)
## 9603                                                                                                                                                                                                 Population aged 65 and above, above primary education (% of population with high edcuation)
## 9604                                                                                                                                                                                              Population aged 65 and above, primary education and below (% of population with low edcuation)
## 9605                                                                                                                                                                                                                                   Population aged 65 and above, male (% of male population)
## 9606                                                                                                                                                                                                                                 Population aged 65 and above, rural (% of rural population)
## 9607                                                                                                                                                                                                                                 Population aged 65 and above, urban (% of urban population)
## 9608                                                                                                                                                                                                                                 Population aged 65 and above, total (% of total population)
## 9609                                                                                                                                                                                                                                                      Dependency rate, all compared to 15-64
## 9610                                                                                                                                                                                                                                  Old age dependency rate, adulter than 64 compared to 15-64
## 9611                                                                                                                                                                                                                                    Youth dependency rate, younger than 15 compared to 15-64
## 9612                                                                                                                                                                                                    Working-age population with no education, female (% of female population in working age)
## 9613                                                                                                                                                                   Working-age population with no education, primary education and below (% of population with low education in working age)
## 9614                                                                                                                                                                                                        Working-age population with no education, male (% of male population in working age)
## 9615                                                                                                                                                                                                           Working-age population with no education, aged 25-64 (% of population aged 25-64)
## 9616                                                                                                                                                                                                      Working-age population with no education, rural (% of rural population in working age)
## 9617                                                                                                                                                                                                      Working-age population with no education, urban (% of urban population in working age)
## 9618                                                                                                                                                                                                           Working-age population with no education, aged 15-24 (% of population aged 15-24)
## 9619                                                                                                                                                                                                      Working-age population with no education, total (% of total population in working age)
## 9620                                                                                                                                                                                               Working-age population with primary education, female (% of female population in working age)
## 9621                                                                                                                                                              Working-age population with primary education, primary education and below (% of population with low education in working age)
## 9622                                                                                                                                                                                                   Working-age population with primary education, male (% of male population in working age)
## 9623                                                                                                                                                                                                      Working-age population with primary education, aged 25-64 (% of population aged 25-64)
## 9624                                                                                                                                                                                                 Working-age population with primary education, rural (% of rural population in working age)
## 9625                                                                                                                                                                                                 Working-age population with primary education, urban (% of urban population in working age)
## 9626                                                                                                                                                                                                      Working-age population with primary education, aged 15-24 (% of population aged 15-24)
## 9627                                                                                                                                                                                                 Working-age population with primary education, total (% of total population in working age)
## 9628                                                                                                                                                                                             Working-age population with secondary education, female (% of female population in working age)
## 9629                                                                                                                                                               Working-age population with secondary education, above primary education (% of population with high education in working age)
## 9630                                                                                                                                                                                                 Working-age population with secondary education, male (% of male population in working age)
## 9631                                                                                                                                                                                                    Working-age population with secondary education, aged 25-64 (% of population aged 25-64)
## 9632                                                                                                                                                                                        Working-age population with post-secondary education, female (% of female population in working age)
## 9633                                                                                                                                                          Working-age population with post-secondary education, above primary education (% of population with high education in working age)
## 9634                                                                                                                                                                                            Working-age population with post-secondary education, male (% of male population in working age)
## 9635                                                                                                                                                                                               Working-age population with post-secondary education, aged 25-64 (% of population aged 25-64)
## 9636                                                                                                                                                                                          Working-age population with post-secondary education, rural (% of rural population in working age)
## 9637                                                                                                                                                                                          Working-age population with post-secondary education, urban (% of urban population in working age)
## 9638                                                                                                                                                                                               Working-age population with post-secondary education, aged 15-24 (% of population aged 15-24)
## 9639                                                                                                                                                                                          Working-age population with post-secondary education, total (% of total population in working age)
## 9640                                                                                                                                                                                               Working-age population with secondary education, rural (% of rural population in working age)
## 9641                                                                                                                                                                                               Working-age population with secondary education, urban (% of urban population in working age)
## 9642                                                                                                                                                                                                    Working-age population with secondary education, aged 15-24 (% of population aged 15-24)
## 9643                                                                                                                                                                                               Working-age population with secondary education, total (% of total population in working age)
## 9644                                                                                                                                                                                                                                                                     Total sample population
## 9645                                                                                                                                                                                                                                                             Total sample population, female
## 9646                                                                                                                                                                                                                                            Total sample population, above primary education
## 9647                                                                                                                                                                                                                                        Total sample population, primary education and below
## 9648                                                                                                                                                                                                                                                               Total sample population, male
## 9649                                                                                                                                                                                                                                                         Total sample population, aged 25-64
## 9650                                                                                                                                                                                                                                                              Total sample population, rural
## 9651                                                                                                                                                                                                                                                              Total sample population, urban
## 9652                                                                                                                                                                                                                                                         Total sample population, aged 15-24
## 9653                                                                                                                                                                                                                                           Urban population, female (% of female population)
## 9654                                                                                                                                                                                                             Urban population, above primary education (% of population with high education)
## 9655                                                                                                                                                                                                          Urban population, primary education and below (% of population with low education)
## 9656                                                                                                                                                                                                                                               Urban population, male (% of male population)
## 9657                                                                                                                                                                                                                                   Urban population, aged 25-64 (% of population aged 25-64)
## 9658                                                                                                                                                                                                                                   Urban population, aged 15-24 (% of population aged 15-24)
## 9659                                                                                                                                                                                                                                             Urban population, total (% of total population)
## 9660                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, total
## 9661                                                                                                                                                                                                                            Average age of workers in the service sector, aged 15-64, female
## 9662                                                                                                                                                                                                           Average age of workers in the service sector, aged 15-64, above primary education
## 9663                                                                                                                                                                                                       Average age of workers in the service sector, aged 15-64, primary education and below
## 9664                                                                                                                                                                                                                              Average age of workers in the service sector, aged 15-64, male
## 9665                                                                                                                                                                                                                                    Average age of workers in the service sector, aged 25-64
## 9666                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, rural
## 9667                                                                                                                                                                                                                             Average age of workers in the service sector, aged 15-64, urban
## 9668                                                                                                                                                                                                                                    Average age of workers in the service sector, aged 15-24
## 9669                                                                                                                                                                                                 Wage employment in services, aged 15-64, female (% of female workers in the service sector)
## 9670                                                                                                                                                                   Wage employment in services, aged 15-64, above primary education (% of workers with high education in the service sector)
## 9671                                                                                                                                                                Wage employment in services, aged 15-64, primary education and below (% of workers with low education in the service sector)
## 9672                                                                                                                                                                                                     Wage employment in services, aged 15-64, male (% of male workers in the service sector)
## 9673                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, total
## 9674                                                                                                                                                                                                  Median earnings per month in the service sector, aged 15-64, local currency values, female
## 9675                                                                                                                                                                                 Median earnings per month in the service sector, aged 15-64, local currency values, above primary education
## 9676                                                                                                                                                                             Median earnings per month in the service sector, aged 15-64, local currency values, primary education and below
## 9677                                                                                                                                                                                                    Median earnings per month in the service sector, aged 15-64, local currency values, male
## 9678                                                                                                                                                                                                          Median earnings per month in the service sector, aged 25-64, local currency values
## 9679                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, rural
## 9680                                                                                                                                                                                                   Median earnings per month in the service sector, aged 15-64, local currency values, urban
## 9681                                                                                                                                                                                                          Median earnings per month in the service sector, aged 15-24, local currency values
## 9682                                                                                                                                                                                                     Wage employment in services, aged 25-64 (% of workers aged 25-64 in the service sector)
## 9683                                                                                                                                                                                                   Wage employment in services, aged 15-64, rural (% of rural workers in the service sector)
## 9684                                                                                                                                                                                                   Wage employment in services, aged 15-64, urban (% of urban workers in the service sector)
## 9685                                                                                                                                                                                                     Wage employment in services, aged 15-24 (% of workers aged 15-24 in the service sector)
## 9686                                                                                                                                                                                                   Wage employment in services, aged 15-64, total (% of total workers in the service sector)
## 9687                                                                                                                                                                                                                                            Average weekly working hours, aged 15-64, female
## 9688                                                                                                                                                                                                                           Average weekly working hours, aged 15-64, above primary education
## 9689                                                                                                                                                                                                                       Average weekly working hours, aged 15-64, primary education and below
## 9690                                                                                                                                                                                                                                              Average weekly working hours, aged 15-64, male
## 9691                                                                                                                                                                                                                                                    Average weekly working hours, aged 25-64
## 9692                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, rural
## 9693                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, total
## 9694                                                                                                                                                                                                                                             Average weekly working hours, aged 15-64, urban
## 9695                                                                                                                                                                                                                                                    Average weekly working hours, aged 15-24
## 9696                                                                                                                                                                           Underemployment, less than 35 hours per week, aged 15-64, female (% of female employed population in working age)
## 9697                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9698                                                                                                                                          Underemployment, less than 35 hours per week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9699                                                                                                                                                                               Underemployment, less than 35 hours per week, aged 15-64, male (% of male employed population in working age)
## 9700                                                                                                                                                                                              Underemployment, less than 35 hours per week, aged 25-64 (% of employed population aged 25-64)
## 9701                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, rural (% of rural employed population in working age)
## 9702                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, urban (% of urban employed population in working age)
## 9703                                                                                                                                                                                              Underemployment, less than 35 hours per week, aged 15-24 (% of employed population aged 15-24)
## 9704                                                                                                                                                                             Underemployment, less than 35 hours per week, aged 15-64, total (% of total employed population in working age)
## 9705                                                                                                                                                                   Excessive working hours, more than 48 hours per week, aged 15-64, female (% of female employed population in working age)
## 9706                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, above primary education (% of employed population with high education in working age)
## 9707                                                                                                                                  Excessive working hours, more than 48 hours per week, aged 15-64, primary education and below (% of employed population with low education in working age)
## 9708                                                                                                                                                                       Excessive working hours, more than 48 hours per week, aged 15-64, male (% of male employed population in working age)
## 9709                                                                                                                                                                                      Excessive working hours, more than 48 hours per week, aged 25-64 (% of employed population aged 25-64)
## 9710                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, rural (% of rural employed population in working age)
## 9711                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, urban (% of urban employed population in working age)
## 9712                                                                                                                                                                                      Excessive working hours, more than 48 hours per week, aged 15-24 (% of employed population aged 15-24)
## 9713                                                                                                                                                                     Excessive working hours, more than 48 hours per week, aged 15-64, total (% of total employed population in working age)
## 9714                                                                                                                                                                                                 Labor force participation rate, aged 15-64, female (% of female labor force in working age)
## 9715                                                                                                                                                                   Labor force participation rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9716                                                                                                                                                                Labor force participation rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9717                                                                                                                                                                                                     Labor force participation rate, aged 15-64, male (% of male labor force in working age)
## 9718                                                                                                                                                                                                                    Labor force participation rate, aged 25-64 (% of labor force aged 25-64)
## 9719                                                                                                                                                                                                   Labor force participation rate, aged 15-64, rural (% of rural labor force in working age)
## 9720                                                                                                                                                                                                   Labor force participation rate, aged 15-64, urban (% of urban labor force in working age)
## 9721                                                                                                                                                                                                                    Labor force participation rate, aged 15-24 (% of labor force aged 15-24)
## 9722                                                                                                                                                                                                   Labor force participation rate, aged 15-64, total (% of total labor force in working age)
## 9723                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, total
## 9724                                                                                                                                                                                                                                         Total labor force in the sample, aged 15-64, female
## 9725                                                                                                                                                                                                                        Total labor force in the sample, aged 15-64, above primary education
## 9726                                                                                                                                                                                                                    Total labor force in the sample, aged 15-64, primary education and below
## 9727                                                                                                                                                                                                                                           Total labor force in the sample, aged 15-64, male
## 9728                                                                                                                                                                                                                                                 Total labor force in the sample, aged 25-64
## 9729                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, rural
## 9730                                                                                                                                                                                                                                          Total labor force in the sample, aged 15-64, urban
## 9731                                                                                                                                                                                                                                                 Total labor force in the sample, aged 15-24
## 9732                                                                                                                                                                                                                 Youth unemployment rate, aged 15-24, female (% of female youth labor force)
## 9733                                                                                                                                                                                   Youth unemployment rate, aged 15-24, above primary education (% of youth labor force with high education)
## 9734                                                                                                                                                                                Youth unemployment rate, aged 15-24, primary education and below (% of youth labor force with low education)
## 9735                                                                                                                                                                                                                     Youth unemployment rate, aged 15-24, male (% of male youth labor force)
## 9736                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, rural (% of rural youth labor force)
## 9737                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, urban (% of urban youth labor force)
## 9738                                                                                                                                                                                                                   Youth unemployment rate, aged 15-24, total (% of total youth labor force)
## 9739                                                                                                                                                                                                              Unemployment rate, aged 15-64, female (% of female labor force in working age)
## 9740                                                                                                                                                                                Unemployment rate, aged 15-64, above primary education (% of labor force with high education in working age)
## 9741                                                                                                                                                                             Unemployment rate, aged 15-64, primary education and below (% of labor force with low education in working age)
## 9742                                                                                                                                                                                                                  Unemployment rate, aged 15-64, male (% of male labor force in working age)
## 9743                                                                                                                                                                                                                                 Unemployment rate, aged 25-64 (% of labor force aged 25-64)
## 9744                                                                                                                                                                                                                Unemployment rate, aged 15-64, rural (% of rural labor force in working age)
## 9745                                                                                                                                                                                                                Unemployment rate, aged 15-64, urban (% of urban labor force in working age)
## 9746                                                                                                                                                                                                                                 Unemployment rate, aged 15-24 (% of labor force aged 15-24)
## 9747                                                                                                                                                                                                                Unemployment rate, aged 15-64, total (% of total labor force in working age)
## 9748                                                                                                                                                                                                     Youth not in employment or education, aged 15-24, female (% of female youth population)
## 9749                                                                                                                                                                       Youth not in employment or education, aged 15-24, above primary education (% of youth population with high education)
## 9750                                                                                                                                                                    Youth not in employment or education, aged 15-24, primary education and below (% of youth population with low education)
## 9751                                                                                                                                                                                                         Youth not in employment or education, aged 15-24, male (% of male youth population)
## 9752                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, rural (% of rural youth population)
## 9753                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, urban (% of urban youth population)
## 9754                                                                                                                                                                                                       Youth not in employment or education, aged 15-24, total (% of total youth population)
## 9755                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, total
## 9756                                                                                                                                                                                                                         Female to male gender wage gap, aged 15-64, above primary education
## 9757                                                                                                                                                                                                                     Female to male gender wage gap, aged 15-64, primary education and below
## 9758                                                                                                                                                                                                                                                  Female to male gender wage gap, aged 25-64
## 9759                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, rural
## 9760                                                                                                                                                                                                                                           Female to male gender wage gap, aged 15-64, urban
## 9761                                                                                                                                                                                                                                                  Female to male gender wage gap, aged 15-24
## 9762                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, total
## 9763                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, total
## 9764                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, total
## 9765                                                                                                                                                                                                        Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, female
## 9766                                                                                                                                                                                                                         Median earnings per hour, aged 15-64, local currency values, female
## 9767                                                                                                                                                                                                        Median earnings per hour, aged 15-64, deflated to 2010 local currency values, female
## 9768                                                                                                                                                                                       Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, above primary education
## 9769                                                                                                                                                                                                        Median earnings per hour, aged 15-64, local currency values, above primary education
## 9770                                                                                                                                                                                       Median earnings per hour, aged 15-64, deflated to 2010 local currency values, above primary education
## 9771                                                                                                                                                                                   Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, primary education and below
## 9772                                                                                                                                                                                                    Median earnings per hour, aged 15-64, local currency values, primary education and below
## 9773                                                                                                                                                                                   Median earnings per hour, aged 15-64, deflated to 2010 local currency values, primary education and below
## 9774                                                                                                                                                                                                          Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, male
## 9775                                                                                                                                                                                                                           Median earnings per hour, aged 15-64, local currency values, male
## 9776                                                                                                                                                                                                          Median earnings per hour, aged 15-64, deflated to 2010 local currency values, male
## 9777                                                                                                                                                                                                                Real median earnings per hour, aged 25-64, deflated to 2010 and PPP adjusted
## 9778                                                                                                                                                                                                                                 Median earnings per hour, aged 25-64, local currency values
## 9779                                                                                                                                                                                                                Median earnings per hour, aged 25-64, deflated to 2010 local currency values
## 9780                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, rural
## 9781                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, rural
## 9782                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, rural
## 9783                                                                                                                                                                                                         Real median earnings per hour, aged 15-64, deflated to 2010 and PPP adjusted, urban
## 9784                                                                                                                                                                                                                          Median earnings per hour, aged 15-64, local currency values, urban
## 9785                                                                                                                                                                                                         Median earnings per hour, aged 15-64, deflated to 2010 local currency values, urban
## 9786                                                                                                                                                                                                                Real median earnings per hour, aged 15-24, deflated to 2010 and PPP adjusted
## 9787                                                                                                                                                                                                                                 Median earnings per hour, aged 15-24, local currency values
## 9788                                                                                                                                                                                                                Median earnings per hour, aged 15-24, deflated to 2010 local currency values
## 9789                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, total
## 9790                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, total
## 9791                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, total
## 9792                                                                                                                                                                                                       Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, female
## 9793                                                                                                                                                                                                                        Median earnings per month, aged 15-64, local currency values, female
## 9794                                                                                                                                                                                                       Median earnings per month, aged 15-64, deflated to 2010 local currency values, female
## 9795                                                                                                                                                                                      Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, above primary education
## 9796                                                                                                                                                                                                       Median earnings per month, aged 15-64, local currency values, above primary education
## 9797                                                                                                                                                                                      Median earnings per month, aged 15-64, deflated to 2010 local currency values, above primary education
## 9798                                                                                                                                                                                  Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, primary education and below
## 9799                                                                                                                                                                                                   Median earnings per month, aged 15-64, local currency values, primary education and below
## 9800                                                                                                                                                                                  Median earnings per month, aged 15-64, deflated to 2010 local currency values, primary education and below
## 9801                                                                                                                                                                                                         Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, male
## 9802                                                                                                                                                                                                                          Median earnings per month, aged 15-64, local currency values, male
## 9803                                                                                                                                                                                                         Median earnings per month, aged 15-64, deflated to 2010 local currency values, male
## 9804                                                                                                                                                                                                               Real median earnings per month, aged 25-64, deflated to 2010 and PPP adjusted
## 9805                                                                                                                                                                                                                                Median earnings per month, aged 25-64, local currency values
## 9806                                                                                                                                                                                                               Median earnings per month, aged 25-64, deflated to 2010 local currency values
## 9807                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, rural
## 9808                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, rural
## 9809                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, rural
## 9810                                                                                                                                                                                                        Real median earnings per month, aged 15-64, deflated to 2010 and PPP adjusted, urban
## 9811                                                                                                                                                                                                                         Median earnings per month, aged 15-64, local currency values, urban
## 9812                                                                                                                                                                                                        Median earnings per month, aged 15-64, deflated to 2010 local currency values, urban
## 9813                                                                                                                                                                                                               Real median earnings per month, aged 15-24, deflated to 2010 and PPP adjusted
## 9814                                                                                                                                                                                                                                Median earnings per month, aged 15-24, local currency values
## 9815                                                                                                                                                                                                               Median earnings per month, aged 15-24, deflated to 2010 local currency values
## 9816                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, total
## 9817                                                                                                                                                                                                                                              Public to private wage gap, aged 15-64, female
## 9818                                                                                                                                                                                                                             Public to private wage gap, aged 15-64, above primary education
## 9819                                                                                                                                                                                                                         Public to private wage gap, aged 15-64, primary education and below
## 9820                                                                                                                                                                                                                                                Public to private wage gap, aged 15-64, male
## 9821                                                                                                                                                                                                                                                      Public to private wage gap, aged 25-64
## 9822                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, rural
## 9823                                                                                                                                                                                                                                               Public to private wage gap, aged 15-64, urban
## 9824                                                                                                                                                                                                                                                      Public to private wage gap, aged 15-24
## 9825                                                                                                                                                                                        Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits)
## 9826                                                                                                                                                                                                                                Coverage of unemployment benefits and ALMP (% of population)
## 9827                                                                                                                                                                                                 Generosity of unemployment benefits and ALMP (% of total welfare of beneficiary households)
## 9828                                                                                                                                                                                                                                                                         Total Area (in Km²)
## 9829                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 9830                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 9831                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 2nd Grade
## 9832                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 3rd Grade
## 9833                                                                                                                                                                                                                    EGRA: Correct Letter Names Read Per Minute (Mean). Bamanankan. 2nd Grade
## 9834                                                                                                                                                                                                                          EGRA: Correct Letter Names Read Per Minute (Mean). Bomu. 2nd Grade
## 9835                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 2nd Grade
## 9836                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 4th Grade
## 9837                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 2nd Grade
## 9838                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 3rd Grade
## 9839                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). English. 4th Grade
## 9840                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Fulfulde. 2nd Grade
## 9841                                                                                                                                                                                                                        EGRA: Correct Letter Names Read Per Minute (Mean). French. 3rd Grade
## 9842                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 2nd Grade
## 9843                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 3rd Grade
## 9844                                                                                                                                                                                                                  EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 9845                                                                                                                                                                                                                  EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 9846                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Songhoi. 2nd Grade
## 9847                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 2nd Grade
## 9848                                                                                                                                                                                                                     EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 3rd Grade
## 9849                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 2nd Grade
## 9850                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 3rd Grade
## 9851                                                                                                                                                                                                                       EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 4th Grade
## 9852                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 2nd Grade
## 9853                                                                                                                                                                                                                      EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 3rd Grade
## 9854                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Akuapem. 2nd Grade
## 9855                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 2nd Grade
## 9856                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 3rd Grade
## 9857                                                                                                                                                                                                                   EGRA: Correct Letter Sounds Read Per Minute (Mean). Asante Twi. 2nd Grade
## 9858                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Chitonga. 2nd Grade
## 9859                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Cinyanja. 2nd Grade
## 9860                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagaare. 2nd Grade
## 9861                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagbani. 2nd Grade
## 9862                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Dangme. 2nd Grade
## 9863                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 2nd Grade
## 9864                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 3rd Grade
## 9865                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 4th Grade
## 9866                                                                                                                                                                                                                      EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 6th Grade
## 9867                                                                                                                                                                                                                          EGRA: Correct Letter Sounds Read Per Minute (Mean). Ewe. 2nd Grade
## 9868                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Fante. 2nd Grade
## 9869                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Filipino. 3rd Grade
## 9870                                                                                                                                                                                                                           EGRA: Correct Letter Sounds Read Per Minute (Mean). Ga. 2nd Grade
## 9871                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Gonja. 2nd Grade
## 9872                                                                                                                                                                                                                     EGRA: Correct Letter Sounds Read Per Minute (Mean). Icibemba. 2nd Grade
## 9873                                                                                                                                                                                                                   EGRA: Correct Letter Sounds Read Per Minute (Mean). Indonesian. 2nd Grade
## 9874                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Kasem. 2nd Grade
## 9875                                                                                                                                                                                                                    EGRA: Correct Letter Sounds Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 9876                                                                                                                                                                                                                  EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 9877                                                                                                                                                                                                                  EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 9878                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Lunda. 2nd Grade
## 9879                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Luvale. 2nd Grade
## 9880                                                                                                                                                                                                                        EGRA: Correct Letter Sounds Read Per Minute (Mean). Nzema. 2nd Grade
## 9881                                                                                                                                                                                                                       EGRA: Correct Letter Sounds Read Per Minute (Mean). Silozi. 2nd Grade
## 9882                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 9883                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 9884                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 2nd Grade
## 9885                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 3rd Grade
## 9886                                                                                                                                                                                                                      EGRA: Correct Isolated Words Read Per Minute (Mean). Arabic. 2nd Grade
## 9887                                                                                                                                                                                                                  EGRA: Correct Isolated Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 9888                                                                                                                                                                                                                        EGRA: Correct Isolated Words Read Per Minute (Mean). Bomu. 2nd Grade
## 9889                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 9890                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 4th Grade
## 9891                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 2nd Grade
## 9892                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 3rd Grade
## 9893                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 4th Grade
## 9894                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). English. 6th Grade
## 9895                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 9896                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Filipino. 3rd Grade
## 9897                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 9898                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 9899                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 9900                                                                                                                                                                                                                 EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 9901                                                                                                                                                                                                                 EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 9902                                                                                                                                                                                                                EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 9903                                                                                                                                                                                                                EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 9904                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 9905                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 9906                                                                                                                                                                                                                   EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 9907                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 2nd Grade
## 9908                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 3rd Grade
## 9909                                                                                                                                                                                                                     EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 4th Grade
## 9910                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 9911                                                                                                                                                                                                                    EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 9912                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 9913                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 9914                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Akuapem. 2nd Grade
## 9915                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 2nd Grade
## 9916                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 3rd Grade
## 9917                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 2nd Grade
## 9918                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 3rd Grade
## 9919                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 9920                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9921                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bomu. 2nd Grade
## 9922                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9923                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 4th Grade
## 9924                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chitonga. 2nd Grade
## 9925                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 9926                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagaare. 2nd Grade
## 9927                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagbani. 2nd Grade
## 9928                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dangme. 2nd Grade
## 9929                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 2nd Grade
## 9930                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 3rd Grade
## 9931                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 4th Grade
## 9932                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 6th Grade
## 9933                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ewe. 2nd Grade
## 9934                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fante. 2nd Grade
## 9935                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 9936                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Filipino. 3rd Grade
## 9937                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). French. 3rd Grade
## 9938                                                                                                                                                                                                         EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ga. 2nd Grade
## 9939                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Gonja. 2nd Grade
## 9940                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 2nd Grade
## 9941                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 3rd Grade
## 9942                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Icibemba. 2nd Grade
## 9943                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Share of students with a zero score (%). Indonesian. 2nd Grade
## 9944                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kasem. 2nd Grade
## 9945                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 9946                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 9947                                                                                                                                                                                                EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 9948                                                                                                                                                                                                EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 9949                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Lunda. 2nd Grade
## 9950                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Luvale. 2nd Grade
## 9951                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Share of students with a zero score (%). Nzema. 2nd Grade
## 9952                                                                                                                                                                                               EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 9953                                                                                                                                                                                               EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 9954                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Share of students with a zero score (%). Silozi. 2nd Grade
## 9955                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Songhoi. 2nd Grade
## 9956                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 2nd Grade
## 9957                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 3rd Grade
## 9958                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 2nd Grade
## 9959                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 3rd Grade
## 9960                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 4th Grade
## 9961                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 9962                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 9963                                                                                                                                                                 EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9964                                                                                                                                                                       EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bomu. 2nd Grade
## 9965                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9966                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 4th Grade
## 9967                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 2nd Grade
## 9968                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 3rd Grade
## 9969                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 4th Grade
## 9970                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 6th Grade
## 9971                                                                                                                                                                   EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 9972                                                                                                                                                                EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 9973                                                                                                                                                                EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 9974                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Songhoi. 2nd Grade
## 9975                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 2nd Grade
## 9976                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 3rd Grade
## 9977                                                                                                                                                                    EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 4th Grade
## 9978                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 9979                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 9980                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade
## 9981                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade
## 9982                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade
## 9983                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade
## 9984                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade
## 9985                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 9986                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 9987                                                                                                                                                                                                    EGRA: Listening Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade
## 9988                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade
## 9989                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade
## 9990                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade
## 9991                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 9992                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade
## 9993                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade
## 9994                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade
## 9995                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 2nd Grade
## 9996                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 3rd Grade
## 9997                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 4th Grade
## 9998                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). English. 6th Grade
## 9999                                                                                                                                                                                                     EGRA: Listening Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade
## 10000                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Fante. 2nd Grade
## 10001                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 10002                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade
## 10003                                                                                                                                                                                                     EGRA: Listening Comprehension - Share of students with a zero score (%). Ga. 2nd Grade
## 10004                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade
## 10005                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade
## 10006                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade
## 10007                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade
## 10008                                                                                                                                                                                             EGRA: Listening Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade
## 10009                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade
## 10010                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 10011                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 10012                                                                                                                                                                                            EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 10013                                                                                                                                                                                            EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 10014                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade
## 10015                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade
## 10016                                                                                                                                                                                                  EGRA: Listening Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade
## 10017                                                                                                                                                                                           EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 10018                                                                                                                                                                                           EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 10019                                                                                                                                                                                                 EGRA: Listening Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade
## 10020                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade
## 10021                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade
## 10022                                                                                                                                                                                              EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade
## 10023                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade
## 10024                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade
## 10025                                                                                                                                                                                                EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 4th Grade
## 10026                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 10027                                                                                                                                                                                               EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 10028                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 10029                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 10030                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Akuapem. 2nd Grade
## 10031                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 2nd Grade
## 10032                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 3rd Grade
## 10033                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 2nd Grade
## 10034                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 3rd Grade
## 10035                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Asante Twi. 2nd Grade
## 10036                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 10037                                                                                                                                                                                                                            EGRA: Correct Non-Words Read Per Minute (Mean). Bomu. 2nd Grade
## 10038                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 10039                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 4th Grade
## 10040                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Chitonga. 2nd Grade
## 10041                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Cinyanja. 2nd Grade
## 10042                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Dagaare. 2nd Grade
## 10043                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Dagbani. 2nd Grade
## 10044                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Dangme. 2nd Grade
## 10045                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 2nd Grade
## 10046                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 3rd Grade
## 10047                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 4th Grade
## 10048                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). English. 6th Grade
## 10049                                                                                                                                                                                                                             EGRA: Correct Non-Words Read Per Minute (Mean). Ewe. 2nd Grade
## 10050                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Fante. 2nd Grade
## 10051                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 10052                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Filipino. 3rd Grade
## 10053                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). French. 3rd Grade
## 10054                                                                                                                                                                                                                              EGRA: Correct Non-Words Read Per Minute (Mean). Ga. 2nd Grade
## 10055                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Gonja. 2nd Grade
## 10056                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 10057                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 10058                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Icibemba. 2nd Grade
## 10059                                                                                                                                                                                                                      EGRA: Correct Non-Words Read Per Minute (Mean). Indonesian. 2nd Grade
## 10060                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Kasem. 2nd Grade
## 10061                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 10062                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 10063                                                                                                                                                                                                                     EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 10064                                                                                                                                                                                                                     EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 10065                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Lunda. 2nd Grade
## 10066                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Luvale. 2nd Grade
## 10067                                                                                                                                                                                                                           EGRA: Correct Non-Words Read Per Minute (Mean). Nzema. 2nd Grade
## 10068                                                                                                                                                                                                                    EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 10069                                                                                                                                                                                                                    EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 10070                                                                                                                                                                                                                          EGRA: Correct Non-Words Read Per Minute (Mean). Silozi. 2nd Grade
## 10071                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 10072                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 10073                                                                                                                                                                                                                       EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 10074                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 2nd Grade
## 10075                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 3rd Grade
## 10076                                                                                                                                                                                                                         EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 4th Grade
## 10077                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 10078                                                                                                                                                                                                                        EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 10079                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 2nd Grade
## 10080                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 3rd Grade
## 10081                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Akuapem. 2nd Grade
## 10082                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 2nd Grade
## 10083                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 3rd Grade
## 10084                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 2nd Grade
## 10085                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 3rd Grade
## 10086                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Asante Twi. 2nd Grade
## 10087                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bamanankan. 2nd Grade
## 10088                                                                                                                                                                                                         EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bomu. 2nd Grade
## 10089                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 2nd Grade
## 10090                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 4th Grade
## 10091                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chitonga. 2nd Grade
## 10092                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Cinyanja. 2nd Grade
## 10093                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagaare. 2nd Grade
## 10094                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagbani. 2nd Grade
## 10095                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dangme. 2nd Grade
## 10096                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 2nd Grade
## 10097                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 3rd Grade
## 10098                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 4th Grade
## 10099                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 6th Grade
## 10100                                                                                                                                                                                                          EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ewe. 2nd Grade
## 10101                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fante. 2nd Grade
## 10102                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fulfulde. 2nd Grade
## 10103                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Filipino. 3rd Grade
## 10104                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). French. 3rd Grade
## 10105                                                                                                                                                                                                           EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ga. 2nd Grade
## 10106                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Gonja. 2nd Grade
## 10107                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 2nd Grade
## 10108                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 3rd Grade
## 10109                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Icibemba. 2nd Grade
## 10110                                                                                                                                                                                                   EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Indonesian. 2nd Grade
## 10111                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kasem. 2nd Grade
## 10112                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiikaonde. 2nd Grade
## 10113                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiswahili. 2nd Grade
## 10114                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 4th Grade
## 10115                                                                                                                                                                                                  EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 6th Grade
## 10116                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Lunda. 2nd Grade
## 10117                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Luvale. 2nd Grade
## 10118                                                                                                                                                                                                        EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Nzema. 2nd Grade
## 10119                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade
## 10120                                                                                                                                                                                                 EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade
## 10121                                                                                                                                                                                                       EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Silozi. 2nd Grade
## 10122                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Songhoi. 2nd Grade
## 10123                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 2nd Grade
## 10124                                                                                                                                                                                                    EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 3rd Grade
## 10125                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 2nd Grade
## 10126                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 3rd Grade
## 10127                                                                                                                                                                                                      EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 4th Grade
## 10128                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 2nd Grade
## 10129                                                                                                                                                                                                     EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 3rd Grade
## 10130                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade
## 10131                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade
## 10132                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade
## 10133                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade
## 10134                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade
## 10135                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade
## 10136                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade
## 10137                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade
## 10138                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade
## 10139                                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade
## 10140                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade
## 10141                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade
## 10142                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade
## 10143                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade
## 10144                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade
## 10145                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade
## 10146                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade
## 10147                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 2nd Grade
## 10148                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 3rd Grade
## 10149                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 4th Grade
## 10150                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). English. 6th Grade
## 10151                                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade
## 10152                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Fante. 2nd Grade
## 10153                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade
## 10154                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade
## 10155                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). French. 3rd Grade
## 10156                                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students with a zero score (%). Ga. 2nd Grade
## 10157                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade
## 10158                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade
## 10159                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade
## 10160                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade
## 10161                                                                                                                                                                                               EGRA: Reading Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade
## 10162                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade
## 10163                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade
## 10164                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade
## 10165                                                                                                                                                                                              EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade
## 10166                                                                                                                                                                                              EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade
## 10167                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade
## 10168                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade
## 10169                                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade
## 10170                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade
## 10171                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade
## 10172                                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade
## 10173                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade
## 10174                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade
## 10175                                                                                                                                                                                                EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade
## 10176                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade
## 10177                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade
## 10178                                                                                                                                                                                                  EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 4th Grade
## 10179                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade
## 10180                                                                                                                                                                                                 EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade
## 10181                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 2nd Grade
## 10182                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 3rd Grade
## 10183                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Akuapem. 2nd Grade
## 10184                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 2nd Grade
## 10185                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 3rd Grade
## 10186                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 2nd Grade
## 10187                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 3rd Grade
## 10188                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Asante Twi. 2nd Grade
## 10189                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bamanankan. 2nd Grade
## 10190                                                                                                                                                                                           EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bomu. 2nd Grade
## 10191                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 2nd Grade
## 10192                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 4th Grade
## 10193                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chitonga. 2nd Grade
## 10194                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Cinyanja. 2nd Grade
## 10195                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagaare. 2nd Grade
## 10196                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagbani. 2nd Grade
## 10197                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dangme. 2nd Grade
## 10198                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 2nd Grade
## 10199                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 3rd Grade
## 10200                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 4th Grade
## 10201                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 6th Grade
## 10202                                                                                                                                                                                            EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ewe. 2nd Grade
## 10203                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fante. 2nd Grade
## 10204                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fulfulde. 2nd Grade
## 10205                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Filipino. 3rd Grade
## 10206                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). French. 3rd Grade
## 10207                                                                                                                                                                                             EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ga. 2nd Grade
## 10208                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Gonja. 2nd Grade
## 10209                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 2nd Grade
## 10210                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 3rd Grade
## 10211                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Icibemba. 2nd Grade
## 10212                                                                                                                                                                                     EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Indonesian. 2nd Grade
## 10213                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kasem. 2nd Grade
## 10214                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiikaonde. 2nd Grade
## 10215                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiswahili. 2nd Grade
## 10216                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 4th Grade
## 10217                                                                                                                                                                                    EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 6th Grade
## 10218                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Lunda. 2nd Grade
## 10219                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Luvale. 2nd Grade
## 10220                                                                                                                                                                                          EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Nzema. 2nd Grade
## 10221                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 2nd Grade
## 10222                                                                                                                                                                                   EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 3rd Grade
## 10223                                                                                                                                                                                         EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Silozi. 2nd Grade
## 10224                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Songhoi. 2nd Grade
## 10225                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 2nd Grade
## 10226                                                                                                                                                                                      EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 3rd Grade
## 10227                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 2nd Grade
## 10228                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 3rd Grade
## 10229                                                                                                                                                                                        EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 4th Grade
## 10230                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 2nd Grade
## 10231                                                                                                                                                                                       EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 3rd Grade
## 10232                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 3rd grade students, total
## 10233                                                                                                                                                                                                              LLECE: 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10234                                                                                                                                                                                                       LLECE: Female 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10235                                                                                                                                                                                                         LLECE: Male 3rd grade students by mathematics proficiency level (%). Below Level 1
## 10236                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 1
## 10237                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 1
## 10238                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 1
## 10239                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 2
## 10240                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 2
## 10241                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 2
## 10242                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 3
## 10243                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 3
## 10244                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 3
## 10245                                                                                                                                                                                                                    LLECE: 3rd grade students by mathematics proficiency level (%). Level 4
## 10246                                                                                                                                                                                                             LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 4
## 10247                                                                                                                                                                                                               LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 4
## 10248                                                                                                                                                                                                            LLECE: Mean performance on the mathematics scale for 3rd grade students, female
## 10249                                                                                                                                                                                                              LLECE: Mean performance on the mathematics scale for 3rd grade students, male
## 10250                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 10th Percentile Score
## 10251                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 25th Percentile Score
## 10252                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 50th Percentile Score
## 10253                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 75th Percentile Score
## 10254                                                                                                                                                                                                                 LLECE: Distribution of 3rd Grade Mathematics Scores: 90th Percentile Score
## 10255                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 4th grade students, total
## 10256                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score
## 10257                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score
## 10258                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score
## 10259                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score
## 10260                                                                                                                                                                                                                 LLECE: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score
## 10261                                                                                                                                                                                                             LLECE: Mean performance on the mathematics scale for 6th grade students, total
## 10262                                                                                                                                                                                                              LLECE: 6th grade students by mathematics proficiency level (%). Below Level 1
## 10263                                                                                                                                                                                                       LLECE: Female 6th grade students by mathematics proficiency level (%). Below Level 1
## 10264                                                                                                                                                                                                         LLECE: Male 6th grade students by mathematics proficiency level (%). Below Level 1
## 10265                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 1
## 10266                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 1
## 10267                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 1
## 10268                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 2
## 10269                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 2
## 10270                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 2
## 10271                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 3
## 10272                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 3
## 10273                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 3
## 10274                                                                                                                                                                                                                    LLECE: 6th grade students by mathematics proficiency level (%). Level 4
## 10275                                                                                                                                                                                                             LLECE: Female 6th grade students by mathematics proficiency level (%). Level 4
## 10276                                                                                                                                                                                                               LLECE: Male 6th grade students by mathematics proficiency level (%). Level 4
## 10277                                                                                                                                                                                                            LLECE: Mean performance on the mathematics scale for 6th grade students, female
## 10278                                                                                                                                                                                                              LLECE: Mean performance on the mathematics scale for 6th grade students, male
## 10279                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 10th Percentile Score
## 10280                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 25th Percentile Score
## 10281                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 50th Percentile Score
## 10282                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 75th Percentile Score
## 10283                                                                                                                                                                                                                 LLECE: Distribution of 6th Grade Mathematics Scores: 90th Percentile Score
## 10284                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 3rd grade students, total
## 10285                                                                                                                                                                                                                  LLECE: 3rd grade students by reading proficiency level (%). Below Level 1
## 10286                                                                                                                                                                                                           LLECE: Female 3rd grade students by reading proficiency level (%). Below Level 1
## 10287                                                                                                                                                                                                             LLECE: Male 3rd grade students by reading proficiency level (%). Below Level 1
## 10288                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 1
## 10289                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 1
## 10290                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 1
## 10291                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 2
## 10292                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 2
## 10293                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 2
## 10294                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 3
## 10295                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 3
## 10296                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 3
## 10297                                                                                                                                                                                                                        LLECE: 3rd grade students by reading proficiency level (%). Level 4
## 10298                                                                                                                                                                                                                 LLECE: Female 3rd grade students by reading proficiency level (%). Level 4
## 10299                                                                                                                                                                                                                   LLECE: Male 3rd grade students by reading proficiency level (%). Level 4
## 10300                                                                                                                                                                                                                LLECE: Mean performance on the reading scale for 3rd grade students, female
## 10301                                                                                                                                                                                                                  LLECE: Mean performance on the reading scale for 3rd grade students, male
## 10302                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 10th Percentile Score
## 10303                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 25th Percentile Score
## 10304                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 50th Percentile Score
## 10305                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 75th Percentile Score
## 10306                                                                                                                                                                                                                     LLECE: Distribution of 3rd Grade Reading Scores: 90th Percentile Score
## 10307                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 4th grade students, total
## 10308                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 10th Percentile Score
## 10309                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 25th Percentile Score
## 10310                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 50th Percentile Score
## 10311                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 75th Percentile Score
## 10312                                                                                                                                                                                                                     LLECE: Distribution of 4th Grade Reading Scores: 90th Percentile Score
## 10313                                                                                                                                                                                                                 LLECE: Mean performance on the reading scale for 6th grade students, total
## 10314                                                                                                                                                                                                                  LLECE: 6th grade students by reading proficiency level (%). Below Level 1
## 10315                                                                                                                                                                                                           LLECE: Female 6th grade students by reading proficiency level (%). Below Level 1
## 10316                                                                                                                                                                                                             LLECE: Male 6th grade students by reading proficiency level (%). Below Level 1
## 10317                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 1
## 10318                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 1
## 10319                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 1
## 10320                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 2
## 10321                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 2
## 10322                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 2
## 10323                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 3
## 10324                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 3
## 10325                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 3
## 10326                                                                                                                                                                                                                        LLECE: 6th grade students by reading proficiency level (%). Level 4
## 10327                                                                                                                                                                                                                 LLECE: Female 6th grade students by reading proficiency level (%). Level 4
## 10328                                                                                                                                                                                                                   LLECE: Male 6th grade students by reading proficiency level (%). Level 4
## 10329                                                                                                                                                                                                                LLECE: Mean performance on the reading scale for 6th grade students, female
## 10330                                                                                                                                                                                                                  LLECE: Mean performance on the reading scale for 6th grade students, male
## 10331                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 10th Percentile Score
## 10332                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 25th Percentile Score
## 10333                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 50th Percentile Score
## 10334                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 75th Percentile Score
## 10335                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Reading Scores: 90th Percentile Score
## 10336                                                                                                                                                                                                                 LLECE: Mean performance on the science scale for 6th grade students, total
## 10337                                                                                                                                                                                                                  LLECE: 6th grade students by science proficiency level (%). Below Level 1
## 10338                                                                                                                                                                                                           LLECE: Female 6th grade students by science proficiency level (%). Below Level 1
## 10339                                                                                                                                                                                                             LLECE: Male 6th grade students by science proficiency level (%). Below Level 1
## 10340                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 1
## 10341                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 1
## 10342                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 1
## 10343                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 2
## 10344                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 2
## 10345                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 2
## 10346                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 3
## 10347                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 3
## 10348                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 3
## 10349                                                                                                                                                                                                                        LLECE: 6th grade students by science proficiency level (%). Level 4
## 10350                                                                                                                                                                                                                 LLECE: Female 6th grade students by science proficiency level (%). Level 4
## 10351                                                                                                                                                                                                                   LLECE: Male 6th grade students by science proficiency level (%). Level 4
## 10352                                                                                                                                                                                                                LLECE: Mean performance on the science scale for 6th grade students, female
## 10353                                                                                                                                                                                                                  LLECE: Mean performance on the science scale for 6th grade students, male
## 10354                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 10th Percentile Score
## 10355                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 25th Percentile Score
## 10356                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 50th Percentile Score
## 10357                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 75th Percentile Score
## 10358                                                                                                                                                                                                                     LLECE: Distribution of 6th Grade Science Scores: 90th Percentile Score
## 10359                                                                                                                                                                                                                       PASEC: Distribution of 5th Grade French Scores: 5th Percentile Score
## 10360                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 10th Percentile Score
## 10361                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 25th Percentile Score
## 10362                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 50th Percentile Score
## 10363                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 75th Percentile Score
## 10364                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 90th Percentile Score
## 10365                                                                                                                                                                                                                      PASEC: Distribution of 5th Grade French Scores: 95th Percentile Score
## 10366                                                                                                                                                                                            PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Total
## 10367                                                                                                                                                                                           PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Female
## 10368                                                                                                                                                             PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), total
## 10369                                                                                                                                                            PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), female
## 10370                                                                                                                                                              PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), male
## 10371                                                                                                                                                    PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), total
## 10372                                                                                                                                                   PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), female
## 10373                                                                                                                                                     PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), male
## 10374                                                                                                                                                                                             PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Male
## 10375                                                                                                                                                                                                             PASEC: Mean performance on the mathematics scale for 2nd grade students. Total
## 10376                                                                                                                                                                                                     PASEC: Percentage of 2nd grade students correcting answering the addition problem: 8+5
## 10377                                                                                                                                                                                                   PASEC: Percentage of 2nd grade students correcting answering the addition problem: 14+23
## 10378                                                                                                                                                                                                   PASEC: Percentage of 2nd grade students correcting answering the addition problem: 39+26
## 10379                                                                                                                                                                                           PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 0 to 60
## 10380                                                                                                                                                                                          PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 61 to 80
## 10381                                                                                                                                                                                               PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 80+
## 10382                                                                                                                                                                                                            PASEC: Mean performance on the mathematics scale for 2nd grade students. Female
## 10383                                                                                                                                                                                                              PASEC: 2nd grade students by mathematics proficiency level (%). Below Level 1
## 10384                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 1
## 10385                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 2
## 10386                                                                                                                                                                                                                    PASEC: 2nd grade students by mathematics proficiency level (%). Level 3
## 10387                                                                                                                                                                                                              PASEC: Mean performance on the mathematics scale for 2nd grade students. Male
## 10388                                                                                                                                                                                  PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Mathematics
## 10389                                                                                                                                                                           PASEC: Mean performance on the mathematics scale for 2nd grade students who did not attend pre-primary education
## 10390                                                                                                                                                                                                                  PASEC: Distribution of 2nd grade mathematics scores: 5th Percentile Score
## 10391                                                                                                                                                                                                                  PASEC: Distribution of 2nd grade mathematics scores: 1st Percentile Score
## 10392                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 10th Percentile Score
## 10393                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 25th Percentile Score
## 10394                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 50th Percentile Score
## 10395                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 75th Percentile Score
## 10396                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 90th Percentile Score
## 10397                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 95th Percentile Score
## 10398                                                                                                                                                                                                                 PASEC: Distribution of 2nd grade mathematics scores: 99th Percentile Score
## 10399                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale for 2nd grade students who attended pre-primary education
## 10400                                                                                                                                                                   PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Mathematics
## 10401                                                                                                                                                                                     PASEC: Average performance gap between 2nd grade students in private and public education. Mathematics
## 10402                                                                                                                                                                                            PASEC: Average performance gap between 2nd grade students in rural and urban areas. Mathematics
## 10403                                                                                                                                                                                                 PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 13-7
## 10404                                                                                                                                                                                                PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 34-11
## 10405                                                                                                                                                                                                PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 50-18
## 10406                                                                                                                                                                                                             PASEC: Mean performance on the mathematics scale for 6th grade students. Total
## 10407                                                                                                                                                                                                            PASEC: Mean performance on the mathematics scale for 6th grade students. Female
## 10408                                                                                                                                                                                                              PASEC: 6th grade students by mathematics proficiency level (%). Below Level 1
## 10409                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 1
## 10410                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 2
## 10411                                                                                                                                                                                                                    PASEC: 6th grade students by mathematics proficiency level (%). Level 3
## 10412                                                                                                                                                                                                              PASEC: Mean performance on the mathematics scale for 6th grade students. Male
## 10413                                                                                                                                                                                  PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Mathematics
## 10414                                                                                                                                                                           PASEC: Mean performance on the mathematics scale for 6th grade students who did not attend pre-primary education
## 10415                                                                                                                                                                                                                  PASEC: Distribution of 6th grade mathematics scores: 5th Percentile Score
## 10416                                                                                                                                                                                                                  PASEC: Distribution of 6th grade mathematics scores: 1st Percentile Score
## 10417                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 10th Percentile Score
## 10418                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 25th Percentile Score
## 10419                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 50th Percentile Score
## 10420                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 75th Percentile Score
## 10421                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 90th Percentile Score
## 10422                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 95th Percentile Score
## 10423                                                                                                                                                                                                                 PASEC: Distribution of 6th grade mathematics scores: 99th Percentile Score
## 10424                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale for 6th grade students who attended pre-primary education
## 10425                                                                                                                                                                   PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Mathematics
## 10426                                                                                                                                                                                     PASEC: Average performance gap between 6th grade students in private and public education. Mathematics
## 10427                                                                                                                                                                                            PASEC: Average performance gap between 6th grade students in rural and urban areas. Mathematics
## 10428                                                                                                                                                                                                                  PASEC: Distribution of 5th Grade Mathematics Scores: 5th Percentile Score
## 10429                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 10th Percentile Score
## 10430                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 25th Percentile Score
## 10431                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 50th Percentile Score
## 10432                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 75th Percentile Score
## 10433                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 90th Percentile Score
## 10434                                                                                                                                                                                                                 PASEC: Distribution of 5th Grade Mathematics Scores: 95th Percentile Score
## 10435                                                                                                                                                                                                PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Total
## 10436                                                                                                                                                                                               PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Female
## 10437                                                                                                                                                                 PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), total
## 10438                                                                                                                                                                PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), female
## 10439                                                                                                                                                                  PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), male
## 10440                                                                                                                                                        PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), total
## 10441                                                                                                                                                       PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), female
## 10442                                                                                                                                                         PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), male
## 10443                                                                                                                                                                                                 PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Male
## 10444                                                                                                                                                                                                                PASEC: Mean performance on the language scale for 2nd grade students. Total
## 10445                                                                                                                                                                                                               PASEC: Mean performance on the language scale for 2nd grade students. Female
## 10446                                                                                                                                                                                                                 PASEC: 2nd grade students by language proficiency level (%). Below Level 1
## 10447                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 1
## 10448                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 2
## 10449                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 3
## 10450                                                                                                                                                                                                                       PASEC: 2nd grade students by language proficiency level (%). Level 4
## 10451                                                                                                                                                                       PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 0 to 5 Letters
## 10452                                                                                                                                                                     PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 11 to 20 Letters
## 10453                                                                                                                                                                          PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 20+ Letters
## 10454                                                                                                                                                                      PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 6 to 10 Letters
## 10455                                                                                                                                                                                                                 PASEC: Mean performance on the language scale for 2nd grade students. Male
## 10456                                                                                                                                                                                     PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Language
## 10457                                                                                                                                                                              PASEC: Mean performance on the language scale for 2nd grade students who did not attend pre-primary education
## 10458                                                                                                                                                                                                                     PASEC: Distribution of 2nd grade language scores: 5th Percentile Score
## 10459                                                                                                                                                                                                                     PASEC: Distribution of 2nd grade language scores: 1st Percentile Score
## 10460                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 10th Percentile Score
## 10461                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 25th Percentile Score
## 10462                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 50th Percentile Score
## 10463                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 75th Percentile Score
## 10464                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 90th Percentile Score
## 10465                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 95th Percentile Score
## 10466                                                                                                                                                                                                                    PASEC: Distribution of 2nd grade language scores: 99th Percentile Score
## 10467                                                                                                                                                                                    PASEC: Mean performance on the language scale for 2nd grade students who attended pre-primary education
## 10468                                                                                                                                                                      PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Language
## 10469                                                                                                                                                                                        PASEC: Average performance gap between 2nd grade students in private and public education. Language
## 10470                                                                                                                                                                                               PASEC: Average performance gap between 2nd grade students in rural and urban areas. Language
## 10471                                                                                                                                                                                PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 0 Words
## 10472                                                                                                                                                                         PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 11 to 20 Words
## 10473                                                                                                                                                                           PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 1 to 5 Words
## 10474                                                                                                                                                                              PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 20+ Words
## 10475                                                                                                                                                                          PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 6 to 10 Words
## 10476                                                                                                                                                                                                                 PASEC: Mean performance on the reading scale for 6th grade students. Total
## 10477                                                                                                                                                                                                                PASEC: Mean performance on the reading scale for 6th grade students. Female
## 10478                                                                                                                                                                                                                  PASEC: 6th grade students by reading proficiency level (%). Below Level 1
## 10479                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 1
## 10480                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 2
## 10481                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 3
## 10482                                                                                                                                                                                                                        PASEC: 6th grade students by reading proficiency level (%). Level 4
## 10483                                                                                                                                                                                                                  PASEC: Mean performance on the reading scale for 6th grade students. Male
## 10484                                                                                                                                                                                      PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Reading
## 10485                                                                                                                                                                               PASEC: Mean performance on the reading scale for 6th grade students who did not attend pre-primary education
## 10486                                                                                                                                                                                                                      PASEC: Distribution of 6th grade reading scores: 5th Percentile Score
## 10487                                                                                                                                                                                                                      PASEC: Distribution of 6th grade reading scores: 1st Percentile Score
## 10488                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 10th Percentile Score
## 10489                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 25th Percentile Score
## 10490                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 50th Percentile Score
## 10491                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 75th Percentile Score
## 10492                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 90th Percentile Score
## 10493                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 95th Percentile Score
## 10494                                                                                                                                                                                                                     PASEC: Distribution of 6th grade reading scores: 99th Percentile Score
## 10495                                                                                                                                                                                     PASEC: Mean performance on the reading scale for 6th grade students who attended pre-primary education
## 10496                                                                                                                                                                       PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Reading
## 10497                                                                                                                                                                                         PASEC: Average performance gap between 6th grade students in private and public education. Reading
## 10498                                                                                                                                                                                                PASEC: Average performance gap between 6th grade students in rural and urban areas. Reading
## 10499                                                                                                                                                                                                                                              PIAAC: Mean Adult Literacy Proficiency. Total
## 10500                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 1
## 10501                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 2
## 10502                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 3
## 10503                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 4
## 10504                                                                                                                                                                                                                                   PIAAC: Adults by literacy proficiency level (%). Level 5
## 10505                                                                                                                                                                                                                             PIAAC: Adults by literacy proficiency level (%). Below Level 1
## 10506                                                                                                                                                                                                                                             PIAAC: Mean Adult Literacy Proficiency. Female
## 10507                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 1
## 10508                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 2
## 10509                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 3
## 10510                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 4
## 10511                                                                                                                                                                                                                        PIAAC: Female adults by literacy proficiency level (%). Level 4 & 5
## 10512                                                                                                                                                                                                                            PIAAC: Female adults by literacy proficiency level (%). Level 5
## 10513                                                                                                                                                                                                                      PIAAC: Female adults by literacy proficiency level (%). Below Level 1
## 10514                                                                                                                                                                                                                                               PIAAC: Mean Adult Literacy Proficiency. Male
## 10515                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 1
## 10516                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 2
## 10517                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 3
## 10518                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 4
## 10519                                                                                                                                                                                                                          PIAAC: Male adults by literacy proficiency level (%). Level 4 & 5
## 10520                                                                                                                                                                                                                              PIAAC: Male adults by literacy proficiency level (%). Level 5
## 10521                                                                                                                                                                                                                        PIAAC: Male adults by literacy proficiency level (%). Below Level 1
## 10522                                                                                                                                                                                                                         PIAAC: Distribution of Adult Literacy Scores: 5th Percentile Score
## 10523                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 10th Percentile Score
## 10524                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 25th Percentile Score
## 10525                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 50th Percentile Score
## 10526                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 75th Percentile Score
## 10527                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 90th Percentile Score
## 10528                                                                                                                                                                                                                        PIAAC: Distribution of Adult Literacy Scores: 95th Percentile Score
## 10529                                                                                                                                                                                                                                        PIAAC: Mean Young Adult Literacy Proficiency. Total
## 10530                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 1
## 10531                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 2
## 10532                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 3
## 10533                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 4
## 10534                                                                                                                                                                                                                         PIAAC: Young adults by literacy proficiency level (%). Level 4 & 5
## 10535                                                                                                                                                                                                                             PIAAC: Young adults by literacy proficiency level (%). Level 5
## 10536                                                                                                                                                                                                                       PIAAC: Young adults by literacy proficiency level (%). Below Level 1
## 10537                                                                                                                                                                                                                                       PIAAC: Mean Young Adult Literacy Proficiency. Female
## 10538                                                                                                                                                                                                                                         PIAAC: Mean Young Adult Literacy Proficiency. Male
## 10539                                                                                                                                                                                                                                              PIAAC: Mean Adult Numeracy Proficiency. Total
## 10540                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 1
## 10541                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 2
## 10542                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 3
## 10543                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 4
## 10544                                                                                                                                                                                                                                   PIAAC: Adults by numeracy proficiency level (%). Level 5
## 10545                                                                                                                                                                                                                             PIAAC: Adults by numeracy proficiency level (%). Below Level 1
## 10546                                                                                                                                                                                                                                             PIAAC: Mean Adult Numeracy Proficiency. Female
## 10547                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 1
## 10548                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 2
## 10549                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 3
## 10550                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 4
## 10551                                                                                                                                                                                                                        PIAAC: Female adults by numeracy proficiency level (%). Level 4 & 5
## 10552                                                                                                                                                                                                                            PIAAC: Female adults by numeracy proficiency level (%). Level 5
## 10553                                                                                                                                                                                                                      PIAAC: Female adults by numeracy proficiency level (%). Below Level 1
## 10554                                                                                                                                                                                                                                               PIAAC: Mean Adult Numeracy Proficiency. Male
## 10555                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 1
## 10556                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 2
## 10557                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 3
## 10558                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 4
## 10559                                                                                                                                                                                                                          PIAAC: Male adults by numeracy proficiency level (%). Level 4 & 5
## 10560                                                                                                                                                                                                                              PIAAC: Male adults by numeracy proficiency level (%). Level 5
## 10561                                                                                                                                                                                                                        PIAAC: Male adults by numeracy proficiency level (%). Below Level 1
## 10562                                                                                                                                                                                                                         PIAAC: Distribution of Adult Numeracy Scores: 5th Percentile Score
## 10563                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 10th Percentile Score
## 10564                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 25th Percentile Score
## 10565                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 50th Percentile Score
## 10566                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 75th Percentile Score
## 10567                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 90th Percentile Score
## 10568                                                                                                                                                                                                                        PIAAC: Distribution of Adult Numeracy Scores: 95th Percentile Score
## 10569                                                                                                                                                                                                                                        PIAAC: Mean Young Adult Numeracy Proficiency. Total
## 10570                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 1
## 10571                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 2
## 10572                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 3
## 10573                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 4
## 10574                                                                                                                                                                                                                         PIAAC: Young adults by numeracy proficiency level (%). Level 4 & 5
## 10575                                                                                                                                                                                                                             PIAAC: Young adults by numeracy proficiency level (%). Level 5
## 10576                                                                                                                                                                                                                       PIAAC: Young adults by numeracy proficiency level (%). Below Level 1
## 10577                                                                                                                                                                                                                                       PIAAC: Mean Young Adult Numeracy Proficiency. Female
## 10578                                                                                                                                                                                                                                         PIAAC: Mean Young Adult Numeracy Proficiency. Male
## 10579                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10580                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10581                                                                                                                                                                                         PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10582                                                                                                                                                                                   PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10583                                                                                                                                                                        PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Failed the ICT Core Test
## 10584                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10585                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10586                                                                                                                                                                                  PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10587                                                                                                                                                                            PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10588                                                                                                                                                                     PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10589                                                                                                                                       PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10590                                                                                                                                                                   PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10591                                                                                                                                                   PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10592                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10593                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10594                                                                                                                                                                                    PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10595                                                                                                                                                                              PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10596                                                                                                                                                                       PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10597                                                                                                                                         PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10598                                                                                                                                                                     PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10599                                                                                                                                                     PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10600                                                                                                                                                                          PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10601                                                                                                                                                          PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10602                                                                                                                                                                                  PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 5th Percentile Score
## 10603                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 10th Percentile Score
## 10604                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 25th Percentile Score
## 10605                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 50th Percentile Score
## 10606                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 75th Percentile Score
## 10607                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 90th Percentile Score
## 10608                                                                                                                                                                                 PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 95th Percentile Score
## 10609                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 1
## 10610                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 2
## 10611                                                                                                                                                                                   PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 3
## 10612                                                                                                                                                                             PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1
## 10613                                                                                                                                                                      PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test
## 10614                                                                                                                                        PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test
## 10615                                                                                                                                                                    PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience
## 10616                                                                                                                                                    PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment
## 10617                                                                                                                                                                                                                                        PIRLS: Mean performance on the reading scale, total
## 10618                                                                                                                                                                                      PIRLS: Fourth grade students reaching the advanced international benchmark in reading achievement (%)
## 10619                                                                                                                                                                                  PIRLS: Female 4th grade students reaching the advanced international benchmark in reading achievement (%)
## 10620                                                                                                                                                                                    PIRLS: Male 4th grade students reaching the advanced international benchmark in reading achievement (%)
## 10621                                                                                                                                                                                  PIRLS: Fourth grade students who did not reach the low international benchmark in reading achievement (%)
## 10622                                                                                                                                                                              PIRLS: Female 4th grade students who did not reach the low international benchmark in reading achievement (%)
## 10623                                                                                                                                                                                PIRLS: Male 4th grade students who did not reach the low international benchmark in reading achievement (%)
## 10624                                                                                                                                                                                                                                       PIRLS: Mean performance on the reading scale, female
## 10625                                                                                                                                                                                          PIRLS: Fourth grade students reaching the high international benchmark in reading achievement (%)
## 10626                                                                                                                                                                                      PIRLS: Female 4th grade students reaching the high international benchmark in reading achievement (%)
## 10627                                                                                                                                                                                        PIRLS: Male 4th grade students reaching the high international benchmark in reading achievement (%)
## 10628                                                                                                                                                                                  PIRLS: Fourth grade students reaching the intermediate international benchmark in reading achievement (%)
## 10629                                                                                                                                                                              PIRLS: Female 4th grade students reaching the intermediate international benchmark in reading achievement (%)
## 10630                                                                                                                                                                                PIRLS: Male 4th grade students reaching the intermediate international benchmark in reading achievement (%)
## 10631                                                                                                                                                                                           PIRLS: Fourth grade students reaching the low international benchmark in reading achievement (%)
## 10632                                                                                                                                                                                       PIRLS: Female 4th grade students reaching the low international benchmark in reading achievement (%)
## 10633                                                                                                                                                                                         PIRLS: Male 4th grade students reaching the low international benchmark in reading achievement (%)
## 10634                                                                                                                                                                                                                                         PIRLS: Mean performance on the reading scale, male
## 10635                                                                                                                                                                                                                                PIRLS: Distribution of Reading Scores: 5th Percentile Score
## 10636                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 10th Percentile Score
## 10637                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 25th Percentile Score
## 10638                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 50th Percentile Score
## 10639                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 75th Percentile Score
## 10640                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 90th Percentile Score
## 10641                                                                                                                                                                                                                               PIRLS: Distribution of Reading Scores: 95th Percentile Score
## 10642                                                                                                                                                                                                                                            PISA: Mean performance on the mathematics scale
## 10643                                                                                                                                                                                                                     PISA: 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10644                                                                                                                                                                                                              PISA: Female 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10645                                                                                                                                                                                                                PISA: Male 15-year-olds by mathematics proficiency level (%). Below Level 1
## 10646                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 1
## 10647                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 1
## 10648                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 1
## 10649                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 2
## 10650                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 2
## 10651                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 2
## 10652                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 3
## 10653                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 3
## 10654                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 3
## 10655                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 4
## 10656                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 4
## 10657                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 4
## 10658                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 5
## 10659                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 5
## 10660                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 5
## 10661                                                                                                                                                                                                                           PISA: 15-year-olds by mathematics proficiency level (%). Level 6
## 10662                                                                                                                                                                                                                    PISA: Female 15-year-olds by mathematics proficiency level (%). Level 6
## 10663                                                                                                                                                                                                                      PISA: Male 15-year-olds by mathematics proficiency level (%). Level 6
## 10664                                                                                                                                                                                                                                    PISA: Mean performance on the mathematics scale. Female
## 10665                                                                                                                                                                                                                                      PISA: Mean performance on the mathematics scale. Male
## 10666                                                                                                                                                                                                                             PISA: Distribution of Mathematics Scores: 5th Percentile Score
## 10667                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 10th Percentile Score
## 10668                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 25th Percentile Score
## 10669                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 50th Percentile Score
## 10670                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 75th Percentile Score
## 10671                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 90th Percentile Score
## 10672                                                                                                                                                                                                                            PISA: Distribution of Mathematics Scores: 95th Percentile Score
## 10673                                                                                                                                                                                                                                                PISA: Mean performance on the reading scale
## 10674                                                                                                                                                                                                                        PISA: 15-year-olds by reading proficiency level (%). Below Level 1B
## 10675                                                                                                                                                                                                                        PISA: 15-year-olds by reading proficiency level (%). Below Level 1C
## 10676                                                                                                                                                                                                                 PISA: Female 15-year-olds by reading proficiency level (%). Below Level 1C
## 10677                                                                                                                                                                                                                   PISA: Male 15-year-olds by reading proficiency level (%). Below Level 1C
## 10678                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1A
## 10679                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1A
## 10680                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1A
## 10681                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1B
## 10682                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1B
## 10683                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1B
## 10684                                                                                                                                                                                                                              PISA: 15-year-olds by reading proficiency level (%). Level 1C
## 10685                                                                                                                                                                                                                       PISA: Female 15-year-olds by reading proficiency level (%). Level 1C
## 10686                                                                                                                                                                                                                         PISA: Male 15-year-olds by reading proficiency level (%). Level 1C
## 10687                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 2
## 10688                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 2
## 10689                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 2
## 10690                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 3
## 10691                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 3
## 10692                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 3
## 10693                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 4
## 10694                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 4
## 10695                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 4
## 10696                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 5
## 10697                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 5
## 10698                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 5
## 10699                                                                                                                                                                                                                               PISA: 15-year-olds by reading proficiency level (%). Level 6
## 10700                                                                                                                                                                                                                        PISA: Female 15-year-olds by reading proficiency level (%). Level 6
## 10701                                                                                                                                                                                                                          PISA: Male 15-year-olds by reading proficiency level (%). Level 6
## 10702                                                                                                                                                                                                                                        PISA: Mean performance on the reading scale. Female
## 10703                                                                                                                                                                                                                                          PISA: Mean performance on the reading scale. Male
## 10704                                                                                                                                                                                                                                 PISA: Distribution of Reading Scores: 5th Percentile Score
## 10705                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 10th Percentile Score
## 10706                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 25th Percentile Score
## 10707                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 50th Percentile Score
## 10708                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 75th Percentile Score
## 10709                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 90th Percentile Score
## 10710                                                                                                                                                                                                                                PISA: Distribution of Reading Scores: 95th Percentile Score
## 10711                                                                                                                                                                                                                                                PISA: Mean performance on the science scale
## 10712                                                                                                                                                                                                                        PISA: 15-year-olds by science proficiency level (%). Below Level 1B
## 10713                                                                                                                                                                                                                 PISA: Female 15-year-olds by science proficiency level (%). Below Level 1B
## 10714                                                                                                                                                                                                                   PISA: Male 15-year-olds by science proficiency level (%). Below Level 1B
## 10715                                                                                                                                                                                                                              PISA: 15-year-olds by science proficiency level (%). Level 1A
## 10716                                                                                                                                                                                                                       PISA: Female 15-year-olds by science proficiency level (%). Level 1A
## 10717                                                                                                                                                                                                                         PISA: Male 15-year-olds by science proficiency level (%). Level 1A
## 10718                                                                                                                                                                                                                              PISA: 15-year-olds by science proficiency level (%). Level 1B
## 10719                                                                                                                                                                                                                       PISA: Female 15-year-olds by science proficiency level (%). Level 1B
## 10720                                                                                                                                                                                                                         PISA: Male 15-year-olds by science proficiency level (%). Level 1B
## 10721                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 2
## 10722                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 2
## 10723                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 2
## 10724                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 3
## 10725                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 3
## 10726                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 3
## 10727                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 4
## 10728                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 4
## 10729                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 4
## 10730                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 5
## 10731                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 5
## 10732                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 5
## 10733                                                                                                                                                                                                                               PISA: 15-year-olds by science proficiency level (%). Level 6
## 10734                                                                                                                                                                                                                        PISA: Female 15-year-olds by science proficiency level (%). Level 6
## 10735                                                                                                                                                                                                                          PISA: Male 15-year-olds by science proficiency level (%). Level 6
## 10736                                                                                                                                                                                                                                        PISA: Mean performance on the science scale. Female
## 10737                                                                                                                                                                                                                                          PISA: Mean performance on the science scale. Male
## 10738                                                                                                                                                                                                                                 PISA: Distribution of Science Scores: 5th Percentile Score
## 10739                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 10th Percentile Score
## 10740                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 25th Percentile Score
## 10741                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 50th Percentile Score
## 10742                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 75th Percentile Score
## 10743                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 90th Percentile Score
## 10744                                                                                                                                                                                                                                PISA: Distribution of Science Scores: 95th Percentile Score
## 10745                                                                                                                                                                                                                                          SACMEQ: Mean performance on the mathematics scale
## 10746                                                                                                                                                                                                                                  SACMEQ: Mean performance on the mathematics scale, female
## 10747                                                                                                                                                                                                    SACMEQ: 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10748                                                                                                                                                                                             SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10749                                                                                                                                                                                               SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy
## 10750                                                                                                                                                                                               SACMEQ: 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10751                                                                                                                                                                                        SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10752                                                                                                                                                                                          SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy
## 10753                                                                                                                                                                                                  SACMEQ: 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10754                                                                                                                                                                                           SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10755                                                                                                                                                                                             SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy
## 10756                                                                                                                                                                                              SACMEQ: 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10757                                                                                                                                                                                       SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10758                                                                                                                                                                                         SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy
## 10759                                                                                                                                                                                              SACMEQ: 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10760                                                                                                                                                                                       SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10761                                                                                                                                                                                         SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy
## 10762                                                                                                                                                                                          SACMEQ: 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10763                                                                                                                                                                                   SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10764                                                                                                                                                                                     SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled
## 10765                                                                                                                                                                                        SACMEQ: 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10766                                                                                                                                                                                 SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10767                                                                                                                                                                                   SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving
## 10768                                                                                                                                                                                        SACMEQ: 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10769                                                                                                                                                                                 SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10770                                                                                                                                                                                   SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving
## 10771                                                                                                                                                                                                                                    SACMEQ: Mean performance on the mathematics scale, male
## 10772                                                                                                                                                                                                                                       SACMEQ: Mean performance on the reading scale, total
## 10773                                                                                                                                                                                                                                      SACMEQ: Mean performance on the reading scale, female
## 10774                                                                                                                                                                                                         SACMEQ: 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10775                                                                                                                                                                                                  SACMEQ: Female 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10776                                                                                                                                                                                                    SACMEQ: Male 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading
## 10777                                                                                                                                                                                                    SACMEQ: 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10778                                                                                                                                                                                             SACMEQ: Female 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10779                                                                                                                                                                                               SACMEQ: Male 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading
## 10780                                                                                                                                                                                                       SACMEQ: 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10781                                                                                                                                                                                                SACMEQ: Female 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10782                                                                                                                                                                                                  SACMEQ: Male 6th grade students by reading proficiency level (%). Level 3 - Basic Reading
## 10783                                                                                                                                                                                                 SACMEQ: 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10784                                                                                                                                                                                          SACMEQ: Female 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10785                                                                                                                                                                                            SACMEQ: Male 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning
## 10786                                                                                                                                                                                                SACMEQ: 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10787                                                                                                                                                                                         SACMEQ: Female 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10788                                                                                                                                                                                           SACMEQ: Male 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading
## 10789                                                                                                                                                                                                 SACMEQ: 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10790                                                                                                                                                                                          SACMEQ: Female 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10791                                                                                                                                                                                            SACMEQ: Male 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading
## 10792                                                                                                                                                                                                  SACMEQ: 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10793                                                                                                                                                                                           SACMEQ: Female 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10794                                                                                                                                                                                             SACMEQ: Male 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading
## 10795                                                                                                                                                                                                    SACMEQ: 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10796                                                                                                                                                                                             SACMEQ: Female 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10797                                                                                                                                                                                               SACMEQ: Male 6th grade students by reading proficiency level (%). Level 8 - Critical Reading
## 10798                                                                                                                                                                                                                                        SACMEQ: Mean performance on the reading scale, male
## 10799                                                                                                                                                                                                          TIMSS: Mean performance on the mathematics scale for fourth grade students, total
## 10800                                                                                                                                                                                  TIMSS: Fourth grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10801                                                                                                                                                                              TIMSS: Female 4th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10802                                                                                                                                                                                TIMSS: Male 4th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10803                                                                                                                                                                              TIMSS: Fourth grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10804                                                                                                                                                                          TIMSS: Female 4th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10805                                                                                                                                                                            TIMSS: Male 4th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10806                                                                                                                                                                                                         TIMSS: Mean performance on the mathematics scale for fourth grade students, female
## 10807                                                                                                                                                                                      TIMSS: Fourth grade students reaching the high international benchmark of mathematics achievement (%)
## 10808                                                                                                                                                                                  TIMSS: Female 4th grade students reaching the high international benchmark of mathematics achievement (%)
## 10809                                                                                                                                                                                    TIMSS: Male 4th grade students reaching the high international benchmark of mathematics achievement (%)
## 10810                                                                                                                                                                              TIMSS: Fourth grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10811                                                                                                                                                                          TIMSS: Female 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10812                                                                                                                                                                            TIMSS: Male 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10813                                                                                                                                                                                       TIMSS: Fourth grade students reaching the low international benchmark of mathematics achievement (%)
## 10814                                                                                                                                                                                   TIMSS: Female 4th grade students reaching the low international benchmark of mathematics achievement (%)
## 10815                                                                                                                                                                                     TIMSS: Male 4th grade students reaching the low international benchmark of mathematics achievement (%)
## 10816                                                                                                                                                                                                           TIMSS: Mean performance on the mathematics scale for fourth grade students, male
## 10817                                                                                                                                                                                                                  TIMSS: Distribution of 4th Grade Mathematics Scores: 5th Percentile Score
## 10818                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score
## 10819                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score
## 10820                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score
## 10821                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score
## 10822                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score
## 10823                                                                                                                                                                                                                 TIMSS: Distribution of 4th Grade Mathematics Scores: 95th Percentile Score
## 10824                                                                                                                                                                                                          TIMSS: Mean performance on the mathematics scale for eighth grade students, total
## 10825                                                                                                                                                                                  TIMSS: Eighth grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10826                                                                                                                                                                              TIMSS: Female 8th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10827                                                                                                                                                                                TIMSS: Male 8th grade students reaching the advanced international benchmark of mathematics achievement (%)
## 10828                                                                                                                                                                              TIMSS: Eighth grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10829                                                                                                                                                                          TIMSS: Female 8th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10830                                                                                                                                                                            TIMSS: Male 8th grade students who did not reach the low international benchmark of mathematics achievement (%)
## 10831                                                                                                                                                                                                         TIMSS: Mean performance on the mathematics scale for eighth grade students, female
## 10832                                                                                                                                                                                      TIMSS: Eighth grade students reaching the high international benchmark of mathematics achievement (%)
## 10833                                                                                                                                                                                  TIMSS: Female 8th grade students reaching the high international benchmark of mathematics achievement (%)
## 10834                                                                                                                                                                                    TIMSS: Male 8th grade students reaching the high international benchmark of mathematics achievement (%)
## 10835                                                                                                                                                                              TIMSS: Eighth grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10836                                                                                                                                                                          TIMSS: Female 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10837                                                                                                                                                                            TIMSS: Male 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)
## 10838                                                                                                                                                                                       TIMSS: Eighth grade students reaching the low international benchmark of mathematics achievement (%)
## 10839                                                                                                                                                                                   TIMSS: Female 8th grade students reaching the low international benchmark of mathematics achievement (%)
## 10840                                                                                                                                                                                     TIMSS: Male 8th grade students reaching the low international benchmark of mathematics achievement (%)
## 10841                                                                                                                                                                                                           TIMSS: Mean performance on the mathematics scale for eighth grade students, male
## 10842                                                                                                                                                                                                                  TIMSS: Distribution of 8th Grade Mathematics Scores: 5th Percentile Score
## 10843                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 10th Percentile Score
## 10844                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 25th Percentile Score
## 10845                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 50th Percentile Score
## 10846                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 75th Percentile Score
## 10847                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 90th Percentile Score
## 10848                                                                                                                                                                                                                 TIMSS: Distribution of 8th Grade Mathematics Scores: 95th Percentile Score
## 10849                                                                                                                                                                                                              TIMSS: Mean performance on the science scale for fourth grade students, total
## 10850                                                                                                                                                                                      TIMSS: Fourth grade students reaching the advanced international benchmark of science achievement (%)
## 10851                                                                                                                                                                                  TIMSS: Female 4th grade students reaching the advanced international benchmark of science achievement (%)
## 10852                                                                                                                                                                                    TIMSS: Male 4th grade students reaching the advanced international benchmark of science achievement (%)
## 10853                                                                                                                                                                                  TIMSS: Fourth grade students who did not reach the low international benchmark of science achievement (%)
## 10854                                                                                                                                                                              TIMSS: Female 4th grade students who did not reach the low international benchmark of science achievement (%)
## 10855                                                                                                                                                                                TIMSS: Male 4th grade students who did not reach the low international benchmark of science achievement (%)
## 10856                                                                                                                                                                                                             TIMSS: Mean performance on the science scale for fourth grade students, female
## 10857                                                                                                                                                                                          TIMSS: Fourth grade students reaching the high international benchmark of science achievement (%)
## 10858                                                                                                                                                                                      TIMSS: Female 4th grade students reaching the high international benchmark of science achievement (%)
## 10859                                                                                                                                                                                        TIMSS: Male 4th grade students reaching the high international benchmark of science achievement (%)
## 10860                                                                                                                                                                                  TIMSS: Fourth grade students reaching the intermediate international benchmark of science achievement (%)
## 10861                                                                                                                                                                              TIMSS: Female 4th grade students reaching the intermediate international benchmark of science achievement (%)
## 10862                                                                                                                                                                                TIMSS: Male 4th grade students reaching the intermediate international benchmark of science achievement (%)
## 10863                                                                                                                                                                                           TIMSS: Fourth grade students reaching the low international benchmark of science achievement (%)
## 10864                                                                                                                                                                                       TIMSS: Female 4th grade students reaching the low international benchmark of science achievement (%)
## 10865                                                                                                                                                                                         TIMSS: Male 4th grade students reaching the low international benchmark of science achievement (%)
## 10866                                                                                                                                                                                                               TIMSS: Mean performance on the science scale for fourth grade students, male
## 10867                                                                                                                                                                                                                      TIMSS: Distribution of 4th Grade Science Scores: 5th Percentile Score
## 10868                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 10th Percentile Score
## 10869                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 25th Percentile Score
## 10870                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 50th Percentile Score
## 10871                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 75th Percentile Score
## 10872                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 90th Percentile Score
## 10873                                                                                                                                                                                                                     TIMSS: Distribution of 4th Grade Science Scores: 95th Percentile Score
## 10874                                                                                                                                                                                                              TIMSS: Mean performance on the science scale for eighth grade students, total
## 10875                                                                                                                                                                                      TIMSS: Eighth grade students reaching the advanced international benchmark of science achievement (%)
## 10876                                                                                                                                                                                  TIMSS: Female 8th grade students reaching the advanced international benchmark of science achievement (%)
## 10877                                                                                                                                                                                    TIMSS: Male 8th grade students reaching the advanced international benchmark of science achievement (%)
## 10878                                                                                                                                                                                  TIMSS: Eighth grade students who did not reach the low international benchmark of science achievement (%)
## 10879                                                                                                                                                                              TIMSS: Female 8th grade students who did not reach the low international benchmark of science achievement (%)
## 10880                                                                                                                                                                                TIMSS: Male 8th grade students who did not reach the low international benchmark of science achievement (%)
## 10881                                                                                                                                                                                                             TIMSS: Mean performance on the science scale for eighth grade students, female
## 10882                                                                                                                                                                                          TIMSS: Eighth grade students reaching the high international benchmark of science achievement (%)
## 10883                                                                                                                                                                                      TIMSS: Female 8th grade students reaching the high international benchmark of science achievement (%)
## 10884                                                                                                                                                                                        TIMSS: Male 8th grade students reaching the high international benchmark of science achievement (%)
## 10885                                                                                                                                                                                  TIMSS: Eighth grade students reaching the intermediate international benchmark of science achievement (%)
## 10886                                                                                                                                                                              TIMSS: Female 8th grade students reaching the intermediate international benchmark of science achievement (%)
## 10887                                                                                                                                                                                TIMSS: Male 8th grade students reaching the intermediate international benchmark of science achievement (%)
## 10888                                                                                                                                                                                           TIMSS: Eighth grade students reaching the low international benchmark of science achievement (%)
## 10889                                                                                                                                                                                       TIMSS: Female 8th grade students reaching the low international benchmark of science achievement (%)
## 10890                                                                                                                                                                                         TIMSS: Male 8th grade students reaching the low international benchmark of science achievement (%)
## 10891                                                                                                                                                                                                               TIMSS: Mean performance on the science scale for eighth grade students, male
## 10892                                                                                                                                                                                                                      TIMSS: Distribution of 8th Grade Science Scores: 5th Percentile Score
## 10893                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 10th Percentile Score
## 10894                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 25th Percentile Score
## 10895                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 50th Percentile Score
## 10896                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 75th Percentile Score
## 10897                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 90th Percentile Score
## 10898                                                                                                                                                                                                                     TIMSS: Distribution of 8th Grade Science Scores: 95th Percentile Score
## 10899                                                                                                                                                                                                                                                    Lead time to export, median case (days)
## 10900                                                                                                                                                                                                                                                    Lead time to import, median case (days)
## 10901                                                                                                                                                                                                                            Efficiency of the clearance process, rank (1=highest performer)
## 10902                                                                                                                                                                                                     Logistics performance index: Efficiency of customs clearance process (1=low to 5=high)
## 10903                                                                                                                                                                                                         Quality- of trade and transport-related infrastructure, rank (1=highest performer)
## 10904                                                                                                                                                                                       Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high)
## 10905                                                                                                                                                                                                 Ease of arranging competitively priced international shipments, rank (1=highest performer)
## 10906                                                                                                                                                                                            Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high)
## 10907                                                                                                                                                                                                                   Competence and quality of logistics services, rank (1=highest performer)
## 10908                                                                                                                                                                                                Logistics performance index: Competence and quality of logistics services (1=low to 5=high)
## 10909                                                                                                                                                                                                                          Logistics performance index: Overall rank (1=highest performance)
## 10910                                                                                                                                                                                                             Logistics performance index: Overall rank (1=highest performance), lower bound
## 10911                                                                                                                                                                                                             Logistics performance index: Overall rank (1=highest performance), upper bound
## 10912                                                                                                                                                                                                                                 Logistics performance index: Percent of highest performer)
## 10913                                                                                                                                                                                                                                     Logistics performance index: Overall (1=low to 5=high)
## 10914                                                                                                                                                                                                                  Logistics performance index: Overall score (1=low to 5=high), lower bound
## 10915                                                                                                                                                                                                                  Logistics performance index: Overall score (1=low to 5=high), upper bound
## 10916                                                                                                                                                                               Frequency with which shipments reach consignee within scheduled or expected time, rank (1=highest performer)
## 10917                                                                                                                                                            Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high)
## 10918                                                                                                                                                                                                                        Ability to track and trace consignments, rank (1=highest performer)
## 10919                                                                                                                                                                                                     Logistics performance index: Ability to track and trace consignments (1=low to 5=high)
## 10920                                                                                                                                                                                                                                                           Sustainable Economic Opportunity
## 10921                                                                                                                                                                                                                                                                          Human Development
## 10922                                                                                                                                                                                                                                                             Participation and Human Rights
## 10923                                                                                                                                                                                                                                                                     Safety and Rule of Law
## 10924                                                                                                                                                                                                                                                                   Overall Mo Ibrahim index
## 10925                                                                                                                                                                                                                                                           Mobile money account (% age 15+)
## 10926                                                                                                                                                                                                                                                    Mobile money account, male  (% age 15+)
## 10927                                                                                                                                                                                                                                           Mobile money account, in labor force (% age 15+)
## 10928                                                                                                                                                                                                                                       Mobile money account, out of labor force (% age 15+)
## 10929                                                                                                                                                                                                                                                   Mobile money account, female (% age 15+)
## 10930                                                                                                                                                                                                                                          Mobile money account, young adults  (% age 15-24)
## 10931                                                                                                                                                                                                                                             Mobile money account, older adults (% age 25+)
## 10932                                                                                                                                                                                                                                Mobile money account, primary education or less (% age 15+)
## 10933                                                                                                                                                                                                                              Mobile money account, secondary education or less (% age 15+)
## 10934                                                                                                                                                                                                                                      Mobile money account, income, poorest 40% (% age 15+)
## 10935                                                                                                                                                                                                                                     Mobile money account, income, richest 60%  (% age 15+)
## 10936                                                                                                                                                                                                                                                   Mobile money account, rural  (% age 15+)
## 10937                                                                                                                                                                                                                                                Arms imports (SIPRI trend indicator values)
## 10938                                                                                                                                                                                                                                                          Arms imports (% of total imports)
## 10939                                                                                                                                                                                                                                                              Armed forces personnel, total
## 10940                                                                                                                                                                                                                                            Armed forces personnel (% of total labor force)
## 10941                                                                                                                                                                                                                                                         Military expenditure (current USD)
## 10942                                                                                                                                                                                                                                                         Military expenditure (current LCU)
## 10943                                                                                                                                                                                                                                                            Military expenditure (% of GDP)
## 10944                                                                                                                                                                                                                                                            Military expenditure (% of GNI)
## 10945                                                                                                                                                                                                                                 Military expenditure (% of general government expenditure)
## 10946                                                                                                                                                                                                                                                Arms exports (SIPRI trend indicator values)
## 10947                                                                                                                                                                                                                                                          Arms exports (% of total exports)
## 10948                                                                                                                                                                                            GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Current Price
## 10949                                                                                                                                                                                           GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10950                                                                                                                                                                                                                                  GDP on Agriculture Sector (in IDR Million), Current Price
## 10951                                                                                                                                                                                                                                 GDP on Agriculture Sector (in IDR Million), Constant Price
## 10952                                                                                                                                                                                                  GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Current Price
## 10953                                                                                                                                                                                                 GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Constant Price
## 10954                                                                                                                                                                                                                  GDP on Business Services Sector (in IDR Million), SNA 2008, Current Price
## 10955                                                                                                                                                                                                                 GDP on Business Services Sector (in IDR Million), SNA 2008, Constant Price
## 10956                                                                                                                                                                                                                                 GDP on Construction Sector (in IDR Million), Current Price
## 10957                                                                                                                                                                                                                                GDP on Construction Sector (in IDR Million), Constant Price
## 10958                                                                                                                                                                                                                       GDP on Construction Sector (in IDR Million), SNA 2008, Current Price
## 10959                                                                                                                                                                                                                      GDP on Construction Sector (in IDR Million), SNA 2008, Constant Price
## 10960                                                                                                                                                                                                                 GDP on Education Services Sector (in IDR Million), SNA 2008, Current Price
## 10961                                                                                                                                                                                                                GDP on Education Services Sector (in IDR Million), SNA 2008, Constant Price
## 10962                                                                                                                                                                                                           GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Current Price
## 10963                                                                                                                                                                                                          GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Constant Price
## 10964                                                                                                                                                                                                                            Total GDP excluding Oil and Gas (in IDR Million), Current Price
## 10965                                                                                                                                                                                                                           Total GDP excluding Oil and Gas (in IDR Million), Constant Price
## 10966                                                                                                                                                                                                                            GDP on Financial Service Sector (in IDR Million), Current Price
## 10967                                                                                                                                                                                                                           GDP on Financial Service Sector (in IDR Million), Constant Price
## 10968                                                                                                                                                                                                     GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Current Price
## 10969                                                                                                                                                                                                    GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10970                                                                                                                                                                                                GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Current Price
## 10971                                                                                                                                                                                               GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Constant Price
## 10972                                                                                                                                                                                                                            Total GDP including Oil and Gas (in IDR Million), Current Price
## 10973                                                                                                                                                                                                                           Total GDP including Oil and Gas (in IDR Million), Constant Price
## 10974                                                                                                                                                                                                                  Total GDP including Oil and Gas (in IDR Million), SNA 2008, Current Price
## 10975                                                                                                                                                                                                                 Total GDP including Oil and Gas (in IDR Million), SNA 2008, Constant Price
## 10976                                                                                                                                                                                                        GDP on Information & Communication Sector (in IDR Million), SNA 2008, Current Price
## 10977                                                                                                                                                                                                       GDP on Information & Communication Sector (in IDR Million), SNA 2008, Constant Price
## 10978                                                                                                                                                                                                                         GDP on Mining and Quarrying Sector (in IDR Million), Current Price
## 10979                                                                                                                                                                                                                        GDP on Mining and Quarrying Sector (in IDR Million), Constant Price
## 10980                                                                                                                                                                                                                 GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Current Price
## 10981                                                                                                                                                                                                                GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Constant Price
## 10982                                                                                                                                                                                                                                GDP on Manufacturing Sector (in IDR Million), Current Price
## 10983                                                                                                                                                                                                                               GDP on Manufacturing Sector (in IDR Million), Constant Price
## 10984                                                                                                                                                                                                             GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Current Price
## 10985                                                                                                                                                                                                            GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Constant Price
## 10986                                                                                                                                                                        GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Current Price
## 10987                                                                                                                                                                       GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Constant Price
## 10988                                                                                                                                                                                                                        GDP on Real Estate Sector (in IDR Million), SNA 2008, Current Price
## 10989                                                                                                                                                                                                                       GDP on Real Estate Sector (in IDR Million), SNA 2008, Constant Price
## 10990                                                                                                                                                                                                                                GDP on Other Service Sector (in IDR Million), Current Price
## 10991                                                                                                                                                                                                                               GDP on Other Service Sector (in IDR Million), Constant Price
## 10992                                                                                                                                                                                                                     GDP on Other Services Sector (in IDR Million), SNA 2008, Current Price
## 10993                                                                                                                                                                                                                    GDP on Other Services Sector (in IDR Million), SNA 2008, Constant Price
## 10994                                                                                                                                                                                                         GDP on Transportation and Telecommunication Sector (in IDR Million), Current Price
## 10995                                                                                                                                                                                                        GDP on Transportation and Telecommunication Sector (in IDR Million), Constant Price
## 10996                                                                                                                                                                                                           GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Current Price
## 10997                                                                                                                                                                                                          GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Constant Price
## 10998                                                                                                                                                                                                                  GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Current Price
## 10999                                                                                                                                                                                                                 GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Constant Price
## 11000                                                                                                                                                                  GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Current Price
## 11001                                                                                                                                                                 GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Constant Price
## 11002                                                                                                                                                                                                                                    GDP on Utilities Sector (in IDR Million), Current Price
## 11003                                                                                                                                                                                                                                   GDP on Utilities Sector (in IDR Million), Constant Price
## 11004                                                                                                                                                                               GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Current Price
## 11005                                                                                                                                                                              GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Constant Price
## 11006                                                                                                                                                                                                                             General government final consumption expenditure (current US$)
## 11007                                                                                                                                                                                                                             General government final consumption expenditure (current LCU)
## 11008                                                                                                                                                                                                                       General government final consumption expenditure (constant 2015 US$)
## 11009                                                                                                                                                                                                                                         General government consumption (constant 1987 US$)
## 11010                                                                                                                                                                                                                         General government final consumption expenditure (annual % growth)
## 11011                                                                                                                                                                                                                            General government final consumption expenditure (constant LCU)
## 11012                                                                                                                                                                                                                                         General government consumption (constant 1987 LCU)
## 11013                                                                                                                                                                                                                                           General government consumption (annual % growth)
## 11014                                                                                                                                                                                                                                General government final consumption expenditure (% of GDP)
## 11015                                                                                                                                                                                                                   Final consumption expenditure plus discrepancy, per capita (current US$)
## 11016                                                                                                                                                                                                                                                  Private consumption per capita (1987 US$)
## 11017                                                                                                                                                                                                                                Household final consumption expenditure, etc. (current US$)
## 11018                                                                                                                                                                                                                                Household final consumption expenditure, etc. (current LCU)
## 11019                                                                                                                                                                                                                          Household final consumption expenditure, etc. (constant 2010 US$)
## 11020                                                                                                                                                                                                                                              Private consumption, etc. (constant 1987 US$)
## 11021                                                                                                                                                                                                                            Household final consumption expenditure, etc. (annual % growth)
## 11022                                                                                                                                                                                                                               Household final consumption expenditure, etc. (constant LCU)
## 11023                                                                                                                                                                                                                                              Private consumption, etc. (constant 1987 LCU)
## 11024                                                                                                                                                                                                                                                Private consumption, etc. (annual % growth)
## 11025                                                                                                                                                                                                                                   Household final consumption expenditure, etc. (% of GDP)
## 11026                                                                                                                                                                                                                          Households and NPISHs Final consumption expenditure (current US$)
## 11027                                                                                                                                                                                                                          Households and NPISHs Final consumption expenditure (current LCU)
## 11028                                                                                                                                                                                                           Households and NPISHs final consumption expenditure: linked series (current LCU)
## 11029                                                                                                                                                                                                                    Households and NPISHs Final consumption expenditure (constant 2015 US$)
## 11030                                                                                                                                                                                                                                                    Private consumption (constant 1987 US$)
## 11031                                                                                                                                                                                                                      Households and NPISHs Final consumption expenditure (annual % growth)
## 11032                                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure (constant LCU)
## 11033                                                                                                                                                                                                                                                  Private consumption,  (constant 1987 LCU)
## 11034                                                                                                                                                                                                                                                      Private consumption (annual % growth)
## 11035                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure per capita (constant 2015 US$)
## 11036                                                                                                                                                                                                           Households and NPISHs Final consumption expenditure per capita growth (annual %)
## 11037                                                                                                                                                                                                                                           Private consumption per capita growth (annual %)
## 11038                                                                                                                                                                                                                                         Private consumption per capita (constant 1995 US$)
## 11039                                                                                                                                                                                                                                           Private consumption per capita growth (annual %)
## 11040                                                                                                                                                                                                         Households and NPISHs Final consumption expenditure, PPP (current international $)
## 11041                                                                                                                                                                                                   Households and NPISHs Final consumption expenditure, PPP (constant 2017 international $)
## 11042                                                                                                                                                                                                                             Households and NPISHs final consumption expenditure (% of GDP)
## 11043                                                                                                                                                                                                                                                  Private consumption per capita (1987 USD)
## 11044                                                                                                                                                                                                                                          Final consumption expenditure, etc. (current US$)
## 11045                                                                                                                                                                                                                                          Final consumption expenditure, etc. (current LCU)
## 11046                                                                                                                                                                                                                                    Final consumption expenditure, etc. (constant 2010 US$)
## 11047                                                                                                                                                                                                                                                Total consumption, etc. (constant 1987 US$)
## 11048                                                                                                                                                                                                                                      Final consumption expenditure, etc. (annual % growth)
## 11049                                                                                                                                                                                                                                         Final consumption expenditure, etc. (constant LCU)
## 11050                                                                                                                                                                                                                                                Total consumption, etc. (constant 1987 LCU)
## 11051                                                                                                                                                                                                                                                  Total consumption, etc. (annual % growth)
## 11052                                                                                                                                                                                                                                             Final consumption expenditure, etc. (% of GDP)
## 11053                                                                                                                                                                                                                                                Final consumption expenditure (current US$)
## 11054                                                                                                                                                                                                                                                Final consumption expenditure (current LCU)
## 11055                                                                                                                                                                                                                                          Final consumption expenditure (constant 2015 US$)
## 11056                                                                                                                                                                                                                                                      Total consumption (constant 1987 US$)
## 11057                                                                                                                                                                                                                                            Final consumption expenditure (annual % growth)
## 11058                                                                                                                                                                                                                                               Final consumption expenditure (constant LCU)
## 11059                                                                                                                                                                                                                                                      Total consumption (constant 1987 LCU)
## 11060                                                                                                                                                                                                                                       Total consumption: contribution to growth of GDP (%)
## 11061                                                                                                                                                                                                                                                   Final consumption expenditure (% of GDP)
## 11062                                                                                                                                                                                                                          Gross national expenditure deflator (base year varies by country)
## 11063                                                                                                                                                                                                                                                   Gross national expenditure (current US$)
## 11064                                                                                                                                                                                                                                                   Gross national expenditure (current LCU)
## 11065                                                                                                                                                                                                                                                               Domestic Absorption Deflator
## 11066                                                                                                                                                                                                                                             Gross national expenditure (constant 2015 US$)
## 11067                                                                                                                                                                                                                                                    Domestic absorption (constant 1987 US$)
## 11068                                                                                                                                                                                                                                                  Gross national expenditure (constant LCU)
## 11069                                                                                                                                                                                                                                                    Domestic absorption (constant 1987 LCU)
## 11070                                                                                                                                                                                                                                             Domestic Absorption deflator  (1987=100,Index)
## 11071                                                                                                                                                                                                                                                      Gross national expenditure (% of GDP)
## 11072                                                                                                                                                                                                                                                              KP Capacity to Import (Local)
## 11073                                                                                                                                                                                                                                                Exports of goods and services (current US$)
## 11074                                                                                                                                                                                                                                                Exports of goods and services (current LCU)
## 11075                                                                                                                                                                                                                                          Exports of goods and services (constant 2015 US$)
## 11076                                                                                                                                                                                                                                          Exports of goods and services (constant 1987 US$)
## 11077                                                                                                                                                                                                                                            Exports of goods and services (annual % growth)
## 11078                                                                                                                                                                                                                                               Exports of goods and services (constant LCU)
## 11079                                                                                                                                                                                                                                          Exports of goods and services (constant 1987 LCU)
## 11080                                                                                                                                                                                                                                            Exports of goods and services (annual % growth)
## 11081                                                                                                                                                                                                                      Exports of goods and non-financial services, growth (%, constant LCU)
## 11082                                                                                                                                                                                                                                          Export price index (goods and services, 2000=100)
## 11083                                                                                                                                                                                                                                                   Exports of goods and services (% of GDP)
## 11084                                                                                                                                                                                                                                                       KP Terms of Trade Adjustment (Local)
## 11085                                                                                                                                                                                                                         GDP expenditure on general government consumption (in IDR Million)
## 11086                                                                                                                                                                                                GDP expenditure on general government consumption (in IDR Million), SNA 2008, Current Price
## 11087                                                                                                                                                                                                             GDP expenditure on non profit private institution consumption (in IDR Million)
## 11088                                                                                                                                                                                    GDP expenditure on non profit private institution consumption (in IDR Million), SNA 2008, Current Price
## 11089                                                                                                                                                                                                                                    GDP expenditure on private consumption (in IDR Million)
## 11090                                                                                                                                                                                                           GDP expenditure on private consumption (in IDR Million), SNA 2008, Current Price
## 11091                                                                                                                                                                                                                                                GDP expenditure on exports (in IDR Million)
## 11092                                                                                                                                                                                                                       GDP expenditure on exports (in IDR Million), SNA 2008, Current Price
## 11093                                                                                                                                                                                                                                                    GDFI - central government (current US$)
## 11094                                                                                                                                                                                                                                                    GDFI - central government (current LCU)
## 11095                                                                                                                                                                                                                                              GDFI - central government (constant 2000 US$)
## 11096                                                                                                                                                                                                                                                   GDFI - central government (constant LCU)
## 11097                                                                                                                                                                                                                                                    GDFI - general government (current US$)
## 11098                                                                                                                                                                                                                                                    GDFI - general government (current LCU)
## 11099                                                                                                                                                                                                                                              GDFI - general government (constant 2000 US$)
## 11100                                                                                                                                                                                                                                                   GDFI - general government (constant LCU)
## 11101                                                                                                                                                                                                                                                                CP Fixed Investment (Local)
## 11102                                                                                                                                                                                                                                                    Fixed Investment (local) (Const. Price)
## 11103                                                                                                                                                                                                                                            GDFI - state and local government (current US$)
## 11104                                                                                                                                                                                                                                            GDFI - state and local government (current LCU)
## 11105                                                                                                                                                                                                                                           GDFI - state and local government (constant LCU)
## 11106                                                                                                                                                                                                                                                    GDFI - public enterprises (current US$)
## 11107                                                                                                                                                                                                                                                    GDFI - public enterprises (current LCU)
## 11108                                                                                                                                                                                                                                                   GDFI - public enterprises (constant LCU)
## 11109                                                                                                                                                                                                                                                               GDFI - private (current US$)
## 11110                                                                                                                                                                                                                                Gross fixed capital formation, private sector (current LCU)
## 11111                                                                                                                                                                                                                                                       Private fixed investment (% of GDFI)
## 11112                                                                                                                                                                                                                            Private fixed investment (% of gross domestic fixed investment)
## 11113                                                                                                                                                                                                                                                             Private investment (% of GDFI)
## 11114                                                                                                                                                                                                                                                             Private investment (% of GDFI)
## 11115                                                                                                                                                                                                                                                  GDFI - private sector (constant 2000 US$)
## 11116                                                                                                                                                                                                                                                       GDFI - private sector (constant LCU)
## 11117                                                                                                                                                                                                                                   Gross fixed capital formation, private sector (% of GDP)
## 11118                                                                                                                                                                                                                                                         GDFI - public sector (current US$)
## 11119                                                                                                                                                                                                                                 Gross fixed capital formation, public sector (current LCU)
## 11120                                                                                                                                                                                                                                                   GDFI - public sector (constant 2000 US$)
## 11121                                                                                                                                                                                                                                                        GDFI - public sector (constant LCU)
## 11122                                                                                                                                                                                                                                                         Gross public investment (% of GDP)
## 11123                                                                                                                                                                                                                                                Gross fixed capital formation (current US$)
## 11124                                                                                                                                                                                                                                                Gross fixed capital formation (current LCU)
## 11125                                                                                                                                                                                                                          GDP expenditure on gross fixed capital formation (in IDR Million)
## 11126                                                                                                                                                                                                                                          Gross fixed capital formation (constant 2015 US$)
## 11127                                                                                                                                                                                                                                        Gross domestic fixed investment (constant 1987 US$)
## 11128                                                                                                                                                                                                                                            Gross fixed capital formation (annual % growth)
## 11129                                                                                                                                                                                                                                               Gross fixed capital formation (constant LCU)
## 11130                                                                                                                                                                                                                                        Gross domestic fixed investment (constant 1987 LCU)
## 11131                                                                                                                                                                                                                                          Gross domestic fixed investment (annual % growth)
## 11132                                                                                                                                                                                                 GDP expenditure on gross fixed capital formation (in IDR Million), SNA 2008, Current Price
## 11133                                                                                                                                                                                                                                                   Gross fixed capital formation (% of GDP)
## 11134                                                                                                                                                                                                                                                GDP expenditure on imports (in IDR Million)
## 11135                                                                                                                                                                                                                       GDP expenditure on imports (in IDR Million), SNA 2008, Current Price
## 11136                                                                                                                                                                                                      GDP expenditure on inter-region net exports (in IDR Million), SNA 2008, Current Price
## 11137                                                                                                                                                                                                                                            Gross domestic investment per capita (1987 USD)
## 11138                                                                                                                                                                                                                                              Gross domestic investment per cap. (1987 US$)
## 11139                                                                                                                                                                                                                                                       Changes in inventories (current US$)
## 11140                                                                                                                                                                                                                                                       Changes in inventories (current LCU)
## 11141                                                                                                                                                                                                                                       GDP expenditure on changes in stock (in IDR Million)
## 11142                                                                                                                                                                                                                                                  Change in inventories (constant 1987 US$)
## 11143                                                                                                                                                                                                                                                      Changes in inventories (constant LCU)
## 11144                                                                                                                                                                                                                                                  Change in inventories (constant 1987 LCU)
## 11145                                                                                                                                                                                                              GDP expenditure on changes in stock (in IDR Million), SNA 2008, Current Price
## 11146                                                                                                                                                                                                                                               Change in stocks public sector (current US$)
## 11147                                                                                                                                                                                                                                               Change in stocks public sector (current LCU)
## 11148                                                                                                                                                                                                                                             Change in stocks, public sector (constant LCU)
## 11149                                                                                                                                                                                                                                             Change in stocks, private sector (current US$)
## 11150                                                                                                                                                                                                                                             Change in stocks, private sector (current LCU)
## 11151                                                                                                                                                                                                                                            Change in stocks, private sector (constant LCU)
## 11152                                                                                                                                                                                                                                                      Gross capital formation (current US$)
## 11153                                                                                                                                                                                                                                                      Gross capital formation (current LCU)
## 11154                                                                                                                                                                                                                                            Total GDP based on expenditure (in IDR Million)
## 11155                                                                                                                                                                                                                                                Gross capital formation (constant 2015 US$)
## 11156                                                                                                                                                                                                                                              Gross domestic investment (constant 1987 US$)
## 11157                                                                                                                                                                                                                                                  Gross capital formation (annual % growth)
## 11158                                                                                                                                                                                                                                                     Gross capital formation (constant LCU)
## 11159                                                                                                                                                                                                                                              Gross domestic investment (constant 1987 LCU)
## 11160                                                                                                                                                                                                                                                Gross domestic investment (annual % growth)
## 11161                                                                                                                                                                                                                   Total GDP based on expenditure (in IDR Million), SNA 2008, Current Price
## 11162                                                                                                                                                                                                                                      Gross domestic investment: contr. to growth of GDP(%)
## 11163                                                                                                                                                                                                                                                         Gross capital formation (% of GDP)
## 11164                                                                                                                                                                                                                                                Imports of goods and services (current US$)
## 11165                                                                                                                                                                                                                                                Imports of goods and services (current LCU)
## 11166                                                                                                                                                                                                                                          Imports of goods and services (constant 2015 US$)
## 11167                                                                                                                                                                                                                                          Imports of goods and services (constant 1987 US$)
## 11168                                                                                                                                                                                                                                            Imports of goods and services (annual % growth)
## 11169                                                                                                                                                                                                                                               Imports of goods and services (constant LCU)
## 11170                                                                                                                                                                                                                                          Imports of goods and services (constant 1987 LCU)
## 11171                                                                                                                                                                                                                                            Imports of goods and services (annual % growth)
## 11172                                                                                                                                                                                                                                           Import price index (goods and services 2000=100)
## 11173                                                                                                                                                                                                                                                   Imports of goods and services (% of GDP)
## 11174                                                                                                                                                                                                                                                         Merchandise trade to GDP ratio (%)
## 11175                                                                                                                                                                                                                                       External balance on goods and services (current US$)
## 11176                                                                                                                                                                                                                                       External balance on goods and services (current LCU)
## 11177                                                                                                                                                                                                                                                       Resource balance (constant 1987 US$)
## 11178                                                                                                                                                                                                                                      External balance on goods and services (constant LCU)
## 11179                                                                                                                                                                                                                                                       Resource balance (constant 1987 LCU)
## 11180                                                                                                                                                                                                                                        Resource balance: contribution to growth of GDP (%)
## 11181                                                                                                                                                                                                                                          External balance on goods and services (% of GDP)
## 11182                                                                                                                                                                                                                                                    Resource Balance (local) (Const. Price)
## 11183                                                                                                                                                                                                                                                  Trade of goods and services (current US$)
## 11184                                                                                                                                                                                                                                                                           Trade (% of GDP)
## 11185                                                                                                                                                                                                                                                            Terms of trade index (2000=100)
## 11186                                                                                                                                                                                                                                            Terms of trade (goods and services, 2000 = 100)
## 11187                                                                                                                                                                                                                                                             Nominal Effecive Exchange Rate
## 11188                                                                                                                                                                                                                                            Agriculture, value added (local)  (Curr. Price)
## 11189                                                                                                                                                                                                                                                          Agricultural Value Added Deflator
## 11190                                                                                                                                                                                                                                            Agriculture, value added (local) (Const. Price)
## 11191                                                                                                                                                                                                                                             Agriculture: contribution to growth of GDP (%)
## 11192                                                                                                                                                                                                                                                         CP Value Added in Industry (Local)
## 11193                                                                                                                                                                                                                                                            Industrial Value Added Deflator
## 11194                                                                                                                                                                                                                                               Industry, value added (local) (Const. Price)
## 11195                                                                                                                                                                                                                                                Industry: contribution to growth of GDP (%)
## 11196                                                                                                                                                                                                                                                    CP Value Added in Manufacturing (Local)
## 11197                                                                                                                                                                                                                                                                Manuf. Value Added Deflator
## 11198                                                                                                                                                                                                                                                    KP Value Added in Manufacturing (Local)
## 11199                                                                                                                                                                                                                                                   CP Value Added in Services, etc. (Local)
## 11200                                                                                                                                                                                                                                                   KP Value Added in Services, etc. (Local)
## 11201                                                                                                                                                                                                                                                Services: contribution to growth of GDP (%)
## 11202                                                                                                                                                                                                          Total Natural Resources Revenue Sharing from Forestry (in IDR, realization value)
## 11203                                                                                                                                                                                                           Total Natural Resources Revenue Sharing from Fishery (in IDR, realization value)
## 11204                                                                                                                                                                                                               Total Natural Resources Revenue Sharing from Gas (in IDR, realization value)
## 11205                                                                                                                                                                                                Total Natural Resources Revenue Sharing from Geothermal  Energy (in IDR, realization value)
## 11206                                                                                                                                                                                                            Total Natural Resources Revenue Sharing from Mining (in IDR, realization value)
## 11207                                                                                                                                                                                                               Total Natural Resources Revenue Sharing from Oil (in IDR, realization value)
## 11208                                                                                                                                                                                                             Agriculture, forestry, and fishing, value added per worker (constant 2015 US$)
## 11209                                                                                                                                                                                                                                           Real agricultural GDP per capita growth rate (%)
## 11210                                                                                                                                                                                                                              Agriculture, forestry, and fishing, value added (current US$)
## 11211                                                                                                                                                                                                                              Agriculture, forestry, and fishing, value added (current LCU)
## 11212                                                                                                                                                                                                                        Agriculture, forestry, and fishing, value added (constant 2015 US$)
## 11213                                                                                                                                                                                                                                               Agriculture, value added (constant 1987 US$)
## 11214                                                                                                                                                                                                                          Agriculture, forestry, and fishing, value added (annual % growth)
## 11215                                                                                                                                                                                                                             Agriculture, forestry, and fishing, value added (constant LCU)
## 11216                                                                                                                                                                                                                                               Agriculture, value added (constant 1987 LCU)
## 11217                                                                                                                                                                                                                                                 Agriculture, value added (annual % growth)
## 11218                                                                                                                                                                                                                                             Agriculture, val. added defl. (1987=100,Index)
## 11219                                                                                                                                                                                                                                                     Real agricultural GDP growth rates (%)
## 11220                                                                                                                                                                                                                                 Agriculture, forestry, and fishing, value added (% of GDP)
## 11221                                                                                                                                                                                                                  Financial intermediary services indirectly Measured (FISIM) (current LCU)
## 11222                                                                                                                                                                                                                 Financial intermediary services indirectly Measured (FISIM) (constant LCU)
## 11223                                                                                                                                                                                                                                                    Construction, value added (current US$)
## 11224                                                                                                                                                                                                                                                    Construction, value added (current LCU)
## 11225                                                                                                                                                                                                                                                   Construction, value added (constant LCU)
## 11226                                                                                                                                                                                                              Industry (including construction), value added per worker (constant 2015 US$)
## 11227                                                                                                                                                                                                                               Electricity, gas and water supply, value added (current US$)
## 11228                                                                                                                                                                                                                               Electricity, gas and water supply, value added (current LCU)
## 11229                                                                                                                                                                                                                              Electricity, gas and water supply, value added (constant LCU)
## 11230                                                                                                                                                                                                                                                   Manufacturing, value added (current US$)
## 11231                                                                                                                                                                                                                                                   Manufacturing, value added (current LCU)
## 11232                                                                                                                                                                                                                                             Manufacturing, value added (constant 2015 US$)
## 11233                                                                                                                                                                                                                                             Manufacturing, value added (constant 1987 US$)
## 11234                                                                                                                                                                                                                                               Manufacturing, value added (annual % growth)
## 11235                                                                                                                                                                                                                                                  Manufacturing, value added (constant LCU)
## 11236                                                                                                                                                                                                                                             Manufacturing, value added (constant 1987 LCU)
## 11237                                                                                                                                                                                                                                               Manufacturing, value added (annual % growth)
## 11238                                                                                                                                                                                                                                                 Value added, manufacturing growth rate (%)
## 11239                                                                                                                                                                                                                                            Manufacturing, val. added defl.(1987=100,Index)
## 11240                                                                                                                                                                                                                                                      Manufacturing, value added (% of GDP)
## 11241                                                                                                                                                                                                                                            Mining and quarrying, value added (current US$)
## 11242                                                                                                                                                                                                                                            Mining and quarrying, value added (current LCU)
## 11243                                                                                                                                                                                                                                      Value added, mining and quarrying (constant 2000 US$)
## 11244                                                                                                                                                                                                                                           Mining and quarrying, value added (constant LCU)
## 11245                                                                                                                                                                                                                               Industry (including construction), value added (current US$)
## 11246                                                                                                                                                                                                                               Industry (including construction), value added (current LCU)
## 11247                                                                                                                                                                                                                         Industry (including construction), value added (constant 2015 US$)
## 11248                                                                                                                                                                                                                                                  Industry, value added (constant 1987 US$)
## 11249                                                                                                                                                                                                                           Industry (including construction), value added (annual % growth)
## 11250                                                                                                                                                                                                                              Industry (including construction), value added (constant LCU)
## 11251                                                                                                                                                                                                                                                  Industry, value added (constant 1987 LCU)
## 11252                                                                                                                                                                                                                                                    Industry, value added (annual % growth)
## 11253                                                                                                                                                                                                                                                Industry, val. added defl. (1987=100,Index)
## 11254                                                                                                                                                                                                                                                Industry: contribution to growth of GDP (%)
## 11255                                                                                                                                                                                                                                  Industry (including construction), value added (% of GDP)
## 11256                                                                                                                                                                                                                                              Chemicals (% of value added in manufacturing)
## 11257                                                                                                                                                                                                                                              Chemicals (% of value added in manufacturing)
## 11258                                                                                                                                                                                                                                     Food, beverages, and tobacco (% of value added in mfg)
## 11259                                                                                                                                                                                                                            Food, beverages and tobacco (% of value added in manufacturing)
## 11260                                                                                                                                                                                                                                Machinery and transport equipment (% of value added in mfg)
## 11261                                                                                                                                                                                                                      Machinery and transport equipment (% of value added in manufacturing)
## 11262                                                                                                                                                                                                                                              Other manufacturing (% of value added in mfg)
## 11263                                                                                                                                                                                                                                    Other manufacturing (% of value added in manufacturing)
## 11264                                                                                                                                                                                                               Medium and high-tech manufacturing value added (% manufacturing value added)
## 11265                                                                                                                                                                                                                                            Textiles and clothing (% of value added in mfg)
## 11266                                                                                                                                                                                                                                  Textiles and clothing (% of value added in manufacturing)
## 11267                                                                                                                                                                                                                               Public administration and defence, value added (current US$)
## 11268                                                                                                                                                                                                                               Public administration and defence, value added (current LCU)
## 11269                                                                                                                                                                                                                              Public administration and defence, value added (constant LCU)
## 11270                                                                                                                                                                                                                    Financial and insurance activities (banking), value added (current US$)
## 11271                                                                                                                                                                                                                    Financial and insurance activities (banking), value added (current LCU)
## 11272                                                                                                                                                                                                                   Financial and insurance activities (banking), value added (constant LCU)
## 11273                                                                                                                                                                                                                                              Discrepancy in GDP, value added (current US$)
## 11274                                                                                                                                                                                                                                              Discrepancy in GDP, value added (current LCU)
## 11275                                                                                                                                                                                                                                             Discrepancy in GDP, value added (constant LCU)
## 11276                                                                                                                                                                                                                                          Ownership of dwellings, value added (current US$)
## 11277                                                                                                                                                                                                                                          Ownership of dwellings, value added (current LCU)
## 11278                                                                                                                                                                                                                                         Ownership of dwellings, value added (constant LCU)
## 11279                                                                                                                                                                                                                                       Services, value added per worker (constant 2015 US$)
## 11280                                                                                                                                                                                                                                                  Other services, value added (current US$)
## 11281                                                                                                                                                                                                                                                  Other services, value added (current LCU)
## 11282                                                                                                                                                                                                                                                 Other services, value added (constant LCU)
## 11283                                                                                                                                                                                                                                                  Services, etc., value added (current US$)
## 11284                                                                                                                                                                                                                                                  Services, etc., value added (current LCU)
## 11285                                                                                                                                                                                                                                            Services, etc., value added (constant 2010 US$)
## 11286                                                                                                                                                                                                                                            Services, etc., value added (constant 1987 US$)
## 11287                                                                                                                                                                                                                                              Services, etc., value added (annual % growth)
## 11288                                                                                                                                                                                                                                                 Services, etc., value added (constant LCU)
## 11289                                                                                                                                                                                                                                            Services, etc., value added (constant 1987 LCU)
## 11290                                                                                                                                                                                                                                              Services, etc., value added (annual % growth)
## 11291                                                                                                                                                                                                                                              Value added, services and etc growth rate (%)
## 11292                                                                                                                                                                                                                                                Services: contribution to growth of GDP (%)
## 11293                                                                                                                                                                                                                                                     Services, etc., value added (% of GDP)
## 11294                                                                                                                                                                                                                                                        Services, value added (current US$)
## 11295                                                                                                                                                                                                                                                        Services, value added (current LCU)
## 11296                                                                                                                                                                                                                                                  Services, value added (constant 2015 US$)
## 11297                                                                                                                                                                                                                                                    Services, value added (annual % growth)
## 11298                                                                                                                                                                                                                                                       Services, value added (constant LCU)
## 11299                                                                                                                                                                                                                                                           Services, value added (% of GDP)
## 11300                                                                                                                                                                                                                                      Wholesale and retail trade, value added (current US$)
## 11301                                                                                                                                                                                                                                      Wholesale and retail trade, value added (current LCU)
## 11302                                                                                                                                                                                                                                     Wholesale and retail trade, value added (constant LCU)
## 11303                                                                                                                                                                                                                       Transportation, storage and communication, value added (current US$)
## 11304                                                                                                                                                                                                                       Transportation, storage and communication, value added (current LCU)
## 11305                                                                                                                                                                                                                      Transportation, storage and communication, value added (constant LCU)
## 11306                                                                                                                                                                                                                                       Human capital per capita, female (constant 2018 US$)
## 11307                                                                                                                                                                                                                                                  Human capital, female (constant 2018 US$)
## 11308                                                                                                                                                                                                                              Human capital per capita, employed female (constant 2018 US$)
## 11309                                                                                                                                                                                                                                         Human capital, employed female (constant 2018 US$)
## 11310                                                                                                                                                                                                                         Human capital per capita, self-employed female (constant 2018 US$)
## 11311                                                                                                                                                                                                                                    Human capital, self-employed female (constant 2018 US$)
## 11312                                                                                                                                                                                                                                         Human capital per capita, male (constant 2018 US$)
## 11313                                                                                                                                                                                                                                                    Human capital, male (constant 2018 US$)
## 11314                                                                                                                                                                                                                                Human capital per capita, employed male (constant 2018 US$)
## 11315                                                                                                                                                                                                                                           Human capital, employed male (constant 2018 US$)
## 11316                                                                                                                                                                                                                           Human capital per capita, self-employed male (constant 2018 US$)
## 11317                                                                                                                                                                                                                                      Human capital, self-employed male (constant 2018 US$)
## 11318                                                                                                                                                                                                                                               Human capital per capita (constant 2018 US$)
## 11319                                                                                                                                                                                                                                                          Human capital (constant 2018 US$)
## 11320                                                                                                                                                                                                                          Natural capital per capita, agricultural land (constant 2018 US$)
## 11321                                                                                                                                                                                                                                     Natural capital, agricultural land (constant 2018 US$)
## 11322                                                                                                                                                                                                                Natural capital per capita, agricultural land: cropland (constant 2018 US$)
## 11323                                                                                                                                                                                                                           Natural capital, agricultural land: cropland (constant 2018 US$)
## 11324                                                                                                                                                                                                                Natural capital per capita, forests: ecosystem services (constant 2018 US$)
## 11325                                                                                                                                                                                                                           Natural capital, forests: ecosystem services (constant 2018 US$)
## 11326                                                                                                                                                                                                                                  Natural capital per capita, fisheries (constant 2018 US$)
## 11327                                                                                                                                                                                                                                             Natural capital, fisheries (constant 2018 US$)
## 11328                                                                                                                                                                                                                               Natural capital per capita, fossil fuels (constant 2018 US$)
## 11329                                                                                                                                                                                                                                          Natural capital, fossil fuels (constant 2018 US$)
## 11330                                                                                                                                                                                                                            Natural capital per capita, forests: timber (constant 2018 US$)
## 11331                                                                                                                                                                                                                                       Natural capital, forests: timber (constant 2018 US$)
## 11332                                                                                                                                                                                                                                  Natural capital per capita, mangroves (constant 2018 US$)
## 11333                                                                                                                                                                                                                                             Natural capital, mangroves (constant 2018 US$)
## 11334                                                                                                                                                                                                              Natural capital per capita, nonrenewable assets: minerals (constant 2018 US$)
## 11335                                                                                                                                                                                                                         Natural capital, nonrenewable assets: minerals (constant 2018 US$)
## 11336                                                                                                                                                                                                             Natural capital per capita, agricultural land: pastureland (constant 2018 US$)
## 11337                                                                                                                                                                                                                        Natural capital, agricultural land: pastureland (constant 2018 US$)
## 11338                                                                                                                                                                                                                                             Natural capital per capita (constant 2018 US$)
## 11339                                                                                                                                                                                                                            Natural capital per capita, protected areas (constant 2018 US$)
## 11340                                                                                                                                                                                                                                       Natural capital, protected areas (constant 2018 US$)
## 11341                                                                                                                                                                                                                                  Natural capital per capita, renewable (constant 2018 US$)
## 11342                                                                                                                                                                                                                                             Natural capital, renewable (constant 2018 US$)
## 11343                                                                                                                                                                                                                  Natural capital per capita, nonrenewable assets: coal (constant 2018 US$)
## 11344                                                                                                                                                                                                                             Natural capital, nonrenewable assets: coal (constant 2018 US$)
## 11345                                                                                                                                                                                                                   Natural capital per capita, nonrenewable assets: gas (constant 2018 US$)
## 11346                                                                                                                                                                                                                              Natural capital, nonrenewable assets: gas (constant 2018 US$)
## 11347                                                                                                                                                                                                                   Natural capital per capita, nonrenewable assets: oil (constant 2018 US$)
## 11348                                                                                                                                                                                                                              Natural capital, nonrenewable assets: oil (constant 2018 US$)
## 11349                                                                                                                                                                                                                        Natural capital per capita, nonrenewable assets (constant 2018 US$)
## 11350                                                                                                                                                                                                                                   Natural capital, nonrenewable assets (constant 2018 US$)
## 11351                                                                                                                                                                                                                                                        Natural capital (constant 2018 US$)
## 11352                                                                                                                                                                                                                                          Net foreign assets per capita (constant 2018 US$)
## 11353                                                                                                                                                                                                                                                     Net foreign assets (constant 2018 US$)
## 11354                                                                                                                                                                                                                                            Produced capital per capita (constant 2018 US$)
## 11355                                                                                                                                                                                                                                                       Produced capital (constant 2018 US$)
## 11356                                                                                                                                                                                                                                                Total wealth per capita (constant 2018 US$)
## 11357                                                                                                                                                                                                                                                           Total wealth (constant 2018 US$)
## 11358                                                                                                                                                                                                                                      Adjusted savings: education expenditure (current US$)
## 11359                                                                                                                                                                                                                                         Adjusted savings: education expenditure (% of GNI)
## 11360                                                                                                                                                                                                                                      Adjusted savings: carbon dioxide damage (current US$)
## 11361                                                                                                                                                                                                                                         Adjusted savings: carbon dioxide damage (% of GNI)
## 11362                                                                                                                                                                                                                                       Adjusted savings: net forest depletion (current US$)
## 11363                                                                                                                                                                                                                                          Adjusted savings: net forest depletion (% of GNI)
## 11364                                                                                                                                                                                                                               Adjusted savings: consumption of fixed capital (current US$)
## 11365                                                                                                                                                                                                                                  Adjusted savings: consumption of fixed capital (% of GNI)
## 11366                                                                                                                                                                                                                                          Adjusted savings: mineral depletion (current US$)
## 11367                                                                                                                                                                                                                                             Adjusted savings: mineral depletion (% of GNI)
## 11368                                                                                                                                                                                                                                           Adjusted savings: energy depletion (current US$)
## 11369                                                                                                                                                                                                                                              Adjusted savings: energy depletion (% of GNI)
## 11370                                                                                                                                                                                                                                Adjusted savings: particulate emission damage (current US$)
## 11371                                                                                                                                                                                                                                   Adjusted savings: particulate emission damage (% of GNI)
## 11372                                                                                                                                                                                                                                   Adjusted savings: natural resources depletion (% of GNI)
## 11373                                                                                                                                                                                                                                              Adjusted savings: gross savings (current US$)
## 11374                                                                                                                                                                                                                                                 Adjusted savings: gross savings (% of GNI)
## 11375                                                                                                                                                                                                                                       Adjusted savings: net national savings (current US$)
## 11376                                                                                                                                                                                                                                          Adjusted savings: net national savings (% of GNI)
## 11377                                                                                                                                                                                                                                                 Adjusted net national income (current US$)
## 11378                                                                                                                                                                                                                                           Adjusted net national income (constant 2015 US$)
## 11379                                                                                                                                                                                                                                             Adjusted net national income (annual % growth)
## 11380                                                                                                                                                                                                                                      Adjusted net national income per capita (current US$)
## 11381                                                                                                                                                                                                                                Adjusted net national income per capita (constant 2015 US$)
## 11382                                                                                                                                                                                                                                  Adjusted net national income per capita (annual % growth)
## 11383                                                                                                                                                                                                                  Adjusted net savings, including particulate emission damage (current US$)
## 11384                                                                                                                                                                                                                     Adjusted net savings, including particulate emission damage (% of GNI)
## 11385                                                                                                                                                                                                                                              Adjusted net savings per capita (current US$)
## 11386                                                                                                                                                                                                                  Adjusted net savings, excluding particulate emission damage (current US$)
## 11387                                                                                                                                                                                                                     Adjusted net savings, excluding particulate emission damage (% of GNI)
## 11388                                                                                                                                                                                                                                                   Agricultural support estimate (% of GDP)
## 11389                                                                                                                                                                                                                                        Exports as a capacity to import (constant 1987 US$)
## 11390                                                                                                                                                                                                                                             Exports as a capacity to import (constant LCU)
## 11391                                                                                                                                                                                                                                        Exports as a capacity to import (constant 1987 LCU)
## 11392                                                                                                                                                                                                                                                                      Coal rents (% of GDP)
## 11393                                                                                                                                                                                                                                                         Inflation, GDP deflator (annual %)
## 11394                                                                                                                                                                                                                                                         Inflation, GDP deflator (annual %)
## 11395                                                                                                                                                                                                                                          Inflation, GDP deflator: linked series (annual %)
## 11396                                                                                                                                                                                                                                                 GDP deflator (base year varies by country)
## 11397                                                                                                                                                                                                                                                                  GDP deflator (1987 = 100)
## 11398                                                                                                                                                                                                                                  GDP deflator: linked series (base year varies by country)
## 11399                                                                                                                                                                                                                                   Discrepancy in expenditure estimate of GDP (current US$)
## 11400                                                                                                                                                                                                                                   Discrepancy in expenditure estimate of GDP (current LCU)
## 11401                                                                                                                                                                                                                                  Discrepancy in expenditure estimate of GDP (constant LCU)
## 11402                                                                                                                                                                                                                                      Gross value added at basic prices (GVA) (current US$)
## 11403                                                                                                                                                                                                                                      Gross value added at basic prices (GVA) (current LCU)
## 11404                                                                                                                                                                                                                                Gross value added at basic prices (GVA) (constant 2015 US$)
## 11405                                                                                                                                                                                                                                                     GDP at factor cost (constant 1987 US$)
## 11406                                                                                                                                                                                                                                     Gross value added at basic prices (GVA) (constant LCU)
## 11407                                                                                                                                                                                                                                                     GDP at factor cost (constant 1987 LCU)
## 11408                                                                                                                                                                                                                                                                    Forest rents (% of GDP)
## 11409                                                                                                                                                                                                                                                                   Mineral rents (% of GDP)
## 11410                                                                                                                                                                                                                                                                          GDP (current US$)
## 11411                                                                                                                                                                                                                                                 GDP deflator, index (2000=100; US$ series)
## 11412                                                                                                                                                                                                                                                                          GDP (current LCU)
## 11413                                                                                                                                                                                                                                                           GDP: linked series (current LCU)
## 11414                                                                                                                                                                                                                                          GDP deflator, period average (LCU index 2000=100)
## 11415                                                                                                                                                                                                                                                                               GDP Deflator
## 11416                                                                                                                                                                                                                                                                    GDP (constant 2015 US$)
## 11417                                                                                                                                                                                                                                                   GDP at market prices (constant 1987 US$)
## 11418                                                                                                                                                                                                                                                                      GDP growth (annual %)
## 11419                                                                                                                                                                                                                                                                         GDP (constant LCU)
## 11420                                                                                                                                                                                                                                                   GDP at market prices (constant 1987 LCU)
## 11421                                                                                                                                                                                                                                                                      GDP growth (annual %)
## 11422                                                                                                                                                                                                                                                         GDP, PPP (current international $)
## 11423                                                                                                                                                                                                                                                   GDP, PPP (constant 2017 international $)
## 11424                                                                                                                                                                                                                                                   GDP, PPP (constant 1987 international $)
## 11425                                                                                                                                                                                                                                                              GDP deflator (1987=100,Index)
## 11426                                                                                                                                                                                                                                     GDP deflator, end period (base year varies by country)
## 11427                                                                                                                                                                                                                                              Gross domestic product (Av. annual growth, %)
## 11428                                                                                                                                                                                                                                                               Natural gas rents (% of GDP)
## 11429                                                                                                                                                                                                                                                               GDP per capita (current US$)
## 11430                                                                                                                                                                                                                                                               GDP per capita (current LCU)
## 11431                                                                                                                                                                                                                                                         GDP per capita (constant 2015 US$)
## 11432                                                                                                                                                                                                                                                           GDP per capita growth (annual %)
## 11433                                                                                                                                                                                                                                                              GDP per capita (constant LCU)
## 11434                                                                                                                                                                                                                                              GDP per capita, PPP (current international $)
## 11435                                                                                                                                                                                                                                        GDP per capita, PPP (constant 2017 international $)
## 11436                                                                                                                                                                                                                                        GDP per capita, PPP (constant 1987 international $)
## 11437                                                                                                                                                                                                                                                      GDP per capita, PPP annual growth (%)
## 11438                                                                                                                                                                                                                                                                       Oil rents (% of GDP)
## 11439                                                                                                                                                                                                                                                   Total natural resources rents (% of GDP)
## 11440                                                                                                                                                                                                                                              Gross domestic savings, private (current US$)
## 11441                                                                                                                                                                                                                                              Gross domestic savings, private (current LCU)
## 11442                                                                                                                                                                                                                                             Gross domestic savings, private (constant LCU)
## 11443                                                                                                                                                                                                                                               Gross domestic savings, public (current US$)
## 11444                                                                                                                                                                                                                                               Gross domestic savings, public (current LCU)
## 11445                                                                                                                                                                                                                                              Gross domestic savings, public (constant LCU)
## 11446                                                                                                                                                                                                                                                       Gross domestic savings (current US$)
## 11447                                                                                                                                                                                                                                                       Gross domestic savings (current LCU)
## 11448                                                                                                                                                                                                                                          Gross domestic savings, total (constant 2000 US$)
## 11449                                                                                                                                                                                                                                                 Gross domestic savings (constant 1987 US$)
## 11450                                                                                                                                                                                                                                                      Gross domestic savings (constant LCU)
## 11451                                                                                                                                                                                                                                                 Gross domestic savings (constant 1987 LCU)
## 11452                                                                                                                                                                                                                                                          Gross domestic savings (% of GDP)
## 11453                                                                                                                                                                                                                                                  Gross domestic income (constant 2005 US$)
## 11454                                                                                                                                                                                                                                                  Gross domestic income (constant 1987 US$)
## 11455                                                                                                                                                                                                                                                       Gross domestic income (constant LCU)
## 11456                                                                                                                                                                                                                                                  Gross domestic income (constant 1987 LCU)
## 11457                                                                                                                                                                                                                                          Genuine savings: education expenditure (% of GDP)
## 11458                                                                                                                                                                                                                                          Genuine savings: carbon dioxide damage (% of GDP)
## 11459                                                                                                                                                                                                                                           Genuine savings: net forest depletion (% of GDP)
## 11460                                                                                                                                                                                                                                   Genuine savings: consumption of fixed capital (% of GDP)
## 11461                                                                                                                                                                                                                                              Genuine savings: mineral depletion (% of GDP)
## 11462                                                                                                                                                                                                                                               Genuine savings: energy depletion (% of GDP)
## 11463                                                                                                                                                                                                                                           Genuine savings: net domestic savings (% of GDP)
## 11464                                                                                                                                                                                                                                                        Genuine domestic savings (% of GDP)
## 11465                                                                                                                                                                                                                                                            GNI, Atlas method (current US$)
## 11466                                                                                                                                                                                                                                                                          GNI (current US$)
## 11467                                                                                                                                                                                                                                                                          GNI (current LCU)
## 11468                                                                                                                                                                                                                                                           GNI: linked series (current LCU)
## 11469                                                                                                                                                                                                                                                                    GNI (constant 2015 US$)
## 11470                                                                                                                                                                                                                                                   GNP at market prices (constant 1987 US$)
## 11471                                                                                                                                                                                                                                                                      GNI growth (annual %)
## 11472                                                                                                                                                                                                                                                                         GNI (constant LCU)
## 11473                                                                                                                                                                                                                                                   GNP at market prices (constant 1987 LCU)
## 11474                                                                                                                                                                                                                                                                      GNP growth (annual %)
## 11475                                                                                                                                                                                                                                                                       GNI per capita (US$)
## 11476                                                                                                                                                                                                                                                         GNI, PPP (current international $)
## 11477                                                                                                                                                                                                                                                   GNI, PPP (constant 2017 international $)
## 11478                                                                                                                                                                                                                                                   GNP, PPP (constant 1987 international $)
## 11479                                                                                                                                                                                                                                                 GNI per capita, Atlas method (current US$)
## 11480                                                                                                                                                                                                                                              GNP per capita (Atlas method) (US$,curr. pr.)
## 11481                                                                                                                                                                                                                                                               GNI per capita (current LCU)
## 11482                                                                                                                                                                                                                                                         GNI per capita (constant 2015 US$)
## 11483                                                                                                                                                                                                                                                         GNP per capita (constant 1987 US$)
## 11484                                                                                                                                                                                                                                                           GNI per capita growth (annual %)
## 11485                                                                                                                                                                                                                                                              GNI per capita (constant LCU)
## 11486                                                                                                                                                                                                                                                         GNP per capita (constant 1987 LCU)
## 11487                                                                                                                                                                                                                                              GNI per capita, PPP (current international $)
## 11488                                                                                                                                                                                                                                        GNI per capita, PPP (constant 2017 international $)
## 11489                                                                                                                                                                                                                                        GNP per capita, PPP (constant 1987 international $)
## 11490                                                                                                                                                                                                                                                           GNP per capita growth (annual %)
## 11491                                                                                                                                                                                                                                       Gross national product per capita (USD, Atlas meth.)
## 11492                                                                                                                                                                                                                                                                Gross savings (current US$)
## 11493                                                                                                                                                                                                                                                                Gross savings (current LCU)
## 11494                                                                                                                                                                                                                                                                   Gross savings (% of GNI)
## 11495                                                                                                                                                                                                                Gross national savings, including net current transfers (constant 2000 US$)
## 11496                                                                                                                                                                                                                     Gross national savings, including net current transfers (constant LCU)
## 11497                                                                                                                                                                                                                                                                   Gross savings (% of GDP)
## 11498                                                                                                                                                                                                                                              Gross national savings, private (current US$)
## 11499                                                                                                                                                                                                                                              Gross national savings, private (current LCU)
## 11500                                                                                                                                                                                                                                             Gross national savings, private (constant LCU)
## 11501                                                                                                                                                                                                                                               Gross national savings, public (current US$)
## 11502                                                                                                                                                                                                                                               Gross national savings, public (current LCU)
## 11503                                                                                                                                                                                                                                              Gross national savings, public (constant LCU)
## 11504                                                                                                                                                                                                                                                          CP Gross National Savings (Local)
## 11505                                                                                                                                                                                                                                                Gross national income per capita (1987 USD)
## 11506                                                                                                                                                                                                                                                Gross national income per capita (1987 US$)
## 11507                                                                                                                                                                                                                                             Gross national disposable income (current LCU)
## 11508                                                                                                                                                                                                                                                  Gross national income (constant 2000 US$)
## 11509                                                                                                                                                                                                                                                  Gross national income (constant 1987 US$)
## 11510                                                                                                                                                                                                                                                       Gross national income (constant LCU)
## 11511                                                                                                                                                                                                                                                  Gross national income (constant 1987 LCU)
## 11512                                                                                                                                                                                                                                               Gross national income (Av. annual growth, %)
## 11513                                                                                                                                                                                                                                  Net primary income (Net income from abroad) (current US$)
## 11514                                                                                                                                                                                                                                  Net primary income (Net income from abroad) (current LCU)
## 11515                                                                                                                                                                                                                                                 Net income from abroad (constant 1987 US$)
## 11516                                                                                                                                                                                                                                 Net primary income (Net income from abroad) (constant LCU)
## 11517                                                                                                                                                                                                                                                 Net income from abroad (constant 1987 LCU)
## 11518                                                                                                                                                                                                                                               CP Net Factor Income (+) or Payments (Local)
## 11519                                                                                                                                                                                                                                                               Indirect taxes (current US$)
## 11520                                                                                                                                                                                                                                                               Indirect taxes (current LCU)
## 11521                                                                                                                                                                                                                                             Taxes less subsidies on products (current US$)
## 11522                                                                                                                                                                                                                                             Taxes less subsidies on products (current LCU)
## 11523                                                                                                                                                                                                                                                     Net indirect taxes (constant 1987 US$)
## 11524                                                                                                                                                                                                                                            Taxes less subsidies on products (constant LCU)
## 11525                                                                                                                                                                                                                                                     Net indirect taxes (constant 1987 LCU)
## 11526                                                                                                                                                                                                                                                                    Subsidies (current US$)
## 11527                                                                                                                                                                                                                                                          Subsidies (current LCU; from SNA)
## 11528                                                                                                                                                                                                                     Net secondary income (Net current transfers from abroad) (current US$)
## 11529                                                                                                                                                                                                                     Net secondary income (Net current transfers from abroad) (current LCU)
## 11530                                                                                                                                                                                                                    Net secondary income (Net current transfers from abroad) (constant LCU)
## 11531                                                                                                                                                                                                                                              Terms of trade adjustment (constant 1987 US$)
## 11532                                                                                                                                                                                                                                                   Terms of trade adjustment (constant LCU)
## 11533                                                                                                                                                                                                                                              Terms of trade adjustment (constant 1987 LCU)
## 11534                                                                                                                                                                                                                                           Terms of Trade Adjustment (local) (Const. Price)
## 11535                                                                                                                                                                                                   Annual percentage growth rate of GDP at market prices based on constant 2010 US Dollars.
## 11536                                                                                                                                                                                                                                                       GDP,current US$,millions,seas. adj.,
## 11537                                                                                                                                                                                                                                                       GDP,current LCU,millions,seas. adj.,
## 11538                                                                                                                                                                                                                                                 GDP,constant 2010 US$,millions,seas. adj.,
## 11539                                                                                                                                                                                                                                                 GDP,constant 2010 LCU,millions,seas. adj.,
## 11540                                                                                                                                                                                              Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Starting salary
## 11541                                                                                                                                                                                       Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 10 years of experience
## 11542                                                                                                                                                                                       Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 15 years of experience
## 11543                                                                                                                                                                                                 Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Top of scale
## 11544                                                                                                                                                                                                  Annual statutory teacher salaries in public institutions in USD. Primary. Starting salary
## 11545                                                                                                                                                                                           Annual statutory teacher salaries in public institutions in USD. Primary. 10 years of experience
## 11546                                                                                                                                                                                           Annual statutory teacher salaries in public institutions in USD. Primary. 15 years of experience
## 11547                                                                                                                                                                                                     Annual statutory teacher salaries in public institutions in USD. Primary. Top of scale
## 11548                                                                                                                                                                                          Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Starting salary
## 11549                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 10 years of experience
## 11550                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 15 years of experience
## 11551                                                                                                                                                                                             Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Top of scale
## 11552                                                                                                                                                                                          Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Starting salary
## 11553                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 10 years of experience
## 11554                                                                                                                                                                                   Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 15 years of experience
## 11555                                                                                                                                                                                             Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Top of scale
## 11556                                                                                                                                                                                                                                                                 Other taxes (% of profits)
## 11557                                                                                                                                                                                                                      Share of female unskilled worker out of all workers in this sector, %
## 11558                                                                                                                                                                                                                        Share of female skilled worker out of all workers in this sector, %
## 11559                                                                                                                                                                                                                        Share of male unskilled worker out of all workers in this sector, %
## 11560                                                                                                                                                                                                                          Share of male skilled worker out of all workers in this sector, %
## 11561                                                                                                                                                                                                                                            DEC alternative conversion factor (LCU per US$)
## 11562                                                                                                                                                                                                                                       Official exchange rate (LCU per US$, period average)
## 11563                                                                                                                                                                                                                                     Official exchange rate to parallel exchange rate ratio
## 11564                                                                                                                                                                                                                                       PPP conversion factor, GDP (LCU per international $)
## 11565                                                                                                                                                                                                                                  2005 PPP conversion factor, GDP (LCU per international $)
## 11566                                                                                                                                                                                                                   Price level ratio of PPP conversion factor (GDP) to market exchange rate
## 11567                                                                                                                                                                                                                       PPP conversion factor, private consumption (LCU per international $)
## 11568                                                                                                                                                                                                                  2005 PPP conversion factor, private consumption (LCU per international $)
## 11569                                                                                                                                                                                                                                                           Maize price (US$ per metric ton)
## 11570                                                                                                                                                                                                                                                Maize price (local currency per metric ton)
## 11571                                                                                                                                                                                                                                                           Wheat price (US$ per metric ton)
## 11572                                                                                                                                                                                                                                                Wheat price (local currency per metric ton)
## 11573                                                                                                                                                                                                                             Palm Oil Land Area by type of condition: Damaged (in Hectares)
## 11574                                                                                                                                                                                                                            Palm Oil Land Area by type of condition: Immature (in Hectares)
## 11575                                                                                                                                                                                                                              Palm Oil Land Area by type of condition: Mature (in Hectares)
## 11576                                                                                                                                                                                                                             Palm Oil Land Area by type of ownership: Private (in Hectares)
## 11577                                                                                                                                                                                                                         Palm Oil Land Area by type of ownership: Smallholder (in Hectares)
## 11578                                                                                                                                                                                                              Palm Oil Land Area by type of ownership: State Owned Enterprise (in Hectares)
## 11579                                                                                                                                                                                                                                                    Palm Oil Land Area: Total (in Hectares)
## 11580                                                                                                                                                                                                                                    Palm Production by type of ownership: Private (in Tons)
## 11581                                                                                                                                                                                                                                Palm Production by type of ownership: Smallholder (in Tons)
## 11582                                                                                                                                                                                                                     Palm Production by type of ownership: State Owned Enterprise (in Tons)
## 11583                                                                                                                                                                                                                                                           Palm Production: Total (in Tons)
## 11584                                                                                                                                                                                                                                    Palm Oil Yield by type of ownership: Private (in Kg/Ha)
## 11585                                                                                                                                                                                                                                Palm Oil Yield by type of ownership: Smallholder (in Kg/Ha)
## 11586                                                                                                                                                                                                                     Palm Oil Yield by type of ownership: State Owned Enterprise (in Kg/Ha)
## 11587                                                                                                                                                                                            Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology)
## 11588                                                                                                                                                                                    Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology) - Score
## 11589                                                                                                                                                                                             Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology)
## 11590                                                                                                                                                                                     Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology) - Score
## 11591                                                                                                                                                                                                                                                 Paying taxes (DB06-16 methodology) - Score
## 11592                                                                                                                                                                                                                                                 Paying taxes (DB17-20 methodology) - Score
## 11593                                                                                                                                                                                                                                   Paying taxes: Labor tax and contributions (% of profits)
## 11594                                                                                                                                                                                                                       Paying taxes: Postfiling index (0-100) (DB17-20 methodology) - Score
## 11595                                                                                                                                                                                                                                                    Paying taxes: Profit tax (% of profits)
## 11596                                                                                                                                                                                                                                                   Paying taxes: Payments (number per year)
## 11597                                                                                                                                                                                                                                  Paying taxes: Payments per year (number per year) - Score
## 11598                                                                                                                                                                                                                                  Rank: Paying taxes (1=most business-friendly regulations)
## 11599                                                                                                                                                                                                                                                        Paying taxes: Time (hours per year)
## 11600                                                                                                                                                                                                                                                Paying taxes: Time (hours per year) - Score
## 11601                                                                                                                                                                                                                                Paying taxes: Total tax and contribution rate (% of profit)
## 11602                                                                                                                                                                                                                        Paying taxes: Total tax and contribution rate (% of profit) - Score
## 11603                                                                                                                                                                                                                      Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology)
## 11604                                                                                                                                                                                                              Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology) - Score
## 11605                                                                                                                                                                                                                 Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology)
## 11606                                                                                                                                                                                                         Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology) - Score
## 11607                                                                                                                                                                                                                                           Official exchange rate (LCU per US$, end period)
## 11608                                                                                                                                                                                                                                                          London gold price (US$ per ounce)
## 11609                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11610                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11611                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor (preT)
## 11612                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor -rural
## 11613                                                                                                                                                                                            Adequacy of social protection and labor programs (% of total welfare of beneficiary households)
## 11614                                                                                                                                                                                                                           Adequacy of benefits (%) -All Social Protection and Labor -urban
## 11615                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11616                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11617                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11618                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11619                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11620                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -rural
## 11621                                                                                                                                                                                                                 Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor 
## 11622                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -urban
## 11623                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11624                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -rural
## 11625                                                                                                                                                                                                                 Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor 
## 11626                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -urban
## 11627                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor (preT)
## 11628                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -rural
## 11629                                                                                                                                                                                                                 Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor 
## 11630                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -urban
## 11631                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11632                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11633                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor
## 11634                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11635                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) -All Social Protection and Labor  (preT)
## 11636                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) -All Social Protection and Labor
## 11637                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor (preT)
## 11638                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor -rural
## 11639                                                                                                                                                                                                                              Average per capita transfer -All Social Protection and Labor 
## 11640                                                                                                                                                                                                                        Average per capita transfer -All Social Protection and Labor -urban
## 11641                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor (preT)
## 11642                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -rural
## 11643                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor
## 11644                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -urban
## 11645                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor (preT)
## 11646                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor -rural
## 11647                                                                                                                                                                                                         Average per capita transfer held by 2nd quintile -All Social Protection and Labor 
## 11648                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile -All Social Protection and Labor -urban
## 11649                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor (preT)
## 11650                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor -rural
## 11651                                                                                                                                                                                                         Average per capita transfer held by 3rd quintile -All Social Protection and Labor 
## 11652                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile -All Social Protection and Labor -urban
## 11653                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor (preT)
## 11654                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor -rural
## 11655                                                                                                                                                                                                         Average per capita transfer held by 4th quintile -All Social Protection and Labor 
## 11656                                                                                                                                                                                                   Average per capita transfer held by 4th quintile -All Social Protection and Labor -urban
## 11657                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor (preT)
## 11658                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -rural
## 11659                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor
## 11660                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -urban
## 11661                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11662                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11663                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11664                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11665                                                                                                                                                                                    Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits)
## 11666                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11667                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11668                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -rural
## 11669                                                                                                                                                                                                                   Benefits incidence in 2nd quintile (%) -All Social Protection and Labor 
## 11670                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -urban
## 11671                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11672                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -rural
## 11673                                                                                                                                                                                                                   Benefits incidence in 3rd quintile (%) -All Social Protection and Labor 
## 11674                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -urban
## 11675                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor (preT)
## 11676                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor -rural
## 11677                                                                                                                                                                                                                   Benefits incidence in 4th quintile (%) -All Social Protection and Labor 
## 11678                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) -All Social Protection and Labor -urban
## 11679                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11680                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11681                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor
## 11682                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11683                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11684                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11685                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11686                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11687                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11688                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11689                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11690                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -rural
## 11691                                                                                                                                                                                                                Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor 
## 11692                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -urban
## 11693                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11694                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -rural
## 11695                                                                                                                                                                                                                Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor 
## 11696                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -urban
## 11697                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor (preT)
## 11698                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -rural
## 11699                                                                                                                                                                                                                Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor 
## 11700                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -urban
## 11701                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11702                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11703                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor
## 11704                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11705                                                                                                                                                                                                    Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.9 a day) (preT)
## 11706                                                                                                                                                                                                           Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11707                                                                                                                                                                                                        Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest) (preT)
## 11708                                                                                                                                                                                                        Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest) -rural
## 11709                                                                                                                                                                                                               Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest)
## 11710                                                                                                                                                                                                       Benefit-cost ratio - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11711                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor  (preT)
## 11712                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) -All Social Protection and Labor
## 11713                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor (preT)
## 11714                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor -rural
## 11715                                                                                                                                                                                                                         Coverage of social protection and labor programs (% of population)
## 11716                                                                                                                                                                                                                                       Coverage (%) -All Social Protection and Labor -urban
## 11717                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor (preT)
## 11718                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -rural
## 11719                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor
## 11720                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -urban
## 11721                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor (preT)
## 11722                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor -rural
## 11723                                                                                                                                                                                                                             Coverage in 2nd quintile (%) -All Social Protection and Labor 
## 11724                                                                                                                                                                                                                       Coverage in 2nd quintile (%) -All Social Protection and Labor -urban
## 11725                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor (preT)
## 11726                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor -rural
## 11727                                                                                                                                                                                                                             Coverage in 3rd quintile (%) -All Social Protection and Labor 
## 11728                                                                                                                                                                                                                       Coverage in 3rd quintile (%) -All Social Protection and Labor -urban
## 11729                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor (preT)
## 11730                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor -rural
## 11731                                                                                                                                                                                                                             Coverage in 4th quintile (%) -All Social Protection and Labor 
## 11732                                                                                                                                                                                                                       Coverage in 4th quintile (%) -All Social Protection and Labor -urban
## 11733                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor (preT)
## 11734                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -rural
## 11735                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) -All Social Protection and Labor
## 11736                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -urban
## 11737                                                                                                                                                                                                               Gini inequality index reduction (%) - All Social Protection and Labor -rural
## 11738                                                                                                                                                                                                                      Gini inequality index reduction (%) - All Social Protection and Labor
## 11739                                                                                                                                                                                                               Gini inequality index reduction (%) - All Social Protection and Labor -urban
## 11740                                                                                                                                                                                              Poverty Headcount reduction (%) - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11741                                                                                                                                                                                           Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural
## 11742                                                                                                                                                                                                  Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest)
## 11743                                                                                                                                                                                          Poverty Headcount reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11744                                                                                                                                                                                                    Poverty Gap reduction (%) - All Social Protection and Labor -extreme poor (<$1.9 a day)
## 11745                                                                                                                                                                                                 Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural
## 11746                                                                                                                                                                                                        Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest)
## 11747                                                                                                                                                                                                Poverty Gap reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban
## 11748                                                                                                                                                                                                       Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11749                                                                                                                                                                                                               Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11750                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market (preT)
## 11751                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market -rural
## 11752                                                                                                                                                                                                                                             Adequacy of benefits (%) - Active Labor Market
## 11753                                                                                                                                                                                                                                      Adequacy of benefits (%) - Active Labor Market -urban
## 11754                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11755                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11756                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market
## 11757                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11758                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market (preT)
## 11759                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market -rural
## 11760                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Active Labor Market
## 11761                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Active Labor Market -urban
## 11762                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market (preT)
## 11763                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market -rural
## 11764                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Active Labor Market
## 11765                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Active Labor Market -urban
## 11766                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market (preT)
## 11767                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market -rural
## 11768                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Active Labor Market
## 11769                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Active Labor Market -urban
## 11770                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11771                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -rural
## 11772                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market
## 11773                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -urban
## 11774                                                                                                                                                                                               Average per capita transfer held by extreme poor (<$1.9 a day) - Active Labor Market  (preT)
## 11775                                                                                                                                                                                                       Average per capita transfer held by extreme poor (<$1.9 a day) - Active Labor Market
## 11776                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market (preT)
## 11777                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market -rural
## 11778                                                                                                                                                                                                                                          Average per capita transfer - Active Labor Market
## 11779                                                                                                                                                                                                                                   Average per capita transfer - Active Labor Market -urban
## 11780                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market (preT)
## 11781                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -rural
## 11782                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Active Labor Market
## 11783                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -urban
## 11784                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market (preT)
## 11785                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market -rural
## 11786                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Active Labor Market
## 11787                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Active Labor Market -urban
## 11788                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market (preT)
## 11789                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market -rural
## 11790                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Active Labor Market
## 11791                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Active Labor Market -urban
## 11792                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market (preT)
## 11793                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market -rural
## 11794                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Active Labor Market
## 11795                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Active Labor Market -urban
## 11796                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market (preT)
## 11797                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market -rural
## 11798                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Active Labor Market
## 11799                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Active Labor Market -urban
## 11800                                                                                                                                                                                                         Benefits incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11801                                                                                                                                                                                                                 Benefits incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11802                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11803                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11804                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market
## 11805                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11806                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market (preT)
## 11807                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market -rural
## 11808                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Active Labor Market
## 11809                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Active Labor Market -urban
## 11810                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market (preT)
## 11811                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market -rural
## 11812                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Active Labor Market
## 11813                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Active Labor Market -urban
## 11814                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market (preT)
## 11815                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market -rural
## 11816                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Active Labor Market
## 11817                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Active Labor Market -urban
## 11818                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11819                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -rural
## 11820                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Active Labor Market
## 11821                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -urban
## 11822                                                                                                                                                                                                      Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11823                                                                                                                                                                                                              Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11824                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11825                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11826                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market
## 11827                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11828                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market (preT)
## 11829                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market -rural
## 11830                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Active Labor Market
## 11831                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Active Labor Market -urban
## 11832                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market (preT)
## 11833                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market -rural
## 11834                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Active Labor Market
## 11835                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Active Labor Market -urban
## 11836                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market (preT)
## 11837                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market -rural
## 11838                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Active Labor Market
## 11839                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Active Labor Market -urban
## 11840                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11841                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -rural
## 11842                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market
## 11843                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -urban
## 11844                                                                                                                                                                                                              Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.9 a day) (preT)
## 11845                                                                                                                                                                                                                     Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11846                                                                                                                                                                                                                  Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest) (preT)
## 11847                                                                                                                                                                                                                  Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest) -rural
## 11848                                                                                                                                                                                                                         Benefit-cost ratio -  Active Labor Market  -1st quintile (poorest)
## 11849                                                                                                                                                                                                                 Benefit-cost ratio -  Active Labor Market  - 1st quintile (poorest) -urban
## 11850                                                                                                                                                                                                                   Coverage in extreme poor (<$1.9 a day) (%) - Active Labor Market  (preT)
## 11851                                                                                                                                                                                                                           Coverage in extreme poor (<$1.9 a day) (%) - Active Labor Market
## 11852                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market (preT)
## 11853                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market -rural
## 11854                                                                                                                                                                                                                                                         Coverage (%) - Active Labor Market
## 11855                                                                                                                                                                                                                                                  Coverage (%) - Active Labor Market -urban
## 11856                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market (preT)
## 11857                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market -rural
## 11858                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Active Labor Market
## 11859                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Active Labor Market -urban
## 11860                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market (preT)
## 11861                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market -rural
## 11862                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Active Labor Market
## 11863                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Active Labor Market -urban
## 11864                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market (preT)
## 11865                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market -rural
## 11866                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Active Labor Market
## 11867                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Active Labor Market -urban
## 11868                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market (preT)
## 11869                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market -rural
## 11870                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Active Labor Market
## 11871                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Active Labor Market -urban
## 11872                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market (preT)
## 11873                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market -rural
## 11874                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Active Labor Market
## 11875                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Active Labor Market -urban
## 11876                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Active Labor Market -rural
## 11877                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Active Labor Market
## 11878                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Active Labor Market -urban
## 11879                                                                                                                                                                                                        Poverty Headcount reduction (%) -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11880                                                                                                                                                                                                     Poverty Headcount reduction (%) -  Active Labor Market  -1st quintile (poorest) -rural
## 11881                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Active Labor Market  -1st quintile (poorest)
## 11882                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Active Labor Market  - 1st quintile (poorest) -urban
## 11883                                                                                                                                                                                                              Poverty Gap reduction (%) -  Active Labor Market  -extreme poor (<$1.9 a day)
## 11884                                                                                                                                                                                                           Poverty Gap reduction (%) -  Active Labor Market  -1st quintile (poorest) -rural
## 11885                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Active Labor Market  -1st quintile (poorest)
## 11886                                                                                                                                                                                                          Poverty Gap reduction (%) -  Active Labor Market  - 1st quintile (poorest) -urban
## 11887                                                                                                                                                                                                          Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11888                                                                                                                                                                                                                  Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11889                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market (preT)
## 11890                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market -rural
## 11891                                                                                                                                                                                                  Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households)
## 11892                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Labor Market -urban
## 11893                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11894                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -rural
## 11895                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market
## 11896                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -urban
## 11897                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market (preT)
## 11898                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market -rural
## 11899                                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - All Labor Market 
## 11900                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Labor Market -urban
## 11901                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market (preT)
## 11902                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market -rural
## 11903                                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - All Labor Market 
## 11904                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Labor Market -urban
## 11905                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market (preT)
## 11906                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market -rural
## 11907                                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - All Labor Market 
## 11908                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Labor Market -urban
## 11909                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market (preT)
## 11910                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -rural
## 11911                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market
## 11912                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -urban
## 11913                                                                                                                                                                                                  Average per capita transfer held by extreme poor (<$1.9 a day) - All Labor Market  (preT)
## 11914                                                                                                                                                                                                          Average per capita transfer held by extreme poor (<$1.9 a day) - All Labor Market
## 11915                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market (preT)
## 11916                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market -rural
## 11917                                                                                                                                                                                                                                            Average per capita transfer - All Labor Market 
## 11918                                                                                                                                                                                                                                      Average per capita transfer - All Labor Market -urban
## 11919                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market (preT)
## 11920                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market -rural
## 11921                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - All Labor Market
## 11922                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - All Labor Market -urban
## 11923                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market (preT)
## 11924                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market -rural
## 11925                                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - All Labor Market 
## 11926                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Labor Market -urban
## 11927                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market (preT)
## 11928                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market -rural
## 11929                                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - All Labor Market 
## 11930                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Labor Market -urban
## 11931                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market (preT)
## 11932                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market -rural
## 11933                                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - All Labor Market 
## 11934                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Labor Market -urban
## 11935                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market (preT)
## 11936                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market -rural
## 11937                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - All Labor Market
## 11938                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - All Labor Market -urban
## 11939                                                                                                                                                                                                            Benefits incidence in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11940                                                                                                                                                                                                                    Benefits incidence in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11941                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11942                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -rural
## 11943                                                                                                                                                                                       Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits)
## 11944                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -urban
## 11945                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market (preT)
## 11946                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market -rural
## 11947                                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - All Labor Market 
## 11948                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Labor Market -urban
## 11949                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market (preT)
## 11950                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market -rural
## 11951                                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - All Labor Market 
## 11952                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Labor Market -urban
## 11953                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market (preT)
## 11954                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market -rural
## 11955                                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - All Labor Market 
## 11956                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Labor Market -urban
## 11957                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market (preT)
## 11958                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market -rural
## 11959                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - All Labor Market
## 11960                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - All Labor Market -urban
## 11961                                                                                                                                                                                                         Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11962                                                                                                                                                                                                                 Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11963                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11964                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -rural
## 11965                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market
## 11966                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -urban
## 11967                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market (preT)
## 11968                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market -rural
## 11969                                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - All Labor Market 
## 11970                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Labor Market -urban
## 11971                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market (preT)
## 11972                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market -rural
## 11973                                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - All Labor Market 
## 11974                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Labor Market -urban
## 11975                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market (preT)
## 11976                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market -rural
## 11977                                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - All Labor Market 
## 11978                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Labor Market -urban
## 11979                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market (preT)
## 11980                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -rural
## 11981                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market
## 11982                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -urban
## 11983                                                                                                                                                                                                                 Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.9 a day) (preT)
## 11984                                                                                                                                                                                                                        Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.9 a day)
## 11985                                                                                                                                                                                                                     Benefit-cost ratio -  All Labor Market  -1st quintile (poorest) (preT)
## 11986                                                                                                                                                                                                                     Benefit-cost ratio -  All Labor Market  -1st quintile (poorest) -rural
## 11987                                                                                                                                                                                                                            Benefit-cost ratio -  All Labor Market  -1st quintile (poorest)
## 11988                                                                                                                                                                                                                    Benefit-cost ratio -  All Labor Market  - 1st quintile (poorest) -urban
## 11989                                                                                                                                                                                                                      Coverage in extreme poor (<$1.9 a day) (%) - All Labor Market  (preT)
## 11990                                                                                                                                                                                                                              Coverage in extreme poor (<$1.9 a day) (%) - All Labor Market
## 11991                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market (preT)
## 11992                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market -rural
## 11993                                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP (% of population)
## 11994                                                                                                                                                                                                                                                     Coverage (%) - All Labor Market -urban
## 11995                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market (preT)
## 11996                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market -rural
## 11997                                                                                                                                                                                                           Coverage of unemployment benefits and ALMP in poorest quintile (% of population)
## 11998                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - All Labor Market -urban
## 11999                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market (preT)
## 12000                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market -rural
## 12001                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 2nd quintile (% of population)
## 12002                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Labor Market -urban
## 12003                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market (preT)
## 12004                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market -rural
## 12005                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 3rd quintile (% of population)
## 12006                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Labor Market -urban
## 12007                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market (preT)
## 12008                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market -rural
## 12009                                                                                                                                                                                                               Coverage of unemployment benefits and ALMP in 4th quintile (% of population)
## 12010                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Labor Market -urban
## 12011                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market (preT)
## 12012                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market -rural
## 12013                                                                                                                                                                                                           Coverage of unemployment benefits and ALMP in richest quintile (% of population)
## 12014                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - All Labor Market -urban
## 12015                                                                                                                                                                                                                             Gini inequality index reduction (%) -  All Labor Market -rural
## 12016                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  All Labor Market
## 12017                                                                                                                                                                                                                             Gini inequality index reduction (%) -  All Labor Market -urban
## 12018                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Labor Market  -extreme poor (<$1.9 a day)
## 12019                                                                                                                                                                                                        Poverty Headcount reduction (%) -  All Labor Market  -1st quintile (poorest) -rural
## 12020                                                                                                                                                                                                               Poverty Headcount reduction (%) -  All Labor Market  -1st quintile (poorest)
## 12021                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Labor Market  - 1st quintile (poorest) -urban
## 12022                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Labor Market  -extreme poor (<$1.9 a day)
## 12023                                                                                                                                                                                                              Poverty Gap reduction (%) -  All Labor Market  -1st quintile (poorest) -rural
## 12024                                                                                                                                                                                                                     Poverty Gap reduction (%) -  All Labor Market  -1st quintile (poorest)
## 12025                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Labor Market  - 1st quintile (poorest) -urban
## 12026                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12027                                                                                                                                                                                                              Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12028                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market (preT)
## 12029                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market -rural
## 12030                                                                                                                                                                                                                                           Adequacy of benefits (%) - Passive Labor Market 
## 12031                                                                                                                                                                                                                                     Adequacy of benefits (%) - Passive Labor Market -urban
## 12032                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12033                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12034                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market
## 12035                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12036                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market (preT)
## 12037                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -rural
## 12038                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - Passive Labor Market 
## 12039                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -urban
## 12040                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market (preT)
## 12041                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -rural
## 12042                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - Passive Labor Market 
## 12043                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -urban
## 12044                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market (preT)
## 12045                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market -rural
## 12046                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - Passive Labor Market 
## 12047                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Passive Labor Market -urban
## 12048                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12049                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12050                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market
## 12051                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12052                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - Passive Labor Market  (preT)
## 12053                                                                                                                                                                                                      Average per capita transfer held by extreme poor (<$1.9 a day) - Passive Labor Market
## 12054                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market (preT)
## 12055                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market -rural
## 12056                                                                                                                                                                                                                                        Average per capita transfer - Passive Labor Market 
## 12057                                                                                                                                                                                                                                  Average per capita transfer - Passive Labor Market -urban
## 12058                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market (preT)
## 12059                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -rural
## 12060                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market
## 12061                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -urban
## 12062                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market (preT)
## 12063                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market -rural
## 12064                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - Passive Labor Market 
## 12065                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Passive Labor Market -urban
## 12066                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market (preT)
## 12067                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market -rural
## 12068                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - Passive Labor Market 
## 12069                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Passive Labor Market -urban
## 12070                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market (preT)
## 12071                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market -rural
## 12072                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - Passive Labor Market 
## 12073                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Passive Labor Market -urban
## 12074                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market (preT)
## 12075                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -rural
## 12076                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Passive Labor Market
## 12077                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -urban
## 12078                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12079                                                                                                                                                                                                                Benefits incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12080                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12081                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12082                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market
## 12083                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12084                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market (preT)
## 12085                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market -rural
## 12086                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - Passive Labor Market 
## 12087                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Passive Labor Market -urban
## 12088                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market (preT)
## 12089                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market -rural
## 12090                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - Passive Labor Market 
## 12091                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Passive Labor Market -urban
## 12092                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market (preT)
## 12093                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market -rural
## 12094                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - Passive Labor Market 
## 12095                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Passive Labor Market -urban
## 12096                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12097                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12098                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market
## 12099                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12100                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12101                                                                                                                                                                                                             Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12102                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12103                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12104                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market
## 12105                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12106                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market (preT)
## 12107                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -rural
## 12108                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - Passive Labor Market 
## 12109                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -urban
## 12110                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market (preT)
## 12111                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -rural
## 12112                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - Passive Labor Market 
## 12113                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -urban
## 12114                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market (preT)
## 12115                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market -rural
## 12116                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - Passive Labor Market 
## 12117                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Passive Labor Market -urban
## 12118                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12119                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12120                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market
## 12121                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12122                                                                                                                                                                                                             Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.9 a day) (preT)
## 12123                                                                                                                                                                                                                    Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12124                                                                                                                                                                                                                 Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest) (preT)
## 12125                                                                                                                                                                                                                 Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest) -rural
## 12126                                                                                                                                                                                                                        Benefit-cost ratio -  Passive Labor Market  -1st quintile (poorest)
## 12127                                                                                                                                                                                                                Benefit-cost ratio -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12128                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - Passive Labor Market  (preT)
## 12129                                                                                                                                                                                                                          Coverage in extreme poor (<$1.9 a day) (%) - Passive Labor Market
## 12130                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market (preT)
## 12131                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market -rural
## 12132                                                                                                                                                                                                                                                       Coverage (%) - Passive Labor Market 
## 12133                                                                                                                                                                                                                                                 Coverage (%) - Passive Labor Market -urban
## 12134                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market (preT)
## 12135                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market -rural
## 12136                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Passive Labor Market
## 12137                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - Passive Labor Market -urban
## 12138                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market (preT)
## 12139                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market -rural
## 12140                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - Passive Labor Market 
## 12141                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Passive Labor Market -urban
## 12142                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market (preT)
## 12143                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market -rural
## 12144                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - Passive Labor Market 
## 12145                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Passive Labor Market -urban
## 12146                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market (preT)
## 12147                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market -rural
## 12148                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - Passive Labor Market 
## 12149                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Passive Labor Market -urban
## 12150                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market (preT)
## 12151                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market -rural
## 12152                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Passive Labor Market
## 12153                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - Passive Labor Market -urban
## 12154                                                                                                                                                                                                                         Gini inequality index reduction (%) -  Passive Labor Market -rural
## 12155                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Passive Labor Market
## 12156                                                                                                                                                                                                                         Gini inequality index reduction (%) -  Passive Labor Market -urban
## 12157                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12158                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Passive Labor Market  -1st quintile (poorest) -rural
## 12159                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Passive Labor Market  -1st quintile (poorest)
## 12160                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12161                                                                                                                                                                                                             Poverty Gap reduction (%) -  Passive Labor Market  -extreme poor (<$1.9 a day)
## 12162                                                                                                                                                                                                          Poverty Gap reduction (%) -  Passive Labor Market  -1st quintile (poorest) -rural
## 12163                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Passive Labor Market  -1st quintile (poorest)
## 12164                                                                                                                                                                                                         Poverty Gap reduction (%) -  Passive Labor Market  - 1st quintile (poorest) -urban
## 12165                                                                                                                                                                                                             Population in extreme poor (<$1.9 a day) only receiving Labor Market (%, preT)
## 12166                                                                                                                                                                                                                   Population in extreme poor (<$1.9 a day) only receiving Labor Market (%)
## 12167                                                                                                                                                                                                                                           Population only receiving Labor Market (%, preT)
## 12168                                                                                                                                                                                                                                          Population only receiving Labor Market (%) -rural
## 12169                                                                                                                                                                                                                                                 Population only receiving Labor Market (%)
## 12170                                                                                                                                                                                                                                          Population only receiving Labor Market (%) -urban
## 12171                                                                                                                                                                                                             Population in the 1st quintile (poorest) only receiving Labor Market (%, preT)
## 12172                                                                                                                                                                                                            Population in the 1st quintile (poorest) only receiving Labor Market (%) -rural
## 12173                                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving Labor Market (%)
## 12174                                                                                                                                                                                                            Population in the 1st quintile (poorest) only receiving Labor Market (%) -urban
## 12175                                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) not receiving Social Protection (%, preT)
## 12176                                                                                                                                                                                                               Population in extreme poor (<$1.9 a day) not receiving Social Protection (%)
## 12177                                                                                                                                                                                                                                       Population not receiving Social Protection (%, preT)
## 12178                                                                                                                                                                                                                                      Population not receiving Social Protection (%) -rural
## 12179                                                                                                                                                                                                                                             Population not receiving Social Protection (%)
## 12180                                                                                                                                                                                                                                      Population not receiving Social Protection (%) -urban
## 12181                                                                                                                                                                                                         Population in the 1st quintile (poorest) not receiving Social Protection (%, preT)
## 12182                                                                                                                                                                                                        Population in the 1st quintile (poorest) not receiving Social Protection (%) -rural
## 12183                                                                                                                                                                                                               Population in the 1st quintile (poorest) not receiving Social Protection (%)
## 12184                                                                                                                                                                                                        Population in the 1st quintile (poorest) not receiving Social Protection (%) -urban
## 12185                                                                                                                                                                                                                Population in extreme poor (<$1.9 a day) receiving only 1 program (%, preT)
## 12186                                                                                                                                                                                                                      Population in extreme poor (<$1.9 a day) receiving only 1 program (%)
## 12187                                                                                                                                                                                                                                              Population receiving only 1 program (%, preT)
## 12188                                                                                                                                                                                                                                             Population receiving only 1 program (%) -rural
## 12189                                                                                                                                                                                                                                                    Population receiving only 1 program (%)
## 12190                                                                                                                                                                                                                                             Population receiving only 1 program (%) -urban
## 12191                                                                                                                                                                                                                     Population in the 1st quintile (poorest) receiving 1 program (%, preT)
## 12192                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 1 program (%) -rural
## 12193                                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 1 program (%)
## 12194                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 1 program (%) -urban
## 12195                                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) receiving 2 programs (%, preT)
## 12196                                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) receiving 2 programs (%)
## 12197                                                                                                                                                                                                                                                  Population receiving 2 programs (%, preT)
## 12198                                                                                                                                                                                                                                                 Population receiving 2 programs (%) -rural
## 12199                                                                                                                                                                                                                                                        Population receiving 2 programs (%)
## 12200                                                                                                                                                                                                                                                 Population receiving 2 programs (%) -urban
## 12201                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 2 programs (%, preT)
## 12202                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 2 programs (%) -rural
## 12203                                                                                                                                                                                                                          Population in the 1st quintile (poorest) receiving 2 programs (%)
## 12204                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 2 programs (%) -urban
## 12205                                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) receiving 3 programs (%, preT)
## 12206                                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) receiving 3 programs (%)
## 12207                                                                                                                                                                                                                                                  Population receiving 3 programs (%, preT)
## 12208                                                                                                                                                                                                                                                 Population receiving 3 programs (%) -rural
## 12209                                                                                                                                                                                                                                                        Population receiving 3 programs (%)
## 12210                                                                                                                                                                                                                                                 Population receiving 3 programs (%) -urban
## 12211                                                                                                                                                                                                                    Population in the 1st quintile (poorest) receiving 3 programs (%, preT)
## 12212                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 3 programs (%) -rural
## 12213                                                                                                                                                                                                                          Population in the 1st quintile (poorest) receiving 3 programs (%)
## 12214                                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving 3 programs (%) -urban
## 12215                                                                                                                                                                                                            Population in extreme poor (<$1.9 a day) receiving 4 or more programs (%, preT)
## 12216                                                                                                                                                                                                                  Population in extreme poor (<$1.9 a day) receiving 4 or more programs (%)
## 12217                                                                                                                                                                                                                                          Population receiving 4 or more programs (%, preT)
## 12218                                                                                                                                                                                                                                         Population receiving 4 or more programs (%) -rural
## 12219                                                                                                                                                                                                                                                Population receiving 4 or more programs (%)
## 12220                                                                                                                                                                                                                                         Population receiving 4 or more programs (%) -urban
## 12221                                                                                                                                                                                                            Population in the 1st quintile (poorest) receiving 4 or more programs (%, preT)
## 12222                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 4 or more programs (%) -rural
## 12223                                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving 4 or more programs (%)
## 12224                                                                                                                                                                                                           Population in the 1st quintile (poorest) receiving 4 or more programs (%) -urban
## 12225                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12226                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12227                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers (preT)
## 12228                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers -rural
## 12229                                                                                                                                                                                                                                         Adequacy of benefits (%) - All Private Transfers  
## 12230                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Private Transfers -urban
## 12231                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12232                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12233                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers
## 12234                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12235                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers (preT)
## 12236                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers -rural
## 12237                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - All Private Transfers  
## 12238                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Private Transfers -urban
## 12239                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers (preT)
## 12240                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers -rural
## 12241                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - All Private Transfers  
## 12242                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Private Transfers -urban
## 12243                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers (preT)
## 12244                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers -rural
## 12245                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - All Private Transfers  
## 12246                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Private Transfers -urban
## 12247                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12248                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -rural
## 12249                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers
## 12250                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -urban
## 12251                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - All Private Transfers (preT)
## 12252                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - All Private Transfers
## 12253                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers (preT)
## 12254                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers -rural
## 12255                                                                                                                                                                                                                                      Average per capita transfer - All Private Transfers  
## 12256                                                                                                                                                                                                                                 Average per capita transfer - All Private Transfers -urban
## 12257                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers (preT)
## 12258                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -rural
## 12259                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - All Private Transfers
## 12260                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -urban
## 12261                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers (preT)
## 12262                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers -rural
## 12263                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - All Private Transfers  
## 12264                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Private Transfers -urban
## 12265                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers (preT)
## 12266                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers -rural
## 12267                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - All Private Transfers  
## 12268                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Private Transfers -urban
## 12269                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers (preT)
## 12270                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers -rural
## 12271                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - All Private Transfers  
## 12272                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Private Transfers -urban
## 12273                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers (preT)
## 12274                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers -rural
## 12275                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - All Private Transfers
## 12276                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Private Transfers -urban
## 12277                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12278                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12279                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12280                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12281                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers
## 12282                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12283                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers (preT)
## 12284                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers -rural
## 12285                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - All Private Transfers  
## 12286                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Private Transfers -urban
## 12287                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers (preT)
## 12288                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers -rural
## 12289                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - All Private Transfers  
## 12290                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Private Transfers -urban
## 12291                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers (preT)
## 12292                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers -rural
## 12293                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - All Private Transfers  
## 12294                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Private Transfers -urban
## 12295                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12296                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -rural
## 12297                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - All Private Transfers
## 12298                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -urban
## 12299                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12300                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12301                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12302                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12303                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers
## 12304                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12305                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT)
## 12306                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers -rural
## 12307                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - All Private Transfers  
## 12308                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Private Transfers -urban
## 12309                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT)
## 12310                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers -rural
## 12311                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - All Private Transfers  
## 12312                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Private Transfers -urban
## 12313                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT)
## 12314                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers -rural
## 12315                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - All Private Transfers  
## 12316                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Private Transfers -urban
## 12317                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12318                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -rural
## 12319                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers
## 12320                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -urban
## 12321                                                                                                                                                                                                             Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12322                                                                                                                                                                                                                    Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.9 a day)
## 12323                                                                                                                                                                                                                 Benefit-cost ratio -  All Private Transfers -1st quintile (poorest) (preT)
## 12324                                                                                                                                                                                                                 Benefit-cost ratio -  All Private Transfers -1st quintile (poorest) -rural
## 12325                                                                                                                                                                                                                        Benefit-cost ratio -  All Private Transfers -1st quintile (poorest)
## 12326                                                                                                                                                                                                                Benefit-cost ratio -  All Private Transfers - 1st quintile (poorest) -urban
## 12327                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - All Private Transfers (preT)
## 12328                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - All Private Transfers
## 12329                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers (preT)
## 12330                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers -rural
## 12331                                                                                                                                                                                                                                                     Coverage (%) - All Private Transfers  
## 12332                                                                                                                                                                                                                                                Coverage (%) - All Private Transfers -urban
## 12333                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers (preT)
## 12334                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers -rural
## 12335                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - All Private Transfers
## 12336                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Private Transfers -urban
## 12337                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers (preT)
## 12338                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers -rural
## 12339                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - All Private Transfers  
## 12340                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Private Transfers -urban
## 12341                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers (preT)
## 12342                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers -rural
## 12343                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - All Private Transfers  
## 12344                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Private Transfers -urban
## 12345                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers (preT)
## 12346                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers -rural
## 12347                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - All Private Transfers  
## 12348                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Private Transfers -urban
## 12349                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers (preT)
## 12350                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers -rural
## 12351                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - All Private Transfers
## 12352                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Private Transfers -urban
## 12353                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Private Transfers -rural
## 12354                                                                                                                                                                                                                               Gini inequality index reduction (%) -  All Private Transfers
## 12355                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Private Transfers -urban
## 12356                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Private Transfers -extreme poor (<$1.9 a day)
## 12357                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Private Transfers -1st quintile (poorest) -rural
## 12358                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Private Transfers -1st quintile (poorest)
## 12359                                                                                                                                                                                                   Poverty Headcount reduction (%) -  All Private Transfers - 1st quintile (poorest) -urban
## 12360                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Private Transfers -extreme poor (<$1.9 a day)
## 12361                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Private Transfers -1st quintile (poorest) -rural
## 12362                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Private Transfers -1st quintile (poorest)
## 12363                                                                                                                                                                                                         Poverty Gap reduction (%) -  All Private Transfers - 1st quintile (poorest) -urban
## 12364                                                                                                                                                                                                 Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12365                                                                                                                                                                                                        Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12366                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers (preT)
## 12367                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers -rural
## 12368                                                                                                                                                                                                                                      Adequacy of benefits (%) - Domestic Private Transfers
## 12369                                                                                                                                                                                                                               Adequacy of benefits (%) - Domestic Private Transfers -urban
## 12370                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12371                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12372                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12373                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12374                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12375                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -rural
## 12376                                                                                                                                                                                                                      Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers
## 12377                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -urban
## 12378                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12379                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -rural
## 12380                                                                                                                                                                                                                      Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers
## 12381                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -urban
## 12382                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers (preT)
## 12383                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -rural
## 12384                                                                                                                                                                                                                      Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers
## 12385                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -urban
## 12386                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12387                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12388                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers
## 12389                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12390                                                                                                                                                                                         Average per capita transfer held by extreme poor (<$1.9 a day) - Domestic Private Transfers (preT)
## 12391                                                                                                                                                                                                Average per capita transfer held by extreme poor (<$1.9 a day) - Domestic Private Transfers
## 12392                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers (preT)
## 12393                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers -rural
## 12394                                                                                                                                                                                                                                   Average per capita transfer - Domestic Private Transfers
## 12395                                                                                                                                                                                                                            Average per capita transfer - Domestic Private Transfers -urban
## 12396                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers (preT)
## 12397                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -rural
## 12398                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers
## 12399                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -urban
## 12400                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers (preT)
## 12401                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers -rural
## 12402                                                                                                                                                                                                              Average per capita transfer held by 2nd quintile - Domestic Private Transfers
## 12403                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Domestic Private Transfers -urban
## 12404                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers (preT)
## 12405                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers -rural
## 12406                                                                                                                                                                                                              Average per capita transfer held by 3rd quintile - Domestic Private Transfers
## 12407                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Domestic Private Transfers -urban
## 12408                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers (preT)
## 12409                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers -rural
## 12410                                                                                                                                                                                                              Average per capita transfer held by 4th quintile - Domestic Private Transfers
## 12411                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Domestic Private Transfers -urban
## 12412                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers (preT)
## 12413                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -rural
## 12414                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers
## 12415                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -urban
## 12416                                                                                                                                                                                                   Benefits incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12417                                                                                                                                                                                                          Benefits incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12418                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12419                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12420                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12421                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12422                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12423                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -rural
## 12424                                                                                                                                                                                                                        Benefits incidence in 2nd quintile (%) - Domestic Private Transfers
## 12425                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -urban
## 12426                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12427                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -rural
## 12428                                                                                                                                                                                                                        Benefits incidence in 3rd quintile (%) - Domestic Private Transfers
## 12429                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -urban
## 12430                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers (preT)
## 12431                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers -rural
## 12432                                                                                                                                                                                                                        Benefits incidence in 4th quintile (%) - Domestic Private Transfers
## 12433                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Domestic Private Transfers -urban
## 12434                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12435                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12436                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers
## 12437                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12438                                                                                                                                                                                                Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12439                                                                                                                                                                                                       Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12440                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12441                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12442                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12443                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12444                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12445                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -rural
## 12446                                                                                                                                                                                                                     Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers
## 12447                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -urban
## 12448                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12449                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -rural
## 12450                                                                                                                                                                                                                     Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers
## 12451                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -urban
## 12452                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT)
## 12453                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -rural
## 12454                                                                                                                                                                                                                     Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers
## 12455                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -urban
## 12456                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12457                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12458                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers
## 12459                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12460                                                                                                                                                                                                        Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12461                                                                                                                                                                                                               Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12462                                                                                                                                                                                                            Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest) (preT)
## 12463                                                                                                                                                                                                            Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12464                                                                                                                                                                                                                   Benefit-cost ratio -  Domestic Private Transfers -1st quintile (poorest)
## 12465                                                                                                                                                                                                           Benefit-cost ratio -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12466                                                                                                                                                                                                             Coverage in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers (preT)
## 12467                                                                                                                                                                                                                    Coverage in extreme poor (<$1.9 a day) (%) - Domestic Private Transfers
## 12468                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers (preT)
## 12469                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers -rural
## 12470                                                                                                                                                                                                                                                  Coverage (%) - Domestic Private Transfers
## 12471                                                                                                                                                                                                                                           Coverage (%) - Domestic Private Transfers -urban
## 12472                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers (preT)
## 12473                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -rural
## 12474                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers
## 12475                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -urban
## 12476                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers (preT)
## 12477                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers -rural
## 12478                                                                                                                                                                                                                                  Coverage in 2nd quintile (%) - Domestic Private Transfers
## 12479                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Domestic Private Transfers -urban
## 12480                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers (preT)
## 12481                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers -rural
## 12482                                                                                                                                                                                                                                  Coverage in 3rd quintile (%) - Domestic Private Transfers
## 12483                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Domestic Private Transfers -urban
## 12484                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers (preT)
## 12485                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers -rural
## 12486                                                                                                                                                                                                                                  Coverage in 4th quintile (%) - Domestic Private Transfers
## 12487                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Domestic Private Transfers -urban
## 12488                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers (preT)
## 12489                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -rural
## 12490                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Domestic Private Transfers
## 12491                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -urban
## 12492                                                                                                                                                                                                                   Gini inequality index reduction (%) -  Domestic Private Transfers -rural
## 12493                                                                                                                                                                                                                          Gini inequality index reduction (%) -  Domestic Private Transfers
## 12494                                                                                                                                                                                                                   Gini inequality index reduction (%) -  Domestic Private Transfers -urban
## 12495                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12496                                                                                                                                                                                               Poverty Headcount reduction (%) -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12497                                                                                                                                                                                                      Poverty Headcount reduction (%) -  Domestic Private Transfers -1st quintile (poorest)
## 12498                                                                                                                                                                                              Poverty Headcount reduction (%) -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12499                                                                                                                                                                                                        Poverty Gap reduction (%) -  Domestic Private Transfers -extreme poor (<$1.9 a day)
## 12500                                                                                                                                                                                                     Poverty Gap reduction (%) -  Domestic Private Transfers -1st quintile (poorest) -rural
## 12501                                                                                                                                                                                                            Poverty Gap reduction (%) -  Domestic Private Transfers -1st quintile (poorest)
## 12502                                                                                                                                                                                                    Poverty Gap reduction (%) -  Domestic Private Transfers - 1st quintile (poorest) -urban
## 12503                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12504                                                                                                                                                                                                   Adequacy of benefits in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12505                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers (preT)
## 12506                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers -rural
## 12507                                                                                                                                                                                                                                 Adequacy of benefits (%) - International Private Transfers
## 12508                                                                                                                                                                                                                          Adequacy of benefits (%) - International Private Transfers -urban
## 12509                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12510                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12511                                                                                                                                                                                                       Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers
## 12512                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12513                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers (preT)
## 12514                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers -rural
## 12515                                                                                                                                                                                                                 Adequacy of benefits in 2nd quintile (%) - International Private Transfers
## 12516                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - International Private Transfers -urban
## 12517                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers (preT)
## 12518                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers -rural
## 12519                                                                                                                                                                                                                 Adequacy of benefits in 3rd quintile (%) - International Private Transfers
## 12520                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - International Private Transfers -urban
## 12521                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers (preT)
## 12522                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers -rural
## 12523                                                                                                                                                                                                                 Adequacy of benefits in 4th quintile (%) - International Private Transfers
## 12524                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - International Private Transfers -urban
## 12525                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12526                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -rural
## 12527                                                                                                                                                                                                       Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers
## 12528                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -urban
## 12529                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) - International Private Transfers (preT)
## 12530                                                                                                                                                                                           Average per capita transfer held by extreme poor (<$1.9 a day) - International Private Transfers
## 12531                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers (preT)
## 12532                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers -rural
## 12533                                                                                                                                                                                                                              Average per capita transfer - International Private Transfers
## 12534                                                                                                                                                                                                                       Average per capita transfer - International Private Transfers -urban
## 12535                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers (preT)
## 12536                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -rural
## 12537                                                                                                                                                                                               Average per capita transfer held by 1st quintile (poorest) - International Private Transfers
## 12538                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -urban
## 12539                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers (preT)
## 12540                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers -rural
## 12541                                                                                                                                                                                                         Average per capita transfer held by 2nd quintile - International Private Transfers
## 12542                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - International Private Transfers -urban
## 12543                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers (preT)
## 12544                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers -rural
## 12545                                                                                                                                                                                                         Average per capita transfer held by 3rd quintile - International Private Transfers
## 12546                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - International Private Transfers -urban
## 12547                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers (preT)
## 12548                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers -rural
## 12549                                                                                                                                                                                                         Average per capita transfer held by 4th quintile - International Private Transfers
## 12550                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - International Private Transfers -urban
## 12551                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers (preT)
## 12552                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers -rural
## 12553                                                                                                                                                                                               Average per capita transfer held by 5th quintile (richest) - International Private Transfers
## 12554                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - International Private Transfers -urban
## 12555                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12556                                                                                                                                                                                                     Benefits incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12557                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12558                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12559                                                                                                                                                                                                         Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers
## 12560                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12561                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers (preT)
## 12562                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers -rural
## 12563                                                                                                                                                                                                                   Benefits incidence in 2nd quintile (%) - International Private Transfers
## 12564                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - International Private Transfers -urban
## 12565                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers (preT)
## 12566                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers -rural
## 12567                                                                                                                                                                                                                   Benefits incidence in 3rd quintile (%) - International Private Transfers
## 12568                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - International Private Transfers -urban
## 12569                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers (preT)
## 12570                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers -rural
## 12571                                                                                                                                                                                                                   Benefits incidence in 4th quintile (%) - International Private Transfers
## 12572                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - International Private Transfers -urban
## 12573                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12574                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -rural
## 12575                                                                                                                                                                                                         Benefits incidence in 5th quintile (richest) (%) - International Private Transfers
## 12576                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -urban
## 12577                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12578                                                                                                                                                                                                  Beneficiary incidence in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12579                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12580                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12581                                                                                                                                                                                                      Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers
## 12582                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12583                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT)
## 12584                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers -rural
## 12585                                                                                                                                                                                                                Beneficiary incidence in 2nd quintile (%) - International Private Transfers
## 12586                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - International Private Transfers -urban
## 12587                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT)
## 12588                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers -rural
## 12589                                                                                                                                                                                                                Beneficiary incidence in 3rd quintile (%) - International Private Transfers
## 12590                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - International Private Transfers -urban
## 12591                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT)
## 12592                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers -rural
## 12593                                                                                                                                                                                                                Beneficiary incidence in 4th quintile (%) - International Private Transfers
## 12594                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - International Private Transfers -urban
## 12595                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12596                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -rural
## 12597                                                                                                                                                                                                      Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers
## 12598                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -urban
## 12599                                                                                                                                                                                                   Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.9 a day) (preT)
## 12600                                                                                                                                                                                                          Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.9 a day)
## 12601                                                                                                                                                                                                       Benefit-cost ratio -  International Private Transfers -1st quintile (poorest) (preT)
## 12602                                                                                                                                                                                                       Benefit-cost ratio -  International Private Transfers -1st quintile (poorest) -rural
## 12603                                                                                                                                                                                                              Benefit-cost ratio -  International Private Transfers -1st quintile (poorest)
## 12604                                                                                                                                                                                                      Benefit-cost ratio -  International Private Transfers - 1st quintile (poorest) -urban
## 12605                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) - International Private Transfers (preT)
## 12606                                                                                                                                                                                                               Coverage in extreme poor (<$1.9 a day) (%) - International Private Transfers
## 12607                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers (preT)
## 12608                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers -rural
## 12609                                                                                                                                                                                                                                             Coverage (%) - International Private Transfers
## 12610                                                                                                                                                                                                                                      Coverage (%) - International Private Transfers -urban
## 12611                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers (preT)
## 12612                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers -rural
## 12613                                                                                                                                                                                                                   Coverage in 1st quintile (poorest) (%) - International Private Transfers
## 12614                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - International Private Transfers -urban
## 12615                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers (preT)
## 12616                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers -rural
## 12617                                                                                                                                                                                                                             Coverage in 2nd quintile (%) - International Private Transfers
## 12618                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - International Private Transfers -urban
## 12619                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers (preT)
## 12620                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers -rural
## 12621                                                                                                                                                                                                                             Coverage in 3rd quintile (%) - International Private Transfers
## 12622                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - International Private Transfers -urban
## 12623                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers (preT)
## 12624                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers -rural
## 12625                                                                                                                                                                                                                             Coverage in 4th quintile (%) - International Private Transfers
## 12626                                                                                                                                                                                                                      Coverage in 4th quintile (%) - International Private Transfers -urban
## 12627                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers (preT)
## 12628                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers -rural
## 12629                                                                                                                                                                                                                   Coverage in 5th quintile (richest) (%) - International Private Transfers
## 12630                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - International Private Transfers -urban
## 12631                                                                                                                                                                                                              Gini inequality index reduction (%) -  International Private Transfers -rural
## 12632                                                                                                                                                                                                                     Gini inequality index reduction (%) -  International Private Transfers
## 12633                                                                                                                                                                                                              Gini inequality index reduction (%) -  International Private Transfers -urban
## 12634                                                                                                                                                                                             Poverty Headcount reduction (%) -  International Private Transfers -extreme poor (<$1.9 a day)
## 12635                                                                                                                                                                                          Poverty Headcount reduction (%) -  International Private Transfers -1st quintile (poorest) -rural
## 12636                                                                                                                                                                                                 Poverty Headcount reduction (%) -  International Private Transfers -1st quintile (poorest)
## 12637                                                                                                                                                                                         Poverty Headcount reduction (%) -  International Private Transfers - 1st quintile (poorest) -urban
## 12638                                                                                                                                                                                                   Poverty Gap reduction (%) -  International Private Transfers -extreme poor (<$1.9 a day)
## 12639                                                                                                                                                                                                Poverty Gap reduction (%) -  International Private Transfers -1st quintile (poorest) -rural
## 12640                                                                                                                                                                                                       Poverty Gap reduction (%) -  International Private Transfers -1st quintile (poorest)
## 12641                                                                                                                                                                                               Poverty Gap reduction (%) -  International Private Transfers - 1st quintile (poorest) -urban
## 12642                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12643                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12644                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance (preT)
## 12645                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance -rural
## 12646                                                                                                                                                                                                      Adequacy of social safety net programs (% of total welfare of beneficiary households)
## 12647                                                                                                                                                                                                                                    Adequacy of benefits (%) - All Social Assistance -urban
## 12648                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12649                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12650                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance
## 12651                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12652                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance (preT)
## 12653                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance -rural
## 12654                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - All Social Assistance 
## 12655                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - All Social Assistance -urban
## 12656                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance (preT)
## 12657                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance -rural
## 12658                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - All Social Assistance 
## 12659                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - All Social Assistance -urban
## 12660                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance (preT)
## 12661                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance -rural
## 12662                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - All Social Assistance 
## 12663                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - All Social Assistance -urban
## 12664                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12665                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -rural
## 12666                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance
## 12667                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -urban
## 12668                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Assistance  (preT)
## 12669                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Assistance
## 12670                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance (preT)
## 12671                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance -rural
## 12672                                                                                                                                                                                                                                       Average per capita transfer - All Social Assistance 
## 12673                                                                                                                                                                                                                                 Average per capita transfer - All Social Assistance -urban
## 12674                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance (preT)
## 12675                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -rural
## 12676                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - All Social Assistance
## 12677                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -urban
## 12678                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance (preT)
## 12679                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance -rural
## 12680                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - All Social Assistance 
## 12681                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - All Social Assistance -urban
## 12682                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance (preT)
## 12683                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance -rural
## 12684                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - All Social Assistance 
## 12685                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - All Social Assistance -urban
## 12686                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance (preT)
## 12687                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance -rural
## 12688                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - All Social Assistance 
## 12689                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - All Social Assistance -urban
## 12690                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance (preT)
## 12691                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance -rural
## 12692                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - All Social Assistance
## 12693                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - All Social Assistance -urban
## 12694                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12695                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12696                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12697                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12698                                                                                                                                                                                       Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits)
## 12699                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12700                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance (preT)
## 12701                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance -rural
## 12702                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - All Social Assistance 
## 12703                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - All Social Assistance -urban
## 12704                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance (preT)
## 12705                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance -rural
## 12706                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - All Social Assistance 
## 12707                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - All Social Assistance -urban
## 12708                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance (preT)
## 12709                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance -rural
## 12710                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - All Social Assistance 
## 12711                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - All Social Assistance -urban
## 12712                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12713                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -rural
## 12714                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - All Social Assistance
## 12715                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -urban
## 12716                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12717                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12718                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12719                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12720                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance
## 12721                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12722                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance (preT)
## 12723                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance -rural
## 12724                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - All Social Assistance 
## 12725                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - All Social Assistance -urban
## 12726                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance (preT)
## 12727                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance -rural
## 12728                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - All Social Assistance 
## 12729                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - All Social Assistance -urban
## 12730                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance (preT)
## 12731                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance -rural
## 12732                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - All Social Assistance 
## 12733                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - All Social Assistance -urban
## 12734                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12735                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -rural
## 12736                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance
## 12737                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -urban
## 12738                                                                                                                                                                                                             Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.9 a day) (preT)
## 12739                                                                                                                                                                                                                    Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.9 a day)
## 12740                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Assistance -1st quintile (poorest) (preT)
## 12741                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Assistance -1st quintile (poorest) -rural
## 12742                                                                                                                                                                                                                        Benefit-cost ratio -  All Social Assistance -1st quintile (poorest)
## 12743                                                                                                                                                                                                                Benefit-cost ratio -  All Social Assistance - 1st quintile (poorest) -urban
## 12744                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - All Social Assistance  (preT)
## 12745                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - All Social Assistance
## 12746                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance (preT)
## 12747                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance -rural
## 12748                                                                                                                                                                                                                                   Coverage of social safety net programs (% of population)
## 12749                                                                                                                                                                                                                                                Coverage (%) - All Social Assistance -urban
## 12750                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance (preT)
## 12751                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance -rural
## 12752                                                                                                                                                                                                               Coverage of social safety net programs in poorest quintile (% of population)
## 12753                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - All Social Assistance -urban
## 12754                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance (preT)
## 12755                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance -rural
## 12756                                                                                                                                                                                                                   Coverage of social safety net programs in 2nd quintile (% of population)
## 12757                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - All Social Assistance -urban
## 12758                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance (preT)
## 12759                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance -rural
## 12760                                                                                                                                                                                                                   Coverage of social safety net programs in 3rd quintile (% of population)
## 12761                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - All Social Assistance -urban
## 12762                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance (preT)
## 12763                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance -rural
## 12764                                                                                                                                                                                                                   Coverage of social safety net programs in 4th quintile (% of population)
## 12765                                                                                                                                                                                                                                Coverage in 4th quintile (%) - All Social Assistance -urban
## 12766                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance (preT)
## 12767                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance -rural
## 12768                                                                                                                                                                                                               Coverage of social safety net programs in richest quintile (% of population)
## 12769                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - All Social Assistance -urban
## 12770                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Social Assistance -rural
## 12771                                                                                                                                                                                                                               Gini inequality index reduction (%) -  All Social Assistance
## 12772                                                                                                                                                                                                                        Gini inequality index reduction (%) -  All Social Assistance -urban
## 12773                                                                                                                                                                                                       Poverty Headcount reduction (%) -  All Social Assistance -extreme poor (<$1.9 a day)
## 12774                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Social Assistance -1st quintile (poorest) -rural
## 12775                                                                                                                                                                                                           Poverty Headcount reduction (%) -  All Social Assistance -1st quintile (poorest)
## 12776                                                                                                                                                                                                   Poverty Headcount reduction (%) -  All Social Assistance - 1st quintile (poorest) -urban
## 12777                                                                                                                                                                                                             Poverty Gap reduction (%) -  All Social Assistance -extreme poor (<$1.9 a day)
## 12778                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Social Assistance -1st quintile (poorest) -rural
## 12779                                                                                                                                                                                                                 Poverty Gap reduction (%) -  All Social Assistance -1st quintile (poorest)
## 12780                                                                                                                                                                                                         Poverty Gap reduction (%) -  All Social Assistance - 1st quintile (poorest) -urban
## 12781                                                                                                                                                                                                 Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12782                                                                                                                                                                                                        Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12783                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers (preT)
## 12784                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers -rural
## 12785                                                                                                                                                                                                                                    Adequacy of benefits (%) - Conditional Cash Transfers  
## 12786                                                                                                                                                                                                                               Adequacy of benefits (%) - Conditional Cash Transfers -urban
## 12787                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12788                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12789                                                                                                                                                                                                            Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12790                                                                                                                                                                                                     Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12791                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12792                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12793                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers  
## 12794                                                                                                                                                                                                               Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12795                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12796                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12797                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers  
## 12798                                                                                                                                                                                                               Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12799                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12800                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -rural
## 12801                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers  
## 12802                                                                                                                                                                                                               Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -urban
## 12803                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12804                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12805                                                                                                                                                                                                            Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12806                                                                                                                                                                                                     Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12807                                                                                                                                                                                         Average per capita transfer held by extreme poor (<$1.9 a day) - Conditional Cash Transfers (preT)
## 12808                                                                                                                                                                                                Average per capita transfer held by extreme poor (<$1.9 a day) - Conditional Cash Transfers
## 12809                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers (preT)
## 12810                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers -rural
## 12811                                                                                                                                                                                                                                 Average per capita transfer - Conditional Cash Transfers  
## 12812                                                                                                                                                                                                                            Average per capita transfer - Conditional Cash Transfers -urban
## 12813                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers (preT)
## 12814                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -rural
## 12815                                                                                                                                                                                                    Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers
## 12816                                                                                                                                                                                             Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -urban
## 12817                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT)
## 12818                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -rural
## 12819                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Conditional Cash Transfers  
## 12820                                                                                                                                                                                                       Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -urban
## 12821                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT)
## 12822                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -rural
## 12823                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Conditional Cash Transfers  
## 12824                                                                                                                                                                                                       Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -urban
## 12825                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT)
## 12826                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers -rural
## 12827                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Conditional Cash Transfers  
## 12828                                                                                                                                                                                                       Average per capita transfer held by 4th quintile - Conditional Cash Transfers -urban
## 12829                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers (preT)
## 12830                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -rural
## 12831                                                                                                                                                                                                    Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers
## 12832                                                                                                                                                                                             Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -urban
## 12833                                                                                                                                                                                                   Benefits incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12834                                                                                                                                                                                                          Benefits incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12835                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12836                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12837                                                                                                                                                                                                              Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12838                                                                                                                                                                                                       Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12839                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12840                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12841                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers  
## 12842                                                                                                                                                                                                                 Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12843                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12844                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12845                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers  
## 12846                                                                                                                                                                                                                 Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12847                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12848                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -rural
## 12849                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Conditional Cash Transfers  
## 12850                                                                                                                                                                                                                 Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -urban
## 12851                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12852                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12853                                                                                                                                                                                                              Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12854                                                                                                                                                                                                       Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12855                                                                                                                                                                                                Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12856                                                                                                                                                                                                       Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12857                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12858                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12859                                                                                                                                                                                                           Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12860                                                                                                                                                                                                    Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12861                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12862                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12863                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers  
## 12864                                                                                                                                                                                                              Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12865                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12866                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12867                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers  
## 12868                                                                                                                                                                                                              Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12869                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12870                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -rural
## 12871                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers  
## 12872                                                                                                                                                                                                              Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -urban
## 12873                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12874                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12875                                                                                                                                                                                                           Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12876                                                                                                                                                                                                    Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12877                                                                                                                                                                                                         Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.9 a day) (preT)
## 12878                                                                                                                                                                                                                Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12879                                                                                                                                                                                                             Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest) (preT)
## 12880                                                                                                                                                                                                             Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12881                                                                                                                                                                                                                    Benefit-cost ratio -  Conditional Cash Transfer -1st quintile (poorest)
## 12882                                                                                                                                                                                                            Benefit-cost ratio -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12883                                                                                                                                                                                                             Coverage in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers (preT)
## 12884                                                                                                                                                                                                                    Coverage in extreme poor (<$1.9 a day) (%) - Conditional Cash Transfers
## 12885                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers (preT)
## 12886                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers -rural
## 12887                                                                                                                                                                                                                                                Coverage (%) - Conditional Cash Transfers  
## 12888                                                                                                                                                                                                                                           Coverage (%) - Conditional Cash Transfers -urban
## 12889                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT)
## 12890                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural
## 12891                                                                                                                                                                                                                        Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers
## 12892                                                                                                                                                                                                                 Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban
## 12893                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers (preT)
## 12894                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers -rural
## 12895                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Conditional Cash Transfers  
## 12896                                                                                                                                                                                                                           Coverage in 2nd quintile (%) - Conditional Cash Transfers -urban
## 12897                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers (preT)
## 12898                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers -rural
## 12899                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Conditional Cash Transfers  
## 12900                                                                                                                                                                                                                           Coverage in 3rd quintile (%) - Conditional Cash Transfers -urban
## 12901                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers (preT)
## 12902                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers -rural
## 12903                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Conditional Cash Transfers  
## 12904                                                                                                                                                                                                                           Coverage in 4th quintile (%) - Conditional Cash Transfers -urban
## 12905                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers (preT)
## 12906                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -rural
## 12907                                                                                                                                                                                                                        Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers
## 12908                                                                                                                                                                                                                 Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -urban
## 12909                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Conditional Cash Transfer -rural
## 12910                                                                                                                                                                                                                           Gini inequality index reduction (%) -  Conditional Cash Transfer
## 12911                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Conditional Cash Transfer -urban
## 12912                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12913                                                                                                                                                                                                Poverty Headcount reduction (%) -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12914                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Conditional Cash Transfer -1st quintile (poorest)
## 12915                                                                                                                                                                                               Poverty Headcount reduction (%) -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12916                                                                                                                                                                                                         Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.9 a day)
## 12917                                                                                                                                                                                                      Poverty Gap reduction (%) -  Conditional Cash Transfer -1st quintile (poorest) -rural
## 12918                                                                                                                                                                                                             Poverty Gap reduction (%) -  Conditional Cash Transfer -1st quintile (poorest)
## 12919                                                                                                                                                                                                     Poverty Gap reduction (%) -  Conditional Cash Transfer - 1st quintile (poorest) -urban
## 12920                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12921                                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12922                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer (preT)
## 12923                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer -rural
## 12924                                                                                                                                                                                                                                                  Adequacy of benefits (%) - Cash Transfer 
## 12925                                                                                                                                                                                                                                            Adequacy of benefits (%) - Cash Transfer -urban
## 12926                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12927                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12928                                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer
## 12929                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - Cash Transfer -urban
## 12930                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer (preT)
## 12931                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer -rural
## 12932                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Cash Transfer 
## 12933                                                                                                                                                                                                                            Adequacy of benefits in 2nd quintile (%) - Cash Transfer -urban
## 12934                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer (preT)
## 12935                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer -rural
## 12936                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Cash Transfer 
## 12937                                                                                                                                                                                                                            Adequacy of benefits in 3rd quintile (%) - Cash Transfer -urban
## 12938                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer (preT)
## 12939                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer -rural
## 12940                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Cash Transfer 
## 12941                                                                                                                                                                                                                            Adequacy of benefits in 4th quintile (%) - Cash Transfer -urban
## 12942                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer (preT)
## 12943                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer -rural
## 12944                                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer
## 12945                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - Cash Transfer -urban
## 12946                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - Cash Transfer  (preT)
## 12947                                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - Cash Transfer
## 12948                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer (preT)
## 12949                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer -rural
## 12950                                                                                                                                                                                                                                               Average per capita transfer - Cash Transfer 
## 12951                                                                                                                                                                                                                                         Average per capita transfer - Cash Transfer -urban
## 12952                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer (preT)
## 12953                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer -rural
## 12954                                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Cash Transfer
## 12955                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - Cash Transfer -urban
## 12956                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer (preT)
## 12957                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer -rural
## 12958                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Cash Transfer 
## 12959                                                                                                                                                                                                                    Average per capita transfer held by 2nd quintile - Cash Transfer -urban
## 12960                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer (preT)
## 12961                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer -rural
## 12962                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Cash Transfer 
## 12963                                                                                                                                                                                                                    Average per capita transfer held by 3rd quintile - Cash Transfer -urban
## 12964                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer (preT)
## 12965                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer -rural
## 12966                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Cash Transfer 
## 12967                                                                                                                                                                                                                    Average per capita transfer held by 4th quintile - Cash Transfer -urban
## 12968                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer (preT)
## 12969                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer -rural
## 12970                                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Cash Transfer
## 12971                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - Cash Transfer -urban
## 12972                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12973                                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12974                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12975                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12976                                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer
## 12977                                                                                                                                                                                                                    Benefits incidence in 1st quintile (poorest) (%) - Cash Transfer -urban
## 12978                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer (preT)
## 12979                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer -rural
## 12980                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Cash Transfer 
## 12981                                                                                                                                                                                                                              Benefits incidence in 2nd quintile (%) - Cash Transfer -urban
## 12982                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer (preT)
## 12983                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer -rural
## 12984                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Cash Transfer 
## 12985                                                                                                                                                                                                                              Benefits incidence in 3rd quintile (%) - Cash Transfer -urban
## 12986                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer (preT)
## 12987                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer -rural
## 12988                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Cash Transfer 
## 12989                                                                                                                                                                                                                              Benefits incidence in 4th quintile (%) - Cash Transfer -urban
## 12990                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer (preT)
## 12991                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer -rural
## 12992                                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Cash Transfer
## 12993                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - Cash Transfer -urban
## 12994                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 12995                                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 12996                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 12997                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer -rural
## 12998                                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer
## 12999                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - Cash Transfer -urban
## 13000                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer (preT)
## 13001                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer -rural
## 13002                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Cash Transfer 
## 13003                                                                                                                                                                                                                           Beneficiary incidence in 2nd quintile (%) - Cash Transfer -urban
## 13004                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer (preT)
## 13005                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer -rural
## 13006                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Cash Transfer 
## 13007                                                                                                                                                                                                                           Beneficiary incidence in 3rd quintile (%) - Cash Transfer -urban
## 13008                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer (preT)
## 13009                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer -rural
## 13010                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Cash Transfer 
## 13011                                                                                                                                                                                                                           Beneficiary incidence in 4th quintile (%) - Cash Transfer -urban
## 13012                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer (preT)
## 13013                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer -rural
## 13014                                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer
## 13015                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - Cash Transfer -urban
## 13016                                                                                                                                                                                                                     Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.9 a day) (preT)
## 13017                                                                                                                                                                                                                            Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.9 a day)
## 13018                                                                                                                                                                                                                         Benefit-cost ratio -  Cash Transfer -1st quintile (poorest) (preT)
## 13019                                                                                                                                                                                                                         Benefit-cost ratio -  Cash Transfer -1st quintile (poorest) -rural
## 13020                                                                                                                                                                                                                                Benefit-cost ratio -  Cash Transfer -1st quintile (poorest)
## 13021                                                                                                                                                                                                                        Benefit-cost ratio -  Cash Transfer - 1st quintile (poorest) -urban
## 13022                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - Cash Transfer  (preT)
## 13023                                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - Cash Transfer
## 13024                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer (preT)
## 13025                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer -rural
## 13026                                                                                                                                                                                                                                                              Coverage (%) - Cash Transfer 
## 13027                                                                                                                                                                                                                                                        Coverage (%) - Cash Transfer -urban
## 13028                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer (preT)
## 13029                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer -rural
## 13030                                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Cash Transfer
## 13031                                                                                                                                                                                                                              Coverage in 1st quintile (poorest) (%) - Cash Transfer -urban
## 13032                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer (preT)
## 13033                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer -rural
## 13034                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Cash Transfer 
## 13035                                                                                                                                                                                                                                        Coverage in 2nd quintile (%) - Cash Transfer -urban
## 13036                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer (preT)
## 13037                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer -rural
## 13038                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Cash Transfer 
## 13039                                                                                                                                                                                                                                        Coverage in 3rd quintile (%) - Cash Transfer -urban
## 13040                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer (preT)
## 13041                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer -rural
## 13042                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Cash Transfer 
## 13043                                                                                                                                                                                                                                        Coverage in 4th quintile (%) - Cash Transfer -urban
## 13044                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer (preT)
## 13045                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer -rural
## 13046                                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Cash Transfer
## 13047                                                                                                                                                                                                                              Coverage in 5th quintile (richest) (%) - Cash Transfer -urban
## 13048                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Cash Transfer -rural
## 13049                                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Cash Transfer
## 13050                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Cash Transfer -urban
## 13051                                                                                                                                                                                                               Poverty Headcount reduction (%) -  Cash Transfer -extreme poor (<$1.9 a day)
## 13052                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Cash Transfer -1st quintile (poorest) -rural
## 13053                                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Cash Transfer -1st quintile (poorest)
## 13054                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Cash Transfer - 1st quintile (poorest) -urban
## 13055                                                                                                                                                                                                                     Poverty Gap reduction (%) -  Cash Transfer -extreme poor (<$1.9 a day)
## 13056                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Cash Transfer -1st quintile (poorest) -rural
## 13057                                                                                                                                                                                                                         Poverty Gap reduction (%) -  Cash Transfer -1st quintile (poorest)
## 13058                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Cash Transfer - 1st quintile (poorest) -urban
## 13059                                                                                                                                                                                                                  Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13060                                                                                                                                                                                                                         Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Subsidies
## 13061                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies (preT)
## 13062                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies -rural
## 13063                                                                                                                                                                                                                                                     Adequacy of benefits (%) - Subsidies  
## 13064                                                                                                                                                                                                                                                Adequacy of benefits (%) - Subsidies -urban
## 13065                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies (preT)
## 13066                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -rural
## 13067                                                                                                                                                                                                                             Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies
## 13068                                                                                                                                                                                                                      Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -urban
## 13069                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies (preT)
## 13070                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies -rural
## 13071                                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - Subsidies  
## 13072                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Subsidies -urban
## 13073                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies (preT)
## 13074                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies -rural
## 13075                                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - Subsidies  
## 13076                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Subsidies -urban
## 13077                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies (preT)
## 13078                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies -rural
## 13079                                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - Subsidies  
## 13080                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Subsidies -urban
## 13081                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies (preT)
## 13082                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -rural
## 13083                                                                                                                                                                                                                             Adequacy of benefits in 5th quintile (richest) (%) - Subsidies
## 13084                                                                                                                                                                                                                      Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -urban
## 13085                                                                                                                                                                                                          Average per capita transfer held by extreme poor (<$1.9 a day) - Subsidies (preT)
## 13086                                                                                                                                                                                                                 Average per capita transfer held by extreme poor (<$1.9 a day) - Subsidies
## 13087                                                                                                                                                                                                                                             Average per capita transfer - Subsidies (preT)
## 13088                                                                                                                                                                                                                                             Average per capita transfer - Subsidies -rural
## 13089                                                                                                                                                                                                                                                  Average per capita transfer - Subsidies  
## 13090                                                                                                                                                                                                                                             Average per capita transfer - Subsidies -urban
## 13091                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies (preT)
## 13092                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies -rural
## 13093                                                                                                                                                                                                                     Average per capita transfer held by 1st quintile (poorest) - Subsidies
## 13094                                                                                                                                                                                                              Average per capita transfer held by 1st quintile (poorest) - Subsidies -urban
## 13095                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies (preT)
## 13096                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies -rural
## 13097                                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - Subsidies  
## 13098                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Subsidies -urban
## 13099                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies (preT)
## 13100                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies -rural
## 13101                                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - Subsidies  
## 13102                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Subsidies -urban
## 13103                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies (preT)
## 13104                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies -rural
## 13105                                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - Subsidies  
## 13106                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Subsidies -urban
## 13107                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies (preT)
## 13108                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies -rural
## 13109                                                                                                                                                                                                                     Average per capita transfer held by 5th quintile (richest) - Subsidies
## 13110                                                                                                                                                                                                              Average per capita transfer held by 5th quintile (richest) - Subsidies -urban
## 13111                                                                                                                                                                                                                    Benefits incidence in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13112                                                                                                                                                                                                                           Benefits incidence in extreme poor (<$1.9 a day) (%) - Subsidies
## 13113                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies (preT)
## 13114                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies -rural
## 13115                                                                                                                                                                                                                               Benefits incidence in 1st quintile (poorest) (%) - Subsidies
## 13116                                                                                                                                                                                                                        Benefits incidence in 1st quintile (poorest) (%) - Subsidies -urban
## 13117                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies (preT)
## 13118                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies -rural
## 13119                                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - Subsidies  
## 13120                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Subsidies -urban
## 13121                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies (preT)
## 13122                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies -rural
## 13123                                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - Subsidies  
## 13124                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Subsidies -urban
## 13125                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies (preT)
## 13126                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies -rural
## 13127                                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - Subsidies  
## 13128                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Subsidies -urban
## 13129                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies (preT)
## 13130                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies -rural
## 13131                                                                                                                                                                                                                               Benefits incidence in 5th quintile (richest) (%) - Subsidies
## 13132                                                                                                                                                                                                                        Benefits incidence in 5th quintile (richest) (%) - Subsidies -urban
## 13133                                                                                                                                                                                                                 Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13134                                                                                                                                                                                                                        Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Subsidies
## 13135                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies (preT)
## 13136                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -rural
## 13137                                                                                                                                                                                                                            Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies
## 13138                                                                                                                                                                                                                     Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -urban
## 13139                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies (preT)
## 13140                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies -rural
## 13141                                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - Subsidies  
## 13142                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Subsidies -urban
## 13143                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies (preT)
## 13144                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies -rural
## 13145                                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - Subsidies  
## 13146                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Subsidies -urban
## 13147                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies (preT)
## 13148                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies -rural
## 13149                                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - Subsidies  
## 13150                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Subsidies -urban
## 13151                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies (preT)
## 13152                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -rural
## 13153                                                                                                                                                                                                                            Beneficiary incidence in 5th quintile (richest) (%) - Subsidies
## 13154                                                                                                                                                                                                                     Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -urban
## 13155                                                                                                                                                                                                                         Benefit-cost ratio -  Subsidies -extreme poor (<$1.9 a day) (preT)
## 13156                                                                                                                                                                                                                                Benefit-cost ratio -  Subsidies -extreme poor (<$1.9 a day)
## 13157                                                                                                                                                                                                                             Benefit-cost ratio -  Subsidies -1st quintile (poorest) (preT)
## 13158                                                                                                                                                                                                                             Benefit-cost ratio -  Subsidies -1st quintile (poorest) -rural
## 13159                                                                                                                                                                                                                                    Benefit-cost ratio -  Subsidies -1st quintile (poorest)
## 13160                                                                                                                                                                                                                            Benefit-cost ratio -  Subsidies - 1st quintile (poorest) -urban
## 13161                                                                                                                                                                                                                              Coverage in extreme poor (<$1.9 a day) (%) - Subsidies (preT)
## 13162                                                                                                                                                                                                                                     Coverage in extreme poor (<$1.9 a day) (%) - Subsidies
## 13163                                                                                                                                                                                                                                                            Coverage (%) - Subsidies (preT)
## 13164                                                                                                                                                                                                                                                            Coverage (%) - Subsidies -rural
## 13165                                                                                                                                                                                                                                                                 Coverage (%) - Subsidies  
## 13166                                                                                                                                                                                                                                                            Coverage (%) - Subsidies -urban
## 13167                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies (preT)
## 13168                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies -rural
## 13169                                                                                                                                                                                                                                         Coverage in 1st quintile (poorest) (%) - Subsidies
## 13170                                                                                                                                                                                                                                  Coverage in 1st quintile (poorest) (%) - Subsidies -urban
## 13171                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies (preT)
## 13172                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies -rural
## 13173                                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - Subsidies  
## 13174                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Subsidies -urban
## 13175                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies (preT)
## 13176                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies -rural
## 13177                                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - Subsidies  
## 13178                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Subsidies -urban
## 13179                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies (preT)
## 13180                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies -rural
## 13181                                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - Subsidies  
## 13182                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Subsidies -urban
## 13183                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies (preT)
## 13184                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies -rural
## 13185                                                                                                                                                                                                                                         Coverage in 5th quintile (richest) (%) - Subsidies
## 13186                                                                                                                                                                                                                                  Coverage in 5th quintile (richest) (%) - Subsidies -urban
## 13187                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Subsidies -rural
## 13188                                                                                                                                                                                                                                           Gini inequality index reduction (%) -  Subsidies
## 13189                                                                                                                                                                                                                                    Gini inequality index reduction (%) -  Subsidies -urban
## 13190                                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.9 a day)
## 13191                                                                                                                                                                                                                Poverty Headcount reduction (%) -  Subsidies -1st quintile (poorest) -rural
## 13192                                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Subsidies -1st quintile (poorest)
## 13193                                                                                                                                                                                                               Poverty Headcount reduction (%) -  Subsidies - 1st quintile (poorest) -urban
## 13194                                                                                                                                                                                                                         Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.9 a day)
## 13195                                                                                                                                                                                                                      Poverty Gap reduction (%) -  Subsidies -1st quintile (poorest) -rural
## 13196                                                                                                                                                                                                                             Poverty Gap reduction (%) -  Subsidies -1st quintile (poorest)
## 13197                                                                                                                                                                                                                     Poverty Gap reduction (%) -  Subsidies - 1st quintile (poorest) -urban
## 13198                                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13199                                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - In-Kind
## 13200                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind (preT)
## 13201                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind -rural
## 13202                                                                                                                                                                                                                                                       Adequacy of benefits (%) - In-Kind  
## 13203                                                                                                                                                                                                                                                  Adequacy of benefits (%) - In-Kind -urban
## 13204                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind (preT)
## 13205                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -rural
## 13206                                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind
## 13207                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -urban
## 13208                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind (preT)
## 13209                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind -rural
## 13210                                                                                                                                                                                                                                       Adequacy of benefits in 2nd quintile (%) - In-Kind  
## 13211                                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - In-Kind -urban
## 13212                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind (preT)
## 13213                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind -rural
## 13214                                                                                                                                                                                                                                       Adequacy of benefits in 3rd quintile (%) - In-Kind  
## 13215                                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - In-Kind -urban
## 13216                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind (preT)
## 13217                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind -rural
## 13218                                                                                                                                                                                                                                       Adequacy of benefits in 4th quintile (%) - In-Kind  
## 13219                                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - In-Kind -urban
## 13220                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind (preT)
## 13221                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -rural
## 13222                                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - In-Kind
## 13223                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -urban
## 13224                                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - In-Kind (preT)
## 13225                                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - In-Kind
## 13226                                                                                                                                                                                                                                               Average per capita transfer - In-Kind (preT)
## 13227                                                                                                                                                                                                                                               Average per capita transfer - In-Kind -rural
## 13228                                                                                                                                                                                                                                                    Average per capita transfer - In-Kind  
## 13229                                                                                                                                                                                                                                               Average per capita transfer - In-Kind -urban
## 13230                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind (preT)
## 13231                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind -rural
## 13232                                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - In-Kind
## 13233                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - In-Kind -urban
## 13234                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind (preT)
## 13235                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind -rural
## 13236                                                                                                                                                                                                                               Average per capita transfer held by 2nd quintile - In-Kind  
## 13237                                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - In-Kind -urban
## 13238                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind (preT)
## 13239                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind -rural
## 13240                                                                                                                                                                                                                               Average per capita transfer held by 3rd quintile - In-Kind  
## 13241                                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - In-Kind -urban
## 13242                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind (preT)
## 13243                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind -rural
## 13244                                                                                                                                                                                                                               Average per capita transfer held by 4th quintile - In-Kind  
## 13245                                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - In-Kind -urban
## 13246                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind (preT)
## 13247                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind -rural
## 13248                                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - In-Kind
## 13249                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - In-Kind -urban
## 13250                                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13251                                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - In-Kind
## 13252                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind (preT)
## 13253                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind -rural
## 13254                                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - In-Kind
## 13255                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - In-Kind -urban
## 13256                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind (preT)
## 13257                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind -rural
## 13258                                                                                                                                                                                                                                         Benefits incidence in 2nd quintile (%) - In-Kind  
## 13259                                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - In-Kind -urban
## 13260                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind (preT)
## 13261                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind -rural
## 13262                                                                                                                                                                                                                                         Benefits incidence in 3rd quintile (%) - In-Kind  
## 13263                                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - In-Kind -urban
## 13264                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind (preT)
## 13265                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind -rural
## 13266                                                                                                                                                                                                                                         Benefits incidence in 4th quintile (%) - In-Kind  
## 13267                                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - In-Kind -urban
## 13268                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind (preT)
## 13269                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind -rural
## 13270                                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - In-Kind
## 13271                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - In-Kind -urban
## 13272                                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13273                                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - In-Kind
## 13274                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind (preT)
## 13275                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -rural
## 13276                                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind
## 13277                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -urban
## 13278                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind (preT)
## 13279                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind -rural
## 13280                                                                                                                                                                                                                                      Beneficiary incidence in 2nd quintile (%) - In-Kind  
## 13281                                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - In-Kind -urban
## 13282                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind (preT)
## 13283                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind -rural
## 13284                                                                                                                                                                                                                                      Beneficiary incidence in 3rd quintile (%) - In-Kind  
## 13285                                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - In-Kind -urban
## 13286                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind (preT)
## 13287                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind -rural
## 13288                                                                                                                                                                                                                                      Beneficiary incidence in 4th quintile (%) - In-Kind  
## 13289                                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - In-Kind -urban
## 13290                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind (preT)
## 13291                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -rural
## 13292                                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - In-Kind
## 13293                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -urban
## 13294                                                                                                                                                                                                                           Benefit-cost ratio -  In-Kind -extreme poor (<$1.9 a day) (preT)
## 13295                                                                                                                                                                                                                                  Benefit-cost ratio -  In-Kind -extreme poor (<$1.9 a day)
## 13296                                                                                                                                                                                                                               Benefit-cost ratio -  In-Kind -1st quintile (poorest) (preT)
## 13297                                                                                                                                                                                                                               Benefit-cost ratio -  In-Kind -1st quintile (poorest) -rural
## 13298                                                                                                                                                                                                                                      Benefit-cost ratio -  In-Kind -1st quintile (poorest)
## 13299                                                                                                                                                                                                                              Benefit-cost ratio -  In-Kind - 1st quintile (poorest) -urban
## 13300                                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - In-Kind (preT)
## 13301                                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - In-Kind
## 13302                                                                                                                                                                                                                                                              Coverage (%) - In-Kind (preT)
## 13303                                                                                                                                                                                                                                                              Coverage (%) - In-Kind -rural
## 13304                                                                                                                                                                                                                                                                   Coverage (%) - In-Kind  
## 13305                                                                                                                                                                                                                                                              Coverage (%) - In-Kind -urban
## 13306                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind (preT)
## 13307                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind -rural
## 13308                                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - In-Kind
## 13309                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - In-Kind -urban
## 13310                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind (preT)
## 13311                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind -rural
## 13312                                                                                                                                                                                                                                                   Coverage in 2nd quintile (%) - In-Kind  
## 13313                                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - In-Kind -urban
## 13314                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind (preT)
## 13315                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind -rural
## 13316                                                                                                                                                                                                                                                   Coverage in 3rd quintile (%) - In-Kind  
## 13317                                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - In-Kind -urban
## 13318                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind (preT)
## 13319                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind -rural
## 13320                                                                                                                                                                                                                                                   Coverage in 4th quintile (%) - In-Kind  
## 13321                                                                                                                                                                                                                                              Coverage in 4th quintile (%) - In-Kind -urban
## 13322                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind (preT)
## 13323                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind -rural
## 13324                                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - In-Kind
## 13325                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - In-Kind -urban
## 13326                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  In-Kind -rural
## 13327                                                                                                                                                                                                                                             Gini inequality index reduction (%) -  In-Kind
## 13328                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  In-Kind -urban
## 13329                                                                                                                                                                                                                     Poverty Headcount reduction (%) -  In-Kind -extreme poor (<$1.9 a day)
## 13330                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  In-Kind -1st quintile (poorest) -rural
## 13331                                                                                                                                                                                                                         Poverty Headcount reduction (%) -  In-Kind -1st quintile (poorest)
## 13332                                                                                                                                                                                                                 Poverty Headcount reduction (%) -  In-Kind - 1st quintile (poorest) -urban
## 13333                                                                                                                                                                                                                           Poverty Gap reduction (%) -  In-Kind -extreme poor (<$1.9 a day)
## 13334                                                                                                                                                                                                                        Poverty Gap reduction (%) -  In-Kind -1st quintile (poorest) -rural
## 13335                                                                                                                                                                                                                               Poverty Gap reduction (%) -  In-Kind -1st quintile (poorest)
## 13336                                                                                                                                                                                                                       Poverty Gap reduction (%) -  In-Kind - 1st quintile (poorest) -urban
## 13337                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13338                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13339                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance (preT)
## 13340                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance -rural
## 13341                                                                                                                                                                                                                                       Adequacy of benefits (%) - Other Social Assistance  
## 13342                                                                                                                                                                                                                                  Adequacy of benefits (%) - Other Social Assistance -urban
## 13343                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13344                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13345                                                                                                                                                                                                               Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance
## 13346                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13347                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance (preT)
## 13348                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -rural
## 13349                                                                                                                                                                                                                       Adequacy of benefits in 2nd quintile (%) - Other Social Assistance  
## 13350                                                                                                                                                                                                                  Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -urban
## 13351                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance (preT)
## 13352                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -rural
## 13353                                                                                                                                                                                                                       Adequacy of benefits in 3rd quintile (%) - Other Social Assistance  
## 13354                                                                                                                                                                                                                  Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -urban
## 13355                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance (preT)
## 13356                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance -rural
## 13357                                                                                                                                                                                                                       Adequacy of benefits in 4th quintile (%) - Other Social Assistance  
## 13358                                                                                                                                                                                                                  Adequacy of benefits in 4th quintile (%) - Other Social Assistance -urban
## 13359                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13360                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13361                                                                                                                                                                                                               Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance
## 13362                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13363                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Assistance (preT)
## 13364                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Assistance
## 13365                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance (preT)
## 13366                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance -rural
## 13367                                                                                                                                                                                                                                    Average per capita transfer - Other Social Assistance  
## 13368                                                                                                                                                                                                                               Average per capita transfer - Other Social Assistance -urban
## 13369                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance (preT)
## 13370                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -rural
## 13371                                                                                                                                                                                                       Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance
## 13372                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -urban
## 13373                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance (preT)
## 13374                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance -rural
## 13375                                                                                                                                                                                                               Average per capita transfer held by 2nd quintile - Other Social Assistance  
## 13376                                                                                                                                                                                                          Average per capita transfer held by 2nd quintile - Other Social Assistance -urban
## 13377                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance (preT)
## 13378                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance -rural
## 13379                                                                                                                                                                                                               Average per capita transfer held by 3rd quintile - Other Social Assistance  
## 13380                                                                                                                                                                                                          Average per capita transfer held by 3rd quintile - Other Social Assistance -urban
## 13381                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance (preT)
## 13382                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance -rural
## 13383                                                                                                                                                                                                               Average per capita transfer held by 4th quintile - Other Social Assistance  
## 13384                                                                                                                                                                                                          Average per capita transfer held by 4th quintile - Other Social Assistance -urban
## 13385                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance (preT)
## 13386                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -rural
## 13387                                                                                                                                                                                                       Average per capita transfer held by 5th quintile (richest) - Other Social Assistance
## 13388                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -urban
## 13389                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13390                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13391                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13392                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13393                                                                                                                                                                                                                 Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance
## 13394                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13395                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance (preT)
## 13396                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance -rural
## 13397                                                                                                                                                                                                                         Benefits incidence in 2nd quintile (%) - Other Social Assistance  
## 13398                                                                                                                                                                                                                    Benefits incidence in 2nd quintile (%) - Other Social Assistance -urban
## 13399                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance (preT)
## 13400                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance -rural
## 13401                                                                                                                                                                                                                         Benefits incidence in 3rd quintile (%) - Other Social Assistance  
## 13402                                                                                                                                                                                                                    Benefits incidence in 3rd quintile (%) - Other Social Assistance -urban
## 13403                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance (preT)
## 13404                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance -rural
## 13405                                                                                                                                                                                                                         Benefits incidence in 4th quintile (%) - Other Social Assistance  
## 13406                                                                                                                                                                                                                    Benefits incidence in 4th quintile (%) - Other Social Assistance -urban
## 13407                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13408                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13409                                                                                                                                                                                                                 Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance
## 13410                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13411                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13412                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13413                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13414                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13415                                                                                                                                                                                                              Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance
## 13416                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13417                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT)
## 13418                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -rural
## 13419                                                                                                                                                                                                                      Beneficiary incidence in 2nd quintile (%) - Other Social Assistance  
## 13420                                                                                                                                                                                                                 Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -urban
## 13421                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT)
## 13422                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -rural
## 13423                                                                                                                                                                                                                      Beneficiary incidence in 3rd quintile (%) - Other Social Assistance  
## 13424                                                                                                                                                                                                                 Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -urban
## 13425                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT)
## 13426                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance -rural
## 13427                                                                                                                                                                                                                      Beneficiary incidence in 4th quintile (%) - Other Social Assistance  
## 13428                                                                                                                                                                                                                 Beneficiary incidence in 4th quintile (%) - Other Social Assistance -urban
## 13429                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13430                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13431                                                                                                                                                                                                              Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance
## 13432                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13433                                                                                                                                                                                                           Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.9 a day) (preT)
## 13434                                                                                                                                                                                                                  Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13435                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest) (preT)
## 13436                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest) -rural
## 13437                                                                                                                                                                                                                      Benefit-cost ratio -  Other Social Assistance -1st quintile (poorest)
## 13438                                                                                                                                                                                                              Benefit-cost ratio -  Other Social Assistance - 1st quintile (poorest) -urban
## 13439                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - Other Social Assistance (preT)
## 13440                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - Other Social Assistance
## 13441                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance (preT)
## 13442                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance -rural
## 13443                                                                                                                                                                                                                                                   Coverage (%) - Other Social Assistance  
## 13444                                                                                                                                                                                                                                              Coverage (%) - Other Social Assistance -urban
## 13445                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance (preT)
## 13446                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance -rural
## 13447                                                                                                                                                                                                                           Coverage in 1st quintile (poorest) (%) - Other Social Assistance
## 13448                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - Other Social Assistance -urban
## 13449                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance (preT)
## 13450                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance -rural
## 13451                                                                                                                                                                                                                                   Coverage in 2nd quintile (%) - Other Social Assistance  
## 13452                                                                                                                                                                                                                              Coverage in 2nd quintile (%) - Other Social Assistance -urban
## 13453                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance (preT)
## 13454                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance -rural
## 13455                                                                                                                                                                                                                                   Coverage in 3rd quintile (%) - Other Social Assistance  
## 13456                                                                                                                                                                                                                              Coverage in 3rd quintile (%) - Other Social Assistance -urban
## 13457                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance (preT)
## 13458                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance -rural
## 13459                                                                                                                                                                                                                                   Coverage in 4th quintile (%) - Other Social Assistance  
## 13460                                                                                                                                                                                                                              Coverage in 4th quintile (%) - Other Social Assistance -urban
## 13461                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance (preT)
## 13462                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance -rural
## 13463                                                                                                                                                                                                                           Coverage in 5th quintile (richest) (%) - Other Social Assistance
## 13464                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - Other Social Assistance -urban
## 13465                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Other Social Assistance -rural
## 13466                                                                                                                                                                                                                             Gini inequality index reduction (%) -  Other Social Assistance
## 13467                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Other Social Assistance -urban
## 13468                                                                                                                                                                                                     Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13469                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Other Social Assistance -1st quintile (poorest) -rural
## 13470                                                                                                                                                                                                         Poverty Headcount reduction (%) -  Other Social Assistance -1st quintile (poorest)
## 13471                                                                                                                                                                                                 Poverty Headcount reduction (%) -  Other Social Assistance - 1st quintile (poorest) -urban
## 13472                                                                                                                                                                                                           Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.9 a day)
## 13473                                                                                                                                                                                                        Poverty Gap reduction (%) -  Other Social Assistance -1st quintile (poorest) -rural
## 13474                                                                                                                                                                                                               Poverty Gap reduction (%) -  Other Social Assistance -1st quintile (poorest)
## 13475                                                                                                                                                                                                       Poverty Gap reduction (%) -  Other Social Assistance - 1st quintile (poorest) -urban
## 13476                                                                                                                                                                                                               Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13477                                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Public Works
## 13478                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works (preT)
## 13479                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works -rural
## 13480                                                                                                                                                                                                                                                    Adequacy of benefits (%) - Public Works
## 13481                                                                                                                                                                                                                                             Adequacy of benefits (%) - Public Works -urban
## 13482                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works (preT)
## 13483                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -rural
## 13484                                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Public Works
## 13485                                                                                                                                                                                                                   Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -urban
## 13486                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works (preT)
## 13487                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works -rural
## 13488                                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Public Works
## 13489                                                                                                                                                                                                                             Adequacy of benefits in 2nd quintile (%) - Public Works -urban
## 13490                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works (preT)
## 13491                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works -rural
## 13492                                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Public Works
## 13493                                                                                                                                                                                                                             Adequacy of benefits in 3rd quintile (%) - Public Works -urban
## 13494                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works (preT)
## 13495                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works -rural
## 13496                                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Public Works
## 13497                                                                                                                                                                                                                             Adequacy of benefits in 4th quintile (%) - Public Works -urban
## 13498                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works (preT)
## 13499                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works -rural
## 13500                                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Public Works
## 13501                                                                                                                                                                                                                   Adequacy of benefits in 5th quintile (richest) (%) - Public Works -urban
## 13502                                                                                                                                                                                                       Average per capita transfer held by extreme poor (<$1.9 a day) - Public Works (preT)
## 13503                                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - Public Works
## 13504                                                                                                                                                                                                                                          Average per capita transfer - Public Works (preT)
## 13505                                                                                                                                                                                                                                          Average per capita transfer - Public Works -rural
## 13506                                                                                                                                                                                                                                                 Average per capita transfer - Public Works
## 13507                                                                                                                                                                                                                                          Average per capita transfer - Public Works -urban
## 13508                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works (preT)
## 13509                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works -rural
## 13510                                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Public Works
## 13511                                                                                                                                                                                                           Average per capita transfer held by 1st quintile (poorest) - Public Works -urban
## 13512                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works (preT)
## 13513                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works -rural
## 13514                                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Public Works
## 13515                                                                                                                                                                                                                     Average per capita transfer held by 2nd quintile - Public Works -urban
## 13516                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works (preT)
## 13517                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works -rural
## 13518                                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Public Works
## 13519                                                                                                                                                                                                                     Average per capita transfer held by 3rd quintile - Public Works -urban
## 13520                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works (preT)
## 13521                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works -rural
## 13522                                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Public Works
## 13523                                                                                                                                                                                                                     Average per capita transfer held by 4th quintile - Public Works -urban
## 13524                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works (preT)
## 13525                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works -rural
## 13526                                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Public Works
## 13527                                                                                                                                                                                                           Average per capita transfer held by 5th quintile (richest) - Public Works -urban
## 13528                                                                                                                                                                                                                 Benefits incidence in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13529                                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - Public Works
## 13530                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works (preT)
## 13531                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works -rural
## 13532                                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Public Works
## 13533                                                                                                                                                                                                                     Benefits incidence in 1st quintile (poorest) (%) - Public Works -urban
## 13534                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works (preT)
## 13535                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works -rural
## 13536                                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Public Works
## 13537                                                                                                                                                                                                                               Benefits incidence in 2nd quintile (%) - Public Works -urban
## 13538                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works (preT)
## 13539                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works -rural
## 13540                                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Public Works
## 13541                                                                                                                                                                                                                               Benefits incidence in 3rd quintile (%) - Public Works -urban
## 13542                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works (preT)
## 13543                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works -rural
## 13544                                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Public Works
## 13545                                                                                                                                                                                                                               Benefits incidence in 4th quintile (%) - Public Works -urban
## 13546                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works (preT)
## 13547                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works -rural
## 13548                                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Public Works
## 13549                                                                                                                                                                                                                     Benefits incidence in 5th quintile (richest) (%) - Public Works -urban
## 13550                                                                                                                                                                                                              Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13551                                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Public Works
## 13552                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works (preT)
## 13553                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -rural
## 13554                                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Public Works
## 13555                                                                                                                                                                                                                  Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -urban
## 13556                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works (preT)
## 13557                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works -rural
## 13558                                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Public Works
## 13559                                                                                                                                                                                                                            Beneficiary incidence in 2nd quintile (%) - Public Works -urban
## 13560                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works (preT)
## 13561                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works -rural
## 13562                                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Public Works
## 13563                                                                                                                                                                                                                            Beneficiary incidence in 3rd quintile (%) - Public Works -urban
## 13564                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works (preT)
## 13565                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works -rural
## 13566                                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Public Works
## 13567                                                                                                                                                                                                                            Beneficiary incidence in 4th quintile (%) - Public Works -urban
## 13568                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works (preT)
## 13569                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works -rural
## 13570                                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Public Works
## 13571                                                                                                                                                                                                                  Beneficiary incidence in 5th quintile (richest) (%) - Public Works -urban
## 13572                                                                                                                                                                                                                      Benefit-cost ratio -  Public Works -extreme poor (<$1.9 a day) (preT)
## 13573                                                                                                                                                                                                                             Benefit-cost ratio -  Public Works -extreme poor (<$1.9 a day)
## 13574                                                                                                                                                                                                                          Benefit-cost ratio -  Public Works -1st quintile (poorest) (preT)
## 13575                                                                                                                                                                                                                          Benefit-cost ratio -  Public Works -1st quintile (poorest) -rural
## 13576                                                                                                                                                                                                                                 Benefit-cost ratio -  Public Works -1st quintile (poorest)
## 13577                                                                                                                                                                                                                         Benefit-cost ratio -  Public Works - 1st quintile (poorest) -urban
## 13578                                                                                                                                                                                                                           Coverage in extreme poor (<$1.9 a day) (%) - Public Works (preT)
## 13579                                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - Public Works
## 13580                                                                                                                                                                                                                                                         Coverage (%) - Public Works (preT)
## 13581                                                                                                                                                                                                                                                         Coverage (%) - Public Works -rural
## 13582                                                                                                                                                                                                                                                                Coverage (%) - Public Works
## 13583                                                                                                                                                                                                                                                         Coverage (%) - Public Works -urban
## 13584                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works (preT)
## 13585                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works -rural
## 13586                                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Public Works
## 13587                                                                                                                                                                                                                               Coverage in 1st quintile (poorest) (%) - Public Works -urban
## 13588                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works (preT)
## 13589                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works -rural
## 13590                                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Public Works
## 13591                                                                                                                                                                                                                                         Coverage in 2nd quintile (%) - Public Works -urban
## 13592                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works (preT)
## 13593                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works -rural
## 13594                                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Public Works
## 13595                                                                                                                                                                                                                                         Coverage in 3rd quintile (%) - Public Works -urban
## 13596                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works (preT)
## 13597                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works -rural
## 13598                                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Public Works
## 13599                                                                                                                                                                                                                                         Coverage in 4th quintile (%) - Public Works -urban
## 13600                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works (preT)
## 13601                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works -rural
## 13602                                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Public Works
## 13603                                                                                                                                                                                                                               Coverage in 5th quintile (richest) (%) - Public Works -urban
## 13604                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Public Works -rural
## 13605                                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Public Works
## 13606                                                                                                                                                                                                                                 Gini inequality index reduction (%) -  Public Works -urban
## 13607                                                                                                                                                                                                                Poverty Headcount reduction (%) -  Public Works -extreme poor (<$1.9 a day)
## 13608                                                                                                                                                                                                             Poverty Headcount reduction (%) -  Public Works -1st quintile (poorest) -rural
## 13609                                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Public Works -1st quintile (poorest)
## 13610                                                                                                                                                                                                            Poverty Headcount reduction (%) -  Public Works - 1st quintile (poorest) -urban
## 13611                                                                                                                                                                                                                      Poverty Gap reduction (%) -  Public Works -extreme poor (<$1.9 a day)
## 13612                                                                                                                                                                                                                   Poverty Gap reduction (%) -  Public Works -1st quintile (poorest) -rural
## 13613                                                                                                                                                                                                                          Poverty Gap reduction (%) -  Public Works -1st quintile (poorest)
## 13614                                                                                                                                                                                                                  Poverty Gap reduction (%) -  Public Works - 1st quintile (poorest) -urban
## 13615                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13616                                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - School Feeding
## 13617                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding (preT)
## 13618                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding -rural
## 13619                                                                                                                                                                                                                                                Adequacy of benefits (%) - School Feeding  
## 13620                                                                                                                                                                                                                                           Adequacy of benefits (%) - School Feeding -urban
## 13621                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding (preT)
## 13622                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -rural
## 13623                                                                                                                                                                                                                        Adequacy of benefits in 1st quintile (poorest) (%) - School feeding
## 13624                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -urban
## 13625                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding (preT)
## 13626                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding -rural
## 13627                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - School Feeding  
## 13628                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - School Feeding -urban
## 13629                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding (preT)
## 13630                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding -rural
## 13631                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - School Feeding  
## 13632                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - School Feeding -urban
## 13633                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding (preT)
## 13634                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding -rural
## 13635                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - School Feeding  
## 13636                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - School Feeding -urban
## 13637                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding (preT)
## 13638                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding -rural
## 13639                                                                                                                                                                                                                        Adequacy of benefits in 5th quintile (richest) (%) - School feeding
## 13640                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - School feeding -urban
## 13641                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - School Feeding (preT)
## 13642                                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - School Feeding
## 13643                                                                                                                                                                                                                                        Average per capita transfer - School Feeding (preT)
## 13644                                                                                                                                                                                                                                        Average per capita transfer - School Feeding -rural
## 13645                                                                                                                                                                                                                                             Average per capita transfer - School Feeding  
## 13646                                                                                                                                                                                                                                        Average per capita transfer - School Feeding -urban
## 13647                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding (preT)
## 13648                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding -rural
## 13649                                                                                                                                                                                                                Average per capita transfer held by 1st quintile (poorest) - School feeding
## 13650                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - School feeding -urban
## 13651                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding (preT)
## 13652                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding -rural
## 13653                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - School Feeding  
## 13654                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - School Feeding -urban
## 13655                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding (preT)
## 13656                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding -rural
## 13657                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - School Feeding  
## 13658                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - School Feeding -urban
## 13659                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding (preT)
## 13660                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding -rural
## 13661                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - School Feeding  
## 13662                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - School Feeding -urban
## 13663                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding (preT)
## 13664                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding -rural
## 13665                                                                                                                                                                                                                Average per capita transfer held by 5th quintile (richest) - School feeding
## 13666                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - School feeding -urban
## 13667                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13668                                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - School Feeding
## 13669                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding (preT)
## 13670                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding -rural
## 13671                                                                                                                                                                                                                          Benefits incidence in 1st quintile (poorest) (%) - School feeding
## 13672                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - School feeding -urban
## 13673                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding (preT)
## 13674                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding -rural
## 13675                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - School Feeding  
## 13676                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - School Feeding -urban
## 13677                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding (preT)
## 13678                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding -rural
## 13679                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - School Feeding  
## 13680                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - School Feeding -urban
## 13681                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding (preT)
## 13682                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding -rural
## 13683                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - School Feeding  
## 13684                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - School Feeding -urban
## 13685                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding (preT)
## 13686                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding -rural
## 13687                                                                                                                                                                                                                          Benefits incidence in 5th quintile (richest) (%) - School feeding
## 13688                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - School feeding -urban
## 13689                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13690                                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - School Feeding
## 13691                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding (preT)
## 13692                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -rural
## 13693                                                                                                                                                                                                                       Beneficiary incidence in 1st quintile (poorest) (%) - School feeding
## 13694                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -urban
## 13695                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding (preT)
## 13696                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding -rural
## 13697                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - School Feeding  
## 13698                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - School Feeding -urban
## 13699                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding (preT)
## 13700                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding -rural
## 13701                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - School Feeding  
## 13702                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - School Feeding -urban
## 13703                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding (preT)
## 13704                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding -rural
## 13705                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - School Feeding  
## 13706                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - School Feeding -urban
## 13707                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding (preT)
## 13708                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding -rural
## 13709                                                                                                                                                                                                                       Beneficiary incidence in 5th quintile (richest) (%) - School feeding
## 13710                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - School feeding -urban
## 13711                                                                                                                                                                                                                    Benefit-cost ratio -  School-feeding -extreme poor (<$1.9 a day) (preT)
## 13712                                                                                                                                                                                                                           Benefit-cost ratio -  School-feeding -extreme poor (<$1.9 a day)
## 13713                                                                                                                                                                                                                        Benefit-cost ratio -  School-feeding -1st quintile (poorest) (preT)
## 13714                                                                                                                                                                                                                        Benefit-cost ratio -  School-feeding -1st quintile (poorest) -rural
## 13715                                                                                                                                                                                                                               Benefit-cost ratio -  School-feeding -1st quintile (poorest)
## 13716                                                                                                                                                                                                                       Benefit-cost ratio -  School-feeding - 1st quintile (poorest) -urban
## 13717                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - School Feeding (preT)
## 13718                                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - School Feeding
## 13719                                                                                                                                                                                                                                                       Coverage (%) - School Feeding (preT)
## 13720                                                                                                                                                                                                                                                       Coverage (%) - School Feeding -rural
## 13721                                                                                                                                                                                                                                                            Coverage (%) - School Feeding  
## 13722                                                                                                                                                                                                                                                       Coverage (%) - School Feeding -urban
## 13723                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding (preT)
## 13724                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding -rural
## 13725                                                                                                                                                                                                                                    Coverage in 1st quintile (poorest) (%) - School feeding
## 13726                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - School feeding -urban
## 13727                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding (preT)
## 13728                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding -rural
## 13729                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - School Feeding  
## 13730                                                                                                                                                                                                                                       Coverage in 2nd quintile (%) - School Feeding -urban
## 13731                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding (preT)
## 13732                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding -rural
## 13733                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - School Feeding  
## 13734                                                                                                                                                                                                                                       Coverage in 3rd quintile (%) - School Feeding -urban
## 13735                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding (preT)
## 13736                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding -rural
## 13737                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - School Feeding  
## 13738                                                                                                                                                                                                                                       Coverage in 4th quintile (%) - School Feeding -urban
## 13739                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding (preT)
## 13740                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding -rural
## 13741                                                                                                                                                                                                                                    Coverage in 5th quintile (richest) (%) - School feeding
## 13742                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - School feeding -urban
## 13743                                                                                                                                                                                                                               Gini inequality index reduction (%) -  School-feeding -rural
## 13744                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  School-feeding
## 13745                                                                                                                                                                                                                               Gini inequality index reduction (%) -  School-feeding -urban
## 13746                                                                                                                                                                                                              Poverty Headcount reduction (%) -  School-feeding -extreme poor (<$1.9 a day)
## 13747                                                                                                                                                                                                           Poverty Headcount reduction (%) -  School-feeding -1st quintile (poorest) -rural
## 13748                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  School-feeding -1st quintile (poorest)
## 13749                                                                                                                                                                                                          Poverty Headcount reduction (%) -  School-feeding - 1st quintile (poorest) -urban
## 13750                                                                                                                                                                                                                    Poverty Gap reduction (%) -  School-feeding -extreme poor (<$1.9 a day)
## 13751                                                                                                                                                                                                                 Poverty Gap reduction (%) -  School-feeding -1st quintile (poorest) -rural
## 13752                                                                                                                                                                                                                        Poverty Gap reduction (%) -  School-feeding -1st quintile (poorest)
## 13753                                                                                                                                                                                                                Poverty Gap reduction (%) -  School-feeding - 1st quintile (poorest) -urban
## 13754                                                                                                                                                                                                           Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13755                                                                                                                                                                                                                   Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13756                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions (preT)
## 13757                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions -rural
## 13758                                                                                                                                                                                                                                                Adequacy of benefits (%) - Social Pensions 
## 13759                                                                                                                                                                                                                                          Adequacy of benefits (%) - Social Pensions -urban
## 13760                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13761                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -rural
## 13762                                                                                                                                                                                                                       Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions
## 13763                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -urban
## 13764                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions (preT)
## 13765                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions -rural
## 13766                                                                                                                                                                                                                                Adequacy of benefits in 2nd quintile (%) - Social Pensions 
## 13767                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Social Pensions -urban
## 13768                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions (preT)
## 13769                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions -rural
## 13770                                                                                                                                                                                                                                Adequacy of benefits in 3rd quintile (%) - Social Pensions 
## 13771                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Social Pensions -urban
## 13772                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions (preT)
## 13773                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions -rural
## 13774                                                                                                                                                                                                                                Adequacy of benefits in 4th quintile (%) - Social Pensions 
## 13775                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Social Pensions -urban
## 13776                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions (preT)
## 13777                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -rural
## 13778                                                                                                                                                                                                                       Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions
## 13779                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -urban
## 13780                                                                                                                                                                                                   Average per capita transfer held by extreme poor (<$1.9 a day) - Social Pensions  (preT)
## 13781                                                                                                                                                                                                           Average per capita transfer held by extreme poor (<$1.9 a day) - Social Pensions
## 13782                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions (preT)
## 13783                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions -rural
## 13784                                                                                                                                                                                                                                             Average per capita transfer - Social Pensions 
## 13785                                                                                                                                                                                                                                       Average per capita transfer - Social Pensions -urban
## 13786                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions (preT)
## 13787                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions -rural
## 13788                                                                                                                                                                                                               Average per capita transfer held by 1st quintile (poorest) - Social Pensions
## 13789                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Social Pensions -urban
## 13790                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions (preT)
## 13791                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions -rural
## 13792                                                                                                                                                                                                                        Average per capita transfer held by 2nd quintile - Social Pensions 
## 13793                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Social Pensions -urban
## 13794                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions (preT)
## 13795                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions -rural
## 13796                                                                                                                                                                                                                        Average per capita transfer held by 3rd quintile - Social Pensions 
## 13797                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Social Pensions -urban
## 13798                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions (preT)
## 13799                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions -rural
## 13800                                                                                                                                                                                                                        Average per capita transfer held by 4th quintile - Social Pensions 
## 13801                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Social Pensions -urban
## 13802                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions (preT)
## 13803                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions -rural
## 13804                                                                                                                                                                                                               Average per capita transfer held by 5th quintile (richest) - Social Pensions
## 13805                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Social Pensions -urban
## 13806                                                                                                                                                                                                             Benefits incidence in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13807                                                                                                                                                                                                                     Benefits incidence in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13808                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13809                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -rural
## 13810                                                                                                                                                                                                                         Benefits incidence in 1st quintile (poorest) (%) - Social Pensions
## 13811                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -urban
## 13812                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions (preT)
## 13813                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions -rural
## 13814                                                                                                                                                                                                                                  Benefits incidence in 2nd quintile (%) - Social Pensions 
## 13815                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Social Pensions -urban
## 13816                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions (preT)
## 13817                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions -rural
## 13818                                                                                                                                                                                                                                  Benefits incidence in 3rd quintile (%) - Social Pensions 
## 13819                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Social Pensions -urban
## 13820                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions (preT)
## 13821                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions -rural
## 13822                                                                                                                                                                                                                                  Benefits incidence in 4th quintile (%) - Social Pensions 
## 13823                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Social Pensions -urban
## 13824                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions (preT)
## 13825                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions -rural
## 13826                                                                                                                                                                                                                         Benefits incidence in 5th quintile (richest) (%) - Social Pensions
## 13827                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Social Pensions -urban
## 13828                                                                                                                                                                                                          Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13829                                                                                                                                                                                                                  Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13830                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13831                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -rural
## 13832                                                                                                                                                                                                                      Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions
## 13833                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -urban
## 13834                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions (preT)
## 13835                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions -rural
## 13836                                                                                                                                                                                                                               Beneficiary incidence in 2nd quintile (%) - Social Pensions 
## 13837                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Social Pensions -urban
## 13838                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions (preT)
## 13839                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions -rural
## 13840                                                                                                                                                                                                                               Beneficiary incidence in 3rd quintile (%) - Social Pensions 
## 13841                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Social Pensions -urban
## 13842                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions (preT)
## 13843                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions -rural
## 13844                                                                                                                                                                                                                               Beneficiary incidence in 4th quintile (%) - Social Pensions 
## 13845                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Social Pensions -urban
## 13846                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions (preT)
## 13847                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -rural
## 13848                                                                                                                                                                                                                      Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions
## 13849                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -urban
## 13850                                                                                                                                                                                                                    Benefit-cost ratio -  Social Pension -extreme poor (<$1.9 a day) (preT)
## 13851                                                                                                                                                                                                                           Benefit-cost ratio -  Social Pension -extreme poor (<$1.9 a day)
## 13852                                                                                                                                                                                                                        Benefit-cost ratio -  Social Pension -1st quintile (poorest) (preT)
## 13853                                                                                                                                                                                                                        Benefit-cost ratio -  Social Pension -1st quintile (poorest) -rural
## 13854                                                                                                                                                                                                                               Benefit-cost ratio -  Social Pension -1st quintile (poorest)
## 13855                                                                                                                                                                                                                       Benefit-cost ratio -  Social Pension - 1st quintile (poorest) -urban
## 13856                                                                                                                                                                                                                       Coverage in extreme poor (<$1.9 a day) (%) - Social Pensions  (preT)
## 13857                                                                                                                                                                                                                               Coverage in extreme poor (<$1.9 a day) (%) - Social Pensions
## 13858                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions (preT)
## 13859                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions -rural
## 13860                                                                                                                                                                                                                                                            Coverage (%) - Social Pensions 
## 13861                                                                                                                                                                                                                                                      Coverage (%) - Social Pensions -urban
## 13862                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions (preT)
## 13863                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions -rural
## 13864                                                                                                                                                                                                                                   Coverage in 1st quintile (poorest) (%) - Social Pensions
## 13865                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Social Pensions -urban
## 13866                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions (preT)
## 13867                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions -rural
## 13868                                                                                                                                                                                                                                            Coverage in 2nd quintile (%) - Social Pensions 
## 13869                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Social Pensions -urban
## 13870                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions (preT)
## 13871                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions -rural
## 13872                                                                                                                                                                                                                                            Coverage in 3rd quintile (%) - Social Pensions 
## 13873                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Social Pensions -urban
## 13874                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions (preT)
## 13875                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions -rural
## 13876                                                                                                                                                                                                                                            Coverage in 4th quintile (%) - Social Pensions 
## 13877                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Social Pensions -urban
## 13878                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions (preT)
## 13879                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions -rural
## 13880                                                                                                                                                                                                                                   Coverage in 5th quintile (richest) (%) - Social Pensions
## 13881                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Social Pensions -urban
## 13882                                                                                                                                                                                                                                Gini inequality index reduction (%) -  Social Pension-rural
## 13883                                                                                                                                                                                                                                      Gini inequality index reduction (%) -  Social Pension
## 13884                                                                                                                                                                                                                               Gini inequality index reduction (%) -  Social Pension -urban
## 13885                                                                                                                                                                                                              Poverty Headcount reduction (%) -  Social Pension -extreme poor (<$1.9 a day)
## 13886                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Social Pension -1st quintile (poorest) -rural
## 13887                                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Social Pension -1st quintile (poorest)
## 13888                                                                                                                                                                                                          Poverty Headcount reduction (%) -  Social Pension - 1st quintile (poorest) -urban
## 13889                                                                                                                                                                                                                    Poverty Gap reduction (%) -  Social Pension -extreme poor (<$1.9 a day)
## 13890                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Social Pension -1st quintile (poorest) -rural
## 13891                                                                                                                                                                                                                        Poverty Gap reduction (%) -  Social Pension -1st quintile (poorest)
## 13892                                                                                                                                                                                                                Poverty Gap reduction (%) -  Social Pension - 1st quintile (poorest) -urban
## 13893                                                                                                                                                                                                    Population in extreme poor (<$1.9 a day) only receiving All Social Assistance (%, preT)
## 13894                                                                                                                                                                                                          Population in extreme poor (<$1.9 a day) only receiving All Social Assistance (%)
## 13895                                                                                                                                                                                                                                  Population only receiving All Social Assistance (%, preT)
## 13896                                                                                                                                                                                                                                 Population only receiving All Social Assistance (%) -rural
## 13897                                                                                                                                                                                                                                        Population only receiving All Social Assistance (%)
## 13898                                                                                                                                                                                                                                 Population only receiving All Social Assistance (%) -urban
## 13899                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Assistance (%, preT)
## 13900                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -rural
## 13901                                                                                                                                                                                                          Population in the 1st quintile (poorest) only receiving All Social Assistance (%)
## 13902                                                                                                                                                                                                   Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -urban
## 13903                                                                                                                                                                                                   Population in extreme poor (<$1.9 a day) receiving Social Assistance and Other (%, preT)
## 13904                                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) receiving Social Assistance and Other (%)
## 13905                                                                                                                                                                                                                                 Population receiving Social Assistance and Other (%, preT)
## 13906                                                                                                                                                                                                                                Population receiving Social Assistance and Other (%) -rural
## 13907                                                                                                                                                                                                                                       Population receiving Social Assistance and Other (%)
## 13908                                                                                                                                                                                                                                Population receiving Social Assistance and Other (%) -urban
## 13909                                                                                                                                                                                                   Population in the 1st quintile (poorest) receiving Social Assistance and Other (%, preT)
## 13910                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -rural
## 13911                                                                                                                                                                                                         Population in the 1st quintile (poorest) receiving Social Assistance and Other (%)
## 13912                                                                                                                                                                                                  Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -urban
## 13913                                                                                                                                                                                                      Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13914                                                                                                                                                                                                              Adequacy of benefits in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13915                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance (preT)
## 13916                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance -rural
## 13917                                                                                                                                                                                                       Adequacy of social insurance programs (% of total welfare of beneficiary households)
## 13918                                                                                                                                                                                                                                     Adequacy of benefits (%) - All Social Insurance -urban
## 13919                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13920                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13921                                                                                                                                                                                                                  Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance
## 13922                                                                                                                                                                                                           Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13923                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance (preT)
## 13924                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance -rural
## 13925                                                                                                                                                                                                                           Adequacy of benefits in 2nd quintile (%) - All Social Insurance 
## 13926                                                                                                                                                                                                                     Adequacy of benefits in 2nd quintile (%) - All Social Insurance -urban
## 13927                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance (preT)
## 13928                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance -rural
## 13929                                                                                                                                                                                                                           Adequacy of benefits in 3rd quintile (%) - All Social Insurance 
## 13930                                                                                                                                                                                                                     Adequacy of benefits in 3rd quintile (%) - All Social Insurance -urban
## 13931                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance (preT)
## 13932                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance -rural
## 13933                                                                                                                                                                                                                           Adequacy of benefits in 4th quintile (%) - All Social Insurance 
## 13934                                                                                                                                                                                                                     Adequacy of benefits in 4th quintile (%) - All Social Insurance -urban
## 13935                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance (preT)
## 13936                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -rural
## 13937                                                                                                                                                                                                                  Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance
## 13938                                                                                                                                                                                                           Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -urban
## 13939                                                                                                                                                                                              Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Insurance  (preT)
## 13940                                                                                                                                                                                                      Average per capita transfer held by extreme poor (<$1.9 a day) - All Social Insurance
## 13941                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance (preT)
## 13942                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance -rural
## 13943                                                                                                                                                                                                                                        Average per capita transfer - All Social Insurance 
## 13944                                                                                                                                                                                                                                  Average per capita transfer - All Social Insurance -urban
## 13945                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance (preT)
## 13946                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -rural
## 13947                                                                                                                                                                                                          Average per capita transfer held by 1st quintile (poorest) - All Social Insurance
## 13948                                                                                                                                                                                                   Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -urban
## 13949                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance (preT)
## 13950                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance -rural
## 13951                                                                                                                                                                                                                   Average per capita transfer held by 2nd quintile - All Social Insurance 
## 13952                                                                                                                                                                                                             Average per capita transfer held by 2nd quintile - All Social Insurance -urban
## 13953                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance (preT)
## 13954                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance -rural
## 13955                                                                                                                                                                                                                   Average per capita transfer held by 3rd quintile - All Social Insurance 
## 13956                                                                                                                                                                                                             Average per capita transfer held by 3rd quintile - All Social Insurance -urban
## 13957                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance (preT)
## 13958                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance -rural
## 13959                                                                                                                                                                                                                   Average per capita transfer held by 4th quintile - All Social Insurance 
## 13960                                                                                                                                                                                                             Average per capita transfer held by 4th quintile - All Social Insurance -urban
## 13961                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance (preT)
## 13962                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance -rural
## 13963                                                                                                                                                                                                          Average per capita transfer held by 5th quintile (richest) - All Social Insurance
## 13964                                                                                                                                                                                                   Average per capita transfer held by 5th quintile (richest) - All Social Insurance -urban
## 13965                                                                                                                                                                                                        Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13966                                                                                                                                                                                                                Benefits incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13967                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13968                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13969                                                                                                                                                                                  Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits)
## 13970                                                                                                                                                                                                             Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13971                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance (preT)
## 13972                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance -rural
## 13973                                                                                                                                                                                                                             Benefits incidence in 2nd quintile (%) - All Social Insurance 
## 13974                                                                                                                                                                                                                       Benefits incidence in 2nd quintile (%) - All Social Insurance -urban
## 13975                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance (preT)
## 13976                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance -rural
## 13977                                                                                                                                                                                                                             Benefits incidence in 3rd quintile (%) - All Social Insurance 
## 13978                                                                                                                                                                                                                       Benefits incidence in 3rd quintile (%) - All Social Insurance -urban
## 13979                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance (preT)
## 13980                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance -rural
## 13981                                                                                                                                                                                                                             Benefits incidence in 4th quintile (%) - All Social Insurance 
## 13982                                                                                                                                                                                                                       Benefits incidence in 4th quintile (%) - All Social Insurance -urban
## 13983                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance (preT)
## 13984                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -rural
## 13985                                                                                                                                                                                                                    Benefits incidence in 5th quintile (richest) (%) - All Social Insurance
## 13986                                                                                                                                                                                                             Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -urban
## 13987                                                                                                                                                                                                     Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 13988                                                                                                                                                                                                             Beneficiary incidence in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 13989                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 13990                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -rural
## 13991                                                                                                                                                                                                                 Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance
## 13992                                                                                                                                                                                                          Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -urban
## 13993                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance (preT)
## 13994                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance -rural
## 13995                                                                                                                                                                                                                          Beneficiary incidence in 2nd quintile (%) - All Social Insurance 
## 13996                                                                                                                                                                                                                    Beneficiary incidence in 2nd quintile (%) - All Social Insurance -urban
## 13997                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance (preT)
## 13998                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance -rural
## 13999                                                                                                                                                                                                                          Beneficiary incidence in 3rd quintile (%) - All Social Insurance 
## 14000                                                                                                                                                                                                                    Beneficiary incidence in 3rd quintile (%) - All Social Insurance -urban
## 14001                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance (preT)
## 14002                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance -rural
## 14003                                                                                                                                                                                                                          Beneficiary incidence in 4th quintile (%) - All Social Insurance 
## 14004                                                                                                                                                                                                                    Beneficiary incidence in 4th quintile (%) - All Social Insurance -urban
## 14005                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance (preT)
## 14006                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -rural
## 14007                                                                                                                                                                                                                 Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance
## 14008                                                                                                                                                                                                          Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -urban
## 14009                                                                                                                                                                                                              Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.9 a day) (preT)
## 14010                                                                                                                                                                                                                     Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.9 a day)
## 14011                                                                                                                                                                                                                  Benefit-cost ratio -  All Social Insurance -1st quintile (poorest) (preT)
## 14012                                                                                                                                                                                                                  Benefit-cost ratio -  All Social Insurance -1st quintile (poorest) -rural
## 14013                                                                                                                                                                                                                         Benefit-cost ratio -  All Social Insurance -1st quintile (poorest)
## 14014                                                                                                                                                                                                                 Benefit-cost ratio -  All Social Insurance - 1st quintile (poorest) -urban
## 14015                                                                                                                                                                                                                  Coverage in extreme poor (<$1.9 a day) (%) - All Social Insurance  (preT)
## 14016                                                                                                                                                                                                                          Coverage in extreme poor (<$1.9 a day) (%) - All Social Insurance
## 14017                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance (preT)
## 14018                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance -rural
## 14019                                                                                                                                                                                                                                    Coverage of social insurance programs (% of population)
## 14020                                                                                                                                                                                                                                                 Coverage (%) - All Social Insurance -urban
## 14021                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance (preT)
## 14022                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance -rural
## 14023                                                                                                                                                                                                                Coverage of social insurance programs in poorest quintile (% of population)
## 14024                                                                                                                                                                                                                       Coverage in 1st quintile (poorest) (%) - All Social Insurance -urban
## 14025                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance (preT)
## 14026                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance -rural
## 14027                                                                                                                                                                                                                    Coverage of social insurance programs in 2nd quintile (% of population)
## 14028                                                                                                                                                                                                                                 Coverage in 2nd quintile (%) - All Social Insurance -urban
## 14029                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance (preT)
## 14030                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance -rural
## 14031                                                                                                                                                                                                                    Coverage of social insurance programs in 3rd quintile (% of population)
## 14032                                                                                                                                                                                                                                 Coverage in 3rd quintile (%) - All Social Insurance -urban
## 14033                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance (preT)
## 14034                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance -rural
## 14035                                                                                                                                                                                                                    Coverage of social insurance programs in 4th quintile (% of population)
## 14036                                                                                                                                                                                                                                 Coverage in 4th quintile (%) - All Social Insurance -urban
## 14037                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance (preT)
## 14038                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance -rural
## 14039                                                                                                                                                                                                                Coverage of social insurance programs in richest quintile (% of population)
## 14040                                                                                                                                                                                                                       Coverage in 5th quintile (richest) (%) - All Social Insurance -urban
## 14041                                                                                                                                                                                                                         Gini inequality index reduction (%) -  All Social Insurance -rural
## 14042                                                                                                                                                                                                                                Gini inequality index reduction (%) -  All Social Insurance
## 14043                                                                                                                                                                                                                         Gini inequality index reduction (%) -  All Social Insurance -urban
## 14044                                                                                                                                                                                                        Poverty Headcount reduction (%) -  All Social Insurance -extreme poor (<$1.9 a day)
## 14045                                                                                                                                                                                                     Poverty Headcount reduction (%) -  All Social Insurance -1st quintile (poorest) -rural
## 14046                                                                                                                                                                                                            Poverty Headcount reduction (%) -  All Social Insurance -1st quintile (poorest)
## 14047                                                                                                                                                                                                    Poverty Headcount reduction (%) -  All Social Insurance - 1st quintile (poorest) -urban
## 14048                                                                                                                                                                                                              Poverty Gap reduction (%) -  All Social Insurance -extreme poor (<$1.9 a day)
## 14049                                                                                                                                                                                                           Poverty Gap reduction (%) -  All Social Insurance -1st quintile (poorest) -rural
## 14050                                                                                                                                                                                                                  Poverty Gap reduction (%) -  All Social Insurance -1st quintile (poorest)
## 14051                                                                                                                                                                                                          Poverty Gap reduction (%) -  All Social Insurance - 1st quintile (poorest) -urban
## 14052                                                                                                                                                                                                     Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14053                                                                                                                                                                                                             Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14054                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions (preT)
## 14055                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions -rural
## 14056                                                                                                                                                                                                                                          Adequacy of benefits (%) - Contributory Pensions 
## 14057                                                                                                                                                                                                                                    Adequacy of benefits (%) - Contributory Pensions -urban
## 14058                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14059                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14060                                                                                                                                                                                                                 Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions
## 14061                                                                                                                                                                                                          Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14062                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions (preT)
## 14063                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -rural
## 14064                                                                                                                                                                                                                          Adequacy of benefits in 2nd quintile (%) - Contributory Pensions 
## 14065                                                                                                                                                                                                                    Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -urban
## 14066                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions (preT)
## 14067                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -rural
## 14068                                                                                                                                                                                                                          Adequacy of benefits in 3rd quintile (%) - Contributory Pensions 
## 14069                                                                                                                                                                                                                    Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -urban
## 14070                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions (preT)
## 14071                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions -rural
## 14072                                                                                                                                                                                                                          Adequacy of benefits in 4th quintile (%) - Contributory Pensions 
## 14073                                                                                                                                                                                                                    Adequacy of benefits in 4th quintile (%) - Contributory Pensions -urban
## 14074                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14075                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14076                                                                                                                                                                                                                 Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions
## 14077                                                                                                                                                                                                          Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14078                                                                                                                                                                                             Average per capita transfer held by extreme poor (<$1.9 a day) - Contributory Pensions  (preT)
## 14079                                                                                                                                                                                                     Average per capita transfer held by extreme poor (<$1.9 a day) - Contributory Pensions
## 14080                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions (preT)
## 14081                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions -rural
## 14082                                                                                                                                                                                                                                       Average per capita transfer - Contributory Pensions 
## 14083                                                                                                                                                                                                                                 Average per capita transfer - Contributory Pensions -urban
## 14084                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions (preT)
## 14085                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -rural
## 14086                                                                                                                                                                                                         Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions
## 14087                                                                                                                                                                                                  Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -urban
## 14088                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions (preT)
## 14089                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions -rural
## 14090                                                                                                                                                                                                                  Average per capita transfer held by 2nd quintile - Contributory Pensions 
## 14091                                                                                                                                                                                                            Average per capita transfer held by 2nd quintile - Contributory Pensions -urban
## 14092                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions (preT)
## 14093                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions -rural
## 14094                                                                                                                                                                                                                  Average per capita transfer held by 3rd quintile - Contributory Pensions 
## 14095                                                                                                                                                                                                            Average per capita transfer held by 3rd quintile - Contributory Pensions -urban
## 14096                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions (preT)
## 14097                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions -rural
## 14098                                                                                                                                                                                                                  Average per capita transfer held by 4th quintile - Contributory Pensions 
## 14099                                                                                                                                                                                                            Average per capita transfer held by 4th quintile - Contributory Pensions -urban
## 14100                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions (preT)
## 14101                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -rural
## 14102                                                                                                                                                                                                         Average per capita transfer held by 5th quintile (richest) - Contributory Pensions
## 14103                                                                                                                                                                                                  Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -urban
## 14104                                                                                                                                                                                                       Benefits incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14105                                                                                                                                                                                                               Benefits incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14106                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14107                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14108                                                                                                                                                                                                                   Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions
## 14109                                                                                                                                                                                                            Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14110                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions (preT)
## 14111                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions -rural
## 14112                                                                                                                                                                                                                            Benefits incidence in 2nd quintile (%) - Contributory Pensions 
## 14113                                                                                                                                                                                                                      Benefits incidence in 2nd quintile (%) - Contributory Pensions -urban
## 14114                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions (preT)
## 14115                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions -rural
## 14116                                                                                                                                                                                                                            Benefits incidence in 3rd quintile (%) - Contributory Pensions 
## 14117                                                                                                                                                                                                                      Benefits incidence in 3rd quintile (%) - Contributory Pensions -urban
## 14118                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions (preT)
## 14119                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions -rural
## 14120                                                                                                                                                                                                                            Benefits incidence in 4th quintile (%) - Contributory Pensions 
## 14121                                                                                                                                                                                                                      Benefits incidence in 4th quintile (%) - Contributory Pensions -urban
## 14122                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14123                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14124                                                                                                                                                                                                                   Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions
## 14125                                                                                                                                                                                                            Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14126                                                                                                                                                                                                    Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14127                                                                                                                                                                                                            Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14128                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14129                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14130                                                                                                                                                                                                                Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions
## 14131                                                                                                                                                                                                         Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14132                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT)
## 14133                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -rural
## 14134                                                                                                                                                                                                                         Beneficiary incidence in 2nd quintile (%) - Contributory Pensions 
## 14135                                                                                                                                                                                                                   Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -urban
## 14136                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT)
## 14137                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -rural
## 14138                                                                                                                                                                                                                         Beneficiary incidence in 3rd quintile (%) - Contributory Pensions 
## 14139                                                                                                                                                                                                                   Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -urban
## 14140                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT)
## 14141                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions -rural
## 14142                                                                                                                                                                                                                         Beneficiary incidence in 4th quintile (%) - Contributory Pensions 
## 14143                                                                                                                                                                                                                   Beneficiary incidence in 4th quintile (%) - Contributory Pensions -urban
## 14144                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14145                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14146                                                                                                                                                                                                                Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions
## 14147                                                                                                                                                                                                         Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14148                                                                                                                                                                                                             Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.9 a day) (preT)
## 14149                                                                                                                                                                                                                    Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14150                                                                                                                                                                                                                 Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest) (preT)
## 14151                                                                                                                                                                                                                 Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest) -rural
## 14152                                                                                                                                                                                                                        Benefit-cost ratio -  Contributory Pensions -1st quintile (poorest)
## 14153                                                                                                                                                                                                                Benefit-cost ratio -  Contributory Pensions - 1st quintile (poorest) -urban
## 14154                                                                                                                                                                                                                 Coverage in extreme poor (<$1.9 a day) (%) - Contributory Pensions  (preT)
## 14155                                                                                                                                                                                                                         Coverage in extreme poor (<$1.9 a day) (%) - Contributory Pensions
## 14156                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions (preT)
## 14157                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions -rural
## 14158                                                                                                                                                                                                                                                      Coverage (%) - Contributory Pensions 
## 14159                                                                                                                                                                                                                                                Coverage (%) - Contributory Pensions -urban
## 14160                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions (preT)
## 14161                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions -rural
## 14162                                                                                                                                                                                                                             Coverage in 1st quintile (poorest) (%) - Contributory Pensions
## 14163                                                                                                                                                                                                                      Coverage in 1st quintile (poorest) (%) - Contributory Pensions -urban
## 14164                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions (preT)
## 14165                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions -rural
## 14166                                                                                                                                                                                                                                      Coverage in 2nd quintile (%) - Contributory Pensions 
## 14167                                                                                                                                                                                                                                Coverage in 2nd quintile (%) - Contributory Pensions -urban
## 14168                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions (preT)
## 14169                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions -rural
## 14170                                                                                                                                                                                                                                      Coverage in 3rd quintile (%) - Contributory Pensions 
## 14171                                                                                                                                                                                                                                Coverage in 3rd quintile (%) - Contributory Pensions -urban
## 14172                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions (preT)
## 14173                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions -rural
## 14174                                                                                                                                                                                                                                      Coverage in 4th quintile (%) - Contributory Pensions 
## 14175                                                                                                                                                                                                                                Coverage in 4th quintile (%) - Contributory Pensions -urban
## 14176                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions (preT)
## 14177                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions -rural
## 14178                                                                                                                                                                                                                             Coverage in 5th quintile (richest) (%) - Contributory Pensions
## 14179                                                                                                                                                                                                                      Coverage in 5th quintile (richest) (%) - Contributory Pensions -urban
## 14180                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Contributory Pensions -rural
## 14181                                                                                                                                                                                                                               Gini inequality index reduction (%) -  Contributory Pensions
## 14182                                                                                                                                                                                                                        Gini inequality index reduction (%) -  Contributory Pensions -urban
## 14183                                                                                                                                                                                                       Poverty Headcount reduction (%) -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14184                                                                                                                                                                                                    Poverty Headcount reduction (%) -  Contributory Pensions -1st quintile (poorest) -rural
## 14185                                                                                                                                                                                                           Poverty Headcount reduction (%) -  Contributory Pensions -1st quintile (poorest)
## 14186                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Contributory Pensions - 1st quintile (poorest) -urban
## 14187                                                                                                                                                                                                             Poverty Gap reduction (%) -  Contributory Pensions -extreme poor (<$1.9 a day)
## 14188                                                                                                                                                                                                          Poverty Gap reduction (%) -  Contributory Pensions -1st quintile (poorest) -rural
## 14189                                                                                                                                                                                                                 Poverty Gap reduction (%) -  Contributory Pensions -1st quintile (poorest)
## 14190                                                                                                                                                                                                         Poverty Gap reduction (%) -  Contributory Pensions - 1st quintile (poorest) -urban
## 14191                                                                                                                                                                                                    Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14192                                                                                                                                                                                                            Adequacy of benefits in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14193                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance (preT)
## 14194                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance -rural
## 14195                                                                                                                                                                                                                                         Adequacy of benefits (%) - Other Social Insurance 
## 14196                                                                                                                                                                                                                                   Adequacy of benefits (%) - Other Social Insurance -urban
## 14197                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14198                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14199                                                                                                                                                                                                                Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance
## 14200                                                                                                                                                                                                         Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14201                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance (preT)
## 14202                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -rural
## 14203                                                                                                                                                                                                                         Adequacy of benefits in 2nd quintile (%) - Other Social Insurance 
## 14204                                                                                                                                                                                                                   Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -urban
## 14205                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance (preT)
## 14206                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -rural
## 14207                                                                                                                                                                                                                         Adequacy of benefits in 3rd quintile (%) - Other Social Insurance 
## 14208                                                                                                                                                                                                                   Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -urban
## 14209                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance (preT)
## 14210                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance -rural
## 14211                                                                                                                                                                                                                         Adequacy of benefits in 4th quintile (%) - Other Social Insurance 
## 14212                                                                                                                                                                                                                   Adequacy of benefits in 4th quintile (%) - Other Social Insurance -urban
## 14213                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14214                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14215                                                                                                                                                                                                                Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance
## 14216                                                                                                                                                                                                         Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14217                                                                                                                                                                                            Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Insurance  (preT)
## 14218                                                                                                                                                                                                    Average per capita transfer held by extreme poor (<$1.9 a day) - Other Social Insurance
## 14219                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance (preT)
## 14220                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance -rural
## 14221                                                                                                                                                                                                                                      Average per capita transfer - Other Social Insurance 
## 14222                                                                                                                                                                                                                                Average per capita transfer - Other Social Insurance -urban
## 14223                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance (preT)
## 14224                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -rural
## 14225                                                                                                                                                                                                        Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance
## 14226                                                                                                                                                                                                 Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -urban
## 14227                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance (preT)
## 14228                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance -rural
## 14229                                                                                                                                                                                                                 Average per capita transfer held by 2nd quintile - Other Social Insurance 
## 14230                                                                                                                                                                                                           Average per capita transfer held by 2nd quintile - Other Social Insurance -urban
## 14231                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance (preT)
## 14232                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance -rural
## 14233                                                                                                                                                                                                                 Average per capita transfer held by 3rd quintile - Other Social Insurance 
## 14234                                                                                                                                                                                                           Average per capita transfer held by 3rd quintile - Other Social Insurance -urban
## 14235                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance (preT)
## 14236                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance -rural
## 14237                                                                                                                                                                                                                 Average per capita transfer held by 4th quintile - Other Social Insurance 
## 14238                                                                                                                                                                                                           Average per capita transfer held by 4th quintile - Other Social Insurance -urban
## 14239                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance (preT)
## 14240                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -rural
## 14241                                                                                                                                                                                                        Average per capita transfer held by 5th quintile (richest) - Other Social Insurance
## 14242                                                                                                                                                                                                 Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -urban
## 14243                                                                                                                                                                                                      Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14244                                                                                                                                                                                                              Benefits incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14245                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14246                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14247                                                                                                                                                                                                                  Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance
## 14248                                                                                                                                                                                                           Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14249                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance (preT)
## 14250                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance -rural
## 14251                                                                                                                                                                                                                           Benefits incidence in 2nd quintile (%) - Other Social Insurance 
## 14252                                                                                                                                                                                                                     Benefits incidence in 2nd quintile (%) - Other Social Insurance -urban
## 14253                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance (preT)
## 14254                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance -rural
## 14255                                                                                                                                                                                                                           Benefits incidence in 3rd quintile (%) - Other Social Insurance 
## 14256                                                                                                                                                                                                                     Benefits incidence in 3rd quintile (%) - Other Social Insurance -urban
## 14257                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance (preT)
## 14258                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance -rural
## 14259                                                                                                                                                                                                                           Benefits incidence in 4th quintile (%) - Other Social Insurance 
## 14260                                                                                                                                                                                                                     Benefits incidence in 4th quintile (%) - Other Social Insurance -urban
## 14261                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14262                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14263                                                                                                                                                                                                                  Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance
## 14264                                                                                                                                                                                                           Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14265                                                                                                                                                                                                   Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14266                                                                                                                                                                                                           Beneficiary incidence in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14267                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14268                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14269                                                                                                                                                                                                               Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance
## 14270                                                                                                                                                                                                        Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14271                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance (preT)
## 14272                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -rural
## 14273                                                                                                                                                                                                                        Beneficiary incidence in 2nd quintile (%) - Other Social Insurance 
## 14274                                                                                                                                                                                                                  Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -urban
## 14275                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance (preT)
## 14276                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -rural
## 14277                                                                                                                                                                                                                        Beneficiary incidence in 3rd quintile (%) - Other Social Insurance 
## 14278                                                                                                                                                                                                                  Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -urban
## 14279                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance (preT)
## 14280                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance -rural
## 14281                                                                                                                                                                                                                        Beneficiary incidence in 4th quintile (%) - Other Social Insurance 
## 14282                                                                                                                                                                                                                  Beneficiary incidence in 4th quintile (%) - Other Social Insurance -urban
## 14283                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14284                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14285                                                                                                                                                                                                               Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance
## 14286                                                                                                                                                                                                        Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14287                                                                                                                                                                                                            Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.9 a day) (preT)
## 14288                                                                                                                                                                                                                   Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14289                                                                                                                                                                                                                Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest) (preT)
## 14290                                                                                                                                                                                                                Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest) -rural
## 14291                                                                                                                                                                                                                       Benefit-cost ratio -  Other Social Insurance -1st quintile (poorest)
## 14292                                                                                                                                                                                                               Benefit-cost ratio -  Other Social Insurance - 1st quintile (poorest) -urban
## 14293                                                                                                                                                                                                                Coverage in extreme poor (<$1.9 a day) (%) - Other Social Insurance  (preT)
## 14294                                                                                                                                                                                                                        Coverage in extreme poor (<$1.9 a day) (%) - Other Social Insurance
## 14295                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance (preT)
## 14296                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance -rural
## 14297                                                                                                                                                                                                                                                     Coverage (%) - Other Social Insurance 
## 14298                                                                                                                                                                                                                                               Coverage (%) - Other Social Insurance -urban
## 14299                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance (preT)
## 14300                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance -rural
## 14301                                                                                                                                                                                                                            Coverage in 1st quintile (poorest) (%) - Other Social Insurance
## 14302                                                                                                                                                                                                                     Coverage in 1st quintile (poorest) (%) - Other Social Insurance -urban
## 14303                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance (preT)
## 14304                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance -rural
## 14305                                                                                                                                                                                                                                     Coverage in 2nd quintile (%) - Other Social Insurance 
## 14306                                                                                                                                                                                                                               Coverage in 2nd quintile (%) - Other Social Insurance -urban
## 14307                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance (preT)
## 14308                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance -rural
## 14309                                                                                                                                                                                                                                     Coverage in 3rd quintile (%) - Other Social Insurance 
## 14310                                                                                                                                                                                                                               Coverage in 3rd quintile (%) - Other Social Insurance -urban
## 14311                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance (preT)
## 14312                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance -rural
## 14313                                                                                                                                                                                                                                     Coverage in 4th quintile (%) - Other Social Insurance 
## 14314                                                                                                                                                                                                                               Coverage in 4th quintile (%) - Other Social Insurance -urban
## 14315                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance (preT)
## 14316                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance -rural
## 14317                                                                                                                                                                                                                            Coverage in 5th quintile (richest) (%) - Other Social Insurance
## 14318                                                                                                                                                                                                                     Coverage in 5th quintile (richest) (%) - Other Social Insurance -urban
## 14319                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Other Social Insurance -rural
## 14320                                                                                                                                                                                                                              Gini inequality index reduction (%) -  Other Social Insurance
## 14321                                                                                                                                                                                                                       Gini inequality index reduction (%) -  Other Social Insurance -urban
## 14322                                                                                                                                                                                                      Poverty Headcount reduction (%) -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14323                                                                                                                                                                                                   Poverty Headcount reduction (%) -  Other Social Insurance -1st quintile (poorest) -rural
## 14324                                                                                                                                                                                                          Poverty Headcount reduction (%) -  Other Social Insurance -1st quintile (poorest)
## 14325                                                                                                                                                                                                  Poverty Headcount reduction (%) -  Other Social Insurance - 1st quintile (poorest) -urban
## 14326                                                                                                                                                                                                            Poverty Gap reduction (%) -  Other Social Insurance -extreme poor (<$1.9 a day)
## 14327                                                                                                                                                                                                         Poverty Gap reduction (%) -  Other Social Insurance -1st quintile (poorest) -rural
## 14328                                                                                                                                                                                                                Poverty Gap reduction (%) -  Other Social Insurance -1st quintile (poorest)
## 14329                                                                                                                                                                                                        Poverty Gap reduction (%) -  Other Social Insurance - 1st quintile (poorest) -urban
## 14330                                                                                                                                                                                         Population in extreme poor (<$1.9 a day) receiving All Social Insurance and Labor Market (%, preT)
## 14331                                                                                                                                                                                               Population in extreme poor (<$1.9 a day) receiving All Social Insurance and Labor Market (%)
## 14332                                                                                                                                                                                                                       Population receiving All Social Insurance and Labor Market (%, preT)
## 14333                                                                                                                                                                                                                      Population receiving All Social Insurance and Labor Market (%) -rural
## 14334                                                                                                                                                                                                                             Population receiving All Social Insurance and Labor Market (%)
## 14335                                                                                                                                                                                                                      Population receiving All Social Insurance and Labor Market (%) -urban
## 14336                                                                                                                                                                                         Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%, preT)
## 14337                                                                                                                                                                                        Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -rural
## 14338                                                                                                                                                                                               Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%)
## 14339                                                                                                                                                                                        Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -urban
## 14340                                                                                                                                                                                                     Population in extreme poor (<$1.9 a day) only receiving All Social Insurance (%, preT)
## 14341                                                                                                                                                                                                           Population in extreme poor (<$1.9 a day) only receiving All Social Insurance (%)
## 14342                                                                                                                                                                                                                                   Population only receiving All Social Insurance (%, preT)
## 14343                                                                                                                                                                                                                                  Population only receiving All Social Insurance (%) -rural
## 14344                                                                                                                                                                                                                                         Population only receiving All Social Insurance (%)
## 14345                                                                                                                                                                                                                                  Population only receiving All Social Insurance (%) -urban
## 14346                                                                                                                                                                                                     Population in the 1st quintile (poorest) only receiving All Social Insurance (%, preT)
## 14347                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -rural
## 14348                                                                                                                                                                                                           Population in the 1st quintile (poorest) only receiving All Social Insurance (%)
## 14349                                                                                                                                                                                                    Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -urban
## 14350                                                                                                                                                                                                                        Aggregate expenditure out-turn compared to original approved budget
## 14351                                                                                                                                                                                                                                                    Public access to key fiscal information
## 14352                                                                                                                                                                                                                                 Orderliness and participation in the annual budget process
## 14353                                                                                                                                                                                                                                 (i) Existence of and adherence to a fixed budget calendar;
## 14354                                                                                                                                      (ii) Clarity/comprehensiveness of and political involvement in the guidance on the preparation of budget submissions (budget circular or equivalent);
## 14355                                                                                                                                                                                  (iii) Timely budget approval by the legislature or similarly mandated body (within the last three years);
## 14356                                                                                                                                                                                                                Multi-year perspective in fiscal planning, expenditure policy and budgeting
## 14357                                                                                                                                                                                                                 (i) Preparation of multi -year fiscal forecasts and functional allocations
## 14358                                                                                                                                                                                                                                   (ii) Scope and frequency of debt sustainability analysis
## 14359                                                                                                                                                                                      (iii) Existence of sector strategies with multi-year costing of recurrent and investment expenditure;
## 14360                                                                                                                                                                                                                (iv)  Linkages between investment budgets and forward expenditure estimates
## 14361                                                                                                                                                                                                                                       Transparency of taxpayer obligations and liabilities
## 14362                                                                                                                                                                                                                                       (i) Clarity and comprehensiveness of tax liabilities
## 14363                                                                                                                                                                                                       (ii) Taxpayer access to information on tax liabilities and administrative procedures
## 14364                                                                                                                                                                                                                                 (iii) Existence and functioning of a tax appeals mechanism
## 14365                                                                                                                                                                                                                     Effectiveness of measures for taxpayer registration and tax assessment
## 14366                                                                                                                                                                                                                                           (i) Controls in the taxpayer registration system
## 14367                                                                                                                                                                                          (ii)  Effectiveness of penalties for non-compliance with registration and declaration obligations
## 14368                                                                                                                                                                                                                (iii) Planning and monitoring of tax audit and fraud investigation programs
## 14369                                                                                                                                                                                                                                                Effectiveness in collection of tax payments
## 14370                                                                                      (i) Collection ratio for gross tax arrears, being the percentage of tax arrears at the beginning of a fiscal year, which was collected during that fiscal year (average of the last two fiscal years)
## 14371                                                                                                                                                                                            (ii) Effectiveness of transfer of tax collections to the Treasury by the revenue administration
## 14372                                                                                                                                                     (iii) Frequency of complete accounts reconciliation between tax assessments, collections, arrears records and receipts by the Treasury
## 14373                                                                                                                                                                                                                 Predictability in the availability of funds for commitment of expenditures
## 14374                                                                                                                                                                                                                                 (i)  Extent to which cash flows are forecast and monitored
## 14375                                                                                                                                                                               (ii) Reliability and horizon of periodic in-year information to MDAs on ceilings for expenditure commitmentc
## 14376                                                                                                                                                             (iii) Frequency and transparency of adjustments to budget allocations, which are decided above the level of management of MDAs
## 14377                                                                                                                                                                                                                             Recording and management of cash balances, debt and guarantees
## 14378                                                                                                                                                                                                                                           (i) Quality of debt data recording and reporting
## 14379                                                                                                                                                                                                                             (ii) Extent of consolidation of the government’s cash balances
## 14380                                                                                                                                                                                                                             (iii) Systems for contracting loans and issuance of guarantees
## 14381                                                                                                                                                                                                                                                          Effectiveness of payroll controls
## 14382                                                                                                                                                                                                    (i) Degree of integration and reconciliation between personnel records and payroll data
## 14383                                                                                                                                                                                                                            (ii) Timeliness of changes to personnel records and the payroll
## 14384                                                                                                                                                                                                                    (iii) Internal controls of changes to personnel records and the payroll
## 14385                                                                                                                                                                                                       (iv) Existence of payroll audits to identify control weaknesses and/or ghost workers
## 14386                                                                                                                                                                                                                                   Competition, value for money and controls in procurement
## 14387                                                                                                                                                                                                  (i) Transparency, comprehensiveness and competition in the legal and regulatory framework
## 14388                                                                                                                                                                                                                                                (ii) Use of competitive procurement methods
## 14389                                                                                                                                                                                                               (iii) Public access to complete, reliable and timely procurement information
## 14390                                                                                                                                                                                                              (iv) Existence of an independent administrative procurement complaints system
## 14391                                                                                                                                                                                                                         (i) Evidence on the use of open competition for award of contracts
## 14392                                                                                                                                                                                                               (ii) Extent of justification for use of less competitive procurement methods
## 14393                                                                                                                                                                                                                        (iii) Existence and operation of a procurement complaints mechanism
## 14394                                                                                                                                                                                                                   Composition of expenditure out-turn compared to original approved budget
## 14395                                                                                                                                                                             (i) Extent of the variance in expenditure composition during the last three years, excluding contingency items
## 14396                                                                                                                                                                                  (ii) The average amount of expenditure actually charged to the contingency vote over the last three years
## 14397                                                                                                                                                                                                                              Effectiveness of internal controls for non-salary expenditure
## 14398                                                                                                                                                                                                                                       (i) Effectiveness of expenditure commitment controls
## 14399                                                                                                                                                                                            (ii) Comprehensiveness, relevance and understanding of other internal control rules/ procedures
## 14400                                                                                                                                                                                                             (iii) Degreeof compliance with rules for processing and recording transactions
## 14401                                                                                                                                                                                                                                                            Effectiveness of internal audit
## 14402                                                                                                                                                                                                                                    (i) Coverage and quality of the internal audit function
## 14403                                                                                                                                                                                                                                                 (ii) Frequency and distribution of reports
## 14404                                                                                                                                                                                                                             (iii) Extent of management response to internal audit findings
## 14405                                                                                                                                                                                                                                      Timeliness and regularity of  accounts reconciliation
## 14406                                                                                                                                                                                                                                                     (i) Regularity of bank reconciliations
## 14407                                                                                                                                                                                                          (ii) Regularity of reconciliation and clearance of suspense accounts and advances
## 14408                                                                                                                                                                                                                Availability of information on resources received by service delivery units
## 14409                                                                                                                                                                                                                                           Quality and timeliness of in-year budget reports
## 14410                                                                                                                                                                                                          (i) Scope of reports in terms of coverage and compatibility with budget estimates
## 14411                                                                                                                                                                                                                                                    (ii) Timeliness of the issue of reports
## 14412                                                                                                                                                                                                                                                               (iii) Quality of information
## 14413                                                                                                                                                                                                                                      Quality and timeliness of annual financial statements
## 14414                                                                                                                                                                                                                                               (i) Completeness of the financial statements
## 14415                                                                                                                                                                                                                                  (ii) Timeliness of submission of the financial statements
## 14416                                                                                                                                                                                                                                                            (iii) Accounting standards used
## 14417                                                                                                                                                                                                                                              Scope, nature and follow-up of external audit
## 14418                                                                                                                                                                                                                (i) Scope/nature of audit performed (incl. adherence to auditing standards)
## 14419                                                                                                                                                                                                                              (ii) Timeliness of submission of audit reports to legislature
## 14420                                                                                                                                                                                                                                       (iii) Evidence of follow up on audit recommendations
## 14421                                                                                                                                                                                                                                              Legislative scrutiny of the annual budget law
## 14422                                                                                                                                                                                                                                                    (i) Scope of the legislature’s scrutiny
## 14423                                                                                                                                                                                                       (ii) Extent to which the legislature’s procedures are well-established and respected
## 14424                                                                                                                                                                                                       (iii) Adequacy of time for the legislature to provide a response to budget proposals
## 14425                                                                                                                                                                                                (iv) Rules for in-year amendments to the budget without ex-ante approval by the legislature
## 14426                                                                                                                                                                                                                                             Legislative scrutiny of external audit reports
## 14427                                                                                                                                                                       (i) Timeliness of examination of audit reports by the legislature (for reports received within the last three years)
## 14428                                                                                                                                                                                                                      (ii) Extent of hearings on key findings undertaken by the legislature
## 14429                                                                                                                                                                                               (iii) Issuance of recommended actions by the legislature and implementation by the executive
## 14430                                                                                                                                                                                                                            Aggregate revenue out-turn compared to original approved budget
## 14431                                                                                                                                                                                                                                        Stock and monitoring of expenditure payment arrears
## 14432                                                                                                                                           (i) Stock of expenditure payment arrears (as a % of actual total expenditure for the corresponding fiscal year) & any recent change in the stock
## 14433                                                                                                                                                                                                          (ii) Availability of data for monitoring the stock of expenditure payment arrears
## 14434                                                                                                                                                                                                                                                               Classification of the budget
## 14435                                                                                                                                                                                                                          Comprehensiveness of information included in budget documentation
## 14436                                                                                                                                                                                                                                                 Extent of unreported government operations
## 14437                                                                                                                                                    (i) The level of extra-budgetary expenditure (other than donor funded projects) which is unreported i.e. not included in fiscal reports
## 14438                                                                                                                                                                                           (ii) Income/expenditure information on donor-funded projects which is included in fiscal reports
## 14439                                                                                                                                                                                                                                        Transparency of inter-governmental fiscal relations
## 14440                                                                                       (i) Transparent and rules based systems in the horizontal allocation among SN governments of unconditional and conditional transfers from central government (both budgeted and actual allocations);
## 14441                                                                                                                                                                (ii) Timeliness of reliable information to SN governments on their allocations from central government for the coming year;
## 14442                                                                                                                     (iii) Extent to which consolidated fiscal data (at least on revenue and expenditure) is collected and reported for general government according to sectoral categories
## 14443                                                                                                                                                                                                                       Oversight of aggregate fiscal risk from other public sector entities
## 14444                                                                                                                                                                                                                                (i) Extent of central government monitoring of AGAs and Pes
## 14445                                                                                                                                                                                                           (ii)  Extent of central government monitoring of SN government's fiscal position
## 14446                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Female
## 14447                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Male
## 14448                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Total
## 14449                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Female
## 14450                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Male
## 14451                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Total
## 14452                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Female
## 14453                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Male
## 14454                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Total
## 14455                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Female
## 14456                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Male
## 14457                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Total
## 14458                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Female
## 14459                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Male
## 14460                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Total
## 14461                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Female
## 14462                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Male
## 14463                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Total
## 14464                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Female
## 14465                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Male
## 14466                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Total
## 14467                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Female
## 14468                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Male
## 14469                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Total
## 14470                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Female
## 14471                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Male
## 14472                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Total
## 14473                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Female
## 14474                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Male
## 14475                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Total
## 14476                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Female
## 14477                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Male
## 14478                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Total
## 14479                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Female
## 14480                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Male
## 14481                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Total
## 14482                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Female
## 14483                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Male
## 14484                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Total
## 14485                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Female
## 14486                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Male
## 14487                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Total
## 14488                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Female
## 14489                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Male
## 14490                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Total
## 14491                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Female
## 14492                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Male
## 14493                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Total
## 14494                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Female
## 14495                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Male
## 14496                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Total
## 14497                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Female
## 14498                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Male
## 14499                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Total
## 14500                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Female
## 14501                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Male
## 14502                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Total
## 14503                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Female
## 14504                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Male
## 14505                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Total
## 14506                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Female
## 14507                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Male
## 14508                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Total
## 14509                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Female
## 14510                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Male
## 14511                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Total
## 14512                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Female
## 14513                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Male
## 14514                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Total
## 14515                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Female
## 14516                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Male
## 14517                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Total
## 14518                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Female
## 14519                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Male
## 14520                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Total
## 14521                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Female
## 14522                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Male
## 14523                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Total
## 14524                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Female
## 14525                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Male
## 14526                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Total
## 14527                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Female
## 14528                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Male
## 14529                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Total
## 14530                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Female
## 14531                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Male
## 14532                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Total
## 14533                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Female
## 14534                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Male
## 14535                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Total
## 14536                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Female
## 14537                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Male
## 14538                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Total
## 14539                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Female
## 14540                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Male
## 14541                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Total
## 14542                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Female
## 14543                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Male
## 14544                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Total
## 14545                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Female
## 14546                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Male
## 14547                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Total
## 14548                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Female
## 14549                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Male
## 14550                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Total
## 14551                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Female
## 14552                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Male
## 14553                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Total
## 14554                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Female
## 14555                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Male
## 14556                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Total
## 14557                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Female
## 14558                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Male
## 14559                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Total
## 14560                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Female
## 14561                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Male
## 14562                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Total
## 14563                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Female
## 14564                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Male
## 14565                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Total
## 14566                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Female
## 14567                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Male
## 14568                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Total
## 14569                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Female
## 14570                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Male
## 14571                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Total
## 14572                                                                                                                                                                Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Female
## 14573                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Male
## 14574                                                                                                                                                                 Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Total
## 14575                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Female
## 14576                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Male
## 14577                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Total
## 14578                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Female
## 14579                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Male
## 14580                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Total
## 14581                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Female
## 14582                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Male
## 14583                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Total
## 14584                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Female
## 14585                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Male
## 14586                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Total
## 14587                                                                                                                                                     Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Female
## 14588                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Male
## 14589                                                                                                                                                      Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Total
## 14590                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Female
## 14591                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Male
## 14592                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Total
## 14593                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Female
## 14594                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Male
## 14595                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Total
## 14596                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Female
## 14597                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Male
## 14598                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Total
## 14599                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Female
## 14600                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Male
## 14601                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Total
## 14602                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Female
## 14603                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Male
## 14604                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Total
## 14605                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Female
## 14606                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Male
## 14607                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Total
## 14608                                                                                                                                                                  Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Female
## 14609                                                                                                                                                                    Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Male
## 14610                                                                                                                                                                   Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Total
## 14611                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Female
## 14612                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Male
## 14613                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Total
## 14614                                                                                                                                                          Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Female
## 14615                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Male
## 14616                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Total
## 14617                                                                                                                                                           Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Female
## 14618                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Male
## 14619                                                                                                                                                            Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Total
## 14620                                                                                                                                                             Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Female
## 14621                                                                                                                                                               Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Male
## 14622                                                                                                                                                              Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Total
## 14623                                                                                                                                                       Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Female
## 14624                                                                                                                                                         Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Male
## 14625                                                                                                                                                        Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Total
## 14626                                                                                                                                                                    Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Female
## 14627                                                                                                                                                                      Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Male
## 14628                                                                                                                                                                     Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Total
## 14629                                                                                                                                                            Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Female
## 14630                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Male
## 14631                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Total
## 14632                                                                                                                                                            Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Female
## 14633                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Male
## 14634                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Total
## 14635                                                                                                                                                             Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Female
## 14636                                                                                                                                                               Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Male
## 14637                                                                                                                                                              Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Total
## 14638                                                                                                                                                               Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Female
## 14639                                                                                                                                                                 Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Male
## 14640                                                                                                                                                                Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Total
## 14641                                                                                                                                                         Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Female
## 14642                                                                                                                                                           Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Male
## 14643                                                                                                                                                          Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Total
## 14644                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 0-19. Female
## 14645                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 0-19. Male
## 14646                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 0-19. Total
## 14647                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 15-19. Female
## 14648                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 15-19. Male
## 14649                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 15-19. Total
## 14650                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 15+. Female
## 14651                                                                                                                                                                                                                      Wittgenstein Projection: Mean Years of Schooling. Age 15+. Gender Gap
## 14652                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 15+. Male
## 14653                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 15+. Total
## 14654                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-24. Female
## 14655                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-24. Male
## 14656                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-24. Total
## 14657                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-39. Female
## 14658                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-39. Male
## 14659                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-39. Total
## 14660                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 20-64. Female
## 14661                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 20-64. Male
## 14662                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 20-64. Total
## 14663                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 25-29. Female
## 14664                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 25-29. Male
## 14665                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 25-29. Total
## 14666                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 25+. Female
## 14667                                                                                                                                                                                                                      Wittgenstein Projection: Mean Years of Schooling. Age 25+. Gender Gap
## 14668                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 25+. Male
## 14669                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 25+. Total
## 14670                                                                                                                                                                                                                        Wittgenstein Projection: Mean years of schooling. Age 40-64. Female
## 14671                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 40-64. Male
## 14672                                                                                                                                                                                                                         Wittgenstein Projection: Mean years of schooling. Age 40-64. Total
## 14673                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 60+. Female
## 14674                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 60+. Male
## 14675                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 60+. Total
## 14676                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 65+. Female
## 14677                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 65+. Male
## 14678                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 65+. Total
## 14679                                                                                                                                                                                                                          Wittgenstein Projection: Mean years of schooling. Age 80+. Female
## 14680                                                                                                                                                                                                                            Wittgenstein Projection: Mean years of schooling. Age 80+. Male
## 14681                                                                                                                                                                                                                           Wittgenstein Projection: Mean years of schooling. Age 80+. Total
## 14682                                                                                                                                                                     Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Female
## 14683                                                                                                                                                                       Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Male
## 14684                                                                                                                                                                      Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Total
## 14685                                                                                                                                                             Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14686                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14687                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14688                                                                                                                                                             Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14689                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14690                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14691                                                                                                                                                              Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Female
## 14692                                                                                                                                                                Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Male
## 14693                                                                                                                                                               Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Total
## 14694                                                                                                                                                                Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Female
## 14695                                                                                                                                                                  Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Male
## 14696                                                                                                                                                                 Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Total
## 14697                                                                                                                                                          Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14698                                                                                                                                                            Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14699                                                                                                                                                           Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14700                                                                                                                                                                     Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Female
## 14701                                                                                                                                                                       Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Male
## 14702                                                                                                                                                                      Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Total
## 14703                                                                                                                                                             Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14704                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14705                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14706                                                                                                                                                             Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14707                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14708                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14709                                                                                                                                                              Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Female
## 14710                                                                                                                                                                Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Male
## 14711                                                                                                                                                               Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Total
## 14712                                                                                                                                                                Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Female
## 14713                                                                                                                                                                  Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Male
## 14714                                                                                                                                                                 Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Total
## 14715                                                                                                                                                          Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14716                                                                                                                                                            Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14717                                                                                                                                                           Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14718                                                                                                                                                                     Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Female
## 14719                                                                                                                                                                       Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Male
## 14720                                                                                                                                                                      Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Total
## 14721                                                                                                                                                             Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Female
## 14722                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Male
## 14723                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Total
## 14724                                                                                                                                                             Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Female
## 14725                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Male
## 14726                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Total
## 14727                                                                                                                                                              Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Female
## 14728                                                                                                                                                                Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Male
## 14729                                                                                                                                                               Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Total
## 14730                                                                                                                                                                Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Female
## 14731                                                                                                                                                                  Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Male
## 14732                                                                                                                                                                 Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Total
## 14733                                                                                                                                                          Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14734                                                                                                                                                            Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14735                                                                                                                                                           Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14736                                                                                                                                                                               Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Female
## 14737                                                                                                                                                                                 Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Male
## 14738                                                                                                                                                                                Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Total
## 14739                                                                                                                                                                       Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Female
## 14740                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Male
## 14741                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Total
## 14742                                                                                                                                                                       Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Female
## 14743                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Male
## 14744                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Total
## 14745                                                                                                                                                                        Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Female
## 14746                                                                                                                                                                          Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Male
## 14747                                                                                                                                                                         Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Total
## 14748                                                                                                                                                                          Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Female
## 14749                                                                                                                                                                            Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Male
## 14750                                                                                                                                                                           Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Total
## 14751                                                                                                                                                                    Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Female
## 14752                                                                                                                                                                      Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Male
## 14753                                                                                                                                                                     Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Total
## 14754                                                                                                                                                                                                                                Protecting minority investors (DB06-14 methodology) - Score
## 14755                                                                                                                                                                                                                                Protecting minority investors (DB15-20 methodology) - Score
## 14756                                                                                                                                                                                                Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology)
## 14757                                                                                                                                                                                                Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology)
## 14758                                                                                                                                                                                        Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology) - Score
## 14759                                                                                                                                                                                        Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology) - Score
## 14760                                                                                                                                                                                                                           Protecting minority investors: Extent of disclosure index (0-10)
## 14761                                                                                                                                                                                Protecting minority investors: Extent of conflict of interest regulation index (0-10) (DB15-19 methodology)
## 14762                                                                                                                                                                                          Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology)
## 14763                                                                                                                                                                                  Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology) - Score
## 14764                                                                                                                                                                                                           Protecting minority investors: Extent of director liability index (0-10) - Score
## 14765                                                                                                                                                                                                                   Protecting minority investors: Extent of disclosure index (0-10) - Score
## 14766                                                                                                                                                                                           Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology)
## 14767                                                                                                                                                                                   Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology) - Score
## 14768                                                                                                                                                                                         Protecting minority investors: Extent of shareholder governance index (0-10) (DB15-19 methodology)
## 14769                                                                                                                                                                                              Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology)
## 14770                                                                                                                                                                                      Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology) - Score
## 14771                                                                                                                                                                                                                   Protecting minority investors: Extent of director liability index (0-10)
## 14772                                                                                                                                                                                                                 Rank: Protecting minority investors (1=most business-friendly regulations)
## 14773                                                                                                                                                                                          Protecting minority investors: Strength of investor protection index (0-10) (DB06-14 methodology)
## 14774                                                                                                                                                                                 Protecting minority investors: Strength of minority investor protection index (0-50) (DB15-20 methodology)
## 14775                                                                                                                                                                                                                    PDI-1 Country with operational national development strategies (rating)
## 14776                                                                                                                                                                                                                                              PDI-10a Donor missions co-ordinated (percent)
## 14777                                                                                                                                                                                                                                            PDI-10b Country-analysis co-ordinated (percent)
## 14778                                                                                                                                                                                                                PDI-11 Existence of a monitorable performance assessment framework (rating)
## 14779                                                                                                                                                                                                                                PDI-12 Existence of a mutual accountability review (rating)
## 14780                                                                                                                                                                                                                           PDI-2a Country financial management systems reliability (rating)
## 14781                                                                                                                                                                                                                                    PDI-2b Country procurement systems reliability (rating)
## 14782                                                                                                                                                                                                                    PDI-3 Government budget estimates comprehensive and realistic (percent)
## 14783                                                                                                                                                                                                      PDI-4 Technical assistance aligned and co-ordinated with country programmes (percent)
## 14784                                                                                                                                                                                              PDI-5a Aid for government sectors uses country public finanacial management systems (percent)
## 14785                                                                                                                                                                                                               PDI-5b Aid for government sectors uses country procurement systems (percent)
## 14786                                                                                                                                                                                                                 PDI-6 Project implementation units parallel to country structures (number)
## 14787                                                                                                                                                                                                                   PDI-7 Aid disbursements on schedule and recorded by government (percent)
## 14788                                                                                                                                                                                                                                               PDI-8 Bilateral aid that is untied (percent)
## 14789                                                                                                                                                                                                                     PDI-9 Aid provided in the framework of programme-based appproaches (%)
## 14790                                                                                                                                                                                                                            Political Stability and Absence of Violence/Terrorism: Estimate
## 14791                                                                                                                                                                                                                   Political Stability and Absence of Violence/Terrorism: Number of Sources
## 14792                                                                                                                                                                                                                     Political Stability and Absence of Violence/Terrorism: Percentile Rank
## 14793                                                                                                                                                                             Political Stability and Absence of Violence/Terrorism: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14794                                                                                                                                                                             Political Stability and Absence of Violence/Terrorism: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14795                                                                                                                                                                                                                      Political Stability and Absence of Violence/Terrorism: Standard Error
## 14796                                                                                                                                                                                                                                                                   Manufactures value index
## 14797                                                                                                                                                                                                                                     Manufactured exports unit value (MUV) index (% change)
## 14798                                                                                                                                                                                                                                  Real effective exchange rate index (line rec, 2005 = 100)
## 14799                                                                                                                                                                                                                                            Real effective exchange rate index (2010 = 100)
## 14800                                                                                                                                                                                                                                                             26_Portfolio investment assets
## 14801                                                                                                                                                                                                                                                 24_International reserves (excluding gold)
## 14802                                                                                                                                                                                                                                                                 07_Multilateral loans, IMF
## 14803                                                                                                                                                                                                                                                     13_Multilateral loans, IMF, short term
## 14804                                                                                                                                                                                                                                                                          11_SDR allocation
## 14805                                                                                                                                                                                                                                                    14_Debt securities held by nonresidents
## 14806                                                                                                                                                                                                                                 15_Debt securities held by nonresidents, total, short term
## 14807                                                                                                                                                                                                                                                                            25_SDR holdings
## 14808                                                                                                                                                                                                                                                  08_Multilateral loans, other institutions
## 14809                                                                                                                                                                                                                                                               06_Multilateral loans, total
## 14810                                                                                                                                                                                                                                                     04_Official bilateral loans, aid loans
## 14811                                                                                                                                                                                                                                                         05_Official bilateral loans, other
## 14812                                                                                                                                                                                                                                                         03_Official bilateral loans, total
## 14813                                                                                                                                                                                                                                           23_Liabilities to BIS banks, consolidated, total
## 14814                                                                                                                                                                                                                                            12_Liabilities to BIS banks (cons.), short term
## 14815                                                                                                                                                                                                                                             22_Liabilities to BIS banks, locational, total
## 14816                                                                                                                                                                                                                                             01_Cross-border loans from BIS reporting banks
## 14817                                                                                                                                                                                                                                           02_Cross-border loans from BIS banks to nonbanks
## 14818                                                                                                                                                                                                                                               27_Cross-border deposits with BIS rep. banks
## 14819                                                                                                                                                                                                                                             28_Cross-border dep. with BIS banks,  nonbanks
## 14820                                                                                                                                                                                                                                           16_International debt securities, all maturities
## 14821                                                                                                                                                                                                                                                 17_International debt securities, nonbanks
## 14822                                                                                                                                                                                                                                               18_International debt securities, short term
## 14823                                                                                                                                                                                                                                             19_Intnl debt securities, nonbanks, short term
## 14824                                                                                                                                                                                                                                                             21_Paris Club claims (non ODA)
## 14825                                                                                                                                                                                                                                                                 20_Paris Club claims (ODA)
## 14826                                                                                                                                                                                                                                            09_Insured export credit exposures, Berne Union
## 14827                                                                                                                                                                                                                                        10_Insured export credit exposures, short term (BU)
## 14828                                                                                                                                                                                                              Raw info for Legislation Indicator based on PARIS21 indicators on SDG 17.18.2
## 14829                                                                                                                                                                                                                                           Raw info for  PARIS21 indicator on data literacy
## 14830                                                                                                                                                                                                                                                                   Raw info for NSO Website
## 14831                                                                                                                                                                                                    Raw info for Finance Indicator based on PARIS21 indicators on SDG 17.18.3 & SDG 17.19.1
## 14832                                                                                                                                                                                                                                                      Raw info for SDDS/e-GDDS subscription
## 14833                                                                                                                                                                                                                                                  Raw score for ODIN Download Options score
## 14834                                                                                                                                                                                                                                               Raw score for ODIN Machine Readability Score
## 14835                                                                                                                                                                                                                                             Raw score for ODIN Metadata Availability score
## 14836                                                                                                                                                                                                                                       Raw score for ODIN Non Proprietary Data Format score
## 14837                                                                                                                                                                                                                                                Raw score for ODIN Open Data Openness score
## 14838                                                                                                                                                                                                                                                      Raw score for ODIN Terms of Use score
## 14839                                                                                                                                                                                                                                                                 Raw info for NADA metadata
## 14840                                                                                                                                                                                                                                                                         NADA metadata link
## 14841                                                                                                                                                                                                                                                       Years of Population & Housing census
## 14842                                                                                                                                                                                                                                                                Years of Agriculture census
## 14843                                                                                                                                                                                                                                                     Years of Business/establishment census
## 14844                                                                                                                                                                                                                                                   Years of Household Survey on income, etc
## 14845                                                                                                                                                                                                                                                                Years of Agriculture survey
## 14846                                                                                                                                                                                                                                                                Years of Labor Force Survey
## 14847                                                                                                                                                                                                                                                         Years of Health/Demographic survey
## 14848                                                                                                                                                                                                                                                     Years of Business/establishment survey
## 14849                                                                                                                                                                                                                                   Administrative Data for Social Protection Admin (ASPIRE)
## 14850                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14851                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14852                                                                                                                                                                                                                                                 Administrative Data for Education (UNESCO)
## 14853                                                                                                                                                                                                                                                         Administrative Data for CRVS (WDI)
## 14854                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14855                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14856                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14857                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14858                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14859                                                                                                                                                                                                                                                  Administrative Data for Labor Admin (ILO)
## 14860                                                                                                                                                                                                                                 Raw score for Geospatial data available at 1st Admin Level
## 14861                                                                                                                                                                                                                                 Raw score for Geospatial data available at 2nd Admin Level
## 14862                                                                                                                                                                                                                                            Raw info for System of national accounts in use
## 14863                                                                                                                                                                                                                                                              Raw info for Business process
## 14864                                                                                                                                                                                                                                                   Raw info for National Accounts base year
## 14865                                                                                                                                                                                                                                           Raw info for Classification of national industry
## 14866                                                                                                                                                                                                                                                                 Raw info for CPI base year
## 14867                                                                                                                                                                                                                                       Raw info for Classification of household consumption
## 14868                                                                                                                                                                                                                                        Raw info for Classification of status of employment
## 14869                                                                                                                                                                                                                                          Raw info for Central government accounting status
## 14870                                                                                                                                                                                                                                  Raw info for Compilation of government finance statistics
## 14871                                                                                                                                                                                                                              Raw info for Compilation of monetary and financial statistics
## 14872                                                                                                                                                                                                                                                               Real Effective Exchange Rate
## 14873                                                                                                                                                                                     Outstanding Deposits of Commercial Banks owned by Regional Government (Province Level, in IDR Million)
## 14874                                                                                                                                                                                                        Resolving insolvency: Commencement of proceedings index (0-3) (DB15-20 methodology)
## 14875                                                                                                                                                                                                                                                   Resolving insolvency: Cost (% of estate)
## 14876                                                                                                                                                                                                             Resolving insolvency: Creditor participation index (0-4) (DB15-20 methodology)
## 14877                                                                                                                                                                                                                                         Resolving insolvency (DB04-14 methodology) - Score
## 14878                                                                                                                                                                                                                                                               Resolving insolvency - Score
## 14879                                                                                                                                                                                                                          Resolving insolvency: Recovery rate (cents on the dollar) - Score
## 14880                                                                                                                                                                                                                                                         Resolving insolvency: Time (years)
## 14881                                                                                                                                                                                                      Resolving insolvency: Management of debtor's assets index (0-6) (DB15-20 methodology)
## 14882                                                                                                                                                                                                                 Resolving insolvency: Outcome (0 as piecemeal sale and 1 as going concern)
## 14883                                                                                                                                                                                                                                  Resolving insolvency: Recovery rate (cents on the dollar)
## 14884                                                                                                                                                                                                                Resolving insolvency: Strength of insolvency framework index (0-16) - Score
## 14885                                                                                                                                                                                                                          Rank: Resolving insolvency (1=most business-friendly regulations)
## 14886                                                                                                                                                                                                                               Reorganization proceedings index (0-3) (DB15-20 methodology)
## 14887                                                                                                                                                                                                                        Resolving insolvency: Strength of insolvency framework index (0-16)
## 14888                                                                                                                                                                                                                                                               Retail Sales Volume,Index,,,
## 14889                                                                                                                                                                                                                                                Total Special Allocation Grant/DAK (in IDR)
## 14890                                                                                                                                                                                                                                                Total General Allocation Grant/DAU (in IDR)
## 14891                                                                                                                                                                                                                                    Total Natural Resource Revenue Sharing/DBH SDA (in IDR)
## 14892                                                                                                                                                                                                                                                      Total Own Source Revenue/PAD (in IDR)
## 14893                                                                                                                                                                                                                                                               Total Other Revenue (in IDR)
## 14894                                                                                                                                                                                                                                                                      Total Revenue Sharing
## 14895                                                                                                                                                                                                                                                                     Total Revenue (in IDR)
## 14896                                                                                                                                                                                                                                               Total Tax Revenue Sharing/DBH Pajak (in IDR)
## 14897                                                                                                                                                                                                                                                                      Rule of Law: Estimate
## 14898                                                                                                                                                                                                                                                             Rule of Law: Number of Sources
## 14899                                                                                                                                                                                                                                                               Rule of Law: Percentile Rank
## 14900                                                                                                                                                                                                                       Rule of Law: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14901                                                                                                                                                                                                                       Rule of Law: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14902                                                                                                                                                                                                                                                                Rule of Law: Standard Error
## 14903                                                                                                                                                                                                                         Length of District Road: Asphalt (in km) (BPS Data, Province only)
## 14904                                                                                                                                                                                                                              Length of District Road: Bad Damage (in km) (Bina Marga Data)
## 14905                                                                                                                                                                                                                      Length of District Road: Bad Damage (in km) (BPS Data, Province only)
## 14906                                                                                                                                                                                                                            Length of District Road: Dirt (in km) (BPS Data, Province only)
## 14907                                                                                                                                                                                                                                    Length of District Road: Fair (in km) (Bina Marga Data)
## 14908                                                                                                                                                                                                                            Length of District Road: Fair (in km) (BPS Data, Province only)
## 14909                                                                                                                                                                                                                                    Length of District Road: Good (in km) (Bina Marga Data)
## 14910                                                                                                                                                                                                                            Length of District Road: Good (in km) (BPS Data, Province only)
## 14911                                                                                                                                                                                                                          Length of District Road: Gravel (in km) (BPS Data, Province only)
## 14912                                                                                                                                                                                                                            Length of District Road: Light Damage (in km) (Bina Marga Data)
## 14913                                                                                                                                                                                                                    Length of District Road: Light Damage (in km) (BPS Data, Province only)
## 14914                                                                                                                                                                                                                           Length of District Road: Other (in km) (BPS Data, Province only)
## 14915                                                                                                                                                                                                                         Length of National Road: Asphalt (in km) (BPS Data, Province only)
## 14916                                                                                                                                                                                                                      Length of National Road: Bad Damage (in km) (BPS Data, Province only)
## 14917                                                                                                                                                                                                                            Length of National Road: Dirt (in km) (BPS Data, Province only)
## 14918                                                                                                                                                                                                                            Length of National Road: Fair (in km) (BPS Data, Province only)
## 14919                                                                                                                                                                                                                            Length of National Road: Good (in km) (BPS Data, Province only)
## 14920                                                                                                                                                                                                                          Length of National Road: Gravel (in km) (BPS Data, Province only)
## 14921                                                                                                                                                                                                                    Length of National Road: Light Damage (in km) (BPS Data, Province only)
## 14922                                                                                                                                                                                                                           Length of National Road: Other (in km) (BPS Data, Province only)
## 14923                                                                                                                                                                                                                         Length of Province Road: Asphalt (in km) (BPS Data, Province only)
## 14924                                                                                                                                                                                                                      Length of Province Road: Bad Damage (in km) (BPS Data, Province only)
## 14925                                                                                                                                                                                                                            Length of Province Road: Dirt (in km) (BPS Data, Province only)
## 14926                                                                                                                                                                                                                            Length of Province Road: Fair (in km) (BPS Data, Province only)
## 14927                                                                                                                                                                                                                            Length of Province Road: Good (in km) (BPS Data, Province only)
## 14928                                                                                                                                                                                                                          Length of Province Road: Gravel (in km) (BPS Data, Province only)
## 14929                                                                                                                                                                                                                    Length of Province Road: Light Damage (in km) (BPS Data, Province only)
## 14930                                                                                                                                                                                                                           Length of Province Road: Other (in km) (BPS Data, Province only)
## 14931                                                                                                                                                                                                                                       Villages with road: Asphalt (in % of total villages)
## 14932                                                                                                                                                                                                                                          Villages with road: Dirt (in % of total villages)
## 14933                                                                                                                                                                                                                                        Villages with road: Gravel (in % of total villages)
## 14934                                                                                                                                                                                                                                         Villages with road: Other (in % of total villages)
## 14935                                                                                                                                                                                                                                                               Regulatory Quality: Estimate
## 14936                                                                                                                                                                                                                                                      Regulatory Quality: Number of Sources
## 14937                                                                                                                                                                                                                                                        Regulatory Quality: Percentile Rank
## 14938                                                                                                                                                                                                                Regulatory Quality: Percentile Rank, Lower Bound of 90% Confidence Interval
## 14939                                                                                                                                                                                                                Regulatory Quality: Percentile Rank, Upper Bound of 90% Confidence Interval
## 14940                                                                                                                                                                                                                                                         Regulatory Quality: Standard Error
## 14941                                                                                                                                                                                                                                                         Outstanding loans per 1,000 adults
## 14942                                                                                                                                                                                                                                           Insurance policy holders per 1,000 adults (life)
## 14943                                                                                                                                                                                                                                       Insurance policy holders per 1,000 adults (non-life)
## 14944                                                                                                                                                                                                      SABER: (Education Management Information Systems) Policy Goal 1: Enabling Environment
## 14945                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 1 Lever 1: Legal Framework
## 14946                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 1 Lever 2: Organizational Structure
## 14947                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 1 Lever 3: Human Resources
## 14948                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 1 Lever 4: Infrastructural capacity
## 14949                                                                                                                                                                                                            SABER: (Education Management Information Systems) Policy Goal 1 Lever 5: Budget
## 14950                                                                                                                                                                                               SABER: (Education Management Information Systems) Policy Goal 1 Lever 6: Data-driven Culture
## 14951                                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 2: System Soundness
## 14952                                                                                                                                                                                                 SABER: (Education Management Information Systems) Policy Goal 2 Lever 1: Data Architecture
## 14953                                                                                                                                                                                                     SABER: (Education Management Information Systems) Policy Goal 2 Lever 2: Data Coverage
## 14954                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 3: Data Analytics
## 14955                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 4: Dynamic System
## 14956                                                                                                                                                                                                    SABER: (Education Management Information Systems) Policy Goal 2 Lever 5: Serviceability
## 14957                                                                                                                                                                                                              SABER: (Education Management Information Systems) Policy Goal 3: Quality data
## 14958                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 3 Lever 1: Methodological Soundness
## 14959                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 3 Lever 2: Accuracy and Reliability
## 14960                                                                                                                                                                                                         SABER: (Education Management Information Systems) Policy Goal 3 Lever 3: Integrity
## 14961                                                                                                                                                                                        SABER: (Education Management Information Systems) Policy Goal 3 Lever 4: Periodicity and Timeliness
## 14962                                                                                                                                                                                            SABER: (Education Management Information Systems) Policy Goal 4: Utilization in decision making
## 14963                                                                                                                                                                                                          SABER: (Education Management Information Systems) Policy Goal 4 Lever 1: Openness
## 14964                                                                                                                                                                                                   SABER: (Education Management Information Systems) Policy Goal 4 Lever 2: Operational Use
## 14965                                                                                                                                                                                                     SABER: (Education Management Information Systems) Policy Goal 4 Lever 3: Accessibility
## 14966                                                                                                                                                                           SABER: (Education Management Information Systems) Policy Goal 4 Lever 4: Effectiveness in Disseminating Findings
## 14967                                                                                                                                                                                                   SABER: (Early Childhood Development) Policy Goal 1: Establishing an Enabling Environment
## 14968                                                                                                                                                                                                                SABER: (Early Childhood Development) Policy Goal 1 Lever 1: Legal Framework
## 14969                                                                                                                                                                                                    SABER: (Early Childhood Development) Policy Goal 1 Lever 2: Inter-sectoral Coordination
## 14970                                                                                                                                                                                                                        SABER: (Early Childhood Development) Policy Goal 1 Lever 3: Finance
## 14971                                                                                                                                                                                                                    SABER: (Early Childhood Development) Policy Goal 2: Implementing Widely
## 14972                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 2 Lever 1: Scope of Programs
## 14973                                                                                                                                                                                                                       SABER: (Early Childhood Development) Policy Goal 2 Lever 2: Coverage
## 14974                                                                                                                                                                                                                         SABER: (Early Childhood Development) Policy Goal 2 Lever 3: Equity
## 14975                                                                                                                                                                                                        SABER: (Early Childhood Development) Policy Goal 3: Monitoring and Assuring Quality
## 14976                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 3 Lever 1: Data Availability
## 14977                                                                                                                                                                                                              SABER: (Early Childhood Development) Policy Goal 3 Lever 2: Quality Standards
## 14978                                                                                                                                                                                                      SABER: (Early Childhood Development) Policy Goal 3 Lever 3: Compliance with Standards
## 14979                                                                                                                                                                                 SABER: (Engaging the Private Sector, Government funded) Policy Goal 5: Encouraging innovation by providers
## 14980                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 1: Teacher standards
## 14981                                                                                                                                                                      SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 2: Appointment and deployment of teachers
## 14982                                                                                                                                                                                            SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 3: Teacher salaries
## 14983                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 4: Teacher dismissal
## 14984                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 5: Curriculum delivery
## 14985                                                                                                                                                                                        SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 6: Classroom resourcing
## 14986                                                                                                                                                                                             SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 7: Budget autonomy
## 14987                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 6: Holding schools accountable
## 14988                                                                                                                                                                                           SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 1: Student standards
## 14989                                                                                                                                                                                          SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 2: Student assessment
## 14990                                                                                                                                                                                         SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 3: Financial reporting
## 14991                                                                                                                                                                                                  SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 4: Inspection
## 14992                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 5: Improvement planning 
## 14993                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 6: Sanctions and rewards
## 14994                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 7: Empowering all parents, students, and communities
## 14995                                                                                                                                                                                                 SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 1: Information
## 14996                                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 2: Voice
## 14997                                                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 3: Selection
## 14998                                                                                                                                                                                               SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 4: Contributions
## 14999                                                                                                                                                                                       SABER: (Engaging the Private Sector, Government funded) Policy Goal 8: Promoting diversity of supply
## 15000                                                                                                                                                                                                   SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 1: Ownership
## 15001                                                                                                                                                                                     SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 2: Certification standards
## 15002                                                                                                                                                                                    SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 3: Market entry information
## 15003                                                                                                                                                                                             SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 4: Regulatory fees
## 15004                                                                                                                                                                                                     SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 5: Funding
## 15005                                                                                                                                                                                                  SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 6: Incentives
## 15006                                                                                                                                                                                                    SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 7: Planning
## 15007                                                                                                                                                                                                         SABER: (School Health and School Feeding) Feeding Policy Goal 1: Policy Frameworks
## 15008                                                                                                                                                                                                        SABER: (School Health and School Feeding) Feeding Policy Goal 2: Financial Capacity
## 15009                                                                                                                                                                                   SABER: (School Health and School Feeding) Feeding Policy Goal 3: Institutional Capacity and Coordination
## 15010                                                                                                                                                                                                 SABER: (School Health and School Feeding) Feeding Policy Goal 4: Design and Implementation
## 15011                                                                                                                                                                                   SABER: (School Health and School Feeding) Feeding Policy Goal 5: Community Roles–Reaching Beyond Schools
## 15012                                                                                                                                                                                             SABER: (School Health and School Feeding) Health Policy Goal 1: Health-related school policies
## 15013                                                                                                                                                                                       SABER: (School Health and School Feeding) Health Policy Goal 2: Safe, Supportive School Environments
## 15014                                                                                                                                                                                 SABER: (School Health and School Feeding) Health Policy Goal 3: School-Based Health and Nutrition Services
## 15015                                                                                                                                                                                              SABER: (School Health and School Feeding) Health Policy Goal 4: Skills-Based Health Education
## 15016                                                                                                                                                                                                    SABER: (Engaging the Private Sector) Policy Goal 1: Encouraging innovation by providers
## 15017                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 1 Lever 1: Teacher standards
## 15018                                                                                                                                                                                             SABER: (Engaging the Private Sector) Policy Goal 1 Lever 2: Teacher appointment and deployment
## 15019                                                                                                                                                                                                               SABER: (Engaging the Private Sector) Policy Goal 1 Lever 3: Teacher salaries
## 15020                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 1 Lever 4: Teacher dismissal
## 15021                                                                                                                                                                                                            SABER: (Engaging the Private Sector) Policy Goal 1 Lever 5: Curriculum Delivery
## 15022                                                                                                                                                                                                           SABER: (Engaging the Private Sector) Policy Goal 1 Lever 6: Classroom resourcing
## 15023                                                                                                                                                                                                            SABER: (Engaging the Private Sector) Policy Goal 2: Holding schools accountable
## 15024                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 2 Lever 1: Student standards
## 15025                                                                                                                                                                                                             SABER: (Engaging the Private Sector) Policy Goal 2 Lever 2: Student assessment
## 15026                                                                                                                                                                                                                     SABER: (Engaging the Private Sector) Policy Goal 2 Lever 3: Inspection
## 15027                                                                                                                                                                                                           SABER: (Engaging the Private Sector) Policy Goal 2 Lever 4: Improvement planning
## 15028                                                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 2 Lever 5: Sanctions
## 15029                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 3: Empowering all parents, students, and communities
## 15030                                                                                                                                                                                                                    SABER: (Engaging the Private Sector) Policy Goal 3 Lever 1: Information
## 15031                                                                                                                                                                                                                          SABER: (Engaging the Private Sector) Policy Goal 3 Lever 2: Voice
## 15032                                                                                                                                                                                                              SABER: (Engaging the Private Sector) Policy Goal 3 Lever 3: Financial Support
## 15033                                                                                                                                                                                                          SABER: (Engaging the Private Sector) Policy Goal 4: Promoting diversity of supply
## 15034                                                                                                                                                                                                                   SABER: (Engaging the Private Sector) Policy Goal 4 Lever 1: Tuition fees
## 15035                                                                                                                                                                                                                      SABER: (Engaging the Private Sector) Policy Goal 4 Lever 2: Ownership
## 15036                                                                                                                                                                                                        SABER: (Engaging the Private Sector) Policy Goal 4 Lever 3: Certification standards
## 15037                                                                                                                                                                                                                   SABER: (Engaging the Private Sector) Policy Goal 4 Lever 4: Market entry
## 15038                                                                                                                                                                                                                SABER: (Engaging the Private Sector) Policy Goal 4 Lever 5: Regulatory fees
## 15039                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 1: Level of autonomy in the planning and management of school budget
## 15040                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 1 Lever 1: Legal authority over the management of the operational budget
## 15041                                                                                                                                                      SABER: (School Autonomy Accountability) Policy Goal 1 Lever 2: Legal authority over the management of the non-teaching staff salaries
## 15042                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 1 Lever 3: Legal authority over the management of teacher salaries
## 15043                                                                                                                                                                    SABER: (School Autonomy Accountability) Policy Goal 1 Lever 4: Legal authority to raise additional funds for the school
## 15044                                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 1 Lever 5: Collaborative budget planning
## 15045                                                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 2: Level of autonomy in personnel management
## 15046                                                                                                                                                                    SABER: (School Autonomy Accountability) Policy Goal 2 Lever 1: Autonomy in teacher appointment and deployment decisions
## 15047                                                                                                                                                         SABER: (School Autonomy Accountability) Policy Goal 2 Lever 2: Autonomy in non-teaching staff appointment and deployment decisions
## 15048                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 2 Lever 3: Autonomy in school principal appointment and deployment decisions
## 15049                                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3: Role of the school council on school governance
## 15050                                                                                                                                                                  SABER: (School Autonomy Accountability) Policy Goal 3 Lever 1: Participation of the school councils in budget preparation
## 15051                                                                                                                                                                 SABER: (School Autonomy Accountability) Policy Goal 3 Lever 2: Participation of the school councils in financial oversight
## 15052                                                                                                                                                                SABER: (School Autonomy Accountability) Policy Goal 3 Lever 3: Participation of the school councils in personnel management
## 15053                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 3 Lever 4: Participation of the school councils in school activities
## 15054                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3 Lever 5: Participation of the school councils in learning inputs
## 15055                                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 3 Lever 6: Transparency in community participation
## 15056                                                                                                                                                                                                       SABER: (School Autonomy Accountability) Policy Goal 4: School and student assessment
## 15057                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 4 Lever 1: Existence and Frequency of school assessments
## 15058                                                                                                                                                                     SABER: (School Autonomy Accountability) Policy Goal 4 Lever 2: Use of school assessments for making school adjustments
## 15059                                                                                                                                                                 SABER: (School Autonomy Accountability) Policy Goal 4 Lever 3: Existence and Frequency of standardized student assessments
## 15060                                                                                                                             SABER: (School Autonomy Accountability) Policy Goal 4 Lever 4: Use of standardized student assessments for pedagogical, operational, and personnel adjustments
## 15061                                                                                                                                                                                          SABER: (School Autonomy Accountability) Policy Goal 4 Lever 5: Publication of student assessments
## 15062                                                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 5: School Accountability
## 15063                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 5 Lever 1:  Guidelines for the use of results of student assessments
## 15064                                                                                                                                                                                   SABER: (School Autonomy Accountability) Policy Goal 5 Lever 2:  Analysis of school and student performan
## 15065                                                                                                                       SABER: (School Autonomy Accountability) Policy Goal 5 Lever 3:  Degree of Financial accountability at the central level, regional, municipal, local and school level
## 15066                                                                                                                                                                               SABER: (School Autonomy Accountability) Policy Goal 5 Lever 4: Degree of Accountability in school operations
## 15067                                                                                                                                                                                           SABER: (School Autonomy Accountability) Policy Goal 5 Lever 5: Degree of learning accountability
## 15068                                                                                                                                                                                                                                   SABER: (School Finance) Policy Goal 1: Ensuring adequacy
## 15069                                                                                                                                                           SABER: (School Finance) Policy Goal 1 Lever 1:  Are ther policies and systems set up to provide basic educational inputs to all?
## 15070                                                                                                                                                                         SABER: (School Finance) Policy Goal 1 Lever 2: Are there basic educational inputs for all primary school students?
## 15071                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 2: Monitoring learning conditions and outcomes
## 15072                                                                                                                                                      SABER: (School Finance) Policy Goal 2 Lever 1: Does the government provide more resources to students from disadvantaged backgrounds?
## 15073                                                                                                                                                       SABER: (School Finance) Policy Goal 2 Lever 2: Do payments for schooling represent a high share of income for low income households?
## 15074                                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 3: Overseeing service delivery
## 15075                                                                                                                                                        SABER: (School Finance) Policy Goal 3 Lever 1: Are resources allocated and disbursed in a manner that is transparent and effective?
## 15076                                                                                                                                                        SABER: (School Finance) Policy Goal 3 Lever 2: Do monitoring and auditing processes encourage accountability in the use of funding?
## 15077                                                                                                                                                                                                 SABER: (School Finance) Policy Goal 4: Budgeting with adequate and transparent information
## 15078                                                                                                                                                                                                        SABER: (School Finance) Policy Goal 4 Lever 1: Is there an informed budget process?
## 15079                                                                                                                                                                                                SABER: (School Finance) Policy Goal 4 Lever 2: Is the budget comprehensive and transparent?
## 15080                                                                                                                                                                                                  SABER: (School Finance) Policy Goal 5: Providing more resources to students who need them
## 15081                                                                                                                                                             SABER: (School Finance) Policy Goal 5 Lever 1: Are more public resources available to students from disadvantaged backgrounds?
## 15082                                                                                                                                                        SABER: (School Finance) Policy Goal 5 Lever 2: Do payments for schooling represent a small share of income for low income families?
## 15083                                                                                                                                                                                                                      SABER: (School Finance) Policy Goal 6: Managing resources efficiently
## 15084                                                                                                                                                                      SABER: (School Finance) Policy Goal 6 Lever 1: Are there systems in place to verify the use of educational resources?
## 15085                                                                                                                                                                                                         SABER: (School Finance) Policy Goal 6 Lever 2: Are education expenditures audited?
## 15086                                                                                                                                                                                                                            SABER: (Student Assessment) Policy Goal 1: Classroom Assessment
## 15087                                                                                                                                                                                                   SABER: (Student Assessment) Policy Goal 1 Lever 1: Enabling Context and System Alignment
## 15088                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 1 Lever 2: Assessment Quality
## 15089                                                                                                                                                                                                                                    SABER: (Student Assessment) Policy Goal 2: Examinations
## 15090                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 2 Lever 1: Enabling Context
## 15091                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 2 Lever 2: System Alignment
## 15092                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 2 Lever 3: Assessment Quality
## 15093                                                                                                                                                                                                          SABER: (Student Assessment) Policy Goal 3: National Large-Scale Assessment (NLSA)
## 15094                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 3 Lever 1: Enabling Context
## 15095                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 3 Lever 2: System Alignment
## 15096                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 3 Lever 3: Assessment Quality
## 15097                                                                                                                                                                                                     SABER: (Student Assessment) Policy Goal 4: International Large-Scale Assessment (ILSA)
## 15098                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 4 Lever 1: Enabling Context
## 15099                                                                                                                                                                                                                        SABER: (Student Assessment) Policy Goal 4 Lever 2: System Alignment
## 15100                                                                                                                                                                                                                      SABER: (Student Assessment) Policy Goal 4 Lever 3: Assessment Quality
## 15101                                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 1: Setting clear expectations for teachers
## 15102                                                                                                                                                                                                        SABER: (Teachers) Policy Goal 1 Lever 1: Are there clear expectations for teachers?
## 15103                                                                                                                                                                                    SABER: (Teachers) Policy Goal 1 Lever 2: Is there useful guidance on the use of teachers' working time?
## 15104                                                                                                                                                                                                                         SABER: (Teachers) Policy Goal 2: Attracting the best into teaching
## 15105                                                                                                                                                                                     SABER: (Teachers) Policy Goal 2 Lever 1: Are entry requirements set up to attract talented candidates?
## 15106                                                                                                                                                                                                 SABER: (Teachers) Policy Goal 2 Lever 2: Is teacher pay appealing for talented candidates?
## 15107                                                                                                                                                                                         SABER: (Teachers) Policy Goal 2 Lever 3: Are working conditions appealing for talented applicants?
## 15108                                                                                                                                                                                                        SABER: (Teachers) Policy Goal 2 Lever 4: Are there attractive career opportunities?
## 15109                                                                                                                                                                                                    SABER: (Teachers) Policy Goal 3: Preparing teachers with useful Training and experience
## 15110                                                                                                                                                                          SABER: (Teachers) Policy Goal 3 Lever 1: Are there minimum standards for pre-service teaching education programs?
## 15111                                                                                                                                                              SABER: (Teachers) Policy Goal 3 Lever 2: To what extent are teacher-entrants required to be familiar with classroom practice?
## 15112                                                                                                                                                                                                            SABER: (Teachers) Policy Goal 4: Matching teachers' skills with students' needs
## 15113                                                                                                                                                                               SABER: (Teachers) Policy Goal 4 Lever 1: Are there incentives for teachers to work at hard-to-staff schools?
## 15114                                                                                                                                                                            SABER: (Teachers) Policy Goal 4 Lever 2: Are there incentives for teachers to teach critical shortage subjects?
## 15115                                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 5: Leading teachers with strong principals
## 15116                                                                                                                                                                          SABER: (Teachers) Policy Goal 5 Lever 1: Does the education system invest in developing qualified school leaders?
## 15117                                                                                                                                                                            SABER: (Teachers) Policy Goal 5 Lever 2: Are principals expected to support and improve instructional practice?
## 15118                                                                                                                                                                                                                          SABER: (Teachers) Policy Goal 6: Monitoring teaching and learning
## 15119                                                                                                                                                     SABER: (Teachers) Policy Goal 6 Lever 1: Are there systems in place to assess student learning in order to inform teaching and policy?
## 15120                                                                                                                                                                                        SABER: (Teachers) Policy Goal 6 Lever 2: Are there systems in place to monitor teacher performance?
## 15121                                                                                                                                                                                    SABER: (Teachers) Policy Goal 6 Lever 3: Are there multiple mechanisms to evaluate teacher performance?
## 15122                                                                                                                                                                                                                SABER: (Teachers) Policy Goal 7: Supporting teachers to improve instruction
## 15123                                                                                                                                                                                             SABER: (Teachers) Policy Goal 7 Lever 1: Are there opportunities for professional development?
## 15124                                                                                                                                                       SABER: (Teachers) Policy Goal 7 Lever 2: Is teacher professional development collaborative and focused on instructional improvement?
## 15125                                                                                                                                                                            SABER: (Teachers) Policy Goal 7 Lever 3: Is teacher professional development assigned based on perceived needs?
## 15126                                                                                                                                                                                                                            SABER: (Teachers) Policy Goal 8: Motivating teachers to perform
## 15127                                                                                                                                                                                                   SABER: (Teachers) Policy Goal 8 Lever 1: Are career opportunities linked to performance?
## 15128                                                                                                                                                                                                SABER: (Teachers) Policy Goal 8 Lever 2: Are there mechanisms to hold teachers accountable?
## 15129                                                                                                                                                                                                    SABER: (Teachers) Policy Goal 8 Lever 3: Is teacher compensation linked to performance?
## 15130                                                                                                                                                                                                                   SABER: (Tertiary Education) Policy Goal 1: Vision for Tertiary Education
## 15131                                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 1 Lever 1: Clear vision
## 15132                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 2: Regulatory Framework for Tertiary Education
## 15133                                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 2 Lever 1: Steering the system
## 15134                                                                                                                                                                                                                                      SABER: (Tertiary Education) Policy Goal 3: Governance
## 15135                                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 3 Lever 1: Articulation
## 15136                                                                                                                                                                                                                  SABER: (Tertiary Education) Policy Goal 3 Lever 2: Institutional autonomy
## 15137                                                                                                                                                                                                                                         SABER: (Tertiary Education) Policy Goal 4: Finance
## 15138                                                                                                                                                                                                         SABER: (Tertiary Education) Policy Goal 4 Lever 1: Coverage of resource allocation
## 15139                                                                                                                                                                                                                     SABER: (Tertiary Education) Policy Goal 4 Lever 2: Resource allocation
## 15140                                                                                                                                                                                                           SABER: (Tertiary Education) Policy Goal 4 Lever 3: Resource utilization (Equity)
## 15141                                                                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 5: Quality Assurance
## 15142                                                                                                                                                                                       SABER: (Tertiary Education) Policy Goal 5 Lever 1: Accreditation and Institutional Quality Standards
## 15143                                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 5 Lever 2: Tertiary Education Management Information
## 15144                                                                                                                                                                               SABER: (Tertiary Education) Policy Goal 6: The Relevance of Tertiary Education for Economic and Social Needs
## 15145                                                                                                                                                                                                                    SABER: (Tertiary Education) Policy Goal 6 Lever 1: Economic Development
## 15146                                                                                                                                                                                                            SABER: (Tertiary Education) Policy Goal 6 Lever 2: Fostering RDI and Innovation
## 15147                                                                                                                                               SABER: (Tertiary Education) Policy Goal 6 Lever 3: Fostering Social and Cultural Development and Environmental Protection and Sustainability
## 15148                                                                                                                                                                                                                          SABER: (Workforce Development) Policy Goal 1: Strategic Framework
## 15149                                                                                                                                                                                                        SABER: (Workforce Development) Policy Goal 1 Lever 1: Setting a Strategic Direction
## 15150                                                                                                                                                                                                   SABER: (Workforce Development) Policy Goal 1 Lever 2: Fostering a Demand-Driven Approach
## 15151                                                                                                                                                                                                  SABER: (Workforce Development) Policy Goal 1 Lever 3: Strengthening Critical Coordination
## 15152                                                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 2: System Oversight
## 15153                                                                                                                                                                                            SABER: (Workforce Development) Policy Goal 2 Lever 1: Ensuring Efficiency and Equity in Funding
## 15154                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 2 Lever 2: Assuring Relevant and Reliable Standards
## 15155                                                                                                                                                                                         SABER: (Workforce Development) Policy Goal 2 Lever 3: Diversifying Pathways for Skills Acquisition
## 15156                                                                                                                                                                                                                             SABER: (Workforce Development) Policy Goal 3: Service Delivery
## 15157                                                                                                                                                                              SABER: (Workforce Development) Policy Goal 3 Lever 1: Enabling Diversity and Excellence in Training Provision
## 15158                                                                                                                                                                                      SABER: (Workforce Development) Policy Goal 3 Lever 2: Fostering Relevance in Public Training Programs
## 15159                                                                                                                                                                                  SABER: (Workforce Development) Policy Goal 3 Lever 3: Enhancing Evidence-based Accountability for Results
## 15160                                                                                                                                                                                                                                    Illiteracy rate, youth female (% of females ages 15-24)
## 15161                                                                                                                                                                                                                                        Illiteracy rate, youth male (% of males ages 15-24)
## 15162                                                                                                                                                                                                                                      Illiteracy rate, youth total (% of people ages 15-24)
## 15163                                                                                                                                                                                                                                      Literacy rate, youth female (% of females ages 15-24)
## 15164                                                                                                                                                                                                                               Literacy rate, youth (ages 15-24), gender parity index (GPI)
## 15165                                                                                                                                                                                                                                          Literacy rate, youth male (% of males ages 15-24)
## 15166                                                                                                                                                                                                                                        Literacy rate, youth total (% of people ages 15-24)
## 15167                                                                                                                                                                                                                             Illiteracy rate, adult female (% of females ages 15 and above)
## 15168                                                                                                                                                                                                                                 Illiteracy rate, adult male (% of males ages 15 and above)
## 15169                                                                                                                                                                                                                               Illiteracy rate, adult total (% of people ages 15 and above)
## 15170                                                                                                                                                                                                                               Literacy rate, adult female (% of females ages 15 and above)
## 15171                                                                                                                                                                                                                                   Literacy rate, adult male (% of males ages 15 and above)
## 15172                                                                                                                                                                                                                                 Literacy rate, adult total (% of people ages 15 and above)
## 15173                                                                                                                                                                                                                                                     Compulsory education, duration (years)
## 15174                                                                                                                                                                                                       Ratio of school attendance of orphans to school attendance of non-orphans ages 10-14
## 15175                                                                                                                                                                                                                              School enrollment, primary (gross), gender parity index (GPI)
## 15176                                                                                                                                                                                                                                                   School Enroll. Ratio, primary school (%)
## 15177                                                                                                                                                                                                                School enrollment, primary and secondary (gross), gender parity index (GPI)
## 15178                                                                                                                                                                                                                            School enrollment, secondary (gross), gender parity index (GPI)
## 15179                                                                                                                                                                                                                                                 School Enroll. Ratio, secondary school (%)
## 15180                                                                                                                                                                                                                             School enrollment, tertiary (gross), gender parity index (GPI)
## 15181                                                                                                                                                                                                                                                                      Learning Poverty Rate
## 15182                                                                                                                                                              (De Facto) Percent of 10 year old children who are out-of-school or in-school and not achieving basic proficiency on reading.
## 15183                                                                                                                                                                                                                                                              Proficiency by End of Primary
## 15184                                                                                                                                                                                   (De Facto) Percent of children proficient in literacy and numeracy by end of primary, as reported by UIS
## 15185                                                                                                                                                                                                                                              Net Enrollment Ratio: Junior Secondary (in %)
## 15186                                                                                                                                                                                                                    Literacy Rate for Population age 15 and over (in % of total population)
## 15187                                                                                                                                                     Learning poverty: Share of Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15188                                                                                                                                                                                                         Pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15189                                                                                                                                                                                                  Female pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15190                                                                                                                                                                                                    Male pupils below minimum reading proficiency at end of primary (%). Low GAML threshold
## 15191                                                                                                                                              Learning poverty: Share of Female Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15192                                                                                                                                                Learning poverty: Share of Male Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%)
## 15193                                                                                                                                                                                                                                              Primary school age children out-of-school (%)
## 15194                                                                                                                                                                                                                                       Female primary school age children out-of-school (%)
## 15195                                                                                                                                                                                                                                         Male primary school age children out-of-school (%)
## 15196                                                                                                                                                                                         Average National Exam Score: Junior Secondary Level (out of 100, available only at district level)
## 15197                                                                                                                                                                                                  Average National Exam Score: Primary Level (out of 100, available only at district level)
## 15198                                                                                                                                                                                         Average National Exam Score: Senior Secondary Level (out of 100, available only at district level)
## 15199                                                                                                                                                                                                                                                     Preprimary education, duration (years)
## 15200                                                                                                                                                                                                                                    Enrolment in pre-primary education, both sexes (number)
## 15201                                                                                                                                                                                                                                        Enrolment in pre-primary education, female (number)
## 15202                                                                                                                                                                                                                                                            Pupil-teacher ratio, preprimary
## 15203                                                                                                                                                                                                                                                    School enrollment, preprimary (% gross)
## 15204                                                                                                                                                                                                                                            School enrollment, preprimary, female (% gross)
## 15205                                                                                                                                                                                                                                              School enrollment, preprimary, male (% gross)
## 15206                                                                                                                                                                                                               Percentage of enrolment in pre-primary education in private institutions (%)
## 15207                                                                                                                                                                                                                    Trained teachers in preprimary education, female (% of female teachers)
## 15208                                                                                                                                                                                                                        Trained teachers in preprimary education, male (% of male teachers)
## 15209                                                                                                                                                                                                                             Trained teachers in preprimary education (% of total teachers)
## 15210                                                                                                                                                                                                                                     Teachers in pre-primary education, both sexes (number)
## 15211                                                                                                                                                                                                                                         Teachers in pre-primary education, female (number)
## 15212                                                                                                                                                                                                                         Percentage of teachers in pre-primary education who are female (%)
## 15213                                                                                                                                                                                                                                     Age efficiency, primary (net enrollment as % of gross)
## 15214                                                                                                                                                                                                                                                        Primary school starting age (years)
## 15215                                                                                                                                                                                                                                                                         Student Attendance
## 15216                                                                                                                                                                                                               (De Facto) Percent of 4th grade students present during an unannounced visit
## 15217                                                                                                                                                                                                      (De Facto) Percent of 4th grade students present during an unannounced visit - Female
## 15218                                                                                                                                                                                                        (De Facto) Percent of 4th grade students present during an unannounced visit - Male
## 15219                                                                                                                                                                                                       (De Facto) Percent of 4th grade students present during an unannounced visit - Rural
## 15220                                                                                                                                                                                                       (De Facto) Percent of 4th grade students present during an unannounced visit - Urban
## 15221                                                                                                                                                                                                                                                                                  Financing
## 15222                                                                                                                                           Financing score; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness in terms of adequacy, efficiency, and equity.
## 15223                                                                                                                                                                                                                                 (Financing) - Adequacy expressed by the per child spending
## 15224                                                                                                 (Financing) Efficiency - Expressed by the score from the Public Expenditure and Financial Accountability (PEFA) assessment; where 0 is the lowest possible efficiency and 1 is the highest
## 15225                                                                                                                                      (Financing) Efficiency - Expressed by the relationship between financing and outcomes; where 0 is the lowest possible efficiency and 1 is the highest
## 15226                                                                                                                                                                                                                                                                       (Financing) - Equity
## 15227                                                                                                                                                                                                                                                                  Impartial Decision-Making
## 15228                                                                                                                                                             Average score for Impartial Decision-Making; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15229                                                                                                                                                                                                             (Impartial Decision-Making) average score for politicized personnel management
## 15230                                                                                                                                                                                                                    (Impartial Decision-Making) average score for politicized policy-making
## 15231                                                                                                                                                                                                            (Impartial Decision-Making) average score for politicized policy implementation
## 15232                                                                                                                                                                                                              (Impartial Decision-Making) average score for employee unions as facilitators
## 15233                                                                                                                                                                                                                                                                  Mandates & Accountability
## 15234                                                                                                                                                             Average score for Mandates & Accountability; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15235                                                                                                                                                                                                                                    (Mandates & Accountability) Average score for coherence
## 15236                                                                                                                                                                                                                                 (Mandates & Accountability) Average score for transparency
## 15237                                                                                                                                                                                                           (Mandates & Accountability) Average score for accountability of public officials
## 15238                                                                                                                                                                                                                                                                    National Learning Goals
## 15239                                                                                                                                                               Average score for National Learning Goals; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15240                                                                                                                                                                                                                                      (National Learning Goals) Average score for targeting
## 15241                                                                                                                                                                                                                                     (National Learning Goals) Average score for monitoring
## 15242                                                                                                                                                                                                                                     (National Learning Goals) Average score for incentives
## 15243                                                                                                                                                                                                                           (National Learning Goals) Average score for community engagement
## 15244                                                                                                                                                                                                                                                             Characteristics of Bureaucracy
## 15245                                                                                                                                                        Average score for Characteristics of Bureaucracy; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness
## 15246                                                                                                                                                                                                                    (Characteristics of Bureaucracy) average score for knowledge and skills
## 15247                                                                                                                                                                                                                        (Characteristics of Bureaucracy) average score for work environment
## 15248                                                                                                                                                                                                                                   (Characteristics of Bureaucracy) average score for merit
## 15249                                                                                                                                                                                                                (Characteristics of Bureaucracy) average score for motivation and attitudes
## 15250                                                                                                                                                                                                                                                Gross graduation ratio, primary, female (%)
## 15251                                                                                                                                                                                                                                                  Gross graduation ratio, primary, male (%)
## 15252                                                                                                                                                                                                                                                 Gross graduation ratio, primary, total (%)
## 15253                                                                                                                                                                                                                        Primary completion rate, female (% of relevant age group, DHS/MICS)
## 15254                                                                                                                                                                                                                          Primary completion rate, male (% of relevant age group, DHS/MICS)
## 15255                                                                                                                                                                                                              Primary completion rate, poorest quintile (% of relevant age group, DHS/MICS)
## 15256                                                                                                                                                                                                              Primary completion rate, richest quintile (% of relevant age group, DHS/MICS)
## 15257                                                                                                                                                                                                                         Primary completion rate, rural (% of relevant age group, DHS/MICS)
## 15258                                                                                                                                                                                                                         Primary completion rate, urban (% of relevant age group, DHS/MICS)
## 15259                                                                                                                                                                                                                                  Primary completion rate, female (% of relevant age group)
## 15260                                                                                                                                                                                                                                    Primary completion rate, male (% of relevant age group)
## 15261                                                                                                                                                                                                                                   Primary completion rate, total (% of relevant age group)
## 15262                                                                                                                                                                                                                                                                          Content Knowledge
## 15263                                                                                                                                                                                                                       (De Facto) Percent of teachers proficient in the subjects they teach
## 15264                                                                                                                                                                                                              (De Facto) Percent of teachers proficient in the subjects they teach - Female
## 15265                                                                                                                                                                                                                (De Facto) Percent of teachers proficient in the subjects they teach - Male
## 15266                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subjects they teach - Rural
## 15267                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subjects they teach - Urban
## 15268                                                                                                                                                                                                                       (De Facto) Percent of teachers proficient in the subject of language
## 15269                                                                                                                                                                                                              (De Facto) Percent of teachers proficient in the subject of language - Female
## 15270                                                                                                                                                                                                                (De Facto) Percent of teachers proficient in the subject of language - Male
## 15271                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subject of language - Rural
## 15272                                                                                                                                                                                                               (De Facto) Percent of teachers proficient in the subject of language - Urban
## 15273                                                                                                                                                                                                                    (De Facto) Percent of teachers proficient in the subject of mathematics
## 15274                                                                                                                                                                                                           (De Facto) Percent of teachers proficient in the subject of mathematics - Female
## 15275                                                                                                                                                                                                             (De Facto) Percent of teachers proficient in the subject of mathematics - Male
## 15276                                                                                                                                                                                                            (De Facto) Percent of teachers proficient in the subject of mathematics - Rural
## 15277                                                                                                                                                                                                            (De Facto) Percent of teachers proficient in the subject of mathematics - Urban
## 15278                                                                                                                                                                                          Educational attainment, at least completed primary, population 25+ years, female (%) (cumulative)
## 15279                                                                                                                                                                                            Educational attainment, at least completed primary, population 25+ years, male (%) (cumulative)
## 15280                                                                                                                                                                                           Educational attainment, at least completed primary, population 25+ years, total (%) (cumulative)
## 15281                                                                                                                                                                                                                                                        Primary education, duration (years)
## 15282                                                                                                                                                                                                                                                                           Teacher Presence
## 15283                                                                                                                                                              (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit
## 15284                                                                                                                                                     (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Female
## 15285                                                                                                                                                       (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Male
## 15286                                                                                                                                                      (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Rural
## 15287                                                                                                                                                      (De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Urban
## 15288                                                                                                                                                                                                          (De Facto) Percent of teachers present in their schools during an announced visit
## 15289                                                                                                                                                                                                 (De Facto) Percent of teachers present in their schools during an announced visit - Female
## 15290                                                                                                                                                                                                   (De Facto) Percent of teachers present in their schools during an announced visit - Male
## 15291                                                                                                                                                                                                  (De Facto) Percent of teachers present in their schools during an announced visit - Rural
## 15292                                                                                                                                                                                                  (De Facto) Percent of teachers present in their schools during an announced visit - Urban
## 15293                                                                                                                                                                                                                                                        Primary Schl. Enroll. Ratio, Female
## 15294                                                                                                                                                                                                                                                                  Primary education, pupils
## 15295                                                                                                                                                                                                                                            Enrolment in primary education, female (number)
## 15296                                                                                                                                                                                                                                                       Primary education, pupils (% female)
## 15297                                                                                                                                                                                                                                                               Pupil-teacher ratio, primary
## 15298                                                                                                                                                                                                                                                       School enrollment, primary (% gross)
## 15299                                                                                                                                                                                                                                               School enrollment, primary, female (% gross)
## 15300                                                                                                                                                                                                                                                 School enrollment, primary, male (% gross)
## 15301                                                                                                                                                                                                                                                          School Enroll. Ratio, primary (%)
## 15302                                                                                                                                                                                                   Gross intake ratio in first grade of primary education, female (% of relevant age group)
## 15303                                                                                                                                                                                                     Gross intake ratio in first grade of primary education, male (% of relevant age group)
## 15304                                                                                                                                                                                                    Gross intake ratio in first grade of primary education, total (% of relevant age group)
## 15305                                                                                                                                                                                                                                                                   Instructional Leadership
## 15306                                                                                                                                                                                                          (De Facto) Average score for the presence and quality of instructional leadership
## 15307                                                                                                                                                                                                 (De Facto) Average score for the presence and quality of instructional leadership - Female
## 15308                                                                                                                                                                                                   (De Facto) Average score for the presence and quality of instructional leadership - Male
## 15309                                                                                                                                                                                                  (De Facto) Average score for the presence and quality of instructional leadership - Rural
## 15310                                                                                                                                                                                                  (De Facto) Average score for the presence and quality of instructional leadership - Urban
## 15311                                                                                                                                                                                                                   (De Facto) Percent of teachers reporting having had their class observed
## 15312                                                                                                                                                                                                          (De Facto) Percent of teachers reporting having had their class observed - Female
## 15313                                                                                                                                                                                                            (De Facto) Percent of teachers reporting having had their class observed - Male
## 15314                                                                                                                                                                                                           (De Facto) Percent of teachers reporting having had their class observed - Rural
## 15315                                                                                                                                                                                                           (De Facto) Percent of teachers reporting having had their class observed - Urban
## 15316                                                                                                                                                                                                  (De Facto) Percent of teachers reporting that the classroom observation happened recently
## 15317                                                                                                                                                                                         (De Facto) Percent of teachers reporting that the classroom observation happened recently - Female
## 15318                                                                                                                                                                                           (De Facto) Percent of teachers reporting that the classroom observation happened recently - Male
## 15319                                                                                                                                                                                          (De Facto) Percent of teachers reporting that the classroom observation happened recently - Rural
## 15320                                                                                                                                                                                          (De Facto) Percent of teachers reporting that the classroom observation happened recently - Urban
## 15321                                                                                                                                                                                         (De Facto) Percent of teachers reporting having discussed the results of the classroom observation
## 15322                                                                                                                                                                                (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Female
## 15323                                                                                                                                                                                  (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Male
## 15324                                                                                                                                                                                 (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Rural
## 15325                                                                                                                                                                                 (De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Urban
## 15326                                                                                                                                                                                                           (De Facto) Percent of teachers reporting that the discussion was over 30 minutes
## 15327                                                                                                                                                                                                  (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Female
## 15328                                                                                                                                                                                                    (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Male
## 15329                                                                                                                                                                                                   (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Rural
## 15330                                                                                                                                                                                                   (De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Urban
## 15331                                                                                                                                                                                          (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion
## 15332                                                                                                                                                                                 (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Female
## 15333                                                                                                                                                                                   (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Male
## 15334                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Rural
## 15335                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Urban
## 15336                                                                                                                                                                                                                               (De Facto) Percent of teachers reporting having lesson plans
## 15337                                                                                                                                                                                                                      (De Facto) Percent of teachers reporting having lesson plans - Female
## 15338                                                                                                                                                                                                                        (De Facto) Percent of teachers reporting having lesson plans - Male
## 15339                                                                                                                                                                                                                       (De Facto) Percent of teachers reporting having lesson plans - Rural
## 15340                                                                                                                                                                                                                       (De Facto) Percent of teachers reporting having lesson plans - Urban
## 15341                                                                                                                                (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher)
## 15342                                                                                                                       (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Female
## 15343                                                                                                                         (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Male
## 15344                                                                                                                        (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Rural
## 15345                                                                                                                        (De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Urban
## 15346                                                                                                                                                                                                                                                                                 Monitoring
## 15347                                                                                                                                                                          (De Facto) Percent of schools that report there is someone monitoring that basic inputs are available to students
## 15348                                                                                                                                                                                           (De Jure) Number of basic infrastructure features clearly articulated as needing to be monitored
## 15349                                                                                                                                                 (De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic inputs
## 15350                                                                                                                                                                               (De Facto) Percent of schools that report that there is an inventory to monitor availability of basic inputs
## 15351                                                                                                                                                                               (De Facto) Percent of schools that report there is someone monitoring that basic infrastructure is available
## 15352                                                                                                                                         (De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic infrastructure
## 15353                                                                                                                                                                       (De Facto) Percent of schools that report that there is an inventory to monitor availability of basic infrastructure
## 15354                                                                                                                                                                                            (De Jure) Is the responsibility of monitoring basic inputs clearly articulated in the policies?
## 15355                                                                                                                                                                                                            (De Jure) Number of basic inputs clearly articulated as needing to be monitored
## 15356                                                                                                                                                                                    (De Jure) Is the responsibility of monitoring basic infrastructure clearly articulated in the policies?
## 15357                                                                                                                                                                                                                             (De Facto) Policy Lever (Inputs & Infrastructure) - Monitoring
## 15358                                                                                                                                                                                                                              (De Jure) Policy Lever (Inputs & Infrastructure) - Monitoring
## 15359                                                                                                                                                                                                                                                                       Basic Infrastructure
## 15360                                                                                                                                                                                                                     (De Facto) Average number of infrastructure aspects present in schools
## 15361                                                                                                                                                                                                             (De Facto) Average number of infrastructure aspects present in schools - Rural
## 15362                                                                                                                                                                                                             (De Facto) Average number of infrastructure aspects present in schools - Urban
## 15363                                                                                                                                                                                                                                          (De Facto) Percent of schools with drinking water
## 15364                                                                                                                                                                                                                                  (De Facto) Percent of schools with drinking water - Rural
## 15365                                                                                                                                                                                                                                  (De Facto) Percent of schools with drinking water - Urban
## 15366                                                                                                                                                                                                                                     (De Facto) Percent of schools with functioning toilets
## 15367                                                                                                                                                                                                                             (De Facto) Percent of schools with functioning toilets - Rural
## 15368                                                                                                                                                                                                                             (De Facto) Percent of schools with functioning toilets - Urban
## 15369                                                                                                                                                                                                                                   (De Facto) Percent of schools with access to electricity
## 15370                                                                                                                                                                                                                           (De Facto) Percent of schools with access to electricity - Rural
## 15371                                                                                                                                                                                                                           (De Facto) Percent of schools with access to electricity - Urban
## 15372                                                                                                                                                                                                                                      (De Facto) Percent of schools with access to internet
## 15373                                                                                                                                                                                                                              (De Facto) Percent of schools with access to internet - Rural
## 15374                                                                                                                                                                                                                              (De Facto) Percent of schools with access to internet - Urban
## 15375                                                                                                                                                                                                                    (De Facto) Percent of schools accessible to children with special needs
## 15376                                                                                                                                                                                                            (De Facto) Percent of schools accessible to children with special needs - Rural
## 15377                                                                                                                                                                                                            (De Facto) Percent of schools accessible to children with special needs - Urban
## 15378                                                                                                                                                                                                                                                                               Basic Inputs
## 15379                                                                                                                                                                                                                                (De Facto) Average number of classroom inputs in classrooms
## 15380                                                                                                                                                                                                                        (De Facto) Average number of classroom inputs in classrooms - Rural
## 15381                                                                                                                                                                                                                        (De Facto) Average number of classroom inputs in classrooms - Urban
## 15382                                                                                                                                                                                                                    (De Facto) Percent of classrooms with a functional blackboard and chalk
## 15383                                                                                                                                                                                                            (De Facto) Percent of classrooms with a functional blackboard and chalk - Rural
## 15384                                                                                                                                                                                                            (De Facto) Percent of classrooms with a functional blackboard and chalk - Urban
## 15385                                                                                                                                                                                                 (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books
## 15386                                                                                                                                                                                         (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Rural
## 15387                                                                                                                                                                                         (De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Urban
## 15388                                                                                                                                                                                                                            (De Facto) Percent of classrooms with basic classroom furniture
## 15389                                                                                                                                                                                                                    (De Facto) Percent of classrooms with basic classroom furniture - Rural
## 15390                                                                                                                                                                                                                    (De Facto) Percent of classrooms with basic classroom furniture - Urban
## 15391                                                                                                                                                                                                                                        (De Facto) Percent of schools with access to EdTech
## 15392                                                                                                                                                                                                                                (De Facto) Percent of schools with access to EdTech - Rural
## 15393                                                                                                                                                                                                                                (De Facto) Percent of schools with access to EdTech - Urban
## 15394                                                                                                                                                                                                                                                                                  Standards
## 15395                                                                                                                                                                                     (De Jure) Is there a policy in place to require that students have access to the prescribed textbooks?
## 15396                                                                                                                                                                                (De Facto) Do you know if there is a policy in place to require that schools have access to drinking water?
## 15397                                                                                                                                                                                                     (De Jure) Is there a policy in place to require that schools have functioning toilets?
## 15398                                                                                                                                                                                     (De Facto) Do you know if there is a policy in place to require that schools have functioning toilets?
## 15399                                                                                                                                                                                (De Jure) Is there a policy in place to require that schools are accessible to children with special needs?
## 15400                                                                                                                                                          (De Facto) Do you know if there is there a policy in place to require that schools are accessible to children with special needs?
## 15401                                                                                                                                                                     (De Facto) Do you know if there is a policy in place to require that students have access to the prescribed textbooks?
## 15402                                                                                                                                                                                                                                        (De Jure) Is there a national connectivity program?
## 15403                                                                                                                                                                                                                        (De Facto) Do you know if there is a national connectivity program?
## 15404                                                                                                                                                        (De Jure) Is there a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?
## 15405                                                                                                                                        (De Facto) Do you know if there is a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?
## 15406                                                                                                                                                                                                   (De Jure) Is there a policy in place to require that schools have access to electricity?
## 15407                                                                                                                                                                                   (De Facto) Do you know if there is a policy in place to require that schools have access to electricity?
## 15408                                                                                                                                                                                                (De Jure) Is there a policy in place to require that schools have access to drinking water?
## 15409                                                                                                                                                                                                                              (De Facto) Policy Lever (Inputs & Infrastructure) - Standards
## 15410                                                                                                                                                                                                                               (De Jure) Policy Lever (Inputs & Infrastructure) - Standards
## 15411                                                                                                                                                                                                                                                                     Readiness for Learning
## 15412                                                                                                                                                                                                                                     (De Facto) Average developmental score for 1st Graders
## 15413                                                                                                                                                                                                                            (De Facto) Average developmental score for 1st Graders - Female
## 15414                                                                                                                                                                                                                              (De Facto) Average developmental score for 1st Graders - Male
## 15415                                                                                                                                                                                                                             (De Facto) Average developmental score for 1st Graders - Rural
## 15416                                                                                                                                                                                                                             (De Facto) Average developmental score for 1st Graders - Urban
## 15417                                                                                                                                                                                                                                          (De Facto) Average numeracy score for 1st Graders
## 15418                                                                                                                                                                                                                                 (De Facto) Average numeracy score for 1st Graders - Female
## 15419                                                                                                                                                                                                                                   (De Facto) Average numeracy score for 1st Graders - Male
## 15420                                                                                                                                                                                                                                  (De Facto) Average numeracy score for 1st Graders - Rural
## 15421                                                                                                                                                                                                                                  (De Facto) Average numeracy score for 1st Graders - Urban
## 15422                                                                                                                                                                                                                                          (De Facto) Average literacy score for 1st Graders
## 15423                                                                                                                                                                                                                                 (De Facto) Average literacy score for 1st Graders - Female
## 15424                                                                                                                                                                                                                                   (De Facto) Average literacy score for 1st Graders - Male
## 15425                                                                                                                                                                                                                                  (De Facto) Average literacy score for 1st Graders - Rural
## 15426                                                                                                                                                                                                                                  (De Facto) Average literacy score for 1st Graders - Urban
## 15427                                                                                                                                                                                                                                 (De Facto) Average executive funcion score for 1st Graders
## 15428                                                                                                                                                                                                                        (De Facto) Average executive funcion score for 1st Graders - Female
## 15429                                                                                                                                                                                                                          (De Facto) Average executive funcion score for 1st Graders - Male
## 15430                                                                                                                                                                                                                         (De Facto) Average executive funcion score for 1st Graders - Rural
## 15431                                                                                                                                                                                                                         (De Facto) Average executive funcion score for 1st Graders - Urban
## 15432                                                                                                                                                                                                                                    (De Facto) Average socioemotional score for 1st Graders
## 15433                                                                                                                                                                                                                           (De Facto) Average socioemotional score for 1st Graders - Female
## 15434                                                                                                                                                                                                                             (De Facto) Average socioemotional score for 1st Graders - Male
## 15435                                                                                                                                                                                                                            (De Facto) Average socioemotional score for 1st Graders - Rural
## 15436                                                                                                                                                                                                                            (De Facto) Average socioemotional score for 1st Graders - Urban
## 15437                                                                                                                                                                                                                                                                  Early Childhood Education
## 15438                                                                                                                               (De Jure) Is there a policy that guarantees free education for some or all grades and ages included in pre-primary education (for children age 0-83 months)?
## 15439                                                                                                                                                                                   (De Facto) Percent of children age 36-59 months who are attending an early childhood education programme
## 15440                                                                                                                                                                                            (De Jure) Are there developmental standards established for early childhood care and education?
## 15441                                                                                                                                                             (De Jure) According to laws and regulations, are there requirement to become an early childhood educator, pre-primary teacher?
## 15442                                                                                                                              (De Jure) According to policy, are ECCE professionals working at public or private centers required to complete in-service training in ECCE service delivery?
## 15443                                                                                                                                                                                                                                     (De Facto) Policy Lever (Learners) - Center-Based Care
## 15444                                                                                                                                                                                                                                      (De Jure) Policy Lever (Learners) - Center-Based Care
## 15445                                                                                                                                                                                                                                                             Proficiency on GEPD Assessment
## 15446                                                                                                                                                                                         (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey
## 15447                                                                                                                                                                                (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Female
## 15448                                                                                                                                                                                  (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Male
## 15449                                                                                                                                                                                 (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Rural
## 15450                                                                                                                                                                                 (De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Urban
## 15451                                                                                                                                                                                                      (De Facto) Percent of children proficient in literacy according to GEPD School Survey
## 15452                                                                                                                                                                                             (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Female
## 15453                                                                                                                                                                                               (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Male
## 15454                                                                                                                                                                                              (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Rural
## 15455                                                                                                                                                                                              (De Facto) Percent of children proficient in literacy according to GEPD School Survey - Urban
## 15456                                                                                                                                                                                                      (De Facto) Percent of children proficient in numeracy according to GEPD School Survey
## 15457                                                                                                                                                                                             (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Female
## 15458                                                                                                                                                                                               (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Male
## 15459                                                                                                                                                                                              (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Rural
## 15460                                                                                                                                                                                              (De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Urban
## 15461                                                                                                                                                                                                                                                               Caregiver Financial Capacity
## 15462                                                                                                                                                                                                             (De Jure) Are anti poverty interventions that focus on ECD publicly supported?
## 15463                                                                                                                                                                                                    (De Jure) Are cash transfers conditional on ECD services/enrollment publicly supported?
## 15464                                                                                                                                                                                                                  (De Jure) Are cash transfers focused partially on ECD publicly supported?
## 15465                                                                                                                                                                                                                                          (De Facto) Coverage of social protection programs
## 15466                                                                                                                                                                                                               (De Facto) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity
## 15467                                                                                                                                                                                                                (De Jure) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity
## 15468                                                                                                                                                                                                                                                                            Health Programs
## 15469                                                                                                                                                                                             (De Jure) Are young children required to receive a complete course of childhood immunizations?
## 15470                                                                                                                                                     (De Facto) Percent of children who at age 24-35 months had received all vaccinations recommended in the national immunization schedule
## 15471                                                                                                                                            (De Jure) Is there a policy that assures access to healthcare for young children? Either by offering these services free or by subsidizing them
## 15472                                                                                                                                                                                                                        (De Facto) Percent of  children under 5 covered by health insurance
## 15473                                                                                                                                                                                                                    (De Jure) Are deworming pills funded and distributed by the government?
## 15474                                                                                                                                                                                                           (De Facto) Percent of children age 6-59 months who received deworming medication
## 15475                                                                                                                                                                                     (De Jure) Is there a policy that guarantees pregnant women free antenatal visits and skilled delivery?
## 15476                                                                                                                                          (De Facto) Percent of women age 15-49 years with a live birth in the last 2 years whose most recent live birth was delivered in a health facility
## 15477                                                                                                                                                                                                                                                (De Facto) Policy Lever (Learners) - Health
## 15478                                                                                                                                                                                                                                                 (De Jure) Policy Lever (Learners) - Health
## 15479                                                                                                                                                                                                                                                                         Nutrition Programs
## 15480                                                                                                                                                                                                                       (De Jure) Does a national policy to encourage salt iodization exist?
## 15481                                                                                                                                                                                                (De Facto) Percent of households with salt testing positive for any iodide among households
## 15482                                                                                                                                                                              (De Jure) Does a national policy exist to encourage iron fortification of staples like wheat, maize, or rice?
## 15483                                                                                                                                       (De Facto) Percent of children age 6–23 months who had at least the minimum dietary diversity and the minimum meal frequency during the previous day
## 15484                                                                                                                                                                                                                         (De Jure) Does a national policy exist to encourage breastfeeding?
## 15485                                                                                                                                                                                 (De Facto) Percent of children born in the five (three) years preceding the survey who were ever breastfed
## 15486                                                                                                                                                                                                                               (De Jure) Is there a publicly funded school feeding program?
## 15487                                                                                                                                                                                                      (De Facto) Percent of schools reporting having publicly funded school feeding program
## 15488                                                                                                                                                                                                                                    (De Facto) Policy Lever (Learners) - Nutrition Programs
## 15489                                                                                                                                                                                                                                     (De Jure) Policy Lever (Learners) - Nutrition Programs
## 15490                                                                                                                                                                                                                                                                  Caregiver Skills Capacity
## 15491                                                                                                                                                                                   (De Jure) Does the government offer programs that aim to share good parenting practices with caregivers?
## 15492 (De Jure) Are any of the following publicly-supported delivery channels used to reach families in order to promote early childhood stimulation? Home visits, Group sessions, Community health programs, Health center waiting rooms, School-based groups, Mass media/Information campaigns
## 15493                                                                                                                                                                                                         (De Facto) Percent of children under age 5 who have three or more children’s books
## 15494                                                                                                     (De Facto) Percent of children age 24-59 months engaged in four or more activities to provide early stimulation and responsive care in the last 3 days with any adult in the household
## 15495                                                                                                                                                                                                                  (De Facto) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity
## 15496                                                                                                                                                                                                                   (De Jure) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity
## 15497                                                                                                                                                                                                                                                         School enrollment, primary (% net)
## 15498                                                                                                                                                                                                                                                 School enrollment, primary, female (% net)
## 15499                                                                                                                                                                                                                                                   School enrollment, primary, male (% net)
## 15500                                                                                                                                                                                                                                                       Net Enrollment Ratio: Primary (in %)
## 15501                                                                                                                                                                                                                   Net intake rate in grade 1, female (% of official school-age population)
## 15502                                                                                                                                                                                                                     Net intake rate in grade 1, male (% of official school-age population)
## 15503                                                                                                                                                                                                                           Net intake rate in grade 1 (% of official school-age population)
## 15504                                                                                                                                                                                                                                Over-age students, primary, female (% of female enrollment)
## 15505                                                                                                                                                                                                                                    Over-age students, primary, male (% of male enrollment)
## 15506                                                                                                                                                                                                                                               Over-age students, primary (% of enrollment)
## 15507                                                                                                                                                                                                                                                                     Operational Management
## 15508                                                                                                                                                                                             (De Facto) Average score for the presence and quality of core operational management functions
## 15509                                                                                                                                                                                    (De Facto) Average score for the presence and quality of core operational management functions - Female
## 15510                                                                                                                                                                                      (De Facto) Average score for the presence and quality of core operational management functions - Male
## 15511                                                                                                                                                                                     (De Facto) Average score for the presence and quality of core operational management functions - Rural
## 15512                                                                                                                                                                                     (De Facto) Average score for the presence and quality of core operational management functions - Urban
## 15513                                                                                                                                                                                                                             (De Facto) Average score for infrastructure repair/maintenance
## 15514                                                                                                                                                                                                                    (De Facto) Average score for infrastructure repair/maintenance - Female
## 15515                                                                                                                                                                                                                      (De Facto) Average score for infrastructure repair/maintenance - Male
## 15516                                                                                                                                                                                                                     (De Facto) Average score for infrastructure repair/maintenance - Rural
## 15517                                                                                                                                                                                                                     (De Facto) Average score for infrastructure repair/maintenance - Urban
## 15518                                                                                                                                                                                                                       (De Facto) Average score for ensuring  availability of school inputs
## 15519                                                                                                                                                                                                              (De Facto) Average score for ensuring  availability of school inputs - Female
## 15520                                                                                                                                                                                                                (De Facto) Average score for ensuring  availability of school inputs - Male
## 15521                                                                                                                                                                                                               (De Facto) Average score for ensuring  availability of school inputs - Rural
## 15522                                                                                                                                                                                                               (De Facto) Average score for ensuring  availability of school inputs - Urban
## 15523                                                                                                                                                                                                                                                                         Pedagogical Skills
## 15524                                                                                                                                                                                            (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score)
## 15525                                                                                                                                                                                   (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Female
## 15526                                                                                                                                                                                     (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Male
## 15527                                                                                                                                                                                    (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Rural
## 15528                                                                                                                                                                                    (De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Urban
## 15529                                                                                                                                                                         (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score)
## 15530                                                                                                                                                                (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Female
## 15531                                                                                                                                                                  (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Male
## 15532                                                                                                                                                                 (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Rural
## 15533                                                                                                                                                                 (De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Urban
## 15534                                                                                                                                                                                     (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score)
## 15535                                                                                                                                                                            (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Female
## 15536                                                                                                                                                                              (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Male
## 15537                                                                                                                                                                             (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Rural
## 15538                                                                                                                                                                             (De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Urban
## 15539                                                                                                                                                              (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score)
## 15540                                                                                                                                                     (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Female
## 15541                                                                                                                                                       (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Male
## 15542                                                                                                                                                      (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Rural
## 15543                                                                                                                                                      (De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Urban
## 15544                                                                                                                                                                                                                                                                           School Knowledge
## 15545                                                                                                                                                 (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school
## 15546                                                                                                                                        (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Female
## 15547                                                                                                                                          (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Male
## 15548                                                                                                                                         (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Rural
## 15549                                                                                                                                         (De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Urban
## 15550                                                                                                                                                                                                                 (De Facto) Percent of principals familiar with teachers' content knowledge
## 15551                                                                                                                                                                                                        (De Facto) Percent of principals familiar with teachers' content knowledge - Female
## 15552                                                                                                                                                                                                          (De Facto) Percent of principals familiar with teachers' content knowledge - Male
## 15553                                                                                                                                                                                                         (De Facto) Percent of principals familiar with teachers' content knowledge - Rural
## 15554                                                                                                                                                                                                         (De Facto) Percent of principals familiar with teachers' content knowledge - Urban
## 15555                                                                                                                                                                                                                        (De Facto) Percent of principals familiar with teachers' experience
## 15556                                                                                                                                                                                                               (De Facto) Percent of principals familiar with teachers' experience - Female
## 15557                                                                                                                                                                                                                 (De Facto) Percent of principals familiar with teachers' experience - Male
## 15558                                                                                                                                                                                                                (De Facto) Percent of principals familiar with teachers' experience - Rural
## 15559                                                                                                                                                                                                                (De Facto) Percent of principals familiar with teachers' experience - Urban
## 15560                                                                                                                                                                                                            (De Facto) Percent of principals familiar with availability of classroom inputs
## 15561                                                                                                                                                                                                   (De Facto) Percent of principals familiar with availability of classroom inputs - Female
## 15562                                                                                                                                                                                                     (De Facto) Percent of principals familiar with availability of classroom inputs - Male
## 15563                                                                                                                                                                                                    (De Facto) Percent of principals familiar with availability of classroom inputs - Rural
## 15564                                                                                                                                                                                                    (De Facto) Percent of principals familiar with availability of classroom inputs - Urban
## 15565                                                                                                                                                                                                                                                                       Management Practices
## 15566                                                                                                                        (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term
## 15567                                                                                                               (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Female
## 15568                                                                                                                 (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Male
## 15569                                                                                                                (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Rural
## 15570                                                                                                                (De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Urban
## 15571                                                                                                                                                                                       (De Facto) Average score for the extent to which principals master problem-solving in the short-term
## 15572                                                                                                                                                                              (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Female
## 15573                                                                                                                                                                                (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Male
## 15574                                                                                                                                                                               (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Rural
## 15575                                                                                                                                                                               (De Facto) Average score for the extent to which principals master problem-solving in the short-term - Urban
## 15576                                                                                                                                                                                           (De Facto) Average score for the extent to which principals master goal-setting in the long term
## 15577                                                                                                                                                                                  (De Facto) Average score for the extent to which principals master goal-setting in the long term - Female
## 15578                                                                                                                                                                                    (De Facto) Average score for the extent to which principals master goal-setting in the long term - Male
## 15579                                                                                                                                                                                   (De Facto) Average score for the extent to which principals master goal-setting in the long term - Rural
## 15580                                                                                                                                                                                   (De Facto) Average score for the extent to which principals master goal-setting in the long term - Urban
## 15581                                                                                                                                                                                                                                   School enrollment, primary, private (% of total primary)
## 15582                                                                                                                                                                                                                                                                   Proficiency by Grade 2/3
## 15583                                                                                                                                                                                        (De Facto) Percent of children proficient in literacy and numeracy by grade 2/3, as reported by UIS
## 15584                                                                                                                                                                                                                                               Persistence to grade 4, female (% of cohort)
## 15585                                                                                                                                                                                                                                                 Persistence to grade 4, male (% of cohort)
## 15586                                                                                                                                                                                                                                                Persistence to grade 4, total (% of cohort)
## 15587                                                                                                                                                                                                                                               Persistence to grade 5, female (% of cohort)
## 15588                                                                                                                                                                                                                                                 Persistence to grade 5, male (% of cohort)
## 15589                                                                                                                                                                                                                                                Persistence to grade 5, total (% of cohort)
## 15590                                                                                                                                                                                                                                 Persistence to last grade of primary, female (% of cohort)
## 15591                                                                                                                                                                                                                                   Persistence to last grade of primary, male (% of cohort)
## 15592                                                                                                                                                                                                                                  Persistence to last grade of primary, total (% of cohort)
## 15593                                                                                                                                                                                                                                                         Primary school pupil-teacher ratio
## 15594                                                                                                                                                                                                                                        Repeaters, primary, female (% of female enrollment)
## 15595                                                                                                                                                                                                                                            Repeaters, primary, male (% of male enrollment)
## 15596                                                                                                                                                                                                                                          Repeaters, primary, total (% of total enrollment)
## 15597                                                                                                                                                                                                                                              Policy Lever (School Management) - Attraction
## 15598                                                                                                                (De Jure) Do the national policies governing the education system portray the position of principal or head teacher as professionalized and distinct figure within schools?
## 15599                                                                                                                                                                                                                           (De Facto) Average principal salary as percent of GDP per capita
## 15600                                                                                                                                                                     (De Facto) Percent of principals reporting being satisfied or very satisfied with their social status in the community
## 15601                                                                                                                                                                                                                                   (De Facto) Policy Lever (School Management) - Attraction
## 15602                                                                                                                                                                                                                                    (De Jure) Policy Lever (School Management) - Attraction
## 15603                                                                                                                                                                                                                                                                       Clarity of Functions
## 15604                                                                                                                           (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the maintenance and expansion of school infrastructure?
## 15605                                                                                                                                                                                     (De Jure) Do the policies governing schools assign the responsibility of student learning assessments?
## 15606                                                                                                                                                  (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal hiring and assignment?
## 15607                                                                                                                                                                                  (De Jure) Do the policies governing schools assign the responsibility of principal hiring and assignment?
## 15608                                                                                                                                               (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal supervision and training?
## 15609                                                                                                                                                                               (De Jure) Do the policies governing schools assign the responsibility of principal supervision and training?
## 15610                                                                                                                                                               (De Jure) Do the policies governing schools assign the responsibility of maintenance and expansion of school infrastructure?
## 15611                                                                                                                                                     (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the procurement of materials?
## 15612                                                                                                                                                                                         (De Jure) Do the policies governing schools assign the responsibility of procurement of materials?
## 15613                                                                                                                                                    (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher hiring and assignment?
## 15614                                                                                                                                                                                    (De Jure) Do the policies governing schools assign the responsibility of teacher hiring and assignment?
## 15615                                                                                                                                      (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher supervision, training, and coaching?
## 15616                                                                                                                                                                      (De Jure) Do the policies governing schools assign the responsibility of teacher supervision, training, and coaching?
## 15617                                                                                                                                                     (De Facto) Do you know if the policies governing schools assign responsibility for the implementation of student learning assessments?
## 15618                                                                                                                                                                                                                         (De Facto) Policy Lever (School Management) - Clarity of Functions
## 15619                                                                                                                                                                                                                          (De Jure) Policy Lever (School Management) - Clarity of Functions
## 15620                                                                                                                                                                                                                                              Policy Lever (School Management) - Evaluation
## 15621                                                                                                                                                                                      (De Jure) Is there a policy that specifies the need to monitor principal or head teacher performance?
## 15622                                                                                                                                                                                                      (De Jure) Is the criteria to evaluate principals clear and includes multiple factors?
## 15623                                                                                                                                                                                            (De Facto) Percent of principals that report having been evaluated  during the last school year
## 15624                                                                                                                                                                                                     (De Facto) Percent of principals that report having been evaluated on multiple factors
## 15625                                                                                                                                                                                    (De Facto) Percent of principals that report there would be consequences after two negative evaluations
## 15626                                                                                                                                                                                    (De Facto) Percent of principals that report there would be consequences after two positive evaluations
## 15627                                                                                                                                                                                                                                   (De Facto) Policy Lever (School Management) - Evaluation
## 15628                                                                                                                                                                                                                                    (De Jure) Policy Lever (School Management) - Evaluation
## 15629                                                                                                                                                                                                                                  Policy Lever (School Management) - Selection & Deployment
## 15630                                                                                                                                                                                                           (De Jure) Is there a systematic approach/rubric for the selection of principals?
## 15631                                                                                                                                                   (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is years of experience
## 15632                                                                                                                                                   (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is quality of teaching
## 15633                                                                                                                                     (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is demonstrated management qualities
## 15634                                                                                                               (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is having a good relationship with the owner of the school
## 15635                                                                                                                                                (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is political affiliations
## 15636                                                                                                                                                          (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is ethnic group
## 15637                                                                                                                                      (De Facto) Percent of principals that report that the most important factor considered when selecting a principal is knowledge of the local community
## 15638                                                                                                                                                                                (De Jure) How are the principals selected? Based on the requirements, is the selection system meritocratic?
## 15639                                                                                                                                                            (De Facto) Percent of principals that report that the factors considered when selecting a principal include years of experience
## 15640                                                                                                                                                           (De Facto)  Percent of principals that report that the factors considered when selecting a principal include quality of teaching
## 15641                                                                                                                                              (De Facto) Percent of principals that report that the factors considered when selecting a principal include demonstrated management qualities
## 15642                                                                                                                                 (De Facto) Percent of principals that report that the factors considered when selecting a principal include good relationship with the owner of the school
## 15643                                                                                                                                                         (De Facto) Percent of principals that report that the factors considered when selecting a principal include political affiliations
## 15644                                                                                                                                                                   (De Facto) Percent of principals that report that the factors considered when selecting a principal include ethnic group
## 15645                                                                                                                                               (De Facto) Percent of principals that report that the factors considered when selecting a principal include knowledge of the local community
## 15646                                                                                                                                                                                                                       (De Facto) Policy Lever (School Management) - Selection & Deployment
## 15647                                                                                                                                                                                                                        (De Jure) Policy Lever (School Management) - Selection & Deployment
## 15648                                                                                                                                                                                                                                                 Policy Lever (School Management) - Support
## 15649                                                                                                                                                                                                              (De Jure) Are principals required to have training on how to manage a school?
## 15650                                                                                                                                                                         (De Facto) Percent of principals that report having used the skills they gained at the last training they attended
## 15651                                                                                                                                                                                 (De Facto) Average number of trainings that principals report having been offered to them in the past year
## 15652                                                                                                                                                                                                          (De Jure) Are principals required to have management training for new principals?
## 15653                                                                                                                                                                                                                             (De Jure) Are principals required to have in-service training?
## 15654                                                                                                                                                                                                    (De Jure) Are principals required to have mentoring/coaching by experienced principals?
## 15655                                                                                                                                                                                                                            (De Jure) How many times per year do principals have trainings?
## 15656                                                                                                                                                                                                          (De Facto) Percent of principals that report ever having received formal training
## 15657                                                                                                                                                                                        (De Facto) Percent of principals that report having received management training for new principals
## 15658                                                                                                                                                                                                           (De Facto) Percent of principals that report having received in-service training
## 15659                                                                                                                                                                                  (De Facto) Percent of principals that report having received mentoring/coaching by experienced principals
## 15660                                                                                                                                                                                                                                      (De Facto) Policy Lever (School Management) - Support
## 15661                                                                                                                                                                                                                                       (De Jure) Policy Lever (School Management) - Support
## 15662                                                                                                                                                                                                                                                       Policy Lever (Teaching) - Attraction
## 15663                                                                                                                                                                                                       (De Jure) Average starting public-school teacher salary as percent of GDP per capita
## 15664                                                                                                                                                                       (De Facto) Percent of teachers reporting being satisfied or very satisfied with their social status in the community
## 15665                                                                                                                                                                                       (De Facto) Percent of teachers reporting being satisfied or very satisfied with their job as teacher
## 15666                                                                                                                                                                                   (De Facto) Percent of teachers reporting having received financial bonuses in addition to their salaries
## 15667                                                                                                                          (De Facto) Percent of teachers reporting that there are incentives (financial or otherwise) for teachers to teach certain subjects/grades and/or in certain areas
## 15668                                                                                                                                                                                                                     (De Facto) Percent of teachers that performance matters for promotions
## 15669                                                                                                                                                                                                                            (De Jure) Is there a well-established career path for teachers?
## 15670                                                                                                                                                                                                             (De Facto) Percent of teachers that report salary delays in the past 12 months
## 15671                                                                                                                                                                                                                                            (De Facto) Policy Lever (Teaching) - Attraction
## 15672                                                                                                                                                                                                                                             (De Jure) Policy Lever (Teaching) - Attraction
## 15673                                                                                                                                                                                                                       Trained teachers in primary education, female (% of female teachers)
## 15674                                                                                                                                                                                                                           Trained teachers in primary education, male (% of male teachers)
## 15675                                                                                                                                                                                                                                Trained teachers in primary education (% of total teachers)
## 15676                                                                                                                                                                                                                                                                Primary education, teachers
## 15677                                                                                                                                                                                                                                             Teachers in primary education, female (number)
## 15678                                                                                                                                                                                                                                                     Primary education, teachers (% female)
## 15679                                                                                                                                                                                                                   Adjusted net enrollment rate, primary (% of primary school age children)
## 15680                                                                                                                                                                                                    (De Facto) Percent of primary school age children who are enrolled at primary education
## 15681                                                                                                                                                                                                           Adjusted net enrollment rate, primary, female (% of primary school age children)
## 15682                                                                                                                                                                                                             Adjusted net enrollment rate, primary, male (% of primary school age children)
## 15683                                                                                                                                                                                                                                                       Policy Lever (Teaching) - Evaluation
## 15684                                                                                                                                                   (De Jure) Legislation assigns responsibility of evaluating the performance of teachers to a public authority (national, regional, local)
## 15685                                                                                                                                                                                      (De Jure) Legislation assigns responsibility of evaluating the performance of teachers to the schools
## 15686                                                                                                                                                                                                           (De Facto) Percent of teachers that report being evaluated in the past 12 months
## 15687                                                                                                                                                                                                                                       (De Jure) The criteria to evaluate teachers is clear
## 15688                                                                                                                                                                                                                                    (De Facto) Number of criteria used to evaluate teachers
## 15689                                                                                                                                                                                      (De Facto) Percent of teachers that report there would be consequences after two negative evaluations
## 15690                                                                                                                                                                                      (De Facto) Percent of teachers that report there would be consequences after two positive evaluations
## 15691                                                                                                                                                                                           (De Jure) There are clear consequences for teachers who receive two or more negative evaluations
## 15692                                                                                                                                                                                           (De Jure) There are clear consequences for teachers who receive two or more positive evaluations
## 15693                                                                                                                                                                                                                                            (De Facto) Policy Lever (Teaching) - Evaluation
## 15694                                                                                                                                                                                                                                             (De Jure) Policy Lever (Teaching) - Evaluation
## 15695                                                                                                                                                                                                                                                                       Intrinsic Motivation
## 15696                                                                                                                              (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if the assigned curriculum has been completed"
## 15697                                                                                                                                                   (De Facto) Percent of teachers that agree or strongly agrees with "Students can change even their basic intelligence level considerably"
## 15698                                                                                                                                                                                  (De Facto) Percent of teachers who state that intrinsic motivation was the main reason to become teachers
## 15699                                                                                                                                                                                                                      (De Facto) New teachers are required to undergo a probationary period
## 15700                                                                                                                                                                                                                       (De Jure) New teachers are required to undergo a probationary period
## 15701                                                                                                                                       (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if students are left with work to do"
## 15702                                                                                                                 (De Facto) Percent of teachers that agree or strongly agrees with "It is acceptable for a teacher to be absent if the teacher is doing something useful for the community"
## 15703                                                                                                                                                        (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they attend school regularly"
## 15704                                                                                                                                                  (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they come to school with materials"
## 15705                                                                                                                                                         (De Facto) Percent of teachers that agree or strongly agrees with "Students deserve more attention if they are motivated to learn"
## 15706                                                                                                                              (De Facto) Percent of teachers that agree or strongly agrees with "Students have a certain amount of intelligence and they really can’t do much to change it"
## 15707                                                                                                                                                    (De Facto) Percent of teachers that agree or strongly agrees with "To be honest, students can’t really change how intelligent they are"
## 15708                                                                                                                                                      (De Facto) Percent of teachers that agree or strongly agrees with "Students can always substantially change how intelligent they are"
## 15709                                                                                                                                                                                                                                  (De Facto) Policy Lever (Teaching) - Intrinsic Motivation
## 15710                                                                                                                                                                                                                                   (De Jure) Policy Lever (Teaching) - Intrinsic Motivation
## 15711                                                                                                                                                                                                                                                                Monitoring & Accountability
## 15712                                                                                                                                                                                                (De Jure) Information on teacher presence/absenteeism is being collected on a regular basis
## 15713                                                                                                                                                                                                                         (De Jure) Teachers receive monetary compensation for being present
## 15714                                                                                                                                                                                            (De Facto) Teacher report receiving monetary compensation (aside from salary) for being present
## 15715                                                                                                                                                                                          (De Facto) Percent of teachers that report having been absent because of administrative processes
## 15716                                                                                                                                                                               (De Facto) Percent of teachers that report that there would be consequences for being absent 40% of the time
## 15717                                                                                                                                                                                                                           (De Facto) Policy Lever (Teaching) - Monitoring & Accountability
## 15718                                                                                                                                                                                                                            (De Jure) Policy Lever (Teaching) - Monitoring & Accountability
## 15719                                                                                                                                                                                                                                           Policy Lever (Teaching) - Selection & Deployment
## 15720                                                                                                                                                                                                                            (De Jure) Requirements to enter into initial education programs
## 15721                                                                                                                                                                                                          (De Facto) Average quality of applicants accepted into initial education programs
## 15722                                                                                                                                                                                                                                  (De Jure) Requirements to become a primary school teacher
## 15723                                                                                                                                                                                                                                 (De Facto) Requirements to become a primary school teacher
## 15724                                                                                                                                                                                                                                       (De Jure) Requirements to fulfill a transfer request
## 15725                                                                                                                                                                                                                                      (De Facto) Requirements to fulfill a transfer request
## 15726                                                                                                                                                                                                                                            (De Jure) Selectivity of teacher hiring process
## 15727                                                                                                                                                                                                                                (De Facto) Policy Lever (Teaching) - Selection & Deployment
## 15728                                                                                                                                                                                                                                 (De Jure) Policy Lever (Teaching) - Selection & Deployment
## 15729                                                                                                                                                                                                                                                          Policy Lever (Teaching) - Support
## 15730                                                                                                                                                                                                                               (De Jure) Practicum required as part of pre-service training
## 15731                                                                                                                                                                                                    (De Facto) Percent reporting they completed a practicum as part of pre-service training
## 15732                                                                                                                                                                                  (De Facto) Percent of teachers reporting that they participated in an induction and/or mentorship program
## 15733                                                                                                                                                                                             (De Jure) Participation in professional development has professional implications for teachers
## 15734                                                                                                                                                                                        (De Facto) Percent of teachers reporting having attended in-service trainings in the past 12 months
## 15735                                                                                                                                                                                                                                        (De Facto) Average length of the trainings attended
## 15736                                                                                                                                                                                                                              (De Facto) Average span of time (in weeks) of those trainings
## 15737                                                                                                                                                                                                        (De Facto) Average percent of time spent inside the classrooms during the trainings
## 15738                                                                                                                                                 (De Facto) Percent of teachers that report having opportunities to come together with other teachers to discuss ways of improving teaching
## 15739                                                                                                                                                                                                                                               (De Facto) Policy Lever (Teaching) - Support
## 15740                                                                                                                                                                                                                                                (De Jure) Policy Lever (Teaching) - Support
## 15741                                                                                                                                                                                                                                                            Children out of school, primary
## 15742                                                                                                                                                                                                                                                    Children out of school, primary, female
## 15743                                                                                                                                                                                                                            Children out of school, female (% of female primary school age)
## 15744                                                                                                                                                                                                                                                      Children out of school, primary, male
## 15745                                                                                                                                                                                                                                Children out of school, male (% of male primary school age)
## 15746                                                                                                                                                                                                      Children out of school, primary, poorest quintile (% of relevant age group, DHS/MICS)
## 15747                                                                                                                                                                                                      Children out of school, primary, richest quintile (% of relevant age group, DHS/MICS)
## 15748                                                                                                                                                                                                                                           Children out of school (% of primary school age)
## 15749                                                                                                                                                                                                               Education coefficient of efficiency (ideal years to graduate as % of actual)
## 15750                                                                                                                                                                                                                            School life expectancy, primary to tertiary, both sexes (years)
## 15751                                                                                                                                                                                                                                School life expectancy, primary to tertiary, female (years)
## 15752                                                                                                                                                                                                                                  School life expectancy, primary to tertiary, male (years)
## 15753                                                                                                                                                                                                                                                Number of schools at Junior Secondary Level
## 15754                                                                                                                                                                                                                                                         Number of schools at Primary Level
## 15755                                                                                                                                                                                                                                                Number of schools at Senior Secondary level
## 15756                                                                                                                                                                                                                                   Age efficiency, secondary (net enrollment as % of gross)
## 15757                                                                                                                                                                                                                                                Lower secondary school starting age (years)
## 15758                                                                                                                                                                                                                          Lower secondary completion rate, female (% of relevant age group)
## 15759                                                                                                                                                                                                                            Lower secondary completion rate, male (% of relevant age group)
## 15760                                                                                                                                                                                                                           Lower secondary completion rate, total (% of relevant age group)
## 15761                                                                                                                                                                                        Educational attainment, at least completed lower secondary, population 25+, female (%) (cumulative)
## 15762                                                                                                                                                                                          Educational attainment, at least completed lower secondary, population 25+, male (%) (cumulative)
## 15763                                                                                                                                                                                         Educational attainment, at least completed lower secondary, population 25+, total (%) (cumulative)
## 15764                                                                                                                                                                                         Educational attainment, at least completed post-secondary, population 25+, female (%) (cumulative)
## 15765                                                                                                                                                                                           Educational attainment, at least completed post-secondary, population 25+, male (%) (cumulative)
## 15766                                                                                                                                                                                          Educational attainment, at least completed post-secondary, population 25+, total (%) (cumulative)
## 15767                                                                                                                                                                                        Educational attainment, at least completed upper secondary, population 25+, female (%) (cumulative)
## 15768                                                                                                                                                                                          Educational attainment, at least completed upper secondary, population 25+, male (%) (cumulative)
## 15769                                                                                                                                                                                         Educational attainment, at least completed upper secondary, population 25+, total (%) (cumulative)
## 15770                                                                                                                                                                                                                                                      Secondary education, duration (years)
## 15771                                                                                                                                                                                                                                  Theoretical duration of lower secondary education (years)
## 15772                                                                                                                                                                                                                                  Theoretical duration of upper secondary education (years)
## 15773                                                                                                                                                                                                                                                                Secondary education, pupils
## 15774                                                                                                                                                                                                                                          Enrolment in secondary education, female (number)
## 15775                                                                                                                                                                                                                Vocational and Technical enrolment (% of total secondary enrolment), female
## 15776                                                                                                                                                                                                                                                     Secondary education, pupils (% female)
## 15777                                                                                                                                                                                                                                                        Secondary education, general pupils
## 15778                                                                                                                                                                                                                                             Secondary education, general pupils (% female)
## 15779                                                                                                                                                                                                                                                       Pupil-teacher ratio, lower secondary
## 15780                                                                                                                                                                                                        Share of male students in secondary education enrolled in vocational programmes (%)
## 15781                                                                                                                                                                                                                                                             Pupil-teacher ratio, secondary
## 15782                                                                                                                                                                                                                                                       Pupil-teacher ratio, upper secondary
## 15783                                                                                                                                                                                                                                                     Secondary education, vocational pupils
## 15784                                                                                                                                                                                                                                          Secondary education, vocational pupils (% female)
## 15785                                                                                                                                                                                                         Share of all students in secondary education enrolled in vocational programmes (%)
## 15786                                                                                                                                                                                                                                                     School enrollment, secondary (% gross)
## 15787                                                                                                                                                                                                                                             School enrollment, secondary, female (% gross)
## 15788                                                                                                                                                                                                                                     Gross enrolment ratio, lower secondary, both sexes (%)
## 15789                                                                                                                                                                                                                                         Gross enrolment ratio, lower secondary, female (%)
## 15790                                                                                                                                                                                                                                           Gross enrolment ratio, lower secondary, male (%)
## 15791                                                                                                                                                                                                                                               School enrollment, secondary, male (% gross)
## 15792                                                                                                                                                                                                                                                        School Enroll. Ratio, secondary (%)
## 15793                                                                                                                                                                                                                                     Gross enrolment ratio, upper secondary, both sexes (%)
## 15794                                                                                                                                                                                                                                         Gross enrolment ratio, upper secondary, female (%)
## 15795                                                                                                                                                                                                                                           Gross enrolment ratio, upper secondary, male (%)
## 15796                                                                                                                                                                                                                                                       School enrollment, secondary (% net)
## 15797                                                                                                                                                                                                                                               School enrollment, secondary, female (% net)
## 15798                                                                                                                                                                                                                                                 School enrollment, secondary, male (% net)
## 15799                                                                                                                                                                                                                               School enrollment, secondary, private (% of total secondary)
## 15800                                                                                                                                                                                                                                                Progression to secondary school, female (%)
## 15801                                                                                                                                                                                                                                                  Progression to secondary school, male (%)
## 15802                                                                                                                                                                                                                                                        Progression to secondary school (%)
## 15803                                                                                                                                                                                                                                      Repeaters, secondary, female (% of female enrollment)
## 15804                                                                                                                                                                                                                                          Repeaters, secondary, male (% of male enrollment)
## 15805                                                                                                                                                                                                                                        Repeaters, secondary, total (% of total enrollment)
## 15806                                                                                                                                                                                                                     Trained teachers in secondary education, female (% of female teachers)
## 15807                                                                                                                                                                                                               Trained teachers in lower secondary education, female (% of female teachers)
## 15808                                                                                                                                                                                                                   Trained teachers in lower secondary education, male (% of male teachers)
## 15809                                                                                                                                                                                                                        Trained teachers in lower secondary education (% of total teachers)
## 15810                                                                                                                                                                                                                         Trained teachers in secondary education, male (% of male teachers)
## 15811                                                                                                                                                                                                               Trained teachers in upper secondary education, female (% of female teachers)
## 15812                                                                                                                                                                                                                   Trained teachers in upper secondary education, male (% of male teachers)
## 15813                                                                                                                                                                                                                        Trained teachers in upper secondary education (% of total teachers)
## 15814                                                                                                                                                                                                                              Trained teachers in secondary education (% of total teachers)
## 15815                                                                                                                                                                                                                                                              Secondary education, teachers
## 15816                                                                                                                                                                                                                                                      Secondary education, teachers, female
## 15817                                                                                                                                                                                                                                                   Secondary education, teachers (% female)
## 15818                                                                                                                                                                                                                                                      Secondary education, general teachers
## 15819                                                                                                                                                                                                                                           Secondary education, general teachers (% female)
## 15820                                                                                                                                                                                                                                                   Secondary education, vocational teachers
## 15821                                                                                                                                                                                                                                        Secondary education, vocational teachers (% female)
## 15822                                                                                                                                                                                                                                                          Children out of school, secondary
## 15823                                                                                                                                                                                                                                                  Children out of school, secondary, female
## 15824                                                                                                                                                                                                                        Children out of school, secondary, female (% of relevant age group)
## 15825                                                                                                                                                                                                                 Adolescents out of school, female (% of female lower secondary school age)
## 15826                                                                                                                                                                                                                     Adolescents out of school, male (% of male lower secondary school age)
## 15827                                                                                                                                                                                                                                Adolescents out of school (% of lower secondary school age)
## 15828                                                                                                                                                                                                                                                    Children out of school, secondary, male
## 15829                                                                                                                                                                                                                          Children out of school, secondary, male (% of relevant age group)
## 15830                                                                                                                                                                                                                                Children out of school, secondary (% of relevant age group)
## 15831                                                                                                                                                                                                                                              Net Enrollment Ratio: Senior Secondary (in %)
## 15832                                                                                                                                                                                                            Number of Student: Junior Secondary Level (in number of people, 2009 data only)
## 15833                                                                                                                                                                                                                     Number of Student: Primary Level (in number of people, 2009 data only)
## 15834                                                                                                                                                                                                            Number of Student: Senior Secondary Level (in number of people, 2009 data only)
## 15835                                                                                                                                                                                                            Number of Teacher: Junior Secondary Level (in number of people, 2009 data only)
## 15836                                                                                                                                                                                                                     Number of Teacher: Primary Level (in number of people, 2009 data only)
## 15837                                                                                                                                                                                                            Number of Teacher: Senior Secondary Level (in number of people, 2009 data only)
## 15838                                                                                                                                                                                      Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, female (%)
## 15839                                                                                                                                                                                        Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, male (%)
## 15840                                                                                                                                                                                  Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, both sexes (%)
## 15841                                                                                                                                                                                         Educational attainment, at least Bachelor's or equivalent, population 25+, female (%) (cumulative)
## 15842                                                                                                                                                                                           Educational attainment, at least Bachelor's or equivalent, population 25+, male (%) (cumulative)
## 15843                                                                                                                                                                                          Educational attainment, at least Bachelor's or equivalent, population 25+, total (%) (cumulative)
## 15844                                                                                                                                                                                                    Educational attainment, Doctoral or equivalent, population 25+, female (%) (cumulative)
## 15845                                                                                                                                                                                                      Educational attainment, Doctoral or equivalent, population 25+, male (%) (cumulative)
## 15846                                                                                                                                                                                                     Educational attainment, Doctoral or equivalent, population 25+, total (%) (cumulative)
## 15847                                                                                                                                                                                           Educational attainment, at least Master's or equivalent, population 25+, female (%) (cumulative)
## 15848                                                                                                                                                                                             Educational attainment, at least Master's or equivalent, population 25+, male (%) (cumulative)
## 15849                                                                                                                                                                                            Educational attainment, at least Master's or equivalent, population 25+, total (%) (cumulative)
## 15850                                                                                                                                                                                   Educational attainment, at least completed short-cycle tertiary, population 25+, female (%) (cumulative)
## 15851                                                                                                                                                                                     Educational attainment, at least completed short-cycle tertiary, population 25+, male (%) (cumulative)
## 15852                                                                                                                                                                                    Educational attainment, at least completed short-cycle tertiary, population 25+, total (%) (cumulative)
## 15853                                                                                                                                                                                                                       Enrolment in tertiary education, all programmes, both sexes (number)
## 15854                                                                                                                                                                                                                           Enrolment in tertiary education, all programmes, female (number)
## 15855                                                                                                                                                                                                                            Percentage of students in tertiary education who are female (%)
## 15856                                                                                                                                                                                                                                                              Pupil-teacher ratio, tertiary
## 15857                                                                                                                                                                                                                                                      School enrollment, tertiary (% gross)
## 15858                                                                                                                                                                                                                                              School enrollment, tertiary, female (% gross)
## 15859                                                                                                                                                                                                                                                School enrollment, tertiary, male (% gross)
## 15860                                                                                                                                                 Percentage of graduates from tertiary education graduating from Agriculture, Forestry, Fisheries and Veterinary programmes, both sexes (%)
## 15861                                                                                                                                                                                       Percentage of graduates from tertiary education graduating from Education programmes, both sexes (%)
## 15862                                                                                                                                                     Percentage of graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, both sexes (%)
## 15863                                                                                                                                                                                      Female share of graduates in Agriculture, Forestry, Fisheries and Veterinary programmes, tertiary (%)
## 15864                                                                                                                                                                                                                            Female share of graduates in Education programmes, tertiary (%)
## 15865                                                                                                                                                                                          Female share of graduates in Engineering, Manufacturing and Construction programmes, tertiary (%)
## 15866                                                                                                                                                                                                                   Female share of graduates in Health and Welfare programmes, tertiary (%)
## 15867                                                                                                                                                                                                                  Female share of graduates in Arts and Humanities programmes, tertiary (%)
## 15868                                                                                                                                                                                                                   Female share of graduates in unknown or unspecified fields, tertiary (%)
## 15869                                                                                                                                                                                         Female share of graduates in Natural Sciences, Mathematics and Statistics programmes, tertiary (%)
## 15870                                                                                                                                                                            Female share of graduates from Science, Technology, Engineering and Mathematics (STEM) programmes, tertiary (%)
## 15871                                                                                                                                                                                          Female share of graduates in Social Sciences, Journalism and Information programmes, tertiary (%)
## 15872                                                                                                                                                                                                                             Female share of graduates in Services programmes, tertiary (%)
## 15873                                                                                                                                                                              Percentage of graduates from tertiary education graduating from Health and Welfare programmes, both sexes (%)
## 15874                                                                                                                                                                             Percentage of graduates from tertiary education graduating from Arts and Humanities programmes, both sexes (%)
## 15875                                                                                                                                                                           Percentage of graduates from tertiary education graduating from programmes in unspecified fields, both sexes (%)
## 15876                                                                                                                                                    Percentage of graduates from tertiary education graduating from Natural Sciences, Mathematics and Statistics programmes, both sexes (%)
## 15877                                                                                                                                                     Percentage of graduates from tertiary education graduating from Social Sciences, Journalism and Information programmes, both sexes (%)
## 15878                                                                                                                                                                                        Percentage of graduates from tertiary education graduating from Services programmes, both sexes (%)
## 15879                                                                                                                                                                                                                  Percentage of enrolment in tertiary education in private institutions (%)
## 15880                                                                                                                                                                                                                            Science and engineering students (% of total tertiary students)
## 15881                                                                                                                                                                                                                             Teachers in tertiary education programmes, both sexes (number)
## 15882                                                                                                                                                                                                                                 Teachers in tertiary education programmes, female (number)
## 15883                                                                                                                                                                                                                                              Tertiary education, academic staff (% female)
## 15884                                                                                                                                                                                                                                 Gross enrolment ratio, primary to tertiary, both sexes (%)
## 15885                                                                                                                                                                                             Current education expenditure, primary (% of total expenditure in primary public institutions)
## 15886                                                                                                                                                                                         Current education expenditure, secondary (% of total expenditure in secondary public institutions)
## 15887                                                                                                                                                                                           Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)
## 15888                                                                                                                                                                                                       Current education expenditure, total (% of total expenditure in public institutions)
## 15889                                                                                                                                                                                                                   Current expenditure as % of total expenditure in public institutions (%)
## 15890                                                                                                                                                                                                                                                   Public Expenditure on Education  (% GDP)
## 15891                                                                                                                                                                                          All education staff compensation, primary (% of total expenditure in primary public institutions)
## 15892                                                                                                                                                                                      All education staff compensation, secondary (% of total expenditure in secondary public institutions)
## 15893                                                                                                                                                                                        All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)
## 15894                                                                                                                                                                                                    All education staff compensation, total (% of total expenditure in public institutions)
## 15895                                                                                                                                                                                                                                           Public spending on education, primary (% of GDP)
## 15896                                                                                                                                                                                                                          Government expenditure per student, primary (% of GDP per capita)
## 15897                                                                                                                                                                                                                Expenditure on primary education (% of government expenditure on education)
## 15898                                                                                                                                                                                                                         Spending on teaching materials, primary (% of primary expenditure)
## 15899                                                                                                                                                                                                                                         Public spending on education, secondary (% of GDP)
## 15900                                                                                                                                                                                                                        Government expenditure per student, secondary (% of GDP per capita)
## 15901                                                                                                                                                                                                              Expenditure on secondary education (% of government expenditure on education)
## 15902                                                                                                                                                                                                                     Spending on teaching materials, secondary (% of secondary expenditure)
## 15903                                                                                                                                                                                                                                    Teachers' salaries (% of current education expenditure)
## 15904                                                                                                                                                                                                                                          Public spending on education, tertiary (% of GDP)
## 15905                                                                                                                                                                                                                         Government expenditure per student, tertiary (% of GDP per capita)
## 15906                                                                                                                                                                                                               Expenditure on tertiary education (% of government expenditure on education)
## 15907                                                                                                                                                                                                                   Government expenditure on education, total (% of government expenditure)
## 15908                                                                                                                                                                                                                                      Government expenditure on education, total (% of GDP)
## 15909                                                                                                                                                                                                                                     Public spending on education, total (% of GNI, UNESCO)
## 15910                                                                                                                                                                                                                        Average years of schooling, poorest quintile (ages 15-19, DHS/MICS)
## 15911                                                                                                                                                                                                                        Average years of schooling, richest quintile (ages 15-19, DHS/MICS)
## 15912                                                                                                                                                                                                                                                            Fax machines (per 1,000 people)
## 15913                                                                                                                                                                                                                          International telecom, average price call to USA (US$ per 3 min.)
## 15914                                                                                                                                                                                                                           International telecom, outgoing traffic (minutes per subscriber)
## 15915                                                                                                                                                                                                                                                         Internet users (per 10,000 people)
## 15916                                                                                                                                                                                                                                                     Telephone mainlines (per 1,000 people)
## 15917                                                                                                                                                                                                                                                        Daily newspapers (per 1,000 people)
## 15918                                                                                                                                                                                                                                                      Personal computers (per 1,000 people)
## 15919                                                                                                                                                                                                                                                           Mobile phones (per 1,000 people)
## 15920                                                                                                                                                                                                                                           Telephone mainlines in largest city (% of total)
## 15921                                                                                                                                                                                                                                                  Telephone mainlines, waiting time (years)
## 15922                                                                                                                                                                                                                                                                  Radios (per 1,000 people)
## 15923                                                                                                                                                                                                                                                         Television sets (per 1,000 people)
## 15924                                                                                                                                                                                                                                                            Aircraft departures (thousands)
## 15925                                                                                                                                                                                                                                                            Air transport, freight (ton-km)
## 15926                                                                                                                                                                                                                                              Air transport, passengers carried (thousands)
## 15927                                                                                                                                                                                                                                               Railways, goods transported (million ton-km)
## 15928                                                                                                                                                                                                                                                      Rail traffic (km per million US$ GDP)
## 15929                                                                                                                                                                                                                                                  Roads, goods transported (million ton-km)
## 15930                                                                                                                                                                                                                                      Roads, normalized index (100 = expected total length)
## 15931                                                                                                                                                                                                                                                                           Roads, paved (%)
## 15932                                                                                                                                                                                              There are periods of absence due to childcare accounted for in pension benefits (1=yes; 0=no)
## 15933                                                                                                                                                                                             The age at which men and women can retire with full pension benefits is the same (1=yes; 0=no)
## 15934                                                                                                                                                                                                                   The mandatory retirement age for men and women is the same (1=yes; 0=no)
## 15935                                                                                                                                                                                          The age at which men and women can retire with partial pension benefits is the same (1=yes; 0=no)
## 15936                                                                                                                                                                                                                                                           Mandatory retirement age, female
## 15937                                                                                                                                                                                                                                                  Retirement age with full benefits, female
## 15938                                                                                                                                                                                                                                                    Retirement age with full benefits, male
## 15939                                                                                                                                                                                                                                                             Mandatory retirement age, male
## 15940                                                                                                                                                                                                                                               Retirement age with partial benefits, female
## 15941                                                                                                                                                                                                                                                 Retirement age with partial benefits, male
## 15942                                                                                                                                                                                                                    A woman can apply for a passport in the same way as a man (1=yes; 0=no)
## 15943                                                                                                                                                                                                                     A woman can register a business in the same way as a man (1=yes; 0=no)
## 15944                                                                                                                                                                                                                         A woman can sign a contract in the same way as a man (1=yes; 0=no)
## 15945                                                                                                                                                                                                                                              Main cooking fuel: charcoal (% of households)
## 15946                                                                                                                                                                                                                                     Main cooking fuel: agricultural crop (% of households)
## 15947                                                                                                                                                                                                                                                  Main cooking fuel: dung (% of households)
## 15948                                                                                                                                                                                                                                          Main cooking fuel: electricity  (% of households)
## 15949                                                                                                                                                                                                                                    Location of cooking: inside the house (% of households)
## 15950                                                                                                                                                                                                                                Main cooking fuel: LPG/natural gas/biogas (% of households)
## 15951                                                                                                                                                                                                                                        Location of cooking: other places (% of households)
## 15952                                                                                                                                                                                                                                            Location of cooking: outdoors (% of households)
## 15953                                                                                                                                                                                                                                   Location of cooking: separate building (% of households)
## 15954                                                                                                                                                                                                                                    Main cooking fuel: straw/shrubs/grass (% of households)
## 15955                                                                                                                                                                                                                                                  Main cooking fuel: wood (% of households)
## 15956                                                                                                                                                                                                              A woman can travel outside the country in the same way as a man (1=yes; 0=no)
## 15957                                                                                                                                                        Women participating in the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)
## 15958                                                                                                                                                                                                              Women participating in making daily purchase decisions (% of women age 15-49)
## 15959                                                                                                                                                                                                          Women participating in decision of what food to cook daily (% of women age 15-49)
## 15960                                                                                                                                                                                                                    Women participating in own health care decisions (% of women age 15-49)
## 15961                                                                                                                                                                                                      Decision maker about a woman's own health care: mainly husband (% of women age 15-49)
## 15962                                                                                                                                                                                                               Decision maker about a woman's own health care: other (% of women age 15-49)
## 15963                                                                                                                                                                                                        Decision maker about a woman's own health care: someone else (% of women age 15-49)
## 15964                                                                                                                                                                                                         Decision maker about a woman's own health care: mainly wife (% of women age 15-49)
## 15965                                                                                                                                                                                            Decision maker about a woman's own health care: wife and husband jointly (% of women age 15-49)
## 15966                                                                                                                                                Women participating in none of the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)
## 15967                                                                                                                                                                                                    Women participating in making major household purchase decisions (% of women age 15-49)
## 15968                                                                                                                                                                                                      Decision maker about major household purchases: mainly husband (% of women age 15-49)
## 15969                                                                                                                                                                                                               Decision maker about major household purchases: other (% of women age 15-49)
## 15970                                                                                                                                                                                                        Decision maker about major household purchases: someone else (% of women age 15-49)
## 15971                                                                                                                                                                                                         Decision maker about major household purchases: mainly wife (% of women age 15-49)
## 15972                                                                                                                                                                                            Decision maker about major household purchases: wife and husband jointly (% of women age 15-49)
## 15973                                                                                                                                               Women making their own informed decisions regarding sexual relations, contraceptive use and reproductive health care  (% of women age 15-49)
## 15974                                                                                                                                                                                             Women participating in decision of visits to family, relatives, friends (% of women age 15-49)
## 15975                                                                                                                                                                                    Decision maker about a woman's visits to her family or relatives: mainly husband (% of women age 15-49)
## 15976                                                                                                                                                                                             Decision maker about a woman's visits to her family or relatives: other (% of women age 15-49)
## 15977                                                                                                                                                                                      Decision maker about a woman's visits to her family or relatives: someone else (% of women age 15-49)
## 15978                                                                                                                                                                                       Decision maker about a woman's visits to her family or relatives: mainly wife (% of women age 15-49)
## 15979                                                                                                                                                                                    Decision maker about Visits to her family or relatives: wife and husband jointly (% of women age 15-49)
## 15980                                                                                                                                                                                                                                  Dismissal of pregnant workers is prohibited (1=yes; 0=no)
## 15981                                                                                                                                                                                                          A woman can work in a job deemed dangerous in the same way as a man (1=yes; 0=no)
## 15982                                                                                                                                                                                                                             Female legislators, senior officials and managers (% of total)
## 15983                                                                                                                                                                                                                                     Proportion of women in ministerial level positions (%)
## 15984                                                                                                                                                                                                                              Proportion of seats held by women in national parliaments (%)
## 15985                                                                                                                                                                                                                                     Female professional and technical workers (% of total)
## 15986                                                                                                                                                                                                                               A woman can get a job in the same way as a man (1=yes; 0=no)
## 15987                                                                                                                                                                                                                                                  Households with water on the premises (%)
## 15988                                                                                                                                                                                                                             Households with water less than 30 minutes away round trip (%)
## 15989                                                                                                                                                                                                                             Households with water 30 minutes or longer away round trip (%)
## 15990                                                                                                                                                                                                                    A woman can be head of household in the same way as a man (1=yes; 0=no)
## 15991                                                                                                                                                                                                                 A woman can travel outside her home in the same way as a man (1=yes; 0=no)
## 15992                                                                                                                                                                                                        Male and female surviving spouses have equal rights to inherit assets (1=yes; 0=no)
## 15993                                                                                                                                                                                                    Sons and daughters have equal rights to inherit assets from their parents (1=yes; 0=no)
## 15994                                                                                                                                                                                                               A woman can work in an industrial job in the same way as a man (1=yes; 0=no)
## 15995                                                                                                                                                                                                                 Nonpregnant and nonnursing women can do the same jobs as men (1=yes; 0=no)
## 15996                                                                                                                                                                                            The law grants spouses equal administrative authority over assets during marriage (1=yes; 0=no)
## 15997                                                                                                                                                                                                                         Law prohibits or invalidates child or early marriage (1=yes; 0=no)
## 15998                                                                                                                                                                                                         The law prohibits discrimination in access to credit based on gender (1=yes; 0=no)
## 15999                                                                                                                                                                                                Law mandates equal remuneration for females and males for work of equal value (1=yes; 0=no)
## 16000                                                                                                                                                                                                                                       Women Business and the Law Index Score (scale 1-100)
## 16001                                                                                                                                                                                                                          Women, Business and the Law: Assets Indicator Score (scale 1-100)
## 16002                                                                                                                                                                                                                Women, Business and the Law: Entrepreneurship Indicator Score (scale 1-100)
## 16003                                                                                                                                                                                                                        Women, Business and the Law: Mobility Indicator Score (scale 1-100)
## 16004                                                                                                                                                                                                                        Women, Business and the Law: Marriage Indicator Score (scale 1-100)
## 16005                                                                                                                                                                                                                         Women, Business and the Law: Pension Indicator Score (scale 1-100)
## 16006                                                                                                                                                                                                                      Women, Business and the Law: Parenthood Indicator Score (scale 1-100)
## 16007                                                                                                                                                                                                                             Women, Business and the Law: Pay Indicator Score (scale 1-100)
## 16008                                                                                                                                                                                                                       Women, Business and the Law: Workplace Indicator Score (scale 1-100)
## 16009                                                                                                                                                                                                                                  Law mandates paid or unpaid maternity leave (1=yes; 0=no)
## 16010                                                                                                                                                                                                              The law provides for the valuation of nonmonetary contributions (1=yes; 0=no)
## 16011                                                                                                                                                                                                               The law prohibits discrimination in employment based on gender (1=yes; 0=no)
## 16012                                                                                                                                                                                                There is no legal provision that requires a married woman to obey her husband (1=yes; 0=no)
## 16013                                                                                                                                                                                                               There is legislation specifically addressing domestic violence (1=yes; 0=no)
## 16014                                                                                                                                                                                                                      There is legislation on sexual harassment in employment (1=yes; 0=no)
## 16015                                                                                                                                                                                                                    A woman can choose where to live in the same way as a man (1=yes; 0=no)
## 16016                                                                                                       Women and girls who participate in activities during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16017                                                                                                       Women and girls who participate in activities during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16018                                                                                                                                    Women and girls who participate in activities during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16019                                                                                          Women and girls who have private places to wash and change during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16020                                                                                          Women and girls who have private places to wash and change during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16021                                                                                                                       Women and girls who have private places to wash and change during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16022                                                                                                                                 Women and girls who use menstrual materials, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)
## 16023                                                                                                                                 Women and girls who use menstrual materials, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)
## 16024                                                                                                                                                              Women and girls who use menstrual materials (% of women and girls ages 15-49 who had a menstrual period within the last year)
## 16025                                                                                                                                                                                                          Mothers are guaranteed an equivalent position after maternity leave (1=yes; 0=no)
## 16026                                                                                                                                                                                                                           A woman can work at night in the same way as a man (1=yes; 0=no)
## 16027                                                                                                                                                                                                                 Nondiscrimination clause mentions gender in the constitution (1=yes; 0=no)
## 16028                                                                                                                                                                                                            A woman can obtain a judgment of divorce in the same way as a man (1=yes; 0=no)
## 16029                                                                                                                                                                                                                     A woman can open a bank account in the same way as a man (1=yes; 0=no)
## 16030                                                                                                                                                                                                           Women who own a house both alone and jointly (% of women age 15-49): Q1 (lowest)
## 16031                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q2
## 16032                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q3
## 16033                                                                                                                                                                                                                    Women who own a house both alone and jointly (% of women age 15-49): Q4
## 16034                                                                                                                                                                                                          Women who own a house both alone and jointly (% of women age 15-49): Q5 (highest)
## 16035                                                                                                                                                                                                                        Women who own a house both alone and jointly (% of women age 15-49)
## 16036                                                                                                                                                                                                                         Men who own a house both alone and jointly (% of men): Q1 (lowest)
## 16037                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q2
## 16038                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q3
## 16039                                                                                                                                                                                                                                  Men who own a house both alone and jointly (% of men): Q4
## 16040                                                                                                                                                                                                                        Men who own a house both alone and jointly (% of men): Q5 (highest)
## 16041                                                                                                                                                                                                                                      Men who own a house both alone and jointly (% of men)
## 16042                                                                                                                                                                                                                            Women who own a house alone (% of women age 15-49): Q1 (lowest)
## 16043                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q2
## 16044                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q3
## 16045                                                                                                                                                                                                                                     Women who own a house alone (% of women age 15-49): Q4
## 16046                                                                                                                                                                                                                           Women who own a house alone (% of women age 15-49): Q5 (highest)
## 16047                                                                                                                                                                                                                                         Women who own a house alone (% of women age 15-49)
## 16048                                                                                                                                                                                                                                          Men who own a house alone (% of men): Q1 (lowest)
## 16049                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q2
## 16050                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q3
## 16051                                                                                                                                                                                                                                                   Men who own a house alone (% of men): Q4
## 16052                                                                                                                                                                                                                                         Men who own a house alone (% of men): Q5 (highest)
## 16053                                                                                                                                                                                                                                                       Men who own a house alone (% of men)
## 16054                                                                                                                                                                                                                          Women who own a house jointly (% of women age 15-49): Q1 (lowest)
## 16055                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q2
## 16056                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q3
## 16057                                                                                                                                                                                                                                   Women who own a house jointly (% of women age 15-49): Q4
## 16058                                                                                                                                                                                                                         Women who own a house jointly (% of women age 15-49): Q5 (highest)
## 16059                                                                                                                                                                                                                                       Women who own a house jointly (% of women age 15-49)
## 16060                                                                                                                                                                                                                                        Men who own a house jointly (% of men): Q1 (lowest)
## 16061                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q2
## 16062                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q3
## 16063                                                                                                                                                                                                                                                 Men who own a house jointly (% of men): Q4
## 16064                                                                                                                                                                                                                                       Men who own a house jointly (% of men): Q5 (highest)
## 16065                                                                                                                                                                                                                                                     Men who own a house jointly (% of men)
## 16066                                                                                                                                                                                                                           Women who do not own a house (% of women age 15-49): Q1 (lowest)
## 16067                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q2
## 16068                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q3
## 16069                                                                                                                                                                                                                                    Women who do not own a house (% of women age 15-49): Q4
## 16070                                                                                                                                                                                                                          Women who do not own a house (% of women age 15-49): Q5 (highest)
## 16071                                                                                                                                                                                                                                        Women who do not own a house (% of women age 15-49)
## 16072                                                                                                                                                                                                                                         Men who do not own a house (% of men): Q1 (lowest)
## 16073                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q2
## 16074                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q3
## 16075                                                                                                                                                                                                                                                  Men who do not own a house (% of men): Q4
## 16076                                                                                                                                                                                                                                        Men who do not own a house (% of men): Q5 (highest)
## 16077                                                                                                                                                                                                                                                      Men who do not own a house (% of men)
## 16078                                                                                                                                                                                                              Women who own land both alone and jointly (% of women age 15-49): Q1 (lowest)
## 16079                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q2
## 16080                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q3
## 16081                                                                                                                                                                                                                       Women who own land both alone and jointly (% of women age 15-49): Q4
## 16082                                                                                                                                                                                                             Women who own land both alone and jointly (% of women age 15-49): Q5 (highest)
## 16083                                                                                                                                                                                                                           Women who own land both alone and jointly (% of women age 15-49)
## 16084                                                                                                                                                                                                                            Men who own land both alone and jointly (% of men): Q1 (lowest)
## 16085                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q2
## 16086                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q3
## 16087                                                                                                                                                                                                                                     Men who own land both alone and jointly (% of men): Q4
## 16088                                                                                                                                                                                                                           Men who own land both alone and jointly (% of men): Q5 (highest)
## 16089                                                                                                                                                                                                                                         Men who own land both alone and jointly (% of men)
## 16090                                                                                                                                                                                                                               Women who own land alone (% of women age 15-49): Q1 (lowest)
## 16091                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q2
## 16092                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q3
## 16093                                                                                                                                                                                                                                        Women who own land alone (% of women age 15-49): Q4
## 16094                                                                                                                                                                                                                              Women who own land alone (% of women age 15-49): Q5 (highest)
## 16095                                                                                                                                                                                                                                            Women who own land alone (% of women age 15-49)
## 16096                                                                                                                                                                                                                                             Men who own land alone (% of men): Q1 (lowest)
## 16097                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q2
## 16098                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q3
## 16099                                                                                                                                                                                                                                                      Men who own land alone (% of men): Q4
## 16100                                                                                                                                                                                                                                            Men who own land alone (% of men): Q5 (highest)
## 16101                                                                                                                                                                                                                                                          Men who own land alone (% of men)
## 16102                                                                                                                                                                                                                             Women who own land jointly (% of women age 15-49): Q1 (lowest)
## 16103                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q2
## 16104                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q3
## 16105                                                                                                                                                                                                                                      Women who own land jointly (% of women age 15-49): Q4
## 16106                                                                                                                                                                                                                            Women who own land jointly (% of women age 15-49): Q5 (highest)
## 16107                                                                                                                                                                                                                                          Women who own land jointly (% of women age 15-49)
## 16108                                                                                                                                                                                                                                           Men who own land jointly (% of men): Q1 (lowest)
## 16109                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q2
## 16110                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q3
## 16111                                                                                                                                                                                                                                                    Men who own land jointly (% of men): Q4
## 16112                                                                                                                                                                                                                                          Men who own land jointly (% of men): Q5 (highest)
## 16113                                                                                                                                                                                                                                                        Men who own land jointly (% of men)
## 16114                                                                                                                                                                                                                              Women who do not own land (% of women age 15-49): Q1 (lowest)
## 16115                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q2
## 16116                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q3
## 16117                                                                                                                                                                                                                                       Women who do not own land (% of women age 15-49): Q4
## 16118                                                                                                                                                                                                                             Women who do not own land (% of women age 15-49): Q5 (highest)
## 16119                                                                                                                                                                                                                                           Women who do not own land (% of women age 15-49)
## 16120                                                                                                                                                                                                                                            Men who do not own land (% of men): Q1 (lowest)
## 16121                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q2
## 16122                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q3
## 16123                                                                                                                                                                                                                                                     Men who do not own land (% of men): Q4
## 16124                                                                                                                                                                                                                                           Men who do not own land (% of men): Q5 (highest)
## 16125                                                                                                                                                                                                                                                         Men who do not own land (% of men)
## 16126                                                                                                                                                                                                              Men and women have equal ownership rights to immovable property (1=yes; 0=no)
## 16127                                                                                                                                                                                               Criminal penalties or civil remedies exist for sexual harassment in employment (1=yes; 0=no)
## 16128                                                                                                                                                                                                                                         Female migrants (% of international migrant stock)
## 16129                                                                                                                                                                                     Women with a national identity card or equivalent foundational identity document (% of women ages 15+)
## 16130                                                                                                                                                                                         Men with a national identity card or equivalent foundational identity document (% of men ages 15+)
## 16131                                                                                                                                                                                                                              A woman has the same rights to remarry as a man (1=yes; 0=no)
## 16132                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q1 (lowest)
## 16133                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q2
## 16134                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q3
## 16135                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q4
## 16136                                                                                                                                                                      Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q5 (highest)
## 16137                                                                                                                                                                                    Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%)
## 16138                                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q1 (lowest)
## 16139                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q2
## 16140                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q3
## 16141                                                                                                                                                                                        Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q4
## 16142                                                                                                                                                                              Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q5 (highest)
## 16143                                                                                                                                                                                            Women who believe a wife is justified refusing sex with her husband for none of the reasons (%)
## 16144                                                                                                                                                                                Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q1 (lowest)
## 16145                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q2
## 16146                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q3
## 16147                                                                                                                                                                                         Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q4
## 16148                                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q5 (highest)
## 16149                                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband for all of the reasons (%)
## 16150                                                                                                                                                              Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q1 (lowest)
## 16151                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q2
## 16152                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q3
## 16153                                                                                                                                                                       Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q4
## 16154                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q5 (highest)
## 16155                                                                                                                                                                           Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%)
## 16156                                                                                                                                                                    Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q1 (lowest)
## 16157                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q2
## 16158                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q3
## 16159                                                                                                                                                                             Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q4
## 16160                                                                                                                                                                   Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q5 (highest)
## 16161                                                                                                                                                                                 Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%)
## 16162                                                                                                                                                      Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q1 (lowest)
## 16163                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q2
## 16164                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q3
## 16165                                                                                                                                                               Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q4
## 16166                                                                                                                                                     Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q5 (highest)
## 16167                                                                                                                                                                   Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%)
## 16168                                                                                                                                                                                                       Proportion of time spent on unpaid domestic and care work, female (% of 24 hour day)
## 16169                                                                                                                                                                                                        Proportion of time spent on unpaid domestic and care work, male (% of 24 hour day) 
## 16170                                                                                                                                                              Proportion of women subjected to physical and/or sexual violence in the last 12 months (% of ever-partnered women ages 15-49)
## 16171                                                                                                                                                                                          Proportion of women who have ever experienced any form of sexual violence (% of women ages 15-49)
## 16172                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she argues with him (%): Q1 (lowest)
## 16173                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q2
## 16174                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q3
## 16175                                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she argues with him (%): Q4
## 16176                                                                                                                                                                                    Women who believe a husband is justified in beating his wife when she argues with him (%): Q5 (highest)
## 16177                                                                                                                                                                                                  Women who believe a husband is justified in beating his wife when she argues with him (%)
## 16178                                                                                                                                                                                      Women who believe a husband is justified in beating his wife when she burns the food (%): Q1 (lowest)
## 16179                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q2
## 16180                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q3
## 16181                                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she burns the food (%): Q4
## 16182                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she burns the food (%): Q5 (highest)
## 16183                                                                                                                                                                                                   Women who believe a husband is justified in beating his wife when she burns the food (%)
## 16184                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q1 (lowest)
## 16185                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q2
## 16186                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q3
## 16187                                                                                                                                                                                 Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q4
## 16188                                                                                                                                                                       Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q5 (highest)
## 16189                                                                                                                                                                                     Women who believe a husband is justified in beating his wife when she goes out without telling him (%)
## 16190                                                                                                                                                                          Proportion of women who have sought help to stop physical or sexual violence (% of ever-married women ages 15-49)
## 16191                                                                                                                                                                               Proportion of women who have ever experienced intimate partner violence (% of ever-married women ages 15-49)
## 16192                                                                                                                                                                                                                                  Spousal physical or sexual violence in last 12 months (%)
## 16193                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she neglects the children (%): Q1 (lowest)
## 16194                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q2
## 16195                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q3
## 16196                                                                                                                                                                                        Women who believe a husband is justified in beating his wife when she neglects the children (%): Q4
## 16197                                                                                                                                                                              Women who believe a husband is justified in beating his wife when she neglects the children (%): Q5 (highest)
## 16198                                                                                                                                                                                            Women who believe a husband is justified in beating his wife when she neglects the children (%)
## 16199                                                                                                                                                                                        Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q1 (lowest)
## 16200                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q2
## 16201                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q3
## 16202                                                                                                                                                                                                 Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q4
## 16203                                                                                                                                                                                       Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q5 (highest)
## 16204                                                                                                                                                                                                     Women who believe a husband is justified in beating his wife (any of five reasons) (%)
## 16205                                                                                                                                                                                Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q1 (lowest)
## 16206                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q2
## 16207                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q3
## 16208                                                                                                                                                                                         Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q4
## 16209                                                                                                                                                                               Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q5 (highest)
## 16210                                                                                                                                                                                             Women who believe a husband is justified in beating his wife when she refuses sex with him (%)
## 16211                                                                                                                                                                                                      Problems in accessing health care (not wanting to go alone) (% of women): Q1 (lowest)
## 16212                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q2
## 16213                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q3
## 16214                                                                                                                                                                                                               Problems in accessing health care (not wanting to go alone) (% of women): Q4
## 16215                                                                                                                                                                                                     Problems in accessing health care (not wanting to go alone) (% of women): Q5 (highest)
## 16216                                                                                                                                                                                                  Problems in accessing health care (distance to health facility) (% of women): Q1 (lowest)
## 16217                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q2
## 16218                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q3
## 16219                                                                                                                                                                                                           Problems in accessing health care (distance to health facility) (% of women): Q4
## 16220                                                                                                                                                                                                 Problems in accessing health care (distance to health facility) (% of women): Q5 (highest)
## 16221                                                                                                                                                                                                  Problems in accessing health care (getting money for treatment) (% of women): Q1 (lowest)
## 16222                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q2
## 16223                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q3
## 16224                                                                                                                                                                                                           Problems in accessing health care (getting money for treatment) (% of women): Q4
## 16225                                                                                                                                                                                                 Problems in accessing health care (getting money for treatment) (% of women): Q5 (highest)
## 16226                                                                                                                                                                                   Problems in accessing health care (concern there may not be a female provider) (% of women): Q1 (lowest)
## 16227                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q2
## 16228                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q3
## 16229                                                                                                                                                                                            Problems in accessing health care (concern there may not be a female provider) (% of women): Q4
## 16230                                                                                                                                                                                  Problems in accessing health care (concern there may not be a female provider) (% of women): Q5 (highest)
## 16231                                                                                                                                                                                       Problems in accessing health care (getting permission to go for treatment) (% of women): Q1 (lowest)
## 16232                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q2
## 16233                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q3
## 16234                                                                                                                                                                                                Problems in accessing health care (getting permission to go for treatment) (% of women): Q4
## 16235                                                                                                                                                                                      Problems in accessing health care (getting permission to go for treatment) (% of women): Q5 (highest)
## 16236                                                                                                                                                                                                Problems in accessing health care (any of the specified problems) (% of women): Q1 (lowest)
## 16237                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q2
## 16238                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q3
## 16239                                                                                                                                                                                                         Problems in accessing health care (any of the specified problems) (% of women): Q4
## 16240                                                                                                                                                                                               Problems in accessing health care (any of the specified problems) (% of women): Q5 (highest)
## 16241                                                                                                                                                                                                     Problems in accessing health care (having to take transport) (% of women): Q1 (lowest)
## 16242                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q2
## 16243                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q3
## 16244                                                                                                                                                                                                              Problems in accessing health care (having to take transport) (% of women): Q4
## 16245                                                                                                                                                                                                    Problems in accessing health care (having to take transport) (% of women): Q5 (highest)
## 16246                                                                                                                                                                                            Problems in accessing health care (knowing where to go for treatment) (% of women): Q1 (lowest)
## 16247                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q2
## 16248                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q3
## 16249                                                                                                                                                                                                     Problems in accessing health care (knowing where to go for treatment) (% of women): Q4
## 16250                                                                                                                                                                                           Problems in accessing health care (knowing where to go for treatment) (% of women): Q5 (highest)
## 16251                                                                                                                                                                                                                                                Inpatient admission rate (% of population )
## 16252                                                                                                                                                                        Total alcohol consumption per capita, female (liters of pure alcohol, projected estimates, female 15+ years of age)
## 16253                                                                                                                                                                                       Total alcohol consumption per capita (liters of pure alcohol, projected estimates, 15+ years of age)
## 16254                                                                                                                                                                            Total alcohol consumption per capita, male (liters of pure alcohol, projected estimates, male 15+ years of age)
## 16255                                                                                                                                                                                                               Prevalence of anemia among women of reproductive age (% of women ages 15-49)
## 16256                                                                                                                                                                                                                       Prevalence of anemia among children (% of children ages 6-59 months)
## 16257                                                                                                                                                                                                                      Prevalence of anemia among non-pregnant women (% of women ages 15-49)
## 16258                                                                                                                                                                                                                        Condom use, population ages 15-24, female (% of females ages 15-24)
## 16259                                                                                                                                                                                                                            Condom use, population ages 15-24, male (% of males ages 15-24)
## 16260                                                                                                                                                                                                                              Condom use at last high-risk sex, adult female (% ages 15-49)
## 16261                                                                                                                                                                                                                                Condom use at last high-risk sex, adult male (% ages 15-49)
## 16262                                                                                                                                                                                                                                                                          Number of Doctors
## 16263                                                                                                                                                                                                                                                            Number of deaths ages 5-9 years
## 16264                                                                                                                                                                                                                                                           Number of deaths ages 5-14 years
## 16265                                                                                                                                                                                                                                                          Number of deaths ages 10-14 years
## 16266                                                                                                                                                                                                                                                          Number of deaths ages 10-19 years
## 16267                                                                                                                                                                                                                                                          Number of deaths ages 15-19 years
## 16268                                                                                                                                                                                                                                                          Number of deaths ages 20-24 years
## 16269                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, female (% of female population ages 0-4)
## 16270                                                                                                                                                   Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, male (% of male population ages 0-4)
## 16271                                                                                                                                                              Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4 (% of population ages 0-4)
## 16272                                                                                                                                             Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, female (% of female population ages 5-14)
## 16273                                                                                                                                                 Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, male (% of male population ages 5-14)
## 16274                                                                                                                                                            Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14 (% of population ages 5-14)
## 16275                                                                                                                                           Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, female (% of female population ages 15-59)
## 16276                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, male (% of male population ages 15-59)
## 16277                                                                                                                                                          Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59 (% of population ages 15-59)
## 16278                                                                                                                                               Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, female (% of female population ages 60+)
## 16279                                                                                                                                                   Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, male (% of male population ages 60+)
## 16280                                                                                                                                                              Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+ (% of population ages 60+)
## 16281                                                                                                                                                                  Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, female (% of female population)
## 16282                                                                                                                                                                      Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, male (% of male population)
## 16283                                                                                                                                                                                      Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)
## 16284                                                                                                                                                                                                                                                                    Number of infant deaths
## 16285                                                                                                                                                                                                                                                            Number of infant deaths, female
## 16286                                                                                                                                                                                                                                                              Number of infant deaths, male
## 16287                                                                                                                                                                                                              Cause of death, by injury, ages 0-4, female (% of female population ages 0-4)
## 16288                                                                                                                                                                                                                  Cause of death, by injury, ages 0-4, male (% of male population ages 0-4)
## 16289                                                                                                                                                                                                                             Cause of death, by injury, ages 0-4 (% of population ages 0-4)
## 16290                                                                                                                                                                                                            Cause of death, by injury, ages 5-14, female (% of female population ages 5-14)
## 16291                                                                                                                                                                                                                Cause of death, by injury, ages 5-14, male (% of male population ages 5-14)
## 16292                                                                                                                                                                                                                           Cause of death, by injury, ages 5-14 (% of population ages 5-14)
## 16293                                                                                                                                                                                                          Cause of death, by injury, ages 15-59, female (% of female population ages 15-59)
## 16294                                                                                                                                                                                                              Cause of death, by injury, ages 15-59, male (% of male population ages 15-59)
## 16295                                                                                                                                                                                                                         Cause of death, by injury, ages 15-59 (% of population ages 15-59)
## 16296                                                                                                                                                                                                              Cause of death, by injury, ages 60+, female (% of female population ages 60+)
## 16297                                                                                                                                                                                                                  Cause of death, by injury, ages 60+, male (% of male population ages 60+)
## 16298                                                                                                                                                                                                                             Cause of death, by injury, ages 60+ (% of population ages 60+)
## 16299                                                                                                                                                                                                                                 Cause of death, by injury, female (% of female population)
## 16300                                                                                                                                                                                                                                     Cause of death, by injury, male (% of male population)
## 16301                                                                                                                                                                                                                                                     Cause of death, by injury (% of total)
## 16302                                                                                                                                                                                                                                                                Number of under-five deaths
## 16303                                                                                                                                                                                                                                                        Number of under-five deaths, female
## 16304                                                                                                                                                                                                                                                          Number of under-five deaths, male
## 16305                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 0-4, female (% of female population ages 0-4)
## 16306                                                                                                                                                                                               Cause of death, by non-communicable diseases, ages 0-4, male (% of male population ages 0-4)
## 16307                                                                                                                                                                                                          Cause of death, by non-communicable diseases, ages 0-4 (% of population ages 0-4)
## 16308                                                                                                                                                                                         Cause of death, by non-communicable diseases, ages 5-14, female (% of female population ages 5-14)
## 16309                                                                                                                                                                                             Cause of death, by non-communicable diseases, ages 5-14, male (% of male population ages 5-14)
## 16310                                                                                                                                                                                                        Cause of death, by non-communicable diseases, ages 5-14 (% of population ages 5-14)
## 16311                                                                                                                                                                                       Cause of death, by non-communicable diseases, ages 15-59, female (% of female population ages 15-59)
## 16312                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 15-59, male (% of male population ages 15-59)
## 16313                                                                                                                                                                                                      Cause of death, by non-communicable diseases, ages 15-59 (% of population ages 15-59)
## 16314                                                                                                                                                                                           Cause of death, by non-communicable diseases, ages 60+, female (% of female population ages 60+)
## 16315                                                                                                                                                                                               Cause of death, by non-communicable diseases, ages 60+, male (% of male population ages 60+)
## 16316                                                                                                                                                                                                          Cause of death, by non-communicable diseases, ages 60+ (% of population ages 60+)
## 16317                                                                                                                                                                                                              Cause of death, by non-communicable diseases, female (% of female population)
## 16318                                                                                                                                                                                                                  Cause of death, by non-communicable diseases, male (% of male population)
## 16319                                                                                                                                                                                                                                  Cause of death, by non-communicable diseases (% of total)
## 16320                                                                                                                                                                                                                                                                  Number of neonatal deaths
## 16321                                                                                                                                                                                                                                                                      Number of stillbirths
## 16322                                                                                                                                                                                                                             Probability of dying among children ages 5-9 years (per 1,000)
## 16323                                                                                                                                                                                                                          Probability of dying at age 5-14 years (per 1,000 children age 5)
## 16324                                                                                                                                                                                                                        Probability of dying among adolescents ages 10-14 years (per 1,000)
## 16325                                                                                                                                                                                                                        Probability of dying among adolescents ages 10-19 years (per 1,000)
## 16326                                                                                                                                                                                                                        Probability of dying among adolescents ages 15-19 years (per 1,000)
## 16327                                                                                                                                                                                                                              Probability of dying among youth ages 20-24 years (per 1,000)
## 16328                                                                                                                                                                                                                                                          Adults (ages 15+) living with HIV
## 16329                                                                                                                                                                                                                                                   AIDS estimated deaths (UNAIDS estimates)
## 16330                                                                                                                                                                                                                                   Women's share of population ages 15+ living with HIV (%)
## 16331                                                                                                                                                                                                                                  HIV prevalence rate, adult 15-49 years (%; high estimate)
## 16332                                                                                                                                                                                                                                   HIV prevalence rate, adult 15-49 years (%; low estimate)
## 16333                                                                                                                                                                                                                                      Prevalence of HIV, total (% of population ages 15-49)
## 16334                                                                                                                                                                                                                           Mortality rate, female child (per 1,000 female children age one)
## 16335                                                                                                                                                                                                                               Mortality rate, male child (per 1,000 male children age one)
## 16336                                                                                                                                                                                                                                            Mortality rate, under-5 (per 1,000 live births)
## 16337                                                                                                                                                                                                                                    Mortality rate, under-5, female (per 1,000 live births)
## 16338                                                                                                                                                                                                                                      Mortality rate, under-5, male (per 1,000 live births)
## 16339                                                                                                                                                                                                                                Under-5 mortality rate (per 1,000 live births): Q1 (lowest)
## 16340                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q2
## 16341                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q3
## 16342                                                                                                                                                                                                                                         Under-5 mortality rate (per 1,000 live births): Q4
## 16343                                                                                                                                                                                                                               Under-5 mortality rate (per 1,000 live births): Q5 (highest)
## 16344                                                                                                                                                                                                       Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, female (%)
## 16345                                                                                                                                                                                                         Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, male (%)
## 16346                                                                                                                                                                                                               Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70 (%)
## 16347                                                                                                                                                                                                                                           Mortality rate, neonatal (per 1,000 live births)
## 16348                                                                                                                                                                                                                                                   Stillbirth rate (per 1,000 total births)
## 16349                                                                                                                                                                                                               Acceptability of media messages on family planning (% of women): Q1 (lowest)
## 16350                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q2
## 16351                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q3
## 16352                                                                                                                                                                                                                        Acceptability of media messages on family planning (% of women): Q4
## 16353                                                                                                                                                                                                              Acceptability of media messages on family planning (% of women): Q5 (highest)
## 16354                                                                                                                                                                                                                                  Median age at first birth (women ages 25-49): Q1 (lowest)
## 16355                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q2
## 16356                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q3
## 16357                                                                                                                                                                                                                                           Median age at first birth (women ages 25-49): Q4
## 16358                                                                                                                                                                                                                                 Median age at first birth (women ages 25-49): Q5 (highest)
## 16359                                                                                                                                                                                                                               Median age at first marriage (women ages 25-49): Q1 (lowest)
## 16360                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q2
## 16361                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q3
## 16362                                                                                                                                                                                                                                        Median age at first marriage (women ages 25-49): Q4
## 16363                                                                                                                                                                                                                              Median age at first marriage (women ages 25-49): Q5 (highest)
## 16364                                                                                                                                                                                                                     Median age at first sexual intercourse (women ages 25-49): Q1 (lowest)
## 16365                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q2
## 16366                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q3
## 16367                                                                                                                                                                                                                              Median age at first sexual intercourse (women ages 25-49): Q4
## 16368                                                                                                                                                                                                                    Median age at first sexual intercourse (women ages 25-49): Q5 (highest)
## 16369                                                                                                                                                                                                                    Heard family planning on radio and television (% of women): Q1 (lowest)
## 16370                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q2
## 16371                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q3
## 16372                                                                                                                                                                                                                             Heard family planning on radio and television (% of women): Q4
## 16373                                                                                                                                                                                                                   Heard family planning on radio and television (% of women): Q5 (highest)
## 16374                                                                                                                                                                                                                                     Mean ideal number of children (per woman): Q1 (lowest)
## 16375                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q2
## 16376                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q3
## 16377                                                                                                                                                                                                                                              Mean ideal number of children (per woman): Q4
## 16378                                                                                                                                                                                                                                    Mean ideal number of children (per woman): Q5 (highest)
## 16379                                                                                                                                                                                                                  Knowledge of contraception (any method) (% of married women): Q1 (lowest)
## 16380                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q2
## 16381                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q3
## 16382                                                                                                                                                                                                                           Knowledge of contraception (any method) (% of married women): Q4
## 16383                                                                                                                                                                                                                 Knowledge of contraception (any method) (% of married women): Q5 (highest)
## 16384                                                                                                                                                                                                               Knowledge of contraception (modern method) (% of married women): Q1 (lowest)
## 16385                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q2
## 16386                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q3
## 16387                                                                                                                                                                                                                        Knowledge of contraception (modern method) (% of married women): Q4
## 16388                                                                                                                                                                                                              Knowledge of contraception (modern method) (% of married women): Q5 (highest)
## 16389                                                                                                                                                                                                                      Desire to stop (limit) childbearing (% of married women): Q1 (lowest)
## 16390                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q2
## 16391                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q3
## 16392                                                                                                                                                                                                                               Desire to stop (limit) childbearing (% of married women): Q4
## 16393                                                                                                                                                                                                                     Desire to stop (limit) childbearing (% of married women): Q5 (highest)
## 16394                                                                                                                                                                                                                                                Median birth interval (months): Q1 (lowest)
## 16395                                                                                                                                                                                                                                                         Median birth interval (months): Q2
## 16396                                                                                                                                                                                                                                                         Median birth interval (months): Q3
## 16397                                                                                                                                                                                                                                                         Median birth interval (months): Q4
## 16398                                                                                                                                                                                                                                               Median birth interval (months): Q5 (highest)
## 16399                                                                                                                                                                                                                        Fertility planning status (wanted later) (% of births): Q1 (lowest)
## 16400                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q2
## 16401                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q3
## 16402                                                                                                                                                                                                                                 Fertility planning status (wanted later) (% of births): Q4
## 16403                                                                                                                                                                                                                       Fertility planning status (wanted later) (% of births): Q5 (highest)
## 16404                                                                                                                                                                                                                                Family planning messages in print (% of women): Q1 (lowest)
## 16405                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q2
## 16406                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q3
## 16407                                                                                                                                                                                                                                         Family planning messages in print (% of women): Q4
## 16408                                                                                                                                                                                                                               Family planning messages in print (% of women): Q5 (highest)
## 16409                                                                                                                                                                                   Demand for family planning satisfied by any methods (% of married women with demand for family planning)
## 16410                                                                                                                                                                                Demand for family planning satisfied by modern methods (% of married women with demand for family planning)
## 16411                                                                                                                                                                                                                      Fertility planning status (wanted no more) (% of births): Q1 (lowest)
## 16412                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q2
## 16413                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q3
## 16414                                                                                                                                                                                                                               Fertility planning status (wanted no more) (% of births): Q4
## 16415                                                                                                                                                                                                                     Fertility planning status (wanted no more) (% of births): Q5 (highest)
## 16416                                                                                                                                                                                                                         Fertility planning status (wanted then) (% of births): Q1 (lowest)
## 16417                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q2
## 16418                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q3
## 16419                                                                                                                                                                                                                                  Fertility planning status (wanted then) (% of births): Q4
## 16420                                                                                                                                                                                                                        Fertility planning status (wanted then) (% of births): Q5 (highest)
## 16421                                                                                                                                                                                                         People using at least basic drinking water services (% of population): Q1 (lowest)
## 16422                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q2
## 16423                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q3
## 16424                                                                                                                                                                                                                  People using at least basic drinking water services (% of population): Q4
## 16425                                                                                                                                                                                                        People using at least basic drinking water services (% of population): Q5 (highest)
## 16426                                                                                                                                                                                            People using at least basic drinking water services, rural (% of rural population): Q1 (lowest)
## 16427                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q2
## 16428                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q3
## 16429                                                                                                                                                                                                     People using at least basic drinking water services, rural (% of rural population): Q4
## 16430                                                                                                                                                                                           People using at least basic drinking water services, rural (% of rural population): Q5 (highest)
## 16431                                                                                                                                                                                                         People using at least basic drinking water services, rural (% of rural population)
## 16432                                                                                                                                                                                            People using at least basic drinking water services, urban (% of urban population): Q1 (lowest)
## 16433                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q2
## 16434                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q3
## 16435                                                                                                                                                                                                     People using at least basic drinking water services, urban (% of urban population): Q4
## 16436                                                                                                                                                                                           People using at least basic drinking water services, urban (% of urban population): Q5 (highest)
## 16437                                                                                                                                                                                                         People using at least basic drinking water services, urban (% of urban population)
## 16438                                                                                                                                                                                                                      People using at least basic drinking water services (% of population)
## 16439                                                                                                                                                                                                                           Improved water source, rural (% of rural population with access)
## 16440                                                                                                                                                                                                                           Improved water source, urban (% of urban population with access)
## 16441                                                                                                                                                                                                                                        Improved water source (% of population with access)
## 16442                                                                                                                                                                                                         People using safely managed drinking water services, rural (% of rural population)
## 16443                                                                                                                                                                                                         People using safely managed drinking water services, urban (% of urban population)
## 16444                                                                                                                                                                                                                      People using safely managed drinking water services (% of population)
## 16445                                                                                                                                                                                                                                                            Children (0-14) living with HIV
## 16446                                                                                                                                                                                                                              Prevalence of HIV, young women 15-24 years (%; high estimate)
## 16447                                                                                                                                                                                                                               Prevalence of HIV, young women 15-24 years (%; low estimate)
## 16448                                                                                                                                                                                                                                                   Prevalence of HIV, female (% ages 15-24)
## 16449                                                                                                                                                                               Comprehensive correct knowledge of HIV/AIDS, ages 15-24, female (2 prevent ways and reject 3 misconceptions)
## 16450                                                                                                                                                                                 Comprehensive correct knowledge of HIV/AIDS, ages 15-24, male (2 prevent ways and reject 3 misconceptions)
## 16451                                                                                                                                                                                                                                Prevalence of HIV, young men 15-24 years (%; high estimate)
## 16452                                                                                                                                                                                                                                 Prevalence of HIV, young men 15-24 years (%; low estimate)
## 16453                                                                                                                                                                                                                                                     Prevalence of HIV, male (% ages 15-24)
## 16454                                                                                                                                                                                                                                                Access to anti-retroviral drugs, female (%)
## 16455                                                                                                                                                                                                                                                  Access to anti-retroviral drugs, male (%)
## 16456                                                                                                                                                                                                                              Antiretroviral therapy coverage (% of people living with HIV)
## 16457                                                                                                                                                                                                                                         AIDS deaths in adults and children (high estimate)
## 16458                                                                                                                                                                                                                                          AIDS deaths in adults and children (low estimate)
## 16459                                                                                                                                                                                                                                                         AIDS deaths in adults and children
## 16460                                                                                                                                                                                                                                                Adults (ages 15-49) newly infected with HIV
## 16461                                                                                                                                                                                                                                               Children (ages 0-14) newly infected with HIV
## 16462                                                                                                                                                                                                                      Incidence of HIV, ages 50+ (per 1,000 uninfected population ages 50+)
## 16463                                                                                                                                                                                                   Incidence of HIV, ages 15-49, female (per 1,000 uninfected female population ages 15-49)
## 16464                                                                                                                                                                                                       Incidence of HIV, ages 15-49, male (per 1,000 uninfected male population ages 15-49)
## 16465                                                                                                                                                                                                                         Adults (ages 15+) and children (ages 0-14) newly infected with HIV
## 16466                                                                                                                                                                                                                                    Incidence of HIV, all (per 1,000 uninfected population)
## 16467                                                                                                                                                                                                                                          Young people (ages 15-24) newly infected with HIV
## 16468                                                                                                                                                                                                   Incidence of HIV, ages 15-24, female (per 1,000 uninfected female population ages 15-24)
## 16469                                                                                                                                                                                                       Incidence of HIV, ages 15-24, male (per 1,000 uninfected male population ages 15-24)
## 16470                                                                                                                                                                                                                  Incidence of HIV, ages 15-24 (per 1,000 uninfected population ages 15-24)
## 16471                                                                                                                                                                                                                  Incidence of HIV, ages 15-49 (per 1,000 uninfected population ages 15-49)
## 16472                                                                                                                                                                               Comprehensive correct knowledge of HIV/AIDS, ages 15-49, female (2 prevent ways and reject 3 misconceptions)
## 16473                                                                                                                                                                                 Comprehensive correct knowledge of HIV/AIDS, ages 15-49, male (2 prevent ways and reject 3 misconceptions)
## 16474                                                                                                                                                                                                                                             New HIV infections (0-14 years), high estimate
## 16475                                                                                                                                                                                                                                              New HIV infections (0-14 years), low estimate
## 16476                                                                                                                                                                                                                                                            New HIV infections (0-14 years)
## 16477                                                                                                                                                                                                                                                          New HIV infections, high estimate
## 16478                                                                                                                                                                                                                                                           New HIV infections, low estimate
## 16479                                                                                                                                                                                                                                                                         New HIV infections
## 16480                                                                                                                                                                                                                                        Orphans 0-17 years currently living (high estimate)
## 16481                                                                                                                                                                                                                                         Orphans 0-17 years currently living (low estimate)
## 16482                                                                                                                                                                                                                                                        Orphans 0-17 years currently living
## 16483                                                                                                                                                                                                                                                              Children orphaned by HIV/AIDS
## 16484                                                                                                                                                                                                            Antiretroviral therapy coverage for PMTCT (% of pregnant women living with HIV)
## 16485                                                                                                                                                                                     HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; high estimate)
## 16486                                                                                                                                                                                      HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; low estimate)
## 16487                                                                                                                                                                                                                           Number of HIV positive pregnant women receiving antiretrovirals 
## 16488                                                                                                                                                                                                    HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%)
## 16489                                                                                                                                                                                                                                Adults (ages 15+) and children (0-14 years) living with HIV
## 16490                                                                                                                                                                                                                                         People living with HIV/AIDS, total (high estimate)
## 16491                                                                                                                                                                                                                                          People living with HIV/AIDS, total (low estimate)
## 16492                                                                                                                                                                                                                                                         People living with HIV/AIDS, total
## 16493                                                                                                                                                                                                                                                                        Number of hospitals
## 16494                                                                                                                                                                                                                         Prevalence of hypertension, female (% of female adults ages 30-79)
## 16495                                                                                                                                                                                                                             Prevalence of hypertension, male (% of male adults ages 30-79)
## 16496                                                                                                                                                                                                                                        Prevalence of hypertension (% of adults ages 30-79)
## 16497                                                                                                                                                                                                       Treatment for hypertension, female (% of female adults ages 30-79 with hypertension)
## 16498                                                                                                                                                                                                           Treatment for hypertension, male (% of male adults ages 30-79 with hypertension)
## 16499                                                                                                                                                                                                                      Treatment for hypertension (% of adults ages 30-79 with hypertension)
## 16500                                                                                                                                                                                                             Vaccinations (all vaccinations) (% of children ages 12-23 months): Q1 (lowest)
## 16501                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q2
## 16502                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q3
## 16503                                                                                                                                                                                                                      Vaccinations (all vaccinations) (% of children ages 12-23 months): Q4
## 16504                                                                                                                                                                                                            Vaccinations (all vaccinations) (% of children ages 12-23 months): Q5 (highest)
## 16505                                                                                                                                                                                       Immunization Coverage for Children under 5 years old (in % of children population under 5 years old)
## 16506                                                                                                                                                                                                                                           Immunization, HepB3 (% of one-year-old children)
## 16507                                                                                                                                                                                                                                       Immunization, Hib3 (% of children ages 12-23 months)
## 16508                                                                                                                                                                                                                                             Immunization, BCG (% of one-year-old children)
## 16509                                                                                                                                                                                                                          Vaccinations (BCG) (% of children ages 12-23 months): Q1 (lowest)
## 16510                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q2
## 16511                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q3
## 16512                                                                                                                                                                                                                                   Vaccinations (BCG) (% of children ages 12-23 months): Q4
## 16513                                                                                                                                                                                                                         Vaccinations (BCG) (% of children ages 12-23 months): Q5 (highest)
## 16514                                                                                                                                                                                                                                        Immunization, DPT (% of children ages 12-23 months)
## 16515                                                                                                                                                                                                                        Vaccinations (DPT 3) (% of children ages 12-23 months): Q1 (lowest)
## 16516                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q2
## 16517                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q3
## 16518                                                                                                                                                                                                                                 Vaccinations (DPT 3) (% of children ages 12-23 months): Q4
## 16519                                                                                                                                                                                                                       Vaccinations (DPT 3) (% of children ages 12-23 months): Q5 (highest)
## 16520                                                                                                                                                                                                        Immunization, measles second dose (% of children by the nationally recommended age)
## 16521                                                                                                                                                                                                                                    Immunization, measles (% of children ages 12-23 months)
## 16522                                                                                                                                                                                                                      Vaccinations (Measles) (% of children ages 12-23 months): Q1 (lowest)
## 16523                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q2
## 16524                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q3
## 16525                                                                                                                                                                                                                               Vaccinations (Measles) (% of children ages 12-23 months): Q4
## 16526                                                                                                                                                                                                                     Vaccinations (Measles) (% of children ages 12-23 months): Q5 (highest)
## 16527                                                                                                                                                                                                              Vaccinations (no vaccinations) (% of children ages 12-23 months): Q1 (lowest)
## 16528                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q2
## 16529                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q3
## 16530                                                                                                                                                                                                                       Vaccinations (no vaccinations) (% of children ages 12-23 months): Q4
## 16531                                                                                                                                                                                                             Vaccinations (no vaccinations) (% of children ages 12-23 months): Q5 (highest)
## 16532                                                                                                                                                                                                                                            Immunization, Pol3 (% of one-year-old children)
## 16533                                                                                                                                                                                                                                                           Hospital beds (per 1,000 people)
## 16534                                                                                                                                                                                                                                                Community health workers (per 1,000 people)
## 16535                                                                                                                                                                                                                                                                         Number of Midwives
## 16536                                                                                                                                                                                                                                                     Nurses and midwives (per 1,000 people)
## 16537                                                                                                                                                                                                                                                                       Population per nurse
## 16538                                                                                                                                                                                                                                                              Physicians (per 1,000 people)
## 16539                                                                                                                                                                                                                                     Specialist surgical workforce (per 100,000 population)
## 16540                                                                                                                                                                                                                                                    Reported clinical malaria cases (total)
## 16541                                                                                                                                                                                                                           Deaths among children under five years of age due to malaria (%)
## 16542                                                                                                                                                                                                                                                            Reported malaria deaths (total)
## 16543                                                                                                                                                                                                                                             Notified cases of malaria (per 100,000 people)
## 16544                                                                                                                                                                                                                                        Incidence of malaria (per 1,000 population at risk)
## 16545                                                                                                                                                                                                      Intermittent preventive treatment (IPT) of malaria in pregnancy (% of pregnant women)
## 16546                                                                                                                                                                                                                                Households with one or more insect-treated mosquito net (%)
## 16547                                                                                                                                                                                                       Mosquito net use by children (any mosquito net) (% of children under 5): Q1 (lowest)
## 16548                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q2
## 16549                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q3
## 16550                                                                                                                                                                                                                Mosquito net use by children (any mosquito net) (% of children under 5): Q4
## 16551                                                                                                                                                                                                      Mosquito net use by children (any mosquito net) (% of children under 5): Q5 (highest)
## 16552                                                                                                                                                                                             Household posession of mosquito nets (any type of mosquito net) (% of households): Q1 (lowest)
## 16553                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q2
## 16554                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q3
## 16555                                                                                                                                                                                                      Household posession of mosquito nets (any type of mosquito net) (% of households): Q4
## 16556                                                                                                                                                                                            Household posession of mosquito nets (any type of mosquito net) (% of households): Q5 (highest)
## 16557                                                                                                                                                                                                   Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q1 (lowest)
## 16558                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q2
## 16559                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q3
## 16560                                                                                                                                                                                                            Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q4
## 16561                                                                                                                                                                                                  Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q5 (highest)
## 16562                                                                                                                                                                                                        Malaria prevention, use of bed nets (% of under-5 children in the poorest quintile)
## 16563                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q2
## 16564                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q3
## 16565                                                                                                                                                                                                         Mosquito net use by children (insecticide-treated net) (% of children under 5): Q4
## 16566                                                                                                                                                                                                        Malaria prevention, use of bed nets (% of under-5 children in the richest quintile)
## 16567                                                                                                                                                                                                                              Use of insecticide-treated bed nets (% of under-5 population)
## 16568                                                                                                                                                                                              Household posession of mosquito nets (insecticide-treated net) (% of households): Q1 (lowest)
## 16569                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q2
## 16570                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q3
## 16571                                                                                                                                                                                                       Household posession of mosquito nets (insecticide-treated net) (% of households): Q4
## 16572                                                                                                                                                                                             Household posession of mosquito nets (insecticide-treated net) (% of households): Q5 (highest)
## 16573                                                                                                                                                                                            Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q1 (lowest)
## 16574                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q2
## 16575                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q3
## 16576                                                                                                                                                                                                     Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q4
## 16577                                                                                                                                                                                           Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q5 (highest)
## 16578                                                                                                                                                                                                        Pregnant women who took at least 2 doses of intermittent preventative treatment (%)
## 16579                                                                                                                                                                            Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q1 (lowest)
## 16580                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q2
## 16581                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q3
## 16582                                                                                                                                                                                     Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q4
## 16583                                                                                                                                                                           Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q5 (highest)
## 16584                                                                                                                                                                                                                         Treatment of fever (% of children under 5 with fever): Q1 (lowest)
## 16585                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q2
## 16586                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q3
## 16587                                                                                                                                                                                                                                  Treatment of fever (% of children under 5 with fever): Q4
## 16588                                                                                                                                                                                                                        Treatment of fever (% of children under 5 with fever): Q5 (highest)
## 16589                                                                                                                                                                                                    Children with fever receiving antimalarial drugs (% of children under age 5 with fever)
## 16590                                                                                                                                                                                                                                                                  Number of maternal deaths
## 16591                                                                                                                                                                                                                                             Length of paid maternity leave (calendar days)
## 16592                                                                                                                                                                                                                         Paid leave of at least 14 weeks available to mothers (1=yes; 0=no)
## 16593                                                                                                                                                                                                                  The government administers 100% of maternity leave benefits (1=yes; 0=no)
## 16594                                                                                                                                                                                                                             Lifetime risk of maternal death (1 in: rate varies by country)
## 16595                                                                                                                                                                                                                                                        Lifetime risk of maternal death (%)
## 16596                                                                                                                                                                                                                                Maternal leave benefits (% of wages paid in covered period)
## 16597                                                                                                                                                                                                                                                                      Morbidity Rate (in %)
## 16598                                                                                                                                                                                                                                       Length of paid shared parental leave (calendar days)
## 16599                                                                                                                                                                                                                                                 There is paid parental leave (1=yes; 0=no)
## 16600                                                                                                                                                                                                                                   Length of paid parental leave for mother (calendar days)
## 16601                                                                                                                                                                                                                                   Length of paid parental leave for father (calendar days)
## 16602                                                                                                                                                                                                                                    Number of Polindes (Poliklinik Desa/Village Polyclinic)
## 16603                                                                                                                                                                                                                                              Prevalence of anemia among pregnant women (%)
## 16604                                                                                                                                                                                                                               Prevalence of syphilis (% of women attending antenatal care)
## 16605                                                                                                                                                                                                                                            Prevalence of current tobacco use (% of adults)
## 16606                                                                                                                                                                                                                            Prevalence of current tobacco use, females (% of female adults)
## 16607                                                                                                                                                                                                                                                          Smoking (% of women): Q1 (lowest)
## 16608                                                                                                                                                                                                                                                                   Smoking (% of women): Q2
## 16609                                                                                                                                                                                                                                                                   Smoking (% of women): Q3
## 16610                                                                                                                                                                                                                                                                   Smoking (% of women): Q4
## 16611                                                                                                                                                                                                                                                         Smoking (% of women): Q5 (highest)
## 16612                                                                                                                                                                                                                                Prevalence of current tobacco use, males (% of male adults)
## 16613                                                                                                                                                                                                                                             Length of paid paternity leave (calendar days)
## 16614                                                                                                                                                                                                                                           Paid leave is available to fathers (1=yes; 0=no)
## 16615                                                                                                                                                                                                                                                  Number of Puskesmas and its line services
## 16616                                                                                                                                                                                                                   Risk of catastrophic expenditure for surgical care (% of people at risk)
## 16617                                                                                                                                                                                                                  Risk of impoverishing expenditure for surgical care (% of people at risk)
## 16618                                                                                                                                                                                                                                     Number of surgical procedures (per 100,000 population)
## 16619                                                                                                                                                                                                                                                  Health care (% of population with access)
## 16620                                                                                                                                                                                                                               Improved sanitation facilities (% of population with access)
## 16621                                                                                                                                                                                                                  Improved sanitation facilities, rural (% of rural population with access)
## 16622                                                                                                                                                                                                                  Improved sanitation facilities, urban (% of urban population with access)
## 16623                                                                                                                                                                 Mortality rate attributed to household and ambient air pollution, age-standardized, female (per 100,000 female population)
## 16624                                                                                                                                                                     Mortality rate attributed to household and ambient air pollution, age-standardized, male (per 100,000 male population)
## 16625                                                                                                                                                                                Mortality rate attributed to household and ambient air pollution, age-standardized (per 100,000 population)
## 16626                                                                                                                                                                                       Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q1 (lowest)
## 16627                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q2
## 16628                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q3
## 16629                                                                                                                                                                                                Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q4
## 16630                                                                                                                                                                                      Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q5 (highest)
## 16631                                                                                                                                                                                                       Pregnant women receiving prenatal care of at least four visits (% of pregnant women)
## 16632                                                                                                                                                                                                              Antenatal care (any skilled personnel) (% of women with a birth): Q1 (lowest)
## 16633                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q2
## 16634                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q3
## 16635                                                                                                                                                                                                                       Antenatal care (any skilled personnel) (% of women with a birth): Q4
## 16636                                                                                                                                                                                                             Antenatal care (any skilled personnel) (% of women with a birth): Q5 (highest)
## 16637                                                                                                                                                                                                                                                 Pregnant women receiving prenatal care (%)
## 16638                                                                                                                                                                                                                             Antenatal care (doctor) (% of women with a birth): Q1 (lowest)
## 16639                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q2
## 16640                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q3
## 16641                                                                                                                                                                                                                                      Antenatal care (doctor) (% of women with a birth): Q4
## 16642                                                                                                                                                                                                                            Antenatal care (doctor) (% of women with a birth): Q5 (highest)
## 16643                                                                                                                                                                             Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q1 (lowest)
## 16644                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q2
## 16645                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q3
## 16646                                                                                                                                                                                      Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q4
## 16647                                                                                                                                                                            Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q5 (highest)
## 16648                                                                                                                                                                                                                           ARI treatment (% of children under 5 taken to a health provider)
## 16649                                                                                                                                                                                                       Prevalence of acute respiratory infection (ARI) (% of children under 5): Q1 (lowest)
## 16650                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q2
## 16651                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q3
## 16652                                                                                                                                                                                                                Prevalence of acute respiratory infection (ARI) (% of children under 5): Q4
## 16653                                                                                                                                                                                                      Prevalence of acute respiratory infection (ARI) (% of children under 5): Q5 (highest)
## 16654                                                                                                                                                                                                                                                     ARI prevalence (% of children under 5)
## 16655                                                                                                                                                                                                             People using at least basic sanitation services (% of population): Q1 (lowest)
## 16656                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q2
## 16657                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q3
## 16658                                                                                                                                                                                                                      People using at least basic sanitation services (% of population): Q4
## 16659                                                                                                                                                                                                            People using at least basic sanitation services (% of population): Q5 (highest)
## 16660                                                                                                                                                                                                People using at least basic sanitation services, rural (% of rural population): Q1 (lowest)
## 16661                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q2
## 16662                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q3
## 16663                                                                                                                                                                                                         People using at least basic sanitation services, rural (% of rural population): Q4
## 16664                                                                                                                                                                                               People using at least basic sanitation services, rural (% of rural population): Q5 (highest)
## 16665                                                                                                                                                                                                             People using at least basic sanitation services, rural (% of rural population)
## 16666                                                                                                                                                                                               People using at least basic sanitation services, urban  (% of urban population): Q1 (lowest)
## 16667                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q2
## 16668                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q3
## 16669                                                                                                                                                                                                        People using at least basic sanitation services, urban  (% of urban population): Q4
## 16670                                                                                                                                                                                              People using at least basic sanitation services, urban  (% of urban population): Q5 (highest)
## 16671                                                                                                                                                                                                             People using at least basic sanitation services, urban (% of urban population)
## 16672                                                                                                                                                                                                                          People using at least basic sanitation services (% of population)
## 16673                                                                                                                                                                                                                                  Breastfeeding (% of children under 6 months): Q1 (lowest)
## 16674                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q2
## 16675                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q3
## 16676                                                                                                                                                                                                                                           Breastfeeding (% of children under 6 months): Q4
## 16677                                                                                                                                                                                                                                 Breastfeeding (% of children under 6 months): Q5 (highest)
## 16678                                                                                                                                                                                                                                     Exclusive breastfeeding (% of children under 6 months)
## 16679                                                                                                                                                                                                              Assistance during delivery (any skilled personnel) (% of births): Q1 (lowest)
## 16680                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q2
## 16681                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q3
## 16682                                                                                                                                                                                                                       Assistance during delivery (any skilled personnel) (% of births): Q4
## 16683                                                                                                                                                                                                             Assistance during delivery (any skilled personnel) (% of births): Q5 (highest)
## 16684                                                                                                                                                                                                                                       Births attended by skilled health staff (% of total)
## 16685                                                                                                                                                                                                                   Place of delivery (births at health facility) (% of births): Q1 (lowest)
## 16686                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q2
## 16687                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q3
## 16688                                                                                                                                                                                                                            Place of delivery (births at health facility) (% of births): Q4
## 16689                                                                                                                                                                                                                  Place of delivery (births at health facility) (% of births): Q5 (highest)
## 16690                                                                                                                                                                                                                             Assistance during delivery (doctor) (% of births): Q1 (lowest)
## 16691                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q2
## 16692                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q3
## 16693                                                                                                                                                                                                                                      Assistance during delivery (doctor) (% of births): Q4
## 16694                                                                                                                                                                                                                            Assistance during delivery (doctor) (% of births): Q5 (highest)
## 16695                                                                                                                                                                                                                                                       Low-birthweight babies (% of births)
## 16696                                                                                                                                                                                                                                        Diabetes prevalence (% of population ages 20 to 79)
## 16697                                                                                                                                                                                                                                Prevalence of diarrhea (% of children under 5): Q1 (lowest)
## 16698                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q2
## 16699                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q3
## 16700                                                                                                                                                                                                                                         Prevalence of diarrhea (% of children under 5): Q4
## 16701                                                                                                                                                                                                                               Prevalence of diarrhea (% of children under 5): Q5 (highest)
## 16702                                                                                                                                                                                                                                                Diarrhea prevalence (% of children under 5)
## 16703                                                                                                                                                                                                                     Prevalence of children with fever (% of children under 5): Q1 (lowest)
## 16704                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q2
## 16705                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q3
## 16706                                                                                                                                                                                                                              Prevalence of children with fever (% of children under 5): Q4
## 16707                                                                                                                                                                                                                    Prevalence of children with fever (% of children under 5): Q5 (highest)
## 16708                                                                                                                                                                                                                                      Female genital mutilation prevalence (%): Q1 (lowest)
## 16709                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q2
## 16710                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q3
## 16711                                                                                                                                                                                                                                               Female genital mutilation prevalence (%): Q4
## 16712                                                                                                                                                                                                                                     Female genital mutilation prevalence (%): Q5 (highest)
## 16713                                                                                                                                                                                                                                                   Female genital mutilation prevalence (%)
## 16714                                                                                                                                                                                           People with basic handwashing facilities including soap and water (% of population): Q1 (lowest)
## 16715                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q2
## 16716                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q3
## 16717                                                                                                                                                                                                    People with basic handwashing facilities including soap and water (% of population): Q4
## 16718                                                                                                                                                                                          People with basic handwashing facilities including soap and water (% of population): Q5 (highest)
## 16719                                                                                                                                                                              People with basic handwashing facilities including soap and water, rural (% of rural population): Q1 (lowest)
## 16720                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q2
## 16721                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q3
## 16722                                                                                                                                                                                       People with basic handwashing facilities including soap and water, rural (% of rural population): Q4
## 16723                                                                                                                                                                             People with basic handwashing facilities including soap and water, rural (% of rural population): Q5 (highest)
## 16724                                                                                                                                                                                           People with basic handwashing facilities including soap and water, rural (% of rural population)
## 16725                                                                                                                                                                              People with basic handwashing facilities including soap and water, urban (% of urban population): Q1 (lowest)
## 16726                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q2
## 16727                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q3
## 16728                                                                                                                                                                                       People with basic handwashing facilities including soap and water, urban (% of urban population): Q4
## 16729                                                                                                                                                                             People with basic handwashing facilities including soap and water, urban (% of urban population): Q5 (highest)
## 16730                                                                                                                                                                                           People with basic handwashing facilities including soap and water, urban (% of urban population)
## 16731                                                                                                                                                                                                        People with basic handwashing facilities including soap and water (% of population)
## 16732                                                                                                                                                                                                         Infant and young child feeding practices, all 3 IYCF (% children ages 6-23 months)
## 16733                                                                                                                                                                                                                       Malnourished women (BMI is less than 18.5) (% of women): Q1 (lowest)
## 16734                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q2
## 16735                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q3
## 16736                                                                                                                                                                                                                                Malnourished women (BMI is less than 18.5) (% of women): Q4
## 16737                                                                                                                                                                                                                      Malnourished women (BMI is less than 18.5) (% of women): Q5 (highest)
## 16738                                                                                                                                                                                                                  Prevalence of underweight, weight for age, female (% of children under 5)
## 16739                                                                                                                                                                                                                    Prevalence of underweight, weight for age, male (% of children under 5)
## 16740                                                                                                                                                                                                             Malnourished children (underweight, -2SD) (% of children under 5): Q1 (lowest)
## 16741                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q2
## 16742                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q3
## 16743                                                                                                                                                                                                                      Malnourished children (underweight, -2SD) (% of children under 5): Q4
## 16744                                                                                                                                                                                                            Malnourished children (underweight, -2SD) (% of children under 5): Q5 (highest)
## 16745                                                                                                                                                                                                                          Prevalence of underweight, weight for age (% of children under 5)
## 16746                                                                                                                                                                                                                                                                     Malaria cases reported
## 16747                                                                                                                                                                                                             Malnourished children (underweight, -3SD) (% of children under 5): Q1 (lowest)
## 16748                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q2
## 16749                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q3
## 16750                                                                                                                                                                                                                      Malnourished children (underweight, -3SD) (% of children under 5): Q4
## 16751                                                                                                                                                                                                            Malnourished children (underweight, -3SD) (% of children under 5): Q5 (highest)
## 16752                                                                                                                                                                                                                       Maternal mortality ratio (modeled estimate, per 100,000 live births)
## 16753                                                                                                                                                                                                                      Maternal mortality ratio (national estimate, per 100,000 live births)
## 16754                                                                                                                                                                                                                            Prevalence of obesity, female (% of female population ages 18+)
## 16755                                                                                                                                                                                                                                Prevalence of obesity, male (% of male population ages 18+)
## 16756                                                                                                                                                                                                                           People practicing open defecation (% of population): Q1 (lowest)
## 16757                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q2
## 16758                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q3
## 16759                                                                                                                                                                                                                                    People practicing open defecation (% of population): Q4
## 16760                                                                                                                                                                                                                          People practicing open defecation (% of population): Q5 (highest)
## 16761                                                                                                                                                                                                              People practicing open defecation, rural (% of rural population): Q1 (lowest)
## 16762                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q2
## 16763                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q3
## 16764                                                                                                                                                                                                                       People practicing open defecation, rural (% of rural population): Q4
## 16765                                                                                                                                                                                                             People practicing open defecation, rural (% of rural population): Q5 (highest)
## 16766                                                                                                                                                                                                                           People practicing open defecation, rural (% of rural population)
## 16767                                                                                                                                                                                                              People practicing open defecation, urban (% of urban population): Q1 (lowest)
## 16768                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q2
## 16769                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q3
## 16770                                                                                                                                                                                                                       People practicing open defecation, urban (% of urban population): Q4
## 16771                                                                                                                                                                                                             People practicing open defecation, urban (% of urban population): Q5 (highest)
## 16772                                                                                                                                                                                                                           People practicing open defecation, urban (% of urban population)
## 16773                                                                                                                                                                                                                                        People practicing open defecation (% of population)
## 16774                                                                                                                                                                                                Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding)
## 16775                                                                                                                                                                                                  Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q1 (lowest)
## 16776                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q2
## 16777                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q3
## 16778                                                                                                                                                                                                           Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q4
## 16779                                                                                                                                                                                                 Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q5 (highest)
## 16780                                                                                                                                                                                                                                     Knowledge of diarrhea care (% of mothers): Q1 (lowest)
## 16781                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q2
## 16782                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q3
## 16783                                                                                                                                                                                                                                              Knowledge of diarrhea care (% of mothers): Q4
## 16784                                                                                                                                                                                                                                    Knowledge of diarrhea care (% of mothers): Q5 (highest)
## 16785                                                                                                                                                                                                             Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q1 (lowest)
## 16786                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q2
## 16787                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q3
## 16788                                                                                                                                                                                                                      Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q4
## 16789                                                                                                                                                                                                            Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q5 (highest)
## 16790                                                                                                                                                                                                                         Diarrhea treatment (% of children under 5 who received ORS packet)
## 16791                                                                                                                                                                                                                                      Prevalence of overweight, female (% of female adults)
## 16792                                                                                                                                                                                                                                          Prevalence of overweight, male (% of male adults)
## 16793                                                                                                                                                                                                                                                     Prevalence of overweight (% of adults)
## 16794                                                                                                                                                                                                                Prevalence of overweight, weight for height, female (% of children under 5)
## 16795                                                                                                                                                                                                                  Prevalence of overweight, weight for height, male (% of children under 5)
## 16796                                                                                                                                                                                                                         Prevalence of overweight (modeled estimate, % of children under 5)
## 16797                                                                                                                                                                                                                        Prevalence of overweight, weight for height (% of children under 5)
## 16798                                                                                                                                                                                                                                                        Postnatal care coverage (% mothers)
## 16799                                                                                                                                                                                                              Mortality rate attributed to unintentional poisoning (per 100,000 population)
## 16800                                                                                                                                                                                               Mortality rate attributed to unintentional poisoning, female (per 100,000 female population)
## 16801                                                                                                                                                                                                   Mortality rate attributed to unintentional poisoning, male (per 100,000 male population)
## 16802                                                                                                                                                                                                             People using safely managed sanitation services, rural (% of rural population)
## 16803                                                                                                                                                                                                             People using safely managed sanitation services, urban (% of urban population)
## 16804                                                                                                                                                                                                                          People using safely managed sanitation services (% of population)
## 16805                                                                                                                                                                                                                Malnourished children (stunting, -3SD) (% of children under 5): Q1 (lowest)
## 16806                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q2
## 16807                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q3
## 16808                                                                                                                                                                                                                         Malnourished children (stunting, -3SD) (% of children under 5): Q4
## 16809                                                                                                                                                                                                               Malnourished children (stunting, -3SD) (% of children under 5): Q5 (highest)
## 16810                                                                                                                                                                                                                     Prevalence of stunting, height for age, female (% of children under 5)
## 16811                                                                                                                                                                                                                       Prevalence of stunting, height for age, male (% of children under 5)
## 16812                                                                                                                                                                                                           Prevalence of stunting, height for age (modeled estimate, % of children under 5)
## 16813                                                                                                                                                                                                                Malnourished children (stunting, -2SD) (% of children under 5): Q1 (lowest)
## 16814                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q2
## 16815                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q3
## 16816                                                                                                                                                                                                                         Malnourished children (stunting, -2SD) (% of children under 5): Q4
## 16817                                                                                                                                                                                                               Malnourished children (stunting, -2SD) (% of children under 5): Q5 (highest)
## 16818                                                                                                                                                                                                                             Prevalence of stunting, height for age (% of children under 5)
## 16819                                                                                                                                                                                                                             Suicide mortality rate, female (per 100,000 female population)
## 16820                                                                                                                                                                                                                                 Suicide mortality rate, male (per 100,000 male population)
## 16821                                                                                                                                                                                                                                            Suicide mortality rate (per 100,000 population)
## 16822                                                                                                                                                                                                            Mortality caused by road traffic injury, female (per 100,000 female population)
## 16823                                                                                                                                                                                                                Mortality caused by road traffic injury, male (per 100,000 male population)
## 16824                                                                                                                                                                                                                           Mortality caused by road traffic injury (per 100,000 population)
## 16825                                                                                                                                                                   Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, female (per 100,000 female population)
## 16826                                                                                                                                                                       Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, male (per 100,000 male population)
## 16827                                                                                                                                                                                  Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene (per 100,000 population)
## 16828                                                                                                                                                                                                                   Prevalence of wasting, weight for height, female (% of children under 5)
## 16829                                                                                                                                                                                                                     Prevalence of wasting, weight for height, male (% of children under 5)
## 16830                                                                                                                                                                                                                 Malnourished children (wasting, -2SD) (% of children under 5): Q1 (lowest)
## 16831                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q2
## 16832                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q3
## 16833                                                                                                                                                                                                                          Malnourished children (wasting, -2SD) (% of children under 5): Q4
## 16834                                                                                                                                                                                                                Malnourished children (wasting, -2SD) (% of children under 5): Q5 (highest)
## 16835                                                                                                                                                                                                                           Prevalence of wasting, weight for height (% of children under 5)
## 16836                                                                                                                                                                                                                 Malnourished children (wasting, -3SD) (% of children under 5): Q1 (lowest)
## 16837                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q2
## 16838                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q3
## 16839                                                                                                                                                                                                                          Malnourished children (wasting, -3SD) (% of children under 5): Q4
## 16840                                                                                                                                                                                                                Malnourished children (wasting, -3SD) (% of children under 5): Q5 (highest)
## 16841                                                                                                                                                                                                            Prevalence of severe wasting, weight for height, female (% of children under 5)
## 16842                                                                                                                                                                                                              Prevalence of severe wasting, weight for height, male (% of children under 5)
## 16843                                                                                                                                                                                                                    Prevalence of severe wasting, weight for height (% of children under 5)
## 16844                                                                                                                                                                                                                                       Tuberculosis treatment success rate (% of new cases)
## 16845                                                                                                                                                                                                                                                 Tuberculosis cases detected under DOTS (%)
## 16846                                                                                                                                                                                                                                            Tuberculosis case detection rate (%, all forms)
## 16847                                                                                                                                                                                                                                             Incidence of tuberculosis (per 100,000 people)
## 16848                                                                                                                                                                                                                     Incidence of tuberculosis, high uncertainty bound (per 100,000 people)
## 16849                                                                                                                                                                                                                      Incidence of tuberculosis, low uncertainty bound (per 100,000 people)
## 16850                                                                                                                                                                                                                                               Tuberculosis death rate (per 100,000 people)
## 16851                                                                                                                                                                                      Deaths due to tuberculosis among HIV-negative people, high uncertainty bound (per 100,000 population)
## 16852                                                                                                                                                                                       Deaths due to tuberculosis among HIV-negative people, low uncertainty bound (per 100,000 population)
## 16853                                                                                                                                                                                                                                Tuberculosis prevalence rate (per 1000,000 population, WHO)
## 16854                                                                                                                                                                                                        Tuberculosis prevalence rate, high uncertainty bound (per 1000,000 population, WHO)
## 16855                                                                                                                                                                                                         Tuberculosis prevalence rate, low uncertainty bound (per 1000,000 population, WHO)
## 16856                                                                                                                                                                             Number of people pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure
## 16857                                                                                                                                                                 Proportion of population pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure (%)
## 16858                                                                                                                                                                         Number of people pushed further below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16859                                                                                                                                                             Proportion of population pushed further below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16860                                                                                                                                                                         Number of people pushed further below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16861                                                                                                                                                             Proportion of population pushed further below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16862                                                                                                                                                                     Number of people pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure
## 16863                                                                                                                                                         Proportion of population pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure (%)
## 16864                                                                                                                                                                              Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD)
## 16865                                                                                                                                                                                 Number of people pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16866                                                                                                                                                                Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line)
## 16867                                                                                                                                                                     Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16868                                                                                                                                                                              Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD)
## 16869                                                                                                                                                                                 Number of people pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure
## 16870                                                                                                                                                                Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line)
## 16871                                                                                                                                                                     Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%)
## 16872                                                                                                                                                                             Number of people pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure
## 16873                                                                                                                                                                      Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health expenditure (%)
## 16874                                                                                                                                                                        Number of people spending more than 10% of household consumption or income on out-of-pocket health care expenditure
## 16875                                                                                                                                                            Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%)
## 16876                                                                                                                                                                        Number of people spending more than 25% of household consumption or income on out-of-pocket health care expenditure
## 16877                                                                                                                                                            Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%)
## 16878                                                                                                                                                                                                                                                                 UHC service coverage index
## 16879                                                                                                                                                                                                                                 Tetanus toxoid vaccination (% of live births): Q1 (lowest)
## 16880                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q2
## 16881                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q3
## 16882                                                                                                                                                                                                                                          Tetanus toxoid vaccination (% of live births): Q4
## 16883                                                                                                                                                                                                                                Tetanus toxoid vaccination (% of live births): Q5 (highest)
## 16884                                                                                                                                                                                                                                                     Newborns protected against tetanus (%)
## 16885                                                                                                                                                                                                                                                              Outpatient visits per capita 
## 16886                                                                                                                                                                                                                                                      Current health expenditure (% of GDP)
## 16887                                                                                                                                                                                                                                        Current health expenditure per capita (current US$)
## 16888                                                                                                                                                                                                                       Current health expenditure per capita, PPP (current international $)
## 16889                                                                                                                                                                                                                              External health expenditure (% of current health expenditure)
## 16890                                                                                                                                                                                                External health expenditure channeled through government (% of external health expenditure)
## 16891                                                                                                                                                                                                                                       External health expenditure per capita (current US$)
## 16892                                                                                                                                                                                                                      External health expenditure per capita, PPP (current international $)
## 16893                                                                                                                                                                                                                           External resources for health (% of total expenditure on health)
## 16894                                                                                                                                                                                                           Domestic general government health expenditure (% of current health expenditure)
## 16895                                                                                                                                                                                                                                  Domestic general government health expenditure (% of GDP)
## 16896                                                                                                                                                                                                       Domestic general government health expenditure (% of general government expenditure)
## 16897                                                                                                                                                                                                                    Domestic general government health expenditure per capita (current US$)
## 16898                                                                                                                                                                                                   Domestic general government health expenditure per capita, PPP (current international $)
## 16899                                                                                                                                                                                                                                                       Public Expenditure on Health (% GDP)
## 16900                                                                                                                                                                                                                                                      Capital health expenditure (% of GDP)
## 16901                                                                                                                                                                                                                                Out-of-pocket expenditure (% of current health expenditure)
## 16902                                                                                                                                                                                                                                         Out-of-pocket expenditure per capita (current US$)
## 16903                                                                                                                                                                                                                        Out-of-pocket expenditure per capita, PPP (current international $)
## 16904                                                                                                                                                                                                                        Out-of-pocket health expenditure (% of total expenditure on health)
## 16905                                                                                                                                                                                                                      Out-of-pocket health expenditure (% of private expenditure on health)
## 16906                                                                                                                                                                                                                                                Health expenditure per capita (current US$)
## 16907                                                                                                                                                                                                                                     Government health expenditure per capita (current US$)
## 16908                                                                                                                                                                                                                         Health expenditure per capita, PPP (constant 2011 international $)
## 16909                                                                                                                                                                                                                               Health expenditure per capita, PPP (current international $)
## 16910                                                                                                                                                                                                                                Health expenditure, private (% of total health expenditure)
## 16911                                                                                                                                                                                                                                 Private prepaid plans (% of private expenditure on health)
## 16912                                                                                                                                                                                                                                                     Health expenditure, private (% of GDP)
## 16913                                                                                                                                                                                                                                 Health expenditure, public (% of total health expenditure)
## 16914                                                                                                                                                                                                                                   Health expenditure, public (% of government expenditure)
## 16915                                                                                                                                                                                                                                                      Health expenditure, public (% of GDP)
## 16916                                                                                                                                                                                                                      Domestic private health expenditure (% of current health expenditure)
## 16917                                                                                                                                                                                                                               Domestic private health expenditure per capita (current US$)
## 16918                                                                                                                                                                                                              Domestic private health expenditure per capita, PPP (current international $)
## 16919                                                                                                                                                                                                                 Social Security expenditure on health (% government expenditure on health)
## 16920                                                                                                                                                                                                                                                           Health expenditure (current US$)
## 16921                                                                                                                                                                                                                                                       Health expenditure, total (% of GDP)
## 16922                                                                                                                                                                                                                                                            Income share held by second 20%
## 16923                                                                                                                                                                                                                                                             Income share held by third 20%
## 16924                                                                                                                                                                                                                                                            Income share held by fourth 20%
## 16925                                                                                                                                                                                                                                                           Income share held by highest 20%
## 16926                                                                                                                                                                                                                                                           Income share held by highest 10%
## 16927                                                                                                                                                                                                                          Proportion of people living below 50 percent of median income (%)
## 16928                                                                                                                                                                                                                                                            Income share held by lowest 10%
## 16929                                                                                                                                                                                                                                                            Income share held by lowest 20%
## 16930                                                                                                                                                                                                                        Poverty headcount ratio at $3.10 a day (2011 PPP) (% of population)
## 16931                                                                                                                                                                                                                Multidimensional poverty, Educational attainment (% of population deprived)
## 16932                                                                                                                                                                                                                         Number of people live below the poverty line (in number of people)
## 16933                                                                                                                                                                                                                        Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population)
## 16934                                                                                                                                                                                                    Poverty headcount ratio at $1.90 a day, age 0-14  (2011 PPP) (% of population age 0-14)
## 16935                                                                                                                                                                                                   Poverty headcount ratio at $1.90 a day, age 15-64 (2011 PPP) (% of population age 15-64)
## 16936                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, without education (2011 PPP) (% of population age 16+ without education)
## 16937                                                                                                                                                                 Poverty headcount ratio at $1.90 a day, with primary education (2011 PPP) (% of population age 16+ with primary education)
## 16938                                                                                                                                                             Poverty headcount ratio at $1.90 a day, with secondary education (2011 PPP) (% of population age 16+ with secondary education)
## 16939                                                                                                                                Poverty headcount ratio at $1.90 a day,  with Tertiary/post-secondary education (2011 PPP) (% of population age 16+ with Tertiary/post-secondary education)
## 16940                                                                                                                                                                                                       Poverty headcount ratio at $1.90 a day, age 65+ (2011 PPP) (% of population age 65+)
## 16941                                                                                                                                                                                                                     Survey coverage for poverty headcount ratio (at $1.90 a day, 2011 PPP)
## 16942                                                                                                                                                                                                         Poverty headcount ratio at $1.90 a day, Female (2011 PPP) (% of female population)
## 16943                                                                                                                                                                                               Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), first comparable values
## 16944                                                                                                                                                                                                            Poverty headcount ratio at $1.90 a day, Male  (2011 PPP) (% of male population)
## 16945                                                                                                                                                                                                                      Multidimensional poverty, Monetary poverty (% of population deprived)
## 16946                                                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, rural (2011 PPP) (% of rural population)
## 16947                                                                                                                                                                                              Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), second comparable values
## 16948                                                                                                                                                                                                                                  Share of total poor population (at $1.90 a day, 2011 PPP)
## 16949                                                                                                                                                                                               Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population), third comparable values
## 16950                                                                                                                                                                                                           Poverty headcount ratio at $1.90 a day, urban (2011 PPP) (% of urban population)
## 16951                                                                                                                                                                                                                           Multidimensional poverty, Electricity (% of population deprived)
## 16952                                                                                                                                                                                                                Multidimensional poverty, Educational enrollment (% of population deprived)
## 16953                                                                                                                                                                                                                                                  Poverty gap at $3.10 a day (2011 PPP) (%)
## 16954                                                                                                                                                                                                                                                  Poverty gap at $1.90 a day (2011 PPP) (%)
## 16955                                                                                                                                                                                                                                                                                 Gini index
## 16956                                                                                                                                                                                                                                  Gini index (World Bank estimate), first comparable values
## 16957                                                                                                                                                                                                                                 Gini index (World Bank estimate), second comparable values
## 16958                                                                                                                                                                                                                                  Gini index (World Bank estimate), third comparable values
## 16959                                                                                                                                                                                                                                Multidimensional poverty, Headcount ratio (% of population)
## 16960                                                                                                                                                                                                                        Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population)
## 16961                                                                                                                                                                                               Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), first comparable values
## 16962                                                                                                                                                                                                                                                  Poverty gap at $3.20 a day (2011 PPP) (%)
## 16963                                                                                                                                                                                                                                        Number of poor at $3.20 a day (2011 PPP) (millions)
## 16964                                                                                                                                                                                              Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), second comparable values
## 16965                                                                                                                                                                                               Poverty headcount ratio at $3.20 a day (2011 PPP) (% of population), third comparable values
## 16966                                                                                                                                                                                                                           Multidimensional poverty headcount ratio (% of total population)
## 16967                                                                                                                                                                                                             Multidimensional poverty headcount ratio, children (% of population ages 0-17)
## 16968                                                                                                                                                                                                                Multidimensional poverty index, children (population ages 0-17) (scale 0-1)
## 16969                                                                                                                                                                                                                  Multidimensional poverty headcount ratio, female (% of female population)
## 16970                                                                                                                                                                                                                Multidimensional poverty headcount ratio, household (% of total households)
## 16971                                                                                                                                                                                                 Multidimensional poverty intensity (average share of deprivations experienced by the poor)
## 16972                                                                                                                                                                                                                      Multidimensional poverty headcount ratio, male (% of male population)
## 16973                                                                                                                                                                                                                                                 Multidimensional poverty index (scale 0-1)
## 16974                                                                                                                                                                                                                                                  Poverty gap at national poverty lines (%)
## 16975                                                                                                                                                                                                                  Poverty gap at national poverty lines (%), including noncomparable values
## 16976                                                                                                                                                                                                                        Poverty headcount ratio at national poverty lines (% of population)
## 16977                                                                                                                                                                                        Poverty headcount ratio at national poverty lines (% of population), including noncomparable values
## 16978                                                                                                                                                                                                                                                                      Poverty Line (in IDR)
## 16979                                                                                                                                                                                                                                                          Poverty Rate (in % of population)
## 16980                                                                                                                                                                                                                                                                        Poverty Gap (index)
## 16981                                                                                                                                                                                                                                        Number of poor at $1.90 a day (2011 PPP) (millions)
## 16982                                                                                                                                                                                                                                        Number of poor at $3.10 a day (2011 PPP) (millions)
## 16983                                                                                                                                                                                                                                                                   Poverty Severity (index)
## 16984                                                                                                                                                                                                                                            Rural poverty gap at national poverty lines (%)
## 16985                                                                                                                                                                                                            Rural poverty headcount ratio at national poverty lines (% of rural population)
## 16986                                                                                                                                                                                                                            Multidimensional poverty, Sanitation (% of population deprived)
## 16987                                                                                                                                                                                                                        Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population)
## 16988                                                                                                                                                                                               Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), first comparable values
## 16989                                                                                                                                                                                                                                                  Poverty gap at $5.50 a day (2011 PPP) (%)
## 16990                                                                                                                                                                                                                                        Number of poor at $5.50 a day (2011 PPP) (millions)
## 16991                                                                                                                                                                                              Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), second comparable values
## 16992                                                                                                                                                                                               Poverty headcount ratio at $5.50 a day (2011 PPP) (% of population), third comparable values
## 16993                                                                                                                                                                                                                                            Urban poverty gap at national poverty lines (%)
## 16994                                                                                                                                                                                                            Urban poverty headcount ratio at national poverty lines (% of urban population)
## 16995                                                                                                                                                                                                                        Multidimensional poverty, Drinking water (% of population deprived)
## 16996                                                                                                                                                                                                                       Median daily per capita income or consumption expenditure (2011 PPP)
## 16997                                                                                                                                                                                                   Annualized growth in per capita real survey median income or consumption expenditure (%)
## 16998                                                                                                                                                                                                                  Average transaction cost of sending remittances to a specific country (%)
## 16999                                                                                                                                                                                                                Average transaction cost of sending remittances from a specific country (%)
## 17000                                                                                                                                                                                                                                                Average transaction cost of remittances (%)
## 17001                                                                                                                                                                                                       Population living below 50 percent of median income or consumption (% of population)
## 17002                                                                                                                                                                                                Survey mean consumption or income per capita, bottom 40% of population (2011 PPP $ per day)
## 17003                                                                                                                                                                                                              Survey mean consumption or income per capita, bottom 40% (2005 PPP $ per day)
## 17004                                                                                                                                                                          Annualized average growth rate in per capita real survey mean consumption or income, bottom 40% of population (%)
## 17005                                                                                                                                                                                                        Survey mean consumption or income per capita, total population (2011 PPP $ per day)
## 17006                                                                                                                                                                                                        Survey mean consumption or income per capita, total population (2005 PPP $ per day)
## 17007                                                                                                                                                                                  Annualized average growth rate in per capita real survey mean consumption or income, total population (%)
## 17008                                                                                                                                                                                                                 Survey mean consumption or income per capita, top 10% (2011 PPP $ per day)
## 17009                                                                                                                                                                                                        Annualized growth in per capita real survey mean consumption or income, top 10% (%)
## 17010                                                                                                                                                                                                                 Survey mean consumption or income per capita, top 60% (2011 PPP $ per day)
## 17011                                                                                                                                                                                                        Annualized growth in per capita real survey mean consumption or income, top 60% (%)
## 17012                                                                                                                                                                                               Child employment in agriculture, female (% of female economically active children ages 7-14)
## 17013                                                                                                                                                                                                   Child employment in agriculture, male (% of male economically active children ages 7-14)
## 17014                                                                                                                                                                                                              Child employment in agriculture (% of economically active children ages 7-14)
## 17015                                                                                                                                                                                                                        Employees, agriculture, female (% of total agricultural employment)
## 17016                                                                                                                                                                                                          Employment in agriculture, female (% of female employment) (modeled ILO estimate)
## 17017                                                                                                                                                                                                              Employment in agriculture, male (% of male employment) (modeled ILO estimate)
## 17018                                                                                                                                                                                                                   Employment in agriculture (% of total employment) (modeled ILO estimate)
## 17019                                                                                                                                                                                                                                                             Labor force in agriculture (%)
## 17020                                                                                                                                                                                                                                                               Labor Force, Agriculture (%)
## 17021                                                                                                                                                                                                                                                    Labor force in agriculture (% of total)
## 17022                                                                                                                                                                                                                                                                    Labor Force, Female (%)
## 17023                                                                                                                                                                                                                 Employment to population ratio, ages 15-24, female (%) (national estimate)
## 17024                                                                                                                                                                                                              Employment to population ratio, ages 15-24, female (%) (modeled ILO estimate)
## 17025                                                                                                                                                                                                                   Employment to population ratio, ages 15-24, male (%) (national estimate)
## 17026                                                                                                                                                                                                                Employment to population ratio, ages 15-24, male (%) (modeled ILO estimate)
## 17027                                                                                                                                                                                                                  Employment to population ratio, ages 15-24, total (%) (national estimate)
## 17028                                                                                                                                                                                                               Employment to population ratio, ages 15-24, total (%) (modeled ILO estimate)
## 17029                                                                                                                                                                                                                             Number of people employed in agriculture, forestry and fishery
## 17030                                                                                                                                                                                                                                           Number of people employed in construction sector
## 17031                                                                                                                                                                                                                              Number of people employed in electricity and utilities sector
## 17032                                                                                                                                                                                                                                     Number of people employed in financial services sector
## 17033                                                                                                                                                                                                                                             Number of people employed in industrial sector
## 17034                                                                                                                                                                                    Share of women in wage employment in the nonagricultural sector (% of total nonagricultural employment)
## 17035                                                                                                                                                                                                                                   Number of people employed in mining and quarrying sector
## 17036                                                                                                                                                                                                                          Employers, female (% of female employment) (modeled ILO estimate)
## 17037                                                                                                                                                                                                                              Employers, male (% of male employment) (modeled ILO estimate)
## 17038                                                                                                                                                                                                                            Employers, total (% of total employment) (modeled ILO estimate)
## 17039                                                                                                                                                                                                                Own-account workers, female (% of female employment) (modeled ILO estimate)
## 17040                                                                                                                                                                                                                    Own-account workers, male (% of male employment) (modeled ILO estimate)
## 17041                                                                                                                                                                                                                                         Own-account workers, total (% of total employment)
## 17042                                                                                                                                                                                                                      Self-employed, female (% of female employment) (modeled ILO estimate)
## 17043                                                                                                                                                                                                                          Self-employed, male (% of male employment) (modeled ILO estimate)
## 17044                                                                                                                                                                                                                        Self-employed, total (% of total employment) (modeled ILO estimate)
## 17045                                                                                                                                                                                                                            Female share of employment in senior and middle management (%) 
## 17046                                                                                                                                                                                                                                        Number of people employed in social services sector
## 17047                                                                                                                                                                                                                                                                  Number of people employed
## 17048                                                                                                                                                                                                                                                        Total employment, female (ages 15+)
## 17049                                                                                                                                                                                                                                                          Total employment, male (ages 15+)
## 17050                                                                                                                                                                                                                        Employment to population ratio, 15+, female (%) (national estimate)
## 17051                                                                                                                                                                                                                     Employment to population ratio, 15+, female (%) (modeled ILO estimate)
## 17052                                                                                                                                                                                                                          Employment to population ratio, 15+, male (%) (national estimate)
## 17053                                                                                                                                                                                                                       Employment to population ratio, 15+, male (%) (modeled ILO estimate)
## 17054                                                                                                                                                                                                                         Employment to population ratio, 15+, total (%) (national estimate)
## 17055                                                                                                                                                                                                                      Employment to population ratio, 15+, total (%) (modeled ILO estimate)
## 17056                                                                                                                                                                                                                            Number of people employed in trade, hotel and restaurant sector
## 17057                                                                                                                                                                                                                   Number of people employed in transportation and telecommunication sector
## 17058                                                                                                                                                                                                                                                             Number of people underemployed
## 17059                                                                                                                                                                                                                                     Time-related underemployment, female (% of employment)
## 17060                                                                                                                                                                                                                                       Time-related underemployment, male (% of employment)
## 17061                                                                                                                                                                                                              Vulnerable employment, female (% of female employment) (modeled ILO estimate)
## 17062                                                                                                                                                                                                                  Vulnerable employment, male (% of male employment) (modeled ILO estimate)
## 17063                                                                                                                                                                                                                Vulnerable employment, total (% of total employment) (modeled ILO estimate)
## 17064                                                                                                                                                                                                          Wage and salaried workers, female (% of female employment) (modeled ILO estimate)
## 17065                                                                                                                                                                                                              Wage and salaried workers, male (% of male employment) (modeled ILO estimate)
## 17066                                                                                                                                                                                                            Wage and salaried workers, total (% of total employment) (modeled ILO estimate)
## 17067                                                                                                                                                                                      Children in employment, unpaid family workers, female (% of female children in employment, ages 7-14)
## 17068                                                                                                                                                                                          Children in employment, unpaid family workers, male (% of male children in employment, ages 7-14)
## 17069                                                                                                                                                                                                     Children in employment, unpaid family workers (% of children in employment, ages 7-14)
## 17070                                                                                                                                                                                                        Contributing family workers, female (% of female employment) (modeled ILO estimate)
## 17071                                                                                                                                                                                                            Contributing family workers, male (% of male employment) (modeled ILO estimate)
## 17072                                                                                                                                                                                                          Contributing family workers, total (% of total employment) (modeled ILO estimate)
## 17073                                                                                                                                                                                                                                              GDP per person employed (constant 2017 PPP $)
## 17074                                                                                                                                                                                                                                                  GDP per person employed (annual % growth)
## 17075                                                                                                                                                                                                                                                GDP per person employed, index (1980 = 100)
## 17076                                                                                                                                                                                                             Employment in industry, female (% of female employment) (modeled ILO estimate)
## 17077                                                                                                                                                                                                                 Employment in industry, male (% of male employment) (modeled ILO estimate)
## 17078                                                                                                                                                                                                                      Employment in industry (% of total employment) (modeled ILO estimate)
## 17079                                                                                                                                                                                                                       Informal employment, female (% of total non-agricultural employment)
## 17080                                                                                                                                                                                                                         Informal employment, male (% of total non-agricultural employment)
## 17081                                                                                                                                                                                                                               Informal employment (% of total non-agricultural employment)
## 17082                                                                                                                                                                                             Child employment in manufacturing, female (% of female economically active children ages 7-14)
## 17083                                                                                                                                                                                                 Child employment in manufacturing, male (% of male economically active children ages 7-14)
## 17084                                                                                                                                                                                                            Child employment in manufacturing (% of economically active children ages 7-14)
## 17085                                                                                                                                                                                                                                         Ratio of female to male wages in manufacturing (%)
## 17086                                                                                                                                                                                              Children in employment, self-employed, female (% of female children in employment, ages 7-14)
## 17087                                                                                                                                                                                                  Children in employment, self-employed, male (% of male children in employment, ages 7-14)
## 17088                                                                                                                                                                                                             Children in employment, self-employed (% of children in employment, ages 7-14)
## 17089                                                                                                                                                                                                  Child employment in services, female (% of female economically active children ages 7-14)
## 17090                                                                                                                                                                                                      Child employment in services, male (% of male economically active children ages 7-14)
## 17091                                                                                                                                                                                                                 Child employment in services (% of economically active children ages 7-14)
## 17092                                                                                                                                                                                                             Employment in services, female (% of female employment) (modeled ILO estimate)
## 17093                                                                                                                                                                                                                 Employment in services, male (% of male employment) (modeled ILO estimate)
## 17094                                                                                                                                                                                                                      Employment in services (% of total employment) (modeled ILO estimate)
## 17095                                                                                                                                                                                                                                                            Number of people in labor force
## 17096                                                                                                                                                                                                                            Children in employment, female (% of female children ages 7-14)
## 17097                                                                                                                                                                                                                                Children in employment, male (% of male children ages 7-14)
## 17098                                                                                                                                                                                                      Average working hours of children, study and work, female, ages 7-14 (hours per week)
## 17099                                                                                                                                                                                             Children in employment, study and work, female (% of female children in employment, ages 7-14)
## 17100                                                                                                                                                                                                        Average working hours of children, study and work, male, ages 7-14 (hours per week)
## 17101                                                                                                                                                                                                 Children in employment, study and work, male (% of male children in employment, ages 7-14)
## 17102                                                                                                                                                                                                              Average working hours of children, study and work, ages 7-14 (hours per week)
## 17103                                                                                                                                                                                                            Children in employment, study and work (% of children in employment, ages 7-14)
## 17104                                                                                                                                                                                                        Average working hours of children, working only, female, ages 7-14 (hours per week)
## 17105                                                                                                                                                                                                  Children in employment, work only, female (% of female children in employment, ages 7-14)
## 17106                                                                                                                                                                                                          Average working hours of children, working only, male, ages 7-14 (hours per week)
## 17107                                                                                                                                                                                                      Children in employment, work only, male (% of male children in employment, ages 7-14)
## 17108                                                                                                                                                                                                                Average working hours of children, working only, ages 7-14 (hours per week)
## 17109                                                                                                                                                                                                                 Children in employment, work only (% of children in employment, ages 7-14)
## 17110                                                                                                                                                                                                                                    Children in employment, total (% of children ages 7-14)
## 17111                                                                                                                                                                                                                                                          Labor force (15-24 years), female
## 17112                                                                                                                                                                                                                     Labor force (15-24 years), female (% of total labor force 15-24 years)
## 17113                                                                                                                                                                                                                                                           Labor force (15-24 years), total
## 17114                                                                                                                                                                                                                                                            Labor force (15-24 years), male
## 17115                                                                                                                                                                                                                       Labor force (15-24 years), male (% of total labor force 15-24 years)
## 17116                                                                                                                                                                                                                                                          Labor force (15-64 years), female
## 17117                                                                                                                                                                                                                     Labor force (15-64 years), female (% of total labor force 15-64 years)
## 17118                                                                                                                                                                                                                                                           Labor force (15-64 years), total
## 17119                                                                                                                                                                                                                                                            Labor force (15-64 years), male
## 17120                                                                                                                                                                                                                       Labor force (15-64 years), male (% of total labor force 15-64 years)
## 17121                                                                                                                                                                                                              Labor force participation rate for ages 15-24, female (%) (national estimate)
## 17122                                                                                                                                                                                                           Labor force participation rate for ages 15-24, female (%) (modeled ILO estimate)
## 17123                                                                                                                                                                                                                Labor force participation rate for ages 15-24, male (%) (national estimate)
## 17124                                                                                                                                                                                                             Labor force participation rate for ages 15-24, male (%) (modeled ILO estimate)
## 17125                                                                                                                                                                                                               Labor force participation rate for ages 15-24, total (%) (national estimate)
## 17126                                                                                                                                                                                                            Labor force participation rate for ages 15-24, total (%) (modeled ILO estimate)
## 17127                                                                                                                                                                                          Labor force participation rate, female (% of female population ages 15-64) (modeled ILO estimate)
## 17128                                                                                                                                                                                              Labor force participation rate, male (% of male population ages 15-64) (modeled ILO estimate)
## 17129                                                                                                                                                                                            Labor force participation rate, total (% of total population ages 15-64) (modeled ILO estimate)
## 17130                                                                                                                                                                                   Labor force with advanced education, female (% of female working-age population with advanced education)
## 17131                                                                                                                                                                                       Labor force with advanced education, male (% of male working-age population with advanced education)
## 17132                                                                                                                                                                                            Labor force with advanced education (% of total working-age population with advanced education)
## 17133                                                                                                                                                                                         Labor force with basic education, female (% of female working-age population with basic education)
## 17134                                                                                                                                                                                             Labor force with basic education, male (% of male working-age population with basic education)
## 17135                                                                                                                                                                                                  Labor force with basic education (% of total working-age population with basic education)
## 17136                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 25-34)
## 17137                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 25-34)
## 17138                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 25-34)
## 17139                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 25-54)
## 17140                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 25-54)
## 17141                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 25-54)
## 17142                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 35-54)
## 17143                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 35-54)
## 17144                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 35-54)
## 17145                                                                                                                                                                                                                       Labor participation rate, female (% of female population ages 55-64)
## 17146                                                                                                                                                                                                                           Labor participation rate, male (% of male population ages 55-64)
## 17147                                                                                                                                                                                                                         Labor participation rate, total (% of total population ages 55-64)
## 17148                                                                                                                                                                                                                         Labor participation rate, female (% of female population ages 65+)
## 17149                                                                                                                                                                                                                             Labor participation rate, male (% of male population ages 65+)
## 17150                                                                                                                                                                                                                           Labor participation rate, total (% of total population ages 65+)
## 17151                                                                                                                                                                                               Labor force participation rate, female (% of female population ages 15+) (national estimate)
## 17152                                                                                                                                                                                            Labor force participation rate, female (% of female population ages 15+) (modeled ILO estimate)
## 17153                                                                                                                                                                                                             Ratio of female to male labor force participation rate (%) (national estimate)
## 17154                                                                                                                                                                                                          Ratio of female to male labor force participation rate (%) (modeled ILO estimate)
## 17155                                                                                                                                                                                                   Labor force participation rate, male (% of male population ages 15+) (national estimate)
## 17156                                                                                                                                                                                                Labor force participation rate, male (% of male population ages 15+) (modeled ILO estimate)
## 17157                                                                                                                                                                                                 Labor force participation rate, total (% of total population ages 15+) (national estimate)
## 17158                                                                                                                                                                                              Labor force participation rate, total (% of total population ages 15+) (modeled ILO estimate)
## 17159                                                                                                                                                                                                                                               Labor force, children 10-14 (% of age group)
## 17160                                                                                                                                                                                                                                               Labor force, children 10-14 (% of age group)
## 17161                                                                                                                                                                           Labor force with intermediate education, female (% of female working-age population with intermediate education)
## 17162                                                                                                                                                                               Labor force with intermediate education, male (% of male working-age population with intermediate education)
## 17163                                                                                                                                                                                    Labor force with intermediate education (% of total working-age population with intermediate education)
## 17164                                                                                                                                                                                                                                Part time employment, female (% of total female employment)
## 17165                                                                                                                                                                                                                                    Part time employment, male (% of total male employment)
## 17166                                                                                                                                                                                                                             Part time employment, female (% of total part time employment)
## 17167                                                                                                                                                                                                                                        Part time employment, total (% of total employment)
## 17168                                                                                                                                                                                                                       Labor force with primary education, female (% of female labor force)
## 17169                                                                                                                                                                                                                           Labor force with primary education, male (% of male labor force)
## 17170                                                                                                                                                                                                                                            Labor force with primary education (% of total)
## 17171                                                                                                                                                                                                                     Labor force with secondary education, female (% of female labor force)
## 17172                                                                                                                                                                                                                         Labor force with secondary education, male (% of male labor force)
## 17173                                                                                                                                                                                                                                          Labor force with secondary education (% of total)
## 17174                                                                                                                                                                                                                      Labor force with tertiary education, female (% of female labor force)
## 17175                                                                                                                                                                                                                          Labor force with tertiary education, male (% of male labor force)
## 17176                                                                                                                                                                                                                                           Labor force with tertiary education (% of total)
## 17177                                                                                                                                                                                                                                                                        Labor force, female
## 17178                                                                                                                                                                                                                                                                    Labor Force, Female (%)
## 17179                                                                                                                                                                                                                                               Labor force, female (% of total labor force)
## 17180                                                                                                                                                                                                                                                                         Labor force, total
## 17181                                                                                                                                                                                                                                                       Labor force growth, total (annual %)
## 17182                                                                                                                                                                                                                                                                          Labor force, male
## 17183                                                                                                                                                                                                                                                 Labor force, male (% of total labor force)
## 17184                                                                                                                                                                                                        Unemployment, youth female (% of female labor force ages 15-24) (national estimate)
## 17185                                                                                                                                                                                                     Unemployment, youth female (% of female labor force ages 15-24) (modeled ILO estimate)
## 17186                                                                                                                                                                                                                    Ratio of female to male youth unemployment rate (%) (national estimate)
## 17187                                                                                                                                                                                                      Ratio of female to male youth unemployment rate (% ages 15-24) (modeled ILO estimate)
## 17188                                                                                                                                                                                                            Unemployment, youth male (% of male labor force ages 15-24) (national estimate)
## 17189                                                                                                                                                                                                         Unemployment, youth male (% of male labor force ages 15-24) (modeled ILO estimate)
## 17190                                                                                                                                                                                                          Unemployment, youth total (% of total labor force ages 15-24) (national estimate)
## 17191                                                                                                                                                                                                       Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)
## 17192                                                                                                                                                                                             Unemployment with advanced education, female (% of female labor force with advanced education)
## 17193                                                                                                                                                                                                 Unemployment with advanced education, male (% of male labor force with advanced education)
## 17194                                                                                                                                                                                                      Unemployment with advanced education (% of total labor force with advanced education)
## 17195                                                                                                                                                                                                   Unemployment with basic education, female (% of female labor force with basic education)
## 17196                                                                                                                                                                                                       Unemployment with basic education, male (% of male labor force with basic education)
## 17197                                                                                                                                                                                                            Unemployment with basic education (% of total labor force with basic education)
## 17198                                                                                                                                                                                     Unemployment with intermediate education, female (% of female labor force with intermediate education)
## 17199                                                                                                                                                                                         Unemployment with intermediate education, male (% of male labor force with intermediate education)
## 17200                                                                                                                                                                                              Unemployment with intermediate education (% of total labor force with intermediate education)
## 17201                                                                                                                                                                                                                                  Long-term unemployment, female (% of female unemployment)
## 17202                                                                                                                                                                                                                                      Long-term unemployment, male (% of male unemployment)
## 17203                                                                                                                                                                                                                                           Long-term unemployment (% of total unemployment)
## 17204                                                                                                                                                                                             Share of youth not in education, employment or training, female (% of female youth population)
## 17205                                                                                                                                                                                                 Share of youth not in education, employment or training, male (% of male youth population)
## 17206                                                                                                                                                                                                     Share of youth not in education, employment or training, total (% of youth population)
## 17207                                                                                                                                                                                                                     Unemployment with primary education, female (% of female unemployment)
## 17208                                                                                                                                                                                                                         Unemployment with primary education, male (% of male unemployment)
## 17209                                                                                                                                                                                                                              Unemployment with primary education (% of total unemployment)
## 17210                                                                                                                                                                                                                   Unemployment with secondary education, female (% of female unemployment)
## 17211                                                                                                                                                                                                                       Unemployment with secondary education, male (% of male unemployment)
## 17212                                                                                                                                                                                                                            Unemployment with secondary education (% of total unemployment)
## 17213                                                                                                                                                                                                                    Unemployment with tertiary education, female (% of female unemployment)
## 17214                                                                                                                                                                                                                        Unemployment with tertiary education, male (% of male unemployment)
## 17215                                                                                                                                                                                                                             Unemployment with tertiary education (% of total unemployment)
## 17216                                                                                                                                                                                                                                                                Number of people unemployed
## 17217                                                                                                                                                                                                                         Unemployment, female (% of female labor force) (national estimate)
## 17218                                                                                                                                                                                                                      Unemployment, female (% of female labor force) (modeled ILO estimate)
## 17219                                                                                                                                                                                                                             Unemployment, male (% of male labor force) (national estimate)
## 17220                                                                                                                                                                                                                          Unemployment, male (% of male labor force) (modeled ILO estimate)
## 17221                                                                                                                                                                                                                           Unemployment, total (% of total labor force) (national estimate)
## 17222                                                                                                                                                                                                                        Unemployment, total (% of total labor force) (modeled ILO estimate)
## 17223                                                                                                                                                                                               Children in employment, wage workers, female (% of female children in employment, ages 7-14)
## 17224                                                                                                                                                                                                   Children in employment, wage workers, male (% of male children in employment, ages 7-14)
## 17225                                                                                                                                                                                                              Children in employment, wage workers (% of children in employment, ages 7-14)
## 17226                                                                                                                                                                                                             Emigration rate of tertiary educated (% of total tertiary educated population)
## 17227                                                                                                                                                                                                                                                        Number of maternal mortality deaths
## 17228                                                                                                                                                                                                                                                                         Foreign population
## 17229                                                                                                                                                                                                                                                 Foreign population (% of total population)
## 17230                                                                                                                                                                                                                                                                  Inflows of asylum seekers
## 17231                                                                                                                                                                                                                                                              Inflows of foreign population
## 17232                                                                                                                                                                                                                                                                              Net migration
## 17233                                                                                                                                                                                                                                       Refugee population by country or territory of asylum
## 17234                                                                                                                                                                                                                                       Refugee population by country or territory of origin
## 17235                                                                                                                                                                                                                                                         International migrant stock, total
## 17236                                                                                                                                                                                                                                              International migrant stock (% of population)
## 17237                                                                                                                                                                                                                                               Foreign labor force (% of total labor force)
## 17238                                                                                                                                                                                                                                                                 Inflows of foreign workers
## 17239                                                                                                                                                                                                                                                    Number of people who are undernourished
## 17240                                                                                                                                                                                                                                                Prevalence of undernourishment (population)
## 17241                                                                                                                                                                                                                                           Prevalence of undernourishment (% of population)
## 17242                                                                                                                                                                                                                                Depth of the food deficit (kilocalories per person per day)
## 17243                                                                                                                                                                                                                                          Depth of hunger (kilocalories per person per day)
## 17244                                                                                                                                                                                                                     Prevalence of moderate or severe food insecurity in the population (%)
## 17245                                                                                                                                                                                                                                              Consumption of iodized salt (% of households)
## 17246                                                                                                                                                                                                                                 Prevalence of severe food insecurity in the population (%)
## 17247                                                                                                                                                                                                          Vitamin A supplements for postpartum women (% of women with a birth): Q1 (lowest)
## 17248                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q2
## 17249                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q3
## 17250                                                                                                                                                                                                                   Vitamin A supplements for postpartum women (% of women with a birth): Q4
## 17251                                                                                                                                                                                                         Vitamin A supplements for postpartum women (% of women with a birth): Q5 (highest)
## 17252                                                                                                                                                                                                           Vitamin A supplements for children (% of children ages 6-59 months): Q1 (lowest)
## 17253                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q2
## 17254                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q3
## 17255                                                                                                                                                                                                                    Vitamin A supplements for children (% of children ages 6-59 months): Q4
## 17256                                                                                                                                                                                                          Vitamin A supplements for children (% of children ages 6-59 months): Q5 (highest)
## 17257                                                                                                                                                                                                                   Vitamin A supplementation coverage rate (% of children ages 6-59 months)
## 17258                                                                                                                                                                                                                                                  Food Production, per capita (1979-81=100)
## 17259                                                                                                                                                                                                                                                     Food Production, per capita (1980=100)
## 17260                                                                                                                                                                                                               Sub-National Malnutrition prevalence, weight for age (% of children under 5)
## 17261                                                                                                                                                                                                                              Sub-National Prevalence of overweight (% of children under 5)
## 17262                                                                                                                                                                                                               Sub-National Malnutrition prevalence, height for age (% of children under 5)
## 17263                                                                                                                                                                                                                                 Sub-National Prevalence of wasting (% of children under 5)
## 17264                                                                                                                                                                                                       Sub-National Prevalence of severe wasting, weight for height (% of children under 5)
## 17265                                                                                                                                                                                                                                                      Food Production per capita (1987=100)
## 17266                                                                                                                                                                                                                              Adolescent fertility rate (births per 1,000 women ages 15-19)
## 17267                                                                                                                                                                                                                                                     Crude Birth Rate (per 1000 population)
## 17268                                                                                                                                                                                            Completeness of infant death reporting (% of reported infant deaths to estimated infant deaths)
## 17269                                                                                                                                                                                               Completeness of total death reporting (% of reported total deaths to estimated total deaths)
## 17270                                                                                                                                                                                                      Antenatal care coverage provided by a skilled health provider, at least one visit (%)
## 17271                                                                                                                                                                                          Antenatal care coverage provided by any provider (skilled or unskilled), at least four visits (%)
## 17272                                                                                                                                                                                                                                    Mortality rate, adult, female (per 1,000 female adults)
## 17273                                                                                                                                                                                                                                        Mortality rate, adult, male (per 1,000 male adults)
## 17274                                                                                                                                                                                                                                                 Crude Birth Rate (per thousand population)
## 17275                                                                                                                                                                                                                                                       Birth rate, crude (per 1,000 people)
## 17276                                                                                                                                                                                                                                                       Death rate, crude (per 1,000 people)
## 17277                                                                                                                                                                                                                         Mean number of children ever born to women aged 40-49: Q1 (lowest)
## 17278                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q2
## 17279                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q3
## 17280                                                                                                                                                                                                                                  Mean number of children ever born to women aged 40-49: Q4
## 17281                                                                                                                                                                                                                        Mean number of children ever born to women aged 40-49: Q5 (highest)
## 17282                                                                                                                                                                                                             Current use of contraception (modern method) (% of married women): Q1 (lowest)
## 17283                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q2
## 17284                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q3
## 17285                                                                                                                                                                                                                      Current use of contraception (modern method) (% of married women): Q4
## 17286                                                                                                                                                                                                            Current use of contraception (modern method) (% of married women): Q5 (highest)
## 17287                                                                                                                                                                                              Contraceptive prevalence, any modern method (% of sexually active unmarried women ages 15-49)
## 17288                                                                                                                                                                                                                Contraceptive prevalence, any modern method (% of married women ages 15-49)
## 17289                                                                                                                                                                                                                          Contraceptive use among married women 15-49 years old, condom (%)
## 17290                                                                                                                                                                                                                   Contraceptive use among married women 15-49 years old, modern method (%)
## 17291                                                                                                                                                                                                                Current use of contraception (any method) (% of married women): Q1 (lowest)
## 17292                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q2
## 17293                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q3
## 17294                                                                                                                                                                                                                         Current use of contraception (any method) (% of married women): Q4
## 17295                                                                                                                                                                                                               Current use of contraception (any method) (% of married women): Q5 (highest)
## 17296                                                                                                                                                                                                     Contraceptive prevalence, any method (% of sexually active unmarried women ages 15-49)
## 17297                                                                                                                                                                                                                       Contraceptive prevalence, any method (% of married women ages 15-49)
## 17298                                                                                                                                                                                                                                           Infant Mortality Rate (per thousand live births)
## 17299                                                                                                                                                                                                                                     Mortality rate, infant, female (per 1,000 live births)
## 17300                                                                                                                                                                                                                                             Mortality rate, infant (per 1,000 live births)
## 17301                                                                                                                                                                                                                                       Mortality rate, infant, male (per 1,000 live births)
## 17302                                                                                                                                                                                                                                 Infant mortality rate (per 1,000 live births): Q1 (lowest)
## 17303                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q2
## 17304                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q3
## 17305                                                                                                                                                                                                                                          Infant mortality rate (per 1,000 live births): Q4
## 17306                                                                                                                                                                                                                                Infant mortality rate (per 1,000 live births): Q5 (highest)
## 17307                                                                                                                                                                                                                                                   Life expectancy at birth, female (years)
## 17308                                                                                                                                                                                                                                                    Life expectancy at birth, total (years)
## 17309                                                                                                                                                                                                                                                     Life expectancy at birth, male (years)
## 17310                                                                                                                                                                                                                                                  Life expectancy at age 60, female (years)
## 17311                                                                                                                                                                                                                                                    Life expectancy at age 60, male (years)
## 17312                                                                                                                                                                                                                                                            Life Expectancy at Birth(years)
## 17313                                                                                                                                                                                                                                                              Age at first marriage, female
## 17314                                                                                                                                                                                                                                                                Age at first marriage, male
## 17315                                                                                                                                                                                                                                                    Total Fertility Rate (births per woman)
## 17316                                                                                                                                                                                                                                                   Fertility rate, total (births per woman)
## 17317                                                                                                                                                                                                                                 Total fertility rate (TFR) (births per woman): Q1 (lowest)
## 17318                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q2
## 17319                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q3
## 17320                                                                                                                                                                                                                                          Total fertility rate (TFR) (births per woman): Q4
## 17321                                                                                                                                                                                                                                Total fertility rate (TFR) (births per woman): Q5 (highest)
## 17322                                                                                                                                                                                                                                                   Survival to age 65, female (% of cohort)
## 17323                                                                                                                                                                                                                                                     Survival to age 65, male (% of cohort)
## 17324                                                                                                                                                                                                                                                   Wanted fertility rate (births per woman)
## 17325                                                                                                                                                                                                                                Total wanted fertility rate (births per woman): Q1 (lowest)
## 17326                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q2
## 17327                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q3
## 17328                                                                                                                                                                                                                                         Total wanted fertility rate (births per woman): Q4
## 17329                                                                                                                                                                                                                               Total wanted fertility rate (births per woman): Q5 (highest)
## 17330                                                                                                                                                                                                                                                      SP.EXCHG.RATE.ICP:Exchange Rate Value
## 17331                                                                                                                                                                                                                                                                       Total Fertility Rate
## 17332                                                                                                                                                                                                                              Female headed households (% of households with a female head)
## 17333                                                                                                                                                                                                                             Women who were first married by age 15 (% of women ages 20-24)
## 17334                                                                                                                                                                                                                             Women who were first married by age 18 (% of women ages 20-24)
## 17335                                                                                                                                                                                                                                                   Infant Mortality Rate (per 1000 infants)
## 17336                                                                                                                                                                      Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q1 (lowest)
## 17337                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q2
## 17338                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q3
## 17339                                                                                                                                                                               Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q4
## 17340                                                                                                                                                                     Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q5 (highest)
## 17341                                                                                                                                                                                                    Teenage mothers (% of women ages 15-19 who have had children or are currently pregnant)
## 17342                                                                                                                                                                                                                                                              Population ages 00-04, female
## 17343                                                                                                                                                                                                                                     Population ages 00-04, female (% of female population)
## 17344                                                                                                                                                                                                                                                                Population ages 00-04, male
## 17345                                                                                                                                                                                                                                         Population ages 00-04, male (% of male population)
## 17346                                                                                                                                                                                                                                                               Population ages 0-14, female
## 17347                                                                                                                                                                                                                                      Population ages 0-14, female (% of female population)
## 17348                                                                                                                                                                                                                                                                 Population ages 0-14, male
## 17349                                                                                                                                                                                                                                          Population ages 0-14, male (% of male population)
## 17350                                                                                                                                                                                                                                                                Population ages 0-14, total
## 17351                                                                                                                                                                                                                                               Population ages 0-14 (% of total population)
## 17352                                                                                                                                                                                                                                                    Population 0-24 (% of total population)
## 17353                                                                                                                                                                                                                                                               Population, ages 3-5, female
## 17354                                                                                                                                                                                                                                                                 Population, ages 3-5, male
## 17355                                                                                                                                                                                                                                                                Population, ages 3-5, total
## 17356                                                                                                                                                                                                                                                               Population, ages 4-6, female
## 17357                                                                                                                                                                                                                                                                 Population, ages 4-6, male
## 17358                                                                                                                                                                                                                                                                Population, ages 4-6, total
## 17359                                                                                                                                                                                                                                                              Population ages 05-09, female
## 17360                                                                                                                                                                                                                                     Population ages 05-09, female (% of female population)
## 17361                                                                                                                                                                                                                                                               Population, ages 5-9, female
## 17362                                                                                                                                                                                                                                                                Population ages 05-09, male
## 17363                                                                                                                                                                                                                                         Population ages 05-09, male (% of male population)
## 17364                                                                                                                                                                                                                                                                 Population, ages 5-9, male
## 17365                                                                                                                                                                                                                                                                Population, ages 5-9, total
## 17366                                                                                                                                                                                                                                                              Population, ages 5-10, female
## 17367                                                                                                                                                                                                                                                                Population, ages 5-10, male
## 17368                                                                                                                                                                                                                                                               Population, ages 5-10, total
## 17369                                                                                                                                                                                                                                                              Population, ages 5-11, female
## 17370                                                                                                                                                                                                                                                                Population, ages 5-11, male
## 17371                                                                                                                                                                                                                                                               Population, ages 5-11, total
## 17372                                                                                                                                                                                                                                                               Population, ages 6-9, female
## 17373                                                                                                                                                                                                                                                                 Population, ages 6-9, male
## 17374                                                                                                                                                                                                                                                                Population, ages 6-9, total
## 17375                                                                                                                                                                                                                                                              Population, ages 6-10, female
## 17376                                                                                                                                                                                                                                                                Population, ages 6-10, male
## 17377                                                                                                                                                                                                                                                               Population, ages 6-10, total
## 17378                                                                                                                                                                                                                                                              Population, ages 6-11, female
## 17379                                                                                                                                                                                                                                                                Population, ages 6-11, male
## 17380                                                                                                                                                                                                                                                               Population, ages 6-11, total
## 17381                                                                                                                                                                                                                                                              Population, ages 6-12, female
## 17382                                                                                                                                                                                                                                                                Population, ages 6-12, male
## 17383                                                                                                                                                                                                                                                               Population, ages 6-12, total
## 17384                                                                                                                                                                                                                                                               Population, ages 7-9, female
## 17385                                                                                                                                                                                                                                                                 Population, ages 7-9, male
## 17386                                                                                                                                                                                                                                                                Population, ages 7-9, total
## 17387                                                                                                                                                                                                                                                              Population, ages 7-10, female
## 17388                                                                                                                                                                                                                                                                Population, ages 7-10, male
## 17389                                                                                                                                                                                                                                                               Population, ages 7-10, total
## 17390                                                                                                                                                                                                                                                              Population, ages 7-11, female
## 17391                                                                                                                                                                                                                                                                Population, ages 7-11, male
## 17392                                                                                                                                                                                                                                                               Population, ages 7-11, total
## 17393                                                                                                                                                                                                                                                              Population, ages 7-12, female
## 17394                                                                                                                                                                                                                                                                Population, ages 7-12, male
## 17395                                                                                                                                                                                                                                                               Population, ages 7-12, total
## 17396                                                                                                                                                                                                                                                              Population, ages 7-13, female
## 17397                                                                                                                                                                                                                                                                Population, ages 7-13, male
## 17398                                                                                                                                                                                                                                                               Population, ages 7-13, total
## 17399                                                                                                                                                                                                                                                              Population ages 10-14, female
## 17400                                                                                                                                                                                                                                     Population ages 10-14, female (% of female population)
## 17401                                                                                                                                                                                                                                                             Population, ages 10-14, female
## 17402                                                                                                                                                                                                                                                                Population ages 10-14, male
## 17403                                                                                                                                                                                                                                         Population ages 10-14, male (% of male population)
## 17404                                                                                                                                                                                                                                                               Population, ages 10-14, male
## 17405                                                                                                                                                                                                                                                              Population, ages 10-14, total
## 17406                                                                                                                                                                                                                                                             Population, ages 10-15, female
## 17407                                                                                                                                                                                                                                                               Population, ages 10-15, male
## 17408                                                                                                                                                                                                                                                              Population, ages 10-15, total
## 17409                                                                                                                                                                                                                                                             Population, ages 10-16, female
## 17410                                                                                                                                                                                                                                                               Population, ages 10-16, male
## 17411                                                                                                                                                                                                                                                              Population, ages 10-16, total
## 17412                                                                                                                                                                                                                                                             Population, ages 10-17, female
## 17413                                                                                                                                                                                                                                                               Population, ages 10-17, male
## 17414                                                                                                                                                                                                                                                              Population, ages 10-17, total
## 17415                                                                                                                                                                                                                                                             Population, ages 10-18, female
## 17416                                                                                                                                                                                                                                                               Population, ages 10-18, male
## 17417                                                                                                                                                                                                                                                              Population, ages 10-18, total
## 17418                                                                                                                                                                                                                                                             Population, ages 11-15, female
## 17419                                                                                                                                                                                                                                                               Population, ages 11-15, male
## 17420                                                                                                                                                                                                                                                              Population, ages 11-15, total
## 17421                                                                                                                                                                                                                                                             Population, ages 11-16, female
## 17422                                                                                                                                                                                                                                                               Population, ages 11-16, male
## 17423                                                                                                                                                                                                                                                              Population, ages 11-16, total
## 17424                                                                                                                                                                                                                                                             Population, ages 11-17, female
## 17425                                                                                                                                                                                                                                                               Population, ages 11-17, male
## 17426                                                                                                                                                                                                                                                              Population, ages 11-17, total
## 17427                                                                                                                                                                                                                                                             Population, ages 11-18, female
## 17428                                                                                                                                                                                                                                                               Population, ages 11-18, male
## 17429                                                                                                                                                                                                                                                              Population, ages 11-18, total
## 17430                                                                                                                                                                                                                                                             Population, ages 12-15, female
## 17431                                                                                                                                                                                                                                                               Population, ages 12-15, male
## 17432                                                                                                                                                                                                                                                              Population, ages 12-15, total
## 17433                                                                                                                                                                                                                                                             Population, ages 12-16, female
## 17434                                                                                                                                                                                                                                                               Population, ages 12-16, male
## 17435                                                                                                                                                                                                                                                              Population, ages 12-16, total
## 17436                                                                                                                                                                                                                                                             Population, ages 12-17, female
## 17437                                                                                                                                                                                                                                                               Population, ages 12-17, male
## 17438                                                                                                                                                                                                                                                              Population, ages 12-17, total
## 17439                                                                                                                                                                                                                                                             Population, ages 12-18, female
## 17440                                                                                                                                                                                                                                                               Population, ages 12-18, male
## 17441                                                                                                                                                                                                                                                              Population, ages 12-18, total
## 17442                                                                                                                                                                                                                                                             Population, ages 13-16, female
## 17443                                                                                                                                                                                                                                                               Population, ages 13-16, male
## 17444                                                                                                                                                                                                                                                              Population, ages 13-16, total
## 17445                                                                                                                                                                                                                                                             Population, ages 13-17, female
## 17446                                                                                                                                                                                                                                                               Population, ages 13-17, male
## 17447                                                                                                                                                                                                                                                              Population, ages 13-17, total
## 17448                                                                                                                                                                                                                                                             Population, ages 13-18, female
## 17449                                                                                                                                                                                                                                                               Population, ages 13-18, male
## 17450                                                                                                                                                                                                                                                              Population, ages 13-18, total
## 17451                                                                                                                                                                                                                                                             Population, ages 13-19, female
## 17452                                                                                                                                                                                                                                                               Population, ages 13-19, male
## 17453                                                                                                                                                                                                                                                              Population, ages 13-19, total
## 17454                                                                                                                                                                                                                                                             Population, ages 14-18, female
## 17455                                                                                                                                                                                                                                                               Population, ages 14-18, male
## 17456                                                                                                                                                                                                                                                              Population, ages 14-18, total
## 17457                                                                                                                                                                                                                                                             Population, ages 14-19, female
## 17458                                                                                                                                                                                                                                                               Population, ages 14-19, male
## 17459                                                                                                                                                                                                                                                              Population, ages 14-19, total
## 17460                                                                                                                                                                                                                                                              Population ages 15-19, female
## 17461                                                                                                                                                                                                                                     Population ages 15-19, female (% of female population)
## 17462                                                                                                                                                                                                                                                                Population ages 15-19, male
## 17463                                                                                                                                                                                                                                         Population ages 15-19, male (% of male population)
## 17464                                                                                                                                                                                                                                                             Population, ages 15-24, female
## 17465                                                                                                                                                                                                                                                               Population, ages 15-24, male
## 17466                                                                                                                                                                                                                                                              Population, ages 15-24, total
## 17467                                                                                                                                                                                                                                                              Population ages 15-64, female
## 17468                                                                                                                                                                                                                                     Population ages 15-64, female (% of female population)
## 17469                                                                                                                                                                                                                                                               Population aged 15-64, total
## 17470                                                                                                                                                                                                                                                         Population ages 15-64 (% of total)
## 17471                                                                                                                                                                                                                                                                Population ages 15-64, male
## 17472                                                                                                                                                                                                                                         Population ages 15-64, male (% of male population)
## 17473                                                                                                                                                                                                                                                               Population ages 15-64, total
## 17474                                                                                                                                                                                                                                              Population ages 15-64 (% of total population)
## 17475                                                                                                                                                                                                                                                              Population ages 20-24, female
## 17476                                                                                                                                                                                                                                     Population ages 20-24, female (% of female population)
## 17477                                                                                                                                                                                                                                                                Population ages 20-24, male
## 17478                                                                                                                                                                                                                                         Population ages 20-24, male (% of male population)
## 17479                                                                                                                                                                                                                                                              Population ages 25-29, female
## 17480                                                                                                                                                                                                                                     Population ages 25-29, female (% of female population)
## 17481                                                                                                                                                                                                                                                                Population ages 25-29, male
## 17482                                                                                                                                                                                                                                         Population ages 25-29, male (% of male population)
## 17483                                                                                                                                                                                                                                                              Population ages 30-34, female
## 17484                                                                                                                                                                                                                                     Population ages 30-34, female (% of female population)
## 17485                                                                                                                                                                                                                                                                Population ages 30-34, male
## 17486                                                                                                                                                                                                                                         Population ages 30-34, male (% of male population)
## 17487                                                                                                                                                                                                                                                              Population ages 35-39, female
## 17488                                                                                                                                                                                                                                     Population ages 35-39, female (% of female population)
## 17489                                                                                                                                                                                                                                                                Population ages 35-39, male
## 17490                                                                                                                                                                                                                                         Population ages 35-39, male (% of male population)
## 17491                                                                                                                                                                                                                                                              Population ages 40-44, female
## 17492                                                                                                                                                                                                                                     Population ages 40-44, female (% of female population)
## 17493                                                                                                                                                                                                                                                                Population ages 40-44, male
## 17494                                                                                                                                                                                                                                         Population ages 40-44, male (% of male population)
## 17495                                                                                                                                                                                                                                                              Population ages 45-49, female
## 17496                                                                                                                                                                                                                                     Population ages 45-49, female (% of female population)
## 17497                                                                                                                                                                                                                                                                Population ages 45-49, male
## 17498                                                                                                                                                                                                                                         Population ages 45-49, male (% of male population)
## 17499                                                                                                                                                                                                                                                              Population ages 50-54, female
## 17500                                                                                                                                                                                                                                     Population ages 50-54, female (% of female population)
## 17501                                                                                                                                                                                                                                                                Population ages 50-54, male
## 17502                                                                                                                                                                                                                                         Population ages 50-54, male (% of male population)
## 17503                                                                                                                                                                                                                                                              Population ages 55-59, female
## 17504                                                                                                                                                                                                                                     Population ages 55-59, female (% of female population)
## 17505                                                                                                                                                                                                                                                                Population ages 55-59, male
## 17506                                                                                                                                                                                                                                         Population ages 55-59, male (% of male population)
## 17507                                                                                                                                                                                                                                                              Population ages 60-64, female
## 17508                                                                                                                                                                                                                                     Population ages 60-64, female (% of female population)
## 17509                                                                                                                                                                                                                                                                Population ages 60-64, male
## 17510                                                                                                                                                                                                                                         Population ages 60-64, male (% of male population)
## 17511                                                                                                                                                                                                                                                              Population ages 65-69, female
## 17512                                                                                                                                                                                                                                     Population ages 65-69, female (% of female population)
## 17513                                                                                                                                                                                                                                                                Population ages 65-69, male
## 17514                                                                                                                                                                                                                                         Population ages 65-69, male (% of male population)
## 17515                                                                                                                                                                                                                                                       Population ages 65 and above, female
## 17516                                                                                                                                                                                                                              Population ages 65 and above, female (% of female population)
## 17517                                                                                                                                                                                                                                                         Population ages 65 and above, male
## 17518                                                                                                                                                                                                                                  Population ages 65 and above, male (% of male population)
## 17519                                                                                                                                                                                                                                                      Women ages 65 and above (per 100 men)
## 17520                                                                                                                                                                                                                                                        Population ages 65 and above, total
## 17521                                                                                                                                                                                                                                       Population ages 65 and above (% of total population)
## 17522                                                                                                                                                                                                                                                              Population ages 70-74, female
## 17523                                                                                                                                                                                                                                     Population ages 70-74, female (% of female population)
## 17524                                                                                                                                                                                                                                                                Population ages 70-74, male
## 17525                                                                                                                                                                                                                                         Population ages 70-74, male (% of male population)
## 17526                                                                                                                                                                                                                                                              Population ages 75-79, female
## 17527                                                                                                                                                                                                                                     Population ages 75-79, female (% of female population)
## 17528                                                                                                                                                                                                                                                                Population ages 75-79, male
## 17529                                                                                                                                                                                                                                         Population ages 75-79, male (% of male population)
## 17530                                                                                                                                                                                                                                                       Population ages 80 and above, female
## 17531                                                                                                                                                                                                                              Population ages 80 and above, female (% of female population)
## 17532                                                                                                                                                                                                                                                         Population ages 80 and above, male
## 17533                                                                                                                                                                                                                                  Population ages 80 and above, male (% of male population)
## 17534                                                                                                                                                                                                                                               Age population, age 00, female, interpolated
## 17535                                                                                                                                                                                                                                                                  Population, age 0, female
## 17536                                                                                                                                                                                                                                                 Age population, age 00, male, interpolated
## 17537                                                                                                                                                                                                                                                                    Population, age 0, male
## 17538                                                                                                                                                                                                                                                                   Population, age 0, total
## 17539                                                                                                                                                                                                                                               Age population, age 01, female, interpolated
## 17540                                                                                                                                                                                                                                                                  Population, age 1, female
## 17541                                                                                                                                                                                                                                                 Age population, age 01, male, interpolated
## 17542                                                                                                                                                                                                                                                                    Population, age 1, male
## 17543                                                                                                                                                                                                                                                                   Population, age 1, total
## 17544                                                                                                                                                                                                                                               Age population, age 02, female, interpolated
## 17545                                                                                                                                                                                                                                                                  Population, age 2, female
## 17546                                                                                                                                                                                                                                                 Age population, age 02, male, interpolated
## 17547                                                                                                                                                                                                                                                                    Population, age 2, male
## 17548                                                                                                                                                                                                                                                                   Population, age 2, total
## 17549                                                                                                                                                                                                                                               Age population, age 03, female, interpolated
## 17550                                                                                                                                                                                                                                                                  Population, age 3, female
## 17551                                                                                                                                                                                                                                                 Age population, age 03, male, interpolated
## 17552                                                                                                                                                                                                                                                                    Population, age 3, male
## 17553                                                                                                                                                                                                                                                                   Population, age 3, total
## 17554                                                                                                                                                                                                                                               Age population, age 04, female, interpolated
## 17555                                                                                                                                                                                                                                                                  Population, age 4, female
## 17556                                                                                                                                                                                                                                                 Age population, age 04, male, interpolated
## 17557                                                                                                                                                                                                                                                                    Population, age 4, male
## 17558                                                                                                                                                                                                                                                                   Population, age 4, total
## 17559                                                                                                                                                                                                                                               Age population, age 05, female, interpolated
## 17560                                                                                                                                                                                                                                                                  Population, age 5, female
## 17561                                                                                                                                                                                                                                                 Age population, age 05, male, interpolated
## 17562                                                                                                                                                                                                                                                                    Population, age 5, male
## 17563                                                                                                                                                                                                                                                                   Population, age 5, total
## 17564                                                                                                                                                                                                                                               Age population, age 06, female, interpolated
## 17565                                                                                                                                                                                                                                                                  Population, age 6, female
## 17566                                                                                                                                                                                                                                                 Age population, age 06, male, interpolated
## 17567                                                                                                                                                                                                                                                                    Population, age 6, male
## 17568                                                                                                                                                                                                                                                                   Population, age 6, total
## 17569                                                                                                                                                                                                                                               Age population, age 07, female, interpolated
## 17570                                                                                                                                                                                                                                                                  Population, age 7, female
## 17571                                                                                                                                                                                                                                                 Age population, age 07, male, interpolated
## 17572                                                                                                                                                                                                                                                                    Population, age 7, male
## 17573                                                                                                                                                                                                                                                                   Population, age 7, total
## 17574                                                                                                                                                                                                                                               Age population, age 08, female, interpolated
## 17575                                                                                                                                                                                                                                                                  Population, age 8, female
## 17576                                                                                                                                                                                                                                                 Age population, age 08, male, interpolated
## 17577                                                                                                                                                                                                                                                                    Population, age 8, male
## 17578                                                                                                                                                                                                                                                                   Population, age 8, total
## 17579                                                                                                                                                                                                                                               Age population, age 09, female, interpolated
## 17580                                                                                                                                                                                                                                                                  Population, age 9, female
## 17581                                                                                                                                                                                                                                                 Age population, age 09, male, interpolated
## 17582                                                                                                                                                                                                                                                                    Population, age 9, male
## 17583                                                                                                                                                                                                                                                                   Population, age 9, total
## 17584                                                                                                                                                                                                                                               Age population, age 10, female, interpolated
## 17585                                                                                                                                                                                                                                                                 Population, age 10, female
## 17586                                                                                                                                                                                                                                                 Age population, age 10, male, interpolated
## 17587                                                                                                                                                                                                                                                                   Population, age 10, male
## 17588                                                                                                                                                                                                                                                                  Population, age 10, total
## 17589                                                                                                                                                                                                                                               Age population, age 11, female, interpolated
## 17590                                                                                                                                                                                                                                                                 Population, age 11, female
## 17591                                                                                                                                                                                                                                                 Age population, age 11, male, interpolated
## 17592                                                                                                                                                                                                                                                                   Population, age 11, male
## 17593                                                                                                                                                                                                                                                                  Population, age 11, total
## 17594                                                                                                                                                                                                                                               Age population, age 12, female, interpolated
## 17595                                                                                                                                                                                                                                                                 Population, age 12, female
## 17596                                                                                                                                                                                                                                                 Age population, age 12, male, interpolated
## 17597                                                                                                                                                                                                                                                                   Population, age 12, male
## 17598                                                                                                                                                                                                                                                                  Population, age 12, total
## 17599                                                                                                                                                                                                                                               Age population, age 13, female, interpolated
## 17600                                                                                                                                                                                                                                                                 Population, age 13, female
## 17601                                                                                                                                                                                                                                                 Age population, age 13, male, interpolated
## 17602                                                                                                                                                                                                                                                                   Population, age 13, male
## 17603                                                                                                                                                                                                                                                                  Population, age 13, total
## 17604                                                                                                                                                                                                                                               Age population, age 14, female, interpolated
## 17605                                                                                                                                                                                                                                                                 Population, age 14, female
## 17606                                                                                                                                                                                                                                                 Age population, age 14, male, interpolated
## 17607                                                                                                                                                                                                                                                                   Population, age 14, male
## 17608                                                                                                                                                                                                                                                                  Population, age 14, total
## 17609                                                                                                                                                                                                                                               Age population, age 15, female, interpolated
## 17610                                                                                                                                                                                                                                                                 Population, age 15, female
## 17611                                                                                                                                                                                                                                                 Age population, age 15, male, interpolated
## 17612                                                                                                                                                                                                                                                                   Population, age 15, male
## 17613                                                                                                                                                                                                                                                                  Population, age 15, total
## 17614                                                                                                                                                                                                                                               Age population, age 16, female, interpolated
## 17615                                                                                                                                                                                                                                                                 Population, age 16, female
## 17616                                                                                                                                                                                                                                                 Age population, age 16, male, interpolated
## 17617                                                                                                                                                                                                                                                                   Population, age 16, male
## 17618                                                                                                                                                                                                                                                                  Population, age 16, total
## 17619                                                                                                                                                                                                                                               Age population, age 17, female, interpolated
## 17620                                                                                                                                                                                                                                                                 Population, age 17, female
## 17621                                                                                                                                                                                                                                                 Age population, age 17, male, interpolated
## 17622                                                                                                                                                                                                                                                                   Population, age 17, male
## 17623                                                                                                                                                                                                                                                                  Population, age 17, total
## 17624                                                                                                                                                                                                                                               Age population, age 18, female, interpolated
## 17625                                                                                                                                                                                                                                                                 Population, age 18, female
## 17626                                                                                                                                                                                                                                                 Age population, age 18, male, interpolated
## 17627                                                                                                                                                                                                                                                                   Population, age 18, male
## 17628                                                                                                                                                                                                                                                                  Population, age 18, total
## 17629                                                                                                                                                                                                                                               Age population, age 19, female, interpolated
## 17630                                                                                                                                                                                                                                                                 Population, age 19, female
## 17631                                                                                                                                                                                                                                                 Age population, age 19, male, interpolated
## 17632                                                                                                                                                                                                                                                                   Population, age 19, male
## 17633                                                                                                                                                                                                                                                                  Population, age 19, total
## 17634                                                                                                                                                                                                                                               Age population, age 20, female, interpolated
## 17635                                                                                                                                                                                                                                                                 Population, age 20, female
## 17636                                                                                                                                                                                                                                                 Age population, age 20, male, interpolated
## 17637                                                                                                                                                                                                                                                                   Population, age 20, male
## 17638                                                                                                                                                                                                                                                                  Population, age 20, total
## 17639                                                                                                                                                                                                                                               Age population, age 21, female, interpolated
## 17640                                                                                                                                                                                                                                                                 Population, age 21, female
## 17641                                                                                                                                                                                                                                                 Age population, age 21, male, interpolated
## 17642                                                                                                                                                                                                                                                                   Population, age 21, male
## 17643                                                                                                                                                                                                                                                                  Population, age 21, total
## 17644                                                                                                                                                                                                                                               Age population, age 22, female, interpolated
## 17645                                                                                                                                                                                                                                                                 Population, age 22, female
## 17646                                                                                                                                                                                                                                                 Age population, age 22, male, interpolated
## 17647                                                                                                                                                                                                                                                                   Population, age 22, male
## 17648                                                                                                                                                                                                                                                                  Population, age 22, total
## 17649                                                                                                                                                                                                                                               Age population, age 23, female, interpolated
## 17650                                                                                                                                                                                                                                                                 Population, age 23, female
## 17651                                                                                                                                                                                                                                                 Age population, age 23, male, interpolated
## 17652                                                                                                                                                                                                                                                                   Population, age 23, male
## 17653                                                                                                                                                                                                                                                                  Population, age 23, total
## 17654                                                                                                                                                                                                                                               Age population, age 24, female, interpolated
## 17655                                                                                                                                                                                                                                                                 Population, age 24, female
## 17656                                                                                                                                                                                                                                                 Age population, age 24, male, interpolated
## 17657                                                                                                                                                                                                                                                                   Population, age 24, male
## 17658                                                                                                                                                                                                                                                                  Population, age 24, total
## 17659                                                                                                                                                                                                                                               Age population, age 25, female, interpolated
## 17660                                                                                                                                                                                                                                                                 Population, age 25, female
## 17661                                                                                                                                                                                                                                                 Age population, age 25, male, interpolated
## 17662                                                                                                                                                                                                                                                                   Population, age 25, male
## 17663                                                                                                                                                                                                                                                                  Population, age 25, total
## 17664                                                                                                                                                                                                                                         Sex ratio at birth (male births per female births)
## 17665                                                                                                                                                                                                                                         Age dependency ratio (% of working-age population)
## 17666                                                                                                                                                                                                                                    Age dependency ratio, old (% of working-age population)
## 17667                                                                                                                                                                                                                                  Age dependency ratio, young (% of working-age population)
## 17668                                                                                                                                                                                                                                                               Population growth (annual %)
## 17669                                                                                                                                                                                                                                                      Population density (people per sq km)
## 17670                                                                                                                                                                                                                         Scientists and engineers in research and dev. (per million people)
## 17671                                                                                                                                                                                                                                                    Researchers in R&D (per million people)
## 17672                                                                                                                                                                                                                              Technicians in research and development  (per million people)
## 17673                                                                                                                                                                                                                                                    Technicians in R&D (per million people)
## 17674                                                                                                                                                                                                                                                                          Population, total
## 17675                                                                                                                                                                                                                                                                         Population, female
## 17676                                                                                                                                                                                                                                                 Population, female (% of total population)
## 17677                                                                                                                                                                                                                                                                 SP.POP.TOTL.ICP:Population
## 17678                                                                                                                                                                                                                                           SP.POP.TOTL.ICP.ZS:Population shares (World=100)
## 17679                                                                                                                                                                                                                                                                           Population, male
## 17680                                                                                                                                                                                                                                                   Population, male (% of total population)
## 17681                                                                                                                                                                                                                                                                    Population (% of total)
## 17682                                                                                                                                                                                                                              School age population, pre-primary education, female (number)
## 17683                                                                                                                                                                                                                          School age population, pre-primary education, both sexes (number)
## 17684                                                                                                                                                                                                                                School age population, pre-primary education, male (number)
## 17685                                                                                                                                                                                                                    School age population, last grade of primary education, female (number)
## 17686                                                                                                                                                                                                                      School age population, last grade of primary education, male (number)
## 17687                                                                                                                                                                                                                School age population, last grade of primary education, both sexes (number)
## 17688                                                                                                                                                                                                                                  School age population, primary education, female (number)
## 17689                                                                                                                                                                                                                              School age population, primary education, both sexes (number)
## 17690                                                                                                                                                                                                                                    School age population, primary education, male (number)
## 17691                                                                                                                                                                                                                                             Completeness of birth registration, female (%)
## 17692                                                                                                                                                                                                                                               Completeness of birth registration, male (%)
## 17693                                                                                                                                                                                                                                        Completeness of birth registration (%): Q1 (lowest)
## 17694                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q2
## 17695                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q3
## 17696                                                                                                                                                                                                                                                 Completeness of birth registration (%): Q4
## 17697                                                                                                                                                                                                                                       Completeness of birth registration (%): Q5 (highest)
## 17698                                                                                                                                                                                                                                              Completeness of birth registration, rural (%)
## 17699                                                                                                                                                                                                                                              Completeness of birth registration, urban (%)
## 17700                                                                                                                                                                                                                                                     Completeness of birth registration (%)
## 17701                                                                                                                                                                                                                     Completeness of death registration with cause-of-death information (%)
## 17702                                                                                                                                                                                                                                                                           Rural population
## 17703                                                                                                                                                                                                                                                      Rural population, female (% of total)
## 17704                                                                                                                                                                                                                                                        Rural population, male (% of total)
## 17705                                                                                                                                                                                                                                                         Rural population growth (annual %)
## 17706                                                                                                                                                                                                                                                   Rural population (% of total population)
## 17707                                                                                                                                                                                                                          School age population, lower secondary education, female (number)
## 17708                                                                                                                                                                                                                      School age population, lower secondary education, both sexes (number)
## 17709                                                                                                                                                                                                                            School age population, lower secondary education, male (number)
## 17710                                                                                                                                                                                                                                School age population, secondary education, female (number)
## 17711                                                                                                                                                                                                                            School age population, secondary education, both sexes (number)
## 17712                                                                                                                                                                                                                                  School age population, secondary education, male (number)
## 17713                                                                                                                                                                                                                          School age population, upper secondary education, female (number)
## 17714                                                                                                                                                                                                                      School age population, upper secondary education, both sexes (number)
## 17715                                                                                                                                                                                                                            School age population, upper secondary education, male (number)
## 17716                                                                                                                                                                                                                                 School age population, tertiary education, female (number)
## 17717                                                                                                                                                                                                                             School age population, tertiary education, both sexes (number)
## 17718                                                                                                                                                                                                                                   School age population, tertiary education, male (number)
## 17719                                                                                                                                                                                                                                                         Urban population growth (annual %)
## 17720                                                                                                                                                                                                                                                                 Population in largest city
## 17721                                                                                                                                                                                                                                     Population in the largest city (% of urban population)
## 17722                                                                                                                                                                                                                                             Population in urban agglomerations > 1 million
## 17723                                                                                                                                                                                                                            Population in urban agglomerations > 1 million (% of total pop)
## 17724                                                                                                                                                                                                                                                                           Urban population
## 17725                                                                                                                                                                                                                                                      Urban population, female (% of total)
## 17726                                                                                                                                                                                                                                                   Urban population (% of total population)
## 17727                                                                                                                                                                                                                                                        Urban population, male (% of total)
## 17728                                                                                                                                                                                                                         Percentage of Population in Urban Areas (in % of Total Population)
## 17729                                                                                                                                                                                                            Unmet need for family planning (for limiting) (% of married women): Q1 (lowest)
## 17730                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q2
## 17731                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q3
## 17732                                                                                                                                                                                                                     Unmet need for family planning (for limiting) (% of married women): Q4
## 17733                                                                                                                                                                                                           Unmet need for family planning (for limiting) (% of married women): Q5 (highest)
## 17734                                                                                                                                                                                                             Unmet need for family planning (for spacing) (% of married women): Q1 (lowest)
## 17735                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q2
## 17736                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q3
## 17737                                                                                                                                                                                                                      Unmet need for family planning (for spacing) (% of married women): Q4
## 17738                                                                                                                                                                                                            Unmet need for family planning (for spacing) (% of married women): Q5 (highest)
## 17739                                                                                                                                                                                                                               Unmet need for contraception (% of married women ages 15-49)
## 17740                                                                                                                                                                                                                   Unmet need for family planning (total) (% of married women): Q1 (lowest)
## 17741                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q2
## 17742                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q3
## 17743                                                                                                                                                                                                                            Unmet need for family planning (total) (% of married women): Q4
## 17744                                                                                                                                                                                                                  Unmet need for family planning (total) (% of married women): Q5 (highest)
## 17745                                                                                                                                               Availability of Mortality rate, under-5 (per 1,000 live births) data meeting quality standards according to UN IGME  (5 year moving average)
## 17746                                                                                                                                                                                                                                       Quality of Debt service data according to World Bank
## 17747                                                                                                                                                                                                                                          Labor force participation rate by sex and age (%)
## 17748                                                                                                                                                                                                  Availability of Comparable Poverty headcount ratio at $1.90 a day (5 year moving average)
## 17749                                                                                                                                                                                                                                                              Safely Managed Drinking Water
## 17750                                                                                                                                                                                                                                                                   SDDS/e-GDDS subscription
## 17751                                                                                                                                                                                                                                                              ODIN Open Data Openness score
## 17752                                                                                                                                                                                                                                                 NSO Website - advisory/analytical services
## 17753                                                                                                                                                                                                                                                                              NADA metadata
## 17754                                                                                                                                                                                                                                                 GOAL 1: No Poverty (5 year moving average)
## 17755                                                                                                                                                                                                                                        GOAL 10: Reduced Inequality (5 year moving average)
## 17756                                                                                                                                                                                                                        GOAL 11: Sustainable Cities and Communities (5 year moving average)
## 17757                                                                                                                                                                                                                    GOAL 12: Responsible Consumption and Production (5 year moving average)
## 17758                                                                                                                                                                                                                                            GOAL 13: Climate Action (5 year moving average)
## 17759                                                                                                                                                                                                                                          GOAL 14: Life Below Water (5 year moving average)
## 17760                                                                                                                                                                                                                                              GOAL 15: Life on Land (5 year moving average)
## 17761                                                                                                                                                                                                                     GOAL 16: Peace and Justice Strong Institutions (5 year moving average)
## 17762                                                                                                                                                                                                                          GOAL 17: Partnerships to achieve the Goal (5 year moving average)
## 17763                                                                                                                                                                                                                                                GOAL 2: Zero Hunger (5 year moving average)
## 17764                                                                                                                                                                                                                                 GOAL 3: Good Health and Well-being (5 year moving average)
## 17765                                                                                                                                                                                                                                          GOAL 4: Quality Education (5 year moving average)
## 17766                                                                                                                                                                                                                                            GOAL 5: Gender Equality (5 year moving average)
## 17767                                                                                                                                                                                                                                 GOAL 6: Clean Water and Sanitation (5 year moving average)
## 17768                                                                                                                                                                                                                                GOAL 7: Affordable and Clean Energy (5 year moving average)
## 17769                                                                                                                                                                                                                            GOAL 8: Decent Work and Economic Growth (5 year moving average)
## 17770                                                                                                                                                                                                                    GOAL 9: Industry, Innovation and Infrastructure (5 year moving average)
## 17771                                                                                                                                                                                                                             Population & Housing census (Availability score over 20 years)
## 17772                                                                                                                                                                                                                                      Agriculture census (Availability score over 20 years)
## 17773                                                                                                                                                                                                                           Business/establishment census (Availability score over 20 years)
## 17774                                                                                                                                                                                                                        Household Survey on income, etc  (Availability score over 10 years)
## 17775                                                                                                                                                                                                                                      Agriculture survey (Availability score over 10 years)
## 17776                                                                                                                                                                                                                                      Labor Force Survey (Availability score over 10 years)
## 17777                                                                                                                                                                                                                               Health/Demographic survey (Availability score over 10 years)
## 17778                                                                                                                                                                                                                           Business/establishment survey (Availability score over 10 years)
## 17779                                                                                                                                                                                                                                   Social Protection Admin (ASPIRE) (5 year moving average)
## 17780                                                                                                                                                                                                                                                 Education (UNESCO) (5 year moving average)
## 17781                                                                                                                                                                                                                                                                                 CRVS (WDI)
## 17782                                                                                                                                                                                                                                                  Labor Admin (ILO) (5 year moving average)
## 17783                                                                                                                                                                                                                                               Geospatial data available at 1st Admin Level
## 17784                                                                                                                                                                                                                                               NSO Website - private/citizen generated data
## 17785                                                                                                                                                                                                                           Legislation Indicator based on PARIS21 indicators on SDG 17.18.2
## 17786                                                                                                                                                                                                                                                         System of national accounts in use
## 17787                                                                                                                                                                                                                                                                           Business process
## 17788                                                                                                                                                                                                                                                                National Accounts base year
## 17789                                                                                                                                                                                                                                                        Classification of national industry
## 17790                                                                                                                                                                                                                                                                              CPI base year
## 17791                                                                                                                                                                                                                                                    Classification of household consumption
## 17792                                                                                                                                                                                                                                                     Classification of status of employment
## 17793                                                                                                                                                                                                                                                       Central government accounting status
## 17794                                                                                                                                                                                                                                               Compilation of government finance statistics
## 17795                                                                                                                                                                                                                                           Compilation of monetary and financial statistics
## 17796                                                                                                                                                                                                                                                         PARIS21 indicator on data literacy
## 17797                                                                                                                                                                                                                                                                               Partnerships
## 17798                                                                                                                                                                                                                 Finance Indicator based on PARIS21 indicators on SDG 17.18.3 & SDG 17.19.1
## 17799                                                                                                                                                                                                                                     Dimension 1.5: Data use by international organizations
## 17800                                                                                                                                                                                                                                                               Dimension 2.1: Data Releases
## 17801                                                                                                                                                                                                                                                               Dimension 2.2: Online access
## 17802                                                                                                                                                                                                                                                               Dimension 2.4: Data services
## 17803                                                                                                                                                                                                                                                           Dimension 3.1: Social Statistics
## 17804                                                                                                                                                                                                                                                         Dimension 3.2: Economic Statistics
## 17805                                                                                                                                                                                                                                                    Dimension 3.3: Environmental Statistics
## 17806                                                                                                                                                                                                                                                    Dimension 3.4: Institutional Statistics
## 17807                                                                                                                                                                                                                                        Dimension 4.1: Censuses and Surveys - Censuses only
## 17808                                                                                                                                                                                                                                         Dimension 4.1: Censuses and Surveys - Surveys only
## 17809                                                                                                                                                                                                                                                         Dimension 4.2: Administrative Data
## 17810                                                                                                                                                                                                                                                             Dimension 4.3: Geospatial Data
## 17811                                                                                                                                                                                                                                                  Dimension 5.1: Legislation and governance
## 17812                                                                                                                                                                                                                                                       Dimension 5.2: Standards and Methods
## 17813                                                                                                                                                                                                                                                                     Dimension 5.5: Finance
## 17814                                                                                                                                                                                                                                                                          SPI Overall Score
## 17815                                                                                                                                                                                                                                                               Pillar 1  - Data Use - Score
## 17816                                                                                                                                                                                                                                                           Pillar 2 - Data Services - Score
## 17817                                                                                                                                                                                                                                                           Pillar 3 - Data Products - Score
## 17818                                                                                                                                                                                                                                                            Pillar 4 - Data Sources - Score
## 17819                                                                                                                                                                                                                                                     Pillar 5 - Data Infrastructure - Score
## 17820                                                                                                                                                                                                                                                                   Arable land area (sq km)
## 17821                                                                                                                                                                                                                                                                       Surface area (sq km)
## 17822                                                                                                                                                                                                                         Water supply failure for firms receiving water (average days/year)
## 17823                                                                                                                                                                                                                                                  International tourism, number of arrivals
## 17824                                                                                                                                                                                                                                                International tourism, number of departures
## 17825                                                                                                                                                                                                                                              International tourism, receipts (current US$)
## 17826                                                                                                                                                                                                                                       International tourism, receipts (% of total exports)
## 17827                                                                                                                                                                                                                International tourism, receipts for passenger transport items (current US$)
## 17828                                                                                                                                                                                                            International tourism, expenditures for passenger transport items (current US$)
## 17829                                                                                                                                                                                                                             International tourism, receipts for travel items (current US$)
## 17830                                                                                                                                                                                                                         International tourism, expenditures for travel items (current US$)
## 17831                                                                                                                                                                                                                                          International tourism, expenditures (current US$)
## 17832                                                                                                                                                                                                                                   International tourism, expenditures (% of total imports)
## 17833                                                                                                                                                                                                                                                                      Trade (% of GDP, PPP)
## 17834                                                                                                                                                                                                                                                               Merchandise trade (% of GDP)
## 17835                                                                                                                                                                                                                                                            Trade in goods (% of goods GDP)
## 17836                                                                                                                                                                                                                                                                Number of product (imports)
## 17837                                                                                                                                                                                                                                                         Import product concentration index
## 17838                                                                                                                                                                                                                                                       Import product diversification index
## 17839                                                                                                                                                                 General Agreement on Trade in Services (GATS) Commitments Index, all service sectors (0 least liberal to 100 most liberal)
## 17840                                                                                                                                                                     Goods (excluding arms) admitted free of tariffs from developing countries (% total merchandise imports excluding arms)
## 17841                                                                                                                                                                Goods (excluding arms) admitted free of tariffs from least developed countries (% total merchandise imports excluding arms)
## 17842                                                                                                                                                                                                                                                Merchandise import price index (1987 = 100)
## 17843                                                                                                                                                                                                                                              Import Price Index, cif (1980=100, US$-based)
## 17844                                                                                                                                                                                                                                               Import Price Index, cif (1987=100,US$-based)
## 17845                                                                                                                                                                                                                                                             Merchandise import price index
## 17846                                                                                                                                                                                                                                                   Import price index, (nonfactor) services
## 17847                                                                                                                                                                                                                                                  Import volume index, POL and other energy
## 17848                                                                                                                                                                                                                                                                  Import volume index, food
## 17849                                                                                                                                                                                                                                                         Import volume index, capital goods
## 17850                                                                                                                                                                                                                                                            Merchandise import volume index
## 17851                                                                                                                                                                                                                                                           Import volume index (2000 = 100)
## 17852                                                                                                                                                                                                                                                  Import volume index, other consumer goods
## 17853                                                                                                                                                                                                                                                  Import volume index, (nonfactor) services
## 17854                                                                                                                                                                                                                                                          Import volume index, manufactures
## 17855                                                                                                                                                                                                                                                         Import volume index, primary goods
## 17856                                                                                                                                                                                                                                                    Import volume index, intermediate goods
## 17857                                                                                                                                                                                      Average tariffs imposed by developed countries on agricultural products from developing countries (%)
## 17858                                                                                                                                                                                 Average tariffs imposed by developed countries on agricultural products from least developed countries (%)
## 17859                                                                                                                                                                                          Average tariffs imposed by developed countries on clothing products from developing countries (%)
## 17860                                                                                                                                                                                     Average tariffs imposed by developed countries on clothing products from least developed countries (%)
## 17861                                                                                                                                                                                                                           Tariff barriers, share of lines bound, manufactured products (%)
## 17862                                                                                                                                                                                                                                                Binding coverage, manufactured products (%)
## 17863                                                                                                                                                                                                                                         Bound rate, simple mean, manufactured products (%)
## 17864                                                                                                                                                                                                                     Tariff barriers, dispersion around the mean, manufactured products (%)
## 17865                                                                                                                                                                                                                  Tariff barriers, share of lines domestic peaks, manufactured products (%)
## 17866                                                                                                                                                                                                                  Share of tariff lines with international peaks, manufactured products (%)
## 17867                                                                                                                                                                                                                               Tariff rate, applied, simple mean, manufactured products (%)
## 17868                                                                                                                                                                                                                   Tariff rate, most favored nation, simple mean, manufactured products (%)
## 17869                                                                                                                                                                                                                       Share of tariff lines with specific rates, manufactured products (%)
## 17870                                                                                                                                                                                                                             Tariff rate, applied, weighted mean, manufactured products (%)
## 17871                                                                                                                                                                                                                 Tariff rate, most favored nation, weighted mean, manufactured products (%)
## 17872                                                                                                                                                                                                                                    Tariff barriers, share of lines bound, all products (%)
## 17873                                                                                                                                                                                                                                                         Binding coverage, all products (%)
## 17874                                                                                                                                                                                                                                                  Bound rate, simple mean, all products (%)
## 17875                                                                                                                                                                                                                              Tariff barriers, dispersion around the mean, all products (%)
## 17876                                                                                                                                                                                                                           Tariff barriers, share of lines domestic peaks, all products (%)
## 17877                                                                                                                                                                                                                           Share of tariff lines with international peaks, all products (%)
## 17878                                                                                                                                                                                                                                        Tariff rate, applied, simple mean, all products (%)
## 17879                                                                                                                                                                                                                            Tariff rate, most favored nation, simple mean, all products (%)
## 17880                                                                                                                                                                                                                                Share of tariff lines with specific rates, all products (%)
## 17881                                                                                                                                                                                                                                      Tariff rate, applied, weighted mean, all products (%)
## 17882                                                                                                                                                                                                                          Tariff rate, most favored nation, weighted mean, all products (%)
## 17883                                                                                                                                                                                                                                Tariff barriers, share of lines bound, primary products (%)
## 17884                                                                                                                                                                                                                                                     Binding coverage, primary products (%)
## 17885                                                                                                                                                                                                                                              Bound rate, simple mean, primary products (%)
## 17886                                                                                                                                                                                                                          Tariff barriers, dispersion around the mean, primary products (%)
## 17887                                                                                                                                                                                                                                Tariff barriers, share of lines domestic peaks, primary (%)
## 17888                                                                                                                                                                                                                       Share of tariff lines with international peaks, primary products (%)
## 17889                                                                                                                                                                                                                                    Tariff rate, applied, simple mean, primary products (%)
## 17890                                                                                                                                                                                                                        Tariff rate, most favored nation, simple mean, primary products (%)
## 17891                                                                                                                                                                                                                            Share of tariff lines with specific rates, primary products (%)
## 17892                                                                                                                                                                                                                                  Tariff rate, applied, weighted mean, primary products (%)
## 17893                                                                                                                                                                                                                      Tariff rate, most favored nation, weighted mean, primary products (%)
## 17894                                                                                                                                                                                           Average tariffs imposed by developed countries on textile products from developing countries (%)
## 17895                                                                                                                                                                                      Average tariffs imposed by developed countries on textile products from least developed countries (%)
## 17896                                                                                                                                                                                                                                                      Import unit value index (2015 = 100 )
## 17897                                                                                                                                                                                                                              Agricultural raw materials imports (% of merchandise imports)
## 17898                                                                                                                                                                                                                                                 POL and other energy imports (current US$)
## 17899                                                                                                                                                                                                                                                POL and other energy imports (constant US$)
## 17900                                                                                                                                                                                                                                                                 Food imports (current US$)
## 17901                                                                                                                                                                                                                                                                Food imports (constant US$)
## 17902                                                                                                                                                                                                                                                            Food (% of merchandise imports)
## 17903                                                                                                                                                                                                                                                    Food imports (% of merchandise imports)
## 17904                                                                                                                                                                                                                                                                  CP Imports of Fuels (US$)
## 17905                                                                                                                                                                                                                                                            Fuel (% of merchandise imports)
## 17906                                                                                                                                                                                                                                                    Fuel imports (% of merchandise imports)
## 17907                                                                                                                                                                                                                                                  ICT goods imports (% total goods imports)
## 17908                                                                                                                                                                                                                         Insurance and financial services (% of commercial service imports)
## 17909                                                                                                                                                                                                                                                        Capital goods imports (current US$)
## 17910                                                                                                                                                                                                                                                       Capital goods imports (constant US$)
## 17911                                                                                                                                                                                                                                                           CP Imports of Manufactures (US$)
## 17912                                                                                                                                                                                                                                            Manufactures imports (% of merchandise imports)
## 17913                                                                                                                                                                                                                               Machinery and transport equipment (% of merchandise imports)
## 17914                                                                                                                                                                                                                                             Minerals and metals (% of merchandise imports)
## 17915                                                                                                                                                                                                                                         Ores and metals imports (% of merchandise imports)
## 17916                                                                                                                                                                                                      Merchandise imports from economies in the Arab World (% of total merchandise imports)
## 17917                                                                                                                                                                                                                                                             CP Value of Imports, cif (US$)
## 17918                                                                                                                                                                                                                                                      Merchandise imports (UN, current US$)
## 17919                                                                                                                                                                                                                                                            Import growth, value (annual %)
## 17920                                                                                                                                                                                                                                                      Merchandise imports, WB (current US$)
## 17921                                                                                                                                                                                                                                                          Merchandise imports (current US$)
## 17922                                                                                                                                                                                                            Merchandise imports from high-income economies (% of total merchandise imports)
## 17923                                                                                                                                                                                                                                                     Imports, cif (1980 US$) (Const. Price)
## 17924                                                                                                                                                                                                                                                    Merchandise imports (constant 1987 US$)
## 17925                                                                                                                                                                                                                                                           Import growth, volume (annual %)
## 17926                                                                                                                                                                                                                                                         Merchandise imports (constant US$)
## 17927                                                                                                                                                                                  Merchandise imports from low- and middle-income economies outside region (% of total merchandise imports)
## 17928                                                                                                                                                                          Merchandise imports from low- and middle-income economies in East Asia & Pacific (% of total merchandise imports)
## 17929                                                                                                                                                                        Merchandise imports from low- and middle-income economies in Europe & Central Asia (% of total merchandise imports)
## 17930                                                                                                                                                                Merchandise imports from low- and middle-income economies in Latin America & the Caribbean (% of total merchandise imports)
## 17931                                                                                                                                                                   Merchandise imports from low- and middle-income economies in Middle East & North Africa (% of total merchandise imports)
## 17932                                                                                                                                                                                   Merchandise imports from low- and middle-income economies in South Asia (% of total merchandise imports)
## 17933                                                                                                                                                                           Merchandise imports from low- and middle-income economies in Sub-Saharan Africa (% of total merchandise imports)
## 17934                                                                                                                                                                                                    Merchandise imports by the reporting economy, residual (% of total merchandise imports)
## 17935                                                                                                                                                                                                                                 Merchandise imports by the reporting economy (current US$)
## 17936                                                                                                                                                                                   Merchandise imports from low- and middle-income economies within region (% of total merchandise imports)
## 17937                                                                                                                                                                                                                                                       Import unit value index (2015 = 100)
## 17938                                                                                                                                                                                                                                                 Other consumer goods imports (current US$)
## 17939                                                                                                                                                                                                                                                Other consumer goods imports (constant US$)
## 17940                                                                                                                                                                                                                                    Non-food primary commodities (% of merchandise imports)
## 17941                                                                                                                                                                                                                                            Imports of Nonfuel Primary Prod.(US$,curr. pr.)
## 17942                                                                                                                                                                                                                                               CP Imports of Nonfuel Primary Products (US$)
## 17943                                                                                                                                                                                                                                              Other manufactures (% of merchandise imports)
## 17944                                                                                                                                                                                                                                       Other primary commodities (% of merchandise imports)
## 17945                                                                                                                                                                                                              Computer, communications and other services (% of commercial service imports)
## 17946                                                                                                                                                                                                                                     Intermediate goods imports, manufactures (current US$)
## 17947                                                                                                                                                                                                                                    Intermediate goods imports, manufactures (constant US$)
## 17948                                                                                                                                                                                                                                          Intermediate goods imports, primary (current US$)
## 17949                                                                                                                                                                                                                                         Intermediate goods imports, primary (constant US$)
## 17950                                                                                                                                                                                                                                            Intermediate goods imports, total (current US$)
## 17951                                                                                                                                                                                                                                           Intermediate goods imports, total (constant US$)
## 17952                                                                                                                                                                                                                                                   Commercial service imports (current US$)
## 17953                                                                                                                                                                                                                                       Transport services (% of commercial service imports)
## 17954                                                                                                                                                                                                                                          Travel services (% of commercial service imports)
## 17955                                                                                                                                                                                                                                                 Growth of merch. imports (av. ann grwth %)
## 17956                                                                                                                                                                                                                                                 Terms of Trade Index (1980=100, US$-based)
## 17957                                                                                                                                                                                                                                                                             Terms of Trade
## 17958                                                                                                                                                                                                                                                                             Total Reserves
## 17959                                                                                                                                                                                                                                     Export: Beverages and tobacco (province Level, in USD)
## 17960                                                                                                                                                                                                                        Export: Chemical and related products, nes (province Level, in USD)
## 17961                                                                                                                                                                                                                   Export: Crude materials, inedible, except fuels (province Level, in USD)
## 17962                                                                                                                                                                                                                                     Export: Food and Live Animals (province Level, in USD)
## 17963                                                                                                                                                                                                           Export: Mineral fuels, lubricants and related materials (province Level, in USD)
## 17964                                                                                                                                                                                                        Export: Manufactured goods, classified chiefly by material (province Level, in USD)
## 17965                                                                                                                                                                                                                       Export: Miscellaneous manufactures articles (province Level, in USD)
## 17966                                                                                                                                                                                                                         Export: Machinery and transport equipment (province Level, in USD)
## 17967                                                                                                                                                                                                                  Export: Animals and vegetable oil, fat and waxes (province Level, in USD)
## 17968                                                                                                                                                                                                      Export: Commodities and transaction not elsewhere classified (province Level, in USD)
## 17969                                                                                                                                                                                                                                     Import: Beverages and tobacco (province Level, in USD)
## 17970                                                                                                                                                                                                                        Import: Chemical and related products, nes (province Level, in USD)
## 17971                                                                                                                                                                                                                   Import: Crude materials, inedible, except fuels (province Level, in USD)
## 17972                                                                                                                                                                                                                                     Import: Food and Live Animals (province Level, in USD)
## 17973                                                                                                                                                                                                           Import: Mineral fuels, lubricants and related materials (province Level, in USD)
## 17974                                                                                                                                                                                                        Import: Manufactured goods, classified chiefly by material (province Level, in USD)
## 17975                                                                                                                                                                                                                       Import: Miscellaneous manufactures articles (province Level, in USD)
## 17976                                                                                                                                                                                                                         Import: Machinery and transport equipment (province Level, in USD)
## 17977                                                                                                                                                                                                                  Import: Animals and vegetable oil, fat and waxes (province Level, in USD)
## 17978                                                                                                                                                                                                      Import: Commodities and transaction not elsewhere classified (province Level, in USD)
## 17979                                                                                                                                                                                                                                       Trading across borders (DB06-15 methodology) - Score
## 17980                                                                                                                                                                                                                                       Trading across borders (DB16-20 methodology) - Score
## 17981                                                                                                                                                                                                                       Time to export: Documentary compliance (hours) (DB16-20 methodology)
## 17982                                                                                                                                                                                                                 Trading across borders: Documents to export (number) (DB06-15 methodology)
## 17983                                                                                                                                                                                                         Trading across borders: Documents to export (number) (DB06-15 methodology) - Score
## 17984                                                                                                                                                                                                                 Trading across borders: Documents to import (number) (DB06-15 methodology)
## 17985                                                                                                                                                                                                         Trading across borders: Documents to import (number) (DB06-15 methodology) - Score
## 17986                                                                                                                                                                                                                            Time to export: Border compliance (hours) (DB16-20 methodology)
## 17987                                                                                                                                                                                                      Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology)
## 17988                                                                                                                                                                                              Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology) - Score
## 17989                                                                                                                                                                                                  Trading across borders: Cost to export (US$ per container deflated) (DB06-15 methodology)
## 17990                                                                                                                                                                                                   Trading across borders: Cost to export (US$ per container) (DB06-15 methodology) - Score
## 17991                                                                                                                                                                                                 Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology)
## 17992                                                                                                                                                                                         Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology) - Score
## 17993                                                                                                                                                                                                                                                Time to export (days) (DB06-15 methodology)
## 17994                                                                                                                                                                                            Trading across borders: Time to export: Border compliance (hours) (DB16-20 methodology) - Score
## 17995                                                                                                                                                                                       Trading across borders: Time to export: Documentary compliance (hours) (DB16-20 methodology) - Score
## 17996                                                                                                                                                                                                                Trading across borders: Time to export (days) (DB06-15 methodology) - Score
## 17997                                                                                                                                                                                                                            Time to import: Border compliance (hours) (DB16-20 methodology)
## 17998                                                                                                                                                                                                      Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology)
## 17999                                                                                                                                                                                              Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology) - Score
## 18000                                                                                                                                                                                                   Trading across borders: Cost to import (US$ per container deflated)(DB06-15 methodology)
## 18001                                                                                                                                                                                                    Trading across borders: Cost to import (US$ per container)(DB06-15 methodology) - Score
## 18002                                                                                                                                                                                                 Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology)
## 18003                                                                                                                                                                                         Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology) - Score
## 18004                                                                                                                                                                                                                       Time to import: Documentary compliance (hours) (DB16-20 methodology)
## 18005                                                                                                                                                                                                                                                Time to import (days) (DB06-15 methodology)
## 18006                                                                                                                                                                                            Trading across borders: Time to import: Border compliance (hours) (DB16-20 methodology) - Score
## 18007                                                                                                                                                                                       Trading across borders: Time to import: Documentary compliance (hours) (DB16-20 methodology) - Score
## 18008                                                                                                                                                                                                                Trading across borders: Time to import (days) (DB06-15 methodology) - Score
## 18009                                                                                                                                                                                                                        Rank: Trading across borders (1=most business-friendly regulations)
## 18010                                                                                                                                                                                                                                                         Income terms of trade (1987 = 100)
## 18011                                                                                                                                                                                                                                                  Terms of Trade Index (1987=100,US$-based)
## 18012                                                                                                                                                                                                                                                     Net barter terms of trade (1987 = 100)
## 18013                                                                                                                                                                                                                                                    Merchandise Terms of Trade (1987 = 100)
## 18014                                                                                                                                                                                                                                               Net barter terms of trade index (2000 = 100)
## 18015                                                                                                                                                                                                                                                                Number of product (exports)
## 18016                                                                                                                                                                                                                                                         Export product concentration index
## 18017                                                                                                                                                                                                                                                       Export product diversification index
## 18018                                                                                                                                                                                                                                      Medium and high-tech exports (% manufactured exports)
## 18019                                                                                                                                                                                                                                              Fuel Export Price Index (1980=100, US$-based)
## 18020                                                                                                                                                                                                                                        Manufactures Exp. Price Index (1980=100, US$-based)
## 18021                                                                                                                                                                                                                                                Merchandise export price index (1987 = 100)
## 18022                                                                                                                                                                                                                                              Export Price Index, fob (1980=100, US$-based)
## 18023                                                                                                                                                                                                                                               Export Price Index, fob (1987=100,US$-based)
## 18024                                                                                                                                                                                                                                                Merchandise export price index (1987 = 100)
## 18025                                                                                                                                                                                                                                     Nonfuel Prim.Prod.Exp.Price Index (1980=100,US$-based)
## 18026                                                                                                                                                                                                                                                   Export price index, (nonfactor) services
## 18027                                                                                                                                                                                                                                                      Exports of commodity 1 (volume index)
## 18028                                                                                                                                                                                                                                                      Exports of commodity 2 (volume index)
## 18029                                                                                                                                                                                                                                                      Exports of commodity 3 (volume index)
## 18030                                                                                                                                                                                                                                                      Exports of commodity 4 (volume index)
## 18031                                                                                                                                                                                                                                                          Export volume index, manufactures
## 18032                                                                                                                                                                                                                                                            Merchandise export volume index
## 18033                                                                                                                                                                                                                                                           Export volume index (2000 = 100)
## 18034                                                                                                                                                                                                                                                  Export volume index, (nonfactor) services
## 18035                                                                                                                                                                                                                                             Export volume index, other primary commodities
## 18036                                                                                                                                                                                                                                                       Export unit value index (2015 = 100)
## 18037                                                                                                                                                                                                                              Agricultural raw materials exports (% of merchandise exports)
## 18038                                                                                                                                                                                                                                                       Exports of commodity 1 (current US$)
## 18039                                                                                                                                                                                                                                                      Exports of commodity 1 (constant US$)
## 18040                                                                                                                                                                                                                                                       Exports of commodity 2 (current US$)
## 18041                                                                                                                                                                                                                                                      Exports of commodity 2 (constant US$)
## 18042                                                                                                                                                                                                                                                       Exports of commodity 3 (current US$)
## 18043                                                                                                                                                                                                                                                      Exports of commodity 3 (constant US$)
## 18044                                                                                                                                                                                                                                                       Exports of commodity 4 (current US$)
## 18045                                                                                                                                                                                                                                                      Exports of commodity 4 (constant US$)
## 18046                                                                                                                                                                                                                                     Fuels, minerals, and metals (% of merchandise exports)
## 18047                                                                                                                                                                                                                                                            Food (% of merchandise exports)
## 18048                                                                                                                                                                                                                                                    Food exports (% of merchandise exports)
## 18049                                                                                                                                                                                                                                                                  CP Exports of Fuels (US$)
## 18050                                                                                                                                                                                                                                                    Fuel exports (% of merchandise exports)
## 18051                                                                                                                                                                                                                                               ICT goods exports (% of total goods exports)
## 18052                                                                                                                                                                                                                         Insurance and financial services (% of commercial service exports)
## 18053                                                                                                                                                                                                                                                           CP Exports of Manufactures (US$)
## 18054                                                                                                                                                                                                                                                         Manufactures exports (current US$)
## 18055                                                                                                                                                                                                                                                        Manufactures exports (constant US$)
## 18056                                                                                                                                                                                                                                                    Manufactures (% of merchandise exports)
## 18057                                                                                                                                                                                                                                            Manufactures exports (% of merchandise exports)
## 18058                                                                                                                                                                                                                               Machinery and transport equipment (% of merchandise exports)
## 18059                                                                                                                                                                                                                                                          Metals (% of merchandise exports)
## 18060                                                                                                                                                                                                                                         Ores and metals exports (% of merchandise exports)
## 18061                                                                                                                                                                                                                                                        Minerals (% of merchandise exports)
## 18062                                                                                                                                                                                                        Merchandise exports to economies in the Arab World (% of total merchandise exports)
## 18063                                                                                                                                                                                                                                                             CP Value of Exports, fob (US$)
## 18064                                                                                                                                                                                                                                                      Merchandise exports (UN, current US$)
## 18065                                                                                                                                                                                                                                                            Export growth, value (annual %)
## 18066                                                                                                                                                                                                                                                      Merchandise exports, WB (current US$)
## 18067                                                                                                                                                                                                                                                          Merchandise exports (current US$)
## 18068                                                                                                                                                                                                                                 Merchandise exports to high-income economies (current US$)
## 18069                                                                                                                                                                                                              Merchandise exports to high-income economies (% of total merchandise exports)
## 18070                                                                                                                                                                                                                                                     Exports, fob (1980 US$) (Const. Price)
## 18071                                                                                                                                                                                                                                                    Merchandise exports (constant 1987 US$)
## 18072                                                                                                                                                                                                                                                           Export growth, volume (annual %)
## 18073                                                                                                                                                                                                                                                         Merchandise exports (constant US$)
## 18074                                                                                                                                                                                                       Merchandise exports to low- and middle-income economies outside region (current US$)
## 18075                                                                                                                                                                                    Merchandise exports to low- and middle-income economies outside region (% of total merchandise exports)
## 18076                                                                                                                                                                                               Merchandise exports to low- and middle-income economies in East Asia & Pacific (current US$)
## 18077                                                                                                                                                                            Merchandise exports to low- and middle-income economies in East Asia & Pacific (% of total merchandise exports)
## 18078                                                                                                                                                                                             Merchandise exports to low- and middle-income economies in Europe & Central Asia (current US$)
## 18079                                                                                                                                                                          Merchandise exports to low- and middle-income economies in Europe & Central Asia (% of total merchandise exports)
## 18080                                                                                                                                                                                     Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (current US$)
## 18081                                                                                                                                                                  Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (% of total merchandise exports)
## 18082                                                                                                                                                                                        Merchandise exports to low- and middle-income economies in Middle East & North Africa (current US$)
## 18083                                                                                                                                                                     Merchandise exports to low- and middle-income economies in Middle East & North Africa (% of total merchandise exports)
## 18084                                                                                                                                                                                                        Merchandise exports to low- and middle-income economies in South Asia (current US$)
## 18085                                                                                                                                                                                     Merchandise exports to low- and middle-income economies in South Asia (% of total merchandise exports)
## 18086                                                                                                                                                                                                Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (current US$)
## 18087                                                                                                                                                                             Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (% of total merchandise exports)
## 18088                                                                                                                                                                                                    Merchandise exports by the reporting economy, residual (% of total merchandise exports)
## 18089                                                                                                                                                                                                                                 Merchandise exports by the reporting economy (current US$)
## 18090                                                                                                                                                                                                        Merchandise exports to low- and middle-income economies within region (current US$)
## 18091                                                                                                                                                                                     Merchandise exports to low- and middle-income economies within region (% of total merchandise exports)
## 18092                                                                                                                                                                                                                                                            Export value index (2000 = 100)
## 18093                                                                                                                                                                                                                                    Non-food primary commodities (% of merchandise exports)
## 18094                                                                                                                                                                                                                                            Exports of Nonfuel Primary Prod.(US$,curr. pr.)
## 18095                                                                                                                                                                                                                                               CP Exports of Nonfuel Primary Products (US$)
## 18096                                                                                                                                                                                                                                            Other primary commodities exports (current US$)
## 18097                                                                                                                                                                                                                                           Other primary commodities exports (constant US$)
## 18098                                                                                                                                                                                                                                       Other primary commodities (% of merchandise exports)
## 18099                                                                                                                                                                                                              Computer, communications and other services (% of commercial service exports)
## 18100                                                                                                                                                                                                                                                   Commercial service exports (current US$)
## 18101                                                                                                                                                                                                                             Ratio of commercial service exports to merchandise exports (%)
## 18102                                                                                                                                                                                                                                                  Primary commodities exports (current US$)
## 18103                                                                                                                                                                                                                                                 Primary commodities exports (constant US$)
## 18104                                                                                                                                                                                                                                                      High-technology exports (current US$)
## 18105                                                                                                                                                                                                                                        High-technology exports (% of manufactured exports)
## 18106                                                                                                                                                                                                                                        High-technology exports (% of manufactured exports)
## 18107                                                                                                                                                                                                                                       Transport services (% of commercial service exports)
## 18108                                                                                                                                                                                                                                          Travel services (% of commercial service exports)
## 18109                                                                                                                                                                                                                                           Textiles and clothing (% of merchandise exports)
## 18110                                                                                                                                                                                                                                              Other manufactures (% of merchandise exports)
## 18111                                                                                                                                                                                                                                                 Growth of merch. exports (av. ann grwth %)
## 18112                                                                                                                                                          Administration of a nationally-representative learning assessment at the end of lower secondary education in mathematics (number)
## 18113                                                                                                                                                              Administration of a nationally-representative learning assessment at the end of lower secondary education in reading (number)
## 18114                                                                                                                                                                            Administration of a nationally-representative learning assessment at the end of primary in mathematics (number)
## 18115                                                                                                                                                                                Administration of a nationally-representative learning assessment at the end of primary in reading (number)
## 18116                                                                                                                                                                                  Administration of a nationally representative learning assessment in Grade 2 or 3 in mathematics (number)
## 18117                                                                                                                                                                                      Administration of a nationally representative learning assessment in Grade 2 or 3 in reading (number)
## 18118                                                                                                                                                                                                            Percentage of total aid to education allocated to least developed countries (%)
## 18119                                                                                                                                                                                             Gross intake ratio to the last grade of primary education, adjusted gender parity index (GPIA)
## 18120                                                                                                                                                                             Gross intake ratio to the last grade of lower secondary general education, adjusted gender parity index (GPIA)
## 18121                                                                                                                                                                                                            Teachers in tertiary education ISCED 6, 7 and 8 programmes, both sexes (number)
## 18122                                                                                                                                                                                                                Teachers in tertiary education ISCED 6, 7 and 8 programmes, female (number)
## 18123                                                                                                                                                                                                                  Teachers in tertiary education ISCED 6, 7 and 8 programmes, male (number)
## 18124                                                                                                                                                                                                                                      Official entrance age to compulsory education (years)
## 18125                                                                                                                                                                                                                                         Completion rate, primary education, both sexes (%)
## 18126                                                                                                                                                                                                                                             Completion rate, primary education, female (%)
## 18127                                                                                                                                                                                                          Completion rate, primary education, female, adjusted location parity index (LPIA)
## 18128                                                                                                                                                                                                            Completion rate, primary education, female, adjusted wealth parity index (WPIA)
## 18129                                                                                                                                                                                                                    Completion rate, primary education, adjusted gender parity index (GPIA)
## 18130                                                                                                                                                                                                                  Completion rate, primary education, adjusted location parity index (LPIA)
## 18131                                                                                                                                                                                                                                               Completion rate, primary education, male (%)
## 18132                                                                                                                                                                                                            Completion rate, primary education, male, adjusted location parity index (LPIA)
## 18133                                                                                                                                                                                                              Completion rate, primary education, male, adjusted wealth parity index (WPIA)
## 18134                                                                                                                                                                                                                       Completion rate, primary education, poorest quintile, both sexes (%)
## 18135                                                                                                                                                                                                                           Completion rate, primary education, poorest quintile, female (%)
## 18136                                                                                                                                                                                        Completion rate, primary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18137                                                                                                                                                                                                  Completion rate, primary education, poorest quintile, adjusted gender parity index (GPIA)
## 18138                                                                                                                                                                                                Completion rate, primary education, poorest quintile, adjusted location parity index (LPIA)
## 18139                                                                                                                                                                                                                             Completion rate, primary education, poorest quintile, male (%)
## 18140                                                                                                                                                                                          Completion rate, primary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18141                                                                                                                                                                                                                        Completion rate, primary education, second quintile, both sexes (%)
## 18142                                                                                                                                                                                                                            Completion rate, primary education, second quintile, female (%)
## 18143                                                                                                                                                                                         Completion rate, primary education, second quintile, female, adjusted location parity index (LPIA)
## 18144                                                                                                                                                                                                   Completion rate, primary education, second quintile, adjusted gender parity index (GPIA)
## 18145                                                                                                                                                                                                 Completion rate, primary education, second quintile, adjusted location parity index (LPIA)
## 18146                                                                                                                                                                                                                              Completion rate, primary education, second quintile, male (%)
## 18147                                                                                                                                                                                           Completion rate, primary education, second quintile, male, adjusted location parity index (LPIA)
## 18148                                                                                                                                                                                                                        Completion rate, primary education, middle quintile, both sexes (%)
## 18149                                                                                                                                                                                                                            Completion rate, primary education, middle quintile, female (%)
## 18150                                                                                                                                                                                         Completion rate, primary education, middle quintile, female, adjusted location parity index (LPIA)
## 18151                                                                                                                                                                                                   Completion rate, primary education, middle quintile, adjusted gender parity index (GPIA)
## 18152                                                                                                                                                                                                 Completion rate, primary education, middle quintile, adjusted location parity index (LPIA)
## 18153                                                                                                                                                                                                                              Completion rate, primary education, middle quintile, male (%)
## 18154                                                                                                                                                                                           Completion rate, primary education, middle quintile, male, adjusted location parity index (LPIA)
## 18155                                                                                                                                                                                                                        Completion rate, primary education, fourth quintile, both sexes (%)
## 18156                                                                                                                                                                                                                            Completion rate, primary education, fourth quintile, female (%)
## 18157                                                                                                                                                                                         Completion rate, primary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18158                                                                                                                                                                                                   Completion rate, primary education, fourth quintile, adjusted gender parity index (GPIA)
## 18159                                                                                                                                                                                                 Completion rate, primary education, fourth quintile, adjusted location parity index (LPIA)
## 18160                                                                                                                                                                                                                              Completion rate, primary education, fourth quintile, male (%)
## 18161                                                                                                                                                                                           Completion rate, primary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18162                                                                                                                                                                                                                       Completion rate, primary education, richest quintile, both sexes (%)
## 18163                                                                                                                                                                                                                           Completion rate, primary education, richest quintile, female (%)
## 18164                                                                                                                                                                                        Completion rate, primary education, richest quintile, female, adjusted location parity index (LPIA)
## 18165                                                                                                                                                                                                  Completion rate, primary education, richest quintile, adjusted gender parity index (GPIA)
## 18166                                                                                                                                                                                                Completion rate, primary education, richest quintile, adjusted location parity index (LPIA)
## 18167                                                                                                                                                                                                                             Completion rate, primary education, richest quintile, male (%)
## 18168                                                                                                                                                                                          Completion rate, primary education, richest quintile, male, adjusted location parity index (LPIA)
## 18169                                                                                                                                                                                                                                  Completion rate, primary education, rural, both sexes (%)
## 18170                                                                                                                                                                                                                                      Completion rate, primary education, rural, female (%)
## 18171                                                                                                                                                                                                     Completion rate, primary education, rural, female, adjusted wealth parity index (WPIA)
## 18172                                                                                                                                                                                                             Completion rate, primary education, rural, adjusted gender parity index (GPIA)
## 18173                                                                                                                                                                                                                                        Completion rate, primary education, rural, male (%)
## 18174                                                                                                                                                                                                       Completion rate, primary education, rural, male, adjusted wealth parity index (WPIA)
## 18175                                                                                                                                                                                                                Completion rate, primary education, rural, poorest quintile, both sexes (%)
## 18176                                                                                                                                                                                                                    Completion rate, primary education, rural, poorest quintile, female (%)
## 18177                                                                                                                                                                                           Completion rate, primary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18178                                                                                                                                                                                                                      Completion rate, primary education, rural, poorest quintile, male (%)
## 18179                                                                                                                                                                                                                 Completion rate, primary education, rural, second quintile, both sexes (%)
## 18180                                                                                                                                                                                                                     Completion rate, primary education, rural, second quintile, female (%)
## 18181                                                                                                                                                                                            Completion rate, primary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18182                                                                                                                                                                                                                       Completion rate, primary education, rural, second quintile, male (%)
## 18183                                                                                                                                                                                                                 Completion rate, primary education, rural, middle quintile, both sexes (%)
## 18184                                                                                                                                                                                                                     Completion rate, primary education, rural, middle quintile, female (%)
## 18185                                                                                                                                                                                            Completion rate, primary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18186                                                                                                                                                                                                                       Completion rate, primary education, rural, middle quintile, male (%)
## 18187                                                                                                                                                                                                                 Completion rate, primary education, rural, fourth quintile, both sexes (%)
## 18188                                                                                                                                                                                                                     Completion rate, primary education, rural, fourth quintile, female (%)
## 18189                                                                                                                                                                                            Completion rate, primary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18190                                                                                                                                                                                                                       Completion rate, primary education, rural, fourth quintile, male (%)
## 18191                                                                                                                                                                                                                Completion rate, primary education, rural, richest quintile, both sexes (%)
## 18192                                                                                                                                                                                                                    Completion rate, primary education, rural, richest quintile, female (%)
## 18193                                                                                                                                                                                           Completion rate, primary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18194                                                                                                                                                                                                                      Completion rate, primary education, rural, richest quintile, male (%)
## 18195                                                                                                                                                                                                             Completion rate, primary education, rural, adjusted wealth parity index (WPIA)
## 18196                                                                                                                                                                                                                                  Completion rate, primary education, urban, both sexes (%)
## 18197                                                                                                                                                                                                                                      Completion rate, primary education, urban, female (%)
## 18198                                                                                                                                                                                                     Completion rate, primary education, urban, female, adjusted wealth parity index (WPIA)
## 18199                                                                                                                                                                                                             Completion rate, primary education, urban, adjusted gender parity index (GPIA)
## 18200                                                                                                                                                                                                                                        Completion rate, primary education, urban, male (%)
## 18201                                                                                                                                                                                                       Completion rate, primary education, urban, male, adjusted wealth parity index (WPIA)
## 18202                                                                                                                                                                                                                Completion rate, primary education, urban, poorest quintile, both sexes (%)
## 18203                                                                                                                                                                                                                    Completion rate, primary education, urban, poorest quintile, female (%)
## 18204                                                                                                                                                                                           Completion rate, primary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18205                                                                                                                                                                                                                      Completion rate, primary education, urban, poorest quintile, male (%)
## 18206                                                                                                                                                                                                                 Completion rate, primary education, urban, second quintile, both sexes (%)
## 18207                                                                                                                                                                                                                     Completion rate, primary education, urban, second quintile, female (%)
## 18208                                                                                                                                                                                            Completion rate, primary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18209                                                                                                                                                                                                                       Completion rate, primary education, urban, second quintile, male (%)
## 18210                                                                                                                                                                                                                 Completion rate, primary education, urban, middle quintile, both sexes (%)
## 18211                                                                                                                                                                                                                     Completion rate, primary education, urban, middle quintile, female (%)
## 18212                                                                                                                                                                                            Completion rate, primary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18213                                                                                                                                                                                                                       Completion rate, primary education, urban, middle quintile, male (%)
## 18214                                                                                                                                                                                                                 Completion rate, primary education, urban, fourth quintile, both sexes (%)
## 18215                                                                                                                                                                                                                     Completion rate, primary education, urban, fourth quintile, female (%)
## 18216                                                                                                                                                                                            Completion rate, primary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18217                                                                                                                                                                                                                       Completion rate, primary education, urban, fourth quintile, male (%)
## 18218                                                                                                                                                                                                                Completion rate, primary education, urban, richest quintile, both sexes (%)
## 18219                                                                                                                                                                                                                    Completion rate, primary education, urban, richest quintile, female (%)
## 18220                                                                                                                                                                                           Completion rate, primary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18221                                                                                                                                                                                                                      Completion rate, primary education, urban, richest quintile, male (%)
## 18222                                                                                                                                                                                                             Completion rate, primary education, urban, adjusted wealth parity index (WPIA)
## 18223                                                                                                                                                                                                                    Completion rate, primary education, adjusted wealth parity index (WPIA)
## 18224                                                                                                                                                                                                                                 Completion rate, lower secondary education, both sexes (%)
## 18225                                                                                                                                                                                                                                     Completion rate, lower secondary education, female (%)
## 18226                                                                                                                                                                                                  Completion rate, lower secondary education, female, adjusted location parity index (LPIA)
## 18227                                                                                                                                                                                                    Completion rate, lower secondary education, female, adjusted wealth parity index (WPIA)
## 18228                                                                                                                                                                                                            Completion rate, lower secondary education, adjusted gender parity index (GPIA)
## 18229                                                                                                                                                                                                          Completion rate, lower secondary education, adjusted location parity index (LPIA)
## 18230                                                                                                                                                                                                                                       Completion rate, lower secondary education, male (%)
## 18231                                                                                                                                                                                                    Completion rate, lower secondary education, male, adjusted location parity index (LPIA)
## 18232                                                                                                                                                                                                      Completion rate, lower secondary education, male, adjusted wealth parity index (WPIA)
## 18233                                                                                                                                                                                                               Completion rate, lower secondary education, poorest quintile, both sexes (%)
## 18234                                                                                                                                                                                                                   Completion rate, lower secondary education, poorest quintile, female (%)
## 18235                                                                                                                                                                                Completion rate, lower secondary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18236                                                                                                                                                                                          Completion rate, lower secondary education, poorest quintile, adjusted gender parity index (GPIA)
## 18237                                                                                                                                                                                        Completion rate, lower secondary education, poorest quintile, adjusted location parity index (LPIA)
## 18238                                                                                                                                                                                                                     Completion rate, lower secondary education, poorest quintile, male (%)
## 18239                                                                                                                                                                                  Completion rate, lower secondary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18240                                                                                                                                                                                                                Completion rate, lower secondary education, second quintile, both sexes (%)
## 18241                                                                                                                                                                                                                    Completion rate, lower secondary education, second quintile, female (%)
## 18242                                                                                                                                                                                 Completion rate, lower secondary education, second quintile, female, adjusted location parity index (LPIA)
## 18243                                                                                                                                                                                           Completion rate, lower secondary education, second quintile, adjusted gender parity index (GPIA)
## 18244                                                                                                                                                                                         Completion rate, lower secondary education, second quintile, adjusted location parity index (LPIA)
## 18245                                                                                                                                                                                                                      Completion rate, lower secondary education, second quintile, male (%)
## 18246                                                                                                                                                                                   Completion rate, lower secondary education, second quintile, male, adjusted location parity index (LPIA)
## 18247                                                                                                                                                                                                                Completion rate, lower secondary education, middle quintile, both sexes (%)
## 18248                                                                                                                                                                                                                    Completion rate, lower secondary education, middle quintile, female (%)
## 18249                                                                                                                                                                                 Completion rate, lower secondary education, middle quintile, female, adjusted location parity index (LPIA)
## 18250                                                                                                                                                                                           Completion rate, lower secondary education, middle quintile, adjusted gender parity index (GPIA)
## 18251                                                                                                                                                                                         Completion rate, lower secondary education, middle quintile, adjusted location parity index (LPIA)
## 18252                                                                                                                                                                                                                      Completion rate, lower secondary education, middle quintile, male (%)
## 18253                                                                                                                                                                                   Completion rate, lower secondary education, middle quintile, male, adjusted location parity index (LPIA)
## 18254                                                                                                                                                                                                                Completion rate, lower secondary education, fourth quintile, both sexes (%)
## 18255                                                                                                                                                                                                                    Completion rate, lower secondary education, fourth quintile, female (%)
## 18256                                                                                                                                                                                 Completion rate, lower secondary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18257                                                                                                                                                                                           Completion rate, lower secondary education, fourth quintile, adjusted gender parity index (GPIA)
## 18258                                                                                                                                                                                         Completion rate, lower secondary education, fourth quintile, adjusted location parity index (LPIA)
## 18259                                                                                                                                                                                                                      Completion rate, lower secondary education, fourth quintile, male (%)
## 18260                                                                                                                                                                                   Completion rate, lower secondary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18261                                                                                                                                                                                                               Completion rate, lower secondary education, richest quintile, both sexes (%)
## 18262                                                                                                                                                                                                                   Completion rate, lower secondary education, richest quintile, female (%)
## 18263                                                                                                                                                                                Completion rate, lower secondary education, richest quintile, female, adjusted location parity index (LPIA)
## 18264                                                                                                                                                                                          Completion rate, lower secondary education, richest quintile, adjusted gender parity index (GPIA)
## 18265                                                                                                                                                                                        Completion rate, lower secondary education, richest quintile, adjusted location parity index (LPIA)
## 18266                                                                                                                                                                                                                     Completion rate, lower secondary education, richest quintile, male (%)
## 18267                                                                                                                                                                                  Completion rate, lower secondary education, richest quintile, male, adjusted location parity index (LPIA)
## 18268                                                                                                                                                                                                                          Completion rate, lower secondary education, rural, both sexes (%)
## 18269                                                                                                                                                                                                                              Completion rate, lower secondary education, rural, female (%)
## 18270                                                                                                                                                                                             Completion rate, lower secondary education, rural, female, adjusted wealth parity index (WPIA)
## 18271                                                                                                                                                                                                     Completion rate, lower secondary education, rural, adjusted gender parity index (GPIA)
## 18272                                                                                                                                                                                                                                Completion rate, lower secondary education, rural, male (%)
## 18273                                                                                                                                                                                               Completion rate, lower secondary education, rural, male, adjusted wealth parity index (WPIA)
## 18274                                                                                                                                                                                                        Completion rate, lower secondary education, rural, poorest quintile, both sexes (%)
## 18275                                                                                                                                                                                                            Completion rate, lower secondary education, rural, poorest quintile, female (%)
## 18276                                                                                                                                                                                   Completion rate, lower secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18277                                                                                                                                                                                                              Completion rate, lower secondary education, rural, poorest quintile, male (%)
## 18278                                                                                                                                                                                                         Completion rate, lower secondary education, rural, second quintile, both sexes (%)
## 18279                                                                                                                                                                                                             Completion rate, lower secondary education, rural, second quintile, female (%)
## 18280                                                                                                                                                                                    Completion rate, lower secondary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18281                                                                                                                                                                                                               Completion rate, lower secondary education, rural, second quintile, male (%)
## 18282                                                                                                                                                                                                         Completion rate, lower secondary education, rural, middle quintile, both sexes (%)
## 18283                                                                                                                                                                                                             Completion rate, lower secondary education, rural, middle quintile, female (%)
## 18284                                                                                                                                                                                    Completion rate, lower secondary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18285                                                                                                                                                                                                               Completion rate, lower secondary education, rural, middle quintile, male (%)
## 18286                                                                                                                                                                                                         Completion rate, lower secondary education, rural, fourth quintile, both sexes (%)
## 18287                                                                                                                                                                                                             Completion rate, lower secondary education, rural, fourth quintile, female (%)
## 18288                                                                                                                                                                                    Completion rate, lower secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18289                                                                                                                                                                                                               Completion rate, lower secondary education, rural, fourth quintile, male (%)
## 18290                                                                                                                                                                                                        Completion rate, lower secondary education, rural, richest quintile, both sexes (%)
## 18291                                                                                                                                                                                                            Completion rate, lower secondary education, rural, richest quintile, female (%)
## 18292                                                                                                                                                                                   Completion rate, lower secondary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18293                                                                                                                                                                                                              Completion rate, lower secondary education, rural, richest quintile, male (%)
## 18294                                                                                                                                                                                                     Completion rate, lower secondary education, rural, adjusted wealth parity index (WPIA)
## 18295                                                                                                                                                                                                                          Completion rate, lower secondary education, urban, both sexes (%)
## 18296                                                                                                                                                                                                                              Completion rate, lower secondary education, urban, female (%)
## 18297                                                                                                                                                                                             Completion rate, lower secondary education, urban, female, adjusted wealth parity index (WPIA)
## 18298                                                                                                                                                                                                     Completion rate, lower secondary education, urban, adjusted gender parity index (GPIA)
## 18299                                                                                                                                                                                                                                Completion rate, lower secondary education, urban, male (%)
## 18300                                                                                                                                                                                               Completion rate, lower secondary education, urban, male, adjusted wealth parity index (WPIA)
## 18301                                                                                                                                                                                                        Completion rate, lower secondary education, urban, poorest quintile, both sexes (%)
## 18302                                                                                                                                                                                                            Completion rate, lower secondary education, urban, poorest quintile, female (%)
## 18303                                                                                                                                                                                   Completion rate, lower secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18304                                                                                                                                                                                                              Completion rate, lower secondary education, urban, poorest quintile, male (%)
## 18305                                                                                                                                                                                                         Completion rate, lower secondary education, urban, second quintile, both sexes (%)
## 18306                                                                                                                                                                                                             Completion rate, lower secondary education, urban, second quintile, female (%)
## 18307                                                                                                                                                                                    Completion rate, lower secondary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18308                                                                                                                                                                                                               Completion rate, lower secondary education, urban, second quintile, male (%)
## 18309                                                                                                                                                                                                         Completion rate, lower secondary education, urban, middle quintile, both sexes (%)
## 18310                                                                                                                                                                                                             Completion rate, lower secondary education, urban, middle quintile, female (%)
## 18311                                                                                                                                                                                    Completion rate, lower secondary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18312                                                                                                                                                                                                               Completion rate, lower secondary education, urban, middle quintile, male (%)
## 18313                                                                                                                                                                                                         Completion rate, lower secondary education, urban, fourth quintile, both sexes (%)
## 18314                                                                                                                                                                                                             Completion rate, lower secondary education, urban, fourth quintile, female (%)
## 18315                                                                                                                                                                                    Completion rate, lower secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18316                                                                                                                                                                                                               Completion rate, lower secondary education, urban, fourth quintile, male (%)
## 18317                                                                                                                                                                                                        Completion rate, lower secondary education, urban, richest quintile, both sexes (%)
## 18318                                                                                                                                                                                                            Completion rate, lower secondary education, urban, richest quintile, female (%)
## 18319                                                                                                                                                                                   Completion rate, lower secondary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18320                                                                                                                                                                                                              Completion rate, lower secondary education, urban, richest quintile, male (%)
## 18321                                                                                                                                                                                                     Completion rate, lower secondary education, urban, adjusted wealth parity index (WPIA)
## 18322                                                                                                                                                                                                            Completion rate, lower secondary education, adjusted wealth parity index (WPIA)
## 18323                                                                                                                                                                                                                                 Completion rate, upper secondary education, both sexes (%)
## 18324                                                                                                                                                                                                                                     Completion rate, upper secondary education, female (%)
## 18325                                                                                                                                                                                                  Completion rate, upper secondary education, female, adjusted location parity index (LPIA)
## 18326                                                                                                                                                                                                    Completion rate, upper secondary education, female, adjusted wealth parity index (WPIA)
## 18327                                                                                                                                                                                                            Completion rate, upper secondary education, adjusted gender parity index (GPIA)
## 18328                                                                                                                                                                                                          Completion rate, upper secondary education, adjusted location parity index (LPIA)
## 18329                                                                                                                                                                                                                                       Completion rate, upper secondary education, male (%)
## 18330                                                                                                                                                                                                    Completion rate, upper secondary education, male, adjusted location parity index (LPIA)
## 18331                                                                                                                                                                                                      Completion rate, upper secondary education, male, adjusted wealth parity index (WPIA)
## 18332                                                                                                                                                                                                               Completion rate, upper secondary education, poorest quintile, both sexes (%)
## 18333                                                                                                                                                                                                                   Completion rate, upper secondary education, poorest quintile, female (%)
## 18334                                                                                                                                                                                Completion rate, upper secondary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18335                                                                                                                                                                                          Completion rate, upper secondary education, poorest quintile, adjusted gender parity index (GPIA)
## 18336                                                                                                                                                                                        Completion rate, upper secondary education, poorest quintile, adjusted location parity index (LPIA)
## 18337                                                                                                                                                                                                                     Completion rate, upper secondary education, poorest quintile, male (%)
## 18338                                                                                                                                                                                  Completion rate, upper secondary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18339                                                                                                                                                                                                                Completion rate, upper secondary education, second quintile, both sexes (%)
## 18340                                                                                                                                                                                                                    Completion rate, upper secondary education, second quintile, female (%)
## 18341                                                                                                                                                                                 Completion rate, upper secondary education, second quintile, female, adjusted location parity index (LPIA)
## 18342                                                                                                                                                                                           Completion rate, upper secondary education, second quintile, adjusted gender parity index (GPIA)
## 18343                                                                                                                                                                                         Completion rate, upper secondary education, second quintile, adjusted location parity index (LPIA)
## 18344                                                                                                                                                                                                                      Completion rate, upper secondary education, second quintile, male (%)
## 18345                                                                                                                                                                                   Completion rate, upper secondary education, second quintile, male, adjusted location parity index (LPIA)
## 18346                                                                                                                                                                                                                Completion rate, upper secondary education, middle quintile, both sexes (%)
## 18347                                                                                                                                                                                                                    Completion rate, upper secondary education, middle quintile, female (%)
## 18348                                                                                                                                                                                 Completion rate, upper secondary education, middle quintile, female, adjusted location parity index (LPIA)
## 18349                                                                                                                                                                                           Completion rate, upper secondary education, middle quintile, adjusted gender parity index (GPIA)
## 18350                                                                                                                                                                                         Completion rate, upper secondary education, middle quintile, adjusted location parity index (LPIA)
## 18351                                                                                                                                                                                                                      Completion rate, upper secondary education, middle quintile, male (%)
## 18352                                                                                                                                                                                   Completion rate, upper secondary education, middle quintile, male, adjusted location parity index (LPIA)
## 18353                                                                                                                                                                                                                Completion rate, upper secondary education, fourth quintile, both sexes (%)
## 18354                                                                                                                                                                                                                    Completion rate, upper secondary education, fourth quintile, female (%)
## 18355                                                                                                                                                                                 Completion rate, upper secondary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18356                                                                                                                                                                                           Completion rate, upper secondary education, fourth quintile, adjusted gender parity index (GPIA)
## 18357                                                                                                                                                                                         Completion rate, upper secondary education, fourth quintile, adjusted location parity index (LPIA)
## 18358                                                                                                                                                                                                                      Completion rate, upper secondary education, fourth quintile, male (%)
## 18359                                                                                                                                                                                   Completion rate, upper secondary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18360                                                                                                                                                                                                               Completion rate, upper secondary education, richest quintile, both sexes (%)
## 18361                                                                                                                                                                                                                   Completion rate, upper secondary education, richest quintile, female (%)
## 18362                                                                                                                                                                                Completion rate, upper secondary education, richest quintile, female, adjusted location parity index (LPIA)
## 18363                                                                                                                                                                                          Completion rate, upper secondary education, richest quintile, adjusted gender parity index (GPIA)
## 18364                                                                                                                                                                                        Completion rate, upper secondary education, richest quintile, adjusted location parity index (LPIA)
## 18365                                                                                                                                                                                                                     Completion rate, upper secondary education, richest quintile, male (%)
## 18366                                                                                                                                                                                  Completion rate, upper secondary education, richest quintile, male, adjusted location parity index (LPIA)
## 18367                                                                                                                                                                                                                          Completion rate, upper secondary education, rural, both sexes (%)
## 18368                                                                                                                                                                                                                              Completion rate, upper secondary education, rural, female (%)
## 18369                                                                                                                                                                                             Completion rate, upper secondary education, rural, female, adjusted wealth parity index (WPIA)
## 18370                                                                                                                                                                                                     Completion rate, upper secondary education, rural, adjusted gender parity index (GPIA)
## 18371                                                                                                                                                                                                                                Completion rate, upper secondary education, rural, male (%)
## 18372                                                                                                                                                                                               Completion rate, upper secondary education, rural, male, adjusted wealth parity index (WPIA)
## 18373                                                                                                                                                                                                        Completion rate, upper secondary education, rural, poorest quintile, both sexes (%)
## 18374                                                                                                                                                                                                            Completion rate, upper secondary education, rural, poorest quintile, female (%)
## 18375                                                                                                                                                                                   Completion rate, upper secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18376                                                                                                                                                                                                              Completion rate, upper secondary education, rural, poorest quintile, male (%)
## 18377                                                                                                                                                                                                         Completion rate, upper secondary education, rural, second quintile, both sexes (%)
## 18378                                                                                                                                                                                                             Completion rate, upper secondary education, rural, second quintile, female (%)
## 18379                                                                                                                                                                                    Completion rate, upper secondary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18380                                                                                                                                                                                                               Completion rate, upper secondary education, rural, second quintile, male (%)
## 18381                                                                                                                                                                                                         Completion rate, upper secondary education, rural, middle quintile, both sexes (%)
## 18382                                                                                                                                                                                                             Completion rate, upper secondary education, rural, middle quintile, female (%)
## 18383                                                                                                                                                                                    Completion rate, upper secondary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18384                                                                                                                                                                                                               Completion rate, upper secondary education, rural, middle quintile, male (%)
## 18385                                                                                                                                                                                                         Completion rate, upper secondary education, rural, fourth quintile, both sexes (%)
## 18386                                                                                                                                                                                                             Completion rate, upper secondary education, rural, fourth quintile, female (%)
## 18387                                                                                                                                                                                    Completion rate, upper secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18388                                                                                                                                                                                                               Completion rate, upper secondary education, rural, fourth quintile, male (%)
## 18389                                                                                                                                                                                                        Completion rate, upper secondary education, rural, richest quintile, both sexes (%)
## 18390                                                                                                                                                                                                            Completion rate, upper secondary education, rural, richest quintile, female (%)
## 18391                                                                                                                                                                                   Completion rate, upper secondary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18392                                                                                                                                                                                                              Completion rate, upper secondary education, rural, richest quintile, male (%)
## 18393                                                                                                                                                                                                     Completion rate, upper secondary education, rural, adjusted wealth parity index (WPIA)
## 18394                                                                                                                                                                                                                          Completion rate, upper secondary education, urban, both sexes (%)
## 18395                                                                                                                                                                                                                              Completion rate, upper secondary education, urban, female (%)
## 18396                                                                                                                                                                                             Completion rate, upper secondary education, urban, female, adjusted wealth parity index (WPIA)
## 18397                                                                                                                                                                                                     Completion rate, upper secondary education, urban, adjusted gender parity index (GPIA)
## 18398                                                                                                                                                                                                                                Completion rate, upper secondary education, urban, male (%)
## 18399                                                                                                                                                                                               Completion rate, upper secondary education, urban, male, adjusted wealth parity index (WPIA)
## 18400                                                                                                                                                                                                        Completion rate, upper secondary education, urban, poorest quintile, both sexes (%)
## 18401                                                                                                                                                                                                            Completion rate, upper secondary education, urban, poorest quintile, female (%)
## 18402                                                                                                                                                                                   Completion rate, upper secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18403                                                                                                                                                                                                              Completion rate, upper secondary education, urban, poorest quintile, male (%)
## 18404                                                                                                                                                                                                         Completion rate, upper secondary education, urban, second quintile, both sexes (%)
## 18405                                                                                                                                                                                                             Completion rate, upper secondary education, urban, second quintile, female (%)
## 18406                                                                                                                                                                                    Completion rate, upper secondary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18407                                                                                                                                                                                                               Completion rate, upper secondary education, urban, second quintile, male (%)
## 18408                                                                                                                                                                                                         Completion rate, upper secondary education, urban, middle quintile, both sexes (%)
## 18409                                                                                                                                                                                                             Completion rate, upper secondary education, urban, middle quintile, female (%)
## 18410                                                                                                                                                                                    Completion rate, upper secondary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18411                                                                                                                                                                                                               Completion rate, upper secondary education, urban, middle quintile, male (%)
## 18412                                                                                                                                                                                                         Completion rate, upper secondary education, urban, fourth quintile, both sexes (%)
## 18413                                                                                                                                                                                                             Completion rate, upper secondary education, urban, fourth quintile, female (%)
## 18414                                                                                                                                                                                    Completion rate, upper secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18415                                                                                                                                                                                                               Completion rate, upper secondary education, urban, fourth quintile, male (%)
## 18416                                                                                                                                                                                                        Completion rate, upper secondary education, urban, richest quintile, both sexes (%)
## 18417                                                                                                                                                                                                            Completion rate, upper secondary education, urban, richest quintile, female (%)
## 18418                                                                                                                                                                                   Completion rate, upper secondary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18419                                                                                                                                                                                                              Completion rate, upper secondary education, urban, richest quintile, male (%)
## 18420                                                                                                                                                                                                     Completion rate, upper secondary education, urban, adjusted wealth parity index (WPIA)
## 18421                                                                                                                                                                                                            Completion rate, upper secondary education, adjusted wealth parity index (WPIA)
## 18422                                                                                                                                                                                                                                    Enrolment in early childhood education, female (number)
## 18423                                                                                                                                                                                                                                      Enrolment in early childhood education, male (number)
## 18424                                                                                                                                                                                                                                Enrolment in early childhood education, both sexes (number)
## 18425                                                                                                                                                                                                           Enrolment in early childhood educational development programmes, female (number)
## 18426                                                                                                                                                                                                             Enrolment in early childhood educational development programmes, male (number)
## 18427                                                                                                                                                                                                       Enrolment in early childhood educational development programmes, both sexes (number)
## 18428                                                                                                                                                                                                                                          Enrolment in pre-primary education, male (number)
## 18429                                                                                                                                                                                                                                              Enrolment in primary education, male (number)
## 18430                                                                                                                                                                                                                                Enrolment in lower secondary education, both sexes (number)
## 18431                                                                                                                                                                                                                                    Enrolment in lower secondary education, female (number)
## 18432                                                                                                                                                                                                                                      Enrolment in lower secondary education, male (number)
## 18433                                                                                                                                                                                                                                            Enrolment in secondary education, male (number)
## 18434                                                                                                                                                                                                                                Enrolment in upper secondary education, both sexes (number)
## 18435                                                                                                                                                                                                                                    Enrolment in upper secondary education, female (number)
## 18436                                                                                                                                                                                                                                      Enrolment in upper secondary education, male (number)
## 18437                                                                                                                                                                                                                    Enrolment in post-secondary non-tertiary education, both sexes (number)
## 18438                                                                                                                                                                                                                        Enrolment in post-secondary non-tertiary education, female (number)
## 18439                                                                                                                                                                                                                          Enrolment in post-secondary non-tertiary education, male (number)
## 18440                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 5 programmes, both sexes (number)
## 18441                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 5 programmes, female (number)
## 18442                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 5 programmes, male (number)
## 18443                                                                                                                                                                                                                             Enrolment in tertiary education, all programmes, male (number)
## 18444                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 6 programmes, both sexes (number)
## 18445                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 6 programmes, female (number)
## 18446                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 6 programmes, male (number)
## 18447                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 7 programmes, both sexes (number)
## 18448                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 7 programmes, female (number)
## 18449                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 7 programmes, male (number)
## 18450                                                                                                                                                                                                                   Enrolment in tertiary education, ISCED 8 programmes, both sexes (number)
## 18451                                                                                                                                                                                                                       Enrolment in tertiary education, ISCED 8 programmes, female (number)
## 18452                                                                                                                                                                                                                         Enrolment in tertiary education, ISCED 8 programmes, male (number)
## 18453                                                                                                                                                                                              UIS: Percentage of population age 25+ whose highest level of education is primary, both sexes
## 18454                                                                                                                                                                                                  UIS: Percentage of population age 25+ whose highest level of education is primary, female
## 18455                                                                                                                                                                                                    UIS: Percentage of population age 25+ whose highest level of education is primary, male
## 18456                                                                                                                                                                                 UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Total
## 18457                                                                                                                                                                                UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Female
## 18458                                                                                                                                                                                  UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Male
## 18459                                                                                                                                                   UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Adjusted Gender Parity Index (GPIA)
## 18460                                                                                                                                                                                      UIS: Percentage of population age 25+ whose highest level of education is lower secondary, both sexes
## 18461                                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is lower secondary, female
## 18462                                                                                                                                                                                            UIS: Percentage of population age 25+ whose highest level of education is lower secondary, male
## 18463                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Total
## 18464                                                                                                                                                                        UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Female
## 18465                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Male
## 18466                                                                                                                                           UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Adjusted Gender Parity Index (GPIA)
## 18467                                                                                                                                                                                      UIS: Percentage of population age 25+ whose highest level of education is upper secondary, both sexes
## 18468                                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is upper secondary, female
## 18469                                                                                                                                                                                            UIS: Percentage of population age 25+ whose highest level of education is upper secondary, male
## 18470                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Total
## 18471                                                                                                                                                                        UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Female
## 18472                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Male
## 18473                                                                                                                                           UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Adjusted Gender Parity Index (GPIA)
## 18474                                                                                                                                                                          UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, both sexes
## 18475                                                                                                                                                                              UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, female
## 18476                                                                                                                                                                                UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, male
## 18477                                                                                                                                                                          UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Total
## 18478                                                                                                                                                                         UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Female
## 18479                                                                                                                                                                           UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Male
## 18480                                                                                                                                            UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Adjusted Gender Parity Index (GPIA)
## 18481                                                                                                                                                                                 UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, both sexes
## 18482                                                                                                                                                                                     UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, female
## 18483                                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, male
## 18484                                                                                                                                                                     UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Total
## 18485                                                                                                                                                                    UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Female
## 18486                                                                                                                                       UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Adjusted Gender Parity Index (GPIA)
## 18487                                                                                                                                                                      UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Male
## 18488                                                                                                                                                                   UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), both sexes
## 18489                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), female
## 18490                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), male
## 18491                                                                                                                                                                 UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Total
## 18492                                                                                                                                                                UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Female
## 18493                                                                                                                                   UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Adjusted Gender Parity Index (GPIA)
## 18494                                                                                                                                                                  UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Male
## 18495                                                                                                                                                                     UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), both sexes
## 18496                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), female
## 18497                                                                                                                                                                           UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), male
## 18498                                                                                                                                                                   UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Total
## 18499                                                                                                                                                                  UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Female
## 18500                                                                                                                                     UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Adjusted Gender Parity Index (GPIA)
## 18501                                                                                                                                                                    UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Male
## 18502                                                                                                                                                                                                UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Total
## 18503                                                                                                                                                                                               UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Female
## 18504                                                                                                                                                                  UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Adjusted Gender Parity Index (GPIA)
## 18505                                                                                                                                                                                                 UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Male
## 18506                                                                                                                                                                                                         UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, both sexes
## 18507                                                                                                                                                                                                             UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, female
## 18508                                                                                                                                                                                                               UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, male
## 18509                                                                                                                                                                                                                        UIS: Percentage of population age 25+ with no schooling, both sexes
## 18510                                                                                                                                                                                                                            UIS: Percentage of population age 25+ with no schooling, female
## 18511                                                                                                                                                                                                                              UIS: Percentage of population age 25+ with no schooling, male
## 18512                                                                                                                                                                                   UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, both sexes
## 18513                                                                                                                                                                                       UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, female
## 18514                                                                                                                                                                                         UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, male
## 18515                                                                                                                                                                                                          UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Total
## 18516                                                                                                                                                                                                         UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Female
## 18517                                                                                                                                                                            UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Adjusted Gender Parity Index (GPIA)
## 18518                                                                                                                                                                                                           UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Male
## 18519                                                                                                                                                                                                           UIS: Percentage of population age 25+ with unknown educational attainment. Total
## 18520                                                                                                                                                                                                          UIS: Percentage of population age 25+ with unknown educational attainment. Female
## 18521                                                                                                                                                                                                            UIS: Percentage of population age 25+ with unknown educational attainment. Male
## 18522                                                                                                                                               Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, both sexes (%)
## 18523                                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, both sexes (%)
## 18524                                                                                                                              Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, female (%)
## 18525                                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Cognitive dimension‚ adjusted gender parity index (GPIA)
## 18526                                                                                                                                Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, male (%)
## 18527                                                                                                                                                   Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, female (%)
## 18528                                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ adjusted gender parity index (GPIA)
## 18529                                                                                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, male (%)
## 18530                                                                                                          Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, both sexes (%)
## 18531                                                                                                              Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, female (%)
## 18532                                                                                     Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Confidence‚ adjusted gender parity index (GPIA)
## 18533                                                                                                                Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, male (%)
## 18534                                                                                                           Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, both sexes (%)
## 18535                                                                                                               Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, female (%)
## 18536                                                                                      Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Enjoyment‚ adjusted gender parity index (GPIA)
## 18537                                                                                                                 Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, male (%)
## 18538                                                                                                                                                                                                             Proportion of 15-24 year-olds enrolled in vocational education, both sexes (%)
## 18539                                                                                                                                                                                                                 Proportion of 15-24 year-olds enrolled in vocational education, female (%)
## 18540                                                                                                                                                                                        Proportion of 15-24 year-olds enrolled in vocational education, adjusted gender parity index (GPIA)
## 18541                                                                                                                                                                                                                   Proportion of 15-24 year-olds enrolled in vocational education, male (%)
## 18542                                                                                                                                                                                                          Percentage of students in lower secondary vocational education who are female (%)
## 18543                                                                                                                                                                                                          Percentage of students in upper secondary vocational education who are female (%)
## 18544                                                                                                                                                                                              Percentage of students in post-secondary non-tertiary vocational education who are female (%)
## 18545                                                                                                                                                                                                     Female share of graduates in Business, Administration and Law programmes, tertiary (%)
## 18546                                                                                                                                                                                           Female share of graduates in Information and Communication Technologies programmes, tertiary (%)
## 18547                                                                                                                                                                   Female share of graduates in other fields than Science, Technology, Engineering and Mathematics programmes, tertiary (%)
## 18548                                                                                                                                                               Percentage of students in primary education who have their first or home language as language of instruction, both sexes (%)
## 18549                                                                                                                                                                   Percentage of students in primary education who have their first or home language as language of instruction, female (%)
## 18550                                                                                                                                          Percentage of students in primary education who have their first or home language as language of instruction, adjusted gender parity index (GPIA)
## 18551                                                                                                                       Percentage of students in primary education who have their first or home language as language of instruction, very affluent socioeconomic background, both sexes (%)
## 18552                                                                                                                           Percentage of students in primary education who have their first or home language as language of instruction, very poor socioeconomic background, both sexes (%)
## 18553                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, adjusted location parity index (LPIA)
## 18554                                                                                                                                                                     Percentage of students in primary education who have their first or home language as language of instruction, male (%)
## 18555                                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, rural, both sexes (%)
## 18556                                                                                                                                                        Percentage of students in primary education who have their first or home language as language of instruction, urban, both sexes (%)
## 18557                                                                                                                                          Percentage of students in primary education who have their first or home language as language of instruction, adjusted wealth parity index (WPIA)
## 18558                                                                                                                                                                Percentage of graduates from tertiary education graduating from Business, Administration and Law programmes, both sexes (%)
## 18559                                                                                                                                                             Percentage of graduates from Science, Technology, Engineering and Mathematics programmes in tertiary education, both sexes (%)
## 18560                                                                                                                                                      Percentage of graduates from tertiary education graduating from Information and Communication Technologies programmes, both sexes (%)
## 18561                                                                                                                                                  Percentage of graduates from programmes other than Science, Technology, Engineering and Mathematics in tertiary education, both sexes (%)
## 18562                                                                                                                                                                                                                     Percentage of teachers in lower secondary education who are female (%)
## 18563                                                                                                                                                                                                                     Percentage of teachers in upper secondary education who are female (%)
## 18564                                                                                                                                                                                                         Percentage of teachers in post-secondary non-tertiary education who are female (%)
## 18565                                                                                                                                                                                                                              Gross attendance ratio for tertiary education, both sexes (%)
## 18566                                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, female (%)
## 18567                                                                                                                                                                                               Gross attendance ratio for tertiary education, female, adjusted location parity index (LPIA)
## 18568                                                                                                                                                                                                 Gross attendance ratio for tertiary education, female, adjusted wealth parity index (WPIA)
## 18569                                                                                                                                                                                                         Gross attendance ratio for tertiary education, adjusted gender parity index (GPIA)
## 18570                                                                                                                                                                                                       Gross attendance ratio for tertiary education, adjusted location parity index (LPIA)
## 18571                                                                                                                                                                                                                                    Gross attendance ratio for tertiary education, male (%)
## 18572                                                                                                                                                                                                 Gross attendance ratio for tertiary education, male, adjusted location parity index (LPIA)
## 18573                                                                                                                                                                                                   Gross attendance ratio for tertiary education, male, adjusted wealth parity index (WPIA)
## 18574                                                                                                                                                                                                            Gross attendance ratio for tertiary education, poorest quintile, both sexes (%)
## 18575                                                                                                                                                                                                                Gross attendance ratio for tertiary education, poorest quintile, female (%)
## 18576                                                                                                                                                                             Gross attendance ratio for tertiary education, poorest quintile, female, adjusted location parity index (LPIA)
## 18577                                                                                                                                                                                       Gross attendance ratio for tertiary education, poorest quintile, adjusted gender parity index (GPIA)
## 18578                                                                                                                                                                                     Gross attendance ratio for tertiary education, poorest quintile, adjusted location parity index (LPIA)
## 18579                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, poorest quintile, male (%)
## 18580                                                                                                                                                                               Gross attendance ratio for tertiary education, poorest quintile, male, adjusted location parity index (LPIA)
## 18581                                                                                                                                                                                                             Gross attendance ratio for tertiary education, second quintile, both sexes (%)
## 18582                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, second quintile, female (%)
## 18583                                                                                                                                                                              Gross attendance ratio for tertiary education, second quintile, female, adjusted location parity index (LPIA)
## 18584                                                                                                                                                                                        Gross attendance ratio for tertiary education, second quintile, adjusted gender parity index (GPIA)
## 18585                                                                                                                                                                                      Gross attendance ratio for tertiary education, second quintile, adjusted location parity index (LPIA)
## 18586                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, second quintile, male (%)
## 18587                                                                                                                                                                                Gross attendance ratio for tertiary education, second quintile, male, adjusted location parity index (LPIA)
## 18588                                                                                                                                                                                                             Gross attendance ratio for tertiary education, middle quintile, both sexes (%)
## 18589                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, middle quintile, female (%)
## 18590                                                                                                                                                                              Gross attendance ratio for tertiary education, middle quintile, female, adjusted location parity index (LPIA)
## 18591                                                                                                                                                                                        Gross attendance ratio for tertiary education, middle quintile, adjusted gender parity index (GPIA)
## 18592                                                                                                                                                                                      Gross attendance ratio for tertiary education, middle quintile, adjusted location parity index (LPIA)
## 18593                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, middle quintile, male (%)
## 18594                                                                                                                                                                                Gross attendance ratio for tertiary education, middle quintile, male, adjusted location parity index (LPIA)
## 18595                                                                                                                                                                                                             Gross attendance ratio for tertiary education, fourth quintile, both sexes (%)
## 18596                                                                                                                                                                                                                 Gross attendance ratio for tertiary education, fourth quintile, female (%)
## 18597                                                                                                                                                                              Gross attendance ratio for tertiary education, fourth quintile, female, adjusted location parity index (LPIA)
## 18598                                                                                                                                                                                        Gross attendance ratio for tertiary education, fourth quintile, adjusted gender parity index (GPIA)
## 18599                                                                                                                                                                                      Gross attendance ratio for tertiary education, fourth quintile, adjusted location parity index (LPIA)
## 18600                                                                                                                                                                                                                   Gross attendance ratio for tertiary education, fourth quintile, male (%)
## 18601                                                                                                                                                                                Gross attendance ratio for tertiary education, fourth quintile, male, adjusted location parity index (LPIA)
## 18602                                                                                                                                                                                                            Gross attendance ratio for tertiary education, richest quintile, both sexes (%)
## 18603                                                                                                                                                                                                                Gross attendance ratio for tertiary education, richest quintile, female (%)
## 18604                                                                                                                                                                             Gross attendance ratio for tertiary education, richest quintile, female, adjusted location parity index (LPIA)
## 18605                                                                                                                                                                                       Gross attendance ratio for tertiary education, richest quintile, adjusted gender parity index (GPIA)
## 18606                                                                                                                                                                                     Gross attendance ratio for tertiary education, richest quintile, adjusted location parity index (LPIA)
## 18607                                                                                                                                                                                                                  Gross attendance ratio for tertiary education, richest quintile, male (%)
## 18608                                                                                                                                                                               Gross attendance ratio for tertiary education, richest quintile, male, adjusted location parity index (LPIA)
## 18609                                                                                                                                                                                                                       Gross attendance ratio for tertiary education, rural, both sexes (%)
## 18610                                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, female (%)
## 18611                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, female, adjusted wealth parity index (WPIA)
## 18612                                                                                                                                                                                                  Gross attendance ratio for tertiary education, rural, adjusted gender parity index (GPIA)
## 18613                                                                                                                                                                                                                             Gross attendance ratio for tertiary education, rural, male (%)
## 18614                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, male, adjusted wealth parity index (WPIA)
## 18615                                                                                                                                                                                                     Gross attendance ratio for tertiary education, rural, poorest quintile, both sexes (%)
## 18616                                                                                                                                                                                                         Gross attendance ratio for tertiary education, rural, poorest quintile, female (%)
## 18617                                                                                                                                                                                Gross attendance ratio for tertiary education, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18618                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, poorest quintile, male (%)
## 18619                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, second quintile, both sexes (%)
## 18620                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, second quintile, female (%)
## 18621                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, second quintile, adjusted gender parity index (GPIA)
## 18622                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, second quintile, male (%)
## 18623                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, middle quintile, both sexes (%)
## 18624                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, middle quintile, female (%)
## 18625                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, middle quintile, adjusted gender parity index (GPIA)
## 18626                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, middle quintile, male (%)
## 18627                                                                                                                                                                                                      Gross attendance ratio for tertiary education, rural, fourth quintile, both sexes (%)
## 18628                                                                                                                                                                                                          Gross attendance ratio for tertiary education, rural, fourth quintile, female (%)
## 18629                                                                                                                                                                                 Gross attendance ratio for tertiary education, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18630                                                                                                                                                                                                            Gross attendance ratio for tertiary education, rural, fourth quintile, male (%)
## 18631                                                                                                                                                                                                     Gross attendance ratio for tertiary education, rural, richest quintile, both sexes (%)
## 18632                                                                                                                                                                                                         Gross attendance ratio for tertiary education, rural, richest quintile, female (%)
## 18633                                                                                                                                                                                Gross attendance ratio for tertiary education, rural, richest quintile, adjusted gender parity index (GPIA)
## 18634                                                                                                                                                                                                           Gross attendance ratio for tertiary education, rural, richest quintile, male (%)
## 18635                                                                                                                                                                                                  Gross attendance ratio for tertiary education, rural, adjusted wealth parity index (WPIA)
## 18636                                                                                                                                                                                                                       Gross attendance ratio for tertiary education, urban, both sexes (%)
## 18637                                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, female (%)
## 18638                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, female, adjusted wealth parity index (WPIA)
## 18639                                                                                                                                                                                                  Gross attendance ratio for tertiary education, urban, adjusted gender parity index (GPIA)
## 18640                                                                                                                                                                                                                             Gross attendance ratio for tertiary education, urban, male (%)
## 18641                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, male, adjusted wealth parity index (WPIA)
## 18642                                                                                                                                                                                                     Gross attendance ratio for tertiary education, urban, poorest quintile, both sexes (%)
## 18643                                                                                                                                                                                                         Gross attendance ratio for tertiary education, urban, poorest quintile, female (%)
## 18644                                                                                                                                                                                Gross attendance ratio for tertiary education, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18645                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, poorest quintile, male (%)
## 18646                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, second quintile, both sexes (%)
## 18647                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, second quintile, female (%)
## 18648                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, second quintile, adjusted gender parity index (GPIA)
## 18649                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, second quintile, male (%)
## 18650                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, middle quintile, both sexes (%)
## 18651                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, middle quintile, female (%)
## 18652                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, middle quintile, adjusted gender parity index (GPIA)
## 18653                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, middle quintile, male (%)
## 18654                                                                                                                                                                                                      Gross attendance ratio for tertiary education, urban, fourth quintile, both sexes (%)
## 18655                                                                                                                                                                                                          Gross attendance ratio for tertiary education, urban, fourth quintile, female (%)
## 18656                                                                                                                                                                                 Gross attendance ratio for tertiary education, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18657                                                                                                                                                                                                            Gross attendance ratio for tertiary education, urban, fourth quintile, male (%)
## 18658                                                                                                                                                                                                     Gross attendance ratio for tertiary education, urban, richest quintile, both sexes (%)
## 18659                                                                                                                                                                                                         Gross attendance ratio for tertiary education, urban, richest quintile, female (%)
## 18660                                                                                                                                                                                Gross attendance ratio for tertiary education, urban, richest quintile, adjusted gender parity index (GPIA)
## 18661                                                                                                                                                                                                           Gross attendance ratio for tertiary education, urban, richest quintile, male (%)
## 18662                                                                                                                                                                                                  Gross attendance ratio for tertiary education, urban, adjusted wealth parity index (WPIA)
## 18663                                                                                                                                                                                                         Gross attendance ratio for tertiary education, adjusted wealth parity index (WPIA)
## 18664                                                                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, both sexes (%)
## 18665                                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, both sexes (%)
## 18666                                                                                                            Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, female (%)
## 18667                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, adjusted gender parity index (GPIA)
## 18668                                                                                                              Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, male (%)
## 18669                                                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, female (%)
## 18670                                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, adjusted gender parity index (GPIA)
## 18671                                                                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, male (%)
## 18672                                                                                           Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, both sexes (%)
## 18673                                                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, female (%)
## 18674                                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Freedom, adjusted gender parity index (GPIA)
## 18675                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, male (%)
## 18676                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, both sexes (%)
## 18677                                                                                       Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, female (%)
## 18678                                                              Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Gender equality, adjusted gender parity index (GPIA)
## 18679                                                                                         Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, male (%)
## 18680                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, both sexes (%)
## 18681                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, female (%)
## 18682                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Global-local thinking, adjusted gender parity index (GPIA)
## 18683                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, male (%)
## 18684                                                                                  Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, both sexes (%)
## 18685                                                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, female (%)
## 18686                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Multiculturalism, adjusted gender parity index (GPIA)
## 18687                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, male (%)
## 18688                                                                                             Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, both sexes (%)
## 18689                                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, female (%)
## 18690                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Peace, adjusted gender parity index (GPIA)
## 18691                                                                                                   Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, male (%)
## 18692                                                                           Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, both sexes (%)
## 18693                                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, female (%)
## 18694                                                      Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Sustainable development, adjusted gender parity index (GPIA)
## 18695                                                                                 Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, male (%)
## 18696                                                                                    Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, both sexes (%)
## 18697                                                                                        Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, female (%)
## 18698                                                               Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Social Justice, adjusted gender parity index (GPIA)
## 18699                                                                                          Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, male (%)
## 18700                                                                                                                                                                                                                           Gross enrolment ratio, early childhood education, both sexes (%)
## 18701                                                                                                                                                                                                                               Gross enrolment ratio, early childhood education, female (%)
## 18702                                                                                                                                                                                                      Gross enrolment ratio, early childhood education, adjusted gender parity index (GPIA)
## 18703                                                                                                                                                                                                                                 Gross enrolment ratio, early childhood education, male (%)
## 18704                                                                                                                                                                                                  Gross enrolment ratio, early childhood educational development programmes, both sexes (%)
## 18705                                                                                                                                                                                                      Gross enrolment ratio, early childhood educational development programmes, female (%)
## 18706                                                                                                                                                                             Gross enrolment ratio, early childhood educational development programmes, adjusted gender parity index (GPIA)
## 18707                                                                                                                                                                                                        Gross enrolment ratio, early childhood educational development programmes, male (%)
## 18708                                                                                                                                                                                                                    Gross enrolment ratio, pre-primary, adjusted gender parity index (GPIA)
## 18709                                                                                                                                                                                                                         Gross enrolment ratio, primary and lower secondary, both sexes (%)
## 18710                                                                                                                                                                                                                             Gross enrolment ratio, primary and lower secondary, female (%)
## 18711                                                                                                                                                                                                              Gross enrolment ratio, primary and lower secondary, gender parity index (GPI)
## 18712                                                                                                                                                                                                                               Gross enrolment ratio, primary and lower secondary, male (%)
## 18713                                                                                                                                                                                                                               Gross enrolment ratio, primary and secondary, both sexes (%)
## 18714                                                                                                                                                                                                                                   Gross enrolment ratio, primary and secondary, female (%)
## 18715                                                                                                                                                                                                                                     Gross enrolment ratio, primary and secondary, male (%)
## 18716                                                                                                                                                                                                                                     Gross enrolment ratio, primary to tertiary, female (%)
## 18717                                                                                                                                                                                                                      Gross enrolment ratio, primary to tertiary, gender parity index (GPI)
## 18718                                                                                                                                                                                                                                       Gross enrolment ratio, primary to tertiary, male (%)
## 18719                                                                                                                                                                                                                          Gross enrolment ratio, lower secondary, gender parity index (GPI)
## 18720                                                                                                                                                                                                                          Gross enrolment ratio, upper secondary, gender parity index (GPI)
## 18721                                                                                                                                                                                                                         Gross enrolment ratio, post-secondary non-tertiary, both sexes (%)
## 18722                                                                                                                                                                                                                             Gross enrolment ratio, post-secondary non-tertiary, female (%)
## 18723                                                                                                                                                                                                              Gross enrolment ratio, post-secondary non-tertiary, gender parity index (GPI)
## 18724                                                                                                                                                                                                                               Gross enrolment ratio, post-secondary non-tertiary, male (%)
## 18725                                                                                                                                                                                                          Gross enrolment ratio for tertiary education, adjusted gender parity index (GPIA)
## 18726                                                                                                                                                                       Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, gender parity index (GPI)
## 18727                                                                                                                                                                                                      Share of all students in lower secondary education enrolled in general programmes (%)
## 18728                                                                                                                                                                                                   Share of all students in lower secondary education enrolled in vocational programmes (%)
## 18729                                                                                                                                                                                                Share of female students in lower secondary education enrolled in vocational programmes (%)
## 18730                                                                                                                                                                                                  Share of male students in lower secondary education enrolled in vocational programmes (%)
## 18731                                                                                                                                                                                                            Share of all students in secondary education enrolled in general programmes (%)
## 18732                                                                                                                                                                                                      Share of all students in upper secondary education enrolled in general programmes (%)
## 18733                                                                                                                                                                                                   Share of all students in upper secondary education enrolled in vocational programmes (%)
## 18734                                                                                                                                                                                                Share of female students in upper secondary education enrolled in vocational programmes (%)
## 18735                                                                                                                                                                                                  Share of male students in upper secondary education enrolled in vocational programmes (%)
## 18736                                                                                                                                                                                          Share of all students in post-secondary non-tertiary education enrolled in general programmes (%)
## 18737                                                                                                                                                                                       Share of all students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18738                                                                                                                                                                                    Share of female students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18739                                                                                                                                                                                      Share of male students in post-secondary non-tertiary education enrolled in vocational programmes (%)
## 18740                                                                                                                                                                   Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), both sexes (%)
## 18741                                                                                                                                                                       Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), female (%)
## 18742                                                                                                                                              Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), adjusted gender parity index (GPIA)
## 18743                                                                                                                                                                         Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), male (%)
## 18744                                                                                                                                                                                                            Proportion of youth and adults who have connected and installed new devices (%)
## 18745                                                                                                                                                                                                    Proportion of youth and adults who have connected and installed new devices, female (%)
## 18746                                                                                                                                                                           Proportion of youth and adults who have connected and installed new devices, adjusted gender parity index (GPIA)
## 18747                                                                                                                                                                                                      Proportion of youth and adults who have connected and installed new devices, male (%)
## 18748                                                                                                                                                                                                               Proportion of youth and adults who have copied or moved a file or folder (%)
## 18749                                                                                                                                                                                                       Proportion of youth and adults who have copied or moved a file or folder, female (%)
## 18750                                                                                                                                                                              Proportion of youth and adults who have copied or moved a file or folder, adjusted gender parity index (GPIA)
## 18751                                                                                                                                                                                                         Proportion of youth and adults who have copied or moved a file or folder, male (%)
## 18752                                                                                                                                                                                    Proportion of youth and adults who have created electronic presentations with presentation software (%)
## 18753                                                                                                                                                                            Proportion of youth and adults who have created electronic presentations with presentation software, female (%)
## 18754                                                                                                                                                   Proportion of youth and adults who have created electronic presentations with presentation software, adjusted gender parity index (GPIA)
## 18755                                                                                                                                                                              Proportion of youth and adults who have created electronic presentations with presentation software, male (%)
## 18756                                                                                                                                                      Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document , both sexes (%)
## 18757                                                                                                                                                           Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, female (%)
## 18758                                                                                                                                  Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, adjusted gender parity index (GPIA)
## 18759                                                                                                                                                             Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, male (%)
## 18760                                                                                                                                                                                    Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, both sexes (%)
## 18761                                                                                                                                                                                        Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, female (%)
## 18762                                                                                                                                                               Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, adjusted gender parity index (GPIA)
## 18763                                                                                                                                                                                          Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, male (%)
## 18764                                                                                                                                                                  Proportion of youth and adults who have wrote a computer program using a specialised programming language, both sexes (%)
## 18765                                                                                                                                                                      Proportion of youth and adults who have wrote a computer program using a specialised programming language, female (%)
## 18766                                                                                                                                             Proportion of youth and adults who have wrote a computer program using a specialised programming language, adjusted gender parity index (GPIA)
## 18767                                                                                                                                                                        Proportion of youth and adults who have wrote a computer program using a specialised programming language, male (%)
## 18768                                                                                                                                                                               Proportion of youth and adults who have found, downloaded, installed and configured software, both sexes (%)
## 18769                                                                                                                                                                                   Proportion of youth and adults who have found, downloaded, installed and configured software, female (%)
## 18770                                                                                                                                                          Proportion of youth and adults who have found, downloaded, installed and configured software, adjusted gender parity index (GPIA)
## 18771                                                                                                                                                                                     Proportion of youth and adults who have found, downloaded, installed and configured software, male (%)
## 18772                                                                                                                                                                             Proportion of youth and adults who have transferred files between a computer and other devices, both sexes (%)
## 18773                                                                                                                                                                                 Proportion of youth and adults who have transferred files between a computer and other devices, female (%)
## 18774                                                                                                                                                        Proportion of youth and adults who have transferred files between a computer and other devices, adjusted gender parity index (GPIA)
## 18775                                                                                                                                                                                   Proportion of youth and adults who have transferred files between a computer and other devices, male (%)
## 18776                                                                                                                                                                                                                                    Illiterate population, 25-64 years, both sexes (number)
## 18777                                                                                                                                                                                                                                        Illiterate population, 25-64 years, female (number)
## 18778                                                                                                                                                                                                                                          Illiterate population, 25-64 years, male (number)
## 18779                                                                                                                                                                                                                                               Illiterate population, 25-64 years, % female
## 18780                                                                                                                                                                                                                              Youth illiterate population, 15-24 years, both sexes (number)
## 18781                                                                                                                                                                                                                                  Youth illiterate population, 15-24 years, female (number)
## 18782                                                                                                                                                                                                                                    Youth illiterate population, 15-24 years, male (number)
## 18783                                                                                                                                                                                                                                Adult illiterate population, 15+ years, both sexes (number)
## 18784                                                                                                                                                                                                                                    Adult illiterate population, 15+ years, female (number)
## 18785                                                                                                                                                                                                                                      Adult illiterate population, 15+ years, male (number)
## 18786                                                                                                                                                                                                                              Elderly illiterate population, 65+ years, both sexes (number)
## 18787                                                                                                                                                                                                                                  Elderly illiterate population, 65+ years, female (number)
## 18788                                                                                                                                                                                                                                    Elderly illiterate population, 65+ years, male (number)
## 18789                                                                                                                                                                                                                                         Youth illiterate population, 15-24 years, % female
## 18790                                                                                                                                                                                                                                           Adult illiterate population, 15+ years, % female
## 18791                                                                                                                                                                                                                                         Elderly illiterate population, 65+ years, % female
## 18792                                                                                                                                                                                                 Youth literacy rate, population 15-24 years, female, adjusted location parity index (LPIA)
## 18793                                                                                                                                                                                                           Youth literacy rate, population 15-24 years, adjusted gender parity index (GPIA)
## 18794                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, adjusted location parity index (LPIA)
## 18795                                                                                                                                                                                                   Youth literacy rate, population 15-24 years, male, adjusted location parity index (LPIA)
## 18796                                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, rural, both sexes (%)
## 18797                                                                                                                                                                                                                             Youth literacy rate, population 15-24 years, rural, female (%)
## 18798                                                                                                                                                                                                    Youth literacy rate, population 15-24 years, rural, adjusted gender parity index (GPIA)
## 18799                                                                                                                                                                                                                               Youth literacy rate, population 15-24 years, rural, male (%)
## 18800                                                                                                                                                                                                                         Youth literacy rate, population 15-24 years, urban, both sexes (%)
## 18801                                                                                                                                                                                                                             Youth literacy rate, population 15-24 years, urban, female (%)
## 18802                                                                                                                                                                                                    Youth literacy rate, population 15-24 years, urban, adjusted gender parity index (GPIA)
## 18803                                                                                                                                                                                                                               Youth literacy rate, population 15-24 years, urban, male (%)
## 18804                                                                                                                                                                                                   Adult literacy rate, population 15+ years, female, adjusted location parity index (LPIA)
## 18805                                                                                                                                                                                                             Adult literacy rate, population 15+ years, adjusted gender parity index (GPIA)
## 18806                                                                                                                                                                                                           Adult literacy rate, population 15+ years, adjusted location parity index (LPIA)
## 18807                                                                                                                                                                                                     Adult literacy rate, population 15+ years, male, adjusted location parity index (LPIA)
## 18808                                                                                                                                                                                                                           Adult literacy rate, population 15+ years, rural, both sexes (%)
## 18809                                                                                                                                                                                                                               Adult literacy rate, population 15+ years, rural, female (%)
## 18810                                                                                                                                                                                                      Adult literacy rate, population 15+ years, rural, adjusted gender parity index (GPIA)
## 18811                                                                                                                                                                                                                                 Adult literacy rate, population 15+ years, rural, male (%)
## 18812                                                                                                                                                                                                                           Adult literacy rate, population 15+ years, urban, both sexes (%)
## 18813                                                                                                                                                                                                                               Adult literacy rate, population 15+ years, urban, female (%)
## 18814                                                                                                                                                                                                      Adult literacy rate, population 15+ years, urban, adjusted gender parity index (GPIA)
## 18815                                                                                                                                                                                                                                 Adult literacy rate, population 15+ years, urban, male (%)
## 18816                                                                                                                                                                                                                                      Literacy rate, population 25-64 years, both sexes (%)
## 18817                                                                                                                                                                                                                                          Literacy rate, population 25-64 years, female (%)
## 18818                                                                                                                                                                                                       Literacy rate, population 25-64 years, female, adjusted location parity index (LPIA)
## 18819                                                                                                                                                                                                                 Literacy rate, population 25-64 years, adjusted gender parity index (GPIA)
## 18820                                                                                                                                                                                                               Literacy rate, population 25-64 years, adjusted location parity index (LPIA)
## 18821                                                                                                                                                                                                                                            Literacy rate, population 25-64 years, male (%)
## 18822                                                                                                                                                                                                         Literacy rate, population 25-64 years, male, adjusted location parity index (LPIA)
## 18823                                                                                                                                                                                                                               Literacy rate, population 25-64 years, rural, both sexes (%)
## 18824                                                                                                                                                                                                                                   Literacy rate, population 25-64 years, rural, female (%)
## 18825                                                                                                                                                                                                          Literacy rate, population 25-64 years, rural, adjusted gender parity index (GPIA)
## 18826                                                                                                                                                                                                                                     Literacy rate, population 25-64 years, rural, male (%)
## 18827                                                                                                                                                                                                                               Literacy rate, population 25-64 years, urban, both sexes (%)
## 18828                                                                                                                                                                                                                                   Literacy rate, population 25-64 years, urban, female (%)
## 18829                                                                                                                                                                                                          Literacy rate, population 25-64 years, urban, adjusted gender parity index (GPIA)
## 18830                                                                                                                                                                                                                                     Literacy rate, population 25-64 years, urban, male (%)
## 18831                                                                                                                                                                                                                                Elderly literacy rate, population 65+ years, both sexes (%)
## 18832                                                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, female (%)
## 18833                                                                                                                                                                                                                                      Elderly literacy rate, population 65+ years, male (%)
## 18834                                                                                                                                                                                                 Elderly literacy rate, population 65+ years, female, adjusted location parity index (LPIA)
## 18835                                                                                                                                                                                                           Elderly literacy rate, population 65+ years, adjusted gender parity index (GPIA)
## 18836                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, adjusted location parity index (LPIA)
## 18837                                                                                                                                                                                                   Elderly literacy rate, population 65+ years, male, adjusted location parity index (LPIA)
## 18838                                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, rural, both sexes (%)
## 18839                                                                                                                                                                                                                             Elderly literacy rate, population 65+ years, rural, female (%)
## 18840                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, rural, adjusted gender parity index (GPIA)
## 18841                                                                                                                                                                                                                               Elderly literacy rate, population 65+ years, rural, male (%)
## 18842                                                                                                                                                                                                                         Elderly literacy rate, population 65+ years, urban, both sexes (%)
## 18843                                                                                                                                                                                                                             Elderly literacy rate, population 65+ years, urban, female (%)
## 18844                                                                                                                                                                                                    Elderly literacy rate, population 65+ years, urban, adjusted gender parity index (GPIA)
## 18845                                                                                                                                                                                                                               Elderly literacy rate, population 65+ years, urban, male (%)
## 18846                                                                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18847                                                                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, female (%)
## 18848                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18849                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18850                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18851                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18852                                                                                                                                                Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18853                                                                                                                            Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18854                                                                                                                                                                             Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, male (%)
## 18855                                                                                                                                             Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18856                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18857                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18858                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18859                                                                                                                                                          Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18860                                                                                                                                                          Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18861                                                                                                                                                  Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18862                                                                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18863                                                                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, female (%)
## 18864                                                                                                                                    Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18865                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18866                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18867                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18868                                                                                                                                  Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18869                                                                                                    Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18870                                                                                                                                                     Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, male (%)
## 18871                                                                                                                     Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18872                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18873                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18874                                                                                                                          Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18875                                                                                                                                  Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18876                                                                                                                                  Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18877                                                                                                                                    Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18878                                                                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, both sexes (%)
## 18879                                                                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, female (%)
## 18880                                                                                                                                            Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)
## 18881                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)
## 18882                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)
## 18883                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)
## 18884                                                                                                                                          Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)
## 18885                                                                                                            Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)
## 18886                                                                                                                                                             Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, male (%)
## 18887                                                                                                                             Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)
## 18888                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)
## 18889                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)
## 18890                                                                                                                                  Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)
## 18891                                                                                                                                          Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)
## 18892                                                                                                                                          Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)
## 18893                                                                                                                                            Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)
## 18894                                                                                                                                                                                                      Net flow of internationally mobile students (inbound - outbound), both sexes (number)
## 18895                                                                                                                                                                                                     Net flow ratio of internationally mobile students (inbound - outbound), both sexes (%)
## 18896                                                                                                                                                                                                                             Total inbound internationally mobile students, female (number)
## 18897                                                                                                                                                                                                                               Total inbound internationally mobile students, male (number)
## 18898                                                                                                                                                                                                                         Total inbound internationally mobile students, both sexes (number)
## 18899                                                                                                                                                                                                                                                      Inbound mobility rate, both sexes (%)
## 18900                                                                                                                                                                                                                                                          Inbound mobility rate, female (%)
## 18901                                                                                                                                                                                                                                                            Inbound mobility rate, male (%)
## 18902                                                                                                                                                                                                                                  Number of attacks on students, personnel and institutions
## 18903                                                                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, both sexes (%)
## 18904                                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, female (%)
## 18905                                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, female, adjusted location parity index (LPIA)
## 18906                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, female, adjusted wealth parity index (WPIA)
## 18907                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, adjusted gender parity index (GPIA)
## 18908                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, adjusted location parity index (LPIA)
## 18909                                                                                                                                                                                                     Adjusted net attendance rate, one year before the official primary entry age, male (%)
## 18910                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, male, adjusted location parity index (LPIA)
## 18911                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, male, adjusted wealth parity index (WPIA)
## 18912                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, both sexes (%)
## 18913                                                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female (%)
## 18914                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female, adjusted location parity index (LPIA)
## 18915                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted gender parity index (GPIA)
## 18916                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted location parity index (LPIA)
## 18917                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male (%)
## 18918                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male, adjusted location parity index (LPIA)
## 18919                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, second quintile, both sexes (%)
## 18920                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, second quintile, female (%)
## 18921                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, second quintile, female, adjusted location parity index (LPIA)
## 18922                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted gender parity index (GPIA)
## 18923                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted location parity index (LPIA)
## 18924                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, second quintile, male (%)
## 18925                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, second quintile, male, adjusted location parity index (LPIA)
## 18926                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, middle quintile, both sexes (%)
## 18927                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female (%)
## 18928                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female, adjusted location parity index (LPIA)
## 18929                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted gender parity index (GPIA)
## 18930                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted location parity index (LPIA)
## 18931                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male (%)
## 18932                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male, adjusted location parity index (LPIA)
## 18933                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, both sexes (%)
## 18934                                                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female (%)
## 18935                                                                                                                                               Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female, adjusted location parity index (LPIA)
## 18936                                                                                                                                                         Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted gender parity index (GPIA)
## 18937                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted location parity index (LPIA)
## 18938                                                                                                                                                                                    Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male (%)
## 18939                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male, adjusted location parity index (LPIA)
## 18940                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, richest quintile, both sexes (%)
## 18941                                                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female (%)
## 18942                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female, adjusted location parity index (LPIA)
## 18943                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted gender parity index (GPIA)
## 18944                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted location parity index (LPIA)
## 18945                                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male (%)
## 18946                                                                                                                                                Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male, adjusted location parity index (LPIA)
## 18947                                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, rural, both sexes (%)
## 18948                                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, female (%)
## 18949                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, female, adjusted wealth parity index (WPIA)
## 18950                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted gender parity index (GPIA)
## 18951                                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, rural, male (%)
## 18952                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, male, adjusted wealth parity index (WPIA)
## 18953                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, both sexes (%)
## 18954                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, female (%)
## 18955                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, adjusted gender parity index (GPIA)
## 18956                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, male (%)
## 18957                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, both sexes (%)
## 18958                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, female (%)
## 18959                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, adjusted gender parity index (GPIA)
## 18960                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, male (%)
## 18961                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, both sexes (%)
## 18962                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, female (%)
## 18963                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, adjusted gender parity index (GPIA)
## 18964                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, male (%)
## 18965                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, both sexes (%)
## 18966                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, female (%)
## 18967                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, adjusted gender parity index (GPIA)
## 18968                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, male (%)
## 18969                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, both sexes (%)
## 18970                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, female (%)
## 18971                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, adjusted gender parity index (GPIA)
## 18972                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, male (%)
## 18973                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted wealth parity index (WPIA)
## 18974                                                                                                                                                                                        Adjusted net attendance rate, one year before the official primary entry age, urban, both sexes (%)
## 18975                                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, female (%)
## 18976                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, female, adjusted wealth parity index (WPIA)
## 18977                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted gender parity index (GPIA)
## 18978                                                                                                                                                                                              Adjusted net attendance rate, one year before the official primary entry age, urban, male (%)
## 18979                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, male, adjusted wealth parity index (WPIA)
## 18980                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, both sexes (%)
## 18981                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, female (%)
## 18982                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, adjusted gender parity index (GPIA)
## 18983                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, male (%)
## 18984                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, both sexes (%)
## 18985                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, female (%)
## 18986                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, adjusted gender parity index (GPIA)
## 18987                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, male (%)
## 18988                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, both sexes (%)
## 18989                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, female (%)
## 18990                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, adjusted gender parity index (GPIA)
## 18991                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, male (%)
## 18992                                                                                                                                                                       Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, both sexes (%)
## 18993                                                                                                                                                                           Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, female (%)
## 18994                                                                                                                                                  Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, adjusted gender parity index (GPIA)
## 18995                                                                                                                                                                             Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, male (%)
## 18996                                                                                                                                                                      Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, both sexes (%)
## 18997                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, female (%)
## 18998                                                                                                                                                 Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, adjusted gender parity index (GPIA)
## 18999                                                                                                                                                                            Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, male (%)
## 19000                                                                                                                                                                   Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted wealth parity index (WPIA)
## 19001                                                                                                                                                                          Adjusted net attendance rate, one year before the official primary entry age, adjusted wealth parity index (WPIA)
## 19002                                                                                                                                                                                                                                         Total net attendance rate, primary, both sexes (%)
## 19003                                                                                                                                                                                                                                             Total net attendance rate, primary, female (%)
## 19004                                                                                                                                                                                                          Total net attendance rate, primary, female, adjusted location parity index (LPIA)
## 19005                                                                                                                                                                                                            Total net attendance rate, primary, female, adjusted wealth parity index (WPIA)
## 19006                                                                                                                                                                                                                    Total net attendance rate, primary, adjusted gender parity index (GPIA)
## 19007                                                                                                                                                                                                                  Total net attendance rate, primary, adjusted location parity index (LPIA)
## 19008                                                                                                                                                                                                                                               Total net attendance rate, primary, male (%)
## 19009                                                                                                                                                                                                            Total net attendance rate, primary, male, adjusted location parity index (LPIA)
## 19010                                                                                                                                                                                                              Total net attendance rate, primary, male, adjusted wealth parity index (WPIA)
## 19011                                                                                                                                                                                                                       Total net attendance rate, primary, poorest quintile, both sexes (%)
## 19012                                                                                                                                                                                                                           Total net attendance rate, primary, poorest quintile, female (%)
## 19013                                                                                                                                                                                        Total net attendance rate, primary, poorest quintile, female, adjusted location parity index (LPIA)
## 19014                                                                                                                                                                                                  Total net attendance rate, primary, poorest quintile, adjusted gender parity index (GPIA)
## 19015                                                                                                                                                                                                Total net attendance rate, primary, poorest quintile, adjusted location parity index (LPIA)
## 19016                                                                                                                                                                                                                             Total net attendance rate, primary, poorest quintile, male (%)
## 19017                                                                                                                                                                                          Total net attendance rate, primary, poorest quintile, male, adjusted location parity index (LPIA)
## 19018                                                                                                                                                                                                                        Total net attendance rate, primary, second quintile, both sexes (%)
## 19019                                                                                                                                                                                                                            Total net attendance rate, primary, second quintile, female (%)
## 19020                                                                                                                                                                                         Total net attendance rate, primary, second quintile, female, adjusted location parity index (LPIA)
## 19021                                                                                                                                                                                                   Total net attendance rate, primary, second quintile, adjusted gender parity index (GPIA)
## 19022                                                                                                                                                                                                 Total net attendance rate, primary, second quintile, adjusted location parity index (LPIA)
## 19023                                                                                                                                                                                                                              Total net attendance rate, primary, second quintile, male (%)
## 19024                                                                                                                                                                                           Total net attendance rate, primary, second quintile, male, adjusted location parity index (LPIA)
## 19025                                                                                                                                                                                                                        Total net attendance rate, primary, middle quintile, both sexes (%)
## 19026                                                                                                                                                                                                                            Total net attendance rate, primary, middle quintile, female (%)
## 19027                                                                                                                                                                                         Total net attendance rate, primary, middle quintile, female, adjusted location parity index (LPIA)
## 19028                                                                                                                                                                                                   Total net attendance rate, primary, middle quintile, adjusted gender parity index (GPIA)
## 19029                                                                                                                                                                                                 Total net attendance rate, primary, middle quintile, adjusted location parity index (LPIA)
## 19030                                                                                                                                                                                                                              Total net attendance rate, primary, middle quintile, male (%)
## 19031                                                                                                                                                                                           Total net attendance rate, primary, middle quintile, male, adjusted location parity index (LPIA)
## 19032                                                                                                                                                                                                                        Total net attendance rate, primary, fourth quintile, both sexes (%)
## 19033                                                                                                                                                                                                                            Total net attendance rate, primary, fourth quintile, female (%)
## 19034                                                                                                                                                                                         Total net attendance rate, primary, fourth quintile, female, adjusted location parity index (LPIA)
## 19035                                                                                                                                                                                                   Total net attendance rate, primary, fourth quintile, adjusted gender parity index (GPIA)
## 19036                                                                                                                                                                                                 Total net attendance rate, primary, fourth quintile, adjusted location parity index (LPIA)
## 19037                                                                                                                                                                                                                              Total net attendance rate, primary, fourth quintile, male (%)
## 19038                                                                                                                                                                                           Total net attendance rate, primary, fourth quintile, male, adjusted location parity index (LPIA)
## 19039                                                                                                                                                                                                                       Total net attendance rate, primary, richest quintile, both sexes (%)
## 19040                                                                                                                                                                                                                           Total net attendance rate, primary, richest quintile, female (%)
## 19041                                                                                                                                                                                        Total net attendance rate, primary, richest quintile, female, adjusted location parity index (LPIA)
## 19042                                                                                                                                                                                                  Total net attendance rate, primary, richest quintile, adjusted gender parity index (GPIA)
## 19043                                                                                                                                                                                                Total net attendance rate, primary, richest quintile, adjusted location parity index (LPIA)
## 19044                                                                                                                                                                                                                             Total net attendance rate, primary, richest quintile, male (%)
## 19045                                                                                                                                                                                          Total net attendance rate, primary, richest quintile, male, adjusted location parity index (LPIA)
## 19046                                                                                                                                                                                                                                  Total net attendance rate, primary, rural, both sexes (%)
## 19047                                                                                                                                                                                                                                      Total net attendance rate, primary, rural, female (%)
## 19048                                                                                                                                                                                                     Total net attendance rate, primary, rural, female, adjusted wealth parity index (WPIA)
## 19049                                                                                                                                                                                                             Total net attendance rate, primary, rural, adjusted gender parity index (GPIA)
## 19050                                                                                                                                                                                                                                        Total net attendance rate, primary, rural, male (%)
## 19051                                                                                                                                                                                                       Total net attendance rate, primary, rural, male, adjusted wealth parity index (WPIA)
## 19052                                                                                                                                                                                                                Total net attendance rate, primary, rural, poorest quintile, both sexes (%)
## 19053                                                                                                                                                                                                                    Total net attendance rate, primary, rural, poorest quintile, female (%)
## 19054                                                                                                                                                                                           Total net attendance rate, primary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19055                                                                                                                                                                                                                      Total net attendance rate, primary, rural, poorest quintile, male (%)
## 19056                                                                                                                                                                                                                 Total net attendance rate, primary, rural, second quintile, both sexes (%)
## 19057                                                                                                                                                                                                                     Total net attendance rate, primary, rural, second quintile, female (%)
## 19058                                                                                                                                                                                            Total net attendance rate, primary, rural, second quintile, adjusted gender parity index (GPIA)
## 19059                                                                                                                                                                                                                       Total net attendance rate, primary, rural, second quintile, male (%)
## 19060                                                                                                                                                                                                                 Total net attendance rate, primary, rural, middle quintile, both sexes (%)
## 19061                                                                                                                                                                                                                     Total net attendance rate, primary, rural, middle quintile, female (%)
## 19062                                                                                                                                                                                            Total net attendance rate, primary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19063                                                                                                                                                                                                                       Total net attendance rate, primary, rural, middle quintile, male (%)
## 19064                                                                                                                                                                                                                 Total net attendance rate, primary, rural, fourth quintile, both sexes (%)
## 19065                                                                                                                                                                                                                     Total net attendance rate, primary, rural, fourth quintile, female (%)
## 19066                                                                                                                                                                                            Total net attendance rate, primary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19067                                                                                                                                                                                                                       Total net attendance rate, primary, rural, fourth quintile, male (%)
## 19068                                                                                                                                                                                                                Total net attendance rate, primary, rural, richest quintile, both sexes (%)
## 19069                                                                                                                                                                                                                    Total net attendance rate, primary, rural, richest quintile, female (%)
## 19070                                                                                                                                                                                           Total net attendance rate, primary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19071                                                                                                                                                                                                                      Total net attendance rate, primary, rural, richest quintile, male (%)
## 19072                                                                                                                                                                                                             Total net attendance rate, primary, rural, adjusted wealth parity index (WPIA)
## 19073                                                                                                                                                                                                                                  Total net attendance rate, primary, urban, both sexes (%)
## 19074                                                                                                                                                                                                                                      Total net attendance rate, primary, urban, female (%)
## 19075                                                                                                                                                                                                     Total net attendance rate, primary, urban, female, adjusted wealth parity index (WPIA)
## 19076                                                                                                                                                                                                             Total net attendance rate, primary, urban, adjusted gender parity index (GPIA)
## 19077                                                                                                                                                                                                                                        Total net attendance rate, primary, urban, male (%)
## 19078                                                                                                                                                                                                       Total net attendance rate, primary, urban, male, adjusted wealth parity index (WPIA)
## 19079                                                                                                                                                                                                                Total net attendance rate, primary, urban, poorest quintile, both sexes (%)
## 19080                                                                                                                                                                                                                    Total net attendance rate, primary, urban, poorest quintile, female (%)
## 19081                                                                                                                                                                                           Total net attendance rate, primary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19082                                                                                                                                                                                                                      Total net attendance rate, primary, urban, poorest quintile, male (%)
## 19083                                                                                                                                                                                                                 Total net attendance rate, primary, urban, second quintile, both sexes (%)
## 19084                                                                                                                                                                                                                     Total net attendance rate, primary, urban, second quintile, female (%)
## 19085                                                                                                                                                                                            Total net attendance rate, primary, urban, second quintile, adjusted gender parity index (GPIA)
## 19086                                                                                                                                                                                                                       Total net attendance rate, primary, urban, second quintile, male (%)
## 19087                                                                                                                                                                                                                 Total net attendance rate, primary, urban, middle quintile, both sexes (%)
## 19088                                                                                                                                                                                                                     Total net attendance rate, primary, urban, middle quintile, female (%)
## 19089                                                                                                                                                                                            Total net attendance rate, primary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19090                                                                                                                                                                                                                       Total net attendance rate, primary, urban, middle quintile, male (%)
## 19091                                                                                                                                                                                                                 Total net attendance rate, primary, urban, fourth quintile, both sexes (%)
## 19092                                                                                                                                                                                                                     Total net attendance rate, primary, urban, fourth quintile, female (%)
## 19093                                                                                                                                                                                            Total net attendance rate, primary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19094                                                                                                                                                                                                                       Total net attendance rate, primary, urban, fourth quintile, male (%)
## 19095                                                                                                                                                                                                                Total net attendance rate, primary, urban, richest quintile, both sexes (%)
## 19096                                                                                                                                                                                                                    Total net attendance rate, primary, urban, richest quintile, female (%)
## 19097                                                                                                                                                                                           Total net attendance rate, primary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19098                                                                                                                                                                                                                      Total net attendance rate, primary, urban, richest quintile, male (%)
## 19099                                                                                                                                                                                                             Total net attendance rate, primary, urban, adjusted wealth parity index (WPIA)
## 19100                                                                                                                                                                                                                    Total net attendance rate, primary, adjusted wealth parity index (WPIA)
## 19101                                                                                                                                                                                                                                 Total net attendance rate, lower secondary, both sexes (%)
## 19102                                                                                                                                                                                                                                     Total net attendance rate, lower secondary, female (%)
## 19103                                                                                                                                                                                                  Total net attendance rate, lower secondary, female, adjusted location parity index (LPIA)
## 19104                                                                                                                                                                                                    Total net attendance rate, lower secondary, female, adjusted wealth parity index (WPIA)
## 19105                                                                                                                                                                                                            Total net attendance rate, lower secondary, adjusted gender parity index (GPIA)
## 19106                                                                                                                                                                                                          Total net attendance rate, lower secondary, adjusted location parity index (LPIA)
## 19107                                                                                                                                                                                                                                       Total net attendance rate, lower secondary, male (%)
## 19108                                                                                                                                                                                                    Total net attendance rate, lower secondary, male, adjusted location parity index (LPIA)
## 19109                                                                                                                                                                                                      Total net attendance rate, lower secondary, male, adjusted wealth parity index (WPIA)
## 19110                                                                                                                                                                                                               Total net attendance rate, lower secondary, poorest quintile, both sexes (%)
## 19111                                                                                                                                                                                                                   Total net attendance rate, lower secondary, poorest quintile, female (%)
## 19112                                                                                                                                                                                Total net attendance rate, lower secondary, poorest quintile, female, adjusted location parity index (LPIA)
## 19113                                                                                                                                                                                          Total net attendance rate, lower secondary, poorest quintile, adjusted gender parity index (GPIA)
## 19114                                                                                                                                                                                        Total net attendance rate, lower secondary, poorest quintile, adjusted location parity index (LPIA)
## 19115                                                                                                                                                                                                                     Total net attendance rate, lower secondary, poorest quintile, male (%)
## 19116                                                                                                                                                                                  Total net attendance rate, lower secondary, poorest quintile, male, adjusted location parity index (LPIA)
## 19117                                                                                                                                                                                                                Total net attendance rate, lower secondary, second quintile, both sexes (%)
## 19118                                                                                                                                                                                                                    Total net attendance rate, lower secondary, second quintile, female (%)
## 19119                                                                                                                                                                                 Total net attendance rate, lower secondary, second quintile, female, adjusted location parity index (LPIA)
## 19120                                                                                                                                                                                           Total net attendance rate, lower secondary, second quintile, adjusted gender parity index (GPIA)
## 19121                                                                                                                                                                                         Total net attendance rate, lower secondary, second quintile, adjusted location parity index (LPIA)
## 19122                                                                                                                                                                                                                      Total net attendance rate, lower secondary, second quintile, male (%)
## 19123                                                                                                                                                                                   Total net attendance rate, lower secondary, second quintile, male, adjusted location parity index (LPIA)
## 19124                                                                                                                                                                                                                Total net attendance rate, lower secondary, middle quintile, both sexes (%)
## 19125                                                                                                                                                                                                                    Total net attendance rate, lower secondary, middle quintile, female (%)
## 19126                                                                                                                                                                                 Total net attendance rate, lower secondary, middle quintile, female, adjusted location parity index (LPIA)
## 19127                                                                                                                                                                                           Total net attendance rate, lower secondary, middle quintile, adjusted gender parity index (GPIA)
## 19128                                                                                                                                                                                         Total net attendance rate, lower secondary, middle quintile, adjusted location parity index (LPIA)
## 19129                                                                                                                                                                                                                      Total net attendance rate, lower secondary, middle quintile, male (%)
## 19130                                                                                                                                                                                   Total net attendance rate, lower secondary, middle quintile, male, adjusted location parity index (LPIA)
## 19131                                                                                                                                                                                                                Total net attendance rate, lower secondary, fourth quintile, both sexes (%)
## 19132                                                                                                                                                                                                                    Total net attendance rate, lower secondary, fourth quintile, female (%)
## 19133                                                                                                                                                                                 Total net attendance rate, lower secondary, fourth quintile, female, adjusted location parity index (LPIA)
## 19134                                                                                                                                                                                           Total net attendance rate, lower secondary, fourth quintile, adjusted gender parity index (GPIA)
## 19135                                                                                                                                                                                         Total net attendance rate, lower secondary, fourth quintile, adjusted location parity index (LPIA)
## 19136                                                                                                                                                                                                                      Total net attendance rate, lower secondary, fourth quintile, male (%)
## 19137                                                                                                                                                                                   Total net attendance rate, lower secondary, fourth quintile, male, adjusted location parity index (LPIA)
## 19138                                                                                                                                                                                                               Total net attendance rate, lower secondary, richest quintile, both sexes (%)
## 19139                                                                                                                                                                                                                   Total net attendance rate, lower secondary, richest quintile, female (%)
## 19140                                                                                                                                                                                Total net attendance rate, lower secondary, richest quintile, female, adjusted location parity index (LPIA)
## 19141                                                                                                                                                                                          Total net attendance rate, lower secondary, richest quintile, adjusted gender parity index (GPIA)
## 19142                                                                                                                                                                                        Total net attendance rate, lower secondary, richest quintile, adjusted location parity index (LPIA)
## 19143                                                                                                                                                                                                                     Total net attendance rate, lower secondary, richest quintile, male (%)
## 19144                                                                                                                                                                                  Total net attendance rate, lower secondary, richest quintile, male, adjusted location parity index (LPIA)
## 19145                                                                                                                                                                                                                          Total net attendance rate, lower secondary, rural, both sexes (%)
## 19146                                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, female (%)
## 19147                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, female, adjusted wealth parity index (WPIA)
## 19148                                                                                                                                                                                                     Total net attendance rate, lower secondary, rural, adjusted gender parity index (GPIA)
## 19149                                                                                                                                                                                                                                Total net attendance rate, lower secondary, rural, male (%)
## 19150                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, male, adjusted wealth parity index (WPIA)
## 19151                                                                                                                                                                                                        Total net attendance rate, lower secondary, rural, poorest quintile, both sexes (%)
## 19152                                                                                                                                                                                                            Total net attendance rate, lower secondary, rural, poorest quintile, female (%)
## 19153                                                                                                                                                                                   Total net attendance rate, lower secondary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19154                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, poorest quintile, male (%)
## 19155                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, second quintile, both sexes (%)
## 19156                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, second quintile, female (%)
## 19157                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, second quintile, adjusted gender parity index (GPIA)
## 19158                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, second quintile, male (%)
## 19159                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, middle quintile, both sexes (%)
## 19160                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, middle quintile, female (%)
## 19161                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19162                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, middle quintile, male (%)
## 19163                                                                                                                                                                                                         Total net attendance rate, lower secondary, rural, fourth quintile, both sexes (%)
## 19164                                                                                                                                                                                                             Total net attendance rate, lower secondary, rural, fourth quintile, female (%)
## 19165                                                                                                                                                                                    Total net attendance rate, lower secondary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19166                                                                                                                                                                                                               Total net attendance rate, lower secondary, rural, fourth quintile, male (%)
## 19167                                                                                                                                                                                                        Total net attendance rate, lower secondary, rural, richest quintile, both sexes (%)
## 19168                                                                                                                                                                                                            Total net attendance rate, lower secondary, rural, richest quintile, female (%)
## 19169                                                                                                                                                                                   Total net attendance rate, lower secondary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19170                                                                                                                                                                                                              Total net attendance rate, lower secondary, rural, richest quintile, male (%)
## 19171                                                                                                                                                                                                     Total net attendance rate, lower secondary, rural, adjusted wealth parity index (WPIA)
## 19172                                                                                                                                                                                                                          Total net attendance rate, lower secondary, urban, both sexes (%)
## 19173                                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, female (%)
## 19174                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, female, adjusted wealth parity index (WPIA)
## 19175                                                                                                                                                                                                     Total net attendance rate, lower secondary, urban, adjusted gender parity index (GPIA)
## 19176                                                                                                                                                                                                                                Total net attendance rate, lower secondary, urban, male (%)
## 19177                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, male, adjusted wealth parity index (WPIA)
## 19178                                                                                                                                                                                                        Total net attendance rate, lower secondary, urban, poorest quintile, both sexes (%)
## 19179                                                                                                                                                                                                            Total net attendance rate, lower secondary, urban, poorest quintile, female (%)
## 19180                                                                                                                                                                                   Total net attendance rate, lower secondary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19181                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, poorest quintile, male (%)
## 19182                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, second quintile, both sexes (%)
## 19183                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, second quintile, female (%)
## 19184                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, second quintile, adjusted gender parity index (GPIA)
## 19185                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, second quintile, male (%)
## 19186                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, middle quintile, both sexes (%)
## 19187                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, middle quintile, female (%)
## 19188                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19189                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, middle quintile, male (%)
## 19190                                                                                                                                                                                                         Total net attendance rate, lower secondary, urban, fourth quintile, both sexes (%)
## 19191                                                                                                                                                                                                             Total net attendance rate, lower secondary, urban, fourth quintile, female (%)
## 19192                                                                                                                                                                                    Total net attendance rate, lower secondary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19193                                                                                                                                                                                                               Total net attendance rate, lower secondary, urban, fourth quintile, male (%)
## 19194                                                                                                                                                                                                        Total net attendance rate, lower secondary, urban, richest quintile, both sexes (%)
## 19195                                                                                                                                                                                                            Total net attendance rate, lower secondary, urban, richest quintile, female (%)
## 19196                                                                                                                                                                                   Total net attendance rate, lower secondary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19197                                                                                                                                                                                                              Total net attendance rate, lower secondary, urban, richest quintile, male (%)
## 19198                                                                                                                                                                                                     Total net attendance rate, lower secondary, urban, adjusted wealth parity index (WPIA)
## 19199                                                                                                                                                                                                            Total net attendance rate, lower secondary, adjusted wealth parity index (WPIA)
## 19200                                                                                                                                                                                                                                 Total net attendance rate, upper secondary, both sexes (%)
## 19201                                                                                                                                                                                                                                     Total net attendance rate, upper secondary, female (%)
## 19202                                                                                                                                                                                                  Total net attendance rate, upper secondary, female, adjusted location parity index (LPIA)
## 19203                                                                                                                                                                                                    Total net attendance rate, upper secondary, female, adjusted wealth parity index (WPIA)
## 19204                                                                                                                                                                                                            Total net attendance rate, upper secondary, adjusted gender parity index (GPIA)
## 19205                                                                                                                                                                                                          Total net attendance rate, upper secondary, adjusted location parity index (LPIA)
## 19206                                                                                                                                                                                                                                       Total net attendance rate, upper secondary, male (%)
## 19207                                                                                                                                                                                                    Total net attendance rate, upper secondary, male, adjusted location parity index (LPIA)
## 19208                                                                                                                                                                                                      Total net attendance rate, upper secondary, male, adjusted wealth parity index (WPIA)
## 19209                                                                                                                                                                                                               Total net attendance rate, upper secondary, poorest quintile, both sexes (%)
## 19210                                                                                                                                                                                                                   Total net attendance rate, upper secondary, poorest quintile, female (%)
## 19211                                                                                                                                                                                Total net attendance rate, upper secondary, poorest quintile, female, adjusted location parity index (LPIA)
## 19212                                                                                                                                                                                          Total net attendance rate, upper secondary, poorest quintile, adjusted gender parity index (GPIA)
## 19213                                                                                                                                                                                        Total net attendance rate, upper secondary, poorest quintile, adjusted location parity index (LPIA)
## 19214                                                                                                                                                                                                                     Total net attendance rate, upper secondary, poorest quintile, male (%)
## 19215                                                                                                                                                                                  Total net attendance rate, upper secondary, poorest quintile, male, adjusted location parity index (LPIA)
## 19216                                                                                                                                                                                                                Total net attendance rate, upper secondary, second quintile, both sexes (%)
## 19217                                                                                                                                                                                                                    Total net attendance rate, upper secondary, second quintile, female (%)
## 19218                                                                                                                                                                                 Total net attendance rate, upper secondary, second quintile, female, adjusted location parity index (LPIA)
## 19219                                                                                                                                                                                           Total net attendance rate, upper secondary, second quintile, adjusted gender parity index (GPIA)
## 19220                                                                                                                                                                                         Total net attendance rate, upper secondary, second quintile, adjusted location parity index (LPIA)
## 19221                                                                                                                                                                                                                      Total net attendance rate, upper secondary, second quintile, male (%)
## 19222                                                                                                                                                                                   Total net attendance rate, upper secondary, second quintile, male, adjusted location parity index (LPIA)
## 19223                                                                                                                                                                                                                Total net attendance rate, upper secondary, middle quintile, both sexes (%)
## 19224                                                                                                                                                                                                                    Total net attendance rate, upper secondary, middle quintile, female (%)
## 19225                                                                                                                                                                                 Total net attendance rate, upper secondary, middle quintile, female, adjusted location parity index (LPIA)
## 19226                                                                                                                                                                                           Total net attendance rate, upper secondary, middle quintile, adjusted gender parity index (GPIA)
## 19227                                                                                                                                                                                         Total net attendance rate, upper secondary, middle quintile, adjusted location parity index (LPIA)
## 19228                                                                                                                                                                                                                      Total net attendance rate, upper secondary, middle quintile, male (%)
## 19229                                                                                                                                                                                   Total net attendance rate, upper secondary, middle quintile, male, adjusted location parity index (LPIA)
## 19230                                                                                                                                                                                                                Total net attendance rate, upper secondary, fourth quintile, both sexes (%)
## 19231                                                                                                                                                                                                                    Total net attendance rate, upper secondary, fourth quintile, female (%)
## 19232                                                                                                                                                                                 Total net attendance rate, upper secondary, fourth quintile, female, adjusted location parity index (LPIA)
## 19233                                                                                                                                                                                           Total net attendance rate, upper secondary, fourth quintile, adjusted gender parity index (GPIA)
## 19234                                                                                                                                                                                         Total net attendance rate, upper secondary, fourth quintile, adjusted location parity index (LPIA)
## 19235                                                                                                                                                                                                                      Total net attendance rate, upper secondary, fourth quintile, male (%)
## 19236                                                                                                                                                                                   Total net attendance rate, upper secondary, fourth quintile, male, adjusted location parity index (LPIA)
## 19237                                                                                                                                                                                                               Total net attendance rate, upper secondary, richest quintile, both sexes (%)
## 19238                                                                                                                                                                                                                   Total net attendance rate, upper secondary, richest quintile, female (%)
## 19239                                                                                                                                                                                Total net attendance rate, upper secondary, richest quintile, female, adjusted location parity index (LPIA)
## 19240                                                                                                                                                                                          Total net attendance rate, upper secondary, richest quintile, adjusted gender parity index (GPIA)
## 19241                                                                                                                                                                                        Total net attendance rate, upper secondary, richest quintile, adjusted location parity index (LPIA)
## 19242                                                                                                                                                                                                                     Total net attendance rate, upper secondary, richest quintile, male (%)
## 19243                                                                                                                                                                                  Total net attendance rate, upper secondary, richest quintile, male, adjusted location parity index (LPIA)
## 19244                                                                                                                                                                                                                          Total net attendance rate, upper secondary, rural, both sexes (%)
## 19245                                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, female (%)
## 19246                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, female, adjusted wealth parity index (WPIA)
## 19247                                                                                                                                                                                                     Total net attendance rate, upper secondary, rural, adjusted gender parity index (GPIA)
## 19248                                                                                                                                                                                                                                Total net attendance rate, upper secondary, rural, male (%)
## 19249                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, male, adjusted wealth parity index (WPIA)
## 19250                                                                                                                                                                                                        Total net attendance rate, upper secondary, rural, poorest quintile, both sexes (%)
## 19251                                                                                                                                                                                                            Total net attendance rate, upper secondary, rural, poorest quintile, female (%)
## 19252                                                                                                                                                                                   Total net attendance rate, upper secondary, rural, poorest quintile, adjusted gender parity index (GPIA)
## 19253                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, poorest quintile, male (%)
## 19254                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, second quintile, both sexes (%)
## 19255                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, second quintile, female (%)
## 19256                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, second quintile, adjusted gender parity index (GPIA)
## 19257                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, second quintile, male (%)
## 19258                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, middle quintile, both sexes (%)
## 19259                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, middle quintile, female (%)
## 19260                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, middle quintile, adjusted gender parity index (GPIA)
## 19261                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, middle quintile, male (%)
## 19262                                                                                                                                                                                                         Total net attendance rate, upper secondary, rural, fourth quintile, both sexes (%)
## 19263                                                                                                                                                                                                             Total net attendance rate, upper secondary, rural, fourth quintile, female (%)
## 19264                                                                                                                                                                                    Total net attendance rate, upper secondary, rural, fourth quintile, adjusted gender parity index (GPIA)
## 19265                                                                                                                                                                                                               Total net attendance rate, upper secondary, rural, fourth quintile, male (%)
## 19266                                                                                                                                                                                                        Total net attendance rate, upper secondary, rural, richest quintile, both sexes (%)
## 19267                                                                                                                                                                                                            Total net attendance rate, upper secondary, rural, richest quintile, female (%)
## 19268                                                                                                                                                                                   Total net attendance rate, upper secondary, rural, richest quintile, adjusted gender parity index (GPIA)
## 19269                                                                                                                                                                                                              Total net attendance rate, upper secondary, rural, richest quintile, male (%)
## 19270                                                                                                                                                                                                     Total net attendance rate, upper secondary, rural, adjusted wealth parity index (WPIA)
## 19271                                                                                                                                                                                                                          Total net attendance rate, upper secondary, urban, both sexes (%)
## 19272                                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, female (%)
## 19273                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, female, adjusted wealth parity index (WPIA)
## 19274                                                                                                                                                                                                     Total net attendance rate, upper secondary, urban, adjusted gender parity index (GPIA)
## 19275                                                                                                                                                                                                                                Total net attendance rate, upper secondary, urban, male (%)
## 19276                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, male, adjusted wealth parity index (WPIA)
## 19277                                                                                                                                                                                                        Total net attendance rate, upper secondary, urban, poorest quintile, both sexes (%)
## 19278                                                                                                                                                                                                            Total net attendance rate, upper secondary, urban, poorest quintile, female (%)
## 19279                                                                                                                                                                                   Total net attendance rate, upper secondary, urban, poorest quintile, adjusted gender parity index (GPIA)
## 19280                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, poorest quintile, male (%)
## 19281                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, second quintile, both sexes (%)
## 19282                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, second quintile, female (%)
## 19283                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, second quintile, adjusted gender parity index (GPIA)
## 19284                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, second quintile, male (%)
## 19285                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, middle quintile, both sexes (%)
## 19286                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, middle quintile, female (%)
## 19287                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, middle quintile, adjusted gender parity index (GPIA)
## 19288                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, middle quintile, male (%)
## 19289                                                                                                                                                                                                         Total net attendance rate, upper secondary, urban, fourth quintile, both sexes (%)
## 19290                                                                                                                                                                                                             Total net attendance rate, upper secondary, urban, fourth quintile, female (%)
## 19291                                                                                                                                                                                    Total net attendance rate, upper secondary, urban, fourth quintile, adjusted gender parity index (GPIA)
## 19292                                                                                                                                                                                                               Total net attendance rate, upper secondary, urban, fourth quintile, male (%)
## 19293                                                                                                                                                                                                        Total net attendance rate, upper secondary, urban, richest quintile, both sexes (%)
## 19294                                                                                                                                                                                                            Total net attendance rate, upper secondary, urban, richest quintile, female (%)
## 19295                                                                                                                                                                                   Total net attendance rate, upper secondary, urban, richest quintile, adjusted gender parity index (GPIA)
## 19296                                                                                                                                                                                                              Total net attendance rate, upper secondary, urban, richest quintile, male (%)
## 19297                                                                                                                                                                                                     Total net attendance rate, upper secondary, urban, adjusted wealth parity index (WPIA)
## 19298                                                                                                                                                                                                            Total net attendance rate, upper secondary, adjusted wealth parity index (WPIA)
## 19299                                                                                                                                                                                                Adjusted net enrolment rate, one year before the official primary entry age, both sexes (%)
## 19300                                                                                                                                                                                                    Adjusted net enrolment rate, one year before the official primary entry age, female (%)
## 19301                                                                                                                                                                           Adjusted net enrolment rate, one year before the official primary entry age, adjusted gender parity index (GPIA)
## 19302                                                                                                                                                                                                      Adjusted net enrolment rate, one year before the official primary entry age, male (%)
## 19303                                                                                                                                                                                                                                          Total net enrolment rate, primary, both sexes (%)
## 19304                                                                                                                                                                                                                                              Total net enrolment rate, primary, female (%)
## 19305                                                                                                                                                                                                                               Total net enrolment rate, primary, gender parity index (GPI)
## 19306                                                                                                                                                                                                                                                Total net enrolment rate, primary, male (%)
## 19307                                                                                                                                                                                                                                  Total net enrolment rate, lower secondary, both sexes (%)
## 19308                                                                                                                                                                                                                                      Total net enrolment rate, lower secondary, female (%)
## 19309                                                                                                                                                                                                                       Total net enrolment rate, lower secondary, gender parity index (GPI)
## 19310                                                                                                                                                                                                                                        Total net enrolment rate, lower secondary, male (%)
## 19311                                                                                                                                                                                                                                  Total net enrolment rate, upper secondary, both sexes (%)
## 19312                                                                                                                                                                                                                                      Total net enrolment rate, upper secondary, female (%)
## 19313                                                                                                                                                                                                                       Total net enrolment rate, upper secondary, gender parity index (GPI)
## 19314                                                                                                                                                                                                                                        Total net enrolment rate, upper secondary, male (%)
## 19315                                                                                                                                                               Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, both sexes (%)
## 19316                                                                                                                                                                   Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, female (%)
## 19317                                                                                                                                          Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)
## 19318                                                                                                                                                                     Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, male (%)
## 19319                                                                                                                                               Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, both sexes (%)
## 19320                                                                                                                                                   Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, female (%)
## 19321                                                                                                                          Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)
## 19322                                                                                                                                                     Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, male (%)
## 19323                                                                                                                                                                                 Volume of official development assistance flows for scholarships by sector and type of study, constant US$
## 19324                                                                                                                                                                                Total outbound internationally mobile tertiary students studying abroad, all countries, both sexes (number)
## 19325                                                                                                                                                                                      Out-of-school children and adolescents of primary and lower secondary school age, both sexes (number)
## 19326                                                                                                                                                                                          Out-of-school children and adolescents of primary and lower secondary school age, female (number)
## 19327                                                                                                                                                                                            Out-of-school children and adolescents of primary and lower secondary school age, male (number)
## 19328                                                                                                                                                                                     Out-of-school children, adolescents and youth of primary and secondary school age, both sexes (number)
## 19329                                                                                                                                                                                         Out-of-school children, adolescents and youth of primary and secondary school age, female (number)
## 19330                                                                                                                                                                                           Out-of-school children, adolescents and youth of primary and secondary school age, male (number)
## 19331                                                                                                                                                                                                               Out-of-school adolescents of lower secondary school age, both sexes (number)
## 19332                                                                                                                                                                                                                   Out-of-school adolescents of lower secondary school age, female (number)
## 19333                                                                                                                                                                                                                     Out-of-school adolescents of lower secondary school age, male (number)
## 19334                                                                                                                                                                                                           Out-of-school adolescents and youth of secondary school age, both sexes (number)
## 19335                                                                                                                                                                                                               Out-of-school adolescents and youth of secondary school age, female (number)
## 19336                                                                                                                                                                                                                 Out-of-school adolescents and youth of secondary school age, male (number)
## 19337                                                                                                                                                                                                                     Out-of-school youth of upper secondary school age, both sexes (number)
## 19338                                                                                                                                                                                                                         Out-of-school youth of upper secondary school age, female (number)
## 19339                                                                                                                                                                                                                           Out-of-school youth of upper secondary school age, male (number)
## 19340                                                                                                                                                                                              Out-of-school children, one year younger than official primary entry age, both sexes (number)
## 19341                                                                                                                                                                                                  Out-of-school children, one year younger than official primary entry age, female (number)
## 19342                                                                                                                                                                                                    Out-of-school children, one year younger than official primary entry age, male (number)
## 19343                                                                                                                                                                                                                                       Outbound mobility ratio, all regions, both sexes (%)
## 19344                                                                                                                                                  Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, both sexes (%)
## 19345                                                                                                                                                      Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, female (%)
## 19346                                                                                                                             Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, adjusted gender parity index (GPIA)
## 19347                                                                                                                                                        Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, male (%)
## 19348                                                                                                                                                                                                         Percentage of students experiencing bullying in the last 12 months, both sexes (%)
## 19349                                                                                                                                                                                                             Percentage of students experiencing bullying in the last 12 months, female (%)
## 19350                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted gender parity index (GPIA)
## 19351                                                                                                                                                                             Percentage of students experiencing bullying in the last 12 months, high socio-economic status, both sexes (%)
## 19352                                                                                                                                                                              Percentage of students experiencing bullying in the last 12 months, low socio-economic status, both sexes (%)
## 19353                                                                                                                                                                                                               Percentage of students experiencing bullying in the last 12 months, male (%)
## 19354                                                                                                                                                                               Percentage of students experiencing bullying in the last 12 months, non-immigrant background, both sexes (%)
## 19355                                                                                                                                                                                   Percentage of students experiencing bullying in the last 12 months, immigrant background, both sexes (%)
## 19356                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted native parity index (NPIA)
## 19357                                                                                                                                                                                    Percentage of students experiencing bullying in the last 12 months, adjusted wealth parity index (WPIA)
## 19358                                                                                                                                                                                                        Participants in literacy programmes as a % of the illiterate population, both sexes
## 19359                                                                                                                                                                                                            Participants in literacy programmes as a % of the illiterate population, female
## 19360                                                                                                                                                                                                              Participants in literacy programmes as a % of the illiterate population, male
## 19361                                                                                                                                                                      Percentage of children under 5 years experiencing positive and stimulating home learning environments, both sexes (%)
## 19362                                                                                                                                                                          Percentage of children under 5 years experiencing positive and stimulating home learning environments, female (%)
## 19363                                                                                                                                                 Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted gender parity index (GPIA)
## 19364                                                                                                                                               Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted location parity index (LPIA)
## 19365                                                                                                                                                                            Percentage of children under 5 years experiencing positive and stimulating home learning environments, male (%)
## 19366                                                                                                                                                                           Percentage of children under 5 years experiencing positive and stimulating home learning environments, rural (%)
## 19367                                                                                                                                                                           Percentage of children under 5 years experiencing positive and stimulating home learning environments, urban (%)
## 19368                                                                                                                                                 Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted wealth parity index (WPIA)
## 19369                                                                                                                                                                Percentage of children under 5 years experiencing positive and stimulating home learning environments, poorest quintile (%)
## 19370                                                                                                                                                                Percentage of children under 5 years experiencing positive and stimulating home learning environments, richest quintile (%)
## 19371                                                                                                                                                                                                Percentage of enrolment in early childhood education programmes in private institutions (%)
## 19372                                                                                                                                                                                  Percentage of enrolment in early childhood educational development programmes in private institutions (%)
## 19373                                                                                                                                                                                                           Percentage of enrolment in lower secondary education in private institutions (%)
## 19374                                                                                                                                                                                                           Percentage of enrolment in upper secondary education in private institutions (%)
## 19375                                                                                                                                                                                               Percentage of enrolment in post-secondary non-tertiary education in private institutions (%)
## 19376                                                                                                                                                           Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, both sexes (%)
## 19377                                                                                                                                                               Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, female (%)
## 19378                                                                                                                                      Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, adjusted gender parity index (GPIA)
## 19379                                                                                                                                                                 Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, male (%)
## 19380                                                                                                                                                                                                                   Pupil-qualified teacher ratio in pre-primary education (headcount basis)
## 19381                                                                                                                                                                                                                     Pupil-trained teacher ratio in pre-primary education (headcount basis)
## 19382                                                                                                                                                                                                                       Pupil-qualified teacher ratio in primary education (headcount basis)
## 19383                                                                                                                                                                                                                         Pupil-trained teacher ratio in primary education (headcount basis)
## 19384                                                                                                                                                                                                                         Pupil-qualified teacher ratio in lower secondary (headcount basis)
## 19385                                                                                                                                                                                                                 Pupil-trained teacher ratio in lower secondary education (headcount basis)
## 19386                                                                                                                                                                                                                               Pupil-qualified teacher ratio in secondary (headcount basis)
## 19387                                                                                                                                                                                                                       Pupil-trained teacher ratio in secondary education (headcount basis)
## 19388                                                                                                                                                                                                                         Pupil-qualified teacher ratio in upper secondary (headcount basis)
## 19389                                                                                                                                                                                                                 Pupil-trained teacher ratio in upper secondary education (headcount basis)
## 19390                                                                                                                                                                                                                  Percentage of qualified teachers in pre-primary education, both sexes (%)
## 19391                                                                                                                                                                                                                      Percentage of qualified teachers in pre-primary education, female (%)
## 19392                                                                                                                                                                                             Percentage of qualified teachers in pre-primary education, adjusted gender parity index (GPIA)
## 19393                                                                                                                                                                                                                        Percentage of qualified teachers in pre-primary education, male (%)
## 19394                                                                                                                                                                                                                      Percentage of qualified teachers in primary education, both sexes (%)
## 19395                                                                                                                                                                                                                          Percentage of qualified teachers in primary education, female (%)
## 19396                                                                                                                                                                                                 Percentage of qualified teachers in primary education, adjusted gender parity index (GPIA)
## 19397                                                                                                                                                                                                                            Percentage of qualified teachers in primary education, male (%)
## 19398                                                                                                                                                                                                              Percentage of qualified teachers in lower secondary education, both sexes (%)
## 19399                                                                                                                                                                                                                  Percentage of qualified teachers in lower secondary education, female (%)
## 19400                                                                                                                                                                                         Percentage of qualified teachers in lower secondary education, adjusted gender parity index (GPIA)
## 19401                                                                                                                                                                                                                    Percentage of qualified teachers in lower secondary education, male (%)
## 19402                                                                                                                                                                                                                    Percentage of qualified teachers in secondary education, both sexes (%)
## 19403                                                                                                                                                                                                                        Percentage of qualified teachers in secondary education, female (%)
## 19404                                                                                                                                                                                               Percentage of qualified teachers in secondary education, adjusted gender parity index (GPIA)
## 19405                                                                                                                                                                                                                          Percentage of qualified teachers in secondary education, male (%)
## 19406                                                                                                                                                                                                              Percentage of qualified teachers in upper secondary education, both sexes (%)
## 19407                                                                                                                                                                                                                  Percentage of qualified teachers in upper secondary education, female (%)
## 19408                                                                                                                                                                                         Percentage of qualified teachers in upper secondary education, adjusted gender parity index (GPIA)
## 19409                                                                                                                                                                                                                    Percentage of qualified teachers in upper secondary education, male (%)
## 19410                                                                                                                                                                                                                            Repeaters in primary education, all grades, both sexes (number)
## 19411                                                                                                                                                                                                                                Repeaters in primary education, all grades, female (number)
## 19412                                                                                                                                                                                                                             Repeaters in Grade 1 of primary education, both sexes (number)
## 19413                                                                                                                                                                                                                                 Repeaters in Grade 1 of primary education, female (number)
## 19414                                                                                                                                                                                                                                   Repeaters in Grade 1 of primary education, male (number)
## 19415                                                                                                                                                                                                                             Repeaters in Grade 2 of primary education, both sexes (number)
## 19416                                                                                                                                                                                                                                 Repeaters in Grade 2 of primary education, female (number)
## 19417                                                                                                                                                                                                                                   Repeaters in Grade 2 of primary education, male (number)
## 19418                                                                                                                                                                                                                             Repeaters in Grade 3 of primary education, both sexes (number)
## 19419                                                                                                                                                                                                                                 Repeaters in Grade 3 of primary education, female (number)
## 19420                                                                                                                                                                                                                                   Repeaters in Grade 3 of primary education, male (number)
## 19421                                                                                                                                                                                                                             Repeaters in Grade 4 of primary education, both sexes (number)
## 19422                                                                                                                                                                                                                                 Repeaters in Grade 4 of primary education, female (number)
## 19423                                                                                                                                                                                                                                   Repeaters in Grade 4 of primary education, male (number)
## 19424                                                                                                                                                                                                                             Repeaters in Grade 5 of primary education, both sexes (number)
## 19425                                                                                                                                                                                                                                 Repeaters in Grade 5 of primary education, female (number)
## 19426                                                                                                                                                                                                                                   Repeaters in Grade 5 of primary education, male (number)
## 19427                                                                                                                                                                                                                             Repeaters in Grade 6 of primary education, both sexes (number)
## 19428                                                                                                                                                                                                                                 Repeaters in Grade 6 of primary education, female (number)
## 19429                                                                                                                                                                                                                                   Repeaters in Grade 6 of primary education, male (number)
## 19430                                                                                                                                                                                                                             Repeaters in Grade 7 of primary education, both sexes (number)
## 19431                                                                                                                                                                                                                                 Repeaters in Grade 7 of primary education, female (number)
## 19432                                                                                                                                                                                                                                   Repeaters in Grade 7 of primary education, male (number)
## 19433                                                                                                                                                                                                                       Repeaters in grade unknown of primary education, both sexes (number)
## 19434                                                                                                                                                                                                                           Repeaters in grade unknown of primary education, female (number)
## 19435                                                                                                                                                                                                                             Repeaters in grade unknown of primary education, male (number)
## 19436                                                                                                                                                                                                                                  Repeaters in primary education, all grades, male (number)
## 19437                                                                                                                                                                                                            Repeaters in lower secondary general education, all grades, both sexes (number)
## 19438                                                                                                                                                                                                                Repeaters in lower secondary general education, all grades, female (number)
## 19439                                                                                                                                                                                                             Repeaters in Grade 1 of lower secondary general education, both sexes (number)
## 19440                                                                                                                                                                                                                 Repeaters in Grade 1 of lower secondary general education, female (number)
## 19441                                                                                                                                                                                                                   Repeaters in Grade 1 of lower secondary general education, male (number)
## 19442                                                                                                                                                                                                             Repeaters in Grade 2 of lower secondary general education, both sexes (number)
## 19443                                                                                                                                                                                                                 Repeaters in Grade 2 of lower secondary general education, female (number)
## 19444                                                                                                                                                                                                                   Repeaters in Grade 2 of lower secondary general education, male (number)
## 19445                                                                                                                                                                                                             Repeaters in Grade 3 of lower secondary general education, both sexes (number)
## 19446                                                                                                                                                                                                                 Repeaters in Grade 3 of lower secondary general education, female (number)
## 19447                                                                                                                                                                                                                   Repeaters in Grade 3 of lower secondary general education, male (number)
## 19448                                                                                                                                                                                                             Repeaters in Grade 4 of lower secondary general education, both sexes (number)
## 19449                                                                                                                                                                                                                 Repeaters in Grade 4 of lower secondary general education, female (number)
## 19450                                                                                                                                                                                                                   Repeaters in Grade 4 of lower secondary general education, male (number)
## 19451                                                                                                                                                                                                             Repeaters in Grade 5 of lower secondary general education, both sexes (number)
## 19452                                                                                                                                                                                                                 Repeaters in Grade 5 of lower secondary general education, female (number)
## 19453                                                                                                                                                                                                                   Repeaters in Grade 5 of lower secondary general education, male (number)
## 19454                                                                                                                                                                                                             Repeaters in Grade 6 of lower secondary general education, both sexes (number)
## 19455                                                                                                                                                                                                                 Repeaters in Grade 6 of lower secondary general education, female (number)
## 19456                                                                                                                                                                                                                   Repeaters in Grade 6 of lower secondary general education, male (number)
## 19457                                                                                                                                                                                                       Repeaters in grade unknown of lower secondary general education, both sexes (number)
## 19458                                                                                                                                                                                                           Repeaters in grade unknown of lower secondary general education, female (number)
## 19459                                                                                                                                                                                                             Repeaters in grade unknown of lower secondary general education, male (number)
## 19460                                                                                                                                                                                                                  Repeaters in lower secondary general education, all grades, male (number)
## 19461                                                                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, both sexes (%)
## 19462                                                                                                                                                                               Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, female (%)
## 19463                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19464                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19465                                                                                                                                   Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19466                                                                                                                                       Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19467                                                                                                                                                    Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19468                                                                                                                                Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19469                                                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, male (%)
## 19470                                                                                                                                                 Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19471                                                                                                                           Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19472                                                                                                                                                     Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19473                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19474                                                                                                                                                              Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19475                                                                                                                                                              Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19476                                                                                                                                                      Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19477                                                                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, both sexes (%)
## 19478                                                                                                                                                       Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, female (%)
## 19479                                                                                                                                        Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19480                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19481                                                                                                           Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19482                                                                                                               Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19483                                                                                                                            Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19484                                                                                                        Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19485                                                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, male (%)
## 19486                                                                                                                         Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19487                                                                                                   Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19488                                                                                                                             Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19489                                                                                                                              Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19490                                                                                                                                      Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19491                                                                                                                                      Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19492                                                                                                                              Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19493                                                                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, both sexes (%)
## 19494                                                                                                                                                               Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, female (%)
## 19495                                                                                                                                                Proportion of students at the end of primary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)
## 19496                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)
## 19497                                                                                                                   Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)
## 19498                                                                                                                       Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)
## 19499                                                                                                                                    Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)
## 19500                                                                                                                Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)
## 19501                                                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, male (%)
## 19502                                                                                                                                 Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)
## 19503                                                                                                           Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)
## 19504                                                                                                                                     Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)
## 19505                                                                                                                                      Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)
## 19506                                                                                                                                              Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)
## 19507                                                                                                                                              Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)
## 19508                                                                                                                                      Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)
## 19509                                                                                                                                                                                                                          Repetition rate in primary education (all grades), both sexes (%)
## 19510                                                                                                                                                                                                                              Repetition rate in primary education (all grades), female (%)
## 19511                                                                                                                                                                                                                            Repetition rate in Grade 1 of primary education, both sexes (%)
## 19512                                                                                                                                                                                                                                Repetition rate in Grade 1 of primary education, female (%)
## 19513                                                                                                                                                                                                                                  Repetition rate in Grade 1 of primary education, male (%)
## 19514                                                                                                                                                                                                                            Repetition rate in Grade 2 of primary education, both sexes (%)
## 19515                                                                                                                                                                                                                                Repetition rate in Grade 2 of primary education, female (%)
## 19516                                                                                                                                                                                                                                  Repetition rate in Grade 2 of primary education, male (%)
## 19517                                                                                                                                                                                                                            Repetition rate in Grade 3 of primary education, both sexes (%)
## 19518                                                                                                                                                                                                                                Repetition rate in Grade 3 of primary education, female (%)
## 19519                                                                                                                                                                                                                                  Repetition rate in Grade 3 of primary education, male (%)
## 19520                                                                                                                                                                                                                            Repetition rate in Grade 4 of primary education, both sexes (%)
## 19521                                                                                                                                                                                                                                Repetition rate in Grade 4 of primary education, female (%)
## 19522                                                                                                                                                                                                                                  Repetition rate in Grade 4 of primary education, male (%)
## 19523                                                                                                                                                                                                                            Repetition rate in Grade 5 of primary education, both sexes (%)
## 19524                                                                                                                                                                                                                                Repetition rate in Grade 5 of primary education, female (%)
## 19525                                                                                                                                                                                                                                  Repetition rate in Grade 5 of primary education, male (%)
## 19526                                                                                                                                                                                                                            Repetition rate in Grade 6 of primary education, both sexes (%)
## 19527                                                                                                                                                                                                                                Repetition rate in Grade 6 of primary education, female (%)
## 19528                                                                                                                                                                                                                                  Repetition rate in Grade 6 of primary education, male (%)
## 19529                                                                                                                                                                                                                            Repetition rate in Grade 7 of primary education, both sexes (%)
## 19530                                                                                                                                                                                                                                Repetition rate in Grade 7 of primary education, female (%)
## 19531                                                                                                                                                                                                                                  Repetition rate in Grade 7 of primary education, male (%)
## 19532                                                                                                                                                                                                                                Repetition rate in primary education (all grades), male (%)
## 19533                                                                                                                                                                                                          Repetition rate in lower secondary general education (all grades), both sexes (%)
## 19534                                                                                                                                                                                                              Repetition rate in lower secondary general education (all grades), female (%)
## 19535                                                                                                                                                                                                            Repetition rate in Grade 1 of lower secondary general education, both sexes (%)
## 19536                                                                                                                                                                                                                Repetition rate in Grade 1 of lower secondary general education, female (%)
## 19537                                                                                                                                                                                                                  Repetition rate in Grade 1 of lower secondary general education, male (%)
## 19538                                                                                                                                                                                                            Repetition rate in Grade 2 of lower secondary general education, both sexes (%)
## 19539                                                                                                                                                                                                                Repetition rate in Grade 2 of lower secondary general education, female (%)
## 19540                                                                                                                                                                                                                  Repetition rate in Grade 2 of lower secondary general education, male (%)
## 19541                                                                                                                                                                                                            Repetition rate in Grade 3 of lower secondary general education, both sexes (%)
## 19542                                                                                                                                                                                                                Repetition rate in Grade 3 of lower secondary general education, female (%)
## 19543                                                                                                                                                                                                                  Repetition rate in Grade 3 of lower secondary general education, male (%)
## 19544                                                                                                                                                                                                            Repetition rate in Grade 4 of lower secondary general education, both sexes (%)
## 19545                                                                                                                                                                                                                Repetition rate in Grade 4 of lower secondary general education, female (%)
## 19546                                                                                                                                                                                                                  Repetition rate in Grade 4 of lower secondary general education, male (%)
## 19547                                                                                                                                                                                                            Repetition rate in Grade 5 of lower secondary general education, both sexes (%)
## 19548                                                                                                                                                                                                                Repetition rate in Grade 5 of lower secondary general education, female (%)
## 19549                                                                                                                                                                                                                  Repetition rate in Grade 5 of lower secondary general education, male (%)
## 19550                                                                                                                                                                                                                Repetition rate in lower secondary general education (all grades), male (%)
## 19551                                                                                                                                                                                                                      Out-of-school rate for children of primary school age, both sexes (%)
## 19552                                                                                                                                                                                                                          Out-of-school rate for children of primary school age, female (%)
## 19553                                                                                                                                                                                                 Out-of-school rate for children of primary school age, adjusted gender parity index (GPIA)
## 19554                                                                                                                                                                                                                            Out-of-school rate for children of primary school age, male (%)
## 19555                                                                                                                                                                                  Out-of-school rate for children and adolescents of primary and lower secondary school age, both sexes (%)
## 19556                                                                                                                                                                                      Out-of-school rate for children and adolescents of primary and lower secondary school age, female (%)
## 19557                                                                                                                                                             Out-of-school rate for children and adolescents of primary and lower secondary school age, adjusted gender parity index (GPIA)
## 19558                                                                                                                                                                                        Out-of-school rate for children and adolescents of primary and lower secondary school age, male (%)
## 19559                                                                                                                                                          Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, both sexes (%)
## 19560                                                                                                                                                              Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, female (%)
## 19561                                                                                                                                     Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, adjusted gender parity index (GPIA)
## 19562                                                                                                                                                                Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, male (%)
## 19563                                                                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, both sexes (%)
## 19564                                                                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, female (%)
## 19565                                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (GPIA)
## 19566                                                                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, male (%)
## 19567                                                                                                                                                                                       Out-of-school rate for adolescents and youth of lower and upper secondary school age, both sexes (%)
## 19568                                                                                                                                                                                           Out-of-school rate for adolescents and youth of lower and upper secondary school age, female (%)
## 19569                                                                                                                                                                  Out-of-school rate for adolescents and youth of lower and upper secondary school age, adjusted gender parity index (GPIA)
## 19570                                                                                                                                                                                             Out-of-school rate for adolescents and youth of lower and upper secondary school age, male (%)
## 19571                                                                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, both sexes (%)
## 19572                                                                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, female (%)
## 19573                                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (GPIA)
## 19574                                                                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, male (%)
## 19575                                                                                                                                                                                        Out-of-school rate for children one year younger than official primary entrance age, both sexes (%)
## 19576                                                                                                                                                                                            Out-of-school rate for children one year younger than official primary entrance age, female (%)
## 19577                                                                                                                                                                                    Out-of-school rate for children one year younger than official age, adjusted gender parity index (GPIA)
## 19578                                                                                                                                                                                              Out-of-school rate for children one year younger than official primary entrance age, male (%)
## 19579                                                                                                                                                                                              Out-of-school rate for children of primary school age, both sexes (household survey data) (%)
## 19580                                                                                                                                                                                                  Out-of-school rate for children of primary school age, female (household survey data) (%)
## 19581                                                                                                                                                               Out-of-school rate for children of primary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19582                                                                                                                                                                 Out-of-school rate for children of primary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19583                                                                                                                                                                         Out-of-school rate for children of primary school age, adjusted gender parity index (household survey data) (GPIA)
## 19584                                                                                                                                                                       Out-of-school rate for children of primary school age, adjusted location parity index (household survey data) (LPIA)
## 19585                                                                                                                                                                                                    Out-of-school rate for children of primary school age, male (household survey data) (%)
## 19586                                                                                                                                                                 Out-of-school rate for children of primary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19587                                                                                                                                                                   Out-of-school rate for children of primary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19588                                                                                                                                                                            Out-of-school rate for children of primary school age, poorest quintile, both sexes (household survey data) (%)
## 19589                                                                                                                                                                                Out-of-school rate for children of primary school age, poorest quintile, female (household survey data) (%)
## 19590                                                                                                                                             Out-of-school rate for children of primary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19591                                                                                                                                                       Out-of-school rate for children of primary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19592                                                                                                                                                     Out-of-school rate for children of primary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19593                                                                                                                                                                                  Out-of-school rate for children of primary school age, poorest quintile, male (household survey data) (%)
## 19594                                                                                                                                               Out-of-school rate for children of primary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19595                                                                                                                                                                             Out-of-school rate for children of primary school age, second quintile, both sexes (household survey data) (%)
## 19596                                                                                                                                                                                 Out-of-school rate for children of primary school age, second quintile, female (household survey data) (%)
## 19597                                                                                                                                              Out-of-school rate for children of primary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19598                                                                                                                                                        Out-of-school rate for children of primary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19599                                                                                                                                                      Out-of-school rate for children of primary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19600                                                                                                                                                                                   Out-of-school rate for children of primary school age, second quintile, male (household survey data) (%)
## 19601                                                                                                                                                Out-of-school rate for children of primary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19602                                                                                                                                                                             Out-of-school rate for children of primary school age, middle quintile, both sexes (household survey data) (%)
## 19603                                                                                                                                                                                 Out-of-school rate for children of primary school age, middle quintile, female (household survey data) (%)
## 19604                                                                                                                                              Out-of-school rate for children of primary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19605                                                                                                                                                        Out-of-school rate for children of primary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19606                                                                                                                                                      Out-of-school rate for children of primary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19607                                                                                                                                                                                   Out-of-school rate for children of primary school age, middle quintile, male (household survey data) (%)
## 19608                                                                                                                                                Out-of-school rate for children of primary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19609                                                                                                                                                                             Out-of-school rate for children of primary school age, fourth quintile, both sexes (household survey data) (%)
## 19610                                                                                                                                                                                 Out-of-school rate for children of primary school age, fourth quintile, female (household survey data) (%)
## 19611                                                                                                                                              Out-of-school rate for children of primary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19612                                                                                                                                                        Out-of-school rate for children of primary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19613                                                                                                                                                      Out-of-school rate for children of primary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19614                                                                                                                                                                                   Out-of-school rate for children of primary school age, fourth quintile, male (household survey data) (%)
## 19615                                                                                                                                                Out-of-school rate for children of primary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19616                                                                                                                                                                            Out-of-school rate for children of primary school age, richest quintile, both sexes (household survey data) (%)
## 19617                                                                                                                                                                                Out-of-school rate for children of primary school age, richest quintile, female (household survey data) (%)
## 19618                                                                                                                                             Out-of-school rate for children of primary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19619                                                                                                                                                       Out-of-school rate for children of primary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19620                                                                                                                                                     Out-of-school rate for children of primary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19621                                                                                                                                                                                  Out-of-school rate for children of primary school age, richest quintile, male (household survey data) (%)
## 19622                                                                                                                                               Out-of-school rate for children of primary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19623                                                                                                                                                                                       Out-of-school rate for children of primary school age, rural, both sexes (household survey data) (%)
## 19624                                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, female (household survey data) (%)
## 19625                                                                                                                                                          Out-of-school rate for children of primary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19626                                                                                                                                                                  Out-of-school rate for children of primary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19627                                                                                                                                                                                             Out-of-school rate for children of primary school age, rural, male (household survey data) (%)
## 19628                                                                                                                                                            Out-of-school rate for children of primary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19629                                                                                                                                                                     Out-of-school rate for children of primary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19630                                                                                                                                                                         Out-of-school rate for children of primary school age, rural, poorest quintile, female (household survey data) (%)
## 19631                                                                                                                             Out-of-school rate for children of primary school age, primary education, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19632                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, poorest quintile, male (household survey data) (%)
## 19633                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, second quintile, both sexes (household survey data) (%)
## 19634                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, second quintile, female (household survey data) (%)
## 19635                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19636                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, second quintile, male (household survey data) (%)
## 19637                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19638                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, middle quintile, female (household survey data) (%)
## 19639                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19640                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, middle quintile, male (household survey data) (%)
## 19641                                                                                                                                                                      Out-of-school rate for children of primary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19642                                                                                                                                                                          Out-of-school rate for children of primary school age, rural, fourth quintile, female (household survey data) (%)
## 19643                                                                                                                              Out-of-school rate for children of primary school age, primary education, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19644                                                                                                                                                                            Out-of-school rate for children of primary school age, rural, fourth quintile, male (household survey data) (%)
## 19645                                                                                                                                                                     Out-of-school rate for children of primary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19646                                                                                                                                                                         Out-of-school rate for children of primary school age, rural, richest quintile, female (household survey data) (%)
## 19647                                                                                                                             Out-of-school rate for children of primary school age, primary education, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19648                                                                                                                                                                           Out-of-school rate for children of primary school age, rural, richest quintile, male (household survey data) (%)
## 19649                                                                                                                                                                  Out-of-school rate for children of primary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19650                                                                                                                                                                                       Out-of-school rate for children of primary school age, urban, both sexes (household survey data) (%)
## 19651                                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, female (household survey data) (%)
## 19652                                                                                                                                                          Out-of-school rate for children of primary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19653                                                                                                                                                                  Out-of-school rate for children of primary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19654                                                                                                                                                                                             Out-of-school rate for children of primary school age, urban, male (household survey data) (%)
## 19655                                                                                                                                                            Out-of-school rate for children of primary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19656                                                                                                                                                                     Out-of-school rate for children of primary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19657                                                                                                                                                                         Out-of-school rate for children of primary school age, urban, poorest quintile, female (household survey data) (%)
## 19658                                                                                                                             Out-of-school rate for children of primary school age, primary education, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19659                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, poorest quintile, male (household survey data) (%)
## 19660                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, second quintile, both sexes (household survey data) (%)
## 19661                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, second quintile, female (household survey data) (%)
## 19662                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19663                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, second quintile, male (household survey data) (%)
## 19664                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19665                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, middle quintile, female (household survey data) (%)
## 19666                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19667                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, middle quintile, male (household survey data) (%)
## 19668                                                                                                                                                                      Out-of-school rate for children of primary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19669                                                                                                                                                                          Out-of-school rate for children of primary school age, urban, fourth quintile, female (household survey data) (%)
## 19670                                                                                                                              Out-of-school rate for children of primary school age, primary education, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19671                                                                                                                                                                            Out-of-school rate for children of primary school age, urban, fourth quintile, male (household survey data) (%)
## 19672                                                                                                                                                                     Out-of-school rate for children of primary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19673                                                                                                                                                                         Out-of-school rate for children of primary school age, urban, richest quintile, female (household survey data) (%)
## 19674                                                                                                                             Out-of-school rate for children of primary school age, primary education, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19675                                                                                                                                                                           Out-of-school rate for children of primary school age, urban, richest quintile, male (household survey data) (%)
## 19676                                                                                                                                                                  Out-of-school rate for children of primary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19677                                                                                                                                                                         Out-of-school rate for children of primary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19678                                                                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, both sexes (household survey data) (%)
## 19679                                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, female (household survey data) (%)
## 19680                                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19681                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19682                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (household survey data) (GPIA)
## 19683                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, adjusted location parity index (household survey data) (LPIA)
## 19684                                                                                                                                                                                         Out-of-school rate for adolescents of lower secondary school age, male (household survey data) (%)
## 19685                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19686                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19687                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, poorest quintile, both sexes (household survey data) (%)
## 19688                                                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female (household survey data) (%)
## 19689                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19690                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19691                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19692                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male (household survey data) (%)
## 19693                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19694                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, second quintile, both sexes (household survey data) (%)
## 19695                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, second quintile, female (household survey data) (%)
## 19696                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19697                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19698                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19699                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, second quintile, male (household survey data) (%)
## 19700                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19701                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, middle quintile, both sexes (household survey data) (%)
## 19702                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, middle quintile, female (household survey data) (%)
## 19703                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19704                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19705                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19706                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, middle quintile, male (household survey data) (%)
## 19707                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19708                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, fourth quintile, both sexes (household survey data) (%)
## 19709                                                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female (household survey data) (%)
## 19710                                                                                                                                   Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19711                                                                                                                                             Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19712                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19713                                                                                                                                                                        Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male (household survey data) (%)
## 19714                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19715                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, richest quintile, both sexes (household survey data) (%)
## 19716                                                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, richest quintile, female (household survey data) (%)
## 19717                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19718                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19719                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19720                                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, richest quintile, male (household survey data) (%)
## 19721                                                                                                                                    Out-of-school rate for adolescents of lower secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19722                                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, rural, both sexes (household survey data) (%)
## 19723                                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, female (household survey data) (%)
## 19724                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19725                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19726                                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, rural, male (household survey data) (%)
## 19727                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19728                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19729                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, female (household survey data) (%)
## 19730                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19731                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, male (household survey data) (%)
## 19732                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, both sexes (household survey data) (%)
## 19733                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, female (household survey data) (%)
## 19734                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19735                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, male (household survey data) (%)
## 19736                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19737                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, female (household survey data) (%)
## 19738                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19739                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, male (household survey data) (%)
## 19740                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19741                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, female (household survey data) (%)
## 19742                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19743                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, male (household survey data) (%)
## 19744                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19745                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, female (household survey data) (%)
## 19746                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19747                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, male (household survey data) (%)
## 19748                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19749                                                                                                                                                                            Out-of-school rate for adolescents of lower secondary school age, urban, both sexes (household survey data) (%)
## 19750                                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, female (household survey data) (%)
## 19751                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19752                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19753                                                                                                                                                                                  Out-of-school rate for adolescents of lower secondary school age, urban, male (household survey data) (%)
## 19754                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19755                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19756                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, female (household survey data) (%)
## 19757                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19758                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, male (household survey data) (%)
## 19759                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, both sexes (household survey data) (%)
## 19760                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, female (household survey data) (%)
## 19761                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19762                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, male (household survey data) (%)
## 19763                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19764                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, female (household survey data) (%)
## 19765                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19766                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, male (household survey data) (%)
## 19767                                                                                                                                                           Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19768                                                                                                                                                               Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, female (household survey data) (%)
## 19769                                                                                                                                      Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19770                                                                                                                                                                 Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, male (household survey data) (%)
## 19771                                                                                                                                                          Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19772                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, female (household survey data) (%)
## 19773                                                                                                                                     Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19774                                                                                                                                                                Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, male (household survey data) (%)
## 19775                                                                                                                                                       Out-of-school rate for adolescents of lower secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19776                                                                                                                                                              Out-of-school rate for adolescents of lower secondary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19777                                                                                                                                                                                         Out-of-school rate for youth of upper secondary school age, both sexes (household survey data) (%)
## 19778                                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, female (household survey data) (%)
## 19779                                                                                                                                                          Out-of-school rate for youth of upper secondary school age, female, adjusted location parity index (household survey data) (LPIA)
## 19780                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)
## 19781                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (household survey data) (GPIA)
## 19782                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, adjusted location parity index (household survey data) (LPIA)
## 19783                                                                                                                                                                                               Out-of-school rate for youth of upper secondary school age, male (household survey data) (%)
## 19784                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, male, adjusted location parity index (household survey data) (LPIA)
## 19785                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)
## 19786                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, poorest quintile, both sexes (household survey data) (%)
## 19787                                                                                                                                                                           Out-of-school rate for youth of upper secondary school age, poorest quintile, female (household survey data) (%)
## 19788                                                                                                                                        Out-of-school rate for youth of upper secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19789                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19790                                                                                                                                                Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)
## 19791                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, poorest quintile, male (household survey data) (%)
## 19792                                                                                                                                          Out-of-school rate for youth of upper secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19793                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, second quintile, both sexes (household survey data) (%)
## 19794                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, second quintile, female (household survey data) (%)
## 19795                                                                                                                                         Out-of-school rate for youth of upper secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19796                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19797                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)
## 19798                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, second quintile, male (household survey data) (%)
## 19799                                                                                                                                           Out-of-school rate for youth of upper secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19800                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, middle quintile, both sexes (household survey data) (%)
## 19801                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, middle quintile, female (household survey data) (%)
## 19802                                                                                                                                         Out-of-school rate for youth of upper secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19803                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19804                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)
## 19805                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, middle quintile, male (household survey data) (%)
## 19806                                                                                                                                           Out-of-school rate for youth of upper secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19807                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, fourth quintile, both sexes (household survey data) (%)
## 19808                                                                                                                                                                            Out-of-school rate for youth of upper secondary school age, fourth quintile, female (household survey data) (%)
## 19809                                                                                                                                         Out-of-school rate for youth of upper secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19810                                                                                                                                                   Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19811                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)
## 19812                                                                                                                                                                              Out-of-school rate for youth of upper secondary school age, fourth quintile, male (household survey data) (%)
## 19813                                                                                                                                           Out-of-school rate for youth of upper secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19814                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, richest quintile, both sexes (household survey data) (%)
## 19815                                                                                                                                                                           Out-of-school rate for youth of upper secondary school age, richest quintile, female (household survey data) (%)
## 19816                                                                                                                                        Out-of-school rate for youth of upper secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)
## 19817                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19818                                                                                                                                                Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)
## 19819                                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, richest quintile, male (household survey data) (%)
## 19820                                                                                                                                          Out-of-school rate for youth of upper secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)
## 19821                                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, rural, both sexes (household survey data) (%)
## 19822                                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, female (household survey data) (%)
## 19823                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)
## 19824                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)
## 19825                                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, rural, male (household survey data) (%)
## 19826                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)
## 19827                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, both sexes (household survey data) (%)
## 19828                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, female (household survey data) (%)
## 19829                                                                                                                                           Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19830                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, male (household survey data) (%)
## 19831                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, second quintile, both sexes (household survey data) (%)
## 19832                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, second quintile, female (household survey data) (%)
## 19833                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19834                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, second quintile, male (household survey data) (%)
## 19835                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, middle quintile, both sexes (household survey data) (%)
## 19836                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, middle quintile, female (household survey data) (%)
## 19837                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19838                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, middle quintile, male (household survey data) (%)
## 19839                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, both sexes (household survey data) (%)
## 19840                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, female (household survey data) (%)
## 19841                                                                                                                                            Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19842                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, male (household survey data) (%)
## 19843                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, rural, richest quintile, both sexes (household survey data) (%)
## 19844                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, rural, richest quintile, female (household survey data) (%)
## 19845                                                                                                                                           Out-of-school rate for youth of upper secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19846                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, rural, richest quintile, male (household survey data) (%)
## 19847                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)
## 19848                                                                                                                                                                                  Out-of-school rate for youth of upper secondary school age, urban, both sexes (household survey data) (%)
## 19849                                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, female (household survey data) (%)
## 19850                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)
## 19851                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)
## 19852                                                                                                                                                                                        Out-of-school rate for youth of upper secondary school age, urban, male (household survey data) (%)
## 19853                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)
## 19854                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, both sexes (household survey data) (%)
## 19855                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, female (household survey data) (%)
## 19856                                                                                                                                           Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19857                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, male (household survey data) (%)
## 19858                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, second quintile, both sexes (household survey data) (%)
## 19859                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, second quintile, female (household survey data) (%)
## 19860                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)
## 19861                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, second quintile, male (household survey data) (%)
## 19862                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, middle quintile, both sexes (household survey data) (%)
## 19863                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, middle quintile, female (household survey data) (%)
## 19864                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)
## 19865                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, middle quintile, male (household survey data) (%)
## 19866                                                                                                                                                                 Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, both sexes (household survey data) (%)
## 19867                                                                                                                                                                     Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, female (household survey data) (%)
## 19868                                                                                                                                            Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)
## 19869                                                                                                                                                                       Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, male (household survey data) (%)
## 19870                                                                                                                                                                Out-of-school rate for youth of upper secondary school age, urban, richest quintile, both sexes (household survey data) (%)
## 19871                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, urban, richest quintile, female (household survey data) (%)
## 19872                                                                                                                                           Out-of-school rate for youth of upper secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)
## 19873                                                                                                                                                                      Out-of-school rate for youth of upper secondary school age, urban, richest quintile, male (household survey data) (%)
## 19874                                                                                                                                                             Out-of-school rate for youth of upper secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)
## 19875                                                                                                                                                                    Out-of-school rate for youth of upper secondary school age, adjusted wealth parity index (household survey data) (WPIA)
## 19876                                                                                                                                                                                                                      School age population, early childhood education, both sexes (number)
## 19877                                                                                                                                                                                                                          School age population, early childhood education, female (number)
## 19878                                                                                                                                                                                                                            School age population, early childhood education, male (number)
## 19879                                                                                                                                                                                             School age population, early childhood educational development programmes, both sexes (number)
## 19880                                                                                                                                                                                                 School age population, early childhood educational development programmes, female (number)
## 19881                                                                                                                                                                                                   School age population, early childhood educational development programmes, male (number)
## 19882                                                                                                                                                                                                School age population, one year before than official primary entry age, both sexes (number)
## 19883                                                                                                                                                                                                    School age population, one year before than official primary entry age, female (number)
## 19884                                                                                                                                                                                                      School age population, one year before than official primary entry age, male (number)
## 19885                                                                                                                                                                                                          Population of the official entrance age to primary education, both sexes (number)
## 19886                                                                                                                                                                                                              Population of the official entrance age to primary education, female (number)
## 19887                                                                                                                                                                                                                Population of the official entrance age to primary education, male (number)
## 19888                                                                                                                                                                                                Population of the official entrance age to secondary general education, both sexes (number)
## 19889                                                                                                                                                                                                    Population of the official entrance age to secondary general education, female (number)
## 19890                                                                                                                                                                                                      Population of the official entrance age to secondary general education, male (number)
## 19891                                                                                                                                                                                                          School age population, post-secondary non-tertiary education, both sexes (number)
## 19892                                                                                                                                                                                                              School age population, post-secondary non-tertiary education, female (number)
## 19893                                                                                                                                                                                                                School age population, post-secondary non-tertiary education, male (number)
## 19894                                                                                                                                                                                                                                   Population of compulsory school age, both sexes (number)
## 19895                                                                                                                                                                                                                                       Population of compulsory school age, female (number)
## 19896                                                                                                                                                                                                                                         Population of compulsory school age, male (number)
## 19897                                                                                                                                                                                                        Proportion of primary schools with access to computers for pedagogical purposes (%)
## 19898                                                                                                                                                                                                                               Proportion of primary schools with access to electricity (%)
## 19899                                                                                                                                                                                                      Percentage of primary schools providing life skills-based HIV and sexuality education
## 19900                                                                                                                                                                       Proportion of primary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19901                                                                                                                                                                                                         Proportion of primary schools with access to Internet for pedagogical purposes (%)
## 19902                                                                                                                                                                                                              Proportion of primary schools with single-sex basic sanitation facilities (%)
## 19903                                                                                                                                                                                                                        Proportion of primary schools with basic handwashing facilities (%)
## 19904                                                                                                                                                                                                                      Proportion of primary schools with access to basic drinking water (%)
## 19905                                                                                                                                                                                                Proportion of lower secondary schools with access to computers for pedagogical purposes (%)
## 19906                                                                                                                                                                                                                       Proportion of lower secondary schools with access to electricity (%)
## 19907                                                                                                                                                                                              Percentage of lower secondary schools providing life skills-based HIV and sexuality education
## 19908                                                                                                                                                               Proportion of lower secondary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19909                                                                                                                                                                                                 Proportion of lower secondary schools with access to Internet for pedagogical purposes (%)
## 19910                                                                                                                                                                                                      Proportion of lower secondary schools with single-sex basic sanitation facilities (%)
## 19911                                                                                                                                                                                                                Proportion of lower secondary schools with basic handwashing facilities (%)
## 19912                                                                                                                                                                                                              Proportion of lower secondary schools with access to basic drinking water (%)
## 19913                                                                                                                                                                                                      Proportion of secondary schools with access to computers for pedagogical purposes (%)
## 19914                                                                                                                                                                                                       Proportion of secondary schools with access to Internet for pedagogical purposes (%)
## 19915                                                                                                                                                                                                Proportion of upper secondary schools with access to computers for pedagogical purposes (%)
## 19916                                                                                                                                                                                                                       Proportion of upper secondary schools with access to electricity (%)
## 19917                                                                                                                                                                                              Percentage of upper secondary schools providing life skills-based HIV and sexuality education
## 19918                                                                                                                                                               Proportion of upper secondary schools with access to adapted infrastructure and materials for students with disabilities (%)
## 19919                                                                                                                                                                                                 Proportion of upper secondary schools with access to Internet for pedagogical purposes (%)
## 19920                                                                                                                                                                                                      Proportion of upper secondary schools with single-sex basic sanitation facilities (%)
## 19921                                                                                                                                                                                                                Proportion of upper secondary schools with basic handwashing facilities (%)
## 19922                                                                                                                                                                                                              Proportion of upper secondary schools with access to basic drinking water (%)
## 19923                                                                                                                                                                                                                                    School life expectancy, pre-primary, both sexes (years)
## 19924                                                                                                                                                                                                                                        School life expectancy, pre-primary, female (years)
## 19925                                                                                                                                                                                                                             School life expectancy, pre-primary, gender parity index (GPI)
## 19926                                                                                                                                                                                                                                          School life expectancy, pre-primary, male (years)
## 19927                                                                                                                                                                                                                                        School life expectancy, primary, both sexes (years)
## 19928                                                                                                                                                                                                                                            School life expectancy, primary, female (years)
## 19929                                                                                                                                                                                                                                 School life expectancy, primary, gender parity index (GPI)
## 19930                                                                                                                                                                                                                                              School life expectancy, primary, male (years)
## 19931                                                                                                                                                                                                                    School life expectancy, primary and lower secondary, both sexes (years)
## 19932                                                                                                                                                                                                                        School life expectancy, primary and lower secondary, female (years)
## 19933                                                                                                                                                                                                                          School life expectancy, primary and lower secondary, male (years)
## 19934                                                                                                                                                                                                                          School life expectancy, primary and secondary, both sexes (years)
## 19935                                                                                                                                                                                                                              School life expectancy, primary and secondary, female (years)
## 19936                                                                                                                                                                                                                   School life expectancy, primary and secondary, gender parity index (GPI)
## 19937                                                                                                                                                                                                                                School life expectancy, primary and secondary, male (years)
## 19938                                                                                                                                                                                                             School life expectancy, primary and lower secondary, gender parity index (GPI)
## 19939                                                                                                                                                                                                                     School life expectancy, primary to tertiary, gender parity index (GPI)
## 19940                                                                                                                                                                                                                                      School life expectancy, secondary, both sexes (years)
## 19941                                                                                                                                                                                                                                          School life expectancy, secondary, female (years)
## 19942                                                                                                                                                                                                                               School life expectancy, secondary, gender parity index (GPI)
## 19943                                                                                                                                                                                                                                            School life expectancy, secondary, male (years)
## 19944                                                                                                                                                                                                                    School life expectancy, post-secondary non-tertiary, both sexes (years)
## 19945                                                                                                                                                                                                                        School life expectancy, post-secondary non-tertiary, female (years)
## 19946                                                                                                                                                                                                             School life expectancy, post-secondary non-tertiary, gender parity index (GPI)
## 19947                                                                                                                                                                                                                          School life expectancy, post-secondary non-tertiary, male (years)
## 19948                                                                                                                                                                                                                                       School life expectancy, tertiary, both sexes (years)
## 19949                                                                                                                                                                                                                                           School life expectancy, tertiary, female (years)
## 19950                                                                                                                                                                                                                                School life expectancy, tertiary, gender parity index (GPI)
## 19951                                                                                                                                                                                                                                             School life expectancy, tertiary, male (years)
## 19952                                                                                                                                                                                                                              Survival rate to Grade 4 of primary education, both sexes (%)
## 19953                                                                                                                                                                                                                                  Survival rate to Grade 4 of primary education, female (%)
## 19954                                                                                                                                                                                                                   Survival rate to Grade 4 of primary education, gender parity index (GPI)
## 19955                                                                                                                                                                                                                                    Survival rate to Grade 4 of primary education, male (%)
## 19956                                                                                                                                                                                                                   Survival rate to Grade 5 of primary education, gender parity index (GPI)
## 19957                                                                                                                                                                                                            Survival rate to the last grade of primary education, gender parity index (GPI)
## 19958                                                                                                                                                                                                        Teachers in early childhood educational development programmes, both sexes (number)
## 19959                                                                                                                                                                                                            Teachers in early childhood educational development programmes, female (number)
## 19960                                                                                                                                                                                                              Teachers in early childhood educational development programmes, male (number)
## 19961                                                                                                                                                                                                                                           Teachers in pre-primary education, male (number)
## 19962                                                                                                                                                                                                                                               Teachers in primary education, male (number)
## 19963                                                                                                                                                                                                                                 Teachers in lower secondary education, both sexes (number)
## 19964                                                                                                                                                                                                                                     Teachers in lower secondary education, female (number)
## 19965                                                                                                                                                                                                                                       Teachers in lower secondary education, male (number)
## 19966                                                                                                                                                                                                                                             Teachers in secondary education, male (number)
## 19967                                                                                                                                                                                                                                 Teachers in upper secondary education, both sexes (number)
## 19968                                                                                                                                                                                                                                     Teachers in upper secondary education, female (number)
## 19969                                                                                                                                                                                                                                       Teachers in upper secondary education, male (number)
## 19970                                                                                                                                                                                                                     Teachers in post-secondary non-tertiary education, both sexes (number)
## 19971                                                                                                                                                                                                                         Teachers in post-secondary non-tertiary education, female (number)
## 19972                                                                                                                                                                                                                           Teachers in post-secondary non-tertiary education, male (number)
## 19973                                                                                                                                                                                                                     Teachers in tertiary education ISCED 5 programmes, both sexes (number)
## 19974                                                                                                                                                                                                                         Teachers in tertiary education ISCED 5 programmes, female (number)
## 19975                                                                                                                                                                                                                           Teachers in tertiary education ISCED 5 programmes, male (number)
## 19976                                                                                                                                                                                                                                   Teachers in tertiary education programmes, male (number)
## 19977                                                                                                                                                                                                                          Teacher attrition rate from pre-primary education, both sexes (%)
## 19978                                                                                                                                                                                                                              Teacher attrition rate from pre-primary education, female (%)
## 19979                                                                                                                                                                                                     Teacher attrition rate from pre-primary education, adjusted gender parity index (GPIA)
## 19980                                                                                                                                                                                                                                Teacher attrition rate from pre-primary education, male (%)
## 19981                                                                                                                                                                                                                                  Teacher attrition rate from primary education, female (%)
## 19982                                                                                                                                                                                                         Teacher attrition rate from primary education, adjusted gender parity index (GPIA)
## 19983                                                                                                                                                                                                                                    Teacher attrition rate from primary education, male (%)
## 19984                                                                                                                                                                                                                              Teacher attrition rate from primary education, both sexes (%)
## 19985                                                                                                                                                                                                                          Teacher attrition rate from lower secondary education, female (%)
## 19986                                                                                                                                                                                                 Teacher attrition rate from lower secondary education, adjusted gender parity index (GPIA)
## 19987                                                                                                                                                                                                                            Teacher attrition rate from lower secondary education, male (%)
## 19988                                                                                                                                                                                                                      Teacher attrition rate from lower secondary education, both sexes (%)
## 19989                                                                                                                                                                                                                            Teacher attrition rate from secondary education, both sexes (%)
## 19990                                                                                                                                                                                                                                Teacher attrition rate from secondary education, female (%)
## 19991                                                                                                                                                                                                       Teacher attrition rate from secondary education, adjusted gender parity index (GPIA)
## 19992                                                                                                                                                                                                                    Teacher attrition rate from general secondary education, both sexes (%)
## 19993                                                                                                                                                                                                                        Teacher attrition rate from general secondary education, female (%)
## 19994                                                                                                                                                                                                                          Teacher attrition rate from general secondary education, male (%)
## 19995                                                                                                                                                                                                                                  Teacher attrition rate from secondary education, male (%)
## 19996                                                                                                                                                                                                                 Teacher attrition rate from vocational secondary education, both sexes (%)
## 19997                                                                                                                                                                                                                     Teacher attrition rate from vocational secondary education, female (%)
## 19998                                                                                                                                                                                                                       Teacher attrition rate from vocational secondary education, male (%)
## 19999                                                                                                                                                                                                                          Teacher attrition rate from upper secondary education, female (%)
## 20000                                                                                                                                                                                                 Teacher attrition rate from upper secondary education, adjusted gender parity index (GPIA)
## 20001                                                                                                                                                                                                                            Teacher attrition rate from upper secondary education, male (%)
## 20002                                                                                                                                                                                                                      Teacher attrition rate from upper secondary education, both sexes (%)
## 20003                                                                                                                                                                                                                                 Official entrance age to early childhood education (years)
## 20004                                                                                                                                                                                                                   Official entrance age to early childhood educational development (years)
## 20005                                                                                                                                                                                                                                     Official entrance age to pre-primary education (years)
## 20006                                                                                                                                                                                                                                 Official entrance age to upper secondary education (years)
## 20007                                                                                                                                                                                                                     Official entrance age to post-secondary non-tertiary education (years)
## 20008                                                                                                                                                                                                                                  Theoretical duration of early childhood education (years)
## 20009                                                                                                                                                                                                                    Theoretical duration of early childhood educational development (years)
## 20010                                                                                                                                                                                                                                      Theoretical duration of pre-primary education (years)
## 20011                                                                                                                                                                                                                      Theoretical duration of post-secondary non-tertiary education (years)
## 20012                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in pre-primary education, both sexes (%)
## 20013                                                                                                                                                                                       Proportion of teachers with the minimum required qualifications in pre-primary education, female (%)
## 20014                                                                                                                                                              Proportion of teachers with the minimum required qualifications in pre-primary education, adjusted gender parity index (GPIA)
## 20015                                                                                                                                                                                         Proportion of teachers with the minimum required qualifications in pre-primary education, male (%)
## 20016                                                                                                                                                                  Proportion of teachers with the minimum required qualifications in primary education, adjusted gender parity index (GPIA)
## 20017                                                                                                                                                                               Proportion of teachers with the minimum required qualifications in lower secondary education, both sexes (%)
## 20018                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in lower secondary education, female (%)
## 20019                                                                                                                                                          Proportion of teachers with the minimum required qualifications in lower secondary education, adjusted gender parity index (GPIA)
## 20020                                                                                                                                                                                     Proportion of teachers with the minimum required qualifications in lower secondary education, male (%)
## 20021                                                                                                                                                                Proportion of teachers with the minimum required qualifications in secondary education, adjusted gender parity index (GPIA)
## 20022                                                                                                                                                                               Proportion of teachers with the minimum required qualifications in upper secondary education, both sexes (%)
## 20023                                                                                                                                                                                   Proportion of teachers with the minimum required qualifications in upper secondary education, female (%)
## 20024                                                                                                                                                          Proportion of teachers with the minimum required qualifications in upper secondary education, adjusted gender parity index (GPIA)
## 20025                                                                                                                                                                                     Proportion of teachers with the minimum required qualifications in upper secondary education, male (%)
## 20026                                                                                                                                                                                                                           Government expenditure on pre-primary education, PPP$ (millions)
## 20027                                                                                                                                                                                                                               Government expenditure on primary education, PPP$ (millions)
## 20028                                                                                                                                                                                                                       Government expenditure on lower secondary education, PPP$ (millions)
## 20029                                                                                                                                                                                                                             Government expenditure on secondary education, PPP$ (millions)
## 20030                                                                                                                                                                             Government expenditure on secondary and post-secondary non-tertiary vocational education only, PPP$ (millions)
## 20031                                                                                                                                                                                                                       Government expenditure on upper secondary education, PPP$ (millions)
## 20032                                                                                                                                                                                                           Government expenditure on post-secondary non-tertiary education, PPP$ (millions)
## 20033                                                                                                                                                                                                                              Government expenditure on tertiary education, PPP$ (millions)
## 20034                                                                                                                                                                                                                                       Government expenditure on education, PPP$ (millions)
## 20035                                                                                                                                                                                                                Government expenditure on education not specified by level, PPP$ (millions)
## 20036                                                                                                                                                                                                                  Government expenditure on pre-primary education, constant PPP$ (millions)
## 20037                                                                                                                                                                                                                      Government expenditure on primary education, constant PPP$ (millions)
## 20038                                                                                                                                                                                                              Government expenditure on lower secondary education, constant PPP$ (millions)
## 20039                                                                                                                                                                                                                    Government expenditure on secondary education, constant PPP$ (millions)
## 20040                                                                                                                                                                    Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant PPP$ (millions)
## 20041                                                                                                                                                                                                              Government expenditure on upper secondary education, constant PPP$ (millions)
## 20042                                                                                                                                                                                                  Government expenditure on post-secondary non-tertiary education, constant PPP$ (millions)
## 20043                                                                                                                                                                                                                     Government expenditure on tertiary education, constant PPP$ (millions)
## 20044                                                                                                                                                                                                                              Government expenditure on education, constant PPP$ (millions)
## 20045                                                                                                                                                                                                       Government expenditure on education not specified by level, constant PPP$ (millions)
## 20046                                                                                                                                                                                                                            Government expenditure on pre-primary education, US$ (millions)
## 20047                                                                                                                                                                                                                                Government expenditure on primary education, US$ (millions)
## 20048                                                                                                                                                                                                                        Government expenditure on lower secondary education, US$ (millions)
## 20049                                                                                                                                                                                                                              Government expenditure on secondary education, US$ (millions)
## 20050                                                                                                                                                                              Government expenditure on secondary and post-secondary non-tertiary vocational education only, US$ (millions)
## 20051                                                                                                                                                                                                                        Government expenditure on upper secondary education, US$ (millions)
## 20052                                                                                                                                                                                                            Government expenditure on post-secondary non-tertiary education, US$ (millions)
## 20053                                                                                                                                                                                                                               Government expenditure on tertiary education, US$ (millions)
## 20054                                                                                                                                                                                                                                        Government expenditure on education, US$ (millions)
## 20055                                                                                                                                                                                                                 Government expenditure on education not specified by level, US$ (millions)
## 20056                                                                                                                                                                                                                   Government expenditure on pre-primary education, constant US$ (millions)
## 20057                                                                                                                                                                                                                       Government expenditure on primary education, constant US$ (millions)
## 20058                                                                                                                                                                                                               Government expenditure on lower secondary education, constant US$ (millions)
## 20059                                                                                                                                                                                                                     Government expenditure on secondary education, constant US$ (millions)
## 20060                                                                                                                                                                     Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant US$ (millions)
## 20061                                                                                                                                                                                                               Government expenditure on upper secondary education, constant US$ (millions)
## 20062                                                                                                                                                                                                   Government expenditure on post-secondary non-tertiary education, constant US$ (millions)
## 20063                                                                                                                                                                                                                      Government expenditure on tertiary education, constant US$ (millions)
## 20064                                                                                                                                                                                                                               Government expenditure on education, constant US$ (millions)
## 20065                                                                                                                                                                                                        Government expenditure on education not specified by level, constant US$ (millions)
## 20066                                                                                                                                                                                                                            Government expenditure on pre-primary education as % of GDP (%)
## 20067                                                                                                                                                                                                                                Government expenditure on primary education as % of GDP (%)
## 20068                                                                                                                                                                                                             Government expenditure on lower secondary education as a percentage of GDP (%)
## 20069                                                                                                                                                                                                                              Government expenditure on secondary education as % of GDP (%)
## 20070                                                                                                                                                                                   Government expenditure on secondary and post-secondary non-tertiary vocational education as % of GDP (%)
## 20071                                                                                                                                                                                                             Government expenditure on upper secondary education as a percentage of GDP (%)
## 20072                                                                                                                                                                                                            Government expenditure on post-secondary non-tertiary education as % of GDP (%)
## 20073                                                                                                                                                                                                                               Government expenditure on tertiary education as % of GDP (%)
## 20074                                                                                                                                                                                                       Capital expenditure as % of total expenditure in pre-primary public institutions (%)
## 20075                                                                                                                                                                                                       Current expenditure as % of total expenditure in pre-primary public institutions (%)
## 20076                                                                                                                                                                         Current expenditure other than staff compensation as % of total expenditure in pre-primary public institutions (%)
## 20077                                                                                                                                                                                                    All staff compensation as % of total expenditure in pre-primary public institutions (%)
## 20078                                                                                                                                                                                Non-teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%)
## 20079                                                                                                                                                                                    Teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%)
## 20080                                                                                                                                                                             Expenditure on school books and teaching material as % of total expenditure in primary public institutions (%)
## 20081                                                                                                                                                                                                           Capital expenditure as % of total expenditure in primary public institutions (%)
## 20082                                                                                                                                                                                                           Current expenditure as % of total expenditure in primary public institutions (%)
## 20083                                                                                                                                                                             Current expenditure other than staff compensation as % of total expenditure in primary public institutions (%)
## 20084                                                                                                                                                                                    Non-teaching staff compensation as a percentage of total expenditure in primary public institutions (%)
## 20085                                                                                                                                                                                                        All staff compensation as % of total expenditure in primary public institutions (%)
## 20086                                                                                                                                                                                        Teaching staff compensation as a percentage of total expenditure in primary public institutions (%)
## 20087                                                                                                                                                                                                   Capital expenditure as % of total expenditure in lower secondary public institutions (%)
## 20088                                                                                                                                                                                                   Current expenditure as % of total expenditure in lower secondary public institutions (%)
## 20089                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in lower secondary public institutions (%)
## 20090                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%)
## 20091                                                                                                                                                                                                All staff compensation as % of total expenditure in lower secondary public institutions (%)
## 20092                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%)
## 20093                                                                                                                                                                           Expenditure on school books and teaching material as % of total expenditure in secondary public institutions (%)
## 20094                                                                                                                                                                                                         Capital expenditure as % of total expenditure in secondary public institutions (%)
## 20095                                                                                                                                                                                                         Current expenditure as % of total expenditure in secondary public institutions (%)
## 20096                                                                                                                                                                           Current expenditure other than staff compensation as % of total expenditure in secondary public institutions (%)
## 20097                                                                                                                                                                                  Non-teaching staff compensation as a percentage of total expenditure in secondary public institutions (%)
## 20098                                                                                                                                                                                                      All staff compensation as % of total expenditure in secondary public institutions (%)
## 20099                                                                                                                                                                                      Teaching staff compensation as a percentage of total expenditure in secondary public institutions (%)
## 20100                                                                                                                                                                                                   Capital expenditure as % of total expenditure in upper-secondary public institutions (%)
## 20101                                                                                                                                                                                                   Current expenditure as % of total expenditure in upper-secondary public institutions (%)
## 20102                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in upper secondary public institutions (%)
## 20103                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%)
## 20104                                                                                                                                                                                                All staff compensation as % of total expenditure in upper secondary public institutions (%)
## 20105                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%)
## 20106                                                                                                                                                                                       Capital expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20107                                                                                                                                                                                       Current expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20108                                                                                                                                                         Current expenditure other than staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20109                                                                                                                                                                Non-teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%)
## 20110                                                                                                                                                                                    All staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)
## 20111                                                                                                                                                                    Teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%)
## 20112                                                                                                                                                                                                          Capital expenditure as % of total expenditure in tertiary public institutions (%)
## 20113                                                                                                                                                                                                          Current expenditure as % of total expenditure in tertiary public institutions (%)
## 20114                                                                                                                                                                            Current expenditure other than staff compensation as % of total expenditure in tertiary public institutions (%)
## 20115                                                                                                                                                                                   Non-teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%)
## 20116                                                                                                                                                                                                       All staff compensation as % of total expenditure in tertiary public institutions (%)
## 20117                                                                                                                                                                                       Teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%)
## 20118                                                                                                                                                                                                                   Capital expenditure as % of total expenditure in public institutions (%)
## 20119                                                                                                                                                                                     Current expenditure other than staff compensation as % of total expenditure in public institutions (%)
## 20120                                                                                                                                                                                            Non-teaching staff compensation as a percentage of total expenditure in public institutions (%)
## 20121                                                                                                                                                                                                                All staff compensation as % of total expenditure in public institutions (%)
## 20122                                                                                                                                                                                                Teaching staff compensation as a percentage of total expenditure in public institutions (%)
## 20123                                                                                                                                                                                                       Initial government funding per pre-primary student as a percentage of GDP per capita
## 20124                                                                                                                                                                                                           Initial government funding per primary student as a percentage of GDP per capita
## 20125                                                                                                                                                                                                            Initial household funding per primary student as a percentage of GDP per capita
## 20126                                                                                                                                                                                                   Initial government funding per lower secondary student as a percentage of GDP per capita
## 20127                                                                                                                                                                                                         Initial government funding per secondary student as a percentage of GDP per capita
## 20128                                                                                                                                                                                                          Initial household funding per secondary student as a percentage of GDP per capita
## 20129                                                                                                                                                                                                   Initial government funding per upper secondary student as a percentage of GDP per capita
## 20130                                                                                                                                                                                                          Initial government funding per tertiary student as a percentage of GDP per capita
## 20131                                                                                                                                                                                                           Initial household funding per tertiary student as a percentage of GDP per capita
## 20132                                                                                                                                                                                                                          Initial government funding per pre-primary student, constant PPP$
## 20133                                                                                                                                                                                                                              Initial government funding per primary student, constant PPP$
## 20134                                                                                                                                                                                                                               Initial household funding per primary student, constant PPP$
## 20135                                                                                                                                                                                                                      Initial government funding per lower secondary student, constant PPP$
## 20136                                                                                                                                                                                                                            Initial government funding per secondary student, constant PPP$
## 20137                                                                                                                                                                                                                             Initial household funding per secondary student, constant PPP$
## 20138                                                                                                                                                                                                                      Initial government funding per upper secondary student, constant PPP$
## 20139                                                                                                                                                                                                                             Initial government funding per tertiary student, constant PPP$
## 20140                                                                                                                                                                                                                              Initial household funding per tertiary student, constant PPP$
## 20141                                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, both sexes (%)
## 20142                                                                                                                                                                         Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, female (%)
## 20143                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted gender parity index (GPIA)
## 20144                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, high socio-economic status (%)
## 20145                                                                                                                                                      Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, low socio-economic status (%)
## 20146                                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, male (%)
## 20147                                                                                                                                                       Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, non-immigrant background (%)
## 20148                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, immigrant background (%)
## 20149                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted native parity index (NPIA)
## 20150                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted wealth parity index (WPIA)
## 20151                                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, both sexes (%)
## 20152                                                                                                                                                                         Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, female (%)
## 20153                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted gender parity index (GPIA)
## 20154                                                                                                                                                     Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, high socio-economic status (%)
## 20155                                                                                                                                                      Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, low socio-economic status (%)
## 20156                                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, male (%)
## 20157                                                                                                                                                       Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, non-immigrant background (%)
## 20158                                                                                                                                                           Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, immigrant background (%)
## 20159                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted native parity index (NPIA)
## 20160                                                                                                                                                Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted wealth parity index (WPIA)
## 20161                                                                                                                                                                                                         Number of years of compulsory pre-primary education guaranteed in legal frameworks
## 20162                                                                                                                                                                                               Number of years of compulsory primary and secondary education guaranteed in legal frameworks
## 20163                                                                                                                                                                                                               Number of years of free pre-primary education guaranteed in legal frameworks
## 20164                                                                                                                                                                                                     Number of years of free primary and secondary education guaranteed in legal frameworks
## 20165                                                                                                                                                                                                     End of the academic school year (pre-primary to post-secondary non tertiary education)
## 20166                                                                                                                                                                                                                                       End of the academic school year (tertiary education)
## 20167                                                                                                                                                                                               End month of the academic school year (pre-primary to post-secondary non-tertiary education)
## 20168                                                                                                                                                                                                                                 End month of the academic school year (tertiary education)
## 20169                                                                                                                                                                                                   Start of the academic school year (pre-primary to post-secondary non tertiary education)
## 20170                                                                                                                                                                                                                                     Start of the academic school year (tertiary education)
## 20171                                                                                                                                                                                             Start month of the academic school year (pre-primary to post-secondary non-tertiary education)
## 20172                                                                                                                                                                                                                               Start month of the academic school year (tertiary education)
## 20173                                                                                                                                                                                                                                             Manufacturing Real Output per Empl. (1980=100)
## 20174                                                                                                                                                                                                                                             Manufacturing Real Output per Empl. (1987=100)
## 20175                                                                                                                                                                                                                                           Manufacturing Real Earnings per Empl. (1980=100)
## 20176                                                                                                                                                                                                                                            Manufacturing Real Earnings per Empl.(1987=100)
## 20177                                                                                                                                                                                                                                                        Manufacturing Employment (1980=100)
## 20178                                                                                                                                                                                                                                                        Manufacturing Employment (1987=100)
## 20179                                                                                                                                                                                                                                                 Manufacturing Earnings as % of Value Added
## 20180                                                                                                                                                                                                                                                 Manufacturing Earnings as % of Value Added
## 20181                                                                                                                                                                                                                                                              Human development index (HDI)
## 20182                                                                                                                                                                                                                                                               Unemployment rate,Percent,,,
## 20183                                                                                                                                                                                                                                                                      Combined polity score
## 20184                                                                                                                                                                                                                                                                Institutionalized autocracy
## 20185                                                                                                                                                                                                                                                                Institutionalized democracy
## 20186                                                                                                                                                                                                                                                              Revised Combined Polity Score
## 20187                                                                                                                                                                                                                                               Labor volume for unskilled females, millions
## 20188                                                                                                                                                                                                                                                 Labor volume for skilled females, millions
## 20189                                                                                                                                                                                                                                                  Labor volume for unskilled male, millions
## 20190                                                                                                                                                                                                                                                   Labor volume for skilled males, millions
## 20191                                                                                                                                                                                                                                                         Voice and Accountability: Estimate
## 20192                                                                                                                                                                                                                                                Voice and Accountability: Number of Sources
## 20193                                                                                                                                                                                                                                                  Voice and Accountability: Percentile Rank
## 20194                                                                                                                                                                                                          Voice and Accountability: Percentile Rank, Lower Bound of 90% Confidence Interval
## 20195                                                                                                                                                                                                          Voice and Accountability: Percentile Rank, Upper Bound of 90% Confidence Interval
## 20196                                                                                                                                                                                                                                                   Voice and Accountability: Standard Error
## 20197                                                                                                                                                                                                                                                   Battle-related deaths (number of people)
## 20198                                                                                                                                                                                                                   Intentional homicide rate (per 100,000 people, CTS and national sources)
## 20199                                                                                                                                                                                                                                        Intentional homicide rate (per 100,000 people, WHO)
## 20200                                                                                                                                                                                     Internally displaced persons, new displacement associated with conflict and violence (number of cases)
## 20201                                                                                                                                                                                                 Internally displaced persons, new displacement associated with disasters (number of cases)
## 20202                                                                                                                                                                                                  Internally displaced persons, total displaced by conflict and violence (number of people)
## 20203                                                                                                                                                                                                                                                      Internally displaced persons (number)
## 20204                                                                                                                                                                                                                                       Internally displaced persons (number, high estimate)
## 20205                                                                                                                                                                                                                                        Internally displaced persons (number, low estimate)
## 20206                                                                                                                                                                                                            Intentional homicides, UN Crime Trends Survey (CTS) source (per 100,000 people)
## 20207                                                                                                                                                                                                            Intentional homicides, international public health sources (per 100,000 people)
## 20208                                                                                                                                                                                                                   Intentional homicides, international police sources (per 100,000 people)
## 20209                                                                                                                                                                                                                      Intentional homicides, government police sources (per 100,000 people)
## 20210                                                                                                                                                                                                                                         Intentional homicides, female (per 100,000 female)
## 20211                                                                                                                                                                                                                                             Intentional homicides, male (per 100,000 male)
## 20212                                                                                                                                                                                                                                                 Intentional homicides (per 100,000 people)
## 20213                                                                                                                                                                                                    Presence of peace keepers (number of troops, police, and military observers in mandate)
## 20214                                                                                                                                                                                                                                            Annual wage for unskilled female workers in US$
## 20215                                                                                                                                                                                                                                             Annual wage for skilled female workers  in US$
## 20216                                                                                                                                                                                                                                             Annual wage for unskilled male workers  in US$
## 20217                                                                                                                                                                                                                                               Annual wage for skilled male workers  in US$
## 20218                                                                                                                                                                                                                                             Account at a financial institution (% age 15+)
## 20219                                                                                                                                                                                                                                       Account at a financial institution, male (% age 15+)
## 20220                                                                                                                                                                                                                                     Account at a financial institution, female (% age 15+)
## 20221                                                                                                                                                                                                                       Account at a financial institution, income, poorest 40% (% ages 15+)
## 20222                                                                                                                                                                                                                       Account at a financial institution, income, richest 60% (% ages 15+)
## 20223                                                                                                                                                                                                                                                                   Account (% age 15+) [ts]
## 20224                                                                                                                                                                                                                                                             Account, male (% age 15+) [ts]
## 20225                                                                                                                                                                                                                                                           Account, female (% age 15+) [ts]
## 20226                                                                                                                                                                                                                                                  Account, young adults (% ages 15-24) [ts]
## 20227                                                                                                                                                                                                                                                    Account, older adults (% ages 25+) [ts]
## 20228                                                                                                                                                                                                                                       Account, primary education or less (% ages 15+) [ts]
## 20229                                                                                                                                                                                                                                     Account, secondary education or more (% ages 15+) [ts]
## 20230                                                                                                                                                                                                                                             Account, income, poorest 40% (% ages 15+) [ts]
## 20231                                                                                                                                                                                                                                             Account, income, richest 60% (% ages 15+) [ts]
## 20232                                                                                                                                                                                                                                                                 Mobile account (% age 15+)
## 20233                                                                                                                                                                                                                                                           Mobile account, male (% age 15+)
## 20234                                                                                                                                                                                                                                                         Mobile account, female (% age 15+)
## 20235                                                                                                                                                                                                                                           Mobile account, income, poorest 40% (% ages 15+)
## 20236                                                                                                                                                                                                                                           Mobile account, income, richest 60% (% ages 15+)
## 20237                                                                                                                                                                                    Wage Premia for Females (the ratio of skilled female workers' wage  to  unskilled female workers' wage)
## 20238                                                                                                                                                                                         Wage Premia for Males  (the ratio of skilled male workers' wage  to  unskilled male workers' wage)

詳しい情報を得るには

short = FALSE とします。時間がかかるので、検索は、Indicator と、名前などの情報をもったファイルを手元に持っておくことにします。

wdi_cache <- WDIcache()

右上の窓枠(pane)から、wdi_cache を探して、中身を見てみましょう。series と、country の二つのデータ・フレームからなっているリストです。三角印や、右から二番目の巻物のようなアイコンをクリックすると中身が見えます。

WDIsearch(string = "CPI Price", field = "name", short = FALSE, cache = NULL)
##         indicator                                            name
## 2444    CPTOTNSXN                              CPI Price, nominal
## 2445 CPTOTSAXMZGY CPI Price, % y-o-y, median weighted, seas. adj.
## 2446    CPTOTSAXN                  CPI Price, nominal, seas. adj.
## 2447 CPTOTSAXNZGY         CPI Price, % y-o-y, nominal, seas. adj.
##                                                                                                                                                                                                                  description
## 2444                                                                The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is not seasonally adjusted.
## 2445                                                                Median inflation rate calculated for geographical aggregates (regions, world, etc) of the annual percent change of the CPI. Data is seasonally adjusted.
## 2446                                               The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal terms and seasonally adjusted.
## 2447 The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal percentage terms, measured on a year-on-year basis, and seasonally adjusted.
##               sourceDatabase
## 2444 Global Economic Monitor
## 2445 Global Economic Monitor
## 2446 Global Economic Monitor
## 2447 Global Economic Monitor
##                                           sourceOrganization
## 2444 World Bank staff calculations based on Datastream data.
## 2445 World Bank staff calculations based on Datastream data.
## 2446 World Bank staff calculations based on Datastream data.
## 2447 World Bank staff calculations based on Datastream data.

でも、下の、検索と同じ結果を得ますが、cache = wdi_cache を使うと、ダウンロードする情報を減らすことができるということです。

short = FALSE では、データの概要 (description) も得ることができます。

検索例 3(WDI名)

WDIsearch(string = "CPI Price", field = "name", short = FALSE, cache = wdi_cache)
##         indicator                                            name
## 2562    CPTOTNSXN                              CPI Price, nominal
## 2563 CPTOTSAXMZGY CPI Price, % y-o-y, median weighted, seas. adj.
## 2564    CPTOTSAXN                  CPI Price, nominal, seas. adj.
## 2565 CPTOTSAXNZGY         CPI Price, % y-o-y, nominal, seas. adj.
##                                                                                                                                                                                                                  description
## 2562                                                                The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is not seasonally adjusted.
## 2563                                                                Median inflation rate calculated for geographical aggregates (regions, world, etc) of the annual percent change of the CPI. Data is seasonally adjusted.
## 2564                                               The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal terms and seasonally adjusted.
## 2565 The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal percentage terms, measured on a year-on-year basis, and seasonally adjusted.
##               sourceDatabase
## 2562 Global Economic Monitor
## 2563 Global Economic Monitor
## 2564 Global Economic Monitor
## 2565 Global Economic Monitor
##                                           sourceOrganization
## 2562 World Bank staff calculations based on Datastream data.
## 2563 World Bank staff calculations based on Datastream data.
## 2564 World Bank staff calculations based on Datastream data.
## 2565 World Bank staff calculations based on Datastream data.
  • CPTOTNSXN: CPI Price, nominal
    • The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is not seasonally adjusted.

検索例 4(WDI)

WDIsearch(string = "NY.GDP.MKTP.KD.ZG", field = "indicator", short = FALSE, cache = wdi_cache)
##               indicator                  name
## 11967 NY.GDP.MKTP.KD.ZG GDP growth (annual %)
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           description
## 11967 Annual percentage growth rate of GDP at market prices based on constant local currency. Aggregates are based on constant 2015 prices, expressed in U.S. dollars. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.
##                     sourceDatabase
## 11967 World Development Indicators
##                                                              sourceOrganization
## 11967 World Bank national accounts data, and OECD National Accounts data files.

練習 2 - 検索(long w/ cache)

string と、field を、ふたつとも入れてください。

WDIsearch(string = "", field = "", short = FALSE, cache = wdi_cache)

指標 WDI データのダウンロード

Indicator が決まったら、ダウンロードします。

右下の、Help Tab に WDI と入れると、使い方もわかります。

?WDI

ダウンロード例 1-1

df_gdp1 <- WDI(country = "all", indicator = "NY.GDP.MKTP.CD")
df_gdp1
##                                                    country iso2c iso3c year
## 1                              Africa Eastern and Southern    ZH   AFE 2022
## 2                              Africa Eastern and Southern    ZH   AFE 2021
## 3                              Africa Eastern and Southern    ZH   AFE 2020
## 4                              Africa Eastern and Southern    ZH   AFE 2019
## 5                              Africa Eastern and Southern    ZH   AFE 2018
## 6                              Africa Eastern and Southern    ZH   AFE 2017
## 7                              Africa Eastern and Southern    ZH   AFE 2016
## 8                              Africa Eastern and Southern    ZH   AFE 2015
## 9                              Africa Eastern and Southern    ZH   AFE 2014
## 10                             Africa Eastern and Southern    ZH   AFE 2013
## 11                             Africa Eastern and Southern    ZH   AFE 2012
## 12                             Africa Eastern and Southern    ZH   AFE 2011
## 13                             Africa Eastern and Southern    ZH   AFE 2010
## 14                             Africa Eastern and Southern    ZH   AFE 2009
## 15                             Africa Eastern and Southern    ZH   AFE 2008
## 16                             Africa Eastern and Southern    ZH   AFE 2007
## 17                             Africa Eastern and Southern    ZH   AFE 2006
## 18                             Africa Eastern and Southern    ZH   AFE 2005
## 19                             Africa Eastern and Southern    ZH   AFE 2004
## 20                             Africa Eastern and Southern    ZH   AFE 2003
## 21                             Africa Eastern and Southern    ZH   AFE 2002
## 22                             Africa Eastern and Southern    ZH   AFE 2001
## 23                             Africa Eastern and Southern    ZH   AFE 2000
## 24                             Africa Eastern and Southern    ZH   AFE 1999
## 25                             Africa Eastern and Southern    ZH   AFE 1998
## 26                             Africa Eastern and Southern    ZH   AFE 1997
## 27                             Africa Eastern and Southern    ZH   AFE 1996
## 28                             Africa Eastern and Southern    ZH   AFE 1995
## 29                             Africa Eastern and Southern    ZH   AFE 1994
## 30                             Africa Eastern and Southern    ZH   AFE 1993
## 31                             Africa Eastern and Southern    ZH   AFE 1992
## 32                             Africa Eastern and Southern    ZH   AFE 1991
## 33                             Africa Eastern and Southern    ZH   AFE 1990
## 34                             Africa Eastern and Southern    ZH   AFE 1989
## 35                             Africa Eastern and Southern    ZH   AFE 1988
## 36                             Africa Eastern and Southern    ZH   AFE 1987
## 37                             Africa Eastern and Southern    ZH   AFE 1986
## 38                             Africa Eastern and Southern    ZH   AFE 1985
## 39                             Africa Eastern and Southern    ZH   AFE 1984
## 40                             Africa Eastern and Southern    ZH   AFE 1983
## 41                             Africa Eastern and Southern    ZH   AFE 1982
## 42                             Africa Eastern and Southern    ZH   AFE 1981
## 43                             Africa Eastern and Southern    ZH   AFE 1980
## 44                             Africa Eastern and Southern    ZH   AFE 1979
## 45                             Africa Eastern and Southern    ZH   AFE 1978
## 46                             Africa Eastern and Southern    ZH   AFE 1977
## 47                             Africa Eastern and Southern    ZH   AFE 1976
## 48                             Africa Eastern and Southern    ZH   AFE 1975
## 49                             Africa Eastern and Southern    ZH   AFE 1974
## 50                             Africa Eastern and Southern    ZH   AFE 1973
## 51                             Africa Eastern and Southern    ZH   AFE 1972
## 52                             Africa Eastern and Southern    ZH   AFE 1971
## 53                             Africa Eastern and Southern    ZH   AFE 1970
## 54                             Africa Eastern and Southern    ZH   AFE 1969
## 55                             Africa Eastern and Southern    ZH   AFE 1968
## 56                             Africa Eastern and Southern    ZH   AFE 1967
## 57                             Africa Eastern and Southern    ZH   AFE 1966
## 58                             Africa Eastern and Southern    ZH   AFE 1965
## 59                             Africa Eastern and Southern    ZH   AFE 1964
## 60                             Africa Eastern and Southern    ZH   AFE 1963
## 61                             Africa Eastern and Southern    ZH   AFE 1962
## 62                             Africa Eastern and Southern    ZH   AFE 1961
## 63                             Africa Eastern and Southern    ZH   AFE 1960
## 64                              Africa Western and Central    ZI   AFW 2022
## 65                              Africa Western and Central    ZI   AFW 2021
## 66                              Africa Western and Central    ZI   AFW 2020
## 67                              Africa Western and Central    ZI   AFW 2019
## 68                              Africa Western and Central    ZI   AFW 2018
## 69                              Africa Western and Central    ZI   AFW 2017
## 70                              Africa Western and Central    ZI   AFW 2016
## 71                              Africa Western and Central    ZI   AFW 2015
## 72                              Africa Western and Central    ZI   AFW 2014
## 73                              Africa Western and Central    ZI   AFW 2013
## 74                              Africa Western and Central    ZI   AFW 2012
## 75                              Africa Western and Central    ZI   AFW 2011
## 76                              Africa Western and Central    ZI   AFW 2010
## 77                              Africa Western and Central    ZI   AFW 2009
## 78                              Africa Western and Central    ZI   AFW 2008
## 79                              Africa Western and Central    ZI   AFW 2007
## 80                              Africa Western and Central    ZI   AFW 2006
## 81                              Africa Western and Central    ZI   AFW 2005
## 82                              Africa Western and Central    ZI   AFW 2004
## 83                              Africa Western and Central    ZI   AFW 2003
## 84                              Africa Western and Central    ZI   AFW 2002
## 85                              Africa Western and Central    ZI   AFW 2001
## 86                              Africa Western and Central    ZI   AFW 2000
## 87                              Africa Western and Central    ZI   AFW 1999
## 88                              Africa Western and Central    ZI   AFW 1998
## 89                              Africa Western and Central    ZI   AFW 1997
## 90                              Africa Western and Central    ZI   AFW 1996
## 91                              Africa Western and Central    ZI   AFW 1995
## 92                              Africa Western and Central    ZI   AFW 1994
## 93                              Africa Western and Central    ZI   AFW 1993
## 94                              Africa Western and Central    ZI   AFW 1992
## 95                              Africa Western and Central    ZI   AFW 1991
## 96                              Africa Western and Central    ZI   AFW 1990
## 97                              Africa Western and Central    ZI   AFW 1989
## 98                              Africa Western and Central    ZI   AFW 1988
## 99                              Africa Western and Central    ZI   AFW 1987
## 100                             Africa Western and Central    ZI   AFW 1986
## 101                             Africa Western and Central    ZI   AFW 1985
## 102                             Africa Western and Central    ZI   AFW 1984
## 103                             Africa Western and Central    ZI   AFW 1983
## 104                             Africa Western and Central    ZI   AFW 1982
## 105                             Africa Western and Central    ZI   AFW 1981
## 106                             Africa Western and Central    ZI   AFW 1980
## 107                             Africa Western and Central    ZI   AFW 1979
## 108                             Africa Western and Central    ZI   AFW 1978
## 109                             Africa Western and Central    ZI   AFW 1977
## 110                             Africa Western and Central    ZI   AFW 1976
## 111                             Africa Western and Central    ZI   AFW 1975
## 112                             Africa Western and Central    ZI   AFW 1974
## 113                             Africa Western and Central    ZI   AFW 1973
## 114                             Africa Western and Central    ZI   AFW 1972
## 115                             Africa Western and Central    ZI   AFW 1971
## 116                             Africa Western and Central    ZI   AFW 1970
## 117                             Africa Western and Central    ZI   AFW 1969
## 118                             Africa Western and Central    ZI   AFW 1968
## 119                             Africa Western and Central    ZI   AFW 1967
## 120                             Africa Western and Central    ZI   AFW 1966
## 121                             Africa Western and Central    ZI   AFW 1965
## 122                             Africa Western and Central    ZI   AFW 1964
## 123                             Africa Western and Central    ZI   AFW 1963
## 124                             Africa Western and Central    ZI   AFW 1962
## 125                             Africa Western and Central    ZI   AFW 1961
## 126                             Africa Western and Central    ZI   AFW 1960
## 127                                             Arab World    1A   ARB 2022
## 128                                             Arab World    1A   ARB 2021
## 129                                             Arab World    1A   ARB 2020
## 130                                             Arab World    1A   ARB 2019
## 131                                             Arab World    1A   ARB 2018
## 132                                             Arab World    1A   ARB 2017
## 133                                             Arab World    1A   ARB 2016
## 134                                             Arab World    1A   ARB 2015
## 135                                             Arab World    1A   ARB 2014
## 136                                             Arab World    1A   ARB 2013
## 137                                             Arab World    1A   ARB 2012
## 138                                             Arab World    1A   ARB 2011
## 139                                             Arab World    1A   ARB 2010
## 140                                             Arab World    1A   ARB 2009
## 141                                             Arab World    1A   ARB 2008
## 142                                             Arab World    1A   ARB 2007
## 143                                             Arab World    1A   ARB 2006
## 144                                             Arab World    1A   ARB 2005
## 145                                             Arab World    1A   ARB 2004
## 146                                             Arab World    1A   ARB 2003
## 147                                             Arab World    1A   ARB 2002
## 148                                             Arab World    1A   ARB 2001
## 149                                             Arab World    1A   ARB 2000
## 150                                             Arab World    1A   ARB 1999
## 151                                             Arab World    1A   ARB 1998
## 152                                             Arab World    1A   ARB 1997
## 153                                             Arab World    1A   ARB 1996
## 154                                             Arab World    1A   ARB 1995
## 155                                             Arab World    1A   ARB 1994
## 156                                             Arab World    1A   ARB 1993
## 157                                             Arab World    1A   ARB 1992
## 158                                             Arab World    1A   ARB 1991
## 159                                             Arab World    1A   ARB 1990
## 160                                             Arab World    1A   ARB 1989
## 161                                             Arab World    1A   ARB 1988
## 162                                             Arab World    1A   ARB 1987
## 163                                             Arab World    1A   ARB 1986
## 164                                             Arab World    1A   ARB 1985
## 165                                             Arab World    1A   ARB 1984
## 166                                             Arab World    1A   ARB 1983
## 167                                             Arab World    1A   ARB 1982
## 168                                             Arab World    1A   ARB 1981
## 169                                             Arab World    1A   ARB 1980
## 170                                             Arab World    1A   ARB 1979
## 171                                             Arab World    1A   ARB 1978
## 172                                             Arab World    1A   ARB 1977
## 173                                             Arab World    1A   ARB 1976
## 174                                             Arab World    1A   ARB 1975
## 175                                             Arab World    1A   ARB 1974
## 176                                             Arab World    1A   ARB 1973
## 177                                             Arab World    1A   ARB 1972
## 178                                             Arab World    1A   ARB 1971
## 179                                             Arab World    1A   ARB 1970
## 180                                             Arab World    1A   ARB 1969
## 181                                             Arab World    1A   ARB 1968
## 182                                             Arab World    1A   ARB 1967
## 183                                             Arab World    1A   ARB 1966
## 184                                             Arab World    1A   ARB 1965
## 185                                             Arab World    1A   ARB 1964
## 186                                             Arab World    1A   ARB 1963
## 187                                             Arab World    1A   ARB 1962
## 188                                             Arab World    1A   ARB 1961
## 189                                             Arab World    1A   ARB 1960
## 190                                 Caribbean small states    S3   CSS 2022
## 191                                 Caribbean small states    S3   CSS 2021
## 192                                 Caribbean small states    S3   CSS 2020
## 193                                 Caribbean small states    S3   CSS 2019
## 194                                 Caribbean small states    S3   CSS 2018
## 195                                 Caribbean small states    S3   CSS 2017
## 196                                 Caribbean small states    S3   CSS 2016
## 197                                 Caribbean small states    S3   CSS 2015
## 198                                 Caribbean small states    S3   CSS 2014
## 199                                 Caribbean small states    S3   CSS 2013
## 200                                 Caribbean small states    S3   CSS 2012
## 201                                 Caribbean small states    S3   CSS 2011
## 202                                 Caribbean small states    S3   CSS 2010
## 203                                 Caribbean small states    S3   CSS 2009
## 204                                 Caribbean small states    S3   CSS 2008
## 205                                 Caribbean small states    S3   CSS 2007
## 206                                 Caribbean small states    S3   CSS 2006
## 207                                 Caribbean small states    S3   CSS 2005
## 208                                 Caribbean small states    S3   CSS 2004
## 209                                 Caribbean small states    S3   CSS 2003
## 210                                 Caribbean small states    S3   CSS 2002
## 211                                 Caribbean small states    S3   CSS 2001
## 212                                 Caribbean small states    S3   CSS 2000
## 213                                 Caribbean small states    S3   CSS 1999
## 214                                 Caribbean small states    S3   CSS 1998
## 215                                 Caribbean small states    S3   CSS 1997
## 216                                 Caribbean small states    S3   CSS 1996
## 217                                 Caribbean small states    S3   CSS 1995
## 218                                 Caribbean small states    S3   CSS 1994
## 219                                 Caribbean small states    S3   CSS 1993
## 220                                 Caribbean small states    S3   CSS 1992
## 221                                 Caribbean small states    S3   CSS 1991
## 222                                 Caribbean small states    S3   CSS 1990
## 223                                 Caribbean small states    S3   CSS 1989
## 224                                 Caribbean small states    S3   CSS 1988
## 225                                 Caribbean small states    S3   CSS 1987
## 226                                 Caribbean small states    S3   CSS 1986
## 227                                 Caribbean small states    S3   CSS 1985
## 228                                 Caribbean small states    S3   CSS 1984
## 229                                 Caribbean small states    S3   CSS 1983
## 230                                 Caribbean small states    S3   CSS 1982
## 231                                 Caribbean small states    S3   CSS 1981
## 232                                 Caribbean small states    S3   CSS 1980
## 233                                 Caribbean small states    S3   CSS 1979
## 234                                 Caribbean small states    S3   CSS 1978
## 235                                 Caribbean small states    S3   CSS 1977
## 236                                 Caribbean small states    S3   CSS 1976
## 237                                 Caribbean small states    S3   CSS 1975
## 238                                 Caribbean small states    S3   CSS 1974
## 239                                 Caribbean small states    S3   CSS 1973
## 240                                 Caribbean small states    S3   CSS 1972
## 241                                 Caribbean small states    S3   CSS 1971
## 242                                 Caribbean small states    S3   CSS 1970
## 243                                 Caribbean small states    S3   CSS 1969
## 244                                 Caribbean small states    S3   CSS 1968
## 245                                 Caribbean small states    S3   CSS 1967
## 246                                 Caribbean small states    S3   CSS 1966
## 247                                 Caribbean small states    S3   CSS 1965
## 248                                 Caribbean small states    S3   CSS 1964
## 249                                 Caribbean small states    S3   CSS 1963
## 250                                 Caribbean small states    S3   CSS 1962
## 251                                 Caribbean small states    S3   CSS 1961
## 252                                 Caribbean small states    S3   CSS 1960
## 253                         Central Europe and the Baltics    B8   CEB 2022
## 254                         Central Europe and the Baltics    B8   CEB 2021
## 255                         Central Europe and the Baltics    B8   CEB 2020
## 256                         Central Europe and the Baltics    B8   CEB 2019
## 257                         Central Europe and the Baltics    B8   CEB 2018
## 258                         Central Europe and the Baltics    B8   CEB 2017
## 259                         Central Europe and the Baltics    B8   CEB 2016
## 260                         Central Europe and the Baltics    B8   CEB 2015
## 261                         Central Europe and the Baltics    B8   CEB 2014
## 262                         Central Europe and the Baltics    B8   CEB 2013
## 263                         Central Europe and the Baltics    B8   CEB 2012
## 264                         Central Europe and the Baltics    B8   CEB 2011
## 265                         Central Europe and the Baltics    B8   CEB 2010
## 266                         Central Europe and the Baltics    B8   CEB 2009
## 267                         Central Europe and the Baltics    B8   CEB 2008
## 268                         Central Europe and the Baltics    B8   CEB 2007
## 269                         Central Europe and the Baltics    B8   CEB 2006
## 270                         Central Europe and the Baltics    B8   CEB 2005
## 271                         Central Europe and the Baltics    B8   CEB 2004
## 272                         Central Europe and the Baltics    B8   CEB 2003
## 273                         Central Europe and the Baltics    B8   CEB 2002
## 274                         Central Europe and the Baltics    B8   CEB 2001
## 275                         Central Europe and the Baltics    B8   CEB 2000
## 276                         Central Europe and the Baltics    B8   CEB 1999
## 277                         Central Europe and the Baltics    B8   CEB 1998
## 278                         Central Europe and the Baltics    B8   CEB 1997
## 279                         Central Europe and the Baltics    B8   CEB 1996
## 280                         Central Europe and the Baltics    B8   CEB 1995
## 281                         Central Europe and the Baltics    B8   CEB 1994
## 282                         Central Europe and the Baltics    B8   CEB 1993
## 283                         Central Europe and the Baltics    B8   CEB 1992
## 284                         Central Europe and the Baltics    B8   CEB 1991
## 285                         Central Europe and the Baltics    B8   CEB 1990
## 286                         Central Europe and the Baltics    B8   CEB 1989
## 287                         Central Europe and the Baltics    B8   CEB 1988
## 288                         Central Europe and the Baltics    B8   CEB 1987
## 289                         Central Europe and the Baltics    B8   CEB 1986
## 290                         Central Europe and the Baltics    B8   CEB 1985
## 291                         Central Europe and the Baltics    B8   CEB 1984
## 292                         Central Europe and the Baltics    B8   CEB 1983
## 293                         Central Europe and the Baltics    B8   CEB 1982
## 294                         Central Europe and the Baltics    B8   CEB 1981
## 295                         Central Europe and the Baltics    B8   CEB 1980
## 296                         Central Europe and the Baltics    B8   CEB 1979
## 297                         Central Europe and the Baltics    B8   CEB 1978
## 298                         Central Europe and the Baltics    B8   CEB 1977
## 299                         Central Europe and the Baltics    B8   CEB 1976
## 300                         Central Europe and the Baltics    B8   CEB 1975
## 301                         Central Europe and the Baltics    B8   CEB 1974
## 302                         Central Europe and the Baltics    B8   CEB 1973
## 303                         Central Europe and the Baltics    B8   CEB 1972
## 304                         Central Europe and the Baltics    B8   CEB 1971
## 305                         Central Europe and the Baltics    B8   CEB 1970
## 306                         Central Europe and the Baltics    B8   CEB 1969
## 307                         Central Europe and the Baltics    B8   CEB 1968
## 308                         Central Europe and the Baltics    B8   CEB 1967
## 309                         Central Europe and the Baltics    B8   CEB 1966
## 310                         Central Europe and the Baltics    B8   CEB 1965
## 311                         Central Europe and the Baltics    B8   CEB 1964
## 312                         Central Europe and the Baltics    B8   CEB 1963
## 313                         Central Europe and the Baltics    B8   CEB 1962
## 314                         Central Europe and the Baltics    B8   CEB 1961
## 315                         Central Europe and the Baltics    B8   CEB 1960
## 316                             Early-demographic dividend    V2   EAR 2022
## 317                             Early-demographic dividend    V2   EAR 2021
## 318                             Early-demographic dividend    V2   EAR 2020
## 319                             Early-demographic dividend    V2   EAR 2019
## 320                             Early-demographic dividend    V2   EAR 2018
## 321                             Early-demographic dividend    V2   EAR 2017
## 322                             Early-demographic dividend    V2   EAR 2016
## 323                             Early-demographic dividend    V2   EAR 2015
## 324                             Early-demographic dividend    V2   EAR 2014
## 325                             Early-demographic dividend    V2   EAR 2013
## 326                             Early-demographic dividend    V2   EAR 2012
## 327                             Early-demographic dividend    V2   EAR 2011
## 328                             Early-demographic dividend    V2   EAR 2010
## 329                             Early-demographic dividend    V2   EAR 2009
## 330                             Early-demographic dividend    V2   EAR 2008
## 331                             Early-demographic dividend    V2   EAR 2007
## 332                             Early-demographic dividend    V2   EAR 2006
## 333                             Early-demographic dividend    V2   EAR 2005
## 334                             Early-demographic dividend    V2   EAR 2004
## 335                             Early-demographic dividend    V2   EAR 2003
## 336                             Early-demographic dividend    V2   EAR 2002
## 337                             Early-demographic dividend    V2   EAR 2001
## 338                             Early-demographic dividend    V2   EAR 2000
## 339                             Early-demographic dividend    V2   EAR 1999
## 340                             Early-demographic dividend    V2   EAR 1998
## 341                             Early-demographic dividend    V2   EAR 1997
## 342                             Early-demographic dividend    V2   EAR 1996
## 343                             Early-demographic dividend    V2   EAR 1995
## 344                             Early-demographic dividend    V2   EAR 1994
## 345                             Early-demographic dividend    V2   EAR 1993
## 346                             Early-demographic dividend    V2   EAR 1992
## 347                             Early-demographic dividend    V2   EAR 1991
## 348                             Early-demographic dividend    V2   EAR 1990
## 349                             Early-demographic dividend    V2   EAR 1989
## 350                             Early-demographic dividend    V2   EAR 1988
## 351                             Early-demographic dividend    V2   EAR 1987
## 352                             Early-demographic dividend    V2   EAR 1986
## 353                             Early-demographic dividend    V2   EAR 1985
## 354                             Early-demographic dividend    V2   EAR 1984
## 355                             Early-demographic dividend    V2   EAR 1983
## 356                             Early-demographic dividend    V2   EAR 1982
## 357                             Early-demographic dividend    V2   EAR 1981
## 358                             Early-demographic dividend    V2   EAR 1980
## 359                             Early-demographic dividend    V2   EAR 1979
## 360                             Early-demographic dividend    V2   EAR 1978
## 361                             Early-demographic dividend    V2   EAR 1977
## 362                             Early-demographic dividend    V2   EAR 1976
## 363                             Early-demographic dividend    V2   EAR 1975
## 364                             Early-demographic dividend    V2   EAR 1974
## 365                             Early-demographic dividend    V2   EAR 1973
## 366                             Early-demographic dividend    V2   EAR 1972
## 367                             Early-demographic dividend    V2   EAR 1971
## 368                             Early-demographic dividend    V2   EAR 1970
## 369                             Early-demographic dividend    V2   EAR 1969
## 370                             Early-demographic dividend    V2   EAR 1968
## 371                             Early-demographic dividend    V2   EAR 1967
## 372                             Early-demographic dividend    V2   EAR 1966
## 373                             Early-demographic dividend    V2   EAR 1965
## 374                             Early-demographic dividend    V2   EAR 1964
## 375                             Early-demographic dividend    V2   EAR 1963
## 376                             Early-demographic dividend    V2   EAR 1962
## 377                             Early-demographic dividend    V2   EAR 1961
## 378                             Early-demographic dividend    V2   EAR 1960
## 379                                    East Asia & Pacific    Z4   EAS 2022
## 380                                    East Asia & Pacific    Z4   EAS 2021
## 381                                    East Asia & Pacific    Z4   EAS 2020
## 382                                    East Asia & Pacific    Z4   EAS 2019
## 383                                    East Asia & Pacific    Z4   EAS 2018
## 384                                    East Asia & Pacific    Z4   EAS 2017
## 385                                    East Asia & Pacific    Z4   EAS 2016
## 386                                    East Asia & Pacific    Z4   EAS 2015
## 387                                    East Asia & Pacific    Z4   EAS 2014
## 388                                    East Asia & Pacific    Z4   EAS 2013
## 389                                    East Asia & Pacific    Z4   EAS 2012
## 390                                    East Asia & Pacific    Z4   EAS 2011
## 391                                    East Asia & Pacific    Z4   EAS 2010
## 392                                    East Asia & Pacific    Z4   EAS 2009
## 393                                    East Asia & Pacific    Z4   EAS 2008
## 394                                    East Asia & Pacific    Z4   EAS 2007
## 395                                    East Asia & Pacific    Z4   EAS 2006
## 396                                    East Asia & Pacific    Z4   EAS 2005
## 397                                    East Asia & Pacific    Z4   EAS 2004
## 398                                    East Asia & Pacific    Z4   EAS 2003
## 399                                    East Asia & Pacific    Z4   EAS 2002
## 400                                    East Asia & Pacific    Z4   EAS 2001
## 401                                    East Asia & Pacific    Z4   EAS 2000
## 402                                    East Asia & Pacific    Z4   EAS 1999
## 403                                    East Asia & Pacific    Z4   EAS 1998
## 404                                    East Asia & Pacific    Z4   EAS 1997
## 405                                    East Asia & Pacific    Z4   EAS 1996
## 406                                    East Asia & Pacific    Z4   EAS 1995
## 407                                    East Asia & Pacific    Z4   EAS 1994
## 408                                    East Asia & Pacific    Z4   EAS 1993
## 409                                    East Asia & Pacific    Z4   EAS 1992
## 410                                    East Asia & Pacific    Z4   EAS 1991
## 411                                    East Asia & Pacific    Z4   EAS 1990
## 412                                    East Asia & Pacific    Z4   EAS 1989
## 413                                    East Asia & Pacific    Z4   EAS 1988
## 414                                    East Asia & Pacific    Z4   EAS 1987
## 415                                    East Asia & Pacific    Z4   EAS 1986
## 416                                    East Asia & Pacific    Z4   EAS 1985
## 417                                    East Asia & Pacific    Z4   EAS 1984
## 418                                    East Asia & Pacific    Z4   EAS 1983
## 419                                    East Asia & Pacific    Z4   EAS 1982
## 420                                    East Asia & Pacific    Z4   EAS 1981
## 421                                    East Asia & Pacific    Z4   EAS 1980
## 422                                    East Asia & Pacific    Z4   EAS 1979
## 423                                    East Asia & Pacific    Z4   EAS 1978
## 424                                    East Asia & Pacific    Z4   EAS 1977
## 425                                    East Asia & Pacific    Z4   EAS 1976
## 426                                    East Asia & Pacific    Z4   EAS 1975
## 427                                    East Asia & Pacific    Z4   EAS 1974
## 428                                    East Asia & Pacific    Z4   EAS 1973
## 429                                    East Asia & Pacific    Z4   EAS 1972
## 430                                    East Asia & Pacific    Z4   EAS 1971
## 431                                    East Asia & Pacific    Z4   EAS 1970
## 432                                    East Asia & Pacific    Z4   EAS 1969
## 433                                    East Asia & Pacific    Z4   EAS 1968
## 434                                    East Asia & Pacific    Z4   EAS 1967
## 435                                    East Asia & Pacific    Z4   EAS 1966
## 436                                    East Asia & Pacific    Z4   EAS 1965
## 437                                    East Asia & Pacific    Z4   EAS 1964
## 438                                    East Asia & Pacific    Z4   EAS 1963
## 439                                    East Asia & Pacific    Z4   EAS 1962
## 440                                    East Asia & Pacific    Z4   EAS 1961
## 441                                    East Asia & Pacific    Z4   EAS 1960
## 442            East Asia & Pacific (excluding high income)    4E   EAP 2022
## 443            East Asia & Pacific (excluding high income)    4E   EAP 2021
## 444            East Asia & Pacific (excluding high income)    4E   EAP 2020
## 445            East Asia & Pacific (excluding high income)    4E   EAP 2019
## 446            East Asia & Pacific (excluding high income)    4E   EAP 2018
## 447            East Asia & Pacific (excluding high income)    4E   EAP 2017
## 448            East Asia & Pacific (excluding high income)    4E   EAP 2016
## 449            East Asia & Pacific (excluding high income)    4E   EAP 2015
## 450            East Asia & Pacific (excluding high income)    4E   EAP 2014
## 451            East Asia & Pacific (excluding high income)    4E   EAP 2013
## 452            East Asia & Pacific (excluding high income)    4E   EAP 2012
## 453            East Asia & Pacific (excluding high income)    4E   EAP 2011
## 454            East Asia & Pacific (excluding high income)    4E   EAP 2010
## 455            East Asia & Pacific (excluding high income)    4E   EAP 2009
## 456            East Asia & Pacific (excluding high income)    4E   EAP 2008
## 457            East Asia & Pacific (excluding high income)    4E   EAP 2007
## 458            East Asia & Pacific (excluding high income)    4E   EAP 2006
## 459            East Asia & Pacific (excluding high income)    4E   EAP 2005
## 460            East Asia & Pacific (excluding high income)    4E   EAP 2004
## 461            East Asia & Pacific (excluding high income)    4E   EAP 2003
## 462            East Asia & Pacific (excluding high income)    4E   EAP 2002
## 463            East Asia & Pacific (excluding high income)    4E   EAP 2001
## 464            East Asia & Pacific (excluding high income)    4E   EAP 2000
## 465            East Asia & Pacific (excluding high income)    4E   EAP 1999
## 466            East Asia & Pacific (excluding high income)    4E   EAP 1998
## 467            East Asia & Pacific (excluding high income)    4E   EAP 1997
## 468            East Asia & Pacific (excluding high income)    4E   EAP 1996
## 469            East Asia & Pacific (excluding high income)    4E   EAP 1995
## 470            East Asia & Pacific (excluding high income)    4E   EAP 1994
## 471            East Asia & Pacific (excluding high income)    4E   EAP 1993
## 472            East Asia & Pacific (excluding high income)    4E   EAP 1992
## 473            East Asia & Pacific (excluding high income)    4E   EAP 1991
## 474            East Asia & Pacific (excluding high income)    4E   EAP 1990
## 475            East Asia & Pacific (excluding high income)    4E   EAP 1989
## 476            East Asia & Pacific (excluding high income)    4E   EAP 1988
## 477            East Asia & Pacific (excluding high income)    4E   EAP 1987
## 478            East Asia & Pacific (excluding high income)    4E   EAP 1986
## 479            East Asia & Pacific (excluding high income)    4E   EAP 1985
## 480            East Asia & Pacific (excluding high income)    4E   EAP 1984
## 481            East Asia & Pacific (excluding high income)    4E   EAP 1983
## 482            East Asia & Pacific (excluding high income)    4E   EAP 1982
## 483            East Asia & Pacific (excluding high income)    4E   EAP 1981
## 484            East Asia & Pacific (excluding high income)    4E   EAP 1980
## 485            East Asia & Pacific (excluding high income)    4E   EAP 1979
## 486            East Asia & Pacific (excluding high income)    4E   EAP 1978
## 487            East Asia & Pacific (excluding high income)    4E   EAP 1977
## 488            East Asia & Pacific (excluding high income)    4E   EAP 1976
## 489            East Asia & Pacific (excluding high income)    4E   EAP 1975
## 490            East Asia & Pacific (excluding high income)    4E   EAP 1974
## 491            East Asia & Pacific (excluding high income)    4E   EAP 1973
## 492            East Asia & Pacific (excluding high income)    4E   EAP 1972
## 493            East Asia & Pacific (excluding high income)    4E   EAP 1971
## 494            East Asia & Pacific (excluding high income)    4E   EAP 1970
## 495            East Asia & Pacific (excluding high income)    4E   EAP 1969
## 496            East Asia & Pacific (excluding high income)    4E   EAP 1968
## 497            East Asia & Pacific (excluding high income)    4E   EAP 1967
## 498            East Asia & Pacific (excluding high income)    4E   EAP 1966
## 499            East Asia & Pacific (excluding high income)    4E   EAP 1965
## 500            East Asia & Pacific (excluding high income)    4E   EAP 1964
## 501            East Asia & Pacific (excluding high income)    4E   EAP 1963
## 502            East Asia & Pacific (excluding high income)    4E   EAP 1962
## 503            East Asia & Pacific (excluding high income)    4E   EAP 1961
## 504            East Asia & Pacific (excluding high income)    4E   EAP 1960
## 505             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2022
## 506             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021
## 507             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020
## 508             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019
## 509             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018
## 510             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017
## 511             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016
## 512             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015
## 513             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014
## 514             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013
## 515             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012
## 516             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011
## 517             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010
## 518             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009
## 519             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008
## 520             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007
## 521             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006
## 522             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005
## 523             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004
## 524             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003
## 525             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002
## 526             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001
## 527             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000
## 528             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999
## 529             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998
## 530             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997
## 531             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996
## 532             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995
## 533             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994
## 534             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993
## 535             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992
## 536             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991
## 537             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990
## 538             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989
## 539             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988
## 540             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987
## 541             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986
## 542             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985
## 543             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984
## 544             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983
## 545             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982
## 546             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981
## 547             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980
## 548             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979
## 549             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978
## 550             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977
## 551             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976
## 552             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975
## 553             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974
## 554             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973
## 555             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972
## 556             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971
## 557             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970
## 558             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969
## 559             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968
## 560             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967
## 561             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966
## 562             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965
## 563             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964
## 564             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963
## 565             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962
## 566             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961
## 567             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960
## 568                                              Euro area    XC   EMU 2022
## 569                                              Euro area    XC   EMU 2021
## 570                                              Euro area    XC   EMU 2020
## 571                                              Euro area    XC   EMU 2019
## 572                                              Euro area    XC   EMU 2018
## 573                                              Euro area    XC   EMU 2017
## 574                                              Euro area    XC   EMU 2016
## 575                                              Euro area    XC   EMU 2015
## 576                                              Euro area    XC   EMU 2014
## 577                                              Euro area    XC   EMU 2013
## 578                                              Euro area    XC   EMU 2012
## 579                                              Euro area    XC   EMU 2011
## 580                                              Euro area    XC   EMU 2010
## 581                                              Euro area    XC   EMU 2009
## 582                                              Euro area    XC   EMU 2008
## 583                                              Euro area    XC   EMU 2007
## 584                                              Euro area    XC   EMU 2006
## 585                                              Euro area    XC   EMU 2005
## 586                                              Euro area    XC   EMU 2004
## 587                                              Euro area    XC   EMU 2003
## 588                                              Euro area    XC   EMU 2002
## 589                                              Euro area    XC   EMU 2001
## 590                                              Euro area    XC   EMU 2000
## 591                                              Euro area    XC   EMU 1999
## 592                                              Euro area    XC   EMU 1998
## 593                                              Euro area    XC   EMU 1997
## 594                                              Euro area    XC   EMU 1996
## 595                                              Euro area    XC   EMU 1995
## 596                                              Euro area    XC   EMU 1994
## 597                                              Euro area    XC   EMU 1993
## 598                                              Euro area    XC   EMU 1992
## 599                                              Euro area    XC   EMU 1991
## 600                                              Euro area    XC   EMU 1990
## 601                                              Euro area    XC   EMU 1989
## 602                                              Euro area    XC   EMU 1988
## 603                                              Euro area    XC   EMU 1987
## 604                                              Euro area    XC   EMU 1986
## 605                                              Euro area    XC   EMU 1985
## 606                                              Euro area    XC   EMU 1984
## 607                                              Euro area    XC   EMU 1983
## 608                                              Euro area    XC   EMU 1982
## 609                                              Euro area    XC   EMU 1981
## 610                                              Euro area    XC   EMU 1980
## 611                                              Euro area    XC   EMU 1979
## 612                                              Euro area    XC   EMU 1978
## 613                                              Euro area    XC   EMU 1977
## 614                                              Euro area    XC   EMU 1976
## 615                                              Euro area    XC   EMU 1975
## 616                                              Euro area    XC   EMU 1974
## 617                                              Euro area    XC   EMU 1973
## 618                                              Euro area    XC   EMU 1972
## 619                                              Euro area    XC   EMU 1971
## 620                                              Euro area    XC   EMU 1970
## 621                                              Euro area    XC   EMU 1969
## 622                                              Euro area    XC   EMU 1968
## 623                                              Euro area    XC   EMU 1967
## 624                                              Euro area    XC   EMU 1966
## 625                                              Euro area    XC   EMU 1965
## 626                                              Euro area    XC   EMU 1964
## 627                                              Euro area    XC   EMU 1963
## 628                                              Euro area    XC   EMU 1962
## 629                                              Euro area    XC   EMU 1961
## 630                                              Euro area    XC   EMU 1960
## 631                                  Europe & Central Asia    Z7   ECS 2022
## 632                                  Europe & Central Asia    Z7   ECS 2021
## 633                                  Europe & Central Asia    Z7   ECS 2020
## 634                                  Europe & Central Asia    Z7   ECS 2019
## 635                                  Europe & Central Asia    Z7   ECS 2018
## 636                                  Europe & Central Asia    Z7   ECS 2017
## 637                                  Europe & Central Asia    Z7   ECS 2016
## 638                                  Europe & Central Asia    Z7   ECS 2015
## 639                                  Europe & Central Asia    Z7   ECS 2014
## 640                                  Europe & Central Asia    Z7   ECS 2013
## 641                                  Europe & Central Asia    Z7   ECS 2012
## 642                                  Europe & Central Asia    Z7   ECS 2011
## 643                                  Europe & Central Asia    Z7   ECS 2010
## 644                                  Europe & Central Asia    Z7   ECS 2009
## 645                                  Europe & Central Asia    Z7   ECS 2008
## 646                                  Europe & Central Asia    Z7   ECS 2007
## 647                                  Europe & Central Asia    Z7   ECS 2006
## 648                                  Europe & Central Asia    Z7   ECS 2005
## 649                                  Europe & Central Asia    Z7   ECS 2004
## 650                                  Europe & Central Asia    Z7   ECS 2003
## 651                                  Europe & Central Asia    Z7   ECS 2002
## 652                                  Europe & Central Asia    Z7   ECS 2001
## 653                                  Europe & Central Asia    Z7   ECS 2000
## 654                                  Europe & Central Asia    Z7   ECS 1999
## 655                                  Europe & Central Asia    Z7   ECS 1998
## 656                                  Europe & Central Asia    Z7   ECS 1997
## 657                                  Europe & Central Asia    Z7   ECS 1996
## 658                                  Europe & Central Asia    Z7   ECS 1995
## 659                                  Europe & Central Asia    Z7   ECS 1994
## 660                                  Europe & Central Asia    Z7   ECS 1993
## 661                                  Europe & Central Asia    Z7   ECS 1992
## 662                                  Europe & Central Asia    Z7   ECS 1991
## 663                                  Europe & Central Asia    Z7   ECS 1990
## 664                                  Europe & Central Asia    Z7   ECS 1989
## 665                                  Europe & Central Asia    Z7   ECS 1988
## 666                                  Europe & Central Asia    Z7   ECS 1987
## 667                                  Europe & Central Asia    Z7   ECS 1986
## 668                                  Europe & Central Asia    Z7   ECS 1985
## 669                                  Europe & Central Asia    Z7   ECS 1984
## 670                                  Europe & Central Asia    Z7   ECS 1983
## 671                                  Europe & Central Asia    Z7   ECS 1982
## 672                                  Europe & Central Asia    Z7   ECS 1981
## 673                                  Europe & Central Asia    Z7   ECS 1980
## 674                                  Europe & Central Asia    Z7   ECS 1979
## 675                                  Europe & Central Asia    Z7   ECS 1978
## 676                                  Europe & Central Asia    Z7   ECS 1977
## 677                                  Europe & Central Asia    Z7   ECS 1976
## 678                                  Europe & Central Asia    Z7   ECS 1975
## 679                                  Europe & Central Asia    Z7   ECS 1974
## 680                                  Europe & Central Asia    Z7   ECS 1973
## 681                                  Europe & Central Asia    Z7   ECS 1972
## 682                                  Europe & Central Asia    Z7   ECS 1971
## 683                                  Europe & Central Asia    Z7   ECS 1970
## 684                                  Europe & Central Asia    Z7   ECS 1969
## 685                                  Europe & Central Asia    Z7   ECS 1968
## 686                                  Europe & Central Asia    Z7   ECS 1967
## 687                                  Europe & Central Asia    Z7   ECS 1966
## 688                                  Europe & Central Asia    Z7   ECS 1965
## 689                                  Europe & Central Asia    Z7   ECS 1964
## 690                                  Europe & Central Asia    Z7   ECS 1963
## 691                                  Europe & Central Asia    Z7   ECS 1962
## 692                                  Europe & Central Asia    Z7   ECS 1961
## 693                                  Europe & Central Asia    Z7   ECS 1960
## 694          Europe & Central Asia (excluding high income)    7E   ECA 2022
## 695          Europe & Central Asia (excluding high income)    7E   ECA 2021
## 696          Europe & Central Asia (excluding high income)    7E   ECA 2020
## 697          Europe & Central Asia (excluding high income)    7E   ECA 2019
## 698          Europe & Central Asia (excluding high income)    7E   ECA 2018
## 699          Europe & Central Asia (excluding high income)    7E   ECA 2017
## 700          Europe & Central Asia (excluding high income)    7E   ECA 2016
## 701          Europe & Central Asia (excluding high income)    7E   ECA 2015
## 702          Europe & Central Asia (excluding high income)    7E   ECA 2014
## 703          Europe & Central Asia (excluding high income)    7E   ECA 2013
## 704          Europe & Central Asia (excluding high income)    7E   ECA 2012
## 705          Europe & Central Asia (excluding high income)    7E   ECA 2011
## 706          Europe & Central Asia (excluding high income)    7E   ECA 2010
## 707          Europe & Central Asia (excluding high income)    7E   ECA 2009
## 708          Europe & Central Asia (excluding high income)    7E   ECA 2008
## 709          Europe & Central Asia (excluding high income)    7E   ECA 2007
## 710          Europe & Central Asia (excluding high income)    7E   ECA 2006
## 711          Europe & Central Asia (excluding high income)    7E   ECA 2005
## 712          Europe & Central Asia (excluding high income)    7E   ECA 2004
## 713          Europe & Central Asia (excluding high income)    7E   ECA 2003
## 714          Europe & Central Asia (excluding high income)    7E   ECA 2002
## 715          Europe & Central Asia (excluding high income)    7E   ECA 2001
## 716          Europe & Central Asia (excluding high income)    7E   ECA 2000
## 717          Europe & Central Asia (excluding high income)    7E   ECA 1999
## 718          Europe & Central Asia (excluding high income)    7E   ECA 1998
## 719          Europe & Central Asia (excluding high income)    7E   ECA 1997
## 720          Europe & Central Asia (excluding high income)    7E   ECA 1996
## 721          Europe & Central Asia (excluding high income)    7E   ECA 1995
## 722          Europe & Central Asia (excluding high income)    7E   ECA 1994
## 723          Europe & Central Asia (excluding high income)    7E   ECA 1993
## 724          Europe & Central Asia (excluding high income)    7E   ECA 1992
## 725          Europe & Central Asia (excluding high income)    7E   ECA 1991
## 726          Europe & Central Asia (excluding high income)    7E   ECA 1990
## 727          Europe & Central Asia (excluding high income)    7E   ECA 1989
## 728          Europe & Central Asia (excluding high income)    7E   ECA 1988
## 729          Europe & Central Asia (excluding high income)    7E   ECA 1987
## 730          Europe & Central Asia (excluding high income)    7E   ECA 1986
## 731          Europe & Central Asia (excluding high income)    7E   ECA 1985
## 732          Europe & Central Asia (excluding high income)    7E   ECA 1984
## 733          Europe & Central Asia (excluding high income)    7E   ECA 1983
## 734          Europe & Central Asia (excluding high income)    7E   ECA 1982
## 735          Europe & Central Asia (excluding high income)    7E   ECA 1981
## 736          Europe & Central Asia (excluding high income)    7E   ECA 1980
## 737          Europe & Central Asia (excluding high income)    7E   ECA 1979
## 738          Europe & Central Asia (excluding high income)    7E   ECA 1978
## 739          Europe & Central Asia (excluding high income)    7E   ECA 1977
## 740          Europe & Central Asia (excluding high income)    7E   ECA 1976
## 741          Europe & Central Asia (excluding high income)    7E   ECA 1975
## 742          Europe & Central Asia (excluding high income)    7E   ECA 1974
## 743          Europe & Central Asia (excluding high income)    7E   ECA 1973
## 744          Europe & Central Asia (excluding high income)    7E   ECA 1972
## 745          Europe & Central Asia (excluding high income)    7E   ECA 1971
## 746          Europe & Central Asia (excluding high income)    7E   ECA 1970
## 747          Europe & Central Asia (excluding high income)    7E   ECA 1969
## 748          Europe & Central Asia (excluding high income)    7E   ECA 1968
## 749          Europe & Central Asia (excluding high income)    7E   ECA 1967
## 750          Europe & Central Asia (excluding high income)    7E   ECA 1966
## 751          Europe & Central Asia (excluding high income)    7E   ECA 1965
## 752          Europe & Central Asia (excluding high income)    7E   ECA 1964
## 753          Europe & Central Asia (excluding high income)    7E   ECA 1963
## 754          Europe & Central Asia (excluding high income)    7E   ECA 1962
## 755          Europe & Central Asia (excluding high income)    7E   ECA 1961
## 756          Europe & Central Asia (excluding high income)    7E   ECA 1960
## 757           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2022
## 758           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021
## 759           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2020
## 760           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2019
## 761           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2018
## 762           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2017
## 763           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2016
## 764           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2015
## 765           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2014
## 766           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2013
## 767           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2012
## 768           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2011
## 769           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2010
## 770           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2009
## 771           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2008
## 772           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2007
## 773           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2006
## 774           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2005
## 775           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2004
## 776           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2003
## 777           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2002
## 778           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2001
## 779           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2000
## 780           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1999
## 781           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1998
## 782           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1997
## 783           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1996
## 784           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1995
## 785           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1994
## 786           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1993
## 787           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1992
## 788           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1991
## 789           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1990
## 790           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1989
## 791           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1988
## 792           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1987
## 793           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1986
## 794           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1985
## 795           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1984
## 796           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1983
## 797           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1982
## 798           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1981
## 799           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1980
## 800           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1979
## 801           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1978
## 802           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1977
## 803           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1976
## 804           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1975
## 805           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1974
## 806           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1973
## 807           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1972
## 808           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1971
## 809           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1970
## 810           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1969
## 811           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1968
## 812           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1967
## 813           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1966
## 814           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1965
## 815           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1964
## 816           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1963
## 817           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1962
## 818           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1961
## 819           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1960
## 820                                         European Union    EU   EUU 2022
## 821                                         European Union    EU   EUU 2021
## 822                                         European Union    EU   EUU 2020
## 823                                         European Union    EU   EUU 2019
## 824                                         European Union    EU   EUU 2018
## 825                                         European Union    EU   EUU 2017
## 826                                         European Union    EU   EUU 2016
## 827                                         European Union    EU   EUU 2015
## 828                                         European Union    EU   EUU 2014
## 829                                         European Union    EU   EUU 2013
## 830                                         European Union    EU   EUU 2012
## 831                                         European Union    EU   EUU 2011
## 832                                         European Union    EU   EUU 2010
## 833                                         European Union    EU   EUU 2009
## 834                                         European Union    EU   EUU 2008
## 835                                         European Union    EU   EUU 2007
## 836                                         European Union    EU   EUU 2006
## 837                                         European Union    EU   EUU 2005
## 838                                         European Union    EU   EUU 2004
## 839                                         European Union    EU   EUU 2003
## 840                                         European Union    EU   EUU 2002
## 841                                         European Union    EU   EUU 2001
## 842                                         European Union    EU   EUU 2000
## 843                                         European Union    EU   EUU 1999
## 844                                         European Union    EU   EUU 1998
## 845                                         European Union    EU   EUU 1997
## 846                                         European Union    EU   EUU 1996
## 847                                         European Union    EU   EUU 1995
## 848                                         European Union    EU   EUU 1994
## 849                                         European Union    EU   EUU 1993
## 850                                         European Union    EU   EUU 1992
## 851                                         European Union    EU   EUU 1991
## 852                                         European Union    EU   EUU 1990
## 853                                         European Union    EU   EUU 1989
## 854                                         European Union    EU   EUU 1988
## 855                                         European Union    EU   EUU 1987
## 856                                         European Union    EU   EUU 1986
## 857                                         European Union    EU   EUU 1985
## 858                                         European Union    EU   EUU 1984
## 859                                         European Union    EU   EUU 1983
## 860                                         European Union    EU   EUU 1982
## 861                                         European Union    EU   EUU 1981
## 862                                         European Union    EU   EUU 1980
## 863                                         European Union    EU   EUU 1979
## 864                                         European Union    EU   EUU 1978
## 865                                         European Union    EU   EUU 1977
## 866                                         European Union    EU   EUU 1976
## 867                                         European Union    EU   EUU 1975
## 868                                         European Union    EU   EUU 1974
## 869                                         European Union    EU   EUU 1973
## 870                                         European Union    EU   EUU 1972
## 871                                         European Union    EU   EUU 1971
## 872                                         European Union    EU   EUU 1970
## 873                                         European Union    EU   EUU 1969
## 874                                         European Union    EU   EUU 1968
## 875                                         European Union    EU   EUU 1967
## 876                                         European Union    EU   EUU 1966
## 877                                         European Union    EU   EUU 1965
## 878                                         European Union    EU   EUU 1964
## 879                                         European Union    EU   EUU 1963
## 880                                         European Union    EU   EUU 1962
## 881                                         European Union    EU   EUU 1961
## 882                                         European Union    EU   EUU 1960
## 883               Fragile and conflict affected situations    F1   FCS 2022
## 884               Fragile and conflict affected situations    F1   FCS 2021
## 885               Fragile and conflict affected situations    F1   FCS 2020
## 886               Fragile and conflict affected situations    F1   FCS 2019
## 887               Fragile and conflict affected situations    F1   FCS 2018
## 888               Fragile and conflict affected situations    F1   FCS 2017
## 889               Fragile and conflict affected situations    F1   FCS 2016
## 890               Fragile and conflict affected situations    F1   FCS 2015
## 891               Fragile and conflict affected situations    F1   FCS 2014
## 892               Fragile and conflict affected situations    F1   FCS 2013
## 893               Fragile and conflict affected situations    F1   FCS 2012
## 894               Fragile and conflict affected situations    F1   FCS 2011
## 895               Fragile and conflict affected situations    F1   FCS 2010
## 896               Fragile and conflict affected situations    F1   FCS 2009
## 897               Fragile and conflict affected situations    F1   FCS 2008
## 898               Fragile and conflict affected situations    F1   FCS 2007
## 899               Fragile and conflict affected situations    F1   FCS 2006
## 900               Fragile and conflict affected situations    F1   FCS 2005
## 901               Fragile and conflict affected situations    F1   FCS 2004
## 902               Fragile and conflict affected situations    F1   FCS 2003
## 903               Fragile and conflict affected situations    F1   FCS 2002
## 904               Fragile and conflict affected situations    F1   FCS 2001
## 905               Fragile and conflict affected situations    F1   FCS 2000
## 906               Fragile and conflict affected situations    F1   FCS 1999
## 907               Fragile and conflict affected situations    F1   FCS 1998
## 908               Fragile and conflict affected situations    F1   FCS 1997
## 909               Fragile and conflict affected situations    F1   FCS 1996
## 910               Fragile and conflict affected situations    F1   FCS 1995
## 911               Fragile and conflict affected situations    F1   FCS 1994
## 912               Fragile and conflict affected situations    F1   FCS 1993
## 913               Fragile and conflict affected situations    F1   FCS 1992
## 914               Fragile and conflict affected situations    F1   FCS 1991
## 915               Fragile and conflict affected situations    F1   FCS 1990
## 916               Fragile and conflict affected situations    F1   FCS 1989
## 917               Fragile and conflict affected situations    F1   FCS 1988
## 918               Fragile and conflict affected situations    F1   FCS 1987
## 919               Fragile and conflict affected situations    F1   FCS 1986
## 920               Fragile and conflict affected situations    F1   FCS 1985
## 921               Fragile and conflict affected situations    F1   FCS 1984
## 922               Fragile and conflict affected situations    F1   FCS 1983
## 923               Fragile and conflict affected situations    F1   FCS 1982
## 924               Fragile and conflict affected situations    F1   FCS 1981
## 925               Fragile and conflict affected situations    F1   FCS 1980
## 926               Fragile and conflict affected situations    F1   FCS 1979
## 927               Fragile and conflict affected situations    F1   FCS 1978
## 928               Fragile and conflict affected situations    F1   FCS 1977
## 929               Fragile and conflict affected situations    F1   FCS 1976
## 930               Fragile and conflict affected situations    F1   FCS 1975
## 931               Fragile and conflict affected situations    F1   FCS 1974
## 932               Fragile and conflict affected situations    F1   FCS 1973
## 933               Fragile and conflict affected situations    F1   FCS 1972
## 934               Fragile and conflict affected situations    F1   FCS 1971
## 935               Fragile and conflict affected situations    F1   FCS 1970
## 936               Fragile and conflict affected situations    F1   FCS 1969
## 937               Fragile and conflict affected situations    F1   FCS 1968
## 938               Fragile and conflict affected situations    F1   FCS 1967
## 939               Fragile and conflict affected situations    F1   FCS 1966
## 940               Fragile and conflict affected situations    F1   FCS 1965
## 941               Fragile and conflict affected situations    F1   FCS 1964
## 942               Fragile and conflict affected situations    F1   FCS 1963
## 943               Fragile and conflict affected situations    F1   FCS 1962
## 944               Fragile and conflict affected situations    F1   FCS 1961
## 945               Fragile and conflict affected situations    F1   FCS 1960
## 946                 Heavily indebted poor countries (HIPC)    XE   HPC 2022
## 947                 Heavily indebted poor countries (HIPC)    XE   HPC 2021
## 948                 Heavily indebted poor countries (HIPC)    XE   HPC 2020
## 949                 Heavily indebted poor countries (HIPC)    XE   HPC 2019
## 950                 Heavily indebted poor countries (HIPC)    XE   HPC 2018
## 951                 Heavily indebted poor countries (HIPC)    XE   HPC 2017
## 952                 Heavily indebted poor countries (HIPC)    XE   HPC 2016
## 953                 Heavily indebted poor countries (HIPC)    XE   HPC 2015
## 954                 Heavily indebted poor countries (HIPC)    XE   HPC 2014
## 955                 Heavily indebted poor countries (HIPC)    XE   HPC 2013
## 956                 Heavily indebted poor countries (HIPC)    XE   HPC 2012
## 957                 Heavily indebted poor countries (HIPC)    XE   HPC 2011
## 958                 Heavily indebted poor countries (HIPC)    XE   HPC 2010
## 959                 Heavily indebted poor countries (HIPC)    XE   HPC 2009
## 960                 Heavily indebted poor countries (HIPC)    XE   HPC 2008
## 961                 Heavily indebted poor countries (HIPC)    XE   HPC 2007
## 962                 Heavily indebted poor countries (HIPC)    XE   HPC 2006
## 963                 Heavily indebted poor countries (HIPC)    XE   HPC 2005
## 964                 Heavily indebted poor countries (HIPC)    XE   HPC 2004
## 965                 Heavily indebted poor countries (HIPC)    XE   HPC 2003
## 966                 Heavily indebted poor countries (HIPC)    XE   HPC 2002
## 967                 Heavily indebted poor countries (HIPC)    XE   HPC 2001
## 968                 Heavily indebted poor countries (HIPC)    XE   HPC 2000
## 969                 Heavily indebted poor countries (HIPC)    XE   HPC 1999
## 970                 Heavily indebted poor countries (HIPC)    XE   HPC 1998
## 971                 Heavily indebted poor countries (HIPC)    XE   HPC 1997
## 972                 Heavily indebted poor countries (HIPC)    XE   HPC 1996
## 973                 Heavily indebted poor countries (HIPC)    XE   HPC 1995
## 974                 Heavily indebted poor countries (HIPC)    XE   HPC 1994
## 975                 Heavily indebted poor countries (HIPC)    XE   HPC 1993
## 976                 Heavily indebted poor countries (HIPC)    XE   HPC 1992
## 977                 Heavily indebted poor countries (HIPC)    XE   HPC 1991
## 978                 Heavily indebted poor countries (HIPC)    XE   HPC 1990
## 979                 Heavily indebted poor countries (HIPC)    XE   HPC 1989
## 980                 Heavily indebted poor countries (HIPC)    XE   HPC 1988
## 981                 Heavily indebted poor countries (HIPC)    XE   HPC 1987
## 982                 Heavily indebted poor countries (HIPC)    XE   HPC 1986
## 983                 Heavily indebted poor countries (HIPC)    XE   HPC 1985
## 984                 Heavily indebted poor countries (HIPC)    XE   HPC 1984
## 985                 Heavily indebted poor countries (HIPC)    XE   HPC 1983
## 986                 Heavily indebted poor countries (HIPC)    XE   HPC 1982
## 987                 Heavily indebted poor countries (HIPC)    XE   HPC 1981
## 988                 Heavily indebted poor countries (HIPC)    XE   HPC 1980
## 989                 Heavily indebted poor countries (HIPC)    XE   HPC 1979
## 990                 Heavily indebted poor countries (HIPC)    XE   HPC 1978
## 991                 Heavily indebted poor countries (HIPC)    XE   HPC 1977
## 992                 Heavily indebted poor countries (HIPC)    XE   HPC 1976
## 993                 Heavily indebted poor countries (HIPC)    XE   HPC 1975
## 994                 Heavily indebted poor countries (HIPC)    XE   HPC 1974
## 995                 Heavily indebted poor countries (HIPC)    XE   HPC 1973
## 996                 Heavily indebted poor countries (HIPC)    XE   HPC 1972
## 997                 Heavily indebted poor countries (HIPC)    XE   HPC 1971
## 998                 Heavily indebted poor countries (HIPC)    XE   HPC 1970
## 999                 Heavily indebted poor countries (HIPC)    XE   HPC 1969
## 1000                Heavily indebted poor countries (HIPC)    XE   HPC 1968
## 1001                Heavily indebted poor countries (HIPC)    XE   HPC 1967
## 1002                Heavily indebted poor countries (HIPC)    XE   HPC 1966
## 1003                Heavily indebted poor countries (HIPC)    XE   HPC 1965
## 1004                Heavily indebted poor countries (HIPC)    XE   HPC 1964
## 1005                Heavily indebted poor countries (HIPC)    XE   HPC 1963
## 1006                Heavily indebted poor countries (HIPC)    XE   HPC 1962
## 1007                Heavily indebted poor countries (HIPC)    XE   HPC 1961
## 1008                Heavily indebted poor countries (HIPC)    XE   HPC 1960
## 1009                                           High income    XD       2022
## 1010                                           High income    XD       2021
## 1011                                           High income    XD       2020
## 1012                                           High income    XD       2019
## 1013                                           High income    XD       2018
## 1014                                           High income    XD       2017
## 1015                                           High income    XD       2016
## 1016                                           High income    XD       2015
## 1017                                           High income    XD       2014
## 1018                                           High income    XD       2013
## 1019                                           High income    XD       2012
## 1020                                           High income    XD       2011
## 1021                                           High income    XD       2010
## 1022                                           High income    XD       2009
## 1023                                           High income    XD       2008
## 1024                                           High income    XD       2007
## 1025                                           High income    XD       2006
## 1026                                           High income    XD       2005
## 1027                                           High income    XD       2004
## 1028                                           High income    XD       2003
## 1029                                           High income    XD       2002
## 1030                                           High income    XD       2001
## 1031                                           High income    XD       2000
## 1032                                           High income    XD       1999
## 1033                                           High income    XD       1998
## 1034                                           High income    XD       1997
## 1035                                           High income    XD       1996
## 1036                                           High income    XD       1995
## 1037                                           High income    XD       1994
## 1038                                           High income    XD       1993
## 1039                                           High income    XD       1992
## 1040                                           High income    XD       1991
## 1041                                           High income    XD       1990
## 1042                                           High income    XD       1989
## 1043                                           High income    XD       1988
## 1044                                           High income    XD       1987
## 1045                                           High income    XD       1986
## 1046                                           High income    XD       1985
## 1047                                           High income    XD       1984
## 1048                                           High income    XD       1983
## 1049                                           High income    XD       1982
## 1050                                           High income    XD       1981
## 1051                                           High income    XD       1980
## 1052                                           High income    XD       1979
## 1053                                           High income    XD       1978
## 1054                                           High income    XD       1977
## 1055                                           High income    XD       1976
## 1056                                           High income    XD       1975
## 1057                                           High income    XD       1974
## 1058                                           High income    XD       1973
## 1059                                           High income    XD       1972
## 1060                                           High income    XD       1971
## 1061                                           High income    XD       1970
## 1062                                           High income    XD       1969
## 1063                                           High income    XD       1968
## 1064                                           High income    XD       1967
## 1065                                           High income    XD       1966
## 1066                                           High income    XD       1965
## 1067                                           High income    XD       1964
## 1068                                           High income    XD       1963
## 1069                                           High income    XD       1962
## 1070                                           High income    XD       1961
## 1071                                           High income    XD       1960
## 1072                                             IBRD only    XF   IBD 2022
## 1073                                             IBRD only    XF   IBD 2021
## 1074                                             IBRD only    XF   IBD 2020
## 1075                                             IBRD only    XF   IBD 2019
## 1076                                             IBRD only    XF   IBD 2018
## 1077                                             IBRD only    XF   IBD 2017
## 1078                                             IBRD only    XF   IBD 2016
## 1079                                             IBRD only    XF   IBD 2015
## 1080                                             IBRD only    XF   IBD 2014
## 1081                                             IBRD only    XF   IBD 2013
## 1082                                             IBRD only    XF   IBD 2012
## 1083                                             IBRD only    XF   IBD 2011
## 1084                                             IBRD only    XF   IBD 2010
## 1085                                             IBRD only    XF   IBD 2009
## 1086                                             IBRD only    XF   IBD 2008
## 1087                                             IBRD only    XF   IBD 2007
## 1088                                             IBRD only    XF   IBD 2006
## 1089                                             IBRD only    XF   IBD 2005
## 1090                                             IBRD only    XF   IBD 2004
## 1091                                             IBRD only    XF   IBD 2003
## 1092                                             IBRD only    XF   IBD 2002
## 1093                                             IBRD only    XF   IBD 2001
## 1094                                             IBRD only    XF   IBD 2000
## 1095                                             IBRD only    XF   IBD 1999
## 1096                                             IBRD only    XF   IBD 1998
## 1097                                             IBRD only    XF   IBD 1997
## 1098                                             IBRD only    XF   IBD 1996
## 1099                                             IBRD only    XF   IBD 1995
## 1100                                             IBRD only    XF   IBD 1994
## 1101                                             IBRD only    XF   IBD 1993
## 1102                                             IBRD only    XF   IBD 1992
## 1103                                             IBRD only    XF   IBD 1991
## 1104                                             IBRD only    XF   IBD 1990
## 1105                                             IBRD only    XF   IBD 1989
## 1106                                             IBRD only    XF   IBD 1988
## 1107                                             IBRD only    XF   IBD 1987
## 1108                                             IBRD only    XF   IBD 1986
## 1109                                             IBRD only    XF   IBD 1985
## 1110                                             IBRD only    XF   IBD 1984
## 1111                                             IBRD only    XF   IBD 1983
## 1112                                             IBRD only    XF   IBD 1982
## 1113                                             IBRD only    XF   IBD 1981
## 1114                                             IBRD only    XF   IBD 1980
## 1115                                             IBRD only    XF   IBD 1979
## 1116                                             IBRD only    XF   IBD 1978
## 1117                                             IBRD only    XF   IBD 1977
## 1118                                             IBRD only    XF   IBD 1976
## 1119                                             IBRD only    XF   IBD 1975
## 1120                                             IBRD only    XF   IBD 1974
## 1121                                             IBRD only    XF   IBD 1973
## 1122                                             IBRD only    XF   IBD 1972
## 1123                                             IBRD only    XF   IBD 1971
## 1124                                             IBRD only    XF   IBD 1970
## 1125                                             IBRD only    XF   IBD 1969
## 1126                                             IBRD only    XF   IBD 1968
## 1127                                             IBRD only    XF   IBD 1967
## 1128                                             IBRD only    XF   IBD 1966
## 1129                                             IBRD only    XF   IBD 1965
## 1130                                             IBRD only    XF   IBD 1964
## 1131                                             IBRD only    XF   IBD 1963
## 1132                                             IBRD only    XF   IBD 1962
## 1133                                             IBRD only    XF   IBD 1961
## 1134                                             IBRD only    XF   IBD 1960
## 1135                                      IDA & IBRD total    ZT   IBT 2022
## 1136                                      IDA & IBRD total    ZT   IBT 2021
## 1137                                      IDA & IBRD total    ZT   IBT 2020
## 1138                                      IDA & IBRD total    ZT   IBT 2019
## 1139                                      IDA & IBRD total    ZT   IBT 2018
## 1140                                      IDA & IBRD total    ZT   IBT 2017
## 1141                                      IDA & IBRD total    ZT   IBT 2016
## 1142                                      IDA & IBRD total    ZT   IBT 2015
## 1143                                      IDA & IBRD total    ZT   IBT 2014
## 1144                                      IDA & IBRD total    ZT   IBT 2013
## 1145                                      IDA & IBRD total    ZT   IBT 2012
## 1146                                      IDA & IBRD total    ZT   IBT 2011
## 1147                                      IDA & IBRD total    ZT   IBT 2010
## 1148                                      IDA & IBRD total    ZT   IBT 2009
## 1149                                      IDA & IBRD total    ZT   IBT 2008
## 1150                                      IDA & IBRD total    ZT   IBT 2007
## 1151                                      IDA & IBRD total    ZT   IBT 2006
## 1152                                      IDA & IBRD total    ZT   IBT 2005
## 1153                                      IDA & IBRD total    ZT   IBT 2004
## 1154                                      IDA & IBRD total    ZT   IBT 2003
## 1155                                      IDA & IBRD total    ZT   IBT 2002
## 1156                                      IDA & IBRD total    ZT   IBT 2001
## 1157                                      IDA & IBRD total    ZT   IBT 2000
## 1158                                      IDA & IBRD total    ZT   IBT 1999
## 1159                                      IDA & IBRD total    ZT   IBT 1998
## 1160                                      IDA & IBRD total    ZT   IBT 1997
## 1161                                      IDA & IBRD total    ZT   IBT 1996
## 1162                                      IDA & IBRD total    ZT   IBT 1995
## 1163                                      IDA & IBRD total    ZT   IBT 1994
## 1164                                      IDA & IBRD total    ZT   IBT 1993
## 1165                                      IDA & IBRD total    ZT   IBT 1992
## 1166                                      IDA & IBRD total    ZT   IBT 1991
## 1167                                      IDA & IBRD total    ZT   IBT 1990
## 1168                                      IDA & IBRD total    ZT   IBT 1989
## 1169                                      IDA & IBRD total    ZT   IBT 1988
## 1170                                      IDA & IBRD total    ZT   IBT 1987
## 1171                                      IDA & IBRD total    ZT   IBT 1986
## 1172                                      IDA & IBRD total    ZT   IBT 1985
## 1173                                      IDA & IBRD total    ZT   IBT 1984
## 1174                                      IDA & IBRD total    ZT   IBT 1983
## 1175                                      IDA & IBRD total    ZT   IBT 1982
## 1176                                      IDA & IBRD total    ZT   IBT 1981
## 1177                                      IDA & IBRD total    ZT   IBT 1980
## 1178                                      IDA & IBRD total    ZT   IBT 1979
## 1179                                      IDA & IBRD total    ZT   IBT 1978
## 1180                                      IDA & IBRD total    ZT   IBT 1977
## 1181                                      IDA & IBRD total    ZT   IBT 1976
## 1182                                      IDA & IBRD total    ZT   IBT 1975
## 1183                                      IDA & IBRD total    ZT   IBT 1974
## 1184                                      IDA & IBRD total    ZT   IBT 1973
## 1185                                      IDA & IBRD total    ZT   IBT 1972
## 1186                                      IDA & IBRD total    ZT   IBT 1971
## 1187                                      IDA & IBRD total    ZT   IBT 1970
## 1188                                      IDA & IBRD total    ZT   IBT 1969
## 1189                                      IDA & IBRD total    ZT   IBT 1968
## 1190                                      IDA & IBRD total    ZT   IBT 1967
## 1191                                      IDA & IBRD total    ZT   IBT 1966
## 1192                                      IDA & IBRD total    ZT   IBT 1965
## 1193                                      IDA & IBRD total    ZT   IBT 1964
## 1194                                      IDA & IBRD total    ZT   IBT 1963
## 1195                                      IDA & IBRD total    ZT   IBT 1962
## 1196                                      IDA & IBRD total    ZT   IBT 1961
## 1197                                      IDA & IBRD total    ZT   IBT 1960
## 1198                                             IDA blend    XH   IDB 2022
## 1199                                             IDA blend    XH   IDB 2021
## 1200                                             IDA blend    XH   IDB 2020
## 1201                                             IDA blend    XH   IDB 2019
## 1202                                             IDA blend    XH   IDB 2018
## 1203                                             IDA blend    XH   IDB 2017
## 1204                                             IDA blend    XH   IDB 2016
## 1205                                             IDA blend    XH   IDB 2015
## 1206                                             IDA blend    XH   IDB 2014
## 1207                                             IDA blend    XH   IDB 2013
## 1208                                             IDA blend    XH   IDB 2012
## 1209                                             IDA blend    XH   IDB 2011
## 1210                                             IDA blend    XH   IDB 2010
## 1211                                             IDA blend    XH   IDB 2009
## 1212                                             IDA blend    XH   IDB 2008
## 1213                                             IDA blend    XH   IDB 2007
## 1214                                             IDA blend    XH   IDB 2006
## 1215                                             IDA blend    XH   IDB 2005
## 1216                                             IDA blend    XH   IDB 2004
## 1217                                             IDA blend    XH   IDB 2003
## 1218                                             IDA blend    XH   IDB 2002
## 1219                                             IDA blend    XH   IDB 2001
## 1220                                             IDA blend    XH   IDB 2000
## 1221                                             IDA blend    XH   IDB 1999
## 1222                                             IDA blend    XH   IDB 1998
## 1223                                             IDA blend    XH   IDB 1997
## 1224                                             IDA blend    XH   IDB 1996
## 1225                                             IDA blend    XH   IDB 1995
## 1226                                             IDA blend    XH   IDB 1994
## 1227                                             IDA blend    XH   IDB 1993
## 1228                                             IDA blend    XH   IDB 1992
## 1229                                             IDA blend    XH   IDB 1991
## 1230                                             IDA blend    XH   IDB 1990
## 1231                                             IDA blend    XH   IDB 1989
## 1232                                             IDA blend    XH   IDB 1988
## 1233                                             IDA blend    XH   IDB 1987
## 1234                                             IDA blend    XH   IDB 1986
## 1235                                             IDA blend    XH   IDB 1985
## 1236                                             IDA blend    XH   IDB 1984
## 1237                                             IDA blend    XH   IDB 1983
## 1238                                             IDA blend    XH   IDB 1982
## 1239                                             IDA blend    XH   IDB 1981
## 1240                                             IDA blend    XH   IDB 1980
## 1241                                             IDA blend    XH   IDB 1979
## 1242                                             IDA blend    XH   IDB 1978
## 1243                                             IDA blend    XH   IDB 1977
## 1244                                             IDA blend    XH   IDB 1976
## 1245                                             IDA blend    XH   IDB 1975
## 1246                                             IDA blend    XH   IDB 1974
## 1247                                             IDA blend    XH   IDB 1973
## 1248                                             IDA blend    XH   IDB 1972
## 1249                                             IDA blend    XH   IDB 1971
## 1250                                             IDA blend    XH   IDB 1970
## 1251                                             IDA blend    XH   IDB 1969
## 1252                                             IDA blend    XH   IDB 1968
## 1253                                             IDA blend    XH   IDB 1967
## 1254                                             IDA blend    XH   IDB 1966
## 1255                                             IDA blend    XH   IDB 1965
## 1256                                             IDA blend    XH   IDB 1964
## 1257                                             IDA blend    XH   IDB 1963
## 1258                                             IDA blend    XH   IDB 1962
## 1259                                             IDA blend    XH   IDB 1961
## 1260                                             IDA blend    XH   IDB 1960
## 1261                                              IDA only    XI   IDX 2022
## 1262                                              IDA only    XI   IDX 2021
## 1263                                              IDA only    XI   IDX 2020
## 1264                                              IDA only    XI   IDX 2019
## 1265                                              IDA only    XI   IDX 2018
## 1266                                              IDA only    XI   IDX 2017
## 1267                                              IDA only    XI   IDX 2016
## 1268                                              IDA only    XI   IDX 2015
## 1269                                              IDA only    XI   IDX 2014
## 1270                                              IDA only    XI   IDX 2013
## 1271                                              IDA only    XI   IDX 2012
## 1272                                              IDA only    XI   IDX 2011
## 1273                                              IDA only    XI   IDX 2010
## 1274                                              IDA only    XI   IDX 2009
## 1275                                              IDA only    XI   IDX 2008
## 1276                                              IDA only    XI   IDX 2007
## 1277                                              IDA only    XI   IDX 2006
## 1278                                              IDA only    XI   IDX 2005
## 1279                                              IDA only    XI   IDX 2004
## 1280                                              IDA only    XI   IDX 2003
## 1281                                              IDA only    XI   IDX 2002
## 1282                                              IDA only    XI   IDX 2001
## 1283                                              IDA only    XI   IDX 2000
## 1284                                              IDA only    XI   IDX 1999
## 1285                                              IDA only    XI   IDX 1998
## 1286                                              IDA only    XI   IDX 1997
## 1287                                              IDA only    XI   IDX 1996
## 1288                                              IDA only    XI   IDX 1995
## 1289                                              IDA only    XI   IDX 1994
## 1290                                              IDA only    XI   IDX 1993
## 1291                                              IDA only    XI   IDX 1992
## 1292                                              IDA only    XI   IDX 1991
## 1293                                              IDA only    XI   IDX 1990
## 1294                                              IDA only    XI   IDX 1989
## 1295                                              IDA only    XI   IDX 1988
## 1296                                              IDA only    XI   IDX 1987
## 1297                                              IDA only    XI   IDX 1986
## 1298                                              IDA only    XI   IDX 1985
## 1299                                              IDA only    XI   IDX 1984
## 1300                                              IDA only    XI   IDX 1983
## 1301                                              IDA only    XI   IDX 1982
## 1302                                              IDA only    XI   IDX 1981
## 1303                                              IDA only    XI   IDX 1980
## 1304                                              IDA only    XI   IDX 1979
## 1305                                              IDA only    XI   IDX 1978
## 1306                                              IDA only    XI   IDX 1977
## 1307                                              IDA only    XI   IDX 1976
## 1308                                              IDA only    XI   IDX 1975
## 1309                                              IDA only    XI   IDX 1974
## 1310                                              IDA only    XI   IDX 1973
## 1311                                              IDA only    XI   IDX 1972
## 1312                                              IDA only    XI   IDX 1971
## 1313                                              IDA only    XI   IDX 1970
## 1314                                              IDA only    XI   IDX 1969
## 1315                                              IDA only    XI   IDX 1968
## 1316                                              IDA only    XI   IDX 1967
## 1317                                              IDA only    XI   IDX 1966
## 1318                                              IDA only    XI   IDX 1965
## 1319                                              IDA only    XI   IDX 1964
## 1320                                              IDA only    XI   IDX 1963
## 1321                                              IDA only    XI   IDX 1962
## 1322                                              IDA only    XI   IDX 1961
## 1323                                              IDA only    XI   IDX 1960
## 1324                                             IDA total    XG   IDA 2022
## 1325                                             IDA total    XG   IDA 2021
## 1326                                             IDA total    XG   IDA 2020
## 1327                                             IDA total    XG   IDA 2019
## 1328                                             IDA total    XG   IDA 2018
## 1329                                             IDA total    XG   IDA 2017
## 1330                                             IDA total    XG   IDA 2016
## 1331                                             IDA total    XG   IDA 2015
## 1332                                             IDA total    XG   IDA 2014
## 1333                                             IDA total    XG   IDA 2013
## 1334                                             IDA total    XG   IDA 2012
## 1335                                             IDA total    XG   IDA 2011
## 1336                                             IDA total    XG   IDA 2010
## 1337                                             IDA total    XG   IDA 2009
## 1338                                             IDA total    XG   IDA 2008
## 1339                                             IDA total    XG   IDA 2007
## 1340                                             IDA total    XG   IDA 2006
## 1341                                             IDA total    XG   IDA 2005
## 1342                                             IDA total    XG   IDA 2004
## 1343                                             IDA total    XG   IDA 2003
## 1344                                             IDA total    XG   IDA 2002
## 1345                                             IDA total    XG   IDA 2001
## 1346                                             IDA total    XG   IDA 2000
## 1347                                             IDA total    XG   IDA 1999
## 1348                                             IDA total    XG   IDA 1998
## 1349                                             IDA total    XG   IDA 1997
## 1350                                             IDA total    XG   IDA 1996
## 1351                                             IDA total    XG   IDA 1995
## 1352                                             IDA total    XG   IDA 1994
## 1353                                             IDA total    XG   IDA 1993
## 1354                                             IDA total    XG   IDA 1992
## 1355                                             IDA total    XG   IDA 1991
## 1356                                             IDA total    XG   IDA 1990
## 1357                                             IDA total    XG   IDA 1989
## 1358                                             IDA total    XG   IDA 1988
## 1359                                             IDA total    XG   IDA 1987
## 1360                                             IDA total    XG   IDA 1986
## 1361                                             IDA total    XG   IDA 1985
## 1362                                             IDA total    XG   IDA 1984
## 1363                                             IDA total    XG   IDA 1983
## 1364                                             IDA total    XG   IDA 1982
## 1365                                             IDA total    XG   IDA 1981
## 1366                                             IDA total    XG   IDA 1980
## 1367                                             IDA total    XG   IDA 1979
## 1368                                             IDA total    XG   IDA 1978
## 1369                                             IDA total    XG   IDA 1977
## 1370                                             IDA total    XG   IDA 1976
## 1371                                             IDA total    XG   IDA 1975
## 1372                                             IDA total    XG   IDA 1974
## 1373                                             IDA total    XG   IDA 1973
## 1374                                             IDA total    XG   IDA 1972
## 1375                                             IDA total    XG   IDA 1971
## 1376                                             IDA total    XG   IDA 1970
## 1377                                             IDA total    XG   IDA 1969
## 1378                                             IDA total    XG   IDA 1968
## 1379                                             IDA total    XG   IDA 1967
## 1380                                             IDA total    XG   IDA 1966
## 1381                                             IDA total    XG   IDA 1965
## 1382                                             IDA total    XG   IDA 1964
## 1383                                             IDA total    XG   IDA 1963
## 1384                                             IDA total    XG   IDA 1962
## 1385                                             IDA total    XG   IDA 1961
## 1386                                             IDA total    XG   IDA 1960
## 1387                             Late-demographic dividend    V3   LTE 2022
## 1388                             Late-demographic dividend    V3   LTE 2021
## 1389                             Late-demographic dividend    V3   LTE 2020
## 1390                             Late-demographic dividend    V3   LTE 2019
## 1391                             Late-demographic dividend    V3   LTE 2018
## 1392                             Late-demographic dividend    V3   LTE 2017
## 1393                             Late-demographic dividend    V3   LTE 2016
## 1394                             Late-demographic dividend    V3   LTE 2015
## 1395                             Late-demographic dividend    V3   LTE 2014
## 1396                             Late-demographic dividend    V3   LTE 2013
## 1397                             Late-demographic dividend    V3   LTE 2012
## 1398                             Late-demographic dividend    V3   LTE 2011
## 1399                             Late-demographic dividend    V3   LTE 2010
## 1400                             Late-demographic dividend    V3   LTE 2009
## 1401                             Late-demographic dividend    V3   LTE 2008
## 1402                             Late-demographic dividend    V3   LTE 2007
## 1403                             Late-demographic dividend    V3   LTE 2006
## 1404                             Late-demographic dividend    V3   LTE 2005
## 1405                             Late-demographic dividend    V3   LTE 2004
## 1406                             Late-demographic dividend    V3   LTE 2003
## 1407                             Late-demographic dividend    V3   LTE 2002
## 1408                             Late-demographic dividend    V3   LTE 2001
## 1409                             Late-demographic dividend    V3   LTE 2000
## 1410                             Late-demographic dividend    V3   LTE 1999
## 1411                             Late-demographic dividend    V3   LTE 1998
## 1412                             Late-demographic dividend    V3   LTE 1997
## 1413                             Late-demographic dividend    V3   LTE 1996
## 1414                             Late-demographic dividend    V3   LTE 1995
## 1415                             Late-demographic dividend    V3   LTE 1994
## 1416                             Late-demographic dividend    V3   LTE 1993
## 1417                             Late-demographic dividend    V3   LTE 1992
## 1418                             Late-demographic dividend    V3   LTE 1991
## 1419                             Late-demographic dividend    V3   LTE 1990
## 1420                             Late-demographic dividend    V3   LTE 1989
## 1421                             Late-demographic dividend    V3   LTE 1988
## 1422                             Late-demographic dividend    V3   LTE 1987
## 1423                             Late-demographic dividend    V3   LTE 1986
## 1424                             Late-demographic dividend    V3   LTE 1985
## 1425                             Late-demographic dividend    V3   LTE 1984
## 1426                             Late-demographic dividend    V3   LTE 1983
## 1427                             Late-demographic dividend    V3   LTE 1982
## 1428                             Late-demographic dividend    V3   LTE 1981
## 1429                             Late-demographic dividend    V3   LTE 1980
## 1430                             Late-demographic dividend    V3   LTE 1979
## 1431                             Late-demographic dividend    V3   LTE 1978
## 1432                             Late-demographic dividend    V3   LTE 1977
## 1433                             Late-demographic dividend    V3   LTE 1976
## 1434                             Late-demographic dividend    V3   LTE 1975
## 1435                             Late-demographic dividend    V3   LTE 1974
## 1436                             Late-demographic dividend    V3   LTE 1973
## 1437                             Late-demographic dividend    V3   LTE 1972
## 1438                             Late-demographic dividend    V3   LTE 1971
## 1439                             Late-demographic dividend    V3   LTE 1970
## 1440                             Late-demographic dividend    V3   LTE 1969
## 1441                             Late-demographic dividend    V3   LTE 1968
## 1442                             Late-demographic dividend    V3   LTE 1967
## 1443                             Late-demographic dividend    V3   LTE 1966
## 1444                             Late-demographic dividend    V3   LTE 1965
## 1445                             Late-demographic dividend    V3   LTE 1964
## 1446                             Late-demographic dividend    V3   LTE 1963
## 1447                             Late-demographic dividend    V3   LTE 1962
## 1448                             Late-demographic dividend    V3   LTE 1961
## 1449                             Late-demographic dividend    V3   LTE 1960
## 1450                             Latin America & Caribbean    ZJ   LCN 2022
## 1451                             Latin America & Caribbean    ZJ   LCN 2021
## 1452                             Latin America & Caribbean    ZJ   LCN 2020
## 1453                             Latin America & Caribbean    ZJ   LCN 2019
## 1454                             Latin America & Caribbean    ZJ   LCN 2018
## 1455                             Latin America & Caribbean    ZJ   LCN 2017
## 1456                             Latin America & Caribbean    ZJ   LCN 2016
## 1457                             Latin America & Caribbean    ZJ   LCN 2015
## 1458                             Latin America & Caribbean    ZJ   LCN 2014
## 1459                             Latin America & Caribbean    ZJ   LCN 2013
## 1460                             Latin America & Caribbean    ZJ   LCN 2012
## 1461                             Latin America & Caribbean    ZJ   LCN 2011
## 1462                             Latin America & Caribbean    ZJ   LCN 2010
## 1463                             Latin America & Caribbean    ZJ   LCN 2009
## 1464                             Latin America & Caribbean    ZJ   LCN 2008
## 1465                             Latin America & Caribbean    ZJ   LCN 2007
## 1466                             Latin America & Caribbean    ZJ   LCN 2006
## 1467                             Latin America & Caribbean    ZJ   LCN 2005
## 1468                             Latin America & Caribbean    ZJ   LCN 2004
## 1469                             Latin America & Caribbean    ZJ   LCN 2003
## 1470                             Latin America & Caribbean    ZJ   LCN 2002
## 1471                             Latin America & Caribbean    ZJ   LCN 2001
## 1472                             Latin America & Caribbean    ZJ   LCN 2000
## 1473                             Latin America & Caribbean    ZJ   LCN 1999
## 1474                             Latin America & Caribbean    ZJ   LCN 1998
## 1475                             Latin America & Caribbean    ZJ   LCN 1997
## 1476                             Latin America & Caribbean    ZJ   LCN 1996
## 1477                             Latin America & Caribbean    ZJ   LCN 1995
## 1478                             Latin America & Caribbean    ZJ   LCN 1994
## 1479                             Latin America & Caribbean    ZJ   LCN 1993
## 1480                             Latin America & Caribbean    ZJ   LCN 1992
## 1481                             Latin America & Caribbean    ZJ   LCN 1991
## 1482                             Latin America & Caribbean    ZJ   LCN 1990
## 1483                             Latin America & Caribbean    ZJ   LCN 1989
## 1484                             Latin America & Caribbean    ZJ   LCN 1988
## 1485                             Latin America & Caribbean    ZJ   LCN 1987
## 1486                             Latin America & Caribbean    ZJ   LCN 1986
## 1487                             Latin America & Caribbean    ZJ   LCN 1985
## 1488                             Latin America & Caribbean    ZJ   LCN 1984
## 1489                             Latin America & Caribbean    ZJ   LCN 1983
## 1490                             Latin America & Caribbean    ZJ   LCN 1982
## 1491                             Latin America & Caribbean    ZJ   LCN 1981
## 1492                             Latin America & Caribbean    ZJ   LCN 1980
## 1493                             Latin America & Caribbean    ZJ   LCN 1979
## 1494                             Latin America & Caribbean    ZJ   LCN 1978
## 1495                             Latin America & Caribbean    ZJ   LCN 1977
## 1496                             Latin America & Caribbean    ZJ   LCN 1976
## 1497                             Latin America & Caribbean    ZJ   LCN 1975
## 1498                             Latin America & Caribbean    ZJ   LCN 1974
## 1499                             Latin America & Caribbean    ZJ   LCN 1973
## 1500                             Latin America & Caribbean    ZJ   LCN 1972
## 1501                             Latin America & Caribbean    ZJ   LCN 1971
## 1502                             Latin America & Caribbean    ZJ   LCN 1970
## 1503                             Latin America & Caribbean    ZJ   LCN 1969
## 1504                             Latin America & Caribbean    ZJ   LCN 1968
## 1505                             Latin America & Caribbean    ZJ   LCN 1967
## 1506                             Latin America & Caribbean    ZJ   LCN 1966
## 1507                             Latin America & Caribbean    ZJ   LCN 1965
## 1508                             Latin America & Caribbean    ZJ   LCN 1964
## 1509                             Latin America & Caribbean    ZJ   LCN 1963
## 1510                             Latin America & Caribbean    ZJ   LCN 1962
## 1511                             Latin America & Caribbean    ZJ   LCN 1961
## 1512                             Latin America & Caribbean    ZJ   LCN 1960
## 1513     Latin America & Caribbean (excluding high income)    XJ   LAC 2022
## 1514     Latin America & Caribbean (excluding high income)    XJ   LAC 2021
## 1515     Latin America & Caribbean (excluding high income)    XJ   LAC 2020
## 1516     Latin America & Caribbean (excluding high income)    XJ   LAC 2019
## 1517     Latin America & Caribbean (excluding high income)    XJ   LAC 2018
## 1518     Latin America & Caribbean (excluding high income)    XJ   LAC 2017
## 1519     Latin America & Caribbean (excluding high income)    XJ   LAC 2016
## 1520     Latin America & Caribbean (excluding high income)    XJ   LAC 2015
## 1521     Latin America & Caribbean (excluding high income)    XJ   LAC 2014
## 1522     Latin America & Caribbean (excluding high income)    XJ   LAC 2013
## 1523     Latin America & Caribbean (excluding high income)    XJ   LAC 2012
## 1524     Latin America & Caribbean (excluding high income)    XJ   LAC 2011
## 1525     Latin America & Caribbean (excluding high income)    XJ   LAC 2010
## 1526     Latin America & Caribbean (excluding high income)    XJ   LAC 2009
## 1527     Latin America & Caribbean (excluding high income)    XJ   LAC 2008
## 1528     Latin America & Caribbean (excluding high income)    XJ   LAC 2007
## 1529     Latin America & Caribbean (excluding high income)    XJ   LAC 2006
## 1530     Latin America & Caribbean (excluding high income)    XJ   LAC 2005
## 1531     Latin America & Caribbean (excluding high income)    XJ   LAC 2004
## 1532     Latin America & Caribbean (excluding high income)    XJ   LAC 2003
## 1533     Latin America & Caribbean (excluding high income)    XJ   LAC 2002
## 1534     Latin America & Caribbean (excluding high income)    XJ   LAC 2001
## 1535     Latin America & Caribbean (excluding high income)    XJ   LAC 2000
## 1536     Latin America & Caribbean (excluding high income)    XJ   LAC 1999
## 1537     Latin America & Caribbean (excluding high income)    XJ   LAC 1998
## 1538     Latin America & Caribbean (excluding high income)    XJ   LAC 1997
## 1539     Latin America & Caribbean (excluding high income)    XJ   LAC 1996
## 1540     Latin America & Caribbean (excluding high income)    XJ   LAC 1995
## 1541     Latin America & Caribbean (excluding high income)    XJ   LAC 1994
## 1542     Latin America & Caribbean (excluding high income)    XJ   LAC 1993
## 1543     Latin America & Caribbean (excluding high income)    XJ   LAC 1992
## 1544     Latin America & Caribbean (excluding high income)    XJ   LAC 1991
## 1545     Latin America & Caribbean (excluding high income)    XJ   LAC 1990
## 1546     Latin America & Caribbean (excluding high income)    XJ   LAC 1989
## 1547     Latin America & Caribbean (excluding high income)    XJ   LAC 1988
## 1548     Latin America & Caribbean (excluding high income)    XJ   LAC 1987
## 1549     Latin America & Caribbean (excluding high income)    XJ   LAC 1986
## 1550     Latin America & Caribbean (excluding high income)    XJ   LAC 1985
## 1551     Latin America & Caribbean (excluding high income)    XJ   LAC 1984
## 1552     Latin America & Caribbean (excluding high income)    XJ   LAC 1983
## 1553     Latin America & Caribbean (excluding high income)    XJ   LAC 1982
## 1554     Latin America & Caribbean (excluding high income)    XJ   LAC 1981
## 1555     Latin America & Caribbean (excluding high income)    XJ   LAC 1980
## 1556     Latin America & Caribbean (excluding high income)    XJ   LAC 1979
## 1557     Latin America & Caribbean (excluding high income)    XJ   LAC 1978
## 1558     Latin America & Caribbean (excluding high income)    XJ   LAC 1977
## 1559     Latin America & Caribbean (excluding high income)    XJ   LAC 1976
## 1560     Latin America & Caribbean (excluding high income)    XJ   LAC 1975
## 1561     Latin America & Caribbean (excluding high income)    XJ   LAC 1974
## 1562     Latin America & Caribbean (excluding high income)    XJ   LAC 1973
## 1563     Latin America & Caribbean (excluding high income)    XJ   LAC 1972
## 1564     Latin America & Caribbean (excluding high income)    XJ   LAC 1971
## 1565     Latin America & Caribbean (excluding high income)    XJ   LAC 1970
## 1566     Latin America & Caribbean (excluding high income)    XJ   LAC 1969
## 1567     Latin America & Caribbean (excluding high income)    XJ   LAC 1968
## 1568     Latin America & Caribbean (excluding high income)    XJ   LAC 1967
## 1569     Latin America & Caribbean (excluding high income)    XJ   LAC 1966
## 1570     Latin America & Caribbean (excluding high income)    XJ   LAC 1965
## 1571     Latin America & Caribbean (excluding high income)    XJ   LAC 1964
## 1572     Latin America & Caribbean (excluding high income)    XJ   LAC 1963
## 1573     Latin America & Caribbean (excluding high income)    XJ   LAC 1962
## 1574     Latin America & Caribbean (excluding high income)    XJ   LAC 1961
## 1575     Latin America & Caribbean (excluding high income)    XJ   LAC 1960
## 1576  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2022
## 1577  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2021
## 1578  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2020
## 1579  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2019
## 1580  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2018
## 1581  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2017
## 1582  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2016
## 1583  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2015
## 1584  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2014
## 1585  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2013
## 1586  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2012
## 1587  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2011
## 1588  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2010
## 1589  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2009
## 1590  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2008
## 1591  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2007
## 1592  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2006
## 1593  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2005
## 1594  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2004
## 1595  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2003
## 1596  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2002
## 1597  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2001
## 1598  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2000
## 1599  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1999
## 1600  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1998
## 1601  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1997
## 1602  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1996
## 1603  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1995
## 1604  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1994
## 1605  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1993
## 1606  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1992
## 1607  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1991
## 1608  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1990
## 1609  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1989
## 1610  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1988
## 1611  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1987
## 1612  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1986
## 1613  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1985
## 1614  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1984
## 1615  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1983
## 1616  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1982
## 1617  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1981
## 1618  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1980
## 1619  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1979
## 1620  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1978
## 1621  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1977
## 1622  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1976
## 1623  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1975
## 1624  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1974
## 1625  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1973
## 1626  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1972
## 1627  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1971
## 1628  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1970
## 1629  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1969
## 1630  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1968
## 1631  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1967
## 1632  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1966
## 1633  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1965
## 1634  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1964
## 1635  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1963
## 1636  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1962
## 1637  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1961
## 1638  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1960
## 1639          Least developed countries: UN classification    XL   LDC 2022
## 1640          Least developed countries: UN classification    XL   LDC 2021
## 1641          Least developed countries: UN classification    XL   LDC 2020
## 1642          Least developed countries: UN classification    XL   LDC 2019
## 1643          Least developed countries: UN classification    XL   LDC 2018
## 1644          Least developed countries: UN classification    XL   LDC 2017
## 1645          Least developed countries: UN classification    XL   LDC 2016
## 1646          Least developed countries: UN classification    XL   LDC 2015
## 1647          Least developed countries: UN classification    XL   LDC 2014
## 1648          Least developed countries: UN classification    XL   LDC 2013
## 1649          Least developed countries: UN classification    XL   LDC 2012
## 1650          Least developed countries: UN classification    XL   LDC 2011
## 1651          Least developed countries: UN classification    XL   LDC 2010
## 1652          Least developed countries: UN classification    XL   LDC 2009
## 1653          Least developed countries: UN classification    XL   LDC 2008
## 1654          Least developed countries: UN classification    XL   LDC 2007
## 1655          Least developed countries: UN classification    XL   LDC 2006
## 1656          Least developed countries: UN classification    XL   LDC 2005
## 1657          Least developed countries: UN classification    XL   LDC 2004
## 1658          Least developed countries: UN classification    XL   LDC 2003
## 1659          Least developed countries: UN classification    XL   LDC 2002
## 1660          Least developed countries: UN classification    XL   LDC 2001
## 1661          Least developed countries: UN classification    XL   LDC 2000
## 1662          Least developed countries: UN classification    XL   LDC 1999
## 1663          Least developed countries: UN classification    XL   LDC 1998
## 1664          Least developed countries: UN classification    XL   LDC 1997
## 1665          Least developed countries: UN classification    XL   LDC 1996
## 1666          Least developed countries: UN classification    XL   LDC 1995
## 1667          Least developed countries: UN classification    XL   LDC 1994
## 1668          Least developed countries: UN classification    XL   LDC 1993
## 1669          Least developed countries: UN classification    XL   LDC 1992
## 1670          Least developed countries: UN classification    XL   LDC 1991
## 1671          Least developed countries: UN classification    XL   LDC 1990
## 1672          Least developed countries: UN classification    XL   LDC 1989
## 1673          Least developed countries: UN classification    XL   LDC 1988
## 1674          Least developed countries: UN classification    XL   LDC 1987
## 1675          Least developed countries: UN classification    XL   LDC 1986
## 1676          Least developed countries: UN classification    XL   LDC 1985
## 1677          Least developed countries: UN classification    XL   LDC 1984
## 1678          Least developed countries: UN classification    XL   LDC 1983
## 1679          Least developed countries: UN classification    XL   LDC 1982
## 1680          Least developed countries: UN classification    XL   LDC 1981
## 1681          Least developed countries: UN classification    XL   LDC 1980
## 1682          Least developed countries: UN classification    XL   LDC 1979
## 1683          Least developed countries: UN classification    XL   LDC 1978
## 1684          Least developed countries: UN classification    XL   LDC 1977
## 1685          Least developed countries: UN classification    XL   LDC 1976
## 1686          Least developed countries: UN classification    XL   LDC 1975
## 1687          Least developed countries: UN classification    XL   LDC 1974
## 1688          Least developed countries: UN classification    XL   LDC 1973
## 1689          Least developed countries: UN classification    XL   LDC 1972
## 1690          Least developed countries: UN classification    XL   LDC 1971
## 1691          Least developed countries: UN classification    XL   LDC 1970
## 1692          Least developed countries: UN classification    XL   LDC 1969
## 1693          Least developed countries: UN classification    XL   LDC 1968
## 1694          Least developed countries: UN classification    XL   LDC 1967
## 1695          Least developed countries: UN classification    XL   LDC 1966
## 1696          Least developed countries: UN classification    XL   LDC 1965
## 1697          Least developed countries: UN classification    XL   LDC 1964
## 1698          Least developed countries: UN classification    XL   LDC 1963
## 1699          Least developed countries: UN classification    XL   LDC 1962
## 1700          Least developed countries: UN classification    XL   LDC 1961
## 1701          Least developed countries: UN classification    XL   LDC 1960
## 1702                                   Low & middle income    XO   LMY 2022
## 1703                                   Low & middle income    XO   LMY 2021
## 1704                                   Low & middle income    XO   LMY 2020
## 1705                                   Low & middle income    XO   LMY 2019
## 1706                                   Low & middle income    XO   LMY 2018
## 1707                                   Low & middle income    XO   LMY 2017
## 1708                                   Low & middle income    XO   LMY 2016
## 1709                                   Low & middle income    XO   LMY 2015
## 1710                                   Low & middle income    XO   LMY 2014
## 1711                                   Low & middle income    XO   LMY 2013
## 1712                                   Low & middle income    XO   LMY 2012
## 1713                                   Low & middle income    XO   LMY 2011
## 1714                                   Low & middle income    XO   LMY 2010
## 1715                                   Low & middle income    XO   LMY 2009
## 1716                                   Low & middle income    XO   LMY 2008
## 1717                                   Low & middle income    XO   LMY 2007
## 1718                                   Low & middle income    XO   LMY 2006
## 1719                                   Low & middle income    XO   LMY 2005
## 1720                                   Low & middle income    XO   LMY 2004
## 1721                                   Low & middle income    XO   LMY 2003
## 1722                                   Low & middle income    XO   LMY 2002
## 1723                                   Low & middle income    XO   LMY 2001
## 1724                                   Low & middle income    XO   LMY 2000
## 1725                                   Low & middle income    XO   LMY 1999
## 1726                                   Low & middle income    XO   LMY 1998
## 1727                                   Low & middle income    XO   LMY 1997
## 1728                                   Low & middle income    XO   LMY 1996
## 1729                                   Low & middle income    XO   LMY 1995
## 1730                                   Low & middle income    XO   LMY 1994
## 1731                                   Low & middle income    XO   LMY 1993
## 1732                                   Low & middle income    XO   LMY 1992
## 1733                                   Low & middle income    XO   LMY 1991
## 1734                                   Low & middle income    XO   LMY 1990
## 1735                                   Low & middle income    XO   LMY 1989
## 1736                                   Low & middle income    XO   LMY 1988
## 1737                                   Low & middle income    XO   LMY 1987
## 1738                                   Low & middle income    XO   LMY 1986
## 1739                                   Low & middle income    XO   LMY 1985
## 1740                                   Low & middle income    XO   LMY 1984
## 1741                                   Low & middle income    XO   LMY 1983
## 1742                                   Low & middle income    XO   LMY 1982
## 1743                                   Low & middle income    XO   LMY 1981
## 1744                                   Low & middle income    XO   LMY 1980
## 1745                                   Low & middle income    XO   LMY 1979
## 1746                                   Low & middle income    XO   LMY 1978
## 1747                                   Low & middle income    XO   LMY 1977
## 1748                                   Low & middle income    XO   LMY 1976
## 1749                                   Low & middle income    XO   LMY 1975
## 1750                                   Low & middle income    XO   LMY 1974
## 1751                                   Low & middle income    XO   LMY 1973
## 1752                                   Low & middle income    XO   LMY 1972
## 1753                                   Low & middle income    XO   LMY 1971
## 1754                                   Low & middle income    XO   LMY 1970
## 1755                                   Low & middle income    XO   LMY 1969
## 1756                                   Low & middle income    XO   LMY 1968
## 1757                                   Low & middle income    XO   LMY 1967
## 1758                                   Low & middle income    XO   LMY 1966
## 1759                                   Low & middle income    XO   LMY 1965
## 1760                                   Low & middle income    XO   LMY 1964
## 1761                                   Low & middle income    XO   LMY 1963
## 1762                                   Low & middle income    XO   LMY 1962
## 1763                                   Low & middle income    XO   LMY 1961
## 1764                                   Low & middle income    XO   LMY 1960
## 1765                                            Low income    XM       2022
## 1766                                            Low income    XM       2021
## 1767                                            Low income    XM       2020
## 1768                                            Low income    XM       2019
## 1769                                            Low income    XM       2018
## 1770                                            Low income    XM       2017
## 1771                                            Low income    XM       2016
## 1772                                            Low income    XM       2015
## 1773                                            Low income    XM       2014
## 1774                                            Low income    XM       2013
## 1775                                            Low income    XM       2012
## 1776                                            Low income    XM       2011
## 1777                                            Low income    XM       2010
## 1778                                            Low income    XM       2009
## 1779                                            Low income    XM       2008
## 1780                                            Low income    XM       2007
## 1781                                            Low income    XM       2006
## 1782                                            Low income    XM       2005
## 1783                                            Low income    XM       2004
## 1784                                            Low income    XM       2003
## 1785                                            Low income    XM       2002
## 1786                                            Low income    XM       2001
## 1787                                            Low income    XM       2000
## 1788                                            Low income    XM       1999
## 1789                                            Low income    XM       1998
## 1790                                            Low income    XM       1997
## 1791                                            Low income    XM       1996
## 1792                                            Low income    XM       1995
## 1793                                            Low income    XM       1994
## 1794                                            Low income    XM       1993
## 1795                                            Low income    XM       1992
## 1796                                            Low income    XM       1991
## 1797                                            Low income    XM       1990
## 1798                                            Low income    XM       1989
## 1799                                            Low income    XM       1988
## 1800                                            Low income    XM       1987
## 1801                                            Low income    XM       1986
## 1802                                            Low income    XM       1985
## 1803                                            Low income    XM       1984
## 1804                                            Low income    XM       1983
## 1805                                            Low income    XM       1982
## 1806                                            Low income    XM       1981
## 1807                                            Low income    XM       1980
## 1808                                            Low income    XM       1979
## 1809                                            Low income    XM       1978
## 1810                                            Low income    XM       1977
## 1811                                            Low income    XM       1976
## 1812                                            Low income    XM       1975
## 1813                                            Low income    XM       1974
## 1814                                            Low income    XM       1973
## 1815                                            Low income    XM       1972
## 1816                                            Low income    XM       1971
## 1817                                            Low income    XM       1970
## 1818                                            Low income    XM       1969
## 1819                                            Low income    XM       1968
## 1820                                            Low income    XM       1967
## 1821                                            Low income    XM       1966
## 1822                                            Low income    XM       1965
## 1823                                            Low income    XM       1964
## 1824                                            Low income    XM       1963
## 1825                                            Low income    XM       1962
## 1826                                            Low income    XM       1961
## 1827                                            Low income    XM       1960
## 1828                                   Lower middle income    XN       2022
## 1829                                   Lower middle income    XN       2021
## 1830                                   Lower middle income    XN       2020
## 1831                                   Lower middle income    XN       2019
## 1832                                   Lower middle income    XN       2018
## 1833                                   Lower middle income    XN       2017
## 1834                                   Lower middle income    XN       2016
## 1835                                   Lower middle income    XN       2015
## 1836                                   Lower middle income    XN       2014
## 1837                                   Lower middle income    XN       2013
## 1838                                   Lower middle income    XN       2012
## 1839                                   Lower middle income    XN       2011
## 1840                                   Lower middle income    XN       2010
## 1841                                   Lower middle income    XN       2009
## 1842                                   Lower middle income    XN       2008
## 1843                                   Lower middle income    XN       2007
## 1844                                   Lower middle income    XN       2006
## 1845                                   Lower middle income    XN       2005
## 1846                                   Lower middle income    XN       2004
## 1847                                   Lower middle income    XN       2003
## 1848                                   Lower middle income    XN       2002
## 1849                                   Lower middle income    XN       2001
## 1850                                   Lower middle income    XN       2000
## 1851                                   Lower middle income    XN       1999
## 1852                                   Lower middle income    XN       1998
## 1853                                   Lower middle income    XN       1997
## 1854                                   Lower middle income    XN       1996
## 1855                                   Lower middle income    XN       1995
## 1856                                   Lower middle income    XN       1994
## 1857                                   Lower middle income    XN       1993
## 1858                                   Lower middle income    XN       1992
## 1859                                   Lower middle income    XN       1991
## 1860                                   Lower middle income    XN       1990
## 1861                                   Lower middle income    XN       1989
## 1862                                   Lower middle income    XN       1988
## 1863                                   Lower middle income    XN       1987
## 1864                                   Lower middle income    XN       1986
## 1865                                   Lower middle income    XN       1985
## 1866                                   Lower middle income    XN       1984
## 1867                                   Lower middle income    XN       1983
## 1868                                   Lower middle income    XN       1982
## 1869                                   Lower middle income    XN       1981
## 1870                                   Lower middle income    XN       1980
## 1871                                   Lower middle income    XN       1979
## 1872                                   Lower middle income    XN       1978
## 1873                                   Lower middle income    XN       1977
## 1874                                   Lower middle income    XN       1976
## 1875                                   Lower middle income    XN       1975
## 1876                                   Lower middle income    XN       1974
## 1877                                   Lower middle income    XN       1973
## 1878                                   Lower middle income    XN       1972
## 1879                                   Lower middle income    XN       1971
## 1880                                   Lower middle income    XN       1970
## 1881                                   Lower middle income    XN       1969
## 1882                                   Lower middle income    XN       1968
## 1883                                   Lower middle income    XN       1967
## 1884                                   Lower middle income    XN       1966
## 1885                                   Lower middle income    XN       1965
## 1886                                   Lower middle income    XN       1964
## 1887                                   Lower middle income    XN       1963
## 1888                                   Lower middle income    XN       1962
## 1889                                   Lower middle income    XN       1961
## 1890                                   Lower middle income    XN       1960
## 1891                            Middle East & North Africa    ZQ   MEA 2022
## 1892                            Middle East & North Africa    ZQ   MEA 2021
## 1893                            Middle East & North Africa    ZQ   MEA 2020
## 1894                            Middle East & North Africa    ZQ   MEA 2019
## 1895                            Middle East & North Africa    ZQ   MEA 2018
## 1896                            Middle East & North Africa    ZQ   MEA 2017
## 1897                            Middle East & North Africa    ZQ   MEA 2016
## 1898                            Middle East & North Africa    ZQ   MEA 2015
## 1899                            Middle East & North Africa    ZQ   MEA 2014
## 1900                            Middle East & North Africa    ZQ   MEA 2013
## 1901                            Middle East & North Africa    ZQ   MEA 2012
## 1902                            Middle East & North Africa    ZQ   MEA 2011
## 1903                            Middle East & North Africa    ZQ   MEA 2010
## 1904                            Middle East & North Africa    ZQ   MEA 2009
## 1905                            Middle East & North Africa    ZQ   MEA 2008
## 1906                            Middle East & North Africa    ZQ   MEA 2007
## 1907                            Middle East & North Africa    ZQ   MEA 2006
## 1908                            Middle East & North Africa    ZQ   MEA 2005
## 1909                            Middle East & North Africa    ZQ   MEA 2004
## 1910                            Middle East & North Africa    ZQ   MEA 2003
## 1911                            Middle East & North Africa    ZQ   MEA 2002
## 1912                            Middle East & North Africa    ZQ   MEA 2001
## 1913                            Middle East & North Africa    ZQ   MEA 2000
## 1914                            Middle East & North Africa    ZQ   MEA 1999
## 1915                            Middle East & North Africa    ZQ   MEA 1998
## 1916                            Middle East & North Africa    ZQ   MEA 1997
## 1917                            Middle East & North Africa    ZQ   MEA 1996
## 1918                            Middle East & North Africa    ZQ   MEA 1995
## 1919                            Middle East & North Africa    ZQ   MEA 1994
## 1920                            Middle East & North Africa    ZQ   MEA 1993
## 1921                            Middle East & North Africa    ZQ   MEA 1992
## 1922                            Middle East & North Africa    ZQ   MEA 1991
## 1923                            Middle East & North Africa    ZQ   MEA 1990
## 1924                            Middle East & North Africa    ZQ   MEA 1989
## 1925                            Middle East & North Africa    ZQ   MEA 1988
## 1926                            Middle East & North Africa    ZQ   MEA 1987
## 1927                            Middle East & North Africa    ZQ   MEA 1986
## 1928                            Middle East & North Africa    ZQ   MEA 1985
## 1929                            Middle East & North Africa    ZQ   MEA 1984
## 1930                            Middle East & North Africa    ZQ   MEA 1983
## 1931                            Middle East & North Africa    ZQ   MEA 1982
## 1932                            Middle East & North Africa    ZQ   MEA 1981
## 1933                            Middle East & North Africa    ZQ   MEA 1980
## 1934                            Middle East & North Africa    ZQ   MEA 1979
## 1935                            Middle East & North Africa    ZQ   MEA 1978
## 1936                            Middle East & North Africa    ZQ   MEA 1977
## 1937                            Middle East & North Africa    ZQ   MEA 1976
## 1938                            Middle East & North Africa    ZQ   MEA 1975
## 1939                            Middle East & North Africa    ZQ   MEA 1974
## 1940                            Middle East & North Africa    ZQ   MEA 1973
## 1941                            Middle East & North Africa    ZQ   MEA 1972
## 1942                            Middle East & North Africa    ZQ   MEA 1971
## 1943                            Middle East & North Africa    ZQ   MEA 1970
## 1944                            Middle East & North Africa    ZQ   MEA 1969
## 1945                            Middle East & North Africa    ZQ   MEA 1968
## 1946                            Middle East & North Africa    ZQ   MEA 1967
## 1947                            Middle East & North Africa    ZQ   MEA 1966
## 1948                            Middle East & North Africa    ZQ   MEA 1965
## 1949                            Middle East & North Africa    ZQ   MEA 1964
## 1950                            Middle East & North Africa    ZQ   MEA 1963
## 1951                            Middle East & North Africa    ZQ   MEA 1962
## 1952                            Middle East & North Africa    ZQ   MEA 1961
## 1953                            Middle East & North Africa    ZQ   MEA 1960
## 1954    Middle East & North Africa (excluding high income)    XQ   MNA 2022
## 1955    Middle East & North Africa (excluding high income)    XQ   MNA 2021
## 1956    Middle East & North Africa (excluding high income)    XQ   MNA 2020
## 1957    Middle East & North Africa (excluding high income)    XQ   MNA 2019
## 1958    Middle East & North Africa (excluding high income)    XQ   MNA 2018
## 1959    Middle East & North Africa (excluding high income)    XQ   MNA 2017
## 1960    Middle East & North Africa (excluding high income)    XQ   MNA 2016
## 1961    Middle East & North Africa (excluding high income)    XQ   MNA 2015
## 1962    Middle East & North Africa (excluding high income)    XQ   MNA 2014
## 1963    Middle East & North Africa (excluding high income)    XQ   MNA 2013
## 1964    Middle East & North Africa (excluding high income)    XQ   MNA 2012
## 1965    Middle East & North Africa (excluding high income)    XQ   MNA 2011
## 1966    Middle East & North Africa (excluding high income)    XQ   MNA 2010
## 1967    Middle East & North Africa (excluding high income)    XQ   MNA 2009
## 1968    Middle East & North Africa (excluding high income)    XQ   MNA 2008
## 1969    Middle East & North Africa (excluding high income)    XQ   MNA 2007
## 1970    Middle East & North Africa (excluding high income)    XQ   MNA 2006
## 1971    Middle East & North Africa (excluding high income)    XQ   MNA 2005
## 1972    Middle East & North Africa (excluding high income)    XQ   MNA 2004
## 1973    Middle East & North Africa (excluding high income)    XQ   MNA 2003
## 1974    Middle East & North Africa (excluding high income)    XQ   MNA 2002
## 1975    Middle East & North Africa (excluding high income)    XQ   MNA 2001
## 1976    Middle East & North Africa (excluding high income)    XQ   MNA 2000
## 1977    Middle East & North Africa (excluding high income)    XQ   MNA 1999
## 1978    Middle East & North Africa (excluding high income)    XQ   MNA 1998
## 1979    Middle East & North Africa (excluding high income)    XQ   MNA 1997
## 1980    Middle East & North Africa (excluding high income)    XQ   MNA 1996
## 1981    Middle East & North Africa (excluding high income)    XQ   MNA 1995
## 1982    Middle East & North Africa (excluding high income)    XQ   MNA 1994
## 1983    Middle East & North Africa (excluding high income)    XQ   MNA 1993
## 1984    Middle East & North Africa (excluding high income)    XQ   MNA 1992
## 1985    Middle East & North Africa (excluding high income)    XQ   MNA 1991
## 1986    Middle East & North Africa (excluding high income)    XQ   MNA 1990
## 1987    Middle East & North Africa (excluding high income)    XQ   MNA 1989
## 1988    Middle East & North Africa (excluding high income)    XQ   MNA 1988
## 1989    Middle East & North Africa (excluding high income)    XQ   MNA 1987
## 1990    Middle East & North Africa (excluding high income)    XQ   MNA 1986
## 1991    Middle East & North Africa (excluding high income)    XQ   MNA 1985
## 1992    Middle East & North Africa (excluding high income)    XQ   MNA 1984
## 1993    Middle East & North Africa (excluding high income)    XQ   MNA 1983
## 1994    Middle East & North Africa (excluding high income)    XQ   MNA 1982
## 1995    Middle East & North Africa (excluding high income)    XQ   MNA 1981
## 1996    Middle East & North Africa (excluding high income)    XQ   MNA 1980
## 1997    Middle East & North Africa (excluding high income)    XQ   MNA 1979
## 1998    Middle East & North Africa (excluding high income)    XQ   MNA 1978
## 1999    Middle East & North Africa (excluding high income)    XQ   MNA 1977
## 2000    Middle East & North Africa (excluding high income)    XQ   MNA 1976
## 2001    Middle East & North Africa (excluding high income)    XQ   MNA 1975
## 2002    Middle East & North Africa (excluding high income)    XQ   MNA 1974
## 2003    Middle East & North Africa (excluding high income)    XQ   MNA 1973
## 2004    Middle East & North Africa (excluding high income)    XQ   MNA 1972
## 2005    Middle East & North Africa (excluding high income)    XQ   MNA 1971
## 2006    Middle East & North Africa (excluding high income)    XQ   MNA 1970
## 2007    Middle East & North Africa (excluding high income)    XQ   MNA 1969
## 2008    Middle East & North Africa (excluding high income)    XQ   MNA 1968
## 2009    Middle East & North Africa (excluding high income)    XQ   MNA 1967
## 2010    Middle East & North Africa (excluding high income)    XQ   MNA 1966
## 2011    Middle East & North Africa (excluding high income)    XQ   MNA 1965
## 2012    Middle East & North Africa (excluding high income)    XQ   MNA 1964
## 2013    Middle East & North Africa (excluding high income)    XQ   MNA 1963
## 2014    Middle East & North Africa (excluding high income)    XQ   MNA 1962
## 2015    Middle East & North Africa (excluding high income)    XQ   MNA 1961
## 2016    Middle East & North Africa (excluding high income)    XQ   MNA 1960
## 2017     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2022
## 2018     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2021
## 2019     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2020
## 2020     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2019
## 2021     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2018
## 2022     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2017
## 2023     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2016
## 2024     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2015
## 2025     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2014
## 2026     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2013
## 2027     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2012
## 2028     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2011
## 2029     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2010
## 2030     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2009
## 2031     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2008
## 2032     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2007
## 2033     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2006
## 2034     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2005
## 2035     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2004
## 2036     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2003
## 2037     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2002
## 2038     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2001
## 2039     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2000
## 2040     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1999
## 2041     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1998
## 2042     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1997
## 2043     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1996
## 2044     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1995
## 2045     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1994
## 2046     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1993
## 2047     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1992
## 2048     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1991
## 2049     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1990
## 2050     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1989
## 2051     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1988
## 2052     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1987
## 2053     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1986
## 2054     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1985
## 2055     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1984
## 2056     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1983
## 2057     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1982
## 2058     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1981
## 2059     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1980
## 2060     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1979
## 2061     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1978
## 2062     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1977
## 2063     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1976
## 2064     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1975
## 2065     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1974
## 2066     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1973
## 2067     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1972
## 2068     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1971
## 2069     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1970
## 2070     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1969
## 2071     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1968
## 2072     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1967
## 2073     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1966
## 2074     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1965
## 2075     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1964
## 2076     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1963
## 2077     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1962
## 2078     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1961
## 2079     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1960
## 2080                                         Middle income    XP   MIC 2022
## 2081                                         Middle income    XP   MIC 2021
## 2082                                         Middle income    XP   MIC 2020
## 2083                                         Middle income    XP   MIC 2019
## 2084                                         Middle income    XP   MIC 2018
## 2085                                         Middle income    XP   MIC 2017
## 2086                                         Middle income    XP   MIC 2016
## 2087                                         Middle income    XP   MIC 2015
## 2088                                         Middle income    XP   MIC 2014
## 2089                                         Middle income    XP   MIC 2013
## 2090                                         Middle income    XP   MIC 2012
## 2091                                         Middle income    XP   MIC 2011
## 2092                                         Middle income    XP   MIC 2010
## 2093                                         Middle income    XP   MIC 2009
## 2094                                         Middle income    XP   MIC 2008
## 2095                                         Middle income    XP   MIC 2007
## 2096                                         Middle income    XP   MIC 2006
## 2097                                         Middle income    XP   MIC 2005
## 2098                                         Middle income    XP   MIC 2004
## 2099                                         Middle income    XP   MIC 2003
## 2100                                         Middle income    XP   MIC 2002
## 2101                                         Middle income    XP   MIC 2001
## 2102                                         Middle income    XP   MIC 2000
## 2103                                         Middle income    XP   MIC 1999
## 2104                                         Middle income    XP   MIC 1998
## 2105                                         Middle income    XP   MIC 1997
## 2106                                         Middle income    XP   MIC 1996
## 2107                                         Middle income    XP   MIC 1995
## 2108                                         Middle income    XP   MIC 1994
## 2109                                         Middle income    XP   MIC 1993
## 2110                                         Middle income    XP   MIC 1992
## 2111                                         Middle income    XP   MIC 1991
## 2112                                         Middle income    XP   MIC 1990
## 2113                                         Middle income    XP   MIC 1989
## 2114                                         Middle income    XP   MIC 1988
## 2115                                         Middle income    XP   MIC 1987
## 2116                                         Middle income    XP   MIC 1986
## 2117                                         Middle income    XP   MIC 1985
## 2118                                         Middle income    XP   MIC 1984
## 2119                                         Middle income    XP   MIC 1983
## 2120                                         Middle income    XP   MIC 1982
## 2121                                         Middle income    XP   MIC 1981
## 2122                                         Middle income    XP   MIC 1980
## 2123                                         Middle income    XP   MIC 1979
## 2124                                         Middle income    XP   MIC 1978
## 2125                                         Middle income    XP   MIC 1977
## 2126                                         Middle income    XP   MIC 1976
## 2127                                         Middle income    XP   MIC 1975
## 2128                                         Middle income    XP   MIC 1974
## 2129                                         Middle income    XP   MIC 1973
## 2130                                         Middle income    XP   MIC 1972
## 2131                                         Middle income    XP   MIC 1971
## 2132                                         Middle income    XP   MIC 1970
## 2133                                         Middle income    XP   MIC 1969
## 2134                                         Middle income    XP   MIC 1968
## 2135                                         Middle income    XP   MIC 1967
## 2136                                         Middle income    XP   MIC 1966
## 2137                                         Middle income    XP   MIC 1965
## 2138                                         Middle income    XP   MIC 1964
## 2139                                         Middle income    XP   MIC 1963
## 2140                                         Middle income    XP   MIC 1962
## 2141                                         Middle income    XP   MIC 1961
## 2142                                         Middle income    XP   MIC 1960
## 2143                                         North America    XU   NAC 2022
## 2144                                         North America    XU   NAC 2021
## 2145                                         North America    XU   NAC 2020
## 2146                                         North America    XU   NAC 2019
## 2147                                         North America    XU   NAC 2018
## 2148                                         North America    XU   NAC 2017
## 2149                                         North America    XU   NAC 2016
## 2150                                         North America    XU   NAC 2015
## 2151                                         North America    XU   NAC 2014
## 2152                                         North America    XU   NAC 2013
## 2153                                         North America    XU   NAC 2012
## 2154                                         North America    XU   NAC 2011
## 2155                                         North America    XU   NAC 2010
## 2156                                         North America    XU   NAC 2009
## 2157                                         North America    XU   NAC 2008
## 2158                                         North America    XU   NAC 2007
## 2159                                         North America    XU   NAC 2006
## 2160                                         North America    XU   NAC 2005
## 2161                                         North America    XU   NAC 2004
## 2162                                         North America    XU   NAC 2003
## 2163                                         North America    XU   NAC 2002
## 2164                                         North America    XU   NAC 2001
## 2165                                         North America    XU   NAC 2000
## 2166                                         North America    XU   NAC 1999
## 2167                                         North America    XU   NAC 1998
## 2168                                         North America    XU   NAC 1997
## 2169                                         North America    XU   NAC 1996
## 2170                                         North America    XU   NAC 1995
## 2171                                         North America    XU   NAC 1994
## 2172                                         North America    XU   NAC 1993
## 2173                                         North America    XU   NAC 1992
## 2174                                         North America    XU   NAC 1991
## 2175                                         North America    XU   NAC 1990
## 2176                                         North America    XU   NAC 1989
## 2177                                         North America    XU   NAC 1988
## 2178                                         North America    XU   NAC 1987
## 2179                                         North America    XU   NAC 1986
## 2180                                         North America    XU   NAC 1985
## 2181                                         North America    XU   NAC 1984
## 2182                                         North America    XU   NAC 1983
## 2183                                         North America    XU   NAC 1982
## 2184                                         North America    XU   NAC 1981
## 2185                                         North America    XU   NAC 1980
## 2186                                         North America    XU   NAC 1979
## 2187                                         North America    XU   NAC 1978
## 2188                                         North America    XU   NAC 1977
## 2189                                         North America    XU   NAC 1976
## 2190                                         North America    XU   NAC 1975
## 2191                                         North America    XU   NAC 1974
## 2192                                         North America    XU   NAC 1973
## 2193                                         North America    XU   NAC 1972
## 2194                                         North America    XU   NAC 1971
## 2195                                         North America    XU   NAC 1970
## 2196                                         North America    XU   NAC 1969
## 2197                                         North America    XU   NAC 1968
## 2198                                         North America    XU   NAC 1967
## 2199                                         North America    XU   NAC 1966
## 2200                                         North America    XU   NAC 1965
## 2201                                         North America    XU   NAC 1964
## 2202                                         North America    XU   NAC 1963
## 2203                                         North America    XU   NAC 1962
## 2204                                         North America    XU   NAC 1961
## 2205                                         North America    XU   NAC 1960
## 2206                                        Not classified    XY       2022
## 2207                                        Not classified    XY       2021
## 2208                                        Not classified    XY       2020
## 2209                                        Not classified    XY       2019
## 2210                                        Not classified    XY       2018
## 2211                                        Not classified    XY       2017
## 2212                                        Not classified    XY       2016
## 2213                                        Not classified    XY       2015
## 2214                                        Not classified    XY       2014
## 2215                                        Not classified    XY       2013
## 2216                                        Not classified    XY       2012
## 2217                                        Not classified    XY       2011
## 2218                                        Not classified    XY       2010
## 2219                                        Not classified    XY       2009
## 2220                                        Not classified    XY       2008
## 2221                                        Not classified    XY       2007
## 2222                                        Not classified    XY       2006
## 2223                                        Not classified    XY       2005
## 2224                                        Not classified    XY       2004
## 2225                                        Not classified    XY       2003
## 2226                                        Not classified    XY       2002
## 2227                                        Not classified    XY       2001
## 2228                                        Not classified    XY       2000
## 2229                                        Not classified    XY       1999
## 2230                                        Not classified    XY       1998
## 2231                                        Not classified    XY       1997
## 2232                                        Not classified    XY       1996
## 2233                                        Not classified    XY       1995
## 2234                                        Not classified    XY       1994
## 2235                                        Not classified    XY       1993
## 2236                                        Not classified    XY       1992
## 2237                                        Not classified    XY       1991
## 2238                                        Not classified    XY       1990
## 2239                                        Not classified    XY       1989
## 2240                                        Not classified    XY       1988
## 2241                                        Not classified    XY       1987
## 2242                                        Not classified    XY       1986
## 2243                                        Not classified    XY       1985
## 2244                                        Not classified    XY       1984
## 2245                                        Not classified    XY       1983
## 2246                                        Not classified    XY       1982
## 2247                                        Not classified    XY       1981
## 2248                                        Not classified    XY       1980
## 2249                                        Not classified    XY       1979
## 2250                                        Not classified    XY       1978
## 2251                                        Not classified    XY       1977
## 2252                                        Not classified    XY       1976
## 2253                                        Not classified    XY       1975
## 2254                                        Not classified    XY       1974
## 2255                                        Not classified    XY       1973
## 2256                                        Not classified    XY       1972
## 2257                                        Not classified    XY       1971
## 2258                                        Not classified    XY       1970
## 2259                                        Not classified    XY       1969
## 2260                                        Not classified    XY       1968
## 2261                                        Not classified    XY       1967
## 2262                                        Not classified    XY       1966
## 2263                                        Not classified    XY       1965
## 2264                                        Not classified    XY       1964
## 2265                                        Not classified    XY       1963
## 2266                                        Not classified    XY       1962
## 2267                                        Not classified    XY       1961
## 2268                                        Not classified    XY       1960
## 2269                                          OECD members    OE   OED 2022
## 2270                                          OECD members    OE   OED 2021
## 2271                                          OECD members    OE   OED 2020
## 2272                                          OECD members    OE   OED 2019
## 2273                                          OECD members    OE   OED 2018
## 2274                                          OECD members    OE   OED 2017
## 2275                                          OECD members    OE   OED 2016
## 2276                                          OECD members    OE   OED 2015
## 2277                                          OECD members    OE   OED 2014
## 2278                                          OECD members    OE   OED 2013
## 2279                                          OECD members    OE   OED 2012
## 2280                                          OECD members    OE   OED 2011
## 2281                                          OECD members    OE   OED 2010
## 2282                                          OECD members    OE   OED 2009
## 2283                                          OECD members    OE   OED 2008
## 2284                                          OECD members    OE   OED 2007
## 2285                                          OECD members    OE   OED 2006
## 2286                                          OECD members    OE   OED 2005
## 2287                                          OECD members    OE   OED 2004
## 2288                                          OECD members    OE   OED 2003
## 2289                                          OECD members    OE   OED 2002
## 2290                                          OECD members    OE   OED 2001
## 2291                                          OECD members    OE   OED 2000
## 2292                                          OECD members    OE   OED 1999
## 2293                                          OECD members    OE   OED 1998
## 2294                                          OECD members    OE   OED 1997
## 2295                                          OECD members    OE   OED 1996
## 2296                                          OECD members    OE   OED 1995
## 2297                                          OECD members    OE   OED 1994
## 2298                                          OECD members    OE   OED 1993
## 2299                                          OECD members    OE   OED 1992
## 2300                                          OECD members    OE   OED 1991
## 2301                                          OECD members    OE   OED 1990
## 2302                                          OECD members    OE   OED 1989
## 2303                                          OECD members    OE   OED 1988
## 2304                                          OECD members    OE   OED 1987
## 2305                                          OECD members    OE   OED 1986
## 2306                                          OECD members    OE   OED 1985
## 2307                                          OECD members    OE   OED 1984
## 2308                                          OECD members    OE   OED 1983
## 2309                                          OECD members    OE   OED 1982
## 2310                                          OECD members    OE   OED 1981
## 2311                                          OECD members    OE   OED 1980
## 2312                                          OECD members    OE   OED 1979
## 2313                                          OECD members    OE   OED 1978
## 2314                                          OECD members    OE   OED 1977
## 2315                                          OECD members    OE   OED 1976
## 2316                                          OECD members    OE   OED 1975
## 2317                                          OECD members    OE   OED 1974
## 2318                                          OECD members    OE   OED 1973
## 2319                                          OECD members    OE   OED 1972
## 2320                                          OECD members    OE   OED 1971
## 2321                                          OECD members    OE   OED 1970
## 2322                                          OECD members    OE   OED 1969
## 2323                                          OECD members    OE   OED 1968
## 2324                                          OECD members    OE   OED 1967
## 2325                                          OECD members    OE   OED 1966
## 2326                                          OECD members    OE   OED 1965
## 2327                                          OECD members    OE   OED 1964
## 2328                                          OECD members    OE   OED 1963
## 2329                                          OECD members    OE   OED 1962
## 2330                                          OECD members    OE   OED 1961
## 2331                                          OECD members    OE   OED 1960
## 2332                                    Other small states    S4   OSS 2022
## 2333                                    Other small states    S4   OSS 2021
## 2334                                    Other small states    S4   OSS 2020
## 2335                                    Other small states    S4   OSS 2019
## 2336                                    Other small states    S4   OSS 2018
## 2337                                    Other small states    S4   OSS 2017
## 2338                                    Other small states    S4   OSS 2016
## 2339                                    Other small states    S4   OSS 2015
## 2340                                    Other small states    S4   OSS 2014
## 2341                                    Other small states    S4   OSS 2013
## 2342                                    Other small states    S4   OSS 2012
## 2343                                    Other small states    S4   OSS 2011
## 2344                                    Other small states    S4   OSS 2010
## 2345                                    Other small states    S4   OSS 2009
## 2346                                    Other small states    S4   OSS 2008
## 2347                                    Other small states    S4   OSS 2007
## 2348                                    Other small states    S4   OSS 2006
## 2349                                    Other small states    S4   OSS 2005
## 2350                                    Other small states    S4   OSS 2004
## 2351                                    Other small states    S4   OSS 2003
## 2352                                    Other small states    S4   OSS 2002
## 2353                                    Other small states    S4   OSS 2001
## 2354                                    Other small states    S4   OSS 2000
## 2355                                    Other small states    S4   OSS 1999
## 2356                                    Other small states    S4   OSS 1998
## 2357                                    Other small states    S4   OSS 1997
## 2358                                    Other small states    S4   OSS 1996
## 2359                                    Other small states    S4   OSS 1995
## 2360                                    Other small states    S4   OSS 1994
## 2361                                    Other small states    S4   OSS 1993
## 2362                                    Other small states    S4   OSS 1992
## 2363                                    Other small states    S4   OSS 1991
## 2364                                    Other small states    S4   OSS 1990
## 2365                                    Other small states    S4   OSS 1989
## 2366                                    Other small states    S4   OSS 1988
## 2367                                    Other small states    S4   OSS 1987
## 2368                                    Other small states    S4   OSS 1986
## 2369                                    Other small states    S4   OSS 1985
## 2370                                    Other small states    S4   OSS 1984
## 2371                                    Other small states    S4   OSS 1983
## 2372                                    Other small states    S4   OSS 1982
## 2373                                    Other small states    S4   OSS 1981
## 2374                                    Other small states    S4   OSS 1980
## 2375                                    Other small states    S4   OSS 1979
## 2376                                    Other small states    S4   OSS 1978
## 2377                                    Other small states    S4   OSS 1977
## 2378                                    Other small states    S4   OSS 1976
## 2379                                    Other small states    S4   OSS 1975
## 2380                                    Other small states    S4   OSS 1974
## 2381                                    Other small states    S4   OSS 1973
## 2382                                    Other small states    S4   OSS 1972
## 2383                                    Other small states    S4   OSS 1971
## 2384                                    Other small states    S4   OSS 1970
## 2385                                    Other small states    S4   OSS 1969
## 2386                                    Other small states    S4   OSS 1968
## 2387                                    Other small states    S4   OSS 1967
## 2388                                    Other small states    S4   OSS 1966
## 2389                                    Other small states    S4   OSS 1965
## 2390                                    Other small states    S4   OSS 1964
## 2391                                    Other small states    S4   OSS 1963
## 2392                                    Other small states    S4   OSS 1962
## 2393                                    Other small states    S4   OSS 1961
## 2394                                    Other small states    S4   OSS 1960
## 2395                           Pacific island small states    S2   PSS 2022
## 2396                           Pacific island small states    S2   PSS 2021
## 2397                           Pacific island small states    S2   PSS 2020
## 2398                           Pacific island small states    S2   PSS 2019
## 2399                           Pacific island small states    S2   PSS 2018
## 2400                           Pacific island small states    S2   PSS 2017
## 2401                           Pacific island small states    S2   PSS 2016
## 2402                           Pacific island small states    S2   PSS 2015
## 2403                           Pacific island small states    S2   PSS 2014
## 2404                           Pacific island small states    S2   PSS 2013
## 2405                           Pacific island small states    S2   PSS 2012
## 2406                           Pacific island small states    S2   PSS 2011
## 2407                           Pacific island small states    S2   PSS 2010
## 2408                           Pacific island small states    S2   PSS 2009
## 2409                           Pacific island small states    S2   PSS 2008
## 2410                           Pacific island small states    S2   PSS 2007
## 2411                           Pacific island small states    S2   PSS 2006
## 2412                           Pacific island small states    S2   PSS 2005
## 2413                           Pacific island small states    S2   PSS 2004
## 2414                           Pacific island small states    S2   PSS 2003
## 2415                           Pacific island small states    S2   PSS 2002
## 2416                           Pacific island small states    S2   PSS 2001
## 2417                           Pacific island small states    S2   PSS 2000
## 2418                           Pacific island small states    S2   PSS 1999
## 2419                           Pacific island small states    S2   PSS 1998
## 2420                           Pacific island small states    S2   PSS 1997
## 2421                           Pacific island small states    S2   PSS 1996
## 2422                           Pacific island small states    S2   PSS 1995
## 2423                           Pacific island small states    S2   PSS 1994
## 2424                           Pacific island small states    S2   PSS 1993
## 2425                           Pacific island small states    S2   PSS 1992
## 2426                           Pacific island small states    S2   PSS 1991
## 2427                           Pacific island small states    S2   PSS 1990
## 2428                           Pacific island small states    S2   PSS 1989
## 2429                           Pacific island small states    S2   PSS 1988
## 2430                           Pacific island small states    S2   PSS 1987
## 2431                           Pacific island small states    S2   PSS 1986
## 2432                           Pacific island small states    S2   PSS 1985
## 2433                           Pacific island small states    S2   PSS 1984
## 2434                           Pacific island small states    S2   PSS 1983
## 2435                           Pacific island small states    S2   PSS 1982
## 2436                           Pacific island small states    S2   PSS 1981
## 2437                           Pacific island small states    S2   PSS 1980
## 2438                           Pacific island small states    S2   PSS 1979
## 2439                           Pacific island small states    S2   PSS 1978
## 2440                           Pacific island small states    S2   PSS 1977
## 2441                           Pacific island small states    S2   PSS 1976
## 2442                           Pacific island small states    S2   PSS 1975
## 2443                           Pacific island small states    S2   PSS 1974
## 2444                           Pacific island small states    S2   PSS 1973
## 2445                           Pacific island small states    S2   PSS 1972
## 2446                           Pacific island small states    S2   PSS 1971
## 2447                           Pacific island small states    S2   PSS 1970
## 2448                           Pacific island small states    S2   PSS 1969
## 2449                           Pacific island small states    S2   PSS 1968
## 2450                           Pacific island small states    S2   PSS 1967
## 2451                           Pacific island small states    S2   PSS 1966
## 2452                           Pacific island small states    S2   PSS 1965
## 2453                           Pacific island small states    S2   PSS 1964
## 2454                           Pacific island small states    S2   PSS 1963
## 2455                           Pacific island small states    S2   PSS 1962
## 2456                           Pacific island small states    S2   PSS 1961
## 2457                           Pacific island small states    S2   PSS 1960
## 2458                             Post-demographic dividend    V4   PST 2022
## 2459                             Post-demographic dividend    V4   PST 2021
## 2460                             Post-demographic dividend    V4   PST 2020
## 2461                             Post-demographic dividend    V4   PST 2019
## 2462                             Post-demographic dividend    V4   PST 2018
## 2463                             Post-demographic dividend    V4   PST 2017
## 2464                             Post-demographic dividend    V4   PST 2016
## 2465                             Post-demographic dividend    V4   PST 2015
## 2466                             Post-demographic dividend    V4   PST 2014
## 2467                             Post-demographic dividend    V4   PST 2013
## 2468                             Post-demographic dividend    V4   PST 2012
## 2469                             Post-demographic dividend    V4   PST 2011
## 2470                             Post-demographic dividend    V4   PST 2010
## 2471                             Post-demographic dividend    V4   PST 2009
## 2472                             Post-demographic dividend    V4   PST 2008
## 2473                             Post-demographic dividend    V4   PST 2007
## 2474                             Post-demographic dividend    V4   PST 2006
## 2475                             Post-demographic dividend    V4   PST 2005
## 2476                             Post-demographic dividend    V4   PST 2004
## 2477                             Post-demographic dividend    V4   PST 2003
## 2478                             Post-demographic dividend    V4   PST 2002
## 2479                             Post-demographic dividend    V4   PST 2001
## 2480                             Post-demographic dividend    V4   PST 2000
## 2481                             Post-demographic dividend    V4   PST 1999
## 2482                             Post-demographic dividend    V4   PST 1998
## 2483                             Post-demographic dividend    V4   PST 1997
## 2484                             Post-demographic dividend    V4   PST 1996
## 2485                             Post-demographic dividend    V4   PST 1995
## 2486                             Post-demographic dividend    V4   PST 1994
## 2487                             Post-demographic dividend    V4   PST 1993
## 2488                             Post-demographic dividend    V4   PST 1992
## 2489                             Post-demographic dividend    V4   PST 1991
## 2490                             Post-demographic dividend    V4   PST 1990
## 2491                             Post-demographic dividend    V4   PST 1989
## 2492                             Post-demographic dividend    V4   PST 1988
## 2493                             Post-demographic dividend    V4   PST 1987
## 2494                             Post-demographic dividend    V4   PST 1986
## 2495                             Post-demographic dividend    V4   PST 1985
## 2496                             Post-demographic dividend    V4   PST 1984
## 2497                             Post-demographic dividend    V4   PST 1983
## 2498                             Post-demographic dividend    V4   PST 1982
## 2499                             Post-demographic dividend    V4   PST 1981
## 2500                             Post-demographic dividend    V4   PST 1980
## 2501                             Post-demographic dividend    V4   PST 1979
## 2502                             Post-demographic dividend    V4   PST 1978
## 2503                             Post-demographic dividend    V4   PST 1977
## 2504                             Post-demographic dividend    V4   PST 1976
## 2505                             Post-demographic dividend    V4   PST 1975
## 2506                             Post-demographic dividend    V4   PST 1974
## 2507                             Post-demographic dividend    V4   PST 1973
## 2508                             Post-demographic dividend    V4   PST 1972
## 2509                             Post-demographic dividend    V4   PST 1971
## 2510                             Post-demographic dividend    V4   PST 1970
## 2511                             Post-demographic dividend    V4   PST 1969
## 2512                             Post-demographic dividend    V4   PST 1968
## 2513                             Post-demographic dividend    V4   PST 1967
## 2514                             Post-demographic dividend    V4   PST 1966
## 2515                             Post-demographic dividend    V4   PST 1965
## 2516                             Post-demographic dividend    V4   PST 1964
## 2517                             Post-demographic dividend    V4   PST 1963
## 2518                             Post-demographic dividend    V4   PST 1962
## 2519                             Post-demographic dividend    V4   PST 1961
## 2520                             Post-demographic dividend    V4   PST 1960
## 2521                              Pre-demographic dividend    V1   PRE 2022
## 2522                              Pre-demographic dividend    V1   PRE 2021
## 2523                              Pre-demographic dividend    V1   PRE 2020
## 2524                              Pre-demographic dividend    V1   PRE 2019
## 2525                              Pre-demographic dividend    V1   PRE 2018
## 2526                              Pre-demographic dividend    V1   PRE 2017
## 2527                              Pre-demographic dividend    V1   PRE 2016
## 2528                              Pre-demographic dividend    V1   PRE 2015
## 2529                              Pre-demographic dividend    V1   PRE 2014
## 2530                              Pre-demographic dividend    V1   PRE 2013
## 2531                              Pre-demographic dividend    V1   PRE 2012
## 2532                              Pre-demographic dividend    V1   PRE 2011
## 2533                              Pre-demographic dividend    V1   PRE 2010
## 2534                              Pre-demographic dividend    V1   PRE 2009
## 2535                              Pre-demographic dividend    V1   PRE 2008
## 2536                              Pre-demographic dividend    V1   PRE 2007
## 2537                              Pre-demographic dividend    V1   PRE 2006
## 2538                              Pre-demographic dividend    V1   PRE 2005
## 2539                              Pre-demographic dividend    V1   PRE 2004
## 2540                              Pre-demographic dividend    V1   PRE 2003
## 2541                              Pre-demographic dividend    V1   PRE 2002
## 2542                              Pre-demographic dividend    V1   PRE 2001
## 2543                              Pre-demographic dividend    V1   PRE 2000
## 2544                              Pre-demographic dividend    V1   PRE 1999
## 2545                              Pre-demographic dividend    V1   PRE 1998
## 2546                              Pre-demographic dividend    V1   PRE 1997
## 2547                              Pre-demographic dividend    V1   PRE 1996
## 2548                              Pre-demographic dividend    V1   PRE 1995
## 2549                              Pre-demographic dividend    V1   PRE 1994
## 2550                              Pre-demographic dividend    V1   PRE 1993
## 2551                              Pre-demographic dividend    V1   PRE 1992
## 2552                              Pre-demographic dividend    V1   PRE 1991
## 2553                              Pre-demographic dividend    V1   PRE 1990
## 2554                              Pre-demographic dividend    V1   PRE 1989
## 2555                              Pre-demographic dividend    V1   PRE 1988
## 2556                              Pre-demographic dividend    V1   PRE 1987
## 2557                              Pre-demographic dividend    V1   PRE 1986
## 2558                              Pre-demographic dividend    V1   PRE 1985
## 2559                              Pre-demographic dividend    V1   PRE 1984
## 2560                              Pre-demographic dividend    V1   PRE 1983
## 2561                              Pre-demographic dividend    V1   PRE 1982
## 2562                              Pre-demographic dividend    V1   PRE 1981
## 2563                              Pre-demographic dividend    V1   PRE 1980
## 2564                              Pre-demographic dividend    V1   PRE 1979
## 2565                              Pre-demographic dividend    V1   PRE 1978
## 2566                              Pre-demographic dividend    V1   PRE 1977
## 2567                              Pre-demographic dividend    V1   PRE 1976
## 2568                              Pre-demographic dividend    V1   PRE 1975
## 2569                              Pre-demographic dividend    V1   PRE 1974
## 2570                              Pre-demographic dividend    V1   PRE 1973
## 2571                              Pre-demographic dividend    V1   PRE 1972
## 2572                              Pre-demographic dividend    V1   PRE 1971
## 2573                              Pre-demographic dividend    V1   PRE 1970
## 2574                              Pre-demographic dividend    V1   PRE 1969
## 2575                              Pre-demographic dividend    V1   PRE 1968
## 2576                              Pre-demographic dividend    V1   PRE 1967
## 2577                              Pre-demographic dividend    V1   PRE 1966
## 2578                              Pre-demographic dividend    V1   PRE 1965
## 2579                              Pre-demographic dividend    V1   PRE 1964
## 2580                              Pre-demographic dividend    V1   PRE 1963
## 2581                              Pre-demographic dividend    V1   PRE 1962
## 2582                              Pre-demographic dividend    V1   PRE 1961
## 2583                              Pre-demographic dividend    V1   PRE 1960
## 2584                                          Small states    S1   SST 2022
## 2585                                          Small states    S1   SST 2021
## 2586                                          Small states    S1   SST 2020
## 2587                                          Small states    S1   SST 2019
## 2588                                          Small states    S1   SST 2018
## 2589                                          Small states    S1   SST 2017
## 2590                                          Small states    S1   SST 2016
## 2591                                          Small states    S1   SST 2015
## 2592                                          Small states    S1   SST 2014
## 2593                                          Small states    S1   SST 2013
## 2594                                          Small states    S1   SST 2012
## 2595                                          Small states    S1   SST 2011
## 2596                                          Small states    S1   SST 2010
## 2597                                          Small states    S1   SST 2009
## 2598                                          Small states    S1   SST 2008
## 2599                                          Small states    S1   SST 2007
## 2600                                          Small states    S1   SST 2006
## 2601                                          Small states    S1   SST 2005
## 2602                                          Small states    S1   SST 2004
## 2603                                          Small states    S1   SST 2003
## 2604                                          Small states    S1   SST 2002
## 2605                                          Small states    S1   SST 2001
## 2606                                          Small states    S1   SST 2000
## 2607                                          Small states    S1   SST 1999
## 2608                                          Small states    S1   SST 1998
## 2609                                          Small states    S1   SST 1997
## 2610                                          Small states    S1   SST 1996
## 2611                                          Small states    S1   SST 1995
## 2612                                          Small states    S1   SST 1994
## 2613                                          Small states    S1   SST 1993
## 2614                                          Small states    S1   SST 1992
## 2615                                          Small states    S1   SST 1991
## 2616                                          Small states    S1   SST 1990
## 2617                                          Small states    S1   SST 1989
## 2618                                          Small states    S1   SST 1988
## 2619                                          Small states    S1   SST 1987
## 2620                                          Small states    S1   SST 1986
## 2621                                          Small states    S1   SST 1985
## 2622                                          Small states    S1   SST 1984
## 2623                                          Small states    S1   SST 1983
## 2624                                          Small states    S1   SST 1982
## 2625                                          Small states    S1   SST 1981
## 2626                                          Small states    S1   SST 1980
## 2627                                          Small states    S1   SST 1979
## 2628                                          Small states    S1   SST 1978
## 2629                                          Small states    S1   SST 1977
## 2630                                          Small states    S1   SST 1976
## 2631                                          Small states    S1   SST 1975
## 2632                                          Small states    S1   SST 1974
## 2633                                          Small states    S1   SST 1973
## 2634                                          Small states    S1   SST 1972
## 2635                                          Small states    S1   SST 1971
## 2636                                          Small states    S1   SST 1970
## 2637                                          Small states    S1   SST 1969
## 2638                                          Small states    S1   SST 1968
## 2639                                          Small states    S1   SST 1967
## 2640                                          Small states    S1   SST 1966
## 2641                                          Small states    S1   SST 1965
## 2642                                          Small states    S1   SST 1964
## 2643                                          Small states    S1   SST 1963
## 2644                                          Small states    S1   SST 1962
## 2645                                          Small states    S1   SST 1961
## 2646                                          Small states    S1   SST 1960
## 2647                                            South Asia    8S   SAS 2022
## 2648                                            South Asia    8S   SAS 2021
## 2649                                            South Asia    8S   SAS 2020
## 2650                                            South Asia    8S   SAS 2019
## 2651                                            South Asia    8S   SAS 2018
## 2652                                            South Asia    8S   SAS 2017
## 2653                                            South Asia    8S   SAS 2016
## 2654                                            South Asia    8S   SAS 2015
## 2655                                            South Asia    8S   SAS 2014
## 2656                                            South Asia    8S   SAS 2013
## 2657                                            South Asia    8S   SAS 2012
## 2658                                            South Asia    8S   SAS 2011
## 2659                                            South Asia    8S   SAS 2010
## 2660                                            South Asia    8S   SAS 2009
## 2661                                            South Asia    8S   SAS 2008
## 2662                                            South Asia    8S   SAS 2007
## 2663                                            South Asia    8S   SAS 2006
## 2664                                            South Asia    8S   SAS 2005
## 2665                                            South Asia    8S   SAS 2004
## 2666                                            South Asia    8S   SAS 2003
## 2667                                            South Asia    8S   SAS 2002
## 2668                                            South Asia    8S   SAS 2001
## 2669                                            South Asia    8S   SAS 2000
## 2670                                            South Asia    8S   SAS 1999
## 2671                                            South Asia    8S   SAS 1998
## 2672                                            South Asia    8S   SAS 1997
## 2673                                            South Asia    8S   SAS 1996
## 2674                                            South Asia    8S   SAS 1995
## 2675                                            South Asia    8S   SAS 1994
## 2676                                            South Asia    8S   SAS 1993
## 2677                                            South Asia    8S   SAS 1992
## 2678                                            South Asia    8S   SAS 1991
## 2679                                            South Asia    8S   SAS 1990
## 2680                                            South Asia    8S   SAS 1989
## 2681                                            South Asia    8S   SAS 1988
## 2682                                            South Asia    8S   SAS 1987
## 2683                                            South Asia    8S   SAS 1986
## 2684                                            South Asia    8S   SAS 1985
## 2685                                            South Asia    8S   SAS 1984
## 2686                                            South Asia    8S   SAS 1983
## 2687                                            South Asia    8S   SAS 1982
## 2688                                            South Asia    8S   SAS 1981
## 2689                                            South Asia    8S   SAS 1980
## 2690                                            South Asia    8S   SAS 1979
## 2691                                            South Asia    8S   SAS 1978
## 2692                                            South Asia    8S   SAS 1977
## 2693                                            South Asia    8S   SAS 1976
## 2694                                            South Asia    8S   SAS 1975
## 2695                                            South Asia    8S   SAS 1974
## 2696                                            South Asia    8S   SAS 1973
## 2697                                            South Asia    8S   SAS 1972
## 2698                                            South Asia    8S   SAS 1971
## 2699                                            South Asia    8S   SAS 1970
## 2700                                            South Asia    8S   SAS 1969
## 2701                                            South Asia    8S   SAS 1968
## 2702                                            South Asia    8S   SAS 1967
## 2703                                            South Asia    8S   SAS 1966
## 2704                                            South Asia    8S   SAS 1965
## 2705                                            South Asia    8S   SAS 1964
## 2706                                            South Asia    8S   SAS 1963
## 2707                                            South Asia    8S   SAS 1962
## 2708                                            South Asia    8S   SAS 1961
## 2709                                            South Asia    8S   SAS 1960
## 2710                               South Asia (IDA & IBRD)    T5   TSA 2022
## 2711                               South Asia (IDA & IBRD)    T5   TSA 2021
## 2712                               South Asia (IDA & IBRD)    T5   TSA 2020
## 2713                               South Asia (IDA & IBRD)    T5   TSA 2019
## 2714                               South Asia (IDA & IBRD)    T5   TSA 2018
## 2715                               South Asia (IDA & IBRD)    T5   TSA 2017
## 2716                               South Asia (IDA & IBRD)    T5   TSA 2016
## 2717                               South Asia (IDA & IBRD)    T5   TSA 2015
## 2718                               South Asia (IDA & IBRD)    T5   TSA 2014
## 2719                               South Asia (IDA & IBRD)    T5   TSA 2013
## 2720                               South Asia (IDA & IBRD)    T5   TSA 2012
## 2721                               South Asia (IDA & IBRD)    T5   TSA 2011
## 2722                               South Asia (IDA & IBRD)    T5   TSA 2010
## 2723                               South Asia (IDA & IBRD)    T5   TSA 2009
## 2724                               South Asia (IDA & IBRD)    T5   TSA 2008
## 2725                               South Asia (IDA & IBRD)    T5   TSA 2007
## 2726                               South Asia (IDA & IBRD)    T5   TSA 2006
## 2727                               South Asia (IDA & IBRD)    T5   TSA 2005
## 2728                               South Asia (IDA & IBRD)    T5   TSA 2004
## 2729                               South Asia (IDA & IBRD)    T5   TSA 2003
## 2730                               South Asia (IDA & IBRD)    T5   TSA 2002
## 2731                               South Asia (IDA & IBRD)    T5   TSA 2001
## 2732                               South Asia (IDA & IBRD)    T5   TSA 2000
## 2733                               South Asia (IDA & IBRD)    T5   TSA 1999
## 2734                               South Asia (IDA & IBRD)    T5   TSA 1998
## 2735                               South Asia (IDA & IBRD)    T5   TSA 1997
## 2736                               South Asia (IDA & IBRD)    T5   TSA 1996
## 2737                               South Asia (IDA & IBRD)    T5   TSA 1995
## 2738                               South Asia (IDA & IBRD)    T5   TSA 1994
## 2739                               South Asia (IDA & IBRD)    T5   TSA 1993
## 2740                               South Asia (IDA & IBRD)    T5   TSA 1992
## 2741                               South Asia (IDA & IBRD)    T5   TSA 1991
## 2742                               South Asia (IDA & IBRD)    T5   TSA 1990
## 2743                               South Asia (IDA & IBRD)    T5   TSA 1989
## 2744                               South Asia (IDA & IBRD)    T5   TSA 1988
## 2745                               South Asia (IDA & IBRD)    T5   TSA 1987
## 2746                               South Asia (IDA & IBRD)    T5   TSA 1986
## 2747                               South Asia (IDA & IBRD)    T5   TSA 1985
## 2748                               South Asia (IDA & IBRD)    T5   TSA 1984
## 2749                               South Asia (IDA & IBRD)    T5   TSA 1983
## 2750                               South Asia (IDA & IBRD)    T5   TSA 1982
## 2751                               South Asia (IDA & IBRD)    T5   TSA 1981
## 2752                               South Asia (IDA & IBRD)    T5   TSA 1980
## 2753                               South Asia (IDA & IBRD)    T5   TSA 1979
## 2754                               South Asia (IDA & IBRD)    T5   TSA 1978
## 2755                               South Asia (IDA & IBRD)    T5   TSA 1977
## 2756                               South Asia (IDA & IBRD)    T5   TSA 1976
## 2757                               South Asia (IDA & IBRD)    T5   TSA 1975
## 2758                               South Asia (IDA & IBRD)    T5   TSA 1974
## 2759                               South Asia (IDA & IBRD)    T5   TSA 1973
## 2760                               South Asia (IDA & IBRD)    T5   TSA 1972
## 2761                               South Asia (IDA & IBRD)    T5   TSA 1971
## 2762                               South Asia (IDA & IBRD)    T5   TSA 1970
## 2763                               South Asia (IDA & IBRD)    T5   TSA 1969
## 2764                               South Asia (IDA & IBRD)    T5   TSA 1968
## 2765                               South Asia (IDA & IBRD)    T5   TSA 1967
## 2766                               South Asia (IDA & IBRD)    T5   TSA 1966
## 2767                               South Asia (IDA & IBRD)    T5   TSA 1965
## 2768                               South Asia (IDA & IBRD)    T5   TSA 1964
## 2769                               South Asia (IDA & IBRD)    T5   TSA 1963
## 2770                               South Asia (IDA & IBRD)    T5   TSA 1962
## 2771                               South Asia (IDA & IBRD)    T5   TSA 1961
## 2772                               South Asia (IDA & IBRD)    T5   TSA 1960
## 2773                                    Sub-Saharan Africa    ZG   SSF 2022
## 2774                                    Sub-Saharan Africa    ZG   SSF 2021
## 2775                                    Sub-Saharan Africa    ZG   SSF 2020
## 2776                                    Sub-Saharan Africa    ZG   SSF 2019
## 2777                                    Sub-Saharan Africa    ZG   SSF 2018
## 2778                                    Sub-Saharan Africa    ZG   SSF 2017
## 2779                                    Sub-Saharan Africa    ZG   SSF 2016
## 2780                                    Sub-Saharan Africa    ZG   SSF 2015
## 2781                                    Sub-Saharan Africa    ZG   SSF 2014
## 2782                                    Sub-Saharan Africa    ZG   SSF 2013
## 2783                                    Sub-Saharan Africa    ZG   SSF 2012
## 2784                                    Sub-Saharan Africa    ZG   SSF 2011
## 2785                                    Sub-Saharan Africa    ZG   SSF 2010
## 2786                                    Sub-Saharan Africa    ZG   SSF 2009
## 2787                                    Sub-Saharan Africa    ZG   SSF 2008
## 2788                                    Sub-Saharan Africa    ZG   SSF 2007
## 2789                                    Sub-Saharan Africa    ZG   SSF 2006
## 2790                                    Sub-Saharan Africa    ZG   SSF 2005
## 2791                                    Sub-Saharan Africa    ZG   SSF 2004
## 2792                                    Sub-Saharan Africa    ZG   SSF 2003
## 2793                                    Sub-Saharan Africa    ZG   SSF 2002
## 2794                                    Sub-Saharan Africa    ZG   SSF 2001
## 2795                                    Sub-Saharan Africa    ZG   SSF 2000
## 2796                                    Sub-Saharan Africa    ZG   SSF 1999
## 2797                                    Sub-Saharan Africa    ZG   SSF 1998
## 2798                                    Sub-Saharan Africa    ZG   SSF 1997
## 2799                                    Sub-Saharan Africa    ZG   SSF 1996
## 2800                                    Sub-Saharan Africa    ZG   SSF 1995
## 2801                                    Sub-Saharan Africa    ZG   SSF 1994
## 2802                                    Sub-Saharan Africa    ZG   SSF 1993
## 2803                                    Sub-Saharan Africa    ZG   SSF 1992
## 2804                                    Sub-Saharan Africa    ZG   SSF 1991
## 2805                                    Sub-Saharan Africa    ZG   SSF 1990
## 2806                                    Sub-Saharan Africa    ZG   SSF 1989
## 2807                                    Sub-Saharan Africa    ZG   SSF 1988
## 2808                                    Sub-Saharan Africa    ZG   SSF 1987
## 2809                                    Sub-Saharan Africa    ZG   SSF 1986
## 2810                                    Sub-Saharan Africa    ZG   SSF 1985
## 2811                                    Sub-Saharan Africa    ZG   SSF 1984
## 2812                                    Sub-Saharan Africa    ZG   SSF 1983
## 2813                                    Sub-Saharan Africa    ZG   SSF 1982
## 2814                                    Sub-Saharan Africa    ZG   SSF 1981
## 2815                                    Sub-Saharan Africa    ZG   SSF 1980
## 2816                                    Sub-Saharan Africa    ZG   SSF 1979
## 2817                                    Sub-Saharan Africa    ZG   SSF 1978
## 2818                                    Sub-Saharan Africa    ZG   SSF 1977
## 2819                                    Sub-Saharan Africa    ZG   SSF 1976
## 2820                                    Sub-Saharan Africa    ZG   SSF 1975
## 2821                                    Sub-Saharan Africa    ZG   SSF 1974
## 2822                                    Sub-Saharan Africa    ZG   SSF 1973
## 2823                                    Sub-Saharan Africa    ZG   SSF 1972
## 2824                                    Sub-Saharan Africa    ZG   SSF 1971
## 2825                                    Sub-Saharan Africa    ZG   SSF 1970
## 2826                                    Sub-Saharan Africa    ZG   SSF 1969
## 2827                                    Sub-Saharan Africa    ZG   SSF 1968
## 2828                                    Sub-Saharan Africa    ZG   SSF 1967
## 2829                                    Sub-Saharan Africa    ZG   SSF 1966
## 2830                                    Sub-Saharan Africa    ZG   SSF 1965
## 2831                                    Sub-Saharan Africa    ZG   SSF 1964
## 2832                                    Sub-Saharan Africa    ZG   SSF 1963
## 2833                                    Sub-Saharan Africa    ZG   SSF 1962
## 2834                                    Sub-Saharan Africa    ZG   SSF 1961
## 2835                                    Sub-Saharan Africa    ZG   SSF 1960
## 2836            Sub-Saharan Africa (excluding high income)    ZF   SSA 2022
## 2837            Sub-Saharan Africa (excluding high income)    ZF   SSA 2021
## 2838            Sub-Saharan Africa (excluding high income)    ZF   SSA 2020
## 2839            Sub-Saharan Africa (excluding high income)    ZF   SSA 2019
## 2840            Sub-Saharan Africa (excluding high income)    ZF   SSA 2018
## 2841            Sub-Saharan Africa (excluding high income)    ZF   SSA 2017
## 2842            Sub-Saharan Africa (excluding high income)    ZF   SSA 2016
## 2843            Sub-Saharan Africa (excluding high income)    ZF   SSA 2015
## 2844            Sub-Saharan Africa (excluding high income)    ZF   SSA 2014
## 2845            Sub-Saharan Africa (excluding high income)    ZF   SSA 2013
## 2846            Sub-Saharan Africa (excluding high income)    ZF   SSA 2012
## 2847            Sub-Saharan Africa (excluding high income)    ZF   SSA 2011
## 2848            Sub-Saharan Africa (excluding high income)    ZF   SSA 2010
## 2849            Sub-Saharan Africa (excluding high income)    ZF   SSA 2009
## 2850            Sub-Saharan Africa (excluding high income)    ZF   SSA 2008
## 2851            Sub-Saharan Africa (excluding high income)    ZF   SSA 2007
## 2852            Sub-Saharan Africa (excluding high income)    ZF   SSA 2006
## 2853            Sub-Saharan Africa (excluding high income)    ZF   SSA 2005
## 2854            Sub-Saharan Africa (excluding high income)    ZF   SSA 2004
## 2855            Sub-Saharan Africa (excluding high income)    ZF   SSA 2003
## 2856            Sub-Saharan Africa (excluding high income)    ZF   SSA 2002
## 2857            Sub-Saharan Africa (excluding high income)    ZF   SSA 2001
## 2858            Sub-Saharan Africa (excluding high income)    ZF   SSA 2000
## 2859            Sub-Saharan Africa (excluding high income)    ZF   SSA 1999
## 2860            Sub-Saharan Africa (excluding high income)    ZF   SSA 1998
## 2861            Sub-Saharan Africa (excluding high income)    ZF   SSA 1997
## 2862            Sub-Saharan Africa (excluding high income)    ZF   SSA 1996
## 2863            Sub-Saharan Africa (excluding high income)    ZF   SSA 1995
## 2864            Sub-Saharan Africa (excluding high income)    ZF   SSA 1994
## 2865            Sub-Saharan Africa (excluding high income)    ZF   SSA 1993
## 2866            Sub-Saharan Africa (excluding high income)    ZF   SSA 1992
## 2867            Sub-Saharan Africa (excluding high income)    ZF   SSA 1991
## 2868            Sub-Saharan Africa (excluding high income)    ZF   SSA 1990
## 2869            Sub-Saharan Africa (excluding high income)    ZF   SSA 1989
## 2870            Sub-Saharan Africa (excluding high income)    ZF   SSA 1988
## 2871            Sub-Saharan Africa (excluding high income)    ZF   SSA 1987
## 2872            Sub-Saharan Africa (excluding high income)    ZF   SSA 1986
## 2873            Sub-Saharan Africa (excluding high income)    ZF   SSA 1985
## 2874            Sub-Saharan Africa (excluding high income)    ZF   SSA 1984
## 2875            Sub-Saharan Africa (excluding high income)    ZF   SSA 1983
## 2876            Sub-Saharan Africa (excluding high income)    ZF   SSA 1982
## 2877            Sub-Saharan Africa (excluding high income)    ZF   SSA 1981
## 2878            Sub-Saharan Africa (excluding high income)    ZF   SSA 1980
## 2879            Sub-Saharan Africa (excluding high income)    ZF   SSA 1979
## 2880            Sub-Saharan Africa (excluding high income)    ZF   SSA 1978
## 2881            Sub-Saharan Africa (excluding high income)    ZF   SSA 1977
## 2882            Sub-Saharan Africa (excluding high income)    ZF   SSA 1976
## 2883            Sub-Saharan Africa (excluding high income)    ZF   SSA 1975
## 2884            Sub-Saharan Africa (excluding high income)    ZF   SSA 1974
## 2885            Sub-Saharan Africa (excluding high income)    ZF   SSA 1973
## 2886            Sub-Saharan Africa (excluding high income)    ZF   SSA 1972
## 2887            Sub-Saharan Africa (excluding high income)    ZF   SSA 1971
## 2888            Sub-Saharan Africa (excluding high income)    ZF   SSA 1970
## 2889            Sub-Saharan Africa (excluding high income)    ZF   SSA 1969
## 2890            Sub-Saharan Africa (excluding high income)    ZF   SSA 1968
## 2891            Sub-Saharan Africa (excluding high income)    ZF   SSA 1967
## 2892            Sub-Saharan Africa (excluding high income)    ZF   SSA 1966
## 2893            Sub-Saharan Africa (excluding high income)    ZF   SSA 1965
## 2894            Sub-Saharan Africa (excluding high income)    ZF   SSA 1964
## 2895            Sub-Saharan Africa (excluding high income)    ZF   SSA 1963
## 2896            Sub-Saharan Africa (excluding high income)    ZF   SSA 1962
## 2897            Sub-Saharan Africa (excluding high income)    ZF   SSA 1961
## 2898            Sub-Saharan Africa (excluding high income)    ZF   SSA 1960
## 2899             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2022
## 2900             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2021
## 2901             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2020
## 2902             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2019
## 2903             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2018
## 2904             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2017
## 2905             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2016
## 2906             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2015
## 2907             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2014
## 2908             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2013
## 2909             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2012
## 2910             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2011
## 2911             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2010
## 2912             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2009
## 2913             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2008
## 2914             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2007
## 2915             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2006
## 2916             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2005
## 2917             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2004
## 2918             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2003
## 2919             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2002
## 2920             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2001
## 2921             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2000
## 2922             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1999
## 2923             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1998
## 2924             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1997
## 2925             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1996
## 2926             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1995
## 2927             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1994
## 2928             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1993
## 2929             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1992
## 2930             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1991
## 2931             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1990
## 2932             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1989
## 2933             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1988
## 2934             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1987
## 2935             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1986
## 2936             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1985
## 2937             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1984
## 2938             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1983
## 2939             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1982
## 2940             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1981
## 2941             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1980
## 2942             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1979
## 2943             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1978
## 2944             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1977
## 2945             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1976
## 2946             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1975
## 2947             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1974
## 2948             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1973
## 2949             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1972
## 2950             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1971
## 2951             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1970
## 2952             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1969
## 2953             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1968
## 2954             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1967
## 2955             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1966
## 2956             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1965
## 2957             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1964
## 2958             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1963
## 2959             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1962
## 2960             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1961
## 2961             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1960
## 2962                                   Upper middle income    XT       2022
## 2963                                   Upper middle income    XT       2021
## 2964                                   Upper middle income    XT       2020
## 2965                                   Upper middle income    XT       2019
## 2966                                   Upper middle income    XT       2018
## 2967                                   Upper middle income    XT       2017
## 2968                                   Upper middle income    XT       2016
## 2969                                   Upper middle income    XT       2015
## 2970                                   Upper middle income    XT       2014
## 2971                                   Upper middle income    XT       2013
## 2972                                   Upper middle income    XT       2012
## 2973                                   Upper middle income    XT       2011
## 2974                                   Upper middle income    XT       2010
## 2975                                   Upper middle income    XT       2009
## 2976                                   Upper middle income    XT       2008
## 2977                                   Upper middle income    XT       2007
## 2978                                   Upper middle income    XT       2006
## 2979                                   Upper middle income    XT       2005
## 2980                                   Upper middle income    XT       2004
## 2981                                   Upper middle income    XT       2003
## 2982                                   Upper middle income    XT       2002
## 2983                                   Upper middle income    XT       2001
## 2984                                   Upper middle income    XT       2000
## 2985                                   Upper middle income    XT       1999
## 2986                                   Upper middle income    XT       1998
## 2987                                   Upper middle income    XT       1997
## 2988                                   Upper middle income    XT       1996
## 2989                                   Upper middle income    XT       1995
## 2990                                   Upper middle income    XT       1994
## 2991                                   Upper middle income    XT       1993
## 2992                                   Upper middle income    XT       1992
## 2993                                   Upper middle income    XT       1991
## 2994                                   Upper middle income    XT       1990
## 2995                                   Upper middle income    XT       1989
## 2996                                   Upper middle income    XT       1988
## 2997                                   Upper middle income    XT       1987
## 2998                                   Upper middle income    XT       1986
## 2999                                   Upper middle income    XT       1985
## 3000                                   Upper middle income    XT       1984
## 3001                                   Upper middle income    XT       1983
## 3002                                   Upper middle income    XT       1982
## 3003                                   Upper middle income    XT       1981
## 3004                                   Upper middle income    XT       1980
## 3005                                   Upper middle income    XT       1979
## 3006                                   Upper middle income    XT       1978
## 3007                                   Upper middle income    XT       1977
## 3008                                   Upper middle income    XT       1976
## 3009                                   Upper middle income    XT       1975
## 3010                                   Upper middle income    XT       1974
## 3011                                   Upper middle income    XT       1973
## 3012                                   Upper middle income    XT       1972
## 3013                                   Upper middle income    XT       1971
## 3014                                   Upper middle income    XT       1970
## 3015                                   Upper middle income    XT       1969
## 3016                                   Upper middle income    XT       1968
## 3017                                   Upper middle income    XT       1967
## 3018                                   Upper middle income    XT       1966
## 3019                                   Upper middle income    XT       1965
## 3020                                   Upper middle income    XT       1964
## 3021                                   Upper middle income    XT       1963
## 3022                                   Upper middle income    XT       1962
## 3023                                   Upper middle income    XT       1961
## 3024                                   Upper middle income    XT       1960
## 3025                                                 World    1W   WLD 2022
## 3026                                                 World    1W   WLD 2021
## 3027                                                 World    1W   WLD 2020
## 3028                                                 World    1W   WLD 2019
## 3029                                                 World    1W   WLD 2018
## 3030                                                 World    1W   WLD 2017
## 3031                                                 World    1W   WLD 2016
## 3032                                                 World    1W   WLD 2015
## 3033                                                 World    1W   WLD 2014
## 3034                                                 World    1W   WLD 2013
## 3035                                                 World    1W   WLD 2012
## 3036                                                 World    1W   WLD 2011
## 3037                                                 World    1W   WLD 2010
## 3038                                                 World    1W   WLD 2009
## 3039                                                 World    1W   WLD 2008
## 3040                                                 World    1W   WLD 2007
## 3041                                                 World    1W   WLD 2006
## 3042                                                 World    1W   WLD 2005
## 3043                                                 World    1W   WLD 2004
## 3044                                                 World    1W   WLD 2003
## 3045                                                 World    1W   WLD 2002
## 3046                                                 World    1W   WLD 2001
## 3047                                                 World    1W   WLD 2000
## 3048                                                 World    1W   WLD 1999
## 3049                                                 World    1W   WLD 1998
## 3050                                                 World    1W   WLD 1997
## 3051                                                 World    1W   WLD 1996
## 3052                                                 World    1W   WLD 1995
## 3053                                                 World    1W   WLD 1994
## 3054                                                 World    1W   WLD 1993
## 3055                                                 World    1W   WLD 1992
## 3056                                                 World    1W   WLD 1991
## 3057                                                 World    1W   WLD 1990
## 3058                                                 World    1W   WLD 1989
## 3059                                                 World    1W   WLD 1988
## 3060                                                 World    1W   WLD 1987
## 3061                                                 World    1W   WLD 1986
## 3062                                                 World    1W   WLD 1985
## 3063                                                 World    1W   WLD 1984
## 3064                                                 World    1W   WLD 1983
## 3065                                                 World    1W   WLD 1982
## 3066                                                 World    1W   WLD 1981
## 3067                                                 World    1W   WLD 1980
## 3068                                                 World    1W   WLD 1979
## 3069                                                 World    1W   WLD 1978
## 3070                                                 World    1W   WLD 1977
## 3071                                                 World    1W   WLD 1976
## 3072                                                 World    1W   WLD 1975
## 3073                                                 World    1W   WLD 1974
## 3074                                                 World    1W   WLD 1973
## 3075                                                 World    1W   WLD 1972
## 3076                                                 World    1W   WLD 1971
## 3077                                                 World    1W   WLD 1970
## 3078                                                 World    1W   WLD 1969
## 3079                                                 World    1W   WLD 1968
## 3080                                                 World    1W   WLD 1967
## 3081                                                 World    1W   WLD 1966
## 3082                                                 World    1W   WLD 1965
## 3083                                                 World    1W   WLD 1964
## 3084                                                 World    1W   WLD 1963
## 3085                                                 World    1W   WLD 1962
## 3086                                                 World    1W   WLD 1961
## 3087                                                 World    1W   WLD 1960
## 3088                                           Afghanistan    AF   AFG 2022
## 3089                                           Afghanistan    AF   AFG 2021
## 3090                                           Afghanistan    AF   AFG 2020
## 3091                                           Afghanistan    AF   AFG 2019
## 3092                                           Afghanistan    AF   AFG 2018
## 3093                                           Afghanistan    AF   AFG 2017
## 3094                                           Afghanistan    AF   AFG 2016
## 3095                                           Afghanistan    AF   AFG 2015
## 3096                                           Afghanistan    AF   AFG 2014
## 3097                                           Afghanistan    AF   AFG 2013
## 3098                                           Afghanistan    AF   AFG 2012
## 3099                                           Afghanistan    AF   AFG 2011
## 3100                                           Afghanistan    AF   AFG 2010
## 3101                                           Afghanistan    AF   AFG 2009
## 3102                                           Afghanistan    AF   AFG 2008
## 3103                                           Afghanistan    AF   AFG 2007
## 3104                                           Afghanistan    AF   AFG 2006
## 3105                                           Afghanistan    AF   AFG 2005
## 3106                                           Afghanistan    AF   AFG 2004
## 3107                                           Afghanistan    AF   AFG 2003
## 3108                                           Afghanistan    AF   AFG 2002
## 3109                                           Afghanistan    AF   AFG 2001
## 3110                                           Afghanistan    AF   AFG 2000
## 3111                                           Afghanistan    AF   AFG 1999
## 3112                                           Afghanistan    AF   AFG 1998
## 3113                                           Afghanistan    AF   AFG 1997
## 3114                                           Afghanistan    AF   AFG 1996
## 3115                                           Afghanistan    AF   AFG 1995
## 3116                                           Afghanistan    AF   AFG 1994
## 3117                                           Afghanistan    AF   AFG 1993
## 3118                                           Afghanistan    AF   AFG 1992
## 3119                                           Afghanistan    AF   AFG 1991
## 3120                                           Afghanistan    AF   AFG 1990
## 3121                                           Afghanistan    AF   AFG 1989
## 3122                                           Afghanistan    AF   AFG 1988
## 3123                                           Afghanistan    AF   AFG 1987
## 3124                                           Afghanistan    AF   AFG 1986
## 3125                                           Afghanistan    AF   AFG 1985
## 3126                                           Afghanistan    AF   AFG 1984
## 3127                                           Afghanistan    AF   AFG 1983
## 3128                                           Afghanistan    AF   AFG 1982
## 3129                                           Afghanistan    AF   AFG 1981
## 3130                                           Afghanistan    AF   AFG 1980
## 3131                                           Afghanistan    AF   AFG 1979
## 3132                                           Afghanistan    AF   AFG 1978
## 3133                                           Afghanistan    AF   AFG 1977
## 3134                                           Afghanistan    AF   AFG 1976
## 3135                                           Afghanistan    AF   AFG 1975
## 3136                                           Afghanistan    AF   AFG 1974
## 3137                                           Afghanistan    AF   AFG 1973
## 3138                                           Afghanistan    AF   AFG 1972
## 3139                                           Afghanistan    AF   AFG 1971
## 3140                                           Afghanistan    AF   AFG 1970
## 3141                                           Afghanistan    AF   AFG 1969
## 3142                                           Afghanistan    AF   AFG 1968
## 3143                                           Afghanistan    AF   AFG 1967
## 3144                                           Afghanistan    AF   AFG 1966
## 3145                                           Afghanistan    AF   AFG 1965
## 3146                                           Afghanistan    AF   AFG 1964
## 3147                                           Afghanistan    AF   AFG 1963
## 3148                                           Afghanistan    AF   AFG 1962
## 3149                                           Afghanistan    AF   AFG 1961
## 3150                                           Afghanistan    AF   AFG 1960
## 3151                                               Albania    AL   ALB 2022
## 3152                                               Albania    AL   ALB 2021
## 3153                                               Albania    AL   ALB 2020
## 3154                                               Albania    AL   ALB 2019
## 3155                                               Albania    AL   ALB 2018
## 3156                                               Albania    AL   ALB 2017
## 3157                                               Albania    AL   ALB 2016
## 3158                                               Albania    AL   ALB 2015
## 3159                                               Albania    AL   ALB 2014
## 3160                                               Albania    AL   ALB 2013
## 3161                                               Albania    AL   ALB 2012
## 3162                                               Albania    AL   ALB 2011
## 3163                                               Albania    AL   ALB 2010
## 3164                                               Albania    AL   ALB 2009
## 3165                                               Albania    AL   ALB 2008
## 3166                                               Albania    AL   ALB 2007
## 3167                                               Albania    AL   ALB 2006
## 3168                                               Albania    AL   ALB 2005
## 3169                                               Albania    AL   ALB 2004
## 3170                                               Albania    AL   ALB 2003
## 3171                                               Albania    AL   ALB 2002
## 3172                                               Albania    AL   ALB 2001
## 3173                                               Albania    AL   ALB 2000
## 3174                                               Albania    AL   ALB 1999
## 3175                                               Albania    AL   ALB 1998
## 3176                                               Albania    AL   ALB 1997
## 3177                                               Albania    AL   ALB 1996
## 3178                                               Albania    AL   ALB 1995
## 3179                                               Albania    AL   ALB 1994
## 3180                                               Albania    AL   ALB 1993
## 3181                                               Albania    AL   ALB 1992
## 3182                                               Albania    AL   ALB 1991
## 3183                                               Albania    AL   ALB 1990
## 3184                                               Albania    AL   ALB 1989
## 3185                                               Albania    AL   ALB 1988
## 3186                                               Albania    AL   ALB 1987
## 3187                                               Albania    AL   ALB 1986
## 3188                                               Albania    AL   ALB 1985
## 3189                                               Albania    AL   ALB 1984
## 3190                                               Albania    AL   ALB 1983
## 3191                                               Albania    AL   ALB 1982
## 3192                                               Albania    AL   ALB 1981
## 3193                                               Albania    AL   ALB 1980
## 3194                                               Albania    AL   ALB 1979
## 3195                                               Albania    AL   ALB 1978
## 3196                                               Albania    AL   ALB 1977
## 3197                                               Albania    AL   ALB 1976
## 3198                                               Albania    AL   ALB 1975
## 3199                                               Albania    AL   ALB 1974
## 3200                                               Albania    AL   ALB 1973
## 3201                                               Albania    AL   ALB 1972
## 3202                                               Albania    AL   ALB 1971
## 3203                                               Albania    AL   ALB 1970
## 3204                                               Albania    AL   ALB 1969
## 3205                                               Albania    AL   ALB 1968
## 3206                                               Albania    AL   ALB 1967
## 3207                                               Albania    AL   ALB 1966
## 3208                                               Albania    AL   ALB 1965
## 3209                                               Albania    AL   ALB 1964
## 3210                                               Albania    AL   ALB 1963
## 3211                                               Albania    AL   ALB 1962
## 3212                                               Albania    AL   ALB 1961
## 3213                                               Albania    AL   ALB 1960
## 3214                                               Algeria    DZ   DZA 2022
## 3215                                               Algeria    DZ   DZA 2021
## 3216                                               Algeria    DZ   DZA 2020
## 3217                                               Algeria    DZ   DZA 2019
## 3218                                               Algeria    DZ   DZA 2018
## 3219                                               Algeria    DZ   DZA 2017
## 3220                                               Algeria    DZ   DZA 2016
## 3221                                               Algeria    DZ   DZA 2015
## 3222                                               Algeria    DZ   DZA 2014
## 3223                                               Algeria    DZ   DZA 2013
## 3224                                               Algeria    DZ   DZA 2012
## 3225                                               Algeria    DZ   DZA 2011
## 3226                                               Algeria    DZ   DZA 2010
## 3227                                               Algeria    DZ   DZA 2009
## 3228                                               Algeria    DZ   DZA 2008
## 3229                                               Algeria    DZ   DZA 2007
## 3230                                               Algeria    DZ   DZA 2006
## 3231                                               Algeria    DZ   DZA 2005
## 3232                                               Algeria    DZ   DZA 2004
## 3233                                               Algeria    DZ   DZA 2003
## 3234                                               Algeria    DZ   DZA 2002
## 3235                                               Algeria    DZ   DZA 2001
## 3236                                               Algeria    DZ   DZA 2000
## 3237                                               Algeria    DZ   DZA 1999
## 3238                                               Algeria    DZ   DZA 1998
## 3239                                               Algeria    DZ   DZA 1997
## 3240                                               Algeria    DZ   DZA 1996
## 3241                                               Algeria    DZ   DZA 1995
## 3242                                               Algeria    DZ   DZA 1994
## 3243                                               Algeria    DZ   DZA 1993
## 3244                                               Algeria    DZ   DZA 1992
## 3245                                               Algeria    DZ   DZA 1991
## 3246                                               Algeria    DZ   DZA 1990
## 3247                                               Algeria    DZ   DZA 1989
## 3248                                               Algeria    DZ   DZA 1988
## 3249                                               Algeria    DZ   DZA 1987
## 3250                                               Algeria    DZ   DZA 1986
## 3251                                               Algeria    DZ   DZA 1985
## 3252                                               Algeria    DZ   DZA 1984
## 3253                                               Algeria    DZ   DZA 1983
## 3254                                               Algeria    DZ   DZA 1982
## 3255                                               Algeria    DZ   DZA 1981
## 3256                                               Algeria    DZ   DZA 1980
## 3257                                               Algeria    DZ   DZA 1979
## 3258                                               Algeria    DZ   DZA 1978
## 3259                                               Algeria    DZ   DZA 1977
## 3260                                               Algeria    DZ   DZA 1976
## 3261                                               Algeria    DZ   DZA 1975
## 3262                                               Algeria    DZ   DZA 1974
## 3263                                               Algeria    DZ   DZA 1973
## 3264                                               Algeria    DZ   DZA 1972
## 3265                                               Algeria    DZ   DZA 1971
## 3266                                               Algeria    DZ   DZA 1970
## 3267                                               Algeria    DZ   DZA 1969
## 3268                                               Algeria    DZ   DZA 1968
## 3269                                               Algeria    DZ   DZA 1967
## 3270                                               Algeria    DZ   DZA 1966
## 3271                                               Algeria    DZ   DZA 1965
## 3272                                               Algeria    DZ   DZA 1964
## 3273                                               Algeria    DZ   DZA 1963
## 3274                                               Algeria    DZ   DZA 1962
## 3275                                               Algeria    DZ   DZA 1961
## 3276                                               Algeria    DZ   DZA 1960
## 3277                                        American Samoa    AS   ASM 2022
## 3278                                        American Samoa    AS   ASM 2021
## 3279                                        American Samoa    AS   ASM 2020
## 3280                                        American Samoa    AS   ASM 2019
## 3281                                        American Samoa    AS   ASM 2018
## 3282                                        American Samoa    AS   ASM 2017
## 3283                                        American Samoa    AS   ASM 2016
## 3284                                        American Samoa    AS   ASM 2015
## 3285                                        American Samoa    AS   ASM 2014
## 3286                                        American Samoa    AS   ASM 2013
## 3287                                        American Samoa    AS   ASM 2012
## 3288                                        American Samoa    AS   ASM 2011
## 3289                                        American Samoa    AS   ASM 2010
## 3290                                        American Samoa    AS   ASM 2009
## 3291                                        American Samoa    AS   ASM 2008
## 3292                                        American Samoa    AS   ASM 2007
## 3293                                        American Samoa    AS   ASM 2006
## 3294                                        American Samoa    AS   ASM 2005
## 3295                                        American Samoa    AS   ASM 2004
## 3296                                        American Samoa    AS   ASM 2003
## 3297                                        American Samoa    AS   ASM 2002
## 3298                                        American Samoa    AS   ASM 2001
## 3299                                        American Samoa    AS   ASM 2000
## 3300                                        American Samoa    AS   ASM 1999
## 3301                                        American Samoa    AS   ASM 1998
## 3302                                        American Samoa    AS   ASM 1997
## 3303                                        American Samoa    AS   ASM 1996
## 3304                                        American Samoa    AS   ASM 1995
## 3305                                        American Samoa    AS   ASM 1994
## 3306                                        American Samoa    AS   ASM 1993
## 3307                                        American Samoa    AS   ASM 1992
## 3308                                        American Samoa    AS   ASM 1991
## 3309                                        American Samoa    AS   ASM 1990
## 3310                                        American Samoa    AS   ASM 1989
## 3311                                        American Samoa    AS   ASM 1988
## 3312                                        American Samoa    AS   ASM 1987
## 3313                                        American Samoa    AS   ASM 1986
## 3314                                        American Samoa    AS   ASM 1985
## 3315                                        American Samoa    AS   ASM 1984
## 3316                                        American Samoa    AS   ASM 1983
## 3317                                        American Samoa    AS   ASM 1982
## 3318                                        American Samoa    AS   ASM 1981
## 3319                                        American Samoa    AS   ASM 1980
## 3320                                        American Samoa    AS   ASM 1979
## 3321                                        American Samoa    AS   ASM 1978
## 3322                                        American Samoa    AS   ASM 1977
## 3323                                        American Samoa    AS   ASM 1976
## 3324                                        American Samoa    AS   ASM 1975
## 3325                                        American Samoa    AS   ASM 1974
## 3326                                        American Samoa    AS   ASM 1973
## 3327                                        American Samoa    AS   ASM 1972
## 3328                                        American Samoa    AS   ASM 1971
## 3329                                        American Samoa    AS   ASM 1970
## 3330                                        American Samoa    AS   ASM 1969
## 3331                                        American Samoa    AS   ASM 1968
## 3332                                        American Samoa    AS   ASM 1967
## 3333                                        American Samoa    AS   ASM 1966
## 3334                                        American Samoa    AS   ASM 1965
## 3335                                        American Samoa    AS   ASM 1964
## 3336                                        American Samoa    AS   ASM 1963
## 3337                                        American Samoa    AS   ASM 1962
## 3338                                        American Samoa    AS   ASM 1961
## 3339                                        American Samoa    AS   ASM 1960
## 3340                                               Andorra    AD   AND 2022
## 3341                                               Andorra    AD   AND 2021
## 3342                                               Andorra    AD   AND 2020
## 3343                                               Andorra    AD   AND 2019
## 3344                                               Andorra    AD   AND 2018
## 3345                                               Andorra    AD   AND 2017
## 3346                                               Andorra    AD   AND 2016
## 3347                                               Andorra    AD   AND 2015
## 3348                                               Andorra    AD   AND 2014
## 3349                                               Andorra    AD   AND 2013
## 3350                                               Andorra    AD   AND 2012
## 3351                                               Andorra    AD   AND 2011
## 3352                                               Andorra    AD   AND 2010
## 3353                                               Andorra    AD   AND 2009
## 3354                                               Andorra    AD   AND 2008
## 3355                                               Andorra    AD   AND 2007
## 3356                                               Andorra    AD   AND 2006
## 3357                                               Andorra    AD   AND 2005
## 3358                                               Andorra    AD   AND 2004
## 3359                                               Andorra    AD   AND 2003
## 3360                                               Andorra    AD   AND 2002
## 3361                                               Andorra    AD   AND 2001
## 3362                                               Andorra    AD   AND 2000
## 3363                                               Andorra    AD   AND 1999
## 3364                                               Andorra    AD   AND 1998
## 3365                                               Andorra    AD   AND 1997
## 3366                                               Andorra    AD   AND 1996
## 3367                                               Andorra    AD   AND 1995
## 3368                                               Andorra    AD   AND 1994
## 3369                                               Andorra    AD   AND 1993
## 3370                                               Andorra    AD   AND 1992
## 3371                                               Andorra    AD   AND 1991
## 3372                                               Andorra    AD   AND 1990
## 3373                                               Andorra    AD   AND 1989
## 3374                                               Andorra    AD   AND 1988
## 3375                                               Andorra    AD   AND 1987
## 3376                                               Andorra    AD   AND 1986
## 3377                                               Andorra    AD   AND 1985
## 3378                                               Andorra    AD   AND 1984
## 3379                                               Andorra    AD   AND 1983
## 3380                                               Andorra    AD   AND 1982
## 3381                                               Andorra    AD   AND 1981
## 3382                                               Andorra    AD   AND 1980
## 3383                                               Andorra    AD   AND 1979
## 3384                                               Andorra    AD   AND 1978
## 3385                                               Andorra    AD   AND 1977
## 3386                                               Andorra    AD   AND 1976
## 3387                                               Andorra    AD   AND 1975
## 3388                                               Andorra    AD   AND 1974
## 3389                                               Andorra    AD   AND 1973
## 3390                                               Andorra    AD   AND 1972
## 3391                                               Andorra    AD   AND 1971
## 3392                                               Andorra    AD   AND 1970
## 3393                                               Andorra    AD   AND 1969
## 3394                                               Andorra    AD   AND 1968
## 3395                                               Andorra    AD   AND 1967
## 3396                                               Andorra    AD   AND 1966
## 3397                                               Andorra    AD   AND 1965
## 3398                                               Andorra    AD   AND 1964
## 3399                                               Andorra    AD   AND 1963
## 3400                                               Andorra    AD   AND 1962
## 3401                                               Andorra    AD   AND 1961
## 3402                                               Andorra    AD   AND 1960
## 3403                                                Angola    AO   AGO 2022
## 3404                                                Angola    AO   AGO 2021
## 3405                                                Angola    AO   AGO 2020
## 3406                                                Angola    AO   AGO 2019
## 3407                                                Angola    AO   AGO 2018
## 3408                                                Angola    AO   AGO 2017
## 3409                                                Angola    AO   AGO 2016
## 3410                                                Angola    AO   AGO 2015
## 3411                                                Angola    AO   AGO 2014
## 3412                                                Angola    AO   AGO 2013
## 3413                                                Angola    AO   AGO 2012
## 3414                                                Angola    AO   AGO 2011
## 3415                                                Angola    AO   AGO 2010
## 3416                                                Angola    AO   AGO 2009
## 3417                                                Angola    AO   AGO 2008
## 3418                                                Angola    AO   AGO 2007
## 3419                                                Angola    AO   AGO 2006
## 3420                                                Angola    AO   AGO 2005
## 3421                                                Angola    AO   AGO 2004
## 3422                                                Angola    AO   AGO 2003
## 3423                                                Angola    AO   AGO 2002
## 3424                                                Angola    AO   AGO 2001
## 3425                                                Angola    AO   AGO 2000
## 3426                                                Angola    AO   AGO 1999
## 3427                                                Angola    AO   AGO 1998
## 3428                                                Angola    AO   AGO 1997
## 3429                                                Angola    AO   AGO 1996
## 3430                                                Angola    AO   AGO 1995
## 3431                                                Angola    AO   AGO 1994
## 3432                                                Angola    AO   AGO 1993
## 3433                                                Angola    AO   AGO 1992
## 3434                                                Angola    AO   AGO 1991
## 3435                                                Angola    AO   AGO 1990
## 3436                                                Angola    AO   AGO 1989
## 3437                                                Angola    AO   AGO 1988
## 3438                                                Angola    AO   AGO 1987
## 3439                                                Angola    AO   AGO 1986
## 3440                                                Angola    AO   AGO 1985
## 3441                                                Angola    AO   AGO 1984
## 3442                                                Angola    AO   AGO 1983
## 3443                                                Angola    AO   AGO 1982
## 3444                                                Angola    AO   AGO 1981
## 3445                                                Angola    AO   AGO 1980
## 3446                                                Angola    AO   AGO 1979
## 3447                                                Angola    AO   AGO 1978
## 3448                                                Angola    AO   AGO 1977
## 3449                                                Angola    AO   AGO 1976
## 3450                                                Angola    AO   AGO 1975
## 3451                                                Angola    AO   AGO 1974
## 3452                                                Angola    AO   AGO 1973
## 3453                                                Angola    AO   AGO 1972
## 3454                                                Angola    AO   AGO 1971
## 3455                                                Angola    AO   AGO 1970
## 3456                                                Angola    AO   AGO 1969
## 3457                                                Angola    AO   AGO 1968
## 3458                                                Angola    AO   AGO 1967
## 3459                                                Angola    AO   AGO 1966
## 3460                                                Angola    AO   AGO 1965
## 3461                                                Angola    AO   AGO 1964
## 3462                                                Angola    AO   AGO 1963
## 3463                                                Angola    AO   AGO 1962
## 3464                                                Angola    AO   AGO 1961
## 3465                                                Angola    AO   AGO 1960
## 3466                                   Antigua and Barbuda    AG   ATG 2022
## 3467                                   Antigua and Barbuda    AG   ATG 2021
## 3468                                   Antigua and Barbuda    AG   ATG 2020
## 3469                                   Antigua and Barbuda    AG   ATG 2019
## 3470                                   Antigua and Barbuda    AG   ATG 2018
## 3471                                   Antigua and Barbuda    AG   ATG 2017
## 3472                                   Antigua and Barbuda    AG   ATG 2016
## 3473                                   Antigua and Barbuda    AG   ATG 2015
## 3474                                   Antigua and Barbuda    AG   ATG 2014
## 3475                                   Antigua and Barbuda    AG   ATG 2013
## 3476                                   Antigua and Barbuda    AG   ATG 2012
## 3477                                   Antigua and Barbuda    AG   ATG 2011
## 3478                                   Antigua and Barbuda    AG   ATG 2010
## 3479                                   Antigua and Barbuda    AG   ATG 2009
## 3480                                   Antigua and Barbuda    AG   ATG 2008
## 3481                                   Antigua and Barbuda    AG   ATG 2007
## 3482                                   Antigua and Barbuda    AG   ATG 2006
## 3483                                   Antigua and Barbuda    AG   ATG 2005
## 3484                                   Antigua and Barbuda    AG   ATG 2004
## 3485                                   Antigua and Barbuda    AG   ATG 2003
## 3486                                   Antigua and Barbuda    AG   ATG 2002
## 3487                                   Antigua and Barbuda    AG   ATG 2001
## 3488                                   Antigua and Barbuda    AG   ATG 2000
## 3489                                   Antigua and Barbuda    AG   ATG 1999
## 3490                                   Antigua and Barbuda    AG   ATG 1998
## 3491                                   Antigua and Barbuda    AG   ATG 1997
## 3492                                   Antigua and Barbuda    AG   ATG 1996
## 3493                                   Antigua and Barbuda    AG   ATG 1995
## 3494                                   Antigua and Barbuda    AG   ATG 1994
## 3495                                   Antigua and Barbuda    AG   ATG 1993
## 3496                                   Antigua and Barbuda    AG   ATG 1992
## 3497                                   Antigua and Barbuda    AG   ATG 1991
## 3498                                   Antigua and Barbuda    AG   ATG 1990
## 3499                                   Antigua and Barbuda    AG   ATG 1989
## 3500                                   Antigua and Barbuda    AG   ATG 1988
## 3501                                   Antigua and Barbuda    AG   ATG 1987
## 3502                                   Antigua and Barbuda    AG   ATG 1986
## 3503                                   Antigua and Barbuda    AG   ATG 1985
## 3504                                   Antigua and Barbuda    AG   ATG 1984
## 3505                                   Antigua and Barbuda    AG   ATG 1983
## 3506                                   Antigua and Barbuda    AG   ATG 1982
## 3507                                   Antigua and Barbuda    AG   ATG 1981
## 3508                                   Antigua and Barbuda    AG   ATG 1980
## 3509                                   Antigua and Barbuda    AG   ATG 1979
## 3510                                   Antigua and Barbuda    AG   ATG 1978
## 3511                                   Antigua and Barbuda    AG   ATG 1977
## 3512                                   Antigua and Barbuda    AG   ATG 1976
## 3513                                   Antigua and Barbuda    AG   ATG 1975
## 3514                                   Antigua and Barbuda    AG   ATG 1974
## 3515                                   Antigua and Barbuda    AG   ATG 1973
## 3516                                   Antigua and Barbuda    AG   ATG 1972
## 3517                                   Antigua and Barbuda    AG   ATG 1971
## 3518                                   Antigua and Barbuda    AG   ATG 1970
## 3519                                   Antigua and Barbuda    AG   ATG 1969
## 3520                                   Antigua and Barbuda    AG   ATG 1968
## 3521                                   Antigua and Barbuda    AG   ATG 1967
## 3522                                   Antigua and Barbuda    AG   ATG 1966
## 3523                                   Antigua and Barbuda    AG   ATG 1965
## 3524                                   Antigua and Barbuda    AG   ATG 1964
## 3525                                   Antigua and Barbuda    AG   ATG 1963
## 3526                                   Antigua and Barbuda    AG   ATG 1962
## 3527                                   Antigua and Barbuda    AG   ATG 1961
## 3528                                   Antigua and Barbuda    AG   ATG 1960
## 3529                                             Argentina    AR   ARG 2022
## 3530                                             Argentina    AR   ARG 2021
## 3531                                             Argentina    AR   ARG 2020
## 3532                                             Argentina    AR   ARG 2019
## 3533                                             Argentina    AR   ARG 2018
## 3534                                             Argentina    AR   ARG 2017
## 3535                                             Argentina    AR   ARG 2016
## 3536                                             Argentina    AR   ARG 2015
## 3537                                             Argentina    AR   ARG 2014
## 3538                                             Argentina    AR   ARG 2013
## 3539                                             Argentina    AR   ARG 2012
## 3540                                             Argentina    AR   ARG 2011
## 3541                                             Argentina    AR   ARG 2010
## 3542                                             Argentina    AR   ARG 2009
## 3543                                             Argentina    AR   ARG 2008
## 3544                                             Argentina    AR   ARG 2007
## 3545                                             Argentina    AR   ARG 2006
## 3546                                             Argentina    AR   ARG 2005
## 3547                                             Argentina    AR   ARG 2004
## 3548                                             Argentina    AR   ARG 2003
## 3549                                             Argentina    AR   ARG 2002
## 3550                                             Argentina    AR   ARG 2001
## 3551                                             Argentina    AR   ARG 2000
## 3552                                             Argentina    AR   ARG 1999
## 3553                                             Argentina    AR   ARG 1998
## 3554                                             Argentina    AR   ARG 1997
## 3555                                             Argentina    AR   ARG 1996
## 3556                                             Argentina    AR   ARG 1995
## 3557                                             Argentina    AR   ARG 1994
## 3558                                             Argentina    AR   ARG 1993
## 3559                                             Argentina    AR   ARG 1992
## 3560                                             Argentina    AR   ARG 1991
## 3561                                             Argentina    AR   ARG 1990
## 3562                                             Argentina    AR   ARG 1989
## 3563                                             Argentina    AR   ARG 1988
## 3564                                             Argentina    AR   ARG 1987
## 3565                                             Argentina    AR   ARG 1986
## 3566                                             Argentina    AR   ARG 1985
## 3567                                             Argentina    AR   ARG 1984
## 3568                                             Argentina    AR   ARG 1983
## 3569                                             Argentina    AR   ARG 1982
## 3570                                             Argentina    AR   ARG 1981
## 3571                                             Argentina    AR   ARG 1980
## 3572                                             Argentina    AR   ARG 1979
## 3573                                             Argentina    AR   ARG 1978
## 3574                                             Argentina    AR   ARG 1977
## 3575                                             Argentina    AR   ARG 1976
## 3576                                             Argentina    AR   ARG 1975
## 3577                                             Argentina    AR   ARG 1974
## 3578                                             Argentina    AR   ARG 1973
## 3579                                             Argentina    AR   ARG 1972
## 3580                                             Argentina    AR   ARG 1971
## 3581                                             Argentina    AR   ARG 1970
## 3582                                             Argentina    AR   ARG 1969
## 3583                                             Argentina    AR   ARG 1968
## 3584                                             Argentina    AR   ARG 1967
## 3585                                             Argentina    AR   ARG 1966
## 3586                                             Argentina    AR   ARG 1965
## 3587                                             Argentina    AR   ARG 1964
## 3588                                             Argentina    AR   ARG 1963
## 3589                                             Argentina    AR   ARG 1962
## 3590                                             Argentina    AR   ARG 1961
## 3591                                             Argentina    AR   ARG 1960
## 3592                                               Armenia    AM   ARM 2022
## 3593                                               Armenia    AM   ARM 2021
## 3594                                               Armenia    AM   ARM 2020
## 3595                                               Armenia    AM   ARM 2019
## 3596                                               Armenia    AM   ARM 2018
## 3597                                               Armenia    AM   ARM 2017
## 3598                                               Armenia    AM   ARM 2016
## 3599                                               Armenia    AM   ARM 2015
## 3600                                               Armenia    AM   ARM 2014
## 3601                                               Armenia    AM   ARM 2013
## 3602                                               Armenia    AM   ARM 2012
## 3603                                               Armenia    AM   ARM 2011
## 3604                                               Armenia    AM   ARM 2010
## 3605                                               Armenia    AM   ARM 2009
## 3606                                               Armenia    AM   ARM 2008
## 3607                                               Armenia    AM   ARM 2007
## 3608                                               Armenia    AM   ARM 2006
## 3609                                               Armenia    AM   ARM 2005
## 3610                                               Armenia    AM   ARM 2004
## 3611                                               Armenia    AM   ARM 2003
## 3612                                               Armenia    AM   ARM 2002
## 3613                                               Armenia    AM   ARM 2001
## 3614                                               Armenia    AM   ARM 2000
## 3615                                               Armenia    AM   ARM 1999
## 3616                                               Armenia    AM   ARM 1998
## 3617                                               Armenia    AM   ARM 1997
## 3618                                               Armenia    AM   ARM 1996
## 3619                                               Armenia    AM   ARM 1995
## 3620                                               Armenia    AM   ARM 1994
## 3621                                               Armenia    AM   ARM 1993
## 3622                                               Armenia    AM   ARM 1992
## 3623                                               Armenia    AM   ARM 1991
## 3624                                               Armenia    AM   ARM 1990
## 3625                                               Armenia    AM   ARM 1989
## 3626                                               Armenia    AM   ARM 1988
## 3627                                               Armenia    AM   ARM 1987
## 3628                                               Armenia    AM   ARM 1986
## 3629                                               Armenia    AM   ARM 1985
## 3630                                               Armenia    AM   ARM 1984
## 3631                                               Armenia    AM   ARM 1983
## 3632                                               Armenia    AM   ARM 1982
## 3633                                               Armenia    AM   ARM 1981
## 3634                                               Armenia    AM   ARM 1980
## 3635                                               Armenia    AM   ARM 1979
## 3636                                               Armenia    AM   ARM 1978
## 3637                                               Armenia    AM   ARM 1977
## 3638                                               Armenia    AM   ARM 1976
## 3639                                               Armenia    AM   ARM 1975
## 3640                                               Armenia    AM   ARM 1974
## 3641                                               Armenia    AM   ARM 1973
## 3642                                               Armenia    AM   ARM 1972
## 3643                                               Armenia    AM   ARM 1971
## 3644                                               Armenia    AM   ARM 1970
## 3645                                               Armenia    AM   ARM 1969
## 3646                                               Armenia    AM   ARM 1968
## 3647                                               Armenia    AM   ARM 1967
## 3648                                               Armenia    AM   ARM 1966
## 3649                                               Armenia    AM   ARM 1965
## 3650                                               Armenia    AM   ARM 1964
## 3651                                               Armenia    AM   ARM 1963
## 3652                                               Armenia    AM   ARM 1962
## 3653                                               Armenia    AM   ARM 1961
## 3654                                               Armenia    AM   ARM 1960
## 3655                                                 Aruba    AW   ABW 2022
## 3656                                                 Aruba    AW   ABW 2021
## 3657                                                 Aruba    AW   ABW 2020
## 3658                                                 Aruba    AW   ABW 2019
## 3659                                                 Aruba    AW   ABW 2018
## 3660                                                 Aruba    AW   ABW 2017
## 3661                                                 Aruba    AW   ABW 2016
## 3662                                                 Aruba    AW   ABW 2015
## 3663                                                 Aruba    AW   ABW 2014
## 3664                                                 Aruba    AW   ABW 2013
## 3665                                                 Aruba    AW   ABW 2012
## 3666                                                 Aruba    AW   ABW 2011
## 3667                                                 Aruba    AW   ABW 2010
## 3668                                                 Aruba    AW   ABW 2009
## 3669                                                 Aruba    AW   ABW 2008
## 3670                                                 Aruba    AW   ABW 2007
## 3671                                                 Aruba    AW   ABW 2006
## 3672                                                 Aruba    AW   ABW 2005
## 3673                                                 Aruba    AW   ABW 2004
## 3674                                                 Aruba    AW   ABW 2003
## 3675                                                 Aruba    AW   ABW 2002
## 3676                                                 Aruba    AW   ABW 2001
## 3677                                                 Aruba    AW   ABW 2000
## 3678                                                 Aruba    AW   ABW 1999
## 3679                                                 Aruba    AW   ABW 1998
## 3680                                                 Aruba    AW   ABW 1997
## 3681                                                 Aruba    AW   ABW 1996
## 3682                                                 Aruba    AW   ABW 1995
## 3683                                                 Aruba    AW   ABW 1994
## 3684                                                 Aruba    AW   ABW 1993
## 3685                                                 Aruba    AW   ABW 1992
## 3686                                                 Aruba    AW   ABW 1991
## 3687                                                 Aruba    AW   ABW 1990
## 3688                                                 Aruba    AW   ABW 1989
## 3689                                                 Aruba    AW   ABW 1988
## 3690                                                 Aruba    AW   ABW 1987
## 3691                                                 Aruba    AW   ABW 1986
## 3692                                                 Aruba    AW   ABW 1985
## 3693                                                 Aruba    AW   ABW 1984
## 3694                                                 Aruba    AW   ABW 1983
## 3695                                                 Aruba    AW   ABW 1982
## 3696                                                 Aruba    AW   ABW 1981
## 3697                                                 Aruba    AW   ABW 1980
## 3698                                                 Aruba    AW   ABW 1979
## 3699                                                 Aruba    AW   ABW 1978
## 3700                                                 Aruba    AW   ABW 1977
## 3701                                                 Aruba    AW   ABW 1976
## 3702                                                 Aruba    AW   ABW 1975
## 3703                                                 Aruba    AW   ABW 1974
## 3704                                                 Aruba    AW   ABW 1973
## 3705                                                 Aruba    AW   ABW 1972
## 3706                                                 Aruba    AW   ABW 1971
## 3707                                                 Aruba    AW   ABW 1970
## 3708                                                 Aruba    AW   ABW 1969
## 3709                                                 Aruba    AW   ABW 1968
## 3710                                                 Aruba    AW   ABW 1967
## 3711                                                 Aruba    AW   ABW 1966
## 3712                                                 Aruba    AW   ABW 1965
## 3713                                                 Aruba    AW   ABW 1964
## 3714                                                 Aruba    AW   ABW 1963
## 3715                                                 Aruba    AW   ABW 1962
## 3716                                                 Aruba    AW   ABW 1961
## 3717                                                 Aruba    AW   ABW 1960
## 3718                                             Australia    AU   AUS 2022
## 3719                                             Australia    AU   AUS 2021
## 3720                                             Australia    AU   AUS 2020
## 3721                                             Australia    AU   AUS 2019
## 3722                                             Australia    AU   AUS 2018
## 3723                                             Australia    AU   AUS 2017
## 3724                                             Australia    AU   AUS 2016
## 3725                                             Australia    AU   AUS 2015
## 3726                                             Australia    AU   AUS 2014
## 3727                                             Australia    AU   AUS 2013
## 3728                                             Australia    AU   AUS 2012
## 3729                                             Australia    AU   AUS 2011
## 3730                                             Australia    AU   AUS 2010
## 3731                                             Australia    AU   AUS 2009
## 3732                                             Australia    AU   AUS 2008
## 3733                                             Australia    AU   AUS 2007
## 3734                                             Australia    AU   AUS 2006
## 3735                                             Australia    AU   AUS 2005
## 3736                                             Australia    AU   AUS 2004
## 3737                                             Australia    AU   AUS 2003
## 3738                                             Australia    AU   AUS 2002
## 3739                                             Australia    AU   AUS 2001
## 3740                                             Australia    AU   AUS 2000
## 3741                                             Australia    AU   AUS 1999
## 3742                                             Australia    AU   AUS 1998
## 3743                                             Australia    AU   AUS 1997
## 3744                                             Australia    AU   AUS 1996
## 3745                                             Australia    AU   AUS 1995
## 3746                                             Australia    AU   AUS 1994
## 3747                                             Australia    AU   AUS 1993
## 3748                                             Australia    AU   AUS 1992
## 3749                                             Australia    AU   AUS 1991
## 3750                                             Australia    AU   AUS 1990
## 3751                                             Australia    AU   AUS 1989
## 3752                                             Australia    AU   AUS 1988
## 3753                                             Australia    AU   AUS 1987
## 3754                                             Australia    AU   AUS 1986
## 3755                                             Australia    AU   AUS 1985
## 3756                                             Australia    AU   AUS 1984
## 3757                                             Australia    AU   AUS 1983
## 3758                                             Australia    AU   AUS 1982
## 3759                                             Australia    AU   AUS 1981
## 3760                                             Australia    AU   AUS 1980
## 3761                                             Australia    AU   AUS 1979
## 3762                                             Australia    AU   AUS 1978
## 3763                                             Australia    AU   AUS 1977
## 3764                                             Australia    AU   AUS 1976
## 3765                                             Australia    AU   AUS 1975
## 3766                                             Australia    AU   AUS 1974
## 3767                                             Australia    AU   AUS 1973
## 3768                                             Australia    AU   AUS 1972
## 3769                                             Australia    AU   AUS 1971
## 3770                                             Australia    AU   AUS 1970
## 3771                                             Australia    AU   AUS 1969
## 3772                                             Australia    AU   AUS 1968
## 3773                                             Australia    AU   AUS 1967
## 3774                                             Australia    AU   AUS 1966
## 3775                                             Australia    AU   AUS 1965
## 3776                                             Australia    AU   AUS 1964
## 3777                                             Australia    AU   AUS 1963
## 3778                                             Australia    AU   AUS 1962
## 3779                                             Australia    AU   AUS 1961
## 3780                                             Australia    AU   AUS 1960
## 3781                                               Austria    AT   AUT 2022
## 3782                                               Austria    AT   AUT 2021
## 3783                                               Austria    AT   AUT 2020
## 3784                                               Austria    AT   AUT 2019
## 3785                                               Austria    AT   AUT 2018
## 3786                                               Austria    AT   AUT 2017
## 3787                                               Austria    AT   AUT 2016
## 3788                                               Austria    AT   AUT 2015
## 3789                                               Austria    AT   AUT 2014
## 3790                                               Austria    AT   AUT 2013
## 3791                                               Austria    AT   AUT 2012
## 3792                                               Austria    AT   AUT 2011
## 3793                                               Austria    AT   AUT 2010
## 3794                                               Austria    AT   AUT 2009
## 3795                                               Austria    AT   AUT 2008
## 3796                                               Austria    AT   AUT 2007
## 3797                                               Austria    AT   AUT 2006
## 3798                                               Austria    AT   AUT 2005
## 3799                                               Austria    AT   AUT 2004
## 3800                                               Austria    AT   AUT 2003
## 3801                                               Austria    AT   AUT 2002
## 3802                                               Austria    AT   AUT 2001
## 3803                                               Austria    AT   AUT 2000
## 3804                                               Austria    AT   AUT 1999
## 3805                                               Austria    AT   AUT 1998
## 3806                                               Austria    AT   AUT 1997
## 3807                                               Austria    AT   AUT 1996
## 3808                                               Austria    AT   AUT 1995
## 3809                                               Austria    AT   AUT 1994
## 3810                                               Austria    AT   AUT 1993
## 3811                                               Austria    AT   AUT 1992
## 3812                                               Austria    AT   AUT 1991
## 3813                                               Austria    AT   AUT 1990
## 3814                                               Austria    AT   AUT 1989
## 3815                                               Austria    AT   AUT 1988
## 3816                                               Austria    AT   AUT 1987
## 3817                                               Austria    AT   AUT 1986
## 3818                                               Austria    AT   AUT 1985
## 3819                                               Austria    AT   AUT 1984
## 3820                                               Austria    AT   AUT 1983
## 3821                                               Austria    AT   AUT 1982
## 3822                                               Austria    AT   AUT 1981
## 3823                                               Austria    AT   AUT 1980
## 3824                                               Austria    AT   AUT 1979
## 3825                                               Austria    AT   AUT 1978
## 3826                                               Austria    AT   AUT 1977
## 3827                                               Austria    AT   AUT 1976
## 3828                                               Austria    AT   AUT 1975
## 3829                                               Austria    AT   AUT 1974
## 3830                                               Austria    AT   AUT 1973
## 3831                                               Austria    AT   AUT 1972
## 3832                                               Austria    AT   AUT 1971
## 3833                                               Austria    AT   AUT 1970
## 3834                                               Austria    AT   AUT 1969
## 3835                                               Austria    AT   AUT 1968
## 3836                                               Austria    AT   AUT 1967
## 3837                                               Austria    AT   AUT 1966
## 3838                                               Austria    AT   AUT 1965
## 3839                                               Austria    AT   AUT 1964
## 3840                                               Austria    AT   AUT 1963
## 3841                                               Austria    AT   AUT 1962
## 3842                                               Austria    AT   AUT 1961
## 3843                                               Austria    AT   AUT 1960
## 3844                                            Azerbaijan    AZ   AZE 2022
## 3845                                            Azerbaijan    AZ   AZE 2021
## 3846                                            Azerbaijan    AZ   AZE 2020
## 3847                                            Azerbaijan    AZ   AZE 2019
## 3848                                            Azerbaijan    AZ   AZE 2018
## 3849                                            Azerbaijan    AZ   AZE 2017
## 3850                                            Azerbaijan    AZ   AZE 2016
## 3851                                            Azerbaijan    AZ   AZE 2015
## 3852                                            Azerbaijan    AZ   AZE 2014
## 3853                                            Azerbaijan    AZ   AZE 2013
## 3854                                            Azerbaijan    AZ   AZE 2012
## 3855                                            Azerbaijan    AZ   AZE 2011
## 3856                                            Azerbaijan    AZ   AZE 2010
## 3857                                            Azerbaijan    AZ   AZE 2009
## 3858                                            Azerbaijan    AZ   AZE 2008
## 3859                                            Azerbaijan    AZ   AZE 2007
## 3860                                            Azerbaijan    AZ   AZE 2006
## 3861                                            Azerbaijan    AZ   AZE 2005
## 3862                                            Azerbaijan    AZ   AZE 2004
## 3863                                            Azerbaijan    AZ   AZE 2003
## 3864                                            Azerbaijan    AZ   AZE 2002
## 3865                                            Azerbaijan    AZ   AZE 2001
## 3866                                            Azerbaijan    AZ   AZE 2000
## 3867                                            Azerbaijan    AZ   AZE 1999
## 3868                                            Azerbaijan    AZ   AZE 1998
## 3869                                            Azerbaijan    AZ   AZE 1997
## 3870                                            Azerbaijan    AZ   AZE 1996
## 3871                                            Azerbaijan    AZ   AZE 1995
## 3872                                            Azerbaijan    AZ   AZE 1994
## 3873                                            Azerbaijan    AZ   AZE 1993
## 3874                                            Azerbaijan    AZ   AZE 1992
## 3875                                            Azerbaijan    AZ   AZE 1991
## 3876                                            Azerbaijan    AZ   AZE 1990
## 3877                                            Azerbaijan    AZ   AZE 1989
## 3878                                            Azerbaijan    AZ   AZE 1988
## 3879                                            Azerbaijan    AZ   AZE 1987
## 3880                                            Azerbaijan    AZ   AZE 1986
## 3881                                            Azerbaijan    AZ   AZE 1985
## 3882                                            Azerbaijan    AZ   AZE 1984
## 3883                                            Azerbaijan    AZ   AZE 1983
## 3884                                            Azerbaijan    AZ   AZE 1982
## 3885                                            Azerbaijan    AZ   AZE 1981
## 3886                                            Azerbaijan    AZ   AZE 1980
## 3887                                            Azerbaijan    AZ   AZE 1979
## 3888                                            Azerbaijan    AZ   AZE 1978
## 3889                                            Azerbaijan    AZ   AZE 1977
## 3890                                            Azerbaijan    AZ   AZE 1976
## 3891                                            Azerbaijan    AZ   AZE 1975
## 3892                                            Azerbaijan    AZ   AZE 1974
## 3893                                            Azerbaijan    AZ   AZE 1973
## 3894                                            Azerbaijan    AZ   AZE 1972
## 3895                                            Azerbaijan    AZ   AZE 1971
## 3896                                            Azerbaijan    AZ   AZE 1970
## 3897                                            Azerbaijan    AZ   AZE 1969
## 3898                                            Azerbaijan    AZ   AZE 1968
## 3899                                            Azerbaijan    AZ   AZE 1967
## 3900                                            Azerbaijan    AZ   AZE 1966
## 3901                                            Azerbaijan    AZ   AZE 1965
## 3902                                            Azerbaijan    AZ   AZE 1964
## 3903                                            Azerbaijan    AZ   AZE 1963
## 3904                                            Azerbaijan    AZ   AZE 1962
## 3905                                            Azerbaijan    AZ   AZE 1961
## 3906                                            Azerbaijan    AZ   AZE 1960
## 3907                                          Bahamas, The    BS   BHS 2022
## 3908                                          Bahamas, The    BS   BHS 2021
## 3909                                          Bahamas, The    BS   BHS 2020
## 3910                                          Bahamas, The    BS   BHS 2019
## 3911                                          Bahamas, The    BS   BHS 2018
## 3912                                          Bahamas, The    BS   BHS 2017
## 3913                                          Bahamas, The    BS   BHS 2016
## 3914                                          Bahamas, The    BS   BHS 2015
## 3915                                          Bahamas, The    BS   BHS 2014
## 3916                                          Bahamas, The    BS   BHS 2013
## 3917                                          Bahamas, The    BS   BHS 2012
## 3918                                          Bahamas, The    BS   BHS 2011
## 3919                                          Bahamas, The    BS   BHS 2010
## 3920                                          Bahamas, The    BS   BHS 2009
## 3921                                          Bahamas, The    BS   BHS 2008
## 3922                                          Bahamas, The    BS   BHS 2007
## 3923                                          Bahamas, The    BS   BHS 2006
## 3924                                          Bahamas, The    BS   BHS 2005
## 3925                                          Bahamas, The    BS   BHS 2004
## 3926                                          Bahamas, The    BS   BHS 2003
## 3927                                          Bahamas, The    BS   BHS 2002
## 3928                                          Bahamas, The    BS   BHS 2001
## 3929                                          Bahamas, The    BS   BHS 2000
## 3930                                          Bahamas, The    BS   BHS 1999
## 3931                                          Bahamas, The    BS   BHS 1998
## 3932                                          Bahamas, The    BS   BHS 1997
## 3933                                          Bahamas, The    BS   BHS 1996
## 3934                                          Bahamas, The    BS   BHS 1995
## 3935                                          Bahamas, The    BS   BHS 1994
## 3936                                          Bahamas, The    BS   BHS 1993
## 3937                                          Bahamas, The    BS   BHS 1992
## 3938                                          Bahamas, The    BS   BHS 1991
## 3939                                          Bahamas, The    BS   BHS 1990
## 3940                                          Bahamas, The    BS   BHS 1989
## 3941                                          Bahamas, The    BS   BHS 1988
## 3942                                          Bahamas, The    BS   BHS 1987
## 3943                                          Bahamas, The    BS   BHS 1986
## 3944                                          Bahamas, The    BS   BHS 1985
## 3945                                          Bahamas, The    BS   BHS 1984
## 3946                                          Bahamas, The    BS   BHS 1983
## 3947                                          Bahamas, The    BS   BHS 1982
## 3948                                          Bahamas, The    BS   BHS 1981
## 3949                                          Bahamas, The    BS   BHS 1980
## 3950                                          Bahamas, The    BS   BHS 1979
## 3951                                          Bahamas, The    BS   BHS 1978
## 3952                                          Bahamas, The    BS   BHS 1977
## 3953                                          Bahamas, The    BS   BHS 1976
## 3954                                          Bahamas, The    BS   BHS 1975
## 3955                                          Bahamas, The    BS   BHS 1974
## 3956                                          Bahamas, The    BS   BHS 1973
## 3957                                          Bahamas, The    BS   BHS 1972
## 3958                                          Bahamas, The    BS   BHS 1971
## 3959                                          Bahamas, The    BS   BHS 1970
## 3960                                          Bahamas, The    BS   BHS 1969
## 3961                                          Bahamas, The    BS   BHS 1968
## 3962                                          Bahamas, The    BS   BHS 1967
## 3963                                          Bahamas, The    BS   BHS 1966
## 3964                                          Bahamas, The    BS   BHS 1965
## 3965                                          Bahamas, The    BS   BHS 1964
## 3966                                          Bahamas, The    BS   BHS 1963
## 3967                                          Bahamas, The    BS   BHS 1962
## 3968                                          Bahamas, The    BS   BHS 1961
## 3969                                          Bahamas, The    BS   BHS 1960
## 3970                                               Bahrain    BH   BHR 2022
## 3971                                               Bahrain    BH   BHR 2021
## 3972                                               Bahrain    BH   BHR 2020
## 3973                                               Bahrain    BH   BHR 2019
## 3974                                               Bahrain    BH   BHR 2018
## 3975                                               Bahrain    BH   BHR 2017
## 3976                                               Bahrain    BH   BHR 2016
## 3977                                               Bahrain    BH   BHR 2015
## 3978                                               Bahrain    BH   BHR 2014
## 3979                                               Bahrain    BH   BHR 2013
## 3980                                               Bahrain    BH   BHR 2012
## 3981                                               Bahrain    BH   BHR 2011
## 3982                                               Bahrain    BH   BHR 2010
## 3983                                               Bahrain    BH   BHR 2009
## 3984                                               Bahrain    BH   BHR 2008
## 3985                                               Bahrain    BH   BHR 2007
## 3986                                               Bahrain    BH   BHR 2006
## 3987                                               Bahrain    BH   BHR 2005
## 3988                                               Bahrain    BH   BHR 2004
## 3989                                               Bahrain    BH   BHR 2003
## 3990                                               Bahrain    BH   BHR 2002
## 3991                                               Bahrain    BH   BHR 2001
## 3992                                               Bahrain    BH   BHR 2000
## 3993                                               Bahrain    BH   BHR 1999
## 3994                                               Bahrain    BH   BHR 1998
## 3995                                               Bahrain    BH   BHR 1997
## 3996                                               Bahrain    BH   BHR 1996
## 3997                                               Bahrain    BH   BHR 1995
## 3998                                               Bahrain    BH   BHR 1994
## 3999                                               Bahrain    BH   BHR 1993
## 4000                                               Bahrain    BH   BHR 1992
## 4001                                               Bahrain    BH   BHR 1991
## 4002                                               Bahrain    BH   BHR 1990
## 4003                                               Bahrain    BH   BHR 1989
## 4004                                               Bahrain    BH   BHR 1988
## 4005                                               Bahrain    BH   BHR 1987
## 4006                                               Bahrain    BH   BHR 1986
## 4007                                               Bahrain    BH   BHR 1985
## 4008                                               Bahrain    BH   BHR 1984
## 4009                                               Bahrain    BH   BHR 1983
## 4010                                               Bahrain    BH   BHR 1982
## 4011                                               Bahrain    BH   BHR 1981
## 4012                                               Bahrain    BH   BHR 1980
## 4013                                               Bahrain    BH   BHR 1979
## 4014                                               Bahrain    BH   BHR 1978
## 4015                                               Bahrain    BH   BHR 1977
## 4016                                               Bahrain    BH   BHR 1976
## 4017                                               Bahrain    BH   BHR 1975
## 4018                                               Bahrain    BH   BHR 1974
## 4019                                               Bahrain    BH   BHR 1973
## 4020                                               Bahrain    BH   BHR 1972
## 4021                                               Bahrain    BH   BHR 1971
## 4022                                               Bahrain    BH   BHR 1970
## 4023                                               Bahrain    BH   BHR 1969
## 4024                                               Bahrain    BH   BHR 1968
## 4025                                               Bahrain    BH   BHR 1967
## 4026                                               Bahrain    BH   BHR 1966
## 4027                                               Bahrain    BH   BHR 1965
## 4028                                               Bahrain    BH   BHR 1964
## 4029                                               Bahrain    BH   BHR 1963
## 4030                                               Bahrain    BH   BHR 1962
## 4031                                               Bahrain    BH   BHR 1961
## 4032                                               Bahrain    BH   BHR 1960
## 4033                                            Bangladesh    BD   BGD 2022
## 4034                                            Bangladesh    BD   BGD 2021
## 4035                                            Bangladesh    BD   BGD 2020
## 4036                                            Bangladesh    BD   BGD 2019
## 4037                                            Bangladesh    BD   BGD 2018
## 4038                                            Bangladesh    BD   BGD 2017
## 4039                                            Bangladesh    BD   BGD 2016
## 4040                                            Bangladesh    BD   BGD 2015
## 4041                                            Bangladesh    BD   BGD 2014
## 4042                                            Bangladesh    BD   BGD 2013
## 4043                                            Bangladesh    BD   BGD 2012
## 4044                                            Bangladesh    BD   BGD 2011
## 4045                                            Bangladesh    BD   BGD 2010
## 4046                                            Bangladesh    BD   BGD 2009
## 4047                                            Bangladesh    BD   BGD 2008
## 4048                                            Bangladesh    BD   BGD 2007
## 4049                                            Bangladesh    BD   BGD 2006
## 4050                                            Bangladesh    BD   BGD 2005
## 4051                                            Bangladesh    BD   BGD 2004
## 4052                                            Bangladesh    BD   BGD 2003
## 4053                                            Bangladesh    BD   BGD 2002
## 4054                                            Bangladesh    BD   BGD 2001
## 4055                                            Bangladesh    BD   BGD 2000
## 4056                                            Bangladesh    BD   BGD 1999
## 4057                                            Bangladesh    BD   BGD 1998
## 4058                                            Bangladesh    BD   BGD 1997
## 4059                                            Bangladesh    BD   BGD 1996
## 4060                                            Bangladesh    BD   BGD 1995
## 4061                                            Bangladesh    BD   BGD 1994
## 4062                                            Bangladesh    BD   BGD 1993
## 4063                                            Bangladesh    BD   BGD 1992
## 4064                                            Bangladesh    BD   BGD 1991
## 4065                                            Bangladesh    BD   BGD 1990
## 4066                                            Bangladesh    BD   BGD 1989
## 4067                                            Bangladesh    BD   BGD 1988
## 4068                                            Bangladesh    BD   BGD 1987
## 4069                                            Bangladesh    BD   BGD 1986
## 4070                                            Bangladesh    BD   BGD 1985
## 4071                                            Bangladesh    BD   BGD 1984
## 4072                                            Bangladesh    BD   BGD 1983
## 4073                                            Bangladesh    BD   BGD 1982
## 4074                                            Bangladesh    BD   BGD 1981
## 4075                                            Bangladesh    BD   BGD 1980
## 4076                                            Bangladesh    BD   BGD 1979
## 4077                                            Bangladesh    BD   BGD 1978
## 4078                                            Bangladesh    BD   BGD 1977
## 4079                                            Bangladesh    BD   BGD 1976
## 4080                                            Bangladesh    BD   BGD 1975
## 4081                                            Bangladesh    BD   BGD 1974
## 4082                                            Bangladesh    BD   BGD 1973
## 4083                                            Bangladesh    BD   BGD 1972
## 4084                                            Bangladesh    BD   BGD 1971
## 4085                                            Bangladesh    BD   BGD 1970
## 4086                                            Bangladesh    BD   BGD 1969
## 4087                                            Bangladesh    BD   BGD 1968
## 4088                                            Bangladesh    BD   BGD 1967
## 4089                                            Bangladesh    BD   BGD 1966
## 4090                                            Bangladesh    BD   BGD 1965
## 4091                                            Bangladesh    BD   BGD 1964
## 4092                                            Bangladesh    BD   BGD 1963
## 4093                                            Bangladesh    BD   BGD 1962
## 4094                                            Bangladesh    BD   BGD 1961
## 4095                                            Bangladesh    BD   BGD 1960
## 4096                                              Barbados    BB   BRB 2022
## 4097                                              Barbados    BB   BRB 2021
## 4098                                              Barbados    BB   BRB 2020
## 4099                                              Barbados    BB   BRB 2019
## 4100                                              Barbados    BB   BRB 2018
## 4101                                              Barbados    BB   BRB 2017
## 4102                                              Barbados    BB   BRB 2016
## 4103                                              Barbados    BB   BRB 2015
## 4104                                              Barbados    BB   BRB 2014
## 4105                                              Barbados    BB   BRB 2013
## 4106                                              Barbados    BB   BRB 2012
## 4107                                              Barbados    BB   BRB 2011
## 4108                                              Barbados    BB   BRB 2010
## 4109                                              Barbados    BB   BRB 2009
## 4110                                              Barbados    BB   BRB 2008
## 4111                                              Barbados    BB   BRB 2007
## 4112                                              Barbados    BB   BRB 2006
## 4113                                              Barbados    BB   BRB 2005
## 4114                                              Barbados    BB   BRB 2004
## 4115                                              Barbados    BB   BRB 2003
## 4116                                              Barbados    BB   BRB 2002
## 4117                                              Barbados    BB   BRB 2001
## 4118                                              Barbados    BB   BRB 2000
## 4119                                              Barbados    BB   BRB 1999
## 4120                                              Barbados    BB   BRB 1998
## 4121                                              Barbados    BB   BRB 1997
## 4122                                              Barbados    BB   BRB 1996
## 4123                                              Barbados    BB   BRB 1995
## 4124                                              Barbados    BB   BRB 1994
## 4125                                              Barbados    BB   BRB 1993
## 4126                                              Barbados    BB   BRB 1992
## 4127                                              Barbados    BB   BRB 1991
## 4128                                              Barbados    BB   BRB 1990
## 4129                                              Barbados    BB   BRB 1989
## 4130                                              Barbados    BB   BRB 1988
## 4131                                              Barbados    BB   BRB 1987
## 4132                                              Barbados    BB   BRB 1986
## 4133                                              Barbados    BB   BRB 1985
## 4134                                              Barbados    BB   BRB 1984
## 4135                                              Barbados    BB   BRB 1983
## 4136                                              Barbados    BB   BRB 1982
## 4137                                              Barbados    BB   BRB 1981
## 4138                                              Barbados    BB   BRB 1980
## 4139                                              Barbados    BB   BRB 1979
## 4140                                              Barbados    BB   BRB 1978
## 4141                                              Barbados    BB   BRB 1977
## 4142                                              Barbados    BB   BRB 1976
## 4143                                              Barbados    BB   BRB 1975
## 4144                                              Barbados    BB   BRB 1974
## 4145                                              Barbados    BB   BRB 1973
## 4146                                              Barbados    BB   BRB 1972
## 4147                                              Barbados    BB   BRB 1971
## 4148                                              Barbados    BB   BRB 1970
## 4149                                              Barbados    BB   BRB 1969
## 4150                                              Barbados    BB   BRB 1968
## 4151                                              Barbados    BB   BRB 1967
## 4152                                              Barbados    BB   BRB 1966
## 4153                                              Barbados    BB   BRB 1965
## 4154                                              Barbados    BB   BRB 1964
## 4155                                              Barbados    BB   BRB 1963
## 4156                                              Barbados    BB   BRB 1962
## 4157                                              Barbados    BB   BRB 1961
## 4158                                              Barbados    BB   BRB 1960
## 4159                                               Belarus    BY   BLR 2022
## 4160                                               Belarus    BY   BLR 2021
## 4161                                               Belarus    BY   BLR 2020
## 4162                                               Belarus    BY   BLR 2019
## 4163                                               Belarus    BY   BLR 2018
## 4164                                               Belarus    BY   BLR 2017
## 4165                                               Belarus    BY   BLR 2016
## 4166                                               Belarus    BY   BLR 2015
## 4167                                               Belarus    BY   BLR 2014
## 4168                                               Belarus    BY   BLR 2013
## 4169                                               Belarus    BY   BLR 2012
## 4170                                               Belarus    BY   BLR 2011
## 4171                                               Belarus    BY   BLR 2010
## 4172                                               Belarus    BY   BLR 2009
## 4173                                               Belarus    BY   BLR 2008
## 4174                                               Belarus    BY   BLR 2007
## 4175                                               Belarus    BY   BLR 2006
## 4176                                               Belarus    BY   BLR 2005
## 4177                                               Belarus    BY   BLR 2004
## 4178                                               Belarus    BY   BLR 2003
## 4179                                               Belarus    BY   BLR 2002
## 4180                                               Belarus    BY   BLR 2001
## 4181                                               Belarus    BY   BLR 2000
## 4182                                               Belarus    BY   BLR 1999
## 4183                                               Belarus    BY   BLR 1998
## 4184                                               Belarus    BY   BLR 1997
## 4185                                               Belarus    BY   BLR 1996
## 4186                                               Belarus    BY   BLR 1995
## 4187                                               Belarus    BY   BLR 1994
## 4188                                               Belarus    BY   BLR 1993
## 4189                                               Belarus    BY   BLR 1992
## 4190                                               Belarus    BY   BLR 1991
## 4191                                               Belarus    BY   BLR 1990
## 4192                                               Belarus    BY   BLR 1989
## 4193                                               Belarus    BY   BLR 1988
## 4194                                               Belarus    BY   BLR 1987
## 4195                                               Belarus    BY   BLR 1986
## 4196                                               Belarus    BY   BLR 1985
## 4197                                               Belarus    BY   BLR 1984
## 4198                                               Belarus    BY   BLR 1983
## 4199                                               Belarus    BY   BLR 1982
## 4200                                               Belarus    BY   BLR 1981
## 4201                                               Belarus    BY   BLR 1980
## 4202                                               Belarus    BY   BLR 1979
## 4203                                               Belarus    BY   BLR 1978
## 4204                                               Belarus    BY   BLR 1977
## 4205                                               Belarus    BY   BLR 1976
## 4206                                               Belarus    BY   BLR 1975
## 4207                                               Belarus    BY   BLR 1974
## 4208                                               Belarus    BY   BLR 1973
## 4209                                               Belarus    BY   BLR 1972
## 4210                                               Belarus    BY   BLR 1971
## 4211                                               Belarus    BY   BLR 1970
## 4212                                               Belarus    BY   BLR 1969
## 4213                                               Belarus    BY   BLR 1968
## 4214                                               Belarus    BY   BLR 1967
## 4215                                               Belarus    BY   BLR 1966
## 4216                                               Belarus    BY   BLR 1965
## 4217                                               Belarus    BY   BLR 1964
## 4218                                               Belarus    BY   BLR 1963
## 4219                                               Belarus    BY   BLR 1962
## 4220                                               Belarus    BY   BLR 1961
## 4221                                               Belarus    BY   BLR 1960
## 4222                                               Belgium    BE   BEL 2022
## 4223                                               Belgium    BE   BEL 2021
## 4224                                               Belgium    BE   BEL 2020
## 4225                                               Belgium    BE   BEL 2019
## 4226                                               Belgium    BE   BEL 2018
## 4227                                               Belgium    BE   BEL 2017
## 4228                                               Belgium    BE   BEL 2016
## 4229                                               Belgium    BE   BEL 2015
## 4230                                               Belgium    BE   BEL 2014
## 4231                                               Belgium    BE   BEL 2013
## 4232                                               Belgium    BE   BEL 2012
## 4233                                               Belgium    BE   BEL 2011
## 4234                                               Belgium    BE   BEL 2010
## 4235                                               Belgium    BE   BEL 2009
## 4236                                               Belgium    BE   BEL 2008
## 4237                                               Belgium    BE   BEL 2007
## 4238                                               Belgium    BE   BEL 2006
## 4239                                               Belgium    BE   BEL 2005
## 4240                                               Belgium    BE   BEL 2004
## 4241                                               Belgium    BE   BEL 2003
## 4242                                               Belgium    BE   BEL 2002
## 4243                                               Belgium    BE   BEL 2001
## 4244                                               Belgium    BE   BEL 2000
## 4245                                               Belgium    BE   BEL 1999
## 4246                                               Belgium    BE   BEL 1998
## 4247                                               Belgium    BE   BEL 1997
## 4248                                               Belgium    BE   BEL 1996
## 4249                                               Belgium    BE   BEL 1995
## 4250                                               Belgium    BE   BEL 1994
## 4251                                               Belgium    BE   BEL 1993
## 4252                                               Belgium    BE   BEL 1992
## 4253                                               Belgium    BE   BEL 1991
## 4254                                               Belgium    BE   BEL 1990
## 4255                                               Belgium    BE   BEL 1989
## 4256                                               Belgium    BE   BEL 1988
## 4257                                               Belgium    BE   BEL 1987
## 4258                                               Belgium    BE   BEL 1986
## 4259                                               Belgium    BE   BEL 1985
## 4260                                               Belgium    BE   BEL 1984
## 4261                                               Belgium    BE   BEL 1983
## 4262                                               Belgium    BE   BEL 1982
## 4263                                               Belgium    BE   BEL 1981
## 4264                                               Belgium    BE   BEL 1980
## 4265                                               Belgium    BE   BEL 1979
## 4266                                               Belgium    BE   BEL 1978
## 4267                                               Belgium    BE   BEL 1977
## 4268                                               Belgium    BE   BEL 1976
## 4269                                               Belgium    BE   BEL 1975
## 4270                                               Belgium    BE   BEL 1974
## 4271                                               Belgium    BE   BEL 1973
## 4272                                               Belgium    BE   BEL 1972
## 4273                                               Belgium    BE   BEL 1971
## 4274                                               Belgium    BE   BEL 1970
## 4275                                               Belgium    BE   BEL 1969
## 4276                                               Belgium    BE   BEL 1968
## 4277                                               Belgium    BE   BEL 1967
## 4278                                               Belgium    BE   BEL 1966
## 4279                                               Belgium    BE   BEL 1965
## 4280                                               Belgium    BE   BEL 1964
## 4281                                               Belgium    BE   BEL 1963
## 4282                                               Belgium    BE   BEL 1962
## 4283                                               Belgium    BE   BEL 1961
## 4284                                               Belgium    BE   BEL 1960
## 4285                                                Belize    BZ   BLZ 2022
## 4286                                                Belize    BZ   BLZ 2021
## 4287                                                Belize    BZ   BLZ 2020
## 4288                                                Belize    BZ   BLZ 2019
## 4289                                                Belize    BZ   BLZ 2018
## 4290                                                Belize    BZ   BLZ 2017
## 4291                                                Belize    BZ   BLZ 2016
## 4292                                                Belize    BZ   BLZ 2015
## 4293                                                Belize    BZ   BLZ 2014
## 4294                                                Belize    BZ   BLZ 2013
## 4295                                                Belize    BZ   BLZ 2012
## 4296                                                Belize    BZ   BLZ 2011
## 4297                                                Belize    BZ   BLZ 2010
## 4298                                                Belize    BZ   BLZ 2009
## 4299                                                Belize    BZ   BLZ 2008
## 4300                                                Belize    BZ   BLZ 2007
## 4301                                                Belize    BZ   BLZ 2006
## 4302                                                Belize    BZ   BLZ 2005
## 4303                                                Belize    BZ   BLZ 2004
## 4304                                                Belize    BZ   BLZ 2003
## 4305                                                Belize    BZ   BLZ 2002
## 4306                                                Belize    BZ   BLZ 2001
## 4307                                                Belize    BZ   BLZ 2000
## 4308                                                Belize    BZ   BLZ 1999
## 4309                                                Belize    BZ   BLZ 1998
## 4310                                                Belize    BZ   BLZ 1997
## 4311                                                Belize    BZ   BLZ 1996
## 4312                                                Belize    BZ   BLZ 1995
## 4313                                                Belize    BZ   BLZ 1994
## 4314                                                Belize    BZ   BLZ 1993
## 4315                                                Belize    BZ   BLZ 1992
## 4316                                                Belize    BZ   BLZ 1991
## 4317                                                Belize    BZ   BLZ 1990
## 4318                                                Belize    BZ   BLZ 1989
## 4319                                                Belize    BZ   BLZ 1988
## 4320                                                Belize    BZ   BLZ 1987
## 4321                                                Belize    BZ   BLZ 1986
## 4322                                                Belize    BZ   BLZ 1985
## 4323                                                Belize    BZ   BLZ 1984
## 4324                                                Belize    BZ   BLZ 1983
## 4325                                                Belize    BZ   BLZ 1982
## 4326                                                Belize    BZ   BLZ 1981
## 4327                                                Belize    BZ   BLZ 1980
## 4328                                                Belize    BZ   BLZ 1979
## 4329                                                Belize    BZ   BLZ 1978
## 4330                                                Belize    BZ   BLZ 1977
## 4331                                                Belize    BZ   BLZ 1976
## 4332                                                Belize    BZ   BLZ 1975
## 4333                                                Belize    BZ   BLZ 1974
## 4334                                                Belize    BZ   BLZ 1973
## 4335                                                Belize    BZ   BLZ 1972
## 4336                                                Belize    BZ   BLZ 1971
## 4337                                                Belize    BZ   BLZ 1970
## 4338                                                Belize    BZ   BLZ 1969
## 4339                                                Belize    BZ   BLZ 1968
## 4340                                                Belize    BZ   BLZ 1967
## 4341                                                Belize    BZ   BLZ 1966
## 4342                                                Belize    BZ   BLZ 1965
## 4343                                                Belize    BZ   BLZ 1964
## 4344                                                Belize    BZ   BLZ 1963
## 4345                                                Belize    BZ   BLZ 1962
## 4346                                                Belize    BZ   BLZ 1961
## 4347                                                Belize    BZ   BLZ 1960
## 4348                                                 Benin    BJ   BEN 2022
## 4349                                                 Benin    BJ   BEN 2021
## 4350                                                 Benin    BJ   BEN 2020
## 4351                                                 Benin    BJ   BEN 2019
## 4352                                                 Benin    BJ   BEN 2018
## 4353                                                 Benin    BJ   BEN 2017
## 4354                                                 Benin    BJ   BEN 2016
## 4355                                                 Benin    BJ   BEN 2015
## 4356                                                 Benin    BJ   BEN 2014
## 4357                                                 Benin    BJ   BEN 2013
## 4358                                                 Benin    BJ   BEN 2012
## 4359                                                 Benin    BJ   BEN 2011
## 4360                                                 Benin    BJ   BEN 2010
## 4361                                                 Benin    BJ   BEN 2009
## 4362                                                 Benin    BJ   BEN 2008
## 4363                                                 Benin    BJ   BEN 2007
## 4364                                                 Benin    BJ   BEN 2006
## 4365                                                 Benin    BJ   BEN 2005
## 4366                                                 Benin    BJ   BEN 2004
## 4367                                                 Benin    BJ   BEN 2003
## 4368                                                 Benin    BJ   BEN 2002
## 4369                                                 Benin    BJ   BEN 2001
## 4370                                                 Benin    BJ   BEN 2000
## 4371                                                 Benin    BJ   BEN 1999
## 4372                                                 Benin    BJ   BEN 1998
## 4373                                                 Benin    BJ   BEN 1997
## 4374                                                 Benin    BJ   BEN 1996
## 4375                                                 Benin    BJ   BEN 1995
## 4376                                                 Benin    BJ   BEN 1994
## 4377                                                 Benin    BJ   BEN 1993
## 4378                                                 Benin    BJ   BEN 1992
## 4379                                                 Benin    BJ   BEN 1991
## 4380                                                 Benin    BJ   BEN 1990
## 4381                                                 Benin    BJ   BEN 1989
## 4382                                                 Benin    BJ   BEN 1988
## 4383                                                 Benin    BJ   BEN 1987
## 4384                                                 Benin    BJ   BEN 1986
## 4385                                                 Benin    BJ   BEN 1985
## 4386                                                 Benin    BJ   BEN 1984
## 4387                                                 Benin    BJ   BEN 1983
## 4388                                                 Benin    BJ   BEN 1982
## 4389                                                 Benin    BJ   BEN 1981
## 4390                                                 Benin    BJ   BEN 1980
## 4391                                                 Benin    BJ   BEN 1979
## 4392                                                 Benin    BJ   BEN 1978
## 4393                                                 Benin    BJ   BEN 1977
## 4394                                                 Benin    BJ   BEN 1976
## 4395                                                 Benin    BJ   BEN 1975
## 4396                                                 Benin    BJ   BEN 1974
## 4397                                                 Benin    BJ   BEN 1973
## 4398                                                 Benin    BJ   BEN 1972
## 4399                                                 Benin    BJ   BEN 1971
## 4400                                                 Benin    BJ   BEN 1970
## 4401                                                 Benin    BJ   BEN 1969
## 4402                                                 Benin    BJ   BEN 1968
## 4403                                                 Benin    BJ   BEN 1967
## 4404                                                 Benin    BJ   BEN 1966
## 4405                                                 Benin    BJ   BEN 1965
## 4406                                                 Benin    BJ   BEN 1964
## 4407                                                 Benin    BJ   BEN 1963
## 4408                                                 Benin    BJ   BEN 1962
## 4409                                                 Benin    BJ   BEN 1961
## 4410                                                 Benin    BJ   BEN 1960
## 4411                                               Bermuda    BM   BMU 2022
## 4412                                               Bermuda    BM   BMU 2021
## 4413                                               Bermuda    BM   BMU 2020
## 4414                                               Bermuda    BM   BMU 2019
## 4415                                               Bermuda    BM   BMU 2018
## 4416                                               Bermuda    BM   BMU 2017
## 4417                                               Bermuda    BM   BMU 2016
## 4418                                               Bermuda    BM   BMU 2015
## 4419                                               Bermuda    BM   BMU 2014
## 4420                                               Bermuda    BM   BMU 2013
## 4421                                               Bermuda    BM   BMU 2012
## 4422                                               Bermuda    BM   BMU 2011
## 4423                                               Bermuda    BM   BMU 2010
## 4424                                               Bermuda    BM   BMU 2009
## 4425                                               Bermuda    BM   BMU 2008
## 4426                                               Bermuda    BM   BMU 2007
## 4427                                               Bermuda    BM   BMU 2006
## 4428                                               Bermuda    BM   BMU 2005
## 4429                                               Bermuda    BM   BMU 2004
## 4430                                               Bermuda    BM   BMU 2003
## 4431                                               Bermuda    BM   BMU 2002
## 4432                                               Bermuda    BM   BMU 2001
## 4433                                               Bermuda    BM   BMU 2000
## 4434                                               Bermuda    BM   BMU 1999
## 4435                                               Bermuda    BM   BMU 1998
## 4436                                               Bermuda    BM   BMU 1997
## 4437                                               Bermuda    BM   BMU 1996
## 4438                                               Bermuda    BM   BMU 1995
## 4439                                               Bermuda    BM   BMU 1994
## 4440                                               Bermuda    BM   BMU 1993
## 4441                                               Bermuda    BM   BMU 1992
## 4442                                               Bermuda    BM   BMU 1991
## 4443                                               Bermuda    BM   BMU 1990
## 4444                                               Bermuda    BM   BMU 1989
## 4445                                               Bermuda    BM   BMU 1988
## 4446                                               Bermuda    BM   BMU 1987
## 4447                                               Bermuda    BM   BMU 1986
## 4448                                               Bermuda    BM   BMU 1985
## 4449                                               Bermuda    BM   BMU 1984
## 4450                                               Bermuda    BM   BMU 1983
## 4451                                               Bermuda    BM   BMU 1982
## 4452                                               Bermuda    BM   BMU 1981
## 4453                                               Bermuda    BM   BMU 1980
## 4454                                               Bermuda    BM   BMU 1979
## 4455                                               Bermuda    BM   BMU 1978
## 4456                                               Bermuda    BM   BMU 1977
## 4457                                               Bermuda    BM   BMU 1976
## 4458                                               Bermuda    BM   BMU 1975
## 4459                                               Bermuda    BM   BMU 1974
## 4460                                               Bermuda    BM   BMU 1973
## 4461                                               Bermuda    BM   BMU 1972
## 4462                                               Bermuda    BM   BMU 1971
## 4463                                               Bermuda    BM   BMU 1970
## 4464                                               Bermuda    BM   BMU 1969
## 4465                                               Bermuda    BM   BMU 1968
## 4466                                               Bermuda    BM   BMU 1967
## 4467                                               Bermuda    BM   BMU 1966
## 4468                                               Bermuda    BM   BMU 1965
## 4469                                               Bermuda    BM   BMU 1964
## 4470                                               Bermuda    BM   BMU 1963
## 4471                                               Bermuda    BM   BMU 1962
## 4472                                               Bermuda    BM   BMU 1961
## 4473                                               Bermuda    BM   BMU 1960
## 4474                                                Bhutan    BT   BTN 2022
## 4475                                                Bhutan    BT   BTN 2021
## 4476                                                Bhutan    BT   BTN 2020
## 4477                                                Bhutan    BT   BTN 2019
## 4478                                                Bhutan    BT   BTN 2018
## 4479                                                Bhutan    BT   BTN 2017
## 4480                                                Bhutan    BT   BTN 2016
## 4481                                                Bhutan    BT   BTN 2015
## 4482                                                Bhutan    BT   BTN 2014
## 4483                                                Bhutan    BT   BTN 2013
## 4484                                                Bhutan    BT   BTN 2012
## 4485                                                Bhutan    BT   BTN 2011
## 4486                                                Bhutan    BT   BTN 2010
## 4487                                                Bhutan    BT   BTN 2009
## 4488                                                Bhutan    BT   BTN 2008
## 4489                                                Bhutan    BT   BTN 2007
## 4490                                                Bhutan    BT   BTN 2006
## 4491                                                Bhutan    BT   BTN 2005
## 4492                                                Bhutan    BT   BTN 2004
## 4493                                                Bhutan    BT   BTN 2003
## 4494                                                Bhutan    BT   BTN 2002
## 4495                                                Bhutan    BT   BTN 2001
## 4496                                                Bhutan    BT   BTN 2000
## 4497                                                Bhutan    BT   BTN 1999
## 4498                                                Bhutan    BT   BTN 1998
## 4499                                                Bhutan    BT   BTN 1997
## 4500                                                Bhutan    BT   BTN 1996
## 4501                                                Bhutan    BT   BTN 1995
## 4502                                                Bhutan    BT   BTN 1994
## 4503                                                Bhutan    BT   BTN 1993
## 4504                                                Bhutan    BT   BTN 1992
## 4505                                                Bhutan    BT   BTN 1991
## 4506                                                Bhutan    BT   BTN 1990
## 4507                                                Bhutan    BT   BTN 1989
## 4508                                                Bhutan    BT   BTN 1988
## 4509                                                Bhutan    BT   BTN 1987
## 4510                                                Bhutan    BT   BTN 1986
## 4511                                                Bhutan    BT   BTN 1985
## 4512                                                Bhutan    BT   BTN 1984
## 4513                                                Bhutan    BT   BTN 1983
## 4514                                                Bhutan    BT   BTN 1982
## 4515                                                Bhutan    BT   BTN 1981
## 4516                                                Bhutan    BT   BTN 1980
## 4517                                                Bhutan    BT   BTN 1979
## 4518                                                Bhutan    BT   BTN 1978
## 4519                                                Bhutan    BT   BTN 1977
## 4520                                                Bhutan    BT   BTN 1976
## 4521                                                Bhutan    BT   BTN 1975
## 4522                                                Bhutan    BT   BTN 1974
## 4523                                                Bhutan    BT   BTN 1973
## 4524                                                Bhutan    BT   BTN 1972
## 4525                                                Bhutan    BT   BTN 1971
## 4526                                                Bhutan    BT   BTN 1970
## 4527                                                Bhutan    BT   BTN 1969
## 4528                                                Bhutan    BT   BTN 1968
## 4529                                                Bhutan    BT   BTN 1967
## 4530                                                Bhutan    BT   BTN 1966
## 4531                                                Bhutan    BT   BTN 1965
## 4532                                                Bhutan    BT   BTN 1964
## 4533                                                Bhutan    BT   BTN 1963
## 4534                                                Bhutan    BT   BTN 1962
## 4535                                                Bhutan    BT   BTN 1961
## 4536                                                Bhutan    BT   BTN 1960
## 4537                                               Bolivia    BO   BOL 2022
## 4538                                               Bolivia    BO   BOL 2021
## 4539                                               Bolivia    BO   BOL 2020
## 4540                                               Bolivia    BO   BOL 2019
## 4541                                               Bolivia    BO   BOL 2018
## 4542                                               Bolivia    BO   BOL 2017
## 4543                                               Bolivia    BO   BOL 2016
## 4544                                               Bolivia    BO   BOL 2015
## 4545                                               Bolivia    BO   BOL 2014
## 4546                                               Bolivia    BO   BOL 2013
## 4547                                               Bolivia    BO   BOL 2012
## 4548                                               Bolivia    BO   BOL 2011
## 4549                                               Bolivia    BO   BOL 2010
## 4550                                               Bolivia    BO   BOL 2009
## 4551                                               Bolivia    BO   BOL 2008
## 4552                                               Bolivia    BO   BOL 2007
## 4553                                               Bolivia    BO   BOL 2006
## 4554                                               Bolivia    BO   BOL 2005
## 4555                                               Bolivia    BO   BOL 2004
## 4556                                               Bolivia    BO   BOL 2003
## 4557                                               Bolivia    BO   BOL 2002
## 4558                                               Bolivia    BO   BOL 2001
## 4559                                               Bolivia    BO   BOL 2000
## 4560                                               Bolivia    BO   BOL 1999
## 4561                                               Bolivia    BO   BOL 1998
## 4562                                               Bolivia    BO   BOL 1997
## 4563                                               Bolivia    BO   BOL 1996
## 4564                                               Bolivia    BO   BOL 1995
## 4565                                               Bolivia    BO   BOL 1994
## 4566                                               Bolivia    BO   BOL 1993
## 4567                                               Bolivia    BO   BOL 1992
## 4568                                               Bolivia    BO   BOL 1991
## 4569                                               Bolivia    BO   BOL 1990
## 4570                                               Bolivia    BO   BOL 1989
## 4571                                               Bolivia    BO   BOL 1988
## 4572                                               Bolivia    BO   BOL 1987
## 4573                                               Bolivia    BO   BOL 1986
## 4574                                               Bolivia    BO   BOL 1985
## 4575                                               Bolivia    BO   BOL 1984
## 4576                                               Bolivia    BO   BOL 1983
## 4577                                               Bolivia    BO   BOL 1982
## 4578                                               Bolivia    BO   BOL 1981
## 4579                                               Bolivia    BO   BOL 1980
## 4580                                               Bolivia    BO   BOL 1979
## 4581                                               Bolivia    BO   BOL 1978
## 4582                                               Bolivia    BO   BOL 1977
## 4583                                               Bolivia    BO   BOL 1976
## 4584                                               Bolivia    BO   BOL 1975
## 4585                                               Bolivia    BO   BOL 1974
## 4586                                               Bolivia    BO   BOL 1973
## 4587                                               Bolivia    BO   BOL 1972
## 4588                                               Bolivia    BO   BOL 1971
## 4589                                               Bolivia    BO   BOL 1970
## 4590                                               Bolivia    BO   BOL 1969
## 4591                                               Bolivia    BO   BOL 1968
## 4592                                               Bolivia    BO   BOL 1967
## 4593                                               Bolivia    BO   BOL 1966
## 4594                                               Bolivia    BO   BOL 1965
## 4595                                               Bolivia    BO   BOL 1964
## 4596                                               Bolivia    BO   BOL 1963
## 4597                                               Bolivia    BO   BOL 1962
## 4598                                               Bolivia    BO   BOL 1961
## 4599                                               Bolivia    BO   BOL 1960
## 4600                                Bosnia and Herzegovina    BA   BIH 2022
## 4601                                Bosnia and Herzegovina    BA   BIH 2021
## 4602                                Bosnia and Herzegovina    BA   BIH 2020
## 4603                                Bosnia and Herzegovina    BA   BIH 2019
## 4604                                Bosnia and Herzegovina    BA   BIH 2018
## 4605                                Bosnia and Herzegovina    BA   BIH 2017
## 4606                                Bosnia and Herzegovina    BA   BIH 2016
## 4607                                Bosnia and Herzegovina    BA   BIH 2015
## 4608                                Bosnia and Herzegovina    BA   BIH 2014
## 4609                                Bosnia and Herzegovina    BA   BIH 2013
## 4610                                Bosnia and Herzegovina    BA   BIH 2012
## 4611                                Bosnia and Herzegovina    BA   BIH 2011
## 4612                                Bosnia and Herzegovina    BA   BIH 2010
## 4613                                Bosnia and Herzegovina    BA   BIH 2009
## 4614                                Bosnia and Herzegovina    BA   BIH 2008
## 4615                                Bosnia and Herzegovina    BA   BIH 2007
## 4616                                Bosnia and Herzegovina    BA   BIH 2006
## 4617                                Bosnia and Herzegovina    BA   BIH 2005
## 4618                                Bosnia and Herzegovina    BA   BIH 2004
## 4619                                Bosnia and Herzegovina    BA   BIH 2003
## 4620                                Bosnia and Herzegovina    BA   BIH 2002
## 4621                                Bosnia and Herzegovina    BA   BIH 2001
## 4622                                Bosnia and Herzegovina    BA   BIH 2000
## 4623                                Bosnia and Herzegovina    BA   BIH 1999
## 4624                                Bosnia and Herzegovina    BA   BIH 1998
## 4625                                Bosnia and Herzegovina    BA   BIH 1997
## 4626                                Bosnia and Herzegovina    BA   BIH 1996
## 4627                                Bosnia and Herzegovina    BA   BIH 1995
## 4628                                Bosnia and Herzegovina    BA   BIH 1994
## 4629                                Bosnia and Herzegovina    BA   BIH 1993
## 4630                                Bosnia and Herzegovina    BA   BIH 1992
## 4631                                Bosnia and Herzegovina    BA   BIH 1991
## 4632                                Bosnia and Herzegovina    BA   BIH 1990
## 4633                                Bosnia and Herzegovina    BA   BIH 1989
## 4634                                Bosnia and Herzegovina    BA   BIH 1988
## 4635                                Bosnia and Herzegovina    BA   BIH 1987
## 4636                                Bosnia and Herzegovina    BA   BIH 1986
## 4637                                Bosnia and Herzegovina    BA   BIH 1985
## 4638                                Bosnia and Herzegovina    BA   BIH 1984
## 4639                                Bosnia and Herzegovina    BA   BIH 1983
## 4640                                Bosnia and Herzegovina    BA   BIH 1982
## 4641                                Bosnia and Herzegovina    BA   BIH 1981
## 4642                                Bosnia and Herzegovina    BA   BIH 1980
## 4643                                Bosnia and Herzegovina    BA   BIH 1979
## 4644                                Bosnia and Herzegovina    BA   BIH 1978
## 4645                                Bosnia and Herzegovina    BA   BIH 1977
## 4646                                Bosnia and Herzegovina    BA   BIH 1976
## 4647                                Bosnia and Herzegovina    BA   BIH 1975
## 4648                                Bosnia and Herzegovina    BA   BIH 1974
## 4649                                Bosnia and Herzegovina    BA   BIH 1973
## 4650                                Bosnia and Herzegovina    BA   BIH 1972
## 4651                                Bosnia and Herzegovina    BA   BIH 1971
## 4652                                Bosnia and Herzegovina    BA   BIH 1970
## 4653                                Bosnia and Herzegovina    BA   BIH 1969
## 4654                                Bosnia and Herzegovina    BA   BIH 1968
## 4655                                Bosnia and Herzegovina    BA   BIH 1967
## 4656                                Bosnia and Herzegovina    BA   BIH 1966
## 4657                                Bosnia and Herzegovina    BA   BIH 1965
## 4658                                Bosnia and Herzegovina    BA   BIH 1964
## 4659                                Bosnia and Herzegovina    BA   BIH 1963
## 4660                                Bosnia and Herzegovina    BA   BIH 1962
## 4661                                Bosnia and Herzegovina    BA   BIH 1961
## 4662                                Bosnia and Herzegovina    BA   BIH 1960
## 4663                                              Botswana    BW   BWA 2022
## 4664                                              Botswana    BW   BWA 2021
## 4665                                              Botswana    BW   BWA 2020
## 4666                                              Botswana    BW   BWA 2019
## 4667                                              Botswana    BW   BWA 2018
## 4668                                              Botswana    BW   BWA 2017
## 4669                                              Botswana    BW   BWA 2016
## 4670                                              Botswana    BW   BWA 2015
## 4671                                              Botswana    BW   BWA 2014
## 4672                                              Botswana    BW   BWA 2013
## 4673                                              Botswana    BW   BWA 2012
## 4674                                              Botswana    BW   BWA 2011
## 4675                                              Botswana    BW   BWA 2010
## 4676                                              Botswana    BW   BWA 2009
## 4677                                              Botswana    BW   BWA 2008
## 4678                                              Botswana    BW   BWA 2007
## 4679                                              Botswana    BW   BWA 2006
## 4680                                              Botswana    BW   BWA 2005
## 4681                                              Botswana    BW   BWA 2004
## 4682                                              Botswana    BW   BWA 2003
## 4683                                              Botswana    BW   BWA 2002
## 4684                                              Botswana    BW   BWA 2001
## 4685                                              Botswana    BW   BWA 2000
## 4686                                              Botswana    BW   BWA 1999
## 4687                                              Botswana    BW   BWA 1998
## 4688                                              Botswana    BW   BWA 1997
## 4689                                              Botswana    BW   BWA 1996
## 4690                                              Botswana    BW   BWA 1995
## 4691                                              Botswana    BW   BWA 1994
## 4692                                              Botswana    BW   BWA 1993
## 4693                                              Botswana    BW   BWA 1992
## 4694                                              Botswana    BW   BWA 1991
## 4695                                              Botswana    BW   BWA 1990
## 4696                                              Botswana    BW   BWA 1989
## 4697                                              Botswana    BW   BWA 1988
## 4698                                              Botswana    BW   BWA 1987
## 4699                                              Botswana    BW   BWA 1986
## 4700                                              Botswana    BW   BWA 1985
## 4701                                              Botswana    BW   BWA 1984
## 4702                                              Botswana    BW   BWA 1983
## 4703                                              Botswana    BW   BWA 1982
## 4704                                              Botswana    BW   BWA 1981
## 4705                                              Botswana    BW   BWA 1980
## 4706                                              Botswana    BW   BWA 1979
## 4707                                              Botswana    BW   BWA 1978
## 4708                                              Botswana    BW   BWA 1977
## 4709                                              Botswana    BW   BWA 1976
## 4710                                              Botswana    BW   BWA 1975
## 4711                                              Botswana    BW   BWA 1974
## 4712                                              Botswana    BW   BWA 1973
## 4713                                              Botswana    BW   BWA 1972
## 4714                                              Botswana    BW   BWA 1971
## 4715                                              Botswana    BW   BWA 1970
## 4716                                              Botswana    BW   BWA 1969
## 4717                                              Botswana    BW   BWA 1968
## 4718                                              Botswana    BW   BWA 1967
## 4719                                              Botswana    BW   BWA 1966
## 4720                                              Botswana    BW   BWA 1965
## 4721                                              Botswana    BW   BWA 1964
## 4722                                              Botswana    BW   BWA 1963
## 4723                                              Botswana    BW   BWA 1962
## 4724                                              Botswana    BW   BWA 1961
## 4725                                              Botswana    BW   BWA 1960
## 4726                                                Brazil    BR   BRA 2022
## 4727                                                Brazil    BR   BRA 2021
## 4728                                                Brazil    BR   BRA 2020
## 4729                                                Brazil    BR   BRA 2019
## 4730                                                Brazil    BR   BRA 2018
## 4731                                                Brazil    BR   BRA 2017
## 4732                                                Brazil    BR   BRA 2016
## 4733                                                Brazil    BR   BRA 2015
## 4734                                                Brazil    BR   BRA 2014
## 4735                                                Brazil    BR   BRA 2013
## 4736                                                Brazil    BR   BRA 2012
## 4737                                                Brazil    BR   BRA 2011
## 4738                                                Brazil    BR   BRA 2010
## 4739                                                Brazil    BR   BRA 2009
## 4740                                                Brazil    BR   BRA 2008
## 4741                                                Brazil    BR   BRA 2007
## 4742                                                Brazil    BR   BRA 2006
## 4743                                                Brazil    BR   BRA 2005
## 4744                                                Brazil    BR   BRA 2004
## 4745                                                Brazil    BR   BRA 2003
## 4746                                                Brazil    BR   BRA 2002
## 4747                                                Brazil    BR   BRA 2001
## 4748                                                Brazil    BR   BRA 2000
## 4749                                                Brazil    BR   BRA 1999
## 4750                                                Brazil    BR   BRA 1998
## 4751                                                Brazil    BR   BRA 1997
## 4752                                                Brazil    BR   BRA 1996
## 4753                                                Brazil    BR   BRA 1995
## 4754                                                Brazil    BR   BRA 1994
## 4755                                                Brazil    BR   BRA 1993
## 4756                                                Brazil    BR   BRA 1992
## 4757                                                Brazil    BR   BRA 1991
## 4758                                                Brazil    BR   BRA 1990
## 4759                                                Brazil    BR   BRA 1989
## 4760                                                Brazil    BR   BRA 1988
## 4761                                                Brazil    BR   BRA 1987
## 4762                                                Brazil    BR   BRA 1986
## 4763                                                Brazil    BR   BRA 1985
## 4764                                                Brazil    BR   BRA 1984
## 4765                                                Brazil    BR   BRA 1983
## 4766                                                Brazil    BR   BRA 1982
## 4767                                                Brazil    BR   BRA 1981
## 4768                                                Brazil    BR   BRA 1980
## 4769                                                Brazil    BR   BRA 1979
## 4770                                                Brazil    BR   BRA 1978
## 4771                                                Brazil    BR   BRA 1977
## 4772                                                Brazil    BR   BRA 1976
## 4773                                                Brazil    BR   BRA 1975
## 4774                                                Brazil    BR   BRA 1974
## 4775                                                Brazil    BR   BRA 1973
## 4776                                                Brazil    BR   BRA 1972
## 4777                                                Brazil    BR   BRA 1971
## 4778                                                Brazil    BR   BRA 1970
## 4779                                                Brazil    BR   BRA 1969
## 4780                                                Brazil    BR   BRA 1968
## 4781                                                Brazil    BR   BRA 1967
## 4782                                                Brazil    BR   BRA 1966
## 4783                                                Brazil    BR   BRA 1965
## 4784                                                Brazil    BR   BRA 1964
## 4785                                                Brazil    BR   BRA 1963
## 4786                                                Brazil    BR   BRA 1962
## 4787                                                Brazil    BR   BRA 1961
## 4788                                                Brazil    BR   BRA 1960
## 4789                                British Virgin Islands    VG   VGB 2022
## 4790                                British Virgin Islands    VG   VGB 2021
## 4791                                British Virgin Islands    VG   VGB 2020
## 4792                                British Virgin Islands    VG   VGB 2019
## 4793                                British Virgin Islands    VG   VGB 2018
## 4794                                British Virgin Islands    VG   VGB 2017
## 4795                                British Virgin Islands    VG   VGB 2016
## 4796                                British Virgin Islands    VG   VGB 2015
## 4797                                British Virgin Islands    VG   VGB 2014
## 4798                                British Virgin Islands    VG   VGB 2013
## 4799                                British Virgin Islands    VG   VGB 2012
## 4800                                British Virgin Islands    VG   VGB 2011
## 4801                                British Virgin Islands    VG   VGB 2010
## 4802                                British Virgin Islands    VG   VGB 2009
## 4803                                British Virgin Islands    VG   VGB 2008
## 4804                                British Virgin Islands    VG   VGB 2007
## 4805                                British Virgin Islands    VG   VGB 2006
## 4806                                British Virgin Islands    VG   VGB 2005
## 4807                                British Virgin Islands    VG   VGB 2004
## 4808                                British Virgin Islands    VG   VGB 2003
## 4809                                British Virgin Islands    VG   VGB 2002
## 4810                                British Virgin Islands    VG   VGB 2001
## 4811                                British Virgin Islands    VG   VGB 2000
## 4812                                British Virgin Islands    VG   VGB 1999
## 4813                                British Virgin Islands    VG   VGB 1998
## 4814                                British Virgin Islands    VG   VGB 1997
## 4815                                British Virgin Islands    VG   VGB 1996
## 4816                                British Virgin Islands    VG   VGB 1995
## 4817                                British Virgin Islands    VG   VGB 1994
## 4818                                British Virgin Islands    VG   VGB 1993
## 4819                                British Virgin Islands    VG   VGB 1992
## 4820                                British Virgin Islands    VG   VGB 1991
## 4821                                British Virgin Islands    VG   VGB 1990
## 4822                                British Virgin Islands    VG   VGB 1989
## 4823                                British Virgin Islands    VG   VGB 1988
## 4824                                British Virgin Islands    VG   VGB 1987
## 4825                                British Virgin Islands    VG   VGB 1986
## 4826                                British Virgin Islands    VG   VGB 1985
## 4827                                British Virgin Islands    VG   VGB 1984
## 4828                                British Virgin Islands    VG   VGB 1983
## 4829                                British Virgin Islands    VG   VGB 1982
## 4830                                British Virgin Islands    VG   VGB 1981
## 4831                                British Virgin Islands    VG   VGB 1980
## 4832                                British Virgin Islands    VG   VGB 1979
## 4833                                British Virgin Islands    VG   VGB 1978
## 4834                                British Virgin Islands    VG   VGB 1977
## 4835                                British Virgin Islands    VG   VGB 1976
## 4836                                British Virgin Islands    VG   VGB 1975
## 4837                                British Virgin Islands    VG   VGB 1974
## 4838                                British Virgin Islands    VG   VGB 1973
## 4839                                British Virgin Islands    VG   VGB 1972
## 4840                                British Virgin Islands    VG   VGB 1971
## 4841                                British Virgin Islands    VG   VGB 1970
## 4842                                British Virgin Islands    VG   VGB 1969
## 4843                                British Virgin Islands    VG   VGB 1968
## 4844                                British Virgin Islands    VG   VGB 1967
## 4845                                British Virgin Islands    VG   VGB 1966
## 4846                                British Virgin Islands    VG   VGB 1965
## 4847                                British Virgin Islands    VG   VGB 1964
## 4848                                British Virgin Islands    VG   VGB 1963
## 4849                                British Virgin Islands    VG   VGB 1962
## 4850                                British Virgin Islands    VG   VGB 1961
## 4851                                British Virgin Islands    VG   VGB 1960
## 4852                                     Brunei Darussalam    BN   BRN 2022
## 4853                                     Brunei Darussalam    BN   BRN 2021
## 4854                                     Brunei Darussalam    BN   BRN 2020
## 4855                                     Brunei Darussalam    BN   BRN 2019
## 4856                                     Brunei Darussalam    BN   BRN 2018
## 4857                                     Brunei Darussalam    BN   BRN 2017
## 4858                                     Brunei Darussalam    BN   BRN 2016
## 4859                                     Brunei Darussalam    BN   BRN 2015
## 4860                                     Brunei Darussalam    BN   BRN 2014
## 4861                                     Brunei Darussalam    BN   BRN 2013
## 4862                                     Brunei Darussalam    BN   BRN 2012
## 4863                                     Brunei Darussalam    BN   BRN 2011
## 4864                                     Brunei Darussalam    BN   BRN 2010
## 4865                                     Brunei Darussalam    BN   BRN 2009
## 4866                                     Brunei Darussalam    BN   BRN 2008
## 4867                                     Brunei Darussalam    BN   BRN 2007
## 4868                                     Brunei Darussalam    BN   BRN 2006
## 4869                                     Brunei Darussalam    BN   BRN 2005
## 4870                                     Brunei Darussalam    BN   BRN 2004
## 4871                                     Brunei Darussalam    BN   BRN 2003
## 4872                                     Brunei Darussalam    BN   BRN 2002
## 4873                                     Brunei Darussalam    BN   BRN 2001
## 4874                                     Brunei Darussalam    BN   BRN 2000
## 4875                                     Brunei Darussalam    BN   BRN 1999
## 4876                                     Brunei Darussalam    BN   BRN 1998
## 4877                                     Brunei Darussalam    BN   BRN 1997
## 4878                                     Brunei Darussalam    BN   BRN 1996
## 4879                                     Brunei Darussalam    BN   BRN 1995
## 4880                                     Brunei Darussalam    BN   BRN 1994
## 4881                                     Brunei Darussalam    BN   BRN 1993
## 4882                                     Brunei Darussalam    BN   BRN 1992
## 4883                                     Brunei Darussalam    BN   BRN 1991
## 4884                                     Brunei Darussalam    BN   BRN 1990
## 4885                                     Brunei Darussalam    BN   BRN 1989
## 4886                                     Brunei Darussalam    BN   BRN 1988
## 4887                                     Brunei Darussalam    BN   BRN 1987
## 4888                                     Brunei Darussalam    BN   BRN 1986
## 4889                                     Brunei Darussalam    BN   BRN 1985
## 4890                                     Brunei Darussalam    BN   BRN 1984
## 4891                                     Brunei Darussalam    BN   BRN 1983
## 4892                                     Brunei Darussalam    BN   BRN 1982
## 4893                                     Brunei Darussalam    BN   BRN 1981
## 4894                                     Brunei Darussalam    BN   BRN 1980
## 4895                                     Brunei Darussalam    BN   BRN 1979
## 4896                                     Brunei Darussalam    BN   BRN 1978
## 4897                                     Brunei Darussalam    BN   BRN 1977
## 4898                                     Brunei Darussalam    BN   BRN 1976
## 4899                                     Brunei Darussalam    BN   BRN 1975
## 4900                                     Brunei Darussalam    BN   BRN 1974
## 4901                                     Brunei Darussalam    BN   BRN 1973
## 4902                                     Brunei Darussalam    BN   BRN 1972
## 4903                                     Brunei Darussalam    BN   BRN 1971
## 4904                                     Brunei Darussalam    BN   BRN 1970
## 4905                                     Brunei Darussalam    BN   BRN 1969
## 4906                                     Brunei Darussalam    BN   BRN 1968
## 4907                                     Brunei Darussalam    BN   BRN 1967
## 4908                                     Brunei Darussalam    BN   BRN 1966
## 4909                                     Brunei Darussalam    BN   BRN 1965
## 4910                                     Brunei Darussalam    BN   BRN 1964
## 4911                                     Brunei Darussalam    BN   BRN 1963
## 4912                                     Brunei Darussalam    BN   BRN 1962
## 4913                                     Brunei Darussalam    BN   BRN 1961
## 4914                                     Brunei Darussalam    BN   BRN 1960
## 4915                                              Bulgaria    BG   BGR 2022
## 4916                                              Bulgaria    BG   BGR 2021
## 4917                                              Bulgaria    BG   BGR 2020
## 4918                                              Bulgaria    BG   BGR 2019
## 4919                                              Bulgaria    BG   BGR 2018
## 4920                                              Bulgaria    BG   BGR 2017
## 4921                                              Bulgaria    BG   BGR 2016
## 4922                                              Bulgaria    BG   BGR 2015
## 4923                                              Bulgaria    BG   BGR 2014
## 4924                                              Bulgaria    BG   BGR 2013
## 4925                                              Bulgaria    BG   BGR 2012
## 4926                                              Bulgaria    BG   BGR 2011
## 4927                                              Bulgaria    BG   BGR 2010
## 4928                                              Bulgaria    BG   BGR 2009
## 4929                                              Bulgaria    BG   BGR 2008
## 4930                                              Bulgaria    BG   BGR 2007
## 4931                                              Bulgaria    BG   BGR 2006
## 4932                                              Bulgaria    BG   BGR 2005
## 4933                                              Bulgaria    BG   BGR 2004
## 4934                                              Bulgaria    BG   BGR 2003
## 4935                                              Bulgaria    BG   BGR 2002
## 4936                                              Bulgaria    BG   BGR 2001
## 4937                                              Bulgaria    BG   BGR 2000
## 4938                                              Bulgaria    BG   BGR 1999
## 4939                                              Bulgaria    BG   BGR 1998
## 4940                                              Bulgaria    BG   BGR 1997
## 4941                                              Bulgaria    BG   BGR 1996
## 4942                                              Bulgaria    BG   BGR 1995
## 4943                                              Bulgaria    BG   BGR 1994
## 4944                                              Bulgaria    BG   BGR 1993
## 4945                                              Bulgaria    BG   BGR 1992
## 4946                                              Bulgaria    BG   BGR 1991
## 4947                                              Bulgaria    BG   BGR 1990
## 4948                                              Bulgaria    BG   BGR 1989
## 4949                                              Bulgaria    BG   BGR 1988
## 4950                                              Bulgaria    BG   BGR 1987
## 4951                                              Bulgaria    BG   BGR 1986
## 4952                                              Bulgaria    BG   BGR 1985
## 4953                                              Bulgaria    BG   BGR 1984
## 4954                                              Bulgaria    BG   BGR 1983
## 4955                                              Bulgaria    BG   BGR 1982
## 4956                                              Bulgaria    BG   BGR 1981
## 4957                                              Bulgaria    BG   BGR 1980
## 4958                                              Bulgaria    BG   BGR 1979
## 4959                                              Bulgaria    BG   BGR 1978
## 4960                                              Bulgaria    BG   BGR 1977
## 4961                                              Bulgaria    BG   BGR 1976
## 4962                                              Bulgaria    BG   BGR 1975
## 4963                                              Bulgaria    BG   BGR 1974
## 4964                                              Bulgaria    BG   BGR 1973
## 4965                                              Bulgaria    BG   BGR 1972
## 4966                                              Bulgaria    BG   BGR 1971
## 4967                                              Bulgaria    BG   BGR 1970
## 4968                                              Bulgaria    BG   BGR 1969
## 4969                                              Bulgaria    BG   BGR 1968
## 4970                                              Bulgaria    BG   BGR 1967
## 4971                                              Bulgaria    BG   BGR 1966
## 4972                                              Bulgaria    BG   BGR 1965
## 4973                                              Bulgaria    BG   BGR 1964
## 4974                                              Bulgaria    BG   BGR 1963
## 4975                                              Bulgaria    BG   BGR 1962
## 4976                                              Bulgaria    BG   BGR 1961
## 4977                                              Bulgaria    BG   BGR 1960
## 4978                                          Burkina Faso    BF   BFA 2022
## 4979                                          Burkina Faso    BF   BFA 2021
## 4980                                          Burkina Faso    BF   BFA 2020
## 4981                                          Burkina Faso    BF   BFA 2019
## 4982                                          Burkina Faso    BF   BFA 2018
## 4983                                          Burkina Faso    BF   BFA 2017
## 4984                                          Burkina Faso    BF   BFA 2016
## 4985                                          Burkina Faso    BF   BFA 2015
## 4986                                          Burkina Faso    BF   BFA 2014
## 4987                                          Burkina Faso    BF   BFA 2013
## 4988                                          Burkina Faso    BF   BFA 2012
## 4989                                          Burkina Faso    BF   BFA 2011
## 4990                                          Burkina Faso    BF   BFA 2010
## 4991                                          Burkina Faso    BF   BFA 2009
## 4992                                          Burkina Faso    BF   BFA 2008
## 4993                                          Burkina Faso    BF   BFA 2007
## 4994                                          Burkina Faso    BF   BFA 2006
## 4995                                          Burkina Faso    BF   BFA 2005
## 4996                                          Burkina Faso    BF   BFA 2004
## 4997                                          Burkina Faso    BF   BFA 2003
## 4998                                          Burkina Faso    BF   BFA 2002
## 4999                                          Burkina Faso    BF   BFA 2001
## 5000                                          Burkina Faso    BF   BFA 2000
## 5001                                          Burkina Faso    BF   BFA 1999
## 5002                                          Burkina Faso    BF   BFA 1998
## 5003                                          Burkina Faso    BF   BFA 1997
## 5004                                          Burkina Faso    BF   BFA 1996
## 5005                                          Burkina Faso    BF   BFA 1995
## 5006                                          Burkina Faso    BF   BFA 1994
## 5007                                          Burkina Faso    BF   BFA 1993
## 5008                                          Burkina Faso    BF   BFA 1992
## 5009                                          Burkina Faso    BF   BFA 1991
## 5010                                          Burkina Faso    BF   BFA 1990
## 5011                                          Burkina Faso    BF   BFA 1989
## 5012                                          Burkina Faso    BF   BFA 1988
## 5013                                          Burkina Faso    BF   BFA 1987
## 5014                                          Burkina Faso    BF   BFA 1986
## 5015                                          Burkina Faso    BF   BFA 1985
## 5016                                          Burkina Faso    BF   BFA 1984
## 5017                                          Burkina Faso    BF   BFA 1983
## 5018                                          Burkina Faso    BF   BFA 1982
## 5019                                          Burkina Faso    BF   BFA 1981
## 5020                                          Burkina Faso    BF   BFA 1980
## 5021                                          Burkina Faso    BF   BFA 1979
## 5022                                          Burkina Faso    BF   BFA 1978
## 5023                                          Burkina Faso    BF   BFA 1977
## 5024                                          Burkina Faso    BF   BFA 1976
## 5025                                          Burkina Faso    BF   BFA 1975
## 5026                                          Burkina Faso    BF   BFA 1974
## 5027                                          Burkina Faso    BF   BFA 1973
## 5028                                          Burkina Faso    BF   BFA 1972
## 5029                                          Burkina Faso    BF   BFA 1971
## 5030                                          Burkina Faso    BF   BFA 1970
## 5031                                          Burkina Faso    BF   BFA 1969
## 5032                                          Burkina Faso    BF   BFA 1968
## 5033                                          Burkina Faso    BF   BFA 1967
## 5034                                          Burkina Faso    BF   BFA 1966
## 5035                                          Burkina Faso    BF   BFA 1965
## 5036                                          Burkina Faso    BF   BFA 1964
## 5037                                          Burkina Faso    BF   BFA 1963
## 5038                                          Burkina Faso    BF   BFA 1962
## 5039                                          Burkina Faso    BF   BFA 1961
## 5040                                          Burkina Faso    BF   BFA 1960
## 5041                                               Burundi    BI   BDI 2022
## 5042                                               Burundi    BI   BDI 2021
## 5043                                               Burundi    BI   BDI 2020
## 5044                                               Burundi    BI   BDI 2019
## 5045                                               Burundi    BI   BDI 2018
## 5046                                               Burundi    BI   BDI 2017
## 5047                                               Burundi    BI   BDI 2016
## 5048                                               Burundi    BI   BDI 2015
## 5049                                               Burundi    BI   BDI 2014
## 5050                                               Burundi    BI   BDI 2013
## 5051                                               Burundi    BI   BDI 2012
## 5052                                               Burundi    BI   BDI 2011
## 5053                                               Burundi    BI   BDI 2010
## 5054                                               Burundi    BI   BDI 2009
## 5055                                               Burundi    BI   BDI 2008
## 5056                                               Burundi    BI   BDI 2007
## 5057                                               Burundi    BI   BDI 2006
## 5058                                               Burundi    BI   BDI 2005
## 5059                                               Burundi    BI   BDI 2004
## 5060                                               Burundi    BI   BDI 2003
## 5061                                               Burundi    BI   BDI 2002
## 5062                                               Burundi    BI   BDI 2001
## 5063                                               Burundi    BI   BDI 2000
## 5064                                               Burundi    BI   BDI 1999
## 5065                                               Burundi    BI   BDI 1998
## 5066                                               Burundi    BI   BDI 1997
## 5067                                               Burundi    BI   BDI 1996
## 5068                                               Burundi    BI   BDI 1995
## 5069                                               Burundi    BI   BDI 1994
## 5070                                               Burundi    BI   BDI 1993
## 5071                                               Burundi    BI   BDI 1992
## 5072                                               Burundi    BI   BDI 1991
## 5073                                               Burundi    BI   BDI 1990
## 5074                                               Burundi    BI   BDI 1989
## 5075                                               Burundi    BI   BDI 1988
## 5076                                               Burundi    BI   BDI 1987
## 5077                                               Burundi    BI   BDI 1986
## 5078                                               Burundi    BI   BDI 1985
## 5079                                               Burundi    BI   BDI 1984
## 5080                                               Burundi    BI   BDI 1983
## 5081                                               Burundi    BI   BDI 1982
## 5082                                               Burundi    BI   BDI 1981
## 5083                                               Burundi    BI   BDI 1980
## 5084                                               Burundi    BI   BDI 1979
## 5085                                               Burundi    BI   BDI 1978
## 5086                                               Burundi    BI   BDI 1977
## 5087                                               Burundi    BI   BDI 1976
## 5088                                               Burundi    BI   BDI 1975
## 5089                                               Burundi    BI   BDI 1974
## 5090                                               Burundi    BI   BDI 1973
## 5091                                               Burundi    BI   BDI 1972
## 5092                                               Burundi    BI   BDI 1971
## 5093                                               Burundi    BI   BDI 1970
## 5094                                               Burundi    BI   BDI 1969
## 5095                                               Burundi    BI   BDI 1968
## 5096                                               Burundi    BI   BDI 1967
## 5097                                               Burundi    BI   BDI 1966
## 5098                                               Burundi    BI   BDI 1965
## 5099                                               Burundi    BI   BDI 1964
## 5100                                               Burundi    BI   BDI 1963
## 5101                                               Burundi    BI   BDI 1962
## 5102                                               Burundi    BI   BDI 1961
## 5103                                               Burundi    BI   BDI 1960
## 5104                                            Cabo Verde    CV   CPV 2022
## 5105                                            Cabo Verde    CV   CPV 2021
## 5106                                            Cabo Verde    CV   CPV 2020
## 5107                                            Cabo Verde    CV   CPV 2019
## 5108                                            Cabo Verde    CV   CPV 2018
## 5109                                            Cabo Verde    CV   CPV 2017
## 5110                                            Cabo Verde    CV   CPV 2016
## 5111                                            Cabo Verde    CV   CPV 2015
## 5112                                            Cabo Verde    CV   CPV 2014
## 5113                                            Cabo Verde    CV   CPV 2013
## 5114                                            Cabo Verde    CV   CPV 2012
## 5115                                            Cabo Verde    CV   CPV 2011
## 5116                                            Cabo Verde    CV   CPV 2010
## 5117                                            Cabo Verde    CV   CPV 2009
## 5118                                            Cabo Verde    CV   CPV 2008
## 5119                                            Cabo Verde    CV   CPV 2007
## 5120                                            Cabo Verde    CV   CPV 2006
## 5121                                            Cabo Verde    CV   CPV 2005
## 5122                                            Cabo Verde    CV   CPV 2004
## 5123                                            Cabo Verde    CV   CPV 2003
## 5124                                            Cabo Verde    CV   CPV 2002
## 5125                                            Cabo Verde    CV   CPV 2001
## 5126                                            Cabo Verde    CV   CPV 2000
## 5127                                            Cabo Verde    CV   CPV 1999
## 5128                                            Cabo Verde    CV   CPV 1998
## 5129                                            Cabo Verde    CV   CPV 1997
## 5130                                            Cabo Verde    CV   CPV 1996
## 5131                                            Cabo Verde    CV   CPV 1995
## 5132                                            Cabo Verde    CV   CPV 1994
## 5133                                            Cabo Verde    CV   CPV 1993
## 5134                                            Cabo Verde    CV   CPV 1992
## 5135                                            Cabo Verde    CV   CPV 1991
## 5136                                            Cabo Verde    CV   CPV 1990
## 5137                                            Cabo Verde    CV   CPV 1989
## 5138                                            Cabo Verde    CV   CPV 1988
## 5139                                            Cabo Verde    CV   CPV 1987
## 5140                                            Cabo Verde    CV   CPV 1986
## 5141                                            Cabo Verde    CV   CPV 1985
## 5142                                            Cabo Verde    CV   CPV 1984
## 5143                                            Cabo Verde    CV   CPV 1983
## 5144                                            Cabo Verde    CV   CPV 1982
## 5145                                            Cabo Verde    CV   CPV 1981
## 5146                                            Cabo Verde    CV   CPV 1980
## 5147                                            Cabo Verde    CV   CPV 1979
## 5148                                            Cabo Verde    CV   CPV 1978
## 5149                                            Cabo Verde    CV   CPV 1977
## 5150                                            Cabo Verde    CV   CPV 1976
## 5151                                            Cabo Verde    CV   CPV 1975
## 5152                                            Cabo Verde    CV   CPV 1974
## 5153                                            Cabo Verde    CV   CPV 1973
## 5154                                            Cabo Verde    CV   CPV 1972
## 5155                                            Cabo Verde    CV   CPV 1971
## 5156                                            Cabo Verde    CV   CPV 1970
## 5157                                            Cabo Verde    CV   CPV 1969
## 5158                                            Cabo Verde    CV   CPV 1968
## 5159                                            Cabo Verde    CV   CPV 1967
## 5160                                            Cabo Verde    CV   CPV 1966
## 5161                                            Cabo Verde    CV   CPV 1965
## 5162                                            Cabo Verde    CV   CPV 1964
## 5163                                            Cabo Verde    CV   CPV 1963
## 5164                                            Cabo Verde    CV   CPV 1962
## 5165                                            Cabo Verde    CV   CPV 1961
## 5166                                            Cabo Verde    CV   CPV 1960
## 5167                                              Cambodia    KH   KHM 2022
## 5168                                              Cambodia    KH   KHM 2021
## 5169                                              Cambodia    KH   KHM 2020
## 5170                                              Cambodia    KH   KHM 2019
## 5171                                              Cambodia    KH   KHM 2018
## 5172                                              Cambodia    KH   KHM 2017
## 5173                                              Cambodia    KH   KHM 2016
## 5174                                              Cambodia    KH   KHM 2015
## 5175                                              Cambodia    KH   KHM 2014
## 5176                                              Cambodia    KH   KHM 2013
## 5177                                              Cambodia    KH   KHM 2012
## 5178                                              Cambodia    KH   KHM 2011
## 5179                                              Cambodia    KH   KHM 2010
## 5180                                              Cambodia    KH   KHM 2009
## 5181                                              Cambodia    KH   KHM 2008
## 5182                                              Cambodia    KH   KHM 2007
## 5183                                              Cambodia    KH   KHM 2006
## 5184                                              Cambodia    KH   KHM 2005
## 5185                                              Cambodia    KH   KHM 2004
## 5186                                              Cambodia    KH   KHM 2003
## 5187                                              Cambodia    KH   KHM 2002
## 5188                                              Cambodia    KH   KHM 2001
## 5189                                              Cambodia    KH   KHM 2000
## 5190                                              Cambodia    KH   KHM 1999
## 5191                                              Cambodia    KH   KHM 1998
## 5192                                              Cambodia    KH   KHM 1997
## 5193                                              Cambodia    KH   KHM 1996
## 5194                                              Cambodia    KH   KHM 1995
## 5195                                              Cambodia    KH   KHM 1994
## 5196                                              Cambodia    KH   KHM 1993
## 5197                                              Cambodia    KH   KHM 1992
## 5198                                              Cambodia    KH   KHM 1991
## 5199                                              Cambodia    KH   KHM 1990
## 5200                                              Cambodia    KH   KHM 1989
## 5201                                              Cambodia    KH   KHM 1988
## 5202                                              Cambodia    KH   KHM 1987
## 5203                                              Cambodia    KH   KHM 1986
## 5204                                              Cambodia    KH   KHM 1985
## 5205                                              Cambodia    KH   KHM 1984
## 5206                                              Cambodia    KH   KHM 1983
## 5207                                              Cambodia    KH   KHM 1982
## 5208                                              Cambodia    KH   KHM 1981
## 5209                                              Cambodia    KH   KHM 1980
## 5210                                              Cambodia    KH   KHM 1979
## 5211                                              Cambodia    KH   KHM 1978
## 5212                                              Cambodia    KH   KHM 1977
## 5213                                              Cambodia    KH   KHM 1976
## 5214                                              Cambodia    KH   KHM 1975
## 5215                                              Cambodia    KH   KHM 1974
## 5216                                              Cambodia    KH   KHM 1973
## 5217                                              Cambodia    KH   KHM 1972
## 5218                                              Cambodia    KH   KHM 1971
## 5219                                              Cambodia    KH   KHM 1970
## 5220                                              Cambodia    KH   KHM 1969
## 5221                                              Cambodia    KH   KHM 1968
## 5222                                              Cambodia    KH   KHM 1967
## 5223                                              Cambodia    KH   KHM 1966
## 5224                                              Cambodia    KH   KHM 1965
## 5225                                              Cambodia    KH   KHM 1964
## 5226                                              Cambodia    KH   KHM 1963
## 5227                                              Cambodia    KH   KHM 1962
## 5228                                              Cambodia    KH   KHM 1961
## 5229                                              Cambodia    KH   KHM 1960
## 5230                                              Cameroon    CM   CMR 2022
## 5231                                              Cameroon    CM   CMR 2021
## 5232                                              Cameroon    CM   CMR 2020
## 5233                                              Cameroon    CM   CMR 2019
## 5234                                              Cameroon    CM   CMR 2018
## 5235                                              Cameroon    CM   CMR 2017
## 5236                                              Cameroon    CM   CMR 2016
## 5237                                              Cameroon    CM   CMR 2015
## 5238                                              Cameroon    CM   CMR 2014
## 5239                                              Cameroon    CM   CMR 2013
## 5240                                              Cameroon    CM   CMR 2012
## 5241                                              Cameroon    CM   CMR 2011
## 5242                                              Cameroon    CM   CMR 2010
## 5243                                              Cameroon    CM   CMR 2009
## 5244                                              Cameroon    CM   CMR 2008
## 5245                                              Cameroon    CM   CMR 2007
## 5246                                              Cameroon    CM   CMR 2006
## 5247                                              Cameroon    CM   CMR 2005
## 5248                                              Cameroon    CM   CMR 2004
## 5249                                              Cameroon    CM   CMR 2003
## 5250                                              Cameroon    CM   CMR 2002
## 5251                                              Cameroon    CM   CMR 2001
## 5252                                              Cameroon    CM   CMR 2000
## 5253                                              Cameroon    CM   CMR 1999
## 5254                                              Cameroon    CM   CMR 1998
## 5255                                              Cameroon    CM   CMR 1997
## 5256                                              Cameroon    CM   CMR 1996
## 5257                                              Cameroon    CM   CMR 1995
## 5258                                              Cameroon    CM   CMR 1994
## 5259                                              Cameroon    CM   CMR 1993
## 5260                                              Cameroon    CM   CMR 1992
## 5261                                              Cameroon    CM   CMR 1991
## 5262                                              Cameroon    CM   CMR 1990
## 5263                                              Cameroon    CM   CMR 1989
## 5264                                              Cameroon    CM   CMR 1988
## 5265                                              Cameroon    CM   CMR 1987
## 5266                                              Cameroon    CM   CMR 1986
## 5267                                              Cameroon    CM   CMR 1985
## 5268                                              Cameroon    CM   CMR 1984
## 5269                                              Cameroon    CM   CMR 1983
## 5270                                              Cameroon    CM   CMR 1982
## 5271                                              Cameroon    CM   CMR 1981
## 5272                                              Cameroon    CM   CMR 1980
## 5273                                              Cameroon    CM   CMR 1979
## 5274                                              Cameroon    CM   CMR 1978
## 5275                                              Cameroon    CM   CMR 1977
## 5276                                              Cameroon    CM   CMR 1976
## 5277                                              Cameroon    CM   CMR 1975
## 5278                                              Cameroon    CM   CMR 1974
## 5279                                              Cameroon    CM   CMR 1973
## 5280                                              Cameroon    CM   CMR 1972
## 5281                                              Cameroon    CM   CMR 1971
## 5282                                              Cameroon    CM   CMR 1970
## 5283                                              Cameroon    CM   CMR 1969
## 5284                                              Cameroon    CM   CMR 1968
## 5285                                              Cameroon    CM   CMR 1967
## 5286                                              Cameroon    CM   CMR 1966
## 5287                                              Cameroon    CM   CMR 1965
## 5288                                              Cameroon    CM   CMR 1964
## 5289                                              Cameroon    CM   CMR 1963
## 5290                                              Cameroon    CM   CMR 1962
## 5291                                              Cameroon    CM   CMR 1961
## 5292                                              Cameroon    CM   CMR 1960
## 5293                                                Canada    CA   CAN 2022
## 5294                                                Canada    CA   CAN 2021
## 5295                                                Canada    CA   CAN 2020
## 5296                                                Canada    CA   CAN 2019
## 5297                                                Canada    CA   CAN 2018
## 5298                                                Canada    CA   CAN 2017
## 5299                                                Canada    CA   CAN 2016
## 5300                                                Canada    CA   CAN 2015
## 5301                                                Canada    CA   CAN 2014
## 5302                                                Canada    CA   CAN 2013
## 5303                                                Canada    CA   CAN 2012
## 5304                                                Canada    CA   CAN 2011
## 5305                                                Canada    CA   CAN 2010
## 5306                                                Canada    CA   CAN 2009
## 5307                                                Canada    CA   CAN 2008
## 5308                                                Canada    CA   CAN 2007
## 5309                                                Canada    CA   CAN 2006
## 5310                                                Canada    CA   CAN 2005
## 5311                                                Canada    CA   CAN 2004
## 5312                                                Canada    CA   CAN 2003
## 5313                                                Canada    CA   CAN 2002
## 5314                                                Canada    CA   CAN 2001
## 5315                                                Canada    CA   CAN 2000
## 5316                                                Canada    CA   CAN 1999
## 5317                                                Canada    CA   CAN 1998
## 5318                                                Canada    CA   CAN 1997
## 5319                                                Canada    CA   CAN 1996
## 5320                                                Canada    CA   CAN 1995
## 5321                                                Canada    CA   CAN 1994
## 5322                                                Canada    CA   CAN 1993
## 5323                                                Canada    CA   CAN 1992
## 5324                                                Canada    CA   CAN 1991
## 5325                                                Canada    CA   CAN 1990
## 5326                                                Canada    CA   CAN 1989
## 5327                                                Canada    CA   CAN 1988
## 5328                                                Canada    CA   CAN 1987
## 5329                                                Canada    CA   CAN 1986
## 5330                                                Canada    CA   CAN 1985
## 5331                                                Canada    CA   CAN 1984
## 5332                                                Canada    CA   CAN 1983
## 5333                                                Canada    CA   CAN 1982
## 5334                                                Canada    CA   CAN 1981
## 5335                                                Canada    CA   CAN 1980
## 5336                                                Canada    CA   CAN 1979
## 5337                                                Canada    CA   CAN 1978
## 5338                                                Canada    CA   CAN 1977
## 5339                                                Canada    CA   CAN 1976
## 5340                                                Canada    CA   CAN 1975
## 5341                                                Canada    CA   CAN 1974
## 5342                                                Canada    CA   CAN 1973
## 5343                                                Canada    CA   CAN 1972
## 5344                                                Canada    CA   CAN 1971
## 5345                                                Canada    CA   CAN 1970
## 5346                                                Canada    CA   CAN 1969
## 5347                                                Canada    CA   CAN 1968
## 5348                                                Canada    CA   CAN 1967
## 5349                                                Canada    CA   CAN 1966
## 5350                                                Canada    CA   CAN 1965
## 5351                                                Canada    CA   CAN 1964
## 5352                                                Canada    CA   CAN 1963
## 5353                                                Canada    CA   CAN 1962
## 5354                                                Canada    CA   CAN 1961
## 5355                                                Canada    CA   CAN 1960
## 5356                                        Cayman Islands    KY   CYM 2022
## 5357                                        Cayman Islands    KY   CYM 2021
## 5358                                        Cayman Islands    KY   CYM 2020
## 5359                                        Cayman Islands    KY   CYM 2019
## 5360                                        Cayman Islands    KY   CYM 2018
## 5361                                        Cayman Islands    KY   CYM 2017
## 5362                                        Cayman Islands    KY   CYM 2016
## 5363                                        Cayman Islands    KY   CYM 2015
## 5364                                        Cayman Islands    KY   CYM 2014
## 5365                                        Cayman Islands    KY   CYM 2013
## 5366                                        Cayman Islands    KY   CYM 2012
## 5367                                        Cayman Islands    KY   CYM 2011
## 5368                                        Cayman Islands    KY   CYM 2010
## 5369                                        Cayman Islands    KY   CYM 2009
## 5370                                        Cayman Islands    KY   CYM 2008
## 5371                                        Cayman Islands    KY   CYM 2007
## 5372                                        Cayman Islands    KY   CYM 2006
## 5373                                        Cayman Islands    KY   CYM 2005
## 5374                                        Cayman Islands    KY   CYM 2004
## 5375                                        Cayman Islands    KY   CYM 2003
## 5376                                        Cayman Islands    KY   CYM 2002
## 5377                                        Cayman Islands    KY   CYM 2001
## 5378                                        Cayman Islands    KY   CYM 2000
## 5379                                        Cayman Islands    KY   CYM 1999
## 5380                                        Cayman Islands    KY   CYM 1998
## 5381                                        Cayman Islands    KY   CYM 1997
## 5382                                        Cayman Islands    KY   CYM 1996
## 5383                                        Cayman Islands    KY   CYM 1995
## 5384                                        Cayman Islands    KY   CYM 1994
## 5385                                        Cayman Islands    KY   CYM 1993
## 5386                                        Cayman Islands    KY   CYM 1992
## 5387                                        Cayman Islands    KY   CYM 1991
## 5388                                        Cayman Islands    KY   CYM 1990
## 5389                                        Cayman Islands    KY   CYM 1989
## 5390                                        Cayman Islands    KY   CYM 1988
## 5391                                        Cayman Islands    KY   CYM 1987
## 5392                                        Cayman Islands    KY   CYM 1986
## 5393                                        Cayman Islands    KY   CYM 1985
## 5394                                        Cayman Islands    KY   CYM 1984
## 5395                                        Cayman Islands    KY   CYM 1983
## 5396                                        Cayman Islands    KY   CYM 1982
## 5397                                        Cayman Islands    KY   CYM 1981
## 5398                                        Cayman Islands    KY   CYM 1980
## 5399                                        Cayman Islands    KY   CYM 1979
## 5400                                        Cayman Islands    KY   CYM 1978
## 5401                                        Cayman Islands    KY   CYM 1977
## 5402                                        Cayman Islands    KY   CYM 1976
## 5403                                        Cayman Islands    KY   CYM 1975
## 5404                                        Cayman Islands    KY   CYM 1974
## 5405                                        Cayman Islands    KY   CYM 1973
## 5406                                        Cayman Islands    KY   CYM 1972
## 5407                                        Cayman Islands    KY   CYM 1971
## 5408                                        Cayman Islands    KY   CYM 1970
## 5409                                        Cayman Islands    KY   CYM 1969
## 5410                                        Cayman Islands    KY   CYM 1968
## 5411                                        Cayman Islands    KY   CYM 1967
## 5412                                        Cayman Islands    KY   CYM 1966
## 5413                                        Cayman Islands    KY   CYM 1965
## 5414                                        Cayman Islands    KY   CYM 1964
## 5415                                        Cayman Islands    KY   CYM 1963
## 5416                                        Cayman Islands    KY   CYM 1962
## 5417                                        Cayman Islands    KY   CYM 1961
## 5418                                        Cayman Islands    KY   CYM 1960
## 5419                              Central African Republic    CF   CAF 2022
## 5420                              Central African Republic    CF   CAF 2021
## 5421                              Central African Republic    CF   CAF 2020
## 5422                              Central African Republic    CF   CAF 2019
## 5423                              Central African Republic    CF   CAF 2018
## 5424                              Central African Republic    CF   CAF 2017
## 5425                              Central African Republic    CF   CAF 2016
## 5426                              Central African Republic    CF   CAF 2015
## 5427                              Central African Republic    CF   CAF 2014
## 5428                              Central African Republic    CF   CAF 2013
## 5429                              Central African Republic    CF   CAF 2012
## 5430                              Central African Republic    CF   CAF 2011
## 5431                              Central African Republic    CF   CAF 2010
## 5432                              Central African Republic    CF   CAF 2009
## 5433                              Central African Republic    CF   CAF 2008
## 5434                              Central African Republic    CF   CAF 2007
## 5435                              Central African Republic    CF   CAF 2006
## 5436                              Central African Republic    CF   CAF 2005
## 5437                              Central African Republic    CF   CAF 2004
## 5438                              Central African Republic    CF   CAF 2003
## 5439                              Central African Republic    CF   CAF 2002
## 5440                              Central African Republic    CF   CAF 2001
## 5441                              Central African Republic    CF   CAF 2000
## 5442                              Central African Republic    CF   CAF 1999
## 5443                              Central African Republic    CF   CAF 1998
## 5444                              Central African Republic    CF   CAF 1997
## 5445                              Central African Republic    CF   CAF 1996
## 5446                              Central African Republic    CF   CAF 1995
## 5447                              Central African Republic    CF   CAF 1994
## 5448                              Central African Republic    CF   CAF 1993
## 5449                              Central African Republic    CF   CAF 1992
## 5450                              Central African Republic    CF   CAF 1991
## 5451                              Central African Republic    CF   CAF 1990
## 5452                              Central African Republic    CF   CAF 1989
## 5453                              Central African Republic    CF   CAF 1988
## 5454                              Central African Republic    CF   CAF 1987
## 5455                              Central African Republic    CF   CAF 1986
## 5456                              Central African Republic    CF   CAF 1985
## 5457                              Central African Republic    CF   CAF 1984
## 5458                              Central African Republic    CF   CAF 1983
## 5459                              Central African Republic    CF   CAF 1982
## 5460                              Central African Republic    CF   CAF 1981
## 5461                              Central African Republic    CF   CAF 1980
## 5462                              Central African Republic    CF   CAF 1979
## 5463                              Central African Republic    CF   CAF 1978
## 5464                              Central African Republic    CF   CAF 1977
## 5465                              Central African Republic    CF   CAF 1976
## 5466                              Central African Republic    CF   CAF 1975
## 5467                              Central African Republic    CF   CAF 1974
## 5468                              Central African Republic    CF   CAF 1973
## 5469                              Central African Republic    CF   CAF 1972
## 5470                              Central African Republic    CF   CAF 1971
## 5471                              Central African Republic    CF   CAF 1970
## 5472                              Central African Republic    CF   CAF 1969
## 5473                              Central African Republic    CF   CAF 1968
## 5474                              Central African Republic    CF   CAF 1967
## 5475                              Central African Republic    CF   CAF 1966
## 5476                              Central African Republic    CF   CAF 1965
## 5477                              Central African Republic    CF   CAF 1964
## 5478                              Central African Republic    CF   CAF 1963
## 5479                              Central African Republic    CF   CAF 1962
## 5480                              Central African Republic    CF   CAF 1961
## 5481                              Central African Republic    CF   CAF 1960
## 5482                                                  Chad    TD   TCD 2022
## 5483                                                  Chad    TD   TCD 2021
## 5484                                                  Chad    TD   TCD 2020
## 5485                                                  Chad    TD   TCD 2019
## 5486                                                  Chad    TD   TCD 2018
## 5487                                                  Chad    TD   TCD 2017
## 5488                                                  Chad    TD   TCD 2016
## 5489                                                  Chad    TD   TCD 2015
## 5490                                                  Chad    TD   TCD 2014
## 5491                                                  Chad    TD   TCD 2013
## 5492                                                  Chad    TD   TCD 2012
## 5493                                                  Chad    TD   TCD 2011
## 5494                                                  Chad    TD   TCD 2010
## 5495                                                  Chad    TD   TCD 2009
## 5496                                                  Chad    TD   TCD 2008
## 5497                                                  Chad    TD   TCD 2007
## 5498                                                  Chad    TD   TCD 2006
## 5499                                                  Chad    TD   TCD 2005
## 5500                                                  Chad    TD   TCD 2004
## 5501                                                  Chad    TD   TCD 2003
## 5502                                                  Chad    TD   TCD 2002
## 5503                                                  Chad    TD   TCD 2001
## 5504                                                  Chad    TD   TCD 2000
## 5505                                                  Chad    TD   TCD 1999
## 5506                                                  Chad    TD   TCD 1998
## 5507                                                  Chad    TD   TCD 1997
## 5508                                                  Chad    TD   TCD 1996
## 5509                                                  Chad    TD   TCD 1995
## 5510                                                  Chad    TD   TCD 1994
## 5511                                                  Chad    TD   TCD 1993
## 5512                                                  Chad    TD   TCD 1992
## 5513                                                  Chad    TD   TCD 1991
## 5514                                                  Chad    TD   TCD 1990
## 5515                                                  Chad    TD   TCD 1989
## 5516                                                  Chad    TD   TCD 1988
## 5517                                                  Chad    TD   TCD 1987
## 5518                                                  Chad    TD   TCD 1986
## 5519                                                  Chad    TD   TCD 1985
## 5520                                                  Chad    TD   TCD 1984
## 5521                                                  Chad    TD   TCD 1983
## 5522                                                  Chad    TD   TCD 1982
## 5523                                                  Chad    TD   TCD 1981
## 5524                                                  Chad    TD   TCD 1980
## 5525                                                  Chad    TD   TCD 1979
## 5526                                                  Chad    TD   TCD 1978
## 5527                                                  Chad    TD   TCD 1977
## 5528                                                  Chad    TD   TCD 1976
## 5529                                                  Chad    TD   TCD 1975
## 5530                                                  Chad    TD   TCD 1974
## 5531                                                  Chad    TD   TCD 1973
## 5532                                                  Chad    TD   TCD 1972
## 5533                                                  Chad    TD   TCD 1971
## 5534                                                  Chad    TD   TCD 1970
## 5535                                                  Chad    TD   TCD 1969
## 5536                                                  Chad    TD   TCD 1968
## 5537                                                  Chad    TD   TCD 1967
## 5538                                                  Chad    TD   TCD 1966
## 5539                                                  Chad    TD   TCD 1965
## 5540                                                  Chad    TD   TCD 1964
## 5541                                                  Chad    TD   TCD 1963
## 5542                                                  Chad    TD   TCD 1962
## 5543                                                  Chad    TD   TCD 1961
## 5544                                                  Chad    TD   TCD 1960
## 5545                                       Channel Islands    JG   CHI 2022
## 5546                                       Channel Islands    JG   CHI 2021
## 5547                                       Channel Islands    JG   CHI 2020
## 5548                                       Channel Islands    JG   CHI 2019
## 5549                                       Channel Islands    JG   CHI 2018
## 5550                                       Channel Islands    JG   CHI 2017
## 5551                                       Channel Islands    JG   CHI 2016
## 5552                                       Channel Islands    JG   CHI 2015
## 5553                                       Channel Islands    JG   CHI 2014
## 5554                                       Channel Islands    JG   CHI 2013
## 5555                                       Channel Islands    JG   CHI 2012
## 5556                                       Channel Islands    JG   CHI 2011
## 5557                                       Channel Islands    JG   CHI 2010
## 5558                                       Channel Islands    JG   CHI 2009
## 5559                                       Channel Islands    JG   CHI 2008
## 5560                                       Channel Islands    JG   CHI 2007
## 5561                                       Channel Islands    JG   CHI 2006
## 5562                                       Channel Islands    JG   CHI 2005
## 5563                                       Channel Islands    JG   CHI 2004
## 5564                                       Channel Islands    JG   CHI 2003
## 5565                                       Channel Islands    JG   CHI 2002
## 5566                                       Channel Islands    JG   CHI 2001
## 5567                                       Channel Islands    JG   CHI 2000
## 5568                                       Channel Islands    JG   CHI 1999
## 5569                                       Channel Islands    JG   CHI 1998
## 5570                                       Channel Islands    JG   CHI 1997
## 5571                                       Channel Islands    JG   CHI 1996
## 5572                                       Channel Islands    JG   CHI 1995
## 5573                                       Channel Islands    JG   CHI 1994
## 5574                                       Channel Islands    JG   CHI 1993
## 5575                                       Channel Islands    JG   CHI 1992
## 5576                                       Channel Islands    JG   CHI 1991
## 5577                                       Channel Islands    JG   CHI 1990
## 5578                                       Channel Islands    JG   CHI 1989
## 5579                                       Channel Islands    JG   CHI 1988
## 5580                                       Channel Islands    JG   CHI 1987
## 5581                                       Channel Islands    JG   CHI 1986
## 5582                                       Channel Islands    JG   CHI 1985
## 5583                                       Channel Islands    JG   CHI 1984
## 5584                                       Channel Islands    JG   CHI 1983
## 5585                                       Channel Islands    JG   CHI 1982
## 5586                                       Channel Islands    JG   CHI 1981
## 5587                                       Channel Islands    JG   CHI 1980
## 5588                                       Channel Islands    JG   CHI 1979
## 5589                                       Channel Islands    JG   CHI 1978
## 5590                                       Channel Islands    JG   CHI 1977
## 5591                                       Channel Islands    JG   CHI 1976
## 5592                                       Channel Islands    JG   CHI 1975
## 5593                                       Channel Islands    JG   CHI 1974
## 5594                                       Channel Islands    JG   CHI 1973
## 5595                                       Channel Islands    JG   CHI 1972
## 5596                                       Channel Islands    JG   CHI 1971
## 5597                                       Channel Islands    JG   CHI 1970
## 5598                                       Channel Islands    JG   CHI 1969
## 5599                                       Channel Islands    JG   CHI 1968
## 5600                                       Channel Islands    JG   CHI 1967
## 5601                                       Channel Islands    JG   CHI 1966
## 5602                                       Channel Islands    JG   CHI 1965
## 5603                                       Channel Islands    JG   CHI 1964
## 5604                                       Channel Islands    JG   CHI 1963
## 5605                                       Channel Islands    JG   CHI 1962
## 5606                                       Channel Islands    JG   CHI 1961
## 5607                                       Channel Islands    JG   CHI 1960
## 5608                                                 Chile    CL   CHL 2022
## 5609                                                 Chile    CL   CHL 2021
## 5610                                                 Chile    CL   CHL 2020
## 5611                                                 Chile    CL   CHL 2019
## 5612                                                 Chile    CL   CHL 2018
## 5613                                                 Chile    CL   CHL 2017
## 5614                                                 Chile    CL   CHL 2016
## 5615                                                 Chile    CL   CHL 2015
## 5616                                                 Chile    CL   CHL 2014
## 5617                                                 Chile    CL   CHL 2013
## 5618                                                 Chile    CL   CHL 2012
## 5619                                                 Chile    CL   CHL 2011
## 5620                                                 Chile    CL   CHL 2010
## 5621                                                 Chile    CL   CHL 2009
## 5622                                                 Chile    CL   CHL 2008
## 5623                                                 Chile    CL   CHL 2007
## 5624                                                 Chile    CL   CHL 2006
## 5625                                                 Chile    CL   CHL 2005
## 5626                                                 Chile    CL   CHL 2004
## 5627                                                 Chile    CL   CHL 2003
## 5628                                                 Chile    CL   CHL 2002
## 5629                                                 Chile    CL   CHL 2001
## 5630                                                 Chile    CL   CHL 2000
## 5631                                                 Chile    CL   CHL 1999
## 5632                                                 Chile    CL   CHL 1998
## 5633                                                 Chile    CL   CHL 1997
## 5634                                                 Chile    CL   CHL 1996
## 5635                                                 Chile    CL   CHL 1995
## 5636                                                 Chile    CL   CHL 1994
## 5637                                                 Chile    CL   CHL 1993
## 5638                                                 Chile    CL   CHL 1992
## 5639                                                 Chile    CL   CHL 1991
## 5640                                                 Chile    CL   CHL 1990
## 5641                                                 Chile    CL   CHL 1989
## 5642                                                 Chile    CL   CHL 1988
## 5643                                                 Chile    CL   CHL 1987
## 5644                                                 Chile    CL   CHL 1986
## 5645                                                 Chile    CL   CHL 1985
## 5646                                                 Chile    CL   CHL 1984
## 5647                                                 Chile    CL   CHL 1983
## 5648                                                 Chile    CL   CHL 1982
## 5649                                                 Chile    CL   CHL 1981
## 5650                                                 Chile    CL   CHL 1980
## 5651                                                 Chile    CL   CHL 1979
## 5652                                                 Chile    CL   CHL 1978
## 5653                                                 Chile    CL   CHL 1977
## 5654                                                 Chile    CL   CHL 1976
## 5655                                                 Chile    CL   CHL 1975
## 5656                                                 Chile    CL   CHL 1974
## 5657                                                 Chile    CL   CHL 1973
## 5658                                                 Chile    CL   CHL 1972
## 5659                                                 Chile    CL   CHL 1971
## 5660                                                 Chile    CL   CHL 1970
## 5661                                                 Chile    CL   CHL 1969
## 5662                                                 Chile    CL   CHL 1968
## 5663                                                 Chile    CL   CHL 1967
## 5664                                                 Chile    CL   CHL 1966
## 5665                                                 Chile    CL   CHL 1965
## 5666                                                 Chile    CL   CHL 1964
## 5667                                                 Chile    CL   CHL 1963
## 5668                                                 Chile    CL   CHL 1962
## 5669                                                 Chile    CL   CHL 1961
## 5670                                                 Chile    CL   CHL 1960
## 5671                                                 China    CN   CHN 2022
## 5672                                                 China    CN   CHN 2021
## 5673                                                 China    CN   CHN 2020
## 5674                                                 China    CN   CHN 2019
## 5675                                                 China    CN   CHN 2018
## 5676                                                 China    CN   CHN 2017
## 5677                                                 China    CN   CHN 2016
## 5678                                                 China    CN   CHN 2015
## 5679                                                 China    CN   CHN 2014
## 5680                                                 China    CN   CHN 2013
## 5681                                                 China    CN   CHN 2012
## 5682                                                 China    CN   CHN 2011
## 5683                                                 China    CN   CHN 2010
## 5684                                                 China    CN   CHN 2009
## 5685                                                 China    CN   CHN 2008
## 5686                                                 China    CN   CHN 2007
## 5687                                                 China    CN   CHN 2006
## 5688                                                 China    CN   CHN 2005
## 5689                                                 China    CN   CHN 2004
## 5690                                                 China    CN   CHN 2003
## 5691                                                 China    CN   CHN 2002
## 5692                                                 China    CN   CHN 2001
## 5693                                                 China    CN   CHN 2000
## 5694                                                 China    CN   CHN 1999
## 5695                                                 China    CN   CHN 1998
## 5696                                                 China    CN   CHN 1997
## 5697                                                 China    CN   CHN 1996
## 5698                                                 China    CN   CHN 1995
## 5699                                                 China    CN   CHN 1994
## 5700                                                 China    CN   CHN 1993
## 5701                                                 China    CN   CHN 1992
## 5702                                                 China    CN   CHN 1991
## 5703                                                 China    CN   CHN 1990
## 5704                                                 China    CN   CHN 1989
## 5705                                                 China    CN   CHN 1988
## 5706                                                 China    CN   CHN 1987
## 5707                                                 China    CN   CHN 1986
## 5708                                                 China    CN   CHN 1985
## 5709                                                 China    CN   CHN 1984
## 5710                                                 China    CN   CHN 1983
## 5711                                                 China    CN   CHN 1982
## 5712                                                 China    CN   CHN 1981
## 5713                                                 China    CN   CHN 1980
## 5714                                                 China    CN   CHN 1979
## 5715                                                 China    CN   CHN 1978
## 5716                                                 China    CN   CHN 1977
## 5717                                                 China    CN   CHN 1976
## 5718                                                 China    CN   CHN 1975
## 5719                                                 China    CN   CHN 1974
## 5720                                                 China    CN   CHN 1973
## 5721                                                 China    CN   CHN 1972
## 5722                                                 China    CN   CHN 1971
## 5723                                                 China    CN   CHN 1970
## 5724                                                 China    CN   CHN 1969
## 5725                                                 China    CN   CHN 1968
## 5726                                                 China    CN   CHN 1967
## 5727                                                 China    CN   CHN 1966
## 5728                                                 China    CN   CHN 1965
## 5729                                                 China    CN   CHN 1964
## 5730                                                 China    CN   CHN 1963
## 5731                                                 China    CN   CHN 1962
## 5732                                                 China    CN   CHN 1961
## 5733                                                 China    CN   CHN 1960
## 5734                                              Colombia    CO   COL 2022
## 5735                                              Colombia    CO   COL 2021
## 5736                                              Colombia    CO   COL 2020
## 5737                                              Colombia    CO   COL 2019
## 5738                                              Colombia    CO   COL 2018
## 5739                                              Colombia    CO   COL 2017
## 5740                                              Colombia    CO   COL 2016
## 5741                                              Colombia    CO   COL 2015
## 5742                                              Colombia    CO   COL 2014
## 5743                                              Colombia    CO   COL 2013
## 5744                                              Colombia    CO   COL 2012
## 5745                                              Colombia    CO   COL 2011
## 5746                                              Colombia    CO   COL 2010
## 5747                                              Colombia    CO   COL 2009
## 5748                                              Colombia    CO   COL 2008
## 5749                                              Colombia    CO   COL 2007
## 5750                                              Colombia    CO   COL 2006
## 5751                                              Colombia    CO   COL 2005
## 5752                                              Colombia    CO   COL 2004
## 5753                                              Colombia    CO   COL 2003
## 5754                                              Colombia    CO   COL 2002
## 5755                                              Colombia    CO   COL 2001
## 5756                                              Colombia    CO   COL 2000
## 5757                                              Colombia    CO   COL 1999
## 5758                                              Colombia    CO   COL 1998
## 5759                                              Colombia    CO   COL 1997
## 5760                                              Colombia    CO   COL 1996
## 5761                                              Colombia    CO   COL 1995
## 5762                                              Colombia    CO   COL 1994
## 5763                                              Colombia    CO   COL 1993
## 5764                                              Colombia    CO   COL 1992
## 5765                                              Colombia    CO   COL 1991
## 5766                                              Colombia    CO   COL 1990
## 5767                                              Colombia    CO   COL 1989
## 5768                                              Colombia    CO   COL 1988
## 5769                                              Colombia    CO   COL 1987
## 5770                                              Colombia    CO   COL 1986
## 5771                                              Colombia    CO   COL 1985
## 5772                                              Colombia    CO   COL 1984
## 5773                                              Colombia    CO   COL 1983
## 5774                                              Colombia    CO   COL 1982
## 5775                                              Colombia    CO   COL 1981
## 5776                                              Colombia    CO   COL 1980
## 5777                                              Colombia    CO   COL 1979
## 5778                                              Colombia    CO   COL 1978
## 5779                                              Colombia    CO   COL 1977
## 5780                                              Colombia    CO   COL 1976
## 5781                                              Colombia    CO   COL 1975
## 5782                                              Colombia    CO   COL 1974
## 5783                                              Colombia    CO   COL 1973
## 5784                                              Colombia    CO   COL 1972
## 5785                                              Colombia    CO   COL 1971
## 5786                                              Colombia    CO   COL 1970
## 5787                                              Colombia    CO   COL 1969
## 5788                                              Colombia    CO   COL 1968
## 5789                                              Colombia    CO   COL 1967
## 5790                                              Colombia    CO   COL 1966
## 5791                                              Colombia    CO   COL 1965
## 5792                                              Colombia    CO   COL 1964
## 5793                                              Colombia    CO   COL 1963
## 5794                                              Colombia    CO   COL 1962
## 5795                                              Colombia    CO   COL 1961
## 5796                                              Colombia    CO   COL 1960
## 5797                                               Comoros    KM   COM 2022
## 5798                                               Comoros    KM   COM 2021
## 5799                                               Comoros    KM   COM 2020
## 5800                                               Comoros    KM   COM 2019
## 5801                                               Comoros    KM   COM 2018
## 5802                                               Comoros    KM   COM 2017
## 5803                                               Comoros    KM   COM 2016
## 5804                                               Comoros    KM   COM 2015
## 5805                                               Comoros    KM   COM 2014
## 5806                                               Comoros    KM   COM 2013
## 5807                                               Comoros    KM   COM 2012
## 5808                                               Comoros    KM   COM 2011
## 5809                                               Comoros    KM   COM 2010
## 5810                                               Comoros    KM   COM 2009
## 5811                                               Comoros    KM   COM 2008
## 5812                                               Comoros    KM   COM 2007
## 5813                                               Comoros    KM   COM 2006
## 5814                                               Comoros    KM   COM 2005
## 5815                                               Comoros    KM   COM 2004
## 5816                                               Comoros    KM   COM 2003
## 5817                                               Comoros    KM   COM 2002
## 5818                                               Comoros    KM   COM 2001
## 5819                                               Comoros    KM   COM 2000
## 5820                                               Comoros    KM   COM 1999
## 5821                                               Comoros    KM   COM 1998
## 5822                                               Comoros    KM   COM 1997
## 5823                                               Comoros    KM   COM 1996
## 5824                                               Comoros    KM   COM 1995
## 5825                                               Comoros    KM   COM 1994
## 5826                                               Comoros    KM   COM 1993
## 5827                                               Comoros    KM   COM 1992
## 5828                                               Comoros    KM   COM 1991
## 5829                                               Comoros    KM   COM 1990
## 5830                                               Comoros    KM   COM 1989
## 5831                                               Comoros    KM   COM 1988
## 5832                                               Comoros    KM   COM 1987
## 5833                                               Comoros    KM   COM 1986
## 5834                                               Comoros    KM   COM 1985
## 5835                                               Comoros    KM   COM 1984
## 5836                                               Comoros    KM   COM 1983
## 5837                                               Comoros    KM   COM 1982
## 5838                                               Comoros    KM   COM 1981
## 5839                                               Comoros    KM   COM 1980
## 5840                                               Comoros    KM   COM 1979
## 5841                                               Comoros    KM   COM 1978
## 5842                                               Comoros    KM   COM 1977
## 5843                                               Comoros    KM   COM 1976
## 5844                                               Comoros    KM   COM 1975
## 5845                                               Comoros    KM   COM 1974
## 5846                                               Comoros    KM   COM 1973
## 5847                                               Comoros    KM   COM 1972
## 5848                                               Comoros    KM   COM 1971
## 5849                                               Comoros    KM   COM 1970
## 5850                                               Comoros    KM   COM 1969
## 5851                                               Comoros    KM   COM 1968
## 5852                                               Comoros    KM   COM 1967
## 5853                                               Comoros    KM   COM 1966
## 5854                                               Comoros    KM   COM 1965
## 5855                                               Comoros    KM   COM 1964
## 5856                                               Comoros    KM   COM 1963
## 5857                                               Comoros    KM   COM 1962
## 5858                                               Comoros    KM   COM 1961
## 5859                                               Comoros    KM   COM 1960
## 5860                                      Congo, Dem. Rep.    CD   COD 2022
## 5861                                      Congo, Dem. Rep.    CD   COD 2021
## 5862                                      Congo, Dem. Rep.    CD   COD 2020
## 5863                                      Congo, Dem. Rep.    CD   COD 2019
## 5864                                      Congo, Dem. Rep.    CD   COD 2018
## 5865                                      Congo, Dem. Rep.    CD   COD 2017
## 5866                                      Congo, Dem. Rep.    CD   COD 2016
## 5867                                      Congo, Dem. Rep.    CD   COD 2015
## 5868                                      Congo, Dem. Rep.    CD   COD 2014
## 5869                                      Congo, Dem. Rep.    CD   COD 2013
## 5870                                      Congo, Dem. Rep.    CD   COD 2012
## 5871                                      Congo, Dem. Rep.    CD   COD 2011
## 5872                                      Congo, Dem. Rep.    CD   COD 2010
## 5873                                      Congo, Dem. Rep.    CD   COD 2009
## 5874                                      Congo, Dem. Rep.    CD   COD 2008
## 5875                                      Congo, Dem. Rep.    CD   COD 2007
## 5876                                      Congo, Dem. Rep.    CD   COD 2006
## 5877                                      Congo, Dem. Rep.    CD   COD 2005
## 5878                                      Congo, Dem. Rep.    CD   COD 2004
## 5879                                      Congo, Dem. Rep.    CD   COD 2003
## 5880                                      Congo, Dem. Rep.    CD   COD 2002
## 5881                                      Congo, Dem. Rep.    CD   COD 2001
## 5882                                      Congo, Dem. Rep.    CD   COD 2000
## 5883                                      Congo, Dem. Rep.    CD   COD 1999
## 5884                                      Congo, Dem. Rep.    CD   COD 1998
## 5885                                      Congo, Dem. Rep.    CD   COD 1997
## 5886                                      Congo, Dem. Rep.    CD   COD 1996
## 5887                                      Congo, Dem. Rep.    CD   COD 1995
## 5888                                      Congo, Dem. Rep.    CD   COD 1994
## 5889                                      Congo, Dem. Rep.    CD   COD 1993
## 5890                                      Congo, Dem. Rep.    CD   COD 1992
## 5891                                      Congo, Dem. Rep.    CD   COD 1991
## 5892                                      Congo, Dem. Rep.    CD   COD 1990
## 5893                                      Congo, Dem. Rep.    CD   COD 1989
## 5894                                      Congo, Dem. Rep.    CD   COD 1988
## 5895                                      Congo, Dem. Rep.    CD   COD 1987
## 5896                                      Congo, Dem. Rep.    CD   COD 1986
## 5897                                      Congo, Dem. Rep.    CD   COD 1985
## 5898                                      Congo, Dem. Rep.    CD   COD 1984
## 5899                                      Congo, Dem. Rep.    CD   COD 1983
## 5900                                      Congo, Dem. Rep.    CD   COD 1982
## 5901                                      Congo, Dem. Rep.    CD   COD 1981
## 5902                                      Congo, Dem. Rep.    CD   COD 1980
## 5903                                      Congo, Dem. Rep.    CD   COD 1979
## 5904                                      Congo, Dem. Rep.    CD   COD 1978
## 5905                                      Congo, Dem. Rep.    CD   COD 1977
## 5906                                      Congo, Dem. Rep.    CD   COD 1976
## 5907                                      Congo, Dem. Rep.    CD   COD 1975
## 5908                                      Congo, Dem. Rep.    CD   COD 1974
## 5909                                      Congo, Dem. Rep.    CD   COD 1973
## 5910                                      Congo, Dem. Rep.    CD   COD 1972
## 5911                                      Congo, Dem. Rep.    CD   COD 1971
## 5912                                      Congo, Dem. Rep.    CD   COD 1970
## 5913                                      Congo, Dem. Rep.    CD   COD 1969
## 5914                                      Congo, Dem. Rep.    CD   COD 1968
## 5915                                      Congo, Dem. Rep.    CD   COD 1967
## 5916                                      Congo, Dem. Rep.    CD   COD 1966
## 5917                                      Congo, Dem. Rep.    CD   COD 1965
## 5918                                      Congo, Dem. Rep.    CD   COD 1964
## 5919                                      Congo, Dem. Rep.    CD   COD 1963
## 5920                                      Congo, Dem. Rep.    CD   COD 1962
## 5921                                      Congo, Dem. Rep.    CD   COD 1961
## 5922                                      Congo, Dem. Rep.    CD   COD 1960
## 5923                                           Congo, Rep.    CG   COG 2022
## 5924                                           Congo, Rep.    CG   COG 2021
## 5925                                           Congo, Rep.    CG   COG 2020
## 5926                                           Congo, Rep.    CG   COG 2019
## 5927                                           Congo, Rep.    CG   COG 2018
## 5928                                           Congo, Rep.    CG   COG 2017
## 5929                                           Congo, Rep.    CG   COG 2016
## 5930                                           Congo, Rep.    CG   COG 2015
## 5931                                           Congo, Rep.    CG   COG 2014
## 5932                                           Congo, Rep.    CG   COG 2013
## 5933                                           Congo, Rep.    CG   COG 2012
## 5934                                           Congo, Rep.    CG   COG 2011
## 5935                                           Congo, Rep.    CG   COG 2010
## 5936                                           Congo, Rep.    CG   COG 2009
## 5937                                           Congo, Rep.    CG   COG 2008
## 5938                                           Congo, Rep.    CG   COG 2007
## 5939                                           Congo, Rep.    CG   COG 2006
## 5940                                           Congo, Rep.    CG   COG 2005
## 5941                                           Congo, Rep.    CG   COG 2004
## 5942                                           Congo, Rep.    CG   COG 2003
## 5943                                           Congo, Rep.    CG   COG 2002
## 5944                                           Congo, Rep.    CG   COG 2001
## 5945                                           Congo, Rep.    CG   COG 2000
## 5946                                           Congo, Rep.    CG   COG 1999
## 5947                                           Congo, Rep.    CG   COG 1998
## 5948                                           Congo, Rep.    CG   COG 1997
## 5949                                           Congo, Rep.    CG   COG 1996
## 5950                                           Congo, Rep.    CG   COG 1995
## 5951                                           Congo, Rep.    CG   COG 1994
## 5952                                           Congo, Rep.    CG   COG 1993
## 5953                                           Congo, Rep.    CG   COG 1992
## 5954                                           Congo, Rep.    CG   COG 1991
## 5955                                           Congo, Rep.    CG   COG 1990
## 5956                                           Congo, Rep.    CG   COG 1989
## 5957                                           Congo, Rep.    CG   COG 1988
## 5958                                           Congo, Rep.    CG   COG 1987
## 5959                                           Congo, Rep.    CG   COG 1986
## 5960                                           Congo, Rep.    CG   COG 1985
## 5961                                           Congo, Rep.    CG   COG 1984
## 5962                                           Congo, Rep.    CG   COG 1983
## 5963                                           Congo, Rep.    CG   COG 1982
## 5964                                           Congo, Rep.    CG   COG 1981
## 5965                                           Congo, Rep.    CG   COG 1980
## 5966                                           Congo, Rep.    CG   COG 1979
## 5967                                           Congo, Rep.    CG   COG 1978
## 5968                                           Congo, Rep.    CG   COG 1977
## 5969                                           Congo, Rep.    CG   COG 1976
## 5970                                           Congo, Rep.    CG   COG 1975
## 5971                                           Congo, Rep.    CG   COG 1974
## 5972                                           Congo, Rep.    CG   COG 1973
## 5973                                           Congo, Rep.    CG   COG 1972
## 5974                                           Congo, Rep.    CG   COG 1971
## 5975                                           Congo, Rep.    CG   COG 1970
## 5976                                           Congo, Rep.    CG   COG 1969
## 5977                                           Congo, Rep.    CG   COG 1968
## 5978                                           Congo, Rep.    CG   COG 1967
## 5979                                           Congo, Rep.    CG   COG 1966
## 5980                                           Congo, Rep.    CG   COG 1965
## 5981                                           Congo, Rep.    CG   COG 1964
## 5982                                           Congo, Rep.    CG   COG 1963
## 5983                                           Congo, Rep.    CG   COG 1962
## 5984                                           Congo, Rep.    CG   COG 1961
## 5985                                           Congo, Rep.    CG   COG 1960
## 5986                                            Costa Rica    CR   CRI 2022
## 5987                                            Costa Rica    CR   CRI 2021
## 5988                                            Costa Rica    CR   CRI 2020
## 5989                                            Costa Rica    CR   CRI 2019
## 5990                                            Costa Rica    CR   CRI 2018
## 5991                                            Costa Rica    CR   CRI 2017
## 5992                                            Costa Rica    CR   CRI 2016
## 5993                                            Costa Rica    CR   CRI 2015
## 5994                                            Costa Rica    CR   CRI 2014
## 5995                                            Costa Rica    CR   CRI 2013
## 5996                                            Costa Rica    CR   CRI 2012
## 5997                                            Costa Rica    CR   CRI 2011
## 5998                                            Costa Rica    CR   CRI 2010
## 5999                                            Costa Rica    CR   CRI 2009
## 6000                                            Costa Rica    CR   CRI 2008
## 6001                                            Costa Rica    CR   CRI 2007
## 6002                                            Costa Rica    CR   CRI 2006
## 6003                                            Costa Rica    CR   CRI 2005
## 6004                                            Costa Rica    CR   CRI 2004
## 6005                                            Costa Rica    CR   CRI 2003
## 6006                                            Costa Rica    CR   CRI 2002
## 6007                                            Costa Rica    CR   CRI 2001
## 6008                                            Costa Rica    CR   CRI 2000
## 6009                                            Costa Rica    CR   CRI 1999
## 6010                                            Costa Rica    CR   CRI 1998
## 6011                                            Costa Rica    CR   CRI 1997
## 6012                                            Costa Rica    CR   CRI 1996
## 6013                                            Costa Rica    CR   CRI 1995
## 6014                                            Costa Rica    CR   CRI 1994
## 6015                                            Costa Rica    CR   CRI 1993
## 6016                                            Costa Rica    CR   CRI 1992
## 6017                                            Costa Rica    CR   CRI 1991
## 6018                                            Costa Rica    CR   CRI 1990
## 6019                                            Costa Rica    CR   CRI 1989
## 6020                                            Costa Rica    CR   CRI 1988
## 6021                                            Costa Rica    CR   CRI 1987
## 6022                                            Costa Rica    CR   CRI 1986
## 6023                                            Costa Rica    CR   CRI 1985
## 6024                                            Costa Rica    CR   CRI 1984
## 6025                                            Costa Rica    CR   CRI 1983
## 6026                                            Costa Rica    CR   CRI 1982
## 6027                                            Costa Rica    CR   CRI 1981
## 6028                                            Costa Rica    CR   CRI 1980
## 6029                                            Costa Rica    CR   CRI 1979
## 6030                                            Costa Rica    CR   CRI 1978
## 6031                                            Costa Rica    CR   CRI 1977
## 6032                                            Costa Rica    CR   CRI 1976
## 6033                                            Costa Rica    CR   CRI 1975
## 6034                                            Costa Rica    CR   CRI 1974
## 6035                                            Costa Rica    CR   CRI 1973
## 6036                                            Costa Rica    CR   CRI 1972
## 6037                                            Costa Rica    CR   CRI 1971
## 6038                                            Costa Rica    CR   CRI 1970
## 6039                                            Costa Rica    CR   CRI 1969
## 6040                                            Costa Rica    CR   CRI 1968
## 6041                                            Costa Rica    CR   CRI 1967
## 6042                                            Costa Rica    CR   CRI 1966
## 6043                                            Costa Rica    CR   CRI 1965
## 6044                                            Costa Rica    CR   CRI 1964
## 6045                                            Costa Rica    CR   CRI 1963
## 6046                                            Costa Rica    CR   CRI 1962
## 6047                                            Costa Rica    CR   CRI 1961
## 6048                                            Costa Rica    CR   CRI 1960
## 6049                                         Cote d'Ivoire    CI   CIV 2022
## 6050                                         Cote d'Ivoire    CI   CIV 2021
## 6051                                         Cote d'Ivoire    CI   CIV 2020
## 6052                                         Cote d'Ivoire    CI   CIV 2019
## 6053                                         Cote d'Ivoire    CI   CIV 2018
## 6054                                         Cote d'Ivoire    CI   CIV 2017
## 6055                                         Cote d'Ivoire    CI   CIV 2016
## 6056                                         Cote d'Ivoire    CI   CIV 2015
## 6057                                         Cote d'Ivoire    CI   CIV 2014
## 6058                                         Cote d'Ivoire    CI   CIV 2013
## 6059                                         Cote d'Ivoire    CI   CIV 2012
## 6060                                         Cote d'Ivoire    CI   CIV 2011
## 6061                                         Cote d'Ivoire    CI   CIV 2010
## 6062                                         Cote d'Ivoire    CI   CIV 2009
## 6063                                         Cote d'Ivoire    CI   CIV 2008
## 6064                                         Cote d'Ivoire    CI   CIV 2007
## 6065                                         Cote d'Ivoire    CI   CIV 2006
## 6066                                         Cote d'Ivoire    CI   CIV 2005
## 6067                                         Cote d'Ivoire    CI   CIV 2004
## 6068                                         Cote d'Ivoire    CI   CIV 2003
## 6069                                         Cote d'Ivoire    CI   CIV 2002
## 6070                                         Cote d'Ivoire    CI   CIV 2001
## 6071                                         Cote d'Ivoire    CI   CIV 2000
## 6072                                         Cote d'Ivoire    CI   CIV 1999
## 6073                                         Cote d'Ivoire    CI   CIV 1998
## 6074                                         Cote d'Ivoire    CI   CIV 1997
## 6075                                         Cote d'Ivoire    CI   CIV 1996
## 6076                                         Cote d'Ivoire    CI   CIV 1995
## 6077                                         Cote d'Ivoire    CI   CIV 1994
## 6078                                         Cote d'Ivoire    CI   CIV 1993
## 6079                                         Cote d'Ivoire    CI   CIV 1992
## 6080                                         Cote d'Ivoire    CI   CIV 1991
## 6081                                         Cote d'Ivoire    CI   CIV 1990
## 6082                                         Cote d'Ivoire    CI   CIV 1989
## 6083                                         Cote d'Ivoire    CI   CIV 1988
## 6084                                         Cote d'Ivoire    CI   CIV 1987
## 6085                                         Cote d'Ivoire    CI   CIV 1986
## 6086                                         Cote d'Ivoire    CI   CIV 1985
## 6087                                         Cote d'Ivoire    CI   CIV 1984
## 6088                                         Cote d'Ivoire    CI   CIV 1983
## 6089                                         Cote d'Ivoire    CI   CIV 1982
## 6090                                         Cote d'Ivoire    CI   CIV 1981
## 6091                                         Cote d'Ivoire    CI   CIV 1980
## 6092                                         Cote d'Ivoire    CI   CIV 1979
## 6093                                         Cote d'Ivoire    CI   CIV 1978
## 6094                                         Cote d'Ivoire    CI   CIV 1977
## 6095                                         Cote d'Ivoire    CI   CIV 1976
## 6096                                         Cote d'Ivoire    CI   CIV 1975
## 6097                                         Cote d'Ivoire    CI   CIV 1974
## 6098                                         Cote d'Ivoire    CI   CIV 1973
## 6099                                         Cote d'Ivoire    CI   CIV 1972
## 6100                                         Cote d'Ivoire    CI   CIV 1971
## 6101                                         Cote d'Ivoire    CI   CIV 1970
## 6102                                         Cote d'Ivoire    CI   CIV 1969
## 6103                                         Cote d'Ivoire    CI   CIV 1968
## 6104                                         Cote d'Ivoire    CI   CIV 1967
## 6105                                         Cote d'Ivoire    CI   CIV 1966
## 6106                                         Cote d'Ivoire    CI   CIV 1965
## 6107                                         Cote d'Ivoire    CI   CIV 1964
## 6108                                         Cote d'Ivoire    CI   CIV 1963
## 6109                                         Cote d'Ivoire    CI   CIV 1962
## 6110                                         Cote d'Ivoire    CI   CIV 1961
## 6111                                         Cote d'Ivoire    CI   CIV 1960
## 6112                                               Croatia    HR   HRV 2022
## 6113                                               Croatia    HR   HRV 2021
## 6114                                               Croatia    HR   HRV 2020
## 6115                                               Croatia    HR   HRV 2019
## 6116                                               Croatia    HR   HRV 2018
## 6117                                               Croatia    HR   HRV 2017
## 6118                                               Croatia    HR   HRV 2016
## 6119                                               Croatia    HR   HRV 2015
## 6120                                               Croatia    HR   HRV 2014
## 6121                                               Croatia    HR   HRV 2013
## 6122                                               Croatia    HR   HRV 2012
## 6123                                               Croatia    HR   HRV 2011
## 6124                                               Croatia    HR   HRV 2010
## 6125                                               Croatia    HR   HRV 2009
## 6126                                               Croatia    HR   HRV 2008
## 6127                                               Croatia    HR   HRV 2007
## 6128                                               Croatia    HR   HRV 2006
## 6129                                               Croatia    HR   HRV 2005
## 6130                                               Croatia    HR   HRV 2004
## 6131                                               Croatia    HR   HRV 2003
## 6132                                               Croatia    HR   HRV 2002
## 6133                                               Croatia    HR   HRV 2001
## 6134                                               Croatia    HR   HRV 2000
## 6135                                               Croatia    HR   HRV 1999
## 6136                                               Croatia    HR   HRV 1998
## 6137                                               Croatia    HR   HRV 1997
## 6138                                               Croatia    HR   HRV 1996
## 6139                                               Croatia    HR   HRV 1995
## 6140                                               Croatia    HR   HRV 1994
## 6141                                               Croatia    HR   HRV 1993
## 6142                                               Croatia    HR   HRV 1992
## 6143                                               Croatia    HR   HRV 1991
## 6144                                               Croatia    HR   HRV 1990
## 6145                                               Croatia    HR   HRV 1989
## 6146                                               Croatia    HR   HRV 1988
## 6147                                               Croatia    HR   HRV 1987
## 6148                                               Croatia    HR   HRV 1986
## 6149                                               Croatia    HR   HRV 1985
## 6150                                               Croatia    HR   HRV 1984
## 6151                                               Croatia    HR   HRV 1983
## 6152                                               Croatia    HR   HRV 1982
## 6153                                               Croatia    HR   HRV 1981
## 6154                                               Croatia    HR   HRV 1980
## 6155                                               Croatia    HR   HRV 1979
## 6156                                               Croatia    HR   HRV 1978
## 6157                                               Croatia    HR   HRV 1977
## 6158                                               Croatia    HR   HRV 1976
## 6159                                               Croatia    HR   HRV 1975
## 6160                                               Croatia    HR   HRV 1974
## 6161                                               Croatia    HR   HRV 1973
## 6162                                               Croatia    HR   HRV 1972
## 6163                                               Croatia    HR   HRV 1971
## 6164                                               Croatia    HR   HRV 1970
## 6165                                               Croatia    HR   HRV 1969
## 6166                                               Croatia    HR   HRV 1968
## 6167                                               Croatia    HR   HRV 1967
## 6168                                               Croatia    HR   HRV 1966
## 6169                                               Croatia    HR   HRV 1965
## 6170                                               Croatia    HR   HRV 1964
## 6171                                               Croatia    HR   HRV 1963
## 6172                                               Croatia    HR   HRV 1962
## 6173                                               Croatia    HR   HRV 1961
## 6174                                               Croatia    HR   HRV 1960
## 6175                                                  Cuba    CU   CUB 2022
## 6176                                                  Cuba    CU   CUB 2021
## 6177                                                  Cuba    CU   CUB 2020
## 6178                                                  Cuba    CU   CUB 2019
## 6179                                                  Cuba    CU   CUB 2018
## 6180                                                  Cuba    CU   CUB 2017
## 6181                                                  Cuba    CU   CUB 2016
## 6182                                                  Cuba    CU   CUB 2015
## 6183                                                  Cuba    CU   CUB 2014
## 6184                                                  Cuba    CU   CUB 2013
## 6185                                                  Cuba    CU   CUB 2012
## 6186                                                  Cuba    CU   CUB 2011
## 6187                                                  Cuba    CU   CUB 2010
## 6188                                                  Cuba    CU   CUB 2009
## 6189                                                  Cuba    CU   CUB 2008
## 6190                                                  Cuba    CU   CUB 2007
## 6191                                                  Cuba    CU   CUB 2006
## 6192                                                  Cuba    CU   CUB 2005
## 6193                                                  Cuba    CU   CUB 2004
## 6194                                                  Cuba    CU   CUB 2003
## 6195                                                  Cuba    CU   CUB 2002
## 6196                                                  Cuba    CU   CUB 2001
## 6197                                                  Cuba    CU   CUB 2000
## 6198                                                  Cuba    CU   CUB 1999
## 6199                                                  Cuba    CU   CUB 1998
## 6200                                                  Cuba    CU   CUB 1997
## 6201                                                  Cuba    CU   CUB 1996
## 6202                                                  Cuba    CU   CUB 1995
## 6203                                                  Cuba    CU   CUB 1994
## 6204                                                  Cuba    CU   CUB 1993
## 6205                                                  Cuba    CU   CUB 1992
## 6206                                                  Cuba    CU   CUB 1991
## 6207                                                  Cuba    CU   CUB 1990
## 6208                                                  Cuba    CU   CUB 1989
## 6209                                                  Cuba    CU   CUB 1988
## 6210                                                  Cuba    CU   CUB 1987
## 6211                                                  Cuba    CU   CUB 1986
## 6212                                                  Cuba    CU   CUB 1985
## 6213                                                  Cuba    CU   CUB 1984
## 6214                                                  Cuba    CU   CUB 1983
## 6215                                                  Cuba    CU   CUB 1982
## 6216                                                  Cuba    CU   CUB 1981
## 6217                                                  Cuba    CU   CUB 1980
## 6218                                                  Cuba    CU   CUB 1979
## 6219                                                  Cuba    CU   CUB 1978
## 6220                                                  Cuba    CU   CUB 1977
## 6221                                                  Cuba    CU   CUB 1976
## 6222                                                  Cuba    CU   CUB 1975
## 6223                                                  Cuba    CU   CUB 1974
## 6224                                                  Cuba    CU   CUB 1973
## 6225                                                  Cuba    CU   CUB 1972
## 6226                                                  Cuba    CU   CUB 1971
## 6227                                                  Cuba    CU   CUB 1970
## 6228                                                  Cuba    CU   CUB 1969
## 6229                                                  Cuba    CU   CUB 1968
## 6230                                                  Cuba    CU   CUB 1967
## 6231                                                  Cuba    CU   CUB 1966
## 6232                                                  Cuba    CU   CUB 1965
## 6233                                                  Cuba    CU   CUB 1964
## 6234                                                  Cuba    CU   CUB 1963
## 6235                                                  Cuba    CU   CUB 1962
## 6236                                                  Cuba    CU   CUB 1961
## 6237                                                  Cuba    CU   CUB 1960
## 6238                                               Curacao    CW   CUW 2022
## 6239                                               Curacao    CW   CUW 2021
## 6240                                               Curacao    CW   CUW 2020
## 6241                                               Curacao    CW   CUW 2019
## 6242                                               Curacao    CW   CUW 2018
## 6243                                               Curacao    CW   CUW 2017
## 6244                                               Curacao    CW   CUW 2016
## 6245                                               Curacao    CW   CUW 2015
## 6246                                               Curacao    CW   CUW 2014
## 6247                                               Curacao    CW   CUW 2013
## 6248                                               Curacao    CW   CUW 2012
## 6249                                               Curacao    CW   CUW 2011
## 6250                                               Curacao    CW   CUW 2010
## 6251                                               Curacao    CW   CUW 2009
## 6252                                               Curacao    CW   CUW 2008
## 6253                                               Curacao    CW   CUW 2007
## 6254                                               Curacao    CW   CUW 2006
## 6255                                               Curacao    CW   CUW 2005
## 6256                                               Curacao    CW   CUW 2004
## 6257                                               Curacao    CW   CUW 2003
## 6258                                               Curacao    CW   CUW 2002
## 6259                                               Curacao    CW   CUW 2001
## 6260                                               Curacao    CW   CUW 2000
## 6261                                               Curacao    CW   CUW 1999
## 6262                                               Curacao    CW   CUW 1998
## 6263                                               Curacao    CW   CUW 1997
## 6264                                               Curacao    CW   CUW 1996
## 6265                                               Curacao    CW   CUW 1995
## 6266                                               Curacao    CW   CUW 1994
## 6267                                               Curacao    CW   CUW 1993
## 6268                                               Curacao    CW   CUW 1992
## 6269                                               Curacao    CW   CUW 1991
## 6270                                               Curacao    CW   CUW 1990
## 6271                                               Curacao    CW   CUW 1989
## 6272                                               Curacao    CW   CUW 1988
## 6273                                               Curacao    CW   CUW 1987
## 6274                                               Curacao    CW   CUW 1986
## 6275                                               Curacao    CW   CUW 1985
## 6276                                               Curacao    CW   CUW 1984
## 6277                                               Curacao    CW   CUW 1983
## 6278                                               Curacao    CW   CUW 1982
## 6279                                               Curacao    CW   CUW 1981
## 6280                                               Curacao    CW   CUW 1980
## 6281                                               Curacao    CW   CUW 1979
## 6282                                               Curacao    CW   CUW 1978
## 6283                                               Curacao    CW   CUW 1977
## 6284                                               Curacao    CW   CUW 1976
## 6285                                               Curacao    CW   CUW 1975
## 6286                                               Curacao    CW   CUW 1974
## 6287                                               Curacao    CW   CUW 1973
## 6288                                               Curacao    CW   CUW 1972
## 6289                                               Curacao    CW   CUW 1971
## 6290                                               Curacao    CW   CUW 1970
## 6291                                               Curacao    CW   CUW 1969
## 6292                                               Curacao    CW   CUW 1968
## 6293                                               Curacao    CW   CUW 1967
## 6294                                               Curacao    CW   CUW 1966
## 6295                                               Curacao    CW   CUW 1965
## 6296                                               Curacao    CW   CUW 1964
## 6297                                               Curacao    CW   CUW 1963
## 6298                                               Curacao    CW   CUW 1962
## 6299                                               Curacao    CW   CUW 1961
## 6300                                               Curacao    CW   CUW 1960
## 6301                                                Cyprus    CY   CYP 2022
## 6302                                                Cyprus    CY   CYP 2021
## 6303                                                Cyprus    CY   CYP 2020
## 6304                                                Cyprus    CY   CYP 2019
## 6305                                                Cyprus    CY   CYP 2018
## 6306                                                Cyprus    CY   CYP 2017
## 6307                                                Cyprus    CY   CYP 2016
## 6308                                                Cyprus    CY   CYP 2015
## 6309                                                Cyprus    CY   CYP 2014
## 6310                                                Cyprus    CY   CYP 2013
## 6311                                                Cyprus    CY   CYP 2012
## 6312                                                Cyprus    CY   CYP 2011
## 6313                                                Cyprus    CY   CYP 2010
## 6314                                                Cyprus    CY   CYP 2009
## 6315                                                Cyprus    CY   CYP 2008
## 6316                                                Cyprus    CY   CYP 2007
## 6317                                                Cyprus    CY   CYP 2006
## 6318                                                Cyprus    CY   CYP 2005
## 6319                                                Cyprus    CY   CYP 2004
## 6320                                                Cyprus    CY   CYP 2003
## 6321                                                Cyprus    CY   CYP 2002
## 6322                                                Cyprus    CY   CYP 2001
## 6323                                                Cyprus    CY   CYP 2000
## 6324                                                Cyprus    CY   CYP 1999
## 6325                                                Cyprus    CY   CYP 1998
## 6326                                                Cyprus    CY   CYP 1997
## 6327                                                Cyprus    CY   CYP 1996
## 6328                                                Cyprus    CY   CYP 1995
## 6329                                                Cyprus    CY   CYP 1994
## 6330                                                Cyprus    CY   CYP 1993
## 6331                                                Cyprus    CY   CYP 1992
## 6332                                                Cyprus    CY   CYP 1991
## 6333                                                Cyprus    CY   CYP 1990
## 6334                                                Cyprus    CY   CYP 1989
## 6335                                                Cyprus    CY   CYP 1988
## 6336                                                Cyprus    CY   CYP 1987
## 6337                                                Cyprus    CY   CYP 1986
## 6338                                                Cyprus    CY   CYP 1985
## 6339                                                Cyprus    CY   CYP 1984
## 6340                                                Cyprus    CY   CYP 1983
## 6341                                                Cyprus    CY   CYP 1982
## 6342                                                Cyprus    CY   CYP 1981
## 6343                                                Cyprus    CY   CYP 1980
## 6344                                                Cyprus    CY   CYP 1979
## 6345                                                Cyprus    CY   CYP 1978
## 6346                                                Cyprus    CY   CYP 1977
## 6347                                                Cyprus    CY   CYP 1976
## 6348                                                Cyprus    CY   CYP 1975
## 6349                                                Cyprus    CY   CYP 1974
## 6350                                                Cyprus    CY   CYP 1973
## 6351                                                Cyprus    CY   CYP 1972
## 6352                                                Cyprus    CY   CYP 1971
## 6353                                                Cyprus    CY   CYP 1970
## 6354                                                Cyprus    CY   CYP 1969
## 6355                                                Cyprus    CY   CYP 1968
## 6356                                                Cyprus    CY   CYP 1967
## 6357                                                Cyprus    CY   CYP 1966
## 6358                                                Cyprus    CY   CYP 1965
## 6359                                                Cyprus    CY   CYP 1964
## 6360                                                Cyprus    CY   CYP 1963
## 6361                                                Cyprus    CY   CYP 1962
## 6362                                                Cyprus    CY   CYP 1961
## 6363                                                Cyprus    CY   CYP 1960
## 6364                                               Czechia    CZ   CZE 2022
## 6365                                               Czechia    CZ   CZE 2021
## 6366                                               Czechia    CZ   CZE 2020
## 6367                                               Czechia    CZ   CZE 2019
## 6368                                               Czechia    CZ   CZE 2018
## 6369                                               Czechia    CZ   CZE 2017
## 6370                                               Czechia    CZ   CZE 2016
## 6371                                               Czechia    CZ   CZE 2015
## 6372                                               Czechia    CZ   CZE 2014
## 6373                                               Czechia    CZ   CZE 2013
## 6374                                               Czechia    CZ   CZE 2012
## 6375                                               Czechia    CZ   CZE 2011
## 6376                                               Czechia    CZ   CZE 2010
## 6377                                               Czechia    CZ   CZE 2009
## 6378                                               Czechia    CZ   CZE 2008
## 6379                                               Czechia    CZ   CZE 2007
## 6380                                               Czechia    CZ   CZE 2006
## 6381                                               Czechia    CZ   CZE 2005
## 6382                                               Czechia    CZ   CZE 2004
## 6383                                               Czechia    CZ   CZE 2003
## 6384                                               Czechia    CZ   CZE 2002
## 6385                                               Czechia    CZ   CZE 2001
## 6386                                               Czechia    CZ   CZE 2000
## 6387                                               Czechia    CZ   CZE 1999
## 6388                                               Czechia    CZ   CZE 1998
## 6389                                               Czechia    CZ   CZE 1997
## 6390                                               Czechia    CZ   CZE 1996
## 6391                                               Czechia    CZ   CZE 1995
## 6392                                               Czechia    CZ   CZE 1994
## 6393                                               Czechia    CZ   CZE 1993
## 6394                                               Czechia    CZ   CZE 1992
## 6395                                               Czechia    CZ   CZE 1991
## 6396                                               Czechia    CZ   CZE 1990
## 6397                                               Czechia    CZ   CZE 1989
## 6398                                               Czechia    CZ   CZE 1988
## 6399                                               Czechia    CZ   CZE 1987
## 6400                                               Czechia    CZ   CZE 1986
## 6401                                               Czechia    CZ   CZE 1985
## 6402                                               Czechia    CZ   CZE 1984
## 6403                                               Czechia    CZ   CZE 1983
## 6404                                               Czechia    CZ   CZE 1982
## 6405                                               Czechia    CZ   CZE 1981
## 6406                                               Czechia    CZ   CZE 1980
## 6407                                               Czechia    CZ   CZE 1979
## 6408                                               Czechia    CZ   CZE 1978
## 6409                                               Czechia    CZ   CZE 1977
## 6410                                               Czechia    CZ   CZE 1976
## 6411                                               Czechia    CZ   CZE 1975
## 6412                                               Czechia    CZ   CZE 1974
## 6413                                               Czechia    CZ   CZE 1973
## 6414                                               Czechia    CZ   CZE 1972
## 6415                                               Czechia    CZ   CZE 1971
## 6416                                               Czechia    CZ   CZE 1970
## 6417                                               Czechia    CZ   CZE 1969
## 6418                                               Czechia    CZ   CZE 1968
## 6419                                               Czechia    CZ   CZE 1967
## 6420                                               Czechia    CZ   CZE 1966
## 6421                                               Czechia    CZ   CZE 1965
## 6422                                               Czechia    CZ   CZE 1964
## 6423                                               Czechia    CZ   CZE 1963
## 6424                                               Czechia    CZ   CZE 1962
## 6425                                               Czechia    CZ   CZE 1961
## 6426                                               Czechia    CZ   CZE 1960
## 6427                                               Denmark    DK   DNK 2022
## 6428                                               Denmark    DK   DNK 2021
## 6429                                               Denmark    DK   DNK 2020
## 6430                                               Denmark    DK   DNK 2019
## 6431                                               Denmark    DK   DNK 2018
## 6432                                               Denmark    DK   DNK 2017
## 6433                                               Denmark    DK   DNK 2016
## 6434                                               Denmark    DK   DNK 2015
## 6435                                               Denmark    DK   DNK 2014
## 6436                                               Denmark    DK   DNK 2013
## 6437                                               Denmark    DK   DNK 2012
## 6438                                               Denmark    DK   DNK 2011
## 6439                                               Denmark    DK   DNK 2010
## 6440                                               Denmark    DK   DNK 2009
## 6441                                               Denmark    DK   DNK 2008
## 6442                                               Denmark    DK   DNK 2007
## 6443                                               Denmark    DK   DNK 2006
## 6444                                               Denmark    DK   DNK 2005
## 6445                                               Denmark    DK   DNK 2004
## 6446                                               Denmark    DK   DNK 2003
## 6447                                               Denmark    DK   DNK 2002
## 6448                                               Denmark    DK   DNK 2001
## 6449                                               Denmark    DK   DNK 2000
## 6450                                               Denmark    DK   DNK 1999
## 6451                                               Denmark    DK   DNK 1998
## 6452                                               Denmark    DK   DNK 1997
## 6453                                               Denmark    DK   DNK 1996
## 6454                                               Denmark    DK   DNK 1995
## 6455                                               Denmark    DK   DNK 1994
## 6456                                               Denmark    DK   DNK 1993
## 6457                                               Denmark    DK   DNK 1992
## 6458                                               Denmark    DK   DNK 1991
## 6459                                               Denmark    DK   DNK 1990
## 6460                                               Denmark    DK   DNK 1989
## 6461                                               Denmark    DK   DNK 1988
## 6462                                               Denmark    DK   DNK 1987
## 6463                                               Denmark    DK   DNK 1986
## 6464                                               Denmark    DK   DNK 1985
## 6465                                               Denmark    DK   DNK 1984
## 6466                                               Denmark    DK   DNK 1983
## 6467                                               Denmark    DK   DNK 1982
## 6468                                               Denmark    DK   DNK 1981
## 6469                                               Denmark    DK   DNK 1980
## 6470                                               Denmark    DK   DNK 1979
## 6471                                               Denmark    DK   DNK 1978
## 6472                                               Denmark    DK   DNK 1977
## 6473                                               Denmark    DK   DNK 1976
## 6474                                               Denmark    DK   DNK 1975
## 6475                                               Denmark    DK   DNK 1974
## 6476                                               Denmark    DK   DNK 1973
## 6477                                               Denmark    DK   DNK 1972
## 6478                                               Denmark    DK   DNK 1971
## 6479                                               Denmark    DK   DNK 1970
## 6480                                               Denmark    DK   DNK 1969
## 6481                                               Denmark    DK   DNK 1968
## 6482                                               Denmark    DK   DNK 1967
## 6483                                               Denmark    DK   DNK 1966
## 6484                                               Denmark    DK   DNK 1965
## 6485                                               Denmark    DK   DNK 1964
## 6486                                               Denmark    DK   DNK 1963
## 6487                                               Denmark    DK   DNK 1962
## 6488                                               Denmark    DK   DNK 1961
## 6489                                               Denmark    DK   DNK 1960
## 6490                                              Djibouti    DJ   DJI 2022
## 6491                                              Djibouti    DJ   DJI 2021
## 6492                                              Djibouti    DJ   DJI 2020
## 6493                                              Djibouti    DJ   DJI 2019
## 6494                                              Djibouti    DJ   DJI 2018
## 6495                                              Djibouti    DJ   DJI 2017
## 6496                                              Djibouti    DJ   DJI 2016
## 6497                                              Djibouti    DJ   DJI 2015
## 6498                                              Djibouti    DJ   DJI 2014
## 6499                                              Djibouti    DJ   DJI 2013
## 6500                                              Djibouti    DJ   DJI 2012
## 6501                                              Djibouti    DJ   DJI 2011
## 6502                                              Djibouti    DJ   DJI 2010
## 6503                                              Djibouti    DJ   DJI 2009
## 6504                                              Djibouti    DJ   DJI 2008
## 6505                                              Djibouti    DJ   DJI 2007
## 6506                                              Djibouti    DJ   DJI 2006
## 6507                                              Djibouti    DJ   DJI 2005
## 6508                                              Djibouti    DJ   DJI 2004
## 6509                                              Djibouti    DJ   DJI 2003
## 6510                                              Djibouti    DJ   DJI 2002
## 6511                                              Djibouti    DJ   DJI 2001
## 6512                                              Djibouti    DJ   DJI 2000
## 6513                                              Djibouti    DJ   DJI 1999
## 6514                                              Djibouti    DJ   DJI 1998
## 6515                                              Djibouti    DJ   DJI 1997
## 6516                                              Djibouti    DJ   DJI 1996
## 6517                                              Djibouti    DJ   DJI 1995
## 6518                                              Djibouti    DJ   DJI 1994
## 6519                                              Djibouti    DJ   DJI 1993
## 6520                                              Djibouti    DJ   DJI 1992
## 6521                                              Djibouti    DJ   DJI 1991
## 6522                                              Djibouti    DJ   DJI 1990
## 6523                                              Djibouti    DJ   DJI 1989
## 6524                                              Djibouti    DJ   DJI 1988
## 6525                                              Djibouti    DJ   DJI 1987
## 6526                                              Djibouti    DJ   DJI 1986
## 6527                                              Djibouti    DJ   DJI 1985
## 6528                                              Djibouti    DJ   DJI 1984
## 6529                                              Djibouti    DJ   DJI 1983
## 6530                                              Djibouti    DJ   DJI 1982
## 6531                                              Djibouti    DJ   DJI 1981
## 6532                                              Djibouti    DJ   DJI 1980
## 6533                                              Djibouti    DJ   DJI 1979
## 6534                                              Djibouti    DJ   DJI 1978
## 6535                                              Djibouti    DJ   DJI 1977
## 6536                                              Djibouti    DJ   DJI 1976
## 6537                                              Djibouti    DJ   DJI 1975
## 6538                                              Djibouti    DJ   DJI 1974
## 6539                                              Djibouti    DJ   DJI 1973
## 6540                                              Djibouti    DJ   DJI 1972
## 6541                                              Djibouti    DJ   DJI 1971
## 6542                                              Djibouti    DJ   DJI 1970
## 6543                                              Djibouti    DJ   DJI 1969
## 6544                                              Djibouti    DJ   DJI 1968
## 6545                                              Djibouti    DJ   DJI 1967
## 6546                                              Djibouti    DJ   DJI 1966
## 6547                                              Djibouti    DJ   DJI 1965
## 6548                                              Djibouti    DJ   DJI 1964
## 6549                                              Djibouti    DJ   DJI 1963
## 6550                                              Djibouti    DJ   DJI 1962
## 6551                                              Djibouti    DJ   DJI 1961
## 6552                                              Djibouti    DJ   DJI 1960
## 6553                                              Dominica    DM   DMA 2022
## 6554                                              Dominica    DM   DMA 2021
## 6555                                              Dominica    DM   DMA 2020
## 6556                                              Dominica    DM   DMA 2019
## 6557                                              Dominica    DM   DMA 2018
## 6558                                              Dominica    DM   DMA 2017
## 6559                                              Dominica    DM   DMA 2016
## 6560                                              Dominica    DM   DMA 2015
## 6561                                              Dominica    DM   DMA 2014
## 6562                                              Dominica    DM   DMA 2013
## 6563                                              Dominica    DM   DMA 2012
## 6564                                              Dominica    DM   DMA 2011
## 6565                                              Dominica    DM   DMA 2010
## 6566                                              Dominica    DM   DMA 2009
## 6567                                              Dominica    DM   DMA 2008
## 6568                                              Dominica    DM   DMA 2007
## 6569                                              Dominica    DM   DMA 2006
## 6570                                              Dominica    DM   DMA 2005
## 6571                                              Dominica    DM   DMA 2004
## 6572                                              Dominica    DM   DMA 2003
## 6573                                              Dominica    DM   DMA 2002
## 6574                                              Dominica    DM   DMA 2001
## 6575                                              Dominica    DM   DMA 2000
## 6576                                              Dominica    DM   DMA 1999
## 6577                                              Dominica    DM   DMA 1998
## 6578                                              Dominica    DM   DMA 1997
## 6579                                              Dominica    DM   DMA 1996
## 6580                                              Dominica    DM   DMA 1995
## 6581                                              Dominica    DM   DMA 1994
## 6582                                              Dominica    DM   DMA 1993
## 6583                                              Dominica    DM   DMA 1992
## 6584                                              Dominica    DM   DMA 1991
## 6585                                              Dominica    DM   DMA 1990
## 6586                                              Dominica    DM   DMA 1989
## 6587                                              Dominica    DM   DMA 1988
## 6588                                              Dominica    DM   DMA 1987
## 6589                                              Dominica    DM   DMA 1986
## 6590                                              Dominica    DM   DMA 1985
## 6591                                              Dominica    DM   DMA 1984
## 6592                                              Dominica    DM   DMA 1983
## 6593                                              Dominica    DM   DMA 1982
## 6594                                              Dominica    DM   DMA 1981
## 6595                                              Dominica    DM   DMA 1980
## 6596                                              Dominica    DM   DMA 1979
## 6597                                              Dominica    DM   DMA 1978
## 6598                                              Dominica    DM   DMA 1977
## 6599                                              Dominica    DM   DMA 1976
## 6600                                              Dominica    DM   DMA 1975
## 6601                                              Dominica    DM   DMA 1974
## 6602                                              Dominica    DM   DMA 1973
## 6603                                              Dominica    DM   DMA 1972
## 6604                                              Dominica    DM   DMA 1971
## 6605                                              Dominica    DM   DMA 1970
## 6606                                              Dominica    DM   DMA 1969
## 6607                                              Dominica    DM   DMA 1968
## 6608                                              Dominica    DM   DMA 1967
## 6609                                              Dominica    DM   DMA 1966
## 6610                                              Dominica    DM   DMA 1965
## 6611                                              Dominica    DM   DMA 1964
## 6612                                              Dominica    DM   DMA 1963
## 6613                                              Dominica    DM   DMA 1962
## 6614                                              Dominica    DM   DMA 1961
## 6615                                              Dominica    DM   DMA 1960
## 6616                                    Dominican Republic    DO   DOM 2022
## 6617                                    Dominican Republic    DO   DOM 2021
## 6618                                    Dominican Republic    DO   DOM 2020
## 6619                                    Dominican Republic    DO   DOM 2019
## 6620                                    Dominican Republic    DO   DOM 2018
## 6621                                    Dominican Republic    DO   DOM 2017
## 6622                                    Dominican Republic    DO   DOM 2016
## 6623                                    Dominican Republic    DO   DOM 2015
## 6624                                    Dominican Republic    DO   DOM 2014
## 6625                                    Dominican Republic    DO   DOM 2013
## 6626                                    Dominican Republic    DO   DOM 2012
## 6627                                    Dominican Republic    DO   DOM 2011
## 6628                                    Dominican Republic    DO   DOM 2010
## 6629                                    Dominican Republic    DO   DOM 2009
## 6630                                    Dominican Republic    DO   DOM 2008
## 6631                                    Dominican Republic    DO   DOM 2007
## 6632                                    Dominican Republic    DO   DOM 2006
## 6633                                    Dominican Republic    DO   DOM 2005
## 6634                                    Dominican Republic    DO   DOM 2004
## 6635                                    Dominican Republic    DO   DOM 2003
## 6636                                    Dominican Republic    DO   DOM 2002
## 6637                                    Dominican Republic    DO   DOM 2001
## 6638                                    Dominican Republic    DO   DOM 2000
## 6639                                    Dominican Republic    DO   DOM 1999
## 6640                                    Dominican Republic    DO   DOM 1998
## 6641                                    Dominican Republic    DO   DOM 1997
## 6642                                    Dominican Republic    DO   DOM 1996
## 6643                                    Dominican Republic    DO   DOM 1995
## 6644                                    Dominican Republic    DO   DOM 1994
## 6645                                    Dominican Republic    DO   DOM 1993
## 6646                                    Dominican Republic    DO   DOM 1992
## 6647                                    Dominican Republic    DO   DOM 1991
## 6648                                    Dominican Republic    DO   DOM 1990
## 6649                                    Dominican Republic    DO   DOM 1989
## 6650                                    Dominican Republic    DO   DOM 1988
## 6651                                    Dominican Republic    DO   DOM 1987
## 6652                                    Dominican Republic    DO   DOM 1986
## 6653                                    Dominican Republic    DO   DOM 1985
## 6654                                    Dominican Republic    DO   DOM 1984
## 6655                                    Dominican Republic    DO   DOM 1983
## 6656                                    Dominican Republic    DO   DOM 1982
## 6657                                    Dominican Republic    DO   DOM 1981
## 6658                                    Dominican Republic    DO   DOM 1980
## 6659                                    Dominican Republic    DO   DOM 1979
## 6660                                    Dominican Republic    DO   DOM 1978
## 6661                                    Dominican Republic    DO   DOM 1977
## 6662                                    Dominican Republic    DO   DOM 1976
## 6663                                    Dominican Republic    DO   DOM 1975
## 6664                                    Dominican Republic    DO   DOM 1974
## 6665                                    Dominican Republic    DO   DOM 1973
## 6666                                    Dominican Republic    DO   DOM 1972
## 6667                                    Dominican Republic    DO   DOM 1971
## 6668                                    Dominican Republic    DO   DOM 1970
## 6669                                    Dominican Republic    DO   DOM 1969
## 6670                                    Dominican Republic    DO   DOM 1968
## 6671                                    Dominican Republic    DO   DOM 1967
## 6672                                    Dominican Republic    DO   DOM 1966
## 6673                                    Dominican Republic    DO   DOM 1965
## 6674                                    Dominican Republic    DO   DOM 1964
## 6675                                    Dominican Republic    DO   DOM 1963
## 6676                                    Dominican Republic    DO   DOM 1962
## 6677                                    Dominican Republic    DO   DOM 1961
## 6678                                    Dominican Republic    DO   DOM 1960
## 6679                                               Ecuador    EC   ECU 2022
## 6680                                               Ecuador    EC   ECU 2021
## 6681                                               Ecuador    EC   ECU 2020
## 6682                                               Ecuador    EC   ECU 2019
## 6683                                               Ecuador    EC   ECU 2018
## 6684                                               Ecuador    EC   ECU 2017
## 6685                                               Ecuador    EC   ECU 2016
## 6686                                               Ecuador    EC   ECU 2015
## 6687                                               Ecuador    EC   ECU 2014
## 6688                                               Ecuador    EC   ECU 2013
## 6689                                               Ecuador    EC   ECU 2012
## 6690                                               Ecuador    EC   ECU 2011
## 6691                                               Ecuador    EC   ECU 2010
## 6692                                               Ecuador    EC   ECU 2009
## 6693                                               Ecuador    EC   ECU 2008
## 6694                                               Ecuador    EC   ECU 2007
## 6695                                               Ecuador    EC   ECU 2006
## 6696                                               Ecuador    EC   ECU 2005
## 6697                                               Ecuador    EC   ECU 2004
## 6698                                               Ecuador    EC   ECU 2003
## 6699                                               Ecuador    EC   ECU 2002
## 6700                                               Ecuador    EC   ECU 2001
## 6701                                               Ecuador    EC   ECU 2000
## 6702                                               Ecuador    EC   ECU 1999
## 6703                                               Ecuador    EC   ECU 1998
## 6704                                               Ecuador    EC   ECU 1997
## 6705                                               Ecuador    EC   ECU 1996
## 6706                                               Ecuador    EC   ECU 1995
## 6707                                               Ecuador    EC   ECU 1994
## 6708                                               Ecuador    EC   ECU 1993
## 6709                                               Ecuador    EC   ECU 1992
## 6710                                               Ecuador    EC   ECU 1991
## 6711                                               Ecuador    EC   ECU 1990
## 6712                                               Ecuador    EC   ECU 1989
## 6713                                               Ecuador    EC   ECU 1988
## 6714                                               Ecuador    EC   ECU 1987
## 6715                                               Ecuador    EC   ECU 1986
## 6716                                               Ecuador    EC   ECU 1985
## 6717                                               Ecuador    EC   ECU 1984
## 6718                                               Ecuador    EC   ECU 1983
## 6719                                               Ecuador    EC   ECU 1982
## 6720                                               Ecuador    EC   ECU 1981
## 6721                                               Ecuador    EC   ECU 1980
## 6722                                               Ecuador    EC   ECU 1979
## 6723                                               Ecuador    EC   ECU 1978
## 6724                                               Ecuador    EC   ECU 1977
## 6725                                               Ecuador    EC   ECU 1976
## 6726                                               Ecuador    EC   ECU 1975
## 6727                                               Ecuador    EC   ECU 1974
## 6728                                               Ecuador    EC   ECU 1973
## 6729                                               Ecuador    EC   ECU 1972
## 6730                                               Ecuador    EC   ECU 1971
## 6731                                               Ecuador    EC   ECU 1970
## 6732                                               Ecuador    EC   ECU 1969
## 6733                                               Ecuador    EC   ECU 1968
## 6734                                               Ecuador    EC   ECU 1967
## 6735                                               Ecuador    EC   ECU 1966
## 6736                                               Ecuador    EC   ECU 1965
## 6737                                               Ecuador    EC   ECU 1964
## 6738                                               Ecuador    EC   ECU 1963
## 6739                                               Ecuador    EC   ECU 1962
## 6740                                               Ecuador    EC   ECU 1961
## 6741                                               Ecuador    EC   ECU 1960
## 6742                                      Egypt, Arab Rep.    EG   EGY 2022
## 6743                                      Egypt, Arab Rep.    EG   EGY 2021
## 6744                                      Egypt, Arab Rep.    EG   EGY 2020
## 6745                                      Egypt, Arab Rep.    EG   EGY 2019
## 6746                                      Egypt, Arab Rep.    EG   EGY 2018
## 6747                                      Egypt, Arab Rep.    EG   EGY 2017
## 6748                                      Egypt, Arab Rep.    EG   EGY 2016
## 6749                                      Egypt, Arab Rep.    EG   EGY 2015
## 6750                                      Egypt, Arab Rep.    EG   EGY 2014
## 6751                                      Egypt, Arab Rep.    EG   EGY 2013
## 6752                                      Egypt, Arab Rep.    EG   EGY 2012
## 6753                                      Egypt, Arab Rep.    EG   EGY 2011
## 6754                                      Egypt, Arab Rep.    EG   EGY 2010
## 6755                                      Egypt, Arab Rep.    EG   EGY 2009
## 6756                                      Egypt, Arab Rep.    EG   EGY 2008
## 6757                                      Egypt, Arab Rep.    EG   EGY 2007
## 6758                                      Egypt, Arab Rep.    EG   EGY 2006
## 6759                                      Egypt, Arab Rep.    EG   EGY 2005
## 6760                                      Egypt, Arab Rep.    EG   EGY 2004
## 6761                                      Egypt, Arab Rep.    EG   EGY 2003
## 6762                                      Egypt, Arab Rep.    EG   EGY 2002
## 6763                                      Egypt, Arab Rep.    EG   EGY 2001
## 6764                                      Egypt, Arab Rep.    EG   EGY 2000
## 6765                                      Egypt, Arab Rep.    EG   EGY 1999
## 6766                                      Egypt, Arab Rep.    EG   EGY 1998
## 6767                                      Egypt, Arab Rep.    EG   EGY 1997
## 6768                                      Egypt, Arab Rep.    EG   EGY 1996
## 6769                                      Egypt, Arab Rep.    EG   EGY 1995
## 6770                                      Egypt, Arab Rep.    EG   EGY 1994
## 6771                                      Egypt, Arab Rep.    EG   EGY 1993
## 6772                                      Egypt, Arab Rep.    EG   EGY 1992
## 6773                                      Egypt, Arab Rep.    EG   EGY 1991
## 6774                                      Egypt, Arab Rep.    EG   EGY 1990
## 6775                                      Egypt, Arab Rep.    EG   EGY 1989
## 6776                                      Egypt, Arab Rep.    EG   EGY 1988
## 6777                                      Egypt, Arab Rep.    EG   EGY 1987
## 6778                                      Egypt, Arab Rep.    EG   EGY 1986
## 6779                                      Egypt, Arab Rep.    EG   EGY 1985
## 6780                                      Egypt, Arab Rep.    EG   EGY 1984
## 6781                                      Egypt, Arab Rep.    EG   EGY 1983
## 6782                                      Egypt, Arab Rep.    EG   EGY 1982
## 6783                                      Egypt, Arab Rep.    EG   EGY 1981
## 6784                                      Egypt, Arab Rep.    EG   EGY 1980
## 6785                                      Egypt, Arab Rep.    EG   EGY 1979
## 6786                                      Egypt, Arab Rep.    EG   EGY 1978
## 6787                                      Egypt, Arab Rep.    EG   EGY 1977
## 6788                                      Egypt, Arab Rep.    EG   EGY 1976
## 6789                                      Egypt, Arab Rep.    EG   EGY 1975
## 6790                                      Egypt, Arab Rep.    EG   EGY 1974
## 6791                                      Egypt, Arab Rep.    EG   EGY 1973
## 6792                                      Egypt, Arab Rep.    EG   EGY 1972
## 6793                                      Egypt, Arab Rep.    EG   EGY 1971
## 6794                                      Egypt, Arab Rep.    EG   EGY 1970
## 6795                                      Egypt, Arab Rep.    EG   EGY 1969
## 6796                                      Egypt, Arab Rep.    EG   EGY 1968
## 6797                                      Egypt, Arab Rep.    EG   EGY 1967
## 6798                                      Egypt, Arab Rep.    EG   EGY 1966
## 6799                                      Egypt, Arab Rep.    EG   EGY 1965
## 6800                                      Egypt, Arab Rep.    EG   EGY 1964
## 6801                                      Egypt, Arab Rep.    EG   EGY 1963
## 6802                                      Egypt, Arab Rep.    EG   EGY 1962
## 6803                                      Egypt, Arab Rep.    EG   EGY 1961
## 6804                                      Egypt, Arab Rep.    EG   EGY 1960
## 6805                                           El Salvador    SV   SLV 2022
## 6806                                           El Salvador    SV   SLV 2021
## 6807                                           El Salvador    SV   SLV 2020
## 6808                                           El Salvador    SV   SLV 2019
## 6809                                           El Salvador    SV   SLV 2018
## 6810                                           El Salvador    SV   SLV 2017
## 6811                                           El Salvador    SV   SLV 2016
## 6812                                           El Salvador    SV   SLV 2015
## 6813                                           El Salvador    SV   SLV 2014
## 6814                                           El Salvador    SV   SLV 2013
## 6815                                           El Salvador    SV   SLV 2012
## 6816                                           El Salvador    SV   SLV 2011
## 6817                                           El Salvador    SV   SLV 2010
## 6818                                           El Salvador    SV   SLV 2009
## 6819                                           El Salvador    SV   SLV 2008
## 6820                                           El Salvador    SV   SLV 2007
## 6821                                           El Salvador    SV   SLV 2006
## 6822                                           El Salvador    SV   SLV 2005
## 6823                                           El Salvador    SV   SLV 2004
## 6824                                           El Salvador    SV   SLV 2003
## 6825                                           El Salvador    SV   SLV 2002
## 6826                                           El Salvador    SV   SLV 2001
## 6827                                           El Salvador    SV   SLV 2000
## 6828                                           El Salvador    SV   SLV 1999
## 6829                                           El Salvador    SV   SLV 1998
## 6830                                           El Salvador    SV   SLV 1997
## 6831                                           El Salvador    SV   SLV 1996
## 6832                                           El Salvador    SV   SLV 1995
## 6833                                           El Salvador    SV   SLV 1994
## 6834                                           El Salvador    SV   SLV 1993
## 6835                                           El Salvador    SV   SLV 1992
## 6836                                           El Salvador    SV   SLV 1991
## 6837                                           El Salvador    SV   SLV 1990
## 6838                                           El Salvador    SV   SLV 1989
## 6839                                           El Salvador    SV   SLV 1988
## 6840                                           El Salvador    SV   SLV 1987
## 6841                                           El Salvador    SV   SLV 1986
## 6842                                           El Salvador    SV   SLV 1985
## 6843                                           El Salvador    SV   SLV 1984
## 6844                                           El Salvador    SV   SLV 1983
## 6845                                           El Salvador    SV   SLV 1982
## 6846                                           El Salvador    SV   SLV 1981
## 6847                                           El Salvador    SV   SLV 1980
## 6848                                           El Salvador    SV   SLV 1979
## 6849                                           El Salvador    SV   SLV 1978
## 6850                                           El Salvador    SV   SLV 1977
## 6851                                           El Salvador    SV   SLV 1976
## 6852                                           El Salvador    SV   SLV 1975
## 6853                                           El Salvador    SV   SLV 1974
## 6854                                           El Salvador    SV   SLV 1973
## 6855                                           El Salvador    SV   SLV 1972
## 6856                                           El Salvador    SV   SLV 1971
## 6857                                           El Salvador    SV   SLV 1970
## 6858                                           El Salvador    SV   SLV 1969
## 6859                                           El Salvador    SV   SLV 1968
## 6860                                           El Salvador    SV   SLV 1967
## 6861                                           El Salvador    SV   SLV 1966
## 6862                                           El Salvador    SV   SLV 1965
## 6863                                           El Salvador    SV   SLV 1964
## 6864                                           El Salvador    SV   SLV 1963
## 6865                                           El Salvador    SV   SLV 1962
## 6866                                           El Salvador    SV   SLV 1961
## 6867                                           El Salvador    SV   SLV 1960
## 6868                                     Equatorial Guinea    GQ   GNQ 2022
## 6869                                     Equatorial Guinea    GQ   GNQ 2021
## 6870                                     Equatorial Guinea    GQ   GNQ 2020
## 6871                                     Equatorial Guinea    GQ   GNQ 2019
## 6872                                     Equatorial Guinea    GQ   GNQ 2018
## 6873                                     Equatorial Guinea    GQ   GNQ 2017
## 6874                                     Equatorial Guinea    GQ   GNQ 2016
## 6875                                     Equatorial Guinea    GQ   GNQ 2015
## 6876                                     Equatorial Guinea    GQ   GNQ 2014
## 6877                                     Equatorial Guinea    GQ   GNQ 2013
## 6878                                     Equatorial Guinea    GQ   GNQ 2012
## 6879                                     Equatorial Guinea    GQ   GNQ 2011
## 6880                                     Equatorial Guinea    GQ   GNQ 2010
## 6881                                     Equatorial Guinea    GQ   GNQ 2009
## 6882                                     Equatorial Guinea    GQ   GNQ 2008
## 6883                                     Equatorial Guinea    GQ   GNQ 2007
## 6884                                     Equatorial Guinea    GQ   GNQ 2006
## 6885                                     Equatorial Guinea    GQ   GNQ 2005
## 6886                                     Equatorial Guinea    GQ   GNQ 2004
## 6887                                     Equatorial Guinea    GQ   GNQ 2003
## 6888                                     Equatorial Guinea    GQ   GNQ 2002
## 6889                                     Equatorial Guinea    GQ   GNQ 2001
## 6890                                     Equatorial Guinea    GQ   GNQ 2000
## 6891                                     Equatorial Guinea    GQ   GNQ 1999
## 6892                                     Equatorial Guinea    GQ   GNQ 1998
## 6893                                     Equatorial Guinea    GQ   GNQ 1997
## 6894                                     Equatorial Guinea    GQ   GNQ 1996
## 6895                                     Equatorial Guinea    GQ   GNQ 1995
## 6896                                     Equatorial Guinea    GQ   GNQ 1994
## 6897                                     Equatorial Guinea    GQ   GNQ 1993
## 6898                                     Equatorial Guinea    GQ   GNQ 1992
## 6899                                     Equatorial Guinea    GQ   GNQ 1991
## 6900                                     Equatorial Guinea    GQ   GNQ 1990
## 6901                                     Equatorial Guinea    GQ   GNQ 1989
## 6902                                     Equatorial Guinea    GQ   GNQ 1988
## 6903                                     Equatorial Guinea    GQ   GNQ 1987
## 6904                                     Equatorial Guinea    GQ   GNQ 1986
## 6905                                     Equatorial Guinea    GQ   GNQ 1985
## 6906                                     Equatorial Guinea    GQ   GNQ 1984
## 6907                                     Equatorial Guinea    GQ   GNQ 1983
## 6908                                     Equatorial Guinea    GQ   GNQ 1982
## 6909                                     Equatorial Guinea    GQ   GNQ 1981
## 6910                                     Equatorial Guinea    GQ   GNQ 1980
## 6911                                     Equatorial Guinea    GQ   GNQ 1979
## 6912                                     Equatorial Guinea    GQ   GNQ 1978
## 6913                                     Equatorial Guinea    GQ   GNQ 1977
## 6914                                     Equatorial Guinea    GQ   GNQ 1976
## 6915                                     Equatorial Guinea    GQ   GNQ 1975
## 6916                                     Equatorial Guinea    GQ   GNQ 1974
## 6917                                     Equatorial Guinea    GQ   GNQ 1973
## 6918                                     Equatorial Guinea    GQ   GNQ 1972
## 6919                                     Equatorial Guinea    GQ   GNQ 1971
## 6920                                     Equatorial Guinea    GQ   GNQ 1970
## 6921                                     Equatorial Guinea    GQ   GNQ 1969
## 6922                                     Equatorial Guinea    GQ   GNQ 1968
## 6923                                     Equatorial Guinea    GQ   GNQ 1967
## 6924                                     Equatorial Guinea    GQ   GNQ 1966
## 6925                                     Equatorial Guinea    GQ   GNQ 1965
## 6926                                     Equatorial Guinea    GQ   GNQ 1964
## 6927                                     Equatorial Guinea    GQ   GNQ 1963
## 6928                                     Equatorial Guinea    GQ   GNQ 1962
## 6929                                     Equatorial Guinea    GQ   GNQ 1961
## 6930                                     Equatorial Guinea    GQ   GNQ 1960
## 6931                                               Eritrea    ER   ERI 2022
## 6932                                               Eritrea    ER   ERI 2021
## 6933                                               Eritrea    ER   ERI 2020
## 6934                                               Eritrea    ER   ERI 2019
## 6935                                               Eritrea    ER   ERI 2018
## 6936                                               Eritrea    ER   ERI 2017
## 6937                                               Eritrea    ER   ERI 2016
## 6938                                               Eritrea    ER   ERI 2015
## 6939                                               Eritrea    ER   ERI 2014
## 6940                                               Eritrea    ER   ERI 2013
## 6941                                               Eritrea    ER   ERI 2012
## 6942                                               Eritrea    ER   ERI 2011
## 6943                                               Eritrea    ER   ERI 2010
## 6944                                               Eritrea    ER   ERI 2009
## 6945                                               Eritrea    ER   ERI 2008
## 6946                                               Eritrea    ER   ERI 2007
## 6947                                               Eritrea    ER   ERI 2006
## 6948                                               Eritrea    ER   ERI 2005
## 6949                                               Eritrea    ER   ERI 2004
## 6950                                               Eritrea    ER   ERI 2003
## 6951                                               Eritrea    ER   ERI 2002
## 6952                                               Eritrea    ER   ERI 2001
## 6953                                               Eritrea    ER   ERI 2000
## 6954                                               Eritrea    ER   ERI 1999
## 6955                                               Eritrea    ER   ERI 1998
## 6956                                               Eritrea    ER   ERI 1997
## 6957                                               Eritrea    ER   ERI 1996
## 6958                                               Eritrea    ER   ERI 1995
## 6959                                               Eritrea    ER   ERI 1994
## 6960                                               Eritrea    ER   ERI 1993
## 6961                                               Eritrea    ER   ERI 1992
## 6962                                               Eritrea    ER   ERI 1991
## 6963                                               Eritrea    ER   ERI 1990
## 6964                                               Eritrea    ER   ERI 1989
## 6965                                               Eritrea    ER   ERI 1988
## 6966                                               Eritrea    ER   ERI 1987
## 6967                                               Eritrea    ER   ERI 1986
## 6968                                               Eritrea    ER   ERI 1985
## 6969                                               Eritrea    ER   ERI 1984
## 6970                                               Eritrea    ER   ERI 1983
## 6971                                               Eritrea    ER   ERI 1982
## 6972                                               Eritrea    ER   ERI 1981
## 6973                                               Eritrea    ER   ERI 1980
## 6974                                               Eritrea    ER   ERI 1979
## 6975                                               Eritrea    ER   ERI 1978
## 6976                                               Eritrea    ER   ERI 1977
## 6977                                               Eritrea    ER   ERI 1976
## 6978                                               Eritrea    ER   ERI 1975
## 6979                                               Eritrea    ER   ERI 1974
## 6980                                               Eritrea    ER   ERI 1973
## 6981                                               Eritrea    ER   ERI 1972
## 6982                                               Eritrea    ER   ERI 1971
## 6983                                               Eritrea    ER   ERI 1970
## 6984                                               Eritrea    ER   ERI 1969
## 6985                                               Eritrea    ER   ERI 1968
## 6986                                               Eritrea    ER   ERI 1967
## 6987                                               Eritrea    ER   ERI 1966
## 6988                                               Eritrea    ER   ERI 1965
## 6989                                               Eritrea    ER   ERI 1964
## 6990                                               Eritrea    ER   ERI 1963
## 6991                                               Eritrea    ER   ERI 1962
## 6992                                               Eritrea    ER   ERI 1961
## 6993                                               Eritrea    ER   ERI 1960
## 6994                                               Estonia    EE   EST 2022
## 6995                                               Estonia    EE   EST 2021
## 6996                                               Estonia    EE   EST 2020
## 6997                                               Estonia    EE   EST 2019
## 6998                                               Estonia    EE   EST 2018
## 6999                                               Estonia    EE   EST 2017
## 7000                                               Estonia    EE   EST 2016
## 7001                                               Estonia    EE   EST 2015
## 7002                                               Estonia    EE   EST 2014
## 7003                                               Estonia    EE   EST 2013
## 7004                                               Estonia    EE   EST 2012
## 7005                                               Estonia    EE   EST 2011
## 7006                                               Estonia    EE   EST 2010
## 7007                                               Estonia    EE   EST 2009
## 7008                                               Estonia    EE   EST 2008
## 7009                                               Estonia    EE   EST 2007
## 7010                                               Estonia    EE   EST 2006
## 7011                                               Estonia    EE   EST 2005
## 7012                                               Estonia    EE   EST 2004
## 7013                                               Estonia    EE   EST 2003
## 7014                                               Estonia    EE   EST 2002
## 7015                                               Estonia    EE   EST 2001
## 7016                                               Estonia    EE   EST 2000
## 7017                                               Estonia    EE   EST 1999
## 7018                                               Estonia    EE   EST 1998
## 7019                                               Estonia    EE   EST 1997
## 7020                                               Estonia    EE   EST 1996
## 7021                                               Estonia    EE   EST 1995
## 7022                                               Estonia    EE   EST 1994
## 7023                                               Estonia    EE   EST 1993
## 7024                                               Estonia    EE   EST 1992
## 7025                                               Estonia    EE   EST 1991
## 7026                                               Estonia    EE   EST 1990
## 7027                                               Estonia    EE   EST 1989
## 7028                                               Estonia    EE   EST 1988
## 7029                                               Estonia    EE   EST 1987
## 7030                                               Estonia    EE   EST 1986
## 7031                                               Estonia    EE   EST 1985
## 7032                                               Estonia    EE   EST 1984
## 7033                                               Estonia    EE   EST 1983
## 7034                                               Estonia    EE   EST 1982
## 7035                                               Estonia    EE   EST 1981
## 7036                                               Estonia    EE   EST 1980
## 7037                                               Estonia    EE   EST 1979
## 7038                                               Estonia    EE   EST 1978
## 7039                                               Estonia    EE   EST 1977
## 7040                                               Estonia    EE   EST 1976
## 7041                                               Estonia    EE   EST 1975
## 7042                                               Estonia    EE   EST 1974
## 7043                                               Estonia    EE   EST 1973
## 7044                                               Estonia    EE   EST 1972
## 7045                                               Estonia    EE   EST 1971
## 7046                                               Estonia    EE   EST 1970
## 7047                                               Estonia    EE   EST 1969
## 7048                                               Estonia    EE   EST 1968
## 7049                                               Estonia    EE   EST 1967
## 7050                                               Estonia    EE   EST 1966
## 7051                                               Estonia    EE   EST 1965
## 7052                                               Estonia    EE   EST 1964
## 7053                                               Estonia    EE   EST 1963
## 7054                                               Estonia    EE   EST 1962
## 7055                                               Estonia    EE   EST 1961
## 7056                                               Estonia    EE   EST 1960
## 7057                                              Eswatini    SZ   SWZ 2022
## 7058                                              Eswatini    SZ   SWZ 2021
## 7059                                              Eswatini    SZ   SWZ 2020
## 7060                                              Eswatini    SZ   SWZ 2019
## 7061                                              Eswatini    SZ   SWZ 2018
## 7062                                              Eswatini    SZ   SWZ 2017
## 7063                                              Eswatini    SZ   SWZ 2016
## 7064                                              Eswatini    SZ   SWZ 2015
## 7065                                              Eswatini    SZ   SWZ 2014
## 7066                                              Eswatini    SZ   SWZ 2013
## 7067                                              Eswatini    SZ   SWZ 2012
## 7068                                              Eswatini    SZ   SWZ 2011
## 7069                                              Eswatini    SZ   SWZ 2010
## 7070                                              Eswatini    SZ   SWZ 2009
## 7071                                              Eswatini    SZ   SWZ 2008
## 7072                                              Eswatini    SZ   SWZ 2007
## 7073                                              Eswatini    SZ   SWZ 2006
## 7074                                              Eswatini    SZ   SWZ 2005
## 7075                                              Eswatini    SZ   SWZ 2004
## 7076                                              Eswatini    SZ   SWZ 2003
## 7077                                              Eswatini    SZ   SWZ 2002
## 7078                                              Eswatini    SZ   SWZ 2001
## 7079                                              Eswatini    SZ   SWZ 2000
## 7080                                              Eswatini    SZ   SWZ 1999
## 7081                                              Eswatini    SZ   SWZ 1998
## 7082                                              Eswatini    SZ   SWZ 1997
## 7083                                              Eswatini    SZ   SWZ 1996
## 7084                                              Eswatini    SZ   SWZ 1995
## 7085                                              Eswatini    SZ   SWZ 1994
## 7086                                              Eswatini    SZ   SWZ 1993
## 7087                                              Eswatini    SZ   SWZ 1992
## 7088                                              Eswatini    SZ   SWZ 1991
## 7089                                              Eswatini    SZ   SWZ 1990
## 7090                                              Eswatini    SZ   SWZ 1989
## 7091                                              Eswatini    SZ   SWZ 1988
## 7092                                              Eswatini    SZ   SWZ 1987
## 7093                                              Eswatini    SZ   SWZ 1986
## 7094                                              Eswatini    SZ   SWZ 1985
## 7095                                              Eswatini    SZ   SWZ 1984
## 7096                                              Eswatini    SZ   SWZ 1983
## 7097                                              Eswatini    SZ   SWZ 1982
## 7098                                              Eswatini    SZ   SWZ 1981
## 7099                                              Eswatini    SZ   SWZ 1980
## 7100                                              Eswatini    SZ   SWZ 1979
## 7101                                              Eswatini    SZ   SWZ 1978
## 7102                                              Eswatini    SZ   SWZ 1977
## 7103                                              Eswatini    SZ   SWZ 1976
## 7104                                              Eswatini    SZ   SWZ 1975
## 7105                                              Eswatini    SZ   SWZ 1974
## 7106                                              Eswatini    SZ   SWZ 1973
## 7107                                              Eswatini    SZ   SWZ 1972
## 7108                                              Eswatini    SZ   SWZ 1971
## 7109                                              Eswatini    SZ   SWZ 1970
## 7110                                              Eswatini    SZ   SWZ 1969
## 7111                                              Eswatini    SZ   SWZ 1968
## 7112                                              Eswatini    SZ   SWZ 1967
## 7113                                              Eswatini    SZ   SWZ 1966
## 7114                                              Eswatini    SZ   SWZ 1965
## 7115                                              Eswatini    SZ   SWZ 1964
## 7116                                              Eswatini    SZ   SWZ 1963
## 7117                                              Eswatini    SZ   SWZ 1962
## 7118                                              Eswatini    SZ   SWZ 1961
## 7119                                              Eswatini    SZ   SWZ 1960
## 7120                                              Ethiopia    ET   ETH 2022
## 7121                                              Ethiopia    ET   ETH 2021
## 7122                                              Ethiopia    ET   ETH 2020
## 7123                                              Ethiopia    ET   ETH 2019
## 7124                                              Ethiopia    ET   ETH 2018
## 7125                                              Ethiopia    ET   ETH 2017
## 7126                                              Ethiopia    ET   ETH 2016
## 7127                                              Ethiopia    ET   ETH 2015
## 7128                                              Ethiopia    ET   ETH 2014
## 7129                                              Ethiopia    ET   ETH 2013
## 7130                                              Ethiopia    ET   ETH 2012
## 7131                                              Ethiopia    ET   ETH 2011
## 7132                                              Ethiopia    ET   ETH 2010
## 7133                                              Ethiopia    ET   ETH 2009
## 7134                                              Ethiopia    ET   ETH 2008
## 7135                                              Ethiopia    ET   ETH 2007
## 7136                                              Ethiopia    ET   ETH 2006
## 7137                                              Ethiopia    ET   ETH 2005
## 7138                                              Ethiopia    ET   ETH 2004
## 7139                                              Ethiopia    ET   ETH 2003
## 7140                                              Ethiopia    ET   ETH 2002
## 7141                                              Ethiopia    ET   ETH 2001
## 7142                                              Ethiopia    ET   ETH 2000
## 7143                                              Ethiopia    ET   ETH 1999
## 7144                                              Ethiopia    ET   ETH 1998
## 7145                                              Ethiopia    ET   ETH 1997
## 7146                                              Ethiopia    ET   ETH 1996
## 7147                                              Ethiopia    ET   ETH 1995
## 7148                                              Ethiopia    ET   ETH 1994
## 7149                                              Ethiopia    ET   ETH 1993
## 7150                                              Ethiopia    ET   ETH 1992
## 7151                                              Ethiopia    ET   ETH 1991
## 7152                                              Ethiopia    ET   ETH 1990
## 7153                                              Ethiopia    ET   ETH 1989
## 7154                                              Ethiopia    ET   ETH 1988
## 7155                                              Ethiopia    ET   ETH 1987
## 7156                                              Ethiopia    ET   ETH 1986
## 7157                                              Ethiopia    ET   ETH 1985
## 7158                                              Ethiopia    ET   ETH 1984
## 7159                                              Ethiopia    ET   ETH 1983
## 7160                                              Ethiopia    ET   ETH 1982
## 7161                                              Ethiopia    ET   ETH 1981
## 7162                                              Ethiopia    ET   ETH 1980
## 7163                                              Ethiopia    ET   ETH 1979
## 7164                                              Ethiopia    ET   ETH 1978
## 7165                                              Ethiopia    ET   ETH 1977
## 7166                                              Ethiopia    ET   ETH 1976
## 7167                                              Ethiopia    ET   ETH 1975
## 7168                                              Ethiopia    ET   ETH 1974
## 7169                                              Ethiopia    ET   ETH 1973
## 7170                                              Ethiopia    ET   ETH 1972
## 7171                                              Ethiopia    ET   ETH 1971
## 7172                                              Ethiopia    ET   ETH 1970
## 7173                                              Ethiopia    ET   ETH 1969
## 7174                                              Ethiopia    ET   ETH 1968
## 7175                                              Ethiopia    ET   ETH 1967
## 7176                                              Ethiopia    ET   ETH 1966
## 7177                                              Ethiopia    ET   ETH 1965
## 7178                                              Ethiopia    ET   ETH 1964
## 7179                                              Ethiopia    ET   ETH 1963
## 7180                                              Ethiopia    ET   ETH 1962
## 7181                                              Ethiopia    ET   ETH 1961
## 7182                                              Ethiopia    ET   ETH 1960
## 7183                                         Faroe Islands    FO   FRO 2022
## 7184                                         Faroe Islands    FO   FRO 2021
## 7185                                         Faroe Islands    FO   FRO 2020
## 7186                                         Faroe Islands    FO   FRO 2019
## 7187                                         Faroe Islands    FO   FRO 2018
## 7188                                         Faroe Islands    FO   FRO 2017
## 7189                                         Faroe Islands    FO   FRO 2016
## 7190                                         Faroe Islands    FO   FRO 2015
## 7191                                         Faroe Islands    FO   FRO 2014
## 7192                                         Faroe Islands    FO   FRO 2013
## 7193                                         Faroe Islands    FO   FRO 2012
## 7194                                         Faroe Islands    FO   FRO 2011
## 7195                                         Faroe Islands    FO   FRO 2010
## 7196                                         Faroe Islands    FO   FRO 2009
## 7197                                         Faroe Islands    FO   FRO 2008
## 7198                                         Faroe Islands    FO   FRO 2007
## 7199                                         Faroe Islands    FO   FRO 2006
## 7200                                         Faroe Islands    FO   FRO 2005
## 7201                                         Faroe Islands    FO   FRO 2004
## 7202                                         Faroe Islands    FO   FRO 2003
## 7203                                         Faroe Islands    FO   FRO 2002
## 7204                                         Faroe Islands    FO   FRO 2001
## 7205                                         Faroe Islands    FO   FRO 2000
## 7206                                         Faroe Islands    FO   FRO 1999
## 7207                                         Faroe Islands    FO   FRO 1998
## 7208                                         Faroe Islands    FO   FRO 1997
## 7209                                         Faroe Islands    FO   FRO 1996
## 7210                                         Faroe Islands    FO   FRO 1995
## 7211                                         Faroe Islands    FO   FRO 1994
## 7212                                         Faroe Islands    FO   FRO 1993
## 7213                                         Faroe Islands    FO   FRO 1992
## 7214                                         Faroe Islands    FO   FRO 1991
## 7215                                         Faroe Islands    FO   FRO 1990
## 7216                                         Faroe Islands    FO   FRO 1989
## 7217                                         Faroe Islands    FO   FRO 1988
## 7218                                         Faroe Islands    FO   FRO 1987
## 7219                                         Faroe Islands    FO   FRO 1986
## 7220                                         Faroe Islands    FO   FRO 1985
## 7221                                         Faroe Islands    FO   FRO 1984
## 7222                                         Faroe Islands    FO   FRO 1983
## 7223                                         Faroe Islands    FO   FRO 1982
## 7224                                         Faroe Islands    FO   FRO 1981
## 7225                                         Faroe Islands    FO   FRO 1980
## 7226                                         Faroe Islands    FO   FRO 1979
## 7227                                         Faroe Islands    FO   FRO 1978
## 7228                                         Faroe Islands    FO   FRO 1977
## 7229                                         Faroe Islands    FO   FRO 1976
## 7230                                         Faroe Islands    FO   FRO 1975
## 7231                                         Faroe Islands    FO   FRO 1974
## 7232                                         Faroe Islands    FO   FRO 1973
## 7233                                         Faroe Islands    FO   FRO 1972
## 7234                                         Faroe Islands    FO   FRO 1971
## 7235                                         Faroe Islands    FO   FRO 1970
## 7236                                         Faroe Islands    FO   FRO 1969
## 7237                                         Faroe Islands    FO   FRO 1968
## 7238                                         Faroe Islands    FO   FRO 1967
## 7239                                         Faroe Islands    FO   FRO 1966
## 7240                                         Faroe Islands    FO   FRO 1965
## 7241                                         Faroe Islands    FO   FRO 1964
## 7242                                         Faroe Islands    FO   FRO 1963
## 7243                                         Faroe Islands    FO   FRO 1962
## 7244                                         Faroe Islands    FO   FRO 1961
## 7245                                         Faroe Islands    FO   FRO 1960
## 7246                                                  Fiji    FJ   FJI 2022
## 7247                                                  Fiji    FJ   FJI 2021
## 7248                                                  Fiji    FJ   FJI 2020
## 7249                                                  Fiji    FJ   FJI 2019
## 7250                                                  Fiji    FJ   FJI 2018
## 7251                                                  Fiji    FJ   FJI 2017
## 7252                                                  Fiji    FJ   FJI 2016
## 7253                                                  Fiji    FJ   FJI 2015
## 7254                                                  Fiji    FJ   FJI 2014
## 7255                                                  Fiji    FJ   FJI 2013
## 7256                                                  Fiji    FJ   FJI 2012
## 7257                                                  Fiji    FJ   FJI 2011
## 7258                                                  Fiji    FJ   FJI 2010
## 7259                                                  Fiji    FJ   FJI 2009
## 7260                                                  Fiji    FJ   FJI 2008
## 7261                                                  Fiji    FJ   FJI 2007
## 7262                                                  Fiji    FJ   FJI 2006
## 7263                                                  Fiji    FJ   FJI 2005
## 7264                                                  Fiji    FJ   FJI 2004
## 7265                                                  Fiji    FJ   FJI 2003
## 7266                                                  Fiji    FJ   FJI 2002
## 7267                                                  Fiji    FJ   FJI 2001
## 7268                                                  Fiji    FJ   FJI 2000
## 7269                                                  Fiji    FJ   FJI 1999
## 7270                                                  Fiji    FJ   FJI 1998
## 7271                                                  Fiji    FJ   FJI 1997
## 7272                                                  Fiji    FJ   FJI 1996
## 7273                                                  Fiji    FJ   FJI 1995
## 7274                                                  Fiji    FJ   FJI 1994
## 7275                                                  Fiji    FJ   FJI 1993
## 7276                                                  Fiji    FJ   FJI 1992
## 7277                                                  Fiji    FJ   FJI 1991
## 7278                                                  Fiji    FJ   FJI 1990
## 7279                                                  Fiji    FJ   FJI 1989
## 7280                                                  Fiji    FJ   FJI 1988
## 7281                                                  Fiji    FJ   FJI 1987
## 7282                                                  Fiji    FJ   FJI 1986
## 7283                                                  Fiji    FJ   FJI 1985
## 7284                                                  Fiji    FJ   FJI 1984
## 7285                                                  Fiji    FJ   FJI 1983
## 7286                                                  Fiji    FJ   FJI 1982
## 7287                                                  Fiji    FJ   FJI 1981
## 7288                                                  Fiji    FJ   FJI 1980
## 7289                                                  Fiji    FJ   FJI 1979
## 7290                                                  Fiji    FJ   FJI 1978
## 7291                                                  Fiji    FJ   FJI 1977
## 7292                                                  Fiji    FJ   FJI 1976
## 7293                                                  Fiji    FJ   FJI 1975
## 7294                                                  Fiji    FJ   FJI 1974
## 7295                                                  Fiji    FJ   FJI 1973
## 7296                                                  Fiji    FJ   FJI 1972
## 7297                                                  Fiji    FJ   FJI 1971
## 7298                                                  Fiji    FJ   FJI 1970
## 7299                                                  Fiji    FJ   FJI 1969
## 7300                                                  Fiji    FJ   FJI 1968
## 7301                                                  Fiji    FJ   FJI 1967
## 7302                                                  Fiji    FJ   FJI 1966
## 7303                                                  Fiji    FJ   FJI 1965
## 7304                                                  Fiji    FJ   FJI 1964
## 7305                                                  Fiji    FJ   FJI 1963
## 7306                                                  Fiji    FJ   FJI 1962
## 7307                                                  Fiji    FJ   FJI 1961
## 7308                                                  Fiji    FJ   FJI 1960
## 7309                                               Finland    FI   FIN 2022
## 7310                                               Finland    FI   FIN 2021
## 7311                                               Finland    FI   FIN 2020
## 7312                                               Finland    FI   FIN 2019
## 7313                                               Finland    FI   FIN 2018
## 7314                                               Finland    FI   FIN 2017
## 7315                                               Finland    FI   FIN 2016
## 7316                                               Finland    FI   FIN 2015
## 7317                                               Finland    FI   FIN 2014
## 7318                                               Finland    FI   FIN 2013
## 7319                                               Finland    FI   FIN 2012
## 7320                                               Finland    FI   FIN 2011
## 7321                                               Finland    FI   FIN 2010
## 7322                                               Finland    FI   FIN 2009
## 7323                                               Finland    FI   FIN 2008
## 7324                                               Finland    FI   FIN 2007
## 7325                                               Finland    FI   FIN 2006
## 7326                                               Finland    FI   FIN 2005
## 7327                                               Finland    FI   FIN 2004
## 7328                                               Finland    FI   FIN 2003
## 7329                                               Finland    FI   FIN 2002
## 7330                                               Finland    FI   FIN 2001
## 7331                                               Finland    FI   FIN 2000
## 7332                                               Finland    FI   FIN 1999
## 7333                                               Finland    FI   FIN 1998
## 7334                                               Finland    FI   FIN 1997
## 7335                                               Finland    FI   FIN 1996
## 7336                                               Finland    FI   FIN 1995
## 7337                                               Finland    FI   FIN 1994
## 7338                                               Finland    FI   FIN 1993
## 7339                                               Finland    FI   FIN 1992
## 7340                                               Finland    FI   FIN 1991
## 7341                                               Finland    FI   FIN 1990
## 7342                                               Finland    FI   FIN 1989
## 7343                                               Finland    FI   FIN 1988
## 7344                                               Finland    FI   FIN 1987
## 7345                                               Finland    FI   FIN 1986
## 7346                                               Finland    FI   FIN 1985
## 7347                                               Finland    FI   FIN 1984
## 7348                                               Finland    FI   FIN 1983
## 7349                                               Finland    FI   FIN 1982
## 7350                                               Finland    FI   FIN 1981
## 7351                                               Finland    FI   FIN 1980
## 7352                                               Finland    FI   FIN 1979
## 7353                                               Finland    FI   FIN 1978
## 7354                                               Finland    FI   FIN 1977
## 7355                                               Finland    FI   FIN 1976
## 7356                                               Finland    FI   FIN 1975
## 7357                                               Finland    FI   FIN 1974
## 7358                                               Finland    FI   FIN 1973
## 7359                                               Finland    FI   FIN 1972
## 7360                                               Finland    FI   FIN 1971
## 7361                                               Finland    FI   FIN 1970
## 7362                                               Finland    FI   FIN 1969
## 7363                                               Finland    FI   FIN 1968
## 7364                                               Finland    FI   FIN 1967
## 7365                                               Finland    FI   FIN 1966
## 7366                                               Finland    FI   FIN 1965
## 7367                                               Finland    FI   FIN 1964
## 7368                                               Finland    FI   FIN 1963
## 7369                                               Finland    FI   FIN 1962
## 7370                                               Finland    FI   FIN 1961
## 7371                                               Finland    FI   FIN 1960
## 7372                                                France    FR   FRA 2022
## 7373                                                France    FR   FRA 2021
## 7374                                                France    FR   FRA 2020
## 7375                                                France    FR   FRA 2019
## 7376                                                France    FR   FRA 2018
## 7377                                                France    FR   FRA 2017
## 7378                                                France    FR   FRA 2016
## 7379                                                France    FR   FRA 2015
## 7380                                                France    FR   FRA 2014
## 7381                                                France    FR   FRA 2013
## 7382                                                France    FR   FRA 2012
## 7383                                                France    FR   FRA 2011
## 7384                                                France    FR   FRA 2010
## 7385                                                France    FR   FRA 2009
## 7386                                                France    FR   FRA 2008
## 7387                                                France    FR   FRA 2007
## 7388                                                France    FR   FRA 2006
## 7389                                                France    FR   FRA 2005
## 7390                                                France    FR   FRA 2004
## 7391                                                France    FR   FRA 2003
## 7392                                                France    FR   FRA 2002
## 7393                                                France    FR   FRA 2001
## 7394                                                France    FR   FRA 2000
## 7395                                                France    FR   FRA 1999
## 7396                                                France    FR   FRA 1998
## 7397                                                France    FR   FRA 1997
## 7398                                                France    FR   FRA 1996
## 7399                                                France    FR   FRA 1995
## 7400                                                France    FR   FRA 1994
## 7401                                                France    FR   FRA 1993
## 7402                                                France    FR   FRA 1992
## 7403                                                France    FR   FRA 1991
## 7404                                                France    FR   FRA 1990
## 7405                                                France    FR   FRA 1989
## 7406                                                France    FR   FRA 1988
## 7407                                                France    FR   FRA 1987
## 7408                                                France    FR   FRA 1986
## 7409                                                France    FR   FRA 1985
## 7410                                                France    FR   FRA 1984
## 7411                                                France    FR   FRA 1983
## 7412                                                France    FR   FRA 1982
## 7413                                                France    FR   FRA 1981
## 7414                                                France    FR   FRA 1980
## 7415                                                France    FR   FRA 1979
## 7416                                                France    FR   FRA 1978
## 7417                                                France    FR   FRA 1977
## 7418                                                France    FR   FRA 1976
## 7419                                                France    FR   FRA 1975
## 7420                                                France    FR   FRA 1974
## 7421                                                France    FR   FRA 1973
## 7422                                                France    FR   FRA 1972
## 7423                                                France    FR   FRA 1971
## 7424                                                France    FR   FRA 1970
## 7425                                                France    FR   FRA 1969
## 7426                                                France    FR   FRA 1968
## 7427                                                France    FR   FRA 1967
## 7428                                                France    FR   FRA 1966
## 7429                                                France    FR   FRA 1965
## 7430                                                France    FR   FRA 1964
## 7431                                                France    FR   FRA 1963
## 7432                                                France    FR   FRA 1962
## 7433                                                France    FR   FRA 1961
## 7434                                                France    FR   FRA 1960
## 7435                                      French Polynesia    PF   PYF 2022
## 7436                                      French Polynesia    PF   PYF 2021
## 7437                                      French Polynesia    PF   PYF 2020
## 7438                                      French Polynesia    PF   PYF 2019
## 7439                                      French Polynesia    PF   PYF 2018
## 7440                                      French Polynesia    PF   PYF 2017
## 7441                                      French Polynesia    PF   PYF 2016
## 7442                                      French Polynesia    PF   PYF 2015
## 7443                                      French Polynesia    PF   PYF 2014
## 7444                                      French Polynesia    PF   PYF 2013
## 7445                                      French Polynesia    PF   PYF 2012
## 7446                                      French Polynesia    PF   PYF 2011
## 7447                                      French Polynesia    PF   PYF 2010
## 7448                                      French Polynesia    PF   PYF 2009
## 7449                                      French Polynesia    PF   PYF 2008
## 7450                                      French Polynesia    PF   PYF 2007
## 7451                                      French Polynesia    PF   PYF 2006
## 7452                                      French Polynesia    PF   PYF 2005
## 7453                                      French Polynesia    PF   PYF 2004
## 7454                                      French Polynesia    PF   PYF 2003
## 7455                                      French Polynesia    PF   PYF 2002
## 7456                                      French Polynesia    PF   PYF 2001
## 7457                                      French Polynesia    PF   PYF 2000
## 7458                                      French Polynesia    PF   PYF 1999
## 7459                                      French Polynesia    PF   PYF 1998
## 7460                                      French Polynesia    PF   PYF 1997
## 7461                                      French Polynesia    PF   PYF 1996
## 7462                                      French Polynesia    PF   PYF 1995
## 7463                                      French Polynesia    PF   PYF 1994
## 7464                                      French Polynesia    PF   PYF 1993
## 7465                                      French Polynesia    PF   PYF 1992
## 7466                                      French Polynesia    PF   PYF 1991
## 7467                                      French Polynesia    PF   PYF 1990
## 7468                                      French Polynesia    PF   PYF 1989
## 7469                                      French Polynesia    PF   PYF 1988
## 7470                                      French Polynesia    PF   PYF 1987
## 7471                                      French Polynesia    PF   PYF 1986
## 7472                                      French Polynesia    PF   PYF 1985
## 7473                                      French Polynesia    PF   PYF 1984
## 7474                                      French Polynesia    PF   PYF 1983
## 7475                                      French Polynesia    PF   PYF 1982
## 7476                                      French Polynesia    PF   PYF 1981
## 7477                                      French Polynesia    PF   PYF 1980
## 7478                                      French Polynesia    PF   PYF 1979
## 7479                                      French Polynesia    PF   PYF 1978
## 7480                                      French Polynesia    PF   PYF 1977
## 7481                                      French Polynesia    PF   PYF 1976
## 7482                                      French Polynesia    PF   PYF 1975
## 7483                                      French Polynesia    PF   PYF 1974
## 7484                                      French Polynesia    PF   PYF 1973
## 7485                                      French Polynesia    PF   PYF 1972
## 7486                                      French Polynesia    PF   PYF 1971
## 7487                                      French Polynesia    PF   PYF 1970
## 7488                                      French Polynesia    PF   PYF 1969
## 7489                                      French Polynesia    PF   PYF 1968
## 7490                                      French Polynesia    PF   PYF 1967
## 7491                                      French Polynesia    PF   PYF 1966
## 7492                                      French Polynesia    PF   PYF 1965
## 7493                                      French Polynesia    PF   PYF 1964
## 7494                                      French Polynesia    PF   PYF 1963
## 7495                                      French Polynesia    PF   PYF 1962
## 7496                                      French Polynesia    PF   PYF 1961
## 7497                                      French Polynesia    PF   PYF 1960
## 7498                                                 Gabon    GA   GAB 2022
## 7499                                                 Gabon    GA   GAB 2021
## 7500                                                 Gabon    GA   GAB 2020
## 7501                                                 Gabon    GA   GAB 2019
## 7502                                                 Gabon    GA   GAB 2018
## 7503                                                 Gabon    GA   GAB 2017
## 7504                                                 Gabon    GA   GAB 2016
## 7505                                                 Gabon    GA   GAB 2015
## 7506                                                 Gabon    GA   GAB 2014
## 7507                                                 Gabon    GA   GAB 2013
## 7508                                                 Gabon    GA   GAB 2012
## 7509                                                 Gabon    GA   GAB 2011
## 7510                                                 Gabon    GA   GAB 2010
## 7511                                                 Gabon    GA   GAB 2009
## 7512                                                 Gabon    GA   GAB 2008
## 7513                                                 Gabon    GA   GAB 2007
## 7514                                                 Gabon    GA   GAB 2006
## 7515                                                 Gabon    GA   GAB 2005
## 7516                                                 Gabon    GA   GAB 2004
## 7517                                                 Gabon    GA   GAB 2003
## 7518                                                 Gabon    GA   GAB 2002
## 7519                                                 Gabon    GA   GAB 2001
## 7520                                                 Gabon    GA   GAB 2000
## 7521                                                 Gabon    GA   GAB 1999
## 7522                                                 Gabon    GA   GAB 1998
## 7523                                                 Gabon    GA   GAB 1997
## 7524                                                 Gabon    GA   GAB 1996
## 7525                                                 Gabon    GA   GAB 1995
## 7526                                                 Gabon    GA   GAB 1994
## 7527                                                 Gabon    GA   GAB 1993
## 7528                                                 Gabon    GA   GAB 1992
## 7529                                                 Gabon    GA   GAB 1991
## 7530                                                 Gabon    GA   GAB 1990
## 7531                                                 Gabon    GA   GAB 1989
## 7532                                                 Gabon    GA   GAB 1988
## 7533                                                 Gabon    GA   GAB 1987
## 7534                                                 Gabon    GA   GAB 1986
## 7535                                                 Gabon    GA   GAB 1985
## 7536                                                 Gabon    GA   GAB 1984
## 7537                                                 Gabon    GA   GAB 1983
## 7538                                                 Gabon    GA   GAB 1982
## 7539                                                 Gabon    GA   GAB 1981
## 7540                                                 Gabon    GA   GAB 1980
## 7541                                                 Gabon    GA   GAB 1979
## 7542                                                 Gabon    GA   GAB 1978
## 7543                                                 Gabon    GA   GAB 1977
## 7544                                                 Gabon    GA   GAB 1976
## 7545                                                 Gabon    GA   GAB 1975
## 7546                                                 Gabon    GA   GAB 1974
## 7547                                                 Gabon    GA   GAB 1973
## 7548                                                 Gabon    GA   GAB 1972
## 7549                                                 Gabon    GA   GAB 1971
## 7550                                                 Gabon    GA   GAB 1970
## 7551                                                 Gabon    GA   GAB 1969
## 7552                                                 Gabon    GA   GAB 1968
## 7553                                                 Gabon    GA   GAB 1967
## 7554                                                 Gabon    GA   GAB 1966
## 7555                                                 Gabon    GA   GAB 1965
## 7556                                                 Gabon    GA   GAB 1964
## 7557                                                 Gabon    GA   GAB 1963
## 7558                                                 Gabon    GA   GAB 1962
## 7559                                                 Gabon    GA   GAB 1961
## 7560                                                 Gabon    GA   GAB 1960
## 7561                                           Gambia, The    GM   GMB 2022
## 7562                                           Gambia, The    GM   GMB 2021
## 7563                                           Gambia, The    GM   GMB 2020
## 7564                                           Gambia, The    GM   GMB 2019
## 7565                                           Gambia, The    GM   GMB 2018
## 7566                                           Gambia, The    GM   GMB 2017
## 7567                                           Gambia, The    GM   GMB 2016
## 7568                                           Gambia, The    GM   GMB 2015
## 7569                                           Gambia, The    GM   GMB 2014
## 7570                                           Gambia, The    GM   GMB 2013
## 7571                                           Gambia, The    GM   GMB 2012
## 7572                                           Gambia, The    GM   GMB 2011
## 7573                                           Gambia, The    GM   GMB 2010
## 7574                                           Gambia, The    GM   GMB 2009
## 7575                                           Gambia, The    GM   GMB 2008
## 7576                                           Gambia, The    GM   GMB 2007
## 7577                                           Gambia, The    GM   GMB 2006
## 7578                                           Gambia, The    GM   GMB 2005
## 7579                                           Gambia, The    GM   GMB 2004
## 7580                                           Gambia, The    GM   GMB 2003
## 7581                                           Gambia, The    GM   GMB 2002
## 7582                                           Gambia, The    GM   GMB 2001
## 7583                                           Gambia, The    GM   GMB 2000
## 7584                                           Gambia, The    GM   GMB 1999
## 7585                                           Gambia, The    GM   GMB 1998
## 7586                                           Gambia, The    GM   GMB 1997
## 7587                                           Gambia, The    GM   GMB 1996
## 7588                                           Gambia, The    GM   GMB 1995
## 7589                                           Gambia, The    GM   GMB 1994
## 7590                                           Gambia, The    GM   GMB 1993
## 7591                                           Gambia, The    GM   GMB 1992
## 7592                                           Gambia, The    GM   GMB 1991
## 7593                                           Gambia, The    GM   GMB 1990
## 7594                                           Gambia, The    GM   GMB 1989
## 7595                                           Gambia, The    GM   GMB 1988
## 7596                                           Gambia, The    GM   GMB 1987
## 7597                                           Gambia, The    GM   GMB 1986
## 7598                                           Gambia, The    GM   GMB 1985
## 7599                                           Gambia, The    GM   GMB 1984
## 7600                                           Gambia, The    GM   GMB 1983
## 7601                                           Gambia, The    GM   GMB 1982
## 7602                                           Gambia, The    GM   GMB 1981
## 7603                                           Gambia, The    GM   GMB 1980
## 7604                                           Gambia, The    GM   GMB 1979
## 7605                                           Gambia, The    GM   GMB 1978
## 7606                                           Gambia, The    GM   GMB 1977
## 7607                                           Gambia, The    GM   GMB 1976
## 7608                                           Gambia, The    GM   GMB 1975
## 7609                                           Gambia, The    GM   GMB 1974
## 7610                                           Gambia, The    GM   GMB 1973
## 7611                                           Gambia, The    GM   GMB 1972
## 7612                                           Gambia, The    GM   GMB 1971
## 7613                                           Gambia, The    GM   GMB 1970
## 7614                                           Gambia, The    GM   GMB 1969
## 7615                                           Gambia, The    GM   GMB 1968
## 7616                                           Gambia, The    GM   GMB 1967
## 7617                                           Gambia, The    GM   GMB 1966
## 7618                                           Gambia, The    GM   GMB 1965
## 7619                                           Gambia, The    GM   GMB 1964
## 7620                                           Gambia, The    GM   GMB 1963
## 7621                                           Gambia, The    GM   GMB 1962
## 7622                                           Gambia, The    GM   GMB 1961
## 7623                                           Gambia, The    GM   GMB 1960
## 7624                                               Georgia    GE   GEO 2022
## 7625                                               Georgia    GE   GEO 2021
## 7626                                               Georgia    GE   GEO 2020
## 7627                                               Georgia    GE   GEO 2019
## 7628                                               Georgia    GE   GEO 2018
## 7629                                               Georgia    GE   GEO 2017
## 7630                                               Georgia    GE   GEO 2016
## 7631                                               Georgia    GE   GEO 2015
## 7632                                               Georgia    GE   GEO 2014
## 7633                                               Georgia    GE   GEO 2013
## 7634                                               Georgia    GE   GEO 2012
## 7635                                               Georgia    GE   GEO 2011
## 7636                                               Georgia    GE   GEO 2010
## 7637                                               Georgia    GE   GEO 2009
## 7638                                               Georgia    GE   GEO 2008
## 7639                                               Georgia    GE   GEO 2007
## 7640                                               Georgia    GE   GEO 2006
## 7641                                               Georgia    GE   GEO 2005
## 7642                                               Georgia    GE   GEO 2004
## 7643                                               Georgia    GE   GEO 2003
## 7644                                               Georgia    GE   GEO 2002
## 7645                                               Georgia    GE   GEO 2001
## 7646                                               Georgia    GE   GEO 2000
## 7647                                               Georgia    GE   GEO 1999
## 7648                                               Georgia    GE   GEO 1998
## 7649                                               Georgia    GE   GEO 1997
## 7650                                               Georgia    GE   GEO 1996
## 7651                                               Georgia    GE   GEO 1995
## 7652                                               Georgia    GE   GEO 1994
## 7653                                               Georgia    GE   GEO 1993
## 7654                                               Georgia    GE   GEO 1992
## 7655                                               Georgia    GE   GEO 1991
## 7656                                               Georgia    GE   GEO 1990
## 7657                                               Georgia    GE   GEO 1989
## 7658                                               Georgia    GE   GEO 1988
## 7659                                               Georgia    GE   GEO 1987
## 7660                                               Georgia    GE   GEO 1986
## 7661                                               Georgia    GE   GEO 1985
## 7662                                               Georgia    GE   GEO 1984
## 7663                                               Georgia    GE   GEO 1983
## 7664                                               Georgia    GE   GEO 1982
## 7665                                               Georgia    GE   GEO 1981
## 7666                                               Georgia    GE   GEO 1980
## 7667                                               Georgia    GE   GEO 1979
## 7668                                               Georgia    GE   GEO 1978
## 7669                                               Georgia    GE   GEO 1977
## 7670                                               Georgia    GE   GEO 1976
## 7671                                               Georgia    GE   GEO 1975
## 7672                                               Georgia    GE   GEO 1974
## 7673                                               Georgia    GE   GEO 1973
## 7674                                               Georgia    GE   GEO 1972
## 7675                                               Georgia    GE   GEO 1971
## 7676                                               Georgia    GE   GEO 1970
## 7677                                               Georgia    GE   GEO 1969
## 7678                                               Georgia    GE   GEO 1968
## 7679                                               Georgia    GE   GEO 1967
## 7680                                               Georgia    GE   GEO 1966
## 7681                                               Georgia    GE   GEO 1965
## 7682                                               Georgia    GE   GEO 1964
## 7683                                               Georgia    GE   GEO 1963
## 7684                                               Georgia    GE   GEO 1962
## 7685                                               Georgia    GE   GEO 1961
## 7686                                               Georgia    GE   GEO 1960
## 7687                                               Germany    DE   DEU 2022
## 7688                                               Germany    DE   DEU 2021
## 7689                                               Germany    DE   DEU 2020
## 7690                                               Germany    DE   DEU 2019
## 7691                                               Germany    DE   DEU 2018
## 7692                                               Germany    DE   DEU 2017
## 7693                                               Germany    DE   DEU 2016
## 7694                                               Germany    DE   DEU 2015
## 7695                                               Germany    DE   DEU 2014
## 7696                                               Germany    DE   DEU 2013
## 7697                                               Germany    DE   DEU 2012
## 7698                                               Germany    DE   DEU 2011
## 7699                                               Germany    DE   DEU 2010
## 7700                                               Germany    DE   DEU 2009
## 7701                                               Germany    DE   DEU 2008
## 7702                                               Germany    DE   DEU 2007
## 7703                                               Germany    DE   DEU 2006
## 7704                                               Germany    DE   DEU 2005
## 7705                                               Germany    DE   DEU 2004
## 7706                                               Germany    DE   DEU 2003
## 7707                                               Germany    DE   DEU 2002
## 7708                                               Germany    DE   DEU 2001
## 7709                                               Germany    DE   DEU 2000
## 7710                                               Germany    DE   DEU 1999
## 7711                                               Germany    DE   DEU 1998
## 7712                                               Germany    DE   DEU 1997
## 7713                                               Germany    DE   DEU 1996
## 7714                                               Germany    DE   DEU 1995
## 7715                                               Germany    DE   DEU 1994
## 7716                                               Germany    DE   DEU 1993
## 7717                                               Germany    DE   DEU 1992
## 7718                                               Germany    DE   DEU 1991
## 7719                                               Germany    DE   DEU 1990
## 7720                                               Germany    DE   DEU 1989
## 7721                                               Germany    DE   DEU 1988
## 7722                                               Germany    DE   DEU 1987
## 7723                                               Germany    DE   DEU 1986
## 7724                                               Germany    DE   DEU 1985
## 7725                                               Germany    DE   DEU 1984
## 7726                                               Germany    DE   DEU 1983
## 7727                                               Germany    DE   DEU 1982
## 7728                                               Germany    DE   DEU 1981
## 7729                                               Germany    DE   DEU 1980
## 7730                                               Germany    DE   DEU 1979
## 7731                                               Germany    DE   DEU 1978
## 7732                                               Germany    DE   DEU 1977
## 7733                                               Germany    DE   DEU 1976
## 7734                                               Germany    DE   DEU 1975
## 7735                                               Germany    DE   DEU 1974
## 7736                                               Germany    DE   DEU 1973
## 7737                                               Germany    DE   DEU 1972
## 7738                                               Germany    DE   DEU 1971
## 7739                                               Germany    DE   DEU 1970
## 7740                                               Germany    DE   DEU 1969
## 7741                                               Germany    DE   DEU 1968
## 7742                                               Germany    DE   DEU 1967
## 7743                                               Germany    DE   DEU 1966
## 7744                                               Germany    DE   DEU 1965
## 7745                                               Germany    DE   DEU 1964
## 7746                                               Germany    DE   DEU 1963
## 7747                                               Germany    DE   DEU 1962
## 7748                                               Germany    DE   DEU 1961
## 7749                                               Germany    DE   DEU 1960
## 7750                                                 Ghana    GH   GHA 2022
## 7751                                                 Ghana    GH   GHA 2021
## 7752                                                 Ghana    GH   GHA 2020
## 7753                                                 Ghana    GH   GHA 2019
## 7754                                                 Ghana    GH   GHA 2018
## 7755                                                 Ghana    GH   GHA 2017
## 7756                                                 Ghana    GH   GHA 2016
## 7757                                                 Ghana    GH   GHA 2015
## 7758                                                 Ghana    GH   GHA 2014
## 7759                                                 Ghana    GH   GHA 2013
## 7760                                                 Ghana    GH   GHA 2012
## 7761                                                 Ghana    GH   GHA 2011
## 7762                                                 Ghana    GH   GHA 2010
## 7763                                                 Ghana    GH   GHA 2009
## 7764                                                 Ghana    GH   GHA 2008
## 7765                                                 Ghana    GH   GHA 2007
## 7766                                                 Ghana    GH   GHA 2006
## 7767                                                 Ghana    GH   GHA 2005
## 7768                                                 Ghana    GH   GHA 2004
## 7769                                                 Ghana    GH   GHA 2003
## 7770                                                 Ghana    GH   GHA 2002
## 7771                                                 Ghana    GH   GHA 2001
## 7772                                                 Ghana    GH   GHA 2000
## 7773                                                 Ghana    GH   GHA 1999
## 7774                                                 Ghana    GH   GHA 1998
## 7775                                                 Ghana    GH   GHA 1997
## 7776                                                 Ghana    GH   GHA 1996
## 7777                                                 Ghana    GH   GHA 1995
## 7778                                                 Ghana    GH   GHA 1994
## 7779                                                 Ghana    GH   GHA 1993
## 7780                                                 Ghana    GH   GHA 1992
## 7781                                                 Ghana    GH   GHA 1991
## 7782                                                 Ghana    GH   GHA 1990
## 7783                                                 Ghana    GH   GHA 1989
## 7784                                                 Ghana    GH   GHA 1988
## 7785                                                 Ghana    GH   GHA 1987
## 7786                                                 Ghana    GH   GHA 1986
## 7787                                                 Ghana    GH   GHA 1985
## 7788                                                 Ghana    GH   GHA 1984
## 7789                                                 Ghana    GH   GHA 1983
## 7790                                                 Ghana    GH   GHA 1982
## 7791                                                 Ghana    GH   GHA 1981
## 7792                                                 Ghana    GH   GHA 1980
## 7793                                                 Ghana    GH   GHA 1979
## 7794                                                 Ghana    GH   GHA 1978
## 7795                                                 Ghana    GH   GHA 1977
## 7796                                                 Ghana    GH   GHA 1976
## 7797                                                 Ghana    GH   GHA 1975
## 7798                                                 Ghana    GH   GHA 1974
## 7799                                                 Ghana    GH   GHA 1973
## 7800                                                 Ghana    GH   GHA 1972
## 7801                                                 Ghana    GH   GHA 1971
## 7802                                                 Ghana    GH   GHA 1970
## 7803                                                 Ghana    GH   GHA 1969
## 7804                                                 Ghana    GH   GHA 1968
## 7805                                                 Ghana    GH   GHA 1967
## 7806                                                 Ghana    GH   GHA 1966
## 7807                                                 Ghana    GH   GHA 1965
## 7808                                                 Ghana    GH   GHA 1964
## 7809                                                 Ghana    GH   GHA 1963
## 7810                                                 Ghana    GH   GHA 1962
## 7811                                                 Ghana    GH   GHA 1961
## 7812                                                 Ghana    GH   GHA 1960
## 7813                                             Gibraltar    GI   GIB 2022
## 7814                                             Gibraltar    GI   GIB 2021
## 7815                                             Gibraltar    GI   GIB 2020
## 7816                                             Gibraltar    GI   GIB 2019
## 7817                                             Gibraltar    GI   GIB 2018
## 7818                                             Gibraltar    GI   GIB 2017
## 7819                                             Gibraltar    GI   GIB 2016
## 7820                                             Gibraltar    GI   GIB 2015
## 7821                                             Gibraltar    GI   GIB 2014
## 7822                                             Gibraltar    GI   GIB 2013
## 7823                                             Gibraltar    GI   GIB 2012
## 7824                                             Gibraltar    GI   GIB 2011
## 7825                                             Gibraltar    GI   GIB 2010
## 7826                                             Gibraltar    GI   GIB 2009
## 7827                                             Gibraltar    GI   GIB 2008
## 7828                                             Gibraltar    GI   GIB 2007
## 7829                                             Gibraltar    GI   GIB 2006
## 7830                                             Gibraltar    GI   GIB 2005
## 7831                                             Gibraltar    GI   GIB 2004
## 7832                                             Gibraltar    GI   GIB 2003
## 7833                                             Gibraltar    GI   GIB 2002
## 7834                                             Gibraltar    GI   GIB 2001
## 7835                                             Gibraltar    GI   GIB 2000
## 7836                                             Gibraltar    GI   GIB 1999
## 7837                                             Gibraltar    GI   GIB 1998
## 7838                                             Gibraltar    GI   GIB 1997
## 7839                                             Gibraltar    GI   GIB 1996
## 7840                                             Gibraltar    GI   GIB 1995
## 7841                                             Gibraltar    GI   GIB 1994
## 7842                                             Gibraltar    GI   GIB 1993
## 7843                                             Gibraltar    GI   GIB 1992
## 7844                                             Gibraltar    GI   GIB 1991
## 7845                                             Gibraltar    GI   GIB 1990
## 7846                                             Gibraltar    GI   GIB 1989
## 7847                                             Gibraltar    GI   GIB 1988
## 7848                                             Gibraltar    GI   GIB 1987
## 7849                                             Gibraltar    GI   GIB 1986
## 7850                                             Gibraltar    GI   GIB 1985
## 7851                                             Gibraltar    GI   GIB 1984
## 7852                                             Gibraltar    GI   GIB 1983
## 7853                                             Gibraltar    GI   GIB 1982
## 7854                                             Gibraltar    GI   GIB 1981
## 7855                                             Gibraltar    GI   GIB 1980
## 7856                                             Gibraltar    GI   GIB 1979
## 7857                                             Gibraltar    GI   GIB 1978
## 7858                                             Gibraltar    GI   GIB 1977
## 7859                                             Gibraltar    GI   GIB 1976
## 7860                                             Gibraltar    GI   GIB 1975
## 7861                                             Gibraltar    GI   GIB 1974
## 7862                                             Gibraltar    GI   GIB 1973
## 7863                                             Gibraltar    GI   GIB 1972
## 7864                                             Gibraltar    GI   GIB 1971
## 7865                                             Gibraltar    GI   GIB 1970
## 7866                                             Gibraltar    GI   GIB 1969
## 7867                                             Gibraltar    GI   GIB 1968
## 7868                                             Gibraltar    GI   GIB 1967
## 7869                                             Gibraltar    GI   GIB 1966
## 7870                                             Gibraltar    GI   GIB 1965
## 7871                                             Gibraltar    GI   GIB 1964
## 7872                                             Gibraltar    GI   GIB 1963
## 7873                                             Gibraltar    GI   GIB 1962
## 7874                                             Gibraltar    GI   GIB 1961
## 7875                                             Gibraltar    GI   GIB 1960
## 7876                                                Greece    GR   GRC 2022
## 7877                                                Greece    GR   GRC 2021
## 7878                                                Greece    GR   GRC 2020
## 7879                                                Greece    GR   GRC 2019
## 7880                                                Greece    GR   GRC 2018
## 7881                                                Greece    GR   GRC 2017
## 7882                                                Greece    GR   GRC 2016
## 7883                                                Greece    GR   GRC 2015
## 7884                                                Greece    GR   GRC 2014
## 7885                                                Greece    GR   GRC 2013
## 7886                                                Greece    GR   GRC 2012
## 7887                                                Greece    GR   GRC 2011
## 7888                                                Greece    GR   GRC 2010
## 7889                                                Greece    GR   GRC 2009
## 7890                                                Greece    GR   GRC 2008
## 7891                                                Greece    GR   GRC 2007
## 7892                                                Greece    GR   GRC 2006
## 7893                                                Greece    GR   GRC 2005
## 7894                                                Greece    GR   GRC 2004
## 7895                                                Greece    GR   GRC 2003
## 7896                                                Greece    GR   GRC 2002
## 7897                                                Greece    GR   GRC 2001
## 7898                                                Greece    GR   GRC 2000
## 7899                                                Greece    GR   GRC 1999
## 7900                                                Greece    GR   GRC 1998
## 7901                                                Greece    GR   GRC 1997
## 7902                                                Greece    GR   GRC 1996
## 7903                                                Greece    GR   GRC 1995
## 7904                                                Greece    GR   GRC 1994
## 7905                                                Greece    GR   GRC 1993
## 7906                                                Greece    GR   GRC 1992
## 7907                                                Greece    GR   GRC 1991
## 7908                                                Greece    GR   GRC 1990
## 7909                                                Greece    GR   GRC 1989
## 7910                                                Greece    GR   GRC 1988
## 7911                                                Greece    GR   GRC 1987
## 7912                                                Greece    GR   GRC 1986
## 7913                                                Greece    GR   GRC 1985
## 7914                                                Greece    GR   GRC 1984
## 7915                                                Greece    GR   GRC 1983
## 7916                                                Greece    GR   GRC 1982
## 7917                                                Greece    GR   GRC 1981
## 7918                                                Greece    GR   GRC 1980
## 7919                                                Greece    GR   GRC 1979
## 7920                                                Greece    GR   GRC 1978
## 7921                                                Greece    GR   GRC 1977
## 7922                                                Greece    GR   GRC 1976
## 7923                                                Greece    GR   GRC 1975
## 7924                                                Greece    GR   GRC 1974
## 7925                                                Greece    GR   GRC 1973
## 7926                                                Greece    GR   GRC 1972
## 7927                                                Greece    GR   GRC 1971
## 7928                                                Greece    GR   GRC 1970
## 7929                                                Greece    GR   GRC 1969
## 7930                                                Greece    GR   GRC 1968
## 7931                                                Greece    GR   GRC 1967
## 7932                                                Greece    GR   GRC 1966
## 7933                                                Greece    GR   GRC 1965
## 7934                                                Greece    GR   GRC 1964
## 7935                                                Greece    GR   GRC 1963
## 7936                                                Greece    GR   GRC 1962
## 7937                                                Greece    GR   GRC 1961
## 7938                                                Greece    GR   GRC 1960
## 7939                                             Greenland    GL   GRL 2022
## 7940                                             Greenland    GL   GRL 2021
## 7941                                             Greenland    GL   GRL 2020
## 7942                                             Greenland    GL   GRL 2019
## 7943                                             Greenland    GL   GRL 2018
## 7944                                             Greenland    GL   GRL 2017
## 7945                                             Greenland    GL   GRL 2016
## 7946                                             Greenland    GL   GRL 2015
## 7947                                             Greenland    GL   GRL 2014
## 7948                                             Greenland    GL   GRL 2013
## 7949                                             Greenland    GL   GRL 2012
## 7950                                             Greenland    GL   GRL 2011
## 7951                                             Greenland    GL   GRL 2010
## 7952                                             Greenland    GL   GRL 2009
## 7953                                             Greenland    GL   GRL 2008
## 7954                                             Greenland    GL   GRL 2007
## 7955                                             Greenland    GL   GRL 2006
## 7956                                             Greenland    GL   GRL 2005
## 7957                                             Greenland    GL   GRL 2004
## 7958                                             Greenland    GL   GRL 2003
## 7959                                             Greenland    GL   GRL 2002
## 7960                                             Greenland    GL   GRL 2001
## 7961                                             Greenland    GL   GRL 2000
## 7962                                             Greenland    GL   GRL 1999
## 7963                                             Greenland    GL   GRL 1998
## 7964                                             Greenland    GL   GRL 1997
## 7965                                             Greenland    GL   GRL 1996
## 7966                                             Greenland    GL   GRL 1995
## 7967                                             Greenland    GL   GRL 1994
## 7968                                             Greenland    GL   GRL 1993
## 7969                                             Greenland    GL   GRL 1992
## 7970                                             Greenland    GL   GRL 1991
## 7971                                             Greenland    GL   GRL 1990
## 7972                                             Greenland    GL   GRL 1989
## 7973                                             Greenland    GL   GRL 1988
## 7974                                             Greenland    GL   GRL 1987
## 7975                                             Greenland    GL   GRL 1986
## 7976                                             Greenland    GL   GRL 1985
## 7977                                             Greenland    GL   GRL 1984
## 7978                                             Greenland    GL   GRL 1983
## 7979                                             Greenland    GL   GRL 1982
## 7980                                             Greenland    GL   GRL 1981
## 7981                                             Greenland    GL   GRL 1980
## 7982                                             Greenland    GL   GRL 1979
## 7983                                             Greenland    GL   GRL 1978
## 7984                                             Greenland    GL   GRL 1977
## 7985                                             Greenland    GL   GRL 1976
## 7986                                             Greenland    GL   GRL 1975
## 7987                                             Greenland    GL   GRL 1974
## 7988                                             Greenland    GL   GRL 1973
## 7989                                             Greenland    GL   GRL 1972
## 7990                                             Greenland    GL   GRL 1971
## 7991                                             Greenland    GL   GRL 1970
## 7992                                             Greenland    GL   GRL 1969
## 7993                                             Greenland    GL   GRL 1968
## 7994                                             Greenland    GL   GRL 1967
## 7995                                             Greenland    GL   GRL 1966
## 7996                                             Greenland    GL   GRL 1965
## 7997                                             Greenland    GL   GRL 1964
## 7998                                             Greenland    GL   GRL 1963
## 7999                                             Greenland    GL   GRL 1962
## 8000                                             Greenland    GL   GRL 1961
## 8001                                             Greenland    GL   GRL 1960
## 8002                                               Grenada    GD   GRD 2022
## 8003                                               Grenada    GD   GRD 2021
## 8004                                               Grenada    GD   GRD 2020
## 8005                                               Grenada    GD   GRD 2019
## 8006                                               Grenada    GD   GRD 2018
## 8007                                               Grenada    GD   GRD 2017
## 8008                                               Grenada    GD   GRD 2016
## 8009                                               Grenada    GD   GRD 2015
## 8010                                               Grenada    GD   GRD 2014
## 8011                                               Grenada    GD   GRD 2013
## 8012                                               Grenada    GD   GRD 2012
## 8013                                               Grenada    GD   GRD 2011
## 8014                                               Grenada    GD   GRD 2010
## 8015                                               Grenada    GD   GRD 2009
## 8016                                               Grenada    GD   GRD 2008
## 8017                                               Grenada    GD   GRD 2007
## 8018                                               Grenada    GD   GRD 2006
## 8019                                               Grenada    GD   GRD 2005
## 8020                                               Grenada    GD   GRD 2004
## 8021                                               Grenada    GD   GRD 2003
## 8022                                               Grenada    GD   GRD 2002
## 8023                                               Grenada    GD   GRD 2001
## 8024                                               Grenada    GD   GRD 2000
## 8025                                               Grenada    GD   GRD 1999
## 8026                                               Grenada    GD   GRD 1998
## 8027                                               Grenada    GD   GRD 1997
## 8028                                               Grenada    GD   GRD 1996
## 8029                                               Grenada    GD   GRD 1995
## 8030                                               Grenada    GD   GRD 1994
## 8031                                               Grenada    GD   GRD 1993
## 8032                                               Grenada    GD   GRD 1992
## 8033                                               Grenada    GD   GRD 1991
## 8034                                               Grenada    GD   GRD 1990
## 8035                                               Grenada    GD   GRD 1989
## 8036                                               Grenada    GD   GRD 1988
## 8037                                               Grenada    GD   GRD 1987
## 8038                                               Grenada    GD   GRD 1986
## 8039                                               Grenada    GD   GRD 1985
## 8040                                               Grenada    GD   GRD 1984
## 8041                                               Grenada    GD   GRD 1983
## 8042                                               Grenada    GD   GRD 1982
## 8043                                               Grenada    GD   GRD 1981
## 8044                                               Grenada    GD   GRD 1980
## 8045                                               Grenada    GD   GRD 1979
## 8046                                               Grenada    GD   GRD 1978
## 8047                                               Grenada    GD   GRD 1977
## 8048                                               Grenada    GD   GRD 1976
## 8049                                               Grenada    GD   GRD 1975
## 8050                                               Grenada    GD   GRD 1974
## 8051                                               Grenada    GD   GRD 1973
## 8052                                               Grenada    GD   GRD 1972
## 8053                                               Grenada    GD   GRD 1971
## 8054                                               Grenada    GD   GRD 1970
## 8055                                               Grenada    GD   GRD 1969
## 8056                                               Grenada    GD   GRD 1968
## 8057                                               Grenada    GD   GRD 1967
## 8058                                               Grenada    GD   GRD 1966
## 8059                                               Grenada    GD   GRD 1965
## 8060                                               Grenada    GD   GRD 1964
## 8061                                               Grenada    GD   GRD 1963
## 8062                                               Grenada    GD   GRD 1962
## 8063                                               Grenada    GD   GRD 1961
## 8064                                               Grenada    GD   GRD 1960
## 8065                                                  Guam    GU   GUM 2022
## 8066                                                  Guam    GU   GUM 2021
## 8067                                                  Guam    GU   GUM 2020
## 8068                                                  Guam    GU   GUM 2019
## 8069                                                  Guam    GU   GUM 2018
## 8070                                                  Guam    GU   GUM 2017
## 8071                                                  Guam    GU   GUM 2016
## 8072                                                  Guam    GU   GUM 2015
## 8073                                                  Guam    GU   GUM 2014
## 8074                                                  Guam    GU   GUM 2013
## 8075                                                  Guam    GU   GUM 2012
## 8076                                                  Guam    GU   GUM 2011
## 8077                                                  Guam    GU   GUM 2010
## 8078                                                  Guam    GU   GUM 2009
## 8079                                                  Guam    GU   GUM 2008
## 8080                                                  Guam    GU   GUM 2007
## 8081                                                  Guam    GU   GUM 2006
## 8082                                                  Guam    GU   GUM 2005
## 8083                                                  Guam    GU   GUM 2004
## 8084                                                  Guam    GU   GUM 2003
## 8085                                                  Guam    GU   GUM 2002
## 8086                                                  Guam    GU   GUM 2001
## 8087                                                  Guam    GU   GUM 2000
## 8088                                                  Guam    GU   GUM 1999
## 8089                                                  Guam    GU   GUM 1998
## 8090                                                  Guam    GU   GUM 1997
## 8091                                                  Guam    GU   GUM 1996
## 8092                                                  Guam    GU   GUM 1995
## 8093                                                  Guam    GU   GUM 1994
## 8094                                                  Guam    GU   GUM 1993
## 8095                                                  Guam    GU   GUM 1992
## 8096                                                  Guam    GU   GUM 1991
## 8097                                                  Guam    GU   GUM 1990
## 8098                                                  Guam    GU   GUM 1989
## 8099                                                  Guam    GU   GUM 1988
## 8100                                                  Guam    GU   GUM 1987
## 8101                                                  Guam    GU   GUM 1986
## 8102                                                  Guam    GU   GUM 1985
## 8103                                                  Guam    GU   GUM 1984
## 8104                                                  Guam    GU   GUM 1983
## 8105                                                  Guam    GU   GUM 1982
## 8106                                                  Guam    GU   GUM 1981
## 8107                                                  Guam    GU   GUM 1980
## 8108                                                  Guam    GU   GUM 1979
## 8109                                                  Guam    GU   GUM 1978
## 8110                                                  Guam    GU   GUM 1977
## 8111                                                  Guam    GU   GUM 1976
## 8112                                                  Guam    GU   GUM 1975
## 8113                                                  Guam    GU   GUM 1974
## 8114                                                  Guam    GU   GUM 1973
## 8115                                                  Guam    GU   GUM 1972
## 8116                                                  Guam    GU   GUM 1971
## 8117                                                  Guam    GU   GUM 1970
## 8118                                                  Guam    GU   GUM 1969
## 8119                                                  Guam    GU   GUM 1968
## 8120                                                  Guam    GU   GUM 1967
## 8121                                                  Guam    GU   GUM 1966
## 8122                                                  Guam    GU   GUM 1965
## 8123                                                  Guam    GU   GUM 1964
## 8124                                                  Guam    GU   GUM 1963
## 8125                                                  Guam    GU   GUM 1962
## 8126                                                  Guam    GU   GUM 1961
## 8127                                                  Guam    GU   GUM 1960
## 8128                                             Guatemala    GT   GTM 2022
## 8129                                             Guatemala    GT   GTM 2021
## 8130                                             Guatemala    GT   GTM 2020
## 8131                                             Guatemala    GT   GTM 2019
## 8132                                             Guatemala    GT   GTM 2018
## 8133                                             Guatemala    GT   GTM 2017
## 8134                                             Guatemala    GT   GTM 2016
## 8135                                             Guatemala    GT   GTM 2015
## 8136                                             Guatemala    GT   GTM 2014
## 8137                                             Guatemala    GT   GTM 2013
## 8138                                             Guatemala    GT   GTM 2012
## 8139                                             Guatemala    GT   GTM 2011
## 8140                                             Guatemala    GT   GTM 2010
## 8141                                             Guatemala    GT   GTM 2009
## 8142                                             Guatemala    GT   GTM 2008
## 8143                                             Guatemala    GT   GTM 2007
## 8144                                             Guatemala    GT   GTM 2006
## 8145                                             Guatemala    GT   GTM 2005
## 8146                                             Guatemala    GT   GTM 2004
## 8147                                             Guatemala    GT   GTM 2003
## 8148                                             Guatemala    GT   GTM 2002
## 8149                                             Guatemala    GT   GTM 2001
## 8150                                             Guatemala    GT   GTM 2000
## 8151                                             Guatemala    GT   GTM 1999
## 8152                                             Guatemala    GT   GTM 1998
## 8153                                             Guatemala    GT   GTM 1997
## 8154                                             Guatemala    GT   GTM 1996
## 8155                                             Guatemala    GT   GTM 1995
## 8156                                             Guatemala    GT   GTM 1994
## 8157                                             Guatemala    GT   GTM 1993
## 8158                                             Guatemala    GT   GTM 1992
## 8159                                             Guatemala    GT   GTM 1991
## 8160                                             Guatemala    GT   GTM 1990
## 8161                                             Guatemala    GT   GTM 1989
## 8162                                             Guatemala    GT   GTM 1988
## 8163                                             Guatemala    GT   GTM 1987
## 8164                                             Guatemala    GT   GTM 1986
## 8165                                             Guatemala    GT   GTM 1985
## 8166                                             Guatemala    GT   GTM 1984
## 8167                                             Guatemala    GT   GTM 1983
## 8168                                             Guatemala    GT   GTM 1982
## 8169                                             Guatemala    GT   GTM 1981
## 8170                                             Guatemala    GT   GTM 1980
## 8171                                             Guatemala    GT   GTM 1979
## 8172                                             Guatemala    GT   GTM 1978
## 8173                                             Guatemala    GT   GTM 1977
## 8174                                             Guatemala    GT   GTM 1976
## 8175                                             Guatemala    GT   GTM 1975
## 8176                                             Guatemala    GT   GTM 1974
## 8177                                             Guatemala    GT   GTM 1973
## 8178                                             Guatemala    GT   GTM 1972
## 8179                                             Guatemala    GT   GTM 1971
## 8180                                             Guatemala    GT   GTM 1970
## 8181                                             Guatemala    GT   GTM 1969
## 8182                                             Guatemala    GT   GTM 1968
## 8183                                             Guatemala    GT   GTM 1967
## 8184                                             Guatemala    GT   GTM 1966
## 8185                                             Guatemala    GT   GTM 1965
## 8186                                             Guatemala    GT   GTM 1964
## 8187                                             Guatemala    GT   GTM 1963
## 8188                                             Guatemala    GT   GTM 1962
## 8189                                             Guatemala    GT   GTM 1961
## 8190                                             Guatemala    GT   GTM 1960
## 8191                                                Guinea    GN   GIN 2022
## 8192                                                Guinea    GN   GIN 2021
## 8193                                                Guinea    GN   GIN 2020
## 8194                                                Guinea    GN   GIN 2019
## 8195                                                Guinea    GN   GIN 2018
## 8196                                                Guinea    GN   GIN 2017
## 8197                                                Guinea    GN   GIN 2016
## 8198                                                Guinea    GN   GIN 2015
## 8199                                                Guinea    GN   GIN 2014
## 8200                                                Guinea    GN   GIN 2013
## 8201                                                Guinea    GN   GIN 2012
## 8202                                                Guinea    GN   GIN 2011
## 8203                                                Guinea    GN   GIN 2010
## 8204                                                Guinea    GN   GIN 2009
## 8205                                                Guinea    GN   GIN 2008
## 8206                                                Guinea    GN   GIN 2007
## 8207                                                Guinea    GN   GIN 2006
## 8208                                                Guinea    GN   GIN 2005
## 8209                                                Guinea    GN   GIN 2004
## 8210                                                Guinea    GN   GIN 2003
## 8211                                                Guinea    GN   GIN 2002
## 8212                                                Guinea    GN   GIN 2001
## 8213                                                Guinea    GN   GIN 2000
## 8214                                                Guinea    GN   GIN 1999
## 8215                                                Guinea    GN   GIN 1998
## 8216                                                Guinea    GN   GIN 1997
## 8217                                                Guinea    GN   GIN 1996
## 8218                                                Guinea    GN   GIN 1995
## 8219                                                Guinea    GN   GIN 1994
## 8220                                                Guinea    GN   GIN 1993
## 8221                                                Guinea    GN   GIN 1992
## 8222                                                Guinea    GN   GIN 1991
## 8223                                                Guinea    GN   GIN 1990
## 8224                                                Guinea    GN   GIN 1989
## 8225                                                Guinea    GN   GIN 1988
## 8226                                                Guinea    GN   GIN 1987
## 8227                                                Guinea    GN   GIN 1986
## 8228                                                Guinea    GN   GIN 1985
## 8229                                                Guinea    GN   GIN 1984
## 8230                                                Guinea    GN   GIN 1983
## 8231                                                Guinea    GN   GIN 1982
## 8232                                                Guinea    GN   GIN 1981
## 8233                                                Guinea    GN   GIN 1980
## 8234                                                Guinea    GN   GIN 1979
## 8235                                                Guinea    GN   GIN 1978
## 8236                                                Guinea    GN   GIN 1977
## 8237                                                Guinea    GN   GIN 1976
## 8238                                                Guinea    GN   GIN 1975
## 8239                                                Guinea    GN   GIN 1974
## 8240                                                Guinea    GN   GIN 1973
## 8241                                                Guinea    GN   GIN 1972
## 8242                                                Guinea    GN   GIN 1971
## 8243                                                Guinea    GN   GIN 1970
## 8244                                                Guinea    GN   GIN 1969
## 8245                                                Guinea    GN   GIN 1968
## 8246                                                Guinea    GN   GIN 1967
## 8247                                                Guinea    GN   GIN 1966
## 8248                                                Guinea    GN   GIN 1965
## 8249                                                Guinea    GN   GIN 1964
## 8250                                                Guinea    GN   GIN 1963
## 8251                                                Guinea    GN   GIN 1962
## 8252                                                Guinea    GN   GIN 1961
## 8253                                                Guinea    GN   GIN 1960
## 8254                                         Guinea-Bissau    GW   GNB 2022
## 8255                                         Guinea-Bissau    GW   GNB 2021
## 8256                                         Guinea-Bissau    GW   GNB 2020
## 8257                                         Guinea-Bissau    GW   GNB 2019
## 8258                                         Guinea-Bissau    GW   GNB 2018
## 8259                                         Guinea-Bissau    GW   GNB 2017
## 8260                                         Guinea-Bissau    GW   GNB 2016
## 8261                                         Guinea-Bissau    GW   GNB 2015
## 8262                                         Guinea-Bissau    GW   GNB 2014
## 8263                                         Guinea-Bissau    GW   GNB 2013
## 8264                                         Guinea-Bissau    GW   GNB 2012
## 8265                                         Guinea-Bissau    GW   GNB 2011
## 8266                                         Guinea-Bissau    GW   GNB 2010
## 8267                                         Guinea-Bissau    GW   GNB 2009
## 8268                                         Guinea-Bissau    GW   GNB 2008
## 8269                                         Guinea-Bissau    GW   GNB 2007
## 8270                                         Guinea-Bissau    GW   GNB 2006
## 8271                                         Guinea-Bissau    GW   GNB 2005
## 8272                                         Guinea-Bissau    GW   GNB 2004
## 8273                                         Guinea-Bissau    GW   GNB 2003
## 8274                                         Guinea-Bissau    GW   GNB 2002
## 8275                                         Guinea-Bissau    GW   GNB 2001
## 8276                                         Guinea-Bissau    GW   GNB 2000
## 8277                                         Guinea-Bissau    GW   GNB 1999
## 8278                                         Guinea-Bissau    GW   GNB 1998
## 8279                                         Guinea-Bissau    GW   GNB 1997
## 8280                                         Guinea-Bissau    GW   GNB 1996
## 8281                                         Guinea-Bissau    GW   GNB 1995
## 8282                                         Guinea-Bissau    GW   GNB 1994
## 8283                                         Guinea-Bissau    GW   GNB 1993
## 8284                                         Guinea-Bissau    GW   GNB 1992
## 8285                                         Guinea-Bissau    GW   GNB 1991
## 8286                                         Guinea-Bissau    GW   GNB 1990
## 8287                                         Guinea-Bissau    GW   GNB 1989
## 8288                                         Guinea-Bissau    GW   GNB 1988
## 8289                                         Guinea-Bissau    GW   GNB 1987
## 8290                                         Guinea-Bissau    GW   GNB 1986
## 8291                                         Guinea-Bissau    GW   GNB 1985
## 8292                                         Guinea-Bissau    GW   GNB 1984
## 8293                                         Guinea-Bissau    GW   GNB 1983
## 8294                                         Guinea-Bissau    GW   GNB 1982
## 8295                                         Guinea-Bissau    GW   GNB 1981
## 8296                                         Guinea-Bissau    GW   GNB 1980
## 8297                                         Guinea-Bissau    GW   GNB 1979
## 8298                                         Guinea-Bissau    GW   GNB 1978
## 8299                                         Guinea-Bissau    GW   GNB 1977
## 8300                                         Guinea-Bissau    GW   GNB 1976
## 8301                                         Guinea-Bissau    GW   GNB 1975
## 8302                                         Guinea-Bissau    GW   GNB 1974
## 8303                                         Guinea-Bissau    GW   GNB 1973
## 8304                                         Guinea-Bissau    GW   GNB 1972
## 8305                                         Guinea-Bissau    GW   GNB 1971
## 8306                                         Guinea-Bissau    GW   GNB 1970
## 8307                                         Guinea-Bissau    GW   GNB 1969
## 8308                                         Guinea-Bissau    GW   GNB 1968
## 8309                                         Guinea-Bissau    GW   GNB 1967
## 8310                                         Guinea-Bissau    GW   GNB 1966
## 8311                                         Guinea-Bissau    GW   GNB 1965
## 8312                                         Guinea-Bissau    GW   GNB 1964
## 8313                                         Guinea-Bissau    GW   GNB 1963
## 8314                                         Guinea-Bissau    GW   GNB 1962
## 8315                                         Guinea-Bissau    GW   GNB 1961
## 8316                                         Guinea-Bissau    GW   GNB 1960
## 8317                                                Guyana    GY   GUY 2022
## 8318                                                Guyana    GY   GUY 2021
## 8319                                                Guyana    GY   GUY 2020
## 8320                                                Guyana    GY   GUY 2019
## 8321                                                Guyana    GY   GUY 2018
## 8322                                                Guyana    GY   GUY 2017
## 8323                                                Guyana    GY   GUY 2016
## 8324                                                Guyana    GY   GUY 2015
## 8325                                                Guyana    GY   GUY 2014
## 8326                                                Guyana    GY   GUY 2013
## 8327                                                Guyana    GY   GUY 2012
## 8328                                                Guyana    GY   GUY 2011
## 8329                                                Guyana    GY   GUY 2010
## 8330                                                Guyana    GY   GUY 2009
## 8331                                                Guyana    GY   GUY 2008
## 8332                                                Guyana    GY   GUY 2007
## 8333                                                Guyana    GY   GUY 2006
## 8334                                                Guyana    GY   GUY 2005
## 8335                                                Guyana    GY   GUY 2004
## 8336                                                Guyana    GY   GUY 2003
## 8337                                                Guyana    GY   GUY 2002
## 8338                                                Guyana    GY   GUY 2001
## 8339                                                Guyana    GY   GUY 2000
## 8340                                                Guyana    GY   GUY 1999
## 8341                                                Guyana    GY   GUY 1998
## 8342                                                Guyana    GY   GUY 1997
## 8343                                                Guyana    GY   GUY 1996
## 8344                                                Guyana    GY   GUY 1995
## 8345                                                Guyana    GY   GUY 1994
## 8346                                                Guyana    GY   GUY 1993
## 8347                                                Guyana    GY   GUY 1992
## 8348                                                Guyana    GY   GUY 1991
## 8349                                                Guyana    GY   GUY 1990
## 8350                                                Guyana    GY   GUY 1989
## 8351                                                Guyana    GY   GUY 1988
## 8352                                                Guyana    GY   GUY 1987
## 8353                                                Guyana    GY   GUY 1986
## 8354                                                Guyana    GY   GUY 1985
## 8355                                                Guyana    GY   GUY 1984
## 8356                                                Guyana    GY   GUY 1983
## 8357                                                Guyana    GY   GUY 1982
## 8358                                                Guyana    GY   GUY 1981
## 8359                                                Guyana    GY   GUY 1980
## 8360                                                Guyana    GY   GUY 1979
## 8361                                                Guyana    GY   GUY 1978
## 8362                                                Guyana    GY   GUY 1977
## 8363                                                Guyana    GY   GUY 1976
## 8364                                                Guyana    GY   GUY 1975
## 8365                                                Guyana    GY   GUY 1974
## 8366                                                Guyana    GY   GUY 1973
## 8367                                                Guyana    GY   GUY 1972
## 8368                                                Guyana    GY   GUY 1971
## 8369                                                Guyana    GY   GUY 1970
## 8370                                                Guyana    GY   GUY 1969
## 8371                                                Guyana    GY   GUY 1968
## 8372                                                Guyana    GY   GUY 1967
## 8373                                                Guyana    GY   GUY 1966
## 8374                                                Guyana    GY   GUY 1965
## 8375                                                Guyana    GY   GUY 1964
## 8376                                                Guyana    GY   GUY 1963
## 8377                                                Guyana    GY   GUY 1962
## 8378                                                Guyana    GY   GUY 1961
## 8379                                                Guyana    GY   GUY 1960
## 8380                                                 Haiti    HT   HTI 2022
## 8381                                                 Haiti    HT   HTI 2021
## 8382                                                 Haiti    HT   HTI 2020
## 8383                                                 Haiti    HT   HTI 2019
## 8384                                                 Haiti    HT   HTI 2018
## 8385                                                 Haiti    HT   HTI 2017
## 8386                                                 Haiti    HT   HTI 2016
## 8387                                                 Haiti    HT   HTI 2015
## 8388                                                 Haiti    HT   HTI 2014
## 8389                                                 Haiti    HT   HTI 2013
## 8390                                                 Haiti    HT   HTI 2012
## 8391                                                 Haiti    HT   HTI 2011
## 8392                                                 Haiti    HT   HTI 2010
## 8393                                                 Haiti    HT   HTI 2009
## 8394                                                 Haiti    HT   HTI 2008
## 8395                                                 Haiti    HT   HTI 2007
## 8396                                                 Haiti    HT   HTI 2006
## 8397                                                 Haiti    HT   HTI 2005
## 8398                                                 Haiti    HT   HTI 2004
## 8399                                                 Haiti    HT   HTI 2003
## 8400                                                 Haiti    HT   HTI 2002
## 8401                                                 Haiti    HT   HTI 2001
## 8402                                                 Haiti    HT   HTI 2000
## 8403                                                 Haiti    HT   HTI 1999
## 8404                                                 Haiti    HT   HTI 1998
## 8405                                                 Haiti    HT   HTI 1997
## 8406                                                 Haiti    HT   HTI 1996
## 8407                                                 Haiti    HT   HTI 1995
## 8408                                                 Haiti    HT   HTI 1994
## 8409                                                 Haiti    HT   HTI 1993
## 8410                                                 Haiti    HT   HTI 1992
## 8411                                                 Haiti    HT   HTI 1991
## 8412                                                 Haiti    HT   HTI 1990
## 8413                                                 Haiti    HT   HTI 1989
## 8414                                                 Haiti    HT   HTI 1988
## 8415                                                 Haiti    HT   HTI 1987
## 8416                                                 Haiti    HT   HTI 1986
## 8417                                                 Haiti    HT   HTI 1985
## 8418                                                 Haiti    HT   HTI 1984
## 8419                                                 Haiti    HT   HTI 1983
## 8420                                                 Haiti    HT   HTI 1982
## 8421                                                 Haiti    HT   HTI 1981
## 8422                                                 Haiti    HT   HTI 1980
## 8423                                                 Haiti    HT   HTI 1979
## 8424                                                 Haiti    HT   HTI 1978
## 8425                                                 Haiti    HT   HTI 1977
## 8426                                                 Haiti    HT   HTI 1976
## 8427                                                 Haiti    HT   HTI 1975
## 8428                                                 Haiti    HT   HTI 1974
## 8429                                                 Haiti    HT   HTI 1973
## 8430                                                 Haiti    HT   HTI 1972
## 8431                                                 Haiti    HT   HTI 1971
## 8432                                                 Haiti    HT   HTI 1970
## 8433                                                 Haiti    HT   HTI 1969
## 8434                                                 Haiti    HT   HTI 1968
## 8435                                                 Haiti    HT   HTI 1967
## 8436                                                 Haiti    HT   HTI 1966
## 8437                                                 Haiti    HT   HTI 1965
## 8438                                                 Haiti    HT   HTI 1964
## 8439                                                 Haiti    HT   HTI 1963
## 8440                                                 Haiti    HT   HTI 1962
## 8441                                                 Haiti    HT   HTI 1961
## 8442                                                 Haiti    HT   HTI 1960
## 8443                                              Honduras    HN   HND 2022
## 8444                                              Honduras    HN   HND 2021
## 8445                                              Honduras    HN   HND 2020
## 8446                                              Honduras    HN   HND 2019
## 8447                                              Honduras    HN   HND 2018
## 8448                                              Honduras    HN   HND 2017
## 8449                                              Honduras    HN   HND 2016
## 8450                                              Honduras    HN   HND 2015
## 8451                                              Honduras    HN   HND 2014
## 8452                                              Honduras    HN   HND 2013
## 8453                                              Honduras    HN   HND 2012
## 8454                                              Honduras    HN   HND 2011
## 8455                                              Honduras    HN   HND 2010
## 8456                                              Honduras    HN   HND 2009
## 8457                                              Honduras    HN   HND 2008
## 8458                                              Honduras    HN   HND 2007
## 8459                                              Honduras    HN   HND 2006
## 8460                                              Honduras    HN   HND 2005
## 8461                                              Honduras    HN   HND 2004
## 8462                                              Honduras    HN   HND 2003
## 8463                                              Honduras    HN   HND 2002
## 8464                                              Honduras    HN   HND 2001
## 8465                                              Honduras    HN   HND 2000
## 8466                                              Honduras    HN   HND 1999
## 8467                                              Honduras    HN   HND 1998
## 8468                                              Honduras    HN   HND 1997
## 8469                                              Honduras    HN   HND 1996
## 8470                                              Honduras    HN   HND 1995
## 8471                                              Honduras    HN   HND 1994
## 8472                                              Honduras    HN   HND 1993
## 8473                                              Honduras    HN   HND 1992
## 8474                                              Honduras    HN   HND 1991
## 8475                                              Honduras    HN   HND 1990
## 8476                                              Honduras    HN   HND 1989
## 8477                                              Honduras    HN   HND 1988
## 8478                                              Honduras    HN   HND 1987
## 8479                                              Honduras    HN   HND 1986
## 8480                                              Honduras    HN   HND 1985
## 8481                                              Honduras    HN   HND 1984
## 8482                                              Honduras    HN   HND 1983
## 8483                                              Honduras    HN   HND 1982
## 8484                                              Honduras    HN   HND 1981
## 8485                                              Honduras    HN   HND 1980
## 8486                                              Honduras    HN   HND 1979
## 8487                                              Honduras    HN   HND 1978
## 8488                                              Honduras    HN   HND 1977
## 8489                                              Honduras    HN   HND 1976
## 8490                                              Honduras    HN   HND 1975
## 8491                                              Honduras    HN   HND 1974
## 8492                                              Honduras    HN   HND 1973
## 8493                                              Honduras    HN   HND 1972
## 8494                                              Honduras    HN   HND 1971
## 8495                                              Honduras    HN   HND 1970
## 8496                                              Honduras    HN   HND 1969
## 8497                                              Honduras    HN   HND 1968
## 8498                                              Honduras    HN   HND 1967
## 8499                                              Honduras    HN   HND 1966
## 8500                                              Honduras    HN   HND 1965
## 8501                                              Honduras    HN   HND 1964
## 8502                                              Honduras    HN   HND 1963
## 8503                                              Honduras    HN   HND 1962
## 8504                                              Honduras    HN   HND 1961
## 8505                                              Honduras    HN   HND 1960
## 8506                                  Hong Kong SAR, China    HK   HKG 2022
## 8507                                  Hong Kong SAR, China    HK   HKG 2021
## 8508                                  Hong Kong SAR, China    HK   HKG 2020
## 8509                                  Hong Kong SAR, China    HK   HKG 2019
## 8510                                  Hong Kong SAR, China    HK   HKG 2018
## 8511                                  Hong Kong SAR, China    HK   HKG 2017
## 8512                                  Hong Kong SAR, China    HK   HKG 2016
## 8513                                  Hong Kong SAR, China    HK   HKG 2015
## 8514                                  Hong Kong SAR, China    HK   HKG 2014
## 8515                                  Hong Kong SAR, China    HK   HKG 2013
## 8516                                  Hong Kong SAR, China    HK   HKG 2012
## 8517                                  Hong Kong SAR, China    HK   HKG 2011
## 8518                                  Hong Kong SAR, China    HK   HKG 2010
## 8519                                  Hong Kong SAR, China    HK   HKG 2009
## 8520                                  Hong Kong SAR, China    HK   HKG 2008
## 8521                                  Hong Kong SAR, China    HK   HKG 2007
## 8522                                  Hong Kong SAR, China    HK   HKG 2006
## 8523                                  Hong Kong SAR, China    HK   HKG 2005
## 8524                                  Hong Kong SAR, China    HK   HKG 2004
## 8525                                  Hong Kong SAR, China    HK   HKG 2003
## 8526                                  Hong Kong SAR, China    HK   HKG 2002
## 8527                                  Hong Kong SAR, China    HK   HKG 2001
## 8528                                  Hong Kong SAR, China    HK   HKG 2000
## 8529                                  Hong Kong SAR, China    HK   HKG 1999
## 8530                                  Hong Kong SAR, China    HK   HKG 1998
## 8531                                  Hong Kong SAR, China    HK   HKG 1997
## 8532                                  Hong Kong SAR, China    HK   HKG 1996
## 8533                                  Hong Kong SAR, China    HK   HKG 1995
## 8534                                  Hong Kong SAR, China    HK   HKG 1994
## 8535                                  Hong Kong SAR, China    HK   HKG 1993
## 8536                                  Hong Kong SAR, China    HK   HKG 1992
## 8537                                  Hong Kong SAR, China    HK   HKG 1991
## 8538                                  Hong Kong SAR, China    HK   HKG 1990
## 8539                                  Hong Kong SAR, China    HK   HKG 1989
## 8540                                  Hong Kong SAR, China    HK   HKG 1988
## 8541                                  Hong Kong SAR, China    HK   HKG 1987
## 8542                                  Hong Kong SAR, China    HK   HKG 1986
## 8543                                  Hong Kong SAR, China    HK   HKG 1985
## 8544                                  Hong Kong SAR, China    HK   HKG 1984
## 8545                                  Hong Kong SAR, China    HK   HKG 1983
## 8546                                  Hong Kong SAR, China    HK   HKG 1982
## 8547                                  Hong Kong SAR, China    HK   HKG 1981
## 8548                                  Hong Kong SAR, China    HK   HKG 1980
## 8549                                  Hong Kong SAR, China    HK   HKG 1979
## 8550                                  Hong Kong SAR, China    HK   HKG 1978
## 8551                                  Hong Kong SAR, China    HK   HKG 1977
## 8552                                  Hong Kong SAR, China    HK   HKG 1976
## 8553                                  Hong Kong SAR, China    HK   HKG 1975
## 8554                                  Hong Kong SAR, China    HK   HKG 1974
## 8555                                  Hong Kong SAR, China    HK   HKG 1973
## 8556                                  Hong Kong SAR, China    HK   HKG 1972
## 8557                                  Hong Kong SAR, China    HK   HKG 1971
## 8558                                  Hong Kong SAR, China    HK   HKG 1970
## 8559                                  Hong Kong SAR, China    HK   HKG 1969
## 8560                                  Hong Kong SAR, China    HK   HKG 1968
## 8561                                  Hong Kong SAR, China    HK   HKG 1967
## 8562                                  Hong Kong SAR, China    HK   HKG 1966
## 8563                                  Hong Kong SAR, China    HK   HKG 1965
## 8564                                  Hong Kong SAR, China    HK   HKG 1964
## 8565                                  Hong Kong SAR, China    HK   HKG 1963
## 8566                                  Hong Kong SAR, China    HK   HKG 1962
## 8567                                  Hong Kong SAR, China    HK   HKG 1961
## 8568                                  Hong Kong SAR, China    HK   HKG 1960
## 8569                                               Hungary    HU   HUN 2022
## 8570                                               Hungary    HU   HUN 2021
## 8571                                               Hungary    HU   HUN 2020
## 8572                                               Hungary    HU   HUN 2019
## 8573                                               Hungary    HU   HUN 2018
## 8574                                               Hungary    HU   HUN 2017
## 8575                                               Hungary    HU   HUN 2016
## 8576                                               Hungary    HU   HUN 2015
## 8577                                               Hungary    HU   HUN 2014
## 8578                                               Hungary    HU   HUN 2013
## 8579                                               Hungary    HU   HUN 2012
## 8580                                               Hungary    HU   HUN 2011
## 8581                                               Hungary    HU   HUN 2010
## 8582                                               Hungary    HU   HUN 2009
## 8583                                               Hungary    HU   HUN 2008
## 8584                                               Hungary    HU   HUN 2007
## 8585                                               Hungary    HU   HUN 2006
## 8586                                               Hungary    HU   HUN 2005
## 8587                                               Hungary    HU   HUN 2004
## 8588                                               Hungary    HU   HUN 2003
## 8589                                               Hungary    HU   HUN 2002
## 8590                                               Hungary    HU   HUN 2001
## 8591                                               Hungary    HU   HUN 2000
## 8592                                               Hungary    HU   HUN 1999
## 8593                                               Hungary    HU   HUN 1998
## 8594                                               Hungary    HU   HUN 1997
## 8595                                               Hungary    HU   HUN 1996
## 8596                                               Hungary    HU   HUN 1995
## 8597                                               Hungary    HU   HUN 1994
## 8598                                               Hungary    HU   HUN 1993
## 8599                                               Hungary    HU   HUN 1992
## 8600                                               Hungary    HU   HUN 1991
## 8601                                               Hungary    HU   HUN 1990
## 8602                                               Hungary    HU   HUN 1989
## 8603                                               Hungary    HU   HUN 1988
## 8604                                               Hungary    HU   HUN 1987
## 8605                                               Hungary    HU   HUN 1986
## 8606                                               Hungary    HU   HUN 1985
## 8607                                               Hungary    HU   HUN 1984
## 8608                                               Hungary    HU   HUN 1983
## 8609                                               Hungary    HU   HUN 1982
## 8610                                               Hungary    HU   HUN 1981
## 8611                                               Hungary    HU   HUN 1980
## 8612                                               Hungary    HU   HUN 1979
## 8613                                               Hungary    HU   HUN 1978
## 8614                                               Hungary    HU   HUN 1977
## 8615                                               Hungary    HU   HUN 1976
## 8616                                               Hungary    HU   HUN 1975
## 8617                                               Hungary    HU   HUN 1974
## 8618                                               Hungary    HU   HUN 1973
## 8619                                               Hungary    HU   HUN 1972
## 8620                                               Hungary    HU   HUN 1971
## 8621                                               Hungary    HU   HUN 1970
## 8622                                               Hungary    HU   HUN 1969
## 8623                                               Hungary    HU   HUN 1968
## 8624                                               Hungary    HU   HUN 1967
## 8625                                               Hungary    HU   HUN 1966
## 8626                                               Hungary    HU   HUN 1965
## 8627                                               Hungary    HU   HUN 1964
## 8628                                               Hungary    HU   HUN 1963
## 8629                                               Hungary    HU   HUN 1962
## 8630                                               Hungary    HU   HUN 1961
## 8631                                               Hungary    HU   HUN 1960
## 8632                                               Iceland    IS   ISL 2022
## 8633                                               Iceland    IS   ISL 2021
## 8634                                               Iceland    IS   ISL 2020
## 8635                                               Iceland    IS   ISL 2019
## 8636                                               Iceland    IS   ISL 2018
## 8637                                               Iceland    IS   ISL 2017
## 8638                                               Iceland    IS   ISL 2016
## 8639                                               Iceland    IS   ISL 2015
## 8640                                               Iceland    IS   ISL 2014
## 8641                                               Iceland    IS   ISL 2013
## 8642                                               Iceland    IS   ISL 2012
## 8643                                               Iceland    IS   ISL 2011
## 8644                                               Iceland    IS   ISL 2010
## 8645                                               Iceland    IS   ISL 2009
## 8646                                               Iceland    IS   ISL 2008
## 8647                                               Iceland    IS   ISL 2007
## 8648                                               Iceland    IS   ISL 2006
## 8649                                               Iceland    IS   ISL 2005
## 8650                                               Iceland    IS   ISL 2004
## 8651                                               Iceland    IS   ISL 2003
## 8652                                               Iceland    IS   ISL 2002
## 8653                                               Iceland    IS   ISL 2001
## 8654                                               Iceland    IS   ISL 2000
## 8655                                               Iceland    IS   ISL 1999
## 8656                                               Iceland    IS   ISL 1998
## 8657                                               Iceland    IS   ISL 1997
## 8658                                               Iceland    IS   ISL 1996
## 8659                                               Iceland    IS   ISL 1995
## 8660                                               Iceland    IS   ISL 1994
## 8661                                               Iceland    IS   ISL 1993
## 8662                                               Iceland    IS   ISL 1992
## 8663                                               Iceland    IS   ISL 1991
## 8664                                               Iceland    IS   ISL 1990
## 8665                                               Iceland    IS   ISL 1989
## 8666                                               Iceland    IS   ISL 1988
## 8667                                               Iceland    IS   ISL 1987
## 8668                                               Iceland    IS   ISL 1986
## 8669                                               Iceland    IS   ISL 1985
## 8670                                               Iceland    IS   ISL 1984
## 8671                                               Iceland    IS   ISL 1983
## 8672                                               Iceland    IS   ISL 1982
## 8673                                               Iceland    IS   ISL 1981
## 8674                                               Iceland    IS   ISL 1980
## 8675                                               Iceland    IS   ISL 1979
## 8676                                               Iceland    IS   ISL 1978
## 8677                                               Iceland    IS   ISL 1977
## 8678                                               Iceland    IS   ISL 1976
## 8679                                               Iceland    IS   ISL 1975
## 8680                                               Iceland    IS   ISL 1974
## 8681                                               Iceland    IS   ISL 1973
## 8682                                               Iceland    IS   ISL 1972
## 8683                                               Iceland    IS   ISL 1971
## 8684                                               Iceland    IS   ISL 1970
## 8685                                               Iceland    IS   ISL 1969
## 8686                                               Iceland    IS   ISL 1968
## 8687                                               Iceland    IS   ISL 1967
## 8688                                               Iceland    IS   ISL 1966
## 8689                                               Iceland    IS   ISL 1965
## 8690                                               Iceland    IS   ISL 1964
## 8691                                               Iceland    IS   ISL 1963
## 8692                                               Iceland    IS   ISL 1962
## 8693                                               Iceland    IS   ISL 1961
## 8694                                               Iceland    IS   ISL 1960
## 8695                                                 India    IN   IND 2022
## 8696                                                 India    IN   IND 2021
## 8697                                                 India    IN   IND 2020
## 8698                                                 India    IN   IND 2019
## 8699                                                 India    IN   IND 2018
## 8700                                                 India    IN   IND 2017
## 8701                                                 India    IN   IND 2016
## 8702                                                 India    IN   IND 2015
## 8703                                                 India    IN   IND 2014
## 8704                                                 India    IN   IND 2013
## 8705                                                 India    IN   IND 2012
## 8706                                                 India    IN   IND 2011
## 8707                                                 India    IN   IND 2010
## 8708                                                 India    IN   IND 2009
## 8709                                                 India    IN   IND 2008
## 8710                                                 India    IN   IND 2007
## 8711                                                 India    IN   IND 2006
## 8712                                                 India    IN   IND 2005
## 8713                                                 India    IN   IND 2004
## 8714                                                 India    IN   IND 2003
## 8715                                                 India    IN   IND 2002
## 8716                                                 India    IN   IND 2001
## 8717                                                 India    IN   IND 2000
## 8718                                                 India    IN   IND 1999
## 8719                                                 India    IN   IND 1998
## 8720                                                 India    IN   IND 1997
## 8721                                                 India    IN   IND 1996
## 8722                                                 India    IN   IND 1995
## 8723                                                 India    IN   IND 1994
## 8724                                                 India    IN   IND 1993
## 8725                                                 India    IN   IND 1992
## 8726                                                 India    IN   IND 1991
## 8727                                                 India    IN   IND 1990
## 8728                                                 India    IN   IND 1989
## 8729                                                 India    IN   IND 1988
## 8730                                                 India    IN   IND 1987
## 8731                                                 India    IN   IND 1986
## 8732                                                 India    IN   IND 1985
## 8733                                                 India    IN   IND 1984
## 8734                                                 India    IN   IND 1983
## 8735                                                 India    IN   IND 1982
## 8736                                                 India    IN   IND 1981
## 8737                                                 India    IN   IND 1980
## 8738                                                 India    IN   IND 1979
## 8739                                                 India    IN   IND 1978
## 8740                                                 India    IN   IND 1977
## 8741                                                 India    IN   IND 1976
## 8742                                                 India    IN   IND 1975
## 8743                                                 India    IN   IND 1974
## 8744                                                 India    IN   IND 1973
## 8745                                                 India    IN   IND 1972
## 8746                                                 India    IN   IND 1971
## 8747                                                 India    IN   IND 1970
## 8748                                                 India    IN   IND 1969
## 8749                                                 India    IN   IND 1968
## 8750                                                 India    IN   IND 1967
## 8751                                                 India    IN   IND 1966
## 8752                                                 India    IN   IND 1965
## 8753                                                 India    IN   IND 1964
## 8754                                                 India    IN   IND 1963
## 8755                                                 India    IN   IND 1962
## 8756                                                 India    IN   IND 1961
## 8757                                                 India    IN   IND 1960
## 8758                                             Indonesia    ID   IDN 2022
## 8759                                             Indonesia    ID   IDN 2021
## 8760                                             Indonesia    ID   IDN 2020
## 8761                                             Indonesia    ID   IDN 2019
## 8762                                             Indonesia    ID   IDN 2018
## 8763                                             Indonesia    ID   IDN 2017
## 8764                                             Indonesia    ID   IDN 2016
## 8765                                             Indonesia    ID   IDN 2015
## 8766                                             Indonesia    ID   IDN 2014
## 8767                                             Indonesia    ID   IDN 2013
## 8768                                             Indonesia    ID   IDN 2012
## 8769                                             Indonesia    ID   IDN 2011
## 8770                                             Indonesia    ID   IDN 2010
## 8771                                             Indonesia    ID   IDN 2009
## 8772                                             Indonesia    ID   IDN 2008
## 8773                                             Indonesia    ID   IDN 2007
## 8774                                             Indonesia    ID   IDN 2006
## 8775                                             Indonesia    ID   IDN 2005
## 8776                                             Indonesia    ID   IDN 2004
## 8777                                             Indonesia    ID   IDN 2003
## 8778                                             Indonesia    ID   IDN 2002
## 8779                                             Indonesia    ID   IDN 2001
## 8780                                             Indonesia    ID   IDN 2000
## 8781                                             Indonesia    ID   IDN 1999
## 8782                                             Indonesia    ID   IDN 1998
## 8783                                             Indonesia    ID   IDN 1997
## 8784                                             Indonesia    ID   IDN 1996
## 8785                                             Indonesia    ID   IDN 1995
## 8786                                             Indonesia    ID   IDN 1994
## 8787                                             Indonesia    ID   IDN 1993
## 8788                                             Indonesia    ID   IDN 1992
## 8789                                             Indonesia    ID   IDN 1991
## 8790                                             Indonesia    ID   IDN 1990
## 8791                                             Indonesia    ID   IDN 1989
## 8792                                             Indonesia    ID   IDN 1988
## 8793                                             Indonesia    ID   IDN 1987
## 8794                                             Indonesia    ID   IDN 1986
## 8795                                             Indonesia    ID   IDN 1985
## 8796                                             Indonesia    ID   IDN 1984
## 8797                                             Indonesia    ID   IDN 1983
## 8798                                             Indonesia    ID   IDN 1982
## 8799                                             Indonesia    ID   IDN 1981
## 8800                                             Indonesia    ID   IDN 1980
## 8801                                             Indonesia    ID   IDN 1979
## 8802                                             Indonesia    ID   IDN 1978
## 8803                                             Indonesia    ID   IDN 1977
## 8804                                             Indonesia    ID   IDN 1976
## 8805                                             Indonesia    ID   IDN 1975
## 8806                                             Indonesia    ID   IDN 1974
## 8807                                             Indonesia    ID   IDN 1973
## 8808                                             Indonesia    ID   IDN 1972
## 8809                                             Indonesia    ID   IDN 1971
## 8810                                             Indonesia    ID   IDN 1970
## 8811                                             Indonesia    ID   IDN 1969
## 8812                                             Indonesia    ID   IDN 1968
## 8813                                             Indonesia    ID   IDN 1967
## 8814                                             Indonesia    ID   IDN 1966
## 8815                                             Indonesia    ID   IDN 1965
## 8816                                             Indonesia    ID   IDN 1964
## 8817                                             Indonesia    ID   IDN 1963
## 8818                                             Indonesia    ID   IDN 1962
## 8819                                             Indonesia    ID   IDN 1961
## 8820                                             Indonesia    ID   IDN 1960
## 8821                                    Iran, Islamic Rep.    IR   IRN 2022
## 8822                                    Iran, Islamic Rep.    IR   IRN 2021
## 8823                                    Iran, Islamic Rep.    IR   IRN 2020
## 8824                                    Iran, Islamic Rep.    IR   IRN 2019
## 8825                                    Iran, Islamic Rep.    IR   IRN 2018
## 8826                                    Iran, Islamic Rep.    IR   IRN 2017
## 8827                                    Iran, Islamic Rep.    IR   IRN 2016
## 8828                                    Iran, Islamic Rep.    IR   IRN 2015
## 8829                                    Iran, Islamic Rep.    IR   IRN 2014
## 8830                                    Iran, Islamic Rep.    IR   IRN 2013
## 8831                                    Iran, Islamic Rep.    IR   IRN 2012
## 8832                                    Iran, Islamic Rep.    IR   IRN 2011
## 8833                                    Iran, Islamic Rep.    IR   IRN 2010
## 8834                                    Iran, Islamic Rep.    IR   IRN 2009
## 8835                                    Iran, Islamic Rep.    IR   IRN 2008
## 8836                                    Iran, Islamic Rep.    IR   IRN 2007
## 8837                                    Iran, Islamic Rep.    IR   IRN 2006
## 8838                                    Iran, Islamic Rep.    IR   IRN 2005
## 8839                                    Iran, Islamic Rep.    IR   IRN 2004
## 8840                                    Iran, Islamic Rep.    IR   IRN 2003
## 8841                                    Iran, Islamic Rep.    IR   IRN 2002
## 8842                                    Iran, Islamic Rep.    IR   IRN 2001
## 8843                                    Iran, Islamic Rep.    IR   IRN 2000
## 8844                                    Iran, Islamic Rep.    IR   IRN 1999
## 8845                                    Iran, Islamic Rep.    IR   IRN 1998
## 8846                                    Iran, Islamic Rep.    IR   IRN 1997
## 8847                                    Iran, Islamic Rep.    IR   IRN 1996
## 8848                                    Iran, Islamic Rep.    IR   IRN 1995
## 8849                                    Iran, Islamic Rep.    IR   IRN 1994
## 8850                                    Iran, Islamic Rep.    IR   IRN 1993
## 8851                                    Iran, Islamic Rep.    IR   IRN 1992
## 8852                                    Iran, Islamic Rep.    IR   IRN 1991
## 8853                                    Iran, Islamic Rep.    IR   IRN 1990
## 8854                                    Iran, Islamic Rep.    IR   IRN 1989
## 8855                                    Iran, Islamic Rep.    IR   IRN 1988
## 8856                                    Iran, Islamic Rep.    IR   IRN 1987
## 8857                                    Iran, Islamic Rep.    IR   IRN 1986
## 8858                                    Iran, Islamic Rep.    IR   IRN 1985
## 8859                                    Iran, Islamic Rep.    IR   IRN 1984
## 8860                                    Iran, Islamic Rep.    IR   IRN 1983
## 8861                                    Iran, Islamic Rep.    IR   IRN 1982
## 8862                                    Iran, Islamic Rep.    IR   IRN 1981
## 8863                                    Iran, Islamic Rep.    IR   IRN 1980
## 8864                                    Iran, Islamic Rep.    IR   IRN 1979
## 8865                                    Iran, Islamic Rep.    IR   IRN 1978
## 8866                                    Iran, Islamic Rep.    IR   IRN 1977
## 8867                                    Iran, Islamic Rep.    IR   IRN 1976
## 8868                                    Iran, Islamic Rep.    IR   IRN 1975
## 8869                                    Iran, Islamic Rep.    IR   IRN 1974
## 8870                                    Iran, Islamic Rep.    IR   IRN 1973
## 8871                                    Iran, Islamic Rep.    IR   IRN 1972
## 8872                                    Iran, Islamic Rep.    IR   IRN 1971
## 8873                                    Iran, Islamic Rep.    IR   IRN 1970
## 8874                                    Iran, Islamic Rep.    IR   IRN 1969
## 8875                                    Iran, Islamic Rep.    IR   IRN 1968
## 8876                                    Iran, Islamic Rep.    IR   IRN 1967
## 8877                                    Iran, Islamic Rep.    IR   IRN 1966
## 8878                                    Iran, Islamic Rep.    IR   IRN 1965
## 8879                                    Iran, Islamic Rep.    IR   IRN 1964
## 8880                                    Iran, Islamic Rep.    IR   IRN 1963
## 8881                                    Iran, Islamic Rep.    IR   IRN 1962
## 8882                                    Iran, Islamic Rep.    IR   IRN 1961
## 8883                                    Iran, Islamic Rep.    IR   IRN 1960
## 8884                                                  Iraq    IQ   IRQ 2022
## 8885                                                  Iraq    IQ   IRQ 2021
## 8886                                                  Iraq    IQ   IRQ 2020
## 8887                                                  Iraq    IQ   IRQ 2019
## 8888                                                  Iraq    IQ   IRQ 2018
## 8889                                                  Iraq    IQ   IRQ 2017
## 8890                                                  Iraq    IQ   IRQ 2016
## 8891                                                  Iraq    IQ   IRQ 2015
## 8892                                                  Iraq    IQ   IRQ 2014
## 8893                                                  Iraq    IQ   IRQ 2013
## 8894                                                  Iraq    IQ   IRQ 2012
## 8895                                                  Iraq    IQ   IRQ 2011
## 8896                                                  Iraq    IQ   IRQ 2010
## 8897                                                  Iraq    IQ   IRQ 2009
## 8898                                                  Iraq    IQ   IRQ 2008
## 8899                                                  Iraq    IQ   IRQ 2007
## 8900                                                  Iraq    IQ   IRQ 2006
## 8901                                                  Iraq    IQ   IRQ 2005
## 8902                                                  Iraq    IQ   IRQ 2004
## 8903                                                  Iraq    IQ   IRQ 2003
## 8904                                                  Iraq    IQ   IRQ 2002
## 8905                                                  Iraq    IQ   IRQ 2001
## 8906                                                  Iraq    IQ   IRQ 2000
## 8907                                                  Iraq    IQ   IRQ 1999
## 8908                                                  Iraq    IQ   IRQ 1998
## 8909                                                  Iraq    IQ   IRQ 1997
## 8910                                                  Iraq    IQ   IRQ 1996
## 8911                                                  Iraq    IQ   IRQ 1995
## 8912                                                  Iraq    IQ   IRQ 1994
## 8913                                                  Iraq    IQ   IRQ 1993
## 8914                                                  Iraq    IQ   IRQ 1992
## 8915                                                  Iraq    IQ   IRQ 1991
## 8916                                                  Iraq    IQ   IRQ 1990
## 8917                                                  Iraq    IQ   IRQ 1989
## 8918                                                  Iraq    IQ   IRQ 1988
## 8919                                                  Iraq    IQ   IRQ 1987
## 8920                                                  Iraq    IQ   IRQ 1986
## 8921                                                  Iraq    IQ   IRQ 1985
## 8922                                                  Iraq    IQ   IRQ 1984
## 8923                                                  Iraq    IQ   IRQ 1983
## 8924                                                  Iraq    IQ   IRQ 1982
## 8925                                                  Iraq    IQ   IRQ 1981
## 8926                                                  Iraq    IQ   IRQ 1980
## 8927                                                  Iraq    IQ   IRQ 1979
## 8928                                                  Iraq    IQ   IRQ 1978
## 8929                                                  Iraq    IQ   IRQ 1977
## 8930                                                  Iraq    IQ   IRQ 1976
## 8931                                                  Iraq    IQ   IRQ 1975
## 8932                                                  Iraq    IQ   IRQ 1974
## 8933                                                  Iraq    IQ   IRQ 1973
## 8934                                                  Iraq    IQ   IRQ 1972
## 8935                                                  Iraq    IQ   IRQ 1971
## 8936                                                  Iraq    IQ   IRQ 1970
## 8937                                                  Iraq    IQ   IRQ 1969
## 8938                                                  Iraq    IQ   IRQ 1968
## 8939                                                  Iraq    IQ   IRQ 1967
## 8940                                                  Iraq    IQ   IRQ 1966
## 8941                                                  Iraq    IQ   IRQ 1965
## 8942                                                  Iraq    IQ   IRQ 1964
## 8943                                                  Iraq    IQ   IRQ 1963
## 8944                                                  Iraq    IQ   IRQ 1962
## 8945                                                  Iraq    IQ   IRQ 1961
## 8946                                                  Iraq    IQ   IRQ 1960
## 8947                                               Ireland    IE   IRL 2022
## 8948                                               Ireland    IE   IRL 2021
## 8949                                               Ireland    IE   IRL 2020
## 8950                                               Ireland    IE   IRL 2019
## 8951                                               Ireland    IE   IRL 2018
## 8952                                               Ireland    IE   IRL 2017
## 8953                                               Ireland    IE   IRL 2016
## 8954                                               Ireland    IE   IRL 2015
## 8955                                               Ireland    IE   IRL 2014
## 8956                                               Ireland    IE   IRL 2013
## 8957                                               Ireland    IE   IRL 2012
## 8958                                               Ireland    IE   IRL 2011
## 8959                                               Ireland    IE   IRL 2010
## 8960                                               Ireland    IE   IRL 2009
## 8961                                               Ireland    IE   IRL 2008
## 8962                                               Ireland    IE   IRL 2007
## 8963                                               Ireland    IE   IRL 2006
## 8964                                               Ireland    IE   IRL 2005
## 8965                                               Ireland    IE   IRL 2004
## 8966                                               Ireland    IE   IRL 2003
## 8967                                               Ireland    IE   IRL 2002
## 8968                                               Ireland    IE   IRL 2001
## 8969                                               Ireland    IE   IRL 2000
## 8970                                               Ireland    IE   IRL 1999
## 8971                                               Ireland    IE   IRL 1998
## 8972                                               Ireland    IE   IRL 1997
## 8973                                               Ireland    IE   IRL 1996
## 8974                                               Ireland    IE   IRL 1995
## 8975                                               Ireland    IE   IRL 1994
## 8976                                               Ireland    IE   IRL 1993
## 8977                                               Ireland    IE   IRL 1992
## 8978                                               Ireland    IE   IRL 1991
## 8979                                               Ireland    IE   IRL 1990
## 8980                                               Ireland    IE   IRL 1989
## 8981                                               Ireland    IE   IRL 1988
## 8982                                               Ireland    IE   IRL 1987
## 8983                                               Ireland    IE   IRL 1986
## 8984                                               Ireland    IE   IRL 1985
## 8985                                               Ireland    IE   IRL 1984
## 8986                                               Ireland    IE   IRL 1983
## 8987                                               Ireland    IE   IRL 1982
## 8988                                               Ireland    IE   IRL 1981
## 8989                                               Ireland    IE   IRL 1980
## 8990                                               Ireland    IE   IRL 1979
## 8991                                               Ireland    IE   IRL 1978
## 8992                                               Ireland    IE   IRL 1977
## 8993                                               Ireland    IE   IRL 1976
## 8994                                               Ireland    IE   IRL 1975
## 8995                                               Ireland    IE   IRL 1974
## 8996                                               Ireland    IE   IRL 1973
## 8997                                               Ireland    IE   IRL 1972
## 8998                                               Ireland    IE   IRL 1971
## 8999                                               Ireland    IE   IRL 1970
## 9000                                               Ireland    IE   IRL 1969
## 9001                                               Ireland    IE   IRL 1968
## 9002                                               Ireland    IE   IRL 1967
## 9003                                               Ireland    IE   IRL 1966
## 9004                                               Ireland    IE   IRL 1965
## 9005                                               Ireland    IE   IRL 1964
## 9006                                               Ireland    IE   IRL 1963
## 9007                                               Ireland    IE   IRL 1962
## 9008                                               Ireland    IE   IRL 1961
## 9009                                               Ireland    IE   IRL 1960
## 9010                                           Isle of Man    IM   IMN 2022
## 9011                                           Isle of Man    IM   IMN 2021
## 9012                                           Isle of Man    IM   IMN 2020
## 9013                                           Isle of Man    IM   IMN 2019
## 9014                                           Isle of Man    IM   IMN 2018
## 9015                                           Isle of Man    IM   IMN 2017
## 9016                                           Isle of Man    IM   IMN 2016
## 9017                                           Isle of Man    IM   IMN 2015
## 9018                                           Isle of Man    IM   IMN 2014
## 9019                                           Isle of Man    IM   IMN 2013
## 9020                                           Isle of Man    IM   IMN 2012
## 9021                                           Isle of Man    IM   IMN 2011
## 9022                                           Isle of Man    IM   IMN 2010
## 9023                                           Isle of Man    IM   IMN 2009
## 9024                                           Isle of Man    IM   IMN 2008
## 9025                                           Isle of Man    IM   IMN 2007
## 9026                                           Isle of Man    IM   IMN 2006
## 9027                                           Isle of Man    IM   IMN 2005
## 9028                                           Isle of Man    IM   IMN 2004
## 9029                                           Isle of Man    IM   IMN 2003
## 9030                                           Isle of Man    IM   IMN 2002
## 9031                                           Isle of Man    IM   IMN 2001
## 9032                                           Isle of Man    IM   IMN 2000
## 9033                                           Isle of Man    IM   IMN 1999
## 9034                                           Isle of Man    IM   IMN 1998
## 9035                                           Isle of Man    IM   IMN 1997
## 9036                                           Isle of Man    IM   IMN 1996
## 9037                                           Isle of Man    IM   IMN 1995
## 9038                                           Isle of Man    IM   IMN 1994
## 9039                                           Isle of Man    IM   IMN 1993
## 9040                                           Isle of Man    IM   IMN 1992
## 9041                                           Isle of Man    IM   IMN 1991
## 9042                                           Isle of Man    IM   IMN 1990
## 9043                                           Isle of Man    IM   IMN 1989
## 9044                                           Isle of Man    IM   IMN 1988
## 9045                                           Isle of Man    IM   IMN 1987
## 9046                                           Isle of Man    IM   IMN 1986
## 9047                                           Isle of Man    IM   IMN 1985
## 9048                                           Isle of Man    IM   IMN 1984
## 9049                                           Isle of Man    IM   IMN 1983
## 9050                                           Isle of Man    IM   IMN 1982
## 9051                                           Isle of Man    IM   IMN 1981
## 9052                                           Isle of Man    IM   IMN 1980
## 9053                                           Isle of Man    IM   IMN 1979
## 9054                                           Isle of Man    IM   IMN 1978
## 9055                                           Isle of Man    IM   IMN 1977
## 9056                                           Isle of Man    IM   IMN 1976
## 9057                                           Isle of Man    IM   IMN 1975
## 9058                                           Isle of Man    IM   IMN 1974
## 9059                                           Isle of Man    IM   IMN 1973
## 9060                                           Isle of Man    IM   IMN 1972
## 9061                                           Isle of Man    IM   IMN 1971
## 9062                                           Isle of Man    IM   IMN 1970
## 9063                                           Isle of Man    IM   IMN 1969
## 9064                                           Isle of Man    IM   IMN 1968
## 9065                                           Isle of Man    IM   IMN 1967
## 9066                                           Isle of Man    IM   IMN 1966
## 9067                                           Isle of Man    IM   IMN 1965
## 9068                                           Isle of Man    IM   IMN 1964
## 9069                                           Isle of Man    IM   IMN 1963
## 9070                                           Isle of Man    IM   IMN 1962
## 9071                                           Isle of Man    IM   IMN 1961
## 9072                                           Isle of Man    IM   IMN 1960
## 9073                                                Israel    IL   ISR 2022
## 9074                                                Israel    IL   ISR 2021
## 9075                                                Israel    IL   ISR 2020
## 9076                                                Israel    IL   ISR 2019
## 9077                                                Israel    IL   ISR 2018
## 9078                                                Israel    IL   ISR 2017
## 9079                                                Israel    IL   ISR 2016
## 9080                                                Israel    IL   ISR 2015
## 9081                                                Israel    IL   ISR 2014
## 9082                                                Israel    IL   ISR 2013
## 9083                                                Israel    IL   ISR 2012
## 9084                                                Israel    IL   ISR 2011
## 9085                                                Israel    IL   ISR 2010
## 9086                                                Israel    IL   ISR 2009
## 9087                                                Israel    IL   ISR 2008
## 9088                                                Israel    IL   ISR 2007
## 9089                                                Israel    IL   ISR 2006
## 9090                                                Israel    IL   ISR 2005
## 9091                                                Israel    IL   ISR 2004
## 9092                                                Israel    IL   ISR 2003
## 9093                                                Israel    IL   ISR 2002
## 9094                                                Israel    IL   ISR 2001
## 9095                                                Israel    IL   ISR 2000
## 9096                                                Israel    IL   ISR 1999
## 9097                                                Israel    IL   ISR 1998
## 9098                                                Israel    IL   ISR 1997
## 9099                                                Israel    IL   ISR 1996
## 9100                                                Israel    IL   ISR 1995
## 9101                                                Israel    IL   ISR 1994
## 9102                                                Israel    IL   ISR 1993
## 9103                                                Israel    IL   ISR 1992
## 9104                                                Israel    IL   ISR 1991
## 9105                                                Israel    IL   ISR 1990
## 9106                                                Israel    IL   ISR 1989
## 9107                                                Israel    IL   ISR 1988
## 9108                                                Israel    IL   ISR 1987
## 9109                                                Israel    IL   ISR 1986
## 9110                                                Israel    IL   ISR 1985
## 9111                                                Israel    IL   ISR 1984
## 9112                                                Israel    IL   ISR 1983
## 9113                                                Israel    IL   ISR 1982
## 9114                                                Israel    IL   ISR 1981
## 9115                                                Israel    IL   ISR 1980
## 9116                                                Israel    IL   ISR 1979
## 9117                                                Israel    IL   ISR 1978
## 9118                                                Israel    IL   ISR 1977
## 9119                                                Israel    IL   ISR 1976
## 9120                                                Israel    IL   ISR 1975
## 9121                                                Israel    IL   ISR 1974
## 9122                                                Israel    IL   ISR 1973
## 9123                                                Israel    IL   ISR 1972
## 9124                                                Israel    IL   ISR 1971
## 9125                                                Israel    IL   ISR 1970
## 9126                                                Israel    IL   ISR 1969
## 9127                                                Israel    IL   ISR 1968
## 9128                                                Israel    IL   ISR 1967
## 9129                                                Israel    IL   ISR 1966
## 9130                                                Israel    IL   ISR 1965
## 9131                                                Israel    IL   ISR 1964
## 9132                                                Israel    IL   ISR 1963
## 9133                                                Israel    IL   ISR 1962
## 9134                                                Israel    IL   ISR 1961
## 9135                                                Israel    IL   ISR 1960
## 9136                                                 Italy    IT   ITA 2022
## 9137                                                 Italy    IT   ITA 2021
## 9138                                                 Italy    IT   ITA 2020
## 9139                                                 Italy    IT   ITA 2019
## 9140                                                 Italy    IT   ITA 2018
## 9141                                                 Italy    IT   ITA 2017
## 9142                                                 Italy    IT   ITA 2016
## 9143                                                 Italy    IT   ITA 2015
## 9144                                                 Italy    IT   ITA 2014
## 9145                                                 Italy    IT   ITA 2013
## 9146                                                 Italy    IT   ITA 2012
## 9147                                                 Italy    IT   ITA 2011
## 9148                                                 Italy    IT   ITA 2010
## 9149                                                 Italy    IT   ITA 2009
## 9150                                                 Italy    IT   ITA 2008
## 9151                                                 Italy    IT   ITA 2007
## 9152                                                 Italy    IT   ITA 2006
## 9153                                                 Italy    IT   ITA 2005
## 9154                                                 Italy    IT   ITA 2004
## 9155                                                 Italy    IT   ITA 2003
## 9156                                                 Italy    IT   ITA 2002
## 9157                                                 Italy    IT   ITA 2001
## 9158                                                 Italy    IT   ITA 2000
## 9159                                                 Italy    IT   ITA 1999
## 9160                                                 Italy    IT   ITA 1998
## 9161                                                 Italy    IT   ITA 1997
## 9162                                                 Italy    IT   ITA 1996
## 9163                                                 Italy    IT   ITA 1995
## 9164                                                 Italy    IT   ITA 1994
## 9165                                                 Italy    IT   ITA 1993
## 9166                                                 Italy    IT   ITA 1992
## 9167                                                 Italy    IT   ITA 1991
## 9168                                                 Italy    IT   ITA 1990
## 9169                                                 Italy    IT   ITA 1989
## 9170                                                 Italy    IT   ITA 1988
## 9171                                                 Italy    IT   ITA 1987
## 9172                                                 Italy    IT   ITA 1986
## 9173                                                 Italy    IT   ITA 1985
## 9174                                                 Italy    IT   ITA 1984
## 9175                                                 Italy    IT   ITA 1983
## 9176                                                 Italy    IT   ITA 1982
## 9177                                                 Italy    IT   ITA 1981
## 9178                                                 Italy    IT   ITA 1980
## 9179                                                 Italy    IT   ITA 1979
## 9180                                                 Italy    IT   ITA 1978
## 9181                                                 Italy    IT   ITA 1977
## 9182                                                 Italy    IT   ITA 1976
## 9183                                                 Italy    IT   ITA 1975
## 9184                                                 Italy    IT   ITA 1974
## 9185                                                 Italy    IT   ITA 1973
## 9186                                                 Italy    IT   ITA 1972
## 9187                                                 Italy    IT   ITA 1971
## 9188                                                 Italy    IT   ITA 1970
## 9189                                                 Italy    IT   ITA 1969
## 9190                                                 Italy    IT   ITA 1968
## 9191                                                 Italy    IT   ITA 1967
## 9192                                                 Italy    IT   ITA 1966
## 9193                                                 Italy    IT   ITA 1965
## 9194                                                 Italy    IT   ITA 1964
## 9195                                                 Italy    IT   ITA 1963
## 9196                                                 Italy    IT   ITA 1962
## 9197                                                 Italy    IT   ITA 1961
## 9198                                                 Italy    IT   ITA 1960
## 9199                                               Jamaica    JM   JAM 2022
## 9200                                               Jamaica    JM   JAM 2021
## 9201                                               Jamaica    JM   JAM 2020
## 9202                                               Jamaica    JM   JAM 2019
## 9203                                               Jamaica    JM   JAM 2018
## 9204                                               Jamaica    JM   JAM 2017
## 9205                                               Jamaica    JM   JAM 2016
## 9206                                               Jamaica    JM   JAM 2015
## 9207                                               Jamaica    JM   JAM 2014
## 9208                                               Jamaica    JM   JAM 2013
## 9209                                               Jamaica    JM   JAM 2012
## 9210                                               Jamaica    JM   JAM 2011
## 9211                                               Jamaica    JM   JAM 2010
## 9212                                               Jamaica    JM   JAM 2009
## 9213                                               Jamaica    JM   JAM 2008
## 9214                                               Jamaica    JM   JAM 2007
## 9215                                               Jamaica    JM   JAM 2006
## 9216                                               Jamaica    JM   JAM 2005
## 9217                                               Jamaica    JM   JAM 2004
## 9218                                               Jamaica    JM   JAM 2003
## 9219                                               Jamaica    JM   JAM 2002
## 9220                                               Jamaica    JM   JAM 2001
## 9221                                               Jamaica    JM   JAM 2000
## 9222                                               Jamaica    JM   JAM 1999
## 9223                                               Jamaica    JM   JAM 1998
## 9224                                               Jamaica    JM   JAM 1997
## 9225                                               Jamaica    JM   JAM 1996
## 9226                                               Jamaica    JM   JAM 1995
## 9227                                               Jamaica    JM   JAM 1994
## 9228                                               Jamaica    JM   JAM 1993
## 9229                                               Jamaica    JM   JAM 1992
## 9230                                               Jamaica    JM   JAM 1991
## 9231                                               Jamaica    JM   JAM 1990
## 9232                                               Jamaica    JM   JAM 1989
## 9233                                               Jamaica    JM   JAM 1988
## 9234                                               Jamaica    JM   JAM 1987
## 9235                                               Jamaica    JM   JAM 1986
## 9236                                               Jamaica    JM   JAM 1985
## 9237                                               Jamaica    JM   JAM 1984
## 9238                                               Jamaica    JM   JAM 1983
## 9239                                               Jamaica    JM   JAM 1982
## 9240                                               Jamaica    JM   JAM 1981
## 9241                                               Jamaica    JM   JAM 1980
## 9242                                               Jamaica    JM   JAM 1979
## 9243                                               Jamaica    JM   JAM 1978
## 9244                                               Jamaica    JM   JAM 1977
## 9245                                               Jamaica    JM   JAM 1976
## 9246                                               Jamaica    JM   JAM 1975
## 9247                                               Jamaica    JM   JAM 1974
## 9248                                               Jamaica    JM   JAM 1973
## 9249                                               Jamaica    JM   JAM 1972
## 9250                                               Jamaica    JM   JAM 1971
## 9251                                               Jamaica    JM   JAM 1970
## 9252                                               Jamaica    JM   JAM 1969
## 9253                                               Jamaica    JM   JAM 1968
## 9254                                               Jamaica    JM   JAM 1967
## 9255                                               Jamaica    JM   JAM 1966
## 9256                                               Jamaica    JM   JAM 1965
## 9257                                               Jamaica    JM   JAM 1964
## 9258                                               Jamaica    JM   JAM 1963
## 9259                                               Jamaica    JM   JAM 1962
## 9260                                               Jamaica    JM   JAM 1961
## 9261                                               Jamaica    JM   JAM 1960
## 9262                                                 Japan    JP   JPN 2022
## 9263                                                 Japan    JP   JPN 2021
## 9264                                                 Japan    JP   JPN 2020
## 9265                                                 Japan    JP   JPN 2019
## 9266                                                 Japan    JP   JPN 2018
## 9267                                                 Japan    JP   JPN 2017
## 9268                                                 Japan    JP   JPN 2016
## 9269                                                 Japan    JP   JPN 2015
## 9270                                                 Japan    JP   JPN 2014
## 9271                                                 Japan    JP   JPN 2013
## 9272                                                 Japan    JP   JPN 2012
## 9273                                                 Japan    JP   JPN 2011
## 9274                                                 Japan    JP   JPN 2010
## 9275                                                 Japan    JP   JPN 2009
## 9276                                                 Japan    JP   JPN 2008
## 9277                                                 Japan    JP   JPN 2007
## 9278                                                 Japan    JP   JPN 2006
## 9279                                                 Japan    JP   JPN 2005
## 9280                                                 Japan    JP   JPN 2004
## 9281                                                 Japan    JP   JPN 2003
## 9282                                                 Japan    JP   JPN 2002
## 9283                                                 Japan    JP   JPN 2001
## 9284                                                 Japan    JP   JPN 2000
## 9285                                                 Japan    JP   JPN 1999
## 9286                                                 Japan    JP   JPN 1998
## 9287                                                 Japan    JP   JPN 1997
## 9288                                                 Japan    JP   JPN 1996
## 9289                                                 Japan    JP   JPN 1995
## 9290                                                 Japan    JP   JPN 1994
## 9291                                                 Japan    JP   JPN 1993
## 9292                                                 Japan    JP   JPN 1992
## 9293                                                 Japan    JP   JPN 1991
## 9294                                                 Japan    JP   JPN 1990
## 9295                                                 Japan    JP   JPN 1989
## 9296                                                 Japan    JP   JPN 1988
## 9297                                                 Japan    JP   JPN 1987
## 9298                                                 Japan    JP   JPN 1986
## 9299                                                 Japan    JP   JPN 1985
## 9300                                                 Japan    JP   JPN 1984
## 9301                                                 Japan    JP   JPN 1983
## 9302                                                 Japan    JP   JPN 1982
## 9303                                                 Japan    JP   JPN 1981
## 9304                                                 Japan    JP   JPN 1980
## 9305                                                 Japan    JP   JPN 1979
## 9306                                                 Japan    JP   JPN 1978
## 9307                                                 Japan    JP   JPN 1977
## 9308                                                 Japan    JP   JPN 1976
## 9309                                                 Japan    JP   JPN 1975
## 9310                                                 Japan    JP   JPN 1974
## 9311                                                 Japan    JP   JPN 1973
## 9312                                                 Japan    JP   JPN 1972
## 9313                                                 Japan    JP   JPN 1971
## 9314                                                 Japan    JP   JPN 1970
## 9315                                                 Japan    JP   JPN 1969
## 9316                                                 Japan    JP   JPN 1968
## 9317                                                 Japan    JP   JPN 1967
## 9318                                                 Japan    JP   JPN 1966
## 9319                                                 Japan    JP   JPN 1965
## 9320                                                 Japan    JP   JPN 1964
## 9321                                                 Japan    JP   JPN 1963
## 9322                                                 Japan    JP   JPN 1962
## 9323                                                 Japan    JP   JPN 1961
## 9324                                                 Japan    JP   JPN 1960
## 9325                                                Jordan    JO   JOR 2022
## 9326                                                Jordan    JO   JOR 2021
## 9327                                                Jordan    JO   JOR 2020
## 9328                                                Jordan    JO   JOR 2019
## 9329                                                Jordan    JO   JOR 2018
## 9330                                                Jordan    JO   JOR 2017
## 9331                                                Jordan    JO   JOR 2016
## 9332                                                Jordan    JO   JOR 2015
## 9333                                                Jordan    JO   JOR 2014
## 9334                                                Jordan    JO   JOR 2013
## 9335                                                Jordan    JO   JOR 2012
## 9336                                                Jordan    JO   JOR 2011
## 9337                                                Jordan    JO   JOR 2010
## 9338                                                Jordan    JO   JOR 2009
## 9339                                                Jordan    JO   JOR 2008
## 9340                                                Jordan    JO   JOR 2007
## 9341                                                Jordan    JO   JOR 2006
## 9342                                                Jordan    JO   JOR 2005
## 9343                                                Jordan    JO   JOR 2004
## 9344                                                Jordan    JO   JOR 2003
## 9345                                                Jordan    JO   JOR 2002
## 9346                                                Jordan    JO   JOR 2001
## 9347                                                Jordan    JO   JOR 2000
## 9348                                                Jordan    JO   JOR 1999
## 9349                                                Jordan    JO   JOR 1998
## 9350                                                Jordan    JO   JOR 1997
## 9351                                                Jordan    JO   JOR 1996
## 9352                                                Jordan    JO   JOR 1995
## 9353                                                Jordan    JO   JOR 1994
## 9354                                                Jordan    JO   JOR 1993
## 9355                                                Jordan    JO   JOR 1992
## 9356                                                Jordan    JO   JOR 1991
## 9357                                                Jordan    JO   JOR 1990
## 9358                                                Jordan    JO   JOR 1989
## 9359                                                Jordan    JO   JOR 1988
## 9360                                                Jordan    JO   JOR 1987
## 9361                                                Jordan    JO   JOR 1986
## 9362                                                Jordan    JO   JOR 1985
## 9363                                                Jordan    JO   JOR 1984
## 9364                                                Jordan    JO   JOR 1983
## 9365                                                Jordan    JO   JOR 1982
## 9366                                                Jordan    JO   JOR 1981
## 9367                                                Jordan    JO   JOR 1980
## 9368                                                Jordan    JO   JOR 1979
## 9369                                                Jordan    JO   JOR 1978
## 9370                                                Jordan    JO   JOR 1977
## 9371                                                Jordan    JO   JOR 1976
## 9372                                                Jordan    JO   JOR 1975
## 9373                                                Jordan    JO   JOR 1974
## 9374                                                Jordan    JO   JOR 1973
## 9375                                                Jordan    JO   JOR 1972
## 9376                                                Jordan    JO   JOR 1971
## 9377                                                Jordan    JO   JOR 1970
## 9378                                                Jordan    JO   JOR 1969
## 9379                                                Jordan    JO   JOR 1968
## 9380                                                Jordan    JO   JOR 1967
## 9381                                                Jordan    JO   JOR 1966
## 9382                                                Jordan    JO   JOR 1965
## 9383                                                Jordan    JO   JOR 1964
## 9384                                                Jordan    JO   JOR 1963
## 9385                                                Jordan    JO   JOR 1962
## 9386                                                Jordan    JO   JOR 1961
## 9387                                                Jordan    JO   JOR 1960
## 9388                                            Kazakhstan    KZ   KAZ 2022
## 9389                                            Kazakhstan    KZ   KAZ 2021
## 9390                                            Kazakhstan    KZ   KAZ 2020
## 9391                                            Kazakhstan    KZ   KAZ 2019
## 9392                                            Kazakhstan    KZ   KAZ 2018
## 9393                                            Kazakhstan    KZ   KAZ 2017
## 9394                                            Kazakhstan    KZ   KAZ 2016
## 9395                                            Kazakhstan    KZ   KAZ 2015
## 9396                                            Kazakhstan    KZ   KAZ 2014
## 9397                                            Kazakhstan    KZ   KAZ 2013
## 9398                                            Kazakhstan    KZ   KAZ 2012
## 9399                                            Kazakhstan    KZ   KAZ 2011
## 9400                                            Kazakhstan    KZ   KAZ 2010
## 9401                                            Kazakhstan    KZ   KAZ 2009
## 9402                                            Kazakhstan    KZ   KAZ 2008
## 9403                                            Kazakhstan    KZ   KAZ 2007
## 9404                                            Kazakhstan    KZ   KAZ 2006
## 9405                                            Kazakhstan    KZ   KAZ 2005
## 9406                                            Kazakhstan    KZ   KAZ 2004
## 9407                                            Kazakhstan    KZ   KAZ 2003
## 9408                                            Kazakhstan    KZ   KAZ 2002
## 9409                                            Kazakhstan    KZ   KAZ 2001
## 9410                                            Kazakhstan    KZ   KAZ 2000
## 9411                                            Kazakhstan    KZ   KAZ 1999
## 9412                                            Kazakhstan    KZ   KAZ 1998
## 9413                                            Kazakhstan    KZ   KAZ 1997
## 9414                                            Kazakhstan    KZ   KAZ 1996
## 9415                                            Kazakhstan    KZ   KAZ 1995
## 9416                                            Kazakhstan    KZ   KAZ 1994
## 9417                                            Kazakhstan    KZ   KAZ 1993
## 9418                                            Kazakhstan    KZ   KAZ 1992
## 9419                                            Kazakhstan    KZ   KAZ 1991
## 9420                                            Kazakhstan    KZ   KAZ 1990
## 9421                                            Kazakhstan    KZ   KAZ 1989
## 9422                                            Kazakhstan    KZ   KAZ 1988
## 9423                                            Kazakhstan    KZ   KAZ 1987
## 9424                                            Kazakhstan    KZ   KAZ 1986
## 9425                                            Kazakhstan    KZ   KAZ 1985
## 9426                                            Kazakhstan    KZ   KAZ 1984
## 9427                                            Kazakhstan    KZ   KAZ 1983
## 9428                                            Kazakhstan    KZ   KAZ 1982
## 9429                                            Kazakhstan    KZ   KAZ 1981
## 9430                                            Kazakhstan    KZ   KAZ 1980
## 9431                                            Kazakhstan    KZ   KAZ 1979
## 9432                                            Kazakhstan    KZ   KAZ 1978
## 9433                                            Kazakhstan    KZ   KAZ 1977
## 9434                                            Kazakhstan    KZ   KAZ 1976
## 9435                                            Kazakhstan    KZ   KAZ 1975
## 9436                                            Kazakhstan    KZ   KAZ 1974
## 9437                                            Kazakhstan    KZ   KAZ 1973
## 9438                                            Kazakhstan    KZ   KAZ 1972
## 9439                                            Kazakhstan    KZ   KAZ 1971
## 9440                                            Kazakhstan    KZ   KAZ 1970
## 9441                                            Kazakhstan    KZ   KAZ 1969
## 9442                                            Kazakhstan    KZ   KAZ 1968
## 9443                                            Kazakhstan    KZ   KAZ 1967
## 9444                                            Kazakhstan    KZ   KAZ 1966
## 9445                                            Kazakhstan    KZ   KAZ 1965
## 9446                                            Kazakhstan    KZ   KAZ 1964
## 9447                                            Kazakhstan    KZ   KAZ 1963
## 9448                                            Kazakhstan    KZ   KAZ 1962
## 9449                                            Kazakhstan    KZ   KAZ 1961
## 9450                                            Kazakhstan    KZ   KAZ 1960
## 9451                                                 Kenya    KE   KEN 2022
## 9452                                                 Kenya    KE   KEN 2021
## 9453                                                 Kenya    KE   KEN 2020
## 9454                                                 Kenya    KE   KEN 2019
## 9455                                                 Kenya    KE   KEN 2018
## 9456                                                 Kenya    KE   KEN 2017
## 9457                                                 Kenya    KE   KEN 2016
## 9458                                                 Kenya    KE   KEN 2015
## 9459                                                 Kenya    KE   KEN 2014
## 9460                                                 Kenya    KE   KEN 2013
## 9461                                                 Kenya    KE   KEN 2012
## 9462                                                 Kenya    KE   KEN 2011
## 9463                                                 Kenya    KE   KEN 2010
## 9464                                                 Kenya    KE   KEN 2009
## 9465                                                 Kenya    KE   KEN 2008
## 9466                                                 Kenya    KE   KEN 2007
## 9467                                                 Kenya    KE   KEN 2006
## 9468                                                 Kenya    KE   KEN 2005
## 9469                                                 Kenya    KE   KEN 2004
## 9470                                                 Kenya    KE   KEN 2003
## 9471                                                 Kenya    KE   KEN 2002
## 9472                                                 Kenya    KE   KEN 2001
## 9473                                                 Kenya    KE   KEN 2000
## 9474                                                 Kenya    KE   KEN 1999
## 9475                                                 Kenya    KE   KEN 1998
## 9476                                                 Kenya    KE   KEN 1997
## 9477                                                 Kenya    KE   KEN 1996
## 9478                                                 Kenya    KE   KEN 1995
## 9479                                                 Kenya    KE   KEN 1994
## 9480                                                 Kenya    KE   KEN 1993
## 9481                                                 Kenya    KE   KEN 1992
## 9482                                                 Kenya    KE   KEN 1991
## 9483                                                 Kenya    KE   KEN 1990
## 9484                                                 Kenya    KE   KEN 1989
## 9485                                                 Kenya    KE   KEN 1988
## 9486                                                 Kenya    KE   KEN 1987
## 9487                                                 Kenya    KE   KEN 1986
## 9488                                                 Kenya    KE   KEN 1985
## 9489                                                 Kenya    KE   KEN 1984
## 9490                                                 Kenya    KE   KEN 1983
## 9491                                                 Kenya    KE   KEN 1982
## 9492                                                 Kenya    KE   KEN 1981
## 9493                                                 Kenya    KE   KEN 1980
## 9494                                                 Kenya    KE   KEN 1979
## 9495                                                 Kenya    KE   KEN 1978
## 9496                                                 Kenya    KE   KEN 1977
## 9497                                                 Kenya    KE   KEN 1976
## 9498                                                 Kenya    KE   KEN 1975
## 9499                                                 Kenya    KE   KEN 1974
## 9500                                                 Kenya    KE   KEN 1973
## 9501                                                 Kenya    KE   KEN 1972
## 9502                                                 Kenya    KE   KEN 1971
## 9503                                                 Kenya    KE   KEN 1970
## 9504                                                 Kenya    KE   KEN 1969
## 9505                                                 Kenya    KE   KEN 1968
## 9506                                                 Kenya    KE   KEN 1967
## 9507                                                 Kenya    KE   KEN 1966
## 9508                                                 Kenya    KE   KEN 1965
## 9509                                                 Kenya    KE   KEN 1964
## 9510                                                 Kenya    KE   KEN 1963
## 9511                                                 Kenya    KE   KEN 1962
## 9512                                                 Kenya    KE   KEN 1961
## 9513                                                 Kenya    KE   KEN 1960
## 9514                                              Kiribati    KI   KIR 2022
## 9515                                              Kiribati    KI   KIR 2021
## 9516                                              Kiribati    KI   KIR 2020
## 9517                                              Kiribati    KI   KIR 2019
## 9518                                              Kiribati    KI   KIR 2018
## 9519                                              Kiribati    KI   KIR 2017
## 9520                                              Kiribati    KI   KIR 2016
## 9521                                              Kiribati    KI   KIR 2015
## 9522                                              Kiribati    KI   KIR 2014
## 9523                                              Kiribati    KI   KIR 2013
## 9524                                              Kiribati    KI   KIR 2012
## 9525                                              Kiribati    KI   KIR 2011
## 9526                                              Kiribati    KI   KIR 2010
## 9527                                              Kiribati    KI   KIR 2009
## 9528                                              Kiribati    KI   KIR 2008
## 9529                                              Kiribati    KI   KIR 2007
## 9530                                              Kiribati    KI   KIR 2006
## 9531                                              Kiribati    KI   KIR 2005
## 9532                                              Kiribati    KI   KIR 2004
## 9533                                              Kiribati    KI   KIR 2003
## 9534                                              Kiribati    KI   KIR 2002
## 9535                                              Kiribati    KI   KIR 2001
## 9536                                              Kiribati    KI   KIR 2000
## 9537                                              Kiribati    KI   KIR 1999
## 9538                                              Kiribati    KI   KIR 1998
## 9539                                              Kiribati    KI   KIR 1997
## 9540                                              Kiribati    KI   KIR 1996
## 9541                                              Kiribati    KI   KIR 1995
## 9542                                              Kiribati    KI   KIR 1994
## 9543                                              Kiribati    KI   KIR 1993
## 9544                                              Kiribati    KI   KIR 1992
## 9545                                              Kiribati    KI   KIR 1991
## 9546                                              Kiribati    KI   KIR 1990
## 9547                                              Kiribati    KI   KIR 1989
## 9548                                              Kiribati    KI   KIR 1988
## 9549                                              Kiribati    KI   KIR 1987
## 9550                                              Kiribati    KI   KIR 1986
## 9551                                              Kiribati    KI   KIR 1985
## 9552                                              Kiribati    KI   KIR 1984
## 9553                                              Kiribati    KI   KIR 1983
## 9554                                              Kiribati    KI   KIR 1982
## 9555                                              Kiribati    KI   KIR 1981
## 9556                                              Kiribati    KI   KIR 1980
## 9557                                              Kiribati    KI   KIR 1979
## 9558                                              Kiribati    KI   KIR 1978
## 9559                                              Kiribati    KI   KIR 1977
## 9560                                              Kiribati    KI   KIR 1976
## 9561                                              Kiribati    KI   KIR 1975
## 9562                                              Kiribati    KI   KIR 1974
## 9563                                              Kiribati    KI   KIR 1973
## 9564                                              Kiribati    KI   KIR 1972
## 9565                                              Kiribati    KI   KIR 1971
## 9566                                              Kiribati    KI   KIR 1970
## 9567                                              Kiribati    KI   KIR 1969
## 9568                                              Kiribati    KI   KIR 1968
## 9569                                              Kiribati    KI   KIR 1967
## 9570                                              Kiribati    KI   KIR 1966
## 9571                                              Kiribati    KI   KIR 1965
## 9572                                              Kiribati    KI   KIR 1964
## 9573                                              Kiribati    KI   KIR 1963
## 9574                                              Kiribati    KI   KIR 1962
## 9575                                              Kiribati    KI   KIR 1961
## 9576                                              Kiribati    KI   KIR 1960
## 9577                             Korea, Dem. People's Rep.    KP   PRK 2022
## 9578                             Korea, Dem. People's Rep.    KP   PRK 2021
## 9579                             Korea, Dem. People's Rep.    KP   PRK 2020
## 9580                             Korea, Dem. People's Rep.    KP   PRK 2019
## 9581                             Korea, Dem. People's Rep.    KP   PRK 2018
## 9582                             Korea, Dem. People's Rep.    KP   PRK 2017
## 9583                             Korea, Dem. People's Rep.    KP   PRK 2016
## 9584                             Korea, Dem. People's Rep.    KP   PRK 2015
## 9585                             Korea, Dem. People's Rep.    KP   PRK 2014
## 9586                             Korea, Dem. People's Rep.    KP   PRK 2013
## 9587                             Korea, Dem. People's Rep.    KP   PRK 2012
## 9588                             Korea, Dem. People's Rep.    KP   PRK 2011
## 9589                             Korea, Dem. People's Rep.    KP   PRK 2010
## 9590                             Korea, Dem. People's Rep.    KP   PRK 2009
## 9591                             Korea, Dem. People's Rep.    KP   PRK 2008
## 9592                             Korea, Dem. People's Rep.    KP   PRK 2007
## 9593                             Korea, Dem. People's Rep.    KP   PRK 2006
## 9594                             Korea, Dem. People's Rep.    KP   PRK 2005
## 9595                             Korea, Dem. People's Rep.    KP   PRK 2004
## 9596                             Korea, Dem. People's Rep.    KP   PRK 2003
## 9597                             Korea, Dem. People's Rep.    KP   PRK 2002
## 9598                             Korea, Dem. People's Rep.    KP   PRK 2001
## 9599                             Korea, Dem. People's Rep.    KP   PRK 2000
## 9600                             Korea, Dem. People's Rep.    KP   PRK 1999
## 9601                             Korea, Dem. People's Rep.    KP   PRK 1998
## 9602                             Korea, Dem. People's Rep.    KP   PRK 1997
## 9603                             Korea, Dem. People's Rep.    KP   PRK 1996
## 9604                             Korea, Dem. People's Rep.    KP   PRK 1995
## 9605                             Korea, Dem. People's Rep.    KP   PRK 1994
## 9606                             Korea, Dem. People's Rep.    KP   PRK 1993
## 9607                             Korea, Dem. People's Rep.    KP   PRK 1992
## 9608                             Korea, Dem. People's Rep.    KP   PRK 1991
## 9609                             Korea, Dem. People's Rep.    KP   PRK 1990
## 9610                             Korea, Dem. People's Rep.    KP   PRK 1989
## 9611                             Korea, Dem. People's Rep.    KP   PRK 1988
## 9612                             Korea, Dem. People's Rep.    KP   PRK 1987
## 9613                             Korea, Dem. People's Rep.    KP   PRK 1986
## 9614                             Korea, Dem. People's Rep.    KP   PRK 1985
## 9615                             Korea, Dem. People's Rep.    KP   PRK 1984
## 9616                             Korea, Dem. People's Rep.    KP   PRK 1983
## 9617                             Korea, Dem. People's Rep.    KP   PRK 1982
## 9618                             Korea, Dem. People's Rep.    KP   PRK 1981
## 9619                             Korea, Dem. People's Rep.    KP   PRK 1980
## 9620                             Korea, Dem. People's Rep.    KP   PRK 1979
## 9621                             Korea, Dem. People's Rep.    KP   PRK 1978
## 9622                             Korea, Dem. People's Rep.    KP   PRK 1977
## 9623                             Korea, Dem. People's Rep.    KP   PRK 1976
## 9624                             Korea, Dem. People's Rep.    KP   PRK 1975
## 9625                             Korea, Dem. People's Rep.    KP   PRK 1974
## 9626                             Korea, Dem. People's Rep.    KP   PRK 1973
## 9627                             Korea, Dem. People's Rep.    KP   PRK 1972
## 9628                             Korea, Dem. People's Rep.    KP   PRK 1971
## 9629                             Korea, Dem. People's Rep.    KP   PRK 1970
## 9630                             Korea, Dem. People's Rep.    KP   PRK 1969
## 9631                             Korea, Dem. People's Rep.    KP   PRK 1968
## 9632                             Korea, Dem. People's Rep.    KP   PRK 1967
## 9633                             Korea, Dem. People's Rep.    KP   PRK 1966
## 9634                             Korea, Dem. People's Rep.    KP   PRK 1965
## 9635                             Korea, Dem. People's Rep.    KP   PRK 1964
## 9636                             Korea, Dem. People's Rep.    KP   PRK 1963
## 9637                             Korea, Dem. People's Rep.    KP   PRK 1962
## 9638                             Korea, Dem. People's Rep.    KP   PRK 1961
## 9639                             Korea, Dem. People's Rep.    KP   PRK 1960
## 9640                                           Korea, Rep.    KR   KOR 2022
## 9641                                           Korea, Rep.    KR   KOR 2021
## 9642                                           Korea, Rep.    KR   KOR 2020
## 9643                                           Korea, Rep.    KR   KOR 2019
## 9644                                           Korea, Rep.    KR   KOR 2018
## 9645                                           Korea, Rep.    KR   KOR 2017
## 9646                                           Korea, Rep.    KR   KOR 2016
## 9647                                           Korea, Rep.    KR   KOR 2015
## 9648                                           Korea, Rep.    KR   KOR 2014
## 9649                                           Korea, Rep.    KR   KOR 2013
## 9650                                           Korea, Rep.    KR   KOR 2012
## 9651                                           Korea, Rep.    KR   KOR 2011
## 9652                                           Korea, Rep.    KR   KOR 2010
## 9653                                           Korea, Rep.    KR   KOR 2009
## 9654                                           Korea, Rep.    KR   KOR 2008
## 9655                                           Korea, Rep.    KR   KOR 2007
## 9656                                           Korea, Rep.    KR   KOR 2006
## 9657                                           Korea, Rep.    KR   KOR 2005
## 9658                                           Korea, Rep.    KR   KOR 2004
## 9659                                           Korea, Rep.    KR   KOR 2003
## 9660                                           Korea, Rep.    KR   KOR 2002
## 9661                                           Korea, Rep.    KR   KOR 2001
## 9662                                           Korea, Rep.    KR   KOR 2000
## 9663                                           Korea, Rep.    KR   KOR 1999
## 9664                                           Korea, Rep.    KR   KOR 1998
## 9665                                           Korea, Rep.    KR   KOR 1997
## 9666                                           Korea, Rep.    KR   KOR 1996
## 9667                                           Korea, Rep.    KR   KOR 1995
## 9668                                           Korea, Rep.    KR   KOR 1994
## 9669                                           Korea, Rep.    KR   KOR 1993
## 9670                                           Korea, Rep.    KR   KOR 1992
## 9671                                           Korea, Rep.    KR   KOR 1991
## 9672                                           Korea, Rep.    KR   KOR 1990
## 9673                                           Korea, Rep.    KR   KOR 1989
## 9674                                           Korea, Rep.    KR   KOR 1988
## 9675                                           Korea, Rep.    KR   KOR 1987
## 9676                                           Korea, Rep.    KR   KOR 1986
## 9677                                           Korea, Rep.    KR   KOR 1985
## 9678                                           Korea, Rep.    KR   KOR 1984
## 9679                                           Korea, Rep.    KR   KOR 1983
## 9680                                           Korea, Rep.    KR   KOR 1982
## 9681                                           Korea, Rep.    KR   KOR 1981
## 9682                                           Korea, Rep.    KR   KOR 1980
## 9683                                           Korea, Rep.    KR   KOR 1979
## 9684                                           Korea, Rep.    KR   KOR 1978
## 9685                                           Korea, Rep.    KR   KOR 1977
## 9686                                           Korea, Rep.    KR   KOR 1976
## 9687                                           Korea, Rep.    KR   KOR 1975
## 9688                                           Korea, Rep.    KR   KOR 1974
## 9689                                           Korea, Rep.    KR   KOR 1973
## 9690                                           Korea, Rep.    KR   KOR 1972
## 9691                                           Korea, Rep.    KR   KOR 1971
## 9692                                           Korea, Rep.    KR   KOR 1970
## 9693                                           Korea, Rep.    KR   KOR 1969
## 9694                                           Korea, Rep.    KR   KOR 1968
## 9695                                           Korea, Rep.    KR   KOR 1967
## 9696                                           Korea, Rep.    KR   KOR 1966
## 9697                                           Korea, Rep.    KR   KOR 1965
## 9698                                           Korea, Rep.    KR   KOR 1964
## 9699                                           Korea, Rep.    KR   KOR 1963
## 9700                                           Korea, Rep.    KR   KOR 1962
## 9701                                           Korea, Rep.    KR   KOR 1961
## 9702                                           Korea, Rep.    KR   KOR 1960
## 9703                                                Kosovo    XK   XKX 2022
## 9704                                                Kosovo    XK   XKX 2021
## 9705                                                Kosovo    XK   XKX 2020
## 9706                                                Kosovo    XK   XKX 2019
## 9707                                                Kosovo    XK   XKX 2018
## 9708                                                Kosovo    XK   XKX 2017
## 9709                                                Kosovo    XK   XKX 2016
## 9710                                                Kosovo    XK   XKX 2015
## 9711                                                Kosovo    XK   XKX 2014
## 9712                                                Kosovo    XK   XKX 2013
## 9713                                                Kosovo    XK   XKX 2012
## 9714                                                Kosovo    XK   XKX 2011
## 9715                                                Kosovo    XK   XKX 2010
## 9716                                                Kosovo    XK   XKX 2009
## 9717                                                Kosovo    XK   XKX 2008
## 9718                                                Kosovo    XK   XKX 2007
## 9719                                                Kosovo    XK   XKX 2006
## 9720                                                Kosovo    XK   XKX 2005
## 9721                                                Kosovo    XK   XKX 2004
## 9722                                                Kosovo    XK   XKX 2003
## 9723                                                Kosovo    XK   XKX 2002
## 9724                                                Kosovo    XK   XKX 2001
## 9725                                                Kosovo    XK   XKX 2000
## 9726                                                Kosovo    XK   XKX 1999
## 9727                                                Kosovo    XK   XKX 1998
## 9728                                                Kosovo    XK   XKX 1997
## 9729                                                Kosovo    XK   XKX 1996
## 9730                                                Kosovo    XK   XKX 1995
## 9731                                                Kosovo    XK   XKX 1994
## 9732                                                Kosovo    XK   XKX 1993
## 9733                                                Kosovo    XK   XKX 1992
## 9734                                                Kosovo    XK   XKX 1991
## 9735                                                Kosovo    XK   XKX 1990
## 9736                                                Kosovo    XK   XKX 1989
## 9737                                                Kosovo    XK   XKX 1988
## 9738                                                Kosovo    XK   XKX 1987
## 9739                                                Kosovo    XK   XKX 1986
## 9740                                                Kosovo    XK   XKX 1985
## 9741                                                Kosovo    XK   XKX 1984
## 9742                                                Kosovo    XK   XKX 1983
## 9743                                                Kosovo    XK   XKX 1982
## 9744                                                Kosovo    XK   XKX 1981
## 9745                                                Kosovo    XK   XKX 1980
## 9746                                                Kosovo    XK   XKX 1979
## 9747                                                Kosovo    XK   XKX 1978
## 9748                                                Kosovo    XK   XKX 1977
## 9749                                                Kosovo    XK   XKX 1976
## 9750                                                Kosovo    XK   XKX 1975
## 9751                                                Kosovo    XK   XKX 1974
## 9752                                                Kosovo    XK   XKX 1973
## 9753                                                Kosovo    XK   XKX 1972
## 9754                                                Kosovo    XK   XKX 1971
## 9755                                                Kosovo    XK   XKX 1970
## 9756                                                Kosovo    XK   XKX 1969
## 9757                                                Kosovo    XK   XKX 1968
## 9758                                                Kosovo    XK   XKX 1967
## 9759                                                Kosovo    XK   XKX 1966
## 9760                                                Kosovo    XK   XKX 1965
## 9761                                                Kosovo    XK   XKX 1964
## 9762                                                Kosovo    XK   XKX 1963
## 9763                                                Kosovo    XK   XKX 1962
## 9764                                                Kosovo    XK   XKX 1961
## 9765                                                Kosovo    XK   XKX 1960
## 9766                                                Kuwait    KW   KWT 2022
## 9767                                                Kuwait    KW   KWT 2021
## 9768                                                Kuwait    KW   KWT 2020
## 9769                                                Kuwait    KW   KWT 2019
## 9770                                                Kuwait    KW   KWT 2018
## 9771                                                Kuwait    KW   KWT 2017
## 9772                                                Kuwait    KW   KWT 2016
## 9773                                                Kuwait    KW   KWT 2015
## 9774                                                Kuwait    KW   KWT 2014
## 9775                                                Kuwait    KW   KWT 2013
## 9776                                                Kuwait    KW   KWT 2012
## 9777                                                Kuwait    KW   KWT 2011
## 9778                                                Kuwait    KW   KWT 2010
## 9779                                                Kuwait    KW   KWT 2009
## 9780                                                Kuwait    KW   KWT 2008
## 9781                                                Kuwait    KW   KWT 2007
## 9782                                                Kuwait    KW   KWT 2006
## 9783                                                Kuwait    KW   KWT 2005
## 9784                                                Kuwait    KW   KWT 2004
## 9785                                                Kuwait    KW   KWT 2003
## 9786                                                Kuwait    KW   KWT 2002
## 9787                                                Kuwait    KW   KWT 2001
## 9788                                                Kuwait    KW   KWT 2000
## 9789                                                Kuwait    KW   KWT 1999
## 9790                                                Kuwait    KW   KWT 1998
## 9791                                                Kuwait    KW   KWT 1997
## 9792                                                Kuwait    KW   KWT 1996
## 9793                                                Kuwait    KW   KWT 1995
## 9794                                                Kuwait    KW   KWT 1994
## 9795                                                Kuwait    KW   KWT 1993
## 9796                                                Kuwait    KW   KWT 1992
## 9797                                                Kuwait    KW   KWT 1991
## 9798                                                Kuwait    KW   KWT 1990
## 9799                                                Kuwait    KW   KWT 1989
## 9800                                                Kuwait    KW   KWT 1988
## 9801                                                Kuwait    KW   KWT 1987
## 9802                                                Kuwait    KW   KWT 1986
## 9803                                                Kuwait    KW   KWT 1985
## 9804                                                Kuwait    KW   KWT 1984
## 9805                                                Kuwait    KW   KWT 1983
## 9806                                                Kuwait    KW   KWT 1982
## 9807                                                Kuwait    KW   KWT 1981
## 9808                                                Kuwait    KW   KWT 1980
## 9809                                                Kuwait    KW   KWT 1979
## 9810                                                Kuwait    KW   KWT 1978
## 9811                                                Kuwait    KW   KWT 1977
## 9812                                                Kuwait    KW   KWT 1976
## 9813                                                Kuwait    KW   KWT 1975
## 9814                                                Kuwait    KW   KWT 1974
## 9815                                                Kuwait    KW   KWT 1973
## 9816                                                Kuwait    KW   KWT 1972
## 9817                                                Kuwait    KW   KWT 1971
## 9818                                                Kuwait    KW   KWT 1970
## 9819                                                Kuwait    KW   KWT 1969
## 9820                                                Kuwait    KW   KWT 1968
## 9821                                                Kuwait    KW   KWT 1967
## 9822                                                Kuwait    KW   KWT 1966
## 9823                                                Kuwait    KW   KWT 1965
## 9824                                                Kuwait    KW   KWT 1964
## 9825                                                Kuwait    KW   KWT 1963
## 9826                                                Kuwait    KW   KWT 1962
## 9827                                                Kuwait    KW   KWT 1961
## 9828                                                Kuwait    KW   KWT 1960
## 9829                                       Kyrgyz Republic    KG   KGZ 2022
## 9830                                       Kyrgyz Republic    KG   KGZ 2021
## 9831                                       Kyrgyz Republic    KG   KGZ 2020
## 9832                                       Kyrgyz Republic    KG   KGZ 2019
## 9833                                       Kyrgyz Republic    KG   KGZ 2018
## 9834                                       Kyrgyz Republic    KG   KGZ 2017
## 9835                                       Kyrgyz Republic    KG   KGZ 2016
## 9836                                       Kyrgyz Republic    KG   KGZ 2015
## 9837                                       Kyrgyz Republic    KG   KGZ 2014
## 9838                                       Kyrgyz Republic    KG   KGZ 2013
## 9839                                       Kyrgyz Republic    KG   KGZ 2012
## 9840                                       Kyrgyz Republic    KG   KGZ 2011
## 9841                                       Kyrgyz Republic    KG   KGZ 2010
## 9842                                       Kyrgyz Republic    KG   KGZ 2009
## 9843                                       Kyrgyz Republic    KG   KGZ 2008
## 9844                                       Kyrgyz Republic    KG   KGZ 2007
## 9845                                       Kyrgyz Republic    KG   KGZ 2006
## 9846                                       Kyrgyz Republic    KG   KGZ 2005
## 9847                                       Kyrgyz Republic    KG   KGZ 2004
## 9848                                       Kyrgyz Republic    KG   KGZ 2003
## 9849                                       Kyrgyz Republic    KG   KGZ 2002
## 9850                                       Kyrgyz Republic    KG   KGZ 2001
## 9851                                       Kyrgyz Republic    KG   KGZ 2000
## 9852                                       Kyrgyz Republic    KG   KGZ 1999
## 9853                                       Kyrgyz Republic    KG   KGZ 1998
## 9854                                       Kyrgyz Republic    KG   KGZ 1997
## 9855                                       Kyrgyz Republic    KG   KGZ 1996
## 9856                                       Kyrgyz Republic    KG   KGZ 1995
## 9857                                       Kyrgyz Republic    KG   KGZ 1994
## 9858                                       Kyrgyz Republic    KG   KGZ 1993
## 9859                                       Kyrgyz Republic    KG   KGZ 1992
## 9860                                       Kyrgyz Republic    KG   KGZ 1991
## 9861                                       Kyrgyz Republic    KG   KGZ 1990
## 9862                                       Kyrgyz Republic    KG   KGZ 1989
## 9863                                       Kyrgyz Republic    KG   KGZ 1988
## 9864                                       Kyrgyz Republic    KG   KGZ 1987
## 9865                                       Kyrgyz Republic    KG   KGZ 1986
## 9866                                       Kyrgyz Republic    KG   KGZ 1985
## 9867                                       Kyrgyz Republic    KG   KGZ 1984
## 9868                                       Kyrgyz Republic    KG   KGZ 1983
## 9869                                       Kyrgyz Republic    KG   KGZ 1982
## 9870                                       Kyrgyz Republic    KG   KGZ 1981
## 9871                                       Kyrgyz Republic    KG   KGZ 1980
## 9872                                       Kyrgyz Republic    KG   KGZ 1979
## 9873                                       Kyrgyz Republic    KG   KGZ 1978
## 9874                                       Kyrgyz Republic    KG   KGZ 1977
## 9875                                       Kyrgyz Republic    KG   KGZ 1976
## 9876                                       Kyrgyz Republic    KG   KGZ 1975
## 9877                                       Kyrgyz Republic    KG   KGZ 1974
## 9878                                       Kyrgyz Republic    KG   KGZ 1973
## 9879                                       Kyrgyz Republic    KG   KGZ 1972
## 9880                                       Kyrgyz Republic    KG   KGZ 1971
## 9881                                       Kyrgyz Republic    KG   KGZ 1970
## 9882                                       Kyrgyz Republic    KG   KGZ 1969
## 9883                                       Kyrgyz Republic    KG   KGZ 1968
## 9884                                       Kyrgyz Republic    KG   KGZ 1967
## 9885                                       Kyrgyz Republic    KG   KGZ 1966
## 9886                                       Kyrgyz Republic    KG   KGZ 1965
## 9887                                       Kyrgyz Republic    KG   KGZ 1964
## 9888                                       Kyrgyz Republic    KG   KGZ 1963
## 9889                                       Kyrgyz Republic    KG   KGZ 1962
## 9890                                       Kyrgyz Republic    KG   KGZ 1961
## 9891                                       Kyrgyz Republic    KG   KGZ 1960
## 9892                                               Lao PDR    LA   LAO 2022
## 9893                                               Lao PDR    LA   LAO 2021
## 9894                                               Lao PDR    LA   LAO 2020
## 9895                                               Lao PDR    LA   LAO 2019
## 9896                                               Lao PDR    LA   LAO 2018
## 9897                                               Lao PDR    LA   LAO 2017
## 9898                                               Lao PDR    LA   LAO 2016
## 9899                                               Lao PDR    LA   LAO 2015
## 9900                                               Lao PDR    LA   LAO 2014
## 9901                                               Lao PDR    LA   LAO 2013
## 9902                                               Lao PDR    LA   LAO 2012
## 9903                                               Lao PDR    LA   LAO 2011
## 9904                                               Lao PDR    LA   LAO 2010
## 9905                                               Lao PDR    LA   LAO 2009
## 9906                                               Lao PDR    LA   LAO 2008
## 9907                                               Lao PDR    LA   LAO 2007
## 9908                                               Lao PDR    LA   LAO 2006
## 9909                                               Lao PDR    LA   LAO 2005
## 9910                                               Lao PDR    LA   LAO 2004
## 9911                                               Lao PDR    LA   LAO 2003
## 9912                                               Lao PDR    LA   LAO 2002
## 9913                                               Lao PDR    LA   LAO 2001
## 9914                                               Lao PDR    LA   LAO 2000
## 9915                                               Lao PDR    LA   LAO 1999
## 9916                                               Lao PDR    LA   LAO 1998
## 9917                                               Lao PDR    LA   LAO 1997
## 9918                                               Lao PDR    LA   LAO 1996
## 9919                                               Lao PDR    LA   LAO 1995
## 9920                                               Lao PDR    LA   LAO 1994
## 9921                                               Lao PDR    LA   LAO 1993
## 9922                                               Lao PDR    LA   LAO 1992
## 9923                                               Lao PDR    LA   LAO 1991
## 9924                                               Lao PDR    LA   LAO 1990
## 9925                                               Lao PDR    LA   LAO 1989
## 9926                                               Lao PDR    LA   LAO 1988
## 9927                                               Lao PDR    LA   LAO 1987
## 9928                                               Lao PDR    LA   LAO 1986
## 9929                                               Lao PDR    LA   LAO 1985
## 9930                                               Lao PDR    LA   LAO 1984
## 9931                                               Lao PDR    LA   LAO 1983
## 9932                                               Lao PDR    LA   LAO 1982
## 9933                                               Lao PDR    LA   LAO 1981
## 9934                                               Lao PDR    LA   LAO 1980
## 9935                                               Lao PDR    LA   LAO 1979
## 9936                                               Lao PDR    LA   LAO 1978
## 9937                                               Lao PDR    LA   LAO 1977
## 9938                                               Lao PDR    LA   LAO 1976
## 9939                                               Lao PDR    LA   LAO 1975
## 9940                                               Lao PDR    LA   LAO 1974
## 9941                                               Lao PDR    LA   LAO 1973
## 9942                                               Lao PDR    LA   LAO 1972
## 9943                                               Lao PDR    LA   LAO 1971
## 9944                                               Lao PDR    LA   LAO 1970
## 9945                                               Lao PDR    LA   LAO 1969
## 9946                                               Lao PDR    LA   LAO 1968
## 9947                                               Lao PDR    LA   LAO 1967
## 9948                                               Lao PDR    LA   LAO 1966
## 9949                                               Lao PDR    LA   LAO 1965
## 9950                                               Lao PDR    LA   LAO 1964
## 9951                                               Lao PDR    LA   LAO 1963
## 9952                                               Lao PDR    LA   LAO 1962
## 9953                                               Lao PDR    LA   LAO 1961
## 9954                                               Lao PDR    LA   LAO 1960
## 9955                                                Latvia    LV   LVA 2022
## 9956                                                Latvia    LV   LVA 2021
## 9957                                                Latvia    LV   LVA 2020
## 9958                                                Latvia    LV   LVA 2019
## 9959                                                Latvia    LV   LVA 2018
## 9960                                                Latvia    LV   LVA 2017
## 9961                                                Latvia    LV   LVA 2016
## 9962                                                Latvia    LV   LVA 2015
## 9963                                                Latvia    LV   LVA 2014
## 9964                                                Latvia    LV   LVA 2013
## 9965                                                Latvia    LV   LVA 2012
## 9966                                                Latvia    LV   LVA 2011
## 9967                                                Latvia    LV   LVA 2010
## 9968                                                Latvia    LV   LVA 2009
## 9969                                                Latvia    LV   LVA 2008
## 9970                                                Latvia    LV   LVA 2007
## 9971                                                Latvia    LV   LVA 2006
## 9972                                                Latvia    LV   LVA 2005
## 9973                                                Latvia    LV   LVA 2004
## 9974                                                Latvia    LV   LVA 2003
## 9975                                                Latvia    LV   LVA 2002
## 9976                                                Latvia    LV   LVA 2001
## 9977                                                Latvia    LV   LVA 2000
## 9978                                                Latvia    LV   LVA 1999
## 9979                                                Latvia    LV   LVA 1998
## 9980                                                Latvia    LV   LVA 1997
## 9981                                                Latvia    LV   LVA 1996
## 9982                                                Latvia    LV   LVA 1995
## 9983                                                Latvia    LV   LVA 1994
## 9984                                                Latvia    LV   LVA 1993
## 9985                                                Latvia    LV   LVA 1992
## 9986                                                Latvia    LV   LVA 1991
## 9987                                                Latvia    LV   LVA 1990
## 9988                                                Latvia    LV   LVA 1989
## 9989                                                Latvia    LV   LVA 1988
## 9990                                                Latvia    LV   LVA 1987
## 9991                                                Latvia    LV   LVA 1986
## 9992                                                Latvia    LV   LVA 1985
## 9993                                                Latvia    LV   LVA 1984
## 9994                                                Latvia    LV   LVA 1983
## 9995                                                Latvia    LV   LVA 1982
## 9996                                                Latvia    LV   LVA 1981
## 9997                                                Latvia    LV   LVA 1980
## 9998                                                Latvia    LV   LVA 1979
## 9999                                                Latvia    LV   LVA 1978
## 10000                                               Latvia    LV   LVA 1977
## 10001                                               Latvia    LV   LVA 1976
## 10002                                               Latvia    LV   LVA 1975
## 10003                                               Latvia    LV   LVA 1974
## 10004                                               Latvia    LV   LVA 1973
## 10005                                               Latvia    LV   LVA 1972
## 10006                                               Latvia    LV   LVA 1971
## 10007                                               Latvia    LV   LVA 1970
## 10008                                               Latvia    LV   LVA 1969
## 10009                                               Latvia    LV   LVA 1968
## 10010                                               Latvia    LV   LVA 1967
## 10011                                               Latvia    LV   LVA 1966
## 10012                                               Latvia    LV   LVA 1965
## 10013                                               Latvia    LV   LVA 1964
## 10014                                               Latvia    LV   LVA 1963
## 10015                                               Latvia    LV   LVA 1962
## 10016                                               Latvia    LV   LVA 1961
## 10017                                               Latvia    LV   LVA 1960
## 10018                                              Lebanon    LB   LBN 2022
## 10019                                              Lebanon    LB   LBN 2021
## 10020                                              Lebanon    LB   LBN 2020
## 10021                                              Lebanon    LB   LBN 2019
## 10022                                              Lebanon    LB   LBN 2018
## 10023                                              Lebanon    LB   LBN 2017
## 10024                                              Lebanon    LB   LBN 2016
## 10025                                              Lebanon    LB   LBN 2015
## 10026                                              Lebanon    LB   LBN 2014
## 10027                                              Lebanon    LB   LBN 2013
## 10028                                              Lebanon    LB   LBN 2012
## 10029                                              Lebanon    LB   LBN 2011
## 10030                                              Lebanon    LB   LBN 2010
## 10031                                              Lebanon    LB   LBN 2009
## 10032                                              Lebanon    LB   LBN 2008
## 10033                                              Lebanon    LB   LBN 2007
## 10034                                              Lebanon    LB   LBN 2006
## 10035                                              Lebanon    LB   LBN 2005
## 10036                                              Lebanon    LB   LBN 2004
## 10037                                              Lebanon    LB   LBN 2003
## 10038                                              Lebanon    LB   LBN 2002
## 10039                                              Lebanon    LB   LBN 2001
## 10040                                              Lebanon    LB   LBN 2000
## 10041                                              Lebanon    LB   LBN 1999
## 10042                                              Lebanon    LB   LBN 1998
## 10043                                              Lebanon    LB   LBN 1997
## 10044                                              Lebanon    LB   LBN 1996
## 10045                                              Lebanon    LB   LBN 1995
## 10046                                              Lebanon    LB   LBN 1994
## 10047                                              Lebanon    LB   LBN 1993
## 10048                                              Lebanon    LB   LBN 1992
## 10049                                              Lebanon    LB   LBN 1991
## 10050                                              Lebanon    LB   LBN 1990
## 10051                                              Lebanon    LB   LBN 1989
## 10052                                              Lebanon    LB   LBN 1988
## 10053                                              Lebanon    LB   LBN 1987
## 10054                                              Lebanon    LB   LBN 1986
## 10055                                              Lebanon    LB   LBN 1985
## 10056                                              Lebanon    LB   LBN 1984
## 10057                                              Lebanon    LB   LBN 1983
## 10058                                              Lebanon    LB   LBN 1982
## 10059                                              Lebanon    LB   LBN 1981
## 10060                                              Lebanon    LB   LBN 1980
## 10061                                              Lebanon    LB   LBN 1979
## 10062                                              Lebanon    LB   LBN 1978
## 10063                                              Lebanon    LB   LBN 1977
## 10064                                              Lebanon    LB   LBN 1976
## 10065                                              Lebanon    LB   LBN 1975
## 10066                                              Lebanon    LB   LBN 1974
## 10067                                              Lebanon    LB   LBN 1973
## 10068                                              Lebanon    LB   LBN 1972
## 10069                                              Lebanon    LB   LBN 1971
## 10070                                              Lebanon    LB   LBN 1970
## 10071                                              Lebanon    LB   LBN 1969
## 10072                                              Lebanon    LB   LBN 1968
## 10073                                              Lebanon    LB   LBN 1967
## 10074                                              Lebanon    LB   LBN 1966
## 10075                                              Lebanon    LB   LBN 1965
## 10076                                              Lebanon    LB   LBN 1964
## 10077                                              Lebanon    LB   LBN 1963
## 10078                                              Lebanon    LB   LBN 1962
## 10079                                              Lebanon    LB   LBN 1961
## 10080                                              Lebanon    LB   LBN 1960
## 10081                                              Lesotho    LS   LSO 2022
## 10082                                              Lesotho    LS   LSO 2021
## 10083                                              Lesotho    LS   LSO 2020
## 10084                                              Lesotho    LS   LSO 2019
## 10085                                              Lesotho    LS   LSO 2018
## 10086                                              Lesotho    LS   LSO 2017
## 10087                                              Lesotho    LS   LSO 2016
## 10088                                              Lesotho    LS   LSO 2015
## 10089                                              Lesotho    LS   LSO 2014
## 10090                                              Lesotho    LS   LSO 2013
## 10091                                              Lesotho    LS   LSO 2012
## 10092                                              Lesotho    LS   LSO 2011
## 10093                                              Lesotho    LS   LSO 2010
## 10094                                              Lesotho    LS   LSO 2009
## 10095                                              Lesotho    LS   LSO 2008
## 10096                                              Lesotho    LS   LSO 2007
## 10097                                              Lesotho    LS   LSO 2006
## 10098                                              Lesotho    LS   LSO 2005
## 10099                                              Lesotho    LS   LSO 2004
## 10100                                              Lesotho    LS   LSO 2003
## 10101                                              Lesotho    LS   LSO 2002
## 10102                                              Lesotho    LS   LSO 2001
## 10103                                              Lesotho    LS   LSO 2000
## 10104                                              Lesotho    LS   LSO 1999
## 10105                                              Lesotho    LS   LSO 1998
## 10106                                              Lesotho    LS   LSO 1997
## 10107                                              Lesotho    LS   LSO 1996
## 10108                                              Lesotho    LS   LSO 1995
## 10109                                              Lesotho    LS   LSO 1994
## 10110                                              Lesotho    LS   LSO 1993
## 10111                                              Lesotho    LS   LSO 1992
## 10112                                              Lesotho    LS   LSO 1991
## 10113                                              Lesotho    LS   LSO 1990
## 10114                                              Lesotho    LS   LSO 1989
## 10115                                              Lesotho    LS   LSO 1988
## 10116                                              Lesotho    LS   LSO 1987
## 10117                                              Lesotho    LS   LSO 1986
## 10118                                              Lesotho    LS   LSO 1985
## 10119                                              Lesotho    LS   LSO 1984
## 10120                                              Lesotho    LS   LSO 1983
## 10121                                              Lesotho    LS   LSO 1982
## 10122                                              Lesotho    LS   LSO 1981
## 10123                                              Lesotho    LS   LSO 1980
## 10124                                              Lesotho    LS   LSO 1979
## 10125                                              Lesotho    LS   LSO 1978
## 10126                                              Lesotho    LS   LSO 1977
## 10127                                              Lesotho    LS   LSO 1976
## 10128                                              Lesotho    LS   LSO 1975
## 10129                                              Lesotho    LS   LSO 1974
## 10130                                              Lesotho    LS   LSO 1973
## 10131                                              Lesotho    LS   LSO 1972
## 10132                                              Lesotho    LS   LSO 1971
## 10133                                              Lesotho    LS   LSO 1970
## 10134                                              Lesotho    LS   LSO 1969
## 10135                                              Lesotho    LS   LSO 1968
## 10136                                              Lesotho    LS   LSO 1967
## 10137                                              Lesotho    LS   LSO 1966
## 10138                                              Lesotho    LS   LSO 1965
## 10139                                              Lesotho    LS   LSO 1964
## 10140                                              Lesotho    LS   LSO 1963
## 10141                                              Lesotho    LS   LSO 1962
## 10142                                              Lesotho    LS   LSO 1961
## 10143                                              Lesotho    LS   LSO 1960
## 10144                                              Liberia    LR   LBR 2022
## 10145                                              Liberia    LR   LBR 2021
## 10146                                              Liberia    LR   LBR 2020
## 10147                                              Liberia    LR   LBR 2019
## 10148                                              Liberia    LR   LBR 2018
## 10149                                              Liberia    LR   LBR 2017
## 10150                                              Liberia    LR   LBR 2016
## 10151                                              Liberia    LR   LBR 2015
## 10152                                              Liberia    LR   LBR 2014
## 10153                                              Liberia    LR   LBR 2013
## 10154                                              Liberia    LR   LBR 2012
## 10155                                              Liberia    LR   LBR 2011
## 10156                                              Liberia    LR   LBR 2010
## 10157                                              Liberia    LR   LBR 2009
## 10158                                              Liberia    LR   LBR 2008
## 10159                                              Liberia    LR   LBR 2007
## 10160                                              Liberia    LR   LBR 2006
## 10161                                              Liberia    LR   LBR 2005
## 10162                                              Liberia    LR   LBR 2004
## 10163                                              Liberia    LR   LBR 2003
## 10164                                              Liberia    LR   LBR 2002
## 10165                                              Liberia    LR   LBR 2001
## 10166                                              Liberia    LR   LBR 2000
## 10167                                              Liberia    LR   LBR 1999
## 10168                                              Liberia    LR   LBR 1998
## 10169                                              Liberia    LR   LBR 1997
## 10170                                              Liberia    LR   LBR 1996
## 10171                                              Liberia    LR   LBR 1995
## 10172                                              Liberia    LR   LBR 1994
## 10173                                              Liberia    LR   LBR 1993
## 10174                                              Liberia    LR   LBR 1992
## 10175                                              Liberia    LR   LBR 1991
## 10176                                              Liberia    LR   LBR 1990
## 10177                                              Liberia    LR   LBR 1989
## 10178                                              Liberia    LR   LBR 1988
## 10179                                              Liberia    LR   LBR 1987
## 10180                                              Liberia    LR   LBR 1986
## 10181                                              Liberia    LR   LBR 1985
## 10182                                              Liberia    LR   LBR 1984
## 10183                                              Liberia    LR   LBR 1983
## 10184                                              Liberia    LR   LBR 1982
## 10185                                              Liberia    LR   LBR 1981
## 10186                                              Liberia    LR   LBR 1980
## 10187                                              Liberia    LR   LBR 1979
## 10188                                              Liberia    LR   LBR 1978
## 10189                                              Liberia    LR   LBR 1977
## 10190                                              Liberia    LR   LBR 1976
## 10191                                              Liberia    LR   LBR 1975
## 10192                                              Liberia    LR   LBR 1974
## 10193                                              Liberia    LR   LBR 1973
## 10194                                              Liberia    LR   LBR 1972
## 10195                                              Liberia    LR   LBR 1971
## 10196                                              Liberia    LR   LBR 1970
## 10197                                              Liberia    LR   LBR 1969
## 10198                                              Liberia    LR   LBR 1968
## 10199                                              Liberia    LR   LBR 1967
## 10200                                              Liberia    LR   LBR 1966
## 10201                                              Liberia    LR   LBR 1965
## 10202                                              Liberia    LR   LBR 1964
## 10203                                              Liberia    LR   LBR 1963
## 10204                                              Liberia    LR   LBR 1962
## 10205                                              Liberia    LR   LBR 1961
## 10206                                              Liberia    LR   LBR 1960
## 10207                                                Libya    LY   LBY 2022
## 10208                                                Libya    LY   LBY 2021
## 10209                                                Libya    LY   LBY 2020
## 10210                                                Libya    LY   LBY 2019
## 10211                                                Libya    LY   LBY 2018
## 10212                                                Libya    LY   LBY 2017
## 10213                                                Libya    LY   LBY 2016
## 10214                                                Libya    LY   LBY 2015
## 10215                                                Libya    LY   LBY 2014
## 10216                                                Libya    LY   LBY 2013
## 10217                                                Libya    LY   LBY 2012
## 10218                                                Libya    LY   LBY 2011
## 10219                                                Libya    LY   LBY 2010
## 10220                                                Libya    LY   LBY 2009
## 10221                                                Libya    LY   LBY 2008
## 10222                                                Libya    LY   LBY 2007
## 10223                                                Libya    LY   LBY 2006
## 10224                                                Libya    LY   LBY 2005
## 10225                                                Libya    LY   LBY 2004
## 10226                                                Libya    LY   LBY 2003
## 10227                                                Libya    LY   LBY 2002
## 10228                                                Libya    LY   LBY 2001
## 10229                                                Libya    LY   LBY 2000
## 10230                                                Libya    LY   LBY 1999
## 10231                                                Libya    LY   LBY 1998
## 10232                                                Libya    LY   LBY 1997
## 10233                                                Libya    LY   LBY 1996
## 10234                                                Libya    LY   LBY 1995
## 10235                                                Libya    LY   LBY 1994
## 10236                                                Libya    LY   LBY 1993
## 10237                                                Libya    LY   LBY 1992
## 10238                                                Libya    LY   LBY 1991
## 10239                                                Libya    LY   LBY 1990
## 10240                                                Libya    LY   LBY 1989
## 10241                                                Libya    LY   LBY 1988
## 10242                                                Libya    LY   LBY 1987
## 10243                                                Libya    LY   LBY 1986
## 10244                                                Libya    LY   LBY 1985
## 10245                                                Libya    LY   LBY 1984
## 10246                                                Libya    LY   LBY 1983
## 10247                                                Libya    LY   LBY 1982
## 10248                                                Libya    LY   LBY 1981
## 10249                                                Libya    LY   LBY 1980
## 10250                                                Libya    LY   LBY 1979
## 10251                                                Libya    LY   LBY 1978
## 10252                                                Libya    LY   LBY 1977
## 10253                                                Libya    LY   LBY 1976
## 10254                                                Libya    LY   LBY 1975
## 10255                                                Libya    LY   LBY 1974
## 10256                                                Libya    LY   LBY 1973
## 10257                                                Libya    LY   LBY 1972
## 10258                                                Libya    LY   LBY 1971
## 10259                                                Libya    LY   LBY 1970
## 10260                                                Libya    LY   LBY 1969
## 10261                                                Libya    LY   LBY 1968
## 10262                                                Libya    LY   LBY 1967
## 10263                                                Libya    LY   LBY 1966
## 10264                                                Libya    LY   LBY 1965
## 10265                                                Libya    LY   LBY 1964
## 10266                                                Libya    LY   LBY 1963
## 10267                                                Libya    LY   LBY 1962
## 10268                                                Libya    LY   LBY 1961
## 10269                                                Libya    LY   LBY 1960
## 10270                                        Liechtenstein    LI   LIE 2022
## 10271                                        Liechtenstein    LI   LIE 2021
## 10272                                        Liechtenstein    LI   LIE 2020
## 10273                                        Liechtenstein    LI   LIE 2019
## 10274                                        Liechtenstein    LI   LIE 2018
## 10275                                        Liechtenstein    LI   LIE 2017
## 10276                                        Liechtenstein    LI   LIE 2016
## 10277                                        Liechtenstein    LI   LIE 2015
## 10278                                        Liechtenstein    LI   LIE 2014
## 10279                                        Liechtenstein    LI   LIE 2013
## 10280                                        Liechtenstein    LI   LIE 2012
## 10281                                        Liechtenstein    LI   LIE 2011
## 10282                                        Liechtenstein    LI   LIE 2010
## 10283                                        Liechtenstein    LI   LIE 2009
## 10284                                        Liechtenstein    LI   LIE 2008
## 10285                                        Liechtenstein    LI   LIE 2007
## 10286                                        Liechtenstein    LI   LIE 2006
## 10287                                        Liechtenstein    LI   LIE 2005
## 10288                                        Liechtenstein    LI   LIE 2004
## 10289                                        Liechtenstein    LI   LIE 2003
## 10290                                        Liechtenstein    LI   LIE 2002
## 10291                                        Liechtenstein    LI   LIE 2001
## 10292                                        Liechtenstein    LI   LIE 2000
## 10293                                        Liechtenstein    LI   LIE 1999
## 10294                                        Liechtenstein    LI   LIE 1998
## 10295                                        Liechtenstein    LI   LIE 1997
## 10296                                        Liechtenstein    LI   LIE 1996
## 10297                                        Liechtenstein    LI   LIE 1995
## 10298                                        Liechtenstein    LI   LIE 1994
## 10299                                        Liechtenstein    LI   LIE 1993
## 10300                                        Liechtenstein    LI   LIE 1992
## 10301                                        Liechtenstein    LI   LIE 1991
## 10302                                        Liechtenstein    LI   LIE 1990
## 10303                                        Liechtenstein    LI   LIE 1989
## 10304                                        Liechtenstein    LI   LIE 1988
## 10305                                        Liechtenstein    LI   LIE 1987
## 10306                                        Liechtenstein    LI   LIE 1986
## 10307                                        Liechtenstein    LI   LIE 1985
## 10308                                        Liechtenstein    LI   LIE 1984
## 10309                                        Liechtenstein    LI   LIE 1983
## 10310                                        Liechtenstein    LI   LIE 1982
## 10311                                        Liechtenstein    LI   LIE 1981
## 10312                                        Liechtenstein    LI   LIE 1980
## 10313                                        Liechtenstein    LI   LIE 1979
## 10314                                        Liechtenstein    LI   LIE 1978
## 10315                                        Liechtenstein    LI   LIE 1977
## 10316                                        Liechtenstein    LI   LIE 1976
## 10317                                        Liechtenstein    LI   LIE 1975
## 10318                                        Liechtenstein    LI   LIE 1974
## 10319                                        Liechtenstein    LI   LIE 1973
## 10320                                        Liechtenstein    LI   LIE 1972
## 10321                                        Liechtenstein    LI   LIE 1971
## 10322                                        Liechtenstein    LI   LIE 1970
## 10323                                        Liechtenstein    LI   LIE 1969
## 10324                                        Liechtenstein    LI   LIE 1968
## 10325                                        Liechtenstein    LI   LIE 1967
## 10326                                        Liechtenstein    LI   LIE 1966
## 10327                                        Liechtenstein    LI   LIE 1965
## 10328                                        Liechtenstein    LI   LIE 1964
## 10329                                        Liechtenstein    LI   LIE 1963
## 10330                                        Liechtenstein    LI   LIE 1962
## 10331                                        Liechtenstein    LI   LIE 1961
## 10332                                        Liechtenstein    LI   LIE 1960
## 10333                                            Lithuania    LT   LTU 2022
## 10334                                            Lithuania    LT   LTU 2021
## 10335                                            Lithuania    LT   LTU 2020
## 10336                                            Lithuania    LT   LTU 2019
## 10337                                            Lithuania    LT   LTU 2018
## 10338                                            Lithuania    LT   LTU 2017
## 10339                                            Lithuania    LT   LTU 2016
## 10340                                            Lithuania    LT   LTU 2015
## 10341                                            Lithuania    LT   LTU 2014
## 10342                                            Lithuania    LT   LTU 2013
## 10343                                            Lithuania    LT   LTU 2012
## 10344                                            Lithuania    LT   LTU 2011
## 10345                                            Lithuania    LT   LTU 2010
## 10346                                            Lithuania    LT   LTU 2009
## 10347                                            Lithuania    LT   LTU 2008
## 10348                                            Lithuania    LT   LTU 2007
## 10349                                            Lithuania    LT   LTU 2006
## 10350                                            Lithuania    LT   LTU 2005
## 10351                                            Lithuania    LT   LTU 2004
## 10352                                            Lithuania    LT   LTU 2003
## 10353                                            Lithuania    LT   LTU 2002
## 10354                                            Lithuania    LT   LTU 2001
## 10355                                            Lithuania    LT   LTU 2000
## 10356                                            Lithuania    LT   LTU 1999
## 10357                                            Lithuania    LT   LTU 1998
## 10358                                            Lithuania    LT   LTU 1997
## 10359                                            Lithuania    LT   LTU 1996
## 10360                                            Lithuania    LT   LTU 1995
## 10361                                            Lithuania    LT   LTU 1994
## 10362                                            Lithuania    LT   LTU 1993
## 10363                                            Lithuania    LT   LTU 1992
## 10364                                            Lithuania    LT   LTU 1991
## 10365                                            Lithuania    LT   LTU 1990
## 10366                                            Lithuania    LT   LTU 1989
## 10367                                            Lithuania    LT   LTU 1988
## 10368                                            Lithuania    LT   LTU 1987
## 10369                                            Lithuania    LT   LTU 1986
## 10370                                            Lithuania    LT   LTU 1985
## 10371                                            Lithuania    LT   LTU 1984
## 10372                                            Lithuania    LT   LTU 1983
## 10373                                            Lithuania    LT   LTU 1982
## 10374                                            Lithuania    LT   LTU 1981
## 10375                                            Lithuania    LT   LTU 1980
## 10376                                            Lithuania    LT   LTU 1979
## 10377                                            Lithuania    LT   LTU 1978
## 10378                                            Lithuania    LT   LTU 1977
## 10379                                            Lithuania    LT   LTU 1976
## 10380                                            Lithuania    LT   LTU 1975
## 10381                                            Lithuania    LT   LTU 1974
## 10382                                            Lithuania    LT   LTU 1973
## 10383                                            Lithuania    LT   LTU 1972
## 10384                                            Lithuania    LT   LTU 1971
## 10385                                            Lithuania    LT   LTU 1970
## 10386                                            Lithuania    LT   LTU 1969
## 10387                                            Lithuania    LT   LTU 1968
## 10388                                            Lithuania    LT   LTU 1967
## 10389                                            Lithuania    LT   LTU 1966
## 10390                                            Lithuania    LT   LTU 1965
## 10391                                            Lithuania    LT   LTU 1964
## 10392                                            Lithuania    LT   LTU 1963
## 10393                                            Lithuania    LT   LTU 1962
## 10394                                            Lithuania    LT   LTU 1961
## 10395                                            Lithuania    LT   LTU 1960
## 10396                                           Luxembourg    LU   LUX 2022
## 10397                                           Luxembourg    LU   LUX 2021
## 10398                                           Luxembourg    LU   LUX 2020
## 10399                                           Luxembourg    LU   LUX 2019
## 10400                                           Luxembourg    LU   LUX 2018
## 10401                                           Luxembourg    LU   LUX 2017
## 10402                                           Luxembourg    LU   LUX 2016
## 10403                                           Luxembourg    LU   LUX 2015
## 10404                                           Luxembourg    LU   LUX 2014
## 10405                                           Luxembourg    LU   LUX 2013
## 10406                                           Luxembourg    LU   LUX 2012
## 10407                                           Luxembourg    LU   LUX 2011
## 10408                                           Luxembourg    LU   LUX 2010
## 10409                                           Luxembourg    LU   LUX 2009
## 10410                                           Luxembourg    LU   LUX 2008
## 10411                                           Luxembourg    LU   LUX 2007
## 10412                                           Luxembourg    LU   LUX 2006
## 10413                                           Luxembourg    LU   LUX 2005
## 10414                                           Luxembourg    LU   LUX 2004
## 10415                                           Luxembourg    LU   LUX 2003
## 10416                                           Luxembourg    LU   LUX 2002
## 10417                                           Luxembourg    LU   LUX 2001
## 10418                                           Luxembourg    LU   LUX 2000
## 10419                                           Luxembourg    LU   LUX 1999
## 10420                                           Luxembourg    LU   LUX 1998
## 10421                                           Luxembourg    LU   LUX 1997
## 10422                                           Luxembourg    LU   LUX 1996
## 10423                                           Luxembourg    LU   LUX 1995
## 10424                                           Luxembourg    LU   LUX 1994
## 10425                                           Luxembourg    LU   LUX 1993
## 10426                                           Luxembourg    LU   LUX 1992
## 10427                                           Luxembourg    LU   LUX 1991
## 10428                                           Luxembourg    LU   LUX 1990
## 10429                                           Luxembourg    LU   LUX 1989
## 10430                                           Luxembourg    LU   LUX 1988
## 10431                                           Luxembourg    LU   LUX 1987
## 10432                                           Luxembourg    LU   LUX 1986
## 10433                                           Luxembourg    LU   LUX 1985
## 10434                                           Luxembourg    LU   LUX 1984
## 10435                                           Luxembourg    LU   LUX 1983
## 10436                                           Luxembourg    LU   LUX 1982
## 10437                                           Luxembourg    LU   LUX 1981
## 10438                                           Luxembourg    LU   LUX 1980
## 10439                                           Luxembourg    LU   LUX 1979
## 10440                                           Luxembourg    LU   LUX 1978
## 10441                                           Luxembourg    LU   LUX 1977
## 10442                                           Luxembourg    LU   LUX 1976
## 10443                                           Luxembourg    LU   LUX 1975
## 10444                                           Luxembourg    LU   LUX 1974
## 10445                                           Luxembourg    LU   LUX 1973
## 10446                                           Luxembourg    LU   LUX 1972
## 10447                                           Luxembourg    LU   LUX 1971
## 10448                                           Luxembourg    LU   LUX 1970
## 10449                                           Luxembourg    LU   LUX 1969
## 10450                                           Luxembourg    LU   LUX 1968
## 10451                                           Luxembourg    LU   LUX 1967
## 10452                                           Luxembourg    LU   LUX 1966
## 10453                                           Luxembourg    LU   LUX 1965
## 10454                                           Luxembourg    LU   LUX 1964
## 10455                                           Luxembourg    LU   LUX 1963
## 10456                                           Luxembourg    LU   LUX 1962
## 10457                                           Luxembourg    LU   LUX 1961
## 10458                                           Luxembourg    LU   LUX 1960
## 10459                                     Macao SAR, China    MO   MAC 2022
## 10460                                     Macao SAR, China    MO   MAC 2021
## 10461                                     Macao SAR, China    MO   MAC 2020
## 10462                                     Macao SAR, China    MO   MAC 2019
## 10463                                     Macao SAR, China    MO   MAC 2018
## 10464                                     Macao SAR, China    MO   MAC 2017
## 10465                                     Macao SAR, China    MO   MAC 2016
## 10466                                     Macao SAR, China    MO   MAC 2015
## 10467                                     Macao SAR, China    MO   MAC 2014
## 10468                                     Macao SAR, China    MO   MAC 2013
## 10469                                     Macao SAR, China    MO   MAC 2012
## 10470                                     Macao SAR, China    MO   MAC 2011
## 10471                                     Macao SAR, China    MO   MAC 2010
## 10472                                     Macao SAR, China    MO   MAC 2009
## 10473                                     Macao SAR, China    MO   MAC 2008
## 10474                                     Macao SAR, China    MO   MAC 2007
## 10475                                     Macao SAR, China    MO   MAC 2006
## 10476                                     Macao SAR, China    MO   MAC 2005
## 10477                                     Macao SAR, China    MO   MAC 2004
## 10478                                     Macao SAR, China    MO   MAC 2003
## 10479                                     Macao SAR, China    MO   MAC 2002
## 10480                                     Macao SAR, China    MO   MAC 2001
## 10481                                     Macao SAR, China    MO   MAC 2000
## 10482                                     Macao SAR, China    MO   MAC 1999
## 10483                                     Macao SAR, China    MO   MAC 1998
## 10484                                     Macao SAR, China    MO   MAC 1997
## 10485                                     Macao SAR, China    MO   MAC 1996
## 10486                                     Macao SAR, China    MO   MAC 1995
## 10487                                     Macao SAR, China    MO   MAC 1994
## 10488                                     Macao SAR, China    MO   MAC 1993
## 10489                                     Macao SAR, China    MO   MAC 1992
## 10490                                     Macao SAR, China    MO   MAC 1991
## 10491                                     Macao SAR, China    MO   MAC 1990
## 10492                                     Macao SAR, China    MO   MAC 1989
## 10493                                     Macao SAR, China    MO   MAC 1988
## 10494                                     Macao SAR, China    MO   MAC 1987
## 10495                                     Macao SAR, China    MO   MAC 1986
## 10496                                     Macao SAR, China    MO   MAC 1985
## 10497                                     Macao SAR, China    MO   MAC 1984
## 10498                                     Macao SAR, China    MO   MAC 1983
## 10499                                     Macao SAR, China    MO   MAC 1982
## 10500                                     Macao SAR, China    MO   MAC 1981
## 10501                                     Macao SAR, China    MO   MAC 1980
## 10502                                     Macao SAR, China    MO   MAC 1979
## 10503                                     Macao SAR, China    MO   MAC 1978
## 10504                                     Macao SAR, China    MO   MAC 1977
## 10505                                     Macao SAR, China    MO   MAC 1976
## 10506                                     Macao SAR, China    MO   MAC 1975
## 10507                                     Macao SAR, China    MO   MAC 1974
## 10508                                     Macao SAR, China    MO   MAC 1973
## 10509                                     Macao SAR, China    MO   MAC 1972
## 10510                                     Macao SAR, China    MO   MAC 1971
## 10511                                     Macao SAR, China    MO   MAC 1970
## 10512                                     Macao SAR, China    MO   MAC 1969
## 10513                                     Macao SAR, China    MO   MAC 1968
## 10514                                     Macao SAR, China    MO   MAC 1967
## 10515                                     Macao SAR, China    MO   MAC 1966
## 10516                                     Macao SAR, China    MO   MAC 1965
## 10517                                     Macao SAR, China    MO   MAC 1964
## 10518                                     Macao SAR, China    MO   MAC 1963
## 10519                                     Macao SAR, China    MO   MAC 1962
## 10520                                     Macao SAR, China    MO   MAC 1961
## 10521                                     Macao SAR, China    MO   MAC 1960
## 10522                                           Madagascar    MG   MDG 2022
## 10523                                           Madagascar    MG   MDG 2021
## 10524                                           Madagascar    MG   MDG 2020
## 10525                                           Madagascar    MG   MDG 2019
## 10526                                           Madagascar    MG   MDG 2018
## 10527                                           Madagascar    MG   MDG 2017
## 10528                                           Madagascar    MG   MDG 2016
## 10529                                           Madagascar    MG   MDG 2015
## 10530                                           Madagascar    MG   MDG 2014
## 10531                                           Madagascar    MG   MDG 2013
## 10532                                           Madagascar    MG   MDG 2012
## 10533                                           Madagascar    MG   MDG 2011
## 10534                                           Madagascar    MG   MDG 2010
## 10535                                           Madagascar    MG   MDG 2009
## 10536                                           Madagascar    MG   MDG 2008
## 10537                                           Madagascar    MG   MDG 2007
## 10538                                           Madagascar    MG   MDG 2006
## 10539                                           Madagascar    MG   MDG 2005
## 10540                                           Madagascar    MG   MDG 2004
## 10541                                           Madagascar    MG   MDG 2003
## 10542                                           Madagascar    MG   MDG 2002
## 10543                                           Madagascar    MG   MDG 2001
## 10544                                           Madagascar    MG   MDG 2000
## 10545                                           Madagascar    MG   MDG 1999
## 10546                                           Madagascar    MG   MDG 1998
## 10547                                           Madagascar    MG   MDG 1997
## 10548                                           Madagascar    MG   MDG 1996
## 10549                                           Madagascar    MG   MDG 1995
## 10550                                           Madagascar    MG   MDG 1994
## 10551                                           Madagascar    MG   MDG 1993
## 10552                                           Madagascar    MG   MDG 1992
## 10553                                           Madagascar    MG   MDG 1991
## 10554                                           Madagascar    MG   MDG 1990
## 10555                                           Madagascar    MG   MDG 1989
## 10556                                           Madagascar    MG   MDG 1988
## 10557                                           Madagascar    MG   MDG 1987
## 10558                                           Madagascar    MG   MDG 1986
## 10559                                           Madagascar    MG   MDG 1985
## 10560                                           Madagascar    MG   MDG 1984
## 10561                                           Madagascar    MG   MDG 1983
## 10562                                           Madagascar    MG   MDG 1982
## 10563                                           Madagascar    MG   MDG 1981
## 10564                                           Madagascar    MG   MDG 1980
## 10565                                           Madagascar    MG   MDG 1979
## 10566                                           Madagascar    MG   MDG 1978
## 10567                                           Madagascar    MG   MDG 1977
## 10568                                           Madagascar    MG   MDG 1976
## 10569                                           Madagascar    MG   MDG 1975
## 10570                                           Madagascar    MG   MDG 1974
## 10571                                           Madagascar    MG   MDG 1973
## 10572                                           Madagascar    MG   MDG 1972
## 10573                                           Madagascar    MG   MDG 1971
## 10574                                           Madagascar    MG   MDG 1970
## 10575                                           Madagascar    MG   MDG 1969
## 10576                                           Madagascar    MG   MDG 1968
## 10577                                           Madagascar    MG   MDG 1967
## 10578                                           Madagascar    MG   MDG 1966
## 10579                                           Madagascar    MG   MDG 1965
## 10580                                           Madagascar    MG   MDG 1964
## 10581                                           Madagascar    MG   MDG 1963
## 10582                                           Madagascar    MG   MDG 1962
## 10583                                           Madagascar    MG   MDG 1961
## 10584                                           Madagascar    MG   MDG 1960
## 10585                                               Malawi    MW   MWI 2022
## 10586                                               Malawi    MW   MWI 2021
## 10587                                               Malawi    MW   MWI 2020
## 10588                                               Malawi    MW   MWI 2019
## 10589                                               Malawi    MW   MWI 2018
## 10590                                               Malawi    MW   MWI 2017
## 10591                                               Malawi    MW   MWI 2016
## 10592                                               Malawi    MW   MWI 2015
## 10593                                               Malawi    MW   MWI 2014
## 10594                                               Malawi    MW   MWI 2013
## 10595                                               Malawi    MW   MWI 2012
## 10596                                               Malawi    MW   MWI 2011
## 10597                                               Malawi    MW   MWI 2010
## 10598                                               Malawi    MW   MWI 2009
## 10599                                               Malawi    MW   MWI 2008
## 10600                                               Malawi    MW   MWI 2007
## 10601                                               Malawi    MW   MWI 2006
## 10602                                               Malawi    MW   MWI 2005
## 10603                                               Malawi    MW   MWI 2004
## 10604                                               Malawi    MW   MWI 2003
## 10605                                               Malawi    MW   MWI 2002
## 10606                                               Malawi    MW   MWI 2001
## 10607                                               Malawi    MW   MWI 2000
## 10608                                               Malawi    MW   MWI 1999
## 10609                                               Malawi    MW   MWI 1998
## 10610                                               Malawi    MW   MWI 1997
## 10611                                               Malawi    MW   MWI 1996
## 10612                                               Malawi    MW   MWI 1995
## 10613                                               Malawi    MW   MWI 1994
## 10614                                               Malawi    MW   MWI 1993
## 10615                                               Malawi    MW   MWI 1992
## 10616                                               Malawi    MW   MWI 1991
## 10617                                               Malawi    MW   MWI 1990
## 10618                                               Malawi    MW   MWI 1989
## 10619                                               Malawi    MW   MWI 1988
## 10620                                               Malawi    MW   MWI 1987
## 10621                                               Malawi    MW   MWI 1986
## 10622                                               Malawi    MW   MWI 1985
## 10623                                               Malawi    MW   MWI 1984
## 10624                                               Malawi    MW   MWI 1983
## 10625                                               Malawi    MW   MWI 1982
## 10626                                               Malawi    MW   MWI 1981
## 10627                                               Malawi    MW   MWI 1980
## 10628                                               Malawi    MW   MWI 1979
## 10629                                               Malawi    MW   MWI 1978
## 10630                                               Malawi    MW   MWI 1977
## 10631                                               Malawi    MW   MWI 1976
## 10632                                               Malawi    MW   MWI 1975
## 10633                                               Malawi    MW   MWI 1974
## 10634                                               Malawi    MW   MWI 1973
## 10635                                               Malawi    MW   MWI 1972
## 10636                                               Malawi    MW   MWI 1971
## 10637                                               Malawi    MW   MWI 1970
## 10638                                               Malawi    MW   MWI 1969
## 10639                                               Malawi    MW   MWI 1968
## 10640                                               Malawi    MW   MWI 1967
## 10641                                               Malawi    MW   MWI 1966
## 10642                                               Malawi    MW   MWI 1965
## 10643                                               Malawi    MW   MWI 1964
## 10644                                               Malawi    MW   MWI 1963
## 10645                                               Malawi    MW   MWI 1962
## 10646                                               Malawi    MW   MWI 1961
## 10647                                               Malawi    MW   MWI 1960
## 10648                                             Malaysia    MY   MYS 2022
## 10649                                             Malaysia    MY   MYS 2021
## 10650                                             Malaysia    MY   MYS 2020
## 10651                                             Malaysia    MY   MYS 2019
## 10652                                             Malaysia    MY   MYS 2018
## 10653                                             Malaysia    MY   MYS 2017
## 10654                                             Malaysia    MY   MYS 2016
## 10655                                             Malaysia    MY   MYS 2015
## 10656                                             Malaysia    MY   MYS 2014
## 10657                                             Malaysia    MY   MYS 2013
## 10658                                             Malaysia    MY   MYS 2012
## 10659                                             Malaysia    MY   MYS 2011
## 10660                                             Malaysia    MY   MYS 2010
## 10661                                             Malaysia    MY   MYS 2009
## 10662                                             Malaysia    MY   MYS 2008
## 10663                                             Malaysia    MY   MYS 2007
## 10664                                             Malaysia    MY   MYS 2006
## 10665                                             Malaysia    MY   MYS 2005
## 10666                                             Malaysia    MY   MYS 2004
## 10667                                             Malaysia    MY   MYS 2003
## 10668                                             Malaysia    MY   MYS 2002
## 10669                                             Malaysia    MY   MYS 2001
## 10670                                             Malaysia    MY   MYS 2000
## 10671                                             Malaysia    MY   MYS 1999
## 10672                                             Malaysia    MY   MYS 1998
## 10673                                             Malaysia    MY   MYS 1997
## 10674                                             Malaysia    MY   MYS 1996
## 10675                                             Malaysia    MY   MYS 1995
## 10676                                             Malaysia    MY   MYS 1994
## 10677                                             Malaysia    MY   MYS 1993
## 10678                                             Malaysia    MY   MYS 1992
## 10679                                             Malaysia    MY   MYS 1991
## 10680                                             Malaysia    MY   MYS 1990
## 10681                                             Malaysia    MY   MYS 1989
## 10682                                             Malaysia    MY   MYS 1988
## 10683                                             Malaysia    MY   MYS 1987
## 10684                                             Malaysia    MY   MYS 1986
## 10685                                             Malaysia    MY   MYS 1985
## 10686                                             Malaysia    MY   MYS 1984
## 10687                                             Malaysia    MY   MYS 1983
## 10688                                             Malaysia    MY   MYS 1982
## 10689                                             Malaysia    MY   MYS 1981
## 10690                                             Malaysia    MY   MYS 1980
## 10691                                             Malaysia    MY   MYS 1979
## 10692                                             Malaysia    MY   MYS 1978
## 10693                                             Malaysia    MY   MYS 1977
## 10694                                             Malaysia    MY   MYS 1976
## 10695                                             Malaysia    MY   MYS 1975
## 10696                                             Malaysia    MY   MYS 1974
## 10697                                             Malaysia    MY   MYS 1973
## 10698                                             Malaysia    MY   MYS 1972
## 10699                                             Malaysia    MY   MYS 1971
## 10700                                             Malaysia    MY   MYS 1970
## 10701                                             Malaysia    MY   MYS 1969
## 10702                                             Malaysia    MY   MYS 1968
## 10703                                             Malaysia    MY   MYS 1967
## 10704                                             Malaysia    MY   MYS 1966
## 10705                                             Malaysia    MY   MYS 1965
## 10706                                             Malaysia    MY   MYS 1964
## 10707                                             Malaysia    MY   MYS 1963
## 10708                                             Malaysia    MY   MYS 1962
## 10709                                             Malaysia    MY   MYS 1961
## 10710                                             Malaysia    MY   MYS 1960
## 10711                                             Maldives    MV   MDV 2022
## 10712                                             Maldives    MV   MDV 2021
## 10713                                             Maldives    MV   MDV 2020
## 10714                                             Maldives    MV   MDV 2019
## 10715                                             Maldives    MV   MDV 2018
## 10716                                             Maldives    MV   MDV 2017
## 10717                                             Maldives    MV   MDV 2016
## 10718                                             Maldives    MV   MDV 2015
## 10719                                             Maldives    MV   MDV 2014
## 10720                                             Maldives    MV   MDV 2013
## 10721                                             Maldives    MV   MDV 2012
## 10722                                             Maldives    MV   MDV 2011
## 10723                                             Maldives    MV   MDV 2010
## 10724                                             Maldives    MV   MDV 2009
## 10725                                             Maldives    MV   MDV 2008
## 10726                                             Maldives    MV   MDV 2007
## 10727                                             Maldives    MV   MDV 2006
## 10728                                             Maldives    MV   MDV 2005
## 10729                                             Maldives    MV   MDV 2004
## 10730                                             Maldives    MV   MDV 2003
## 10731                                             Maldives    MV   MDV 2002
## 10732                                             Maldives    MV   MDV 2001
## 10733                                             Maldives    MV   MDV 2000
## 10734                                             Maldives    MV   MDV 1999
## 10735                                             Maldives    MV   MDV 1998
## 10736                                             Maldives    MV   MDV 1997
## 10737                                             Maldives    MV   MDV 1996
## 10738                                             Maldives    MV   MDV 1995
## 10739                                             Maldives    MV   MDV 1994
## 10740                                             Maldives    MV   MDV 1993
## 10741                                             Maldives    MV   MDV 1992
## 10742                                             Maldives    MV   MDV 1991
## 10743                                             Maldives    MV   MDV 1990
## 10744                                             Maldives    MV   MDV 1989
## 10745                                             Maldives    MV   MDV 1988
## 10746                                             Maldives    MV   MDV 1987
## 10747                                             Maldives    MV   MDV 1986
## 10748                                             Maldives    MV   MDV 1985
## 10749                                             Maldives    MV   MDV 1984
## 10750                                             Maldives    MV   MDV 1983
## 10751                                             Maldives    MV   MDV 1982
## 10752                                             Maldives    MV   MDV 1981
## 10753                                             Maldives    MV   MDV 1980
## 10754                                             Maldives    MV   MDV 1979
## 10755                                             Maldives    MV   MDV 1978
## 10756                                             Maldives    MV   MDV 1977
## 10757                                             Maldives    MV   MDV 1976
## 10758                                             Maldives    MV   MDV 1975
## 10759                                             Maldives    MV   MDV 1974
## 10760                                             Maldives    MV   MDV 1973
## 10761                                             Maldives    MV   MDV 1972
## 10762                                             Maldives    MV   MDV 1971
## 10763                                             Maldives    MV   MDV 1970
## 10764                                             Maldives    MV   MDV 1969
## 10765                                             Maldives    MV   MDV 1968
## 10766                                             Maldives    MV   MDV 1967
## 10767                                             Maldives    MV   MDV 1966
## 10768                                             Maldives    MV   MDV 1965
## 10769                                             Maldives    MV   MDV 1964
## 10770                                             Maldives    MV   MDV 1963
## 10771                                             Maldives    MV   MDV 1962
## 10772                                             Maldives    MV   MDV 1961
## 10773                                             Maldives    MV   MDV 1960
## 10774                                                 Mali    ML   MLI 2022
## 10775                                                 Mali    ML   MLI 2021
## 10776                                                 Mali    ML   MLI 2020
## 10777                                                 Mali    ML   MLI 2019
## 10778                                                 Mali    ML   MLI 2018
## 10779                                                 Mali    ML   MLI 2017
## 10780                                                 Mali    ML   MLI 2016
## 10781                                                 Mali    ML   MLI 2015
## 10782                                                 Mali    ML   MLI 2014
## 10783                                                 Mali    ML   MLI 2013
## 10784                                                 Mali    ML   MLI 2012
## 10785                                                 Mali    ML   MLI 2011
## 10786                                                 Mali    ML   MLI 2010
## 10787                                                 Mali    ML   MLI 2009
## 10788                                                 Mali    ML   MLI 2008
## 10789                                                 Mali    ML   MLI 2007
## 10790                                                 Mali    ML   MLI 2006
## 10791                                                 Mali    ML   MLI 2005
## 10792                                                 Mali    ML   MLI 2004
## 10793                                                 Mali    ML   MLI 2003
## 10794                                                 Mali    ML   MLI 2002
## 10795                                                 Mali    ML   MLI 2001
## 10796                                                 Mali    ML   MLI 2000
## 10797                                                 Mali    ML   MLI 1999
## 10798                                                 Mali    ML   MLI 1998
## 10799                                                 Mali    ML   MLI 1997
## 10800                                                 Mali    ML   MLI 1996
## 10801                                                 Mali    ML   MLI 1995
## 10802                                                 Mali    ML   MLI 1994
## 10803                                                 Mali    ML   MLI 1993
## 10804                                                 Mali    ML   MLI 1992
## 10805                                                 Mali    ML   MLI 1991
## 10806                                                 Mali    ML   MLI 1990
## 10807                                                 Mali    ML   MLI 1989
## 10808                                                 Mali    ML   MLI 1988
## 10809                                                 Mali    ML   MLI 1987
## 10810                                                 Mali    ML   MLI 1986
## 10811                                                 Mali    ML   MLI 1985
## 10812                                                 Mali    ML   MLI 1984
## 10813                                                 Mali    ML   MLI 1983
## 10814                                                 Mali    ML   MLI 1982
## 10815                                                 Mali    ML   MLI 1981
## 10816                                                 Mali    ML   MLI 1980
## 10817                                                 Mali    ML   MLI 1979
## 10818                                                 Mali    ML   MLI 1978
## 10819                                                 Mali    ML   MLI 1977
## 10820                                                 Mali    ML   MLI 1976
## 10821                                                 Mali    ML   MLI 1975
## 10822                                                 Mali    ML   MLI 1974
## 10823                                                 Mali    ML   MLI 1973
## 10824                                                 Mali    ML   MLI 1972
## 10825                                                 Mali    ML   MLI 1971
## 10826                                                 Mali    ML   MLI 1970
## 10827                                                 Mali    ML   MLI 1969
## 10828                                                 Mali    ML   MLI 1968
## 10829                                                 Mali    ML   MLI 1967
## 10830                                                 Mali    ML   MLI 1966
## 10831                                                 Mali    ML   MLI 1965
## 10832                                                 Mali    ML   MLI 1964
## 10833                                                 Mali    ML   MLI 1963
## 10834                                                 Mali    ML   MLI 1962
## 10835                                                 Mali    ML   MLI 1961
## 10836                                                 Mali    ML   MLI 1960
## 10837                                                Malta    MT   MLT 2022
## 10838                                                Malta    MT   MLT 2021
## 10839                                                Malta    MT   MLT 2020
## 10840                                                Malta    MT   MLT 2019
## 10841                                                Malta    MT   MLT 2018
## 10842                                                Malta    MT   MLT 2017
## 10843                                                Malta    MT   MLT 2016
## 10844                                                Malta    MT   MLT 2015
## 10845                                                Malta    MT   MLT 2014
## 10846                                                Malta    MT   MLT 2013
## 10847                                                Malta    MT   MLT 2012
## 10848                                                Malta    MT   MLT 2011
## 10849                                                Malta    MT   MLT 2010
## 10850                                                Malta    MT   MLT 2009
## 10851                                                Malta    MT   MLT 2008
## 10852                                                Malta    MT   MLT 2007
## 10853                                                Malta    MT   MLT 2006
## 10854                                                Malta    MT   MLT 2005
## 10855                                                Malta    MT   MLT 2004
## 10856                                                Malta    MT   MLT 2003
## 10857                                                Malta    MT   MLT 2002
## 10858                                                Malta    MT   MLT 2001
## 10859                                                Malta    MT   MLT 2000
## 10860                                                Malta    MT   MLT 1999
## 10861                                                Malta    MT   MLT 1998
## 10862                                                Malta    MT   MLT 1997
## 10863                                                Malta    MT   MLT 1996
## 10864                                                Malta    MT   MLT 1995
## 10865                                                Malta    MT   MLT 1994
## 10866                                                Malta    MT   MLT 1993
## 10867                                                Malta    MT   MLT 1992
## 10868                                                Malta    MT   MLT 1991
## 10869                                                Malta    MT   MLT 1990
## 10870                                                Malta    MT   MLT 1989
## 10871                                                Malta    MT   MLT 1988
## 10872                                                Malta    MT   MLT 1987
## 10873                                                Malta    MT   MLT 1986
## 10874                                                Malta    MT   MLT 1985
## 10875                                                Malta    MT   MLT 1984
## 10876                                                Malta    MT   MLT 1983
## 10877                                                Malta    MT   MLT 1982
## 10878                                                Malta    MT   MLT 1981
## 10879                                                Malta    MT   MLT 1980
## 10880                                                Malta    MT   MLT 1979
## 10881                                                Malta    MT   MLT 1978
## 10882                                                Malta    MT   MLT 1977
## 10883                                                Malta    MT   MLT 1976
## 10884                                                Malta    MT   MLT 1975
## 10885                                                Malta    MT   MLT 1974
## 10886                                                Malta    MT   MLT 1973
## 10887                                                Malta    MT   MLT 1972
## 10888                                                Malta    MT   MLT 1971
## 10889                                                Malta    MT   MLT 1970
## 10890                                                Malta    MT   MLT 1969
## 10891                                                Malta    MT   MLT 1968
## 10892                                                Malta    MT   MLT 1967
## 10893                                                Malta    MT   MLT 1966
## 10894                                                Malta    MT   MLT 1965
## 10895                                                Malta    MT   MLT 1964
## 10896                                                Malta    MT   MLT 1963
## 10897                                                Malta    MT   MLT 1962
## 10898                                                Malta    MT   MLT 1961
## 10899                                                Malta    MT   MLT 1960
## 10900                                     Marshall Islands    MH   MHL 2022
## 10901                                     Marshall Islands    MH   MHL 2021
## 10902                                     Marshall Islands    MH   MHL 2020
## 10903                                     Marshall Islands    MH   MHL 2019
## 10904                                     Marshall Islands    MH   MHL 2018
## 10905                                     Marshall Islands    MH   MHL 2017
## 10906                                     Marshall Islands    MH   MHL 2016
## 10907                                     Marshall Islands    MH   MHL 2015
## 10908                                     Marshall Islands    MH   MHL 2014
## 10909                                     Marshall Islands    MH   MHL 2013
## 10910                                     Marshall Islands    MH   MHL 2012
## 10911                                     Marshall Islands    MH   MHL 2011
## 10912                                     Marshall Islands    MH   MHL 2010
## 10913                                     Marshall Islands    MH   MHL 2009
## 10914                                     Marshall Islands    MH   MHL 2008
## 10915                                     Marshall Islands    MH   MHL 2007
## 10916                                     Marshall Islands    MH   MHL 2006
## 10917                                     Marshall Islands    MH   MHL 2005
## 10918                                     Marshall Islands    MH   MHL 2004
## 10919                                     Marshall Islands    MH   MHL 2003
## 10920                                     Marshall Islands    MH   MHL 2002
## 10921                                     Marshall Islands    MH   MHL 2001
## 10922                                     Marshall Islands    MH   MHL 2000
## 10923                                     Marshall Islands    MH   MHL 1999
## 10924                                     Marshall Islands    MH   MHL 1998
## 10925                                     Marshall Islands    MH   MHL 1997
## 10926                                     Marshall Islands    MH   MHL 1996
## 10927                                     Marshall Islands    MH   MHL 1995
## 10928                                     Marshall Islands    MH   MHL 1994
## 10929                                     Marshall Islands    MH   MHL 1993
## 10930                                     Marshall Islands    MH   MHL 1992
## 10931                                     Marshall Islands    MH   MHL 1991
## 10932                                     Marshall Islands    MH   MHL 1990
## 10933                                     Marshall Islands    MH   MHL 1989
## 10934                                     Marshall Islands    MH   MHL 1988
## 10935                                     Marshall Islands    MH   MHL 1987
## 10936                                     Marshall Islands    MH   MHL 1986
## 10937                                     Marshall Islands    MH   MHL 1985
## 10938                                     Marshall Islands    MH   MHL 1984
## 10939                                     Marshall Islands    MH   MHL 1983
## 10940                                     Marshall Islands    MH   MHL 1982
## 10941                                     Marshall Islands    MH   MHL 1981
## 10942                                     Marshall Islands    MH   MHL 1980
## 10943                                     Marshall Islands    MH   MHL 1979
## 10944                                     Marshall Islands    MH   MHL 1978
## 10945                                     Marshall Islands    MH   MHL 1977
## 10946                                     Marshall Islands    MH   MHL 1976
## 10947                                     Marshall Islands    MH   MHL 1975
## 10948                                     Marshall Islands    MH   MHL 1974
## 10949                                     Marshall Islands    MH   MHL 1973
## 10950                                     Marshall Islands    MH   MHL 1972
## 10951                                     Marshall Islands    MH   MHL 1971
## 10952                                     Marshall Islands    MH   MHL 1970
## 10953                                     Marshall Islands    MH   MHL 1969
## 10954                                     Marshall Islands    MH   MHL 1968
## 10955                                     Marshall Islands    MH   MHL 1967
## 10956                                     Marshall Islands    MH   MHL 1966
## 10957                                     Marshall Islands    MH   MHL 1965
## 10958                                     Marshall Islands    MH   MHL 1964
## 10959                                     Marshall Islands    MH   MHL 1963
## 10960                                     Marshall Islands    MH   MHL 1962
## 10961                                     Marshall Islands    MH   MHL 1961
## 10962                                     Marshall Islands    MH   MHL 1960
## 10963                                           Mauritania    MR   MRT 2022
## 10964                                           Mauritania    MR   MRT 2021
## 10965                                           Mauritania    MR   MRT 2020
## 10966                                           Mauritania    MR   MRT 2019
## 10967                                           Mauritania    MR   MRT 2018
## 10968                                           Mauritania    MR   MRT 2017
## 10969                                           Mauritania    MR   MRT 2016
## 10970                                           Mauritania    MR   MRT 2015
## 10971                                           Mauritania    MR   MRT 2014
## 10972                                           Mauritania    MR   MRT 2013
## 10973                                           Mauritania    MR   MRT 2012
## 10974                                           Mauritania    MR   MRT 2011
## 10975                                           Mauritania    MR   MRT 2010
## 10976                                           Mauritania    MR   MRT 2009
## 10977                                           Mauritania    MR   MRT 2008
## 10978                                           Mauritania    MR   MRT 2007
## 10979                                           Mauritania    MR   MRT 2006
## 10980                                           Mauritania    MR   MRT 2005
## 10981                                           Mauritania    MR   MRT 2004
## 10982                                           Mauritania    MR   MRT 2003
## 10983                                           Mauritania    MR   MRT 2002
## 10984                                           Mauritania    MR   MRT 2001
## 10985                                           Mauritania    MR   MRT 2000
## 10986                                           Mauritania    MR   MRT 1999
## 10987                                           Mauritania    MR   MRT 1998
## 10988                                           Mauritania    MR   MRT 1997
## 10989                                           Mauritania    MR   MRT 1996
## 10990                                           Mauritania    MR   MRT 1995
## 10991                                           Mauritania    MR   MRT 1994
## 10992                                           Mauritania    MR   MRT 1993
## 10993                                           Mauritania    MR   MRT 1992
## 10994                                           Mauritania    MR   MRT 1991
## 10995                                           Mauritania    MR   MRT 1990
## 10996                                           Mauritania    MR   MRT 1989
## 10997                                           Mauritania    MR   MRT 1988
## 10998                                           Mauritania    MR   MRT 1987
## 10999                                           Mauritania    MR   MRT 1986
## 11000                                           Mauritania    MR   MRT 1985
## 11001                                           Mauritania    MR   MRT 1984
## 11002                                           Mauritania    MR   MRT 1983
## 11003                                           Mauritania    MR   MRT 1982
## 11004                                           Mauritania    MR   MRT 1981
## 11005                                           Mauritania    MR   MRT 1980
## 11006                                           Mauritania    MR   MRT 1979
## 11007                                           Mauritania    MR   MRT 1978
## 11008                                           Mauritania    MR   MRT 1977
## 11009                                           Mauritania    MR   MRT 1976
## 11010                                           Mauritania    MR   MRT 1975
## 11011                                           Mauritania    MR   MRT 1974
## 11012                                           Mauritania    MR   MRT 1973
## 11013                                           Mauritania    MR   MRT 1972
## 11014                                           Mauritania    MR   MRT 1971
## 11015                                           Mauritania    MR   MRT 1970
## 11016                                           Mauritania    MR   MRT 1969
## 11017                                           Mauritania    MR   MRT 1968
## 11018                                           Mauritania    MR   MRT 1967
## 11019                                           Mauritania    MR   MRT 1966
## 11020                                           Mauritania    MR   MRT 1965
## 11021                                           Mauritania    MR   MRT 1964
## 11022                                           Mauritania    MR   MRT 1963
## 11023                                           Mauritania    MR   MRT 1962
## 11024                                           Mauritania    MR   MRT 1961
## 11025                                           Mauritania    MR   MRT 1960
## 11026                                            Mauritius    MU   MUS 2022
## 11027                                            Mauritius    MU   MUS 2021
## 11028                                            Mauritius    MU   MUS 2020
## 11029                                            Mauritius    MU   MUS 2019
## 11030                                            Mauritius    MU   MUS 2018
## 11031                                            Mauritius    MU   MUS 2017
## 11032                                            Mauritius    MU   MUS 2016
## 11033                                            Mauritius    MU   MUS 2015
## 11034                                            Mauritius    MU   MUS 2014
## 11035                                            Mauritius    MU   MUS 2013
## 11036                                            Mauritius    MU   MUS 2012
## 11037                                            Mauritius    MU   MUS 2011
## 11038                                            Mauritius    MU   MUS 2010
## 11039                                            Mauritius    MU   MUS 2009
## 11040                                            Mauritius    MU   MUS 2008
## 11041                                            Mauritius    MU   MUS 2007
## 11042                                            Mauritius    MU   MUS 2006
## 11043                                            Mauritius    MU   MUS 2005
## 11044                                            Mauritius    MU   MUS 2004
## 11045                                            Mauritius    MU   MUS 2003
## 11046                                            Mauritius    MU   MUS 2002
## 11047                                            Mauritius    MU   MUS 2001
## 11048                                            Mauritius    MU   MUS 2000
## 11049                                            Mauritius    MU   MUS 1999
## 11050                                            Mauritius    MU   MUS 1998
## 11051                                            Mauritius    MU   MUS 1997
## 11052                                            Mauritius    MU   MUS 1996
## 11053                                            Mauritius    MU   MUS 1995
## 11054                                            Mauritius    MU   MUS 1994
## 11055                                            Mauritius    MU   MUS 1993
## 11056                                            Mauritius    MU   MUS 1992
## 11057                                            Mauritius    MU   MUS 1991
## 11058                                            Mauritius    MU   MUS 1990
## 11059                                            Mauritius    MU   MUS 1989
## 11060                                            Mauritius    MU   MUS 1988
## 11061                                            Mauritius    MU   MUS 1987
## 11062                                            Mauritius    MU   MUS 1986
## 11063                                            Mauritius    MU   MUS 1985
## 11064                                            Mauritius    MU   MUS 1984
## 11065                                            Mauritius    MU   MUS 1983
## 11066                                            Mauritius    MU   MUS 1982
## 11067                                            Mauritius    MU   MUS 1981
## 11068                                            Mauritius    MU   MUS 1980
## 11069                                            Mauritius    MU   MUS 1979
## 11070                                            Mauritius    MU   MUS 1978
## 11071                                            Mauritius    MU   MUS 1977
## 11072                                            Mauritius    MU   MUS 1976
## 11073                                            Mauritius    MU   MUS 1975
## 11074                                            Mauritius    MU   MUS 1974
## 11075                                            Mauritius    MU   MUS 1973
## 11076                                            Mauritius    MU   MUS 1972
## 11077                                            Mauritius    MU   MUS 1971
## 11078                                            Mauritius    MU   MUS 1970
## 11079                                            Mauritius    MU   MUS 1969
## 11080                                            Mauritius    MU   MUS 1968
## 11081                                            Mauritius    MU   MUS 1967
## 11082                                            Mauritius    MU   MUS 1966
## 11083                                            Mauritius    MU   MUS 1965
## 11084                                            Mauritius    MU   MUS 1964
## 11085                                            Mauritius    MU   MUS 1963
## 11086                                            Mauritius    MU   MUS 1962
## 11087                                            Mauritius    MU   MUS 1961
## 11088                                            Mauritius    MU   MUS 1960
## 11089                                               Mexico    MX   MEX 2022
## 11090                                               Mexico    MX   MEX 2021
## 11091                                               Mexico    MX   MEX 2020
## 11092                                               Mexico    MX   MEX 2019
## 11093                                               Mexico    MX   MEX 2018
## 11094                                               Mexico    MX   MEX 2017
## 11095                                               Mexico    MX   MEX 2016
## 11096                                               Mexico    MX   MEX 2015
## 11097                                               Mexico    MX   MEX 2014
## 11098                                               Mexico    MX   MEX 2013
## 11099                                               Mexico    MX   MEX 2012
## 11100                                               Mexico    MX   MEX 2011
## 11101                                               Mexico    MX   MEX 2010
## 11102                                               Mexico    MX   MEX 2009
## 11103                                               Mexico    MX   MEX 2008
## 11104                                               Mexico    MX   MEX 2007
## 11105                                               Mexico    MX   MEX 2006
## 11106                                               Mexico    MX   MEX 2005
## 11107                                               Mexico    MX   MEX 2004
## 11108                                               Mexico    MX   MEX 2003
## 11109                                               Mexico    MX   MEX 2002
## 11110                                               Mexico    MX   MEX 2001
## 11111                                               Mexico    MX   MEX 2000
## 11112                                               Mexico    MX   MEX 1999
## 11113                                               Mexico    MX   MEX 1998
## 11114                                               Mexico    MX   MEX 1997
## 11115                                               Mexico    MX   MEX 1996
## 11116                                               Mexico    MX   MEX 1995
## 11117                                               Mexico    MX   MEX 1994
## 11118                                               Mexico    MX   MEX 1993
## 11119                                               Mexico    MX   MEX 1992
## 11120                                               Mexico    MX   MEX 1991
## 11121                                               Mexico    MX   MEX 1990
## 11122                                               Mexico    MX   MEX 1989
## 11123                                               Mexico    MX   MEX 1988
## 11124                                               Mexico    MX   MEX 1987
## 11125                                               Mexico    MX   MEX 1986
## 11126                                               Mexico    MX   MEX 1985
## 11127                                               Mexico    MX   MEX 1984
## 11128                                               Mexico    MX   MEX 1983
## 11129                                               Mexico    MX   MEX 1982
## 11130                                               Mexico    MX   MEX 1981
## 11131                                               Mexico    MX   MEX 1980
## 11132                                               Mexico    MX   MEX 1979
## 11133                                               Mexico    MX   MEX 1978
## 11134                                               Mexico    MX   MEX 1977
## 11135                                               Mexico    MX   MEX 1976
## 11136                                               Mexico    MX   MEX 1975
## 11137                                               Mexico    MX   MEX 1974
## 11138                                               Mexico    MX   MEX 1973
## 11139                                               Mexico    MX   MEX 1972
## 11140                                               Mexico    MX   MEX 1971
## 11141                                               Mexico    MX   MEX 1970
## 11142                                               Mexico    MX   MEX 1969
## 11143                                               Mexico    MX   MEX 1968
## 11144                                               Mexico    MX   MEX 1967
## 11145                                               Mexico    MX   MEX 1966
## 11146                                               Mexico    MX   MEX 1965
## 11147                                               Mexico    MX   MEX 1964
## 11148                                               Mexico    MX   MEX 1963
## 11149                                               Mexico    MX   MEX 1962
## 11150                                               Mexico    MX   MEX 1961
## 11151                                               Mexico    MX   MEX 1960
## 11152                                Micronesia, Fed. Sts.    FM   FSM 2022
## 11153                                Micronesia, Fed. Sts.    FM   FSM 2021
## 11154                                Micronesia, Fed. Sts.    FM   FSM 2020
## 11155                                Micronesia, Fed. Sts.    FM   FSM 2019
## 11156                                Micronesia, Fed. Sts.    FM   FSM 2018
## 11157                                Micronesia, Fed. Sts.    FM   FSM 2017
## 11158                                Micronesia, Fed. Sts.    FM   FSM 2016
## 11159                                Micronesia, Fed. Sts.    FM   FSM 2015
## 11160                                Micronesia, Fed. Sts.    FM   FSM 2014
## 11161                                Micronesia, Fed. Sts.    FM   FSM 2013
## 11162                                Micronesia, Fed. Sts.    FM   FSM 2012
## 11163                                Micronesia, Fed. Sts.    FM   FSM 2011
## 11164                                Micronesia, Fed. Sts.    FM   FSM 2010
## 11165                                Micronesia, Fed. Sts.    FM   FSM 2009
## 11166                                Micronesia, Fed. Sts.    FM   FSM 2008
## 11167                                Micronesia, Fed. Sts.    FM   FSM 2007
## 11168                                Micronesia, Fed. Sts.    FM   FSM 2006
## 11169                                Micronesia, Fed. Sts.    FM   FSM 2005
## 11170                                Micronesia, Fed. Sts.    FM   FSM 2004
## 11171                                Micronesia, Fed. Sts.    FM   FSM 2003
## 11172                                Micronesia, Fed. Sts.    FM   FSM 2002
## 11173                                Micronesia, Fed. Sts.    FM   FSM 2001
## 11174                                Micronesia, Fed. Sts.    FM   FSM 2000
## 11175                                Micronesia, Fed. Sts.    FM   FSM 1999
## 11176                                Micronesia, Fed. Sts.    FM   FSM 1998
## 11177                                Micronesia, Fed. Sts.    FM   FSM 1997
## 11178                                Micronesia, Fed. Sts.    FM   FSM 1996
## 11179                                Micronesia, Fed. Sts.    FM   FSM 1995
## 11180                                Micronesia, Fed. Sts.    FM   FSM 1994
## 11181                                Micronesia, Fed. Sts.    FM   FSM 1993
## 11182                                Micronesia, Fed. Sts.    FM   FSM 1992
## 11183                                Micronesia, Fed. Sts.    FM   FSM 1991
## 11184                                Micronesia, Fed. Sts.    FM   FSM 1990
## 11185                                Micronesia, Fed. Sts.    FM   FSM 1989
## 11186                                Micronesia, Fed. Sts.    FM   FSM 1988
## 11187                                Micronesia, Fed. Sts.    FM   FSM 1987
## 11188                                Micronesia, Fed. Sts.    FM   FSM 1986
## 11189                                Micronesia, Fed. Sts.    FM   FSM 1985
## 11190                                Micronesia, Fed. Sts.    FM   FSM 1984
## 11191                                Micronesia, Fed. Sts.    FM   FSM 1983
## 11192                                Micronesia, Fed. Sts.    FM   FSM 1982
## 11193                                Micronesia, Fed. Sts.    FM   FSM 1981
## 11194                                Micronesia, Fed. Sts.    FM   FSM 1980
## 11195                                Micronesia, Fed. Sts.    FM   FSM 1979
## 11196                                Micronesia, Fed. Sts.    FM   FSM 1978
## 11197                                Micronesia, Fed. Sts.    FM   FSM 1977
## 11198                                Micronesia, Fed. Sts.    FM   FSM 1976
## 11199                                Micronesia, Fed. Sts.    FM   FSM 1975
## 11200                                Micronesia, Fed. Sts.    FM   FSM 1974
## 11201                                Micronesia, Fed. Sts.    FM   FSM 1973
## 11202                                Micronesia, Fed. Sts.    FM   FSM 1972
## 11203                                Micronesia, Fed. Sts.    FM   FSM 1971
## 11204                                Micronesia, Fed. Sts.    FM   FSM 1970
## 11205                                Micronesia, Fed. Sts.    FM   FSM 1969
## 11206                                Micronesia, Fed. Sts.    FM   FSM 1968
## 11207                                Micronesia, Fed. Sts.    FM   FSM 1967
## 11208                                Micronesia, Fed. Sts.    FM   FSM 1966
## 11209                                Micronesia, Fed. Sts.    FM   FSM 1965
## 11210                                Micronesia, Fed. Sts.    FM   FSM 1964
## 11211                                Micronesia, Fed. Sts.    FM   FSM 1963
## 11212                                Micronesia, Fed. Sts.    FM   FSM 1962
## 11213                                Micronesia, Fed. Sts.    FM   FSM 1961
## 11214                                Micronesia, Fed. Sts.    FM   FSM 1960
## 11215                                              Moldova    MD   MDA 2022
## 11216                                              Moldova    MD   MDA 2021
## 11217                                              Moldova    MD   MDA 2020
## 11218                                              Moldova    MD   MDA 2019
## 11219                                              Moldova    MD   MDA 2018
## 11220                                              Moldova    MD   MDA 2017
## 11221                                              Moldova    MD   MDA 2016
## 11222                                              Moldova    MD   MDA 2015
## 11223                                              Moldova    MD   MDA 2014
## 11224                                              Moldova    MD   MDA 2013
## 11225                                              Moldova    MD   MDA 2012
## 11226                                              Moldova    MD   MDA 2011
## 11227                                              Moldova    MD   MDA 2010
## 11228                                              Moldova    MD   MDA 2009
## 11229                                              Moldova    MD   MDA 2008
## 11230                                              Moldova    MD   MDA 2007
## 11231                                              Moldova    MD   MDA 2006
## 11232                                              Moldova    MD   MDA 2005
## 11233                                              Moldova    MD   MDA 2004
## 11234                                              Moldova    MD   MDA 2003
## 11235                                              Moldova    MD   MDA 2002
## 11236                                              Moldova    MD   MDA 2001
## 11237                                              Moldova    MD   MDA 2000
## 11238                                              Moldova    MD   MDA 1999
## 11239                                              Moldova    MD   MDA 1998
## 11240                                              Moldova    MD   MDA 1997
## 11241                                              Moldova    MD   MDA 1996
## 11242                                              Moldova    MD   MDA 1995
## 11243                                              Moldova    MD   MDA 1994
## 11244                                              Moldova    MD   MDA 1993
## 11245                                              Moldova    MD   MDA 1992
## 11246                                              Moldova    MD   MDA 1991
## 11247                                              Moldova    MD   MDA 1990
## 11248                                              Moldova    MD   MDA 1989
## 11249                                              Moldova    MD   MDA 1988
## 11250                                              Moldova    MD   MDA 1987
## 11251                                              Moldova    MD   MDA 1986
## 11252                                              Moldova    MD   MDA 1985
## 11253                                              Moldova    MD   MDA 1984
## 11254                                              Moldova    MD   MDA 1983
## 11255                                              Moldova    MD   MDA 1982
## 11256                                              Moldova    MD   MDA 1981
## 11257                                              Moldova    MD   MDA 1980
## 11258                                              Moldova    MD   MDA 1979
## 11259                                              Moldova    MD   MDA 1978
## 11260                                              Moldova    MD   MDA 1977
## 11261                                              Moldova    MD   MDA 1976
## 11262                                              Moldova    MD   MDA 1975
## 11263                                              Moldova    MD   MDA 1974
## 11264                                              Moldova    MD   MDA 1973
## 11265                                              Moldova    MD   MDA 1972
## 11266                                              Moldova    MD   MDA 1971
## 11267                                              Moldova    MD   MDA 1970
## 11268                                              Moldova    MD   MDA 1969
## 11269                                              Moldova    MD   MDA 1968
## 11270                                              Moldova    MD   MDA 1967
## 11271                                              Moldova    MD   MDA 1966
## 11272                                              Moldova    MD   MDA 1965
## 11273                                              Moldova    MD   MDA 1964
## 11274                                              Moldova    MD   MDA 1963
## 11275                                              Moldova    MD   MDA 1962
## 11276                                              Moldova    MD   MDA 1961
## 11277                                              Moldova    MD   MDA 1960
## 11278                                               Monaco    MC   MCO 2022
## 11279                                               Monaco    MC   MCO 2021
## 11280                                               Monaco    MC   MCO 2020
## 11281                                               Monaco    MC   MCO 2019
## 11282                                               Monaco    MC   MCO 2018
## 11283                                               Monaco    MC   MCO 2017
## 11284                                               Monaco    MC   MCO 2016
## 11285                                               Monaco    MC   MCO 2015
## 11286                                               Monaco    MC   MCO 2014
## 11287                                               Monaco    MC   MCO 2013
## 11288                                               Monaco    MC   MCO 2012
## 11289                                               Monaco    MC   MCO 2011
## 11290                                               Monaco    MC   MCO 2010
## 11291                                               Monaco    MC   MCO 2009
## 11292                                               Monaco    MC   MCO 2008
## 11293                                               Monaco    MC   MCO 2007
## 11294                                               Monaco    MC   MCO 2006
## 11295                                               Monaco    MC   MCO 2005
## 11296                                               Monaco    MC   MCO 2004
## 11297                                               Monaco    MC   MCO 2003
## 11298                                               Monaco    MC   MCO 2002
## 11299                                               Monaco    MC   MCO 2001
## 11300                                               Monaco    MC   MCO 2000
## 11301                                               Monaco    MC   MCO 1999
## 11302                                               Monaco    MC   MCO 1998
## 11303                                               Monaco    MC   MCO 1997
## 11304                                               Monaco    MC   MCO 1996
## 11305                                               Monaco    MC   MCO 1995
## 11306                                               Monaco    MC   MCO 1994
## 11307                                               Monaco    MC   MCO 1993
## 11308                                               Monaco    MC   MCO 1992
## 11309                                               Monaco    MC   MCO 1991
## 11310                                               Monaco    MC   MCO 1990
## 11311                                               Monaco    MC   MCO 1989
## 11312                                               Monaco    MC   MCO 1988
## 11313                                               Monaco    MC   MCO 1987
## 11314                                               Monaco    MC   MCO 1986
## 11315                                               Monaco    MC   MCO 1985
## 11316                                               Monaco    MC   MCO 1984
## 11317                                               Monaco    MC   MCO 1983
## 11318                                               Monaco    MC   MCO 1982
## 11319                                               Monaco    MC   MCO 1981
## 11320                                               Monaco    MC   MCO 1980
## 11321                                               Monaco    MC   MCO 1979
## 11322                                               Monaco    MC   MCO 1978
## 11323                                               Monaco    MC   MCO 1977
## 11324                                               Monaco    MC   MCO 1976
## 11325                                               Monaco    MC   MCO 1975
## 11326                                               Monaco    MC   MCO 1974
## 11327                                               Monaco    MC   MCO 1973
## 11328                                               Monaco    MC   MCO 1972
## 11329                                               Monaco    MC   MCO 1971
## 11330                                               Monaco    MC   MCO 1970
## 11331                                               Monaco    MC   MCO 1969
## 11332                                               Monaco    MC   MCO 1968
## 11333                                               Monaco    MC   MCO 1967
## 11334                                               Monaco    MC   MCO 1966
## 11335                                               Monaco    MC   MCO 1965
## 11336                                               Monaco    MC   MCO 1964
## 11337                                               Monaco    MC   MCO 1963
## 11338                                               Monaco    MC   MCO 1962
## 11339                                               Monaco    MC   MCO 1961
## 11340                                               Monaco    MC   MCO 1960
## 11341                                             Mongolia    MN   MNG 2022
## 11342                                             Mongolia    MN   MNG 2021
## 11343                                             Mongolia    MN   MNG 2020
## 11344                                             Mongolia    MN   MNG 2019
## 11345                                             Mongolia    MN   MNG 2018
## 11346                                             Mongolia    MN   MNG 2017
## 11347                                             Mongolia    MN   MNG 2016
## 11348                                             Mongolia    MN   MNG 2015
## 11349                                             Mongolia    MN   MNG 2014
## 11350                                             Mongolia    MN   MNG 2013
## 11351                                             Mongolia    MN   MNG 2012
## 11352                                             Mongolia    MN   MNG 2011
## 11353                                             Mongolia    MN   MNG 2010
## 11354                                             Mongolia    MN   MNG 2009
## 11355                                             Mongolia    MN   MNG 2008
## 11356                                             Mongolia    MN   MNG 2007
## 11357                                             Mongolia    MN   MNG 2006
## 11358                                             Mongolia    MN   MNG 2005
## 11359                                             Mongolia    MN   MNG 2004
## 11360                                             Mongolia    MN   MNG 2003
## 11361                                             Mongolia    MN   MNG 2002
## 11362                                             Mongolia    MN   MNG 2001
## 11363                                             Mongolia    MN   MNG 2000
## 11364                                             Mongolia    MN   MNG 1999
## 11365                                             Mongolia    MN   MNG 1998
## 11366                                             Mongolia    MN   MNG 1997
## 11367                                             Mongolia    MN   MNG 1996
## 11368                                             Mongolia    MN   MNG 1995
## 11369                                             Mongolia    MN   MNG 1994
## 11370                                             Mongolia    MN   MNG 1993
## 11371                                             Mongolia    MN   MNG 1992
## 11372                                             Mongolia    MN   MNG 1991
## 11373                                             Mongolia    MN   MNG 1990
## 11374                                             Mongolia    MN   MNG 1989
## 11375                                             Mongolia    MN   MNG 1988
## 11376                                             Mongolia    MN   MNG 1987
## 11377                                             Mongolia    MN   MNG 1986
## 11378                                             Mongolia    MN   MNG 1985
## 11379                                             Mongolia    MN   MNG 1984
## 11380                                             Mongolia    MN   MNG 1983
## 11381                                             Mongolia    MN   MNG 1982
## 11382                                             Mongolia    MN   MNG 1981
## 11383                                             Mongolia    MN   MNG 1980
## 11384                                             Mongolia    MN   MNG 1979
## 11385                                             Mongolia    MN   MNG 1978
## 11386                                             Mongolia    MN   MNG 1977
## 11387                                             Mongolia    MN   MNG 1976
## 11388                                             Mongolia    MN   MNG 1975
## 11389                                             Mongolia    MN   MNG 1974
## 11390                                             Mongolia    MN   MNG 1973
## 11391                                             Mongolia    MN   MNG 1972
## 11392                                             Mongolia    MN   MNG 1971
## 11393                                             Mongolia    MN   MNG 1970
## 11394                                             Mongolia    MN   MNG 1969
## 11395                                             Mongolia    MN   MNG 1968
## 11396                                             Mongolia    MN   MNG 1967
## 11397                                             Mongolia    MN   MNG 1966
## 11398                                             Mongolia    MN   MNG 1965
## 11399                                             Mongolia    MN   MNG 1964
## 11400                                             Mongolia    MN   MNG 1963
## 11401                                             Mongolia    MN   MNG 1962
## 11402                                             Mongolia    MN   MNG 1961
## 11403                                             Mongolia    MN   MNG 1960
## 11404                                           Montenegro    ME   MNE 2022
## 11405                                           Montenegro    ME   MNE 2021
## 11406                                           Montenegro    ME   MNE 2020
## 11407                                           Montenegro    ME   MNE 2019
## 11408                                           Montenegro    ME   MNE 2018
## 11409                                           Montenegro    ME   MNE 2017
## 11410                                           Montenegro    ME   MNE 2016
## 11411                                           Montenegro    ME   MNE 2015
## 11412                                           Montenegro    ME   MNE 2014
## 11413                                           Montenegro    ME   MNE 2013
## 11414                                           Montenegro    ME   MNE 2012
## 11415                                           Montenegro    ME   MNE 2011
## 11416                                           Montenegro    ME   MNE 2010
## 11417                                           Montenegro    ME   MNE 2009
## 11418                                           Montenegro    ME   MNE 2008
## 11419                                           Montenegro    ME   MNE 2007
## 11420                                           Montenegro    ME   MNE 2006
## 11421                                           Montenegro    ME   MNE 2005
## 11422                                           Montenegro    ME   MNE 2004
## 11423                                           Montenegro    ME   MNE 2003
## 11424                                           Montenegro    ME   MNE 2002
## 11425                                           Montenegro    ME   MNE 2001
## 11426                                           Montenegro    ME   MNE 2000
## 11427                                           Montenegro    ME   MNE 1999
## 11428                                           Montenegro    ME   MNE 1998
## 11429                                           Montenegro    ME   MNE 1997
## 11430                                           Montenegro    ME   MNE 1996
## 11431                                           Montenegro    ME   MNE 1995
## 11432                                           Montenegro    ME   MNE 1994
## 11433                                           Montenegro    ME   MNE 1993
## 11434                                           Montenegro    ME   MNE 1992
## 11435                                           Montenegro    ME   MNE 1991
## 11436                                           Montenegro    ME   MNE 1990
## 11437                                           Montenegro    ME   MNE 1989
## 11438                                           Montenegro    ME   MNE 1988
## 11439                                           Montenegro    ME   MNE 1987
## 11440                                           Montenegro    ME   MNE 1986
## 11441                                           Montenegro    ME   MNE 1985
## 11442                                           Montenegro    ME   MNE 1984
## 11443                                           Montenegro    ME   MNE 1983
## 11444                                           Montenegro    ME   MNE 1982
## 11445                                           Montenegro    ME   MNE 1981
## 11446                                           Montenegro    ME   MNE 1980
## 11447                                           Montenegro    ME   MNE 1979
## 11448                                           Montenegro    ME   MNE 1978
## 11449                                           Montenegro    ME   MNE 1977
## 11450                                           Montenegro    ME   MNE 1976
## 11451                                           Montenegro    ME   MNE 1975
## 11452                                           Montenegro    ME   MNE 1974
## 11453                                           Montenegro    ME   MNE 1973
## 11454                                           Montenegro    ME   MNE 1972
## 11455                                           Montenegro    ME   MNE 1971
## 11456                                           Montenegro    ME   MNE 1970
## 11457                                           Montenegro    ME   MNE 1969
## 11458                                           Montenegro    ME   MNE 1968
## 11459                                           Montenegro    ME   MNE 1967
## 11460                                           Montenegro    ME   MNE 1966
## 11461                                           Montenegro    ME   MNE 1965
## 11462                                           Montenegro    ME   MNE 1964
## 11463                                           Montenegro    ME   MNE 1963
## 11464                                           Montenegro    ME   MNE 1962
## 11465                                           Montenegro    ME   MNE 1961
## 11466                                           Montenegro    ME   MNE 1960
## 11467                                              Morocco    MA   MAR 2022
## 11468                                              Morocco    MA   MAR 2021
## 11469                                              Morocco    MA   MAR 2020
## 11470                                              Morocco    MA   MAR 2019
## 11471                                              Morocco    MA   MAR 2018
## 11472                                              Morocco    MA   MAR 2017
## 11473                                              Morocco    MA   MAR 2016
## 11474                                              Morocco    MA   MAR 2015
## 11475                                              Morocco    MA   MAR 2014
## 11476                                              Morocco    MA   MAR 2013
## 11477                                              Morocco    MA   MAR 2012
## 11478                                              Morocco    MA   MAR 2011
## 11479                                              Morocco    MA   MAR 2010
## 11480                                              Morocco    MA   MAR 2009
## 11481                                              Morocco    MA   MAR 2008
## 11482                                              Morocco    MA   MAR 2007
## 11483                                              Morocco    MA   MAR 2006
## 11484                                              Morocco    MA   MAR 2005
## 11485                                              Morocco    MA   MAR 2004
## 11486                                              Morocco    MA   MAR 2003
## 11487                                              Morocco    MA   MAR 2002
## 11488                                              Morocco    MA   MAR 2001
## 11489                                              Morocco    MA   MAR 2000
## 11490                                              Morocco    MA   MAR 1999
## 11491                                              Morocco    MA   MAR 1998
## 11492                                              Morocco    MA   MAR 1997
## 11493                                              Morocco    MA   MAR 1996
## 11494                                              Morocco    MA   MAR 1995
## 11495                                              Morocco    MA   MAR 1994
## 11496                                              Morocco    MA   MAR 1993
## 11497                                              Morocco    MA   MAR 1992
## 11498                                              Morocco    MA   MAR 1991
## 11499                                              Morocco    MA   MAR 1990
## 11500                                              Morocco    MA   MAR 1989
## 11501                                              Morocco    MA   MAR 1988
## 11502                                              Morocco    MA   MAR 1987
## 11503                                              Morocco    MA   MAR 1986
## 11504                                              Morocco    MA   MAR 1985
## 11505                                              Morocco    MA   MAR 1984
## 11506                                              Morocco    MA   MAR 1983
## 11507                                              Morocco    MA   MAR 1982
## 11508                                              Morocco    MA   MAR 1981
## 11509                                              Morocco    MA   MAR 1980
## 11510                                              Morocco    MA   MAR 1979
## 11511                                              Morocco    MA   MAR 1978
## 11512                                              Morocco    MA   MAR 1977
## 11513                                              Morocco    MA   MAR 1976
## 11514                                              Morocco    MA   MAR 1975
## 11515                                              Morocco    MA   MAR 1974
## 11516                                              Morocco    MA   MAR 1973
## 11517                                              Morocco    MA   MAR 1972
## 11518                                              Morocco    MA   MAR 1971
## 11519                                              Morocco    MA   MAR 1970
## 11520                                              Morocco    MA   MAR 1969
## 11521                                              Morocco    MA   MAR 1968
## 11522                                              Morocco    MA   MAR 1967
## 11523                                              Morocco    MA   MAR 1966
## 11524                                              Morocco    MA   MAR 1965
## 11525                                              Morocco    MA   MAR 1964
## 11526                                              Morocco    MA   MAR 1963
## 11527                                              Morocco    MA   MAR 1962
## 11528                                              Morocco    MA   MAR 1961
## 11529                                              Morocco    MA   MAR 1960
## 11530                                           Mozambique    MZ   MOZ 2022
## 11531                                           Mozambique    MZ   MOZ 2021
## 11532                                           Mozambique    MZ   MOZ 2020
## 11533                                           Mozambique    MZ   MOZ 2019
## 11534                                           Mozambique    MZ   MOZ 2018
## 11535                                           Mozambique    MZ   MOZ 2017
## 11536                                           Mozambique    MZ   MOZ 2016
## 11537                                           Mozambique    MZ   MOZ 2015
## 11538                                           Mozambique    MZ   MOZ 2014
## 11539                                           Mozambique    MZ   MOZ 2013
## 11540                                           Mozambique    MZ   MOZ 2012
## 11541                                           Mozambique    MZ   MOZ 2011
## 11542                                           Mozambique    MZ   MOZ 2010
## 11543                                           Mozambique    MZ   MOZ 2009
## 11544                                           Mozambique    MZ   MOZ 2008
## 11545                                           Mozambique    MZ   MOZ 2007
## 11546                                           Mozambique    MZ   MOZ 2006
## 11547                                           Mozambique    MZ   MOZ 2005
## 11548                                           Mozambique    MZ   MOZ 2004
## 11549                                           Mozambique    MZ   MOZ 2003
## 11550                                           Mozambique    MZ   MOZ 2002
## 11551                                           Mozambique    MZ   MOZ 2001
## 11552                                           Mozambique    MZ   MOZ 2000
## 11553                                           Mozambique    MZ   MOZ 1999
## 11554                                           Mozambique    MZ   MOZ 1998
## 11555                                           Mozambique    MZ   MOZ 1997
## 11556                                           Mozambique    MZ   MOZ 1996
## 11557                                           Mozambique    MZ   MOZ 1995
## 11558                                           Mozambique    MZ   MOZ 1994
## 11559                                           Mozambique    MZ   MOZ 1993
## 11560                                           Mozambique    MZ   MOZ 1992
## 11561                                           Mozambique    MZ   MOZ 1991
## 11562                                           Mozambique    MZ   MOZ 1990
## 11563                                           Mozambique    MZ   MOZ 1989
## 11564                                           Mozambique    MZ   MOZ 1988
## 11565                                           Mozambique    MZ   MOZ 1987
## 11566                                           Mozambique    MZ   MOZ 1986
## 11567                                           Mozambique    MZ   MOZ 1985
## 11568                                           Mozambique    MZ   MOZ 1984
## 11569                                           Mozambique    MZ   MOZ 1983
## 11570                                           Mozambique    MZ   MOZ 1982
## 11571                                           Mozambique    MZ   MOZ 1981
## 11572                                           Mozambique    MZ   MOZ 1980
## 11573                                           Mozambique    MZ   MOZ 1979
## 11574                                           Mozambique    MZ   MOZ 1978
## 11575                                           Mozambique    MZ   MOZ 1977
## 11576                                           Mozambique    MZ   MOZ 1976
## 11577                                           Mozambique    MZ   MOZ 1975
## 11578                                           Mozambique    MZ   MOZ 1974
## 11579                                           Mozambique    MZ   MOZ 1973
## 11580                                           Mozambique    MZ   MOZ 1972
## 11581                                           Mozambique    MZ   MOZ 1971
## 11582                                           Mozambique    MZ   MOZ 1970
## 11583                                           Mozambique    MZ   MOZ 1969
## 11584                                           Mozambique    MZ   MOZ 1968
## 11585                                           Mozambique    MZ   MOZ 1967
## 11586                                           Mozambique    MZ   MOZ 1966
## 11587                                           Mozambique    MZ   MOZ 1965
## 11588                                           Mozambique    MZ   MOZ 1964
## 11589                                           Mozambique    MZ   MOZ 1963
## 11590                                           Mozambique    MZ   MOZ 1962
## 11591                                           Mozambique    MZ   MOZ 1961
## 11592                                           Mozambique    MZ   MOZ 1960
## 11593                                              Myanmar    MM   MMR 2022
## 11594                                              Myanmar    MM   MMR 2021
## 11595                                              Myanmar    MM   MMR 2020
## 11596                                              Myanmar    MM   MMR 2019
## 11597                                              Myanmar    MM   MMR 2018
## 11598                                              Myanmar    MM   MMR 2017
## 11599                                              Myanmar    MM   MMR 2016
## 11600                                              Myanmar    MM   MMR 2015
## 11601                                              Myanmar    MM   MMR 2014
## 11602                                              Myanmar    MM   MMR 2013
## 11603                                              Myanmar    MM   MMR 2012
## 11604                                              Myanmar    MM   MMR 2011
## 11605                                              Myanmar    MM   MMR 2010
## 11606                                              Myanmar    MM   MMR 2009
## 11607                                              Myanmar    MM   MMR 2008
## 11608                                              Myanmar    MM   MMR 2007
## 11609                                              Myanmar    MM   MMR 2006
## 11610                                              Myanmar    MM   MMR 2005
## 11611                                              Myanmar    MM   MMR 2004
## 11612                                              Myanmar    MM   MMR 2003
## 11613                                              Myanmar    MM   MMR 2002
## 11614                                              Myanmar    MM   MMR 2001
## 11615                                              Myanmar    MM   MMR 2000
## 11616                                              Myanmar    MM   MMR 1999
## 11617                                              Myanmar    MM   MMR 1998
## 11618                                              Myanmar    MM   MMR 1997
## 11619                                              Myanmar    MM   MMR 1996
## 11620                                              Myanmar    MM   MMR 1995
## 11621                                              Myanmar    MM   MMR 1994
## 11622                                              Myanmar    MM   MMR 1993
## 11623                                              Myanmar    MM   MMR 1992
## 11624                                              Myanmar    MM   MMR 1991
## 11625                                              Myanmar    MM   MMR 1990
## 11626                                              Myanmar    MM   MMR 1989
## 11627                                              Myanmar    MM   MMR 1988
## 11628                                              Myanmar    MM   MMR 1987
## 11629                                              Myanmar    MM   MMR 1986
## 11630                                              Myanmar    MM   MMR 1985
## 11631                                              Myanmar    MM   MMR 1984
## 11632                                              Myanmar    MM   MMR 1983
## 11633                                              Myanmar    MM   MMR 1982
## 11634                                              Myanmar    MM   MMR 1981
## 11635                                              Myanmar    MM   MMR 1980
## 11636                                              Myanmar    MM   MMR 1979
## 11637                                              Myanmar    MM   MMR 1978
## 11638                                              Myanmar    MM   MMR 1977
## 11639                                              Myanmar    MM   MMR 1976
## 11640                                              Myanmar    MM   MMR 1975
## 11641                                              Myanmar    MM   MMR 1974
## 11642                                              Myanmar    MM   MMR 1973
## 11643                                              Myanmar    MM   MMR 1972
## 11644                                              Myanmar    MM   MMR 1971
## 11645                                              Myanmar    MM   MMR 1970
## 11646                                              Myanmar    MM   MMR 1969
## 11647                                              Myanmar    MM   MMR 1968
## 11648                                              Myanmar    MM   MMR 1967
## 11649                                              Myanmar    MM   MMR 1966
## 11650                                              Myanmar    MM   MMR 1965
## 11651                                              Myanmar    MM   MMR 1964
## 11652                                              Myanmar    MM   MMR 1963
## 11653                                              Myanmar    MM   MMR 1962
## 11654                                              Myanmar    MM   MMR 1961
## 11655                                              Myanmar    MM   MMR 1960
## 11656                                              Namibia    NA   NAM 2022
## 11657                                              Namibia    NA   NAM 2021
## 11658                                              Namibia    NA   NAM 2020
## 11659                                              Namibia    NA   NAM 2019
## 11660                                              Namibia    NA   NAM 2018
## 11661                                              Namibia    NA   NAM 2017
## 11662                                              Namibia    NA   NAM 2016
## 11663                                              Namibia    NA   NAM 2015
## 11664                                              Namibia    NA   NAM 2014
## 11665                                              Namibia    NA   NAM 2013
## 11666                                              Namibia    NA   NAM 2012
## 11667                                              Namibia    NA   NAM 2011
## 11668                                              Namibia    NA   NAM 2010
## 11669                                              Namibia    NA   NAM 2009
## 11670                                              Namibia    NA   NAM 2008
## 11671                                              Namibia    NA   NAM 2007
## 11672                                              Namibia    NA   NAM 2006
## 11673                                              Namibia    NA   NAM 2005
## 11674                                              Namibia    NA   NAM 2004
## 11675                                              Namibia    NA   NAM 2003
## 11676                                              Namibia    NA   NAM 2002
## 11677                                              Namibia    NA   NAM 2001
## 11678                                              Namibia    NA   NAM 2000
## 11679                                              Namibia    NA   NAM 1999
## 11680                                              Namibia    NA   NAM 1998
## 11681                                              Namibia    NA   NAM 1997
## 11682                                              Namibia    NA   NAM 1996
## 11683                                              Namibia    NA   NAM 1995
## 11684                                              Namibia    NA   NAM 1994
## 11685                                              Namibia    NA   NAM 1993
## 11686                                              Namibia    NA   NAM 1992
## 11687                                              Namibia    NA   NAM 1991
## 11688                                              Namibia    NA   NAM 1990
## 11689                                              Namibia    NA   NAM 1989
## 11690                                              Namibia    NA   NAM 1988
## 11691                                              Namibia    NA   NAM 1987
## 11692                                              Namibia    NA   NAM 1986
## 11693                                              Namibia    NA   NAM 1985
## 11694                                              Namibia    NA   NAM 1984
## 11695                                              Namibia    NA   NAM 1983
## 11696                                              Namibia    NA   NAM 1982
## 11697                                              Namibia    NA   NAM 1981
## 11698                                              Namibia    NA   NAM 1980
## 11699                                              Namibia    NA   NAM 1979
## 11700                                              Namibia    NA   NAM 1978
## 11701                                              Namibia    NA   NAM 1977
## 11702                                              Namibia    NA   NAM 1976
## 11703                                              Namibia    NA   NAM 1975
## 11704                                              Namibia    NA   NAM 1974
## 11705                                              Namibia    NA   NAM 1973
## 11706                                              Namibia    NA   NAM 1972
## 11707                                              Namibia    NA   NAM 1971
## 11708                                              Namibia    NA   NAM 1970
## 11709                                              Namibia    NA   NAM 1969
## 11710                                              Namibia    NA   NAM 1968
## 11711                                              Namibia    NA   NAM 1967
## 11712                                              Namibia    NA   NAM 1966
## 11713                                              Namibia    NA   NAM 1965
## 11714                                              Namibia    NA   NAM 1964
## 11715                                              Namibia    NA   NAM 1963
## 11716                                              Namibia    NA   NAM 1962
## 11717                                              Namibia    NA   NAM 1961
## 11718                                              Namibia    NA   NAM 1960
## 11719                                                Nauru    NR   NRU 2022
## 11720                                                Nauru    NR   NRU 2021
## 11721                                                Nauru    NR   NRU 2020
## 11722                                                Nauru    NR   NRU 2019
## 11723                                                Nauru    NR   NRU 2018
## 11724                                                Nauru    NR   NRU 2017
## 11725                                                Nauru    NR   NRU 2016
## 11726                                                Nauru    NR   NRU 2015
## 11727                                                Nauru    NR   NRU 2014
## 11728                                                Nauru    NR   NRU 2013
## 11729                                                Nauru    NR   NRU 2012
## 11730                                                Nauru    NR   NRU 2011
## 11731                                                Nauru    NR   NRU 2010
## 11732                                                Nauru    NR   NRU 2009
## 11733                                                Nauru    NR   NRU 2008
## 11734                                                Nauru    NR   NRU 2007
## 11735                                                Nauru    NR   NRU 2006
## 11736                                                Nauru    NR   NRU 2005
## 11737                                                Nauru    NR   NRU 2004
## 11738                                                Nauru    NR   NRU 2003
## 11739                                                Nauru    NR   NRU 2002
## 11740                                                Nauru    NR   NRU 2001
## 11741                                                Nauru    NR   NRU 2000
## 11742                                                Nauru    NR   NRU 1999
## 11743                                                Nauru    NR   NRU 1998
## 11744                                                Nauru    NR   NRU 1997
## 11745                                                Nauru    NR   NRU 1996
## 11746                                                Nauru    NR   NRU 1995
## 11747                                                Nauru    NR   NRU 1994
## 11748                                                Nauru    NR   NRU 1993
## 11749                                                Nauru    NR   NRU 1992
## 11750                                                Nauru    NR   NRU 1991
## 11751                                                Nauru    NR   NRU 1990
## 11752                                                Nauru    NR   NRU 1989
## 11753                                                Nauru    NR   NRU 1988
## 11754                                                Nauru    NR   NRU 1987
## 11755                                                Nauru    NR   NRU 1986
## 11756                                                Nauru    NR   NRU 1985
## 11757                                                Nauru    NR   NRU 1984
## 11758                                                Nauru    NR   NRU 1983
## 11759                                                Nauru    NR   NRU 1982
## 11760                                                Nauru    NR   NRU 1981
## 11761                                                Nauru    NR   NRU 1980
## 11762                                                Nauru    NR   NRU 1979
## 11763                                                Nauru    NR   NRU 1978
## 11764                                                Nauru    NR   NRU 1977
## 11765                                                Nauru    NR   NRU 1976
## 11766                                                Nauru    NR   NRU 1975
## 11767                                                Nauru    NR   NRU 1974
## 11768                                                Nauru    NR   NRU 1973
## 11769                                                Nauru    NR   NRU 1972
## 11770                                                Nauru    NR   NRU 1971
## 11771                                                Nauru    NR   NRU 1970
## 11772                                                Nauru    NR   NRU 1969
## 11773                                                Nauru    NR   NRU 1968
## 11774                                                Nauru    NR   NRU 1967
## 11775                                                Nauru    NR   NRU 1966
## 11776                                                Nauru    NR   NRU 1965
## 11777                                                Nauru    NR   NRU 1964
## 11778                                                Nauru    NR   NRU 1963
## 11779                                                Nauru    NR   NRU 1962
## 11780                                                Nauru    NR   NRU 1961
## 11781                                                Nauru    NR   NRU 1960
## 11782                                                Nepal    NP   NPL 2022
## 11783                                                Nepal    NP   NPL 2021
## 11784                                                Nepal    NP   NPL 2020
## 11785                                                Nepal    NP   NPL 2019
## 11786                                                Nepal    NP   NPL 2018
## 11787                                                Nepal    NP   NPL 2017
## 11788                                                Nepal    NP   NPL 2016
## 11789                                                Nepal    NP   NPL 2015
## 11790                                                Nepal    NP   NPL 2014
## 11791                                                Nepal    NP   NPL 2013
## 11792                                                Nepal    NP   NPL 2012
## 11793                                                Nepal    NP   NPL 2011
## 11794                                                Nepal    NP   NPL 2010
## 11795                                                Nepal    NP   NPL 2009
## 11796                                                Nepal    NP   NPL 2008
## 11797                                                Nepal    NP   NPL 2007
## 11798                                                Nepal    NP   NPL 2006
## 11799                                                Nepal    NP   NPL 2005
## 11800                                                Nepal    NP   NPL 2004
## 11801                                                Nepal    NP   NPL 2003
## 11802                                                Nepal    NP   NPL 2002
## 11803                                                Nepal    NP   NPL 2001
## 11804                                                Nepal    NP   NPL 2000
## 11805                                                Nepal    NP   NPL 1999
## 11806                                                Nepal    NP   NPL 1998
## 11807                                                Nepal    NP   NPL 1997
## 11808                                                Nepal    NP   NPL 1996
## 11809                                                Nepal    NP   NPL 1995
## 11810                                                Nepal    NP   NPL 1994
## 11811                                                Nepal    NP   NPL 1993
## 11812                                                Nepal    NP   NPL 1992
## 11813                                                Nepal    NP   NPL 1991
## 11814                                                Nepal    NP   NPL 1990
## 11815                                                Nepal    NP   NPL 1989
## 11816                                                Nepal    NP   NPL 1988
## 11817                                                Nepal    NP   NPL 1987
## 11818                                                Nepal    NP   NPL 1986
## 11819                                                Nepal    NP   NPL 1985
## 11820                                                Nepal    NP   NPL 1984
## 11821                                                Nepal    NP   NPL 1983
## 11822                                                Nepal    NP   NPL 1982
## 11823                                                Nepal    NP   NPL 1981
## 11824                                                Nepal    NP   NPL 1980
## 11825                                                Nepal    NP   NPL 1979
## 11826                                                Nepal    NP   NPL 1978
## 11827                                                Nepal    NP   NPL 1977
## 11828                                                Nepal    NP   NPL 1976
## 11829                                                Nepal    NP   NPL 1975
## 11830                                                Nepal    NP   NPL 1974
## 11831                                                Nepal    NP   NPL 1973
## 11832                                                Nepal    NP   NPL 1972
## 11833                                                Nepal    NP   NPL 1971
## 11834                                                Nepal    NP   NPL 1970
## 11835                                                Nepal    NP   NPL 1969
## 11836                                                Nepal    NP   NPL 1968
## 11837                                                Nepal    NP   NPL 1967
## 11838                                                Nepal    NP   NPL 1966
## 11839                                                Nepal    NP   NPL 1965
## 11840                                                Nepal    NP   NPL 1964
## 11841                                                Nepal    NP   NPL 1963
## 11842                                                Nepal    NP   NPL 1962
## 11843                                                Nepal    NP   NPL 1961
## 11844                                                Nepal    NP   NPL 1960
## 11845                                          Netherlands    NL   NLD 2022
## 11846                                          Netherlands    NL   NLD 2021
## 11847                                          Netherlands    NL   NLD 2020
## 11848                                          Netherlands    NL   NLD 2019
## 11849                                          Netherlands    NL   NLD 2018
## 11850                                          Netherlands    NL   NLD 2017
## 11851                                          Netherlands    NL   NLD 2016
## 11852                                          Netherlands    NL   NLD 2015
## 11853                                          Netherlands    NL   NLD 2014
## 11854                                          Netherlands    NL   NLD 2013
## 11855                                          Netherlands    NL   NLD 2012
## 11856                                          Netherlands    NL   NLD 2011
## 11857                                          Netherlands    NL   NLD 2010
## 11858                                          Netherlands    NL   NLD 2009
## 11859                                          Netherlands    NL   NLD 2008
## 11860                                          Netherlands    NL   NLD 2007
## 11861                                          Netherlands    NL   NLD 2006
## 11862                                          Netherlands    NL   NLD 2005
## 11863                                          Netherlands    NL   NLD 2004
## 11864                                          Netherlands    NL   NLD 2003
## 11865                                          Netherlands    NL   NLD 2002
## 11866                                          Netherlands    NL   NLD 2001
## 11867                                          Netherlands    NL   NLD 2000
## 11868                                          Netherlands    NL   NLD 1999
## 11869                                          Netherlands    NL   NLD 1998
## 11870                                          Netherlands    NL   NLD 1997
## 11871                                          Netherlands    NL   NLD 1996
## 11872                                          Netherlands    NL   NLD 1995
## 11873                                          Netherlands    NL   NLD 1994
## 11874                                          Netherlands    NL   NLD 1993
## 11875                                          Netherlands    NL   NLD 1992
## 11876                                          Netherlands    NL   NLD 1991
## 11877                                          Netherlands    NL   NLD 1990
## 11878                                          Netherlands    NL   NLD 1989
## 11879                                          Netherlands    NL   NLD 1988
## 11880                                          Netherlands    NL   NLD 1987
## 11881                                          Netherlands    NL   NLD 1986
## 11882                                          Netherlands    NL   NLD 1985
## 11883                                          Netherlands    NL   NLD 1984
## 11884                                          Netherlands    NL   NLD 1983
## 11885                                          Netherlands    NL   NLD 1982
## 11886                                          Netherlands    NL   NLD 1981
## 11887                                          Netherlands    NL   NLD 1980
## 11888                                          Netherlands    NL   NLD 1979
## 11889                                          Netherlands    NL   NLD 1978
## 11890                                          Netherlands    NL   NLD 1977
## 11891                                          Netherlands    NL   NLD 1976
## 11892                                          Netherlands    NL   NLD 1975
## 11893                                          Netherlands    NL   NLD 1974
## 11894                                          Netherlands    NL   NLD 1973
## 11895                                          Netherlands    NL   NLD 1972
## 11896                                          Netherlands    NL   NLD 1971
## 11897                                          Netherlands    NL   NLD 1970
## 11898                                          Netherlands    NL   NLD 1969
## 11899                                          Netherlands    NL   NLD 1968
## 11900                                          Netherlands    NL   NLD 1967
## 11901                                          Netherlands    NL   NLD 1966
## 11902                                          Netherlands    NL   NLD 1965
## 11903                                          Netherlands    NL   NLD 1964
## 11904                                          Netherlands    NL   NLD 1963
## 11905                                          Netherlands    NL   NLD 1962
## 11906                                          Netherlands    NL   NLD 1961
## 11907                                          Netherlands    NL   NLD 1960
## 11908                                        New Caledonia    NC   NCL 2022
## 11909                                        New Caledonia    NC   NCL 2021
## 11910                                        New Caledonia    NC   NCL 2020
## 11911                                        New Caledonia    NC   NCL 2019
## 11912                                        New Caledonia    NC   NCL 2018
## 11913                                        New Caledonia    NC   NCL 2017
## 11914                                        New Caledonia    NC   NCL 2016
## 11915                                        New Caledonia    NC   NCL 2015
## 11916                                        New Caledonia    NC   NCL 2014
## 11917                                        New Caledonia    NC   NCL 2013
## 11918                                        New Caledonia    NC   NCL 2012
## 11919                                        New Caledonia    NC   NCL 2011
## 11920                                        New Caledonia    NC   NCL 2010
## 11921                                        New Caledonia    NC   NCL 2009
## 11922                                        New Caledonia    NC   NCL 2008
## 11923                                        New Caledonia    NC   NCL 2007
## 11924                                        New Caledonia    NC   NCL 2006
## 11925                                        New Caledonia    NC   NCL 2005
## 11926                                        New Caledonia    NC   NCL 2004
## 11927                                        New Caledonia    NC   NCL 2003
## 11928                                        New Caledonia    NC   NCL 2002
## 11929                                        New Caledonia    NC   NCL 2001
## 11930                                        New Caledonia    NC   NCL 2000
## 11931                                        New Caledonia    NC   NCL 1999
## 11932                                        New Caledonia    NC   NCL 1998
## 11933                                        New Caledonia    NC   NCL 1997
## 11934                                        New Caledonia    NC   NCL 1996
## 11935                                        New Caledonia    NC   NCL 1995
## 11936                                        New Caledonia    NC   NCL 1994
## 11937                                        New Caledonia    NC   NCL 1993
## 11938                                        New Caledonia    NC   NCL 1992
## 11939                                        New Caledonia    NC   NCL 1991
## 11940                                        New Caledonia    NC   NCL 1990
## 11941                                        New Caledonia    NC   NCL 1989
## 11942                                        New Caledonia    NC   NCL 1988
## 11943                                        New Caledonia    NC   NCL 1987
## 11944                                        New Caledonia    NC   NCL 1986
## 11945                                        New Caledonia    NC   NCL 1985
## 11946                                        New Caledonia    NC   NCL 1984
## 11947                                        New Caledonia    NC   NCL 1983
## 11948                                        New Caledonia    NC   NCL 1982
## 11949                                        New Caledonia    NC   NCL 1981
## 11950                                        New Caledonia    NC   NCL 1980
## 11951                                        New Caledonia    NC   NCL 1979
## 11952                                        New Caledonia    NC   NCL 1978
## 11953                                        New Caledonia    NC   NCL 1977
## 11954                                        New Caledonia    NC   NCL 1976
## 11955                                        New Caledonia    NC   NCL 1975
## 11956                                        New Caledonia    NC   NCL 1974
## 11957                                        New Caledonia    NC   NCL 1973
## 11958                                        New Caledonia    NC   NCL 1972
## 11959                                        New Caledonia    NC   NCL 1971
## 11960                                        New Caledonia    NC   NCL 1970
## 11961                                        New Caledonia    NC   NCL 1969
## 11962                                        New Caledonia    NC   NCL 1968
## 11963                                        New Caledonia    NC   NCL 1967
## 11964                                        New Caledonia    NC   NCL 1966
## 11965                                        New Caledonia    NC   NCL 1965
## 11966                                        New Caledonia    NC   NCL 1964
## 11967                                        New Caledonia    NC   NCL 1963
## 11968                                        New Caledonia    NC   NCL 1962
## 11969                                        New Caledonia    NC   NCL 1961
## 11970                                        New Caledonia    NC   NCL 1960
## 11971                                          New Zealand    NZ   NZL 2022
## 11972                                          New Zealand    NZ   NZL 2021
## 11973                                          New Zealand    NZ   NZL 2020
## 11974                                          New Zealand    NZ   NZL 2019
## 11975                                          New Zealand    NZ   NZL 2018
## 11976                                          New Zealand    NZ   NZL 2017
## 11977                                          New Zealand    NZ   NZL 2016
## 11978                                          New Zealand    NZ   NZL 2015
## 11979                                          New Zealand    NZ   NZL 2014
## 11980                                          New Zealand    NZ   NZL 2013
## 11981                                          New Zealand    NZ   NZL 2012
## 11982                                          New Zealand    NZ   NZL 2011
## 11983                                          New Zealand    NZ   NZL 2010
## 11984                                          New Zealand    NZ   NZL 2009
## 11985                                          New Zealand    NZ   NZL 2008
## 11986                                          New Zealand    NZ   NZL 2007
## 11987                                          New Zealand    NZ   NZL 2006
## 11988                                          New Zealand    NZ   NZL 2005
## 11989                                          New Zealand    NZ   NZL 2004
## 11990                                          New Zealand    NZ   NZL 2003
## 11991                                          New Zealand    NZ   NZL 2002
## 11992                                          New Zealand    NZ   NZL 2001
## 11993                                          New Zealand    NZ   NZL 2000
## 11994                                          New Zealand    NZ   NZL 1999
## 11995                                          New Zealand    NZ   NZL 1998
## 11996                                          New Zealand    NZ   NZL 1997
## 11997                                          New Zealand    NZ   NZL 1996
## 11998                                          New Zealand    NZ   NZL 1995
## 11999                                          New Zealand    NZ   NZL 1994
## 12000                                          New Zealand    NZ   NZL 1993
## 12001                                          New Zealand    NZ   NZL 1992
## 12002                                          New Zealand    NZ   NZL 1991
## 12003                                          New Zealand    NZ   NZL 1990
## 12004                                          New Zealand    NZ   NZL 1989
## 12005                                          New Zealand    NZ   NZL 1988
## 12006                                          New Zealand    NZ   NZL 1987
## 12007                                          New Zealand    NZ   NZL 1986
## 12008                                          New Zealand    NZ   NZL 1985
## 12009                                          New Zealand    NZ   NZL 1984
## 12010                                          New Zealand    NZ   NZL 1983
## 12011                                          New Zealand    NZ   NZL 1982
## 12012                                          New Zealand    NZ   NZL 1981
## 12013                                          New Zealand    NZ   NZL 1980
## 12014                                          New Zealand    NZ   NZL 1979
## 12015                                          New Zealand    NZ   NZL 1978
## 12016                                          New Zealand    NZ   NZL 1977
## 12017                                          New Zealand    NZ   NZL 1976
## 12018                                          New Zealand    NZ   NZL 1975
## 12019                                          New Zealand    NZ   NZL 1974
## 12020                                          New Zealand    NZ   NZL 1973
## 12021                                          New Zealand    NZ   NZL 1972
## 12022                                          New Zealand    NZ   NZL 1971
## 12023                                          New Zealand    NZ   NZL 1970
## 12024                                          New Zealand    NZ   NZL 1969
## 12025                                          New Zealand    NZ   NZL 1968
## 12026                                          New Zealand    NZ   NZL 1967
## 12027                                          New Zealand    NZ   NZL 1966
## 12028                                          New Zealand    NZ   NZL 1965
## 12029                                          New Zealand    NZ   NZL 1964
## 12030                                          New Zealand    NZ   NZL 1963
## 12031                                          New Zealand    NZ   NZL 1962
## 12032                                          New Zealand    NZ   NZL 1961
## 12033                                          New Zealand    NZ   NZL 1960
## 12034                                            Nicaragua    NI   NIC 2022
## 12035                                            Nicaragua    NI   NIC 2021
## 12036                                            Nicaragua    NI   NIC 2020
## 12037                                            Nicaragua    NI   NIC 2019
## 12038                                            Nicaragua    NI   NIC 2018
## 12039                                            Nicaragua    NI   NIC 2017
## 12040                                            Nicaragua    NI   NIC 2016
## 12041                                            Nicaragua    NI   NIC 2015
## 12042                                            Nicaragua    NI   NIC 2014
## 12043                                            Nicaragua    NI   NIC 2013
## 12044                                            Nicaragua    NI   NIC 2012
## 12045                                            Nicaragua    NI   NIC 2011
## 12046                                            Nicaragua    NI   NIC 2010
## 12047                                            Nicaragua    NI   NIC 2009
## 12048                                            Nicaragua    NI   NIC 2008
## 12049                                            Nicaragua    NI   NIC 2007
## 12050                                            Nicaragua    NI   NIC 2006
## 12051                                            Nicaragua    NI   NIC 2005
## 12052                                            Nicaragua    NI   NIC 2004
## 12053                                            Nicaragua    NI   NIC 2003
## 12054                                            Nicaragua    NI   NIC 2002
## 12055                                            Nicaragua    NI   NIC 2001
## 12056                                            Nicaragua    NI   NIC 2000
## 12057                                            Nicaragua    NI   NIC 1999
## 12058                                            Nicaragua    NI   NIC 1998
## 12059                                            Nicaragua    NI   NIC 1997
## 12060                                            Nicaragua    NI   NIC 1996
## 12061                                            Nicaragua    NI   NIC 1995
## 12062                                            Nicaragua    NI   NIC 1994
## 12063                                            Nicaragua    NI   NIC 1993
## 12064                                            Nicaragua    NI   NIC 1992
## 12065                                            Nicaragua    NI   NIC 1991
## 12066                                            Nicaragua    NI   NIC 1990
## 12067                                            Nicaragua    NI   NIC 1989
## 12068                                            Nicaragua    NI   NIC 1988
## 12069                                            Nicaragua    NI   NIC 1987
## 12070                                            Nicaragua    NI   NIC 1986
## 12071                                            Nicaragua    NI   NIC 1985
## 12072                                            Nicaragua    NI   NIC 1984
## 12073                                            Nicaragua    NI   NIC 1983
## 12074                                            Nicaragua    NI   NIC 1982
## 12075                                            Nicaragua    NI   NIC 1981
## 12076                                            Nicaragua    NI   NIC 1980
## 12077                                            Nicaragua    NI   NIC 1979
## 12078                                            Nicaragua    NI   NIC 1978
## 12079                                            Nicaragua    NI   NIC 1977
## 12080                                            Nicaragua    NI   NIC 1976
## 12081                                            Nicaragua    NI   NIC 1975
## 12082                                            Nicaragua    NI   NIC 1974
## 12083                                            Nicaragua    NI   NIC 1973
## 12084                                            Nicaragua    NI   NIC 1972
## 12085                                            Nicaragua    NI   NIC 1971
## 12086                                            Nicaragua    NI   NIC 1970
## 12087                                            Nicaragua    NI   NIC 1969
## 12088                                            Nicaragua    NI   NIC 1968
## 12089                                            Nicaragua    NI   NIC 1967
## 12090                                            Nicaragua    NI   NIC 1966
## 12091                                            Nicaragua    NI   NIC 1965
## 12092                                            Nicaragua    NI   NIC 1964
## 12093                                            Nicaragua    NI   NIC 1963
## 12094                                            Nicaragua    NI   NIC 1962
## 12095                                            Nicaragua    NI   NIC 1961
## 12096                                            Nicaragua    NI   NIC 1960
## 12097                                                Niger    NE   NER 2022
## 12098                                                Niger    NE   NER 2021
## 12099                                                Niger    NE   NER 2020
## 12100                                                Niger    NE   NER 2019
## 12101                                                Niger    NE   NER 2018
## 12102                                                Niger    NE   NER 2017
## 12103                                                Niger    NE   NER 2016
## 12104                                                Niger    NE   NER 2015
## 12105                                                Niger    NE   NER 2014
## 12106                                                Niger    NE   NER 2013
## 12107                                                Niger    NE   NER 2012
## 12108                                                Niger    NE   NER 2011
## 12109                                                Niger    NE   NER 2010
## 12110                                                Niger    NE   NER 2009
## 12111                                                Niger    NE   NER 2008
## 12112                                                Niger    NE   NER 2007
## 12113                                                Niger    NE   NER 2006
## 12114                                                Niger    NE   NER 2005
## 12115                                                Niger    NE   NER 2004
## 12116                                                Niger    NE   NER 2003
## 12117                                                Niger    NE   NER 2002
## 12118                                                Niger    NE   NER 2001
## 12119                                                Niger    NE   NER 2000
## 12120                                                Niger    NE   NER 1999
## 12121                                                Niger    NE   NER 1998
## 12122                                                Niger    NE   NER 1997
## 12123                                                Niger    NE   NER 1996
## 12124                                                Niger    NE   NER 1995
## 12125                                                Niger    NE   NER 1994
## 12126                                                Niger    NE   NER 1993
## 12127                                                Niger    NE   NER 1992
## 12128                                                Niger    NE   NER 1991
## 12129                                                Niger    NE   NER 1990
## 12130                                                Niger    NE   NER 1989
## 12131                                                Niger    NE   NER 1988
## 12132                                                Niger    NE   NER 1987
## 12133                                                Niger    NE   NER 1986
## 12134                                                Niger    NE   NER 1985
## 12135                                                Niger    NE   NER 1984
## 12136                                                Niger    NE   NER 1983
## 12137                                                Niger    NE   NER 1982
## 12138                                                Niger    NE   NER 1981
## 12139                                                Niger    NE   NER 1980
## 12140                                                Niger    NE   NER 1979
## 12141                                                Niger    NE   NER 1978
## 12142                                                Niger    NE   NER 1977
## 12143                                                Niger    NE   NER 1976
## 12144                                                Niger    NE   NER 1975
## 12145                                                Niger    NE   NER 1974
## 12146                                                Niger    NE   NER 1973
## 12147                                                Niger    NE   NER 1972
## 12148                                                Niger    NE   NER 1971
## 12149                                                Niger    NE   NER 1970
## 12150                                                Niger    NE   NER 1969
## 12151                                                Niger    NE   NER 1968
## 12152                                                Niger    NE   NER 1967
## 12153                                                Niger    NE   NER 1966
## 12154                                                Niger    NE   NER 1965
## 12155                                                Niger    NE   NER 1964
## 12156                                                Niger    NE   NER 1963
## 12157                                                Niger    NE   NER 1962
## 12158                                                Niger    NE   NER 1961
## 12159                                                Niger    NE   NER 1960
## 12160                                              Nigeria    NG   NGA 2022
## 12161                                              Nigeria    NG   NGA 2021
## 12162                                              Nigeria    NG   NGA 2020
## 12163                                              Nigeria    NG   NGA 2019
## 12164                                              Nigeria    NG   NGA 2018
## 12165                                              Nigeria    NG   NGA 2017
## 12166                                              Nigeria    NG   NGA 2016
## 12167                                              Nigeria    NG   NGA 2015
## 12168                                              Nigeria    NG   NGA 2014
## 12169                                              Nigeria    NG   NGA 2013
## 12170                                              Nigeria    NG   NGA 2012
## 12171                                              Nigeria    NG   NGA 2011
## 12172                                              Nigeria    NG   NGA 2010
## 12173                                              Nigeria    NG   NGA 2009
## 12174                                              Nigeria    NG   NGA 2008
## 12175                                              Nigeria    NG   NGA 2007
## 12176                                              Nigeria    NG   NGA 2006
## 12177                                              Nigeria    NG   NGA 2005
## 12178                                              Nigeria    NG   NGA 2004
## 12179                                              Nigeria    NG   NGA 2003
## 12180                                              Nigeria    NG   NGA 2002
## 12181                                              Nigeria    NG   NGA 2001
## 12182                                              Nigeria    NG   NGA 2000
## 12183                                              Nigeria    NG   NGA 1999
## 12184                                              Nigeria    NG   NGA 1998
## 12185                                              Nigeria    NG   NGA 1997
## 12186                                              Nigeria    NG   NGA 1996
## 12187                                              Nigeria    NG   NGA 1995
## 12188                                              Nigeria    NG   NGA 1994
## 12189                                              Nigeria    NG   NGA 1993
## 12190                                              Nigeria    NG   NGA 1992
## 12191                                              Nigeria    NG   NGA 1991
## 12192                                              Nigeria    NG   NGA 1990
## 12193                                              Nigeria    NG   NGA 1989
## 12194                                              Nigeria    NG   NGA 1988
## 12195                                              Nigeria    NG   NGA 1987
## 12196                                              Nigeria    NG   NGA 1986
## 12197                                              Nigeria    NG   NGA 1985
## 12198                                              Nigeria    NG   NGA 1984
## 12199                                              Nigeria    NG   NGA 1983
## 12200                                              Nigeria    NG   NGA 1982
## 12201                                              Nigeria    NG   NGA 1981
## 12202                                              Nigeria    NG   NGA 1980
## 12203                                              Nigeria    NG   NGA 1979
## 12204                                              Nigeria    NG   NGA 1978
## 12205                                              Nigeria    NG   NGA 1977
## 12206                                              Nigeria    NG   NGA 1976
## 12207                                              Nigeria    NG   NGA 1975
## 12208                                              Nigeria    NG   NGA 1974
## 12209                                              Nigeria    NG   NGA 1973
## 12210                                              Nigeria    NG   NGA 1972
## 12211                                              Nigeria    NG   NGA 1971
## 12212                                              Nigeria    NG   NGA 1970
## 12213                                              Nigeria    NG   NGA 1969
## 12214                                              Nigeria    NG   NGA 1968
## 12215                                              Nigeria    NG   NGA 1967
## 12216                                              Nigeria    NG   NGA 1966
## 12217                                              Nigeria    NG   NGA 1965
## 12218                                              Nigeria    NG   NGA 1964
## 12219                                              Nigeria    NG   NGA 1963
## 12220                                              Nigeria    NG   NGA 1962
## 12221                                              Nigeria    NG   NGA 1961
## 12222                                              Nigeria    NG   NGA 1960
## 12223                                      North Macedonia    MK   MKD 2022
## 12224                                      North Macedonia    MK   MKD 2021
## 12225                                      North Macedonia    MK   MKD 2020
## 12226                                      North Macedonia    MK   MKD 2019
## 12227                                      North Macedonia    MK   MKD 2018
## 12228                                      North Macedonia    MK   MKD 2017
## 12229                                      North Macedonia    MK   MKD 2016
## 12230                                      North Macedonia    MK   MKD 2015
## 12231                                      North Macedonia    MK   MKD 2014
## 12232                                      North Macedonia    MK   MKD 2013
## 12233                                      North Macedonia    MK   MKD 2012
## 12234                                      North Macedonia    MK   MKD 2011
## 12235                                      North Macedonia    MK   MKD 2010
## 12236                                      North Macedonia    MK   MKD 2009
## 12237                                      North Macedonia    MK   MKD 2008
## 12238                                      North Macedonia    MK   MKD 2007
## 12239                                      North Macedonia    MK   MKD 2006
## 12240                                      North Macedonia    MK   MKD 2005
## 12241                                      North Macedonia    MK   MKD 2004
## 12242                                      North Macedonia    MK   MKD 2003
## 12243                                      North Macedonia    MK   MKD 2002
## 12244                                      North Macedonia    MK   MKD 2001
## 12245                                      North Macedonia    MK   MKD 2000
## 12246                                      North Macedonia    MK   MKD 1999
## 12247                                      North Macedonia    MK   MKD 1998
## 12248                                      North Macedonia    MK   MKD 1997
## 12249                                      North Macedonia    MK   MKD 1996
## 12250                                      North Macedonia    MK   MKD 1995
## 12251                                      North Macedonia    MK   MKD 1994
## 12252                                      North Macedonia    MK   MKD 1993
## 12253                                      North Macedonia    MK   MKD 1992
## 12254                                      North Macedonia    MK   MKD 1991
## 12255                                      North Macedonia    MK   MKD 1990
## 12256                                      North Macedonia    MK   MKD 1989
## 12257                                      North Macedonia    MK   MKD 1988
## 12258                                      North Macedonia    MK   MKD 1987
## 12259                                      North Macedonia    MK   MKD 1986
## 12260                                      North Macedonia    MK   MKD 1985
## 12261                                      North Macedonia    MK   MKD 1984
## 12262                                      North Macedonia    MK   MKD 1983
## 12263                                      North Macedonia    MK   MKD 1982
## 12264                                      North Macedonia    MK   MKD 1981
## 12265                                      North Macedonia    MK   MKD 1980
## 12266                                      North Macedonia    MK   MKD 1979
## 12267                                      North Macedonia    MK   MKD 1978
## 12268                                      North Macedonia    MK   MKD 1977
## 12269                                      North Macedonia    MK   MKD 1976
## 12270                                      North Macedonia    MK   MKD 1975
## 12271                                      North Macedonia    MK   MKD 1974
## 12272                                      North Macedonia    MK   MKD 1973
## 12273                                      North Macedonia    MK   MKD 1972
## 12274                                      North Macedonia    MK   MKD 1971
## 12275                                      North Macedonia    MK   MKD 1970
## 12276                                      North Macedonia    MK   MKD 1969
## 12277                                      North Macedonia    MK   MKD 1968
## 12278                                      North Macedonia    MK   MKD 1967
## 12279                                      North Macedonia    MK   MKD 1966
## 12280                                      North Macedonia    MK   MKD 1965
## 12281                                      North Macedonia    MK   MKD 1964
## 12282                                      North Macedonia    MK   MKD 1963
## 12283                                      North Macedonia    MK   MKD 1962
## 12284                                      North Macedonia    MK   MKD 1961
## 12285                                      North Macedonia    MK   MKD 1960
## 12286                             Northern Mariana Islands    MP   MNP 2022
## 12287                             Northern Mariana Islands    MP   MNP 2021
## 12288                             Northern Mariana Islands    MP   MNP 2020
## 12289                             Northern Mariana Islands    MP   MNP 2019
## 12290                             Northern Mariana Islands    MP   MNP 2018
## 12291                             Northern Mariana Islands    MP   MNP 2017
## 12292                             Northern Mariana Islands    MP   MNP 2016
## 12293                             Northern Mariana Islands    MP   MNP 2015
## 12294                             Northern Mariana Islands    MP   MNP 2014
## 12295                             Northern Mariana Islands    MP   MNP 2013
## 12296                             Northern Mariana Islands    MP   MNP 2012
## 12297                             Northern Mariana Islands    MP   MNP 2011
## 12298                             Northern Mariana Islands    MP   MNP 2010
## 12299                             Northern Mariana Islands    MP   MNP 2009
## 12300                             Northern Mariana Islands    MP   MNP 2008
## 12301                             Northern Mariana Islands    MP   MNP 2007
## 12302                             Northern Mariana Islands    MP   MNP 2006
## 12303                             Northern Mariana Islands    MP   MNP 2005
## 12304                             Northern Mariana Islands    MP   MNP 2004
## 12305                             Northern Mariana Islands    MP   MNP 2003
## 12306                             Northern Mariana Islands    MP   MNP 2002
## 12307                             Northern Mariana Islands    MP   MNP 2001
## 12308                             Northern Mariana Islands    MP   MNP 2000
## 12309                             Northern Mariana Islands    MP   MNP 1999
## 12310                             Northern Mariana Islands    MP   MNP 1998
## 12311                             Northern Mariana Islands    MP   MNP 1997
## 12312                             Northern Mariana Islands    MP   MNP 1996
## 12313                             Northern Mariana Islands    MP   MNP 1995
## 12314                             Northern Mariana Islands    MP   MNP 1994
## 12315                             Northern Mariana Islands    MP   MNP 1993
## 12316                             Northern Mariana Islands    MP   MNP 1992
## 12317                             Northern Mariana Islands    MP   MNP 1991
## 12318                             Northern Mariana Islands    MP   MNP 1990
## 12319                             Northern Mariana Islands    MP   MNP 1989
## 12320                             Northern Mariana Islands    MP   MNP 1988
## 12321                             Northern Mariana Islands    MP   MNP 1987
## 12322                             Northern Mariana Islands    MP   MNP 1986
## 12323                             Northern Mariana Islands    MP   MNP 1985
## 12324                             Northern Mariana Islands    MP   MNP 1984
## 12325                             Northern Mariana Islands    MP   MNP 1983
## 12326                             Northern Mariana Islands    MP   MNP 1982
## 12327                             Northern Mariana Islands    MP   MNP 1981
## 12328                             Northern Mariana Islands    MP   MNP 1980
## 12329                             Northern Mariana Islands    MP   MNP 1979
## 12330                             Northern Mariana Islands    MP   MNP 1978
## 12331                             Northern Mariana Islands    MP   MNP 1977
## 12332                             Northern Mariana Islands    MP   MNP 1976
## 12333                             Northern Mariana Islands    MP   MNP 1975
## 12334                             Northern Mariana Islands    MP   MNP 1974
## 12335                             Northern Mariana Islands    MP   MNP 1973
## 12336                             Northern Mariana Islands    MP   MNP 1972
## 12337                             Northern Mariana Islands    MP   MNP 1971
## 12338                             Northern Mariana Islands    MP   MNP 1970
## 12339                             Northern Mariana Islands    MP   MNP 1969
## 12340                             Northern Mariana Islands    MP   MNP 1968
## 12341                             Northern Mariana Islands    MP   MNP 1967
## 12342                             Northern Mariana Islands    MP   MNP 1966
## 12343                             Northern Mariana Islands    MP   MNP 1965
## 12344                             Northern Mariana Islands    MP   MNP 1964
## 12345                             Northern Mariana Islands    MP   MNP 1963
## 12346                             Northern Mariana Islands    MP   MNP 1962
## 12347                             Northern Mariana Islands    MP   MNP 1961
## 12348                             Northern Mariana Islands    MP   MNP 1960
## 12349                                               Norway    NO   NOR 2022
## 12350                                               Norway    NO   NOR 2021
## 12351                                               Norway    NO   NOR 2020
## 12352                                               Norway    NO   NOR 2019
## 12353                                               Norway    NO   NOR 2018
## 12354                                               Norway    NO   NOR 2017
## 12355                                               Norway    NO   NOR 2016
## 12356                                               Norway    NO   NOR 2015
## 12357                                               Norway    NO   NOR 2014
## 12358                                               Norway    NO   NOR 2013
## 12359                                               Norway    NO   NOR 2012
## 12360                                               Norway    NO   NOR 2011
## 12361                                               Norway    NO   NOR 2010
## 12362                                               Norway    NO   NOR 2009
## 12363                                               Norway    NO   NOR 2008
## 12364                                               Norway    NO   NOR 2007
## 12365                                               Norway    NO   NOR 2006
## 12366                                               Norway    NO   NOR 2005
## 12367                                               Norway    NO   NOR 2004
## 12368                                               Norway    NO   NOR 2003
## 12369                                               Norway    NO   NOR 2002
## 12370                                               Norway    NO   NOR 2001
## 12371                                               Norway    NO   NOR 2000
## 12372                                               Norway    NO   NOR 1999
## 12373                                               Norway    NO   NOR 1998
## 12374                                               Norway    NO   NOR 1997
## 12375                                               Norway    NO   NOR 1996
## 12376                                               Norway    NO   NOR 1995
## 12377                                               Norway    NO   NOR 1994
## 12378                                               Norway    NO   NOR 1993
## 12379                                               Norway    NO   NOR 1992
## 12380                                               Norway    NO   NOR 1991
## 12381                                               Norway    NO   NOR 1990
## 12382                                               Norway    NO   NOR 1989
## 12383                                               Norway    NO   NOR 1988
## 12384                                               Norway    NO   NOR 1987
## 12385                                               Norway    NO   NOR 1986
## 12386                                               Norway    NO   NOR 1985
## 12387                                               Norway    NO   NOR 1984
## 12388                                               Norway    NO   NOR 1983
## 12389                                               Norway    NO   NOR 1982
## 12390                                               Norway    NO   NOR 1981
## 12391                                               Norway    NO   NOR 1980
## 12392                                               Norway    NO   NOR 1979
## 12393                                               Norway    NO   NOR 1978
## 12394                                               Norway    NO   NOR 1977
## 12395                                               Norway    NO   NOR 1976
## 12396                                               Norway    NO   NOR 1975
## 12397                                               Norway    NO   NOR 1974
## 12398                                               Norway    NO   NOR 1973
## 12399                                               Norway    NO   NOR 1972
## 12400                                               Norway    NO   NOR 1971
## 12401                                               Norway    NO   NOR 1970
## 12402                                               Norway    NO   NOR 1969
## 12403                                               Norway    NO   NOR 1968
## 12404                                               Norway    NO   NOR 1967
## 12405                                               Norway    NO   NOR 1966
## 12406                                               Norway    NO   NOR 1965
## 12407                                               Norway    NO   NOR 1964
## 12408                                               Norway    NO   NOR 1963
## 12409                                               Norway    NO   NOR 1962
## 12410                                               Norway    NO   NOR 1961
## 12411                                               Norway    NO   NOR 1960
## 12412                                                 Oman    OM   OMN 2022
## 12413                                                 Oman    OM   OMN 2021
## 12414                                                 Oman    OM   OMN 2020
## 12415                                                 Oman    OM   OMN 2019
## 12416                                                 Oman    OM   OMN 2018
## 12417                                                 Oman    OM   OMN 2017
## 12418                                                 Oman    OM   OMN 2016
## 12419                                                 Oman    OM   OMN 2015
## 12420                                                 Oman    OM   OMN 2014
## 12421                                                 Oman    OM   OMN 2013
## 12422                                                 Oman    OM   OMN 2012
## 12423                                                 Oman    OM   OMN 2011
## 12424                                                 Oman    OM   OMN 2010
## 12425                                                 Oman    OM   OMN 2009
## 12426                                                 Oman    OM   OMN 2008
## 12427                                                 Oman    OM   OMN 2007
## 12428                                                 Oman    OM   OMN 2006
## 12429                                                 Oman    OM   OMN 2005
## 12430                                                 Oman    OM   OMN 2004
## 12431                                                 Oman    OM   OMN 2003
## 12432                                                 Oman    OM   OMN 2002
## 12433                                                 Oman    OM   OMN 2001
## 12434                                                 Oman    OM   OMN 2000
## 12435                                                 Oman    OM   OMN 1999
## 12436                                                 Oman    OM   OMN 1998
## 12437                                                 Oman    OM   OMN 1997
## 12438                                                 Oman    OM   OMN 1996
## 12439                                                 Oman    OM   OMN 1995
## 12440                                                 Oman    OM   OMN 1994
## 12441                                                 Oman    OM   OMN 1993
## 12442                                                 Oman    OM   OMN 1992
## 12443                                                 Oman    OM   OMN 1991
## 12444                                                 Oman    OM   OMN 1990
## 12445                                                 Oman    OM   OMN 1989
## 12446                                                 Oman    OM   OMN 1988
## 12447                                                 Oman    OM   OMN 1987
## 12448                                                 Oman    OM   OMN 1986
## 12449                                                 Oman    OM   OMN 1985
## 12450                                                 Oman    OM   OMN 1984
## 12451                                                 Oman    OM   OMN 1983
## 12452                                                 Oman    OM   OMN 1982
## 12453                                                 Oman    OM   OMN 1981
## 12454                                                 Oman    OM   OMN 1980
## 12455                                                 Oman    OM   OMN 1979
## 12456                                                 Oman    OM   OMN 1978
## 12457                                                 Oman    OM   OMN 1977
## 12458                                                 Oman    OM   OMN 1976
## 12459                                                 Oman    OM   OMN 1975
## 12460                                                 Oman    OM   OMN 1974
## 12461                                                 Oman    OM   OMN 1973
## 12462                                                 Oman    OM   OMN 1972
## 12463                                                 Oman    OM   OMN 1971
## 12464                                                 Oman    OM   OMN 1970
## 12465                                                 Oman    OM   OMN 1969
## 12466                                                 Oman    OM   OMN 1968
## 12467                                                 Oman    OM   OMN 1967
## 12468                                                 Oman    OM   OMN 1966
## 12469                                                 Oman    OM   OMN 1965
## 12470                                                 Oman    OM   OMN 1964
## 12471                                                 Oman    OM   OMN 1963
## 12472                                                 Oman    OM   OMN 1962
## 12473                                                 Oman    OM   OMN 1961
## 12474                                                 Oman    OM   OMN 1960
## 12475                                             Pakistan    PK   PAK 2022
## 12476                                             Pakistan    PK   PAK 2021
## 12477                                             Pakistan    PK   PAK 2020
## 12478                                             Pakistan    PK   PAK 2019
## 12479                                             Pakistan    PK   PAK 2018
## 12480                                             Pakistan    PK   PAK 2017
## 12481                                             Pakistan    PK   PAK 2016
## 12482                                             Pakistan    PK   PAK 2015
## 12483                                             Pakistan    PK   PAK 2014
## 12484                                             Pakistan    PK   PAK 2013
## 12485                                             Pakistan    PK   PAK 2012
## 12486                                             Pakistan    PK   PAK 2011
## 12487                                             Pakistan    PK   PAK 2010
## 12488                                             Pakistan    PK   PAK 2009
## 12489                                             Pakistan    PK   PAK 2008
## 12490                                             Pakistan    PK   PAK 2007
## 12491                                             Pakistan    PK   PAK 2006
## 12492                                             Pakistan    PK   PAK 2005
## 12493                                             Pakistan    PK   PAK 2004
## 12494                                             Pakistan    PK   PAK 2003
## 12495                                             Pakistan    PK   PAK 2002
## 12496                                             Pakistan    PK   PAK 2001
## 12497                                             Pakistan    PK   PAK 2000
## 12498                                             Pakistan    PK   PAK 1999
## 12499                                             Pakistan    PK   PAK 1998
## 12500                                             Pakistan    PK   PAK 1997
## 12501                                             Pakistan    PK   PAK 1996
## 12502                                             Pakistan    PK   PAK 1995
## 12503                                             Pakistan    PK   PAK 1994
## 12504                                             Pakistan    PK   PAK 1993
## 12505                                             Pakistan    PK   PAK 1992
## 12506                                             Pakistan    PK   PAK 1991
## 12507                                             Pakistan    PK   PAK 1990
## 12508                                             Pakistan    PK   PAK 1989
## 12509                                             Pakistan    PK   PAK 1988
## 12510                                             Pakistan    PK   PAK 1987
## 12511                                             Pakistan    PK   PAK 1986
## 12512                                             Pakistan    PK   PAK 1985
## 12513                                             Pakistan    PK   PAK 1984
## 12514                                             Pakistan    PK   PAK 1983
## 12515                                             Pakistan    PK   PAK 1982
## 12516                                             Pakistan    PK   PAK 1981
## 12517                                             Pakistan    PK   PAK 1980
## 12518                                             Pakistan    PK   PAK 1979
## 12519                                             Pakistan    PK   PAK 1978
## 12520                                             Pakistan    PK   PAK 1977
## 12521                                             Pakistan    PK   PAK 1976
## 12522                                             Pakistan    PK   PAK 1975
## 12523                                             Pakistan    PK   PAK 1974
## 12524                                             Pakistan    PK   PAK 1973
## 12525                                             Pakistan    PK   PAK 1972
## 12526                                             Pakistan    PK   PAK 1971
## 12527                                             Pakistan    PK   PAK 1970
## 12528                                             Pakistan    PK   PAK 1969
## 12529                                             Pakistan    PK   PAK 1968
## 12530                                             Pakistan    PK   PAK 1967
## 12531                                             Pakistan    PK   PAK 1966
## 12532                                             Pakistan    PK   PAK 1965
## 12533                                             Pakistan    PK   PAK 1964
## 12534                                             Pakistan    PK   PAK 1963
## 12535                                             Pakistan    PK   PAK 1962
## 12536                                             Pakistan    PK   PAK 1961
## 12537                                             Pakistan    PK   PAK 1960
## 12538                                                Palau    PW   PLW 2022
## 12539                                                Palau    PW   PLW 2021
## 12540                                                Palau    PW   PLW 2020
## 12541                                                Palau    PW   PLW 2019
## 12542                                                Palau    PW   PLW 2018
## 12543                                                Palau    PW   PLW 2017
## 12544                                                Palau    PW   PLW 2016
## 12545                                                Palau    PW   PLW 2015
## 12546                                                Palau    PW   PLW 2014
## 12547                                                Palau    PW   PLW 2013
## 12548                                                Palau    PW   PLW 2012
## 12549                                                Palau    PW   PLW 2011
## 12550                                                Palau    PW   PLW 2010
## 12551                                                Palau    PW   PLW 2009
## 12552                                                Palau    PW   PLW 2008
## 12553                                                Palau    PW   PLW 2007
## 12554                                                Palau    PW   PLW 2006
## 12555                                                Palau    PW   PLW 2005
## 12556                                                Palau    PW   PLW 2004
## 12557                                                Palau    PW   PLW 2003
## 12558                                                Palau    PW   PLW 2002
## 12559                                                Palau    PW   PLW 2001
## 12560                                                Palau    PW   PLW 2000
## 12561                                                Palau    PW   PLW 1999
## 12562                                                Palau    PW   PLW 1998
## 12563                                                Palau    PW   PLW 1997
## 12564                                                Palau    PW   PLW 1996
## 12565                                                Palau    PW   PLW 1995
## 12566                                                Palau    PW   PLW 1994
## 12567                                                Palau    PW   PLW 1993
## 12568                                                Palau    PW   PLW 1992
## 12569                                                Palau    PW   PLW 1991
## 12570                                                Palau    PW   PLW 1990
## 12571                                                Palau    PW   PLW 1989
## 12572                                                Palau    PW   PLW 1988
## 12573                                                Palau    PW   PLW 1987
## 12574                                                Palau    PW   PLW 1986
## 12575                                                Palau    PW   PLW 1985
## 12576                                                Palau    PW   PLW 1984
## 12577                                                Palau    PW   PLW 1983
## 12578                                                Palau    PW   PLW 1982
## 12579                                                Palau    PW   PLW 1981
## 12580                                                Palau    PW   PLW 1980
## 12581                                                Palau    PW   PLW 1979
## 12582                                                Palau    PW   PLW 1978
## 12583                                                Palau    PW   PLW 1977
## 12584                                                Palau    PW   PLW 1976
## 12585                                                Palau    PW   PLW 1975
## 12586                                                Palau    PW   PLW 1974
## 12587                                                Palau    PW   PLW 1973
## 12588                                                Palau    PW   PLW 1972
## 12589                                                Palau    PW   PLW 1971
## 12590                                                Palau    PW   PLW 1970
## 12591                                                Palau    PW   PLW 1969
## 12592                                                Palau    PW   PLW 1968
## 12593                                                Palau    PW   PLW 1967
## 12594                                                Palau    PW   PLW 1966
## 12595                                                Palau    PW   PLW 1965
## 12596                                                Palau    PW   PLW 1964
## 12597                                                Palau    PW   PLW 1963
## 12598                                                Palau    PW   PLW 1962
## 12599                                                Palau    PW   PLW 1961
## 12600                                                Palau    PW   PLW 1960
## 12601                                               Panama    PA   PAN 2022
## 12602                                               Panama    PA   PAN 2021
## 12603                                               Panama    PA   PAN 2020
## 12604                                               Panama    PA   PAN 2019
## 12605                                               Panama    PA   PAN 2018
## 12606                                               Panama    PA   PAN 2017
## 12607                                               Panama    PA   PAN 2016
## 12608                                               Panama    PA   PAN 2015
## 12609                                               Panama    PA   PAN 2014
## 12610                                               Panama    PA   PAN 2013
## 12611                                               Panama    PA   PAN 2012
## 12612                                               Panama    PA   PAN 2011
## 12613                                               Panama    PA   PAN 2010
## 12614                                               Panama    PA   PAN 2009
## 12615                                               Panama    PA   PAN 2008
## 12616                                               Panama    PA   PAN 2007
## 12617                                               Panama    PA   PAN 2006
## 12618                                               Panama    PA   PAN 2005
## 12619                                               Panama    PA   PAN 2004
## 12620                                               Panama    PA   PAN 2003
## 12621                                               Panama    PA   PAN 2002
## 12622                                               Panama    PA   PAN 2001
## 12623                                               Panama    PA   PAN 2000
## 12624                                               Panama    PA   PAN 1999
## 12625                                               Panama    PA   PAN 1998
## 12626                                               Panama    PA   PAN 1997
## 12627                                               Panama    PA   PAN 1996
## 12628                                               Panama    PA   PAN 1995
## 12629                                               Panama    PA   PAN 1994
## 12630                                               Panama    PA   PAN 1993
## 12631                                               Panama    PA   PAN 1992
## 12632                                               Panama    PA   PAN 1991
## 12633                                               Panama    PA   PAN 1990
## 12634                                               Panama    PA   PAN 1989
## 12635                                               Panama    PA   PAN 1988
## 12636                                               Panama    PA   PAN 1987
## 12637                                               Panama    PA   PAN 1986
## 12638                                               Panama    PA   PAN 1985
## 12639                                               Panama    PA   PAN 1984
## 12640                                               Panama    PA   PAN 1983
## 12641                                               Panama    PA   PAN 1982
## 12642                                               Panama    PA   PAN 1981
## 12643                                               Panama    PA   PAN 1980
## 12644                                               Panama    PA   PAN 1979
## 12645                                               Panama    PA   PAN 1978
## 12646                                               Panama    PA   PAN 1977
## 12647                                               Panama    PA   PAN 1976
## 12648                                               Panama    PA   PAN 1975
## 12649                                               Panama    PA   PAN 1974
## 12650                                               Panama    PA   PAN 1973
## 12651                                               Panama    PA   PAN 1972
## 12652                                               Panama    PA   PAN 1971
## 12653                                               Panama    PA   PAN 1970
## 12654                                               Panama    PA   PAN 1969
## 12655                                               Panama    PA   PAN 1968
## 12656                                               Panama    PA   PAN 1967
## 12657                                               Panama    PA   PAN 1966
## 12658                                               Panama    PA   PAN 1965
## 12659                                               Panama    PA   PAN 1964
## 12660                                               Panama    PA   PAN 1963
## 12661                                               Panama    PA   PAN 1962
## 12662                                               Panama    PA   PAN 1961
## 12663                                               Panama    PA   PAN 1960
## 12664                                     Papua New Guinea    PG   PNG 2022
## 12665                                     Papua New Guinea    PG   PNG 2021
## 12666                                     Papua New Guinea    PG   PNG 2020
## 12667                                     Papua New Guinea    PG   PNG 2019
## 12668                                     Papua New Guinea    PG   PNG 2018
## 12669                                     Papua New Guinea    PG   PNG 2017
## 12670                                     Papua New Guinea    PG   PNG 2016
## 12671                                     Papua New Guinea    PG   PNG 2015
## 12672                                     Papua New Guinea    PG   PNG 2014
## 12673                                     Papua New Guinea    PG   PNG 2013
## 12674                                     Papua New Guinea    PG   PNG 2012
## 12675                                     Papua New Guinea    PG   PNG 2011
## 12676                                     Papua New Guinea    PG   PNG 2010
## 12677                                     Papua New Guinea    PG   PNG 2009
## 12678                                     Papua New Guinea    PG   PNG 2008
## 12679                                     Papua New Guinea    PG   PNG 2007
## 12680                                     Papua New Guinea    PG   PNG 2006
## 12681                                     Papua New Guinea    PG   PNG 2005
## 12682                                     Papua New Guinea    PG   PNG 2004
## 12683                                     Papua New Guinea    PG   PNG 2003
## 12684                                     Papua New Guinea    PG   PNG 2002
## 12685                                     Papua New Guinea    PG   PNG 2001
## 12686                                     Papua New Guinea    PG   PNG 2000
## 12687                                     Papua New Guinea    PG   PNG 1999
## 12688                                     Papua New Guinea    PG   PNG 1998
## 12689                                     Papua New Guinea    PG   PNG 1997
## 12690                                     Papua New Guinea    PG   PNG 1996
## 12691                                     Papua New Guinea    PG   PNG 1995
## 12692                                     Papua New Guinea    PG   PNG 1994
## 12693                                     Papua New Guinea    PG   PNG 1993
## 12694                                     Papua New Guinea    PG   PNG 1992
## 12695                                     Papua New Guinea    PG   PNG 1991
## 12696                                     Papua New Guinea    PG   PNG 1990
## 12697                                     Papua New Guinea    PG   PNG 1989
## 12698                                     Papua New Guinea    PG   PNG 1988
## 12699                                     Papua New Guinea    PG   PNG 1987
## 12700                                     Papua New Guinea    PG   PNG 1986
## 12701                                     Papua New Guinea    PG   PNG 1985
## 12702                                     Papua New Guinea    PG   PNG 1984
## 12703                                     Papua New Guinea    PG   PNG 1983
## 12704                                     Papua New Guinea    PG   PNG 1982
## 12705                                     Papua New Guinea    PG   PNG 1981
## 12706                                     Papua New Guinea    PG   PNG 1980
## 12707                                     Papua New Guinea    PG   PNG 1979
## 12708                                     Papua New Guinea    PG   PNG 1978
## 12709                                     Papua New Guinea    PG   PNG 1977
## 12710                                     Papua New Guinea    PG   PNG 1976
## 12711                                     Papua New Guinea    PG   PNG 1975
## 12712                                     Papua New Guinea    PG   PNG 1974
## 12713                                     Papua New Guinea    PG   PNG 1973
## 12714                                     Papua New Guinea    PG   PNG 1972
## 12715                                     Papua New Guinea    PG   PNG 1971
## 12716                                     Papua New Guinea    PG   PNG 1970
## 12717                                     Papua New Guinea    PG   PNG 1969
## 12718                                     Papua New Guinea    PG   PNG 1968
## 12719                                     Papua New Guinea    PG   PNG 1967
## 12720                                     Papua New Guinea    PG   PNG 1966
## 12721                                     Papua New Guinea    PG   PNG 1965
## 12722                                     Papua New Guinea    PG   PNG 1964
## 12723                                     Papua New Guinea    PG   PNG 1963
## 12724                                     Papua New Guinea    PG   PNG 1962
## 12725                                     Papua New Guinea    PG   PNG 1961
## 12726                                     Papua New Guinea    PG   PNG 1960
## 12727                                             Paraguay    PY   PRY 2022
## 12728                                             Paraguay    PY   PRY 2021
## 12729                                             Paraguay    PY   PRY 2020
## 12730                                             Paraguay    PY   PRY 2019
## 12731                                             Paraguay    PY   PRY 2018
## 12732                                             Paraguay    PY   PRY 2017
## 12733                                             Paraguay    PY   PRY 2016
## 12734                                             Paraguay    PY   PRY 2015
## 12735                                             Paraguay    PY   PRY 2014
## 12736                                             Paraguay    PY   PRY 2013
## 12737                                             Paraguay    PY   PRY 2012
## 12738                                             Paraguay    PY   PRY 2011
## 12739                                             Paraguay    PY   PRY 2010
## 12740                                             Paraguay    PY   PRY 2009
## 12741                                             Paraguay    PY   PRY 2008
## 12742                                             Paraguay    PY   PRY 2007
## 12743                                             Paraguay    PY   PRY 2006
## 12744                                             Paraguay    PY   PRY 2005
## 12745                                             Paraguay    PY   PRY 2004
## 12746                                             Paraguay    PY   PRY 2003
## 12747                                             Paraguay    PY   PRY 2002
## 12748                                             Paraguay    PY   PRY 2001
## 12749                                             Paraguay    PY   PRY 2000
## 12750                                             Paraguay    PY   PRY 1999
## 12751                                             Paraguay    PY   PRY 1998
## 12752                                             Paraguay    PY   PRY 1997
## 12753                                             Paraguay    PY   PRY 1996
## 12754                                             Paraguay    PY   PRY 1995
## 12755                                             Paraguay    PY   PRY 1994
## 12756                                             Paraguay    PY   PRY 1993
## 12757                                             Paraguay    PY   PRY 1992
## 12758                                             Paraguay    PY   PRY 1991
## 12759                                             Paraguay    PY   PRY 1990
## 12760                                             Paraguay    PY   PRY 1989
## 12761                                             Paraguay    PY   PRY 1988
## 12762                                             Paraguay    PY   PRY 1987
## 12763                                             Paraguay    PY   PRY 1986
## 12764                                             Paraguay    PY   PRY 1985
## 12765                                             Paraguay    PY   PRY 1984
## 12766                                             Paraguay    PY   PRY 1983
## 12767                                             Paraguay    PY   PRY 1982
## 12768                                             Paraguay    PY   PRY 1981
## 12769                                             Paraguay    PY   PRY 1980
## 12770                                             Paraguay    PY   PRY 1979
## 12771                                             Paraguay    PY   PRY 1978
## 12772                                             Paraguay    PY   PRY 1977
## 12773                                             Paraguay    PY   PRY 1976
## 12774                                             Paraguay    PY   PRY 1975
## 12775                                             Paraguay    PY   PRY 1974
## 12776                                             Paraguay    PY   PRY 1973
## 12777                                             Paraguay    PY   PRY 1972
## 12778                                             Paraguay    PY   PRY 1971
## 12779                                             Paraguay    PY   PRY 1970
## 12780                                             Paraguay    PY   PRY 1969
## 12781                                             Paraguay    PY   PRY 1968
## 12782                                             Paraguay    PY   PRY 1967
## 12783                                             Paraguay    PY   PRY 1966
## 12784                                             Paraguay    PY   PRY 1965
## 12785                                             Paraguay    PY   PRY 1964
## 12786                                             Paraguay    PY   PRY 1963
## 12787                                             Paraguay    PY   PRY 1962
## 12788                                             Paraguay    PY   PRY 1961
## 12789                                             Paraguay    PY   PRY 1960
## 12790                                                 Peru    PE   PER 2022
## 12791                                                 Peru    PE   PER 2021
## 12792                                                 Peru    PE   PER 2020
## 12793                                                 Peru    PE   PER 2019
## 12794                                                 Peru    PE   PER 2018
## 12795                                                 Peru    PE   PER 2017
## 12796                                                 Peru    PE   PER 2016
## 12797                                                 Peru    PE   PER 2015
## 12798                                                 Peru    PE   PER 2014
## 12799                                                 Peru    PE   PER 2013
## 12800                                                 Peru    PE   PER 2012
## 12801                                                 Peru    PE   PER 2011
## 12802                                                 Peru    PE   PER 2010
## 12803                                                 Peru    PE   PER 2009
## 12804                                                 Peru    PE   PER 2008
## 12805                                                 Peru    PE   PER 2007
## 12806                                                 Peru    PE   PER 2006
## 12807                                                 Peru    PE   PER 2005
## 12808                                                 Peru    PE   PER 2004
## 12809                                                 Peru    PE   PER 2003
## 12810                                                 Peru    PE   PER 2002
## 12811                                                 Peru    PE   PER 2001
## 12812                                                 Peru    PE   PER 2000
## 12813                                                 Peru    PE   PER 1999
## 12814                                                 Peru    PE   PER 1998
## 12815                                                 Peru    PE   PER 1997
## 12816                                                 Peru    PE   PER 1996
## 12817                                                 Peru    PE   PER 1995
## 12818                                                 Peru    PE   PER 1994
## 12819                                                 Peru    PE   PER 1993
## 12820                                                 Peru    PE   PER 1992
## 12821                                                 Peru    PE   PER 1991
## 12822                                                 Peru    PE   PER 1990
## 12823                                                 Peru    PE   PER 1989
## 12824                                                 Peru    PE   PER 1988
## 12825                                                 Peru    PE   PER 1987
## 12826                                                 Peru    PE   PER 1986
## 12827                                                 Peru    PE   PER 1985
## 12828                                                 Peru    PE   PER 1984
## 12829                                                 Peru    PE   PER 1983
## 12830                                                 Peru    PE   PER 1982
## 12831                                                 Peru    PE   PER 1981
## 12832                                                 Peru    PE   PER 1980
## 12833                                                 Peru    PE   PER 1979
## 12834                                                 Peru    PE   PER 1978
## 12835                                                 Peru    PE   PER 1977
## 12836                                                 Peru    PE   PER 1976
## 12837                                                 Peru    PE   PER 1975
## 12838                                                 Peru    PE   PER 1974
## 12839                                                 Peru    PE   PER 1973
## 12840                                                 Peru    PE   PER 1972
## 12841                                                 Peru    PE   PER 1971
## 12842                                                 Peru    PE   PER 1970
## 12843                                                 Peru    PE   PER 1969
## 12844                                                 Peru    PE   PER 1968
## 12845                                                 Peru    PE   PER 1967
## 12846                                                 Peru    PE   PER 1966
## 12847                                                 Peru    PE   PER 1965
## 12848                                                 Peru    PE   PER 1964
## 12849                                                 Peru    PE   PER 1963
## 12850                                                 Peru    PE   PER 1962
## 12851                                                 Peru    PE   PER 1961
## 12852                                                 Peru    PE   PER 1960
## 12853                                          Philippines    PH   PHL 2022
## 12854                                          Philippines    PH   PHL 2021
## 12855                                          Philippines    PH   PHL 2020
## 12856                                          Philippines    PH   PHL 2019
## 12857                                          Philippines    PH   PHL 2018
## 12858                                          Philippines    PH   PHL 2017
## 12859                                          Philippines    PH   PHL 2016
## 12860                                          Philippines    PH   PHL 2015
## 12861                                          Philippines    PH   PHL 2014
## 12862                                          Philippines    PH   PHL 2013
## 12863                                          Philippines    PH   PHL 2012
## 12864                                          Philippines    PH   PHL 2011
## 12865                                          Philippines    PH   PHL 2010
## 12866                                          Philippines    PH   PHL 2009
## 12867                                          Philippines    PH   PHL 2008
## 12868                                          Philippines    PH   PHL 2007
## 12869                                          Philippines    PH   PHL 2006
## 12870                                          Philippines    PH   PHL 2005
## 12871                                          Philippines    PH   PHL 2004
## 12872                                          Philippines    PH   PHL 2003
## 12873                                          Philippines    PH   PHL 2002
## 12874                                          Philippines    PH   PHL 2001
## 12875                                          Philippines    PH   PHL 2000
## 12876                                          Philippines    PH   PHL 1999
## 12877                                          Philippines    PH   PHL 1998
## 12878                                          Philippines    PH   PHL 1997
## 12879                                          Philippines    PH   PHL 1996
## 12880                                          Philippines    PH   PHL 1995
## 12881                                          Philippines    PH   PHL 1994
## 12882                                          Philippines    PH   PHL 1993
## 12883                                          Philippines    PH   PHL 1992
## 12884                                          Philippines    PH   PHL 1991
## 12885                                          Philippines    PH   PHL 1990
## 12886                                          Philippines    PH   PHL 1989
## 12887                                          Philippines    PH   PHL 1988
## 12888                                          Philippines    PH   PHL 1987
## 12889                                          Philippines    PH   PHL 1986
## 12890                                          Philippines    PH   PHL 1985
## 12891                                          Philippines    PH   PHL 1984
## 12892                                          Philippines    PH   PHL 1983
## 12893                                          Philippines    PH   PHL 1982
## 12894                                          Philippines    PH   PHL 1981
## 12895                                          Philippines    PH   PHL 1980
## 12896                                          Philippines    PH   PHL 1979
## 12897                                          Philippines    PH   PHL 1978
## 12898                                          Philippines    PH   PHL 1977
## 12899                                          Philippines    PH   PHL 1976
## 12900                                          Philippines    PH   PHL 1975
## 12901                                          Philippines    PH   PHL 1974
## 12902                                          Philippines    PH   PHL 1973
## 12903                                          Philippines    PH   PHL 1972
## 12904                                          Philippines    PH   PHL 1971
## 12905                                          Philippines    PH   PHL 1970
## 12906                                          Philippines    PH   PHL 1969
## 12907                                          Philippines    PH   PHL 1968
## 12908                                          Philippines    PH   PHL 1967
## 12909                                          Philippines    PH   PHL 1966
## 12910                                          Philippines    PH   PHL 1965
## 12911                                          Philippines    PH   PHL 1964
## 12912                                          Philippines    PH   PHL 1963
## 12913                                          Philippines    PH   PHL 1962
## 12914                                          Philippines    PH   PHL 1961
## 12915                                          Philippines    PH   PHL 1960
## 12916                                               Poland    PL   POL 2022
## 12917                                               Poland    PL   POL 2021
## 12918                                               Poland    PL   POL 2020
## 12919                                               Poland    PL   POL 2019
## 12920                                               Poland    PL   POL 2018
## 12921                                               Poland    PL   POL 2017
## 12922                                               Poland    PL   POL 2016
## 12923                                               Poland    PL   POL 2015
## 12924                                               Poland    PL   POL 2014
## 12925                                               Poland    PL   POL 2013
## 12926                                               Poland    PL   POL 2012
## 12927                                               Poland    PL   POL 2011
## 12928                                               Poland    PL   POL 2010
## 12929                                               Poland    PL   POL 2009
## 12930                                               Poland    PL   POL 2008
## 12931                                               Poland    PL   POL 2007
## 12932                                               Poland    PL   POL 2006
## 12933                                               Poland    PL   POL 2005
## 12934                                               Poland    PL   POL 2004
## 12935                                               Poland    PL   POL 2003
## 12936                                               Poland    PL   POL 2002
## 12937                                               Poland    PL   POL 2001
## 12938                                               Poland    PL   POL 2000
## 12939                                               Poland    PL   POL 1999
## 12940                                               Poland    PL   POL 1998
## 12941                                               Poland    PL   POL 1997
## 12942                                               Poland    PL   POL 1996
## 12943                                               Poland    PL   POL 1995
## 12944                                               Poland    PL   POL 1994
## 12945                                               Poland    PL   POL 1993
## 12946                                               Poland    PL   POL 1992
## 12947                                               Poland    PL   POL 1991
## 12948                                               Poland    PL   POL 1990
## 12949                                               Poland    PL   POL 1989
## 12950                                               Poland    PL   POL 1988
## 12951                                               Poland    PL   POL 1987
## 12952                                               Poland    PL   POL 1986
## 12953                                               Poland    PL   POL 1985
## 12954                                               Poland    PL   POL 1984
## 12955                                               Poland    PL   POL 1983
## 12956                                               Poland    PL   POL 1982
## 12957                                               Poland    PL   POL 1981
## 12958                                               Poland    PL   POL 1980
## 12959                                               Poland    PL   POL 1979
## 12960                                               Poland    PL   POL 1978
## 12961                                               Poland    PL   POL 1977
## 12962                                               Poland    PL   POL 1976
## 12963                                               Poland    PL   POL 1975
## 12964                                               Poland    PL   POL 1974
## 12965                                               Poland    PL   POL 1973
## 12966                                               Poland    PL   POL 1972
## 12967                                               Poland    PL   POL 1971
## 12968                                               Poland    PL   POL 1970
## 12969                                               Poland    PL   POL 1969
## 12970                                               Poland    PL   POL 1968
## 12971                                               Poland    PL   POL 1967
## 12972                                               Poland    PL   POL 1966
## 12973                                               Poland    PL   POL 1965
## 12974                                               Poland    PL   POL 1964
## 12975                                               Poland    PL   POL 1963
## 12976                                               Poland    PL   POL 1962
## 12977                                               Poland    PL   POL 1961
## 12978                                               Poland    PL   POL 1960
## 12979                                             Portugal    PT   PRT 2022
## 12980                                             Portugal    PT   PRT 2021
## 12981                                             Portugal    PT   PRT 2020
## 12982                                             Portugal    PT   PRT 2019
## 12983                                             Portugal    PT   PRT 2018
## 12984                                             Portugal    PT   PRT 2017
## 12985                                             Portugal    PT   PRT 2016
## 12986                                             Portugal    PT   PRT 2015
## 12987                                             Portugal    PT   PRT 2014
## 12988                                             Portugal    PT   PRT 2013
## 12989                                             Portugal    PT   PRT 2012
## 12990                                             Portugal    PT   PRT 2011
## 12991                                             Portugal    PT   PRT 2010
## 12992                                             Portugal    PT   PRT 2009
## 12993                                             Portugal    PT   PRT 2008
## 12994                                             Portugal    PT   PRT 2007
## 12995                                             Portugal    PT   PRT 2006
## 12996                                             Portugal    PT   PRT 2005
## 12997                                             Portugal    PT   PRT 2004
## 12998                                             Portugal    PT   PRT 2003
## 12999                                             Portugal    PT   PRT 2002
## 13000                                             Portugal    PT   PRT 2001
## 13001                                             Portugal    PT   PRT 2000
## 13002                                             Portugal    PT   PRT 1999
## 13003                                             Portugal    PT   PRT 1998
## 13004                                             Portugal    PT   PRT 1997
## 13005                                             Portugal    PT   PRT 1996
## 13006                                             Portugal    PT   PRT 1995
## 13007                                             Portugal    PT   PRT 1994
## 13008                                             Portugal    PT   PRT 1993
## 13009                                             Portugal    PT   PRT 1992
## 13010                                             Portugal    PT   PRT 1991
## 13011                                             Portugal    PT   PRT 1990
## 13012                                             Portugal    PT   PRT 1989
## 13013                                             Portugal    PT   PRT 1988
## 13014                                             Portugal    PT   PRT 1987
## 13015                                             Portugal    PT   PRT 1986
## 13016                                             Portugal    PT   PRT 1985
## 13017                                             Portugal    PT   PRT 1984
## 13018                                             Portugal    PT   PRT 1983
## 13019                                             Portugal    PT   PRT 1982
## 13020                                             Portugal    PT   PRT 1981
## 13021                                             Portugal    PT   PRT 1980
## 13022                                             Portugal    PT   PRT 1979
## 13023                                             Portugal    PT   PRT 1978
## 13024                                             Portugal    PT   PRT 1977
## 13025                                             Portugal    PT   PRT 1976
## 13026                                             Portugal    PT   PRT 1975
## 13027                                             Portugal    PT   PRT 1974
## 13028                                             Portugal    PT   PRT 1973
## 13029                                             Portugal    PT   PRT 1972
## 13030                                             Portugal    PT   PRT 1971
## 13031                                             Portugal    PT   PRT 1970
## 13032                                             Portugal    PT   PRT 1969
## 13033                                             Portugal    PT   PRT 1968
## 13034                                             Portugal    PT   PRT 1967
## 13035                                             Portugal    PT   PRT 1966
## 13036                                             Portugal    PT   PRT 1965
## 13037                                             Portugal    PT   PRT 1964
## 13038                                             Portugal    PT   PRT 1963
## 13039                                             Portugal    PT   PRT 1962
## 13040                                             Portugal    PT   PRT 1961
## 13041                                             Portugal    PT   PRT 1960
## 13042                                          Puerto Rico    PR   PRI 2022
## 13043                                          Puerto Rico    PR   PRI 2021
## 13044                                          Puerto Rico    PR   PRI 2020
## 13045                                          Puerto Rico    PR   PRI 2019
## 13046                                          Puerto Rico    PR   PRI 2018
## 13047                                          Puerto Rico    PR   PRI 2017
## 13048                                          Puerto Rico    PR   PRI 2016
## 13049                                          Puerto Rico    PR   PRI 2015
## 13050                                          Puerto Rico    PR   PRI 2014
## 13051                                          Puerto Rico    PR   PRI 2013
## 13052                                          Puerto Rico    PR   PRI 2012
## 13053                                          Puerto Rico    PR   PRI 2011
## 13054                                          Puerto Rico    PR   PRI 2010
## 13055                                          Puerto Rico    PR   PRI 2009
## 13056                                          Puerto Rico    PR   PRI 2008
## 13057                                          Puerto Rico    PR   PRI 2007
## 13058                                          Puerto Rico    PR   PRI 2006
## 13059                                          Puerto Rico    PR   PRI 2005
## 13060                                          Puerto Rico    PR   PRI 2004
## 13061                                          Puerto Rico    PR   PRI 2003
## 13062                                          Puerto Rico    PR   PRI 2002
## 13063                                          Puerto Rico    PR   PRI 2001
## 13064                                          Puerto Rico    PR   PRI 2000
## 13065                                          Puerto Rico    PR   PRI 1999
## 13066                                          Puerto Rico    PR   PRI 1998
## 13067                                          Puerto Rico    PR   PRI 1997
## 13068                                          Puerto Rico    PR   PRI 1996
## 13069                                          Puerto Rico    PR   PRI 1995
## 13070                                          Puerto Rico    PR   PRI 1994
## 13071                                          Puerto Rico    PR   PRI 1993
## 13072                                          Puerto Rico    PR   PRI 1992
## 13073                                          Puerto Rico    PR   PRI 1991
## 13074                                          Puerto Rico    PR   PRI 1990
## 13075                                          Puerto Rico    PR   PRI 1989
## 13076                                          Puerto Rico    PR   PRI 1988
## 13077                                          Puerto Rico    PR   PRI 1987
## 13078                                          Puerto Rico    PR   PRI 1986
## 13079                                          Puerto Rico    PR   PRI 1985
## 13080                                          Puerto Rico    PR   PRI 1984
## 13081                                          Puerto Rico    PR   PRI 1983
## 13082                                          Puerto Rico    PR   PRI 1982
## 13083                                          Puerto Rico    PR   PRI 1981
## 13084                                          Puerto Rico    PR   PRI 1980
## 13085                                          Puerto Rico    PR   PRI 1979
## 13086                                          Puerto Rico    PR   PRI 1978
## 13087                                          Puerto Rico    PR   PRI 1977
## 13088                                          Puerto Rico    PR   PRI 1976
## 13089                                          Puerto Rico    PR   PRI 1975
## 13090                                          Puerto Rico    PR   PRI 1974
## 13091                                          Puerto Rico    PR   PRI 1973
## 13092                                          Puerto Rico    PR   PRI 1972
## 13093                                          Puerto Rico    PR   PRI 1971
## 13094                                          Puerto Rico    PR   PRI 1970
## 13095                                          Puerto Rico    PR   PRI 1969
## 13096                                          Puerto Rico    PR   PRI 1968
## 13097                                          Puerto Rico    PR   PRI 1967
## 13098                                          Puerto Rico    PR   PRI 1966
## 13099                                          Puerto Rico    PR   PRI 1965
## 13100                                          Puerto Rico    PR   PRI 1964
## 13101                                          Puerto Rico    PR   PRI 1963
## 13102                                          Puerto Rico    PR   PRI 1962
## 13103                                          Puerto Rico    PR   PRI 1961
## 13104                                          Puerto Rico    PR   PRI 1960
## 13105                                                Qatar    QA   QAT 2022
## 13106                                                Qatar    QA   QAT 2021
## 13107                                                Qatar    QA   QAT 2020
## 13108                                                Qatar    QA   QAT 2019
## 13109                                                Qatar    QA   QAT 2018
## 13110                                                Qatar    QA   QAT 2017
## 13111                                                Qatar    QA   QAT 2016
## 13112                                                Qatar    QA   QAT 2015
## 13113                                                Qatar    QA   QAT 2014
## 13114                                                Qatar    QA   QAT 2013
## 13115                                                Qatar    QA   QAT 2012
## 13116                                                Qatar    QA   QAT 2011
## 13117                                                Qatar    QA   QAT 2010
## 13118                                                Qatar    QA   QAT 2009
## 13119                                                Qatar    QA   QAT 2008
## 13120                                                Qatar    QA   QAT 2007
## 13121                                                Qatar    QA   QAT 2006
## 13122                                                Qatar    QA   QAT 2005
## 13123                                                Qatar    QA   QAT 2004
## 13124                                                Qatar    QA   QAT 2003
## 13125                                                Qatar    QA   QAT 2002
## 13126                                                Qatar    QA   QAT 2001
## 13127                                                Qatar    QA   QAT 2000
## 13128                                                Qatar    QA   QAT 1999
## 13129                                                Qatar    QA   QAT 1998
## 13130                                                Qatar    QA   QAT 1997
## 13131                                                Qatar    QA   QAT 1996
## 13132                                                Qatar    QA   QAT 1995
## 13133                                                Qatar    QA   QAT 1994
## 13134                                                Qatar    QA   QAT 1993
## 13135                                                Qatar    QA   QAT 1992
## 13136                                                Qatar    QA   QAT 1991
## 13137                                                Qatar    QA   QAT 1990
## 13138                                                Qatar    QA   QAT 1989
## 13139                                                Qatar    QA   QAT 1988
## 13140                                                Qatar    QA   QAT 1987
## 13141                                                Qatar    QA   QAT 1986
## 13142                                                Qatar    QA   QAT 1985
## 13143                                                Qatar    QA   QAT 1984
## 13144                                                Qatar    QA   QAT 1983
## 13145                                                Qatar    QA   QAT 1982
## 13146                                                Qatar    QA   QAT 1981
## 13147                                                Qatar    QA   QAT 1980
## 13148                                                Qatar    QA   QAT 1979
## 13149                                                Qatar    QA   QAT 1978
## 13150                                                Qatar    QA   QAT 1977
## 13151                                                Qatar    QA   QAT 1976
## 13152                                                Qatar    QA   QAT 1975
## 13153                                                Qatar    QA   QAT 1974
## 13154                                                Qatar    QA   QAT 1973
## 13155                                                Qatar    QA   QAT 1972
## 13156                                                Qatar    QA   QAT 1971
## 13157                                                Qatar    QA   QAT 1970
## 13158                                                Qatar    QA   QAT 1969
## 13159                                                Qatar    QA   QAT 1968
## 13160                                                Qatar    QA   QAT 1967
## 13161                                                Qatar    QA   QAT 1966
## 13162                                                Qatar    QA   QAT 1965
## 13163                                                Qatar    QA   QAT 1964
## 13164                                                Qatar    QA   QAT 1963
## 13165                                                Qatar    QA   QAT 1962
## 13166                                                Qatar    QA   QAT 1961
## 13167                                                Qatar    QA   QAT 1960
## 13168                                              Romania    RO   ROU 2022
## 13169                                              Romania    RO   ROU 2021
## 13170                                              Romania    RO   ROU 2020
## 13171                                              Romania    RO   ROU 2019
## 13172                                              Romania    RO   ROU 2018
## 13173                                              Romania    RO   ROU 2017
## 13174                                              Romania    RO   ROU 2016
## 13175                                              Romania    RO   ROU 2015
## 13176                                              Romania    RO   ROU 2014
## 13177                                              Romania    RO   ROU 2013
## 13178                                              Romania    RO   ROU 2012
## 13179                                              Romania    RO   ROU 2011
## 13180                                              Romania    RO   ROU 2010
## 13181                                              Romania    RO   ROU 2009
## 13182                                              Romania    RO   ROU 2008
## 13183                                              Romania    RO   ROU 2007
## 13184                                              Romania    RO   ROU 2006
## 13185                                              Romania    RO   ROU 2005
## 13186                                              Romania    RO   ROU 2004
## 13187                                              Romania    RO   ROU 2003
## 13188                                              Romania    RO   ROU 2002
## 13189                                              Romania    RO   ROU 2001
## 13190                                              Romania    RO   ROU 2000
## 13191                                              Romania    RO   ROU 1999
## 13192                                              Romania    RO   ROU 1998
## 13193                                              Romania    RO   ROU 1997
## 13194                                              Romania    RO   ROU 1996
## 13195                                              Romania    RO   ROU 1995
## 13196                                              Romania    RO   ROU 1994
## 13197                                              Romania    RO   ROU 1993
## 13198                                              Romania    RO   ROU 1992
## 13199                                              Romania    RO   ROU 1991
## 13200                                              Romania    RO   ROU 1990
## 13201                                              Romania    RO   ROU 1989
## 13202                                              Romania    RO   ROU 1988
## 13203                                              Romania    RO   ROU 1987
## 13204                                              Romania    RO   ROU 1986
## 13205                                              Romania    RO   ROU 1985
## 13206                                              Romania    RO   ROU 1984
## 13207                                              Romania    RO   ROU 1983
## 13208                                              Romania    RO   ROU 1982
## 13209                                              Romania    RO   ROU 1981
## 13210                                              Romania    RO   ROU 1980
## 13211                                              Romania    RO   ROU 1979
## 13212                                              Romania    RO   ROU 1978
## 13213                                              Romania    RO   ROU 1977
## 13214                                              Romania    RO   ROU 1976
## 13215                                              Romania    RO   ROU 1975
## 13216                                              Romania    RO   ROU 1974
## 13217                                              Romania    RO   ROU 1973
## 13218                                              Romania    RO   ROU 1972
## 13219                                              Romania    RO   ROU 1971
## 13220                                              Romania    RO   ROU 1970
## 13221                                              Romania    RO   ROU 1969
## 13222                                              Romania    RO   ROU 1968
## 13223                                              Romania    RO   ROU 1967
## 13224                                              Romania    RO   ROU 1966
## 13225                                              Romania    RO   ROU 1965
## 13226                                              Romania    RO   ROU 1964
## 13227                                              Romania    RO   ROU 1963
## 13228                                              Romania    RO   ROU 1962
## 13229                                              Romania    RO   ROU 1961
## 13230                                              Romania    RO   ROU 1960
## 13231                                   Russian Federation    RU   RUS 2022
## 13232                                   Russian Federation    RU   RUS 2021
## 13233                                   Russian Federation    RU   RUS 2020
## 13234                                   Russian Federation    RU   RUS 2019
## 13235                                   Russian Federation    RU   RUS 2018
## 13236                                   Russian Federation    RU   RUS 2017
## 13237                                   Russian Federation    RU   RUS 2016
## 13238                                   Russian Federation    RU   RUS 2015
## 13239                                   Russian Federation    RU   RUS 2014
## 13240                                   Russian Federation    RU   RUS 2013
## 13241                                   Russian Federation    RU   RUS 2012
## 13242                                   Russian Federation    RU   RUS 2011
## 13243                                   Russian Federation    RU   RUS 2010
## 13244                                   Russian Federation    RU   RUS 2009
## 13245                                   Russian Federation    RU   RUS 2008
## 13246                                   Russian Federation    RU   RUS 2007
## 13247                                   Russian Federation    RU   RUS 2006
## 13248                                   Russian Federation    RU   RUS 2005
## 13249                                   Russian Federation    RU   RUS 2004
## 13250                                   Russian Federation    RU   RUS 2003
## 13251                                   Russian Federation    RU   RUS 2002
## 13252                                   Russian Federation    RU   RUS 2001
## 13253                                   Russian Federation    RU   RUS 2000
## 13254                                   Russian Federation    RU   RUS 1999
## 13255                                   Russian Federation    RU   RUS 1998
## 13256                                   Russian Federation    RU   RUS 1997
## 13257                                   Russian Federation    RU   RUS 1996
## 13258                                   Russian Federation    RU   RUS 1995
## 13259                                   Russian Federation    RU   RUS 1994
## 13260                                   Russian Federation    RU   RUS 1993
## 13261                                   Russian Federation    RU   RUS 1992
## 13262                                   Russian Federation    RU   RUS 1991
## 13263                                   Russian Federation    RU   RUS 1990
## 13264                                   Russian Federation    RU   RUS 1989
## 13265                                   Russian Federation    RU   RUS 1988
## 13266                                   Russian Federation    RU   RUS 1987
## 13267                                   Russian Federation    RU   RUS 1986
## 13268                                   Russian Federation    RU   RUS 1985
## 13269                                   Russian Federation    RU   RUS 1984
## 13270                                   Russian Federation    RU   RUS 1983
## 13271                                   Russian Federation    RU   RUS 1982
## 13272                                   Russian Federation    RU   RUS 1981
## 13273                                   Russian Federation    RU   RUS 1980
## 13274                                   Russian Federation    RU   RUS 1979
## 13275                                   Russian Federation    RU   RUS 1978
## 13276                                   Russian Federation    RU   RUS 1977
## 13277                                   Russian Federation    RU   RUS 1976
## 13278                                   Russian Federation    RU   RUS 1975
## 13279                                   Russian Federation    RU   RUS 1974
## 13280                                   Russian Federation    RU   RUS 1973
## 13281                                   Russian Federation    RU   RUS 1972
## 13282                                   Russian Federation    RU   RUS 1971
## 13283                                   Russian Federation    RU   RUS 1970
## 13284                                   Russian Federation    RU   RUS 1969
## 13285                                   Russian Federation    RU   RUS 1968
## 13286                                   Russian Federation    RU   RUS 1967
## 13287                                   Russian Federation    RU   RUS 1966
## 13288                                   Russian Federation    RU   RUS 1965
## 13289                                   Russian Federation    RU   RUS 1964
## 13290                                   Russian Federation    RU   RUS 1963
## 13291                                   Russian Federation    RU   RUS 1962
## 13292                                   Russian Federation    RU   RUS 1961
## 13293                                   Russian Federation    RU   RUS 1960
## 13294                                               Rwanda    RW   RWA 2022
## 13295                                               Rwanda    RW   RWA 2021
## 13296                                               Rwanda    RW   RWA 2020
## 13297                                               Rwanda    RW   RWA 2019
## 13298                                               Rwanda    RW   RWA 2018
## 13299                                               Rwanda    RW   RWA 2017
## 13300                                               Rwanda    RW   RWA 2016
## 13301                                               Rwanda    RW   RWA 2015
## 13302                                               Rwanda    RW   RWA 2014
## 13303                                               Rwanda    RW   RWA 2013
## 13304                                               Rwanda    RW   RWA 2012
## 13305                                               Rwanda    RW   RWA 2011
## 13306                                               Rwanda    RW   RWA 2010
## 13307                                               Rwanda    RW   RWA 2009
## 13308                                               Rwanda    RW   RWA 2008
## 13309                                               Rwanda    RW   RWA 2007
## 13310                                               Rwanda    RW   RWA 2006
## 13311                                               Rwanda    RW   RWA 2005
## 13312                                               Rwanda    RW   RWA 2004
## 13313                                               Rwanda    RW   RWA 2003
## 13314                                               Rwanda    RW   RWA 2002
## 13315                                               Rwanda    RW   RWA 2001
## 13316                                               Rwanda    RW   RWA 2000
## 13317                                               Rwanda    RW   RWA 1999
## 13318                                               Rwanda    RW   RWA 1998
## 13319                                               Rwanda    RW   RWA 1997
## 13320                                               Rwanda    RW   RWA 1996
## 13321                                               Rwanda    RW   RWA 1995
## 13322                                               Rwanda    RW   RWA 1994
## 13323                                               Rwanda    RW   RWA 1993
## 13324                                               Rwanda    RW   RWA 1992
## 13325                                               Rwanda    RW   RWA 1991
## 13326                                               Rwanda    RW   RWA 1990
## 13327                                               Rwanda    RW   RWA 1989
## 13328                                               Rwanda    RW   RWA 1988
## 13329                                               Rwanda    RW   RWA 1987
## 13330                                               Rwanda    RW   RWA 1986
## 13331                                               Rwanda    RW   RWA 1985
## 13332                                               Rwanda    RW   RWA 1984
## 13333                                               Rwanda    RW   RWA 1983
## 13334                                               Rwanda    RW   RWA 1982
## 13335                                               Rwanda    RW   RWA 1981
## 13336                                               Rwanda    RW   RWA 1980
## 13337                                               Rwanda    RW   RWA 1979
## 13338                                               Rwanda    RW   RWA 1978
## 13339                                               Rwanda    RW   RWA 1977
## 13340                                               Rwanda    RW   RWA 1976
## 13341                                               Rwanda    RW   RWA 1975
## 13342                                               Rwanda    RW   RWA 1974
## 13343                                               Rwanda    RW   RWA 1973
## 13344                                               Rwanda    RW   RWA 1972
## 13345                                               Rwanda    RW   RWA 1971
## 13346                                               Rwanda    RW   RWA 1970
## 13347                                               Rwanda    RW   RWA 1969
## 13348                                               Rwanda    RW   RWA 1968
## 13349                                               Rwanda    RW   RWA 1967
## 13350                                               Rwanda    RW   RWA 1966
## 13351                                               Rwanda    RW   RWA 1965
## 13352                                               Rwanda    RW   RWA 1964
## 13353                                               Rwanda    RW   RWA 1963
## 13354                                               Rwanda    RW   RWA 1962
## 13355                                               Rwanda    RW   RWA 1961
## 13356                                               Rwanda    RW   RWA 1960
## 13357                                                Samoa    WS   WSM 2022
## 13358                                                Samoa    WS   WSM 2021
## 13359                                                Samoa    WS   WSM 2020
## 13360                                                Samoa    WS   WSM 2019
## 13361                                                Samoa    WS   WSM 2018
## 13362                                                Samoa    WS   WSM 2017
## 13363                                                Samoa    WS   WSM 2016
## 13364                                                Samoa    WS   WSM 2015
## 13365                                                Samoa    WS   WSM 2014
## 13366                                                Samoa    WS   WSM 2013
## 13367                                                Samoa    WS   WSM 2012
## 13368                                                Samoa    WS   WSM 2011
## 13369                                                Samoa    WS   WSM 2010
## 13370                                                Samoa    WS   WSM 2009
## 13371                                                Samoa    WS   WSM 2008
## 13372                                                Samoa    WS   WSM 2007
## 13373                                                Samoa    WS   WSM 2006
## 13374                                                Samoa    WS   WSM 2005
## 13375                                                Samoa    WS   WSM 2004
## 13376                                                Samoa    WS   WSM 2003
## 13377                                                Samoa    WS   WSM 2002
## 13378                                                Samoa    WS   WSM 2001
## 13379                                                Samoa    WS   WSM 2000
## 13380                                                Samoa    WS   WSM 1999
## 13381                                                Samoa    WS   WSM 1998
## 13382                                                Samoa    WS   WSM 1997
## 13383                                                Samoa    WS   WSM 1996
## 13384                                                Samoa    WS   WSM 1995
## 13385                                                Samoa    WS   WSM 1994
## 13386                                                Samoa    WS   WSM 1993
## 13387                                                Samoa    WS   WSM 1992
## 13388                                                Samoa    WS   WSM 1991
## 13389                                                Samoa    WS   WSM 1990
## 13390                                                Samoa    WS   WSM 1989
## 13391                                                Samoa    WS   WSM 1988
## 13392                                                Samoa    WS   WSM 1987
## 13393                                                Samoa    WS   WSM 1986
## 13394                                                Samoa    WS   WSM 1985
## 13395                                                Samoa    WS   WSM 1984
## 13396                                                Samoa    WS   WSM 1983
## 13397                                                Samoa    WS   WSM 1982
## 13398                                                Samoa    WS   WSM 1981
## 13399                                                Samoa    WS   WSM 1980
## 13400                                                Samoa    WS   WSM 1979
## 13401                                                Samoa    WS   WSM 1978
## 13402                                                Samoa    WS   WSM 1977
## 13403                                                Samoa    WS   WSM 1976
## 13404                                                Samoa    WS   WSM 1975
## 13405                                                Samoa    WS   WSM 1974
## 13406                                                Samoa    WS   WSM 1973
## 13407                                                Samoa    WS   WSM 1972
## 13408                                                Samoa    WS   WSM 1971
## 13409                                                Samoa    WS   WSM 1970
## 13410                                                Samoa    WS   WSM 1969
## 13411                                                Samoa    WS   WSM 1968
## 13412                                                Samoa    WS   WSM 1967
## 13413                                                Samoa    WS   WSM 1966
## 13414                                                Samoa    WS   WSM 1965
## 13415                                                Samoa    WS   WSM 1964
## 13416                                                Samoa    WS   WSM 1963
## 13417                                                Samoa    WS   WSM 1962
## 13418                                                Samoa    WS   WSM 1961
## 13419                                                Samoa    WS   WSM 1960
## 13420                                           San Marino    SM   SMR 2022
## 13421                                           San Marino    SM   SMR 2021
## 13422                                           San Marino    SM   SMR 2020
## 13423                                           San Marino    SM   SMR 2019
## 13424                                           San Marino    SM   SMR 2018
## 13425                                           San Marino    SM   SMR 2017
## 13426                                           San Marino    SM   SMR 2016
## 13427                                           San Marino    SM   SMR 2015
## 13428                                           San Marino    SM   SMR 2014
## 13429                                           San Marino    SM   SMR 2013
## 13430                                           San Marino    SM   SMR 2012
## 13431                                           San Marino    SM   SMR 2011
## 13432                                           San Marino    SM   SMR 2010
## 13433                                           San Marino    SM   SMR 2009
## 13434                                           San Marino    SM   SMR 2008
## 13435                                           San Marino    SM   SMR 2007
## 13436                                           San Marino    SM   SMR 2006
## 13437                                           San Marino    SM   SMR 2005
## 13438                                           San Marino    SM   SMR 2004
## 13439                                           San Marino    SM   SMR 2003
## 13440                                           San Marino    SM   SMR 2002
## 13441                                           San Marino    SM   SMR 2001
## 13442                                           San Marino    SM   SMR 2000
## 13443                                           San Marino    SM   SMR 1999
## 13444                                           San Marino    SM   SMR 1998
## 13445                                           San Marino    SM   SMR 1997
## 13446                                           San Marino    SM   SMR 1996
## 13447                                           San Marino    SM   SMR 1995
## 13448                                           San Marino    SM   SMR 1994
## 13449                                           San Marino    SM   SMR 1993
## 13450                                           San Marino    SM   SMR 1992
## 13451                                           San Marino    SM   SMR 1991
## 13452                                           San Marino    SM   SMR 1990
## 13453                                           San Marino    SM   SMR 1989
## 13454                                           San Marino    SM   SMR 1988
## 13455                                           San Marino    SM   SMR 1987
## 13456                                           San Marino    SM   SMR 1986
## 13457                                           San Marino    SM   SMR 1985
## 13458                                           San Marino    SM   SMR 1984
## 13459                                           San Marino    SM   SMR 1983
## 13460                                           San Marino    SM   SMR 1982
## 13461                                           San Marino    SM   SMR 1981
## 13462                                           San Marino    SM   SMR 1980
## 13463                                           San Marino    SM   SMR 1979
## 13464                                           San Marino    SM   SMR 1978
## 13465                                           San Marino    SM   SMR 1977
## 13466                                           San Marino    SM   SMR 1976
## 13467                                           San Marino    SM   SMR 1975
## 13468                                           San Marino    SM   SMR 1974
## 13469                                           San Marino    SM   SMR 1973
## 13470                                           San Marino    SM   SMR 1972
## 13471                                           San Marino    SM   SMR 1971
## 13472                                           San Marino    SM   SMR 1970
## 13473                                           San Marino    SM   SMR 1969
## 13474                                           San Marino    SM   SMR 1968
## 13475                                           San Marino    SM   SMR 1967
## 13476                                           San Marino    SM   SMR 1966
## 13477                                           San Marino    SM   SMR 1965
## 13478                                           San Marino    SM   SMR 1964
## 13479                                           San Marino    SM   SMR 1963
## 13480                                           San Marino    SM   SMR 1962
## 13481                                           San Marino    SM   SMR 1961
## 13482                                           San Marino    SM   SMR 1960
## 13483                                Sao Tome and Principe    ST   STP 2022
## 13484                                Sao Tome and Principe    ST   STP 2021
## 13485                                Sao Tome and Principe    ST   STP 2020
## 13486                                Sao Tome and Principe    ST   STP 2019
## 13487                                Sao Tome and Principe    ST   STP 2018
## 13488                                Sao Tome and Principe    ST   STP 2017
## 13489                                Sao Tome and Principe    ST   STP 2016
## 13490                                Sao Tome and Principe    ST   STP 2015
## 13491                                Sao Tome and Principe    ST   STP 2014
## 13492                                Sao Tome and Principe    ST   STP 2013
## 13493                                Sao Tome and Principe    ST   STP 2012
## 13494                                Sao Tome and Principe    ST   STP 2011
## 13495                                Sao Tome and Principe    ST   STP 2010
## 13496                                Sao Tome and Principe    ST   STP 2009
## 13497                                Sao Tome and Principe    ST   STP 2008
## 13498                                Sao Tome and Principe    ST   STP 2007
## 13499                                Sao Tome and Principe    ST   STP 2006
## 13500                                Sao Tome and Principe    ST   STP 2005
## 13501                                Sao Tome and Principe    ST   STP 2004
## 13502                                Sao Tome and Principe    ST   STP 2003
## 13503                                Sao Tome and Principe    ST   STP 2002
## 13504                                Sao Tome and Principe    ST   STP 2001
## 13505                                Sao Tome and Principe    ST   STP 2000
## 13506                                Sao Tome and Principe    ST   STP 1999
## 13507                                Sao Tome and Principe    ST   STP 1998
## 13508                                Sao Tome and Principe    ST   STP 1997
## 13509                                Sao Tome and Principe    ST   STP 1996
## 13510                                Sao Tome and Principe    ST   STP 1995
## 13511                                Sao Tome and Principe    ST   STP 1994
## 13512                                Sao Tome and Principe    ST   STP 1993
## 13513                                Sao Tome and Principe    ST   STP 1992
## 13514                                Sao Tome and Principe    ST   STP 1991
## 13515                                Sao Tome and Principe    ST   STP 1990
## 13516                                Sao Tome and Principe    ST   STP 1989
## 13517                                Sao Tome and Principe    ST   STP 1988
## 13518                                Sao Tome and Principe    ST   STP 1987
## 13519                                Sao Tome and Principe    ST   STP 1986
## 13520                                Sao Tome and Principe    ST   STP 1985
## 13521                                Sao Tome and Principe    ST   STP 1984
## 13522                                Sao Tome and Principe    ST   STP 1983
## 13523                                Sao Tome and Principe    ST   STP 1982
## 13524                                Sao Tome and Principe    ST   STP 1981
## 13525                                Sao Tome and Principe    ST   STP 1980
## 13526                                Sao Tome and Principe    ST   STP 1979
## 13527                                Sao Tome and Principe    ST   STP 1978
## 13528                                Sao Tome and Principe    ST   STP 1977
## 13529                                Sao Tome and Principe    ST   STP 1976
## 13530                                Sao Tome and Principe    ST   STP 1975
## 13531                                Sao Tome and Principe    ST   STP 1974
## 13532                                Sao Tome and Principe    ST   STP 1973
## 13533                                Sao Tome and Principe    ST   STP 1972
## 13534                                Sao Tome and Principe    ST   STP 1971
## 13535                                Sao Tome and Principe    ST   STP 1970
## 13536                                Sao Tome and Principe    ST   STP 1969
## 13537                                Sao Tome and Principe    ST   STP 1968
## 13538                                Sao Tome and Principe    ST   STP 1967
## 13539                                Sao Tome and Principe    ST   STP 1966
## 13540                                Sao Tome and Principe    ST   STP 1965
## 13541                                Sao Tome and Principe    ST   STP 1964
## 13542                                Sao Tome and Principe    ST   STP 1963
## 13543                                Sao Tome and Principe    ST   STP 1962
## 13544                                Sao Tome and Principe    ST   STP 1961
## 13545                                Sao Tome and Principe    ST   STP 1960
## 13546                                         Saudi Arabia    SA   SAU 2022
## 13547                                         Saudi Arabia    SA   SAU 2021
## 13548                                         Saudi Arabia    SA   SAU 2020
## 13549                                         Saudi Arabia    SA   SAU 2019
## 13550                                         Saudi Arabia    SA   SAU 2018
## 13551                                         Saudi Arabia    SA   SAU 2017
## 13552                                         Saudi Arabia    SA   SAU 2016
## 13553                                         Saudi Arabia    SA   SAU 2015
## 13554                                         Saudi Arabia    SA   SAU 2014
## 13555                                         Saudi Arabia    SA   SAU 2013
## 13556                                         Saudi Arabia    SA   SAU 2012
## 13557                                         Saudi Arabia    SA   SAU 2011
## 13558                                         Saudi Arabia    SA   SAU 2010
## 13559                                         Saudi Arabia    SA   SAU 2009
## 13560                                         Saudi Arabia    SA   SAU 2008
## 13561                                         Saudi Arabia    SA   SAU 2007
## 13562                                         Saudi Arabia    SA   SAU 2006
## 13563                                         Saudi Arabia    SA   SAU 2005
## 13564                                         Saudi Arabia    SA   SAU 2004
## 13565                                         Saudi Arabia    SA   SAU 2003
## 13566                                         Saudi Arabia    SA   SAU 2002
## 13567                                         Saudi Arabia    SA   SAU 2001
## 13568                                         Saudi Arabia    SA   SAU 2000
## 13569                                         Saudi Arabia    SA   SAU 1999
## 13570                                         Saudi Arabia    SA   SAU 1998
## 13571                                         Saudi Arabia    SA   SAU 1997
## 13572                                         Saudi Arabia    SA   SAU 1996
## 13573                                         Saudi Arabia    SA   SAU 1995
## 13574                                         Saudi Arabia    SA   SAU 1994
## 13575                                         Saudi Arabia    SA   SAU 1993
## 13576                                         Saudi Arabia    SA   SAU 1992
## 13577                                         Saudi Arabia    SA   SAU 1991
## 13578                                         Saudi Arabia    SA   SAU 1990
## 13579                                         Saudi Arabia    SA   SAU 1989
## 13580                                         Saudi Arabia    SA   SAU 1988
## 13581                                         Saudi Arabia    SA   SAU 1987
## 13582                                         Saudi Arabia    SA   SAU 1986
## 13583                                         Saudi Arabia    SA   SAU 1985
## 13584                                         Saudi Arabia    SA   SAU 1984
## 13585                                         Saudi Arabia    SA   SAU 1983
## 13586                                         Saudi Arabia    SA   SAU 1982
## 13587                                         Saudi Arabia    SA   SAU 1981
## 13588                                         Saudi Arabia    SA   SAU 1980
## 13589                                         Saudi Arabia    SA   SAU 1979
## 13590                                         Saudi Arabia    SA   SAU 1978
## 13591                                         Saudi Arabia    SA   SAU 1977
## 13592                                         Saudi Arabia    SA   SAU 1976
## 13593                                         Saudi Arabia    SA   SAU 1975
## 13594                                         Saudi Arabia    SA   SAU 1974
## 13595                                         Saudi Arabia    SA   SAU 1973
## 13596                                         Saudi Arabia    SA   SAU 1972
## 13597                                         Saudi Arabia    SA   SAU 1971
## 13598                                         Saudi Arabia    SA   SAU 1970
## 13599                                         Saudi Arabia    SA   SAU 1969
## 13600                                         Saudi Arabia    SA   SAU 1968
## 13601                                         Saudi Arabia    SA   SAU 1967
## 13602                                         Saudi Arabia    SA   SAU 1966
## 13603                                         Saudi Arabia    SA   SAU 1965
## 13604                                         Saudi Arabia    SA   SAU 1964
## 13605                                         Saudi Arabia    SA   SAU 1963
## 13606                                         Saudi Arabia    SA   SAU 1962
## 13607                                         Saudi Arabia    SA   SAU 1961
## 13608                                         Saudi Arabia    SA   SAU 1960
## 13609                                              Senegal    SN   SEN 2022
## 13610                                              Senegal    SN   SEN 2021
## 13611                                              Senegal    SN   SEN 2020
## 13612                                              Senegal    SN   SEN 2019
## 13613                                              Senegal    SN   SEN 2018
## 13614                                              Senegal    SN   SEN 2017
## 13615                                              Senegal    SN   SEN 2016
## 13616                                              Senegal    SN   SEN 2015
## 13617                                              Senegal    SN   SEN 2014
## 13618                                              Senegal    SN   SEN 2013
## 13619                                              Senegal    SN   SEN 2012
## 13620                                              Senegal    SN   SEN 2011
## 13621                                              Senegal    SN   SEN 2010
## 13622                                              Senegal    SN   SEN 2009
## 13623                                              Senegal    SN   SEN 2008
## 13624                                              Senegal    SN   SEN 2007
## 13625                                              Senegal    SN   SEN 2006
## 13626                                              Senegal    SN   SEN 2005
## 13627                                              Senegal    SN   SEN 2004
## 13628                                              Senegal    SN   SEN 2003
## 13629                                              Senegal    SN   SEN 2002
## 13630                                              Senegal    SN   SEN 2001
## 13631                                              Senegal    SN   SEN 2000
## 13632                                              Senegal    SN   SEN 1999
## 13633                                              Senegal    SN   SEN 1998
## 13634                                              Senegal    SN   SEN 1997
## 13635                                              Senegal    SN   SEN 1996
## 13636                                              Senegal    SN   SEN 1995
## 13637                                              Senegal    SN   SEN 1994
## 13638                                              Senegal    SN   SEN 1993
## 13639                                              Senegal    SN   SEN 1992
## 13640                                              Senegal    SN   SEN 1991
## 13641                                              Senegal    SN   SEN 1990
## 13642                                              Senegal    SN   SEN 1989
## 13643                                              Senegal    SN   SEN 1988
## 13644                                              Senegal    SN   SEN 1987
## 13645                                              Senegal    SN   SEN 1986
## 13646                                              Senegal    SN   SEN 1985
## 13647                                              Senegal    SN   SEN 1984
## 13648                                              Senegal    SN   SEN 1983
## 13649                                              Senegal    SN   SEN 1982
## 13650                                              Senegal    SN   SEN 1981
## 13651                                              Senegal    SN   SEN 1980
## 13652                                              Senegal    SN   SEN 1979
## 13653                                              Senegal    SN   SEN 1978
## 13654                                              Senegal    SN   SEN 1977
## 13655                                              Senegal    SN   SEN 1976
## 13656                                              Senegal    SN   SEN 1975
## 13657                                              Senegal    SN   SEN 1974
## 13658                                              Senegal    SN   SEN 1973
## 13659                                              Senegal    SN   SEN 1972
## 13660                                              Senegal    SN   SEN 1971
## 13661                                              Senegal    SN   SEN 1970
## 13662                                              Senegal    SN   SEN 1969
## 13663                                              Senegal    SN   SEN 1968
## 13664                                              Senegal    SN   SEN 1967
## 13665                                              Senegal    SN   SEN 1966
## 13666                                              Senegal    SN   SEN 1965
## 13667                                              Senegal    SN   SEN 1964
## 13668                                              Senegal    SN   SEN 1963
## 13669                                              Senegal    SN   SEN 1962
## 13670                                              Senegal    SN   SEN 1961
## 13671                                              Senegal    SN   SEN 1960
## 13672                                               Serbia    RS   SRB 2022
## 13673                                               Serbia    RS   SRB 2021
## 13674                                               Serbia    RS   SRB 2020
## 13675                                               Serbia    RS   SRB 2019
## 13676                                               Serbia    RS   SRB 2018
## 13677                                               Serbia    RS   SRB 2017
## 13678                                               Serbia    RS   SRB 2016
## 13679                                               Serbia    RS   SRB 2015
## 13680                                               Serbia    RS   SRB 2014
## 13681                                               Serbia    RS   SRB 2013
## 13682                                               Serbia    RS   SRB 2012
## 13683                                               Serbia    RS   SRB 2011
## 13684                                               Serbia    RS   SRB 2010
## 13685                                               Serbia    RS   SRB 2009
## 13686                                               Serbia    RS   SRB 2008
## 13687                                               Serbia    RS   SRB 2007
## 13688                                               Serbia    RS   SRB 2006
## 13689                                               Serbia    RS   SRB 2005
## 13690                                               Serbia    RS   SRB 2004
## 13691                                               Serbia    RS   SRB 2003
## 13692                                               Serbia    RS   SRB 2002
## 13693                                               Serbia    RS   SRB 2001
## 13694                                               Serbia    RS   SRB 2000
## 13695                                               Serbia    RS   SRB 1999
## 13696                                               Serbia    RS   SRB 1998
## 13697                                               Serbia    RS   SRB 1997
## 13698                                               Serbia    RS   SRB 1996
## 13699                                               Serbia    RS   SRB 1995
## 13700                                               Serbia    RS   SRB 1994
## 13701                                               Serbia    RS   SRB 1993
## 13702                                               Serbia    RS   SRB 1992
## 13703                                               Serbia    RS   SRB 1991
## 13704                                               Serbia    RS   SRB 1990
## 13705                                               Serbia    RS   SRB 1989
## 13706                                               Serbia    RS   SRB 1988
## 13707                                               Serbia    RS   SRB 1987
## 13708                                               Serbia    RS   SRB 1986
## 13709                                               Serbia    RS   SRB 1985
## 13710                                               Serbia    RS   SRB 1984
## 13711                                               Serbia    RS   SRB 1983
## 13712                                               Serbia    RS   SRB 1982
## 13713                                               Serbia    RS   SRB 1981
## 13714                                               Serbia    RS   SRB 1980
## 13715                                               Serbia    RS   SRB 1979
## 13716                                               Serbia    RS   SRB 1978
## 13717                                               Serbia    RS   SRB 1977
## 13718                                               Serbia    RS   SRB 1976
## 13719                                               Serbia    RS   SRB 1975
## 13720                                               Serbia    RS   SRB 1974
## 13721                                               Serbia    RS   SRB 1973
## 13722                                               Serbia    RS   SRB 1972
## 13723                                               Serbia    RS   SRB 1971
## 13724                                               Serbia    RS   SRB 1970
## 13725                                               Serbia    RS   SRB 1969
## 13726                                               Serbia    RS   SRB 1968
## 13727                                               Serbia    RS   SRB 1967
## 13728                                               Serbia    RS   SRB 1966
## 13729                                               Serbia    RS   SRB 1965
## 13730                                               Serbia    RS   SRB 1964
## 13731                                               Serbia    RS   SRB 1963
## 13732                                               Serbia    RS   SRB 1962
## 13733                                               Serbia    RS   SRB 1961
## 13734                                               Serbia    RS   SRB 1960
## 13735                                           Seychelles    SC   SYC 2022
## 13736                                           Seychelles    SC   SYC 2021
## 13737                                           Seychelles    SC   SYC 2020
## 13738                                           Seychelles    SC   SYC 2019
## 13739                                           Seychelles    SC   SYC 2018
## 13740                                           Seychelles    SC   SYC 2017
## 13741                                           Seychelles    SC   SYC 2016
## 13742                                           Seychelles    SC   SYC 2015
## 13743                                           Seychelles    SC   SYC 2014
## 13744                                           Seychelles    SC   SYC 2013
## 13745                                           Seychelles    SC   SYC 2012
## 13746                                           Seychelles    SC   SYC 2011
## 13747                                           Seychelles    SC   SYC 2010
## 13748                                           Seychelles    SC   SYC 2009
## 13749                                           Seychelles    SC   SYC 2008
## 13750                                           Seychelles    SC   SYC 2007
## 13751                                           Seychelles    SC   SYC 2006
## 13752                                           Seychelles    SC   SYC 2005
## 13753                                           Seychelles    SC   SYC 2004
## 13754                                           Seychelles    SC   SYC 2003
## 13755                                           Seychelles    SC   SYC 2002
## 13756                                           Seychelles    SC   SYC 2001
## 13757                                           Seychelles    SC   SYC 2000
## 13758                                           Seychelles    SC   SYC 1999
## 13759                                           Seychelles    SC   SYC 1998
## 13760                                           Seychelles    SC   SYC 1997
## 13761                                           Seychelles    SC   SYC 1996
## 13762                                           Seychelles    SC   SYC 1995
## 13763                                           Seychelles    SC   SYC 1994
## 13764                                           Seychelles    SC   SYC 1993
## 13765                                           Seychelles    SC   SYC 1992
## 13766                                           Seychelles    SC   SYC 1991
## 13767                                           Seychelles    SC   SYC 1990
## 13768                                           Seychelles    SC   SYC 1989
## 13769                                           Seychelles    SC   SYC 1988
## 13770                                           Seychelles    SC   SYC 1987
## 13771                                           Seychelles    SC   SYC 1986
## 13772                                           Seychelles    SC   SYC 1985
## 13773                                           Seychelles    SC   SYC 1984
## 13774                                           Seychelles    SC   SYC 1983
## 13775                                           Seychelles    SC   SYC 1982
## 13776                                           Seychelles    SC   SYC 1981
## 13777                                           Seychelles    SC   SYC 1980
## 13778                                           Seychelles    SC   SYC 1979
## 13779                                           Seychelles    SC   SYC 1978
## 13780                                           Seychelles    SC   SYC 1977
## 13781                                           Seychelles    SC   SYC 1976
## 13782                                           Seychelles    SC   SYC 1975
## 13783                                           Seychelles    SC   SYC 1974
## 13784                                           Seychelles    SC   SYC 1973
## 13785                                           Seychelles    SC   SYC 1972
## 13786                                           Seychelles    SC   SYC 1971
## 13787                                           Seychelles    SC   SYC 1970
## 13788                                           Seychelles    SC   SYC 1969
## 13789                                           Seychelles    SC   SYC 1968
## 13790                                           Seychelles    SC   SYC 1967
## 13791                                           Seychelles    SC   SYC 1966
## 13792                                           Seychelles    SC   SYC 1965
## 13793                                           Seychelles    SC   SYC 1964
## 13794                                           Seychelles    SC   SYC 1963
## 13795                                           Seychelles    SC   SYC 1962
## 13796                                           Seychelles    SC   SYC 1961
## 13797                                           Seychelles    SC   SYC 1960
## 13798                                         Sierra Leone    SL   SLE 2022
## 13799                                         Sierra Leone    SL   SLE 2021
## 13800                                         Sierra Leone    SL   SLE 2020
## 13801                                         Sierra Leone    SL   SLE 2019
## 13802                                         Sierra Leone    SL   SLE 2018
## 13803                                         Sierra Leone    SL   SLE 2017
## 13804                                         Sierra Leone    SL   SLE 2016
## 13805                                         Sierra Leone    SL   SLE 2015
## 13806                                         Sierra Leone    SL   SLE 2014
## 13807                                         Sierra Leone    SL   SLE 2013
## 13808                                         Sierra Leone    SL   SLE 2012
## 13809                                         Sierra Leone    SL   SLE 2011
## 13810                                         Sierra Leone    SL   SLE 2010
## 13811                                         Sierra Leone    SL   SLE 2009
## 13812                                         Sierra Leone    SL   SLE 2008
## 13813                                         Sierra Leone    SL   SLE 2007
## 13814                                         Sierra Leone    SL   SLE 2006
## 13815                                         Sierra Leone    SL   SLE 2005
## 13816                                         Sierra Leone    SL   SLE 2004
## 13817                                         Sierra Leone    SL   SLE 2003
## 13818                                         Sierra Leone    SL   SLE 2002
## 13819                                         Sierra Leone    SL   SLE 2001
## 13820                                         Sierra Leone    SL   SLE 2000
## 13821                                         Sierra Leone    SL   SLE 1999
## 13822                                         Sierra Leone    SL   SLE 1998
## 13823                                         Sierra Leone    SL   SLE 1997
## 13824                                         Sierra Leone    SL   SLE 1996
## 13825                                         Sierra Leone    SL   SLE 1995
## 13826                                         Sierra Leone    SL   SLE 1994
## 13827                                         Sierra Leone    SL   SLE 1993
## 13828                                         Sierra Leone    SL   SLE 1992
## 13829                                         Sierra Leone    SL   SLE 1991
## 13830                                         Sierra Leone    SL   SLE 1990
## 13831                                         Sierra Leone    SL   SLE 1989
## 13832                                         Sierra Leone    SL   SLE 1988
## 13833                                         Sierra Leone    SL   SLE 1987
## 13834                                         Sierra Leone    SL   SLE 1986
## 13835                                         Sierra Leone    SL   SLE 1985
## 13836                                         Sierra Leone    SL   SLE 1984
## 13837                                         Sierra Leone    SL   SLE 1983
## 13838                                         Sierra Leone    SL   SLE 1982
## 13839                                         Sierra Leone    SL   SLE 1981
## 13840                                         Sierra Leone    SL   SLE 1980
## 13841                                         Sierra Leone    SL   SLE 1979
## 13842                                         Sierra Leone    SL   SLE 1978
## 13843                                         Sierra Leone    SL   SLE 1977
## 13844                                         Sierra Leone    SL   SLE 1976
## 13845                                         Sierra Leone    SL   SLE 1975
## 13846                                         Sierra Leone    SL   SLE 1974
## 13847                                         Sierra Leone    SL   SLE 1973
## 13848                                         Sierra Leone    SL   SLE 1972
## 13849                                         Sierra Leone    SL   SLE 1971
## 13850                                         Sierra Leone    SL   SLE 1970
## 13851                                         Sierra Leone    SL   SLE 1969
## 13852                                         Sierra Leone    SL   SLE 1968
## 13853                                         Sierra Leone    SL   SLE 1967
## 13854                                         Sierra Leone    SL   SLE 1966
## 13855                                         Sierra Leone    SL   SLE 1965
## 13856                                         Sierra Leone    SL   SLE 1964
## 13857                                         Sierra Leone    SL   SLE 1963
## 13858                                         Sierra Leone    SL   SLE 1962
## 13859                                         Sierra Leone    SL   SLE 1961
## 13860                                         Sierra Leone    SL   SLE 1960
## 13861                                            Singapore    SG   SGP 2022
## 13862                                            Singapore    SG   SGP 2021
## 13863                                            Singapore    SG   SGP 2020
## 13864                                            Singapore    SG   SGP 2019
## 13865                                            Singapore    SG   SGP 2018
## 13866                                            Singapore    SG   SGP 2017
## 13867                                            Singapore    SG   SGP 2016
## 13868                                            Singapore    SG   SGP 2015
## 13869                                            Singapore    SG   SGP 2014
## 13870                                            Singapore    SG   SGP 2013
## 13871                                            Singapore    SG   SGP 2012
## 13872                                            Singapore    SG   SGP 2011
## 13873                                            Singapore    SG   SGP 2010
## 13874                                            Singapore    SG   SGP 2009
## 13875                                            Singapore    SG   SGP 2008
## 13876                                            Singapore    SG   SGP 2007
## 13877                                            Singapore    SG   SGP 2006
## 13878                                            Singapore    SG   SGP 2005
## 13879                                            Singapore    SG   SGP 2004
## 13880                                            Singapore    SG   SGP 2003
## 13881                                            Singapore    SG   SGP 2002
## 13882                                            Singapore    SG   SGP 2001
## 13883                                            Singapore    SG   SGP 2000
## 13884                                            Singapore    SG   SGP 1999
## 13885                                            Singapore    SG   SGP 1998
## 13886                                            Singapore    SG   SGP 1997
## 13887                                            Singapore    SG   SGP 1996
## 13888                                            Singapore    SG   SGP 1995
## 13889                                            Singapore    SG   SGP 1994
## 13890                                            Singapore    SG   SGP 1993
## 13891                                            Singapore    SG   SGP 1992
## 13892                                            Singapore    SG   SGP 1991
## 13893                                            Singapore    SG   SGP 1990
## 13894                                            Singapore    SG   SGP 1989
## 13895                                            Singapore    SG   SGP 1988
## 13896                                            Singapore    SG   SGP 1987
## 13897                                            Singapore    SG   SGP 1986
## 13898                                            Singapore    SG   SGP 1985
## 13899                                            Singapore    SG   SGP 1984
## 13900                                            Singapore    SG   SGP 1983
## 13901                                            Singapore    SG   SGP 1982
## 13902                                            Singapore    SG   SGP 1981
## 13903                                            Singapore    SG   SGP 1980
## 13904                                            Singapore    SG   SGP 1979
## 13905                                            Singapore    SG   SGP 1978
## 13906                                            Singapore    SG   SGP 1977
## 13907                                            Singapore    SG   SGP 1976
## 13908                                            Singapore    SG   SGP 1975
## 13909                                            Singapore    SG   SGP 1974
## 13910                                            Singapore    SG   SGP 1973
## 13911                                            Singapore    SG   SGP 1972
## 13912                                            Singapore    SG   SGP 1971
## 13913                                            Singapore    SG   SGP 1970
## 13914                                            Singapore    SG   SGP 1969
## 13915                                            Singapore    SG   SGP 1968
## 13916                                            Singapore    SG   SGP 1967
## 13917                                            Singapore    SG   SGP 1966
## 13918                                            Singapore    SG   SGP 1965
## 13919                                            Singapore    SG   SGP 1964
## 13920                                            Singapore    SG   SGP 1963
## 13921                                            Singapore    SG   SGP 1962
## 13922                                            Singapore    SG   SGP 1961
## 13923                                            Singapore    SG   SGP 1960
## 13924                            Sint Maarten (Dutch part)    SX   SXM 2022
## 13925                            Sint Maarten (Dutch part)    SX   SXM 2021
## 13926                            Sint Maarten (Dutch part)    SX   SXM 2020
## 13927                            Sint Maarten (Dutch part)    SX   SXM 2019
## 13928                            Sint Maarten (Dutch part)    SX   SXM 2018
## 13929                            Sint Maarten (Dutch part)    SX   SXM 2017
## 13930                            Sint Maarten (Dutch part)    SX   SXM 2016
## 13931                            Sint Maarten (Dutch part)    SX   SXM 2015
## 13932                            Sint Maarten (Dutch part)    SX   SXM 2014
## 13933                            Sint Maarten (Dutch part)    SX   SXM 2013
## 13934                            Sint Maarten (Dutch part)    SX   SXM 2012
## 13935                            Sint Maarten (Dutch part)    SX   SXM 2011
## 13936                            Sint Maarten (Dutch part)    SX   SXM 2010
## 13937                            Sint Maarten (Dutch part)    SX   SXM 2009
## 13938                            Sint Maarten (Dutch part)    SX   SXM 2008
## 13939                            Sint Maarten (Dutch part)    SX   SXM 2007
## 13940                            Sint Maarten (Dutch part)    SX   SXM 2006
## 13941                            Sint Maarten (Dutch part)    SX   SXM 2005
## 13942                            Sint Maarten (Dutch part)    SX   SXM 2004
## 13943                            Sint Maarten (Dutch part)    SX   SXM 2003
## 13944                            Sint Maarten (Dutch part)    SX   SXM 2002
## 13945                            Sint Maarten (Dutch part)    SX   SXM 2001
## 13946                            Sint Maarten (Dutch part)    SX   SXM 2000
## 13947                            Sint Maarten (Dutch part)    SX   SXM 1999
## 13948                            Sint Maarten (Dutch part)    SX   SXM 1998
## 13949                            Sint Maarten (Dutch part)    SX   SXM 1997
## 13950                            Sint Maarten (Dutch part)    SX   SXM 1996
## 13951                            Sint Maarten (Dutch part)    SX   SXM 1995
## 13952                            Sint Maarten (Dutch part)    SX   SXM 1994
## 13953                            Sint Maarten (Dutch part)    SX   SXM 1993
## 13954                            Sint Maarten (Dutch part)    SX   SXM 1992
## 13955                            Sint Maarten (Dutch part)    SX   SXM 1991
## 13956                            Sint Maarten (Dutch part)    SX   SXM 1990
## 13957                            Sint Maarten (Dutch part)    SX   SXM 1989
## 13958                            Sint Maarten (Dutch part)    SX   SXM 1988
## 13959                            Sint Maarten (Dutch part)    SX   SXM 1987
## 13960                            Sint Maarten (Dutch part)    SX   SXM 1986
## 13961                            Sint Maarten (Dutch part)    SX   SXM 1985
## 13962                            Sint Maarten (Dutch part)    SX   SXM 1984
## 13963                            Sint Maarten (Dutch part)    SX   SXM 1983
## 13964                            Sint Maarten (Dutch part)    SX   SXM 1982
## 13965                            Sint Maarten (Dutch part)    SX   SXM 1981
## 13966                            Sint Maarten (Dutch part)    SX   SXM 1980
## 13967                            Sint Maarten (Dutch part)    SX   SXM 1979
## 13968                            Sint Maarten (Dutch part)    SX   SXM 1978
## 13969                            Sint Maarten (Dutch part)    SX   SXM 1977
## 13970                            Sint Maarten (Dutch part)    SX   SXM 1976
## 13971                            Sint Maarten (Dutch part)    SX   SXM 1975
## 13972                            Sint Maarten (Dutch part)    SX   SXM 1974
## 13973                            Sint Maarten (Dutch part)    SX   SXM 1973
## 13974                            Sint Maarten (Dutch part)    SX   SXM 1972
## 13975                            Sint Maarten (Dutch part)    SX   SXM 1971
## 13976                            Sint Maarten (Dutch part)    SX   SXM 1970
## 13977                            Sint Maarten (Dutch part)    SX   SXM 1969
## 13978                            Sint Maarten (Dutch part)    SX   SXM 1968
## 13979                            Sint Maarten (Dutch part)    SX   SXM 1967
## 13980                            Sint Maarten (Dutch part)    SX   SXM 1966
## 13981                            Sint Maarten (Dutch part)    SX   SXM 1965
## 13982                            Sint Maarten (Dutch part)    SX   SXM 1964
## 13983                            Sint Maarten (Dutch part)    SX   SXM 1963
## 13984                            Sint Maarten (Dutch part)    SX   SXM 1962
## 13985                            Sint Maarten (Dutch part)    SX   SXM 1961
## 13986                            Sint Maarten (Dutch part)    SX   SXM 1960
## 13987                                      Slovak Republic    SK   SVK 2022
## 13988                                      Slovak Republic    SK   SVK 2021
## 13989                                      Slovak Republic    SK   SVK 2020
## 13990                                      Slovak Republic    SK   SVK 2019
## 13991                                      Slovak Republic    SK   SVK 2018
## 13992                                      Slovak Republic    SK   SVK 2017
## 13993                                      Slovak Republic    SK   SVK 2016
## 13994                                      Slovak Republic    SK   SVK 2015
## 13995                                      Slovak Republic    SK   SVK 2014
## 13996                                      Slovak Republic    SK   SVK 2013
## 13997                                      Slovak Republic    SK   SVK 2012
## 13998                                      Slovak Republic    SK   SVK 2011
## 13999                                      Slovak Republic    SK   SVK 2010
## 14000                                      Slovak Republic    SK   SVK 2009
## 14001                                      Slovak Republic    SK   SVK 2008
## 14002                                      Slovak Republic    SK   SVK 2007
## 14003                                      Slovak Republic    SK   SVK 2006
## 14004                                      Slovak Republic    SK   SVK 2005
## 14005                                      Slovak Republic    SK   SVK 2004
## 14006                                      Slovak Republic    SK   SVK 2003
## 14007                                      Slovak Republic    SK   SVK 2002
## 14008                                      Slovak Republic    SK   SVK 2001
## 14009                                      Slovak Republic    SK   SVK 2000
## 14010                                      Slovak Republic    SK   SVK 1999
## 14011                                      Slovak Republic    SK   SVK 1998
## 14012                                      Slovak Republic    SK   SVK 1997
## 14013                                      Slovak Republic    SK   SVK 1996
## 14014                                      Slovak Republic    SK   SVK 1995
## 14015                                      Slovak Republic    SK   SVK 1994
## 14016                                      Slovak Republic    SK   SVK 1993
## 14017                                      Slovak Republic    SK   SVK 1992
## 14018                                      Slovak Republic    SK   SVK 1991
## 14019                                      Slovak Republic    SK   SVK 1990
## 14020                                      Slovak Republic    SK   SVK 1989
## 14021                                      Slovak Republic    SK   SVK 1988
## 14022                                      Slovak Republic    SK   SVK 1987
## 14023                                      Slovak Republic    SK   SVK 1986
## 14024                                      Slovak Republic    SK   SVK 1985
## 14025                                      Slovak Republic    SK   SVK 1984
## 14026                                      Slovak Republic    SK   SVK 1983
## 14027                                      Slovak Republic    SK   SVK 1982
## 14028                                      Slovak Republic    SK   SVK 1981
## 14029                                      Slovak Republic    SK   SVK 1980
## 14030                                      Slovak Republic    SK   SVK 1979
## 14031                                      Slovak Republic    SK   SVK 1978
## 14032                                      Slovak Republic    SK   SVK 1977
## 14033                                      Slovak Republic    SK   SVK 1976
## 14034                                      Slovak Republic    SK   SVK 1975
## 14035                                      Slovak Republic    SK   SVK 1974
## 14036                                      Slovak Republic    SK   SVK 1973
## 14037                                      Slovak Republic    SK   SVK 1972
## 14038                                      Slovak Republic    SK   SVK 1971
## 14039                                      Slovak Republic    SK   SVK 1970
## 14040                                      Slovak Republic    SK   SVK 1969
## 14041                                      Slovak Republic    SK   SVK 1968
## 14042                                      Slovak Republic    SK   SVK 1967
## 14043                                      Slovak Republic    SK   SVK 1966
## 14044                                      Slovak Republic    SK   SVK 1965
## 14045                                      Slovak Republic    SK   SVK 1964
## 14046                                      Slovak Republic    SK   SVK 1963
## 14047                                      Slovak Republic    SK   SVK 1962
## 14048                                      Slovak Republic    SK   SVK 1961
## 14049                                      Slovak Republic    SK   SVK 1960
## 14050                                             Slovenia    SI   SVN 2022
## 14051                                             Slovenia    SI   SVN 2021
## 14052                                             Slovenia    SI   SVN 2020
## 14053                                             Slovenia    SI   SVN 2019
## 14054                                             Slovenia    SI   SVN 2018
## 14055                                             Slovenia    SI   SVN 2017
## 14056                                             Slovenia    SI   SVN 2016
## 14057                                             Slovenia    SI   SVN 2015
## 14058                                             Slovenia    SI   SVN 2014
## 14059                                             Slovenia    SI   SVN 2013
## 14060                                             Slovenia    SI   SVN 2012
## 14061                                             Slovenia    SI   SVN 2011
## 14062                                             Slovenia    SI   SVN 2010
## 14063                                             Slovenia    SI   SVN 2009
## 14064                                             Slovenia    SI   SVN 2008
## 14065                                             Slovenia    SI   SVN 2007
## 14066                                             Slovenia    SI   SVN 2006
## 14067                                             Slovenia    SI   SVN 2005
## 14068                                             Slovenia    SI   SVN 2004
## 14069                                             Slovenia    SI   SVN 2003
## 14070                                             Slovenia    SI   SVN 2002
## 14071                                             Slovenia    SI   SVN 2001
## 14072                                             Slovenia    SI   SVN 2000
## 14073                                             Slovenia    SI   SVN 1999
## 14074                                             Slovenia    SI   SVN 1998
## 14075                                             Slovenia    SI   SVN 1997
## 14076                                             Slovenia    SI   SVN 1996
## 14077                                             Slovenia    SI   SVN 1995
## 14078                                             Slovenia    SI   SVN 1994
## 14079                                             Slovenia    SI   SVN 1993
## 14080                                             Slovenia    SI   SVN 1992
## 14081                                             Slovenia    SI   SVN 1991
## 14082                                             Slovenia    SI   SVN 1990
## 14083                                             Slovenia    SI   SVN 1989
## 14084                                             Slovenia    SI   SVN 1988
## 14085                                             Slovenia    SI   SVN 1987
## 14086                                             Slovenia    SI   SVN 1986
## 14087                                             Slovenia    SI   SVN 1985
## 14088                                             Slovenia    SI   SVN 1984
## 14089                                             Slovenia    SI   SVN 1983
## 14090                                             Slovenia    SI   SVN 1982
## 14091                                             Slovenia    SI   SVN 1981
## 14092                                             Slovenia    SI   SVN 1980
## 14093                                             Slovenia    SI   SVN 1979
## 14094                                             Slovenia    SI   SVN 1978
## 14095                                             Slovenia    SI   SVN 1977
## 14096                                             Slovenia    SI   SVN 1976
## 14097                                             Slovenia    SI   SVN 1975
## 14098                                             Slovenia    SI   SVN 1974
## 14099                                             Slovenia    SI   SVN 1973
## 14100                                             Slovenia    SI   SVN 1972
## 14101                                             Slovenia    SI   SVN 1971
## 14102                                             Slovenia    SI   SVN 1970
## 14103                                             Slovenia    SI   SVN 1969
## 14104                                             Slovenia    SI   SVN 1968
## 14105                                             Slovenia    SI   SVN 1967
## 14106                                             Slovenia    SI   SVN 1966
## 14107                                             Slovenia    SI   SVN 1965
## 14108                                             Slovenia    SI   SVN 1964
## 14109                                             Slovenia    SI   SVN 1963
## 14110                                             Slovenia    SI   SVN 1962
## 14111                                             Slovenia    SI   SVN 1961
## 14112                                             Slovenia    SI   SVN 1960
## 14113                                      Solomon Islands    SB   SLB 2022
## 14114                                      Solomon Islands    SB   SLB 2021
## 14115                                      Solomon Islands    SB   SLB 2020
## 14116                                      Solomon Islands    SB   SLB 2019
## 14117                                      Solomon Islands    SB   SLB 2018
## 14118                                      Solomon Islands    SB   SLB 2017
## 14119                                      Solomon Islands    SB   SLB 2016
## 14120                                      Solomon Islands    SB   SLB 2015
## 14121                                      Solomon Islands    SB   SLB 2014
## 14122                                      Solomon Islands    SB   SLB 2013
## 14123                                      Solomon Islands    SB   SLB 2012
## 14124                                      Solomon Islands    SB   SLB 2011
## 14125                                      Solomon Islands    SB   SLB 2010
## 14126                                      Solomon Islands    SB   SLB 2009
## 14127                                      Solomon Islands    SB   SLB 2008
## 14128                                      Solomon Islands    SB   SLB 2007
## 14129                                      Solomon Islands    SB   SLB 2006
## 14130                                      Solomon Islands    SB   SLB 2005
## 14131                                      Solomon Islands    SB   SLB 2004
## 14132                                      Solomon Islands    SB   SLB 2003
## 14133                                      Solomon Islands    SB   SLB 2002
## 14134                                      Solomon Islands    SB   SLB 2001
## 14135                                      Solomon Islands    SB   SLB 2000
## 14136                                      Solomon Islands    SB   SLB 1999
## 14137                                      Solomon Islands    SB   SLB 1998
## 14138                                      Solomon Islands    SB   SLB 1997
## 14139                                      Solomon Islands    SB   SLB 1996
## 14140                                      Solomon Islands    SB   SLB 1995
## 14141                                      Solomon Islands    SB   SLB 1994
## 14142                                      Solomon Islands    SB   SLB 1993
## 14143                                      Solomon Islands    SB   SLB 1992
## 14144                                      Solomon Islands    SB   SLB 1991
## 14145                                      Solomon Islands    SB   SLB 1990
## 14146                                      Solomon Islands    SB   SLB 1989
## 14147                                      Solomon Islands    SB   SLB 1988
## 14148                                      Solomon Islands    SB   SLB 1987
## 14149                                      Solomon Islands    SB   SLB 1986
## 14150                                      Solomon Islands    SB   SLB 1985
## 14151                                      Solomon Islands    SB   SLB 1984
## 14152                                      Solomon Islands    SB   SLB 1983
## 14153                                      Solomon Islands    SB   SLB 1982
## 14154                                      Solomon Islands    SB   SLB 1981
## 14155                                      Solomon Islands    SB   SLB 1980
## 14156                                      Solomon Islands    SB   SLB 1979
## 14157                                      Solomon Islands    SB   SLB 1978
## 14158                                      Solomon Islands    SB   SLB 1977
## 14159                                      Solomon Islands    SB   SLB 1976
## 14160                                      Solomon Islands    SB   SLB 1975
## 14161                                      Solomon Islands    SB   SLB 1974
## 14162                                      Solomon Islands    SB   SLB 1973
## 14163                                      Solomon Islands    SB   SLB 1972
## 14164                                      Solomon Islands    SB   SLB 1971
## 14165                                      Solomon Islands    SB   SLB 1970
## 14166                                      Solomon Islands    SB   SLB 1969
## 14167                                      Solomon Islands    SB   SLB 1968
## 14168                                      Solomon Islands    SB   SLB 1967
## 14169                                      Solomon Islands    SB   SLB 1966
## 14170                                      Solomon Islands    SB   SLB 1965
## 14171                                      Solomon Islands    SB   SLB 1964
## 14172                                      Solomon Islands    SB   SLB 1963
## 14173                                      Solomon Islands    SB   SLB 1962
## 14174                                      Solomon Islands    SB   SLB 1961
## 14175                                      Solomon Islands    SB   SLB 1960
## 14176                                              Somalia    SO   SOM 2022
## 14177                                              Somalia    SO   SOM 2021
## 14178                                              Somalia    SO   SOM 2020
## 14179                                              Somalia    SO   SOM 2019
## 14180                                              Somalia    SO   SOM 2018
## 14181                                              Somalia    SO   SOM 2017
## 14182                                              Somalia    SO   SOM 2016
## 14183                                              Somalia    SO   SOM 2015
## 14184                                              Somalia    SO   SOM 2014
## 14185                                              Somalia    SO   SOM 2013
## 14186                                              Somalia    SO   SOM 2012
## 14187                                              Somalia    SO   SOM 2011
## 14188                                              Somalia    SO   SOM 2010
## 14189                                              Somalia    SO   SOM 2009
## 14190                                              Somalia    SO   SOM 2008
## 14191                                              Somalia    SO   SOM 2007
## 14192                                              Somalia    SO   SOM 2006
## 14193                                              Somalia    SO   SOM 2005
## 14194                                              Somalia    SO   SOM 2004
## 14195                                              Somalia    SO   SOM 2003
## 14196                                              Somalia    SO   SOM 2002
## 14197                                              Somalia    SO   SOM 2001
## 14198                                              Somalia    SO   SOM 2000
## 14199                                              Somalia    SO   SOM 1999
## 14200                                              Somalia    SO   SOM 1998
## 14201                                              Somalia    SO   SOM 1997
## 14202                                              Somalia    SO   SOM 1996
## 14203                                              Somalia    SO   SOM 1995
## 14204                                              Somalia    SO   SOM 1994
## 14205                                              Somalia    SO   SOM 1993
## 14206                                              Somalia    SO   SOM 1992
## 14207                                              Somalia    SO   SOM 1991
## 14208                                              Somalia    SO   SOM 1990
## 14209                                              Somalia    SO   SOM 1989
## 14210                                              Somalia    SO   SOM 1988
## 14211                                              Somalia    SO   SOM 1987
## 14212                                              Somalia    SO   SOM 1986
## 14213                                              Somalia    SO   SOM 1985
## 14214                                              Somalia    SO   SOM 1984
## 14215                                              Somalia    SO   SOM 1983
## 14216                                              Somalia    SO   SOM 1982
## 14217                                              Somalia    SO   SOM 1981
## 14218                                              Somalia    SO   SOM 1980
## 14219                                              Somalia    SO   SOM 1979
## 14220                                              Somalia    SO   SOM 1978
## 14221                                              Somalia    SO   SOM 1977
## 14222                                              Somalia    SO   SOM 1976
## 14223                                              Somalia    SO   SOM 1975
## 14224                                              Somalia    SO   SOM 1974
## 14225                                              Somalia    SO   SOM 1973
## 14226                                              Somalia    SO   SOM 1972
## 14227                                              Somalia    SO   SOM 1971
## 14228                                              Somalia    SO   SOM 1970
## 14229                                              Somalia    SO   SOM 1969
## 14230                                              Somalia    SO   SOM 1968
## 14231                                              Somalia    SO   SOM 1967
## 14232                                              Somalia    SO   SOM 1966
## 14233                                              Somalia    SO   SOM 1965
## 14234                                              Somalia    SO   SOM 1964
## 14235                                              Somalia    SO   SOM 1963
## 14236                                              Somalia    SO   SOM 1962
## 14237                                              Somalia    SO   SOM 1961
## 14238                                              Somalia    SO   SOM 1960
## 14239                                         South Africa    ZA   ZAF 2022
## 14240                                         South Africa    ZA   ZAF 2021
## 14241                                         South Africa    ZA   ZAF 2020
## 14242                                         South Africa    ZA   ZAF 2019
## 14243                                         South Africa    ZA   ZAF 2018
## 14244                                         South Africa    ZA   ZAF 2017
## 14245                                         South Africa    ZA   ZAF 2016
## 14246                                         South Africa    ZA   ZAF 2015
## 14247                                         South Africa    ZA   ZAF 2014
## 14248                                         South Africa    ZA   ZAF 2013
## 14249                                         South Africa    ZA   ZAF 2012
## 14250                                         South Africa    ZA   ZAF 2011
## 14251                                         South Africa    ZA   ZAF 2010
## 14252                                         South Africa    ZA   ZAF 2009
## 14253                                         South Africa    ZA   ZAF 2008
## 14254                                         South Africa    ZA   ZAF 2007
## 14255                                         South Africa    ZA   ZAF 2006
## 14256                                         South Africa    ZA   ZAF 2005
## 14257                                         South Africa    ZA   ZAF 2004
## 14258                                         South Africa    ZA   ZAF 2003
## 14259                                         South Africa    ZA   ZAF 2002
## 14260                                         South Africa    ZA   ZAF 2001
## 14261                                         South Africa    ZA   ZAF 2000
## 14262                                         South Africa    ZA   ZAF 1999
## 14263                                         South Africa    ZA   ZAF 1998
## 14264                                         South Africa    ZA   ZAF 1997
## 14265                                         South Africa    ZA   ZAF 1996
## 14266                                         South Africa    ZA   ZAF 1995
## 14267                                         South Africa    ZA   ZAF 1994
## 14268                                         South Africa    ZA   ZAF 1993
## 14269                                         South Africa    ZA   ZAF 1992
## 14270                                         South Africa    ZA   ZAF 1991
## 14271                                         South Africa    ZA   ZAF 1990
## 14272                                         South Africa    ZA   ZAF 1989
## 14273                                         South Africa    ZA   ZAF 1988
## 14274                                         South Africa    ZA   ZAF 1987
## 14275                                         South Africa    ZA   ZAF 1986
## 14276                                         South Africa    ZA   ZAF 1985
## 14277                                         South Africa    ZA   ZAF 1984
## 14278                                         South Africa    ZA   ZAF 1983
## 14279                                         South Africa    ZA   ZAF 1982
## 14280                                         South Africa    ZA   ZAF 1981
## 14281                                         South Africa    ZA   ZAF 1980
## 14282                                         South Africa    ZA   ZAF 1979
## 14283                                         South Africa    ZA   ZAF 1978
## 14284                                         South Africa    ZA   ZAF 1977
## 14285                                         South Africa    ZA   ZAF 1976
## 14286                                         South Africa    ZA   ZAF 1975
## 14287                                         South Africa    ZA   ZAF 1974
## 14288                                         South Africa    ZA   ZAF 1973
## 14289                                         South Africa    ZA   ZAF 1972
## 14290                                         South Africa    ZA   ZAF 1971
## 14291                                         South Africa    ZA   ZAF 1970
## 14292                                         South Africa    ZA   ZAF 1969
## 14293                                         South Africa    ZA   ZAF 1968
## 14294                                         South Africa    ZA   ZAF 1967
## 14295                                         South Africa    ZA   ZAF 1966
## 14296                                         South Africa    ZA   ZAF 1965
## 14297                                         South Africa    ZA   ZAF 1964
## 14298                                         South Africa    ZA   ZAF 1963
## 14299                                         South Africa    ZA   ZAF 1962
## 14300                                         South Africa    ZA   ZAF 1961
## 14301                                         South Africa    ZA   ZAF 1960
## 14302                                          South Sudan    SS   SSD 2022
## 14303                                          South Sudan    SS   SSD 2021
## 14304                                          South Sudan    SS   SSD 2020
## 14305                                          South Sudan    SS   SSD 2019
## 14306                                          South Sudan    SS   SSD 2018
## 14307                                          South Sudan    SS   SSD 2017
## 14308                                          South Sudan    SS   SSD 2016
## 14309                                          South Sudan    SS   SSD 2015
## 14310                                          South Sudan    SS   SSD 2014
## 14311                                          South Sudan    SS   SSD 2013
## 14312                                          South Sudan    SS   SSD 2012
## 14313                                          South Sudan    SS   SSD 2011
## 14314                                          South Sudan    SS   SSD 2010
## 14315                                          South Sudan    SS   SSD 2009
## 14316                                          South Sudan    SS   SSD 2008
## 14317                                          South Sudan    SS   SSD 2007
## 14318                                          South Sudan    SS   SSD 2006
## 14319                                          South Sudan    SS   SSD 2005
## 14320                                          South Sudan    SS   SSD 2004
## 14321                                          South Sudan    SS   SSD 2003
## 14322                                          South Sudan    SS   SSD 2002
## 14323                                          South Sudan    SS   SSD 2001
## 14324                                          South Sudan    SS   SSD 2000
## 14325                                          South Sudan    SS   SSD 1999
## 14326                                          South Sudan    SS   SSD 1998
## 14327                                          South Sudan    SS   SSD 1997
## 14328                                          South Sudan    SS   SSD 1996
## 14329                                          South Sudan    SS   SSD 1995
## 14330                                          South Sudan    SS   SSD 1994
## 14331                                          South Sudan    SS   SSD 1993
## 14332                                          South Sudan    SS   SSD 1992
## 14333                                          South Sudan    SS   SSD 1991
## 14334                                          South Sudan    SS   SSD 1990
## 14335                                          South Sudan    SS   SSD 1989
## 14336                                          South Sudan    SS   SSD 1988
## 14337                                          South Sudan    SS   SSD 1987
## 14338                                          South Sudan    SS   SSD 1986
## 14339                                          South Sudan    SS   SSD 1985
## 14340                                          South Sudan    SS   SSD 1984
## 14341                                          South Sudan    SS   SSD 1983
## 14342                                          South Sudan    SS   SSD 1982
## 14343                                          South Sudan    SS   SSD 1981
## 14344                                          South Sudan    SS   SSD 1980
## 14345                                          South Sudan    SS   SSD 1979
## 14346                                          South Sudan    SS   SSD 1978
## 14347                                          South Sudan    SS   SSD 1977
## 14348                                          South Sudan    SS   SSD 1976
## 14349                                          South Sudan    SS   SSD 1975
## 14350                                          South Sudan    SS   SSD 1974
## 14351                                          South Sudan    SS   SSD 1973
## 14352                                          South Sudan    SS   SSD 1972
## 14353                                          South Sudan    SS   SSD 1971
## 14354                                          South Sudan    SS   SSD 1970
## 14355                                          South Sudan    SS   SSD 1969
## 14356                                          South Sudan    SS   SSD 1968
## 14357                                          South Sudan    SS   SSD 1967
## 14358                                          South Sudan    SS   SSD 1966
## 14359                                          South Sudan    SS   SSD 1965
## 14360                                          South Sudan    SS   SSD 1964
## 14361                                          South Sudan    SS   SSD 1963
## 14362                                          South Sudan    SS   SSD 1962
## 14363                                          South Sudan    SS   SSD 1961
## 14364                                          South Sudan    SS   SSD 1960
## 14365                                                Spain    ES   ESP 2022
## 14366                                                Spain    ES   ESP 2021
## 14367                                                Spain    ES   ESP 2020
## 14368                                                Spain    ES   ESP 2019
## 14369                                                Spain    ES   ESP 2018
## 14370                                                Spain    ES   ESP 2017
## 14371                                                Spain    ES   ESP 2016
## 14372                                                Spain    ES   ESP 2015
## 14373                                                Spain    ES   ESP 2014
## 14374                                                Spain    ES   ESP 2013
## 14375                                                Spain    ES   ESP 2012
## 14376                                                Spain    ES   ESP 2011
## 14377                                                Spain    ES   ESP 2010
## 14378                                                Spain    ES   ESP 2009
## 14379                                                Spain    ES   ESP 2008
## 14380                                                Spain    ES   ESP 2007
## 14381                                                Spain    ES   ESP 2006
## 14382                                                Spain    ES   ESP 2005
## 14383                                                Spain    ES   ESP 2004
## 14384                                                Spain    ES   ESP 2003
## 14385                                                Spain    ES   ESP 2002
## 14386                                                Spain    ES   ESP 2001
## 14387                                                Spain    ES   ESP 2000
## 14388                                                Spain    ES   ESP 1999
## 14389                                                Spain    ES   ESP 1998
## 14390                                                Spain    ES   ESP 1997
## 14391                                                Spain    ES   ESP 1996
## 14392                                                Spain    ES   ESP 1995
## 14393                                                Spain    ES   ESP 1994
## 14394                                                Spain    ES   ESP 1993
## 14395                                                Spain    ES   ESP 1992
## 14396                                                Spain    ES   ESP 1991
## 14397                                                Spain    ES   ESP 1990
## 14398                                                Spain    ES   ESP 1989
## 14399                                                Spain    ES   ESP 1988
## 14400                                                Spain    ES   ESP 1987
## 14401                                                Spain    ES   ESP 1986
## 14402                                                Spain    ES   ESP 1985
## 14403                                                Spain    ES   ESP 1984
## 14404                                                Spain    ES   ESP 1983
## 14405                                                Spain    ES   ESP 1982
## 14406                                                Spain    ES   ESP 1981
## 14407                                                Spain    ES   ESP 1980
## 14408                                                Spain    ES   ESP 1979
## 14409                                                Spain    ES   ESP 1978
## 14410                                                Spain    ES   ESP 1977
## 14411                                                Spain    ES   ESP 1976
## 14412                                                Spain    ES   ESP 1975
## 14413                                                Spain    ES   ESP 1974
## 14414                                                Spain    ES   ESP 1973
## 14415                                                Spain    ES   ESP 1972
## 14416                                                Spain    ES   ESP 1971
## 14417                                                Spain    ES   ESP 1970
## 14418                                                Spain    ES   ESP 1969
## 14419                                                Spain    ES   ESP 1968
## 14420                                                Spain    ES   ESP 1967
## 14421                                                Spain    ES   ESP 1966
## 14422                                                Spain    ES   ESP 1965
## 14423                                                Spain    ES   ESP 1964
## 14424                                                Spain    ES   ESP 1963
## 14425                                                Spain    ES   ESP 1962
## 14426                                                Spain    ES   ESP 1961
## 14427                                                Spain    ES   ESP 1960
## 14428                                            Sri Lanka    LK   LKA 2022
## 14429                                            Sri Lanka    LK   LKA 2021
## 14430                                            Sri Lanka    LK   LKA 2020
## 14431                                            Sri Lanka    LK   LKA 2019
## 14432                                            Sri Lanka    LK   LKA 2018
## 14433                                            Sri Lanka    LK   LKA 2017
## 14434                                            Sri Lanka    LK   LKA 2016
## 14435                                            Sri Lanka    LK   LKA 2015
## 14436                                            Sri Lanka    LK   LKA 2014
## 14437                                            Sri Lanka    LK   LKA 2013
## 14438                                            Sri Lanka    LK   LKA 2012
## 14439                                            Sri Lanka    LK   LKA 2011
## 14440                                            Sri Lanka    LK   LKA 2010
## 14441                                            Sri Lanka    LK   LKA 2009
## 14442                                            Sri Lanka    LK   LKA 2008
## 14443                                            Sri Lanka    LK   LKA 2007
## 14444                                            Sri Lanka    LK   LKA 2006
## 14445                                            Sri Lanka    LK   LKA 2005
## 14446                                            Sri Lanka    LK   LKA 2004
## 14447                                            Sri Lanka    LK   LKA 2003
## 14448                                            Sri Lanka    LK   LKA 2002
## 14449                                            Sri Lanka    LK   LKA 2001
## 14450                                            Sri Lanka    LK   LKA 2000
## 14451                                            Sri Lanka    LK   LKA 1999
## 14452                                            Sri Lanka    LK   LKA 1998
## 14453                                            Sri Lanka    LK   LKA 1997
## 14454                                            Sri Lanka    LK   LKA 1996
## 14455                                            Sri Lanka    LK   LKA 1995
## 14456                                            Sri Lanka    LK   LKA 1994
## 14457                                            Sri Lanka    LK   LKA 1993
## 14458                                            Sri Lanka    LK   LKA 1992
## 14459                                            Sri Lanka    LK   LKA 1991
## 14460                                            Sri Lanka    LK   LKA 1990
## 14461                                            Sri Lanka    LK   LKA 1989
## 14462                                            Sri Lanka    LK   LKA 1988
## 14463                                            Sri Lanka    LK   LKA 1987
## 14464                                            Sri Lanka    LK   LKA 1986
## 14465                                            Sri Lanka    LK   LKA 1985
## 14466                                            Sri Lanka    LK   LKA 1984
## 14467                                            Sri Lanka    LK   LKA 1983
## 14468                                            Sri Lanka    LK   LKA 1982
## 14469                                            Sri Lanka    LK   LKA 1981
## 14470                                            Sri Lanka    LK   LKA 1980
## 14471                                            Sri Lanka    LK   LKA 1979
## 14472                                            Sri Lanka    LK   LKA 1978
## 14473                                            Sri Lanka    LK   LKA 1977
## 14474                                            Sri Lanka    LK   LKA 1976
## 14475                                            Sri Lanka    LK   LKA 1975
## 14476                                            Sri Lanka    LK   LKA 1974
## 14477                                            Sri Lanka    LK   LKA 1973
## 14478                                            Sri Lanka    LK   LKA 1972
## 14479                                            Sri Lanka    LK   LKA 1971
## 14480                                            Sri Lanka    LK   LKA 1970
## 14481                                            Sri Lanka    LK   LKA 1969
## 14482                                            Sri Lanka    LK   LKA 1968
## 14483                                            Sri Lanka    LK   LKA 1967
## 14484                                            Sri Lanka    LK   LKA 1966
## 14485                                            Sri Lanka    LK   LKA 1965
## 14486                                            Sri Lanka    LK   LKA 1964
## 14487                                            Sri Lanka    LK   LKA 1963
## 14488                                            Sri Lanka    LK   LKA 1962
## 14489                                            Sri Lanka    LK   LKA 1961
## 14490                                            Sri Lanka    LK   LKA 1960
## 14491                                  St. Kitts and Nevis    KN   KNA 2022
## 14492                                  St. Kitts and Nevis    KN   KNA 2021
## 14493                                  St. Kitts and Nevis    KN   KNA 2020
## 14494                                  St. Kitts and Nevis    KN   KNA 2019
## 14495                                  St. Kitts and Nevis    KN   KNA 2018
## 14496                                  St. Kitts and Nevis    KN   KNA 2017
## 14497                                  St. Kitts and Nevis    KN   KNA 2016
## 14498                                  St. Kitts and Nevis    KN   KNA 2015
## 14499                                  St. Kitts and Nevis    KN   KNA 2014
## 14500                                  St. Kitts and Nevis    KN   KNA 2013
## 14501                                  St. Kitts and Nevis    KN   KNA 2012
## 14502                                  St. Kitts and Nevis    KN   KNA 2011
## 14503                                  St. Kitts and Nevis    KN   KNA 2010
## 14504                                  St. Kitts and Nevis    KN   KNA 2009
## 14505                                  St. Kitts and Nevis    KN   KNA 2008
## 14506                                  St. Kitts and Nevis    KN   KNA 2007
## 14507                                  St. Kitts and Nevis    KN   KNA 2006
## 14508                                  St. Kitts and Nevis    KN   KNA 2005
## 14509                                  St. Kitts and Nevis    KN   KNA 2004
## 14510                                  St. Kitts and Nevis    KN   KNA 2003
## 14511                                  St. Kitts and Nevis    KN   KNA 2002
## 14512                                  St. Kitts and Nevis    KN   KNA 2001
## 14513                                  St. Kitts and Nevis    KN   KNA 2000
## 14514                                  St. Kitts and Nevis    KN   KNA 1999
## 14515                                  St. Kitts and Nevis    KN   KNA 1998
## 14516                                  St. Kitts and Nevis    KN   KNA 1997
## 14517                                  St. Kitts and Nevis    KN   KNA 1996
## 14518                                  St. Kitts and Nevis    KN   KNA 1995
## 14519                                  St. Kitts and Nevis    KN   KNA 1994
## 14520                                  St. Kitts and Nevis    KN   KNA 1993
## 14521                                  St. Kitts and Nevis    KN   KNA 1992
## 14522                                  St. Kitts and Nevis    KN   KNA 1991
## 14523                                  St. Kitts and Nevis    KN   KNA 1990
## 14524                                  St. Kitts and Nevis    KN   KNA 1989
## 14525                                  St. Kitts and Nevis    KN   KNA 1988
## 14526                                  St. Kitts and Nevis    KN   KNA 1987
## 14527                                  St. Kitts and Nevis    KN   KNA 1986
## 14528                                  St. Kitts and Nevis    KN   KNA 1985
## 14529                                  St. Kitts and Nevis    KN   KNA 1984
## 14530                                  St. Kitts and Nevis    KN   KNA 1983
## 14531                                  St. Kitts and Nevis    KN   KNA 1982
## 14532                                  St. Kitts and Nevis    KN   KNA 1981
## 14533                                  St. Kitts and Nevis    KN   KNA 1980
## 14534                                  St. Kitts and Nevis    KN   KNA 1979
## 14535                                  St. Kitts and Nevis    KN   KNA 1978
## 14536                                  St. Kitts and Nevis    KN   KNA 1977
## 14537                                  St. Kitts and Nevis    KN   KNA 1976
## 14538                                  St. Kitts and Nevis    KN   KNA 1975
## 14539                                  St. Kitts and Nevis    KN   KNA 1974
## 14540                                  St. Kitts and Nevis    KN   KNA 1973
## 14541                                  St. Kitts and Nevis    KN   KNA 1972
## 14542                                  St. Kitts and Nevis    KN   KNA 1971
## 14543                                  St. Kitts and Nevis    KN   KNA 1970
## 14544                                  St. Kitts and Nevis    KN   KNA 1969
## 14545                                  St. Kitts and Nevis    KN   KNA 1968
## 14546                                  St. Kitts and Nevis    KN   KNA 1967
## 14547                                  St. Kitts and Nevis    KN   KNA 1966
## 14548                                  St. Kitts and Nevis    KN   KNA 1965
## 14549                                  St. Kitts and Nevis    KN   KNA 1964
## 14550                                  St. Kitts and Nevis    KN   KNA 1963
## 14551                                  St. Kitts and Nevis    KN   KNA 1962
## 14552                                  St. Kitts and Nevis    KN   KNA 1961
## 14553                                  St. Kitts and Nevis    KN   KNA 1960
## 14554                                            St. Lucia    LC   LCA 2022
## 14555                                            St. Lucia    LC   LCA 2021
## 14556                                            St. Lucia    LC   LCA 2020
## 14557                                            St. Lucia    LC   LCA 2019
## 14558                                            St. Lucia    LC   LCA 2018
## 14559                                            St. Lucia    LC   LCA 2017
## 14560                                            St. Lucia    LC   LCA 2016
## 14561                                            St. Lucia    LC   LCA 2015
## 14562                                            St. Lucia    LC   LCA 2014
## 14563                                            St. Lucia    LC   LCA 2013
## 14564                                            St. Lucia    LC   LCA 2012
## 14565                                            St. Lucia    LC   LCA 2011
## 14566                                            St. Lucia    LC   LCA 2010
## 14567                                            St. Lucia    LC   LCA 2009
## 14568                                            St. Lucia    LC   LCA 2008
## 14569                                            St. Lucia    LC   LCA 2007
## 14570                                            St. Lucia    LC   LCA 2006
## 14571                                            St. Lucia    LC   LCA 2005
## 14572                                            St. Lucia    LC   LCA 2004
## 14573                                            St. Lucia    LC   LCA 2003
## 14574                                            St. Lucia    LC   LCA 2002
## 14575                                            St. Lucia    LC   LCA 2001
## 14576                                            St. Lucia    LC   LCA 2000
## 14577                                            St. Lucia    LC   LCA 1999
## 14578                                            St. Lucia    LC   LCA 1998
## 14579                                            St. Lucia    LC   LCA 1997
## 14580                                            St. Lucia    LC   LCA 1996
## 14581                                            St. Lucia    LC   LCA 1995
## 14582                                            St. Lucia    LC   LCA 1994
## 14583                                            St. Lucia    LC   LCA 1993
## 14584                                            St. Lucia    LC   LCA 1992
## 14585                                            St. Lucia    LC   LCA 1991
## 14586                                            St. Lucia    LC   LCA 1990
## 14587                                            St. Lucia    LC   LCA 1989
## 14588                                            St. Lucia    LC   LCA 1988
## 14589                                            St. Lucia    LC   LCA 1987
## 14590                                            St. Lucia    LC   LCA 1986
## 14591                                            St. Lucia    LC   LCA 1985
## 14592                                            St. Lucia    LC   LCA 1984
## 14593                                            St. Lucia    LC   LCA 1983
## 14594                                            St. Lucia    LC   LCA 1982
## 14595                                            St. Lucia    LC   LCA 1981
## 14596                                            St. Lucia    LC   LCA 1980
## 14597                                            St. Lucia    LC   LCA 1979
## 14598                                            St. Lucia    LC   LCA 1978
## 14599                                            St. Lucia    LC   LCA 1977
## 14600                                            St. Lucia    LC   LCA 1976
## 14601                                            St. Lucia    LC   LCA 1975
## 14602                                            St. Lucia    LC   LCA 1974
## 14603                                            St. Lucia    LC   LCA 1973
## 14604                                            St. Lucia    LC   LCA 1972
## 14605                                            St. Lucia    LC   LCA 1971
## 14606                                            St. Lucia    LC   LCA 1970
## 14607                                            St. Lucia    LC   LCA 1969
## 14608                                            St. Lucia    LC   LCA 1968
## 14609                                            St. Lucia    LC   LCA 1967
## 14610                                            St. Lucia    LC   LCA 1966
## 14611                                            St. Lucia    LC   LCA 1965
## 14612                                            St. Lucia    LC   LCA 1964
## 14613                                            St. Lucia    LC   LCA 1963
## 14614                                            St. Lucia    LC   LCA 1962
## 14615                                            St. Lucia    LC   LCA 1961
## 14616                                            St. Lucia    LC   LCA 1960
## 14617                             St. Martin (French part)    MF   MAF 2022
## 14618                             St. Martin (French part)    MF   MAF 2021
## 14619                             St. Martin (French part)    MF   MAF 2020
## 14620                             St. Martin (French part)    MF   MAF 2019
## 14621                             St. Martin (French part)    MF   MAF 2018
## 14622                             St. Martin (French part)    MF   MAF 2017
## 14623                             St. Martin (French part)    MF   MAF 2016
## 14624                             St. Martin (French part)    MF   MAF 2015
## 14625                             St. Martin (French part)    MF   MAF 2014
## 14626                             St. Martin (French part)    MF   MAF 2013
## 14627                             St. Martin (French part)    MF   MAF 2012
## 14628                             St. Martin (French part)    MF   MAF 2011
## 14629                             St. Martin (French part)    MF   MAF 2010
## 14630                             St. Martin (French part)    MF   MAF 2009
## 14631                             St. Martin (French part)    MF   MAF 2008
## 14632                             St. Martin (French part)    MF   MAF 2007
## 14633                             St. Martin (French part)    MF   MAF 2006
## 14634                             St. Martin (French part)    MF   MAF 2005
## 14635                             St. Martin (French part)    MF   MAF 2004
## 14636                             St. Martin (French part)    MF   MAF 2003
## 14637                             St. Martin (French part)    MF   MAF 2002
## 14638                             St. Martin (French part)    MF   MAF 2001
## 14639                             St. Martin (French part)    MF   MAF 2000
## 14640                             St. Martin (French part)    MF   MAF 1999
## 14641                             St. Martin (French part)    MF   MAF 1998
## 14642                             St. Martin (French part)    MF   MAF 1997
## 14643                             St. Martin (French part)    MF   MAF 1996
## 14644                             St. Martin (French part)    MF   MAF 1995
## 14645                             St. Martin (French part)    MF   MAF 1994
## 14646                             St. Martin (French part)    MF   MAF 1993
## 14647                             St. Martin (French part)    MF   MAF 1992
## 14648                             St. Martin (French part)    MF   MAF 1991
## 14649                             St. Martin (French part)    MF   MAF 1990
## 14650                             St. Martin (French part)    MF   MAF 1989
## 14651                             St. Martin (French part)    MF   MAF 1988
## 14652                             St. Martin (French part)    MF   MAF 1987
## 14653                             St. Martin (French part)    MF   MAF 1986
## 14654                             St. Martin (French part)    MF   MAF 1985
## 14655                             St. Martin (French part)    MF   MAF 1984
## 14656                             St. Martin (French part)    MF   MAF 1983
## 14657                             St. Martin (French part)    MF   MAF 1982
## 14658                             St. Martin (French part)    MF   MAF 1981
## 14659                             St. Martin (French part)    MF   MAF 1980
## 14660                             St. Martin (French part)    MF   MAF 1979
## 14661                             St. Martin (French part)    MF   MAF 1978
## 14662                             St. Martin (French part)    MF   MAF 1977
## 14663                             St. Martin (French part)    MF   MAF 1976
## 14664                             St. Martin (French part)    MF   MAF 1975
## 14665                             St. Martin (French part)    MF   MAF 1974
## 14666                             St. Martin (French part)    MF   MAF 1973
## 14667                             St. Martin (French part)    MF   MAF 1972
## 14668                             St. Martin (French part)    MF   MAF 1971
## 14669                             St. Martin (French part)    MF   MAF 1970
## 14670                             St. Martin (French part)    MF   MAF 1969
## 14671                             St. Martin (French part)    MF   MAF 1968
## 14672                             St. Martin (French part)    MF   MAF 1967
## 14673                             St. Martin (French part)    MF   MAF 1966
## 14674                             St. Martin (French part)    MF   MAF 1965
## 14675                             St. Martin (French part)    MF   MAF 1964
## 14676                             St. Martin (French part)    MF   MAF 1963
## 14677                             St. Martin (French part)    MF   MAF 1962
## 14678                             St. Martin (French part)    MF   MAF 1961
## 14679                             St. Martin (French part)    MF   MAF 1960
## 14680                       St. Vincent and the Grenadines    VC   VCT 2022
## 14681                       St. Vincent and the Grenadines    VC   VCT 2021
## 14682                       St. Vincent and the Grenadines    VC   VCT 2020
## 14683                       St. Vincent and the Grenadines    VC   VCT 2019
## 14684                       St. Vincent and the Grenadines    VC   VCT 2018
## 14685                       St. Vincent and the Grenadines    VC   VCT 2017
## 14686                       St. Vincent and the Grenadines    VC   VCT 2016
## 14687                       St. Vincent and the Grenadines    VC   VCT 2015
## 14688                       St. Vincent and the Grenadines    VC   VCT 2014
## 14689                       St. Vincent and the Grenadines    VC   VCT 2013
## 14690                       St. Vincent and the Grenadines    VC   VCT 2012
## 14691                       St. Vincent and the Grenadines    VC   VCT 2011
## 14692                       St. Vincent and the Grenadines    VC   VCT 2010
## 14693                       St. Vincent and the Grenadines    VC   VCT 2009
## 14694                       St. Vincent and the Grenadines    VC   VCT 2008
## 14695                       St. Vincent and the Grenadines    VC   VCT 2007
## 14696                       St. Vincent and the Grenadines    VC   VCT 2006
## 14697                       St. Vincent and the Grenadines    VC   VCT 2005
## 14698                       St. Vincent and the Grenadines    VC   VCT 2004
## 14699                       St. Vincent and the Grenadines    VC   VCT 2003
## 14700                       St. Vincent and the Grenadines    VC   VCT 2002
## 14701                       St. Vincent and the Grenadines    VC   VCT 2001
## 14702                       St. Vincent and the Grenadines    VC   VCT 2000
## 14703                       St. Vincent and the Grenadines    VC   VCT 1999
## 14704                       St. Vincent and the Grenadines    VC   VCT 1998
## 14705                       St. Vincent and the Grenadines    VC   VCT 1997
## 14706                       St. Vincent and the Grenadines    VC   VCT 1996
## 14707                       St. Vincent and the Grenadines    VC   VCT 1995
## 14708                       St. Vincent and the Grenadines    VC   VCT 1994
## 14709                       St. Vincent and the Grenadines    VC   VCT 1993
## 14710                       St. Vincent and the Grenadines    VC   VCT 1992
## 14711                       St. Vincent and the Grenadines    VC   VCT 1991
## 14712                       St. Vincent and the Grenadines    VC   VCT 1990
## 14713                       St. Vincent and the Grenadines    VC   VCT 1989
## 14714                       St. Vincent and the Grenadines    VC   VCT 1988
## 14715                       St. Vincent and the Grenadines    VC   VCT 1987
## 14716                       St. Vincent and the Grenadines    VC   VCT 1986
## 14717                       St. Vincent and the Grenadines    VC   VCT 1985
## 14718                       St. Vincent and the Grenadines    VC   VCT 1984
## 14719                       St. Vincent and the Grenadines    VC   VCT 1983
## 14720                       St. Vincent and the Grenadines    VC   VCT 1982
## 14721                       St. Vincent and the Grenadines    VC   VCT 1981
## 14722                       St. Vincent and the Grenadines    VC   VCT 1980
## 14723                       St. Vincent and the Grenadines    VC   VCT 1979
## 14724                       St. Vincent and the Grenadines    VC   VCT 1978
## 14725                       St. Vincent and the Grenadines    VC   VCT 1977
## 14726                       St. Vincent and the Grenadines    VC   VCT 1976
## 14727                       St. Vincent and the Grenadines    VC   VCT 1975
## 14728                       St. Vincent and the Grenadines    VC   VCT 1974
## 14729                       St. Vincent and the Grenadines    VC   VCT 1973
## 14730                       St. Vincent and the Grenadines    VC   VCT 1972
## 14731                       St. Vincent and the Grenadines    VC   VCT 1971
## 14732                       St. Vincent and the Grenadines    VC   VCT 1970
## 14733                       St. Vincent and the Grenadines    VC   VCT 1969
## 14734                       St. Vincent and the Grenadines    VC   VCT 1968
## 14735                       St. Vincent and the Grenadines    VC   VCT 1967
## 14736                       St. Vincent and the Grenadines    VC   VCT 1966
## 14737                       St. Vincent and the Grenadines    VC   VCT 1965
## 14738                       St. Vincent and the Grenadines    VC   VCT 1964
## 14739                       St. Vincent and the Grenadines    VC   VCT 1963
## 14740                       St. Vincent and the Grenadines    VC   VCT 1962
## 14741                       St. Vincent and the Grenadines    VC   VCT 1961
## 14742                       St. Vincent and the Grenadines    VC   VCT 1960
## 14743                                                Sudan    SD   SDN 2022
## 14744                                                Sudan    SD   SDN 2021
## 14745                                                Sudan    SD   SDN 2020
## 14746                                                Sudan    SD   SDN 2019
## 14747                                                Sudan    SD   SDN 2018
## 14748                                                Sudan    SD   SDN 2017
## 14749                                                Sudan    SD   SDN 2016
## 14750                                                Sudan    SD   SDN 2015
## 14751                                                Sudan    SD   SDN 2014
## 14752                                                Sudan    SD   SDN 2013
## 14753                                                Sudan    SD   SDN 2012
## 14754                                                Sudan    SD   SDN 2011
## 14755                                                Sudan    SD   SDN 2010
## 14756                                                Sudan    SD   SDN 2009
## 14757                                                Sudan    SD   SDN 2008
## 14758                                                Sudan    SD   SDN 2007
## 14759                                                Sudan    SD   SDN 2006
## 14760                                                Sudan    SD   SDN 2005
## 14761                                                Sudan    SD   SDN 2004
## 14762                                                Sudan    SD   SDN 2003
## 14763                                                Sudan    SD   SDN 2002
## 14764                                                Sudan    SD   SDN 2001
## 14765                                                Sudan    SD   SDN 2000
## 14766                                                Sudan    SD   SDN 1999
## 14767                                                Sudan    SD   SDN 1998
## 14768                                                Sudan    SD   SDN 1997
## 14769                                                Sudan    SD   SDN 1996
## 14770                                                Sudan    SD   SDN 1995
## 14771                                                Sudan    SD   SDN 1994
## 14772                                                Sudan    SD   SDN 1993
## 14773                                                Sudan    SD   SDN 1992
## 14774                                                Sudan    SD   SDN 1991
## 14775                                                Sudan    SD   SDN 1990
## 14776                                                Sudan    SD   SDN 1989
## 14777                                                Sudan    SD   SDN 1988
## 14778                                                Sudan    SD   SDN 1987
## 14779                                                Sudan    SD   SDN 1986
## 14780                                                Sudan    SD   SDN 1985
## 14781                                                Sudan    SD   SDN 1984
## 14782                                                Sudan    SD   SDN 1983
## 14783                                                Sudan    SD   SDN 1982
## 14784                                                Sudan    SD   SDN 1981
## 14785                                                Sudan    SD   SDN 1980
## 14786                                                Sudan    SD   SDN 1979
## 14787                                                Sudan    SD   SDN 1978
## 14788                                                Sudan    SD   SDN 1977
## 14789                                                Sudan    SD   SDN 1976
## 14790                                                Sudan    SD   SDN 1975
## 14791                                                Sudan    SD   SDN 1974
## 14792                                                Sudan    SD   SDN 1973
## 14793                                                Sudan    SD   SDN 1972
## 14794                                                Sudan    SD   SDN 1971
## 14795                                                Sudan    SD   SDN 1970
## 14796                                                Sudan    SD   SDN 1969
## 14797                                                Sudan    SD   SDN 1968
## 14798                                                Sudan    SD   SDN 1967
## 14799                                                Sudan    SD   SDN 1966
## 14800                                                Sudan    SD   SDN 1965
## 14801                                                Sudan    SD   SDN 1964
## 14802                                                Sudan    SD   SDN 1963
## 14803                                                Sudan    SD   SDN 1962
## 14804                                                Sudan    SD   SDN 1961
## 14805                                                Sudan    SD   SDN 1960
## 14806                                             Suriname    SR   SUR 2022
## 14807                                             Suriname    SR   SUR 2021
## 14808                                             Suriname    SR   SUR 2020
## 14809                                             Suriname    SR   SUR 2019
## 14810                                             Suriname    SR   SUR 2018
## 14811                                             Suriname    SR   SUR 2017
## 14812                                             Suriname    SR   SUR 2016
## 14813                                             Suriname    SR   SUR 2015
## 14814                                             Suriname    SR   SUR 2014
## 14815                                             Suriname    SR   SUR 2013
## 14816                                             Suriname    SR   SUR 2012
## 14817                                             Suriname    SR   SUR 2011
## 14818                                             Suriname    SR   SUR 2010
## 14819                                             Suriname    SR   SUR 2009
## 14820                                             Suriname    SR   SUR 2008
## 14821                                             Suriname    SR   SUR 2007
## 14822                                             Suriname    SR   SUR 2006
## 14823                                             Suriname    SR   SUR 2005
## 14824                                             Suriname    SR   SUR 2004
## 14825                                             Suriname    SR   SUR 2003
## 14826                                             Suriname    SR   SUR 2002
## 14827                                             Suriname    SR   SUR 2001
## 14828                                             Suriname    SR   SUR 2000
## 14829                                             Suriname    SR   SUR 1999
## 14830                                             Suriname    SR   SUR 1998
## 14831                                             Suriname    SR   SUR 1997
## 14832                                             Suriname    SR   SUR 1996
## 14833                                             Suriname    SR   SUR 1995
## 14834                                             Suriname    SR   SUR 1994
## 14835                                             Suriname    SR   SUR 1993
## 14836                                             Suriname    SR   SUR 1992
## 14837                                             Suriname    SR   SUR 1991
## 14838                                             Suriname    SR   SUR 1990
## 14839                                             Suriname    SR   SUR 1989
## 14840                                             Suriname    SR   SUR 1988
## 14841                                             Suriname    SR   SUR 1987
## 14842                                             Suriname    SR   SUR 1986
## 14843                                             Suriname    SR   SUR 1985
## 14844                                             Suriname    SR   SUR 1984
## 14845                                             Suriname    SR   SUR 1983
## 14846                                             Suriname    SR   SUR 1982
## 14847                                             Suriname    SR   SUR 1981
## 14848                                             Suriname    SR   SUR 1980
## 14849                                             Suriname    SR   SUR 1979
## 14850                                             Suriname    SR   SUR 1978
## 14851                                             Suriname    SR   SUR 1977
## 14852                                             Suriname    SR   SUR 1976
## 14853                                             Suriname    SR   SUR 1975
## 14854                                             Suriname    SR   SUR 1974
## 14855                                             Suriname    SR   SUR 1973
## 14856                                             Suriname    SR   SUR 1972
## 14857                                             Suriname    SR   SUR 1971
## 14858                                             Suriname    SR   SUR 1970
## 14859                                             Suriname    SR   SUR 1969
## 14860                                             Suriname    SR   SUR 1968
## 14861                                             Suriname    SR   SUR 1967
## 14862                                             Suriname    SR   SUR 1966
## 14863                                             Suriname    SR   SUR 1965
## 14864                                             Suriname    SR   SUR 1964
## 14865                                             Suriname    SR   SUR 1963
## 14866                                             Suriname    SR   SUR 1962
## 14867                                             Suriname    SR   SUR 1961
## 14868                                             Suriname    SR   SUR 1960
## 14869                                               Sweden    SE   SWE 2022
## 14870                                               Sweden    SE   SWE 2021
## 14871                                               Sweden    SE   SWE 2020
## 14872                                               Sweden    SE   SWE 2019
## 14873                                               Sweden    SE   SWE 2018
## 14874                                               Sweden    SE   SWE 2017
## 14875                                               Sweden    SE   SWE 2016
## 14876                                               Sweden    SE   SWE 2015
## 14877                                               Sweden    SE   SWE 2014
## 14878                                               Sweden    SE   SWE 2013
## 14879                                               Sweden    SE   SWE 2012
## 14880                                               Sweden    SE   SWE 2011
## 14881                                               Sweden    SE   SWE 2010
## 14882                                               Sweden    SE   SWE 2009
## 14883                                               Sweden    SE   SWE 2008
## 14884                                               Sweden    SE   SWE 2007
## 14885                                               Sweden    SE   SWE 2006
## 14886                                               Sweden    SE   SWE 2005
## 14887                                               Sweden    SE   SWE 2004
## 14888                                               Sweden    SE   SWE 2003
## 14889                                               Sweden    SE   SWE 2002
## 14890                                               Sweden    SE   SWE 2001
## 14891                                               Sweden    SE   SWE 2000
## 14892                                               Sweden    SE   SWE 1999
## 14893                                               Sweden    SE   SWE 1998
## 14894                                               Sweden    SE   SWE 1997
## 14895                                               Sweden    SE   SWE 1996
## 14896                                               Sweden    SE   SWE 1995
## 14897                                               Sweden    SE   SWE 1994
## 14898                                               Sweden    SE   SWE 1993
## 14899                                               Sweden    SE   SWE 1992
## 14900                                               Sweden    SE   SWE 1991
## 14901                                               Sweden    SE   SWE 1990
## 14902                                               Sweden    SE   SWE 1989
## 14903                                               Sweden    SE   SWE 1988
## 14904                                               Sweden    SE   SWE 1987
## 14905                                               Sweden    SE   SWE 1986
## 14906                                               Sweden    SE   SWE 1985
## 14907                                               Sweden    SE   SWE 1984
## 14908                                               Sweden    SE   SWE 1983
## 14909                                               Sweden    SE   SWE 1982
## 14910                                               Sweden    SE   SWE 1981
## 14911                                               Sweden    SE   SWE 1980
## 14912                                               Sweden    SE   SWE 1979
## 14913                                               Sweden    SE   SWE 1978
## 14914                                               Sweden    SE   SWE 1977
## 14915                                               Sweden    SE   SWE 1976
## 14916                                               Sweden    SE   SWE 1975
## 14917                                               Sweden    SE   SWE 1974
## 14918                                               Sweden    SE   SWE 1973
## 14919                                               Sweden    SE   SWE 1972
## 14920                                               Sweden    SE   SWE 1971
## 14921                                               Sweden    SE   SWE 1970
## 14922                                               Sweden    SE   SWE 1969
## 14923                                               Sweden    SE   SWE 1968
## 14924                                               Sweden    SE   SWE 1967
## 14925                                               Sweden    SE   SWE 1966
## 14926                                               Sweden    SE   SWE 1965
## 14927                                               Sweden    SE   SWE 1964
## 14928                                               Sweden    SE   SWE 1963
## 14929                                               Sweden    SE   SWE 1962
## 14930                                               Sweden    SE   SWE 1961
## 14931                                               Sweden    SE   SWE 1960
## 14932                                          Switzerland    CH   CHE 2022
## 14933                                          Switzerland    CH   CHE 2021
## 14934                                          Switzerland    CH   CHE 2020
## 14935                                          Switzerland    CH   CHE 2019
## 14936                                          Switzerland    CH   CHE 2018
## 14937                                          Switzerland    CH   CHE 2017
## 14938                                          Switzerland    CH   CHE 2016
## 14939                                          Switzerland    CH   CHE 2015
## 14940                                          Switzerland    CH   CHE 2014
## 14941                                          Switzerland    CH   CHE 2013
## 14942                                          Switzerland    CH   CHE 2012
## 14943                                          Switzerland    CH   CHE 2011
## 14944                                          Switzerland    CH   CHE 2010
## 14945                                          Switzerland    CH   CHE 2009
## 14946                                          Switzerland    CH   CHE 2008
## 14947                                          Switzerland    CH   CHE 2007
## 14948                                          Switzerland    CH   CHE 2006
## 14949                                          Switzerland    CH   CHE 2005
## 14950                                          Switzerland    CH   CHE 2004
## 14951                                          Switzerland    CH   CHE 2003
## 14952                                          Switzerland    CH   CHE 2002
## 14953                                          Switzerland    CH   CHE 2001
## 14954                                          Switzerland    CH   CHE 2000
## 14955                                          Switzerland    CH   CHE 1999
## 14956                                          Switzerland    CH   CHE 1998
## 14957                                          Switzerland    CH   CHE 1997
## 14958                                          Switzerland    CH   CHE 1996
## 14959                                          Switzerland    CH   CHE 1995
## 14960                                          Switzerland    CH   CHE 1994
## 14961                                          Switzerland    CH   CHE 1993
## 14962                                          Switzerland    CH   CHE 1992
## 14963                                          Switzerland    CH   CHE 1991
## 14964                                          Switzerland    CH   CHE 1990
## 14965                                          Switzerland    CH   CHE 1989
## 14966                                          Switzerland    CH   CHE 1988
## 14967                                          Switzerland    CH   CHE 1987
## 14968                                          Switzerland    CH   CHE 1986
## 14969                                          Switzerland    CH   CHE 1985
## 14970                                          Switzerland    CH   CHE 1984
## 14971                                          Switzerland    CH   CHE 1983
## 14972                                          Switzerland    CH   CHE 1982
## 14973                                          Switzerland    CH   CHE 1981
## 14974                                          Switzerland    CH   CHE 1980
## 14975                                          Switzerland    CH   CHE 1979
## 14976                                          Switzerland    CH   CHE 1978
## 14977                                          Switzerland    CH   CHE 1977
## 14978                                          Switzerland    CH   CHE 1976
## 14979                                          Switzerland    CH   CHE 1975
## 14980                                          Switzerland    CH   CHE 1974
## 14981                                          Switzerland    CH   CHE 1973
## 14982                                          Switzerland    CH   CHE 1972
## 14983                                          Switzerland    CH   CHE 1971
## 14984                                          Switzerland    CH   CHE 1970
## 14985                                          Switzerland    CH   CHE 1969
## 14986                                          Switzerland    CH   CHE 1968
## 14987                                          Switzerland    CH   CHE 1967
## 14988                                          Switzerland    CH   CHE 1966
## 14989                                          Switzerland    CH   CHE 1965
## 14990                                          Switzerland    CH   CHE 1964
## 14991                                          Switzerland    CH   CHE 1963
## 14992                                          Switzerland    CH   CHE 1962
## 14993                                          Switzerland    CH   CHE 1961
## 14994                                          Switzerland    CH   CHE 1960
## 14995                                 Syrian Arab Republic    SY   SYR 2022
## 14996                                 Syrian Arab Republic    SY   SYR 2021
## 14997                                 Syrian Arab Republic    SY   SYR 2020
## 14998                                 Syrian Arab Republic    SY   SYR 2019
## 14999                                 Syrian Arab Republic    SY   SYR 2018
## 15000                                 Syrian Arab Republic    SY   SYR 2017
## 15001                                 Syrian Arab Republic    SY   SYR 2016
## 15002                                 Syrian Arab Republic    SY   SYR 2015
## 15003                                 Syrian Arab Republic    SY   SYR 2014
## 15004                                 Syrian Arab Republic    SY   SYR 2013
## 15005                                 Syrian Arab Republic    SY   SYR 2012
## 15006                                 Syrian Arab Republic    SY   SYR 2011
## 15007                                 Syrian Arab Republic    SY   SYR 2010
## 15008                                 Syrian Arab Republic    SY   SYR 2009
## 15009                                 Syrian Arab Republic    SY   SYR 2008
## 15010                                 Syrian Arab Republic    SY   SYR 2007
## 15011                                 Syrian Arab Republic    SY   SYR 2006
## 15012                                 Syrian Arab Republic    SY   SYR 2005
## 15013                                 Syrian Arab Republic    SY   SYR 2004
## 15014                                 Syrian Arab Republic    SY   SYR 2003
## 15015                                 Syrian Arab Republic    SY   SYR 2002
## 15016                                 Syrian Arab Republic    SY   SYR 2001
## 15017                                 Syrian Arab Republic    SY   SYR 2000
## 15018                                 Syrian Arab Republic    SY   SYR 1999
## 15019                                 Syrian Arab Republic    SY   SYR 1998
## 15020                                 Syrian Arab Republic    SY   SYR 1997
## 15021                                 Syrian Arab Republic    SY   SYR 1996
## 15022                                 Syrian Arab Republic    SY   SYR 1995
## 15023                                 Syrian Arab Republic    SY   SYR 1994
## 15024                                 Syrian Arab Republic    SY   SYR 1993
## 15025                                 Syrian Arab Republic    SY   SYR 1992
## 15026                                 Syrian Arab Republic    SY   SYR 1991
## 15027                                 Syrian Arab Republic    SY   SYR 1990
## 15028                                 Syrian Arab Republic    SY   SYR 1989
## 15029                                 Syrian Arab Republic    SY   SYR 1988
## 15030                                 Syrian Arab Republic    SY   SYR 1987
## 15031                                 Syrian Arab Republic    SY   SYR 1986
## 15032                                 Syrian Arab Republic    SY   SYR 1985
## 15033                                 Syrian Arab Republic    SY   SYR 1984
## 15034                                 Syrian Arab Republic    SY   SYR 1983
## 15035                                 Syrian Arab Republic    SY   SYR 1982
## 15036                                 Syrian Arab Republic    SY   SYR 1981
## 15037                                 Syrian Arab Republic    SY   SYR 1980
## 15038                                 Syrian Arab Republic    SY   SYR 1979
## 15039                                 Syrian Arab Republic    SY   SYR 1978
## 15040                                 Syrian Arab Republic    SY   SYR 1977
## 15041                                 Syrian Arab Republic    SY   SYR 1976
## 15042                                 Syrian Arab Republic    SY   SYR 1975
## 15043                                 Syrian Arab Republic    SY   SYR 1974
## 15044                                 Syrian Arab Republic    SY   SYR 1973
## 15045                                 Syrian Arab Republic    SY   SYR 1972
## 15046                                 Syrian Arab Republic    SY   SYR 1971
## 15047                                 Syrian Arab Republic    SY   SYR 1970
## 15048                                 Syrian Arab Republic    SY   SYR 1969
## 15049                                 Syrian Arab Republic    SY   SYR 1968
## 15050                                 Syrian Arab Republic    SY   SYR 1967
## 15051                                 Syrian Arab Republic    SY   SYR 1966
## 15052                                 Syrian Arab Republic    SY   SYR 1965
## 15053                                 Syrian Arab Republic    SY   SYR 1964
## 15054                                 Syrian Arab Republic    SY   SYR 1963
## 15055                                 Syrian Arab Republic    SY   SYR 1962
## 15056                                 Syrian Arab Republic    SY   SYR 1961
## 15057                                 Syrian Arab Republic    SY   SYR 1960
## 15058                                           Tajikistan    TJ   TJK 2022
## 15059                                           Tajikistan    TJ   TJK 2021
## 15060                                           Tajikistan    TJ   TJK 2020
## 15061                                           Tajikistan    TJ   TJK 2019
## 15062                                           Tajikistan    TJ   TJK 2018
## 15063                                           Tajikistan    TJ   TJK 2017
## 15064                                           Tajikistan    TJ   TJK 2016
## 15065                                           Tajikistan    TJ   TJK 2015
## 15066                                           Tajikistan    TJ   TJK 2014
## 15067                                           Tajikistan    TJ   TJK 2013
## 15068                                           Tajikistan    TJ   TJK 2012
## 15069                                           Tajikistan    TJ   TJK 2011
## 15070                                           Tajikistan    TJ   TJK 2010
## 15071                                           Tajikistan    TJ   TJK 2009
## 15072                                           Tajikistan    TJ   TJK 2008
## 15073                                           Tajikistan    TJ   TJK 2007
## 15074                                           Tajikistan    TJ   TJK 2006
## 15075                                           Tajikistan    TJ   TJK 2005
## 15076                                           Tajikistan    TJ   TJK 2004
## 15077                                           Tajikistan    TJ   TJK 2003
## 15078                                           Tajikistan    TJ   TJK 2002
## 15079                                           Tajikistan    TJ   TJK 2001
## 15080                                           Tajikistan    TJ   TJK 2000
## 15081                                           Tajikistan    TJ   TJK 1999
## 15082                                           Tajikistan    TJ   TJK 1998
## 15083                                           Tajikistan    TJ   TJK 1997
## 15084                                           Tajikistan    TJ   TJK 1996
## 15085                                           Tajikistan    TJ   TJK 1995
## 15086                                           Tajikistan    TJ   TJK 1994
## 15087                                           Tajikistan    TJ   TJK 1993
## 15088                                           Tajikistan    TJ   TJK 1992
## 15089                                           Tajikistan    TJ   TJK 1991
## 15090                                           Tajikistan    TJ   TJK 1990
## 15091                                           Tajikistan    TJ   TJK 1989
## 15092                                           Tajikistan    TJ   TJK 1988
## 15093                                           Tajikistan    TJ   TJK 1987
## 15094                                           Tajikistan    TJ   TJK 1986
## 15095                                           Tajikistan    TJ   TJK 1985
## 15096                                           Tajikistan    TJ   TJK 1984
## 15097                                           Tajikistan    TJ   TJK 1983
## 15098                                           Tajikistan    TJ   TJK 1982
## 15099                                           Tajikistan    TJ   TJK 1981
## 15100                                           Tajikistan    TJ   TJK 1980
## 15101                                           Tajikistan    TJ   TJK 1979
## 15102                                           Tajikistan    TJ   TJK 1978
## 15103                                           Tajikistan    TJ   TJK 1977
## 15104                                           Tajikistan    TJ   TJK 1976
## 15105                                           Tajikistan    TJ   TJK 1975
## 15106                                           Tajikistan    TJ   TJK 1974
## 15107                                           Tajikistan    TJ   TJK 1973
## 15108                                           Tajikistan    TJ   TJK 1972
## 15109                                           Tajikistan    TJ   TJK 1971
## 15110                                           Tajikistan    TJ   TJK 1970
## 15111                                           Tajikistan    TJ   TJK 1969
## 15112                                           Tajikistan    TJ   TJK 1968
## 15113                                           Tajikistan    TJ   TJK 1967
## 15114                                           Tajikistan    TJ   TJK 1966
## 15115                                           Tajikistan    TJ   TJK 1965
## 15116                                           Tajikistan    TJ   TJK 1964
## 15117                                           Tajikistan    TJ   TJK 1963
## 15118                                           Tajikistan    TJ   TJK 1962
## 15119                                           Tajikistan    TJ   TJK 1961
## 15120                                           Tajikistan    TJ   TJK 1960
## 15121                                             Tanzania    TZ   TZA 2022
## 15122                                             Tanzania    TZ   TZA 2021
## 15123                                             Tanzania    TZ   TZA 2020
## 15124                                             Tanzania    TZ   TZA 2019
## 15125                                             Tanzania    TZ   TZA 2018
## 15126                                             Tanzania    TZ   TZA 2017
## 15127                                             Tanzania    TZ   TZA 2016
## 15128                                             Tanzania    TZ   TZA 2015
## 15129                                             Tanzania    TZ   TZA 2014
## 15130                                             Tanzania    TZ   TZA 2013
## 15131                                             Tanzania    TZ   TZA 2012
## 15132                                             Tanzania    TZ   TZA 2011
## 15133                                             Tanzania    TZ   TZA 2010
## 15134                                             Tanzania    TZ   TZA 2009
## 15135                                             Tanzania    TZ   TZA 2008
## 15136                                             Tanzania    TZ   TZA 2007
## 15137                                             Tanzania    TZ   TZA 2006
## 15138                                             Tanzania    TZ   TZA 2005
## 15139                                             Tanzania    TZ   TZA 2004
## 15140                                             Tanzania    TZ   TZA 2003
## 15141                                             Tanzania    TZ   TZA 2002
## 15142                                             Tanzania    TZ   TZA 2001
## 15143                                             Tanzania    TZ   TZA 2000
## 15144                                             Tanzania    TZ   TZA 1999
## 15145                                             Tanzania    TZ   TZA 1998
## 15146                                             Tanzania    TZ   TZA 1997
## 15147                                             Tanzania    TZ   TZA 1996
## 15148                                             Tanzania    TZ   TZA 1995
## 15149                                             Tanzania    TZ   TZA 1994
## 15150                                             Tanzania    TZ   TZA 1993
## 15151                                             Tanzania    TZ   TZA 1992
## 15152                                             Tanzania    TZ   TZA 1991
## 15153                                             Tanzania    TZ   TZA 1990
## 15154                                             Tanzania    TZ   TZA 1989
## 15155                                             Tanzania    TZ   TZA 1988
## 15156                                             Tanzania    TZ   TZA 1987
## 15157                                             Tanzania    TZ   TZA 1986
## 15158                                             Tanzania    TZ   TZA 1985
## 15159                                             Tanzania    TZ   TZA 1984
## 15160                                             Tanzania    TZ   TZA 1983
## 15161                                             Tanzania    TZ   TZA 1982
## 15162                                             Tanzania    TZ   TZA 1981
## 15163                                             Tanzania    TZ   TZA 1980
## 15164                                             Tanzania    TZ   TZA 1979
## 15165                                             Tanzania    TZ   TZA 1978
## 15166                                             Tanzania    TZ   TZA 1977
## 15167                                             Tanzania    TZ   TZA 1976
## 15168                                             Tanzania    TZ   TZA 1975
## 15169                                             Tanzania    TZ   TZA 1974
## 15170                                             Tanzania    TZ   TZA 1973
## 15171                                             Tanzania    TZ   TZA 1972
## 15172                                             Tanzania    TZ   TZA 1971
## 15173                                             Tanzania    TZ   TZA 1970
## 15174                                             Tanzania    TZ   TZA 1969
## 15175                                             Tanzania    TZ   TZA 1968
## 15176                                             Tanzania    TZ   TZA 1967
## 15177                                             Tanzania    TZ   TZA 1966
## 15178                                             Tanzania    TZ   TZA 1965
## 15179                                             Tanzania    TZ   TZA 1964
## 15180                                             Tanzania    TZ   TZA 1963
## 15181                                             Tanzania    TZ   TZA 1962
## 15182                                             Tanzania    TZ   TZA 1961
## 15183                                             Tanzania    TZ   TZA 1960
## 15184                                             Thailand    TH   THA 2022
## 15185                                             Thailand    TH   THA 2021
## 15186                                             Thailand    TH   THA 2020
## 15187                                             Thailand    TH   THA 2019
## 15188                                             Thailand    TH   THA 2018
## 15189                                             Thailand    TH   THA 2017
## 15190                                             Thailand    TH   THA 2016
## 15191                                             Thailand    TH   THA 2015
## 15192                                             Thailand    TH   THA 2014
## 15193                                             Thailand    TH   THA 2013
## 15194                                             Thailand    TH   THA 2012
## 15195                                             Thailand    TH   THA 2011
## 15196                                             Thailand    TH   THA 2010
## 15197                                             Thailand    TH   THA 2009
## 15198                                             Thailand    TH   THA 2008
## 15199                                             Thailand    TH   THA 2007
## 15200                                             Thailand    TH   THA 2006
## 15201                                             Thailand    TH   THA 2005
## 15202                                             Thailand    TH   THA 2004
## 15203                                             Thailand    TH   THA 2003
## 15204                                             Thailand    TH   THA 2002
## 15205                                             Thailand    TH   THA 2001
## 15206                                             Thailand    TH   THA 2000
## 15207                                             Thailand    TH   THA 1999
## 15208                                             Thailand    TH   THA 1998
## 15209                                             Thailand    TH   THA 1997
## 15210                                             Thailand    TH   THA 1996
## 15211                                             Thailand    TH   THA 1995
## 15212                                             Thailand    TH   THA 1994
## 15213                                             Thailand    TH   THA 1993
## 15214                                             Thailand    TH   THA 1992
## 15215                                             Thailand    TH   THA 1991
## 15216                                             Thailand    TH   THA 1990
## 15217                                             Thailand    TH   THA 1989
## 15218                                             Thailand    TH   THA 1988
## 15219                                             Thailand    TH   THA 1987
## 15220                                             Thailand    TH   THA 1986
## 15221                                             Thailand    TH   THA 1985
## 15222                                             Thailand    TH   THA 1984
## 15223                                             Thailand    TH   THA 1983
## 15224                                             Thailand    TH   THA 1982
## 15225                                             Thailand    TH   THA 1981
## 15226                                             Thailand    TH   THA 1980
## 15227                                             Thailand    TH   THA 1979
## 15228                                             Thailand    TH   THA 1978
## 15229                                             Thailand    TH   THA 1977
## 15230                                             Thailand    TH   THA 1976
## 15231                                             Thailand    TH   THA 1975
## 15232                                             Thailand    TH   THA 1974
## 15233                                             Thailand    TH   THA 1973
## 15234                                             Thailand    TH   THA 1972
## 15235                                             Thailand    TH   THA 1971
## 15236                                             Thailand    TH   THA 1970
## 15237                                             Thailand    TH   THA 1969
## 15238                                             Thailand    TH   THA 1968
## 15239                                             Thailand    TH   THA 1967
## 15240                                             Thailand    TH   THA 1966
## 15241                                             Thailand    TH   THA 1965
## 15242                                             Thailand    TH   THA 1964
## 15243                                             Thailand    TH   THA 1963
## 15244                                             Thailand    TH   THA 1962
## 15245                                             Thailand    TH   THA 1961
## 15246                                             Thailand    TH   THA 1960
## 15247                                          Timor-Leste    TL   TLS 2022
## 15248                                          Timor-Leste    TL   TLS 2021
## 15249                                          Timor-Leste    TL   TLS 2020
## 15250                                          Timor-Leste    TL   TLS 2019
## 15251                                          Timor-Leste    TL   TLS 2018
## 15252                                          Timor-Leste    TL   TLS 2017
## 15253                                          Timor-Leste    TL   TLS 2016
## 15254                                          Timor-Leste    TL   TLS 2015
## 15255                                          Timor-Leste    TL   TLS 2014
## 15256                                          Timor-Leste    TL   TLS 2013
## 15257                                          Timor-Leste    TL   TLS 2012
## 15258                                          Timor-Leste    TL   TLS 2011
## 15259                                          Timor-Leste    TL   TLS 2010
## 15260                                          Timor-Leste    TL   TLS 2009
## 15261                                          Timor-Leste    TL   TLS 2008
## 15262                                          Timor-Leste    TL   TLS 2007
## 15263                                          Timor-Leste    TL   TLS 2006
## 15264                                          Timor-Leste    TL   TLS 2005
## 15265                                          Timor-Leste    TL   TLS 2004
## 15266                                          Timor-Leste    TL   TLS 2003
## 15267                                          Timor-Leste    TL   TLS 2002
## 15268                                          Timor-Leste    TL   TLS 2001
## 15269                                          Timor-Leste    TL   TLS 2000
## 15270                                          Timor-Leste    TL   TLS 1999
## 15271                                          Timor-Leste    TL   TLS 1998
## 15272                                          Timor-Leste    TL   TLS 1997
## 15273                                          Timor-Leste    TL   TLS 1996
## 15274                                          Timor-Leste    TL   TLS 1995
## 15275                                          Timor-Leste    TL   TLS 1994
## 15276                                          Timor-Leste    TL   TLS 1993
## 15277                                          Timor-Leste    TL   TLS 1992
## 15278                                          Timor-Leste    TL   TLS 1991
## 15279                                          Timor-Leste    TL   TLS 1990
## 15280                                          Timor-Leste    TL   TLS 1989
## 15281                                          Timor-Leste    TL   TLS 1988
## 15282                                          Timor-Leste    TL   TLS 1987
## 15283                                          Timor-Leste    TL   TLS 1986
## 15284                                          Timor-Leste    TL   TLS 1985
## 15285                                          Timor-Leste    TL   TLS 1984
## 15286                                          Timor-Leste    TL   TLS 1983
## 15287                                          Timor-Leste    TL   TLS 1982
## 15288                                          Timor-Leste    TL   TLS 1981
## 15289                                          Timor-Leste    TL   TLS 1980
## 15290                                          Timor-Leste    TL   TLS 1979
## 15291                                          Timor-Leste    TL   TLS 1978
## 15292                                          Timor-Leste    TL   TLS 1977
## 15293                                          Timor-Leste    TL   TLS 1976
## 15294                                          Timor-Leste    TL   TLS 1975
## 15295                                          Timor-Leste    TL   TLS 1974
## 15296                                          Timor-Leste    TL   TLS 1973
## 15297                                          Timor-Leste    TL   TLS 1972
## 15298                                          Timor-Leste    TL   TLS 1971
## 15299                                          Timor-Leste    TL   TLS 1970
## 15300                                          Timor-Leste    TL   TLS 1969
## 15301                                          Timor-Leste    TL   TLS 1968
## 15302                                          Timor-Leste    TL   TLS 1967
## 15303                                          Timor-Leste    TL   TLS 1966
## 15304                                          Timor-Leste    TL   TLS 1965
## 15305                                          Timor-Leste    TL   TLS 1964
## 15306                                          Timor-Leste    TL   TLS 1963
## 15307                                          Timor-Leste    TL   TLS 1962
## 15308                                          Timor-Leste    TL   TLS 1961
## 15309                                          Timor-Leste    TL   TLS 1960
## 15310                                                 Togo    TG   TGO 2022
## 15311                                                 Togo    TG   TGO 2021
## 15312                                                 Togo    TG   TGO 2020
## 15313                                                 Togo    TG   TGO 2019
## 15314                                                 Togo    TG   TGO 2018
## 15315                                                 Togo    TG   TGO 2017
## 15316                                                 Togo    TG   TGO 2016
## 15317                                                 Togo    TG   TGO 2015
## 15318                                                 Togo    TG   TGO 2014
## 15319                                                 Togo    TG   TGO 2013
## 15320                                                 Togo    TG   TGO 2012
## 15321                                                 Togo    TG   TGO 2011
## 15322                                                 Togo    TG   TGO 2010
## 15323                                                 Togo    TG   TGO 2009
## 15324                                                 Togo    TG   TGO 2008
## 15325                                                 Togo    TG   TGO 2007
## 15326                                                 Togo    TG   TGO 2006
## 15327                                                 Togo    TG   TGO 2005
## 15328                                                 Togo    TG   TGO 2004
## 15329                                                 Togo    TG   TGO 2003
## 15330                                                 Togo    TG   TGO 2002
## 15331                                                 Togo    TG   TGO 2001
## 15332                                                 Togo    TG   TGO 2000
## 15333                                                 Togo    TG   TGO 1999
## 15334                                                 Togo    TG   TGO 1998
## 15335                                                 Togo    TG   TGO 1997
## 15336                                                 Togo    TG   TGO 1996
## 15337                                                 Togo    TG   TGO 1995
## 15338                                                 Togo    TG   TGO 1994
## 15339                                                 Togo    TG   TGO 1993
## 15340                                                 Togo    TG   TGO 1992
## 15341                                                 Togo    TG   TGO 1991
## 15342                                                 Togo    TG   TGO 1990
## 15343                                                 Togo    TG   TGO 1989
## 15344                                                 Togo    TG   TGO 1988
## 15345                                                 Togo    TG   TGO 1987
## 15346                                                 Togo    TG   TGO 1986
## 15347                                                 Togo    TG   TGO 1985
## 15348                                                 Togo    TG   TGO 1984
## 15349                                                 Togo    TG   TGO 1983
## 15350                                                 Togo    TG   TGO 1982
## 15351                                                 Togo    TG   TGO 1981
## 15352                                                 Togo    TG   TGO 1980
## 15353                                                 Togo    TG   TGO 1979
## 15354                                                 Togo    TG   TGO 1978
## 15355                                                 Togo    TG   TGO 1977
## 15356                                                 Togo    TG   TGO 1976
## 15357                                                 Togo    TG   TGO 1975
## 15358                                                 Togo    TG   TGO 1974
## 15359                                                 Togo    TG   TGO 1973
## 15360                                                 Togo    TG   TGO 1972
## 15361                                                 Togo    TG   TGO 1971
## 15362                                                 Togo    TG   TGO 1970
## 15363                                                 Togo    TG   TGO 1969
## 15364                                                 Togo    TG   TGO 1968
## 15365                                                 Togo    TG   TGO 1967
## 15366                                                 Togo    TG   TGO 1966
## 15367                                                 Togo    TG   TGO 1965
## 15368                                                 Togo    TG   TGO 1964
## 15369                                                 Togo    TG   TGO 1963
## 15370                                                 Togo    TG   TGO 1962
## 15371                                                 Togo    TG   TGO 1961
## 15372                                                 Togo    TG   TGO 1960
## 15373                                                Tonga    TO   TON 2022
## 15374                                                Tonga    TO   TON 2021
## 15375                                                Tonga    TO   TON 2020
## 15376                                                Tonga    TO   TON 2019
## 15377                                                Tonga    TO   TON 2018
## 15378                                                Tonga    TO   TON 2017
## 15379                                                Tonga    TO   TON 2016
## 15380                                                Tonga    TO   TON 2015
## 15381                                                Tonga    TO   TON 2014
## 15382                                                Tonga    TO   TON 2013
## 15383                                                Tonga    TO   TON 2012
## 15384                                                Tonga    TO   TON 2011
## 15385                                                Tonga    TO   TON 2010
## 15386                                                Tonga    TO   TON 2009
## 15387                                                Tonga    TO   TON 2008
## 15388                                                Tonga    TO   TON 2007
## 15389                                                Tonga    TO   TON 2006
## 15390                                                Tonga    TO   TON 2005
## 15391                                                Tonga    TO   TON 2004
## 15392                                                Tonga    TO   TON 2003
## 15393                                                Tonga    TO   TON 2002
## 15394                                                Tonga    TO   TON 2001
## 15395                                                Tonga    TO   TON 2000
## 15396                                                Tonga    TO   TON 1999
## 15397                                                Tonga    TO   TON 1998
## 15398                                                Tonga    TO   TON 1997
## 15399                                                Tonga    TO   TON 1996
## 15400                                                Tonga    TO   TON 1995
## 15401                                                Tonga    TO   TON 1994
## 15402                                                Tonga    TO   TON 1993
## 15403                                                Tonga    TO   TON 1992
## 15404                                                Tonga    TO   TON 1991
## 15405                                                Tonga    TO   TON 1990
## 15406                                                Tonga    TO   TON 1989
## 15407                                                Tonga    TO   TON 1988
## 15408                                                Tonga    TO   TON 1987
## 15409                                                Tonga    TO   TON 1986
## 15410                                                Tonga    TO   TON 1985
## 15411                                                Tonga    TO   TON 1984
## 15412                                                Tonga    TO   TON 1983
## 15413                                                Tonga    TO   TON 1982
## 15414                                                Tonga    TO   TON 1981
## 15415                                                Tonga    TO   TON 1980
## 15416                                                Tonga    TO   TON 1979
## 15417                                                Tonga    TO   TON 1978
## 15418                                                Tonga    TO   TON 1977
## 15419                                                Tonga    TO   TON 1976
## 15420                                                Tonga    TO   TON 1975
## 15421                                                Tonga    TO   TON 1974
## 15422                                                Tonga    TO   TON 1973
## 15423                                                Tonga    TO   TON 1972
## 15424                                                Tonga    TO   TON 1971
## 15425                                                Tonga    TO   TON 1970
## 15426                                                Tonga    TO   TON 1969
## 15427                                                Tonga    TO   TON 1968
## 15428                                                Tonga    TO   TON 1967
## 15429                                                Tonga    TO   TON 1966
## 15430                                                Tonga    TO   TON 1965
## 15431                                                Tonga    TO   TON 1964
## 15432                                                Tonga    TO   TON 1963
## 15433                                                Tonga    TO   TON 1962
## 15434                                                Tonga    TO   TON 1961
## 15435                                                Tonga    TO   TON 1960
## 15436                                  Trinidad and Tobago    TT   TTO 2022
## 15437                                  Trinidad and Tobago    TT   TTO 2021
## 15438                                  Trinidad and Tobago    TT   TTO 2020
## 15439                                  Trinidad and Tobago    TT   TTO 2019
## 15440                                  Trinidad and Tobago    TT   TTO 2018
## 15441                                  Trinidad and Tobago    TT   TTO 2017
## 15442                                  Trinidad and Tobago    TT   TTO 2016
## 15443                                  Trinidad and Tobago    TT   TTO 2015
## 15444                                  Trinidad and Tobago    TT   TTO 2014
## 15445                                  Trinidad and Tobago    TT   TTO 2013
## 15446                                  Trinidad and Tobago    TT   TTO 2012
## 15447                                  Trinidad and Tobago    TT   TTO 2011
## 15448                                  Trinidad and Tobago    TT   TTO 2010
## 15449                                  Trinidad and Tobago    TT   TTO 2009
## 15450                                  Trinidad and Tobago    TT   TTO 2008
## 15451                                  Trinidad and Tobago    TT   TTO 2007
## 15452                                  Trinidad and Tobago    TT   TTO 2006
## 15453                                  Trinidad and Tobago    TT   TTO 2005
## 15454                                  Trinidad and Tobago    TT   TTO 2004
## 15455                                  Trinidad and Tobago    TT   TTO 2003
## 15456                                  Trinidad and Tobago    TT   TTO 2002
## 15457                                  Trinidad and Tobago    TT   TTO 2001
## 15458                                  Trinidad and Tobago    TT   TTO 2000
## 15459                                  Trinidad and Tobago    TT   TTO 1999
## 15460                                  Trinidad and Tobago    TT   TTO 1998
## 15461                                  Trinidad and Tobago    TT   TTO 1997
## 15462                                  Trinidad and Tobago    TT   TTO 1996
## 15463                                  Trinidad and Tobago    TT   TTO 1995
## 15464                                  Trinidad and Tobago    TT   TTO 1994
## 15465                                  Trinidad and Tobago    TT   TTO 1993
## 15466                                  Trinidad and Tobago    TT   TTO 1992
## 15467                                  Trinidad and Tobago    TT   TTO 1991
## 15468                                  Trinidad and Tobago    TT   TTO 1990
## 15469                                  Trinidad and Tobago    TT   TTO 1989
## 15470                                  Trinidad and Tobago    TT   TTO 1988
## 15471                                  Trinidad and Tobago    TT   TTO 1987
## 15472                                  Trinidad and Tobago    TT   TTO 1986
## 15473                                  Trinidad and Tobago    TT   TTO 1985
## 15474                                  Trinidad and Tobago    TT   TTO 1984
## 15475                                  Trinidad and Tobago    TT   TTO 1983
## 15476                                  Trinidad and Tobago    TT   TTO 1982
## 15477                                  Trinidad and Tobago    TT   TTO 1981
## 15478                                  Trinidad and Tobago    TT   TTO 1980
## 15479                                  Trinidad and Tobago    TT   TTO 1979
## 15480                                  Trinidad and Tobago    TT   TTO 1978
## 15481                                  Trinidad and Tobago    TT   TTO 1977
## 15482                                  Trinidad and Tobago    TT   TTO 1976
## 15483                                  Trinidad and Tobago    TT   TTO 1975
## 15484                                  Trinidad and Tobago    TT   TTO 1974
## 15485                                  Trinidad and Tobago    TT   TTO 1973
## 15486                                  Trinidad and Tobago    TT   TTO 1972
## 15487                                  Trinidad and Tobago    TT   TTO 1971
## 15488                                  Trinidad and Tobago    TT   TTO 1970
## 15489                                  Trinidad and Tobago    TT   TTO 1969
## 15490                                  Trinidad and Tobago    TT   TTO 1968
## 15491                                  Trinidad and Tobago    TT   TTO 1967
## 15492                                  Trinidad and Tobago    TT   TTO 1966
## 15493                                  Trinidad and Tobago    TT   TTO 1965
## 15494                                  Trinidad and Tobago    TT   TTO 1964
## 15495                                  Trinidad and Tobago    TT   TTO 1963
## 15496                                  Trinidad and Tobago    TT   TTO 1962
## 15497                                  Trinidad and Tobago    TT   TTO 1961
## 15498                                  Trinidad and Tobago    TT   TTO 1960
## 15499                                              Tunisia    TN   TUN 2022
## 15500                                              Tunisia    TN   TUN 2021
## 15501                                              Tunisia    TN   TUN 2020
## 15502                                              Tunisia    TN   TUN 2019
## 15503                                              Tunisia    TN   TUN 2018
## 15504                                              Tunisia    TN   TUN 2017
## 15505                                              Tunisia    TN   TUN 2016
## 15506                                              Tunisia    TN   TUN 2015
## 15507                                              Tunisia    TN   TUN 2014
## 15508                                              Tunisia    TN   TUN 2013
## 15509                                              Tunisia    TN   TUN 2012
## 15510                                              Tunisia    TN   TUN 2011
## 15511                                              Tunisia    TN   TUN 2010
## 15512                                              Tunisia    TN   TUN 2009
## 15513                                              Tunisia    TN   TUN 2008
## 15514                                              Tunisia    TN   TUN 2007
## 15515                                              Tunisia    TN   TUN 2006
## 15516                                              Tunisia    TN   TUN 2005
## 15517                                              Tunisia    TN   TUN 2004
## 15518                                              Tunisia    TN   TUN 2003
## 15519                                              Tunisia    TN   TUN 2002
## 15520                                              Tunisia    TN   TUN 2001
## 15521                                              Tunisia    TN   TUN 2000
## 15522                                              Tunisia    TN   TUN 1999
## 15523                                              Tunisia    TN   TUN 1998
## 15524                                              Tunisia    TN   TUN 1997
## 15525                                              Tunisia    TN   TUN 1996
## 15526                                              Tunisia    TN   TUN 1995
## 15527                                              Tunisia    TN   TUN 1994
## 15528                                              Tunisia    TN   TUN 1993
## 15529                                              Tunisia    TN   TUN 1992
## 15530                                              Tunisia    TN   TUN 1991
## 15531                                              Tunisia    TN   TUN 1990
## 15532                                              Tunisia    TN   TUN 1989
## 15533                                              Tunisia    TN   TUN 1988
## 15534                                              Tunisia    TN   TUN 1987
## 15535                                              Tunisia    TN   TUN 1986
## 15536                                              Tunisia    TN   TUN 1985
## 15537                                              Tunisia    TN   TUN 1984
## 15538                                              Tunisia    TN   TUN 1983
## 15539                                              Tunisia    TN   TUN 1982
## 15540                                              Tunisia    TN   TUN 1981
## 15541                                              Tunisia    TN   TUN 1980
## 15542                                              Tunisia    TN   TUN 1979
## 15543                                              Tunisia    TN   TUN 1978
## 15544                                              Tunisia    TN   TUN 1977
## 15545                                              Tunisia    TN   TUN 1976
## 15546                                              Tunisia    TN   TUN 1975
## 15547                                              Tunisia    TN   TUN 1974
## 15548                                              Tunisia    TN   TUN 1973
## 15549                                              Tunisia    TN   TUN 1972
## 15550                                              Tunisia    TN   TUN 1971
## 15551                                              Tunisia    TN   TUN 1970
## 15552                                              Tunisia    TN   TUN 1969
## 15553                                              Tunisia    TN   TUN 1968
## 15554                                              Tunisia    TN   TUN 1967
## 15555                                              Tunisia    TN   TUN 1966
## 15556                                              Tunisia    TN   TUN 1965
## 15557                                              Tunisia    TN   TUN 1964
## 15558                                              Tunisia    TN   TUN 1963
## 15559                                              Tunisia    TN   TUN 1962
## 15560                                              Tunisia    TN   TUN 1961
## 15561                                              Tunisia    TN   TUN 1960
## 15562                                              Turkiye    TR   TUR 2022
## 15563                                              Turkiye    TR   TUR 2021
## 15564                                              Turkiye    TR   TUR 2020
## 15565                                              Turkiye    TR   TUR 2019
## 15566                                              Turkiye    TR   TUR 2018
## 15567                                              Turkiye    TR   TUR 2017
## 15568                                              Turkiye    TR   TUR 2016
## 15569                                              Turkiye    TR   TUR 2015
## 15570                                              Turkiye    TR   TUR 2014
## 15571                                              Turkiye    TR   TUR 2013
## 15572                                              Turkiye    TR   TUR 2012
## 15573                                              Turkiye    TR   TUR 2011
## 15574                                              Turkiye    TR   TUR 2010
## 15575                                              Turkiye    TR   TUR 2009
## 15576                                              Turkiye    TR   TUR 2008
## 15577                                              Turkiye    TR   TUR 2007
## 15578                                              Turkiye    TR   TUR 2006
## 15579                                              Turkiye    TR   TUR 2005
## 15580                                              Turkiye    TR   TUR 2004
## 15581                                              Turkiye    TR   TUR 2003
## 15582                                              Turkiye    TR   TUR 2002
## 15583                                              Turkiye    TR   TUR 2001
## 15584                                              Turkiye    TR   TUR 2000
## 15585                                              Turkiye    TR   TUR 1999
## 15586                                              Turkiye    TR   TUR 1998
## 15587                                              Turkiye    TR   TUR 1997
## 15588                                              Turkiye    TR   TUR 1996
## 15589                                              Turkiye    TR   TUR 1995
## 15590                                              Turkiye    TR   TUR 1994
## 15591                                              Turkiye    TR   TUR 1993
## 15592                                              Turkiye    TR   TUR 1992
## 15593                                              Turkiye    TR   TUR 1991
## 15594                                              Turkiye    TR   TUR 1990
## 15595                                              Turkiye    TR   TUR 1989
## 15596                                              Turkiye    TR   TUR 1988
## 15597                                              Turkiye    TR   TUR 1987
## 15598                                              Turkiye    TR   TUR 1986
## 15599                                              Turkiye    TR   TUR 1985
## 15600                                              Turkiye    TR   TUR 1984
## 15601                                              Turkiye    TR   TUR 1983
## 15602                                              Turkiye    TR   TUR 1982
## 15603                                              Turkiye    TR   TUR 1981
## 15604                                              Turkiye    TR   TUR 1980
## 15605                                              Turkiye    TR   TUR 1979
## 15606                                              Turkiye    TR   TUR 1978
## 15607                                              Turkiye    TR   TUR 1977
## 15608                                              Turkiye    TR   TUR 1976
## 15609                                              Turkiye    TR   TUR 1975
## 15610                                              Turkiye    TR   TUR 1974
## 15611                                              Turkiye    TR   TUR 1973
## 15612                                              Turkiye    TR   TUR 1972
## 15613                                              Turkiye    TR   TUR 1971
## 15614                                              Turkiye    TR   TUR 1970
## 15615                                              Turkiye    TR   TUR 1969
## 15616                                              Turkiye    TR   TUR 1968
## 15617                                              Turkiye    TR   TUR 1967
## 15618                                              Turkiye    TR   TUR 1966
## 15619                                              Turkiye    TR   TUR 1965
## 15620                                              Turkiye    TR   TUR 1964
## 15621                                              Turkiye    TR   TUR 1963
## 15622                                              Turkiye    TR   TUR 1962
## 15623                                              Turkiye    TR   TUR 1961
## 15624                                              Turkiye    TR   TUR 1960
## 15625                                         Turkmenistan    TM   TKM 2022
## 15626                                         Turkmenistan    TM   TKM 2021
## 15627                                         Turkmenistan    TM   TKM 2020
## 15628                                         Turkmenistan    TM   TKM 2019
## 15629                                         Turkmenistan    TM   TKM 2018
## 15630                                         Turkmenistan    TM   TKM 2017
## 15631                                         Turkmenistan    TM   TKM 2016
## 15632                                         Turkmenistan    TM   TKM 2015
## 15633                                         Turkmenistan    TM   TKM 2014
## 15634                                         Turkmenistan    TM   TKM 2013
## 15635                                         Turkmenistan    TM   TKM 2012
## 15636                                         Turkmenistan    TM   TKM 2011
## 15637                                         Turkmenistan    TM   TKM 2010
## 15638                                         Turkmenistan    TM   TKM 2009
## 15639                                         Turkmenistan    TM   TKM 2008
## 15640                                         Turkmenistan    TM   TKM 2007
## 15641                                         Turkmenistan    TM   TKM 2006
## 15642                                         Turkmenistan    TM   TKM 2005
## 15643                                         Turkmenistan    TM   TKM 2004
## 15644                                         Turkmenistan    TM   TKM 2003
## 15645                                         Turkmenistan    TM   TKM 2002
## 15646                                         Turkmenistan    TM   TKM 2001
## 15647                                         Turkmenistan    TM   TKM 2000
## 15648                                         Turkmenistan    TM   TKM 1999
## 15649                                         Turkmenistan    TM   TKM 1998
## 15650                                         Turkmenistan    TM   TKM 1997
## 15651                                         Turkmenistan    TM   TKM 1996
## 15652                                         Turkmenistan    TM   TKM 1995
## 15653                                         Turkmenistan    TM   TKM 1994
## 15654                                         Turkmenistan    TM   TKM 1993
## 15655                                         Turkmenistan    TM   TKM 1992
## 15656                                         Turkmenistan    TM   TKM 1991
## 15657                                         Turkmenistan    TM   TKM 1990
## 15658                                         Turkmenistan    TM   TKM 1989
## 15659                                         Turkmenistan    TM   TKM 1988
## 15660                                         Turkmenistan    TM   TKM 1987
## 15661                                         Turkmenistan    TM   TKM 1986
## 15662                                         Turkmenistan    TM   TKM 1985
## 15663                                         Turkmenistan    TM   TKM 1984
## 15664                                         Turkmenistan    TM   TKM 1983
## 15665                                         Turkmenistan    TM   TKM 1982
## 15666                                         Turkmenistan    TM   TKM 1981
## 15667                                         Turkmenistan    TM   TKM 1980
## 15668                                         Turkmenistan    TM   TKM 1979
## 15669                                         Turkmenistan    TM   TKM 1978
## 15670                                         Turkmenistan    TM   TKM 1977
## 15671                                         Turkmenistan    TM   TKM 1976
## 15672                                         Turkmenistan    TM   TKM 1975
## 15673                                         Turkmenistan    TM   TKM 1974
## 15674                                         Turkmenistan    TM   TKM 1973
## 15675                                         Turkmenistan    TM   TKM 1972
## 15676                                         Turkmenistan    TM   TKM 1971
## 15677                                         Turkmenistan    TM   TKM 1970
## 15678                                         Turkmenistan    TM   TKM 1969
## 15679                                         Turkmenistan    TM   TKM 1968
## 15680                                         Turkmenistan    TM   TKM 1967
## 15681                                         Turkmenistan    TM   TKM 1966
## 15682                                         Turkmenistan    TM   TKM 1965
## 15683                                         Turkmenistan    TM   TKM 1964
## 15684                                         Turkmenistan    TM   TKM 1963
## 15685                                         Turkmenistan    TM   TKM 1962
## 15686                                         Turkmenistan    TM   TKM 1961
## 15687                                         Turkmenistan    TM   TKM 1960
## 15688                             Turks and Caicos Islands    TC   TCA 2022
## 15689                             Turks and Caicos Islands    TC   TCA 2021
## 15690                             Turks and Caicos Islands    TC   TCA 2020
## 15691                             Turks and Caicos Islands    TC   TCA 2019
## 15692                             Turks and Caicos Islands    TC   TCA 2018
## 15693                             Turks and Caicos Islands    TC   TCA 2017
## 15694                             Turks and Caicos Islands    TC   TCA 2016
## 15695                             Turks and Caicos Islands    TC   TCA 2015
## 15696                             Turks and Caicos Islands    TC   TCA 2014
## 15697                             Turks and Caicos Islands    TC   TCA 2013
## 15698                             Turks and Caicos Islands    TC   TCA 2012
## 15699                             Turks and Caicos Islands    TC   TCA 2011
## 15700                             Turks and Caicos Islands    TC   TCA 2010
## 15701                             Turks and Caicos Islands    TC   TCA 2009
## 15702                             Turks and Caicos Islands    TC   TCA 2008
## 15703                             Turks and Caicos Islands    TC   TCA 2007
## 15704                             Turks and Caicos Islands    TC   TCA 2006
## 15705                             Turks and Caicos Islands    TC   TCA 2005
## 15706                             Turks and Caicos Islands    TC   TCA 2004
## 15707                             Turks and Caicos Islands    TC   TCA 2003
## 15708                             Turks and Caicos Islands    TC   TCA 2002
## 15709                             Turks and Caicos Islands    TC   TCA 2001
## 15710                             Turks and Caicos Islands    TC   TCA 2000
## 15711                             Turks and Caicos Islands    TC   TCA 1999
## 15712                             Turks and Caicos Islands    TC   TCA 1998
## 15713                             Turks and Caicos Islands    TC   TCA 1997
## 15714                             Turks and Caicos Islands    TC   TCA 1996
## 15715                             Turks and Caicos Islands    TC   TCA 1995
## 15716                             Turks and Caicos Islands    TC   TCA 1994
## 15717                             Turks and Caicos Islands    TC   TCA 1993
## 15718                             Turks and Caicos Islands    TC   TCA 1992
## 15719                             Turks and Caicos Islands    TC   TCA 1991
## 15720                             Turks and Caicos Islands    TC   TCA 1990
## 15721                             Turks and Caicos Islands    TC   TCA 1989
## 15722                             Turks and Caicos Islands    TC   TCA 1988
## 15723                             Turks and Caicos Islands    TC   TCA 1987
## 15724                             Turks and Caicos Islands    TC   TCA 1986
## 15725                             Turks and Caicos Islands    TC   TCA 1985
## 15726                             Turks and Caicos Islands    TC   TCA 1984
## 15727                             Turks and Caicos Islands    TC   TCA 1983
## 15728                             Turks and Caicos Islands    TC   TCA 1982
## 15729                             Turks and Caicos Islands    TC   TCA 1981
## 15730                             Turks and Caicos Islands    TC   TCA 1980
## 15731                             Turks and Caicos Islands    TC   TCA 1979
## 15732                             Turks and Caicos Islands    TC   TCA 1978
## 15733                             Turks and Caicos Islands    TC   TCA 1977
## 15734                             Turks and Caicos Islands    TC   TCA 1976
## 15735                             Turks and Caicos Islands    TC   TCA 1975
## 15736                             Turks and Caicos Islands    TC   TCA 1974
## 15737                             Turks and Caicos Islands    TC   TCA 1973
## 15738                             Turks and Caicos Islands    TC   TCA 1972
## 15739                             Turks and Caicos Islands    TC   TCA 1971
## 15740                             Turks and Caicos Islands    TC   TCA 1970
## 15741                             Turks and Caicos Islands    TC   TCA 1969
## 15742                             Turks and Caicos Islands    TC   TCA 1968
## 15743                             Turks and Caicos Islands    TC   TCA 1967
## 15744                             Turks and Caicos Islands    TC   TCA 1966
## 15745                             Turks and Caicos Islands    TC   TCA 1965
## 15746                             Turks and Caicos Islands    TC   TCA 1964
## 15747                             Turks and Caicos Islands    TC   TCA 1963
## 15748                             Turks and Caicos Islands    TC   TCA 1962
## 15749                             Turks and Caicos Islands    TC   TCA 1961
## 15750                             Turks and Caicos Islands    TC   TCA 1960
## 15751                                               Tuvalu    TV   TUV 2022
## 15752                                               Tuvalu    TV   TUV 2021
## 15753                                               Tuvalu    TV   TUV 2020
## 15754                                               Tuvalu    TV   TUV 2019
## 15755                                               Tuvalu    TV   TUV 2018
## 15756                                               Tuvalu    TV   TUV 2017
## 15757                                               Tuvalu    TV   TUV 2016
## 15758                                               Tuvalu    TV   TUV 2015
## 15759                                               Tuvalu    TV   TUV 2014
## 15760                                               Tuvalu    TV   TUV 2013
## 15761                                               Tuvalu    TV   TUV 2012
## 15762                                               Tuvalu    TV   TUV 2011
## 15763                                               Tuvalu    TV   TUV 2010
## 15764                                               Tuvalu    TV   TUV 2009
## 15765                                               Tuvalu    TV   TUV 2008
## 15766                                               Tuvalu    TV   TUV 2007
## 15767                                               Tuvalu    TV   TUV 2006
## 15768                                               Tuvalu    TV   TUV 2005
## 15769                                               Tuvalu    TV   TUV 2004
## 15770                                               Tuvalu    TV   TUV 2003
## 15771                                               Tuvalu    TV   TUV 2002
## 15772                                               Tuvalu    TV   TUV 2001
## 15773                                               Tuvalu    TV   TUV 2000
## 15774                                               Tuvalu    TV   TUV 1999
## 15775                                               Tuvalu    TV   TUV 1998
## 15776                                               Tuvalu    TV   TUV 1997
## 15777                                               Tuvalu    TV   TUV 1996
## 15778                                               Tuvalu    TV   TUV 1995
## 15779                                               Tuvalu    TV   TUV 1994
## 15780                                               Tuvalu    TV   TUV 1993
## 15781                                               Tuvalu    TV   TUV 1992
## 15782                                               Tuvalu    TV   TUV 1991
## 15783                                               Tuvalu    TV   TUV 1990
## 15784                                               Tuvalu    TV   TUV 1989
## 15785                                               Tuvalu    TV   TUV 1988
## 15786                                               Tuvalu    TV   TUV 1987
## 15787                                               Tuvalu    TV   TUV 1986
## 15788                                               Tuvalu    TV   TUV 1985
## 15789                                               Tuvalu    TV   TUV 1984
## 15790                                               Tuvalu    TV   TUV 1983
## 15791                                               Tuvalu    TV   TUV 1982
## 15792                                               Tuvalu    TV   TUV 1981
## 15793                                               Tuvalu    TV   TUV 1980
## 15794                                               Tuvalu    TV   TUV 1979
## 15795                                               Tuvalu    TV   TUV 1978
## 15796                                               Tuvalu    TV   TUV 1977
## 15797                                               Tuvalu    TV   TUV 1976
## 15798                                               Tuvalu    TV   TUV 1975
## 15799                                               Tuvalu    TV   TUV 1974
## 15800                                               Tuvalu    TV   TUV 1973
## 15801                                               Tuvalu    TV   TUV 1972
## 15802                                               Tuvalu    TV   TUV 1971
## 15803                                               Tuvalu    TV   TUV 1970
## 15804                                               Tuvalu    TV   TUV 1969
## 15805                                               Tuvalu    TV   TUV 1968
## 15806                                               Tuvalu    TV   TUV 1967
## 15807                                               Tuvalu    TV   TUV 1966
## 15808                                               Tuvalu    TV   TUV 1965
## 15809                                               Tuvalu    TV   TUV 1964
## 15810                                               Tuvalu    TV   TUV 1963
## 15811                                               Tuvalu    TV   TUV 1962
## 15812                                               Tuvalu    TV   TUV 1961
## 15813                                               Tuvalu    TV   TUV 1960
## 15814                                               Uganda    UG   UGA 2022
## 15815                                               Uganda    UG   UGA 2021
## 15816                                               Uganda    UG   UGA 2020
## 15817                                               Uganda    UG   UGA 2019
## 15818                                               Uganda    UG   UGA 2018
## 15819                                               Uganda    UG   UGA 2017
## 15820                                               Uganda    UG   UGA 2016
## 15821                                               Uganda    UG   UGA 2015
## 15822                                               Uganda    UG   UGA 2014
## 15823                                               Uganda    UG   UGA 2013
## 15824                                               Uganda    UG   UGA 2012
## 15825                                               Uganda    UG   UGA 2011
## 15826                                               Uganda    UG   UGA 2010
## 15827                                               Uganda    UG   UGA 2009
## 15828                                               Uganda    UG   UGA 2008
## 15829                                               Uganda    UG   UGA 2007
## 15830                                               Uganda    UG   UGA 2006
## 15831                                               Uganda    UG   UGA 2005
## 15832                                               Uganda    UG   UGA 2004
## 15833                                               Uganda    UG   UGA 2003
## 15834                                               Uganda    UG   UGA 2002
## 15835                                               Uganda    UG   UGA 2001
## 15836                                               Uganda    UG   UGA 2000
## 15837                                               Uganda    UG   UGA 1999
## 15838                                               Uganda    UG   UGA 1998
## 15839                                               Uganda    UG   UGA 1997
## 15840                                               Uganda    UG   UGA 1996
## 15841                                               Uganda    UG   UGA 1995
## 15842                                               Uganda    UG   UGA 1994
## 15843                                               Uganda    UG   UGA 1993
## 15844                                               Uganda    UG   UGA 1992
## 15845                                               Uganda    UG   UGA 1991
## 15846                                               Uganda    UG   UGA 1990
## 15847                                               Uganda    UG   UGA 1989
## 15848                                               Uganda    UG   UGA 1988
## 15849                                               Uganda    UG   UGA 1987
## 15850                                               Uganda    UG   UGA 1986
## 15851                                               Uganda    UG   UGA 1985
## 15852                                               Uganda    UG   UGA 1984
## 15853                                               Uganda    UG   UGA 1983
## 15854                                               Uganda    UG   UGA 1982
## 15855                                               Uganda    UG   UGA 1981
## 15856                                               Uganda    UG   UGA 1980
## 15857                                               Uganda    UG   UGA 1979
## 15858                                               Uganda    UG   UGA 1978
## 15859                                               Uganda    UG   UGA 1977
## 15860                                               Uganda    UG   UGA 1976
## 15861                                               Uganda    UG   UGA 1975
## 15862                                               Uganda    UG   UGA 1974
## 15863                                               Uganda    UG   UGA 1973
## 15864                                               Uganda    UG   UGA 1972
## 15865                                               Uganda    UG   UGA 1971
## 15866                                               Uganda    UG   UGA 1970
## 15867                                               Uganda    UG   UGA 1969
## 15868                                               Uganda    UG   UGA 1968
## 15869                                               Uganda    UG   UGA 1967
## 15870                                               Uganda    UG   UGA 1966
## 15871                                               Uganda    UG   UGA 1965
## 15872                                               Uganda    UG   UGA 1964
## 15873                                               Uganda    UG   UGA 1963
## 15874                                               Uganda    UG   UGA 1962
## 15875                                               Uganda    UG   UGA 1961
## 15876                                               Uganda    UG   UGA 1960
## 15877                                              Ukraine    UA   UKR 2022
## 15878                                              Ukraine    UA   UKR 2021
## 15879                                              Ukraine    UA   UKR 2020
## 15880                                              Ukraine    UA   UKR 2019
## 15881                                              Ukraine    UA   UKR 2018
## 15882                                              Ukraine    UA   UKR 2017
## 15883                                              Ukraine    UA   UKR 2016
## 15884                                              Ukraine    UA   UKR 2015
## 15885                                              Ukraine    UA   UKR 2014
## 15886                                              Ukraine    UA   UKR 2013
## 15887                                              Ukraine    UA   UKR 2012
## 15888                                              Ukraine    UA   UKR 2011
## 15889                                              Ukraine    UA   UKR 2010
## 15890                                              Ukraine    UA   UKR 2009
## 15891                                              Ukraine    UA   UKR 2008
## 15892                                              Ukraine    UA   UKR 2007
## 15893                                              Ukraine    UA   UKR 2006
## 15894                                              Ukraine    UA   UKR 2005
## 15895                                              Ukraine    UA   UKR 2004
## 15896                                              Ukraine    UA   UKR 2003
## 15897                                              Ukraine    UA   UKR 2002
## 15898                                              Ukraine    UA   UKR 2001
## 15899                                              Ukraine    UA   UKR 2000
## 15900                                              Ukraine    UA   UKR 1999
## 15901                                              Ukraine    UA   UKR 1998
## 15902                                              Ukraine    UA   UKR 1997
## 15903                                              Ukraine    UA   UKR 1996
## 15904                                              Ukraine    UA   UKR 1995
## 15905                                              Ukraine    UA   UKR 1994
## 15906                                              Ukraine    UA   UKR 1993
## 15907                                              Ukraine    UA   UKR 1992
## 15908                                              Ukraine    UA   UKR 1991
## 15909                                              Ukraine    UA   UKR 1990
## 15910                                              Ukraine    UA   UKR 1989
## 15911                                              Ukraine    UA   UKR 1988
## 15912                                              Ukraine    UA   UKR 1987
## 15913                                              Ukraine    UA   UKR 1986
## 15914                                              Ukraine    UA   UKR 1985
## 15915                                              Ukraine    UA   UKR 1984
## 15916                                              Ukraine    UA   UKR 1983
## 15917                                              Ukraine    UA   UKR 1982
## 15918                                              Ukraine    UA   UKR 1981
## 15919                                              Ukraine    UA   UKR 1980
## 15920                                              Ukraine    UA   UKR 1979
## 15921                                              Ukraine    UA   UKR 1978
## 15922                                              Ukraine    UA   UKR 1977
## 15923                                              Ukraine    UA   UKR 1976
## 15924                                              Ukraine    UA   UKR 1975
## 15925                                              Ukraine    UA   UKR 1974
## 15926                                              Ukraine    UA   UKR 1973
## 15927                                              Ukraine    UA   UKR 1972
## 15928                                              Ukraine    UA   UKR 1971
## 15929                                              Ukraine    UA   UKR 1970
## 15930                                              Ukraine    UA   UKR 1969
## 15931                                              Ukraine    UA   UKR 1968
## 15932                                              Ukraine    UA   UKR 1967
## 15933                                              Ukraine    UA   UKR 1966
## 15934                                              Ukraine    UA   UKR 1965
## 15935                                              Ukraine    UA   UKR 1964
## 15936                                              Ukraine    UA   UKR 1963
## 15937                                              Ukraine    UA   UKR 1962
## 15938                                              Ukraine    UA   UKR 1961
## 15939                                              Ukraine    UA   UKR 1960
## 15940                                 United Arab Emirates    AE   ARE 2022
## 15941                                 United Arab Emirates    AE   ARE 2021
## 15942                                 United Arab Emirates    AE   ARE 2020
## 15943                                 United Arab Emirates    AE   ARE 2019
## 15944                                 United Arab Emirates    AE   ARE 2018
## 15945                                 United Arab Emirates    AE   ARE 2017
## 15946                                 United Arab Emirates    AE   ARE 2016
## 15947                                 United Arab Emirates    AE   ARE 2015
## 15948                                 United Arab Emirates    AE   ARE 2014
## 15949                                 United Arab Emirates    AE   ARE 2013
## 15950                                 United Arab Emirates    AE   ARE 2012
## 15951                                 United Arab Emirates    AE   ARE 2011
## 15952                                 United Arab Emirates    AE   ARE 2010
## 15953                                 United Arab Emirates    AE   ARE 2009
## 15954                                 United Arab Emirates    AE   ARE 2008
## 15955                                 United Arab Emirates    AE   ARE 2007
## 15956                                 United Arab Emirates    AE   ARE 2006
## 15957                                 United Arab Emirates    AE   ARE 2005
## 15958                                 United Arab Emirates    AE   ARE 2004
## 15959                                 United Arab Emirates    AE   ARE 2003
## 15960                                 United Arab Emirates    AE   ARE 2002
## 15961                                 United Arab Emirates    AE   ARE 2001
## 15962                                 United Arab Emirates    AE   ARE 2000
## 15963                                 United Arab Emirates    AE   ARE 1999
## 15964                                 United Arab Emirates    AE   ARE 1998
## 15965                                 United Arab Emirates    AE   ARE 1997
## 15966                                 United Arab Emirates    AE   ARE 1996
## 15967                                 United Arab Emirates    AE   ARE 1995
## 15968                                 United Arab Emirates    AE   ARE 1994
## 15969                                 United Arab Emirates    AE   ARE 1993
## 15970                                 United Arab Emirates    AE   ARE 1992
## 15971                                 United Arab Emirates    AE   ARE 1991
## 15972                                 United Arab Emirates    AE   ARE 1990
## 15973                                 United Arab Emirates    AE   ARE 1989
## 15974                                 United Arab Emirates    AE   ARE 1988
## 15975                                 United Arab Emirates    AE   ARE 1987
## 15976                                 United Arab Emirates    AE   ARE 1986
## 15977                                 United Arab Emirates    AE   ARE 1985
## 15978                                 United Arab Emirates    AE   ARE 1984
## 15979                                 United Arab Emirates    AE   ARE 1983
## 15980                                 United Arab Emirates    AE   ARE 1982
## 15981                                 United Arab Emirates    AE   ARE 1981
## 15982                                 United Arab Emirates    AE   ARE 1980
## 15983                                 United Arab Emirates    AE   ARE 1979
## 15984                                 United Arab Emirates    AE   ARE 1978
## 15985                                 United Arab Emirates    AE   ARE 1977
## 15986                                 United Arab Emirates    AE   ARE 1976
## 15987                                 United Arab Emirates    AE   ARE 1975
## 15988                                 United Arab Emirates    AE   ARE 1974
## 15989                                 United Arab Emirates    AE   ARE 1973
## 15990                                 United Arab Emirates    AE   ARE 1972
## 15991                                 United Arab Emirates    AE   ARE 1971
## 15992                                 United Arab Emirates    AE   ARE 1970
## 15993                                 United Arab Emirates    AE   ARE 1969
## 15994                                 United Arab Emirates    AE   ARE 1968
## 15995                                 United Arab Emirates    AE   ARE 1967
## 15996                                 United Arab Emirates    AE   ARE 1966
## 15997                                 United Arab Emirates    AE   ARE 1965
## 15998                                 United Arab Emirates    AE   ARE 1964
## 15999                                 United Arab Emirates    AE   ARE 1963
## 16000                                 United Arab Emirates    AE   ARE 1962
## 16001                                 United Arab Emirates    AE   ARE 1961
## 16002                                 United Arab Emirates    AE   ARE 1960
## 16003                                       United Kingdom    GB   GBR 2022
## 16004                                       United Kingdom    GB   GBR 2021
## 16005                                       United Kingdom    GB   GBR 2020
## 16006                                       United Kingdom    GB   GBR 2019
## 16007                                       United Kingdom    GB   GBR 2018
## 16008                                       United Kingdom    GB   GBR 2017
## 16009                                       United Kingdom    GB   GBR 2016
## 16010                                       United Kingdom    GB   GBR 2015
## 16011                                       United Kingdom    GB   GBR 2014
## 16012                                       United Kingdom    GB   GBR 2013
## 16013                                       United Kingdom    GB   GBR 2012
## 16014                                       United Kingdom    GB   GBR 2011
## 16015                                       United Kingdom    GB   GBR 2010
## 16016                                       United Kingdom    GB   GBR 2009
## 16017                                       United Kingdom    GB   GBR 2008
## 16018                                       United Kingdom    GB   GBR 2007
## 16019                                       United Kingdom    GB   GBR 2006
## 16020                                       United Kingdom    GB   GBR 2005
## 16021                                       United Kingdom    GB   GBR 2004
## 16022                                       United Kingdom    GB   GBR 2003
## 16023                                       United Kingdom    GB   GBR 2002
## 16024                                       United Kingdom    GB   GBR 2001
## 16025                                       United Kingdom    GB   GBR 2000
## 16026                                       United Kingdom    GB   GBR 1999
## 16027                                       United Kingdom    GB   GBR 1998
## 16028                                       United Kingdom    GB   GBR 1997
## 16029                                       United Kingdom    GB   GBR 1996
## 16030                                       United Kingdom    GB   GBR 1995
## 16031                                       United Kingdom    GB   GBR 1994
## 16032                                       United Kingdom    GB   GBR 1993
## 16033                                       United Kingdom    GB   GBR 1992
## 16034                                       United Kingdom    GB   GBR 1991
## 16035                                       United Kingdom    GB   GBR 1990
## 16036                                       United Kingdom    GB   GBR 1989
## 16037                                       United Kingdom    GB   GBR 1988
## 16038                                       United Kingdom    GB   GBR 1987
## 16039                                       United Kingdom    GB   GBR 1986
## 16040                                       United Kingdom    GB   GBR 1985
## 16041                                       United Kingdom    GB   GBR 1984
## 16042                                       United Kingdom    GB   GBR 1983
## 16043                                       United Kingdom    GB   GBR 1982
## 16044                                       United Kingdom    GB   GBR 1981
## 16045                                       United Kingdom    GB   GBR 1980
## 16046                                       United Kingdom    GB   GBR 1979
## 16047                                       United Kingdom    GB   GBR 1978
## 16048                                       United Kingdom    GB   GBR 1977
## 16049                                       United Kingdom    GB   GBR 1976
## 16050                                       United Kingdom    GB   GBR 1975
## 16051                                       United Kingdom    GB   GBR 1974
## 16052                                       United Kingdom    GB   GBR 1973
## 16053                                       United Kingdom    GB   GBR 1972
## 16054                                       United Kingdom    GB   GBR 1971
## 16055                                       United Kingdom    GB   GBR 1970
## 16056                                       United Kingdom    GB   GBR 1969
## 16057                                       United Kingdom    GB   GBR 1968
## 16058                                       United Kingdom    GB   GBR 1967
## 16059                                       United Kingdom    GB   GBR 1966
## 16060                                       United Kingdom    GB   GBR 1965
## 16061                                       United Kingdom    GB   GBR 1964
## 16062                                       United Kingdom    GB   GBR 1963
## 16063                                       United Kingdom    GB   GBR 1962
## 16064                                       United Kingdom    GB   GBR 1961
## 16065                                       United Kingdom    GB   GBR 1960
## 16066                                        United States    US   USA 2022
## 16067                                        United States    US   USA 2021
## 16068                                        United States    US   USA 2020
## 16069                                        United States    US   USA 2019
## 16070                                        United States    US   USA 2018
## 16071                                        United States    US   USA 2017
## 16072                                        United States    US   USA 2016
## 16073                                        United States    US   USA 2015
## 16074                                        United States    US   USA 2014
## 16075                                        United States    US   USA 2013
## 16076                                        United States    US   USA 2012
## 16077                                        United States    US   USA 2011
## 16078                                        United States    US   USA 2010
## 16079                                        United States    US   USA 2009
## 16080                                        United States    US   USA 2008
## 16081                                        United States    US   USA 2007
## 16082                                        United States    US   USA 2006
## 16083                                        United States    US   USA 2005
## 16084                                        United States    US   USA 2004
## 16085                                        United States    US   USA 2003
## 16086                                        United States    US   USA 2002
## 16087                                        United States    US   USA 2001
## 16088                                        United States    US   USA 2000
## 16089                                        United States    US   USA 1999
## 16090                                        United States    US   USA 1998
## 16091                                        United States    US   USA 1997
## 16092                                        United States    US   USA 1996
## 16093                                        United States    US   USA 1995
## 16094                                        United States    US   USA 1994
## 16095                                        United States    US   USA 1993
## 16096                                        United States    US   USA 1992
## 16097                                        United States    US   USA 1991
## 16098                                        United States    US   USA 1990
## 16099                                        United States    US   USA 1989
## 16100                                        United States    US   USA 1988
## 16101                                        United States    US   USA 1987
## 16102                                        United States    US   USA 1986
## 16103                                        United States    US   USA 1985
## 16104                                        United States    US   USA 1984
## 16105                                        United States    US   USA 1983
## 16106                                        United States    US   USA 1982
## 16107                                        United States    US   USA 1981
## 16108                                        United States    US   USA 1980
## 16109                                        United States    US   USA 1979
## 16110                                        United States    US   USA 1978
## 16111                                        United States    US   USA 1977
## 16112                                        United States    US   USA 1976
## 16113                                        United States    US   USA 1975
## 16114                                        United States    US   USA 1974
## 16115                                        United States    US   USA 1973
## 16116                                        United States    US   USA 1972
## 16117                                        United States    US   USA 1971
## 16118                                        United States    US   USA 1970
## 16119                                        United States    US   USA 1969
## 16120                                        United States    US   USA 1968
## 16121                                        United States    US   USA 1967
## 16122                                        United States    US   USA 1966
## 16123                                        United States    US   USA 1965
## 16124                                        United States    US   USA 1964
## 16125                                        United States    US   USA 1963
## 16126                                        United States    US   USA 1962
## 16127                                        United States    US   USA 1961
## 16128                                        United States    US   USA 1960
## 16129                                              Uruguay    UY   URY 2022
## 16130                                              Uruguay    UY   URY 2021
## 16131                                              Uruguay    UY   URY 2020
## 16132                                              Uruguay    UY   URY 2019
## 16133                                              Uruguay    UY   URY 2018
## 16134                                              Uruguay    UY   URY 2017
## 16135                                              Uruguay    UY   URY 2016
## 16136                                              Uruguay    UY   URY 2015
## 16137                                              Uruguay    UY   URY 2014
## 16138                                              Uruguay    UY   URY 2013
## 16139                                              Uruguay    UY   URY 2012
## 16140                                              Uruguay    UY   URY 2011
## 16141                                              Uruguay    UY   URY 2010
## 16142                                              Uruguay    UY   URY 2009
## 16143                                              Uruguay    UY   URY 2008
## 16144                                              Uruguay    UY   URY 2007
## 16145                                              Uruguay    UY   URY 2006
## 16146                                              Uruguay    UY   URY 2005
## 16147                                              Uruguay    UY   URY 2004
## 16148                                              Uruguay    UY   URY 2003
## 16149                                              Uruguay    UY   URY 2002
## 16150                                              Uruguay    UY   URY 2001
## 16151                                              Uruguay    UY   URY 2000
## 16152                                              Uruguay    UY   URY 1999
## 16153                                              Uruguay    UY   URY 1998
## 16154                                              Uruguay    UY   URY 1997
## 16155                                              Uruguay    UY   URY 1996
## 16156                                              Uruguay    UY   URY 1995
## 16157                                              Uruguay    UY   URY 1994
## 16158                                              Uruguay    UY   URY 1993
## 16159                                              Uruguay    UY   URY 1992
## 16160                                              Uruguay    UY   URY 1991
## 16161                                              Uruguay    UY   URY 1990
## 16162                                              Uruguay    UY   URY 1989
## 16163                                              Uruguay    UY   URY 1988
## 16164                                              Uruguay    UY   URY 1987
## 16165                                              Uruguay    UY   URY 1986
## 16166                                              Uruguay    UY   URY 1985
## 16167                                              Uruguay    UY   URY 1984
## 16168                                              Uruguay    UY   URY 1983
## 16169                                              Uruguay    UY   URY 1982
## 16170                                              Uruguay    UY   URY 1981
## 16171                                              Uruguay    UY   URY 1980
## 16172                                              Uruguay    UY   URY 1979
## 16173                                              Uruguay    UY   URY 1978
## 16174                                              Uruguay    UY   URY 1977
## 16175                                              Uruguay    UY   URY 1976
## 16176                                              Uruguay    UY   URY 1975
## 16177                                              Uruguay    UY   URY 1974
## 16178                                              Uruguay    UY   URY 1973
## 16179                                              Uruguay    UY   URY 1972
## 16180                                              Uruguay    UY   URY 1971
## 16181                                              Uruguay    UY   URY 1970
## 16182                                              Uruguay    UY   URY 1969
## 16183                                              Uruguay    UY   URY 1968
## 16184                                              Uruguay    UY   URY 1967
## 16185                                              Uruguay    UY   URY 1966
## 16186                                              Uruguay    UY   URY 1965
## 16187                                              Uruguay    UY   URY 1964
## 16188                                              Uruguay    UY   URY 1963
## 16189                                              Uruguay    UY   URY 1962
## 16190                                              Uruguay    UY   URY 1961
## 16191                                              Uruguay    UY   URY 1960
## 16192                                           Uzbekistan    UZ   UZB 2022
## 16193                                           Uzbekistan    UZ   UZB 2021
## 16194                                           Uzbekistan    UZ   UZB 2020
## 16195                                           Uzbekistan    UZ   UZB 2019
## 16196                                           Uzbekistan    UZ   UZB 2018
## 16197                                           Uzbekistan    UZ   UZB 2017
## 16198                                           Uzbekistan    UZ   UZB 2016
## 16199                                           Uzbekistan    UZ   UZB 2015
## 16200                                           Uzbekistan    UZ   UZB 2014
## 16201                                           Uzbekistan    UZ   UZB 2013
## 16202                                           Uzbekistan    UZ   UZB 2012
## 16203                                           Uzbekistan    UZ   UZB 2011
## 16204                                           Uzbekistan    UZ   UZB 2010
## 16205                                           Uzbekistan    UZ   UZB 2009
## 16206                                           Uzbekistan    UZ   UZB 2008
## 16207                                           Uzbekistan    UZ   UZB 2007
## 16208                                           Uzbekistan    UZ   UZB 2006
## 16209                                           Uzbekistan    UZ   UZB 2005
## 16210                                           Uzbekistan    UZ   UZB 2004
## 16211                                           Uzbekistan    UZ   UZB 2003
## 16212                                           Uzbekistan    UZ   UZB 2002
## 16213                                           Uzbekistan    UZ   UZB 2001
## 16214                                           Uzbekistan    UZ   UZB 2000
## 16215                                           Uzbekistan    UZ   UZB 1999
## 16216                                           Uzbekistan    UZ   UZB 1998
## 16217                                           Uzbekistan    UZ   UZB 1997
## 16218                                           Uzbekistan    UZ   UZB 1996
## 16219                                           Uzbekistan    UZ   UZB 1995
## 16220                                           Uzbekistan    UZ   UZB 1994
## 16221                                           Uzbekistan    UZ   UZB 1993
## 16222                                           Uzbekistan    UZ   UZB 1992
## 16223                                           Uzbekistan    UZ   UZB 1991
## 16224                                           Uzbekistan    UZ   UZB 1990
## 16225                                           Uzbekistan    UZ   UZB 1989
## 16226                                           Uzbekistan    UZ   UZB 1988
## 16227                                           Uzbekistan    UZ   UZB 1987
## 16228                                           Uzbekistan    UZ   UZB 1986
## 16229                                           Uzbekistan    UZ   UZB 1985
## 16230                                           Uzbekistan    UZ   UZB 1984
## 16231                                           Uzbekistan    UZ   UZB 1983
## 16232                                           Uzbekistan    UZ   UZB 1982
## 16233                                           Uzbekistan    UZ   UZB 1981
## 16234                                           Uzbekistan    UZ   UZB 1980
## 16235                                           Uzbekistan    UZ   UZB 1979
## 16236                                           Uzbekistan    UZ   UZB 1978
## 16237                                           Uzbekistan    UZ   UZB 1977
## 16238                                           Uzbekistan    UZ   UZB 1976
## 16239                                           Uzbekistan    UZ   UZB 1975
## 16240                                           Uzbekistan    UZ   UZB 1974
## 16241                                           Uzbekistan    UZ   UZB 1973
## 16242                                           Uzbekistan    UZ   UZB 1972
## 16243                                           Uzbekistan    UZ   UZB 1971
## 16244                                           Uzbekistan    UZ   UZB 1970
## 16245                                           Uzbekistan    UZ   UZB 1969
## 16246                                           Uzbekistan    UZ   UZB 1968
## 16247                                           Uzbekistan    UZ   UZB 1967
## 16248                                           Uzbekistan    UZ   UZB 1966
## 16249                                           Uzbekistan    UZ   UZB 1965
## 16250                                           Uzbekistan    UZ   UZB 1964
## 16251                                           Uzbekistan    UZ   UZB 1963
## 16252                                           Uzbekistan    UZ   UZB 1962
## 16253                                           Uzbekistan    UZ   UZB 1961
## 16254                                           Uzbekistan    UZ   UZB 1960
## 16255                                              Vanuatu    VU   VUT 2022
## 16256                                              Vanuatu    VU   VUT 2021
## 16257                                              Vanuatu    VU   VUT 2020
## 16258                                              Vanuatu    VU   VUT 2019
## 16259                                              Vanuatu    VU   VUT 2018
## 16260                                              Vanuatu    VU   VUT 2017
## 16261                                              Vanuatu    VU   VUT 2016
## 16262                                              Vanuatu    VU   VUT 2015
## 16263                                              Vanuatu    VU   VUT 2014
## 16264                                              Vanuatu    VU   VUT 2013
## 16265                                              Vanuatu    VU   VUT 2012
## 16266                                              Vanuatu    VU   VUT 2011
## 16267                                              Vanuatu    VU   VUT 2010
## 16268                                              Vanuatu    VU   VUT 2009
## 16269                                              Vanuatu    VU   VUT 2008
## 16270                                              Vanuatu    VU   VUT 2007
## 16271                                              Vanuatu    VU   VUT 2006
## 16272                                              Vanuatu    VU   VUT 2005
## 16273                                              Vanuatu    VU   VUT 2004
## 16274                                              Vanuatu    VU   VUT 2003
## 16275                                              Vanuatu    VU   VUT 2002
## 16276                                              Vanuatu    VU   VUT 2001
## 16277                                              Vanuatu    VU   VUT 2000
## 16278                                              Vanuatu    VU   VUT 1999
## 16279                                              Vanuatu    VU   VUT 1998
## 16280                                              Vanuatu    VU   VUT 1997
## 16281                                              Vanuatu    VU   VUT 1996
## 16282                                              Vanuatu    VU   VUT 1995
## 16283                                              Vanuatu    VU   VUT 1994
## 16284                                              Vanuatu    VU   VUT 1993
## 16285                                              Vanuatu    VU   VUT 1992
## 16286                                              Vanuatu    VU   VUT 1991
## 16287                                              Vanuatu    VU   VUT 1990
## 16288                                              Vanuatu    VU   VUT 1989
## 16289                                              Vanuatu    VU   VUT 1988
## 16290                                              Vanuatu    VU   VUT 1987
## 16291                                              Vanuatu    VU   VUT 1986
## 16292                                              Vanuatu    VU   VUT 1985
## 16293                                              Vanuatu    VU   VUT 1984
## 16294                                              Vanuatu    VU   VUT 1983
## 16295                                              Vanuatu    VU   VUT 1982
## 16296                                              Vanuatu    VU   VUT 1981
## 16297                                              Vanuatu    VU   VUT 1980
## 16298                                              Vanuatu    VU   VUT 1979
## 16299                                              Vanuatu    VU   VUT 1978
## 16300                                              Vanuatu    VU   VUT 1977
## 16301                                              Vanuatu    VU   VUT 1976
## 16302                                              Vanuatu    VU   VUT 1975
## 16303                                              Vanuatu    VU   VUT 1974
## 16304                                              Vanuatu    VU   VUT 1973
## 16305                                              Vanuatu    VU   VUT 1972
## 16306                                              Vanuatu    VU   VUT 1971
## 16307                                              Vanuatu    VU   VUT 1970
## 16308                                              Vanuatu    VU   VUT 1969
## 16309                                              Vanuatu    VU   VUT 1968
## 16310                                              Vanuatu    VU   VUT 1967
## 16311                                              Vanuatu    VU   VUT 1966
## 16312                                              Vanuatu    VU   VUT 1965
## 16313                                              Vanuatu    VU   VUT 1964
## 16314                                              Vanuatu    VU   VUT 1963
## 16315                                              Vanuatu    VU   VUT 1962
## 16316                                              Vanuatu    VU   VUT 1961
## 16317                                              Vanuatu    VU   VUT 1960
## 16318                                        Venezuela, RB    VE   VEN 2022
## 16319                                        Venezuela, RB    VE   VEN 2021
## 16320                                        Venezuela, RB    VE   VEN 2020
## 16321                                        Venezuela, RB    VE   VEN 2019
## 16322                                        Venezuela, RB    VE   VEN 2018
## 16323                                        Venezuela, RB    VE   VEN 2017
## 16324                                        Venezuela, RB    VE   VEN 2016
## 16325                                        Venezuela, RB    VE   VEN 2015
## 16326                                        Venezuela, RB    VE   VEN 2014
## 16327                                        Venezuela, RB    VE   VEN 2013
## 16328                                        Venezuela, RB    VE   VEN 2012
## 16329                                        Venezuela, RB    VE   VEN 2011
## 16330                                        Venezuela, RB    VE   VEN 2010
## 16331                                        Venezuela, RB    VE   VEN 2009
## 16332                                        Venezuela, RB    VE   VEN 2008
## 16333                                        Venezuela, RB    VE   VEN 2007
## 16334                                        Venezuela, RB    VE   VEN 2006
## 16335                                        Venezuela, RB    VE   VEN 2005
## 16336                                        Venezuela, RB    VE   VEN 2004
## 16337                                        Venezuela, RB    VE   VEN 2003
## 16338                                        Venezuela, RB    VE   VEN 2002
## 16339                                        Venezuela, RB    VE   VEN 2001
## 16340                                        Venezuela, RB    VE   VEN 2000
## 16341                                        Venezuela, RB    VE   VEN 1999
## 16342                                        Venezuela, RB    VE   VEN 1998
## 16343                                        Venezuela, RB    VE   VEN 1997
## 16344                                        Venezuela, RB    VE   VEN 1996
## 16345                                        Venezuela, RB    VE   VEN 1995
## 16346                                        Venezuela, RB    VE   VEN 1994
## 16347                                        Venezuela, RB    VE   VEN 1993
## 16348                                        Venezuela, RB    VE   VEN 1992
## 16349                                        Venezuela, RB    VE   VEN 1991
## 16350                                        Venezuela, RB    VE   VEN 1990
## 16351                                        Venezuela, RB    VE   VEN 1989
## 16352                                        Venezuela, RB    VE   VEN 1988
## 16353                                        Venezuela, RB    VE   VEN 1987
## 16354                                        Venezuela, RB    VE   VEN 1986
## 16355                                        Venezuela, RB    VE   VEN 1985
## 16356                                        Venezuela, RB    VE   VEN 1984
## 16357                                        Venezuela, RB    VE   VEN 1983
## 16358                                        Venezuela, RB    VE   VEN 1982
## 16359                                        Venezuela, RB    VE   VEN 1981
## 16360                                        Venezuela, RB    VE   VEN 1980
## 16361                                        Venezuela, RB    VE   VEN 1979
## 16362                                        Venezuela, RB    VE   VEN 1978
## 16363                                        Venezuela, RB    VE   VEN 1977
## 16364                                        Venezuela, RB    VE   VEN 1976
## 16365                                        Venezuela, RB    VE   VEN 1975
## 16366                                        Venezuela, RB    VE   VEN 1974
## 16367                                        Venezuela, RB    VE   VEN 1973
## 16368                                        Venezuela, RB    VE   VEN 1972
## 16369                                        Venezuela, RB    VE   VEN 1971
## 16370                                        Venezuela, RB    VE   VEN 1970
## 16371                                        Venezuela, RB    VE   VEN 1969
## 16372                                        Venezuela, RB    VE   VEN 1968
## 16373                                        Venezuela, RB    VE   VEN 1967
## 16374                                        Venezuela, RB    VE   VEN 1966
## 16375                                        Venezuela, RB    VE   VEN 1965
## 16376                                        Venezuela, RB    VE   VEN 1964
## 16377                                        Venezuela, RB    VE   VEN 1963
## 16378                                        Venezuela, RB    VE   VEN 1962
## 16379                                        Venezuela, RB    VE   VEN 1961
## 16380                                        Venezuela, RB    VE   VEN 1960
## 16381                                              Vietnam    VN   VNM 2022
## 16382                                              Vietnam    VN   VNM 2021
## 16383                                              Vietnam    VN   VNM 2020
## 16384                                              Vietnam    VN   VNM 2019
## 16385                                              Vietnam    VN   VNM 2018
## 16386                                              Vietnam    VN   VNM 2017
## 16387                                              Vietnam    VN   VNM 2016
## 16388                                              Vietnam    VN   VNM 2015
## 16389                                              Vietnam    VN   VNM 2014
## 16390                                              Vietnam    VN   VNM 2013
## 16391                                              Vietnam    VN   VNM 2012
## 16392                                              Vietnam    VN   VNM 2011
## 16393                                              Vietnam    VN   VNM 2010
## 16394                                              Vietnam    VN   VNM 2009
## 16395                                              Vietnam    VN   VNM 2008
## 16396                                              Vietnam    VN   VNM 2007
## 16397                                              Vietnam    VN   VNM 2006
## 16398                                              Vietnam    VN   VNM 2005
## 16399                                              Vietnam    VN   VNM 2004
## 16400                                              Vietnam    VN   VNM 2003
## 16401                                              Vietnam    VN   VNM 2002
## 16402                                              Vietnam    VN   VNM 2001
## 16403                                              Vietnam    VN   VNM 2000
## 16404                                              Vietnam    VN   VNM 1999
## 16405                                              Vietnam    VN   VNM 1998
## 16406                                              Vietnam    VN   VNM 1997
## 16407                                              Vietnam    VN   VNM 1996
## 16408                                              Vietnam    VN   VNM 1995
## 16409                                              Vietnam    VN   VNM 1994
## 16410                                              Vietnam    VN   VNM 1993
## 16411                                              Vietnam    VN   VNM 1992
## 16412                                              Vietnam    VN   VNM 1991
## 16413                                              Vietnam    VN   VNM 1990
## 16414                                              Vietnam    VN   VNM 1989
## 16415                                              Vietnam    VN   VNM 1988
## 16416                                              Vietnam    VN   VNM 1987
## 16417                                              Vietnam    VN   VNM 1986
## 16418                                              Vietnam    VN   VNM 1985
## 16419                                              Vietnam    VN   VNM 1984
## 16420                                              Vietnam    VN   VNM 1983
## 16421                                              Vietnam    VN   VNM 1982
## 16422                                              Vietnam    VN   VNM 1981
## 16423                                              Vietnam    VN   VNM 1980
## 16424                                              Vietnam    VN   VNM 1979
## 16425                                              Vietnam    VN   VNM 1978
## 16426                                              Vietnam    VN   VNM 1977
## 16427                                              Vietnam    VN   VNM 1976
## 16428                                              Vietnam    VN   VNM 1975
## 16429                                              Vietnam    VN   VNM 1974
## 16430                                              Vietnam    VN   VNM 1973
## 16431                                              Vietnam    VN   VNM 1972
## 16432                                              Vietnam    VN   VNM 1971
## 16433                                              Vietnam    VN   VNM 1970
## 16434                                              Vietnam    VN   VNM 1969
## 16435                                              Vietnam    VN   VNM 1968
## 16436                                              Vietnam    VN   VNM 1967
## 16437                                              Vietnam    VN   VNM 1966
## 16438                                              Vietnam    VN   VNM 1965
## 16439                                              Vietnam    VN   VNM 1964
## 16440                                              Vietnam    VN   VNM 1963
## 16441                                              Vietnam    VN   VNM 1962
## 16442                                              Vietnam    VN   VNM 1961
## 16443                                              Vietnam    VN   VNM 1960
## 16444                                Virgin Islands (U.S.)    VI   VIR 2022
## 16445                                Virgin Islands (U.S.)    VI   VIR 2021
## 16446                                Virgin Islands (U.S.)    VI   VIR 2020
## 16447                                Virgin Islands (U.S.)    VI   VIR 2019
## 16448                                Virgin Islands (U.S.)    VI   VIR 2018
## 16449                                Virgin Islands (U.S.)    VI   VIR 2017
## 16450                                Virgin Islands (U.S.)    VI   VIR 2016
## 16451                                Virgin Islands (U.S.)    VI   VIR 2015
## 16452                                Virgin Islands (U.S.)    VI   VIR 2014
## 16453                                Virgin Islands (U.S.)    VI   VIR 2013
## 16454                                Virgin Islands (U.S.)    VI   VIR 2012
## 16455                                Virgin Islands (U.S.)    VI   VIR 2011
## 16456                                Virgin Islands (U.S.)    VI   VIR 2010
## 16457                                Virgin Islands (U.S.)    VI   VIR 2009
## 16458                                Virgin Islands (U.S.)    VI   VIR 2008
## 16459                                Virgin Islands (U.S.)    VI   VIR 2007
## 16460                                Virgin Islands (U.S.)    VI   VIR 2006
## 16461                                Virgin Islands (U.S.)    VI   VIR 2005
## 16462                                Virgin Islands (U.S.)    VI   VIR 2004
## 16463                                Virgin Islands (U.S.)    VI   VIR 2003
## 16464                                Virgin Islands (U.S.)    VI   VIR 2002
## 16465                                Virgin Islands (U.S.)    VI   VIR 2001
## 16466                                Virgin Islands (U.S.)    VI   VIR 2000
## 16467                                Virgin Islands (U.S.)    VI   VIR 1999
## 16468                                Virgin Islands (U.S.)    VI   VIR 1998
## 16469                                Virgin Islands (U.S.)    VI   VIR 1997
## 16470                                Virgin Islands (U.S.)    VI   VIR 1996
## 16471                                Virgin Islands (U.S.)    VI   VIR 1995
## 16472                                Virgin Islands (U.S.)    VI   VIR 1994
## 16473                                Virgin Islands (U.S.)    VI   VIR 1993
## 16474                                Virgin Islands (U.S.)    VI   VIR 1992
## 16475                                Virgin Islands (U.S.)    VI   VIR 1991
## 16476                                Virgin Islands (U.S.)    VI   VIR 1990
## 16477                                Virgin Islands (U.S.)    VI   VIR 1989
## 16478                                Virgin Islands (U.S.)    VI   VIR 1988
## 16479                                Virgin Islands (U.S.)    VI   VIR 1987
## 16480                                Virgin Islands (U.S.)    VI   VIR 1986
## 16481                                Virgin Islands (U.S.)    VI   VIR 1985
## 16482                                Virgin Islands (U.S.)    VI   VIR 1984
## 16483                                Virgin Islands (U.S.)    VI   VIR 1983
## 16484                                Virgin Islands (U.S.)    VI   VIR 1982
## 16485                                Virgin Islands (U.S.)    VI   VIR 1981
## 16486                                Virgin Islands (U.S.)    VI   VIR 1980
## 16487                                Virgin Islands (U.S.)    VI   VIR 1979
## 16488                                Virgin Islands (U.S.)    VI   VIR 1978
## 16489                                Virgin Islands (U.S.)    VI   VIR 1977
## 16490                                Virgin Islands (U.S.)    VI   VIR 1976
## 16491                                Virgin Islands (U.S.)    VI   VIR 1975
## 16492                                Virgin Islands (U.S.)    VI   VIR 1974
## 16493                                Virgin Islands (U.S.)    VI   VIR 1973
## 16494                                Virgin Islands (U.S.)    VI   VIR 1972
## 16495                                Virgin Islands (U.S.)    VI   VIR 1971
## 16496                                Virgin Islands (U.S.)    VI   VIR 1970
## 16497                                Virgin Islands (U.S.)    VI   VIR 1969
## 16498                                Virgin Islands (U.S.)    VI   VIR 1968
## 16499                                Virgin Islands (U.S.)    VI   VIR 1967
## 16500                                Virgin Islands (U.S.)    VI   VIR 1966
## 16501                                Virgin Islands (U.S.)    VI   VIR 1965
## 16502                                Virgin Islands (U.S.)    VI   VIR 1964
## 16503                                Virgin Islands (U.S.)    VI   VIR 1963
## 16504                                Virgin Islands (U.S.)    VI   VIR 1962
## 16505                                Virgin Islands (U.S.)    VI   VIR 1961
## 16506                                Virgin Islands (U.S.)    VI   VIR 1960
## 16507                                   West Bank and Gaza    PS   PSE 2022
## 16508                                   West Bank and Gaza    PS   PSE 2021
## 16509                                   West Bank and Gaza    PS   PSE 2020
## 16510                                   West Bank and Gaza    PS   PSE 2019
## 16511                                   West Bank and Gaza    PS   PSE 2018
## 16512                                   West Bank and Gaza    PS   PSE 2017
## 16513                                   West Bank and Gaza    PS   PSE 2016
## 16514                                   West Bank and Gaza    PS   PSE 2015
## 16515                                   West Bank and Gaza    PS   PSE 2014
## 16516                                   West Bank and Gaza    PS   PSE 2013
## 16517                                   West Bank and Gaza    PS   PSE 2012
## 16518                                   West Bank and Gaza    PS   PSE 2011
## 16519                                   West Bank and Gaza    PS   PSE 2010
## 16520                                   West Bank and Gaza    PS   PSE 2009
## 16521                                   West Bank and Gaza    PS   PSE 2008
## 16522                                   West Bank and Gaza    PS   PSE 2007
## 16523                                   West Bank and Gaza    PS   PSE 2006
## 16524                                   West Bank and Gaza    PS   PSE 2005
## 16525                                   West Bank and Gaza    PS   PSE 2004
## 16526                                   West Bank and Gaza    PS   PSE 2003
## 16527                                   West Bank and Gaza    PS   PSE 2002
## 16528                                   West Bank and Gaza    PS   PSE 2001
## 16529                                   West Bank and Gaza    PS   PSE 2000
## 16530                                   West Bank and Gaza    PS   PSE 1999
## 16531                                   West Bank and Gaza    PS   PSE 1998
## 16532                                   West Bank and Gaza    PS   PSE 1997
## 16533                                   West Bank and Gaza    PS   PSE 1996
## 16534                                   West Bank and Gaza    PS   PSE 1995
## 16535                                   West Bank and Gaza    PS   PSE 1994
## 16536                                   West Bank and Gaza    PS   PSE 1993
## 16537                                   West Bank and Gaza    PS   PSE 1992
## 16538                                   West Bank and Gaza    PS   PSE 1991
## 16539                                   West Bank and Gaza    PS   PSE 1990
## 16540                                   West Bank and Gaza    PS   PSE 1989
## 16541                                   West Bank and Gaza    PS   PSE 1988
## 16542                                   West Bank and Gaza    PS   PSE 1987
## 16543                                   West Bank and Gaza    PS   PSE 1986
## 16544                                   West Bank and Gaza    PS   PSE 1985
## 16545                                   West Bank and Gaza    PS   PSE 1984
## 16546                                   West Bank and Gaza    PS   PSE 1983
## 16547                                   West Bank and Gaza    PS   PSE 1982
## 16548                                   West Bank and Gaza    PS   PSE 1981
## 16549                                   West Bank and Gaza    PS   PSE 1980
## 16550                                   West Bank and Gaza    PS   PSE 1979
## 16551                                   West Bank and Gaza    PS   PSE 1978
## 16552                                   West Bank and Gaza    PS   PSE 1977
## 16553                                   West Bank and Gaza    PS   PSE 1976
## 16554                                   West Bank and Gaza    PS   PSE 1975
## 16555                                   West Bank and Gaza    PS   PSE 1974
## 16556                                   West Bank and Gaza    PS   PSE 1973
## 16557                                   West Bank and Gaza    PS   PSE 1972
## 16558                                   West Bank and Gaza    PS   PSE 1971
## 16559                                   West Bank and Gaza    PS   PSE 1970
## 16560                                   West Bank and Gaza    PS   PSE 1969
## 16561                                   West Bank and Gaza    PS   PSE 1968
## 16562                                   West Bank and Gaza    PS   PSE 1967
## 16563                                   West Bank and Gaza    PS   PSE 1966
## 16564                                   West Bank and Gaza    PS   PSE 1965
## 16565                                   West Bank and Gaza    PS   PSE 1964
## 16566                                   West Bank and Gaza    PS   PSE 1963
## 16567                                   West Bank and Gaza    PS   PSE 1962
## 16568                                   West Bank and Gaza    PS   PSE 1961
## 16569                                   West Bank and Gaza    PS   PSE 1960
## 16570                                          Yemen, Rep.    YE   YEM 2022
## 16571                                          Yemen, Rep.    YE   YEM 2021
## 16572                                          Yemen, Rep.    YE   YEM 2020
## 16573                                          Yemen, Rep.    YE   YEM 2019
## 16574                                          Yemen, Rep.    YE   YEM 2018
## 16575                                          Yemen, Rep.    YE   YEM 2017
## 16576                                          Yemen, Rep.    YE   YEM 2016
## 16577                                          Yemen, Rep.    YE   YEM 2015
## 16578                                          Yemen, Rep.    YE   YEM 2014
## 16579                                          Yemen, Rep.    YE   YEM 2013
## 16580                                          Yemen, Rep.    YE   YEM 2012
## 16581                                          Yemen, Rep.    YE   YEM 2011
## 16582                                          Yemen, Rep.    YE   YEM 2010
## 16583                                          Yemen, Rep.    YE   YEM 2009
## 16584                                          Yemen, Rep.    YE   YEM 2008
## 16585                                          Yemen, Rep.    YE   YEM 2007
## 16586                                          Yemen, Rep.    YE   YEM 2006
## 16587                                          Yemen, Rep.    YE   YEM 2005
## 16588                                          Yemen, Rep.    YE   YEM 2004
## 16589                                          Yemen, Rep.    YE   YEM 2003
## 16590                                          Yemen, Rep.    YE   YEM 2002
## 16591                                          Yemen, Rep.    YE   YEM 2001
## 16592                                          Yemen, Rep.    YE   YEM 2000
## 16593                                          Yemen, Rep.    YE   YEM 1999
## 16594                                          Yemen, Rep.    YE   YEM 1998
## 16595                                          Yemen, Rep.    YE   YEM 1997
## 16596                                          Yemen, Rep.    YE   YEM 1996
## 16597                                          Yemen, Rep.    YE   YEM 1995
## 16598                                          Yemen, Rep.    YE   YEM 1994
## 16599                                          Yemen, Rep.    YE   YEM 1993
## 16600                                          Yemen, Rep.    YE   YEM 1992
## 16601                                          Yemen, Rep.    YE   YEM 1991
## 16602                                          Yemen, Rep.    YE   YEM 1990
## 16603                                          Yemen, Rep.    YE   YEM 1989
## 16604                                          Yemen, Rep.    YE   YEM 1988
## 16605                                          Yemen, Rep.    YE   YEM 1987
## 16606                                          Yemen, Rep.    YE   YEM 1986
## 16607                                          Yemen, Rep.    YE   YEM 1985
## 16608                                          Yemen, Rep.    YE   YEM 1984
## 16609                                          Yemen, Rep.    YE   YEM 1983
## 16610                                          Yemen, Rep.    YE   YEM 1982
## 16611                                          Yemen, Rep.    YE   YEM 1981
## 16612                                          Yemen, Rep.    YE   YEM 1980
## 16613                                          Yemen, Rep.    YE   YEM 1979
## 16614                                          Yemen, Rep.    YE   YEM 1978
## 16615                                          Yemen, Rep.    YE   YEM 1977
## 16616                                          Yemen, Rep.    YE   YEM 1976
## 16617                                          Yemen, Rep.    YE   YEM 1975
## 16618                                          Yemen, Rep.    YE   YEM 1974
## 16619                                          Yemen, Rep.    YE   YEM 1973
## 16620                                          Yemen, Rep.    YE   YEM 1972
## 16621                                          Yemen, Rep.    YE   YEM 1971
## 16622                                          Yemen, Rep.    YE   YEM 1970
## 16623                                          Yemen, Rep.    YE   YEM 1969
## 16624                                          Yemen, Rep.    YE   YEM 1968
## 16625                                          Yemen, Rep.    YE   YEM 1967
## 16626                                          Yemen, Rep.    YE   YEM 1966
## 16627                                          Yemen, Rep.    YE   YEM 1965
## 16628                                          Yemen, Rep.    YE   YEM 1964
## 16629                                          Yemen, Rep.    YE   YEM 1963
## 16630                                          Yemen, Rep.    YE   YEM 1962
## 16631                                          Yemen, Rep.    YE   YEM 1961
## 16632                                          Yemen, Rep.    YE   YEM 1960
## 16633                                               Zambia    ZM   ZMB 2022
## 16634                                               Zambia    ZM   ZMB 2021
## 16635                                               Zambia    ZM   ZMB 2020
## 16636                                               Zambia    ZM   ZMB 2019
## 16637                                               Zambia    ZM   ZMB 2018
## 16638                                               Zambia    ZM   ZMB 2017
## 16639                                               Zambia    ZM   ZMB 2016
## 16640                                               Zambia    ZM   ZMB 2015
## 16641                                               Zambia    ZM   ZMB 2014
## 16642                                               Zambia    ZM   ZMB 2013
## 16643                                               Zambia    ZM   ZMB 2012
## 16644                                               Zambia    ZM   ZMB 2011
## 16645                                               Zambia    ZM   ZMB 2010
## 16646                                               Zambia    ZM   ZMB 2009
## 16647                                               Zambia    ZM   ZMB 2008
## 16648                                               Zambia    ZM   ZMB 2007
## 16649                                               Zambia    ZM   ZMB 2006
## 16650                                               Zambia    ZM   ZMB 2005
## 16651                                               Zambia    ZM   ZMB 2004
## 16652                                               Zambia    ZM   ZMB 2003
## 16653                                               Zambia    ZM   ZMB 2002
## 16654                                               Zambia    ZM   ZMB 2001
## 16655                                               Zambia    ZM   ZMB 2000
## 16656                                               Zambia    ZM   ZMB 1999
## 16657                                               Zambia    ZM   ZMB 1998
## 16658                                               Zambia    ZM   ZMB 1997
## 16659                                               Zambia    ZM   ZMB 1996
## 16660                                               Zambia    ZM   ZMB 1995
## 16661                                               Zambia    ZM   ZMB 1994
## 16662                                               Zambia    ZM   ZMB 1993
## 16663                                               Zambia    ZM   ZMB 1992
## 16664                                               Zambia    ZM   ZMB 1991
## 16665                                               Zambia    ZM   ZMB 1990
## 16666                                               Zambia    ZM   ZMB 1989
## 16667                                               Zambia    ZM   ZMB 1988
## 16668                                               Zambia    ZM   ZMB 1987
## 16669                                               Zambia    ZM   ZMB 1986
## 16670                                               Zambia    ZM   ZMB 1985
## 16671                                               Zambia    ZM   ZMB 1984
## 16672                                               Zambia    ZM   ZMB 1983
## 16673                                               Zambia    ZM   ZMB 1982
## 16674                                               Zambia    ZM   ZMB 1981
## 16675                                               Zambia    ZM   ZMB 1980
## 16676                                               Zambia    ZM   ZMB 1979
## 16677                                               Zambia    ZM   ZMB 1978
## 16678                                               Zambia    ZM   ZMB 1977
## 16679                                               Zambia    ZM   ZMB 1976
## 16680                                               Zambia    ZM   ZMB 1975
## 16681                                               Zambia    ZM   ZMB 1974
## 16682                                               Zambia    ZM   ZMB 1973
## 16683                                               Zambia    ZM   ZMB 1972
## 16684                                               Zambia    ZM   ZMB 1971
## 16685                                               Zambia    ZM   ZMB 1970
## 16686                                               Zambia    ZM   ZMB 1969
## 16687                                               Zambia    ZM   ZMB 1968
## 16688                                               Zambia    ZM   ZMB 1967
## 16689                                               Zambia    ZM   ZMB 1966
## 16690                                               Zambia    ZM   ZMB 1965
## 16691                                               Zambia    ZM   ZMB 1964
## 16692                                               Zambia    ZM   ZMB 1963
## 16693                                               Zambia    ZM   ZMB 1962
## 16694                                               Zambia    ZM   ZMB 1961
## 16695                                               Zambia    ZM   ZMB 1960
## 16696                                             Zimbabwe    ZW   ZWE 2022
## 16697                                             Zimbabwe    ZW   ZWE 2021
## 16698                                             Zimbabwe    ZW   ZWE 2020
## 16699                                             Zimbabwe    ZW   ZWE 2019
## 16700                                             Zimbabwe    ZW   ZWE 2018
## 16701                                             Zimbabwe    ZW   ZWE 2017
## 16702                                             Zimbabwe    ZW   ZWE 2016
## 16703                                             Zimbabwe    ZW   ZWE 2015
## 16704                                             Zimbabwe    ZW   ZWE 2014
## 16705                                             Zimbabwe    ZW   ZWE 2013
## 16706                                             Zimbabwe    ZW   ZWE 2012
## 16707                                             Zimbabwe    ZW   ZWE 2011
## 16708                                             Zimbabwe    ZW   ZWE 2010
## 16709                                             Zimbabwe    ZW   ZWE 2009
## 16710                                             Zimbabwe    ZW   ZWE 2008
## 16711                                             Zimbabwe    ZW   ZWE 2007
## 16712                                             Zimbabwe    ZW   ZWE 2006
## 16713                                             Zimbabwe    ZW   ZWE 2005
## 16714                                             Zimbabwe    ZW   ZWE 2004
## 16715                                             Zimbabwe    ZW   ZWE 2003
## 16716                                             Zimbabwe    ZW   ZWE 2002
## 16717                                             Zimbabwe    ZW   ZWE 2001
## 16718                                             Zimbabwe    ZW   ZWE 2000
## 16719                                             Zimbabwe    ZW   ZWE 1999
## 16720                                             Zimbabwe    ZW   ZWE 1998
## 16721                                             Zimbabwe    ZW   ZWE 1997
## 16722                                             Zimbabwe    ZW   ZWE 1996
## 16723                                             Zimbabwe    ZW   ZWE 1995
## 16724                                             Zimbabwe    ZW   ZWE 1994
## 16725                                             Zimbabwe    ZW   ZWE 1993
## 16726                                             Zimbabwe    ZW   ZWE 1992
## 16727                                             Zimbabwe    ZW   ZWE 1991
## 16728                                             Zimbabwe    ZW   ZWE 1990
## 16729                                             Zimbabwe    ZW   ZWE 1989
## 16730                                             Zimbabwe    ZW   ZWE 1988
## 16731                                             Zimbabwe    ZW   ZWE 1987
## 16732                                             Zimbabwe    ZW   ZWE 1986
## 16733                                             Zimbabwe    ZW   ZWE 1985
## 16734                                             Zimbabwe    ZW   ZWE 1984
## 16735                                             Zimbabwe    ZW   ZWE 1983
## 16736                                             Zimbabwe    ZW   ZWE 1982
## 16737                                             Zimbabwe    ZW   ZWE 1981
## 16738                                             Zimbabwe    ZW   ZWE 1980
## 16739                                             Zimbabwe    ZW   ZWE 1979
## 16740                                             Zimbabwe    ZW   ZWE 1978
## 16741                                             Zimbabwe    ZW   ZWE 1977
## 16742                                             Zimbabwe    ZW   ZWE 1976
## 16743                                             Zimbabwe    ZW   ZWE 1975
## 16744                                             Zimbabwe    ZW   ZWE 1974
## 16745                                             Zimbabwe    ZW   ZWE 1973
## 16746                                             Zimbabwe    ZW   ZWE 1972
## 16747                                             Zimbabwe    ZW   ZWE 1971
## 16748                                             Zimbabwe    ZW   ZWE 1970
## 16749                                             Zimbabwe    ZW   ZWE 1969
## 16750                                             Zimbabwe    ZW   ZWE 1968
## 16751                                             Zimbabwe    ZW   ZWE 1967
## 16752                                             Zimbabwe    ZW   ZWE 1966
## 16753                                             Zimbabwe    ZW   ZWE 1965
## 16754                                             Zimbabwe    ZW   ZWE 1964
## 16755                                             Zimbabwe    ZW   ZWE 1963
## 16756                                             Zimbabwe    ZW   ZWE 1962
## 16757                                             Zimbabwe    ZW   ZWE 1961
## 16758                                             Zimbabwe    ZW   ZWE 1960
##       NY.GDP.MKTP.CD
## 1                 NA
## 2       1.089454e+12
## 3       9.341791e+11
## 4       1.009052e+12
## 5       1.016697e+12
## 6       1.030482e+12
## 7       8.898593e+11
## 8       9.231439e+11
## 9       1.003403e+12
## 10      9.826771e+11
## 11      9.720022e+11
## 12      9.642130e+11
## 13      8.603612e+11
## 14      7.190953e+11
## 15      7.081192e+11
## 16      6.608270e+11
## 17      5.757224e+11
## 18      5.122337e+11
## 19      4.388531e+11
## 20      3.526741e+11
## 21      2.648815e+11
## 22      2.588300e+11
## 23      2.839379e+11
## 24      2.621838e+11
## 25      2.658258e+11
## 26      2.821974e+11
## 27      2.684255e+11
## 28      2.696487e+11
## 29      2.401307e+11
## 30      2.365373e+11
## 31      2.382659e+11
## 32      2.734149e+11
## 33      2.532352e+11
## 34      2.175482e+11
## 35      2.041488e+11
## 36      1.861529e+11
## 37      1.525250e+11
## 38      1.363033e+11
## 39      1.601410e+11
## 40      1.749258e+11
## 41      1.672737e+11
## 42      1.743947e+11
## 43      1.706619e+11
## 44      1.346773e+11
## 45      1.153501e+11
## 46      1.034204e+11
## 47      9.112857e+10
## 48      9.165319e+10
## 49      8.606157e+10
## 50      6.960386e+10
## 51      5.351720e+10
## 52      4.948110e+10
## 53      4.486458e+10
## 54      4.183018e+10
## 55      3.652309e+10
## 56      3.351603e+10
## 57      3.224054e+10
## 58      2.968348e+10
## 59      2.611994e+10
## 60      2.821128e+10
## 61      2.370806e+10
## 62      2.180944e+10
## 63      2.129152e+10
## 64                NA
## 65      8.401873e+11
## 66      7.847997e+11
## 67      7.947191e+11
## 68      7.663597e+11
## 69      6.837480e+11
## 70      6.905454e+11
## 71      7.669580e+11
## 72      8.924979e+11
## 73      8.322169e+11
## 74      7.360399e+11
## 75      6.804560e+11
## 76      5.971293e+11
## 77      5.070295e+11
## 78      5.664795e+11
## 79      4.644256e+11
## 80      3.956559e+11
## 81      3.100942e+11
## 82      2.534719e+11
## 83      2.044709e+11
## 84      1.766058e+11
## 85      1.467798e+11
## 86      1.404103e+11
## 87      1.375210e+11
## 88      1.301068e+11
## 89      1.270639e+11
## 90      1.257630e+11
## 91      1.082213e+11
## 92      8.628174e+10
## 93      9.882637e+10
## 94      1.182823e+11
## 95      1.174571e+11
## 96      1.218021e+11
## 97      1.017688e+11
## 98      1.089435e+11
## 99      1.103218e+11
## 100     1.074975e+11
## 101     1.165073e+11
## 102     1.142627e+11
## 103     1.381152e+11
## 104     1.871637e+11
## 105     2.110035e+11
## 106     1.120313e+11
## 107     8.862840e+10
## 108     7.119971e+10
## 109     6.531501e+10
## 110     6.212939e+10
## 111     5.144473e+10
## 112     4.421448e+10
## 113     3.127382e+10
## 114     2.526495e+10
## 115     2.083282e+10
## 116     2.350461e+10
## 117     1.688209e+10
## 118     1.488035e+10
## 119     1.442604e+10
## 120     1.583259e+10
## 121     1.486223e+10
## 122     1.383837e+10
## 123     1.267633e+10
## 124     1.194319e+10
## 125     1.112789e+10
## 126     1.040414e+10
## 127               NA
## 128     2.862987e+12
## 129     2.491175e+12
## 130     2.818359e+12
## 131     2.800428e+12
## 132     2.598094e+12
## 133     2.516485e+12
## 134     2.538925e+12
## 135     2.895458e+12
## 136     2.843529e+12
## 137     2.787171e+12
## 138     2.541860e+12
## 139     2.327000e+12
## 140     1.978797e+12
## 141     2.253731e+12
## 142     1.790036e+12
## 143     1.538290e+12
## 144     1.297893e+12
## 145     1.056247e+12
## 146     8.878525e+11
## 147     8.031228e+11
## 148     7.985054e+11
## 149     8.160193e+11
## 150     7.128368e+11
## 151     6.444943e+11
## 152     6.623172e+11
## 153     6.141926e+11
## 154     5.560580e+11
## 155     5.077666e+11
## 156     4.827667e+11
## 157     4.738129e+11
## 158     4.715240e+11
## 159     6.440664e+11
## 160     4.558230e+11
## 161     4.249004e+11
## 162     4.406062e+11
## 163     4.069842e+11
## 164     4.194994e+11
## 165     4.258983e+11
## 166     4.184619e+11
## 167     4.441305e+11
## 168     4.740232e+11
## 169     4.598097e+11
## 170     3.386247e+11
## 171     2.491100e+11
## 172     2.269777e+11
## 173     1.965586e+11
## 174     1.579092e+11
## 175     1.428157e+11
## 176     7.532979e+10
## 177     5.938129e+10
## 178     4.984148e+10
## 179     4.314983e+10
## 180     3.816299e+10
## 181     3.501973e+10
## 182               NA
## 183               NA
## 184               NA
## 185               NA
## 186               NA
## 187               NA
## 188               NA
## 189               NA
## 190               NA
## 191     7.529530e+10
## 192     6.589681e+10
## 193     7.742842e+10
## 194     7.635061e+10
## 195     7.359018e+10
## 196     7.106169e+10
## 197     7.566929e+10
## 198     7.692176e+10
## 199     7.523210e+10
## 200     7.385272e+10
## 201     7.008317e+10
## 202     6.494347e+10
## 203     5.984058e+10
## 204     7.078139e+10
## 205     6.232893e+10
## 206     5.607428e+10
## 207     4.930710e+10
## 208     4.362565e+10
## 209     3.988763e+10
## 210     3.732441e+10
## 211     3.557581e+10
## 212     3.453383e+10
## 213     3.218692e+10
## 214     3.035403e+10
## 215     2.841623e+10
## 216     2.429163e+10
## 217     2.227086e+10
## 218     2.020520e+10
## 219     1.922415e+10
## 220     1.775035e+10
## 221     1.803278e+10
## 222     1.814909e+10
## 223     1.687290e+10
## 224     1.645986e+10
## 225     1.552175e+10
## 226     1.444128e+10
## 227     1.581475e+10
## 228     1.598283e+10
## 229     1.673558e+10
## 230     1.651783e+10
## 231     1.489032e+10
## 232     1.349527e+10
## 233     1.083542e+10
## 234     9.433651e+09
## 235     9.210483e+09
## 236     7.932123e+09
## 237     7.706761e+09
## 238     6.595605e+09
## 239     5.076286e+09
## 240     4.639299e+09
## 241     4.017607e+09
## 242     3.695258e+09
## 243     3.359707e+09
## 244     3.083591e+09
## 245     3.102515e+09
## 246     2.888648e+09
## 247     2.660946e+09
## 248     2.470265e+09
## 249     2.290314e+09
## 250     2.153896e+09
## 251     2.038302e+09
## 252     1.880306e+09
## 253               NA
## 254     1.901935e+12
## 255     1.664903e+12
## 256     1.675084e+12
## 257     1.649466e+12
## 258     1.461463e+12
## 259     1.316466e+12
## 260     1.292823e+12
## 261     1.462687e+12
## 262     1.416962e+12
## 263     1.359030e+12
## 264     1.455318e+12
## 265     1.318305e+12
## 266     1.291092e+12
## 267     1.533142e+12
## 268     1.266892e+12
## 269     1.002944e+12
## 270     8.868792e+11
## 271     7.632508e+11
## 272     6.341596e+11
## 273     5.284037e+11
## 274     4.688109e+11
## 275     4.282754e+11
## 276     4.349239e+11
## 277     4.487391e+11
## 278     4.100256e+11
## 279     4.160520e+11
## 280     3.932796e+11
## 281     3.108890e+11
## 282     2.740647e+11
## 283     2.599188e+11
## 284     2.426833e+11
## 285     2.562881e+11
## 286               NA
## 287               NA
## 288               NA
## 289               NA
## 290               NA
## 291               NA
## 292               NA
## 293               NA
## 294               NA
## 295               NA
## 296               NA
## 297               NA
## 298               NA
## 299               NA
## 300               NA
## 301               NA
## 302               NA
## 303               NA
## 304               NA
## 305               NA
## 306               NA
## 307               NA
## 308               NA
## 309               NA
## 310               NA
## 311               NA
## 312               NA
## 313               NA
## 314               NA
## 315               NA
## 316               NA
## 317     1.263730e+13
## 318     1.085137e+13
## 319     1.163800e+13
## 320     1.142192e+13
## 321     1.129505e+13
## 322     1.045822e+13
## 323     1.013174e+13
## 324     1.065144e+13
## 325     1.029765e+13
## 326     1.015631e+13
## 327     9.718645e+12
## 328     8.804981e+12
## 329     7.262191e+12
## 330     7.524110e+12
## 331     6.672114e+12
## 332     5.639084e+12
## 333     4.932003e+12
## 334     4.229725e+12
## 335     3.632857e+12
## 336     3.264190e+12
## 337     3.356995e+12
## 338     3.386374e+12
## 339     3.112672e+12
## 340     2.942819e+12
## 341     2.984858e+12
## 342     2.792367e+12
## 343     2.561134e+12
## 344     2.497989e+12
## 345     2.375983e+12
## 346     2.162736e+12
## 347     1.966540e+12
## 348     1.860045e+12
## 349     1.584646e+12
## 350     1.554594e+12
## 351     1.480761e+12
## 352     1.469791e+12
## 353     1.457343e+12
## 354     1.418373e+12
## 355     1.429346e+12
## 356     1.419017e+12
## 357     1.491257e+12
## 358     1.334651e+12
## 359     1.072707e+12
## 360     8.824410e+11
## 361     7.948760e+11
## 362     7.113722e+11
## 363     6.515882e+11
## 364     6.061663e+11
## 365     4.333221e+11
## 366     3.390947e+11
## 367     3.101801e+11
## 368     2.865162e+11
## 369     2.708357e+11
## 370     2.427236e+11
## 371     2.240331e+11
## 372     2.131702e+11
## 373     2.158836e+11
## 374     1.993081e+11
## 375     1.740027e+11
## 376     1.640166e+11
## 377     1.591787e+11
## 378     1.582070e+11
## 379               NA
## 380     3.091169e+13
## 381     2.712731e+13
## 382     2.702830e+13
## 383     2.648226e+13
## 384     2.432488e+13
## 385     2.277204e+13
## 386     2.199721e+13
## 387     2.208621e+13
## 388     2.141074e+13
## 389     2.117219e+13
## 390     1.979064e+13
## 391     1.706638e+13
## 392     1.462305e+13
## 393     1.421078e+13
## 394     1.232599e+13
## 395     1.103167e+13
## 396     1.040956e+13
## 397     9.756924e+12
## 398     8.699260e+12
## 399     7.911873e+12
## 400     7.788976e+12
## 401     8.374986e+12
## 402     7.740374e+12
## 403     6.929773e+12
## 404     7.744678e+12
## 405     8.101130e+12
## 406     8.407333e+12
## 407     7.403861e+12
## 408     6.536237e+12
## 409     5.844851e+12
## 410     5.349242e+12
## 411     4.738187e+12
## 412     4.536215e+12
## 413     4.354921e+12
## 414     3.619763e+12
## 415     3.082610e+12
## 416     2.359536e+12
## 417     2.235985e+12
## 418     2.087908e+12
## 419     1.962329e+12
## 420     2.001892e+12
## 421     1.815968e+12
## 422     1.679994e+12
## 423     1.546796e+12
## 424     1.225992e+12
## 425     1.028853e+12
## 426     9.358211e+11
## 427     8.547060e+11
## 428     7.418910e+11
## 429     5.630094e+11
## 430     4.537250e+11
## 431     4.088965e+11
## 432     3.468603e+11
## 433     3.012029e+11
## 434     2.731818e+11
## 435     2.521056e+11
## 436     2.256206e+11
## 437     2.027139e+11
## 438     1.767294e+11
## 439     1.583876e+11
## 440     1.551708e+11
## 441     1.546349e+11
## 442               NA
## 443     2.075179e+13
## 444     1.748692e+13
## 445     1.720786e+13
## 446     1.664044e+13
## 447     1.487728e+13
## 448     1.361247e+13
## 449     1.332759e+13
## 450     1.279883e+13
## 451     1.187114e+13
## 452     1.075917e+13
## 453     9.645534e+12
## 454     7.889502e+12
## 455     6.484665e+12
## 456     5.978961e+12
## 457     4.727901e+12
## 458     3.740827e+12
## 459     3.106989e+12
## 460     2.682432e+12
## 461     2.311828e+12
## 462     2.044358e+12
## 463     1.847475e+12
## 464     1.734674e+12
## 465     1.575693e+12
## 466     1.431784e+12
## 467     1.572049e+12
## 468     1.518470e+12
## 469     1.322130e+12
## 470     1.071596e+12
## 471     8.905214e+11
## 472     8.112680e+11
## 473     7.238419e+11
## 474     6.673669e+11
## 475     6.225302e+11
## 476     5.756275e+11
## 477     5.190690e+11
## 478     5.251587e+11
## 479     5.264578e+11
## 480     4.810219e+11
## 481     4.439483e+11
## 482     4.237918e+11
## 483     4.036521e+11
## 484     3.781287e+11
## 485     3.276345e+11
## 486     2.828230e+11
## 487     2.916518e+11
## 488     2.526918e+11
## 489     2.486653e+11
## 490     2.212542e+11
## 491     1.955844e+11
## 492     1.554459e+11
## 493     1.370647e+11
## 494     1.274873e+11
## 495     1.147958e+11
## 496     1.022790e+11
## 497     1.010068e+11
## 498     1.040775e+11
## 499     9.518059e+10
## 500     8.176281e+10
## 501     7.084394e+10
## 502     6.539659e+10
## 503     7.161440e+10
## 504     8.134696e+10
## 505               NA
## 506     2.072517e+13
## 507     1.746437e+13
## 508     1.718573e+13
## 509     1.661905e+13
## 510     1.485810e+13
## 511     1.359482e+13
## 512     1.331028e+13
## 513     1.278223e+13
## 514     1.185570e+13
## 515     1.074512e+13
## 516     9.632925e+12
## 517     7.879076e+12
## 518     6.475891e+12
## 519     5.970934e+12
## 520     4.721478e+12
## 521     3.735662e+12
## 522     3.102608e+12
## 523     2.678573e+12
## 524     2.308416e+12
## 525     2.041292e+12
## 526     1.844705e+12
## 527     1.732073e+12
## 528     1.573330e+12
## 529     1.429637e+12
## 530     1.569692e+12
## 531     1.516193e+12
## 532     1.320148e+12
## 533     1.069989e+12
## 534     8.891862e+11
## 535     8.100516e+11
## 536     7.227566e+11
## 537     6.663662e+11
## 538     6.215968e+11
## 539     5.747644e+11
## 540     5.182908e+11
## 541     5.243713e+11
## 542     5.256685e+11
## 543     4.803006e+11
## 544     4.432827e+11
## 545     4.231564e+11
## 546     4.030469e+11
## 547     3.775617e+11
## 548     3.271433e+11
## 549     2.823989e+11
## 550     2.912145e+11
## 551     2.523129e+11
## 552     2.482924e+11
## 553     2.209224e+11
## 554     1.952911e+11
## 555     1.552128e+11
## 556     1.368592e+11
## 557     1.272961e+11
## 558     1.146237e+11
## 559     1.021256e+11
## 560     1.008553e+11
## 561     1.039214e+11
## 562     9.503788e+10
## 563     8.164022e+10
## 564     7.073772e+10
## 565     6.529853e+10
## 566     7.150702e+10
## 567     8.122499e+10
## 568               NA
## 569     1.456328e+13
## 570     1.308548e+13
## 571     1.341817e+13
## 572     1.369819e+13
## 573     1.267972e+13
## 574     1.197370e+13
## 575     1.167551e+13
## 576     1.351007e+13
## 577     1.319630e+13
## 578     1.263878e+13
## 579     1.363789e+13
## 580     1.264175e+13
## 581     1.293851e+13
## 582     1.415826e+13
## 583     1.287911e+13
## 584     1.118404e+13
## 585     1.052353e+13
## 586     1.016040e+13
## 587     8.862331e+12
## 588     7.200157e+12
## 589     6.596587e+12
## 590     6.495755e+12
## 591     7.116213e+12
## 592     7.149215e+12
## 593     6.952190e+12
## 594     7.604358e+12
## 595     7.515453e+12
## 596     6.515618e+12
## 597     6.172472e+12
## 598     6.745618e+12
## 599     6.114123e+12
## 600     5.880688e+12
## 601     4.672689e+12
## 602     4.574521e+12
## 603     4.159431e+12
## 604     3.362907e+12
## 605     2.396185e+12
## 606     2.332403e+12
## 607     2.431611e+12
## 608     2.492495e+12
## 609     2.574375e+12
## 610     2.962181e+12
## 611     2.644834e+12
## 612     2.183344e+12
## 613     1.782978e+12
## 614     1.567496e+12
## 615     1.501999e+12
## 616     1.295370e+12
## 617     1.142237e+12
## 618     8.798665e+11
## 619     7.283507e+11
## 620     6.426182e+11
## 621     5.793329e+11
## 622     5.189917e+11
## 623     4.834186e+11
## 624     4.448828e+11
## 625     4.077406e+11
## 626     3.730242e+11
## 627     3.353418e+11
## 628     2.988191e+11
## 629     2.689652e+11
## 630     2.448330e+11
## 631               NA
## 632     2.508283e+13
## 633     2.213998e+13
## 634     2.290998e+13
## 635     2.319356e+13
## 636     2.165394e+13
## 637     2.041863e+13
## 638     2.048415e+13
## 639     2.377971e+13
## 640     2.345250e+13
## 641     2.244977e+13
## 642     2.330552e+13
## 643     2.102173e+13
## 644     2.054920e+13
## 645     2.336517e+13
## 646     2.122964e+13
## 647     1.816915e+13
## 648     1.678223e+13
## 649     1.577645e+13
## 650     1.353603e+13
## 651     1.113443e+13
## 652     1.016710e+13
## 653     1.006598e+13
## 654     1.067763e+13
## 655     1.079585e+13
## 656     1.052289e+13
## 657     1.109598e+13
## 658     1.087131e+13
## 659     9.412850e+12
## 660     9.002567e+12
## 661     9.800978e+12
## 662     9.141276e+12
## 663     8.860593e+12
## 664     7.242781e+12
## 665     7.147465e+12
## 666     6.421091e+12
## 667     5.196365e+12
## 668     3.807090e+12
## 669     3.678858e+12
## 670     3.827612e+12
## 671     3.945553e+12
## 672     4.094298e+12
## 673     4.600279e+12
## 674     4.061374e+12
## 675     3.319980e+12
## 676     2.720248e+12
## 677     2.400109e+12
## 678     2.309246e+12
## 679     1.976678e+12
## 680     1.749160e+12
## 681     1.377130e+12
## 682     1.149406e+12
## 683     1.019162e+12
## 684     9.213398e+11
## 685     8.329884e+11
## 686     7.963079e+11
## 687     7.394190e+11
## 688               NA
## 689               NA
## 690               NA
## 691               NA
## 692               NA
## 693               NA
## 694               NA
## 695     3.517373e+12
## 696     2.982627e+12
## 697     3.248640e+12
## 698     3.182536e+12
## 699     3.118194e+12
## 700     2.777730e+12
## 701     2.921396e+12
## 702     3.845830e+12
## 703     4.150229e+12
## 704     3.914702e+12
## 705     3.670007e+12
## 706     2.953063e+12
## 707     2.437793e+12
## 708     3.110418e+12
## 709     2.509490e+12
## 710     1.950079e+12
## 711     1.589617e+12
## 712     1.256036e+12
## 713     9.472237e+11
## 714     7.507115e+11
## 715     6.550665e+11
## 716     6.628738e+11
## 717     5.917875e+11
## 718     7.055167e+11
## 719     7.613698e+11
## 720     7.293511e+11
## 721     7.216983e+11
## 722     6.740525e+11
## 723     7.848181e+11
## 724     7.986868e+11
## 725     8.700416e+11
## 726     8.930262e+11
## 727     8.340879e+11
## 728     8.620813e+11
## 729               NA
## 730               NA
## 731               NA
## 732               NA
## 733               NA
## 734               NA
## 735               NA
## 736               NA
## 737               NA
## 738               NA
## 739               NA
## 740               NA
## 741               NA
## 742               NA
## 743               NA
## 744               NA
## 745               NA
## 746               NA
## 747               NA
## 748               NA
## 749               NA
## 750               NA
## 751               NA
## 752               NA
## 753               NA
## 754               NA
## 755               NA
## 756               NA
## 757               NA
## 758     4.550386e+12
## 759     3.891717e+12
## 760     4.158042e+12
## 761     4.076953e+12
## 762     3.909310e+12
## 763     3.485437e+12
## 764     3.626632e+12
## 765     4.643054e+12
## 766     4.914816e+12
## 767     4.646441e+12
## 768     4.450412e+12
## 769     3.659461e+12
## 770     3.114958e+12
## 771     3.929284e+12
## 772     3.173751e+12
## 773     2.467644e+12
## 774     2.040091e+12
## 775     1.628187e+12
## 776     1.257961e+12
## 777     1.023033e+12
## 778     9.097348e+11
## 779     8.942293e+11
## 780     8.215232e+11
## 781     9.476987e+11
## 782     9.803050e+11
## 783     9.504878e+11
## 784     9.240318e+11
## 785     8.347114e+11
## 786     9.281349e+11
## 787     9.391624e+11
## 788     1.006638e+12
## 789     1.020040e+12
## 790     9.598433e+11
## 791     9.886615e+11
## 792               NA
## 793               NA
## 794               NA
## 795               NA
## 796               NA
## 797               NA
## 798               NA
## 799               NA
## 800               NA
## 801               NA
## 802               NA
## 803               NA
## 804               NA
## 805               NA
## 806               NA
## 807               NA
## 808               NA
## 809               NA
## 810               NA
## 811               NA
## 812               NA
## 813               NA
## 814               NA
## 815               NA
## 816               NA
## 817               NA
## 818               NA
## 819               NA
## 820               NA
## 821     1.717742e+13
## 822     1.536944e+13
## 823     1.569340e+13
## 824     1.598083e+13
## 825     1.476492e+13
## 826     1.388901e+13
## 827     1.355251e+13
## 828     1.564973e+13
## 829     1.529449e+13
## 830     1.464212e+13
## 831     1.576558e+13
## 832     1.455788e+13
## 833     1.476398e+13
## 834     1.629781e+13
## 835     1.472885e+13
## 836     1.271394e+13
## 837     1.191087e+13
## 838     1.141908e+13
## 839     9.931941e+12
## 840     8.084072e+12
## 841     7.394076e+12
## 842     7.276322e+12
## 843     7.925737e+12
## 844     7.969673e+12
## 845     7.733629e+12
## 846     8.431211e+12
## 847     8.295694e+12
## 848     7.161811e+12
## 849     6.761057e+12
## 850     7.406227e+12
## 851     6.735958e+12
## 852     6.498416e+12
## 853     5.193624e+12
## 854     5.084244e+12
## 855     4.631211e+12
## 856     3.744010e+12
## 857     2.677638e+12
## 858     2.603373e+12
## 859     2.702046e+12
## 860     2.777353e+12
## 861     2.879959e+12
## 862     3.303153e+12
## 863     2.952813e+12
## 864     2.442675e+12
## 865     2.004883e+12
## 866     1.770039e+12
## 867     1.690861e+12
## 868     1.451738e+12
## 869     1.282009e+12
## 870     9.904202e+11
## 871     8.208059e+11
## 872     7.259249e+11
## 873               NA
## 874               NA
## 875               NA
## 876               NA
## 877               NA
## 878               NA
## 879               NA
## 880               NA
## 881               NA
## 882               NA
## 883               NA
## 884     1.799023e+12
## 885     1.680894e+12
## 886     1.804386e+12
## 887     1.739933e+12
## 888     1.654052e+12
## 889     1.562857e+12
## 890     1.656900e+12
## 891     2.076425e+12
## 892     1.956635e+12
## 893     1.885131e+12
## 894     1.682465e+12
## 895     1.788992e+12
## 896     1.511933e+12
## 897     1.635873e+12
## 898     1.291542e+12
## 899     1.060202e+12
## 900     8.561075e+11
## 901     6.809038e+11
## 902     5.396356e+11
## 903     5.147974e+11
## 904     5.233888e+11
## 905     5.257508e+11
## 906     4.522323e+11
## 907     4.196367e+11
## 908     4.238771e+11
## 909     3.740401e+11
## 910     3.618756e+11
## 911     3.142572e+11
## 912     3.263581e+11
## 913     3.476427e+11
## 914     3.812621e+11
## 915     5.513112e+11
## 916     3.812040e+11
## 917     3.837796e+11
## 918     3.662403e+11
## 919     3.553067e+11
## 920     3.663731e+11
## 921     3.587886e+11
## 922     3.968591e+11
## 923     4.653842e+11
## 924     4.859069e+11
## 925     3.491501e+11
## 926     2.791500e+11
## 927     2.209553e+11
## 928     2.006557e+11
## 929     1.823309e+11
## 930     1.548576e+11
## 931     1.378818e+11
## 932     9.280898e+10
## 933     7.571746e+10
## 934     6.616730e+10
## 935     6.523120e+10
## 936     5.344607e+10
## 937     4.793579e+10
## 938               NA
## 939               NA
## 940               NA
## 941               NA
## 942               NA
## 943               NA
## 944               NA
## 945               NA
## 946               NA
## 947     8.919015e+11
## 948     8.032365e+11
## 949     7.975718e+11
## 950     7.706731e+11
## 951     8.084194e+11
## 952     7.283127e+11
## 953     6.930827e+11
## 954     7.148584e+11
## 955     6.726394e+11
## 956     6.042707e+11
## 957     5.830816e+11
## 958     5.196949e+11
## 959     4.703178e+11
## 960     4.654798e+11
## 961     3.912173e+11
## 962     3.263080e+11
## 963     2.767497e+11
## 964     2.408146e+11
## 965     2.089426e+11
## 966     1.843481e+11
## 967     1.712463e+11
## 968     1.761539e+11
## 969     1.623764e+11
## 970     1.616102e+11
## 971     1.527341e+11
## 972     1.466675e+11
## 973     1.352988e+11
## 974     1.159105e+11
## 975     1.365102e+11
## 976     1.315544e+11
## 977     1.746330e+11
## 978     1.610428e+11
## 979     1.393324e+11
## 980     1.364826e+11
## 981     1.294710e+11
## 982     1.176341e+11
## 983     1.023878e+11
## 984     1.029355e+11
## 985     1.022343e+11
## 986     1.066937e+11
## 987     1.073928e+11
## 988     1.103620e+11
## 989     1.019786e+11
## 990     9.122715e+10
## 991     7.897185e+10
## 992     6.717259e+10
## 993     6.326648e+10
## 994     5.537780e+10
## 995     4.542843e+10
## 996     3.755925e+10
## 997     3.448505e+10
## 998     3.202661e+10
## 999     3.055494e+10
## 1000    2.749745e+10
## 1001    2.598490e+10
## 1002    2.652709e+10
## 1003    2.435999e+10
## 1004    2.085741e+10
## 1005    2.334738e+10
## 1006    1.935111e+10
## 1007    1.778051e+10
## 1008    1.733156e+10
## 1009              NA
## 1010    5.982967e+13
## 1011    5.387455e+13
## 1012    5.527293e+13
## 1013    5.479916e+13
## 1014    5.153813e+13
## 1015    4.927973e+13
## 1016    4.824643e+13
## 1017    5.111059e+13
## 1018    5.003467e+13
## 1019    4.942940e+13
## 1020    4.939815e+13
## 1021    4.575389e+13
## 1022    4.366413e+13
## 1023    4.661926e+13
## 1024    4.375200e+13
## 1025    3.995935e+13
## 1026    3.782945e+13
## 1027    3.576958e+13
## 1028    3.212331e+13
## 1029    2.865965e+13
## 1030    2.748771e+13
## 1031    2.776235e+13
## 1032    2.719324e+13
## 1033    2.588709e+13
## 1034    2.579044e+13
## 1035    2.623714e+13
## 1036    2.601329e+13
## 1037    2.342283e+13
## 1038    2.175897e+13
## 1039    2.159232e+13
## 1040    2.007417e+13
## 1041    1.898270e+13
## 1042    1.689760e+13
## 1043    1.614890e+13
## 1044    1.434343e+13
## 1045    1.237561e+13
## 1046    1.019230e+13
## 1047    9.706804e+12
## 1048    9.305580e+12
## 1049    9.012587e+12
## 1050    9.097109e+12
## 1051    8.961142e+12
## 1052    8.023022e+12
## 1053    6.939058e+12
## 1054    5.790906e+12
## 1055    5.113634e+12
## 1056    4.692779e+12
## 1057    4.205658e+12
## 1058    3.730069e+12
## 1059    3.082808e+12
## 1060    2.657638e+12
## 1061    2.393887e+12
## 1062    2.191150e+12
## 1063    1.991581e+12
## 1064    1.836531e+12
## 1065    1.711720e+12
## 1066    1.560360e+12
## 1067    1.436852e+12
## 1068    1.316378e+12
## 1069    1.221985e+12
## 1070    1.132019e+12
## 1071    1.069412e+12
## 1072              NA
## 1073    3.542267e+13
## 1074    2.998364e+13
## 1075    3.116165e+13
## 1076    3.050871e+13
## 1077    2.867562e+13
## 1078    2.597182e+13
## 1079    2.576904e+13
## 1080    2.751441e+13
## 1081    2.660796e+13
## 1082    2.521988e+13
## 1083    2.372914e+13
## 1084    2.004097e+13
## 1085    1.647989e+13
## 1086    1.699241e+13
## 1087    1.415916e+13
## 1088    1.139768e+13
## 1089    9.610045e+12
## 1090    8.037145e+12
## 1091    6.741689e+12
## 1092    5.996716e+12
## 1093    5.907464e+12
## 1094    5.834940e+12
## 1095    5.361137e+12
## 1096    5.505121e+12
## 1097    5.671264e+12
## 1098    5.348582e+12
## 1099    4.897209e+12
## 1100    4.312606e+12
## 1101    3.901572e+12
## 1102    3.631314e+12
## 1103    3.451859e+12
## 1104    3.564058e+12
## 1105    3.097994e+12
## 1106    2.987574e+12
## 1107    2.773655e+12
## 1108    2.714754e+12
## 1109    2.614024e+12
## 1110    2.510549e+12
## 1111    2.467726e+12
## 1112    2.506732e+12
## 1113    2.532497e+12
## 1114    2.347359e+12
## 1115    1.983106e+12
## 1116    1.659092e+12
## 1117    1.537317e+12
## 1118    1.357122e+12
## 1119    1.252846e+12
## 1120    1.159891e+12
## 1121    9.204244e+11
## 1122    7.104941e+11
## 1123    6.314028e+11
## 1124    5.782202e+11
## 1125    5.319099e+11
## 1126    4.764632e+11
## 1127    4.510912e+11
## 1128    4.393680e+11
## 1129    4.255783e+11
## 1130    3.880877e+11
## 1131    3.428540e+11
## 1132    3.192014e+11
## 1133    3.113895e+11
## 1134    3.255399e+11
## 1135              NA
## 1136    3.806285e+13
## 1137    3.240440e+13
## 1138    3.360018e+13
## 1139    3.289174e+13
## 1140    3.097303e+13
## 1141    2.816665e+13
## 1142    2.791104e+13
## 1143    2.970678e+13
## 1144    2.864082e+13
## 1145    2.708995e+13
## 1146    2.550582e+13
## 1147    2.178644e+13
## 1148    1.799076e+13
## 1149    1.850953e+13
## 1150    1.543017e+13
## 1151    1.248366e+13
## 1152    1.051878e+13
## 1153    8.813665e+12
## 1154    7.403034e+12
## 1155    6.590213e+12
## 1156    6.460238e+12
## 1157    6.386334e+12
## 1158    5.858602e+12
## 1159    5.988549e+12
## 1160    6.145158e+12
## 1161    5.803276e+12
## 1162    5.302240e+12
## 1163    4.664046e+12
## 1164    4.252990e+12
## 1165    3.991777e+12
## 1166    3.846851e+12
## 1167    3.941425e+12
## 1168    3.429186e+12
## 1169    3.313999e+12
## 1170    3.106547e+12
## 1171    3.021070e+12
## 1172    2.917807e+12
## 1173    2.808933e+12
## 1174    2.793080e+12
## 1175    2.900741e+12
## 1176    2.952559e+12
## 1177    2.624778e+12
## 1178    2.215740e+12
## 1179    1.858917e+12
## 1180    1.714429e+12
## 1181    1.519934e+12
## 1182    1.410696e+12
## 1183    1.290303e+12
## 1184    1.016187e+12
## 1185    7.955981e+11
## 1186    7.137000e+11
## 1187    6.611332e+11
## 1188    6.026781e+11
## 1189    5.395112e+11
## 1190    5.111362e+11
## 1191    4.989883e+11
## 1192    4.802004e+11
## 1193    4.361605e+11
## 1194    3.932373e+11
## 1195    3.641689e+11
## 1196    3.526747e+11
## 1197    3.635480e+11
## 1198              NA
## 1199    1.096478e+12
## 1200    1.002075e+12
## 1201    1.042643e+12
## 1202    1.048387e+12
## 1203    9.597998e+11
## 1204    9.771352e+11
## 1205    1.017692e+12
## 1206    1.076798e+12
## 1207    9.894334e+11
## 1208    9.090224e+11
## 1209    8.237336e+11
## 1210    7.154337e+11
## 1211    6.068111e+11
## 1212    6.398644e+11
## 1213    5.411281e+11
## 1214    4.692955e+11
## 1215    3.727425e+11
## 1216    3.115224e+11
## 1217    2.563115e+11
## 1218    2.277723e+11
## 1219    2.051860e+11
## 1220    2.067368e+11
## 1221    1.815542e+11
## 1222    1.738211e+11
## 1223    1.760722e+11
## 1224    1.724498e+11
## 1225    1.562540e+11
## 1226    1.333007e+11
## 1227    1.327060e+11
## 1228    1.476123e+11
## 1229    1.469203e+11
## 1230    1.462992e+11
## 1231    1.326454e+11
## 1232    1.376205e+11
## 1233    1.340412e+11
## 1234    1.310181e+11
## 1235    1.453172e+11
## 1236    1.446565e+11
## 1237    1.685647e+11
## 1238    2.221345e+11
## 1239    2.430406e+11
## 1240    1.262630e+11
## 1241    9.842681e+10
## 1242    8.018338e+10
## 1243    7.375644e+10
## 1244    6.995945e+10
## 1245    5.797130e+10
## 1246    5.039643e+10
## 1247    3.496022e+10
## 1248    3.277061e+10
## 1249    2.918519e+10
## 1250    3.142447e+10
## 1251    2.286064e+10
## 1252    1.998231e+10
## 1253    1.893035e+10
## 1254    1.883357e+10
## 1255    1.731412e+10
## 1256    1.594549e+10
## 1257    1.461189e+10
## 1258    1.380605e+10
## 1259    1.291017e+10
## 1260    1.206362e+10
## 1261              NA
## 1262    1.544392e+12
## 1263    1.421149e+12
## 1264    1.397069e+12
## 1265    1.334908e+12
## 1266    1.338336e+12
## 1267    1.217295e+12
## 1268    1.123192e+12
## 1269    1.115598e+12
## 1270    1.043391e+12
## 1271    9.608578e+11
## 1272    9.530653e+11
## 1273    1.031027e+12
## 1274    9.050960e+11
## 1275    8.781070e+11
## 1276    7.305474e+11
## 1277    6.179409e+11
## 1278    5.374962e+11
## 1279    4.666945e+11
## 1280    4.068527e+11
## 1281    3.674854e+11
## 1282    3.488940e+11
## 1283    3.459880e+11
## 1284    3.171076e+11
## 1285    3.102611e+11
## 1286    2.976695e+11
## 1287    2.821505e+11
## 1288    2.483145e+11
## 1289    2.177380e+11
## 1290    2.189024e+11
## 1291    2.126677e+11
## 1292    2.490688e+11
## 1293    2.311306e+11
## 1294    1.987285e+11
## 1295    1.893172e+11
## 1296    1.964031e+11
## 1297    1.753357e+11
## 1298    1.561632e+11
## 1299    1.503744e+11
## 1300    1.478000e+11
## 1301    1.515791e+11
## 1302    1.525628e+11
## 1303    1.494935e+11
## 1304    1.339576e+11
## 1305    1.192222e+11
## 1306    1.037667e+11
## 1307    9.204472e+10
## 1308    9.923466e+10
## 1309    8.125056e+10
## 1310    6.310237e+10
## 1311    5.236352e+10
## 1312    5.247232e+10
## 1313    4.963819e+10
## 1314    4.742564e+10
## 1315    4.272339e+10
## 1316    4.075267e+10
## 1317    4.026075e+10
## 1318    3.725406e+10
## 1319    3.228242e+10
## 1320    3.487571e+10
## 1321    3.053919e+10
## 1322    2.836964e+10
## 1323    2.710974e+10
## 1324              NA
## 1325    2.637762e+12
## 1326    2.420222e+12
## 1327    2.437674e+12
## 1328    2.382176e+12
## 1329    2.296411e+12
## 1330    2.193549e+12
## 1331    2.140838e+12
## 1332    2.192414e+12
## 1333    2.032824e+12
## 1334    1.869873e+12
## 1335    1.776541e+12
## 1336    1.745821e+12
## 1337    1.511302e+12
## 1338    1.517489e+12
## 1339    1.271409e+12
## 1340    1.087188e+12
## 1341    9.096540e+11
## 1342    7.775236e+11
## 1343    6.623261e+11
## 1344    5.944436e+11
## 1345    5.530633e+11
## 1346    5.517888e+11
## 1347    4.976239e+11
## 1348    4.829800e+11
## 1349    4.728956e+11
## 1350    4.539247e+11
## 1351    4.040757e+11
## 1352    3.505223e+11
## 1353    3.510595e+11
## 1354    3.603135e+11
## 1355    3.952044e+11
## 1356    3.771163e+11
## 1357    3.311858e+11
## 1358    3.268923e+11
## 1359    3.301370e+11
## 1360    3.064330e+11
## 1361    3.026748e+11
## 1362    2.963664e+11
## 1363    3.189008e+11
## 1364    3.785987e+11
## 1365    4.014302e+11
## 1366    2.749145e+11
## 1367    2.307648e+11
## 1368    1.975233e+11
## 1369    1.761207e+11
## 1370    1.610250e+11
## 1371    1.551310e+11
## 1372    1.301200e+11
## 1373    9.665488e+10
## 1374    8.416554e+10
## 1375    8.049300e+10
## 1376    8.016647e+10
## 1377    6.903415e+10
## 1378    6.154422e+10
## 1379    5.856799e+10
## 1380    5.800080e+10
## 1381    5.354932e+10
## 1382    4.740349e+10
## 1383    4.843466e+10
## 1384    4.348599e+10
## 1385    4.048686e+10
## 1386    3.839227e+10
## 1387              NA
## 1388    2.662214e+13
## 1389    2.249345e+13
## 1390    2.304700e+13
## 1391    2.262081e+13
## 1392    2.062931e+13
## 1393    1.859348e+13
## 1394    1.854556e+13
## 1395    1.977103e+13
## 1396    1.902934e+13
## 1397    1.766930e+13
## 1398    1.650843e+13
## 1399    1.354447e+13
## 1400    1.125954e+13
## 1401    1.165288e+13
## 1402    9.374124e+12
## 1403    7.440932e+12
## 1404    6.166283e+12
## 1405    5.110655e+12
## 1406    4.251868e+12
## 1407    3.731880e+12
## 1408    3.520568e+12
## 1409    3.405977e+12
## 1410    3.101524e+12
## 1411    3.356331e+12
## 1412    3.486535e+12
## 1413    3.329622e+12
## 1414    3.018403e+12
## 1415    2.435434e+12
## 1416    2.095551e+12
## 1417    2.012753e+12
## 1418    1.976554e+12
## 1419    1.962251e+12
## 1420    1.825836e+12
## 1421    1.725810e+12
## 1422    1.580836e+12
## 1423    1.501849e+12
## 1424    1.416215e+12
## 1425    1.365913e+12
## 1426    1.307975e+12
## 1427    1.423393e+12
## 1428    1.399394e+12
## 1429    1.333749e+12
## 1430    1.166463e+12
## 1431    9.807321e+11
## 1432    9.425194e+11
## 1433    8.125642e+11
## 1434    7.537674e+11
## 1435    6.852901e+11
## 1436    5.825553e+11
## 1437    4.520215e+11
## 1438    3.934482e+11
## 1439    3.539226e+11
## 1440    3.110161e+11
## 1441    2.788909e+11
## 1442    2.740257e+11
## 1443    2.726223e+11
## 1444    2.447412e+11
## 1445    2.177918e+11
## 1446    1.983687e+11
## 1447    1.812281e+11
## 1448    1.779083e+11
## 1449    1.920066e+11
## 1450              NA
## 1451    5.454429e+12
## 1452    4.742372e+12
## 1453    5.618711e+12
## 1454    5.702983e+12
## 1455    5.831864e+12
## 1456    5.249605e+12
## 1457    5.372086e+12
## 1458    6.428177e+12
## 1459    6.303809e+12
## 1460    6.152225e+12
## 1461    6.086409e+12
## 1462    5.347631e+12
## 1463    4.313266e+12
## 1464    4.590250e+12
## 1465    3.948635e+12
## 1466    3.351391e+12
## 1467    2.863014e+12
## 1468    2.368134e+12
## 1469    2.055539e+12
## 1470    2.014355e+12
## 1471    2.243459e+12
## 1472    2.292621e+12
## 1473    2.076051e+12
## 1474    2.300579e+12
## 1475    2.280276e+12
## 1476    2.079828e+12
## 1477    1.921634e+12
## 1478    1.769160e+12
## 1479    1.507044e+12
## 1480    1.298731e+12
## 1481    1.189447e+12
## 1482    1.107820e+12
## 1483    9.286034e+11
## 1484    8.510430e+11
## 1485    7.617675e+11
## 1486    7.229043e+11
## 1487    7.227277e+11
## 1488    7.264991e+11
## 1489    7.263349e+11
## 1490    8.291427e+11
## 1491    8.944109e+11
## 1492    7.828171e+11
## 1493    6.442009e+11
## 1494    5.429316e+11
## 1495    4.788376e+11
## 1496    4.360063e+11
## 1497    3.975434e+11
## 1498    3.790499e+11
## 1499    2.923946e+11
## 1500    2.198289e+11
## 1501    1.954508e+11
## 1502    1.752253e+11
## 1503    1.606537e+11
## 1504    1.437830e+11
## 1505    1.339582e+11
## 1506    1.312878e+11
## 1507    1.192459e+11
## 1508    1.109274e+11
## 1509    1.000559e+11
## 1510    9.813312e+10
## 1511    8.956449e+10
## 1512    8.450580e+10
## 1513              NA
## 1514    4.585104e+12
## 1515    3.997651e+12
## 1516    4.773980e+12
## 1517    4.841460e+12
## 1518    4.985625e+12
## 1519    4.470023e+12
## 1520    4.599491e+12
## 1521    5.411098e+12
## 1522    5.386387e+12
## 1523    5.248290e+12
## 1524    5.275940e+12
## 1525    4.513754e+12
## 1526    3.605394e+12
## 1527    3.883194e+12
## 1528    3.356041e+12
## 1529    2.839422e+12
## 1530    2.432622e+12
## 1531    2.008591e+12
## 1532    1.759684e+12
## 1533    1.720599e+12
## 1534    1.914116e+12
## 1535    1.968833e+12
## 1536    1.779891e+12
## 1537    2.008546e+12
## 1538    1.999607e+12
## 1539    1.832597e+12
## 1540    1.678399e+12
## 1541    1.567648e+12
## 1542    1.319249e+12
## 1543    1.119422e+12
## 1544    1.030803e+12
## 1545    9.636585e+11
## 1546    7.982460e+11
## 1547    7.105798e+11
## 1548    6.400309e+11
## 1549    5.964058e+11
## 1550    5.967465e+11
## 1551    6.019088e+11
## 1552    5.958100e+11
## 1553    6.894576e+11
## 1554    7.475116e+11
## 1555    6.531016e+11
## 1556    5.409367e+11
## 1557    4.607497e+11
## 1558    4.052519e+11
## 1559    3.733597e+11
## 1560    3.429399e+11
## 1561    3.179692e+11
## 1562    2.420166e+11
## 1563    1.808885e+11
## 1564    1.590267e+11
## 1565    1.436659e+11
## 1566    1.321056e+11
## 1567    1.179181e+11
## 1568    1.096088e+11
## 1569    1.077216e+11
## 1570    9.744112e+10
## 1571    8.986140e+10
## 1572    7.836034e+10
## 1573    7.778448e+10
## 1574    7.154495e+10
## 1575    6.833586e+10
## 1576              NA
## 1577    5.183127e+12
## 1578    4.494456e+12
## 1579    5.367417e+12
## 1580    5.461290e+12
## 1581    5.592359e+12
## 1582    5.015170e+12
## 1583    5.143813e+12
## 1584    6.211056e+12
## 1585    6.091229e+12
## 1586    5.944453e+12
## 1587    5.884712e+12
## 1588    5.158299e+12
## 1589    4.129066e+12
## 1590    4.408050e+12
## 1591    3.773058e+12
## 1592    3.185797e+12
## 1593    2.709093e+12
## 1594    2.225327e+12
## 1595    1.922282e+12
## 1596    1.887102e+12
## 1597    2.120339e+12
## 1598    2.178188e+12
## 1599    1.969195e+12
## 1600    2.200252e+12
## 1601    2.187254e+12
## 1602    1.993811e+12
## 1603    1.833915e+12
## 1604    1.687299e+12
## 1605    1.435497e+12
## 1606    1.230803e+12
## 1607    1.122089e+12
## 1608    1.038203e+12
## 1609    8.639463e+11
## 1610    7.885720e+11
## 1611    7.045793e+11
## 1612    6.693554e+11
## 1613    6.724958e+11
## 1614    6.766000e+11
## 1615    6.805761e+11
## 1616    7.849061e+11
## 1617    8.516902e+11
## 1618    7.425548e+11
## 1619    6.071211e+11
## 1620    5.100625e+11
## 1621    4.513308e+11
## 1622    4.101830e+11
## 1623    3.735072e+11
## 1624    3.572879e+11
## 1625    2.731592e+11
## 1626    2.035891e+11
## 1627    1.812626e+11
## 1628    1.630152e+11
## 1629    1.495799e+11
## 1630    1.339505e+11
## 1631    1.249617e+11
## 1632    1.228050e+11
## 1633    1.115478e+11
## 1634    1.038906e+11
## 1635    9.369633e+10
## 1636    9.211380e+10
## 1637    8.414007e+10
## 1638    7.949496e+10
## 1639              NA
## 1640    1.280908e+12
## 1641    1.176577e+12
## 1642    1.153041e+12
## 1643    1.098537e+12
## 1644    1.114130e+12
## 1645    9.965149e+11
## 1646    9.491984e+11
## 1647    9.809697e+11
## 1648    9.122262e+11
## 1649    8.368330e+11
## 1650    7.964963e+11
## 1651    6.856263e+11
## 1652    6.035454e+11
## 1653    5.997068e+11
## 1654    4.914258e+11
## 1655    4.094145e+11
## 1656    3.530612e+11
## 1657    2.986228e+11
## 1658    2.582721e+11
## 1659    2.301527e+11
## 1660    2.121605e+11
## 1661    2.171253e+11
## 1662    1.892410e+11
## 1663    1.843376e+11
## 1664    1.812060e+11
## 1665    1.722742e+11
## 1666    1.562468e+11
## 1667    1.364245e+11
## 1668    1.474558e+11
## 1669    1.471819e+11
## 1670    1.951730e+11
## 1671    1.819865e+11
## 1672    1.568271e+11
## 1673    1.451713e+11
## 1674    1.318484e+11
## 1675    1.198868e+11
## 1676    1.114505e+11
## 1677    1.063658e+11
## 1678    1.064766e+11
## 1679    1.117319e+11
## 1680    1.130225e+11
## 1681    1.134370e+11
## 1682              NA
## 1683              NA
## 1684              NA
## 1685              NA
## 1686              NA
## 1687              NA
## 1688              NA
## 1689              NA
## 1690              NA
## 1691              NA
## 1692              NA
## 1693              NA
## 1694              NA
## 1695              NA
## 1696              NA
## 1697              NA
## 1698              NA
## 1699              NA
## 1700              NA
## 1701              NA
## 1702              NA
## 1703    3.637059e+13
## 1704    3.094839e+13
## 1705    3.207977e+13
## 1706    3.136991e+13
## 1707    2.959095e+13
## 1708    2.692549e+13
## 1709    2.668040e+13
## 1710    2.813972e+13
## 1711    2.720054e+13
## 1712    2.568924e+13
## 1713    2.414183e+13
## 1714    2.045704e+13
## 1715    1.680790e+13
## 1716    1.718298e+13
## 1717    1.436283e+13
## 1718    1.163156e+13
## 1719    9.802488e+12
## 1720    8.234094e+12
## 1721    6.937796e+12
## 1722    6.158591e+12
## 1723    6.006919e+12
## 1724    5.953473e+12
## 1725    5.447028e+12
## 1726    5.561949e+12
## 1727    5.745720e+12
## 1728    5.427591e+12
## 1729    4.950534e+12
## 1730    4.389187e+12
## 1731    4.001227e+12
## 1732    3.748477e+12
## 1733    3.629520e+12
## 1734    3.750910e+12
## 1735    3.254191e+12
## 1736    3.129896e+12
## 1737    2.944562e+12
## 1738    2.850406e+12
## 1739    2.746155e+12
## 1740    2.641393e+12
## 1741    2.612767e+12
## 1742    2.703789e+12
## 1743    2.742897e+12
## 1744    2.442523e+12
## 1745    2.074307e+12
## 1746    1.748564e+12
## 1747    1.611876e+12
## 1748    1.434391e+12
## 1749    1.336106e+12
## 1750    1.206945e+12
## 1751    9.502973e+11
## 1752    7.462470e+11
## 1753    6.669435e+11
## 1754    6.194853e+11
## 1755    5.648736e+11
## 1756    5.051601e+11
## 1757    4.784807e+11
## 1758    4.669375e+11
## 1759    4.502621e+11
## 1760    4.071843e+11
## 1761    3.635354e+11
## 1762    3.361842e+11
## 1763    3.275583e+11
## 1764    3.404949e+11
## 1765              NA
## 1766    5.629778e+11
## 1767    5.087402e+11
## 1768    5.041296e+11
## 1769    4.958764e+11
## 1770    5.492678e+11
## 1771    4.899793e+11
## 1772    4.670567e+11
## 1773    4.690625e+11
## 1774    4.393501e+11
## 1775    4.052922e+11
## 1776    3.974590e+11
## 1777    3.571525e+11
## 1778    3.197040e+11
## 1779    3.088496e+11
## 1780    2.624399e+11
## 1781    2.139850e+11
## 1782    1.826115e+11
## 1783    1.542587e+11
## 1784    1.324244e+11
## 1785    1.192285e+11
## 1786    1.106392e+11
## 1787    1.174505e+11
## 1788    9.797319e+10
## 1789    9.868404e+10
## 1790    1.009782e+11
## 1791    9.609882e+10
## 1792    9.382024e+10
## 1793    8.261317e+10
## 1794    9.414623e+10
## 1795    9.268613e+10
## 1796    1.445565e+11
## 1797    1.315883e+11
## 1798    1.105767e+11
## 1799    1.017543e+11
## 1800    9.090085e+10
## 1801    8.224380e+10
## 1802    7.233131e+10
## 1803    7.444306e+10
## 1804    7.816149e+10
## 1805    8.361321e+10
## 1806    8.244718e+10
## 1807    8.383991e+10
## 1808    7.815233e+10
## 1809    7.043273e+10
## 1810    6.406927e+10
## 1811    5.582492e+10
## 1812    5.364035e+10
## 1813    4.741186e+10
## 1814    3.931982e+10
## 1815    3.245163e+10
## 1816    2.933142e+10
## 1817    2.704458e+10
## 1818    2.602777e+10
## 1819    2.304607e+10
## 1820    2.185253e+10
## 1821    2.231664e+10
## 1822    2.049023e+10
## 1823    1.748029e+10
## 1824    2.108504e+10
## 1825    1.707114e+10
## 1826    1.564605e+10
## 1827    1.550433e+10
## 1828              NA
## 1829    8.742535e+12
## 1830    7.617243e+12
## 1831    7.908593e+12
## 1832    7.599756e+12
## 1833    7.412210e+12
## 1834    6.899234e+12
## 1835    6.546022e+12
## 1836    6.722603e+12
## 1837    6.446887e+12
## 1838    6.339639e+12
## 1839    6.042962e+12
## 1840    5.254415e+12
## 1841    4.295996e+12
## 1842    4.219890e+12
## 1843    3.728928e+12
## 1844    3.037465e+12
## 1845    2.564029e+12
## 1846    2.209428e+12
## 1847    1.907224e+12
## 1848    1.661285e+12
## 1849    1.552592e+12
## 1850    1.520347e+12
## 1851    1.445505e+12
## 1852    1.338626e+12
## 1853    1.465410e+12
## 1854    1.432365e+12
## 1855    1.280790e+12
## 1856    1.128028e+12
## 1857    1.046852e+12
## 1858    1.039039e+12
## 1859    9.892602e+11
## 1860    1.047873e+12
## 1861    9.721138e+11
## 1862    9.726350e+11
## 1863    9.553295e+11
## 1864    9.759951e+11
## 1865    9.172454e+11
## 1866    8.607847e+11
## 1867    8.713565e+11
## 1868    8.809454e+11
## 1869    8.555439e+11
## 1870    7.109109e+11
## 1871    5.854554e+11
## 1872    5.092768e+11
## 1873    4.618443e+11
## 1874    4.010494e+11
## 1875    3.602332e+11
## 1876    3.235450e+11
## 1877    2.425869e+11
## 1878    1.971021e+11
## 1879    1.810692e+11
## 1880    1.716231e+11
## 1881    1.548703e+11
## 1882    1.394511e+11
## 1883    1.294487e+11
## 1884    1.211448e+11
## 1885    1.320427e+11
## 1886    1.224766e+11
## 1887    1.090779e+11
## 1888    9.797892e+10
## 1889    9.642714e+10
## 1890    9.105170e+10
## 1891              NA
## 1892    3.679844e+12
## 1893    3.115703e+12
## 1894    3.472047e+12
## 1895    3.477249e+12
## 1896    3.313255e+12
## 1897    3.192322e+12
## 1898    3.164191e+12
## 1899    3.592212e+12
## 1900    3.565646e+12
## 1901    3.627526e+12
## 1902    3.354142e+12
## 1903    2.976774e+12
## 1904    2.548739e+12
## 1905    2.821107e+12
## 1906    2.264432e+12
## 1907    1.917679e+12
## 1908    1.636975e+12
## 1909    1.361038e+12
## 1910    1.152804e+12
## 1911    1.039871e+12
## 1912    1.045249e+12
## 1913    1.050269e+12
## 1914    9.375655e+11
## 1915    8.640960e+11
## 1916    8.836341e+11
## 1917    8.401531e+11
## 1918    7.436165e+11
## 1919    6.598013e+11
## 1920    6.254816e+11
## 1921    6.161151e+11
## 1922    5.638548e+11
## 1923    8.056001e+11
## 1924    6.094782e+11
## 1925    5.869146e+11
## 1926    6.191928e+11
## 1927    6.724614e+11
## 1928    6.546997e+11
## 1929    6.380636e+11
## 1930    6.257124e+11
## 1931    6.181544e+11
## 1932    6.190665e+11
## 1933    5.978972e+11
## 1934    4.616619e+11
## 1935    3.516846e+11
## 1936    3.294304e+11
## 1937    2.833388e+11
## 1938    2.241327e+11
## 1939    2.027031e+11
## 1940    1.085394e+11
## 1941    8.015360e+10
## 1942    6.616710e+10
## 1943    5.590822e+10
## 1944    4.945272e+10
## 1945    4.468550e+10
## 1946              NA
## 1947              NA
## 1948              NA
## 1949              NA
## 1950              NA
## 1951              NA
## 1952              NA
## 1953              NA
## 1954              NA
## 1955    1.493752e+12
## 1956    1.274090e+12
## 1957    1.393572e+12
## 1958    1.390805e+12
## 1959    1.464280e+12
## 1960    1.475844e+12
## 1961    1.439071e+12
## 1962    1.600857e+12
## 1963    1.615132e+12
## 1964    1.756134e+12
## 1965    1.627688e+12
## 1966    1.580131e+12
## 1967    1.370339e+12
## 1968    1.406933e+12
## 1969    1.140406e+12
## 1970    9.350623e+11
## 1971    8.020269e+11
## 1972    6.792946e+11
## 1973    5.717417e+11
## 1974    5.234575e+11
## 1975    5.379545e+11
## 1976    5.320141e+11
## 1977    5.015935e+11
## 1978    4.612551e+11
## 1979    4.524102e+11
## 1980    4.278956e+11
## 1981    3.711942e+11
## 1982    3.185432e+11
## 1983    2.971155e+11
## 1984    2.893711e+11
## 1985    2.627709e+11
## 1986    5.071400e+11
## 1987    3.604885e+11
## 1988    3.584779e+11
## 1989    3.904834e+11
## 1990    4.465088e+11
## 1991    3.973223e+11
## 1992    3.644171e+11
## 1993    3.442060e+11
## 1994    3.062795e+11
## 1995    2.670351e+11
## 1996    2.736289e+11
## 1997    2.284968e+11
## 1998    1.831922e+11
## 1999    1.704391e+11
## 2000    1.472729e+11
## 2001    1.193113e+11
## 2002    1.025376e+11
## 2003    6.726357e+10
## 2004    5.067095e+10
## 2005    4.246589e+10
## 2006    3.704138e+10
## 2007    3.279605e+10
## 2008    2.955995e+10
## 2009    2.686845e+10
## 2010    2.481859e+10
## 2011    2.381056e+10
## 2012              NA
## 2013              NA
## 2014              NA
## 2015              NA
## 2016              NA
## 2017              NA
## 2018    1.475708e+12
## 2019    1.258549e+12
## 2020    1.376425e+12
## 2021    1.374528e+12
## 2022    1.448152e+12
## 2023    1.460439e+12
## 2024    1.425099e+12
## 2025    1.586867e+12
## 2026    1.601617e+12
## 2027    1.743926e+12
## 2028    1.616502e+12
## 2029    1.570450e+12
## 2030    1.362254e+12
## 2031    1.399622e+12
## 2032    1.134591e+12
## 2033    9.297140e+11
## 2034    7.969012e+11
## 2035    6.746915e+11
## 2036    5.677737e+11
## 2037    5.199017e+11
## 2038    5.339508e+11
## 2039    5.277005e+11
## 2040    4.973223e+11
## 2041    4.571873e+11
## 2042    4.486504e+11
## 2043    4.244860e+11
## 2044    3.679114e+11
## 2045    3.156999e+11
## 2046    2.944635e+11
## 2047    2.867882e+11
## 2048    2.604254e+11
## 2049    5.026133e+11
## 2050    3.572708e+11
## 2051    3.552782e+11
## 2052    3.869979e+11
## 2053    4.425233e+11
## 2054    3.937758e+11
## 2055    3.611643e+11
## 2056    3.411336e+11
## 2057    3.035457e+11
## 2058    2.646516e+11
## 2059    2.711865e+11
## 2060    2.264572e+11
## 2061    1.815571e+11
## 2062    1.689178e+11
## 2063    1.459584e+11
## 2064    1.182464e+11
## 2065    1.016224e+11
## 2066    6.666318e+10
## 2067    5.021867e+10
## 2068    4.208685e+10
## 2069    3.671075e+10
## 2070    3.250332e+10
## 2071    2.929610e+10
## 2072    2.662862e+10
## 2073    2.459706e+10
## 2074    2.359803e+10
## 2075              NA
## 2076              NA
## 2077              NA
## 2078              NA
## 2079              NA
## 2080              NA
## 2081    3.584514e+13
## 2082    3.046860e+13
## 2083    3.159034e+13
## 2084    3.090426e+13
## 2085    2.905705e+13
## 2086    2.644906e+13
## 2087    2.620956e+13
## 2088    2.766221e+13
## 2089    2.675352e+13
## 2090    2.525443e+13
## 2091    2.369052e+13
## 2092    1.985875e+13
## 2093    1.627917e+13
## 2094    1.666336e+13
## 2095    1.393002e+13
## 2096    1.127158e+13
## 2097    9.495021e+12
## 2098    7.976988e+12
## 2099    6.719127e+12
## 2100    5.959303e+12
## 2101    5.820256e+12
## 2102    5.767244e+12
## 2103    5.286624e+12
## 2104    5.403542e+12
## 2105    5.589652e+12
## 2106    5.282574e+12
## 2107    4.819065e+12
## 2108    4.272388e+12
## 2109    3.884185e+12
## 2110    3.636890e+12
## 2111    3.481130e+12
## 2112    3.617384e+12
## 2113    3.144260e+12
## 2114    3.029629e+12
## 2115    2.833271e+12
## 2116    2.755636e+12
## 2117    2.663885e+12
## 2118    2.559428e+12
## 2119    2.529134e+12
## 2120    2.617466e+12
## 2121    2.658380e+12
## 2122    2.359821e+12
## 2123    1.998047e+12
## 2124    1.679615e+12
## 2125    1.550585e+12
## 2126    1.381647e+12
## 2127    1.286334e+12
## 2128    1.163469e+12
## 2129    9.155842e+11
## 2130    7.171739e+11
## 2131    6.403136e+11
## 2132    5.950569e+11
## 2133    5.411943e+11
## 2134    4.844577e+11
## 2135    4.589267e+11
## 2136    4.468828e+11
## 2137    4.320303e+11
## 2138    3.918110e+11
## 2139    3.441928e+11
## 2140    3.210129e+11
## 2141    3.141730e+11
## 2142    3.273786e+11
## 2143              NA
## 2144    2.531070e+13
## 2145    2.271278e+13
## 2146    2.313041e+13
## 2147    2.226561e+13
## 2148    2.113374e+13
## 2149    2.023001e+13
## 2150    1.976918e+13
## 2151    1.936284e+13
## 2152    1.869625e+13
## 2153    1.808872e+13
## 2154    1.739937e+13
## 2155    1.667294e+13
## 2156    1.585935e+13
## 2157    1.632983e+13
## 2158    1.594981e+13
## 2159    1.514100e+13
## 2160    1.421718e+13
## 2161    1.324837e+13
## 2162    1.235617e+13
## 2163    1.169370e+13
## 2164    1.132459e+13
## 2165    1.099920e+13
## 2166    1.031291e+13
## 2167    9.699949e+12
## 2168    9.235474e+12
## 2169    8.704364e+12
## 2170    8.245811e+12
## 2171    7.867242e+12
## 2172    7.437550e+12
## 2173    7.114395e+12
## 2174    6.770092e+12
## 2175    6.558666e+12
## 2176    6.208137e+12
## 2177    5.745207e+12
## 2178    5.287828e+12
## 2179    4.958242e+12
## 2180    4.704775e+12
## 2181    4.393971e+12
## 2182    3.975475e+12
## 2183    3.658081e+12
## 2184    3.513995e+12
## 2185    3.131774e+12
## 2186    2.870922e+12
## 2187    2.570708e+12
## 2188    2.293885e+12
## 2189    2.080374e+12
## 2190    1.859083e+12
## 2191    1.705964e+12
## 2192    1.556967e+12
## 2193    1.392428e+12
## 2194    1.264333e+12
## 2195    1.161385e+12
## 2196    1.099213e+12
## 2197    1.014480e+12
## 2198    9.275238e+11
## 2199    8.762226e+11
## 2200    7.983295e+11
## 2201    7.352851e+11
## 2202    6.837264e+11
## 2203    6.474216e+11
## 2204    6.043242e+11
## 2205    5.838462e+11
## 2206              NA
## 2207              NA
## 2208              NA
## 2209              NA
## 2210              NA
## 2211              NA
## 2212              NA
## 2213              NA
## 2214              NA
## 2215              NA
## 2216              NA
## 2217              NA
## 2218              NA
## 2219              NA
## 2220              NA
## 2221              NA
## 2222              NA
## 2223              NA
## 2224              NA
## 2225              NA
## 2226              NA
## 2227              NA
## 2228              NA
## 2229              NA
## 2230              NA
## 2231              NA
## 2232              NA
## 2233              NA
## 2234              NA
## 2235              NA
## 2236              NA
## 2237              NA
## 2238              NA
## 2239              NA
## 2240              NA
## 2241              NA
## 2242              NA
## 2243              NA
## 2244              NA
## 2245              NA
## 2246              NA
## 2247              NA
## 2248              NA
## 2249              NA
## 2250              NA
## 2251              NA
## 2252              NA
## 2253              NA
## 2254              NA
## 2255              NA
## 2256              NA
## 2257              NA
## 2258              NA
## 2259              NA
## 2260              NA
## 2261              NA
## 2262              NA
## 2263              NA
## 2264              NA
## 2265              NA
## 2266              NA
## 2267              NA
## 2268              NA
## 2269              NA
## 2270    5.826835e+13
## 2271    5.251705e+13
## 2272    5.387859e+13
## 2273    5.336583e+13
## 2274    5.044393e+13
## 2275    4.832536e+13
## 2276    4.740883e+13
## 2277    5.027546e+13
## 2278    4.926724e+13
## 2279    4.861931e+13
## 2280    4.867149e+13
## 2281    4.525348e+13
## 2282    4.314305e+13
## 2283    4.611951e+13
## 2284    4.343419e+13
## 2285    3.967283e+13
## 2286    3.760826e+13
## 2287    3.557197e+13
## 2288    3.195057e+13
## 2289    2.856271e+13
## 2290    2.737424e+13
## 2291    2.763545e+13
## 2292    2.704112e+13
## 2293    2.574525e+13
## 2294    2.548550e+13
## 2295    2.587810e+13
## 2296    2.566138e+13
## 2297    2.327795e+13
## 2298    2.169410e+13
## 2299    2.140206e+13
## 2300    1.989912e+13
## 2301    1.880105e+13
## 2302    1.668974e+13
## 2303    1.594831e+13
## 2304    1.414909e+13
## 2305    1.221753e+13
## 2306    1.008706e+13
## 2307    9.577290e+12
## 2308    9.157658e+12
## 2309    8.867590e+12
## 2310    9.002275e+12
## 2311    8.843232e+12
## 2312    7.956895e+12
## 2313    6.888422e+12
## 2314    5.733753e+12
## 2315    5.082150e+12
## 2316    4.686291e+12
## 2317    4.180948e+12
## 2318    3.731261e+12
## 2319    3.088352e+12
## 2320    2.662499e+12
## 2321    2.404121e+12
## 2322    2.205837e+12
## 2323    2.005273e+12
## 2324    1.848604e+12
## 2325    1.722045e+12
## 2326    1.568996e+12
## 2327    1.445606e+12
## 2328    1.322665e+12
## 2329    1.227109e+12
## 2330    1.136830e+12
## 2331    1.081090e+12
## 2332              NA
## 2333    4.539483e+11
## 2334    3.783155e+11
## 2335    4.333633e+11
## 2336    4.428876e+11
## 2337    3.989432e+11
## 2338    3.663573e+11
## 2339    3.703217e+11
## 2340    4.464409e+11
## 2341    4.318832e+11
## 2342    4.137997e+11
## 2343    3.968010e+11
## 2344    3.223891e+11
## 2345    2.770364e+11
## 2346    3.228111e+11
## 2347    2.636831e+11
## 2348    2.155668e+11
## 2349    1.836184e+11
## 2350    1.515924e+11
## 2351    1.221858e+11
## 2352    9.833689e+10
## 2353    9.120991e+10
## 2354    9.166330e+10
## 2355    8.097949e+10
## 2356    7.523493e+10
## 2357    7.678604e+10
## 2358    7.374716e+10
## 2359    6.996239e+10
## 2360    6.092160e+10
## 2361    5.823963e+10
## 2362    6.115740e+10
## 2363    5.606473e+10
## 2364    5.444658e+10
## 2365    4.549367e+10
## 2366    4.344834e+10
## 2367    3.867253e+10
## 2368    3.258441e+10
## 2369    3.217793e+10
## 2370    3.386022e+10
## 2371    3.361790e+10
## 2372    3.558692e+10
## 2373    3.762357e+10
## 2374    3.742564e+10
## 2375    2.695279e+10
## 2376    2.075659e+10
## 2377    1.881406e+10
## 2378    1.670768e+10
## 2379    1.343979e+10
## 2380    1.203989e+10
## 2381    6.530811e+09
## 2382    4.507537e+09
## 2383    3.724245e+09
## 2384    3.137166e+09
## 2385              NA
## 2386              NA
## 2387              NA
## 2388              NA
## 2389              NA
## 2390              NA
## 2391              NA
## 2392              NA
## 2393              NA
## 2394              NA
## 2395              NA
## 2396    9.481916e+09
## 2397    9.515995e+09
## 2398    1.073623e+10
## 2399    1.075316e+10
## 2400    1.025622e+10
## 2401    9.506190e+09
## 2402    9.056069e+09
## 2403    9.269083e+09
## 2404    8.527970e+09
## 2405    8.194345e+09
## 2406    7.737746e+09
## 2407    6.634293e+09
## 2408    6.031363e+09
## 2409    6.704430e+09
## 2410    6.273721e+09
## 2411    5.688862e+09
## 2412    5.419207e+09
## 2413    4.877985e+09
## 2414    4.239148e+09
## 2415    3.558833e+09
## 2416    3.389384e+09
## 2417    3.435682e+09
## 2418    3.750945e+09
## 2419    3.413075e+09
## 2420    3.985855e+09
## 2421    3.978853e+09
## 2422    3.716954e+09
## 2423    3.426130e+09
## 2424    2.908018e+09
## 2425    2.743007e+09
## 2426    2.500503e+09
## 2427    2.354693e+09
## 2428    2.103639e+09
## 2429    2.033192e+09
## 2430    1.987609e+09
## 2431    2.042372e+09
## 2432    1.873278e+09
## 2433    1.979415e+09
## 2434    1.877642e+09
## 2435    1.974411e+09
## 2436    2.023852e+09
## 2437    1.966034e+09
## 2438    1.690597e+09
## 2439    1.379883e+09
## 2440    1.189809e+09
## 2441    1.140406e+09
## 2442    1.137284e+09
## 2443    1.018241e+09
## 2444    7.166942e+08
## 2445    5.256222e+08
## 2446    4.374457e+08
## 2447              NA
## 2448              NA
## 2449              NA
## 2450              NA
## 2451              NA
## 2452              NA
## 2453              NA
## 2454              NA
## 2455              NA
## 2456              NA
## 2457              NA
## 2458              NA
## 2459    5.497273e+13
## 2460    4.969780e+13
## 2461    5.087935e+13
## 2462    5.038011e+13
## 2463    4.753232e+13
## 2464    4.559050e+13
## 2465    4.458279e+13
## 2466    4.714454e+13
## 2467    4.622991e+13
## 2468    4.577512e+13
## 2469    4.584725e+13
## 2470    4.269092e+13
## 2471    4.092947e+13
## 2472    4.347655e+13
## 2473    4.104366e+13
## 2474    3.760494e+13
## 2475    3.574243e+13
## 2476    3.397094e+13
## 2477    3.057166e+13
## 2478    2.726848e+13
## 2479    2.614242e+13
## 2480    2.639874e+13
## 2481    2.594638e+13
## 2482    2.470915e+13
## 2483    2.460253e+13
## 2484    2.509482e+13
## 2485    2.497659e+13
## 2486    2.251999e+13
## 2487    2.094626e+13
## 2488    2.080881e+13
## 2489    1.938869e+13
## 2490    1.837509e+13
## 2491    1.637058e+13
## 2492    1.567421e+13
## 2493    1.391408e+13
## 2494    1.200064e+13
## 2495    9.821559e+12
## 2496    9.327147e+12
## 2497    8.924956e+12
## 2498    8.600060e+12
## 2499    8.637928e+12
## 2500    8.541375e+12
## 2501    7.713342e+12
## 2502    6.708712e+12
## 2503    5.583268e+12
## 2504    4.938483e+12
## 2505    4.551078e+12
## 2506    4.061736e+12
## 2507    3.636978e+12
## 2508    3.012355e+12
## 2509    2.596785e+12
## 2510    2.342119e+12
## 2511    2.144870e+12
## 2512    1.950689e+12
## 2513    1.798405e+12
## 2514    1.675301e+12
## 2515    1.527357e+12
## 2516    1.405789e+12
## 2517    1.288511e+12
## 2518    1.196188e+12
## 2519    1.107846e+12
## 2520    1.047798e+12
## 2521              NA
## 2522    1.434259e+12
## 2523    1.316350e+12
## 2524    1.401121e+12
## 2525    1.356086e+12
## 2526    1.301380e+12
## 2527    1.220805e+12
## 2528    1.328135e+12
## 2529    1.557383e+12
## 2530    1.466531e+12
## 2531    1.336891e+12
## 2532    1.230254e+12
## 2533    1.055906e+12
## 2534    8.979348e+11
## 2535    9.822302e+11
## 2536    7.867443e+11
## 2537    6.499183e+11
## 2538    5.143003e+11
## 2539    4.117351e+11
## 2540    3.301427e+11
## 2541    3.034284e+11
## 2542    2.637078e+11
## 2543    2.772802e+11
## 2544    2.393907e+11
## 2545    2.189550e+11
## 2546    2.121223e+11
## 2547    1.925289e+11
## 2548    1.735757e+11
## 2549    1.360775e+11
## 2550    1.460879e+11
## 2551    1.640514e+11
## 2552    2.072701e+11
## 2553    3.930664e+11
## 2554    2.398987e+11
## 2555    2.369382e+11
## 2556    2.258741e+11
## 2557    2.061617e+11
## 2558    2.140140e+11
## 2559    2.121872e+11
## 2560    2.317027e+11
## 2561    2.895519e+11
## 2562    3.094603e+11
## 2563    2.226331e+11
## 2564    1.806422e+11
## 2565    1.431207e+11
## 2566    1.285000e+11
## 2567    1.161310e+11
## 2568    9.902050e+10
## 2569    8.667418e+10
## 2570    6.111448e+10
## 2571    4.975251e+10
## 2572    4.276989e+10
## 2573    4.375701e+10
## 2574    3.577078e+10
## 2575    3.158374e+10
## 2576    2.996563e+10
## 2577    3.173720e+10
## 2578    2.889532e+10
## 2579    2.563715e+10
## 2580    2.752097e+10
## 2581    2.361494e+10
## 2582    2.162418e+10
## 2583    2.091650e+10
## 2584              NA
## 2585    5.387061e+11
## 2586    4.537283e+11
## 2587    5.215279e+11
## 2588    5.299913e+11
## 2589    4.827896e+11
## 2590    4.469252e+11
## 2591    4.550470e+11
## 2592    5.326318e+11
## 2593    5.156433e+11
## 2594    4.958468e+11
## 2595    4.746219e+11
## 2596    3.939669e+11
## 2597    3.429065e+11
## 2598    4.002972e+11
## 2599    3.322808e+11
## 2600    2.773227e+11
## 2601    2.383346e+11
## 2602    2.000852e+11
## 2603    1.663022e+11
## 2604    1.392114e+11
## 2605    1.301665e+11
## 2606    1.296231e+11
## 2607    1.169025e+11
## 2608    1.090003e+11
## 2609    1.091149e+11
## 2610    1.018764e+11
## 2611    9.580062e+10
## 2612    8.448650e+10
## 2613    8.029405e+10
## 2614    8.138287e+10
## 2615    7.648212e+10
## 2616    7.488332e+10
## 2617    6.454276e+10
## 2618    6.203665e+10
## 2619    5.633404e+10
## 2620    4.931631e+10
## 2621    5.024690e+10
## 2622    5.216750e+10
## 2623    5.264973e+10
## 2624    5.442170e+10
## 2625    5.468238e+10
## 2626    5.292081e+10
## 2627    3.976671e+10
## 2628    3.204419e+10
## 2629    2.980424e+10
## 2630    2.624560e+10
## 2631    2.299215e+10
## 2632    2.019719e+10
## 2633    1.300195e+10
## 2634    1.043293e+10
## 2635    8.855163e+09
## 2636    7.870923e+09
## 2637              NA
## 2638              NA
## 2639              NA
## 2640              NA
## 2641              NA
## 2642              NA
## 2643              NA
## 2644              NA
## 2645              NA
## 2646              NA
## 2647              NA
## 2648    4.088771e+12
## 2649    3.487013e+12
## 2650    3.653951e+12
## 2651    3.534209e+12
## 2652    3.433882e+12
## 2653    3.010758e+12
## 2654    2.704836e+12
## 2655    2.587789e+12
## 2656    2.362710e+12
## 2657    2.302399e+12
## 2658    2.277344e+12
## 2659    2.062469e+12
## 2660    1.683173e+12
## 2661    1.527613e+12
## 2662    1.504161e+12
## 2663    1.196088e+12
## 2664    1.050602e+12
## 2665    9.170834e+11
## 2666    7.910267e+11
## 2667    6.774265e+11
## 2668    6.456786e+11
## 2669    6.302421e+11
## 2670    5.981465e+11
## 2671    5.582590e+11
## 2672    5.505488e+11
## 2673    5.248147e+11
## 2674    4.797073e+11
## 2675    4.321961e+11
## 2676    3.809873e+11
## 2677    3.846195e+11
## 2678    3.621551e+11
## 2679    4.070666e+11
## 2680    3.781131e+11
## 2681    3.746786e+11
## 2682    3.486904e+11
## 2683    3.140349e+11
## 2684    2.965111e+11
## 2685    2.726769e+11
## 2686    2.739515e+11
## 2687    2.587924e+11
## 2688    2.501394e+11
## 2689    2.359622e+11
## 2690    1.956931e+11
## 2691    1.747218e+11
## 2692    1.535543e+11
## 2693    1.326085e+11
## 2694    1.358675e+11
## 2695    1.269346e+11
## 2696    1.047814e+11
## 2697    9.165334e+10
## 2698    9.116884e+10
## 2699    8.571186e+10
## 2700    7.917201e+10
## 2701    7.201846e+10
## 2702    6.871297e+10
## 2703    6.245659e+10
## 2704    7.427448e+10
## 2705    6.915898e+10
## 2706    6.040834e+10
## 2707    5.370559e+10
## 2708    5.031685e+10
## 2709    4.715671e+10
## 2710              NA
## 2711    4.088771e+12
## 2712    3.487013e+12
## 2713    3.653951e+12
## 2714    3.534209e+12
## 2715    3.433882e+12
## 2716    3.010758e+12
## 2717    2.704836e+12
## 2718    2.587789e+12
## 2719    2.362710e+12
## 2720    2.302399e+12
## 2721    2.277344e+12
## 2722    2.062469e+12
## 2723    1.683173e+12
## 2724    1.527613e+12
## 2725    1.504161e+12
## 2726    1.196088e+12
## 2727    1.050602e+12
## 2728    9.170834e+11
## 2729    7.910267e+11
## 2730    6.774265e+11
## 2731    6.456786e+11
## 2732    6.302421e+11
## 2733    5.981465e+11
## 2734    5.582590e+11
## 2735    5.505488e+11
## 2736    5.248147e+11
## 2737    4.797073e+11
## 2738    4.321961e+11
## 2739    3.809873e+11
## 2740    3.846195e+11
## 2741    3.621551e+11
## 2742    4.070666e+11
## 2743    3.781131e+11
## 2744    3.746786e+11
## 2745    3.486904e+11
## 2746    3.140349e+11
## 2747    2.965111e+11
## 2748    2.726769e+11
## 2749    2.739515e+11
## 2750    2.587924e+11
## 2751    2.501394e+11
## 2752    2.359622e+11
## 2753    1.956931e+11
## 2754    1.747218e+11
## 2755    1.535543e+11
## 2756    1.326085e+11
## 2757    1.358675e+11
## 2758    1.269346e+11
## 2759    1.047814e+11
## 2760    9.165334e+10
## 2761    9.116884e+10
## 2762    8.571186e+10
## 2763    7.917201e+10
## 2764    7.201846e+10
## 2765    6.871297e+10
## 2766    6.245659e+10
## 2767    7.427448e+10
## 2768    6.915898e+10
## 2769    6.040834e+10
## 2770    5.370559e+10
## 2771    5.031685e+10
## 2772    4.715671e+10
## 2773              NA
## 2774    1.929052e+12
## 2775    1.719010e+12
## 2776    1.803363e+12
## 2777    1.782359e+12
## 2778    1.712749e+12
## 2779    1.579959e+12
## 2780    1.690061e+12
## 2781    1.895925e+12
## 2782    1.814869e+12
## 2783    1.707695e+12
## 2784    1.644141e+12
## 2785    1.456995e+12
## 2786    1.225730e+12
## 2787    1.274373e+12
## 2788    1.124139e+12
## 2789    9.702818e+11
## 2790    8.207625e+11
## 2791    6.908123e+11
## 2792    5.559401e+11
## 2793    4.409065e+11
## 2794    4.046794e+11
## 2795    4.230336e+11
## 2796    3.985701e+11
## 2797    3.946884e+11
## 2798    4.078292e+11
## 2799    3.928756e+11
## 2800    3.763688e+11
## 2801    3.249739e+11
## 2802    3.340860e+11
## 2803    3.554497e+11
## 2804    3.894022e+11
## 2805    3.739512e+11
## 2806    3.183306e+11
## 2807    3.124164e+11
## 2808    2.962527e+11
## 2809    2.604549e+11
## 2810    2.537029e+11
## 2811    2.748923e+11
## 2812    3.139038e+11
## 2813    3.566257e+11
## 2814    3.880724e+11
## 2815    2.810142e+11
## 2816    2.219983e+11
## 2817    1.850546e+11
## 2818    1.675127e+11
## 2819    1.525501e+11
## 2820    1.414332e+11
## 2821    1.283598e+11
## 2822    9.894085e+10
## 2823    7.739815e+10
## 2824    6.881627e+10
## 2825    6.740952e+10
## 2826    5.739493e+10
## 2827    5.026500e+10
## 2828    4.696208e+10
## 2829    4.726667e+10
## 2830    4.382251e+10
## 2831    3.937337e+10
## 2832    4.010227e+10
## 2833    3.507856e+10
## 2834    3.241997e+10
## 2835    3.116447e+10
## 2836              NA
## 2837    1.927599e+12
## 2838    1.717750e+12
## 2839    1.801677e+12
## 2840    1.780721e+12
## 2841    1.711174e+12
## 2842    1.578467e+12
## 2843    1.688645e+12
## 2844    1.894537e+12
## 2845    1.813541e+12
## 2846    1.706636e+12
## 2847    1.643076e+12
## 2848    1.456025e+12
## 2849    1.224883e+12
## 2850    1.273406e+12
## 2851    1.123103e+12
## 2852    9.692615e+11
## 2853    8.198393e+11
## 2854    6.899686e+11
## 2855    5.552304e+11
## 2856    4.402039e+11
## 2857    4.040527e+11
## 2858    4.224146e+11
## 2859    3.979425e+11
## 2860    3.940756e+11
## 2861    4.072627e+11
## 2862    3.923698e+11
## 2863    3.758575e+11
## 2864    3.244841e+11
## 2865    3.336090e+11
## 2866    3.550139e+11
## 2867    3.890273e+11
## 2868    3.735819e+11
## 2869    3.180254e+11
## 2870    3.121326e+11
## 2871    2.960043e+11
## 2872    2.602483e+11
## 2873    2.535369e+11
## 2874    2.747457e+11
## 2875    3.137639e+11
## 2876    3.564864e+11
## 2877    3.879272e+11
## 2878    2.808714e+11
## 2879    2.218734e+11
## 2880    1.849733e+11
## 2881    1.674534e+11
## 2882    1.525066e+11
## 2883    1.413905e+11
## 2884    1.283214e+11
## 2885    9.890714e+10
## 2886    7.736979e+10
## 2887    6.879694e+10
## 2888    6.739402e+10
## 2889    5.738089e+10
## 2890    5.025085e+10
## 2891    4.694706e+10
## 2892    4.725188e+10
## 2893    4.380839e+10
## 2894    3.935914e+10
## 2895    4.008976e+10
## 2896    3.506709e+10
## 2897    3.240948e+10
## 2898    3.115339e+10
## 2899              NA
## 2900    1.929052e+12
## 2901    1.719010e+12
## 2902    1.803363e+12
## 2903    1.782359e+12
## 2904    1.712749e+12
## 2905    1.579959e+12
## 2906    1.690061e+12
## 2907    1.895925e+12
## 2908    1.814869e+12
## 2909    1.707695e+12
## 2910    1.644141e+12
## 2911    1.456995e+12
## 2912    1.225730e+12
## 2913    1.274373e+12
## 2914    1.124139e+12
## 2915    9.702818e+11
## 2916    8.207625e+11
## 2917    6.908123e+11
## 2918    5.559401e+11
## 2919    4.409065e+11
## 2920    4.046794e+11
## 2921    4.230336e+11
## 2922    3.985701e+11
## 2923    3.946884e+11
## 2924    4.078292e+11
## 2925    3.928756e+11
## 2926    3.763688e+11
## 2927    3.249739e+11
## 2928    3.340860e+11
## 2929    3.554497e+11
## 2930    3.894022e+11
## 2931    3.739512e+11
## 2932    3.183306e+11
## 2933    3.124164e+11
## 2934    2.962527e+11
## 2935    2.604549e+11
## 2936    2.537029e+11
## 2937    2.748923e+11
## 2938    3.139038e+11
## 2939    3.566257e+11
## 2940    3.880724e+11
## 2941    2.810142e+11
## 2942    2.219983e+11
## 2943    1.850546e+11
## 2944    1.675127e+11
## 2945    1.525501e+11
## 2946    1.414332e+11
## 2947    1.283598e+11
## 2948    9.894085e+10
## 2949    7.739815e+10
## 2950    6.881627e+10
## 2951    6.740952e+10
## 2952    5.739493e+10
## 2953    5.026500e+10
## 2954    4.696208e+10
## 2955    4.726667e+10
## 2956    4.382251e+10
## 2957    3.937337e+10
## 2958    4.010227e+10
## 2959    3.507856e+10
## 2960    3.241997e+10
## 2961    3.116447e+10
## 2962              NA
## 2963    2.710409e+13
## 2964    2.285137e+13
## 2965    2.368174e+13
## 2966    2.330450e+13
## 2967    2.164484e+13
## 2968    1.954982e+13
## 2969    1.966354e+13
## 2970    2.093960e+13
## 2971    2.030664e+13
## 2972    1.891479e+13
## 2973    1.764755e+13
## 2974    1.460434e+13
## 2975    1.198318e+13
## 2976    1.244347e+13
## 2977    1.020101e+13
## 2978    8.234043e+12
## 2979    6.930926e+12
## 2980    5.767481e+12
## 2981    4.811817e+12
## 2982    4.297954e+12
## 2983    4.267639e+12
## 2984    4.246882e+12
## 2985    3.841078e+12
## 2986    4.064946e+12
## 2987    4.124231e+12
## 2988    3.850175e+12
## 2989    3.538257e+12
## 2990    3.144387e+12
## 2991    2.837279e+12
## 2992    2.601335e+12
## 2993    2.494887e+12
## 2994    2.573841e+12
## 2995    2.170714e+12
## 2996    2.052565e+12
## 2997    1.850902e+12
## 2998    1.734387e+12
## 2999    1.713511e+12
## 3000    1.674642e+12
## 3001    1.626146e+12
## 3002    1.711731e+12
## 3003    1.792584e+12
## 3004    1.658117e+12
## 3005    1.426837e+12
## 3006    1.175612e+12
## 3007    1.096860e+12
## 3008    9.919326e+11
## 3009    9.418184e+11
## 3010    8.550365e+11
## 3011    6.896469e+11
## 3012    5.303106e+11
## 3013    4.663721e+11
## 3014    4.287332e+11
## 3015    3.916593e+11
## 3016    3.494366e+11
## 3017    3.348471e+11
## 3018    3.328006e+11
## 3019    3.012361e+11
## 3020    2.696465e+11
## 3021    2.349677e+11
## 3022    2.239607e+11
## 3023    2.183622e+11
## 3024    2.419478e+11
## 3025              NA
## 3026    9.652743e+13
## 3027    8.511634e+13
## 3028    8.765425e+13
## 3029    8.646696e+13
## 3030    8.140950e+13
## 3031    7.646936e+13
## 3032    7.518636e+13
## 3033    7.973264e+13
## 3034    7.760623e+13
## 3035    7.550039e+13
## 3036    7.385746e+13
## 3037    6.660560e+13
## 3038    6.080391e+13
## 3039    6.412060e+13
## 3040    5.834935e+13
## 3041    5.178010e+13
## 3042    4.778432e+13
## 3043    4.412387e+13
## 3044    3.915222e+13
## 3045    3.491787e+13
## 3046    3.362387e+13
## 3047    3.383954e+13
## 3048    3.274540e+13
## 3049    3.154648e+13
## 3050    3.162774e+13
## 3051    3.174178e+13
## 3052    3.104840e+13
## 3053    2.787677e+13
## 3054    2.582620e+13
## 3055    2.541028e+13
## 3056    2.376350e+13
## 3057    2.278375e+13
## 3058    2.019742e+13
## 3059    1.934119e+13
## 3060    1.731021e+13
## 3061    1.520774e+13
## 3062    1.286213e+13
## 3063    1.227160e+13
## 3064    1.184007e+13
## 3065    1.160977e+13
## 3066    1.172760e+13
## 3067    1.133659e+13
## 3068    1.005421e+13
## 3069    8.656534e+12
## 3070    7.350784e+12
## 3071    6.499365e+12
## 3072    5.978906e+12
## 3073    5.367575e+12
## 3074    4.656966e+12
## 3075    3.817137e+12
## 3076    3.310772e+12
## 3077    2.997220e+12
## 3078    2.741172e+12
## 3079    2.485213e+12
## 3080    2.302529e+12
## 3081    2.163894e+12
## 3082    1.993900e+12
## 3083    1.830287e+12
## 3084    1.671610e+12
## 3085    1.550544e+12
## 3086    1.448622e+12
## 3087    1.392273e+12
## 3088              NA
## 3089    1.478686e+10
## 3090    2.014344e+10
## 3091    1.890449e+10
## 3092    1.841885e+10
## 3093    1.889635e+10
## 3094    1.801956e+10
## 3095    1.999816e+10
## 3096    2.055058e+10
## 3097    2.056449e+10
## 3098    2.020357e+10
## 3099    1.819041e+10
## 3100    1.563386e+10
## 3101    1.215484e+10
## 3102    1.024977e+10
## 3103    9.715762e+09
## 3104    6.971379e+09
## 3105    6.226199e+09
## 3106    5.220824e+09
## 3107    4.539501e+09
## 3108    3.854235e+09
## 3109              NA
## 3110              NA
## 3111              NA
## 3112              NA
## 3113              NA
## 3114              NA
## 3115              NA
## 3116              NA
## 3117              NA
## 3118              NA
## 3119              NA
## 3120              NA
## 3121              NA
## 3122              NA
## 3123              NA
## 3124              NA
## 3125              NA
## 3126              NA
## 3127              NA
## 3128              NA
## 3129    3.478788e+09
## 3130    3.641723e+09
## 3131    3.697940e+09
## 3132    3.300000e+09
## 3133    2.953333e+09
## 3134    2.555556e+09
## 3135    2.366667e+09
## 3136    2.155555e+09
## 3137    1.733333e+09
## 3138    1.595555e+09
## 3139    1.831109e+09
## 3140    1.748887e+09
## 3141    1.408889e+09
## 3142    1.373333e+09
## 3143    1.673333e+09
## 3144    1.400000e+09
## 3145    1.006667e+09
## 3146    8.000000e+08
## 3147    7.511112e+08
## 3148    5.466667e+08
## 3149    5.488889e+08
## 3150    5.377778e+08
## 3151              NA
## 3152    1.825579e+10
## 3153    1.513187e+10
## 3154    1.540183e+10
## 3155    1.515643e+10
## 3156    1.301969e+10
## 3157    1.186120e+10
## 3158    1.138685e+10
## 3159    1.322815e+10
## 3160    1.277622e+10
## 3161    1.231983e+10
## 3162    1.289076e+10
## 3163    1.192692e+10
## 3164    1.204421e+10
## 3165    1.288135e+10
## 3166    1.067732e+10
## 3167    8.896073e+09
## 3168    8.052074e+09
## 3169    7.184686e+09
## 3170    5.611496e+09
## 3171    4.348068e+09
## 3172    3.922101e+09
## 3173    3.480355e+09
## 3174    3.212122e+09
## 3175    2.545965e+09
## 3176    2.258514e+09
## 3177    3.199641e+09
## 3178    2.392765e+09
## 3179    1.880952e+09
## 3180    1.185315e+09
## 3181    6.521750e+08
## 3182    1.099559e+09
## 3183    2.028554e+09
## 3184    2.253090e+09
## 3185    2.051236e+09
## 3186    2.080796e+09
## 3187    2.097326e+09
## 3188    1.897050e+09
## 3189    1.857338e+09
## 3190              NA
## 3191              NA
## 3192              NA
## 3193              NA
## 3194              NA
## 3195              NA
## 3196              NA
## 3197              NA
## 3198              NA
## 3199              NA
## 3200              NA
## 3201              NA
## 3202              NA
## 3203              NA
## 3204              NA
## 3205              NA
## 3206              NA
## 3207              NA
## 3208              NA
## 3209              NA
## 3210              NA
## 3211              NA
## 3212              NA
## 3213              NA
## 3214              NA
## 3215    1.630444e+11
## 3216    1.450092e+11
## 3217    1.717674e+11
## 3218    1.749109e+11
## 3219    1.700970e+11
## 3220    1.600342e+11
## 3221    1.659793e+11
## 3222    2.138100e+11
## 3223    2.097550e+11
## 3224    2.090590e+11
## 3225    2.000131e+11
## 3226    1.612073e+11
## 3227    1.372110e+11
## 3228    1.710007e+11
## 3229    1.349771e+11
## 3230    1.170273e+11
## 3231    1.031982e+11
## 3232    8.533258e+10
## 3233    6.786383e+10
## 3234    5.676036e+10
## 3235    5.474471e+10
## 3236    5.479039e+10
## 3237    4.864065e+10
## 3238    4.818775e+10
## 3239    4.817761e+10
## 3240    4.694158e+10
## 3241    4.176432e+10
## 3242    4.254318e+10
## 3243    4.994560e+10
## 3244    4.800308e+10
## 3245    4.571561e+10
## 3246    6.204856e+10
## 3247    5.563441e+10
## 3248    5.908907e+10
## 3249    6.674640e+10
## 3250    6.369224e+10
## 3251    5.793787e+10
## 3252    5.369828e+10
## 3253    4.880137e+10
## 3254    4.520709e+10
## 3255    4.434867e+10
## 3256    4.234638e+10
## 3257    3.324342e+10
## 3258    2.636449e+10
## 3259    2.097190e+10
## 3260    1.772835e+10
## 3261    1.555793e+10
## 3262    1.321003e+10
## 3263    8.707848e+09
## 3264    6.766767e+09
## 3265    5.077222e+09
## 3266    4.863487e+09
## 3267    4.257219e+09
## 3268    3.852116e+09
## 3269    3.370843e+09
## 3270    3.039835e+09
## 3271    3.136259e+09
## 3272    2.909293e+09
## 3273    2.702960e+09
## 3274    2.001428e+09
## 3275    2.434727e+09
## 3276    2.723593e+09
## 3277              NA
## 3278    7.090000e+08
## 3279    7.160000e+08
## 3280    6.470000e+08
## 3281    6.390000e+08
## 3282    6.120000e+08
## 3283    6.710000e+08
## 3284    6.730000e+08
## 3285    6.430000e+08
## 3286    6.380000e+08
## 3287    6.400000e+08
## 3288    5.700000e+08
## 3289    5.730000e+08
## 3290    6.750000e+08
## 3291    5.600000e+08
## 3292    5.180000e+08
## 3293    4.930000e+08
## 3294    5.000000e+08
## 3295    5.090000e+08
## 3296    5.240000e+08
## 3297    5.120000e+08
## 3298              NA
## 3299              NA
## 3300              NA
## 3301              NA
## 3302              NA
## 3303              NA
## 3304              NA
## 3305              NA
## 3306              NA
## 3307              NA
## 3308              NA
## 3309              NA
## 3310              NA
## 3311              NA
## 3312              NA
## 3313              NA
## 3314              NA
## 3315              NA
## 3316              NA
## 3317              NA
## 3318              NA
## 3319              NA
## 3320              NA
## 3321              NA
## 3322              NA
## 3323              NA
## 3324              NA
## 3325              NA
## 3326              NA
## 3327              NA
## 3328              NA
## 3329              NA
## 3330              NA
## 3331              NA
## 3332              NA
## 3333              NA
## 3334              NA
## 3335              NA
## 3336              NA
## 3337              NA
## 3338              NA
## 3339              NA
## 3340              NA
## 3341    3.330282e+09
## 3342    2.891022e+09
## 3343    3.155065e+09
## 3344    3.218316e+09
## 3345    3.000181e+09
## 3346    2.896679e+09
## 3347    2.789870e+09
## 3348    3.271808e+09
## 3349    3.193704e+09
## 3350    3.188809e+09
## 3351    3.629204e+09
## 3352    3.449967e+09
## 3353    3.674410e+09
## 3354    4.085631e+09
## 3355    3.952601e+09
## 3356    3.456442e+09
## 3357    3.159905e+09
## 3358    2.894922e+09
## 3359    2.361727e+09
## 3360    1.755910e+09
## 3361    1.546926e+09
## 3362    1.429049e+09
## 3363    1.239876e+09
## 3364    1.211932e+09
## 3365    1.180597e+09
## 3366    1.223945e+09
## 3367    1.178739e+09
## 3368    1.017549e+09
## 3369    1.007026e+09
## 3370    1.210014e+09
## 3371    1.106929e+09
## 3372    1.029048e+09
## 3373    7.954493e+08
## 3374    7.214259e+08
## 3375    6.113164e+08
## 3376    4.820006e+08
## 3377    3.467380e+08
## 3378    3.300707e+08
## 3379    3.278618e+08
## 3380    3.758960e+08
## 3381    3.889587e+08
## 3382    4.464161e+08
## 3383    4.115783e+08
## 3384    3.080089e+08
## 3385    2.540202e+08
## 3386    2.272810e+08
## 3387    2.201272e+08
## 3388    1.865587e+08
## 3389    1.508201e+08
## 3390    1.134082e+08
## 3391    8.940982e+07
## 3392    7.861921e+07
## 3393              NA
## 3394              NA
## 3395              NA
## 3396              NA
## 3397              NA
## 3398              NA
## 3399              NA
## 3400              NA
## 3401              NA
## 3402              NA
## 3403              NA
## 3404    6.740429e+10
## 3405    5.361907e+10
## 3406    6.930911e+10
## 3407    7.779294e+10
## 3408    6.897277e+10
## 3409    4.984049e+10
## 3410    8.721930e+10
## 3411    1.372444e+11
## 3412    1.334016e+11
## 3413    1.249982e+11
## 3414    1.094366e+11
## 3415    8.169953e+10
## 3416    7.030717e+10
## 3417    8.853861e+10
## 3418    6.526645e+10
## 3419    5.238101e+10
## 3420    3.697092e+10
## 3421    2.355205e+10
## 3422    1.781270e+10
## 3423    1.528559e+10
## 3424    8.936064e+09
## 3425    9.129595e+09
## 3426    6.152923e+09
## 3427    6.506230e+09
## 3428    7.648377e+09
## 3429    7.526447e+09
## 3430    5.538749e+09
## 3431    4.438321e+09
## 3432    5.768720e+09
## 3433    8.307811e+09
## 3434    1.060378e+10
## 3435    1.122876e+10
## 3436    1.020110e+10
## 3437    8.769251e+09
## 3438    8.083872e+09
## 3439    7.072063e+09
## 3440    7.553560e+09
## 3441    6.131475e+09
## 3442    5.784342e+09
## 3443    5.550483e+09
## 3444    5.550483e+09
## 3445    5.930503e+09
## 3446              NA
## 3447              NA
## 3448              NA
## 3449              NA
## 3450              NA
## 3451              NA
## 3452              NA
## 3453              NA
## 3454              NA
## 3455              NA
## 3456              NA
## 3457              NA
## 3458              NA
## 3459              NA
## 3460              NA
## 3461              NA
## 3462              NA
## 3463              NA
## 3464              NA
## 3465              NA
## 3466              NA
## 3467    1.471126e+09
## 3468    1.370281e+09
## 3469    1.687533e+09
## 3470    1.605944e+09
## 3471    1.467978e+09
## 3472    1.436585e+09
## 3473    1.336693e+09
## 3474    1.249733e+09
## 3475    1.181448e+09
## 3476    1.199948e+09
## 3477    1.137637e+09
## 3478    1.148700e+09
## 3479    1.228330e+09
## 3480    1.370070e+09
## 3481    1.312759e+09
## 3482    1.157663e+09
## 3483    1.022963e+09
## 3484    9.197296e+08
## 3485    8.563963e+08
## 3486    8.143815e+08
## 3487    8.004815e+08
## 3488    8.263704e+08
## 3489    7.662000e+08
## 3490    7.278593e+08
## 3491    6.806185e+08
## 3492    6.337296e+08
## 3493    5.772815e+08
## 3494    5.894296e+08
## 3495    5.351741e+08
## 3496    4.992815e+08
## 3497    4.817074e+08
## 3498    4.594704e+08
## 3499    4.387948e+08
## 3500    3.986377e+08
## 3501    3.371749e+08
## 3502    2.904401e+08
## 3503    2.409239e+08
## 3504    2.083728e+08
## 3505    1.821441e+08
## 3506    1.643693e+08
## 3507    1.478417e+08
## 3508    1.314310e+08
## 3509    1.090800e+08
## 3510    8.787934e+07
## 3511    7.749675e+07
## 3512              NA
## 3513              NA
## 3514              NA
## 3515              NA
## 3516              NA
## 3517              NA
## 3518              NA
## 3519              NA
## 3520              NA
## 3521              NA
## 3522              NA
## 3523              NA
## 3524              NA
## 3525              NA
## 3526              NA
## 3527              NA
## 3528              NA
## 3529              NA
## 3530    4.872273e+11
## 3531    3.855402e+11
## 3532    4.477546e+11
## 3533    5.248197e+11
## 3534    6.436287e+11
## 3535    5.575314e+11
## 3536    5.947493e+11
## 3537    5.263197e+11
## 3538    5.520251e+11
## 3539    5.459824e+11
## 3540    5.301633e+11
## 3541    4.236274e+11
## 3542    3.329765e+11
## 3543    3.615580e+11
## 3544    2.875305e+11
## 3545    2.325573e+11
## 3546    1.987371e+11
## 3547    1.646579e+11
## 3548    1.275870e+11
## 3549    9.772400e+10
## 3550    2.686968e+11
## 3551    2.842038e+11
## 3552    2.835230e+11
## 3553    2.989482e+11
## 3554    2.928590e+11
## 3555    2.721498e+11
## 3556    2.580318e+11
## 3557    2.574400e+11
## 3558    2.367417e+11
## 3559    2.287886e+11
## 3560    1.897200e+11
## 3561    1.413524e+11
## 3562    7.663690e+10
## 3563    1.262068e+11
## 3564    1.111062e+11
## 3565    1.109344e+11
## 3566    8.841667e+10
## 3567    7.909200e+10
## 3568    1.039791e+11
## 3569    8.430749e+10
## 3570    7.867684e+10
## 3571    7.696192e+10
## 3572    6.925233e+10
## 3573    5.808287e+10
## 3574    5.678100e+10
## 3575    5.116950e+10
## 3576    5.243865e+10
## 3577    7.243678e+10
## 3578    5.254400e+10
## 3579    3.473300e+10
## 3580    3.329320e+10
## 3581    3.158421e+10
## 3582    3.125628e+10
## 3583    2.643686e+10
## 3584    2.425667e+10
## 3585    2.863047e+10
## 3586    2.834471e+10
## 3587    2.560525e+10
## 3588    1.827212e+10
## 3589    2.445060e+10
## 3590              NA
## 3591              NA
## 3592              NA
## 3593    1.386141e+10
## 3594    1.264170e+10
## 3595    1.361929e+10
## 3596    1.245794e+10
## 3597    1.152746e+10
## 3598    1.054614e+10
## 3599    1.055334e+10
## 3600    1.160951e+10
## 3601    1.112147e+10
## 3602    1.061932e+10
## 3603    1.014211e+10
## 3604    9.260285e+09
## 3605    8.647937e+09
## 3606    1.166204e+10
## 3607    9.206302e+09
## 3608    6.384452e+09
## 3609    4.900470e+09
## 3610    3.576615e+09
## 3611    2.807061e+09
## 3612    2.376335e+09
## 3613    2.118468e+09
## 3614    1.911564e+09
## 3615    1.845482e+09
## 3616    1.893726e+09
## 3617    1.639492e+09
## 3618    1.596969e+09
## 3619    1.468317e+09
## 3620    1.315159e+09
## 3621    1.201313e+09
## 3622    1.272835e+09
## 3623    2.069870e+09
## 3624    2.256839e+09
## 3625              NA
## 3626              NA
## 3627              NA
## 3628              NA
## 3629              NA
## 3630              NA
## 3631              NA
## 3632              NA
## 3633              NA
## 3634              NA
## 3635              NA
## 3636              NA
## 3637              NA
## 3638              NA
## 3639              NA
## 3640              NA
## 3641              NA
## 3642              NA
## 3643              NA
## 3644              NA
## 3645              NA
## 3646              NA
## 3647              NA
## 3648              NA
## 3649              NA
## 3650              NA
## 3651              NA
## 3652              NA
## 3653              NA
## 3654              NA
## 3655              NA
## 3656    3.126019e+09
## 3657    2.610039e+09
## 3658    3.368970e+09
## 3659    3.202235e+09
## 3660    3.092179e+09
## 3661    2.983799e+09
## 3662    2.963128e+09
## 3663    2.791061e+09
## 3664    2.727933e+09
## 3665    2.615084e+09
## 3666    2.637989e+09
## 3667    2.453631e+09
## 3668    2.553631e+09
## 3669    2.843017e+09
## 3670    2.677654e+09
## 3671    2.469832e+09
## 3672    2.359777e+09
## 3673    2.254749e+09
## 3674    2.044134e+09
## 3675    1.962011e+09
## 3676    1.896648e+09
## 3677    1.873184e+09
## 3678    1.722905e+09
## 3679    1.665363e+09
## 3680    1.531844e+09
## 3681    1.379888e+09
## 3682    1.320670e+09
## 3683    1.245810e+09
## 3684    1.083240e+09
## 3685    9.586592e+08
## 3686    8.720670e+08
## 3687    7.648045e+08
## 3688    6.955307e+08
## 3689    5.966480e+08
## 3690    4.877095e+08
## 3691    4.055866e+08
## 3692              NA
## 3693              NA
## 3694              NA
## 3695              NA
## 3696              NA
## 3697              NA
## 3698              NA
## 3699              NA
## 3700              NA
## 3701              NA
## 3702              NA
## 3703              NA
## 3704              NA
## 3705              NA
## 3706              NA
## 3707              NA
## 3708              NA
## 3709              NA
## 3710              NA
## 3711              NA
## 3712              NA
## 3713              NA
## 3714              NA
## 3715              NA
## 3716              NA
## 3717              NA
## 3718              NA
## 3719    1.552667e+12
## 3720    1.326901e+12
## 3721    1.392228e+12
## 3722    1.428289e+12
## 3723    1.326516e+12
## 3724    1.206535e+12
## 3725    1.350616e+12
## 3726    1.467545e+12
## 3727    1.576380e+12
## 3728    1.546892e+12
## 3729    1.398406e+12
## 3730    1.148610e+12
## 3731    9.286269e+11
## 3732    1.055643e+12
## 3733    8.544273e+11
## 3734    7.479066e+11
## 3735    6.953285e+11
## 3736    6.143264e+11
## 3737    4.674980e+11
## 3738    3.955808e+11
## 3739    3.793582e+11
## 3740    4.158513e+11
## 3741    3.893896e+11
## 3742    3.996609e+11
## 3743    4.356143e+11
## 3744    4.013111e+11
## 3745    3.681408e+11
## 3746    3.228094e+11
## 3747    3.121381e+11
## 3748    3.255318e+11
## 3749    3.259870e+11
## 3750    3.114336e+11
## 3751    2.998779e+11
## 3752    2.361540e+11
## 3753    1.894878e+11
## 3754    1.824720e+11
## 3755    1.806336e+11
## 3756    1.935193e+11
## 3757    1.772672e+11
## 3758    1.940373e+11
## 3759    1.768919e+11
## 3760    1.499844e+11
## 3761    1.348983e+11
## 3762    1.184954e+11
## 3763    1.103510e+11
## 3764    1.050662e+11
## 3765    9.730438e+10
## 3766    8.896389e+10
## 3767    6.383216e+10
## 3768    5.204206e+10
## 3769    4.521447e+10
## 3770    4.133162e+10
## 3771    3.668160e+10
## 3772    3.271251e+10
## 3773    3.044126e+10
## 3774    2.730653e+10
## 3775    2.597491e+10
## 3776    2.379998e+10
## 3777    2.153881e+10
## 3778    1.992160e+10
## 3779    1.968194e+10
## 3780    1.860567e+10
## 3781              NA
## 3782    4.803684e+11
## 3783    4.352252e+11
## 3784    4.446212e+11
## 3785    4.549912e+11
## 3786    4.172612e+11
## 3787    3.958374e+11
## 3788    3.819711e+11
## 3789    4.425848e+11
## 3790    4.301910e+11
## 3791    4.094018e+11
## 3792    4.316852e+11
## 3793    3.922751e+11
## 3794    4.017587e+11
## 3795    4.320519e+11
## 3796    3.891856e+11
## 3797    3.362801e+11
## 3798    3.160923e+11
## 3799    3.014576e+11
## 3800    2.622736e+11
## 3801    2.143949e+11
## 3802    1.975088e+11
## 3803    1.972896e+11
## 3804    2.172591e+11
## 3805    2.182599e+11
## 3806    2.127903e+11
## 3807    2.372509e+11
## 3808    2.410383e+11
## 3809    2.035352e+11
## 3810    1.903797e+11
## 3811    1.950781e+11
## 3812    1.737942e+11
## 3813    1.664634e+11
## 3814    1.331058e+11
## 3815    1.333394e+11
## 3816    1.241684e+11
## 3817    9.903616e+10
## 3818    6.938677e+10
## 3819    6.798534e+10
## 3820    7.212102e+10
## 3821    7.127529e+10
## 3822    7.103423e+10
## 3823    8.205891e+10
## 3824    7.393730e+10
## 3825    6.205226e+10
## 3826    5.154576e+10
## 3827    4.295998e+10
## 3828    4.005921e+10
## 3829    3.518930e+10
## 3830    2.951547e+10
## 3831    2.205961e+10
## 3832    1.785849e+10
## 3833    1.537301e+10
## 3834    1.358280e+10
## 3835    1.244063e+10
## 3836    1.157943e+10
## 3837    1.088768e+10
## 3838    9.994071e+09
## 3839    9.169984e+09
## 3840    8.374175e+09
## 3841    7.756110e+09
## 3842    7.311750e+09
## 3843    6.592694e+09
## 3844              NA
## 3845    5.462218e+10
## 3846    4.269300e+10
## 3847    4.817424e+10
## 3848    4.711294e+10
## 3849    4.086556e+10
## 3850    3.786752e+10
## 3851    5.307437e+10
## 3852    7.524429e+10
## 3853    7.416444e+10
## 3854    6.968394e+10
## 3855    6.595163e+10
## 3856    5.290929e+10
## 3857    4.429149e+10
## 3858    4.885248e+10
## 3859    3.305034e+10
## 3860    2.098299e+10
## 3861    1.324572e+10
## 3862    8.680370e+09
## 3863    7.276754e+09
## 3864    6.235857e+09
## 3865    5.707720e+09
## 3866    5.272798e+09
## 3867    4.581432e+09
## 3868    4.446369e+09
## 3869    3.962238e+09
## 3870    3.176334e+09
## 3871    2.417356e+09
## 3872    1.193312e+09
## 3873    1.570000e+09
## 3874    4.463056e+08
## 3875    8.792366e+09
## 3876    8.858006e+09
## 3877              NA
## 3878              NA
## 3879              NA
## 3880              NA
## 3881              NA
## 3882              NA
## 3883              NA
## 3884              NA
## 3885              NA
## 3886              NA
## 3887              NA
## 3888              NA
## 3889              NA
## 3890              NA
## 3891              NA
## 3892              NA
## 3893              NA
## 3894              NA
## 3895              NA
## 3896              NA
## 3897              NA
## 3898              NA
## 3899              NA
## 3900              NA
## 3901              NA
## 3902              NA
## 3903              NA
## 3904              NA
## 3905              NA
## 3906              NA
## 3907              NA
## 3908    1.120860e+10
## 3909    9.699500e+09
## 3910    1.319280e+10
## 3911    1.275580e+10
## 3912    1.235760e+10
## 3913    1.183460e+10
## 3914    1.186190e+10
## 3915    1.117610e+10
## 3916    1.056280e+10
## 3917    1.072050e+10
## 3918    1.007045e+10
## 3919    1.009576e+10
## 3920    9.981960e+09
## 3921    1.052600e+10
## 3922    1.061834e+10
## 3923    1.016725e+10
## 3924    9.836200e+09
## 3925    9.055290e+09
## 3926    8.870090e+09
## 3927    8.881160e+09
## 3928    8.317830e+09
## 3929    8.076470e+09
## 3930    7.683870e+09
## 3931    6.833220e+09
## 3932    6.332360e+09
## 3933    3.609000e+09
## 3934    3.429000e+09
## 3935    3.259000e+09
## 3936    3.092000e+09
## 3937    3.109000e+09
## 3938    3.111160e+09
## 3939    3.166000e+09
## 3940    3.062000e+09
## 3941    2.817900e+09
## 3942    2.714000e+09
## 3943    2.472500e+09
## 3944    2.320700e+09
## 3945    2.041100e+09
## 3946    1.732800e+09
## 3947    1.578300e+09
## 3948    1.426500e+09
## 3949    1.335300e+09
## 3950    1.139800e+09
## 3951    8.324000e+08
## 3952    7.130000e+08
## 3953    6.421000e+08
## 3954    5.962000e+08
## 3955    6.324000e+08
## 3956    6.709000e+08
## 3957    5.909000e+08
## 3958    5.734000e+08
## 3959    5.384232e+08
## 3960    5.281373e+08
## 3961    4.449020e+08
## 3962    3.901961e+08
## 3963    3.400000e+08
## 3964    3.003922e+08
## 3965    2.666667e+08
## 3966    2.377451e+08
## 3967    2.122549e+08
## 3968    1.900980e+08
## 3969    1.698039e+08
## 3970              NA
## 3971    3.886866e+10
## 3972    3.472336e+10
## 3973    3.865332e+10
## 3974    3.780201e+10
## 3975    3.547378e+10
## 3976    3.223497e+10
## 3977    3.105064e+10
## 3978    3.338771e+10
## 3979    3.253947e+10
## 3980    3.074931e+10
## 3981    2.877660e+10
## 3982    2.571327e+10
## 3983    2.293822e+10
## 3984    2.571090e+10
## 3985    2.173000e+10
## 3986    1.850476e+10
## 3987    1.596872e+10
## 3988    1.315016e+10
## 3989    1.107481e+10
## 3990    9.593511e+09
## 3991    8.976197e+09
## 3992    9.062899e+09
## 3993    6.621010e+09
## 3994    6.183777e+09
## 3995    6.349202e+09
## 3996    6.101861e+09
## 3997    5.849468e+09
## 3998    5.567553e+09
## 3999    5.200266e+09
## 4000    4.751064e+09
## 4001    4.616223e+09
## 4002    4.229787e+09
## 4003    3.863564e+09
## 4004    3.702394e+09
## 4005    3.392021e+09
## 4006    3.052394e+09
## 4007    3.651862e+09
## 4008    3.905585e+09
## 4009    3.735106e+09
## 4010    3.645745e+09
## 4011    3.467819e+09
## 4012    3.072698e+09
## 4013              NA
## 4014              NA
## 4015              NA
## 4016              NA
## 4017              NA
## 4018              NA
## 4019              NA
## 4020              NA
## 4021              NA
## 4022              NA
## 4023              NA
## 4024              NA
## 4025              NA
## 4026              NA
## 4027              NA
## 4028              NA
## 4029              NA
## 4030              NA
## 4031              NA
## 4032              NA
## 4033              NA
## 4034    4.162649e+11
## 4035    3.739021e+11
## 4036    3.512385e+11
## 4037    3.213790e+11
## 4038    2.937546e+11
## 4039    2.652362e+11
## 4040    1.950787e+11
## 4041    1.728855e+11
## 4042    1.499905e+11
## 4043    1.333557e+11
## 4044    1.286379e+11
## 4045    1.152791e+11
## 4046    1.024778e+11
## 4047    9.163128e+10
## 4048    7.961189e+10
## 4049    7.181908e+10
## 4050    6.944294e+10
## 4051    6.510854e+10
## 4052    6.015893e+10
## 4053    5.472408e+10
## 4054    5.399129e+10
## 4055    5.336979e+10
## 4056    5.127057e+10
## 4057    4.998456e+10
## 4058    4.824431e+10
## 4059    4.643848e+10
## 4060    3.793975e+10
## 4061    3.376866e+10
## 4062    3.316652e+10
## 4063    3.170887e+10
## 4064    3.095748e+10
## 4065    3.159834e+10
## 4066    2.878171e+10
## 4067    2.657901e+10
## 4068    2.429803e+10
## 4069    2.177403e+10
## 4070    2.227842e+10
## 4071    1.892084e+10
## 4072    1.760905e+10
## 4073    1.852540e+10
## 4074    2.024969e+10
## 4075    1.813805e+10
## 4076    1.556548e+10
## 4077    1.328177e+10
## 4078    9.651149e+09
## 4079    1.011711e+10
## 4080    1.944835e+10
## 4081    1.251246e+10
## 4082    8.086726e+09
## 4083    6.288246e+09
## 4084    8.751843e+09
## 4085    8.992722e+09
## 4086    8.471006e+09
## 4087    7.483685e+09
## 4088    7.253575e+09
## 4089    6.439688e+09
## 4090    5.906637e+09
## 4091    5.386055e+09
## 4092    5.319458e+09
## 4093    5.081413e+09
## 4094    4.817580e+09
## 4095    4.274894e+09
## 4096              NA
## 4097    4.843800e+09
## 4098    4.671800e+09
## 4099    5.324250e+09
## 4100    5.097283e+09
## 4101    4.981589e+09
## 4102    4.832812e+09
## 4103    4.724691e+09
## 4104    4.696344e+09
## 4105    4.677248e+09
## 4106    4.610096e+09
## 4107    4.657699e+09
## 4108    4.529928e+09
## 4109    4.465657e+09
## 4110    4.784925e+09
## 4111    4.674007e+09
## 4112    4.217451e+09
## 4113    3.819500e+09
## 4114    3.444500e+09
## 4115    3.209500e+09
## 4116    3.106500e+09
## 4117    3.054500e+09
## 4118    3.059500e+09
## 4119    2.951822e+09
## 4120    2.817083e+09
## 4121    2.498384e+09
## 4122    2.363645e+09
## 4123    2.216974e+09
## 4124    2.151345e+09
## 4125    2.063342e+09
## 4126    1.957000e+09
## 4127    2.020584e+09
## 4128    2.012131e+09
## 4129    2.006165e+09
## 4130    1.812758e+09
## 4131    1.704370e+09
## 4132    1.547755e+09
## 4133    1.409536e+09
## 4134    1.346890e+09
## 4135    1.236017e+09
## 4136    1.163924e+09
## 4137    1.114205e+09
## 4138    1.012281e+09
## 4139    6.703625e+08
## 4140    5.528837e+08
## 4141    4.950977e+08
## 4142    4.359113e+08
## 4143    4.021786e+08
## 4144    3.118093e+08
## 4145              NA
## 4146              NA
## 4147              NA
## 4148              NA
## 4149              NA
## 4150              NA
## 4151              NA
## 4152              NA
## 4153              NA
## 4154              NA
## 4155              NA
## 4156              NA
## 4157              NA
## 4158              NA
## 4159              NA
## 4160    6.820538e+10
## 4161    6.137113e+10
## 4162    6.440965e+10
## 4163    6.003126e+10
## 4164    5.472660e+10
## 4165    4.772266e+10
## 4166    5.645473e+10
## 4167    7.881384e+10
## 4168    7.552798e+10
## 4169    6.568510e+10
## 4170    6.175779e+10
## 4171    5.722249e+10
## 4172    5.087408e+10
## 4173    6.076348e+10
## 4174    4.527740e+10
## 4175    3.695431e+10
## 4176    3.020757e+10
## 4177    2.314435e+10
## 4178    1.782779e+10
## 4179    1.459425e+10
## 4180    1.235482e+10
## 4181    1.273686e+10
## 4182    1.213849e+10
## 4183    1.522201e+10
## 4184    1.412841e+10
## 4185    1.475685e+10
## 4186    1.397268e+10
## 4187    1.493202e+10
## 4188    1.628099e+10
## 4189    1.703704e+10
## 4190    1.800000e+10
## 4191    2.165000e+10
## 4192              NA
## 4193              NA
## 4194              NA
## 4195              NA
## 4196              NA
## 4197              NA
## 4198              NA
## 4199              NA
## 4200              NA
## 4201              NA
## 4202              NA
## 4203              NA
## 4204              NA
## 4205              NA
## 4206              NA
## 4207              NA
## 4208              NA
## 4209              NA
## 4210              NA
## 4211              NA
## 4212              NA
## 4213              NA
## 4214              NA
## 4215              NA
## 4216              NA
## 4217              NA
## 4218              NA
## 4219              NA
## 4220              NA
## 4221              NA
## 4222              NA
## 4223    5.941042e+11
## 4224    5.252118e+11
## 4225    5.358309e+11
## 4226    5.432991e+11
## 4227    5.027647e+11
## 4228    4.760628e+11
## 4229    4.623356e+11
## 4230    5.353902e+11
## 4231    5.217910e+11
## 4232    4.961529e+11
## 4233    5.233304e+11
## 4234    4.814209e+11
## 4235    4.832542e+11
## 4236    5.173281e+11
## 4237    4.709222e+11
## 4238    4.082598e+11
## 4239    3.857148e+11
## 4240    3.692147e+11
## 4241    3.180825e+11
## 4242    2.583836e+11
## 4243    2.367461e+11
## 4244    2.367925e+11
## 4245    2.582457e+11
## 4246    2.585283e+11
## 4247    2.527081e+11
## 4248    2.792014e+11
## 4249    2.880256e+11
## 4250    2.448841e+11
## 4251    2.247218e+11
## 4252    2.347817e+11
## 4253    2.105110e+11
## 4254    2.053317e+11
## 4255    1.642211e+11
## 4256    1.622991e+11
## 4257    1.493944e+11
## 4258    1.200188e+11
## 4259    8.626826e+10
## 4260    8.334953e+10
## 4261    8.718424e+10
## 4262    9.209593e+10
## 4263    1.047300e+11
## 4264    1.268293e+11
## 4265    1.163155e+11
## 4266    1.012465e+11
## 4267    8.283991e+10
## 4268    7.111388e+10
## 4269    6.567819e+10
## 4270    5.603308e+10
## 4271    4.774380e+10
## 4272    3.720942e+10
## 4273    2.982166e+10
## 4274    2.670620e+10
## 4275    2.371074e+10
## 4276    2.137635e+10
## 4277    1.999204e+10
## 4278    1.865188e+10
## 4279    1.737146e+10
## 4280    1.596011e+10
## 4281    1.426002e+10
## 4282    1.326402e+10
## 4283    1.240015e+10
## 4284    1.165872e+10
## 4285              NA
## 4286    2.491500e+09
## 4287    2.080000e+09
## 4288    2.416500e+09
## 4289    2.315000e+09
## 4290    2.286000e+09
## 4291    2.258500e+09
## 4292    2.210500e+09
## 4293    2.138000e+09
## 4294    2.029500e+09
## 4295    1.903000e+09
## 4296    1.819500e+09
## 4297    1.738500e+09
## 4298    1.680500e+09
## 4299    1.729000e+09
## 4300    1.696000e+09
## 4301    1.581000e+09
## 4302    1.461500e+09
## 4303    1.389500e+09
## 4304    1.298000e+09
## 4305    1.233000e+09
## 4306    1.163000e+09
## 4307    1.116000e+09
## 4308    9.750000e+08
## 4309    9.140000e+08
## 4310    8.680000e+08
## 4311    8.515000e+08
## 4312    8.185000e+08
## 4313    7.715000e+08
## 4314    7.510000e+08
## 4315    6.935000e+08
## 4316    5.990000e+08
## 4317    5.495000e+08
## 4318    3.691339e+08
## 4319    3.200934e+08
## 4320    2.810826e+08
## 4321    2.316383e+08
## 4322    2.126437e+08
## 4323    2.143819e+08
## 4324    1.921032e+08
## 4325    1.822063e+08
## 4326    1.960899e+08
## 4327    1.979382e+08
## 4328    1.518000e+08
## 4329    1.363000e+08
## 4330    1.176500e+08
## 4331    9.690583e+07
## 4332    1.180663e+08
## 4333    1.032164e+08
## 4334    7.834356e+07
## 4335    6.606250e+07
## 4336    5.920732e+07
## 4337    5.323353e+07
## 4338    4.730539e+07
## 4339    4.491018e+07
## 4340    4.737931e+07
## 4341    4.440559e+07
## 4342    4.006993e+07
## 4343    3.619383e+07
## 4344    3.374941e+07
## 4345    3.185692e+07
## 4346    2.996437e+07
## 4347    2.807189e+07
## 4348              NA
## 4349    1.714492e+10
## 4350    1.565155e+10
## 4351    1.439169e+10
## 4352    1.426241e+10
## 4353    1.270166e+10
## 4354    1.182107e+10
## 4355    1.138816e+10
## 4356    1.328453e+10
## 4357    1.251785e+10
## 4358    1.114136e+10
## 4359    1.069332e+10
## 4360    9.535345e+09
## 4361    9.738627e+09
## 4362    9.787735e+09
## 4363    8.169049e+09
## 4364    7.034112e+09
## 4365    6.567654e+09
## 4366    6.190271e+09
## 4367    5.349258e+09
## 4368    4.194343e+09
## 4369    3.666223e+09
## 4370    3.519991e+09
## 4371    3.677394e+09
## 4372    2.455093e+09
## 4373    2.268302e+09
## 4374    2.361117e+09
## 4375    2.169627e+09
## 4376    1.598076e+09
## 4377    2.274558e+09
## 4378    1.695315e+09
## 4379    1.986438e+09
## 4380    1.959965e+09
## 4381    1.502294e+09
## 4382    1.620246e+09
## 4383    1.562412e+09
## 4384    1.336102e+09
## 4385    1.045713e+09
## 4386    1.051134e+09
## 4387    1.095348e+09
## 4388    1.267778e+09
## 4389    1.291120e+09
## 4390    1.405252e+09
## 4391    1.186231e+09
## 4392    9.288433e+08
## 4393    7.500497e+08
## 4394    6.984082e+08
## 4395    6.768701e+08
## 4396    5.546548e+08
## 4397    5.043760e+08
## 4398    4.103319e+08
## 4399    3.350730e+08
## 4400    3.336278e+08
## 4401    3.307482e+08
## 4402    3.263231e+08
## 4403    3.062220e+08
## 4404    3.029253e+08
## 4405    2.899087e+08
## 4406    2.698190e+08
## 4407    2.539276e+08
## 4408    2.364349e+08
## 4409    2.356682e+08
## 4410    2.261956e+08
## 4411              NA
## 4412    7.286607e+09
## 4413    6.887147e+09
## 4414    7.423465e+09
## 4415    7.225977e+09
## 4416    7.142316e+09
## 4417    6.899911e+09
## 4418    6.654541e+09
## 4419    6.413988e+09
## 4420    6.465756e+09
## 4421    6.378188e+09
## 4422    6.312691e+09
## 4423    6.634526e+09
## 4424    6.656000e+09
## 4425    6.980000e+09
## 4426    6.767000e+09
## 4427    6.144000e+09
## 4428    4.868136e+09
## 4429    4.484703e+09
## 4430    4.186525e+09
## 4431    3.937228e+09
## 4432    3.680483e+09
## 4433    3.480219e+09
## 4434    3.324433e+09
## 4435    3.130748e+09
## 4436    2.932827e+09
## 4437    2.695390e+09
## 4438    2.030750e+09
## 4439    1.867160e+09
## 4440    1.820360e+09
## 4441    1.679900e+09
## 4442    1.634900e+09
## 4443    1.592400e+09
## 4444    1.501500e+09
## 4445    1.415100e+09
## 4446    1.296500e+09
## 4447    1.173500e+09
## 4448    1.039500e+09
## 4449    9.857000e+08
## 4450    8.894000e+08
## 4451    7.855000e+08
## 4452    7.391000e+08
## 4453    6.133000e+08
## 4454    5.172000e+08
## 4455    4.758000e+08
## 4456    4.470000e+08
## 4457    3.863000e+08
## 4458    3.450000e+08
## 4459    3.126000e+08
## 4460    2.695000e+08
## 4461    2.354000e+08
## 4462    2.111000e+08
## 4463    1.863000e+08
## 4464    1.649000e+08
## 4465    1.500000e+08
## 4466    1.551030e+08
## 4467    1.341734e+08
## 4468    1.143390e+08
## 4469    1.075667e+08
## 4470    9.636665e+07
## 4471    9.414999e+07
## 4472    8.924999e+07
## 4473    8.446665e+07
## 4474              NA
## 4475    2.539553e+09
## 4476    2.325184e+09
## 4477    2.535657e+09
## 4478    2.446866e+09
## 4479    2.450365e+09
## 4480    2.158972e+09
## 4481    2.003598e+09
## 4482    1.907091e+09
## 4483    1.756216e+09
## 4484    1.781281e+09
## 4485    1.777101e+09
## 4486    1.547991e+09
## 4487    1.234014e+09
## 4488    1.227809e+09
## 4489    1.168309e+09
## 4490    8.749899e+08
## 4491    7.969381e+08
## 4492    6.825239e+08
## 4493    6.040420e+08
## 4494    5.208496e+08
## 4495    4.614445e+08
## 4496    4.244641e+08
## 4497    3.992688e+08
## 4498    3.634528e+08
## 4499    3.522610e+08
## 4500    3.034355e+08
## 4501    2.904648e+08
## 4502    2.589856e+08
## 4503    2.259981e+08
## 4504    2.402158e+08
## 4505    2.403200e+08
## 4506    2.876582e+08
## 4507    2.647252e+08
## 4508    2.722410e+08
## 4509    2.427709e+08
## 4510    1.912307e+08
## 4511    1.632723e+08
## 4512    1.604600e+08
## 4513    1.566872e+08
## 4514    1.413665e+08
## 4515    1.391504e+08
## 4516    1.287174e+08
## 4517              NA
## 4518              NA
## 4519              NA
## 4520              NA
## 4521              NA
## 4522              NA
## 4523              NA
## 4524              NA
## 4525              NA
## 4526              NA
## 4527              NA
## 4528              NA
## 4529              NA
## 4530              NA
## 4531              NA
## 4532              NA
## 4533              NA
## 4534              NA
## 4535              NA
## 4536              NA
## 4537              NA
## 4538    4.040821e+10
## 4539    3.662984e+10
## 4540    4.089532e+10
## 4541    4.028765e+10
## 4542    3.750864e+10
## 4543    3.394113e+10
## 4544    3.300020e+10
## 4545    3.299619e+10
## 4546    3.065934e+10
## 4547    2.708450e+10
## 4548    2.396303e+10
## 4549    1.964963e+10
## 4550    1.733999e+10
## 4551    1.667432e+10
## 4552    1.312018e+10
## 4553    1.145187e+10
## 4554    9.549078e+09
## 4555    8.773452e+09
## 4556    8.082365e+09
## 4557    7.905485e+09
## 4558    8.141538e+09
## 4559    8.397913e+09
## 4560    8.285076e+09
## 4561    8.497546e+09
## 4562    7.925673e+09
## 4563    7.396967e+09
## 4564    6.715220e+09
## 4565    5.981245e+09
## 4566    5.734677e+09
## 4567    5.643893e+09
## 4568    5.343274e+09
## 4569    4.867583e+09
## 4570    4.715979e+09
## 4571    4.597616e+09
## 4572    4.347956e+09
## 4573    3.959379e+09
## 4574    5.377277e+09
## 4575    6.169482e+09
## 4576    5.422656e+09
## 4577    5.594118e+09
## 4578    5.891607e+09
## 4579    4.537488e+09
## 4580    4.421344e+09
## 4581    3.758221e+09
## 4582    3.227436e+09
## 4583    2.731984e+09
## 4584    2.404698e+09
## 4585    2.100250e+09
## 4586    1.262969e+09
## 4587    1.257616e+09
## 4588    1.095623e+09
## 4589    1.017003e+09
## 4590    9.296296e+08
## 4591    8.579125e+08
## 4592    7.558081e+08
## 4593    6.691919e+08
## 4594    6.043771e+08
## 4595    5.394915e+08
## 4596    4.788060e+08
## 4597    4.446652e+08
## 4598    4.066846e+08
## 4599    3.738794e+08
## 4600              NA
## 4601    2.336536e+10
## 4602    1.995047e+10
## 4603    2.020248e+10
## 4604    2.018351e+10
## 4605    1.808012e+10
## 4606    1.691333e+10
## 4607    1.621154e+10
## 4608    1.855834e+10
## 4609    1.817850e+10
## 4610    1.722685e+10
## 4611    1.864472e+10
## 4612    1.717678e+10
## 4613    1.761384e+10
## 4614    1.911274e+10
## 4615    1.577877e+10
## 4616    1.286461e+10
## 4617    1.122295e+10
## 4618    1.015755e+10
## 4619    8.498561e+09
## 4620    6.728771e+09
## 4621    5.800775e+09
## 4622    5.567406e+09
## 4623    4.685733e+09
## 4624    4.116699e+09
## 4625    3.671817e+09
## 4626    2.786045e+09
## 4627    1.866573e+09
## 4628    1.255802e+09
## 4629              NA
## 4630              NA
## 4631              NA
## 4632              NA
## 4633              NA
## 4634              NA
## 4635              NA
## 4636              NA
## 4637              NA
## 4638              NA
## 4639              NA
## 4640              NA
## 4641              NA
## 4642              NA
## 4643              NA
## 4644              NA
## 4645              NA
## 4646              NA
## 4647              NA
## 4648              NA
## 4649              NA
## 4650              NA
## 4651              NA
## 4652              NA
## 4653              NA
## 4654              NA
## 4655              NA
## 4656              NA
## 4657              NA
## 4658              NA
## 4659              NA
## 4660              NA
## 4661              NA
## 4662              NA
## 4663              NA
## 4664    1.761479e+10
## 4665    1.493007e+10
## 4666    1.669593e+10
## 4667    1.703190e+10
## 4668    1.610518e+10
## 4669    1.508258e+10
## 4670    1.353074e+10
## 4671    1.547006e+10
## 4672    1.427175e+10
## 4673    1.390751e+10
## 4674    1.511072e+10
## 4675    1.263732e+10
## 4676    1.011852e+10
## 4677    1.073076e+10
## 4678    1.056727e+10
## 4679    9.919158e+09
## 4680    9.918907e+09
## 4681    8.957468e+09
## 4682    7.511582e+09
## 4683    5.438857e+09
## 4684    5.489608e+09
## 4685    5.788330e+09
## 4686    5.484257e+09
## 4687    4.790459e+09
## 4688    5.020215e+09
## 4689    4.847753e+09
## 4690    4.730611e+09
## 4691    4.259331e+09
## 4692    4.160086e+09
## 4693    4.146514e+09
## 4694    3.942793e+09
## 4695    3.790567e+09
## 4696    3.083801e+09
## 4697    2.644537e+09
## 4698    1.965275e+09
## 4699    1.392635e+09
## 4700    1.114764e+09
## 4701    1.240796e+09
## 4702    1.172258e+09
## 4703    1.014907e+09
## 4704    1.073862e+09
## 4705    1.060924e+09
## 4706    8.198773e+08
## 4707    5.903767e+08
## 4708    4.516033e+08
## 4709    3.720101e+08
## 4710    3.551724e+08
## 4711    3.060338e+08
## 4712    2.441291e+08
## 4713    1.644669e+08
## 4714    1.274565e+08
## 4715    9.624511e+07
## 4716    7.735691e+07
## 4717    6.624826e+07
## 4718    5.864644e+07
## 4719    5.146444e+07
## 4720    4.579087e+07
## 4721    4.161397e+07
## 4722    3.809115e+07
## 4723    3.564321e+07
## 4724    3.290234e+07
## 4725    3.041231e+07
## 4726              NA
## 4727    1.608981e+12
## 4728    1.448560e+12
## 4729    1.873274e+12
## 4730    1.916947e+12
## 4731    2.063508e+12
## 4732    1.795700e+12
## 4733    1.802214e+12
## 4734    2.455994e+12
## 4735    2.472807e+12
## 4736    2.465189e+12
## 4737    2.616202e+12
## 4738    2.208872e+12
## 4739    1.667020e+12
## 4740    1.695825e+12
## 4741    1.397084e+12
## 4742    1.107640e+12
## 4743    8.916302e+11
## 4744    6.692938e+11
## 4745    5.582292e+11
## 4746    5.097888e+11
## 4747    5.599913e+11
## 4748    6.554482e+11
## 4749    5.996421e+11
## 4750    8.637110e+11
## 4751    8.832065e+11
## 4752    8.504264e+11
## 4753    7.693333e+11
## 4754    5.253699e+11
## 4755    3.682958e+11
## 4756    3.281880e+11
## 4757    3.426092e+11
## 4758    3.907256e+11
## 4759    3.470281e+11
## 4760    2.588161e+11
## 4761    2.375180e+11
## 4762    2.158786e+11
## 4763    1.761237e+11
## 4764    1.883400e+11
## 4765    1.896565e+11
## 4766    2.713141e+11
## 4767    2.580152e+11
## 4768    2.373935e+11
## 4769    2.213382e+11
## 4770    2.002786e+11
## 4771    1.763441e+11
## 4772    1.531689e+11
## 4773    1.292036e+11
## 4774    1.097945e+11
## 4775    8.359228e+10
## 4776    5.843486e+10
## 4777    4.886983e+10
## 4778    4.232766e+10
## 4779    3.717164e+10
## 4780    3.393046e+10
## 4781    3.108639e+10
## 4782    2.828332e+10
## 4783    2.246552e+10
## 4784    2.096373e+10
## 4785    2.328771e+10
## 4786    1.923175e+10
## 4787    1.727594e+10
## 4788    1.703047e+10
## 4789              NA
## 4790              NA
## 4791              NA
## 4792              NA
## 4793              NA
## 4794              NA
## 4795              NA
## 4796              NA
## 4797              NA
## 4798              NA
## 4799              NA
## 4800              NA
## 4801              NA
## 4802              NA
## 4803              NA
## 4804              NA
## 4805              NA
## 4806              NA
## 4807              NA
## 4808              NA
## 4809              NA
## 4810              NA
## 4811              NA
## 4812              NA
## 4813              NA
## 4814              NA
## 4815              NA
## 4816              NA
## 4817              NA
## 4818              NA
## 4819              NA
## 4820              NA
## 4821              NA
## 4822              NA
## 4823              NA
## 4824              NA
## 4825              NA
## 4826              NA
## 4827              NA
## 4828              NA
## 4829              NA
## 4830              NA
## 4831              NA
## 4832              NA
## 4833              NA
## 4834              NA
## 4835              NA
## 4836              NA
## 4837              NA
## 4838              NA
## 4839              NA
## 4840              NA
## 4841              NA
## 4842              NA
## 4843              NA
## 4844              NA
## 4845              NA
## 4846              NA
## 4847              NA
## 4848              NA
## 4849              NA
## 4850              NA
## 4851              NA
## 4852              NA
## 4853    1.400657e+10
## 4854    1.200583e+10
## 4855    1.346942e+10
## 4856    1.356735e+10
## 4857    1.212810e+10
## 4858    1.140085e+10
## 4859    1.293039e+10
## 4860    1.709834e+10
## 4861    1.809383e+10
## 4862    1.904794e+10
## 4863    1.852532e+10
## 4864    1.370737e+10
## 4865    1.073237e+10
## 4866    1.439310e+10
## 4867    1.224769e+10
## 4868    1.147070e+10
## 4869    9.531403e+09
## 4870    7.872333e+09
## 4871    6.557333e+09
## 4872    5.843329e+09
## 4873    5.601091e+09
## 4874    6.001153e+09
## 4875    4.600000e+09
## 4876    4.051147e+09
## 4877    5.197333e+09
## 4878    5.115603e+09
## 4879    4.734020e+09
## 4880    4.087338e+09
## 4881    4.105706e+09
## 4882    4.183548e+09
## 4883    3.701667e+09
## 4884    3.520552e+09
## 4885    2.985468e+09
## 4886    2.690718e+09
## 4887    2.754463e+09
## 4888    2.358593e+09
## 4889    3.523613e+09
## 4890    3.782523e+09
## 4891    3.844723e+09
## 4892    4.264252e+09
## 4893    4.366214e+09
## 4894    4.928825e+09
## 4895    2.803780e+09
## 4896    1.941601e+09
## 4897    1.732721e+09
## 4898    1.423061e+09
## 4899    1.168304e+09
## 4900    1.073577e+09
## 4901    4.330920e+08
## 4902    2.708186e+08
## 4903    1.975232e+08
## 4904    1.790801e+08
## 4905    1.612113e+08
## 4906    1.608193e+08
## 4907    1.390304e+08
## 4908    1.327584e+08
## 4909    1.140402e+08
## 4910              NA
## 4911              NA
## 4912              NA
## 4913              NA
## 4914              NA
## 4915              NA
## 4916    8.405631e+10
## 4917    7.024028e+10
## 4918    6.891588e+10
## 4919    6.636354e+10
## 4920    5.919945e+10
## 4921    5.395390e+10
## 4922    5.078200e+10
## 4923    5.708201e+10
## 4924    5.581014e+10
## 4925    5.430086e+10
## 4926    5.767824e+10
## 4927    5.068206e+10
## 4928    5.202351e+10
## 4929    5.448138e+10
## 4930    4.443281e+10
## 4931    3.437981e+10
## 4932    2.986928e+10
## 4933    2.615789e+10
## 4934    2.114498e+10
## 4935    1.640285e+10
## 4936    1.418350e+10
## 4937    1.324583e+10
## 4938    1.362733e+10
## 4939    1.503070e+10
## 4940    1.131599e+10
## 4941    1.229420e+10
## 4942    1.898329e+10
## 4943    9.697417e+09
## 4944    1.082971e+10
## 4945    1.035052e+10
## 4946    1.094355e+10
## 4947    2.063209e+10
## 4948    2.198844e+10
## 4949    2.255594e+10
## 4950    2.810100e+10
## 4951    2.024929e+10
## 4952    1.715542e+10
## 4953    1.759494e+10
## 4954    1.656367e+10
## 4955    1.934200e+10
## 4956    1.987000e+10
## 4957    1.983923e+10
## 4958              NA
## 4959              NA
## 4960              NA
## 4961              NA
## 4962              NA
## 4963              NA
## 4964              NA
## 4965              NA
## 4966              NA
## 4967              NA
## 4968              NA
## 4969              NA
## 4970              NA
## 4971              NA
## 4972              NA
## 4973              NA
## 4974              NA
## 4975              NA
## 4976              NA
## 4977              NA
## 4978              NA
## 4979    1.973762e+10
## 4980    1.793361e+10
## 4981    1.617816e+10
## 4982    1.589007e+10
## 4983    1.410696e+10
## 4984    1.283336e+10
## 4985    1.183216e+10
## 4986    1.394302e+10
## 4987    1.344430e+10
## 4988    1.256102e+10
## 4989    1.208030e+10
## 4990    1.010962e+10
## 4991    9.450697e+09
## 4992    9.451436e+09
## 4993    7.625723e+09
## 4994    6.547420e+09
## 4995    6.146353e+09
## 4996    5.451689e+09
## 4997    4.740768e+09
## 4998    3.622350e+09
## 4999    3.190371e+09
## 5000    2.968370e+09
## 5001    3.389567e+09
## 5002    2.804902e+09
## 5003    2.447669e+09
## 5004    2.586551e+09
## 5005    2.379518e+09
## 5006    1.895291e+09
## 5007    3.199536e+09
## 5008    3.356693e+09
## 5009    3.135046e+09
## 5010    3.101301e+09
## 5011    2.615588e+09
## 5012    2.616041e+09
## 5013    2.369835e+09
## 5014    2.036303e+09
## 5015    1.552493e+09
## 5016    1.459880e+09
## 5017    1.600279e+09
## 5018    1.754450e+09
## 5019    1.775842e+09
## 5020    1.928719e+09
## 5021    1.748481e+09
## 5022    1.475583e+09
## 5023    1.131225e+09
## 5024    9.765472e+08
## 5025    9.399727e+08
## 5026    7.511333e+08
## 5027    6.747735e+08
## 5028    5.785956e+08
## 5029    4.824111e+08
## 5030    4.584043e+08
## 5031    4.782986e+08
## 5032    4.604427e+08
## 5033    4.507540e+08
## 5034    4.338898e+08
## 5035    4.229168e+08
## 5036    4.103216e+08
## 5037    3.940406e+08
## 5038    3.795670e+08
## 5039    3.502472e+08
## 5040    3.304428e+08
## 5041              NA
## 5042    2.779813e+09
## 5043    2.649672e+09
## 5044    2.576519e+09
## 5045    2.660124e+09
## 5046    2.712324e+09
## 5047    2.639321e+09
## 5048    3.104004e+09
## 5049    2.705783e+09
## 5050    2.451607e+09
## 5051    2.333341e+09
## 5052    2.235821e+09
## 5053    2.032135e+09
## 5054    1.781455e+09
## 5055    1.611836e+09
## 5056    1.356199e+09
## 5057    1.273375e+09
## 5058    1.117113e+09
## 5059    9.152573e+08
## 5060    7.846544e+08
## 5061    8.253945e+08
## 5062    8.767947e+08
## 5063    8.704861e+08
## 5064    8.080772e+08
## 5065    8.937708e+08
## 5066    9.728963e+08
## 5067    8.690339e+08
## 5068    1.000428e+09
## 5069    9.250306e+08
## 5070    9.386326e+08
## 5071    1.083038e+09
## 5072    1.167398e+09
## 5073    1.132101e+09
## 5074    1.113924e+09
## 5075    1.082403e+09
## 5076    1.131466e+09
## 5077    1.201725e+09
## 5078    1.149979e+09
## 5079    9.871439e+08
## 5080    1.082926e+09
## 5081    1.013222e+09
## 5082    9.690467e+08
## 5083    9.197267e+08
## 5084    7.824967e+08
## 5085    6.102256e+08
## 5086    5.475356e+08
## 5087    4.484128e+08
## 5088    4.209867e+08
## 5089    3.452635e+08
## 5090    3.043398e+08
## 5091    2.468046e+08
## 5092    2.528423e+08
## 5093    2.427326e+08
## 5094    1.902057e+08
## 5095    1.832000e+08
## 5096    1.782971e+08
## 5097    1.654446e+08
## 5098    1.589950e+08
## 5099    2.607500e+08
## 5100    2.327500e+08
## 5101    2.135000e+08
## 5102    2.030000e+08
## 5103    1.960000e+08
## 5104              NA
## 5105    1.936174e+09
## 5106    1.703699e+09
## 5107    1.981846e+09
## 5108    1.966501e+09
## 5109    1.769787e+09
## 5110    1.663009e+09
## 5111    1.596800e+09
## 5112    1.859899e+09
## 5113    1.850470e+09
## 5114    1.741810e+09
## 5115    1.865916e+09
## 5116    1.663913e+09
## 5117    1.697737e+09
## 5118    1.787968e+09
## 5119    1.513040e+09
## 5120    1.107571e+09
## 5121    9.722413e+08
## 5122    9.249403e+08
## 5123    8.132605e+08
## 5124    6.205076e+08
## 5125    5.630906e+08
## 5126    5.392273e+08
## 5127    5.924167e+08
## 5128    5.219106e+08
## 5129    4.906087e+08
## 5130    5.019791e+08
## 5131    4.871490e+08
## 5132    4.065807e+08
## 5133    4.904174e+08
## 5134    3.571610e+08
## 5135    3.198271e+08
## 5136    3.068911e+08
## 5137    2.674485e+08
## 5138    2.643081e+08
## 5139    2.352532e+08
## 5140    1.906512e+08
## 5141    1.377282e+08
## 5142    1.320191e+08
## 5143    1.384762e+08
## 5144    1.406308e+08
## 5145    1.394681e+08
## 5146    1.422469e+08
## 5147              NA
## 5148              NA
## 5149              NA
## 5150              NA
## 5151              NA
## 5152              NA
## 5153              NA
## 5154              NA
## 5155              NA
## 5156              NA
## 5157              NA
## 5158              NA
## 5159              NA
## 5160              NA
## 5161              NA
## 5162              NA
## 5163              NA
## 5164              NA
## 5165              NA
## 5166              NA
## 5167              NA
## 5168    2.696106e+10
## 5169    2.587280e+10
## 5170    2.708939e+10
## 5171    2.457175e+10
## 5172    2.217720e+10
## 5173    2.001675e+10
## 5174    1.804995e+10
## 5175    1.670261e+10
## 5176    1.522799e+10
## 5177    1.405444e+10
## 5178    1.282954e+10
## 5179    1.124228e+10
## 5180    1.040185e+10
## 5181    1.035191e+10
## 5182    8.639236e+09
## 5183    7.274596e+09
## 5184    6.293046e+09
## 5185    5.337833e+09
## 5186    4.658247e+09
## 5187    4.284028e+09
## 5188    3.984001e+09
## 5189    3.654032e+09
## 5190    3.517242e+09
## 5191    3.120426e+09
## 5192    3.443413e+09
## 5193    3.506696e+09
## 5194    3.441206e+09
## 5195    2.791435e+09
## 5196    2.533728e+09
## 5197              NA
## 5198              NA
## 5199              NA
## 5200              NA
## 5201              NA
## 5202              NA
## 5203              NA
## 5204              NA
## 5205              NA
## 5206              NA
## 5207              NA
## 5208              NA
## 5209              NA
## 5210              NA
## 5211              NA
## 5212              NA
## 5213              NA
## 5214              NA
## 5215    5.884439e+08
## 5216    7.028992e+08
## 5217    5.055494e+08
## 5218    9.699114e+08
## 5219    7.184012e+08
## 5220    9.788732e+08
## 5221    1.065714e+09
## 5222    9.628571e+08
## 5223    9.142857e+08
## 5224    8.685714e+08
## 5225    7.828571e+08
## 5226    7.285714e+08
## 5227    6.600000e+08
## 5228    6.428571e+08
## 5229    6.371429e+08
## 5230              NA
## 5231    4.533828e+10
## 5232    4.077324e+10
## 5233    3.967098e+10
## 5234    3.997384e+10
## 5235    3.609855e+10
## 5236    3.381434e+10
## 5237    3.221023e+10
## 5238    3.638655e+10
## 5239    3.372862e+10
## 5240    3.015506e+10
## 5241    3.063091e+10
## 5242    2.750750e+10
## 5243    2.793297e+10
## 5244    2.771514e+10
## 5245    2.392825e+10
## 5246    2.091051e+10
## 5247    1.950985e+10
## 5248    1.882622e+10
## 5249    1.597032e+10
## 5250    1.241725e+10
## 5251    1.095349e+10
## 5252    1.056658e+10
## 5253    1.156583e+10
## 5254    1.129814e+10
## 5255    1.078946e+10
## 5256    1.109354e+10
## 5257    1.086477e+10
## 5258    8.902446e+09
## 5259    1.618181e+10
## 5260    1.207178e+10
## 5261    1.184019e+10
## 5262    1.231448e+10
## 5263    1.101257e+10
## 5264    1.223606e+10
## 5265    1.304966e+10
## 5266    1.185706e+10
## 5267    8.544810e+09
## 5268    7.311937e+09
## 5269    6.870201e+09
## 5270    6.611255e+09
## 5271    6.610937e+09
## 5272    6.674568e+09
## 5273    5.919004e+09
## 5274    4.662852e+09
## 5275    3.394664e+09
## 5276    2.898090e+09
## 5277    2.857037e+09
## 5278    2.157415e+09
## 5279    1.901393e+09
## 5280    1.498252e+09
## 5281    1.236941e+09
## 5282    1.151217e+09
## 5283    1.100551e+09
## 5284    1.046191e+09
## 5285    9.361754e+08
## 5286    8.511127e+08
## 5287    8.140834e+08
## 5288    7.766501e+08
## 5289    7.183207e+08
## 5290    6.942477e+08
## 5291    6.527776e+08
## 5292    6.142061e+08
## 5293              NA
## 5294    1.988336e+12
## 5295    1.645423e+12
## 5296    1.742015e+12
## 5297    1.725329e+12
## 5298    1.649266e+12
## 5299    1.527995e+12
## 5300    1.556509e+12
## 5301    1.805750e+12
## 5302    1.846597e+12
## 5303    1.828366e+12
## 5304    1.793327e+12
## 5305    1.617343e+12
## 5306    1.374625e+12
## 5307    1.552990e+12
## 5308    1.468820e+12
## 5309    1.319265e+12
## 5310    1.173109e+12
## 5311    1.026690e+12
## 5312    8.955406e+11
## 5313    7.606493e+11
## 5314    7.389818e+11
## 5315    7.447734e+11
## 5316    6.784122e+11
## 5317    6.340000e+11
## 5318    6.549870e+11
## 5319    6.285464e+11
## 5320    6.040316e+11
## 5321    5.781393e+11
## 5322    5.771708e+11
## 5323    5.923877e+11
## 5324    6.103282e+11
## 5325    5.939296e+11
## 5326    5.650557e+11
## 5327    5.073544e+11
## 5328    4.313167e+11
## 5329    3.774379e+11
## 5330    3.647565e+11
## 5331    3.553726e+11
## 5332    3.405477e+11
## 5333    3.135065e+11
## 5334    3.062149e+11
## 5335    2.738538e+11
## 5336    2.430721e+11
## 5337    2.186329e+11
## 5338    2.116122e+11
## 5339    2.065756e+11
## 5340    1.738340e+11
## 5341    1.604087e+11
## 5342    1.313219e+11
## 5343    1.130828e+11
## 5344    9.927196e+10
## 5345    8.789610e+10
## 5346    7.914841e+10
## 5347    7.182981e+10
## 5348    6.566866e+10
## 5349    6.108838e+10
## 5350    5.451518e+10
## 5351    4.937752e+10
## 5352    4.502999e+10
## 5353    4.222745e+10
## 5354    4.093495e+10
## 5355    4.046172e+10
## 5356              NA
## 5357    5.898450e+09
## 5358    5.608989e+09
## 5359    5.943589e+09
## 5360    5.530378e+09
## 5361    5.166467e+09
## 5362    4.909499e+09
## 5363    4.708337e+09
## 5364    4.563018e+09
## 5365    4.405955e+09
## 5366    4.291159e+09
## 5367    4.186224e+09
## 5368    4.156991e+09
## 5369    4.281869e+09
## 5370    4.586114e+09
## 5371    4.466439e+09
## 5372    4.200439e+09
## 5373              NA
## 5374              NA
## 5375              NA
## 5376              NA
## 5377              NA
## 5378              NA
## 5379              NA
## 5380              NA
## 5381              NA
## 5382              NA
## 5383              NA
## 5384              NA
## 5385              NA
## 5386              NA
## 5387              NA
## 5388              NA
## 5389              NA
## 5390              NA
## 5391              NA
## 5392              NA
## 5393              NA
## 5394              NA
## 5395              NA
## 5396              NA
## 5397              NA
## 5398              NA
## 5399              NA
## 5400              NA
## 5401              NA
## 5402              NA
## 5403              NA
## 5404              NA
## 5405              NA
## 5406              NA
## 5407              NA
## 5408              NA
## 5409              NA
## 5410              NA
## 5411              NA
## 5412              NA
## 5413              NA
## 5414              NA
## 5415              NA
## 5416              NA
## 5417              NA
## 5418              NA
## 5419              NA
## 5420    2.516498e+09
## 5421    2.326721e+09
## 5422    2.221301e+09
## 5423    2.220979e+09
## 5424    2.072350e+09
## 5425    1.825018e+09
## 5426    1.695826e+09
## 5427    1.894814e+09
## 5428    1.691544e+09
## 5429    2.510127e+09
## 5430    2.437983e+09
## 5431    2.142591e+09
## 5432    2.067382e+09
## 5433    1.993408e+09
## 5434    1.699811e+09
## 5435    1.461860e+09
## 5436    1.337894e+09
## 5437    1.272361e+09
## 5438    1.142316e+09
## 5439    9.960682e+08
## 5440    9.326486e+08
## 5441    9.167773e+08
## 5442    9.994775e+08
## 5443    9.673383e+08
## 5444    9.377415e+08
## 5445    1.007791e+09
## 5446    1.115390e+09
## 5447    8.511744e+08
## 5448    1.278781e+09
## 5449    1.411918e+09
## 5450    1.377375e+09
## 5451    1.440711e+09
## 5452    1.233930e+09
## 5453    1.264899e+09
## 5454    1.200992e+09
## 5455    1.122265e+09
## 5456    8.648498e+08
## 5457    6.378206e+08
## 5458    6.586794e+08
## 5459    7.483123e+08
## 5460    6.948035e+08
## 5461    7.970480e+08
## 5462    7.007649e+08
## 5463    6.105785e+08
## 5464    5.072981e+08
## 5465    4.511524e+08
## 5466    3.786600e+08
## 5467    2.813987e+08
## 5468    2.711831e+08
## 5469    2.303179e+08
## 5470    2.014508e+08
## 5471    1.891066e+08
## 5472    1.880392e+08
## 5473    1.917674e+08
## 5474    1.638205e+08
## 5475    1.579300e+08
## 5476    1.505748e+08
## 5477    1.420251e+08
## 5478    1.293791e+08
## 5479    1.244827e+08
## 5480    1.231346e+08
## 5481    1.121556e+08
## 5482              NA
## 5483    1.177998e+10
## 5484    1.071540e+10
## 5485    1.131495e+10
## 5486    1.123917e+10
## 5487    1.000040e+10
## 5488    1.009778e+10
## 5489    1.095039e+10
## 5490    1.394077e+10
## 5491    1.295354e+10
## 5492    1.236736e+10
## 5493    1.217231e+10
## 5494    1.066810e+10
## 5495    9.290729e+09
## 5496    1.039383e+10
## 5497    8.650138e+09
## 5498    7.428702e+09
## 5499    6.649307e+09
## 5500    4.422856e+09
## 5501    2.742815e+09
## 5502    1.997006e+09
## 5503    1.710843e+09
## 5504    1.388507e+09
## 5505    1.534674e+09
## 5506    1.744794e+09
## 5507    1.544690e+09
## 5508    1.607345e+09
## 5509    1.445920e+09
## 5510    1.179838e+09
## 5511    1.463251e+09
## 5512    1.881848e+09
## 5513    1.877138e+09
## 5514    1.738606e+09
## 5515    1.433686e+09
## 5516    1.482597e+09
## 5517    1.163427e+09
## 5518    1.067828e+09
## 5519    1.033070e+09
## 5520    9.191037e+08
## 5521    8.324158e+08
## 5522    8.343699e+08
## 5523    8.769376e+08
## 5524    1.033002e+09
## 5525    1.004316e+09
## 5526    1.113920e+09
## 5527    9.353605e+08
## 5528    8.660450e+08
## 5529    8.646021e+08
## 5530    6.525328e+08
## 5531    6.471995e+08
## 5532    5.854275e+08
## 5533    5.018667e+08
## 5534    4.692667e+08
## 5535    4.716356e+08
## 5536    4.539801e+08
## 5537    4.498263e+08
## 5538    4.327949e+08
## 5539    4.169263e+08
## 5540    3.922475e+08
## 5541    3.717670e+08
## 5542    3.576357e+08
## 5543    3.339753e+08
## 5544    3.135827e+08
## 5545              NA
## 5546              NA
## 5547              NA
## 5548              NA
## 5549              NA
## 5550              NA
## 5551              NA
## 5552              NA
## 5553              NA
## 5554              NA
## 5555              NA
## 5556              NA
## 5557              NA
## 5558              NA
## 5559              NA
## 5560    1.151526e+10
## 5561    9.676410e+09
## 5562    8.827299e+09
## 5563    8.553957e+09
## 5564    7.332574e+09
## 5565    6.663436e+09
## 5566    6.233310e+09
## 5567    6.439403e+09
## 5568    6.263178e+09
## 5569    5.945445e+09
## 5570              NA
## 5571              NA
## 5572              NA
## 5573              NA
## 5574              NA
## 5575              NA
## 5576              NA
## 5577              NA
## 5578              NA
## 5579              NA
## 5580              NA
## 5581              NA
## 5582              NA
## 5583              NA
## 5584              NA
## 5585              NA
## 5586              NA
## 5587              NA
## 5588              NA
## 5589              NA
## 5590              NA
## 5591              NA
## 5592              NA
## 5593              NA
## 5594              NA
## 5595              NA
## 5596              NA
## 5597              NA
## 5598              NA
## 5599              NA
## 5600              NA
## 5601              NA
## 5602              NA
## 5603              NA
## 5604              NA
## 5605              NA
## 5606              NA
## 5607              NA
## 5608              NA
## 5609    3.170585e+11
## 5610    2.527272e+11
## 5611    2.785847e+11
## 5612    2.954027e+11
## 5613    2.763649e+11
## 5614    2.492987e+11
## 5615    2.424966e+11
## 5616    2.594052e+11
## 5617    2.772395e+11
## 5618    2.671759e+11
## 5619    2.512249e+11
## 5620    2.171054e+11
## 5621    1.714126e+11
## 5622    1.796634e+11
## 5623    1.725659e+11
## 5624    1.538401e+11
## 5625    1.223150e+11
## 5626    9.907923e+10
## 5627    7.650758e+10
## 5628    7.029489e+10
## 5629    7.151708e+10
## 5630    7.824988e+10
## 5631    7.559610e+10
## 5632    8.199530e+10
## 5633    8.572890e+10
## 5634    7.857439e+10
## 5635    7.344706e+10
## 5636    5.700843e+10
## 5637    4.929777e+10
## 5638    4.596433e+10
## 5639    3.783479e+10
## 5640    3.311389e+10
## 5641    2.988569e+10
## 5642    2.604023e+10
## 5643    2.225541e+10
## 5644    1.889105e+10
## 5645    1.770289e+10
## 5646    1.962253e+10
## 5647    2.035596e+10
## 5648    2.532589e+10
## 5649    3.450988e+10
## 5650    2.903671e+10
## 5651    2.180370e+10
## 5652    1.598993e+10
## 5653    1.396289e+10
## 5654    1.034193e+10
## 5655    7.622217e+09
## 5656    1.621040e+10
## 5657    1.683626e+10
## 5658    1.185382e+10
## 5659    1.088411e+10
## 5660    9.126310e+09
## 5661    8.377093e+09
## 5662    7.167087e+09
## 5663    7.013196e+09
## 5664    7.072641e+09
## 5665    6.026594e+09
## 5666    5.982348e+09
## 5667    5.668188e+09
## 5668    5.416273e+09
## 5669    4.609727e+09
## 5670    4.110000e+09
## 5671              NA
## 5672    1.773406e+13
## 5673    1.468767e+13
## 5674    1.427994e+13
## 5675    1.389482e+13
## 5676    1.231041e+13
## 5677    1.123328e+13
## 5678    1.106155e+13
## 5679    1.047568e+13
## 5680    9.570406e+12
## 5681    8.532230e+12
## 5682    7.551500e+12
## 5683    6.087164e+12
## 5684    5.101703e+12
## 5685    4.594307e+12
## 5686    3.550343e+12
## 5687    2.752132e+12
## 5688    2.285966e+12
## 5689    1.955347e+12
## 5690    1.660288e+12
## 5691    1.470550e+12
## 5692    1.339396e+12
## 5693    1.211347e+12
## 5694    1.093997e+12
## 5695    1.029043e+12
## 5696    9.616040e+11
## 5697    8.637467e+11
## 5698    7.345479e+11
## 5699    5.643247e+11
## 5700    4.447313e+11
## 5701    4.269157e+11
## 5702    3.833733e+11
## 5703    3.608579e+11
## 5704    3.477681e+11
## 5705    3.123536e+11
## 5706    2.729730e+11
## 5707    3.007581e+11
## 5708    3.094880e+11
## 5709    2.599465e+11
## 5710    2.306867e+11
## 5711    2.050897e+11
## 5712    1.958664e+11
## 5713    1.911492e+11
## 5714    1.782806e+11
## 5715    1.495408e+11
## 5716    1.749381e+11
## 5717    1.539405e+11
## 5718    1.634316e+11
## 5719    1.441821e+11
## 5720    1.385443e+11
## 5721    1.136876e+11
## 5722    9.980096e+10
## 5723    9.260297e+10
## 5724    7.970591e+10
## 5725    7.084654e+10
## 5726    7.288163e+10
## 5727    7.672029e+10
## 5728    7.043627e+10
## 5729    5.970834e+10
## 5730    5.070680e+10
## 5731    4.720936e+10
## 5732    5.005687e+10
## 5733    5.971647e+10
## 5734              NA
## 5735    3.144641e+11
## 5736    2.703000e+11
## 5737    3.231095e+11
## 5738    3.341982e+11
## 5739    3.118837e+11
## 5740    2.828250e+11
## 5741    2.934818e+11
## 5742    3.811121e+11
## 5743    3.821161e+11
## 5744    3.709213e+11
## 5745    3.349439e+11
## 5746    2.865631e+11
## 5747    2.323978e+11
## 5748    2.421869e+11
## 5749    2.061818e+11
## 5750    1.616186e+11
## 5751    1.456192e+11
## 5752    1.170815e+11
## 5753    9.464138e+10
## 5754    9.796300e+10
## 5755    9.821175e+10
## 5756    9.988658e+10
## 5757    8.618616e+10
## 5758    9.844374e+10
## 5759    1.066595e+11
## 5760    9.716011e+10
## 5761    9.250728e+10
## 5762    8.170350e+10
## 5763    6.644680e+10
## 5764    5.841899e+10
## 5765    4.917557e+10
## 5766    4.784409e+10
## 5767    3.954008e+10
## 5768    3.921255e+10
## 5769    3.637331e+10
## 5770    3.494249e+10
## 5771    3.489441e+10
## 5772    3.825312e+10
## 5773    3.872982e+10
## 5774    3.896804e+10
## 5775    3.638837e+10
## 5776    3.340074e+10
## 5777    2.794041e+10
## 5778    2.326351e+10
## 5779    1.947096e+10
## 5780    1.534140e+10
## 5781    1.309863e+10
## 5782    1.237003e+10
## 5783    1.031576e+10
## 5784    8.671359e+09
## 5785    7.820381e+09
## 5786    7.198360e+09
## 5787    6.450175e+09
## 5788    5.960213e+09
## 5789    5.825170e+09
## 5790    5.428519e+09
## 5791    5.760762e+09
## 5792    5.973367e+09
## 5793    4.836167e+09
## 5794    4.955544e+09
## 5795    4.540448e+09
## 5796    4.031153e+09
## 5797              NA
## 5798    1.296090e+09
## 5799    1.225039e+09
## 5800    1.195020e+09
## 5801    1.188798e+09
## 5802    1.077440e+09
## 5803    1.012836e+09
## 5804    9.660295e+08
## 5805    1.149588e+09
## 5806    1.116224e+09
## 5807    1.015843e+09
## 5808    1.023086e+09
## 5809    9.079787e+08
## 5810    9.053411e+08
## 5811    9.156592e+08
## 5812    7.956731e+08
## 5813    6.984318e+08
## 5814    6.538451e+08
## 5815    6.337061e+08
## 5816    5.468852e+08
## 5817    4.259647e+08
## 5818    3.785120e+08
## 5819    3.511366e+08
## 5820    3.824550e+08
## 5821    3.701068e+08
## 5822    3.644456e+08
## 5823    3.960538e+08
## 5824    3.984618e+08
## 5825    3.191892e+08
## 5826    4.528814e+08
## 5827    4.573886e+08
## 5828    4.241088e+08
## 5829    4.296221e+08
## 5830    3.414768e+08
## 5831    3.565000e+08
## 5832    3.375259e+08
## 5833    2.791977e+08
## 5834    1.967261e+08
## 5835    1.846972e+08
## 5836    1.916220e+08
## 5837    1.840090e+08
## 5838    1.963500e+08
## 5839    2.122182e+08
## 5840              NA
## 5841              NA
## 5842              NA
## 5843              NA
## 5844              NA
## 5845              NA
## 5846              NA
## 5847              NA
## 5848              NA
## 5849              NA
## 5850              NA
## 5851              NA
## 5852              NA
## 5853              NA
## 5854              NA
## 5855              NA
## 5856              NA
## 5857              NA
## 5858              NA
## 5859              NA
## 5860              NA
## 5861    5.535097e+10
## 5862    4.871696e+10
## 5863    5.177583e+10
## 5864    4.756821e+10
## 5865    3.801927e+10
## 5866    3.713480e+10
## 5867    3.791770e+10
## 5868    3.590904e+10
## 5869    3.267975e+10
## 5870    2.930624e+10
## 5871    2.583975e+10
## 5872    2.156572e+10
## 5873    1.864837e+10
## 5874    1.978852e+10
## 5875    1.673707e+10
## 5876    1.445190e+10
## 5877    1.196448e+10
## 5878    1.029748e+10
## 5879    8.937567e+09
## 5880    8.728039e+09
## 5881    7.438189e+09
## 5882    1.908805e+10
## 5883    4.711259e+09
## 5884    6.217806e+09
## 5885    6.090841e+09
## 5886    5.771455e+09
## 5887    5.643439e+09
## 5888    5.820382e+09
## 5889    1.070625e+10
## 5890    8.227201e+09
## 5891    9.633911e+09
## 5892    9.349765e+09
## 5893    9.021863e+09
## 5894    8.861300e+09
## 5895    7.661625e+09
## 5896    8.095367e+09
## 5897    7.195043e+09
## 5898    7.857729e+09
## 5899    1.100671e+10
## 5900    1.365167e+10
## 5901    1.253782e+10
## 5902    1.439493e+10
## 5903    1.506842e+10
## 5904    1.537261e+10
## 5905    1.234442e+10
## 5906    9.648583e+09
## 5907    1.023734e+10
## 5908    9.596960e+09
## 5909    7.870239e+09
## 5910    6.173713e+09
## 5911    5.594770e+09
## 5912    4.877685e+09
## 5913    5.032435e+09
## 5914    3.909781e+09
## 5915    3.384063e+09
## 5916    4.532660e+09
## 5917    4.043902e+09
## 5918    2.881545e+09
## 5919    6.213186e+09
## 5920    3.779841e+09
## 5921    3.086747e+09
## 5922    3.359404e+09
## 5923              NA
## 5924    1.336623e+10
## 5925    1.048315e+10
## 5926    1.275034e+10
## 5927    1.367004e+10
## 5928    1.109482e+10
## 5929    1.021934e+10
## 5930    1.189026e+10
## 5931    1.791291e+10
## 5932    1.795872e+10
## 5933    1.769291e+10
## 5934    1.565538e+10
## 5935    1.314840e+10
## 5936    9.723300e+09
## 5937    1.164986e+10
## 5938    8.782704e+09
## 5939    8.072305e+09
## 5940    6.650001e+09
## 5941    4.656975e+09
## 5942    3.503723e+09
## 5943    3.034251e+09
## 5944    2.796705e+09
## 5945    3.227928e+09
## 5946    2.354773e+09
## 5947    1.949481e+09
## 5948    2.322719e+09
## 5949    2.540698e+09
## 5950    2.116004e+09
## 5951    1.769365e+09
## 5952    2.684324e+09
## 5953    2.933223e+09
## 5954    2.724854e+09
## 5955    2.798746e+09
## 5956    2.389593e+09
## 5957    2.212536e+09
## 5958    2.297754e+09
## 5959    1.849268e+09
## 5960    2.160873e+09
## 5961    2.193581e+09
## 5962    2.097274e+09
## 5963    2.160641e+09
## 5964    1.993512e+09
## 5965    1.705797e+09
## 5966    1.198750e+09
## 5967    8.787718e+08
## 5968    7.652240e+08
## 5969    7.545496e+08
## 5970    7.671027e+08
## 5971    5.853646e+08
## 5972    5.419734e+08
## 5973    4.106693e+08
## 5974    3.221280e+08
## 5975    2.749607e+08
## 5976    2.650400e+08
## 5977    2.512475e+08
## 5978    2.373974e+08
## 5979    2.206136e+08
## 5980    1.983181e+08
## 5981    1.856937e+08
## 5982    1.722334e+08
## 5983    1.665212e+08
## 5984    1.516757e+08
## 5985    1.317319e+08
## 5986              NA
## 5987    6.428244e+10
## 5988    6.215800e+10
## 5989    6.441767e+10
## 5990    6.242017e+10
## 5991    6.051604e+10
## 5992    5.884702e+10
## 5993    5.644192e+10
## 5994    5.201641e+10
## 5995    5.094967e+10
## 5996    4.723165e+10
## 5997    4.276262e+10
## 5998    3.765861e+10
## 5999    3.074571e+10
## 6000    3.080174e+10
## 6001    2.688470e+10
## 6002    2.271554e+10
## 6003    2.004064e+10
## 6004    1.861059e+10
## 6005    1.727176e+10
## 6006    1.657882e+10
## 6007    1.597617e+10
## 6008    1.501363e+10
## 6009    1.425487e+10
## 6010    1.368426e+10
## 6011    1.261460e+10
## 6012    1.167842e+10
## 6013    1.157859e+10
## 6014    1.048678e+10
## 6015    9.582866e+09
## 6016    8.564044e+09
## 6017    7.196276e+09
## 6018    5.711688e+09
## 6019    5.251026e+09
## 6020    4.614630e+09
## 6021    4.532952e+09
## 6022    4.418984e+09
## 6023    3.919204e+09
## 6024    3.660476e+09
## 6025    3.146770e+09
## 6026    2.606621e+09
## 6027    2.623807e+09
## 6028    4.831447e+09
## 6029    4.035519e+09
## 6030    3.523209e+09
## 6031    3.072427e+09
## 6032    2.412555e+09
## 6033    1.960863e+09
## 6034    1.666545e+09
## 6035    1.528916e+09
## 6036    1.238252e+09
## 6037    1.077153e+09
## 6038    9.848302e+08
## 6039    8.536302e+08
## 6040    7.738415e+08
## 6041    6.994566e+08
## 6042    6.473056e+08
## 6043    5.929812e+08
## 6044    5.425784e+08
## 6045    5.119021e+08
## 6046    4.791808e+08
## 6047    4.903252e+08
## 6048    5.075138e+08
## 6049              NA
## 6050    7.004319e+10
## 6051    6.134858e+10
## 6052    5.853942e+10
## 6053    5.801147e+10
## 6054    5.158816e+10
## 6055    4.796423e+10
## 6056    4.581464e+10
## 6057    4.884301e+10
## 6058    4.276024e+10
## 6059    3.630231e+10
## 6060    3.669371e+10
## 6061    3.493631e+10
## 6062    3.388681e+10
## 6063    3.407824e+10
## 6064    2.876009e+10
## 6065    2.528141e+10
## 6066    2.403692e+10
## 6067    2.351058e+10
## 6068    2.125176e+10
## 6069    1.805438e+10
## 6070    1.681054e+10
## 6071    1.657753e+10
## 6072    1.887099e+10
## 6073    1.961965e+10
## 6074    1.804756e+10
## 6075    1.807115e+10
## 6076    1.100015e+10
## 6077    8.313557e+09
## 6078    1.104576e+10
## 6079    1.115297e+10
## 6080    1.049263e+10
## 6081    1.079585e+10
## 6082    9.757411e+09
## 6083    1.025517e+10
## 6084    1.008765e+10
## 6085    9.158302e+09
## 6086    6.977650e+09
## 6087    6.841639e+09
## 6088    6.838185e+09
## 6089    7.567110e+09
## 6090    8.432588e+09
## 6091    1.017562e+10
## 6092    9.142936e+09
## 6093    7.900525e+09
## 6094    6.265068e+09
## 6095    4.662054e+09
## 6096    3.893839e+09
## 6097    3.070152e+09
## 6098    2.508421e+09
## 6099    1.849401e+09
## 6100    1.584128e+09
## 6101    1.455483e+09
## 6102    1.361360e+09
## 6103    1.281281e+09
## 6104    1.082923e+09
## 6105    1.024103e+09
## 6106    9.197714e+08
## 6107    9.210633e+08
## 6108    7.610470e+08
## 6109    6.452843e+08
## 6110    6.182456e+08
## 6111    5.462036e+08
## 6112              NA
## 6113    6.895508e+10
## 6114    5.747201e+10
## 6115    6.232798e+10
## 6116    6.231684e+10
## 6117    5.632384e+10
## 6118    5.239749e+10
## 6119    5.024278e+10
## 6120    5.842398e+10
## 6121    5.903207e+10
## 6122    5.736936e+10
## 6123    6.340829e+10
## 6124    6.067209e+10
## 6125    6.332439e+10
## 6126    7.094330e+10
## 6127    6.064194e+10
## 6128    5.091502e+10
## 6129    4.583510e+10
## 6130    4.201346e+10
## 6131    3.502290e+10
## 6132    2.708526e+10
## 6133    2.325957e+10
## 6134    2.180786e+10
## 6135    2.362895e+10
## 6136    2.573213e+10
## 6137    2.402965e+10
## 6138    2.400483e+10
## 6139    2.264372e+10
## 6140              NA
## 6141              NA
## 6142              NA
## 6143              NA
## 6144              NA
## 6145              NA
## 6146              NA
## 6147              NA
## 6148              NA
## 6149              NA
## 6150              NA
## 6151              NA
## 6152              NA
## 6153              NA
## 6154              NA
## 6155              NA
## 6156              NA
## 6157              NA
## 6158              NA
## 6159              NA
## 6160              NA
## 6161              NA
## 6162              NA
## 6163              NA
## 6164              NA
## 6165              NA
## 6166              NA
## 6167              NA
## 6168              NA
## 6169              NA
## 6170              NA
## 6171              NA
## 6172              NA
## 6173              NA
## 6174              NA
## 6175              NA
## 6176              NA
## 6177    1.073520e+11
## 6178    1.034280e+11
## 6179    1.000500e+11
## 6180    9.685100e+10
## 6181    9.137000e+10
## 6182    8.713300e+10
## 6183    8.065600e+10
## 6184    7.714800e+10
## 6185    7.314100e+10
## 6186    6.899000e+10
## 6187    5.956296e+10
## 6188    5.748148e+10
## 6189    5.630213e+10
## 6190    5.426287e+10
## 6191    4.883593e+10
## 6192    4.264384e+10
## 6193    3.820300e+10
## 6194    3.590120e+10
## 6195    3.359050e+10
## 6196    3.168240e+10
## 6197    3.056540e+10
## 6198    2.836462e+10
## 6199    2.573633e+10
## 6200    2.536591e+10
## 6201    2.501737e+10
## 6202    3.042980e+10
## 6203    2.844833e+10
## 6204    2.236725e+10
## 6205    2.208586e+10
## 6206    2.431656e+10
## 6207    2.864544e+10
## 6208    2.702347e+10
## 6209    2.745900e+10
## 6210    2.521394e+10
## 6211    2.422657e+10
## 6212    2.292049e+10
## 6213    2.403938e+10
## 6214    2.220494e+10
## 6215    2.095351e+10
## 6216    2.015025e+10
## 6217    1.991289e+10
## 6218    1.958444e+10
## 6219    1.784471e+10
## 6220    1.420616e+10
## 6221    1.378958e+10
## 6222    1.302742e+10
## 6223    1.140596e+10
## 6224    9.987710e+09
## 6225    8.135151e+09
## 6226    6.914658e+09
## 6227    5.693005e+09
## 6228              NA
## 6229              NA
## 6230              NA
## 6231              NA
## 6232              NA
## 6233              NA
## 6234              NA
## 6235              NA
## 6236              NA
## 6237              NA
## 6238              NA
## 6239    2.699612e+09
## 6240    2.496175e+09
## 6241    2.995185e+09
## 6242    3.020389e+09
## 6243    3.009497e+09
## 6244    3.014749e+09
## 6245    3.042737e+09
## 6246    3.048436e+09
## 6247    3.039944e+09
## 6248    3.024525e+09
## 6249    2.933128e+09
## 6250              NA
## 6251              NA
## 6252              NA
## 6253              NA
## 6254              NA
## 6255              NA
## 6256              NA
## 6257              NA
## 6258              NA
## 6259              NA
## 6260              NA
## 6261              NA
## 6262              NA
## 6263              NA
## 6264              NA
## 6265              NA
## 6266              NA
## 6267              NA
## 6268              NA
## 6269              NA
## 6270              NA
## 6271              NA
## 6272              NA
## 6273              NA
## 6274              NA
## 6275              NA
## 6276              NA
## 6277              NA
## 6278              NA
## 6279              NA
## 6280              NA
## 6281              NA
## 6282              NA
## 6283              NA
## 6284              NA
## 6285              NA
## 6286              NA
## 6287              NA
## 6288              NA
## 6289              NA
## 6290              NA
## 6291              NA
## 6292              NA
## 6293              NA
## 6294              NA
## 6295              NA
## 6296              NA
## 6297              NA
## 6298              NA
## 6299              NA
## 6300              NA
## 6301              NA
## 6302    2.840787e+10
## 6303    2.500845e+10
## 6304    2.594450e+10
## 6305    2.559647e+10
## 6306    2.294673e+10
## 6307    2.104695e+10
## 6308    1.990919e+10
## 6309    2.322678e+10
## 6310    2.396114e+10
## 6311    2.504866e+10
## 6312    2.764209e+10
## 6313    2.580025e+10
## 6314    2.594539e+10
## 6315    2.784470e+10
## 6316    2.396876e+10
## 6317    2.007279e+10
## 6318    1.843341e+10
## 6319    1.732055e+10
## 6320    1.454733e+10
## 6321    1.142023e+10
## 6322    1.039790e+10
## 6323    9.985844e+09
## 6324    1.049791e+10
## 6325    1.024862e+10
## 6326    9.547819e+09
## 6327    1.001192e+10
## 6328    9.933133e+09
## 6329    7.425704e+09
## 6330    6.590291e+09
## 6331    6.912150e+09
## 6332    5.770197e+09
## 6333    5.591130e+09
## 6334    4.563483e+09
## 6335    4.278793e+09
## 6336    3.704814e+09
## 6337    3.090734e+09
## 6338    2.430412e+09
## 6339    2.278249e+09
## 6340    2.160364e+09
## 6341    2.159242e+09
## 6342    2.087496e+09
## 6343    2.154311e+09
## 6344    1.288715e+09
## 6345    9.640265e+08
## 6346    7.348880e+08
## 6347    5.760901e+08
## 6348    4.899148e+08
## 6349              NA
## 6350              NA
## 6351              NA
## 6352              NA
## 6353              NA
## 6354              NA
## 6355              NA
## 6356              NA
## 6357              NA
## 6358              NA
## 6359              NA
## 6360              NA
## 6361              NA
## 6362              NA
## 6363              NA
## 6364              NA
## 6365    2.817779e+11
## 6366    2.459746e+11
## 6367    2.525482e+11
## 6368    2.490005e+11
## 6369    2.186289e+11
## 6370    1.962721e+11
## 6371    1.880331e+11
## 6372    2.093588e+11
## 6373    2.116856e+11
## 6374    2.088577e+11
## 6375    2.295627e+11
## 6376    2.090699e+11
## 6377    2.074343e+11
## 6378    2.368165e+11
## 6379    1.901838e+11
## 6380    1.562641e+11
## 6381    1.371435e+11
## 6382    1.198144e+11
## 6383    1.000905e+11
## 6384    8.219600e+10
## 6385    6.780803e+10
## 6386    6.182817e+10
## 6387    6.517313e+10
## 6388    6.680743e+10
## 6389    6.218016e+10
## 6390    6.738779e+10
## 6391    6.014717e+10
## 6392    4.785020e+10
## 6393    4.086675e+10
## 6394    3.480501e+10
## 6395    2.985992e+10
## 6396    4.072895e+10
## 6397              NA
## 6398              NA
## 6399              NA
## 6400              NA
## 6401              NA
## 6402              NA
## 6403              NA
## 6404              NA
## 6405              NA
## 6406              NA
## 6407              NA
## 6408              NA
## 6409              NA
## 6410              NA
## 6411              NA
## 6412              NA
## 6413              NA
## 6414              NA
## 6415              NA
## 6416              NA
## 6417              NA
## 6418              NA
## 6419              NA
## 6420              NA
## 6421              NA
## 6422              NA
## 6423              NA
## 6424              NA
## 6425              NA
## 6426              NA
## 6427              NA
## 6428    3.983033e+11
## 6429    3.552224e+11
## 6430    3.464987e+11
## 6431    3.568412e+11
## 6432    3.321211e+11
## 6433    3.131159e+11
## 6434    3.026731e+11
## 6435    3.529936e+11
## 6436    3.435844e+11
## 6437    3.271489e+11
## 6438    3.440031e+11
## 6439    3.219953e+11
## 6440    3.212413e+11
## 6441    3.533610e+11
## 6442    3.194234e+11
## 6443    2.828849e+11
## 6444    2.644673e+11
## 6445    2.513730e+11
## 6446    2.180960e+11
## 6447    1.786352e+11
## 6448    1.647914e+11
## 6449    1.641587e+11
## 6450    1.779652e+11
## 6451    1.769919e+11
## 6452    1.735376e+11
## 6453    1.876323e+11
## 6454    1.850069e+11
## 6455    1.561624e+11
## 6456    1.431956e+11
## 6457    1.529157e+11
## 6458    1.392247e+11
## 6459    1.382473e+11
## 6460    1.124092e+11
## 6461    1.155528e+11
## 6462    1.094144e+11
## 6463    8.807876e+10
## 6464    6.265857e+10
## 6465    5.910524e+10
## 6466    6.064478e+10
## 6467    6.041284e+10
## 6468    6.187781e+10
## 6469    7.112753e+10
## 6470    7.036624e+10
## 6471    6.036293e+10
## 6472    4.978434e+10
## 6473    4.457589e+10
## 6474    4.047441e+10
## 6475    3.416044e+10
## 6476    3.073063e+10
## 6477    2.323238e+10
## 6478    1.908573e+10
## 6479    1.707546e+10
## 6480    1.541490e+10
## 6481    1.350557e+10
## 6482    1.305906e+10
## 6483    1.193174e+10
## 6484              NA
## 6485              NA
## 6486              NA
## 6487              NA
## 6488              NA
## 6489              NA
## 6490              NA
## 6491    3.482987e+09
## 6492    3.181071e+09
## 6493    3.088854e+09
## 6494    2.913467e+09
## 6495    2.762581e+09
## 6496    2.604955e+09
## 6497    2.424392e+09
## 6498    2.214679e+09
## 6499    2.042817e+09
## 6500    1.353633e+09
## 6501    1.239145e+09
## 6502    1.128612e+09
## 6503    1.049111e+09
## 6504    9.991053e+08
## 6505    8.479189e+08
## 6506    7.688737e+08
## 6507    7.086332e+08
## 6508    6.660721e+08
## 6509    6.220447e+08
## 6510    5.911220e+08
## 6511    5.724174e+08
## 6512    5.512309e+08
## 6513    5.360801e+08
## 6514    5.142679e+08
## 6515    5.026755e+08
## 6516    4.940046e+08
## 6517    4.977240e+08
## 6518    4.916892e+08
## 6519    4.660485e+08
## 6520    4.780583e+08
## 6521    4.624220e+08
## 6522    4.523281e+08
## 6523    4.092201e+08
## 6524    3.957945e+08
## 6525    3.733717e+08
## 6526              NA
## 6527    3.409895e+08
## 6528              NA
## 6529              NA
## 6530              NA
## 6531              NA
## 6532              NA
## 6533              NA
## 6534              NA
## 6535              NA
## 6536              NA
## 6537              NA
## 6538              NA
## 6539              NA
## 6540              NA
## 6541              NA
## 6542              NA
## 6543              NA
## 6544              NA
## 6545              NA
## 6546              NA
## 6547              NA
## 6548              NA
## 6549              NA
## 6550              NA
## 6551              NA
## 6552              NA
## 6553              NA
## 6554    5.541815e+08
## 6555    5.042148e+08
## 6556    6.115370e+08
## 6557    5.547704e+08
## 6558    5.215519e+08
## 6559    5.762296e+08
## 6560    5.407370e+08
## 6561    5.202074e+08
## 6562    4.982963e+08
## 6563    4.859963e+08
## 6564    5.010259e+08
## 6565    4.938259e+08
## 6566    4.890741e+08
## 6567    4.581889e+08
## 6568    4.213741e+08
## 6569    3.902519e+08
## 6570    3.642556e+08
## 6571    3.672000e+08
## 6572    3.433111e+08
## 6573    3.331963e+08
## 6574    3.402037e+08
## 6575    3.334704e+08
## 6576    3.317593e+08
## 6577    3.224111e+08
## 6578    3.029889e+08
## 6579    2.922852e+08
## 6580    2.745222e+08
## 6581    2.643741e+08
## 6582    2.455259e+08
## 6583    2.340593e+08
## 6584    2.197630e+08
## 6585    2.014296e+08
## 6586    1.851372e+08
## 6587    1.711062e+08
## 6588    1.518688e+08
## 6589    1.351620e+08
## 6590    1.194919e+08
## 6591    1.091571e+08
## 6592    9.866519e+07
## 6593    8.952758e+07
## 6594    8.210739e+07
## 6595    7.280465e+07
## 6596    5.501776e+07
## 6597    5.713022e+07
## 6598    4.587295e+07
## 6599              NA
## 6600              NA
## 6601              NA
## 6602              NA
## 6603              NA
## 6604              NA
## 6605              NA
## 6606              NA
## 6607              NA
## 6608              NA
## 6609              NA
## 6610              NA
## 6611              NA
## 6612              NA
## 6613              NA
## 6614              NA
## 6615              NA
## 6616              NA
## 6617    9.424345e+10
## 6618    7.884470e+10
## 6619    8.894130e+10
## 6620    8.555538e+10
## 6621    7.999798e+10
## 6622    7.570472e+10
## 6623    7.116483e+10
## 6624    6.717991e+10
## 6625    6.268216e+10
## 6626    6.068154e+10
## 6627    5.802975e+10
## 6628    5.386018e+10
## 6629    4.826103e+10
## 6630    4.812255e+10
## 6631    4.396542e+10
## 6632    3.787987e+10
## 6633    3.577757e+10
## 6634    2.232240e+10
## 6635    2.140317e+10
## 6636    2.713751e+10
## 6637    2.560177e+10
## 6638    2.430572e+10
## 6639    2.213662e+10
## 6640    2.167223e+10
## 6641    2.001748e+10
## 6642    1.824169e+10
## 6643    1.663737e+10
## 6644    1.464471e+10
## 6645    1.308104e+10
## 6646    1.160538e+10
## 6647    9.824498e+09
## 6648    7.073676e+09
## 6649    6.686593e+09
## 6650    5.374315e+09
## 6651    5.826987e+09
## 6652    6.122198e+09
## 6653    5.044593e+09
## 6654    1.159400e+10
## 6655    9.220600e+09
## 6656    8.267400e+09
## 6657    7.561300e+09
## 6658    6.761300e+09
## 6659    5.498800e+09
## 6660    4.734400e+09
## 6661    4.587100e+09
## 6662    3.951500e+09
## 6663    3.599200e+09
## 6664    2.925700e+09
## 6665    2.344800e+09
## 6666    1.987400e+09
## 6667    1.666500e+09
## 6668    1.485500e+09
## 6669    1.230500e+09
## 6670    1.079100e+09
## 6671    1.034800e+09
## 6672    9.839000e+08
## 6673    8.881000e+08
## 6674    1.025600e+09
## 6675    9.407999e+08
## 6676    8.241000e+08
## 6677    6.541002e+08
## 6678    6.723997e+08
## 6679              NA
## 6680    1.061659e+11
## 6681    9.929112e+10
## 6682    1.081080e+11
## 6683    1.075620e+11
## 6684    1.042959e+11
## 6685    9.993770e+10
## 6686    9.929038e+10
## 6687    1.017263e+11
## 6688    9.512966e+10
## 6689    8.792454e+10
## 6690    7.927666e+10
## 6691    6.955537e+10
## 6692    6.251969e+10
## 6693    6.176264e+10
## 6694    5.100778e+10
## 6695    4.680204e+10
## 6696    4.150708e+10
## 6697    3.659166e+10
## 6698    3.243286e+10
## 6699    2.854894e+10
## 6700    2.446832e+10
## 6701    1.832776e+10
## 6702    1.964527e+10
## 6703    2.798190e+10
## 6704    2.816205e+10
## 6705    2.522639e+10
## 6706    2.443288e+10
## 6707    2.270867e+10
## 6708    1.893872e+10
## 6709    1.809424e+10
## 6710    1.698854e+10
## 6711    1.523928e+10
## 6712    1.389083e+10
## 6713    1.305189e+10
## 6714    1.394543e+10
## 6715    1.531414e+10
## 6716    1.714909e+10
## 6717    1.691252e+10
## 6718    1.715248e+10
## 6719    1.992985e+10
## 6720    2.181077e+10
## 6721    1.788151e+10
## 6722    1.417517e+10
## 6723    1.192250e+10
## 6724    1.102635e+10
## 6725    9.091924e+09
## 6726    7.731677e+09
## 6727    6.599259e+09
## 6728    3.891756e+09
## 6729    3.185987e+09
## 6730    2.754220e+09
## 6731    2.862504e+09
## 6732    3.112167e+09
## 6733    2.582181e+09
## 6734    2.553596e+09
## 6735    2.429310e+09
## 6736    2.387048e+09
## 6737    2.244147e+09
## 6738    1.824344e+09
## 6739    1.518208e+09
## 6740    1.753850e+09
## 6741    2.069465e+09
## 6742              NA
## 6743    4.041428e+11
## 6744    3.652527e+11
## 6745    3.030809e+11
## 6746    2.497130e+11
## 6747    2.357337e+11
## 6748    3.324417e+11
## 6749    3.293666e+11
## 6750    3.055954e+11
## 6751    2.884341e+11
## 6752    2.791167e+11
## 6753    2.359897e+11
## 6754    2.189837e+11
## 6755    1.891470e+11
## 6756    1.628182e+11
## 6757    1.304378e+11
## 6758    1.074261e+11
## 6759    8.960067e+10
## 6760    7.878247e+10
## 6761    8.028846e+10
## 6762    8.514607e+10
## 6763    9.668464e+10
## 6764    9.983854e+10
## 6765    9.071070e+10
## 6766    8.482881e+10
## 6767    7.843658e+10
## 6768    6.762972e+10
## 6769    6.015925e+10
## 6770    5.189798e+10
## 6771    4.657863e+10
## 6772    4.185599e+10
## 6773    3.738784e+10
## 6774    4.297891e+10
## 6775    3.975630e+10
## 6776    3.498012e+10
## 6777    4.045562e+10
## 6778    4.125351e+10
## 6779    3.905350e+10
## 6780    3.397119e+10
## 6781    3.096624e+10
## 6782    2.765517e+10
## 6783    2.213608e+10
## 6784    2.166991e+10
## 6785    1.802057e+10
## 6786    1.481170e+10
## 6787    1.440081e+10
## 6788    1.331599e+10
## 6789    1.163218e+10
## 6790    9.228963e+09
## 6791    1.009853e+10
## 6792    9.299638e+09
## 6793    8.609283e+09
## 6794    8.042200e+09
## 6795    6.524455e+09
## 6796    5.932243e+09
## 6797    5.605484e+09
## 6798    5.278006e+09
## 6799    4.948668e+09
## 6800              NA
## 6801              NA
## 6802              NA
## 6803              NA
## 6804              NA
## 6805              NA
## 6806    2.873694e+10
## 6807    2.456302e+10
## 6808    2.688114e+10
## 6809    2.602085e+10
## 6810    2.497919e+10
## 6811    2.419143e+10
## 6812    2.343824e+10
## 6813    2.259347e+10
## 6814    2.199096e+10
## 6815    2.138615e+10
## 6816    2.028378e+10
## 6817    1.844792e+10
## 6818    1.760162e+10
## 6819    1.798689e+10
## 6820    1.701175e+10
## 6821    1.599989e+10
## 6822    1.469800e+10
## 6823    1.372481e+10
## 6824    1.324389e+10
## 6825    1.266419e+10
## 6826    1.228253e+10
## 6827    1.178493e+10
## 6828    1.128420e+10
## 6829    1.093667e+10
## 6830    1.022171e+10
## 6831    9.586328e+09
## 6832    8.921947e+09
## 6833    7.679384e+09
## 6834    6.680269e+09
## 6835    5.813399e+09
## 6836    5.252342e+09
## 6837    4.817542e+09
## 6838    4.372215e+09
## 6839    4.189880e+09
## 6840    3.958046e+09
## 6841    3.771663e+09
## 6842    3.800369e+09
## 6843    3.661683e+09
## 6844    3.506348e+09
## 6845    3.399189e+09
## 6846    3.437200e+09
## 6847    3.573960e+09
## 6848    3.463640e+09
## 6849    3.127960e+09
## 6850    2.941640e+09
## 6851    2.328280e+09
## 6852    1.884120e+09
## 6853    1.665880e+09
## 6854    1.442320e+09
## 6855    1.263720e+09
## 6856    1.186120e+09
## 6857    1.132920e+09
## 6858    1.049400e+09
## 6859    1.009760e+09
## 6860    9.762000e+08
## 6861    9.295200e+08
## 6862    8.777200e+08
## 6863              NA
## 6864              NA
## 6865              NA
## 6866              NA
## 6867              NA
## 6868              NA
## 6869    1.226939e+10
## 6870    1.009916e+10
## 6871    1.136413e+10
## 6872    1.309701e+10
## 6873    1.220091e+10
## 6874    1.124081e+10
## 6875    1.318550e+10
## 6876    2.176545e+10
## 6877    2.194884e+10
## 6878    2.238835e+10
## 6879    2.135734e+10
## 6880    1.631444e+10
## 6881    1.502780e+10
## 6882    1.974989e+10
## 6883    1.307172e+10
## 6884    1.008653e+10
## 6885    8.217369e+09
## 6886    4.410764e+09
## 6887    2.484746e+09
## 6888    1.806743e+09
## 6889    1.461139e+09
## 6890    1.045998e+09
## 6891    6.211179e+08
## 6892    3.706876e+08
## 6893    4.423378e+08
## 6894    2.324630e+08
## 6895    1.418534e+08
## 6896    1.008070e+08
## 6897    1.360479e+08
## 6898    1.347072e+08
## 6899    1.109060e+08
## 6900    1.121194e+08
## 6901    8.826597e+07
## 6902    1.005347e+08
## 6903    9.334585e+07
## 6904    7.640740e+07
## 6905    6.211856e+07
## 6906    5.032091e+07
## 6907    4.444246e+07
## 6908    4.429465e+07
## 6909    3.673142e+07
## 6910    5.064288e+07
## 6911              NA
## 6912              NA
## 6913    1.039875e+08
## 6914    1.036530e+08
## 6915    1.042956e+08
## 6916    9.415986e+07
## 6917    8.120323e+07
## 6918    6.542920e+07
## 6919    6.494695e+07
## 6920    6.633143e+07
## 6921    6.722571e+07
## 6922    6.751429e+07
## 6923    7.231745e+07
## 6924    6.911000e+07
## 6925    6.474833e+07
## 6926    1.271247e+07
## 6927    1.084010e+07
## 6928    9.122751e+06
## 6929              NA
## 6930              NA
## 6931              NA
## 6932              NA
## 6933              NA
## 6934              NA
## 6935              NA
## 6936              NA
## 6937              NA
## 6938              NA
## 6939              NA
## 6940              NA
## 6941              NA
## 6942    2.065002e+09
## 6943    1.589515e+09
## 6944    1.856696e+09
## 6945    1.380189e+09
## 6946    1.317974e+09
## 6947    1.211162e+09
## 6948    1.098426e+09
## 6949    1.109054e+09
## 6950    8.702477e+08
## 6951    7.293214e+08
## 6952    7.523685e+08
## 6953    7.063708e+08
## 6954    6.889213e+08
## 6955    7.455262e+08
## 6956    6.864901e+08
## 6957    6.935360e+08
## 6958    5.780156e+08
## 6959    5.316883e+08
## 6960    4.678727e+08
## 6961    4.771017e+08
## 6962              NA
## 6963              NA
## 6964              NA
## 6965              NA
## 6966              NA
## 6967              NA
## 6968              NA
## 6969              NA
## 6970              NA
## 6971              NA
## 6972              NA
## 6973              NA
## 6974              NA
## 6975              NA
## 6976              NA
## 6977              NA
## 6978              NA
## 6979              NA
## 6980              NA
## 6981              NA
## 6982              NA
## 6983              NA
## 6984              NA
## 6985              NA
## 6986              NA
## 6987              NA
## 6988              NA
## 6989              NA
## 6990              NA
## 6991              NA
## 6992              NA
## 6993              NA
## 6994              NA
## 6995    3.719117e+10
## 6996    3.137040e+10
## 6997    3.108190e+10
## 6998    3.062472e+10
## 6999    2.692439e+10
## 7000    2.407283e+10
## 7001    2.289076e+10
## 7002    2.663408e+10
## 7003    2.511575e+10
## 7004    2.301915e+10
## 7005    2.321399e+10
## 7006    1.952348e+10
## 7007    1.963303e+10
## 7008    2.434168e+10
## 7009    2.244913e+10
## 7010    1.702287e+10
## 7011    1.410679e+10
## 7012    1.214591e+10
## 7013    9.874013e+09
## 7014    7.367976e+09
## 7015    6.254650e+09
## 7016    5.686580e+09
## 7017    5.756912e+09
## 7018    5.674081e+09
## 7019    5.154421e+09
## 7020    4.786019e+09
## 7021    4.502971e+09
## 7022              NA
## 7023              NA
## 7024              NA
## 7025              NA
## 7026              NA
## 7027              NA
## 7028              NA
## 7029              NA
## 7030              NA
## 7031              NA
## 7032              NA
## 7033              NA
## 7034              NA
## 7035              NA
## 7036              NA
## 7037              NA
## 7038              NA
## 7039              NA
## 7040              NA
## 7041              NA
## 7042              NA
## 7043              NA
## 7044              NA
## 7045              NA
## 7046              NA
## 7047              NA
## 7048              NA
## 7049              NA
## 7050              NA
## 7051              NA
## 7052              NA
## 7053              NA
## 7054              NA
## 7055              NA
## 7056              NA
## 7057              NA
## 7058    4.743335e+09
## 7059    3.982226e+09
## 7060    4.495264e+09
## 7061    4.665237e+09
## 7062    4.402969e+09
## 7063    3.816022e+09
## 7064    4.063246e+09
## 7065    4.422968e+09
## 7066    4.597532e+09
## 7067    4.886533e+09
## 7068    4.820500e+09
## 7069    4.438778e+09
## 7070    3.580417e+09
## 7071    3.294093e+09
## 7072    3.469364e+09
## 7073    3.291354e+09
## 7074    3.178126e+09
## 7075    2.770083e+09
## 7076    2.197613e+09
## 7077    1.432228e+09
## 7078    1.542477e+09
## 7079    1.738101e+09
## 7080    1.547884e+09
## 7081    1.576904e+09
## 7082    1.716700e+09
## 7083    1.602760e+09
## 7084    1.698982e+09
## 7085    1.419293e+09
## 7086    1.357207e+09
## 7087    1.284766e+09
## 7088    1.156142e+09
## 7089    1.114703e+09
## 7090    6.969154e+08
## 7091    6.920167e+08
## 7092    5.841356e+08
## 7093    4.491466e+08
## 7094    3.600754e+08
## 7095    4.944757e+08
## 7096    5.553361e+08
## 7097    5.375760e+08
## 7098    5.707612e+08
## 7099    5.420005e+08
## 7100    4.120931e+08
## 7101    3.406164e+08
## 7102    3.040478e+08
## 7103    2.725391e+08
## 7104    2.883029e+08
## 7105    2.643120e+08
## 7106    2.219020e+08
## 7107    1.467413e+08
## 7108    1.364653e+08
## 7109    1.121378e+08
## 7110    1.054179e+08
## 7111    7.979840e+07
## 7112    7.475850e+07
## 7113    7.685846e+07
## 7114    7.027859e+07
## 7115    6.497928e+07
## 7116    5.412838e+07
## 7117    4.592706e+07
## 7118    4.302520e+07
## 7119    3.507616e+07
## 7120              NA
## 7121    1.112711e+11
## 7122    1.076577e+11
## 7123    9.591259e+10
## 7124    8.426935e+10
## 7125    8.177079e+10
## 7126    7.429662e+10
## 7127    6.458933e+10
## 7128    5.561223e+10
## 7129    4.764821e+10
## 7130    4.331072e+10
## 7131    3.195276e+10
## 7132    2.993379e+10
## 7133    3.243739e+10
## 7134    2.706691e+10
## 7135    1.970762e+10
## 7136    1.528086e+10
## 7137    1.240114e+10
## 7138    1.013119e+10
## 7139    8.623691e+09
## 7140    7.850809e+09
## 7141    8.231326e+09
## 7142    8.242392e+09
## 7143    7.700833e+09
## 7144    7.818225e+09
## 7145    8.589211e+09
## 7146    8.547940e+09
## 7147    7.663985e+09
## 7148    6.927951e+09
## 7149    8.830713e+09
## 7150    1.049299e+10
## 7151    1.346387e+10
## 7152    1.217517e+10
## 7153    1.147658e+10
## 7154    1.090894e+10
## 7155    1.052734e+10
## 7156    9.848601e+09
## 7157    9.480840e+09
## 7158    8.096302e+09
## 7159    8.567891e+09
## 7160    7.707678e+09
## 7161    7.324903e+09
## 7162              NA
## 7163              NA
## 7164              NA
## 7165              NA
## 7166              NA
## 7167              NA
## 7168              NA
## 7169              NA
## 7170              NA
## 7171              NA
## 7172              NA
## 7173              NA
## 7174              NA
## 7175              NA
## 7176              NA
## 7177              NA
## 7178              NA
## 7179              NA
## 7180              NA
## 7181              NA
## 7182              NA
## 7183              NA
## 7184    3.649886e+09
## 7185    3.248697e+09
## 7186    3.275707e+09
## 7187    3.188611e+09
## 7188    2.980054e+09
## 7189    2.813286e+09
## 7190    2.573909e+09
## 7191    2.913996e+09
## 7192    2.690116e+09
## 7193    2.427190e+09
## 7194    2.505746e+09
## 7195    2.331786e+09
## 7196    2.296051e+09
## 7197    2.489888e+09
## 7198    2.339016e+09
## 7199    2.017673e+09
## 7200    1.759743e+09
## 7201    1.724758e+09
## 7202    1.501935e+09
## 7203    1.275096e+09
## 7204    1.160271e+09
## 7205    1.067115e+09
## 7206    1.127691e+09
## 7207    1.104749e+09
## 7208              NA
## 7209              NA
## 7210              NA
## 7211              NA
## 7212              NA
## 7213              NA
## 7214              NA
## 7215              NA
## 7216              NA
## 7217              NA
## 7218              NA
## 7219              NA
## 7220              NA
## 7221              NA
## 7222              NA
## 7223              NA
## 7224              NA
## 7225              NA
## 7226              NA
## 7227              NA
## 7228              NA
## 7229              NA
## 7230              NA
## 7231              NA
## 7232              NA
## 7233              NA
## 7234              NA
## 7235              NA
## 7236              NA
## 7237              NA
## 7238              NA
## 7239              NA
## 7240              NA
## 7241              NA
## 7242              NA
## 7243              NA
## 7244              NA
## 7245              NA
## 7246              NA
## 7247    4.296305e+09
## 7248    4.477040e+09
## 7249    5.481675e+09
## 7250    5.581372e+09
## 7251    5.353404e+09
## 7252    4.930204e+09
## 7253    4.682547e+09
## 7254    4.857221e+09
## 7255    4.189916e+09
## 7256    3.972013e+09
## 7257    3.779378e+09
## 7258    3.140181e+09
## 7259    2.870625e+09
## 7260    3.523186e+09
## 7261    3.378315e+09
## 7262    3.076305e+09
## 7263    2.980485e+09
## 7264    2.708078e+09
## 7265    2.300454e+09
## 7266    1.833280e+09
## 7267    1.652464e+09
## 7268    1.678239e+09
## 7269    1.936485e+09
## 7270    1.653161e+09
## 7271    2.090185e+09
## 7272    2.128697e+09
## 7273    1.970348e+09
## 7274    1.825763e+09
## 7275    1.636075e+09
## 7276    1.532402e+09
## 7277    1.383844e+09
## 7278    1.337025e+09
## 7279    1.182687e+09
## 7280    1.109977e+09
## 7281    1.177908e+09
## 7282    1.290229e+09
## 7283    1.141123e+09
## 7284    1.177997e+09
## 7285    1.123107e+09
## 7286    1.194123e+09
## 7287    1.235666e+09
## 7288    1.202567e+09
## 7289    1.019744e+09
## 7290    8.292395e+08
## 7291    7.195331e+08
## 7292    6.945524e+08
## 7293    6.842683e+08
## 7294    5.585899e+08
## 7295    4.259634e+08
## 7296    3.166505e+08
## 7297    2.477493e+08
## 7298    2.198785e+08
## 7299    1.821821e+08
## 7300    1.669529e+08
## 7301    1.626259e+08
## 7302    1.506039e+08
## 7303    1.470848e+08
## 7304    1.400327e+08
## 7305    1.294547e+08
## 7306    1.229064e+08
## 7307    1.169878e+08
## 7308    1.123284e+08
## 7309              NA
## 7310    2.973019e+11
## 7311    2.718918e+11
## 7312    2.685149e+11
## 7313    2.757080e+11
## 7314    2.556480e+11
## 7315    2.407714e+11
## 7316    2.345344e+11
## 7317    2.748628e+11
## 7318    2.713624e+11
## 7319    2.582901e+11
## 7320    2.756044e+11
## 7321    2.494243e+11
## 7322    2.534975e+11
## 7323    2.857163e+11
## 7324    2.563781e+11
## 7325    2.170893e+11
## 7326    2.048855e+11
## 7327    1.974794e+11
## 7328    1.716525e+11
## 7329    1.404045e+11
## 7330    1.295331e+11
## 7331    1.260195e+11
## 7332    1.352641e+11
## 7333    1.340387e+11
## 7334    1.269122e+11
## 7335    1.321292e+11
## 7336    1.341898e+11
## 7337    1.032999e+11
## 7338    8.921411e+10
## 7339    1.125325e+11
## 7340    1.277739e+11
## 7341    1.414383e+11
## 7342    1.190121e+11
## 7343    1.090590e+11
## 7344    9.159475e+10
## 7345    7.353155e+10
## 7346    5.587586e+10
## 7347    5.288880e+10
## 7348    5.097353e+10
## 7349    5.279758e+10
## 7350    5.244833e+10
## 7351    5.364520e+10
## 7352    4.446526e+10
## 7353    3.625616e+10
## 7354    3.349980e+10
## 7355    3.184951e+10
## 7356    2.947262e+10
## 7357    2.484882e+10
## 7358    1.947236e+10
## 7359    1.474319e+10
## 7360    1.252741e+10
## 7361    1.135752e+10
## 7362    1.007077e+10
## 7363    8.823034e+09
## 7364    9.368954e+09
## 7365    9.208525e+09
## 7366    8.589340e+09
## 7367    7.766655e+09
## 7368    6.885920e+09
## 7369    6.340581e+09
## 7370    5.921659e+09
## 7371    5.224102e+09
## 7372              NA
## 7373    2.957880e+12
## 7374    2.639009e+12
## 7375    2.728870e+12
## 7376    2.790957e+12
## 7377    2.595151e+12
## 7378    2.472964e+12
## 7379    2.439189e+12
## 7380    2.855964e+12
## 7381    2.811877e+12
## 7382    2.683672e+12
## 7383    2.865158e+12
## 7384    2.645188e+12
## 7385    2.700887e+12
## 7386    2.930304e+12
## 7387    2.660591e+12
## 7388    2.320536e+12
## 7389    2.196945e+12
## 7390    2.119633e+12
## 7391    1.844545e+12
## 7392    1.501409e+12
## 7393    1.377657e+12
## 7394    1.365640e+12
## 7395    1.493152e+12
## 7396    1.503109e+12
## 7397    1.452885e+12
## 7398    1.605675e+12
## 7399    1.601095e+12
## 7400    1.393983e+12
## 7401    1.322816e+12
## 7402    1.401466e+12
## 7403    1.269277e+12
## 7404    1.269180e+12
## 7405    1.025212e+12
## 7406    1.018847e+12
## 7407    9.341733e+11
## 7408    7.714708e+11
## 7409    5.531384e+11
## 7410    5.306838e+11
## 7411    5.598692e+11
## 7412    5.848777e+11
## 7413    6.155522e+11
## 7414    7.012884e+11
## 7415    6.139531e+11
## 7416    5.067078e+11
## 7417    4.102795e+11
## 7418    3.723190e+11
## 7419    3.608322e+11
## 7420    2.855524e+11
## 7421    2.644299e+11
## 7422    2.034941e+11
## 7423    1.659666e+11
## 7424    1.484564e+11
## 7425    1.419031e+11
## 7426    1.297854e+11
## 7427    1.189730e+11
## 7428    1.100459e+11
## 7429    1.015372e+11
## 7430    9.400785e+10
## 7431    8.475920e+10
## 7432    7.560753e+10
## 7433    6.746164e+10
## 7434    6.222548e+10
## 7435              NA
## 7436    6.054677e+09
## 7437    5.709422e+09
## 7438    6.001385e+09
## 7439    6.135118e+09
## 7440    5.833351e+09
## 7441    5.497037e+09
## 7442    5.325848e+09
## 7443    6.151999e+09
## 7444    6.031829e+09
## 7445    5.692859e+09
## 7446    6.203937e+09
## 7447    6.086643e+09
## 7448    6.584557e+09
## 7449    7.136744e+09
## 7450    6.631160e+09
## 7451    5.877996e+09
## 7452    5.705055e+09
## 7453    5.564112e+09
## 7454    4.927783e+09
## 7455    3.965406e+09
## 7456    3.573808e+09
## 7457    3.599847e+09
## 7458    3.911602e+09
## 7459    3.903187e+09
## 7460    3.762858e+09
## 7461    4.166073e+09
## 7462    4.186996e+09
## 7463    3.676123e+09
## 7464    3.544609e+09
## 7465    3.713786e+09
## 7466    3.410080e+09
## 7467    3.320160e+09
## 7468    2.731683e+09
## 7469    2.723496e+09
## 7470    2.677977e+09
## 7471    2.212028e+09
## 7472    1.448281e+09
## 7473    1.325515e+09
## 7474    1.284181e+09
## 7475    1.235898e+09
## 7476    1.234743e+09
## 7477    1.320416e+09
## 7478    1.215032e+09
## 7479    1.005570e+09
## 7480    7.931964e+08
## 7481    7.322889e+08
## 7482    6.903234e+08
## 7483    5.553408e+08
## 7484    4.312529e+08
## 7485    3.264336e+08
## 7486    2.968655e+08
## 7487    2.540360e+08
## 7488    2.429438e+08
## 7489    2.595901e+08
## 7490    2.209844e+08
## 7491    2.156595e+08
## 7492    1.765346e+08
## 7493              NA
## 7494              NA
## 7495              NA
## 7496              NA
## 7497              NA
## 7498              NA
## 7499    2.021684e+10
## 7500    1.531458e+10
## 7501    1.687441e+10
## 7502    1.686733e+10
## 7503    1.492949e+10
## 7504    1.402389e+10
## 7505    1.438311e+10
## 7506    1.820397e+10
## 7507    1.759575e+10
## 7508    1.717047e+10
## 7509    1.821031e+10
## 7510    1.437259e+10
## 7511    1.211370e+10
## 7512    1.557135e+10
## 7513    1.245541e+10
## 7514    1.032760e+10
## 7515    9.582783e+09
## 7516    7.770219e+09
## 7517    6.511904e+09
## 7518    5.335451e+09
## 7519    5.023265e+09
## 7520    5.080483e+09
## 7521    4.662992e+09
## 7522    4.483417e+09
## 7523    5.326817e+09
## 7524    5.694040e+09
## 7525    4.958846e+09
## 7526    4.190819e+09
## 7527    4.378645e+09
## 7528    5.592391e+09
## 7529    5.402920e+09
## 7530    5.952294e+09
## 7531    4.186411e+09
## 7532    3.834503e+09
## 7533    3.281797e+09
## 7534    3.403638e+09
## 7535    3.339915e+09
## 7536    3.561452e+09
## 7537    3.391276e+09
## 7538    3.618008e+09
## 7539    3.862269e+09
## 7540    4.279638e+09
## 7541    3.030251e+09
## 7542    2.389479e+09
## 7543    2.809349e+09
## 7544    3.009410e+09
## 7545    2.157593e+09
## 7546    1.544216e+09
## 7547    7.227807e+08
## 7548    4.305084e+08
## 7549    3.816871e+08
## 7550    3.238025e+08
## 7551    3.181247e+08
## 7552    2.944686e+08
## 7553    2.715437e+08
## 7554    2.458498e+08
## 7555    2.264743e+08
## 7556    2.156799e+08
## 7557    1.544802e+08
## 7558    1.827965e+08
## 7559    1.676379e+08
## 7560    1.414690e+08
## 7561              NA
## 7562    2.038417e+09
## 7563    1.812169e+09
## 7564    1.813608e+09
## 7565    1.670671e+09
## 7566    1.504910e+09
## 7567    1.484580e+09
## 7568    1.378177e+09
## 7569    1.229461e+09
## 7570    1.375609e+09
## 7571    1.415006e+09
## 7572    1.409695e+09
## 7573    1.543292e+09
## 7574    1.450140e+09
## 7575    1.561763e+09
## 7576    1.279705e+09
## 7577    1.054113e+09
## 7578    1.027702e+09
## 7579    9.619001e+08
## 7580    4.870388e+08
## 7581    5.782360e+08
## 7582    6.874088e+08
## 7583    7.829154e+08
## 7584    8.147235e+08
## 7585    8.402853e+08
## 7586    8.036307e+08
## 7587    8.482371e+08
## 7588    7.859970e+08
## 7589    7.464917e+08
## 7590    7.550425e+08
## 7591    7.142555e+08
## 7592    6.903143e+08
## 7593    3.170834e+08
## 7594    2.841197e+08
## 7595    2.666731e+08
## 7596    2.206265e+08
## 7597    1.856462e+08
## 7598    2.257249e+08
## 7599    1.773388e+08
## 7600    2.134466e+08
## 7601    2.160515e+08
## 7602    2.187644e+08
## 7603    2.410807e+08
## 7604    2.071144e+08
## 7605    1.718368e+08
## 7606    1.380942e+08
## 7607    1.121895e+08
## 7608    1.151825e+08
## 7609    9.579753e+07
## 7610    7.518797e+07
## 7611    5.916154e+07
## 7612    5.572861e+07
## 7613    5.229684e+07
## 7614    4.516872e+07
## 7615    4.116066e+07
## 7616    4.669536e+07
## 7617    4.421235e+07
## 7618              NA
## 7619              NA
## 7620              NA
## 7621              NA
## 7622              NA
## 7623              NA
## 7624              NA
## 7625    1.862937e+10
## 7626    1.584292e+10
## 7627    1.747044e+10
## 7628    1.759692e+10
## 7629    1.624292e+10
## 7630    1.514176e+10
## 7631    1.495395e+10
## 7632    1.762700e+10
## 7633    1.718955e+10
## 7634    1.648840e+10
## 7635    1.510744e+10
## 7636    1.224351e+10
## 7637    1.076684e+10
## 7638    1.279508e+10
## 7639    1.017288e+10
## 7640    7.745394e+09
## 7641    6.410824e+09
## 7642    5.125365e+09
## 7643    3.991285e+09
## 7644    3.395728e+09
## 7645    3.219489e+09
## 7646    3.057475e+09
## 7647    2.800049e+09
## 7648    3.613542e+09
## 7649    3.510520e+09
## 7650    3.095048e+09
## 7651    2.693768e+09
## 7652    2.514071e+09
## 7653    2.701181e+09
## 7654    3.690329e+09
## 7655    6.357616e+09
## 7656    7.753502e+09
## 7657              NA
## 7658              NA
## 7659              NA
## 7660              NA
## 7661              NA
## 7662              NA
## 7663              NA
## 7664              NA
## 7665              NA
## 7666              NA
## 7667              NA
## 7668              NA
## 7669              NA
## 7670              NA
## 7671              NA
## 7672              NA
## 7673              NA
## 7674              NA
## 7675              NA
## 7676              NA
## 7677              NA
## 7678              NA
## 7679              NA
## 7680              NA
## 7681              NA
## 7682              NA
## 7683              NA
## 7684              NA
## 7685              NA
## 7686              NA
## 7687              NA
## 7688    4.259935e+12
## 7689    3.889669e+12
## 7690    3.888226e+12
## 7691    3.974443e+12
## 7692    3.690849e+12
## 7693    3.469853e+12
## 7694    3.357586e+12
## 7695    3.889093e+12
## 7696    3.733805e+12
## 7697    3.527143e+12
## 7698    3.749315e+12
## 7699    3.399668e+12
## 7700    3.411261e+12
## 7701    3.745264e+12
## 7702    3.425578e+12
## 7703    2.994704e+12
## 7704    2.846864e+12
## 7705    2.814354e+12
## 7706    2.501640e+12
## 7707    2.078485e+12
## 7708    1.945791e+12
## 7709    1.947982e+12
## 7710    2.194945e+12
## 7711    2.238991e+12
## 7712    2.211990e+12
## 7713    2.497245e+12
## 7714    2.585792e+12
## 7715    2.205074e+12
## 7716    2.071324e+12
## 7717    2.131572e+12
## 7718    1.868945e+12
## 7719    1.771671e+12
## 7720    1.398967e+12
## 7721    1.401233e+12
## 7722    1.298176e+12
## 7723    1.046259e+12
## 7724    7.325349e+11
## 7725    7.251111e+11
## 7726    7.706843e+11
## 7727    7.765764e+11
## 7728    8.004721e+11
## 7729    9.502909e+11
## 7730    8.813452e+11
## 7731    7.404700e+11
## 7732    6.004982e+11
## 7733    5.197545e+11
## 7734    4.906365e+11
## 7735    4.453035e+11
## 7736    3.983740e+11
## 7737    2.998015e+11
## 7738    2.499851e+11
## 7739    2.158384e+11
## 7740              NA
## 7741              NA
## 7742              NA
## 7743              NA
## 7744              NA
## 7745              NA
## 7746              NA
## 7747              NA
## 7748              NA
## 7749              NA
## 7750              NA
## 7751    7.759428e+10
## 7752    7.004320e+10
## 7753    6.833754e+10
## 7754    6.729928e+10
## 7755    6.040638e+10
## 7756    5.616517e+10
## 7757    4.940657e+10
## 7758    5.478285e+10
## 7759    6.282304e+10
## 7760    4.127095e+10
## 7761    3.933731e+10
## 7762    3.219727e+10
## 7763    2.604811e+10
## 7764    2.867870e+10
## 7765    2.482784e+10
## 7766    2.044089e+10
## 7767    1.074468e+10
## 7768    8.881369e+09
## 7769    7.632407e+09
## 7770    6.166330e+09
## 7771    5.314910e+09
## 7772    4.983024e+09
## 7773    7.719355e+09
## 7774    7.480969e+09
## 7775    6.891309e+09
## 7776    6.934985e+09
## 7777    6.465138e+09
## 7778    5.444561e+09
## 7779    5.966256e+09
## 7780    6.413902e+09
## 7781    6.596546e+09
## 7782    5.889175e+09
## 7783    5.251764e+09
## 7784    5.197841e+09
## 7785    5.074830e+09
## 7786    5.727603e+09
## 7787    4.504342e+09
## 7788    4.412280e+09
## 7789    4.057275e+09
## 7790    4.035994e+09
## 7791    4.222442e+09
## 7792    4.445228e+09
## 7793    4.020228e+09
## 7794    3.662478e+09
## 7795    3.189429e+09
## 7796    2.765254e+09
## 7797    2.810106e+09
## 7798    2.894410e+09
## 7799    2.465493e+09
## 7800    2.112293e+09
## 7801    2.417108e+09
## 7802    2.215029e+09
## 7803    1.962051e+09
## 7804    1.666910e+09
## 7805    1.746806e+09
## 7806    2.126050e+09
## 7807    2.053221e+09
## 7808    1.731092e+09
## 7809    1.540616e+09
## 7810    1.382353e+09
## 7811    1.302521e+09
## 7812    1.217087e+09
## 7813              NA
## 7814              NA
## 7815              NA
## 7816              NA
## 7817              NA
## 7818              NA
## 7819              NA
## 7820              NA
## 7821              NA
## 7822              NA
## 7823              NA
## 7824              NA
## 7825              NA
## 7826              NA
## 7827              NA
## 7828              NA
## 7829              NA
## 7830              NA
## 7831              NA
## 7832              NA
## 7833              NA
## 7834              NA
## 7835              NA
## 7836              NA
## 7837              NA
## 7838              NA
## 7839              NA
## 7840              NA
## 7841              NA
## 7842              NA
## 7843              NA
## 7844              NA
## 7845              NA
## 7846              NA
## 7847              NA
## 7848              NA
## 7849              NA
## 7850              NA
## 7851              NA
## 7852              NA
## 7853              NA
## 7854              NA
## 7855              NA
## 7856              NA
## 7857              NA
## 7858              NA
## 7859              NA
## 7860              NA
## 7861              NA
## 7862              NA
## 7863              NA
## 7864              NA
## 7865              NA
## 7866              NA
## 7867              NA
## 7868              NA
## 7869              NA
## 7870              NA
## 7871              NA
## 7872              NA
## 7873              NA
## 7874              NA
## 7875              NA
## 7876              NA
## 7877    2.148739e+11
## 7878    1.889260e+11
## 7879    2.052570e+11
## 7880    2.120494e+11
## 7881    1.998444e+11
## 7882    1.931481e+11
## 7883    1.956835e+11
## 7884    2.354581e+11
## 7885    2.389077e+11
## 7886    2.420293e+11
## 7887    2.829959e+11
## 7888    2.971250e+11
## 7889    3.313085e+11
## 7890    3.559087e+11
## 7891    3.189028e+11
## 7892    2.735467e+11
## 7893    2.478754e+11
## 7894    2.409636e+11
## 7895    2.023701e+11
## 7896    1.545642e+11
## 7897    1.363093e+11
## 7898    1.304578e+11
## 7899    1.425889e+11
## 7900    1.444282e+11
## 7901    1.431576e+11
## 7902    1.458616e+11
## 7903    1.368784e+11
## 7904    1.166018e+11
## 7905    1.088091e+11
## 7906    1.162247e+11
## 7907    1.051432e+11
## 7908    9.789109e+10
## 7909    7.916904e+10
## 7910    7.626128e+10
## 7911    6.565275e+10
## 7912    5.637959e+10
## 7913    4.782085e+10
## 7914    4.802002e+10
## 7915    4.942887e+10
## 7916    5.461799e+10
## 7917    5.234651e+10
## 7918    5.682966e+10
## 7919    5.448188e+10
## 7920    4.427020e+10
## 7921    3.617623e+10
## 7922    3.115284e+10
## 7923    2.852588e+10
## 7924    2.535131e+10
## 7925    2.234785e+10
## 7926    1.688551e+10
## 7927    1.459175e+10
## 7928    1.313986e+10
## 7929    1.161566e+10
## 7930    1.009068e+10
## 7931    9.275601e+09
## 7932    8.591518e+09
## 7933    7.689154e+09
## 7934    6.669673e+09
## 7935    5.895278e+09
## 7936    5.213048e+09
## 7937    4.961400e+09
## 7938    4.335186e+09
## 7939              NA
## 7940              NA
## 7941    3.076015e+09
## 7942    2.994332e+09
## 7943    3.055791e+09
## 7944    2.851611e+09
## 7945    2.707147e+09
## 7946    2.499116e+09
## 7947    2.842049e+09
## 7948    2.684953e+09
## 7949    2.609668e+09
## 7950    2.684467e+09
## 7951    2.503156e+09
## 7952    2.529948e+09
## 7953    2.499108e+09
## 7954    2.249812e+09
## 7955    2.013099e+09
## 7956    1.849806e+09
## 7957    1.822487e+09
## 7958    1.558753e+09
## 7959    1.169139e+09
## 7960    1.086173e+09
## 7961    1.068031e+09
## 7962    1.131562e+09
## 7963    1.149863e+09
## 7964    1.072148e+09
## 7965    1.197510e+09
## 7966    1.208946e+09
## 7967    1.005880e+09
## 7968    9.272197e+08
## 7969    1.037922e+09
## 7970    1.016493e+09
## 7971    1.018970e+09
## 7972    9.297967e+08
## 7973    8.986110e+08
## 7974    7.873924e+08
## 7975    6.030157e+08
## 7976    4.128761e+08
## 7977    3.793716e+08
## 7978    4.161837e+08
## 7979    4.024051e+08
## 7980    4.357470e+08
## 7981    4.760553e+08
## 7982    4.206425e+08
## 7983    3.559890e+08
## 7984    2.822694e+08
## 7985    2.407804e+08
## 7986    2.111943e+08
## 7987    1.699189e+08
## 7988    1.401537e+08
## 7989    1.061012e+08
## 7990    8.857095e+07
## 7991    6.952003e+07
## 7992              NA
## 7993              NA
## 7994              NA
## 7995              NA
## 7996              NA
## 7997              NA
## 7998              NA
## 7999              NA
## 8000              NA
## 8001              NA
## 8002              NA
## 8003    1.122807e+09
## 8004    1.043415e+09
## 8005    1.213485e+09
## 8006    1.166511e+09
## 8007    1.125681e+09
## 8008    1.061641e+09
## 8009    9.970074e+08
## 8010    9.115000e+08
## 8011    8.426201e+08
## 8012    7.998823e+08
## 8013    7.786559e+08
## 8014    7.710133e+08
## 8015    7.712756e+08
## 8016    8.259760e+08
## 8017    7.586836e+08
## 8018    6.987007e+08
## 8019    6.955556e+08
## 8020    5.991186e+08
## 8021    5.910184e+08
## 8022    5.403369e+08
## 8023    5.204442e+08
## 8024    5.200444e+08
## 8025    4.820094e+08
## 8026    4.459036e+08
## 8027    3.921906e+08
## 8028    3.669114e+08
## 8029    3.421725e+08
## 8030    3.251118e+08
## 8031    3.098122e+08
## 8032    3.101604e+08
## 8033    3.007579e+08
## 8034    2.780988e+08
## 8035    2.673276e+08
## 8036    2.363575e+08
## 8037    2.150096e+08
## 8038    1.875895e+08
## 8039    1.677285e+08
## 8040    1.455333e+08
## 8041    1.318036e+08
## 8042    1.254356e+08
## 8043    1.156519e+08
## 8044    1.109005e+08
## 8045    1.022444e+08
## 8046    8.832239e+07
## 8047    7.149450e+07
## 8048              NA
## 8049              NA
## 8050              NA
## 8051              NA
## 8052              NA
## 8053              NA
## 8054              NA
## 8055              NA
## 8056              NA
## 8057              NA
## 8058              NA
## 8059              NA
## 8060              NA
## 8061              NA
## 8062              NA
## 8063              NA
## 8064              NA
## 8065              NA
## 8066    6.123000e+09
## 8067    5.886000e+09
## 8068    6.366000e+09
## 8069    6.056000e+09
## 8070    6.013000e+09
## 8071    5.901000e+09
## 8072    5.799000e+09
## 8073    5.610000e+09
## 8074    5.399000e+09
## 8075    5.265000e+09
## 8076    4.984000e+09
## 8077    4.949000e+09
## 8078    4.828000e+09
## 8079    4.658000e+09
## 8080    4.397000e+09
## 8081    4.238000e+09
## 8082    4.213000e+09
## 8083    3.869000e+09
## 8084    3.569000e+09
## 8085    3.394000e+09
## 8086              NA
## 8087              NA
## 8088              NA
## 8089              NA
## 8090              NA
## 8091              NA
## 8092              NA
## 8093              NA
## 8094              NA
## 8095              NA
## 8096              NA
## 8097              NA
## 8098              NA
## 8099              NA
## 8100              NA
## 8101              NA
## 8102              NA
## 8103              NA
## 8104              NA
## 8105              NA
## 8106              NA
## 8107              NA
## 8108              NA
## 8109              NA
## 8110              NA
## 8111              NA
## 8112              NA
## 8113              NA
## 8114              NA
## 8115              NA
## 8116              NA
## 8117              NA
## 8118              NA
## 8119              NA
## 8120              NA
## 8121              NA
## 8122              NA
## 8123              NA
## 8124              NA
## 8125              NA
## 8126              NA
## 8127              NA
## 8128              NA
## 8129    8.598575e+10
## 8130    7.762549e+10
## 8131    7.717042e+10
## 8132    7.332802e+10
## 8133    7.165413e+10
## 8134    6.605373e+10
## 8135    6.218619e+10
## 8136    5.785240e+10
## 8137    5.299654e+10
## 8138    4.959396e+10
## 8139    4.687611e+10
## 8140    4.067643e+10
## 8141    3.712594e+10
## 8142    3.850386e+10
## 8143    3.356787e+10
## 8144    2.974437e+10
## 8145    2.678354e+10
## 8146    2.357729e+10
## 8147    2.157635e+10
## 8148    2.044421e+10
## 8149    1.840520e+10
## 8150    1.928883e+10
## 8151    1.831841e+10
## 8152    1.939549e+10
## 8153    1.779003e+10
## 8154    1.567484e+10
## 8155    1.465540e+10
## 8156    1.298324e+10
## 8157    1.139994e+10
## 8158    1.044084e+10
## 8159    9.406098e+09
## 8160    7.650125e+09
## 8161    8.410724e+09
## 8162    7.841603e+09
## 8163    7.084400e+09
## 8164    7.231964e+09
## 8165    9.721652e+09
## 8166    9.470000e+09
## 8167    9.050000e+09
## 8168    8.717000e+09
## 8169    8.607500e+09
## 8170    7.878700e+09
## 8171    6.902600e+09
## 8172    6.070600e+09
## 8173    5.480500e+09
## 8174    4.365300e+09
## 8175    3.645900e+09
## 8176    3.161500e+09
## 8177    2.569200e+09
## 8178    2.101300e+09
## 8179    1.984800e+09
## 8180    1.904000e+09
## 8181    1.715400e+09
## 8182    1.610500e+09
## 8183    1.453500e+09
## 8184    1.390700e+09
## 8185    1.331400e+09
## 8186    1.299100e+09
## 8187    1.262800e+09
## 8188    1.143600e+09
## 8189    1.076700e+09
## 8190    1.043600e+09
## 8191              NA
## 8192    1.609182e+10
## 8193    1.417784e+10
## 8194    1.344286e+10
## 8195    1.185703e+10
## 8196    1.032467e+10
## 8197    8.595956e+09
## 8198    8.794202e+09
## 8199    8.778474e+09
## 8200    8.376614e+09
## 8201    7.638045e+09
## 8202    6.785137e+09
## 8203    6.853468e+09
## 8204    6.716905e+09
## 8205    6.964179e+09
## 8206    6.281918e+09
## 8207    4.220019e+09
## 8208    2.937072e+09
## 8209    3.635458e+09
## 8210    3.446442e+09
## 8211    2.950199e+09
## 8212    2.829436e+09
## 8213    2.995361e+09
## 8214    3.461283e+09
## 8215    3.588375e+09
## 8216    3.783700e+09
## 8217    3.868968e+09
## 8218    3.693711e+09
## 8219    3.383093e+09
## 8220    3.279097e+09
## 8221    3.284621e+09
## 8222    3.015058e+09
## 8223    2.666751e+09
## 8224    2.432029e+09
## 8225    2.384296e+09
## 8226    2.041538e+09
## 8227    1.995187e+09
## 8228              NA
## 8229              NA
## 8230              NA
## 8231              NA
## 8232              NA
## 8233              NA
## 8234              NA
## 8235              NA
## 8236              NA
## 8237              NA
## 8238              NA
## 8239              NA
## 8240              NA
## 8241              NA
## 8242              NA
## 8243              NA
## 8244              NA
## 8245              NA
## 8246              NA
## 8247              NA
## 8248              NA
## 8249              NA
## 8250              NA
## 8251              NA
## 8252              NA
## 8253              NA
## 8254              NA
## 8255    1.638518e+09
## 8256    1.431758e+09
## 8257    1.439638e+09
## 8258    1.504630e+09
## 8259    1.350177e+09
## 8260    1.179005e+09
## 8261    1.048230e+09
## 8262    1.054916e+09
## 8263    1.046087e+09
## 8264    9.892712e+08
## 8265    1.099819e+09
## 8266    8.498784e+08
## 8267    8.301265e+08
## 8268    8.681547e+08
## 8269    6.969108e+08
## 8270    5.923657e+08
## 8271    5.870291e+08
## 8272    5.320629e+08
## 8273    4.774586e+08
## 8274    4.178067e+08
## 8275    3.926214e+08
## 8276    3.710955e+08
## 8277    2.244467e+08
## 8278    2.064575e+08
## 8279    2.685510e+08
## 8280    2.704198e+08
## 8281    2.539669e+08
## 8282    2.356200e+08
## 8283    2.368808e+08
## 8284    2.263134e+08
## 8285    2.571504e+08
## 8286    2.439620e+08
## 8287    2.131430e+08
## 8288    1.644581e+08
## 8289    1.738364e+08
## 8290    1.302250e+08
## 8291    1.438563e+08
## 8292    1.384789e+08
## 8293    1.635775e+08
## 8294    1.655236e+08
## 8295    1.547320e+08
## 8296    1.106538e+08
## 8297    1.185379e+08
## 8298    1.226669e+08
## 8299    1.149712e+08
## 8300    1.123865e+08
## 8301    1.089857e+08
## 8302    9.877533e+07
## 8303    8.937424e+07
## 8304    8.770283e+07
## 8305    7.854006e+07
## 8306    7.873359e+07
## 8307              NA
## 8308              NA
## 8309              NA
## 8310              NA
## 8311              NA
## 8312              NA
## 8313              NA
## 8314              NA
## 8315              NA
## 8316              NA
## 8317              NA
## 8318    8.044499e+09
## 8319    5.471257e+09
## 8320    5.173760e+09
## 8321    4.787636e+09
## 8322    4.748174e+09
## 8323    4.482697e+09
## 8324    4.279840e+09
## 8325    4.127659e+09
## 8326    4.167800e+09
## 8327    4.063089e+09
## 8328    3.691384e+09
## 8329    3.432913e+09
## 8330    3.165663e+09
## 8331    3.025188e+09
## 8332    2.730971e+09
## 8333    2.379818e+09
## 8334    8.248806e+08
## 8335    7.878144e+08
## 8336    7.430641e+08
## 8337    7.261314e+08
## 8338    7.121676e+08
## 8339    7.126679e+08
## 8340    6.947550e+08
## 8341    7.175307e+08
## 8342    7.491380e+08
## 8343    7.054060e+08
## 8344    6.216268e+08
## 8345    5.408749e+08
## 8346    4.541014e+08
## 8347    3.735731e+08
## 8348    3.485331e+08
## 8349    3.965823e+08
## 8350    3.797794e+08
## 8351    4.138000e+08
## 8352    3.545918e+08
## 8353    5.046511e+08
## 8354    4.534884e+08
## 8355    4.376316e+08
## 8356    4.893333e+08
## 8357    4.820000e+08
## 8358    5.703571e+08
## 8359    6.032000e+08
## 8360    5.304400e+08
## 8361    5.070800e+08
## 8362    4.498800e+08
## 8363    4.544400e+08
## 8364    4.947917e+08
## 8365    4.339545e+08
## 8366    3.070476e+08
## 8367    2.853810e+08
## 8368    2.820500e+08
## 8369    2.678000e+08
## 8370    2.493000e+08
## 8371    2.297500e+08
## 8372    2.501765e+08
## 8373    2.287059e+08
## 8374    2.132353e+08
## 8375    1.947734e+08
## 8376    1.757569e+08
## 8377    1.949484e+08
## 8378    1.858485e+08
## 8379    1.702152e+08
## 8380              NA
## 8381    2.094439e+10
## 8382    1.450822e+10
## 8383    1.478584e+10
## 8384    1.645503e+10
## 8385    1.503556e+10
## 8386    1.398769e+10
## 8387    1.483315e+10
## 8388    1.513926e+10
## 8389    1.490247e+10
## 8390    1.370893e+10
## 8391    1.300875e+10
## 8392    1.185932e+10
## 8393    1.159701e+10
## 8394    1.048523e+10
## 8395    9.522763e+09
## 8396    7.518108e+09
## 8397    7.184065e+09
## 8398    6.036960e+09
## 8399    4.826828e+09
## 8400    6.058134e+09
## 8401    6.331962e+09
## 8402    6.813578e+09
## 8403    4.153736e+09
## 8404    3.723909e+09
## 8405    3.338939e+09
## 8406    2.907515e+09
## 8407    2.813313e+09
## 8408    2.167564e+09
## 8409    1.878249e+09
## 8410    2.257122e+09
## 8411    3.473541e+09
## 8412    3.096290e+09
## 8413    2.736244e+09
## 8414    2.613927e+09
## 8415    2.047200e+09
## 8416    2.318000e+09
## 8417    2.009400e+09
## 8418    1.816200e+09
## 8419    1.623600e+09
## 8420    1.474200e+09
## 8421    1.479400e+09
## 8422    1.383800e+09
## 8423    1.080600e+09
## 8424    9.742000e+08
## 8425    9.470000e+08
## 8426    8.790000e+08
## 8427    6.814000e+08
## 8428    5.654000e+08
## 8429    4.668000e+08
## 8430    3.720000e+08
## 8431    3.628000e+08
## 8432    3.312000e+08
## 8433    3.918204e+08
## 8434    3.679688e+08
## 8435    3.691242e+08
## 8436    3.689486e+08
## 8437    3.532518e+08
## 8438    3.252812e+08
## 8439    2.948834e+08
## 8440    2.818968e+08
## 8441    2.710660e+08
## 8442    2.731872e+08
## 8443              NA
## 8444    2.848867e+10
## 8445    2.382784e+10
## 8446    2.508998e+10
## 8447    2.406778e+10
## 8448    2.313623e+10
## 8449    2.171762e+10
## 8450    2.097977e+10
## 8451    1.975649e+10
## 8452    1.849971e+10
## 8453    1.852860e+10
## 8454    1.771032e+10
## 8455    1.583934e+10
## 8456    1.458750e+10
## 8457    1.388170e+10
## 8458    1.236126e+10
## 8459    1.091748e+10
## 8460    9.757034e+09
## 8461    8.869311e+09
## 8462    8.230388e+09
## 8463    7.858235e+09
## 8464    7.651175e+09
## 8465    7.186650e+09
## 8466    6.414521e+09
## 8467    6.366340e+09
## 8468    5.737100e+09
## 8469    5.215029e+09
## 8470    5.347445e+09
## 8471    4.642281e+09
## 8472    4.926729e+09
## 8473    4.943700e+09
## 8474    4.648668e+09
## 8475    4.923010e+09
## 8476    5.432345e+09
## 8477    5.902717e+09
## 8478    6.190521e+09
## 8479    5.677829e+09
## 8480    5.278121e+09
## 8481    4.915312e+09
## 8482    4.476697e+09
## 8483    4.266504e+09
## 8484    4.043895e+09
## 8485    3.968160e+09
## 8486    3.544282e+09
## 8487    3.097242e+09
## 8488    1.669500e+09
## 8489    1.348000e+09
## 8490    1.124000e+09
## 8491    1.034500e+09
## 8492    9.125000e+08
## 8493    8.030000e+08
## 8494    7.310000e+08
## 8495    7.230000e+08
## 8496    6.680000e+08
## 8497    6.468000e+08
## 8498    5.981000e+08
## 8499    5.499500e+08
## 8500    5.086500e+08
## 8501    4.570000e+08
## 8502    4.102000e+08
## 8503    3.877500e+08
## 8504    3.562000e+08
## 8505    3.356500e+08
## 8506              NA
## 8507    3.691764e+11
## 8508    3.449322e+11
## 8509    3.630525e+11
## 8510    3.617311e+11
## 8511    3.412733e+11
## 8512    3.208583e+11
## 8513    3.093836e+11
## 8514    2.914594e+11
## 8515    2.756969e+11
## 8516    2.626294e+11
## 8517    2.485136e+11
## 8518    2.286377e+11
## 8519    2.140464e+11
## 8520    2.192797e+11
## 8521    2.115974e+11
## 8522    1.935363e+11
## 8523    1.815701e+11
## 8524    1.690998e+11
## 8525    1.613845e+11
## 8526    1.663492e+11
## 8527    1.694032e+11
## 8528    1.716682e+11
## 8529    1.657681e+11
## 8530    1.688862e+11
## 8531    1.773528e+11
## 8532    1.597172e+11
## 8533    1.446529e+11
## 8534    1.358121e+11
## 8535    1.203539e+11
## 8536    1.042723e+11
## 8537    8.895962e+10
## 8538    7.692829e+10
## 8539    6.879037e+10
## 8540    5.970740e+10
## 8541    5.062257e+10
## 8542    4.107557e+10
## 8543    3.569954e+10
## 8544    3.351138e+10
## 8545    2.990709e+10
## 8546    3.229131e+10
## 8547    3.105541e+10
## 8548    2.886176e+10
## 8549    2.252604e+10
## 8550    1.831501e+10
## 8551    1.571943e+10
## 8552    1.287637e+10
## 8553    1.004802e+10
## 8554    9.388664e+09
## 8555    8.030118e+09
## 8556    5.710107e+09
## 8557    4.476002e+09
## 8558    3.800767e+09
## 8559    3.189740e+09
## 8560    2.716964e+09
## 8561    2.692475e+09
## 8562    2.489845e+09
## 8563    2.435079e+09
## 8564    2.206466e+09
## 8565    1.935298e+09
## 8566    1.612346e+09
## 8567    1.383682e+09
## 8568    1.320797e+09
## 8569              NA
## 8570    1.818480e+11
## 8571    1.571820e+11
## 8572    1.639886e+11
## 8573    1.605646e+11
## 8574    1.431122e+11
## 8575    1.286098e+11
## 8576    1.251742e+11
## 8577    1.410338e+11
## 8578    1.356843e+11
## 8579    1.288143e+11
## 8580    1.419423e+11
## 8581    1.321753e+11
## 8582    1.310693e+11
## 8583    1.583256e+11
## 8584    1.401867e+11
## 8585    1.157156e+11
## 8586    1.132112e+11
## 8587    1.041208e+11
## 8588    8.528506e+10
## 8589    6.760892e+10
## 8590    5.374999e+10
## 8591    4.721841e+10
## 8592    4.907338e+10
## 8593    4.870679e+10
## 8594    4.729695e+10
## 8595    4.665876e+10
## 8596    4.642568e+10
## 8597    4.316668e+10
## 8598    4.012492e+10
## 8599    3.873059e+10
## 8600    3.475357e+10
## 8601              NA
## 8602              NA
## 8603              NA
## 8604              NA
## 8605              NA
## 8606              NA
## 8607              NA
## 8608              NA
## 8609              NA
## 8610              NA
## 8611              NA
## 8612              NA
## 8613              NA
## 8614              NA
## 8615              NA
## 8616              NA
## 8617              NA
## 8618              NA
## 8619              NA
## 8620              NA
## 8621              NA
## 8622              NA
## 8623              NA
## 8624              NA
## 8625              NA
## 8626              NA
## 8627              NA
## 8628              NA
## 8629              NA
## 8630              NA
## 8631              NA
## 8632              NA
## 8633    2.560242e+10
## 8634    2.169467e+10
## 8635    2.482610e+10
## 8636    2.626413e+10
## 8637    2.472829e+10
## 8638    2.079317e+10
## 8639    1.751721e+10
## 8640    1.786766e+10
## 8641    1.612506e+10
## 8642    1.475151e+10
## 8643    1.522162e+10
## 8644    1.375116e+10
## 8645    1.315441e+10
## 8646    1.807462e+10
## 8647    2.165251e+10
## 8648    1.746532e+10
## 8649    1.685296e+10
## 8650    1.382530e+10
## 8651    1.142933e+10
## 8652    9.318395e+09
## 8653    8.234847e+09
## 8654    9.025660e+09
## 8655    8.982048e+09
## 8656    8.503693e+09
## 8657    7.569673e+09
## 8658    7.426082e+09
## 8659    7.123633e+09
## 8660    6.389460e+09
## 8661    6.218582e+09
## 8662    7.080982e+09
## 8663    6.909730e+09
## 8664    6.468736e+09
## 8665    5.672569e+09
## 8666    6.106636e+09
## 8667    5.520318e+09
## 8668    3.989623e+09
## 8669    2.984052e+09
## 8670    2.864441e+09
## 8671    2.765950e+09
## 8672    3.206627e+09
## 8673    3.492997e+09
## 8674    3.381419e+09
## 8675    2.853435e+09
## 8676    2.511826e+09
## 8677    2.208509e+09
## 8678    1.669488e+09
## 8679    1.406875e+09
## 8680    1.515191e+09
## 8681    1.154440e+09
## 8682    8.396522e+08
## 8683    6.702511e+08
## 8684    5.267045e+08
## 8685    4.147093e+08
## 8686    4.743995e+08
## 8687    6.212260e+08
## 8688    6.288933e+08
## 8689    5.236949e+08
## 8690    4.342679e+08
## 8691    3.400617e+08
## 8692    2.849165e+08
## 8693    2.538857e+08
## 8694    2.484341e+08
## 8695              NA
## 8696    3.176295e+12
## 8697    2.667688e+12
## 8698    2.831552e+12
## 8699    2.702930e+12
## 8700    2.651473e+12
## 8701    2.294798e+12
## 8702    2.103588e+12
## 8703    2.039127e+12
## 8704    1.856722e+12
## 8705    1.827638e+12
## 8706    1.823050e+12
## 8707    1.675615e+12
## 8708    1.341887e+12
## 8709    1.198896e+12
## 8710    1.216735e+12
## 8711    9.402599e+11
## 8712    8.203816e+11
## 8713    7.091485e+11
## 8714    6.076993e+11
## 8715    5.149379e+11
## 8716    4.854410e+11
## 8717    4.683949e+11
## 8718    4.588204e+11
## 8719    4.213515e+11
## 8720    4.158678e+11
## 8721    3.928971e+11
## 8722    3.602820e+11
## 8723    3.272756e+11
## 8724    2.792960e+11
## 8725    2.882084e+11
## 8726    2.701053e+11
## 8727    3.209790e+11
## 8728    2.960424e+11
## 8729    2.965890e+11
## 8730    2.790336e+11
## 8731    2.489860e+11
## 8732    2.325119e+11
## 8733    2.121582e+11
## 8734    2.182623e+11
## 8735    2.007151e+11
## 8736    1.934906e+11
## 8737    1.863253e+11
## 8738    1.529917e+11
## 8739    1.373003e+11
## 8740    1.214873e+11
## 8741    1.027172e+11
## 8742    9.847280e+10
## 8743    9.952590e+10
## 8744    8.551527e+10
## 8745    7.146319e+10
## 8746    6.735099e+10
## 8747    6.242248e+10
## 8748    5.844800e+10
## 8749    5.308546e+10
## 8750    5.013494e+10
## 8751    4.586546e+10
## 8752    5.955485e+10
## 8753    5.648029e+10
## 8754    4.842192e+10
## 8755    4.216148e+10
## 8756    3.923244e+10
## 8757    3.702988e+10
## 8758              NA
## 8759    1.186093e+12
## 8760    1.058689e+12
## 8761    1.119100e+12
## 8762    1.042272e+12
## 8763    1.015619e+12
## 8764    9.318774e+11
## 8765    8.608542e+11
## 8766    8.908148e+11
## 8767    9.125241e+11
## 8768    9.178699e+11
## 8769    8.929691e+11
## 8770    7.550942e+11
## 8771    5.395801e+11
## 8772    5.102286e+11
## 8773    4.322167e+11
## 8774    3.645705e+11
## 8775    2.858686e+11
## 8776    2.568369e+11
## 8777    2.347725e+11
## 8778    1.956606e+11
## 8779    1.604469e+11
## 8780    1.650210e+11
## 8781    1.400014e+11
## 8782    9.544555e+10
## 8783    2.157490e+11
## 8784    2.273697e+11
## 8785    2.021320e+11
## 8786    1.768921e+11
## 8787    1.580067e+11
## 8788    1.280270e+11
## 8789    1.166220e+11
## 8790    1.061407e+11
## 8791    9.445143e+10
## 8792    8.430017e+10
## 8793    7.592962e+10
## 8794    7.995407e+10
## 8795    8.528949e+10
## 8796    8.485370e+10
## 8797    8.105228e+10
## 8798    9.015845e+10
## 8799    8.551823e+10
## 8800    7.248234e+10
## 8801    5.140019e+10
## 8802    5.145572e+10
## 8803    4.580892e+10
## 8804    3.726916e+10
## 8805    3.046386e+10
## 8806    2.580241e+10
## 8807    1.627325e+10
## 8808    1.099759e+10
## 8809    9.333536e+09
## 8810    9.150685e+09
## 8811    8.337423e+09
## 8812    7.076465e+09
## 8813    5.667757e+09
## 8814              NA
## 8815              NA
## 8816              NA
## 8817              NA
## 8818              NA
## 8819              NA
## 8820              NA
## 8821              NA
## 8822    3.597132e+11
## 8823    2.397356e+11
## 8824    2.837467e+11
## 8825    3.316820e+11
## 8826    4.866301e+11
## 8827    4.579546e+11
## 8828    4.082129e+11
## 8829    4.603828e+11
## 8830    4.927756e+11
## 8831    6.440355e+11
## 8832    6.261331e+11
## 8833    4.868076e+11
## 8834    4.163970e+11
## 8835    4.123362e+11
## 8836    3.498816e+11
## 8837    2.662989e+11
## 8838    2.264521e+11
## 8839    1.900434e+11
## 8840    1.535448e+11
## 8841    1.286269e+11
## 8842    1.268788e+11
## 8843    1.095917e+11
## 8844    1.138485e+11
## 8845    1.102769e+11
## 8846    1.139192e+11
## 8847    1.204039e+11
## 8848    9.641923e+10
## 8849    7.184146e+10
## 8850    6.374362e+10
## 8851              NA
## 8852              NA
## 8853    1.248133e+11
## 8854    1.204964e+11
## 8855    1.230579e+11
## 8856    1.340100e+11
## 8857    2.090946e+11
## 8858    1.801836e+11
## 8859    1.622767e+11
## 8860    1.563652e+11
## 8861    1.259488e+11
## 8862    1.004993e+11
## 8863    9.436228e+10
## 8864    9.039188e+10
## 8865    7.799432e+10
## 8866    8.060012e+10
## 8867    6.805530e+10
## 8868    5.177622e+10
## 8869    4.620909e+10
## 8870    2.708170e+10
## 8871    1.715346e+10
## 8872    1.373180e+10
## 8873    1.097625e+10
## 8874    9.743090e+09
## 8875    8.623173e+09
## 8876    7.555384e+09
## 8877    6.789939e+09
## 8878    6.197320e+09
## 8879    5.379846e+09
## 8880    4.928628e+09
## 8881    4.693566e+09
## 8882    4.426949e+09
## 8883    4.199134e+09
## 8884              NA
## 8885    2.078893e+11
## 8886    1.843698e+11
## 8887    2.336361e+11
## 8888    2.273675e+11
## 8889    1.872177e+11
## 8890    1.666025e+11
## 8891    1.667741e+11
## 8892    2.284157e+11
## 8893    2.346377e+11
## 8894    2.180025e+11
## 8895    1.857497e+11
## 8896    1.385167e+11
## 8897    1.116576e+11
## 8898    1.316144e+11
## 8899    8.883706e+10
## 8900    6.514015e+10
## 8901    4.995489e+10
## 8902    3.662790e+10
## 8903    2.192157e+10
## 8904    3.292845e+10
## 8905    3.617643e+10
## 8906    4.836425e+10
## 8907    3.688160e+10
## 8908    2.061741e+10
## 8909    2.076486e+10
## 8910    1.043370e+10
## 8911    1.289403e+10
## 8912    3.991349e+09
## 8913    1.031945e+09
## 8914    5.536720e+08
## 8915    4.077963e+08
## 8916    1.804081e+11
## 8917    6.583194e+10
## 8918    6.268452e+10
## 8919    5.677419e+10
## 8920    4.726452e+10
## 8921    4.842516e+10
## 8922    4.693839e+10
## 8923    4.071290e+10
## 8924    4.238233e+10
## 8925    3.782300e+10
## 8926    5.256900e+10
## 8927    3.781646e+10
## 8928    2.376228e+10
## 8929    1.983813e+10
## 8930    1.775483e+10
## 8931    1.345852e+10
## 8932    1.151676e+10
## 8933    5.134368e+09
## 8934    4.113848e+09
## 8935    3.865347e+09
## 8936    3.281714e+09
## 8937    3.008121e+09
## 8938    2.896948e+09
## 8939              NA
## 8940              NA
## 8941              NA
## 8942    2.340521e+09
## 8943    1.978438e+09
## 8944    1.954635e+09
## 8945    1.831700e+09
## 8946    1.684122e+09
## 8947              NA
## 8948    5.041826e+11
## 8949    4.258523e+11
## 8950    3.993217e+11
## 8951    3.857367e+11
## 8952    3.363775e+11
## 8953    2.990911e+11
## 8954    2.917752e+11
## 8955    2.591709e+11
## 8956    2.383409e+11
## 8957    2.256287e+11
## 8958    2.390031e+11
## 8959    2.219136e+11
## 8960    2.364431e+11
## 8961    2.754475e+11
## 8962    2.700793e+11
## 8963    2.321806e+11
## 8964    2.118770e+11
## 8965    1.943721e+11
## 8966    1.646708e+11
## 8967    1.285960e+11
## 8968    1.093467e+11
## 8969    1.002076e+11
## 8970    9.889396e+10
## 8971    9.019941e+10
## 8972    8.285665e+10
## 8973    7.579079e+10
## 8974    6.913982e+10
## 8975    5.709766e+10
## 8976    5.241748e+10
## 8977    5.591854e+10
## 8978    4.978750e+10
## 8979    4.930563e+10
## 8980    3.923839e+10
## 8981    3.777290e+10
## 8982    3.392052e+10
## 8983    2.871457e+10
## 8984    2.127001e+10
## 8985    2.010665e+10
## 8986    2.076605e+10
## 8987    2.147475e+10
## 8988    2.067019e+10
## 8989    2.174786e+10
## 8990    1.831933e+10
## 8991    1.464800e+10
## 8992    1.124834e+10
## 8993    9.453756e+09
## 8994    9.483808e+09
## 8995    7.896861e+09
## 8996    7.481173e+09
## 8997    6.318061e+09
## 8998    5.098250e+09
## 8999    4.395995e+09
## 9000    3.787077e+09
## 9001    3.278584e+09
## 9002    3.343637e+09
## 9003    3.104034e+09
## 9004    2.945704e+09
## 9005    2.766609e+09
## 9006    2.430844e+09
## 9007    2.260350e+09
## 9008    2.088012e+09
## 9009    1.939330e+09
## 9010              NA
## 9011              NA
## 9012              NA
## 9013    7.315388e+09
## 9014    7.491969e+09
## 9015    6.979582e+09
## 9016    6.846692e+09
## 9017    7.085288e+09
## 9018    7.708835e+09
## 9019    7.000749e+09
## 9020    6.690725e+09
## 9021    6.566098e+09
## 9022    5.920178e+09
## 9023    5.487084e+09
## 9024    5.928421e+09
## 9025    4.466100e+09
## 9026    3.422651e+09
## 9027    3.032400e+09
## 9028    2.822358e+09
## 9029    2.328658e+09
## 9030    1.947333e+09
## 9031    1.659131e+09
## 9032    1.563668e+09
## 9033    1.567403e+09
## 9034    1.382605e+09
## 9035    1.180968e+09
## 9036    1.023006e+09
## 9037    9.147629e+08
## 9038              NA
## 9039              NA
## 9040              NA
## 9041              NA
## 9042              NA
## 9043              NA
## 9044              NA
## 9045              NA
## 9046              NA
## 9047              NA
## 9048              NA
## 9049              NA
## 9050              NA
## 9051              NA
## 9052              NA
## 9053              NA
## 9054              NA
## 9055              NA
## 9056              NA
## 9057              NA
## 9058              NA
## 9059              NA
## 9060              NA
## 9061              NA
## 9062              NA
## 9063              NA
## 9064              NA
## 9065              NA
## 9066              NA
## 9067              NA
## 9068              NA
## 9069              NA
## 9070              NA
## 9071              NA
## 9072              NA
## 9073              NA
## 9074    4.885265e+11
## 9075    4.132677e+11
## 9076    4.024705e+11
## 9077    3.766915e+11
## 9078    3.582454e+11
## 9079    3.221028e+11
## 9080    3.034143e+11
## 9081    3.143301e+11
## 9082    2.977328e+11
## 9083    2.622823e+11
## 9084    2.667919e+11
## 9085    2.383641e+11
## 9086    2.119700e+11
## 9087    2.205311e+11
## 9088    1.840521e+11
## 9089    1.586705e+11
## 9090    1.470840e+11
## 9091    1.399731e+11
## 9092    1.312999e+11
## 9093    1.250606e+11
## 9094    1.346358e+11
## 9095    1.360358e+11
## 9096    1.209229e+11
## 9097    1.200567e+11
## 9098    1.188594e+11
## 9099    1.145059e+11
## 9100    1.048930e+11
## 9101              NA
## 9102              NA
## 9103              NA
## 9104              NA
## 9105              NA
## 9106              NA
## 9107              NA
## 9108              NA
## 9109              NA
## 9110              NA
## 9111              NA
## 9112              NA
## 9113              NA
## 9114              NA
## 9115              NA
## 9116              NA
## 9117              NA
## 9118              NA
## 9119              NA
## 9120              NA
## 9121              NA
## 9122              NA
## 9123              NA
## 9124              NA
## 9125              NA
## 9126    5.329333e+09
## 9127    4.619000e+09
## 9128    4.030000e+09
## 9129    3.980000e+09
## 9130    3.663333e+09
## 9131    3.405333e+09
## 9132    2.992333e+09
## 9133    2.510000e+09
## 9134    3.138500e+09
## 9135    2.598500e+09
## 9136              NA
## 9137    2.107703e+12
## 9138    1.896755e+12
## 9139    2.011302e+12
## 9140    2.091932e+12
## 9141    1.961796e+12
## 9142    1.877072e+12
## 9143    1.836638e+12
## 9144    2.162010e+12
## 9145    2.141924e+12
## 9146    2.086958e+12
## 9147    2.294994e+12
## 9148    2.136100e+12
## 9149    2.199929e+12
## 9150    2.408655e+12
## 9151    2.213102e+12
## 9152    1.949552e+12
## 9153    1.858217e+12
## 9154    1.806543e+12
## 9155    1.577622e+12
## 9156    1.276769e+12
## 9157    1.168023e+12
## 9158    1.146677e+12
## 9159    1.252447e+12
## 9160    1.270053e+12
## 9161    1.241880e+12
## 9162    1.312427e+12
## 9163    1.174662e+12
## 9164    1.099217e+12
## 9165    1.064958e+12
## 9166    1.320162e+12
## 9167    1.246220e+12
## 9168    1.181223e+12
## 9169    9.286613e+11
## 9170    8.916090e+11
## 9171    8.057131e+11
## 9172    6.403864e+11
## 9173    4.522175e+11
## 9174    4.378877e+11
## 9175    4.430424e+11
## 9176    4.272726e+11
## 9177    4.307029e+11
## 9178    4.772568e+11
## 9179    3.936772e+11
## 9180    3.150583e+11
## 9181    2.575963e+11
## 9182    2.247173e+11
## 9183    2.276959e+11
## 9184    1.995645e+11
## 9185    1.754921e+11
## 9186    1.452600e+11
## 9187    1.246724e+11
## 9188    1.133953e+11
## 9189    9.708508e+10
## 9190    8.794223e+10
## 9191    8.113312e+10
## 9192    7.365487e+10
## 9193    6.797815e+10
## 9194    6.317542e+10
## 9195    5.771074e+10
## 9196    5.038389e+10
## 9197    4.484276e+10
## 9198    4.038529e+10
## 9199              NA
## 9200    1.465759e+10
## 9201    1.381243e+10
## 9202    1.583077e+10
## 9203    1.573079e+10
## 9204    1.480899e+10
## 9205    1.407711e+10
## 9206    1.418894e+10
## 9207    1.389923e+10
## 9208    1.426420e+10
## 9209    1.480709e+10
## 9210    1.444466e+10
## 9211    1.322056e+10
## 9212    1.212046e+10
## 9213    1.370940e+10
## 9214    1.279959e+10
## 9215    1.193017e+10
## 9216    1.124387e+10
## 9217    1.017466e+10
## 9218    9.430231e+09
## 9219    9.719018e+09
## 9220    9.194718e+09
## 9221    9.005064e+09
## 9222    8.887062e+09
## 9223    8.787196e+09
## 9224    8.400034e+09
## 9225    7.393884e+09
## 9226    6.577524e+09
## 9227    5.452564e+09
## 9228    5.440065e+09
## 9229    3.535460e+09
## 9230    4.106199e+09
## 9231    4.592224e+09
## 9232    4.404970e+09
## 9233    3.828311e+09
## 9234    3.286988e+09
## 9235    2.754566e+09
## 9236    2.100223e+09
## 9237    2.373567e+09
## 9238    3.619294e+09
## 9239    3.293533e+09
## 9240    2.979061e+09
## 9241    2.679409e+09
## 9242    2.425034e+09
## 9243    2.644449e+09
## 9244    3.249697e+09
## 9245    2.966010e+09
## 9246    2.860411e+09
## 9247    2.375096e+09
## 9248    1.905918e+09
## 9249    1.875049e+09
## 9250    1.539866e+09
## 9251    1.404776e+09
## 9252    1.191288e+09
## 9253    1.083883e+09
## 9254    1.148025e+09
## 9255    1.096738e+09
## 9256    9.721406e+08
## 9257    8.979314e+08
## 9258    8.266905e+08
## 9259    7.777124e+08
## 9260    7.480288e+08
## 9261    6.990507e+08
## 9262              NA
## 9263    4.940878e+12
## 9264    5.040108e+12
## 9265    5.123318e+12
## 9266    5.037835e+12
## 9267    4.930837e+12
## 9268    5.003678e+12
## 9269    4.444931e+12
## 9270    4.896994e+12
## 9271    5.212328e+12
## 9272    6.272363e+12
## 9273    6.233147e+12
## 9274    5.759072e+12
## 9275    5.289493e+12
## 9276    5.106679e+12
## 9277    4.579751e+12
## 9278    4.601663e+12
## 9279    4.831467e+12
## 9280    4.893116e+12
## 9281    4.519562e+12
## 9282    4.182846e+12
## 9283    4.374712e+12
## 9284    4.968359e+12
## 9285    4.635982e+12
## 9286    4.098363e+12
## 9287    4.492449e+12
## 9288    4.923392e+12
## 9289    5.545564e+12
## 9290    4.998798e+12
## 9291    4.454144e+12
## 9292    3.908809e+12
## 9293    3.584420e+12
## 9294    3.132818e+12
## 9295    3.054914e+12
## 9296    3.071683e+12
## 9297    2.532809e+12
## 9298    2.078953e+12
## 9299    1.398893e+12
## 9300    1.318382e+12
## 9301    1.243324e+12
## 9302    1.134518e+12
## 9303    1.218989e+12
## 9304    1.105386e+12
## 9305    1.055012e+12
## 9306    1.013612e+12
## 9307    7.214118e+11
## 9308    5.861619e+11
## 9309    5.215419e+11
## 9310    4.796260e+11
## 9311    4.320827e+11
## 9312    3.180313e+11
## 9313    2.401518e+11
## 9314    2.126092e+11
## 9315    1.722042e+11
## 9316    1.466011e+11
## 9317    1.237819e+11
## 9318    1.056281e+11
## 9319    9.095028e+10
## 9320    8.174901e+10
## 9321    6.949813e+10
## 9322    6.072302e+10
## 9323    5.350862e+10
## 9324    4.430734e+10
## 9325              NA
## 9326    4.574427e+10
## 9327    4.418230e+10
## 9328    4.499399e+10
## 9329    4.337086e+10
## 9330    4.160844e+10
## 9331    3.989255e+10
## 9332    3.858702e+10
## 9333    3.684764e+10
## 9334    3.445444e+10
## 9335    3.163456e+10
## 9336    2.952415e+10
## 9337    2.713380e+10
## 9338    2.453788e+10
## 9339    2.265766e+10
## 9340    1.711044e+10
## 9341    1.505698e+10
## 9342    1.258900e+10
## 9343    1.141171e+10
## 9344    1.019563e+10
## 9345    9.582511e+09
## 9346    8.975599e+09
## 9347    8.460790e+09
## 9348    8.149929e+09
## 9349    7.912271e+09
## 9350    7.245839e+09
## 9351    6.927504e+09
## 9352    6.727597e+09
## 9353    6.236296e+09
## 9354    5.606004e+09
## 9355    5.310974e+09
## 9356    4.344250e+09
## 9357    4.160163e+09
## 9358    4.221197e+09
## 9359    6.277318e+09
## 9360    6.755391e+09
## 9361    6.401429e+09
## 9362    4.993918e+09
## 9363    4.966710e+09
## 9364    4.920408e+09
## 9365    4.681135e+09
## 9366    4.384383e+09
## 9367    3.910373e+09
## 9368    3.271728e+09
## 9369    2.602421e+09
## 9370    2.096568e+09
## 9371    1.708434e+09
## 9372    1.363039e+09
## 9373    1.197454e+09
## 9374    9.437005e+08
## 9375    7.885746e+08
## 9376    6.782414e+08
## 9377    6.395968e+08
## 9378    6.989639e+08
## 9379    5.611873e+08
## 9380    6.317558e+08
## 9381    6.580790e+08
## 9382    5.998320e+08
## 9383              NA
## 9384              NA
## 9385              NA
## 9386              NA
## 9387              NA
## 9388              NA
## 9389    1.971123e+11
## 9390    1.710824e+11
## 9391    1.816672e+11
## 9392    1.793400e+11
## 9393    1.668058e+11
## 9394    1.372783e+11
## 9395    1.843884e+11
## 9396    2.214156e+11
## 9397    2.366346e+11
## 9398    2.079986e+11
## 9399    1.926265e+11
## 9400    1.480473e+11
## 9401    1.153087e+11
## 9402    1.334416e+11
## 9403    1.048499e+11
## 9404    8.100388e+10
## 9405    5.712367e+10
## 9406    4.315165e+10
## 9407    3.083370e+10
## 9408    2.463659e+10
## 9409    2.215269e+10
## 9410    1.829199e+10
## 9411    1.687082e+10
## 9412    2.213525e+10
## 9413    2.216593e+10
## 9414    2.103537e+10
## 9415    2.037430e+10
## 9416    2.125079e+10
## 9417    2.340926e+10
## 9418    2.491736e+10
## 9419    2.492308e+10
## 9420    2.693273e+10
## 9421              NA
## 9422              NA
## 9423              NA
## 9424              NA
## 9425              NA
## 9426              NA
## 9427              NA
## 9428              NA
## 9429              NA
## 9430              NA
## 9431              NA
## 9432              NA
## 9433              NA
## 9434              NA
## 9435              NA
## 9436              NA
## 9437              NA
## 9438              NA
## 9439              NA
## 9440              NA
## 9441              NA
## 9442              NA
## 9443              NA
## 9444              NA
## 9445              NA
## 9446              NA
## 9447              NA
## 9448              NA
## 9449              NA
## 9450              NA
## 9451              NA
## 9452    1.103471e+11
## 9453    1.006665e+11
## 9454    1.003797e+11
## 9455    9.220296e+10
## 9456    8.203580e+10
## 9457    7.481512e+10
## 9458    7.012041e+10
## 9459    6.828577e+10
## 9460    6.167143e+10
## 9461    5.639671e+10
## 9462    4.686946e+10
## 9463    4.540559e+10
## 9464    4.234722e+10
## 9465    3.589515e+10
## 9466    3.195820e+10
## 9467    2.582552e+10
## 9468    1.873790e+10
## 9469    1.609534e+10
## 9470    1.490452e+10
## 9471    1.314774e+10
## 9472    1.298601e+10
## 9473    1.270536e+10
## 9474    1.289601e+10
## 9475    1.409400e+10
## 9476    1.311577e+10
## 9477    1.204586e+10
## 9478    9.046326e+09
## 9479    7.148145e+09
## 9480    5.751790e+09
## 9481    8.209129e+09
## 9482    8.151479e+09
## 9483    8.572359e+09
## 9484    8.283115e+09
## 9485    8.355381e+09
## 9486    7.970821e+09
## 9487    7.239127e+09
## 9488    6.135034e+09
## 9489    6.191437e+09
## 9490    5.979198e+09
## 9491    6.431579e+09
## 9492    6.854491e+09
## 9493    7.265315e+09
## 9494    6.234391e+09
## 9495    5.303735e+09
## 9496    4.494379e+09
## 9497    3.474542e+09
## 9498    3.259345e+09
## 9499    2.969942e+09
## 9500    2.508998e+09
## 9501    2.107279e+09
## 9502    1.778391e+09
## 9503    1.603447e+09
## 9504    1.458379e+09
## 9505    1.353295e+09
## 9506    1.232560e+09
## 9507    1.164520e+09
## 9508    9.979193e+08
## 9509    9.987593e+08
## 9510    9.265893e+08
## 9511    8.681114e+08
## 9512    7.929595e+08
## 9513    7.912655e+08
## 9514              NA
## 9515    2.070312e+08
## 9516    1.809118e+08
## 9517    1.779353e+08
## 9518    1.962306e+08
## 9519    1.881921e+08
## 9520    1.785098e+08
## 9521    1.702910e+08
## 9522    1.778623e+08
## 9523    1.845508e+08
## 9524    1.896302e+08
## 9525    1.806658e+08
## 9526    1.552998e+08
## 9527    1.324199e+08
## 9528    1.410426e+08
## 9529    1.326717e+08
## 9530    1.102349e+08
## 9531    1.121339e+08
## 9532    1.023670e+08
## 9533    9.023186e+07
## 9534    7.219646e+07
## 9535    6.310127e+07
## 9536    6.725417e+07
## 9537    6.903226e+07
## 9538    6.533484e+07
## 9539    6.753748e+07
## 9540    6.651538e+07
## 9541    5.633803e+07
## 9542    5.483258e+07
## 9543    4.691962e+07
## 9544    4.773796e+07
## 9545    4.751519e+07
## 9546    4.293186e+07
## 9547    4.428278e+07
## 9548    4.453473e+07
## 9549    3.570928e+07
## 9550    3.141711e+07
## 9551    3.212515e+07
## 9552    4.212374e+07
## 9553    3.783784e+07
## 9554    4.057207e+07
## 9555    4.366812e+07
## 9556    4.213163e+07
## 9557    4.262017e+07
## 9558    4.521003e+07
## 9559    3.874806e+07
## 9560    4.110962e+07
## 9561    5.508182e+07
## 9562    8.563717e+07
## 9563    3.171066e+07
## 9564    1.893653e+07
## 9565    1.527863e+07
## 9566    1.429528e+07
## 9567              NA
## 9568              NA
## 9569              NA
## 9570              NA
## 9571              NA
## 9572              NA
## 9573              NA
## 9574              NA
## 9575              NA
## 9576              NA
## 9577              NA
## 9578              NA
## 9579              NA
## 9580              NA
## 9581              NA
## 9582              NA
## 9583              NA
## 9584              NA
## 9585              NA
## 9586              NA
## 9587              NA
## 9588              NA
## 9589              NA
## 9590              NA
## 9591              NA
## 9592              NA
## 9593              NA
## 9594              NA
## 9595              NA
## 9596              NA
## 9597              NA
## 9598              NA
## 9599              NA
## 9600              NA
## 9601              NA
## 9602              NA
## 9603              NA
## 9604              NA
## 9605              NA
## 9606              NA
## 9607              NA
## 9608              NA
## 9609              NA
## 9610              NA
## 9611              NA
## 9612              NA
## 9613              NA
## 9614              NA
## 9615              NA
## 9616              NA
## 9617              NA
## 9618              NA
## 9619              NA
## 9620              NA
## 9621              NA
## 9622              NA
## 9623              NA
## 9624              NA
## 9625              NA
## 9626              NA
## 9627              NA
## 9628              NA
## 9629              NA
## 9630              NA
## 9631              NA
## 9632              NA
## 9633              NA
## 9634              NA
## 9635              NA
## 9636              NA
## 9637              NA
## 9638              NA
## 9639              NA
## 9640              NA
## 9641    1.810956e+12
## 9642    1.644313e+12
## 9643    1.651423e+12
## 9644    1.724846e+12
## 9645    1.623901e+12
## 9646    1.500112e+12
## 9647    1.465773e+12
## 9648    1.484318e+12
## 9649    1.370795e+12
## 9650    1.278428e+12
## 9651    1.253223e+12
## 9652    1.144067e+12
## 9653    9.439419e+11
## 9654    1.047339e+12
## 9655    1.172614e+12
## 9656    1.053217e+12
## 9657    9.349011e+11
## 9658    7.931750e+11
## 9659    7.027173e+11
## 9660    6.272461e+11
## 9661    5.476582e+11
## 9662    5.761781e+11
## 9663    4.975127e+11
## 9664    3.833309e+11
## 9665    5.697545e+11
## 9666    6.101696e+11
## 9667    5.665834e+11
## 9668    4.636174e+11
## 9669    3.926661e+11
## 9670    3.555253e+11
## 9671    3.306485e+11
## 9672    2.833675e+11
## 9673    2.469273e+11
## 9674    1.995908e+11
## 9675    1.479483e+11
## 9676    1.168368e+11
## 9677    1.012962e+11
## 9678    9.751024e+10
## 9679    8.776036e+10
## 9680    7.835887e+10
## 9681    7.293335e+10
## 9682    6.539865e+10
## 9683    6.694690e+10
## 9684    5.197211e+10
## 9685    3.844649e+10
## 9686    2.990248e+10
## 9687    2.178430e+10
## 9688    1.954409e+10
## 9689    1.387653e+10
## 9690    1.086233e+10
## 9691    9.903500e+09
## 9692    9.005023e+09
## 9693    7.678720e+09
## 9694    6.119284e+09
## 9695    4.855833e+09
## 9696    3.929019e+09
## 9697    3.120871e+09
## 9698    3.459033e+09
## 9699    3.988477e+09
## 9700    2.814626e+09
## 9701    2.417638e+09
## 9702    3.958824e+09
## 9703              NA
## 9704    9.412034e+09
## 9705    7.716925e+09
## 9706    7.899879e+09
## 9707    7.878509e+09
## 9708    7.180813e+09
## 9709    6.682833e+09
## 9710    6.295820e+09
## 9711    7.074658e+09
## 9712    6.735731e+09
## 9713    6.163785e+09
## 9714    6.341737e+09
## 9715    5.344014e+09
## 9716    5.015895e+09
## 9717    5.181777e+09
## 9718              NA
## 9719              NA
## 9720              NA
## 9721              NA
## 9722              NA
## 9723              NA
## 9724              NA
## 9725              NA
## 9726              NA
## 9727              NA
## 9728              NA
## 9729              NA
## 9730              NA
## 9731              NA
## 9732              NA
## 9733              NA
## 9734              NA
## 9735              NA
## 9736              NA
## 9737              NA
## 9738              NA
## 9739              NA
## 9740              NA
## 9741              NA
## 9742              NA
## 9743              NA
## 9744              NA
## 9745              NA
## 9746              NA
## 9747              NA
## 9748              NA
## 9749              NA
## 9750              NA
## 9751              NA
## 9752              NA
## 9753              NA
## 9754              NA
## 9755              NA
## 9756              NA
## 9757              NA
## 9758              NA
## 9759              NA
## 9760              NA
## 9761              NA
## 9762              NA
## 9763              NA
## 9764              NA
## 9765              NA
## 9766              NA
## 9767              NA
## 9768    1.059602e+11
## 9769    1.361968e+11
## 9770    1.381824e+11
## 9771    1.207074e+11
## 9772    1.094197e+11
## 9773    1.145673e+11
## 9774    1.626314e+11
## 9775    1.741611e+11
## 9776    1.740704e+11
## 9777    1.540681e+11
## 9778    1.154194e+11
## 9779    1.059632e+11
## 9780    1.473951e+11
## 9781    1.146397e+11
## 9782    1.015489e+11
## 9783    8.079863e+10
## 9784    5.943909e+10
## 9785    4.787651e+10
## 9786    3.813755e+10
## 9787    3.488751e+10
## 9788    3.771284e+10
## 9789    3.012385e+10
## 9790    2.593996e+10
## 9791    3.035509e+10
## 9792    3.149332e+10
## 9793    2.719135e+10
## 9794    2.484848e+10
## 9795    2.394139e+10
## 9796    1.985856e+10
## 9797    1.100879e+10
## 9798    1.842778e+10
## 9799    2.431212e+10
## 9800    2.069247e+10
## 9801    2.236573e+10
## 9802    1.790368e+10
## 9803    2.144262e+10
## 9804    2.169730e+10
## 9805    2.086943e+10
## 9806    2.157798e+10
## 9807    2.505667e+10
## 9808    2.863855e+10
## 9809    2.474602e+10
## 9810    1.550091e+10
## 9811    1.413573e+10
## 9812    1.313167e+10
## 9813    1.202414e+10
## 9814    1.300477e+10
## 9815    5.408294e+09
## 9816    4.451201e+09
## 9817    3.880370e+09
## 9818    2.873985e+09
## 9819    2.769532e+09
## 9820    2.663120e+09
## 9821    2.441893e+09
## 9822    2.391487e+09
## 9823    2.097452e+09
## 9824              NA
## 9825              NA
## 9826              NA
## 9827              NA
## 9828              NA
## 9829              NA
## 9830    8.543424e+09
## 9831    7.780875e+09
## 9832    8.871026e+09
## 9833    8.271109e+09
## 9834    7.702935e+09
## 9835    6.813092e+09
## 9836    6.678178e+09
## 9837    7.468097e+09
## 9838    7.335028e+09
## 9839    6.605140e+09
## 9840    6.197766e+09
## 9841    4.794358e+09
## 9842    4.690062e+09
## 9843    5.139958e+09
## 9844    3.802566e+09
## 9845    2.834169e+09
## 9846    2.460248e+09
## 9847    2.211535e+09
## 9848    1.919008e+09
## 9849    1.605643e+09
## 9850    1.525116e+09
## 9851    1.369688e+09
## 9852    1.249061e+09
## 9853    1.645964e+09
## 9854    1.767864e+09
## 9855    1.827571e+09
## 9856    1.661019e+09
## 9857    1.681007e+09
## 9858    2.028295e+09
## 9859    2.316562e+09
## 9860    2.569444e+09
## 9861    2.675000e+09
## 9862              NA
## 9863              NA
## 9864              NA
## 9865              NA
## 9866              NA
## 9867              NA
## 9868              NA
## 9869              NA
## 9870              NA
## 9871              NA
## 9872              NA
## 9873              NA
## 9874              NA
## 9875              NA
## 9876              NA
## 9877              NA
## 9878              NA
## 9879              NA
## 9880              NA
## 9881              NA
## 9882              NA
## 9883              NA
## 9884              NA
## 9885              NA
## 9886              NA
## 9887              NA
## 9888              NA
## 9889              NA
## 9890              NA
## 9891              NA
## 9892              NA
## 9893    1.882715e+10
## 9894    1.898180e+10
## 9895    1.874056e+10
## 9896    1.814165e+10
## 9897    1.707116e+10
## 9898    1.591250e+10
## 9899    1.442638e+10
## 9900    1.327925e+10
## 9901    1.198325e+10
## 9902    1.019285e+10
## 9903    8.750107e+09
## 9904    7.131774e+09
## 9905    5.836138e+09
## 9906    5.446434e+09
## 9907    4.223152e+09
## 9908    3.455031e+09
## 9909    2.735559e+09
## 9910    2.366398e+09
## 9911    2.023324e+09
## 9912    1.758177e+09
## 9913    1.768619e+09
## 9914    1.731198e+09
## 9915    1.454431e+09
## 9916    1.280178e+09
## 9917    1.747012e+09
## 9918    1.873672e+09
## 9919    1.763536e+09
## 9920    1.543606e+09
## 9921    1.327749e+09
## 9922    1.127807e+09
## 9923    1.028088e+09
## 9924    8.655599e+08
## 9925    7.140468e+08
## 9926    5.989613e+08
## 9927    1.087273e+09
## 9928    1.776842e+09
## 9929    2.366667e+09
## 9930    1.757143e+09
## 9931              NA
## 9932              NA
## 9933              NA
## 9934              NA
## 9935              NA
## 9936              NA
## 9937              NA
## 9938              NA
## 9939              NA
## 9940              NA
## 9941              NA
## 9942              NA
## 9943              NA
## 9944              NA
## 9945              NA
## 9946              NA
## 9947              NA
## 9948              NA
## 9949              NA
## 9950              NA
## 9951              NA
## 9952              NA
## 9953              NA
## 9954              NA
## 9955              NA
## 9956    3.985350e+10
## 9957    3.460174e+10
## 9958    3.434396e+10
## 9959    3.442902e+10
## 9960    3.048381e+10
## 9961    2.808360e+10
## 9962    2.726309e+10
## 9963    3.138690e+10
## 9964    3.020478e+10
## 9965    2.816990e+10
## 9966    2.747438e+10
## 9967    2.395616e+10
## 9968    2.641091e+10
## 9969    3.585427e+10
## 9970    3.105435e+10
## 9971    2.157008e+10
## 9972    1.700346e+10
## 9973    1.443570e+10
## 9974    1.177198e+10
## 9975    9.557032e+09
## 9976    8.362399e+09
## 9977    7.958853e+09
## 9978    7.533788e+09
## 9979    7.166275e+09
## 9980    6.527926e+09
## 9981    5.975249e+09
## 9982    5.789129e+09
## 9983              NA
## 9984              NA
## 9985              NA
## 9986              NA
## 9987              NA
## 9988              NA
## 9989              NA
## 9990              NA
## 9991              NA
## 9992              NA
## 9993              NA
## 9994              NA
## 9995              NA
## 9996              NA
## 9997              NA
## 9998              NA
## 9999              NA
## 10000             NA
## 10001             NA
## 10002             NA
## 10003             NA
## 10004             NA
## 10005             NA
## 10006             NA
## 10007             NA
## 10008             NA
## 10009             NA
## 10010             NA
## 10011             NA
## 10012             NA
## 10013             NA
## 10014             NA
## 10015             NA
## 10016             NA
## 10017             NA
## 10018             NA
## 10019   2.313194e+10
## 10020   3.171213e+10
## 10021   5.195374e+10
## 10022   5.490152e+10
## 10023   5.302768e+10
## 10024   5.114731e+10
## 10025   4.992934e+10
## 10026   4.809521e+10
## 10027   4.688010e+10
## 10028   4.401680e+10
## 10029   3.992713e+10
## 10030   3.844391e+10
## 10031   3.539958e+10
## 10032   2.911892e+10
## 10033   2.482736e+10
## 10034   2.202271e+10
## 10035   2.149734e+10
## 10036   2.115983e+10
## 10037   2.008292e+10
## 10038   1.915224e+10
## 10039   1.764975e+10
## 10040   1.726036e+10
## 10041   1.739106e+10
## 10042   1.724718e+10
## 10043   1.575187e+10
## 10044   1.369022e+10
## 10045   1.171880e+10
## 10046   9.599127e+09
## 10047   7.941744e+09
## 10048   5.843579e+09
## 10049   4.690415e+09
## 10050   2.838485e+09
## 10051   2.717999e+09
## 10052   3.313540e+09
## 10053             NA
## 10054             NA
## 10055             NA
## 10056             NA
## 10057             NA
## 10058             NA
## 10059             NA
## 10060             NA
## 10061             NA
## 10062             NA
## 10063             NA
## 10064             NA
## 10065             NA
## 10066             NA
## 10067             NA
## 10068             NA
## 10069             NA
## 10070             NA
## 10071             NA
## 10072             NA
## 10073             NA
## 10074             NA
## 10075             NA
## 10076             NA
## 10077             NA
## 10078             NA
## 10079             NA
## 10080             NA
## 10081             NA
## 10082   2.496135e+09
## 10083   2.231215e+09
## 10084   2.453981e+09
## 10085   2.553496e+09
## 10086   2.306742e+09
## 10087   2.114428e+09
## 10088   2.359760e+09
## 10089   2.441053e+09
## 10090   2.367113e+09
## 10091   2.477702e+09
## 10092   2.579422e+09
## 10093   2.234732e+09
## 10094   1.740831e+09
## 10095   1.766825e+09
## 10096   1.682017e+09
## 10097   1.800106e+09
## 10098   1.682351e+09
## 10099   1.511237e+09
## 10100   1.157833e+09
## 10101   7.757807e+08
## 10102   8.257070e+08
## 10103   8.872953e+08
## 10104   9.127713e+08
## 10105   9.284582e+08
## 10106   9.979960e+08
## 10107   9.461233e+08
## 10108   1.001890e+09
## 10109   8.782505e+08
## 10110   8.355928e+08
## 10111   8.310339e+08
## 10112   7.043292e+08
## 10113   5.964151e+08
## 10114   4.954049e+08
## 10115   4.703892e+08
## 10116   4.027749e+08
## 10117   3.188629e+08
## 10118   2.686269e+08
## 10119   3.331585e+08
## 10120   3.866993e+08
## 10121   3.487468e+08
## 10122   4.341880e+08
## 10123   4.315614e+08
## 10124   2.901425e+08
## 10125   2.665593e+08
## 10126   1.933073e+08
## 10127   1.476541e+08
## 10128   1.495605e+08
## 10129   1.508462e+08
## 10130   1.211816e+08
## 10131   8.091583e+07
## 10132   7.648210e+07
## 10133   6.873863e+07
## 10134   6.596668e+07
## 10135   6.144477e+07
## 10136   5.926081e+07
## 10137   5.669887e+07
## 10138   5.487890e+07
## 10139   5.193896e+07
## 10140   4.703906e+07
## 10141   4.185916e+07
## 10142   3.569929e+07
## 10143   3.457931e+07
## 10144             NA
## 10145   3.509000e+09
## 10146   3.039982e+09
## 10147   3.319596e+09
## 10148   3.422755e+09
## 10149   3.390703e+09
## 10150   3.398420e+09
## 10151   3.227076e+09
## 10152   3.225652e+09
## 10153   3.177198e+09
## 10154   2.791614e+09
## 10155   2.398000e+09
## 10156   1.998000e+09
## 10157   1.768000e+09
## 10158   1.726000e+09
## 10159   1.373000e+09
## 10160   1.119000e+09
## 10161   9.490000e+08
## 10162   8.970000e+08
## 10163   7.480000e+08
## 10164   9.270000e+08
## 10165   9.060000e+08
## 10166   8.740000e+08
## 10167             NA
## 10168             NA
## 10169             NA
## 10170             NA
## 10171             NA
## 10172             NA
## 10173             NA
## 10174             NA
## 10175             NA
## 10176             NA
## 10177             NA
## 10178             NA
## 10179             NA
## 10180             NA
## 10181             NA
## 10182             NA
## 10183             NA
## 10184             NA
## 10185             NA
## 10186             NA
## 10187             NA
## 10188             NA
## 10189             NA
## 10190             NA
## 10191             NA
## 10192             NA
## 10193             NA
## 10194             NA
## 10195             NA
## 10196             NA
## 10197             NA
## 10198             NA
## 10199             NA
## 10200             NA
## 10201             NA
## 10202             NA
## 10203             NA
## 10204             NA
## 10205             NA
## 10206             NA
## 10207             NA
## 10208   4.281747e+10
## 10209   5.035731e+10
## 10210   6.925231e+10
## 10211   7.668418e+10
## 10212   6.715842e+10
## 10213   4.991096e+10
## 10214   4.871785e+10
## 10215   5.737245e+10
## 10216   7.535063e+10
## 10217   9.253800e+10
## 10218   4.816737e+10
## 10219   7.538017e+10
## 10220   6.081021e+10
## 10221   8.670807e+10
## 10222   6.803540e+10
## 10223   6.009295e+10
## 10224   4.733415e+10
## 10225   3.312231e+10
## 10226   2.626562e+10
## 10227   2.048189e+10
## 10228   3.411006e+10
## 10229   3.827021e+10
## 10230   3.597671e+10
## 10231   2.724979e+10
## 10232   3.069863e+10
## 10233   2.788462e+10
## 10234   2.554413e+10
## 10235   2.860792e+10
## 10236   3.065703e+10
## 10237   3.388139e+10
## 10238   3.199501e+10
## 10239   2.890184e+10
## 10240             NA
## 10241             NA
## 10242             NA
## 10243             NA
## 10244             NA
## 10245             NA
## 10246             NA
## 10247             NA
## 10248             NA
## 10249             NA
## 10250             NA
## 10251             NA
## 10252             NA
## 10253             NA
## 10254             NA
## 10255             NA
## 10256             NA
## 10257             NA
## 10258             NA
## 10259             NA
## 10260             NA
## 10261             NA
## 10262             NA
## 10263             NA
## 10264             NA
## 10265             NA
## 10266             NA
## 10267             NA
## 10268             NA
## 10269             NA
## 10270             NA
## 10271             NA
## 10272   6.113951e+09
## 10273   6.427249e+09
## 10274   6.692504e+09
## 10275   6.474256e+09
## 10276   6.237264e+09
## 10277   6.268392e+09
## 10278   6.657171e+09
## 10279   6.391736e+09
## 10280   5.456009e+09
## 10281   5.739977e+09
## 10282   5.082366e+09
## 10283   4.504549e+09
## 10284   5.081433e+09
## 10285   4.601300e+09
## 10286   4.000239e+09
## 10287   3.659252e+09
## 10288   3.454363e+09
## 10289   3.070691e+09
## 10290   2.688631e+09
## 10291   2.491823e+09
## 10292   2.483953e+09
## 10293   2.664026e+09
## 10294   2.479721e+09
## 10295   2.298410e+09
## 10296   2.504033e+09
## 10297   2.428461e+09
## 10298   1.948118e+09
## 10299   1.673104e+09
## 10300   1.631198e+09
## 10301   1.484152e+09
## 10302   1.421466e+09
## 10303   1.120001e+09
## 10304   1.161758e+09
## 10305   1.052843e+09
## 10306   7.793652e+08
## 10307   5.290790e+08
## 10308   5.026174e+08
## 10309   5.240341e+08
## 10310   5.220903e+08
## 10311   5.116587e+08
## 10312   5.347019e+08
## 10313   5.031807e+08
## 10314   4.369182e+08
## 10315   3.034963e+08
## 10316   2.724939e+08
## 10317   2.463875e+08
## 10318   1.939837e+08
## 10319   1.659306e+08
## 10320   1.249419e+08
## 10321   1.048886e+08
## 10322   9.009833e+07
## 10323             NA
## 10324             NA
## 10325             NA
## 10326             NA
## 10327             NA
## 10328             NA
## 10329             NA
## 10330             NA
## 10331             NA
## 10332             NA
## 10333             NA
## 10334   6.644526e+10
## 10335   5.684662e+10
## 10336   5.475151e+10
## 10337   5.375141e+10
## 10338   4.775874e+10
## 10339   4.304731e+10
## 10340   4.143553e+10
## 10341   4.853366e+10
## 10342   4.652342e+10
## 10343   4.292745e+10
## 10344   4.353505e+10
## 10345   3.712869e+10
## 10346   3.738812e+10
## 10347   4.779755e+10
## 10348   3.969789e+10
## 10349   3.018358e+10
## 10350   2.609768e+10
## 10351   2.262751e+10
## 10352   1.878172e+10
## 10353   1.425978e+10
## 10354   1.223739e+10
## 10355   1.152478e+10
## 10356   1.097158e+10
## 10357   1.123955e+10
## 10358   1.011863e+10
## 10359   8.382520e+09
## 10360   7.867140e+09
## 10361             NA
## 10362             NA
## 10363             NA
## 10364             NA
## 10365             NA
## 10366             NA
## 10367             NA
## 10368             NA
## 10369             NA
## 10370             NA
## 10371             NA
## 10372             NA
## 10373             NA
## 10374             NA
## 10375             NA
## 10376             NA
## 10377             NA
## 10378             NA
## 10379             NA
## 10380             NA
## 10381             NA
## 10382             NA
## 10383             NA
## 10384             NA
## 10385             NA
## 10386             NA
## 10387             NA
## 10388             NA
## 10389             NA
## 10390             NA
## 10391             NA
## 10392             NA
## 10393             NA
## 10394             NA
## 10395             NA
## 10396             NA
## 10397   8.550624e+10
## 10398   7.399259e+10
## 10399   6.982564e+10
## 10400   7.100036e+10
## 10401   6.571218e+10
## 10402   6.221689e+10
## 10403   6.007158e+10
## 10404   6.880481e+10
## 10405   6.520328e+10
## 10406   5.977638e+10
## 10407   6.169628e+10
## 10408   5.621399e+10
## 10409   5.446729e+10
## 10410   5.884428e+10
## 10411   5.158740e+10
## 10412   4.291015e+10
## 10413   3.767228e+10
## 10414   3.506484e+10
## 10415   2.966727e+10
## 10416   2.364983e+10
## 10417   2.138753e+10
## 10418   2.123018e+10
## 10419   2.189932e+10
## 10420   2.015005e+10
## 10421   1.956384e+10
## 10422   2.089531e+10
## 10423   2.085309e+10
## 10424   1.770180e+10
## 10425   1.592552e+10
## 10426   1.551870e+10
## 10427   1.383422e+10
## 10428   1.277879e+10
## 10429   1.003767e+10
## 10430   9.418168e+09
## 10431   8.320902e+09
## 10432   6.685595e+09
## 10433   4.577212e+09
## 10434   4.438435e+09
## 10435   4.524218e+09
## 10436   4.602317e+09
## 10437   5.053666e+09
## 10438   6.019805e+09
## 10439   5.516983e+09
## 10440   4.718540e+09
## 10441   3.789321e+09
## 10442   3.423586e+09
## 10443   3.123333e+09
## 10444   3.183637e+09
## 10445   2.609876e+09
## 10446   1.901697e+09
## 10447   1.518773e+09
## 10448   1.457768e+09
## 10449   1.234879e+09
## 10450   1.066447e+09
## 10451   9.747218e+08
## 10452   9.684401e+08
## 10453   9.216007e+08
## 10454   9.031588e+08
## 10455   7.911406e+08
## 10456   7.415095e+08
## 10457   7.041457e+08
## 10458   7.039257e+08
## 10459             NA
## 10460   3.012391e+10
## 10461   2.545956e+10
## 10462   5.520476e+10
## 10463   5.528436e+10
## 10464   5.044094e+10
## 10465   4.507061e+10
## 10466   4.504796e+10
## 10467   5.490303e+10
## 10468   5.153630e+10
## 10469   4.318953e+10
## 10470   3.684593e+10
## 10471   2.824186e+10
## 10472   2.158774e+10
## 10473   2.102704e+10
## 10474   1.843988e+10
## 10475   1.487415e+10
## 10476   1.216000e+10
## 10477   1.064322e+10
## 10478   8.246522e+09
## 10479   7.371723e+09
## 10480   6.860273e+09
## 10481   6.774194e+09
## 10482   6.547629e+09
## 10483   6.797764e+09
## 10484   7.267564e+09
## 10485   7.176893e+09
## 10486   7.046111e+09
## 10487   6.311194e+09
## 10488   5.665571e+09
## 10489   4.914391e+09
## 10490   3.765226e+09
## 10491   3.246478e+09
## 10492   2.705660e+09
## 10493   2.288760e+09
## 10494   1.957727e+09
## 10495   1.532097e+09
## 10496   1.362079e+09
## 10497   1.304353e+09
## 10498   1.133008e+09
## 10499   1.142504e+09
## 10500             NA
## 10501             NA
## 10502             NA
## 10503             NA
## 10504             NA
## 10505             NA
## 10506             NA
## 10507             NA
## 10508             NA
## 10509             NA
## 10510             NA
## 10511             NA
## 10512             NA
## 10513             NA
## 10514             NA
## 10515             NA
## 10516             NA
## 10517             NA
## 10518             NA
## 10519             NA
## 10520             NA
## 10521             NA
## 10522             NA
## 10523   1.447260e+10
## 10524   1.305144e+10
## 10525   1.410466e+10
## 10526   1.376003e+10
## 10527   1.317631e+10
## 10528   1.184861e+10
## 10529   1.132302e+10
## 10530   1.252296e+10
## 10531   1.242356e+10
## 10532   1.157897e+10
## 10533   1.155182e+10
## 10534   9.982711e+09
## 10535   9.616880e+09
## 10536   1.072514e+10
## 10537   8.524621e+09
## 10538   6.395712e+09
## 10539   5.859270e+09
## 10540   5.064733e+09
## 10541   6.372499e+09
## 10542   5.351702e+09
## 10543   5.438333e+09
## 10544   4.629247e+09
## 10545   4.277904e+09
## 10546   4.401967e+09
## 10547   4.262965e+09
## 10548   4.931861e+09
## 10549   3.838101e+09
## 10550   3.522227e+09
## 10551   4.063299e+09
## 10552   3.714967e+09
## 10553   3.254713e+09
## 10554   3.931335e+09
## 10555   3.175638e+09
## 10556   3.189457e+09
## 10557   3.212901e+09
## 10558   4.347990e+09
## 10559   3.802558e+09
## 10560   3.905938e+09
## 10561   4.686457e+09
## 10562   4.784977e+09
## 10563   4.759334e+09
## 10564   5.201818e+09
## 10565   3.463566e+09
## 10566   2.669755e+09
## 10567   2.358930e+09
## 10568   2.181844e+09
## 10569   2.283049e+09
## 10570   1.917508e+09
## 10571   1.653062e+09
## 10572   1.341591e+09
## 10573   1.199508e+09
## 10574   1.111860e+09
## 10575   1.056391e+09
## 10576   1.031670e+09
## 10577   9.564369e+08
## 10578   9.002646e+08
## 10579   8.335635e+08
## 10580   8.024822e+08
## 10581   7.593459e+08
## 10582   7.392869e+08
## 10583   6.991619e+08
## 10584   6.730817e+08
## 10585             NA
## 10586   1.262672e+10
## 10587   1.218235e+10
## 10588   1.102537e+10
## 10589   9.880676e+09
## 10590   8.943544e+09
## 10591   5.433040e+09
## 10592   6.373213e+09
## 10593   6.047813e+09
## 10594   5.518881e+09
## 10595   6.028488e+09
## 10596   8.004001e+09
## 10597   6.959656e+09
## 10598   6.191128e+09
## 10599   5.321012e+09
## 10600   4.432937e+09
## 10601   3.998020e+09
## 10602   3.655910e+09
## 10603   3.476094e+09
## 10604   3.208837e+09
## 10605   3.495748e+09
## 10606   1.716503e+09
## 10607   1.743507e+09
## 10608   1.775922e+09
## 10609   1.750584e+09
## 10610   2.663235e+09
## 10611   2.281034e+09
## 10612   1.397458e+09
## 10613   1.181803e+09
## 10614   2.070637e+09
## 10615   1.799517e+09
## 10616   2.203546e+09
## 10617   1.880772e+09
## 10618   1.590216e+09
## 10619   1.379924e+09
## 10620   1.183094e+09
## 10621   1.183655e+09
## 10622   1.131348e+09
## 10623   1.208009e+09
## 10624   1.223187e+09
## 10625   1.180104e+09
## 10626   1.237686e+09
## 10627   1.237655e+09
## 10628   1.058269e+09
## 10629   9.490340e+08
## 10630   8.062908e+08
## 10631   6.703176e+08
## 10632   6.132207e+08
## 10633   5.486210e+08
## 10634   4.442817e+08
## 10635   4.060629e+08
## 10636   3.653869e+08
## 10637   2.905316e+08
## 10638   2.658106e+08
## 10639   2.451698e+08
## 10640   2.698150e+08
## 10641   2.603948e+08
## 10642   2.294554e+08
## 10643   1.947361e+08
## 10644   1.908162e+08
## 10645   1.831163e+08
## 10646   1.745765e+08
## 10647   1.629567e+08
## 10648             NA
## 10649   3.729810e+11
## 10650   3.373379e+11
## 10651   3.651751e+11
## 10652   3.587916e+11
## 10653   3.191122e+11
## 10654   3.012555e+11
## 10655   3.013548e+11
## 10656   3.380620e+11
## 10657   3.232772e+11
## 10658   3.144431e+11
## 10659   2.979520e+11
## 10660   2.550166e+11
## 10661   2.022576e+11
## 10662   2.308139e+11
## 10663   1.935478e+11
## 10664   1.626912e+11
## 10665   1.435341e+11
## 10666   1.247495e+11
## 10667   1.102024e+11
## 10668   1.008455e+11
## 10669   9.278395e+10
## 10670   9.378974e+10
## 10671   7.914842e+10
## 10672   7.216750e+10
## 10673   1.000053e+11
## 10674   1.008554e+11
## 10675   8.870534e+10
## 10676   7.447836e+10
## 10677   6.689484e+10
## 10678   5.916755e+10
## 10679   4.914315e+10
## 10680   4.402418e+10
## 10681   3.884857e+10
## 10682   3.527188e+10
## 10683   3.218170e+10
## 10684   2.773456e+10
## 10685   3.120016e+10
## 10686   3.394351e+10
## 10687   3.034679e+10
## 10688   2.680440e+10
## 10689   2.500456e+10
## 10690   2.448803e+10
## 10691   2.121367e+10
## 10692   1.635838e+10
## 10693   1.313940e+10
## 10694   1.105013e+10
## 10695   9.298801e+09
## 10696   9.496074e+09
## 10697   7.662997e+09
## 10698   5.043269e+09
## 10699   4.244340e+09
## 10700   3.864171e+09
## 10701   3.664576e+09
## 10702   3.330393e+09
## 10703   3.188946e+09
## 10704   3.143538e+09
## 10705   2.956357e+09
## 10706   2.674441e+09
## 10707   2.510127e+09
## 10708   2.001503e+09
## 10709   1.901869e+09
## 10710   1.916242e+09
## 10711             NA
## 10712   5.405576e+09
## 10713   3.746322e+09
## 10714   5.609401e+09
## 10715   5.300963e+09
## 10716   4.754176e+09
## 10717   4.379136e+09
## 10718   4.109425e+09
## 10719   3.697352e+09
## 10720   3.295011e+09
## 10721   2.886171e+09
## 10722   2.774352e+09
## 10723   2.588176e+09
## 10724   2.345295e+09
## 10725   2.271646e+09
## 10726   1.868383e+09
## 10727   1.575200e+09
## 10728   1.163362e+09
## 10729   1.226830e+09
## 10730   1.052121e+09
## 10731   8.970312e+08
## 10732   8.700305e+08
## 10733   6.243371e+08
## 10734   5.892398e+08
## 10735   5.400964e+08
## 10736   5.082236e+08
## 10737   4.503823e+08
## 10738   3.989890e+08
## 10739   3.560134e+08
## 10740   3.224178e+08
## 10741   2.848749e+08
## 10742   2.443968e+08
## 10743   2.150440e+08
## 10744   1.895144e+08
## 10745   1.685145e+08
## 10746   1.412230e+08
## 10747   1.418823e+08
## 10748   1.271908e+08
## 10749   1.095035e+08
## 10750   5.782979e+07
## 10751   4.791112e+07
## 10752   4.478146e+07
## 10753   4.246358e+07
## 10754             NA
## 10755             NA
## 10756             NA
## 10757             NA
## 10758             NA
## 10759             NA
## 10760             NA
## 10761             NA
## 10762             NA
## 10763             NA
## 10764             NA
## 10765             NA
## 10766             NA
## 10767             NA
## 10768             NA
## 10769             NA
## 10770             NA
## 10771             NA
## 10772             NA
## 10773             NA
## 10774             NA
## 10775   1.914046e+10
## 10776   1.746539e+10
## 10777   1.728025e+10
## 10778   1.707087e+10
## 10779   1.536571e+10
## 10780   1.402605e+10
## 10781   1.310476e+10
## 10782   1.436494e+10
## 10783   1.324269e+10
## 10784   1.244204e+10
## 10785   1.299511e+10
## 10786   1.068917e+10
## 10787   1.023196e+10
## 10788   9.838404e+09
## 10789   8.156469e+09
## 10790   6.905935e+09
## 10791   6.247515e+09
## 10792   5.454249e+09
## 10793   4.714072e+09
## 10794   3.908121e+09
## 10795   3.468338e+09
## 10796   2.961485e+09
## 10797   3.440725e+09
## 10798   2.920359e+09
## 10799   2.697106e+09
## 10800   2.780422e+09
## 10801   2.706425e+09
## 10802   2.081846e+09
## 10803   2.818281e+09
## 10804   2.830673e+09
## 10805   2.724131e+09
## 10806   2.681912e+09
## 10807   2.181822e+09
## 10808   2.169041e+09
## 10809   2.090630e+09
## 10810   1.852163e+09
## 10811   1.392196e+09
## 10812   1.232932e+09
## 10813   1.297765e+09
## 10814   1.333754e+09
## 10815   1.538972e+09
## 10816   1.759691e+09
## 10817   1.595423e+09
## 10818   1.222703e+09
## 10819   1.049839e+09
## 10820   9.392280e+08
## 10821   8.307106e+08
## 10822   5.387473e+08
## 10823   5.636837e+08
## 10824   4.866173e+08
## 10825   3.952186e+08
## 10826   3.597723e+08
## 10827   3.399139e+08
## 10828   3.437720e+08
## 10829   2.754945e+08
## 10830             NA
## 10831             NA
## 10832             NA
## 10833             NA
## 10834             NA
## 10835             NA
## 10836             NA
## 10837             NA
## 10838   1.736404e+10
## 10839   1.493307e+10
## 10840   1.572585e+10
## 10841   1.529877e+10
## 10842   1.348938e+10
## 10843   1.166825e+10
## 10844   1.109142e+10
## 10845   1.162628e+10
## 10846   1.055160e+10
## 10847   9.462290e+09
## 10848   9.638920e+09
## 10849   9.035927e+09
## 10850   8.696305e+09
## 10851   9.090376e+09
## 10852   7.925404e+09
## 10853   6.778321e+09
## 10854   6.407288e+09
## 10855   6.116592e+09
## 10856   5.489359e+09
## 10857   4.693496e+09
## 10858   4.355146e+09
## 10859   4.323339e+09
## 10860   4.155187e+09
## 10861   3.958227e+09
## 10862   3.722389e+09
## 10863   3.585755e+09
## 10864   3.461333e+09
## 10865   2.998570e+09
## 10866   2.709178e+09
## 10867   3.021910e+09
## 10868   2.750041e+09
## 10869   2.547164e+09
## 10870   2.118575e+09
## 10871   2.019474e+09
## 10872   1.751248e+09
## 10873   1.435079e+09
## 10874   1.117835e+09
## 10875   1.101829e+09
## 10876   1.165771e+09
## 10877   1.234518e+09
## 10878   1.243469e+09
## 10879   1.250242e+09
## 10880   1.001301e+09
## 10881   7.936752e+08
## 10882   6.255733e+08
## 10883   5.279370e+08
## 10884   4.746204e+08
## 10885   3.760941e+08
## 10886   3.456020e+08
## 10887   2.951182e+08
## 10888   2.645799e+08
## 10889   2.507218e+08
## 10890             NA
## 10891             NA
## 10892             NA
## 10893             NA
## 10894             NA
## 10895             NA
## 10896             NA
## 10897             NA
## 10898             NA
## 10899             NA
## 10900             NA
## 10901   2.595387e+08
## 10902   2.417224e+08
## 10903   2.320923e+08
## 10904   2.193303e+08
## 10905   2.127012e+08
## 10906   2.007160e+08
## 10907   1.829973e+08
## 10908   1.851729e+08
## 10909   1.854680e+08
## 10910   1.798558e+08
## 10911   1.715671e+08
## 10912   1.603185e+08
## 10913   1.506249e+08
## 10914   1.459691e+08
## 10915   1.498700e+08
## 10916   1.427452e+08
## 10917   1.376663e+08
## 10918   1.329346e+08
## 10919   1.313985e+08
## 10920   1.317382e+08
## 10921   1.228240e+08
## 10922   1.153475e+08
## 10923   1.143263e+08
## 10924   1.122794e+08
## 10925   1.107056e+08
## 10926   1.108580e+08
## 10927   1.202300e+08
## 10928   1.080710e+08
## 10929   9.946100e+07
## 10930   9.106300e+07
## 10931   8.250700e+07
## 10932   7.847600e+07
## 10933   7.279800e+07
## 10934   7.068800e+07
## 10935   6.298300e+07
## 10936   5.598900e+07
## 10937   4.387900e+07
## 10938   4.514400e+07
## 10939   4.174900e+07
## 10940   3.491800e+07
## 10941   3.102000e+07
## 10942             NA
## 10943             NA
## 10944             NA
## 10945             NA
## 10946             NA
## 10947             NA
## 10948             NA
## 10949             NA
## 10950             NA
## 10951             NA
## 10952             NA
## 10953             NA
## 10954             NA
## 10955             NA
## 10956             NA
## 10957             NA
## 10958             NA
## 10959             NA
## 10960             NA
## 10961             NA
## 10962             NA
## 10963             NA
## 10964   9.996250e+09
## 10965   8.405491e+09
## 10966   8.066126e+09
## 10967   7.473551e+09
## 10968   6.800142e+09
## 10969   6.398739e+09
## 10970   6.166858e+09
## 10971   6.592538e+09
## 10972   7.223063e+09
## 10973   6.728209e+09
## 10974   6.764636e+09
## 10975   5.628882e+09
## 10976   4.714592e+09
## 10977   5.206444e+09
## 10978   4.346207e+09
## 10979   3.919577e+09
## 10980   2.936020e+09
## 10981   2.362501e+09
## 10982   2.051148e+09
## 10983   1.777059e+09
## 10984   1.746065e+09
## 10985   1.779523e+09
## 10986   1.985924e+09
## 10987   2.032346e+09
## 10988   2.072001e+09
## 10989   2.132082e+09
## 10990   2.091731e+09
## 10991   1.944877e+09
## 10992   1.847351e+09
## 10993   2.164292e+09
## 10994   2.133688e+09
## 10995   1.506914e+09
## 10996   1.450647e+09
## 10997   1.414952e+09
## 10998   1.344665e+09
## 10999   1.186629e+09
## 11000   1.009723e+09
## 11001   1.074374e+09
## 11002   1.165171e+09
## 11003   1.108776e+09
## 11004   1.105495e+09
## 11005   1.047925e+09
## 11006   9.519009e+08
## 11007   8.046299e+08
## 11008   7.990297e+08
## 11009   7.750464e+08
## 11010   7.033787e+08
## 11011   6.130110e+08
## 11012   4.932375e+08
## 11013   3.916694e+08
## 11014   3.355691e+08
## 11015   3.094053e+08
## 11016   2.950621e+08
## 11017   3.113960e+08
## 11018   2.826154e+08
## 11019   2.665337e+08
## 11020   2.553405e+08
## 11021   2.244958e+08
## 11022   1.681863e+08
## 11023   1.642716e+08
## 11024   1.592131e+08
## 11025             NA
## 11026             NA
## 11027   1.152904e+10
## 11028   1.140105e+10
## 11029   1.443635e+10
## 11030   1.473570e+10
## 11031   1.371351e+10
## 11032   1.259415e+10
## 11033   1.200729e+10
## 11034   1.307414e+10
## 11035   1.229296e+10
## 11036   1.166869e+10
## 11037   1.151839e+10
## 11038   1.000367e+10
## 11039   9.128843e+09
## 11040   9.990370e+09
## 11041   8.150139e+09
## 11042   7.028803e+09
## 11043   6.488750e+09
## 11044   6.578844e+09
## 11045   5.816554e+09
## 11046   4.841310e+09
## 11047   4.613631e+09
## 11048   4.663314e+09
## 11049   4.343710e+09
## 11050   4.169664e+09
## 11051   4.187368e+09
## 11052   4.421944e+09
## 11053   4.040346e+09
## 11054   3.558137e+09
## 11055   3.263368e+09
## 11056   3.224268e+09
## 11057   2.856891e+09
## 11058   2.653480e+09
## 11059   2.181930e+09
## 11060   2.134517e+09
## 11061   1.880853e+09
## 11062   1.462900e+09
## 11063   1.076121e+09
## 11064   1.040557e+09
## 11065   1.090277e+09
## 11066   1.078409e+09
## 11067   1.142394e+09
## 11068   1.131788e+09
## 11069   1.211141e+09
## 11070   1.015365e+09
## 11071   8.236345e+08
## 11072   7.040335e+08
## 11073             NA
## 11074             NA
## 11075             NA
## 11076             NA
## 11077             NA
## 11078             NA
## 11079             NA
## 11080             NA
## 11081             NA
## 11082             NA
## 11083             NA
## 11084             NA
## 11085             NA
## 11086             NA
## 11087             NA
## 11088             NA
## 11089             NA
## 11090   1.272839e+12
## 11091   1.090515e+12
## 11092   1.269012e+12
## 11093   1.222408e+12
## 11094   1.158913e+12
## 11095   1.078491e+12
## 11096   1.171868e+12
## 11097   1.315351e+12
## 11098   1.274443e+12
## 11099   1.201090e+12
## 11100   1.180490e+12
## 11101   1.057801e+12
## 11102   9.000454e+11
## 11103   1.109989e+12
## 11104   1.052696e+12
## 11105   9.753871e+11
## 11106   8.774762e+11
## 11107   7.822406e+11
## 11108   7.293363e+11
## 11109   7.721064e+11
## 11110   7.567063e+11
## 11111   7.079067e+11
## 11112   6.002329e+11
## 11113   5.265021e+11
## 11114   5.004135e+11
## 11115   4.109756e+11
## 11116   3.600739e+11
## 11117   5.278132e+11
## 11118   5.007361e+11
## 11119   3.631576e+11
## 11120   3.131428e+11
## 11121   2.612536e+11
## 11122   2.214007e+11
## 11123   1.816115e+11
## 11124   1.475407e+11
## 11125   1.345501e+11
## 11126   1.952198e+11
## 11127   1.842615e+11
## 11128   1.561592e+11
## 11129   1.846092e+11
## 11130   2.639593e+11
## 11131   2.051391e+11
## 11132   1.345614e+11
## 11133   1.025000e+11
## 11134   8.181416e+10
## 11135   8.902597e+10
## 11136   8.800000e+10
## 11137   7.200000e+10
## 11138   5.528000e+10
## 11139   4.520000e+10
## 11140   3.920000e+10
## 11141   3.552000e+10
## 11142   3.248000e+10
## 11143   2.936000e+10
## 11144   2.656000e+10
## 11145   2.432000e+10
## 11146   2.184000e+10
## 11147   2.008000e+10
## 11148   1.696000e+10
## 11149   1.520000e+10
## 11150   1.416000e+10
## 11151   1.304000e+10
## 11152             NA
## 11153   4.040289e+08
## 11154   4.080000e+08
## 11155   4.120000e+08
## 11156   4.019323e+08
## 11157   3.666668e+08
## 11158   3.322652e+08
## 11159   3.164899e+08
## 11160   3.192712e+08
## 11161   3.172144e+08
## 11162   3.272487e+08
## 11163   3.113016e+08
## 11164   2.969441e+08
## 11165   2.802846e+08
## 11166   2.631451e+08
## 11167   2.567872e+08
## 11168   2.535419e+08
## 11169   2.502819e+08
## 11170   2.402360e+08
## 11171   2.454329e+08
## 11172   2.425172e+08
## 11173   2.409709e+08
## 11174   2.332718e+08
## 11175   2.201405e+08
## 11176   2.188731e+08
## 11177   2.066263e+08
## 11178   2.185347e+08
## 11179   2.215753e+08
## 11180   2.025000e+08
## 11181   1.984000e+08
## 11182   1.781000e+08
## 11183   1.662000e+08
## 11184   1.472000e+08
## 11185   1.352000e+08
## 11186   1.247000e+08
## 11187   1.167000e+08
## 11188   1.122100e+08
## 11189             NA
## 11190             NA
## 11191   1.065000e+08
## 11192             NA
## 11193             NA
## 11194             NA
## 11195             NA
## 11196             NA
## 11197             NA
## 11198             NA
## 11199             NA
## 11200             NA
## 11201             NA
## 11202             NA
## 11203             NA
## 11204             NA
## 11205             NA
## 11206             NA
## 11207             NA
## 11208             NA
## 11209             NA
## 11210             NA
## 11211             NA
## 11212             NA
## 11213             NA
## 11214             NA
## 11215             NA
## 11216   1.367922e+10
## 11217   1.185973e+10
## 11218   1.197135e+10
## 11219   1.145744e+10
## 11220   9.669742e+09
## 11221   8.071469e+09
## 11222   7.745242e+09
## 11223   9.510199e+09
## 11224   9.496718e+09
## 11225   8.709139e+09
## 11226   8.414352e+09
## 11227   6.974982e+09
## 11228   5.439422e+09
## 11229   6.054850e+09
## 11230   4.401189e+09
## 11231   3.408245e+09
## 11232   2.988349e+09
## 11233   2.598250e+09
## 11234   1.980907e+09
## 11235   1.661818e+09
## 11236   1.480674e+09
## 11237   1.288429e+09
## 11238   1.170783e+09
## 11239   1.698718e+09
## 11240   1.930081e+09
## 11241   1.695122e+09
## 11242   1.752980e+09
## 11243             NA
## 11244             NA
## 11245             NA
## 11246             NA
## 11247             NA
## 11248             NA
## 11249             NA
## 11250             NA
## 11251             NA
## 11252             NA
## 11253             NA
## 11254             NA
## 11255             NA
## 11256             NA
## 11257             NA
## 11258             NA
## 11259             NA
## 11260             NA
## 11261             NA
## 11262             NA
## 11263             NA
## 11264             NA
## 11265             NA
## 11266             NA
## 11267             NA
## 11268             NA
## 11269             NA
## 11270             NA
## 11271             NA
## 11272             NA
## 11273             NA
## 11274             NA
## 11275             NA
## 11276             NA
## 11277             NA
## 11278             NA
## 11279   8.596097e+09
## 11280   6.739692e+09
## 11281   7.383746e+09
## 11282   7.194025e+09
## 11283   6.431315e+09
## 11284   6.472991e+09
## 11285   6.261622e+09
## 11286   7.069616e+09
## 11287   6.555984e+09
## 11288   5.743030e+09
## 11289   6.088808e+09
## 11290   5.367626e+09
## 11291   5.451653e+09
## 11292   6.476490e+09
## 11293   5.867917e+09
## 11294   4.582988e+09
## 11295   4.203084e+09
## 11296   4.137914e+09
## 11297   3.601321e+09
## 11298   2.968987e+09
## 11299   2.718868e+09
## 11300   2.647886e+09
## 11301   2.906094e+09
## 11302   2.934498e+09
## 11303   2.840176e+09
## 11304   3.137673e+09
## 11305   3.130463e+09
## 11306   2.720310e+09
## 11307   2.574302e+09
## 11308   2.737193e+09
## 11309   2.480599e+09
## 11310   2.481316e+09
## 11311   2.010117e+09
## 11312   2.000675e+09
## 11313   1.839096e+09
## 11314   1.515210e+09
## 11315   1.082851e+09
## 11316   1.037315e+09
## 11317   1.092552e+09
## 11318   1.143229e+09
## 11319   1.205166e+09
## 11320   1.378131e+09
## 11321   1.209898e+09
## 11322   1.000536e+09
## 11323   8.112509e+08
## 11324   7.353399e+08
## 11325   7.119230e+08
## 11326   5.639397e+08
## 11327   5.235528e+08
## 11328   4.024603e+08
## 11329   3.276515e+08
## 11330   2.930739e+08
## 11331             NA
## 11332             NA
## 11333             NA
## 11334             NA
## 11335             NA
## 11336             NA
## 11337             NA
## 11338             NA
## 11339             NA
## 11340             NA
## 11341             NA
## 11342   1.528644e+10
## 11343   1.331298e+10
## 11344   1.420636e+10
## 11345   1.317809e+10
## 11346   1.148085e+10
## 11347   1.118135e+10
## 11348   1.161989e+10
## 11349   1.222651e+10
## 11350   1.258212e+10
## 11351   1.229277e+10
## 11352   1.040980e+10
## 11353   7.189482e+09
## 11354   4.583850e+09
## 11355   5.623216e+09
## 11356   4.235000e+09
## 11357   3.414056e+09
## 11358   2.523472e+09
## 11359   1.992067e+09
## 11360   1.595297e+09
## 11361   1.396556e+09
## 11362   1.267998e+09
## 11363   1.136896e+09
## 11364   1.057409e+09
## 11365   1.124440e+09
## 11366   1.180934e+09
## 11367   1.345719e+09
## 11368   1.452165e+09
## 11369   9.258171e+08
## 11370   7.684016e+08
## 11371   1.317612e+09
## 11372   2.379018e+09
## 11373   2.560786e+09
## 11374   3.576967e+09
## 11375   3.204462e+09
## 11376   3.020612e+09
## 11377   2.896179e+09
## 11378   2.186505e+09
## 11379   2.098735e+09
## 11380   2.725737e+09
## 11381   2.552402e+09
## 11382   2.310099e+09
## 11383             NA
## 11384             NA
## 11385             NA
## 11386             NA
## 11387             NA
## 11388             NA
## 11389             NA
## 11390             NA
## 11391             NA
## 11392             NA
## 11393             NA
## 11394             NA
## 11395             NA
## 11396             NA
## 11397             NA
## 11398             NA
## 11399             NA
## 11400             NA
## 11401             NA
## 11402             NA
## 11403             NA
## 11404             NA
## 11405   5.861268e+09
## 11406   4.769861e+09
## 11407   5.542054e+09
## 11408   5.506767e+09
## 11409   4.856632e+09
## 11410   4.377033e+09
## 11411   4.054712e+09
## 11412   4.594024e+09
## 11413   4.466039e+09
## 11414   4.087726e+09
## 11415   4.544517e+09
## 11416   4.143033e+09
## 11417   4.159330e+09
## 11418   4.545675e+09
## 11419   3.680712e+09
## 11420   2.721903e+09
## 11421   2.257174e+09
## 11422   2.073234e+09
## 11423   1.707710e+09
## 11424   1.284685e+09
## 11425   1.159869e+09
## 11426   9.842976e+08
## 11427             NA
## 11428             NA
## 11429             NA
## 11430             NA
## 11431             NA
## 11432             NA
## 11433             NA
## 11434             NA
## 11435             NA
## 11436             NA
## 11437             NA
## 11438             NA
## 11439             NA
## 11440             NA
## 11441             NA
## 11442             NA
## 11443             NA
## 11444             NA
## 11445             NA
## 11446             NA
## 11447             NA
## 11448             NA
## 11449             NA
## 11450             NA
## 11451             NA
## 11452             NA
## 11453             NA
## 11454             NA
## 11455             NA
## 11456             NA
## 11457             NA
## 11458             NA
## 11459             NA
## 11460             NA
## 11461             NA
## 11462             NA
## 11463             NA
## 11464             NA
## 11465             NA
## 11466             NA
## 11467             NA
## 11468   1.428663e+11
## 11469   1.213481e+11
## 11470   1.289199e+11
## 11471   1.273412e+11
## 11472   1.185405e+11
## 11473   1.115727e+11
## 11474   1.104144e+11
## 11475   1.191314e+11
## 11476   1.068256e+11
## 11477   9.826631e+10
## 11478   1.013705e+11
## 11479   9.321675e+10
## 11480   9.289732e+10
## 11481   9.250726e+10
## 11482   7.904129e+10
## 11483   6.864083e+10
## 11484   6.234302e+10
## 11485   5.962602e+10
## 11486   5.206406e+10
## 11487   4.223684e+10
## 11488   3.945958e+10
## 11489   3.885725e+10
## 11490   4.163203e+10
## 11491   4.180622e+10
## 11492   3.914784e+10
## 11493   4.316145e+10
## 11494   3.903029e+10
## 11495   3.560414e+10
## 11496   3.165547e+10
## 11497   3.371107e+10
## 11498   3.228539e+10
## 11499   3.018011e+10
## 11500   2.631422e+10
## 11501   2.570530e+10
## 11502   2.176526e+10
## 11503   1.946218e+10
## 11504   1.499128e+10
## 11505   1.482473e+10
## 11506   1.625146e+10
## 11507   1.769234e+10
## 11508   1.778817e+10
## 11509   2.172877e+10
## 11510   1.591213e+10
## 11511   1.323685e+10
## 11512   1.104990e+10
## 11513   9.584323e+09
## 11514   8.984824e+09
## 11515   7.675408e+09
## 11516   6.242178e+09
## 11517   5.074118e+09
## 11518   4.356634e+09
## 11519   3.956328e+09
## 11520   3.651615e+09
## 11521   3.271416e+09
## 11522   3.046339e+09
## 11523   2.876396e+09
## 11524   2.948325e+09
## 11525   2.798340e+09
## 11526   2.657247e+09
## 11527   2.379606e+09
## 11528   2.025690e+09
## 11529   2.037151e+09
## 11530             NA
## 11531   1.577676e+10
## 11532   1.402881e+10
## 11533   1.539004e+10
## 11534   1.484540e+10
## 11535   1.321908e+10
## 11536   1.193700e+10
## 11537   1.595097e+10
## 11538   1.771608e+10
## 11539   1.697432e+10
## 11540   1.635080e+10
## 11541   1.438155e+10
## 11542   1.110465e+10
## 11543   1.191447e+10
## 11544   1.255620e+10
## 11545   1.045084e+10
## 11546   9.176889e+09
## 11547   8.542070e+09
## 11548   7.631121e+09
## 11549   6.303391e+09
## 11550   5.677003e+09
## 11551   5.398569e+09
## 11552   5.656474e+09
## 11553   5.976408e+09
## 11554   5.263878e+09
## 11555   4.648832e+09
## 11556   3.856800e+09
## 11557   2.899923e+09
## 11558   2.796550e+09
## 11559   2.729551e+09
## 11560   2.639953e+09
## 11561   3.633406e+09
## 11562             NA
## 11563             NA
## 11564             NA
## 11565             NA
## 11566             NA
## 11567             NA
## 11568             NA
## 11569             NA
## 11570             NA
## 11571             NA
## 11572             NA
## 11573             NA
## 11574             NA
## 11575             NA
## 11576             NA
## 11577             NA
## 11578             NA
## 11579             NA
## 11580             NA
## 11581             NA
## 11582             NA
## 11583             NA
## 11584             NA
## 11585             NA
## 11586             NA
## 11587             NA
## 11588             NA
## 11589             NA
## 11590             NA
## 11591             NA
## 11592             NA
## 11593             NA
## 11594   6.509175e+10
## 11595   7.893026e+10
## 11596   6.869776e+10
## 11597   6.714473e+10
## 11598   6.144939e+10
## 11599   6.029174e+10
## 11600   6.304531e+10
## 11601   6.326489e+10
## 11602   6.057226e+10
## 11603   5.831868e+10
## 11604   5.411860e+10
## 11605   3.779605e+10
## 11606   2.945517e+10
## 11607   2.301302e+10
## 11608   1.559118e+10
## 11609   1.186302e+10
## 11610   1.058843e+10
## 11611   9.390855e+09
## 11612   7.754647e+09
## 11613   6.110633e+09
## 11614   6.220271e+09
## 11615   6.849322e+09
## 11616   5.643819e+09
## 11617   4.613071e+09
## 11618   5.633071e+09
## 11619   5.759625e+09
## 11620   4.879258e+09
## 11621   3.821536e+09
## 11622   2.809748e+09
## 11623   2.216073e+09
## 11624   2.137185e+09
## 11625   2.036374e+09
## 11626   1.674823e+09
## 11627   1.392548e+09
## 11628   1.448004e+09
## 11629   1.590097e+09
## 11630   1.310837e+09
## 11631   1.354699e+09
## 11632   1.427210e+09
## 11633   1.302702e+09
## 11634   1.064868e+09
## 11635   1.010597e+09
## 11636   9.195252e+08
## 11637   9.169147e+08
## 11638   1.000351e+09
## 11639   1.155596e+09
## 11640   1.128485e+09
## 11641   1.000558e+09
## 11642   6.670388e+08
## 11643   6.345251e+08
## 11644   5.593784e+08
## 11645   5.789926e+08
## 11646   5.513792e+08
## 11647   5.311864e+08
## 11648   3.281824e+08
## 11649   3.178162e+08
## 11650   4.026194e+08
## 11651   4.751974e+08
## 11652   6.599767e+08
## 11653   6.125173e+08
## 11654   5.843514e+08
## 11655             NA
## 11656             NA
## 11657   1.231060e+10
## 11658   1.058159e+10
## 11659   1.254193e+10
## 11660   1.368206e+10
## 11661   1.289515e+10
## 11662   1.072199e+10
## 11663   1.133518e+10
## 11664   1.243542e+10
## 11665   1.204328e+10
## 11666   1.304201e+10
## 11667   1.252340e+10
## 11668   1.143133e+10
## 11669   8.938868e+09
## 11670   8.607475e+09
## 11671   8.839526e+09
## 11672   8.001780e+09
## 11673   7.248394e+09
## 11674   6.609199e+09
## 11675   4.926471e+09
## 11676   3.349185e+09
## 11677   3.557333e+09
## 11678   3.922248e+09
## 11679   3.868542e+09
## 11680   3.873099e+09
## 11681   4.154956e+09
## 11682   3.989209e+09
## 11683   3.978498e+09
## 11684   3.666501e+09
## 11685   3.251231e+09
## 11686   3.429539e+09
## 11687   2.996886e+09
## 11688   2.789944e+09
## 11689   2.535114e+09
## 11690   2.495060e+09
## 11691   2.300105e+09
## 11692   1.809074e+09
## 11693   1.608219e+09
## 11694   1.951230e+09
## 11695   2.297401e+09
## 11696   2.118741e+09
## 11697   2.249855e+09
## 11698   2.422096e+09
## 11699             NA
## 11700             NA
## 11701             NA
## 11702             NA
## 11703             NA
## 11704             NA
## 11705             NA
## 11706             NA
## 11707             NA
## 11708             NA
## 11709             NA
## 11710             NA
## 11711             NA
## 11712             NA
## 11713             NA
## 11714             NA
## 11715             NA
## 11716             NA
## 11717             NA
## 11718             NA
## 11719             NA
## 11720   1.332189e+08
## 11721   1.146266e+08
## 11722   1.187241e+08
## 11723   1.240214e+08
## 11724   1.093597e+08
## 11725   9.972339e+07
## 11726   8.652966e+07
## 11727   1.046544e+08
## 11728   9.849184e+07
## 11729   9.692720e+07
## 11730   6.605541e+07
## 11731   4.756452e+07
## 11732             NA
## 11733             NA
## 11734             NA
## 11735             NA
## 11736             NA
## 11737             NA
## 11738             NA
## 11739             NA
## 11740             NA
## 11741             NA
## 11742             NA
## 11743             NA
## 11744             NA
## 11745             NA
## 11746             NA
## 11747             NA
## 11748             NA
## 11749             NA
## 11750             NA
## 11751             NA
## 11752             NA
## 11753             NA
## 11754             NA
## 11755             NA
## 11756             NA
## 11757             NA
## 11758             NA
## 11759             NA
## 11760             NA
## 11761             NA
## 11762             NA
## 11763             NA
## 11764             NA
## 11765             NA
## 11766             NA
## 11767             NA
## 11768             NA
## 11769             NA
## 11770             NA
## 11771             NA
## 11772             NA
## 11773             NA
## 11774             NA
## 11775             NA
## 11776             NA
## 11777             NA
## 11778             NA
## 11779             NA
## 11780             NA
## 11781             NA
## 11782             NA
## 11783   3.628883e+10
## 11784   3.343367e+10
## 11785   3.418619e+10
## 11786   3.311153e+10
## 11787   2.897159e+10
## 11788   2.452410e+10
## 11789   2.436080e+10
## 11790   2.273160e+10
## 11791   2.216221e+10
## 11792   2.170311e+10
## 11793   2.157386e+10
## 11794   1.600266e+10
## 11795   1.285499e+10
## 11796   1.254544e+10
## 11797   1.032562e+10
## 11798   9.043715e+09
## 11799   8.130258e+09
## 11800   7.273938e+09
## 11801   6.330473e+09
## 11802   6.050876e+09
## 11803   6.007055e+09
## 11804   5.494252e+09
## 11805   5.033642e+09
## 11806   4.856255e+09
## 11807   4.918692e+09
## 11808   4.521580e+09
## 11809   4.401104e+09
## 11810   4.066776e+09
## 11811   3.660042e+09
## 11812   3.401212e+09
## 11813   3.921476e+09
## 11814   3.627562e+09
## 11815   3.525228e+09
## 11816   3.487010e+09
## 11817   2.957255e+09
## 11818   2.850785e+09
## 11819   2.619914e+09
## 11820   2.581207e+09
## 11821   2.447175e+09
## 11822   2.395430e+09
## 11823   2.275583e+09
## 11824   1.945917e+09
## 11825   1.851250e+09
## 11826   1.604162e+09
## 11827   1.382400e+09
## 11828   1.452793e+09
## 11829   1.575789e+09
## 11830   1.217954e+09
## 11831   9.721017e+08
## 11832   1.024099e+09
## 11833   8.827655e+08
## 11834   8.659753e+08
## 11835   7.886420e+08
## 11836   7.722286e+08
## 11837   8.419740e+08
## 11838   9.068119e+08
## 11839   7.352671e+08
## 11840   4.960988e+08
## 11841   4.969479e+08
## 11842   5.740911e+08
## 11843   5.319596e+08
## 11844   5.083344e+08
## 11845             NA
## 11846   1.012847e+12
## 11847   9.097935e+11
## 11848   9.101943e+11
## 11849   9.140434e+11
## 11850   8.338696e+11
## 11851   7.840604e+11
## 11852   7.655728e+11
## 11853   8.921680e+11
## 11854   8.771728e+11
## 11855   8.389233e+11
## 11856   9.052706e+11
## 11857   8.473809e+11
## 11858   8.715186e+11
## 11859   9.518700e+11
## 11860   8.485589e+11
## 11861   7.339553e+11
## 11862   6.853482e+11
## 11863   6.583801e+11
## 11864   5.800704e+11
## 11865   4.738620e+11
## 11866   4.315869e+11
## 11867   4.174793e+11
## 11868   4.470495e+11
## 11869   4.380082e+11
## 11870   4.168127e+11
## 11871   4.504902e+11
## 11872   4.523017e+11
## 11873   3.791303e+11
## 11874   3.535502e+11
## 11875   3.629629e+11
## 11876   3.275003e+11
## 11877   3.183305e+11
## 11878   2.583367e+11
## 11879   2.619105e+11
## 11880   2.450463e+11
## 11881   2.008621e+11
## 11882   1.438458e+11
## 11883   1.439127e+11
## 11884   1.534455e+11
## 11885   1.584795e+11
## 11886   1.641342e+11
## 11887   1.951521e+11
## 11888   1.796694e+11
## 11889   1.558597e+11
## 11890   1.270170e+11
## 11891   1.091687e+11
## 11892   1.002495e+11
## 11893   8.724341e+10
## 11894   7.184091e+10
## 11895   5.470656e+10
## 11896   4.457912e+10
## 11897   3.816472e+10
## 11898   3.403595e+10
## 11899   2.781761e+10
## 11900   2.508756e+10
## 11901   2.286720e+10
## 11902   2.100059e+10
## 11903   1.869938e+10
## 11904   1.589124e+10
## 11905   1.464706e+10
## 11906   1.349383e+10
## 11907   1.227673e+10
## 11908             NA
## 11909   1.007135e+10
## 11910   9.435530e+09
## 11911   9.438131e+09
## 11912   9.846922e+09
## 11913   9.173668e+09
## 11914   8.724570e+09
## 11915   8.738206e+09
## 11916   1.063504e+10
## 11917   1.015139e+10
## 11918   9.659153e+09
## 11919   1.035144e+10
## 11920   9.364347e+09
## 11921   8.704436e+09
## 11922   9.067623e+09
## 11923   8.819922e+09
## 11924   6.979153e+09
## 11925   6.238632e+09
## 11926   5.895011e+09
## 11927   4.915356e+09
## 11928   3.740057e+09
## 11929   3.297735e+09
## 11930   3.420033e+09
## 11931   3.647803e+09
## 11932   3.556305e+09
## 11933   3.291130e+09
## 11934   3.606969e+09
## 11935   3.628442e+09
## 11936   3.038728e+09
## 11937   2.822244e+09
## 11938   2.923883e+09
## 11939   2.653782e+09
## 11940   2.529440e+09
## 11941   2.185083e+09
## 11942   2.072776e+09
## 11943   1.488093e+09
## 11944   1.201322e+09
## 11945   8.548209e+08
## 11946   7.960662e+08
## 11947   8.238579e+08
## 11948   9.045999e+08
## 11949   9.725642e+08
## 11950   1.182464e+09
## 11951   1.047226e+09
## 11952   8.460047e+08
## 11953   8.376201e+08
## 11954   7.983135e+08
## 11955   8.166522e+08
## 11956   6.374035e+08
## 11957   5.422934e+08
## 11958   5.068090e+08
## 11959   4.139858e+08
## 11960   3.588157e+08
## 11961   2.631088e+08
## 11962   2.155072e+08
## 11963   1.800368e+08
## 11964   1.642065e+08
## 11965   1.595945e+08
## 11966             NA
## 11967             NA
## 11968             NA
## 11969             NA
## 11970             NA
## 11971             NA
## 11972   2.498857e+11
## 11973   2.117345e+11
## 11974   2.134346e+11
## 11975   2.119531e+11
## 11976   2.066238e+11
## 11977   1.888383e+11
## 11978   1.780645e+11
## 11979   2.013135e+11
## 11980   1.909066e+11
## 11981   1.762067e+11
## 11982   1.682914e+11
## 11983   1.465175e+11
## 11984   1.213736e+11
## 11985   1.331314e+11
## 11986   1.371889e+11
## 11987   1.115388e+11
## 11988   1.147201e+11
## 11989   1.039052e+11
## 11990   8.825089e+10
## 11991   6.662773e+10
## 11992   5.387243e+10
## 11993   5.262328e+10
## 11994   5.876226e+10
## 11995   5.622717e+10
## 11996   6.607514e+10
## 11997   7.014084e+10
## 11998   6.391870e+10
## 11999   5.531473e+10
## 12000   4.677562e+10
## 12001   4.164983e+10
## 12002   4.274533e+10
## 12003   4.549513e+10
## 12004   4.392022e+10
## 12005   4.517681e+10
## 12006   4.037635e+10
## 12007   3.060467e+10
## 12008   2.467980e+10
## 12009   2.166598e+10
## 12010   2.430928e+10
## 12011   2.416460e+10
## 12012   2.441762e+10
## 12013   2.324455e+10
## 12014   2.073124e+10
## 12015   1.853052e+10
## 12016   1.544683e+10
## 12017   1.360483e+10
## 12018   1.286198e+10
## 12019   1.394098e+10
## 12020   1.280228e+10
## 12021   9.567331e+09
## 12022   7.911137e+09
## 12023             NA
## 12024   5.761589e+09
## 12025   5.180598e+09
## 12026   5.961418e+09
## 12027   5.863733e+09
## 12028   5.654464e+09
## 12029   7.274144e+09
## 12030   6.638937e+09
## 12031   6.077496e+09
## 12032   5.670064e+09
## 12033   5.485855e+09
## 12034             NA
## 12035   1.401302e+10
## 12036   1.258697e+10
## 12037   1.259664e+10
## 12038   1.302524e+10
## 12039   1.378591e+10
## 12040   1.328608e+10
## 12041   1.275671e+10
## 12042   1.188043e+10
## 12043   1.098298e+10
## 12044   1.053201e+10
## 12045   9.774307e+09
## 12046   8.758639e+09
## 12047   8.298680e+09
## 12048   8.496947e+09
## 12049   7.423314e+09
## 12050   6.763362e+09
## 12051   6.321336e+09
## 12052   5.795568e+09
## 12053   5.322455e+09
## 12054   5.224213e+09
## 12055   5.323147e+09
## 12056   5.107329e+09
## 12057   4.855718e+09
## 12058   4.635267e+09
## 12059   4.389966e+09
## 12060   4.308352e+09
## 12061   4.140470e+09
## 12062   3.863185e+09
## 12063   1.756454e+09
## 12064   1.792800e+09
## 12065   1.488804e+09
## 12066   1.009455e+09
## 12067   1.013185e+09
## 12068   2.631097e+09
## 12069   3.851214e+09
## 12070   2.885711e+09
## 12071   2.683816e+09
## 12072   3.105517e+09
## 12073   2.743342e+09
## 12074   2.465165e+09
## 12075   2.448290e+09
## 12076   2.189347e+09
## 12077   1.527853e+09
## 12078   2.142129e+09
## 12079   2.239857e+09
## 12080   1.847871e+09
## 12081   1.590429e+09
## 12082   1.520900e+09
## 12083   1.093571e+09
## 12084   8.808429e+08
## 12085   8.265714e+08
## 12086   7.765857e+08
## 12087   7.479714e+08
## 12088   6.959000e+08
## 12089   6.571714e+08
## 12090   6.066714e+08
## 12091   5.665429e+08
## 12092   3.419738e+08
## 12093   2.929162e+08
## 12094   2.652916e+08
## 12095   2.405247e+08
## 12096   2.238547e+08
## 12097             NA
## 12098   1.491500e+10
## 12099   1.374417e+10
## 12100   1.291646e+10
## 12101   1.280866e+10
## 12102   1.118510e+10
## 12103   1.039886e+10
## 12104   9.683868e+09
## 12105   1.086294e+10
## 12106   1.022490e+10
## 12107   9.426913e+09
## 12108   8.772951e+09
## 12109   7.851192e+09
## 12110   7.352132e+09
## 12111   7.297601e+09
## 12112   5.731485e+09
## 12113   4.756361e+09
## 12114   4.383316e+09
## 12115   3.760444e+09
## 12116   3.394085e+09
## 12117   2.782193e+09
## 12118   2.448715e+09
## 12119   2.241753e+09
## 12120   2.537790e+09
## 12121   2.643363e+09
## 12122   2.290319e+09
## 12123   2.405687e+09
## 12124   2.302538e+09
## 12125   1.938058e+09
## 12126   3.052674e+09
## 12127   3.386233e+09
## 12128   3.285797e+09
## 12129   3.512356e+09
## 12130   2.179567e+09
## 12131   2.280356e+09
## 12132   2.233006e+09
## 12133   1.904097e+09
## 12134   1.440582e+09
## 12135   1.461243e+09
## 12136   1.803100e+09
## 12137   2.017612e+09
## 12138   2.170893e+09
## 12139   2.508524e+09
## 12140   2.109278e+09
## 12141   1.774365e+09
## 12142   1.291458e+09
## 12143   1.064518e+09
## 12144   1.048691e+09
## 12145   1.026137e+09
## 12146   9.463850e+08
## 12147   7.427797e+08
## 12148   6.935736e+08
## 12149   6.499167e+08
## 12150   6.258679e+08
## 12151   6.412142e+08
## 12152   6.655870e+08
## 12153   7.022962e+08
## 12154   6.733836e+08
## 12155   5.828164e+08
## 12156   5.862948e+08
## 12157   5.317365e+08
## 12158   4.857852e+08
## 12159   4.495269e+08
## 12160             NA
## 12161   4.408336e+11
## 12162   4.321989e+11
## 12163   4.481200e+11
## 12164   4.217392e+11
## 12165   3.757457e+11
## 12166   4.046490e+11
## 12167   4.930268e+11
## 12168   5.741838e+11
## 12169   5.201172e+11
## 12170   4.639710e+11
## 12171   4.144665e+11
## 12172   3.669905e+11
## 12173   2.950088e+11
## 12174   3.394762e+11
## 12175   2.782608e+11
## 12176   2.384550e+11
## 12177   1.756705e+11
## 12178   1.357647e+11
## 12179   1.047390e+11
## 12180   9.505409e+10
## 12181   7.279728e+10
## 12182   6.944876e+10
## 12183   5.937261e+10
## 12184   5.460405e+10
## 12185   5.445784e+10
## 12186   5.107582e+10
## 12187   4.406247e+10
## 12188   3.383304e+10
## 12189   2.775220e+10
## 12190   4.779493e+10
## 12191   4.911843e+10
## 12192   5.403580e+10
## 12193   4.400306e+10
## 12194   4.964847e+10
## 12195   5.267604e+10
## 12196   5.480585e+10
## 12197   7.374582e+10
## 12198   7.348436e+10
## 12199   9.709491e+10
## 12200   1.427694e+11
## 12201   1.644752e+11
## 12202   6.420179e+10
## 12203   4.725991e+10
## 12204   3.652786e+10
## 12205   3.603541e+10
## 12206   3.630888e+10
## 12207   2.777893e+10
## 12208   2.484664e+10
## 12209   1.516287e+10
## 12210   1.227442e+10
## 12211   9.181770e+09
## 12212   1.254585e+10
## 12213   6.634187e+09
## 12214   5.200896e+09
## 12215   5.203136e+09
## 12216   6.366793e+09
## 12217   5.874423e+09
## 12218   5.552822e+09
## 12219   5.165489e+09
## 12220   4.909303e+09
## 12221   4.467200e+09
## 12222   4.196092e+09
## 12223             NA
## 12224   1.382505e+10
## 12225   1.236358e+10
## 12226   1.260634e+10
## 12227   1.268307e+10
## 12228   1.130706e+10
## 12229   1.067247e+10
## 12230   1.006452e+10
## 12231   1.136227e+10
## 12232   1.081771e+10
## 12233   9.745251e+09
## 12234   1.049463e+10
## 12235   9.407169e+09
## 12236   9.401731e+09
## 12237   9.909548e+09
## 12238   8.336478e+09
## 12239   6.861222e+09
## 12240   6.258601e+09
## 12241   5.682788e+09
## 12242   4.946293e+09
## 12243   4.018365e+09
## 12244   3.709638e+09
## 12245   3.772857e+09
## 12246   3.863621e+09
## 12247   3.765747e+09
## 12248   3.912986e+09
## 12249   4.642018e+09
## 12250   4.707036e+09
## 12251   3.559607e+09
## 12252   2.682457e+09
## 12253   2.436849e+09
## 12254   4.938776e+09
## 12255   4.699647e+09
## 12256             NA
## 12257             NA
## 12258             NA
## 12259             NA
## 12260             NA
## 12261             NA
## 12262             NA
## 12263             NA
## 12264             NA
## 12265             NA
## 12266             NA
## 12267             NA
## 12268             NA
## 12269             NA
## 12270             NA
## 12271             NA
## 12272             NA
## 12273             NA
## 12274             NA
## 12275             NA
## 12276             NA
## 12277             NA
## 12278             NA
## 12279             NA
## 12280             NA
## 12281             NA
## 12282             NA
## 12283             NA
## 12284             NA
## 12285             NA
## 12286             NA
## 12287             NA
## 12288             NA
## 12289   1.182000e+09
## 12290   1.302000e+09
## 12291   1.560000e+09
## 12292   1.230000e+09
## 12293   9.100000e+08
## 12294   8.320000e+08
## 12295   7.720000e+08
## 12296   7.460000e+08
## 12297   7.290000e+08
## 12298   7.990000e+08
## 12299   7.950000e+08
## 12300   9.390000e+08
## 12301   9.380000e+08
## 12302   9.900000e+08
## 12303   1.061000e+09
## 12304   1.210000e+09
## 12305   1.239000e+09
## 12306   1.284000e+09
## 12307             NA
## 12308             NA
## 12309             NA
## 12310             NA
## 12311             NA
## 12312             NA
## 12313             NA
## 12314             NA
## 12315             NA
## 12316             NA
## 12317             NA
## 12318             NA
## 12319             NA
## 12320             NA
## 12321             NA
## 12322             NA
## 12323             NA
## 12324             NA
## 12325             NA
## 12326             NA
## 12327             NA
## 12328             NA
## 12329             NA
## 12330             NA
## 12331             NA
## 12332             NA
## 12333             NA
## 12334             NA
## 12335             NA
## 12336             NA
## 12337             NA
## 12338             NA
## 12339             NA
## 12340             NA
## 12341             NA
## 12342             NA
## 12343             NA
## 12344             NA
## 12345             NA
## 12346             NA
## 12347             NA
## 12348             NA
## 12349             NA
## 12350   4.821749e+11
## 12351   3.621983e+11
## 12352   4.049414e+11
## 12353   4.369997e+11
## 12354   3.983940e+11
## 12355   3.688271e+11
## 12356   3.858016e+11
## 12357   4.984101e+11
## 12358   5.227615e+11
## 12359   5.095063e+11
## 12360   4.982834e+11
## 12361   4.287570e+11
## 12362   3.861904e+11
## 12363   4.622500e+11
## 12364   4.009371e+11
## 12365   3.455814e+11
## 12366   3.088843e+11
## 12367   2.645116e+11
## 12368   2.288585e+11
## 12369   1.955242e+11
## 12370   1.739722e+11
## 12371   1.712471e+11
## 12372   1.622845e+11
## 12373   1.541634e+11
## 12374   1.613566e+11
## 12375   1.635201e+11
## 12376   1.520296e+11
## 12377   1.271315e+11
## 12378   1.205791e+11
## 12379   1.308380e+11
## 12380   1.218725e+11
## 12381   1.197917e+11
## 12382   1.026338e+11
## 12383   1.019003e+11
## 12384   9.423006e+10
## 12385   7.869325e+10
## 12386   6.541688e+10
## 12387   6.205796e+10
## 12388   6.162724e+10
## 12389   6.264720e+10
## 12390   6.359665e+10
## 12391   6.443938e+10
## 12392   5.313224e+10
## 12393   4.652309e+10
## 12394   4.150803e+10
## 12395   3.594227e+10
## 12396   3.287781e+10
## 12397   2.714569e+10
## 12398   2.253425e+10
## 12399   1.735861e+10
## 12400   1.458311e+10
## 12401   1.281412e+10
## 12402   1.106307e+10
## 12403   1.015993e+10
## 12404   9.514497e+09
## 12405   8.696460e+09
## 12406   8.058681e+09
## 12407   7.159203e+09
## 12408   6.510240e+09
## 12409   6.066977e+09
## 12410   5.632461e+09
## 12411   5.163272e+09
## 12412             NA
## 12413   8.819198e+10
## 12414   7.590940e+10
## 12415   8.806086e+10
## 12416   9.150585e+10
## 12417   8.085670e+10
## 12418   7.512874e+10
## 12419   7.871079e+10
## 12420   9.269909e+10
## 12421   8.993602e+10
## 12422   8.740884e+10
## 12423   7.749753e+10
## 12424   6.499350e+10
## 12425   4.838836e+10
## 12426   6.090545e+10
## 12427   4.208538e+10
## 12428   3.721578e+10
## 12429   3.108199e+10
## 12430   2.476371e+10
## 12431   2.163371e+10
## 12432   2.014276e+10
## 12433   1.945200e+10
## 12434   1.950745e+10
## 12435   1.559346e+10
## 12436   1.399691e+10
## 12437   1.583745e+10
## 12438   1.527776e+10
## 12439   1.380260e+10
## 12440   1.291886e+10
## 12441   1.249311e+10
## 12442   1.245228e+10
## 12443   1.134148e+10
## 12444   1.168505e+10
## 12445   9.372172e+09
## 12446   8.386216e+09
## 12447   7.811183e+09
## 12448   7.323822e+09
## 12449   1.000550e+10
## 12450   8.821367e+09
## 12451   7.932542e+09
## 12452   7.554719e+09
## 12453   7.259120e+09
## 12454   5.981760e+09
## 12455   3.733353e+09
## 12456   2.740301e+09
## 12457   2.741170e+09
## 12458   2.560220e+09
## 12459   2.096699e+09
## 12460   1.645918e+09
## 12461   4.830339e+08
## 12462   3.668577e+08
## 12463   3.010106e+08
## 12464   2.562995e+08
## 12465   2.399808e+08
## 12466   1.888649e+08
## 12467   1.071527e+08
## 12468   6.776813e+07
## 12469   6.328759e+07
## 12470             NA
## 12471             NA
## 12472             NA
## 12473             NA
## 12474             NA
## 12475             NA
## 12476   3.482625e+11
## 12477   3.004257e+11
## 12478   3.209095e+11
## 12479   3.561282e+11
## 12480   3.392056e+11
## 12481   3.136299e+11
## 12482   2.705561e+11
## 12483   2.443609e+11
## 12484   2.312186e+11
## 12485   2.243836e+11
## 12486   2.135874e+11
## 12487   1.771656e+11
## 12488   1.681528e+11
## 12489   1.700778e+11
## 12490   1.523857e+11
## 12491   1.372641e+11
## 12492   1.200553e+11
## 12493   1.077597e+11
## 12494   9.176054e+10
## 12495   7.990499e+10
## 12496   7.948440e+10
## 12497   8.201774e+10
## 12498   6.297386e+10
## 12499   6.219196e+10
## 12500   6.243330e+10
## 12501   6.332012e+10
## 12502   6.063602e+10
## 12503   5.229346e+10
## 12504   5.180995e+10
## 12505   4.888461e+10
## 12506   4.562523e+10
## 12507   4.001042e+10
## 12508   4.017102e+10
## 12509   3.847274e+10
## 12510   3.335153e+10
## 12511   3.189907e+10
## 12512   3.114492e+10
## 12513   3.115183e+10
## 12514   2.869189e+10
## 12515   3.072597e+10
## 12516   2.810061e+10
## 12517   2.365444e+10
## 12518   1.968838e+10
## 12519   1.781152e+10
## 12520   1.512606e+10
## 12521   1.316808e+10
## 12522   1.123061e+10
## 12523   8.899192e+09
## 12524   6.383429e+09
## 12525   9.415016e+09
## 12526   1.066590e+10
## 12527   1.002751e+10
## 12528   8.683116e+09
## 12529   8.041999e+09
## 12530   7.464511e+09
## 12531   6.561109e+09
## 12532   5.929231e+09
## 12533   5.204956e+09
## 12534   4.630827e+09
## 12535   4.310164e+09
## 12536   4.118648e+09
## 12537   3.749265e+09
## 12538             NA
## 12539   2.178000e+08
## 12540   2.519000e+08
## 12541   2.789000e+08
## 12542   2.849000e+08
## 12543   2.856000e+08
## 12544   2.983000e+08
## 12545   2.804577e+08
## 12546   2.416698e+08
## 12547   2.211172e+08
## 12548   2.123978e+08
## 12549   1.969111e+08
## 12550   1.859430e+08
## 12551   1.875228e+08
## 12552   1.982839e+08
## 12553   1.988977e+08
## 12554   1.923824e+08
## 12555   1.904529e+08
## 12556   1.651862e+08
## 12557   1.539632e+08
## 12558   1.631849e+08
## 12559   1.569079e+08
## 12560   1.462975e+08
## 12561             NA
## 12562             NA
## 12563             NA
## 12564             NA
## 12565             NA
## 12566             NA
## 12567             NA
## 12568             NA
## 12569             NA
## 12570             NA
## 12571             NA
## 12572             NA
## 12573             NA
## 12574             NA
## 12575             NA
## 12576             NA
## 12577             NA
## 12578             NA
## 12579             NA
## 12580             NA
## 12581             NA
## 12582             NA
## 12583             NA
## 12584             NA
## 12585             NA
## 12586             NA
## 12587             NA
## 12588             NA
## 12589             NA
## 12590             NA
## 12591             NA
## 12592             NA
## 12593             NA
## 12594             NA
## 12595             NA
## 12596             NA
## 12597             NA
## 12598             NA
## 12599             NA
## 12600             NA
## 12601             NA
## 12602   6.360510e+10
## 12603   5.397700e+10
## 12604   6.698440e+10
## 12605   6.492940e+10
## 12606   6.220270e+10
## 12607   5.790770e+10
## 12608   5.409180e+10
## 12609   4.992140e+10
## 12610   4.559990e+10
## 12611   4.042970e+10
## 12612   3.468622e+10
## 12613   2.944029e+10
## 12614   2.711664e+10
## 12615   2.515589e+10
## 12616   2.129598e+10
## 12617   1.814167e+10
## 12618   1.637439e+10
## 12619   1.501338e+10
## 12620   1.369398e+10
## 12621   1.299431e+10
## 12622   1.250201e+10
## 12623   1.230412e+10
## 12624   1.213025e+10
## 12625   1.157549e+10
## 12626   1.067729e+10
## 12627   9.870494e+09
## 12628   9.573814e+09
## 12629   9.365290e+09
## 12630   8.782585e+09
## 12631   8.042338e+09
## 12632   7.074676e+09
## 12633   6.433967e+09
## 12634   5.918470e+09
## 12635   5.902783e+09
## 12636   6.827665e+09
## 12637   6.797834e+09
## 12638   6.541517e+09
## 12639   6.183387e+09
## 12640   5.923756e+09
## 12641   5.769768e+09
## 12642   5.222422e+09
## 12643   4.614086e+09
## 12644   3.704552e+09
## 12645   3.244559e+09
## 12646   2.738262e+09
## 12647   2.588106e+09
## 12648   2.435304e+09
## 12649   2.188308e+09
## 12650   1.913793e+09
## 12651   1.673412e+09
## 12652   1.523917e+09
## 12653   1.351006e+09
## 12654   1.221306e+09
## 12655   1.112791e+09
## 12656   1.034376e+09
## 12657   9.288330e+08
## 12658   8.524853e+08
## 12659   7.761375e+08
## 12660   7.227845e+08
## 12661   6.521209e+08
## 12662   5.990263e+08
## 12663   5.371471e+08
## 12664             NA
## 12665   2.659431e+10
## 12666   2.384827e+10
## 12667   2.475134e+10
## 12668   2.410951e+10
## 12669   2.274261e+10
## 12670   2.075907e+10
## 12671   2.172353e+10
## 12672   2.321068e+10
## 12673   2.126143e+10
## 12674   2.129566e+10
## 12675   1.798491e+10
## 12676   1.425076e+10
## 12677   1.161964e+10
## 12678   1.167084e+10
## 12679   9.545177e+09
## 12680   8.355007e+09
## 12681   4.865893e+09
## 12682   3.927158e+09
## 12683   3.536412e+09
## 12684   2.999511e+09
## 12685   3.081024e+09
## 12686   3.521340e+09
## 12687   3.477038e+09
## 12688   3.789443e+09
## 12689   4.936615e+09
## 12690   5.155311e+09
## 12691   4.636057e+09
## 12692   5.502786e+09
## 12693   4.974550e+09
## 12694   4.377981e+09
## 12695   3.787395e+09
## 12696   3.219730e+09
## 12697   3.546460e+09
## 12698   3.655980e+09
## 12699   3.143848e+09
## 12700   2.648034e+09
## 12701   2.423373e+09
## 12702   2.552526e+09
## 12703   2.562493e+09
## 12704   2.368585e+09
## 12705   2.498068e+09
## 12706   2.545983e+09
## 12707   2.293622e+09
## 12708   1.947948e+09
## 12709   1.640763e+09
## 12710   1.511857e+09
## 12711   1.356591e+09
## 12712   1.467346e+09
## 12713   1.299105e+09
## 12714   8.588020e+08
## 12715   7.177161e+08
## 12716   6.455371e+08
## 12717   5.512373e+08
## 12718   4.851608e+08
## 12719   4.417069e+08
## 12720   3.909732e+08
## 12721   3.441595e+08
## 12722   3.053120e+08
## 12723   2.759680e+08
## 12724   2.611840e+08
## 12725   2.448320e+08
## 12726   2.304960e+08
## 12727             NA
## 12728   3.949543e+10
## 12729   3.543218e+10
## 12730   3.792534e+10
## 12731   4.022545e+10
## 12732   3.899713e+10
## 12733   3.608970e+10
## 12734   3.621145e+10
## 12735   4.037793e+10
## 12736   3.850112e+10
## 12737   3.327192e+10
## 12738   3.375624e+10
## 12739   2.726089e+10
## 12740   2.235515e+10
## 12741   2.461527e+10
## 12742   1.785639e+10
## 12743   1.342943e+10
## 12744   1.073750e+10
## 12745   9.624441e+09
## 12746   7.691367e+09
## 12747   7.196261e+09
## 12748   8.495806e+09
## 12749   8.855705e+09
## 12750   8.837070e+09
## 12751   9.260482e+09
## 12752   9.965226e+09
## 12753   9.788392e+09
## 12754   9.062131e+09
## 12755   7.870982e+09
## 12756   7.249534e+09
## 12757   7.157424e+09
## 12758   6.984368e+09
## 12759   5.812115e+09
## 12760   4.757732e+09
## 12761   4.255684e+09
## 12762   3.971045e+09
## 12763   3.723994e+09
## 12764   3.282449e+09
## 12765   4.502463e+09
## 12766   5.673249e+09
## 12767   5.419412e+09
## 12768   5.624516e+09
## 12769   4.448087e+09
## 12770   3.416778e+09
## 12771   2.559857e+09
## 12772   2.092159e+09
## 12773   1.698960e+09
## 12774   1.511421e+09
## 12775   1.333475e+09
## 12776   9.955317e+08
## 12777   7.690397e+08
## 12778   6.645714e+08
## 12779   5.946111e+08
## 12780   5.562937e+08
## 12781   5.176508e+08
## 12782   4.926746e+08
## 12783   4.658889e+08
## 12784   4.435873e+08
## 12785             NA
## 12786             NA
## 12787             NA
## 12788             NA
## 12789             NA
## 12790             NA
## 12791   2.232495e+11
## 12792   2.017051e+11
## 12793   2.283235e+11
## 12794   2.225972e+11
## 12795   2.110072e+11
## 12796   1.918959e+11
## 12797   1.898053e+11
## 12798   2.007894e+11
## 12799   2.011755e+11
## 12800   1.926490e+11
## 12801   1.717617e+11
## 12802   1.475289e+11
## 12803   1.208230e+11
## 12804   1.205506e+11
## 12805   1.021710e+11
## 12806   8.864319e+10
## 12807   7.606061e+10
## 12808   6.676870e+10
## 12809   5.873103e+10
## 12810   5.477755e+10
## 12811   5.203016e+10
## 12812   5.174475e+10
## 12813   5.018732e+10
## 12814   5.550147e+10
## 12815   5.814752e+10
## 12816   5.525241e+10
## 12817   5.331279e+10
## 12818   4.488208e+10
## 12819   3.483208e+10
## 12820   3.596630e+10
## 12821   3.434147e+10
## 12822   2.641039e+10
## 12823   2.249956e+10
## 12824   1.543941e+10
## 12825   2.070230e+10
## 12826   1.524423e+10
## 12827   1.654883e+10
## 12828   1.758444e+10
## 12829   1.733073e+10
## 12830   2.178101e+10
## 12831   2.166453e+10
## 12832   1.812775e+10
## 12833   1.593408e+10
## 12834   1.251981e+10
## 12835   1.462039e+10
## 12836   1.594771e+10
## 12837   1.687716e+10
## 12838   1.385844e+10
## 12839   1.099438e+10
## 12840   9.189413e+09
## 12841   8.289583e+09
## 12842   7.432223e+09
## 12843   6.420910e+09
## 12844   5.736084e+09
## 12845   6.204254e+09
## 12846   6.113608e+09
## 12847   5.166861e+09
## 12848   4.356914e+09
## 12849   3.600958e+09
## 12850   3.286773e+09
## 12851   2.899655e+09
## 12852   2.571908e+09
## 12853             NA
## 12854   3.940864e+11
## 12855   3.617511e+11
## 12856   3.768233e+11
## 12857   3.468421e+11
## 12858   3.284809e+11
## 12859   3.186268e+11
## 12860   3.064461e+11
## 12861   2.974832e+11
## 12862   2.839027e+11
## 12863   2.619205e+11
## 12864   2.342169e+11
## 12865   2.083687e+11
## 12866   1.759747e+11
## 12867   1.816246e+11
## 12868   1.559804e+11
## 12869   1.276529e+11
## 12870   1.074200e+11
## 12871   9.500203e+10
## 12872   8.703915e+10
## 12873   8.430729e+10
## 12874   7.892123e+10
## 12875   8.366969e+10
## 12876   8.564013e+10
## 12877   7.449233e+10
## 12878   9.410618e+10
## 12879   9.464808e+10
## 12880   8.464422e+10
## 12881   7.315925e+10
## 12882   6.203663e+10
## 12883   6.042231e+10
## 12884   5.178421e+10
## 12885   5.050829e+10
## 12886   4.851374e+10
## 12887   4.315208e+10
## 12888   3.779144e+10
## 12889   3.398718e+10
## 12890   3.496157e+10
## 12891   3.573020e+10
## 12892   3.775924e+10
## 12893   4.220601e+10
## 12894   4.049965e+10
## 12895   3.684824e+10
## 12896   3.121851e+10
## 12897   2.576208e+10
## 12898   2.228319e+10
## 12899   1.938095e+10
## 12900   1.687524e+10
## 12901   1.560783e+10
## 12902   1.141242e+10
## 12903   9.067873e+09
## 12904   8.375086e+09
## 12905   7.559180e+09
## 12906   9.571801e+09
## 12907   8.632749e+09
## 12908   7.724874e+09
## 12909   7.189018e+09
## 12910   6.517305e+09
## 12911   5.953767e+09
## 12912   5.505056e+09
## 12913   4.954529e+09
## 12914   8.171186e+09
## 12915   7.515887e+09
## 12916             NA
## 12917   6.794448e+11
## 12918   5.994492e+11
## 12919   5.960546e+11
## 12920   5.887826e+11
## 12921   5.246458e+11
## 12922   4.700226e+11
## 12923   4.771113e+11
## 12924   5.390877e+11
## 12925   5.157647e+11
## 12926   4.952369e+11
## 12927   5.243827e+11
## 12928   4.756966e+11
## 12929   4.397375e+11
## 12930   5.336091e+11
## 12931   4.290285e+11
## 12932   3.446220e+11
## 12933   3.061443e+11
## 12934   2.551102e+11
## 12935   2.178273e+11
## 12936   1.990721e+11
## 12937   1.909055e+11
## 12938   1.722195e+11
## 12939   1.700310e+11
## 12940   1.746858e+11
## 12941   1.593578e+11
## 12942   1.601932e+11
## 12943   1.422928e+11
## 12944   1.108034e+11
## 12945   9.604565e+10
## 12946   9.433705e+10
## 12947   8.550094e+10
## 12948   6.597775e+10
## 12949             NA
## 12950             NA
## 12951             NA
## 12952             NA
## 12953             NA
## 12954             NA
## 12955             NA
## 12956             NA
## 12957             NA
## 12958             NA
## 12959             NA
## 12960             NA
## 12961             NA
## 12962             NA
## 12963             NA
## 12964             NA
## 12965             NA
## 12966             NA
## 12967             NA
## 12968             NA
## 12969             NA
## 12970             NA
## 12971             NA
## 12972             NA
## 12973             NA
## 12974             NA
## 12975             NA
## 12976             NA
## 12977             NA
## 12978             NA
## 12979             NA
## 12980   2.536631e+11
## 12981   2.290319e+11
## 12982   2.399869e+11
## 12983   2.423131e+11
## 12984   2.213579e+11
## 12985   2.064262e+11
## 12986   1.993941e+11
## 12987   2.299020e+11
## 12988   2.264339e+11
## 12989   2.162242e+11
## 12990   2.451180e+11
## 12991   2.381130e+11
## 12992   2.446678e+11
## 12993   2.634164e+11
## 12994   2.404961e+11
## 12995   2.087564e+11
## 12996   1.972539e+11
## 12997   1.893821e+11
## 12998   1.652262e+11
## 12999   1.347956e+11
## 13000   1.216041e+11
## 13001   1.186052e+11
## 13002   1.274704e+11
## 13003   1.239463e+11
## 13004   1.170165e+11
## 13005   1.226301e+11
## 13006   1.181220e+11
## 13007   9.968864e+10
## 13008   9.500975e+10
## 13009   1.075921e+11
## 13010   8.923360e+10
## 13011   7.871386e+10
## 13012   6.059409e+10
## 13013   5.634725e+10
## 13014   4.818293e+10
## 13015   3.874590e+10
## 13016   2.711581e+10
## 13017   2.521797e+10
## 13018   2.723965e+10
## 13019   3.052775e+10
## 13020   3.197728e+10
## 13021   3.289652e+10
## 13022   2.662282e+10
## 13023   2.348761e+10
## 13024   2.143952e+10
## 13025   2.033283e+10
## 13026   1.934761e+10
## 13027   1.751239e+10
## 13028   1.509056e+10
## 13029   1.123912e+10
## 13030   9.201604e+09
## 13031   8.108236e+09
## 13032   6.969026e+09
## 13033   6.354263e+09
## 13034   5.740241e+09
## 13035   5.135388e+09
## 13036   4.687464e+09
## 13037   4.235608e+09
## 13038   3.905734e+09
## 13039   3.668222e+09
## 13040   3.417517e+09
## 13041   3.193200e+09
## 13042             NA
## 13043   1.065257e+11
## 13044   1.030203e+11
## 13045   1.051264e+11
## 13046   1.009581e+11
## 13047   1.034455e+11
## 13048   1.043367e+11
## 13049   1.033755e+11
## 13050   1.024458e+11
## 13051   1.024500e+11
## 13052   1.015648e+11
## 13053   1.003517e+11
## 13054   9.838130e+10
## 13055   9.638560e+10
## 13056   9.363930e+10
## 13057   8.952413e+10
## 13058   8.727616e+10
## 13059   8.391452e+10
## 13060   8.032231e+10
## 13061   7.482740e+10
## 13062   7.162350e+10
## 13063   6.920840e+10
## 13064   6.170180e+10
## 13065   5.784100e+10
## 13066   5.408640e+10
## 13067   4.818704e+10
## 13068   4.534084e+10
## 13069   4.264733e+10
## 13070   3.969063e+10
## 13071   3.692246e+10
## 13072   3.463043e+10
## 13073   3.228703e+10
## 13074   3.060392e+10
## 13075   2.816120e+10
## 13076   2.638580e+10
## 13077   2.402580e+10
## 13078   2.200930e+10
## 13079   2.028920e+10
## 13080   1.916260e+10
## 13081   1.727660e+10
## 13082   1.676420e+10
## 13083   1.595570e+10
## 13084   1.443610e+10
## 13085   1.275000e+10
## 13086   1.116500e+10
## 13087   9.910900e+09
## 13088   8.968600e+09
## 13089   8.198300e+09
## 13090   7.684800e+09
## 13091   7.002400e+09
## 13092   6.328900e+09
## 13093   5.646800e+09
## 13094   5.034700e+09
## 13095   4.460700e+09
## 13096   3.941700e+09
## 13097   3.532700e+09
## 13098   3.170500e+09
## 13099   2.881500e+09
## 13100   2.570500e+09
## 13101   2.333600e+09
## 13102   2.094400e+09
## 13103   1.865100e+09
## 13104   1.691900e+09
## 13105             NA
## 13106   1.796772e+11
## 13107   1.444114e+11
## 13108   1.758376e+11
## 13109   1.833350e+11
## 13110   1.610991e+11
## 13111   1.517322e+11
## 13112   1.617400e+11
## 13113   2.062246e+11
## 13114   1.987276e+11
## 13115   1.868335e+11
## 13116   1.677753e+11
## 13117   1.251223e+11
## 13118   9.779835e+10
## 13119   1.152701e+11
## 13120   7.971209e+10
## 13121   6.088214e+10
## 13122   4.453049e+10
## 13123   3.173407e+10
## 13124   2.353379e+10
## 13125   1.936374e+10
## 13126   1.753846e+10
## 13127   1.775989e+10
## 13128   1.239313e+10
## 13129   1.025550e+10
## 13130   1.129780e+10
## 13131   9.059340e+09
## 13132   8.137912e+09
## 13133   7.374451e+09
## 13134   7.156594e+09
## 13135   7.646154e+09
## 13136   6.883516e+09
## 13137   7.360439e+09
## 13138   6.487912e+09
## 13139   6.038187e+09
## 13140   5.446429e+09
## 13141   5.053022e+09
## 13142   6.153296e+09
## 13143   6.704396e+09
## 13144   6.467582e+09
## 13145   7.596703e+09
## 13146   8.661264e+09
## 13147   7.829095e+09
## 13148   5.633000e+09
## 13149   4.052000e+09
## 13150   3.617580e+09
## 13151   3.284301e+09
## 13152   2.512784e+09
## 13153   2.401403e+09
## 13154   7.938844e+08
## 13155   5.102599e+08
## 13156   3.877001e+08
## 13157   3.017913e+08
## 13158             NA
## 13159             NA
## 13160             NA
## 13161             NA
## 13162             NA
## 13163             NA
## 13164             NA
## 13165             NA
## 13166             NA
## 13167             NA
## 13168             NA
## 13169   2.840876e+11
## 13170   2.513620e+11
## 13171   2.510193e+11
## 13172   2.433171e+11
## 13173   2.101467e+11
## 13174   1.852869e+11
## 13175   1.778824e+11
## 13176   1.997123e+11
## 13177   1.897902e+11
## 13178   1.791329e+11
## 13179   1.926141e+11
## 13180   1.700294e+11
## 13181   1.741037e+11
## 13182   2.143136e+11
## 13183   1.745852e+11
## 13184   1.220230e+11
## 13185   9.845279e+10
## 13186   7.497267e+10
## 13187   5.780651e+10
## 13188   4.606610e+10
## 13189   4.039482e+10
## 13190   3.725326e+10
## 13191   3.595278e+10
## 13192   4.169412e+10
## 13193   3.557492e+10
## 13194   3.693707e+10
## 13195   3.743532e+10
## 13196   3.007444e+10
## 13197   2.636289e+10
## 13198   2.512167e+10
## 13199   2.899868e+10
## 13200   3.899545e+10
## 13201   4.210526e+10
## 13202   4.080952e+10
## 13203   3.841364e+10
## 13204             NA
## 13205             NA
## 13206             NA
## 13207             NA
## 13208             NA
## 13209             NA
## 13210             NA
## 13211             NA
## 13212             NA
## 13213             NA
## 13214             NA
## 13215             NA
## 13216             NA
## 13217             NA
## 13218             NA
## 13219             NA
## 13220             NA
## 13221             NA
## 13222             NA
## 13223             NA
## 13224             NA
## 13225             NA
## 13226             NA
## 13227             NA
## 13228             NA
## 13229             NA
## 13230             NA
## 13231             NA
## 13232   1.778783e+12
## 13233   1.489362e+12
## 13234   1.693114e+12
## 13235   1.657330e+12
## 13236   1.574199e+12
## 13237   1.276787e+12
## 13238   1.363481e+12
## 13239   2.059242e+12
## 13240   2.292473e+12
## 13241   2.208296e+12
## 13242   2.045926e+12
## 13243   1.524917e+12
## 13244   1.222644e+12
## 13245   1.660846e+12
## 13246   1.299706e+12
## 13247   9.899305e+11
## 13248   7.640171e+11
## 13249   5.910167e+11
## 13250   4.303478e+11
## 13251   3.454705e+11
## 13252   3.066021e+11
## 13253   2.597101e+11
## 13254   1.959071e+11
## 13255   2.709555e+11
## 13256   4.049290e+11
## 13257   3.917249e+11
## 13258   3.955372e+11
## 13259   3.950773e+11
## 13260   4.350837e+11
## 13261   4.602906e+11
## 13262   5.179630e+11
## 13263   5.168143e+11
## 13264   5.065002e+11
## 13265   5.547135e+11
## 13266             NA
## 13267             NA
## 13268             NA
## 13269             NA
## 13270             NA
## 13271             NA
## 13272             NA
## 13273             NA
## 13274             NA
## 13275             NA
## 13276             NA
## 13277             NA
## 13278             NA
## 13279             NA
## 13280             NA
## 13281             NA
## 13282             NA
## 13283             NA
## 13284             NA
## 13285             NA
## 13286             NA
## 13287             NA
## 13288             NA
## 13289             NA
## 13290             NA
## 13291             NA
## 13292             NA
## 13293             NA
## 13294             NA
## 13295   1.107036e+10
## 13296   1.018435e+10
## 13297   1.035633e+10
## 13298   9.642441e+09
## 13299   9.252834e+09
## 13300   8.690878e+09
## 13301   8.539425e+09
## 13302   8.234762e+09
## 13303   7.815975e+09
## 13304   7.650671e+09
## 13305   6.881380e+09
## 13306   6.121529e+09
## 13307   5.671593e+09
## 13308   5.177231e+09
## 13309   4.068225e+09
## 13310   3.318107e+09
## 13311   2.932341e+09
## 13312   2.375377e+09
## 13313   2.137157e+09
## 13314   1.964833e+09
## 13315   1.965501e+09
## 13316   2.067580e+09
## 13317   2.155707e+09
## 13318   1.989343e+09
## 13319   1.851558e+09
## 13320   1.382335e+09
## 13321   1.293535e+09
## 13322   7.536364e+08
## 13323   1.971526e+09
## 13324   2.029027e+09
## 13325   1.911601e+09
## 13326   2.550186e+09
## 13327   2.405022e+09
## 13328   2.395494e+09
## 13329   2.157434e+09
## 13330   1.944711e+09
## 13331   1.715626e+09
## 13332   1.587413e+09
## 13333   1.479688e+09
## 13334   1.407243e+09
## 13335   1.407063e+09
## 13336   1.254765e+09
## 13337   1.109346e+09
## 13338   9.057091e+08
## 13339   7.466506e+08
## 13340   6.377542e+08
## 13341   5.718633e+08
## 13342   3.084584e+08
## 13343   2.907462e+08
## 13344   2.464578e+08
## 13345   2.229526e+08
## 13346   2.199000e+08
## 13347   1.887000e+08
## 13348   1.722000e+08
## 13349   1.595600e+08
## 13350   1.245257e+08
## 13351   1.488000e+08
## 13352   1.300000e+08
## 13353   1.280000e+08
## 13354   1.250000e+08
## 13355   1.220000e+08
## 13356   1.190000e+08
## 13357             NA
## 13358   8.438424e+08
## 13359   8.689045e+08
## 13360   9.129445e+08
## 13361   8.784351e+08
## 13362   8.848472e+08
## 13363   8.439296e+08
## 13364   8.241600e+08
## 13365   7.966983e+08
## 13366   7.977287e+08
## 13367   7.731575e+08
## 13368   7.441048e+08
## 13369   6.802505e+08
## 13370   6.280061e+08
## 13371   6.413462e+08
## 13372   5.735485e+08
## 13373   4.999238e+08
## 13374   4.768018e+08
## 13375   4.077496e+08
## 13376   3.334287e+08
## 13377   2.817936e+08
## 13378   2.662996e+08
## 13379   2.588561e+08
## 13380   2.554100e+08
## 13381   2.694815e+08
## 13382   2.854756e+08
## 13383   2.499090e+08
## 13384   2.248657e+08
## 13385   2.210981e+08
## 13386   1.331229e+08
## 13387   1.323030e+08
## 13388   1.255972e+08
## 13389   1.257663e+08
## 13390   1.228886e+08
## 13391   1.330161e+08
## 13392   1.117139e+08
## 13393   1.009478e+08
## 13394   9.557217e+07
## 13395   1.092009e+08
## 13396   1.118628e+08
## 13397   1.212217e+08
## 13398             NA
## 13399             NA
## 13400             NA
## 13401             NA
## 13402             NA
## 13403             NA
## 13404             NA
## 13405             NA
## 13406             NA
## 13407             NA
## 13408             NA
## 13409             NA
## 13410             NA
## 13411             NA
## 13412             NA
## 13413             NA
## 13414             NA
## 13415             NA
## 13416             NA
## 13417             NA
## 13418             NA
## 13419             NA
## 13420             NA
## 13421             NA
## 13422   1.541204e+09
## 13423   1.616189e+09
## 13424   1.655301e+09
## 13425   1.528631e+09
## 13426   1.468377e+09
## 13427   1.419395e+09
## 13428   1.673974e+09
## 13429   1.678842e+09
## 13430   1.604780e+09
## 13431   1.813753e+09
## 13432   1.881214e+09
## 13433   2.056127e+09
## 13434   2.393438e+09
## 13435   2.185875e+09
## 13436   1.908167e+09
## 13437   1.785848e+09
## 13438   1.723750e+09
## 13439   1.464326e+09
## 13440   1.168269e+09
## 13441   1.077413e+09
## 13442   1.005159e+09
## 13443   1.109099e+09
## 13444             NA
## 13445             NA
## 13446             NA
## 13447             NA
## 13448             NA
## 13449             NA
## 13450             NA
## 13451             NA
## 13452             NA
## 13453             NA
## 13454             NA
## 13455             NA
## 13456             NA
## 13457             NA
## 13458             NA
## 13459             NA
## 13460             NA
## 13461             NA
## 13462             NA
## 13463             NA
## 13464             NA
## 13465             NA
## 13466             NA
## 13467             NA
## 13468             NA
## 13469             NA
## 13470             NA
## 13471             NA
## 13472             NA
## 13473             NA
## 13474             NA
## 13475             NA
## 13476             NA
## 13477             NA
## 13478             NA
## 13479             NA
## 13480             NA
## 13481             NA
## 13482             NA
## 13483             NA
## 13484   5.266538e+08
## 13485   4.725510e+08
## 13486   4.274250e+08
## 13487   4.122538e+08
## 13488   3.756141e+08
## 13489   3.454956e+08
## 13490   3.160661e+08
## 13491   3.465283e+08
## 13492   3.005545e+08
## 13493   2.506808e+08
## 13494   2.314893e+08
## 13495   1.966525e+08
## 13496   1.878205e+08
## 13497   1.880212e+08
## 13498   1.491464e+08
## 13499   1.427756e+08
## 13500   1.364503e+08
## 13501   1.145826e+08
## 13502   1.020856e+08
## 13503   8.517131e+07
## 13504   7.595121e+07
## 13505             NA
## 13506             NA
## 13507             NA
## 13508             NA
## 13509             NA
## 13510             NA
## 13511             NA
## 13512             NA
## 13513             NA
## 13514             NA
## 13515             NA
## 13516             NA
## 13517             NA
## 13518             NA
## 13519             NA
## 13520             NA
## 13521             NA
## 13522             NA
## 13523             NA
## 13524             NA
## 13525             NA
## 13526             NA
## 13527             NA
## 13528             NA
## 13529             NA
## 13530             NA
## 13531             NA
## 13532             NA
## 13533             NA
## 13534             NA
## 13535             NA
## 13536             NA
## 13537             NA
## 13538             NA
## 13539             NA
## 13540             NA
## 13541             NA
## 13542             NA
## 13543             NA
## 13544             NA
## 13545             NA
## 13546             NA
## 13547   8.335412e+11
## 13548   7.033678e+11
## 13549   8.036163e+11
## 13550   8.165787e+11
## 13551   6.885861e+11
## 13552   6.449357e+11
## 13553   6.542697e+11
## 13554   7.563503e+11
## 13555   7.466471e+11
## 13556   7.359748e+11
## 13557   6.712388e+11
## 13558   5.282073e+11
## 13559   4.290979e+11
## 13560   5.197967e+11
## 13561   4.159646e+11
## 13562   3.769001e+11
## 13563   3.284597e+11
## 13564   2.587423e+11
## 13565   2.158077e+11
## 13566   1.896059e+11
## 13567   1.841375e+11
## 13568   1.895149e+11
## 13569   1.617170e+11
## 13570   1.467755e+11
## 13571   1.659636e+11
## 13572   1.586624e+11
## 13573   1.433430e+11
## 13574   1.351749e+11
## 13575   1.329679e+11
## 13576   1.370879e+11
## 13577   1.322233e+11
## 13578   1.176303e+11
## 13579   9.534435e+10
## 13580   8.825616e+10
## 13581   8.569594e+10
## 13582   8.696201e+10
## 13583   1.038979e+11
## 13584   1.196249e+11
## 13585   1.291716e+11
## 13586   1.532390e+11
## 13587   1.842919e+11
## 13588   1.645417e+11
## 13589   1.118597e+11
## 13590   8.026573e+10
## 13591   7.418836e+10
## 13592   6.400562e+10
## 13593   4.677330e+10
## 13594   4.541297e+10
## 13595   1.494749e+10
## 13596   9.664068e+09
## 13597   7.184863e+09
## 13598   5.377269e+09
## 13599   4.485778e+09
## 13600   4.187778e+09
## 13601             NA
## 13602             NA
## 13603             NA
## 13604             NA
## 13605             NA
## 13606             NA
## 13607             NA
## 13608             NA
## 13609             NA
## 13610   2.762539e+10
## 13611   2.449316e+10
## 13612   2.339881e+10
## 13613   2.311690e+10
## 13614   2.099656e+10
## 13615   1.904031e+10
## 13616   1.777477e+10
## 13617   1.979725e+10
## 13618   1.891867e+10
## 13619   1.766087e+10
## 13620   1.781428e+10
## 13621   1.612131e+10
## 13622   1.614587e+10
## 13623   1.685399e+10
## 13624   1.399422e+10
## 13625   1.169792e+10
## 13626   1.100903e+10
## 13627   1.007682e+10
## 13628   8.768722e+09
## 13629   7.006403e+09
## 13630   6.507825e+09
## 13631   6.013185e+09
## 13632   6.592835e+09
## 13633   6.505608e+09
## 13634   6.041478e+09
## 13635   6.559713e+09
## 13636   6.326343e+09
## 13637   5.034588e+09
## 13638   7.367986e+09
## 13639   7.769818e+09
## 13640   7.255211e+09
## 13641   7.390967e+09
## 13642   6.366039e+09
## 13643   6.418420e+09
## 13644   6.487352e+09
## 13645   5.392094e+09
## 13646   3.818945e+09
## 13647   3.485165e+09
## 13648   3.569356e+09
## 13649   4.013951e+09
## 13650   4.095892e+09
## 13651   4.510107e+09
## 13652   4.084879e+09
## 13653   3.280354e+09
## 13654   2.938046e+09
## 13655   2.869778e+09
## 13656   2.830388e+09
## 13657   2.099325e+09
## 13658   1.863398e+09
## 13659   1.620857e+09
## 13660   1.339549e+09
## 13661   1.297408e+09
## 13662   1.245235e+09
## 13663   1.309385e+09
## 13664   1.246481e+09
## 13665   1.246908e+09
## 13666   1.210058e+09
## 13667   1.188931e+09
## 13668   1.122140e+09
## 13669   1.085476e+09
## 13670   1.058975e+09
## 13671   1.003692e+09
## 13672             NA
## 13673   6.308205e+10
## 13674   5.335648e+10
## 13675   5.151422e+10
## 13676   5.064065e+10
## 13677   4.417906e+10
## 13678   4.069264e+10
## 13679   3.965596e+10
## 13680   4.706221e+10
## 13681   4.839424e+10
## 13682   4.330925e+10
## 13683   4.925814e+10
## 13684   4.181947e+10
## 13685   4.516289e+10
## 13686   5.219422e+10
## 13687   4.317099e+10
## 13688   3.248207e+10
## 13689   2.768323e+10
## 13690   2.614197e+10
## 13691   2.248237e+10
## 13692   1.712091e+10
## 13693   1.296054e+10
## 13694   6.875846e+09
## 13695   1.938866e+10
## 13696   1.945798e+10
## 13697   2.567649e+10
## 13698   2.181801e+10
## 13699   1.683260e+10
## 13700             NA
## 13701             NA
## 13702             NA
## 13703             NA
## 13704             NA
## 13705             NA
## 13706             NA
## 13707             NA
## 13708             NA
## 13709             NA
## 13710             NA
## 13711             NA
## 13712             NA
## 13713             NA
## 13714             NA
## 13715             NA
## 13716             NA
## 13717             NA
## 13718             NA
## 13719             NA
## 13720             NA
## 13721             NA
## 13722             NA
## 13723             NA
## 13724             NA
## 13725             NA
## 13726             NA
## 13727             NA
## 13728             NA
## 13729             NA
## 13730             NA
## 13731             NA
## 13732             NA
## 13733             NA
## 13734             NA
## 13735             NA
## 13736   1.454458e+09
## 13737   1.261199e+09
## 13738   1.684373e+09
## 13739   1.636312e+09
## 13740   1.573433e+09
## 13741   1.490228e+09
## 13742   1.416001e+09
## 13743   1.387581e+09
## 13744   1.328092e+09
## 13745   1.059499e+09
## 13746   1.065827e+09
## 13747   9.699365e+08
## 13748   8.473979e+08
## 13749   9.671996e+08
## 13750   1.033562e+09
## 13751   1.016418e+09
## 13752   9.191033e+08
## 13753   8.393199e+08
## 13754   7.057048e+08
## 13755   6.975182e+08
## 13756   6.222621e+08
## 13757   6.148798e+08
## 13758   6.229855e+08
## 13759   6.083693e+08
## 13760   5.629588e+08
## 13761   5.030685e+08
## 13762   5.082215e+08
## 13763   4.864512e+08
## 13764   4.739168e+08
## 13765   4.336672e+08
## 13766   3.743596e+08
## 13767   3.685848e+08
## 13768   3.048329e+08
## 13769   2.838288e+08
## 13770   2.492670e+08
## 13771   2.078506e+08
## 13772   1.688875e+08
## 13773   1.513132e+08
## 13774   1.467129e+08
## 13775   1.479121e+08
## 13776   1.549029e+08
## 13777   1.473572e+08
## 13778   1.272611e+08
## 13779   8.555237e+07
## 13780   6.452640e+07
## 13781   4.927898e+07
## 13782   4.780315e+07
## 13783   4.313450e+07
## 13784   3.689628e+07
## 13785   3.064512e+07
## 13786   2.196595e+07
## 13787   1.843203e+07
## 13788   1.645203e+07
## 13789   1.607403e+07
## 13790   1.663203e+07
## 13791   1.644303e+07
## 13792   1.560303e+07
## 13793   1.539303e+07
## 13794   1.392303e+07
## 13795   1.264203e+07
## 13796   1.159201e+07
## 13797   1.201201e+07
## 13798             NA
## 13799   4.042238e+09
## 13800   4.063289e+09
## 13801   4.076579e+09
## 13802   4.085115e+09
## 13803   3.719369e+09
## 13804   3.674795e+09
## 13805   4.218724e+09
## 13806   5.015158e+09
## 13807   4.920343e+09
## 13808   3.801863e+09
## 13809   2.942547e+09
## 13810   2.578026e+09
## 13811   2.453900e+09
## 13812   2.505459e+09
## 13813   2.158497e+09
## 13814   1.885112e+09
## 13815   1.650494e+09
## 13816   1.448537e+09
## 13817   1.385810e+09
## 13818   1.253341e+09
## 13819   1.090468e+09
## 13820   6.358740e+08
## 13821   6.693848e+08
## 13822   6.723759e+08
## 13823   8.502180e+08
## 13824   9.417422e+08
## 13825   8.707587e+08
## 13826   9.119160e+08
## 13827   7.688123e+08
## 13828   6.799980e+08
## 13829   7.799815e+08
## 13830   6.496448e+08
## 13831   9.329744e+08
## 13832   1.055084e+09
## 13833   7.013076e+08
## 13834   4.901815e+08
## 13835   8.568905e+08
## 13836   1.087472e+09
## 13837   9.951043e+08
## 13838   1.295362e+09
## 13839   1.114830e+09
## 13840   1.100686e+09
## 13841   1.109375e+09
## 13842   9.607283e+08
## 13843   6.917778e+08
## 13844   5.948957e+08
## 13845   6.793359e+08
## 13846   6.485906e+08
## 13847   5.752302e+08
## 13848   4.653811e+08
## 13849   4.195494e+08
## 13850   4.344104e+08
## 13851   4.086902e+08
## 13852   3.298601e+08
## 13853   3.487953e+08
## 13854   3.754798e+08
## 13855   3.593799e+08
## 13856   3.718481e+08
## 13857   3.485470e+08
## 13858   3.427216e+08
## 13859   3.278347e+08
## 13860   3.220095e+08
## 13861             NA
## 13862   3.969869e+11
## 13863   3.452959e+11
## 13864   3.754727e+11
## 13865   3.769981e+11
## 13866   3.431934e+11
## 13867   3.188324e+11
## 13868   3.080041e+11
## 13869   3.148512e+11
## 13870   3.075764e+11
## 13871   2.950872e+11
## 13872   2.793512e+11
## 13873   2.398094e+11
## 13874   1.941523e+11
## 13875   1.936120e+11
## 13876   1.809419e+11
## 13877   1.486304e+11
## 13878   1.278076e+11
## 13879   1.150355e+11
## 13880   9.764545e+10
## 13881   9.253775e+10
## 13882   8.979494e+10
## 13883   9.607448e+10
## 13884   8.628466e+10
## 13885   8.572831e+10
## 13886   1.001242e+11
## 13887   9.629589e+10
## 13888   8.781099e+10
## 13889   7.369085e+10
## 13890   6.060348e+10
## 13891   5.213026e+10
## 13892   4.546616e+10
## 13893   3.614434e+10
## 13894   3.046536e+10
## 13895   2.537146e+10
## 13896   2.091922e+10
## 13897   1.858675e+10
## 13898   1.915653e+10
## 13899   1.974936e+10
## 13900   1.778411e+10
## 13901   1.608425e+10
## 13902   1.417523e+10
## 13903   1.189626e+10
## 13904   9.296922e+09
## 13905   7.517176e+09
## 13906   6.618585e+09
## 13907   6.327078e+09
## 13908   5.633674e+09
## 13909   5.221535e+09
## 13910   3.696213e+09
## 13911   2.721441e+09
## 13912   2.263785e+09
## 13913   1.920587e+09
## 13914   1.659905e+09
## 13915   1.425715e+09
## 13916   1.238044e+09
## 13917   1.096433e+09
## 13918   9.746505e+08
## 13919   8.941592e+08
## 13920   9.176140e+08
## 13921   8.262446e+08
## 13922   7.646348e+08
## 13923   7.047563e+08
## 13924             NA
## 13925             NA
## 13926             NA
## 13927             NA
## 13928   1.185475e+09
## 13929   1.191620e+09
## 13930   1.263687e+09
## 13931   1.253073e+09
## 13932   1.245251e+09
## 13933   1.022905e+09
## 13934   9.858659e+08
## 13935   9.360894e+08
## 13936             NA
## 13937             NA
## 13938             NA
## 13939             NA
## 13940             NA
## 13941             NA
## 13942             NA
## 13943             NA
## 13944             NA
## 13945             NA
## 13946             NA
## 13947             NA
## 13948             NA
## 13949             NA
## 13950             NA
## 13951             NA
## 13952             NA
## 13953             NA
## 13954             NA
## 13955             NA
## 13956             NA
## 13957             NA
## 13958             NA
## 13959             NA
## 13960             NA
## 13961             NA
## 13962             NA
## 13963             NA
## 13964             NA
## 13965             NA
## 13966             NA
## 13967             NA
## 13968             NA
## 13969             NA
## 13970             NA
## 13971             NA
## 13972             NA
## 13973             NA
## 13974             NA
## 13975             NA
## 13976             NA
## 13977             NA
## 13978             NA
## 13979             NA
## 13980             NA
## 13981             NA
## 13982             NA
## 13983             NA
## 13984             NA
## 13985             NA
## 13986             NA
## 13987             NA
## 13988   1.165271e+11
## 13989   1.066968e+11
## 13990   1.057204e+11
## 13991   1.061379e+11
## 13992   9.564997e+10
## 13993   8.995270e+10
## 13994   8.890088e+10
## 13995   1.014370e+11
## 13996   9.893522e+10
## 13997   9.462373e+10
## 13998   9.992269e+10
## 13999   9.116284e+10
## 14000   8.939930e+10
## 14001   1.008799e+11
## 14002   8.656399e+10
## 14003   7.076734e+10
## 14004   6.280872e+10
## 14005   5.743744e+10
## 14006   4.691997e+10
## 14007   3.529779e+10
## 14008   3.077878e+10
## 14009   2.924256e+10
## 14010   3.046367e+10
## 14011   2.985600e+10
## 14012   2.770603e+10
## 14013   2.792504e+10
## 14014   2.584015e+10
## 14015   2.016294e+10
## 14016   1.652068e+10
## 14017   1.549551e+10
## 14018   1.427220e+10
## 14019   1.274738e+10
## 14020             NA
## 14021             NA
## 14022             NA
## 14023             NA
## 14024             NA
## 14025             NA
## 14026             NA
## 14027             NA
## 14028             NA
## 14029             NA
## 14030             NA
## 14031             NA
## 14032             NA
## 14033             NA
## 14034             NA
## 14035             NA
## 14036             NA
## 14037             NA
## 14038             NA
## 14039             NA
## 14040             NA
## 14041             NA
## 14042             NA
## 14043             NA
## 14044             NA
## 14045             NA
## 14046             NA
## 14047             NA
## 14048             NA
## 14049             NA
## 14050             NA
## 14051   6.174859e+10
## 14052   5.370680e+10
## 14053   5.433159e+10
## 14054   5.417788e+10
## 14055   4.858910e+10
## 14056   4.476672e+10
## 14057   4.310751e+10
## 14058   4.999719e+10
## 14059   4.841566e+10
## 14060   4.657779e+10
## 14061   5.158387e+10
## 14062   4.820824e+10
## 14063   5.056773e+10
## 14064   5.577943e+10
## 14065   4.806740e+10
## 14066   3.948105e+10
## 14067   3.620640e+10
## 14068   3.441478e+10
## 14069   2.963471e+10
## 14070   2.348989e+10
## 14071   2.087631e+10
## 14072   2.028963e+10
## 14073   2.271138e+10
## 14074   2.214623e+10
## 14075   2.076310e+10
## 14076   2.150723e+10
## 14077   2.135222e+10
## 14078             NA
## 14079             NA
## 14080             NA
## 14081             NA
## 14082             NA
## 14083             NA
## 14084             NA
## 14085             NA
## 14086             NA
## 14087             NA
## 14088             NA
## 14089             NA
## 14090             NA
## 14091             NA
## 14092             NA
## 14093             NA
## 14094             NA
## 14095             NA
## 14096             NA
## 14097             NA
## 14098             NA
## 14099             NA
## 14100             NA
## 14101             NA
## 14102             NA
## 14103             NA
## 14104             NA
## 14105             NA
## 14106             NA
## 14107             NA
## 14108             NA
## 14109             NA
## 14110             NA
## 14111             NA
## 14112             NA
## 14113             NA
## 14114   1.631487e+09
## 14115   1.536148e+09
## 14116   1.619155e+09
## 14117   1.615479e+09
## 14118   1.469787e+09
## 14119   1.379482e+09
## 14120   1.307908e+09
## 14121   1.335580e+09
## 14122   1.285918e+09
## 14123   1.185216e+09
## 14124   1.063890e+09
## 14125   8.981338e+08
## 14126   8.055618e+08
## 14127   7.763394e+08
## 14128   6.952953e+08
## 14129   6.172547e+08
## 14130   5.528626e+08
## 14131   4.680081e+08
## 14132   4.176714e+08
## 14133   3.464053e+08
## 14134   4.095074e+08
## 14135   4.198452e+08
## 14136   4.880288e+08
## 14137   4.575845e+08
## 14138   5.265600e+08
## 14139   5.105804e+08
## 14140   4.694432e+08
## 14141   4.028319e+08
## 14142   3.007495e+08
## 14143   2.690346e+08
## 14144   2.275363e+08
## 14145   2.148776e+08
## 14146   1.728824e+08
## 14147   1.764944e+08
## 14148   1.551286e+08
## 14149   1.476200e+08
## 14150   1.655250e+08
## 14151   1.815705e+08
## 14152   1.812203e+08
## 14153   1.929019e+08
## 14154   1.937505e+08
## 14155   1.828521e+08
## 14156   1.512702e+08
## 14157   1.110221e+08
## 14158   9.314704e+07
## 14159   8.309911e+07
## 14160   7.461710e+07
## 14161   8.453933e+07
## 14162   5.527211e+07
## 14163   4.060671e+07
## 14164   5.005688e+07
## 14165             NA
## 14166   2.860641e+07
## 14167   2.808425e+07
## 14168   2.520352e+07
## 14169             NA
## 14170             NA
## 14171             NA
## 14172             NA
## 14173             NA
## 14174             NA
## 14175             NA
## 14176             NA
## 14177   7.628000e+09
## 14178   6.883000e+09
## 14179   6.485000e+09
## 14180   5.856000e+09
## 14181   5.609000e+09
## 14182   5.534000e+09
## 14183   5.335000e+09
## 14184   5.025000e+09
## 14185   4.577000e+09
## 14186             NA
## 14187             NA
## 14188             NA
## 14189             NA
## 14190             NA
## 14191             NA
## 14192             NA
## 14193             NA
## 14194             NA
## 14195             NA
## 14196             NA
## 14197             NA
## 14198             NA
## 14199             NA
## 14200             NA
## 14201             NA
## 14202             NA
## 14203             NA
## 14204             NA
## 14205             NA
## 14206             NA
## 14207             NA
## 14208   9.170442e+08
## 14209   1.092393e+09
## 14210   1.038291e+09
## 14211   1.009793e+09
## 14212   9.303187e+08
## 14213   8.764046e+08
## 14214   7.883072e+08
## 14215   7.339014e+08
## 14216   7.744196e+08
## 14217   6.991123e+08
## 14218   6.035927e+08
## 14219   5.904199e+08
## 14220   5.649861e+08
## 14221   4.985509e+08
## 14222   8.072758e+08
## 14223   7.108502e+08
## 14224   4.675774e+08
## 14225   5.070284e+08
## 14226   4.169424e+08
## 14227   3.311027e+08
## 14228   3.226000e+08
## 14229   3.063573e+08
## 14230   2.867183e+08
## 14231   2.717804e+08
## 14232   2.573745e+08
## 14233   2.437245e+08
## 14234   2.295299e+08
## 14235   2.161459e+08
## 14236   2.035319e+08
## 14237   1.916599e+08
## 14238   1.804599e+08
## 14239             NA
## 14240   4.190150e+11
## 14241   3.376197e+11
## 14242   3.885320e+11
## 14243   4.041597e+11
## 14244   3.814488e+11
## 14245   3.235855e+11
## 14246   3.467098e+11
## 14247   3.811989e+11
## 14248   4.008860e+11
## 14249   4.344005e+11
## 14250   4.582015e+11
## 14251   4.173651e+11
## 14252   3.297530e+11
## 14253   3.161321e+11
## 14254   3.330755e+11
## 14255   3.038609e+11
## 14256   2.888685e+11
## 14257   2.558066e+11
## 14258   1.970202e+11
## 14259   1.290881e+11
## 14260   1.354296e+11
## 14261   1.517534e+11
## 14262   1.515166e+11
## 14263   1.529825e+11
## 14264   1.689767e+11
## 14265   1.632368e+11
## 14266   1.717352e+11
## 14267   1.535126e+11
## 14268   1.471966e+11
## 14269   1.469569e+11
## 14270   1.352044e+11
## 14271   1.260481e+11
## 14272   1.080556e+11
## 14273   1.039769e+11
## 14274   9.653575e+10
## 14275   7.335478e+10
## 14276   6.445938e+10
## 14277   8.487013e+10
## 14278   9.620411e+10
## 14279   8.590407e+10
## 14280   9.314148e+10
## 14281   8.941189e+10
## 14282   6.303869e+10
## 14283   5.160740e+10
## 14284   4.532840e+10
## 14285   4.115045e+10
## 14286   4.290692e+10
## 14287   4.138919e+10
## 14288   3.326277e+10
## 14289   2.451591e+10
## 14290   2.341108e+10
## 14291   2.121839e+10
## 14292   1.925699e+10
## 14293   1.712479e+10
## 14294   1.582139e+10
## 14295   1.421139e+10
## 14296   1.306899e+10
## 14297   1.195600e+10
## 14298   1.085420e+10
## 14299   9.813996e+09
## 14300   9.225996e+09
## 14301   8.748597e+09
## 14302             NA
## 14303             NA
## 14304             NA
## 14305             NA
## 14306             NA
## 14307             NA
## 14308             NA
## 14309   1.199780e+10
## 14310   1.396221e+10
## 14311   1.842647e+10
## 14312   1.193147e+10
## 14313   1.490731e+10
## 14314   1.460207e+10
## 14315   1.223126e+10
## 14316   1.458625e+10
## 14317             NA
## 14318             NA
## 14319             NA
## 14320             NA
## 14321             NA
## 14322             NA
## 14323             NA
## 14324             NA
## 14325             NA
## 14326             NA
## 14327             NA
## 14328             NA
## 14329             NA
## 14330             NA
## 14331             NA
## 14332             NA
## 14333             NA
## 14334             NA
## 14335             NA
## 14336             NA
## 14337             NA
## 14338             NA
## 14339             NA
## 14340             NA
## 14341             NA
## 14342             NA
## 14343             NA
## 14344             NA
## 14345             NA
## 14346             NA
## 14347             NA
## 14348             NA
## 14349             NA
## 14350             NA
## 14351             NA
## 14352             NA
## 14353             NA
## 14354             NA
## 14355             NA
## 14356             NA
## 14357             NA
## 14358             NA
## 14359             NA
## 14360             NA
## 14361             NA
## 14362             NA
## 14363             NA
## 14364             NA
## 14365             NA
## 14366   1.427381e+12
## 14367   1.276963e+12
## 14368   1.394320e+12
## 14369   1.421703e+12
## 14370   1.313245e+12
## 14371   1.233555e+12
## 14372   1.196157e+12
## 14373   1.371821e+12
## 14374   1.355580e+12
## 14375   1.324751e+12
## 14376   1.480710e+12
## 14377   1.422108e+12
## 14378   1.491473e+12
## 14379   1.631863e+12
## 14380   1.474003e+12
## 14381   1.260399e+12
## 14382   1.153716e+12
## 14383   1.069056e+12
## 14384   9.074915e+11
## 14385   7.087567e+11
## 14386   6.278300e+11
## 14387   5.983633e+11
## 14388   6.349075e+11
## 14389   6.192148e+11
## 14390   5.900773e+11
## 14391   6.425890e+11
## 14392   6.146090e+11
## 14393   5.305626e+11
## 14394   5.250756e+11
## 14395   6.309160e+11
## 14396   5.771662e+11
## 14397   5.365586e+11
## 14398   4.147571e+11
## 14399   3.761604e+11
## 14400   3.187479e+11
## 14401   2.513211e+11
## 14402   1.807935e+11
## 14403   1.721029e+11
## 14404   1.709512e+11
## 14405   1.959968e+11
## 14406   2.028079e+11
## 14407   2.327668e+11
## 14408   2.146020e+11
## 14409   1.605997e+11
## 14410   1.324493e+11
## 14411   1.185072e+11
## 14412   1.147770e+11
## 14413   9.727401e+10
## 14414   7.863953e+10
## 14415   5.913242e+10
## 14416   4.661942e+10
## 14417   4.099300e+10
## 14418   3.603871e+10
## 14419   3.147555e+10
## 14420   3.164712e+10
## 14421   2.872106e+10
## 14422   2.475696e+10
## 14423   2.134384e+10
## 14424   1.907491e+10
## 14425   1.613855e+10
## 14426   1.383430e+10
## 14427   1.207213e+10
## 14428             NA
## 14429   8.892726e+10
## 14430   8.534911e+10
## 14431   8.901499e+10
## 14432   9.449385e+10
## 14433   9.437625e+10
## 14434   8.801226e+10
## 14435   8.514096e+10
## 14436   8.252853e+10
## 14437   7.700060e+10
## 14438   7.044719e+10
## 14439   6.775329e+10
## 14440   5.863615e+10
## 14441   4.206622e+10
## 14442   4.071381e+10
## 14443   3.235025e+10
## 14444   2.827981e+10
## 14445   2.440579e+10
## 14446   2.066253e+10
## 14447   1.888177e+10
## 14448   1.653654e+10
## 14449   1.574975e+10
## 14450   1.633081e+10
## 14451   1.565633e+10
## 14452   1.579497e+10
## 14453   1.509191e+10
## 14454   1.389774e+10
## 14455   1.302970e+10
## 14456   1.171760e+10
## 14457   1.033868e+10
## 14458   9.703012e+09
## 14459   9.000363e+09
## 14460   8.032551e+09
## 14461   6.987268e+09
## 14462   6.978372e+09
## 14463   6.682167e+09
## 14464   6.405211e+09
## 14465   5.978461e+09
## 14466   6.043475e+09
## 14467   5.167913e+09
## 14468   4.768765e+09
## 14469   4.415844e+09
## 14470   4.024622e+09
## 14471   3.364611e+09
## 14472   2.733184e+09
## 14473   4.104510e+09
## 14474   3.591320e+09
## 14475   3.791298e+09
## 14476   3.574586e+09
## 14477   2.875625e+09
## 14478   2.553936e+09
## 14479   2.369309e+09
## 14480   2.296471e+09
## 14481   1.965546e+09
## 14482   1.801345e+09
## 14483   1.859465e+09
## 14484   1.751471e+09
## 14485   1.698319e+09
## 14486   1.309748e+09
## 14487   1.240672e+09
## 14488   1.434156e+09
## 14489   1.444328e+09
## 14490   1.409874e+09
## 14491             NA
## 14492   8.608407e+08
## 14493   8.845259e+08
## 14494   1.107841e+09
## 14495   1.076911e+09
## 14496   1.058937e+09
## 14497   1.008100e+09
## 14498   9.570407e+08
## 14499   9.531741e+08
## 14500   8.753764e+08
## 14501   8.262316e+08
## 14502   8.360924e+08
## 14503   7.787181e+08
## 14504   7.742731e+08
## 14505   7.776913e+08
## 14506   6.892852e+08
## 14507   6.444148e+08
## 14508   5.472037e+08
## 14509   5.069000e+08
## 14510   4.698699e+08
## 14511   4.810774e+08
## 14512   4.586438e+08
## 14513   4.216958e+08
## 14514   4.065955e+08
## 14515   3.832573e+08
## 14516   3.746413e+08
## 14517   3.339444e+08
## 14518   3.134852e+08
## 14519   2.951593e+08
## 14520   2.637556e+08
## 14521   2.421370e+08
## 14522   2.205407e+08
## 14523   2.172593e+08
## 14524   1.925185e+08
## 14525   1.726926e+08
## 14526   1.477481e+08
## 14527   1.306852e+08
## 14528   1.110074e+08
## 14529   9.860370e+07
## 14530   8.687407e+07
## 14531   8.602222e+07
## 14532   8.088889e+07
## 14533   6.845926e+07
## 14534   5.884074e+07
## 14535   4.943333e+07
## 14536   4.449630e+07
## 14537   3.009560e+07
## 14538   3.336406e+07
## 14539   3.151486e+07
## 14540   2.419602e+07
## 14541   2.294485e+07
## 14542   1.962475e+07
## 14543   1.630000e+07
## 14544   1.585000e+07
## 14545   1.460000e+07
## 14546   1.674234e+07
## 14547   1.446908e+07
## 14548   1.359393e+07
## 14549   1.341655e+07
## 14550   1.283323e+07
## 14551   1.254156e+07
## 14552   1.248323e+07
## 14553   1.236656e+07
## 14554             NA
## 14555   1.691275e+09
## 14556   1.516016e+09
## 14557   2.094202e+09
## 14558   2.057068e+09
## 14559   1.996711e+09
## 14560   1.865460e+09
## 14561   1.807227e+09
## 14562   1.749289e+09
## 14563   1.664817e+09
## 14564   1.605147e+09
## 14565   1.576988e+09
## 14566   1.486758e+09
## 14567   1.401508e+09
## 14568   1.437731e+09
## 14569   1.336089e+09
## 14570   1.268319e+09
## 14571   1.135556e+09
## 14572   1.066667e+09
## 14573   9.874074e+08
## 14574   9.000000e+08
## 14575   8.925926e+08
## 14576   9.325926e+08
## 14577   9.218519e+08
## 14578   8.774074e+08
## 14579   8.059259e+08
## 14580   7.888889e+08
## 14581   7.629630e+08
## 14582   7.137037e+08
## 14583   6.848148e+08
## 14584   6.740741e+08
## 14585   6.137037e+08
## 14586   5.796296e+08
## 14587   4.866667e+08
## 14588   4.296296e+08
## 14589   3.755556e+08
## 14590   3.400000e+08
## 14591   2.844444e+08
## 14592   2.514815e+08
## 14593   1.970370e+08
## 14594   1.833333e+08
## 14595   1.944444e+08
## 14596   1.703704e+08
## 14597             NA
## 14598             NA
## 14599             NA
## 14600             NA
## 14601             NA
## 14602             NA
## 14603             NA
## 14604             NA
## 14605             NA
## 14606             NA
## 14607             NA
## 14608             NA
## 14609             NA
## 14610             NA
## 14611             NA
## 14612             NA
## 14613             NA
## 14614             NA
## 14615             NA
## 14616             NA
## 14617             NA
## 14618             NA
## 14619             NA
## 14620             NA
## 14621             NA
## 14622             NA
## 14623             NA
## 14624             NA
## 14625   7.729507e+08
## 14626             NA
## 14627             NA
## 14628   7.758909e+08
## 14629             NA
## 14630             NA
## 14631             NA
## 14632             NA
## 14633             NA
## 14634             NA
## 14635             NA
## 14636             NA
## 14637             NA
## 14638             NA
## 14639             NA
## 14640             NA
## 14641             NA
## 14642             NA
## 14643             NA
## 14644             NA
## 14645             NA
## 14646             NA
## 14647             NA
## 14648             NA
## 14649             NA
## 14650             NA
## 14651             NA
## 14652             NA
## 14653             NA
## 14654             NA
## 14655             NA
## 14656             NA
## 14657             NA
## 14658             NA
## 14659             NA
## 14660             NA
## 14661             NA
## 14662             NA
## 14663             NA
## 14664             NA
## 14665             NA
## 14666             NA
## 14667             NA
## 14668             NA
## 14669             NA
## 14670             NA
## 14671             NA
## 14672             NA
## 14673             NA
## 14674             NA
## 14675             NA
## 14676             NA
## 14677             NA
## 14678             NA
## 14679             NA
## 14680             NA
## 14681   9.041815e+08
## 14682   8.721346e+08
## 14683   9.101497e+08
## 14684   8.843282e+08
## 14685   8.476202e+08
## 14686   8.143023e+08
## 14687   7.865546e+08
## 14688   7.709014e+08
## 14689   7.647813e+08
## 14690   7.300326e+08
## 14691   7.137964e+08
## 14692   7.204479e+08
## 14693   7.143003e+08
## 14694   7.326633e+08
## 14695   7.135967e+08
## 14696   6.435011e+08
## 14697   5.799489e+08
## 14698   5.499002e+08
## 14699   5.090909e+08
## 14700   4.877639e+08
## 14701   4.620723e+08
## 14702   4.279460e+08
## 14703   3.907185e+08
## 14704   3.736185e+08
## 14705   3.477704e+08
## 14706   3.314889e+08
## 14707   3.160074e+08
## 14708   2.894370e+08
## 14709   2.863074e+08
## 14710   2.779556e+08
## 14711   2.548296e+08
## 14712   2.403667e+08
## 14713   2.147450e+08
## 14714   2.007267e+08
## 14715   1.755806e+08
## 14716   1.608467e+08
## 14717   1.456417e+08
## 14718   1.350250e+08
## 14719   1.222553e+08
## 14720   1.137592e+08
## 14721   1.020865e+08
## 14722   8.234034e+07
## 14723   7.109636e+07
## 14724   6.084477e+07
## 14725   4.935316e+07
## 14726   3.279248e+07
## 14727   3.323716e+07
## 14728   3.292422e+07
## 14729   3.016537e+07
## 14730   2.758549e+07
## 14731   2.005165e+07
## 14732   1.845000e+07
## 14733   1.665000e+07
## 14734   1.535000e+07
## 14735   1.583518e+07
## 14736   1.609987e+07
## 14737   1.510821e+07
## 14738   1.475821e+07
## 14739   1.370822e+07
## 14740   1.452488e+07
## 14741   1.399988e+07
## 14742   1.306656e+07
## 14743             NA
## 14744   3.432606e+10
## 14745   2.703459e+10
## 14746   3.233808e+10
## 14747   3.233378e+10
## 14748   1.297178e+11
## 14749   1.029437e+11
## 14750   8.498513e+10
## 14751   7.681833e+10
## 14752   6.602660e+10
## 14753   6.319550e+10
## 14754   7.840342e+10
## 14755   7.415119e+10
## 14756   5.831619e+10
## 14757   6.483194e+10
## 14758   5.944014e+10
## 14759   4.526452e+10
## 14760   3.518211e+10
## 14761   2.664549e+10
## 14762   2.135558e+10
## 14763   1.813684e+10
## 14764   1.571649e+10
## 14765   1.225742e+10
## 14766   1.068205e+10
## 14767   1.125033e+10
## 14768   1.168149e+10
## 14769   9.018243e+09
## 14770   1.382974e+10
## 14771   1.279419e+10
## 14772   8.881786e+09
## 14773   7.034220e+09
## 14774   4.389129e+10
## 14775   3.364122e+10
## 14776   2.140811e+10
## 14777   1.437256e+10
## 14778   1.209333e+10
## 14779   1.009220e+10
## 14780   8.089391e+09
## 14781   1.044762e+10
## 14782   8.230154e+09
## 14783   8.316000e+09
## 14784   1.001650e+10
## 14785   8.951800e+09
## 14786   9.032250e+09
## 14787   7.670500e+09
## 14788   8.704000e+09
## 14789   6.979333e+09
## 14790   5.598000e+09
## 14791   4.595000e+09
## 14792   3.571667e+09
## 14793   2.882000e+09
## 14794   2.656000e+09
## 14795   2.437667e+09
## 14796   2.144333e+09
## 14797   1.947333e+09
## 14798   1.865667e+09
## 14799   1.723000e+09
## 14800   1.679333e+09
## 14801   1.611333e+09
## 14802   1.568333e+09
## 14803   1.541667e+09
## 14804   1.419333e+09
## 14805   1.307333e+09
## 14806             NA
## 14807   2.984706e+09
## 14808   2.911807e+09
## 14809   4.016041e+09
## 14810   3.996205e+09
## 14811   3.591661e+09
## 14812   3.317438e+09
## 14813   5.126188e+09
## 14814   5.240606e+09
## 14815   5.145758e+09
## 14816   4.980000e+09
## 14817   4.422277e+09
## 14818   4.368398e+09
## 14819   3.875410e+09
## 14820   3.532969e+09
## 14821   2.936612e+09
## 14822   2.626380e+09
## 14823   1.793389e+09
## 14824   1.484093e+09
## 14825   1.274190e+09
## 14826   1.093574e+09
## 14827   8.342794e+08
## 14828   9.476720e+08
## 14829   8.862907e+08
## 14830   1.110850e+09
## 14831   9.264225e+08
## 14832   8.614115e+08
## 14833   6.915905e+08
## 14834   6.054925e+08
## 14835   4.287647e+08
## 14836   4.046000e+08
## 14837   4.481000e+08
## 14838   3.884000e+08
## 14839   5.426000e+08
## 14840   1.161000e+09
## 14841   9.800000e+08
## 14842   8.910000e+08
## 14843   8.730000e+08
## 14844   8.640000e+08
## 14845   8.835000e+08
## 14846   9.150000e+08
## 14847   8.890000e+08
## 14848   7.950000e+08
## 14849   7.825000e+08
## 14850   7.355000e+08
## 14851   6.415000e+08
## 14852   5.055000e+08
## 14853   4.655000e+08
## 14854   4.098500e+08
## 14855   3.394500e+08
## 14856   3.119500e+08
## 14857   3.010000e+08
## 14858   2.749000e+08
## 14859   2.596500e+08
## 14860   2.413500e+08
## 14861   2.207000e+08
## 14862   1.903500e+08
## 14863   1.541500e+08
## 14864   1.344000e+08
## 14865   1.259500e+08
## 14866   1.161500e+08
## 14867   1.077000e+08
## 14868   9.965000e+07
## 14869             NA
## 14870   6.356638e+11
## 14871   5.470542e+11
## 14872   5.338795e+11
## 14873   5.554554e+11
## 14874   5.410187e+11
## 14875   5.156547e+11
## 14876   5.051038e+11
## 14877   5.819640e+11
## 14878   5.868418e+11
## 14879   5.524837e+11
## 14880   5.740941e+11
## 14881   4.958126e+11
## 14882   4.365370e+11
## 14883   5.177061e+11
## 14884   4.912526e+11
## 14885   4.230934e+11
## 14886   3.922181e+11
## 14887   3.851180e+11
## 14888   3.343372e+11
## 14889   2.668491e+11
## 14890   2.423959e+11
## 14891   2.628355e+11
## 14892   2.740722e+11
## 14893   2.708091e+11
## 14894   2.681461e+11
## 14895   2.917438e+11
## 14896   2.673059e+11
## 14897   2.290336e+11
## 14898   2.129533e+11
## 14899   2.843211e+11
## 14900   2.742290e+11
## 14901   2.618462e+11
## 14902   2.179483e+11
## 14903   2.069867e+11
## 14904   1.830096e+11
## 14905   1.504981e+11
## 14906   1.141235e+11
## 14907   1.092014e+11
## 14908   1.050144e+11
## 14909   1.143806e+11
## 14910   1.296869e+11
## 14911   1.420921e+11
## 14912   1.233864e+11
## 14913   1.044424e+11
## 14914   9.446874e+10
## 14915   8.936207e+10
## 14916   8.288540e+10
## 14917   6.601334e+10
## 14918   5.940497e+10
## 14919   4.895415e+10
## 14920   4.156641e+10
## 14921   3.809245e+10
## 14922   3.373810e+10
## 14923   3.106682e+10
## 14924   2.927600e+10
## 14925   2.697149e+10
## 14926   2.479550e+10
## 14927   2.253242e+10
## 14928   2.020487e+10
## 14929   1.866725e+10
## 14930   1.721269e+10
## 14931   1.582259e+10
## 14932             NA
## 14933   8.006402e+11
## 14934   7.399136e+11
## 14935   7.213691e+11
## 14936   7.255687e+11
## 14937   6.952008e+11
## 14938   6.878955e+11
## 14939   6.941182e+11
## 14940   7.265378e+11
## 14941   7.062349e+11
## 14942   6.864202e+11
## 14943   7.158881e+11
## 14944   5.988510e+11
## 14945   5.542129e+11
## 14946   5.672678e+11
## 14947   4.907407e+11
## 14948   4.416347e+11
## 14949   4.182849e+11
## 14950   4.039129e+11
## 14951   3.620751e+11
## 14952   3.093014e+11
## 14953   2.865827e+11
## 14954   2.792160e+11
## 14955   2.978736e+11
## 14956   3.034590e+11
## 14957   2.947882e+11
## 14958   3.401040e+11
## 14959   3.528358e+11
## 14960   3.013751e+11
## 14961   2.722375e+11
## 14962   2.799214e+11
## 14963   2.689017e+11
## 14964   2.657636e+11
## 14965   2.082808e+11
## 14966   2.157219e+11
## 14967   1.994039e+11
## 14968   1.592237e+11
## 14969   1.110736e+11
## 14970   1.095474e+11
## 14971   1.147308e+11
## 14972   1.151401e+11
## 14973   1.123392e+11
## 14974   1.226609e+11
## 14975             NA
## 14976             NA
## 14977             NA
## 14978             NA
## 14979             NA
## 14980             NA
## 14981             NA
## 14982             NA
## 14983             NA
## 14984             NA
## 14985   2.052489e+10
## 14986   1.894273e+10
## 14987   1.774001e+10
## 14988   1.648006e+10
## 14989   1.534674e+10
## 14990   1.448056e+10
## 14991   1.306364e+10
## 14992   1.187998e+10
## 14993   1.071271e+10
## 14994   9.522747e+09
## 14995             NA
## 14996             NA
## 14997   1.107980e+10
## 14998   2.244330e+10
## 14999   2.135173e+10
## 15000   1.636972e+10
## 15001   1.259874e+10
## 15002   1.646840e+10
## 15003   2.150206e+10
## 15004   2.136125e+10
## 15005   4.319032e+10
## 15006   6.753943e+10
## 15007   2.525182e+11
## 15008   2.245617e+11
## 15009   2.180900e+11
## 15010   1.800301e+11
## 15011   1.537999e+11
## 15012   1.342038e+11
## 15013   1.128633e+11
## 15014   9.569381e+10
## 15015   9.055849e+10
## 15016   8.677131e+10
## 15017   8.059002e+10
## 15018   7.297033e+10
## 15019   7.041817e+10
## 15020   6.642040e+10
## 15021   6.154628e+10
## 15022   5.086637e+10
## 15023   4.508695e+10
## 15024   3.686013e+10
## 15025   3.310735e+10
## 15026   2.775626e+10
## 15027   2.390450e+10
## 15028   1.860953e+10
## 15029   1.657434e+10
## 15030   3.253809e+10
## 15031   2.546064e+10
## 15032   2.120382e+10
## 15033   1.919541e+10
## 15034   1.867287e+10
## 15035   1.752561e+10
## 15036   1.675847e+10
## 15037   1.306242e+10
## 15038   9.929682e+09
## 15039   8.251975e+09
## 15040   6.882293e+09
## 15041   6.417633e+09
## 15042   5.566757e+09
## 15043   4.244670e+09
## 15044   2.579219e+09
## 15045   2.415707e+09
## 15046   2.097644e+09
## 15047   1.780105e+09
## 15048   1.796597e+09
## 15049   1.562303e+09
## 15050   1.443718e+09
## 15051   1.321205e+09
## 15052   1.329842e+09
## 15053   1.339494e+09
## 15054   1.200447e+09
## 15055   1.110566e+09
## 15056   9.452450e+08
## 15057   8.577044e+08
## 15058             NA
## 15059   8.746271e+09
## 15060   8.133997e+09
## 15061   8.300785e+09
## 15062   7.765014e+09
## 15063   7.536440e+09
## 15064   6.992394e+09
## 15065   8.271454e+09
## 15066   9.112545e+09
## 15067   8.448470e+09
## 15068   7.633050e+09
## 15069   6.522732e+09
## 15070   5.642179e+09
## 15071   4.979482e+09
## 15072   5.161337e+09
## 15073   3.719506e+09
## 15074   2.830221e+09
## 15075   2.312328e+09
## 15076   2.076182e+09
## 15077   1.555301e+09
## 15078   1.221121e+09
## 15079   1.080769e+09
## 15080   8.605211e+08
## 15081   1.086605e+09
## 15082   1.320242e+09
## 15083   9.215721e+08
## 15084   1.043655e+09
## 15085   1.231041e+09
## 15086   1.518797e+09
## 15087   1.644326e+09
## 15088   2.156667e+09
## 15089   1.352000e+09
## 15090   2.631769e+09
## 15091             NA
## 15092             NA
## 15093             NA
## 15094             NA
## 15095             NA
## 15096             NA
## 15097             NA
## 15098             NA
## 15099             NA
## 15100             NA
## 15101             NA
## 15102             NA
## 15103             NA
## 15104             NA
## 15105             NA
## 15106             NA
## 15107             NA
## 15108             NA
## 15109             NA
## 15110             NA
## 15111             NA
## 15112             NA
## 15113             NA
## 15114             NA
## 15115             NA
## 15116             NA
## 15117             NA
## 15118             NA
## 15119             NA
## 15120             NA
## 15121             NA
## 15122   6.784105e+10
## 15123   6.240971e+10
## 15124   6.113687e+10
## 15125   5.700369e+10
## 15126   5.332065e+10
## 15127   4.977400e+10
## 15128   4.737860e+10
## 15129   4.996483e+10
## 15130   4.568053e+10
## 15131   3.965052e+10
## 15132   3.465714e+10
## 15133   3.201425e+10
## 15134   2.908183e+10
## 15135   2.796153e+10
## 15136   2.184353e+10
## 15137   1.864959e+10
## 15138   1.839905e+10
## 15139   1.667595e+10
## 15140   1.522426e+10
## 15141   1.414204e+10
## 15142   1.358164e+10
## 15143   1.337598e+10
## 15144   1.271121e+10
## 15145   1.227045e+10
## 15146   7.683852e+09
## 15147   6.496195e+09
## 15148   5.255221e+09
## 15149   4.510847e+09
## 15150   4.257702e+09
## 15151   4.601413e+09
## 15152   4.956588e+09
## 15153   4.258743e+09
## 15154   4.420168e+09
## 15155   5.100406e+09
## 15156             NA
## 15157             NA
## 15158             NA
## 15159             NA
## 15160             NA
## 15161             NA
## 15162             NA
## 15163             NA
## 15164             NA
## 15165             NA
## 15166             NA
## 15167             NA
## 15168             NA
## 15169             NA
## 15170             NA
## 15171             NA
## 15172             NA
## 15173             NA
## 15174             NA
## 15175             NA
## 15176             NA
## 15177             NA
## 15178             NA
## 15179             NA
## 15180             NA
## 15181             NA
## 15182             NA
## 15183             NA
## 15184             NA
## 15185   5.059470e+11
## 15186   4.996818e+11
## 15187   5.440811e+11
## 15188   5.067546e+11
## 15189   4.563570e+11
## 15190   4.133662e+11
## 15191   4.012964e+11
## 15192   4.073395e+11
## 15193   4.203332e+11
## 15194   3.975582e+11
## 15195   3.708191e+11
## 15196   3.411048e+11
## 15197   2.817104e+11
## 15198   2.913830e+11
## 15199   2.629425e+11
## 15200   2.217582e+11
## 15201   1.893185e+11
## 15202   1.728957e+11
## 15203   1.522807e+11
## 15204   1.343009e+11
## 15205   1.202965e+11
## 15206   1.263922e+11
## 15207   1.266691e+11
## 15208   1.136756e+11
## 15209   1.501806e+11
## 15210   1.830351e+11
## 15211   1.692788e+11
## 15212   1.466835e+11
## 15213   1.288893e+11
## 15214   1.114529e+11
## 15215   9.823470e+10
## 15216   8.534306e+10
## 15217   7.225088e+10
## 15218   6.166720e+10
## 15219   5.053544e+10
## 15220   4.309675e+10
## 15221   3.890069e+10
## 15222   4.179759e+10
## 15223   4.004283e+10
## 15224   3.658980e+10
## 15225   3.484611e+10
## 15226   3.235344e+10
## 15227   2.737170e+10
## 15228   2.400657e+10
## 15229   1.977932e+10
## 15230   1.698521e+10
## 15231   1.488275e+10
## 15232   1.370300e+10
## 15233   1.083859e+10
## 15234   8.177885e+09
## 15235   7.375000e+09
## 15236   7.086538e+09
## 15237   6.695337e+09
## 15238   6.081009e+09
## 15239   5.638461e+09
## 15240   5.279231e+09
## 15241   4.388938e+09
## 15242   3.889130e+09
## 15243   3.540403e+09
## 15244   3.308913e+09
## 15245   3.034044e+09
## 15246   2.760747e+09
## 15247             NA
## 15248   3.621222e+09
## 15249   2.158393e+09
## 15250   2.028552e+09
## 15251   1.563888e+09
## 15252   1.595724e+09
## 15253   1.650619e+09
## 15254   1.594448e+09
## 15255   1.447310e+09
## 15256   1.395520e+09
## 15257   1.160390e+09
## 15258   1.042411e+09
## 15259   8.818278e+08
## 15260   7.268824e+08
## 15261   6.484927e+08
## 15262   5.427954e+08
## 15263   4.538051e+08
## 15264   4.622836e+08
## 15265   4.407646e+08
## 15266   4.904391e+08
## 15267   4.695067e+08
## 15268   4.774435e+08
## 15269   3.670879e+08
## 15270             NA
## 15271             NA
## 15272             NA
## 15273             NA
## 15274             NA
## 15275             NA
## 15276             NA
## 15277             NA
## 15278             NA
## 15279             NA
## 15280             NA
## 15281             NA
## 15282             NA
## 15283             NA
## 15284             NA
## 15285             NA
## 15286             NA
## 15287             NA
## 15288             NA
## 15289             NA
## 15290             NA
## 15291             NA
## 15292             NA
## 15293             NA
## 15294             NA
## 15295             NA
## 15296             NA
## 15297             NA
## 15298             NA
## 15299             NA
## 15300             NA
## 15301             NA
## 15302             NA
## 15303             NA
## 15304             NA
## 15305             NA
## 15306             NA
## 15307             NA
## 15308             NA
## 15309             NA
## 15310             NA
## 15311   8.413201e+09
## 15312   7.574637e+09
## 15313   7.220395e+09
## 15314   7.112201e+09
## 15315   6.395473e+09
## 15316   6.031632e+09
## 15317   4.180866e+09
## 15318   4.574987e+09
## 15319   4.321656e+09
## 15320   3.873308e+09
## 15321   3.872459e+09
## 15322   3.429461e+09
## 15323   3.379259e+09
## 15324   3.323677e+09
## 15325   2.662612e+09
## 15326   2.351585e+09
## 15327   2.281483e+09
## 15328   2.259993e+09
## 15329   2.115836e+09
## 15330   1.706698e+09
## 15331   1.482438e+09
## 15332   1.491891e+09
## 15333   1.576673e+09
## 15334   1.587346e+09
## 15335   1.498951e+09
## 15336   1.465448e+09
## 15337   1.309383e+09
## 15338   9.826243e+08
## 15339   1.233497e+09
## 15340   1.692959e+09
## 15341   1.602300e+09
## 15342   1.628428e+09
## 15343   1.352950e+09
## 15344   1.378847e+09
## 15345   1.249099e+09
## 15346   1.060912e+09
## 15347   7.623597e+08
## 15348   7.181490e+08
## 15349   7.657466e+08
## 15350   8.216519e+08
## 15351   9.623470e+08
## 15352   1.136409e+09
## 15353   8.917759e+08
## 15354   8.242638e+08
## 15355   7.774350e+08
## 15356   6.193751e+08
## 15357   6.173217e+08
## 15358   5.604377e+08
## 15359   4.064799e+08
## 15360   3.356776e+08
## 15361   2.865375e+08
## 15362   2.539766e+08
## 15363   2.677324e+08
## 15364   2.419569e+08
## 15365   2.317065e+08
## 15366   2.161363e+08
## 15367   1.873003e+08
## 15368   1.661041e+08
## 15369   1.432558e+08
## 15370   1.322374e+08
## 15371   1.263965e+08
## 15372   1.211281e+08
## 15373             NA
## 15374   4.692313e+08
## 15375   4.848067e+08
## 15376   5.120577e+08
## 15377   4.889033e+08
## 15378   4.603791e+08
## 15379   4.205402e+08
## 15380   4.370062e+08
## 15381   4.398788e+08
## 15382   4.506436e+08
## 15383   4.707141e+08
## 15384   4.145234e+08
## 15385   3.668400e+08
## 15386   3.123774e+08
## 15387   3.444286e+08
## 15388   2.985140e+08
## 15389   2.922321e+08
## 15390   2.617976e+08
## 15391   2.306580e+08
## 15392   2.022470e+08
## 15393   1.827637e+08
## 15394   1.811170e+08
## 15395   2.048496e+08
## 15396   1.992146e+08
## 15397   1.915049e+08
## 15398   2.149915e+08
## 15399   2.221006e+08
## 15400   2.088717e+08
## 15401   1.959910e+08
## 15402   1.384899e+08
## 15403   1.370663e+08
## 15404   1.322011e+08
## 15405   1.135638e+08
## 15406   1.063449e+08
## 15407   1.066573e+08
## 15408   8.166713e+07
## 15409   6.819586e+07
## 15410   6.005866e+07
## 15411   6.424835e+07
## 15412   6.086396e+07
## 15413   6.206816e+07
## 15414   6.224201e+07
## 15415   5.326008e+07
## 15416   4.466700e+07
## 15417   4.156747e+07
## 15418   3.413939e+07
## 15419   3.003642e+07
## 15420   3.250674e+07
## 15421             NA
## 15422             NA
## 15423             NA
## 15424             NA
## 15425             NA
## 15426             NA
## 15427             NA
## 15428             NA
## 15429             NA
## 15430             NA
## 15431             NA
## 15432             NA
## 15433             NA
## 15434             NA
## 15435             NA
## 15436             NA
## 15437   2.446020e+10
## 15438   2.105943e+10
## 15439   2.384956e+10
## 15440   2.432236e+10
## 15441   2.379769e+10
## 15442   2.349622e+10
## 15443   2.685197e+10
## 15444   2.948901e+10
## 15445   2.855745e+10
## 15446   2.712171e+10
## 15447   2.543301e+10
## 15448   2.215795e+10
## 15449   1.917217e+10
## 15450   2.787159e+10
## 15451   2.164162e+10
## 15452   1.836936e+10
## 15453   1.598228e+10
## 15454   1.328028e+10
## 15455   1.130546e+10
## 15456   9.008274e+09
## 15457   8.824873e+09
## 15458   8.154338e+09
## 15459   6.808983e+09
## 15460   6.043694e+09
## 15461   5.737751e+09
## 15462   5.759538e+09
## 15463   5.329214e+09
## 15464   4.947206e+09
## 15465   4.669489e+09
## 15466   5.439553e+09
## 15467   5.307906e+09
## 15468   5.068000e+09
## 15469   4.323059e+09
## 15470   4.496852e+09
## 15471   4.797778e+09
## 15472   4.794444e+09
## 15473   7.375918e+09
## 15474   7.757083e+09
## 15475   7.763750e+09
## 15476   8.140417e+09
## 15477   6.992083e+09
## 15478   6.235833e+09
## 15479   4.602417e+09
## 15480   3.562333e+09
## 15481   3.138667e+09
## 15482   2.500411e+09
## 15483   2.442668e+09
## 15484   2.042032e+09
## 15485   1.308799e+09
## 15486   1.083381e+09
## 15487   8.967543e+08
## 15488   8.218500e+08
## 15489   7.792000e+08
## 15490   7.589000e+08
## 15491   7.619815e+08
## 15492   7.237356e+08
## 15493   7.365689e+08
## 15494   7.118934e+08
## 15495   6.782354e+08
## 15496   6.193192e+08
## 15497   5.849612e+08
## 15498   5.356701e+08
## 15499             NA
## 15500   4.668674e+10
## 15501   4.253783e+10
## 15502   4.190611e+10
## 15503   4.268597e+10
## 15504   4.216397e+10
## 15505   4.436075e+10
## 15506   4.578008e+10
## 15507   5.027107e+10
## 15508   4.868419e+10
## 15509   4.731116e+10
## 15510   4.812274e+10
## 15511   4.620609e+10
## 15512   4.345494e+10
## 15513   4.486097e+10
## 15514   3.891408e+10
## 15515   3.437731e+10
## 15516   3.227301e+10
## 15517   3.118306e+10
## 15518   2.745301e+10
## 15519   2.314215e+10
## 15520   2.206603e+10
## 15521   2.147326e+10
## 15522   2.294369e+10
## 15523   2.180337e+10
## 15524   2.074636e+10
## 15525   1.958732e+10
## 15526   1.803088e+10
## 15527   1.563246e+10
## 15528   1.460895e+10
## 15529   1.549729e+10
## 15530   1.307478e+10
## 15531   1.229057e+10
## 15532   1.010208e+10
## 15533   1.009629e+10
## 15534   9.696271e+09
## 15535   9.018136e+09
## 15536   8.410186e+09
## 15537   8.254892e+09
## 15538   8.350177e+09
## 15539   8.133401e+09
## 15540   8.428514e+09
## 15541   8.744134e+09
## 15542   7.188192e+09
## 15543   5.968044e+09
## 15544   5.109324e+09
## 15545   4.507929e+09
## 15546   4.328610e+09
## 15547   3.545934e+09
## 15548   2.730787e+09
## 15549   2.237476e+09
## 15550   1.685217e+09
## 15551   1.439238e+09
## 15552   1.289905e+09
## 15553   1.214667e+09
## 15554   1.085714e+09
## 15555   1.040952e+09
## 15556   9.910476e+08
## 15557             NA
## 15558             NA
## 15559             NA
## 15560             NA
## 15561             NA
## 15562             NA
## 15563   8.190352e+11
## 15564   7.202894e+11
## 15565   7.599374e+11
## 15566   7.784719e+11
## 15567   8.589963e+11
## 15568   8.696930e+11
## 15569   8.643167e+11
## 15570   9.389526e+11
## 15571   9.577830e+11
## 15572   8.805564e+11
## 15573   8.387628e+11
## 15574   7.769926e+11
## 15575   6.492726e+11
## 15576   7.704622e+11
## 15577   6.813373e+11
## 15578   5.570578e+11
## 15579   5.063083e+11
## 15580   4.088760e+11
## 15581   3.145924e+11
## 15582   2.402532e+11
## 15583   2.017511e+11
## 15584   2.743030e+11
## 15585   2.563855e+11
## 15586   2.759674e+11
## 15587   1.898346e+11
## 15588   1.814756e+11
## 15589   1.694859e+11
## 15590   1.306902e+11
## 15591   1.801697e+11
## 15592   1.584591e+11
## 15593   1.500278e+11
## 15594   1.506763e+11
## 15595   1.071433e+11
## 15596   9.085281e+10
## 15597   8.717279e+10
## 15598   7.572801e+10
## 15599   6.723495e+10
## 15600   5.998991e+10
## 15601   6.167828e+10
## 15602   6.454633e+10
## 15603   7.104002e+10
## 15604   6.882368e+10
## 15605   8.932797e+10
## 15606   6.509877e+10
## 15607   5.868333e+10
## 15608   5.113043e+10
## 15609   4.476389e+10
## 15610   3.566906e+10
## 15611   2.563380e+10
## 15612   2.035915e+10
## 15613   1.627517e+10
## 15614   1.708696e+10
## 15615   1.946667e+10
## 15616   1.750000e+10
## 15617   1.564444e+10
## 15618   1.410000e+10
## 15619   1.196667e+10
## 15620   1.117778e+10
## 15621   1.035556e+10
## 15622   8.922222e+09
## 15623   7.988889e+09
## 15624   1.398357e+10
## 15625             NA
## 15626             NA
## 15627             NA
## 15628   4.523143e+10
## 15629   4.076543e+10
## 15630   3.792629e+10
## 15631   3.616943e+10
## 15632   3.579971e+10
## 15633   4.352421e+10
## 15634   3.919754e+10
## 15635   3.516421e+10
## 15636   2.923333e+10
## 15637   2.258316e+10
## 15638   2.021439e+10
## 15639   1.927152e+10
## 15640   1.266417e+10
## 15641   1.027667e+10
## 15642   8.103902e+09
## 15643   6.838351e+09
## 15644   5.977561e+09
## 15645   4.461978e+09
## 15646   3.534804e+09
## 15647   2.904663e+09
## 15648   2.450564e+09
## 15649   2.605688e+09
## 15650   2.450350e+09
## 15651   2.378760e+09
## 15652   2.482228e+09
## 15653   2.561119e+09
## 15654   3.179226e+09
## 15655   3.200540e+09
## 15656   3.208099e+09
## 15657   3.188098e+09
## 15658   3.007519e+09
## 15659   3.010033e+09
## 15660   2.336449e+09
## 15661             NA
## 15662             NA
## 15663             NA
## 15664             NA
## 15665             NA
## 15666             NA
## 15667             NA
## 15668             NA
## 15669             NA
## 15670             NA
## 15671             NA
## 15672             NA
## 15673             NA
## 15674             NA
## 15675             NA
## 15676             NA
## 15677             NA
## 15678             NA
## 15679             NA
## 15680             NA
## 15681             NA
## 15682             NA
## 15683             NA
## 15684             NA
## 15685             NA
## 15686             NA
## 15687             NA
## 15688             NA
## 15689   9.432698e+08
## 15690   9.245830e+08
## 15691   1.197415e+09
## 15692   1.113178e+09
## 15693   1.022365e+09
## 15694   1.032452e+09
## 15695   9.420700e+08
## 15696   8.410700e+08
## 15697   7.542380e+08
## 15698   7.271610e+08
## 15699   7.287896e+08
## 15700   6.867878e+08
## 15701   7.031758e+08
## 15702   8.626836e+08
## 15703   7.734897e+08
## 15704   7.218915e+08
## 15705   5.786458e+08
## 15706   4.855988e+08
## 15707   4.097536e+08
## 15708   3.667079e+08
## 15709   3.587448e+08
## 15710             NA
## 15711             NA
## 15712             NA
## 15713             NA
## 15714             NA
## 15715             NA
## 15716             NA
## 15717             NA
## 15718             NA
## 15719             NA
## 15720             NA
## 15721             NA
## 15722             NA
## 15723             NA
## 15724             NA
## 15725             NA
## 15726             NA
## 15727             NA
## 15728             NA
## 15729             NA
## 15730             NA
## 15731             NA
## 15732             NA
## 15733             NA
## 15734             NA
## 15735             NA
## 15736             NA
## 15737             NA
## 15738             NA
## 15739             NA
## 15740             NA
## 15741             NA
## 15742             NA
## 15743             NA
## 15744             NA
## 15745             NA
## 15746             NA
## 15747             NA
## 15748             NA
## 15749             NA
## 15750             NA
## 15751             NA
## 15752   6.310096e+07
## 15753   5.505471e+07
## 15754   5.422315e+07
## 15755   4.781829e+07
## 15756   4.521766e+07
## 15757   4.162950e+07
## 15758   3.681166e+07
## 15759   3.875969e+07
## 15760   3.861749e+07
## 15761   3.934562e+07
## 15762   3.919546e+07
## 15763   3.210420e+07
## 15764   2.807674e+07
## 15765   3.187385e+07
## 15766   2.844950e+07
## 15767   2.409639e+07
## 15768   2.290951e+07
## 15769   2.279747e+07
## 15770   1.945651e+07
## 15771   1.684233e+07
## 15772   1.396504e+07
## 15773   1.507421e+07
## 15774   1.368714e+07
## 15775   1.275763e+07
## 15776   1.270091e+07
## 15777   1.233485e+07
## 15778   1.102595e+07
## 15779   1.088683e+07
## 15780   9.630763e+06
## 15781   9.742949e+06
## 15782   9.365166e+06
## 15783   8.824448e+06
## 15784             NA
## 15785             NA
## 15786             NA
## 15787             NA
## 15788             NA
## 15789             NA
## 15790             NA
## 15791             NA
## 15792             NA
## 15793             NA
## 15794             NA
## 15795             NA
## 15796             NA
## 15797             NA
## 15798             NA
## 15799             NA
## 15800             NA
## 15801             NA
## 15802             NA
## 15803             NA
## 15804             NA
## 15805             NA
## 15806             NA
## 15807             NA
## 15808             NA
## 15809             NA
## 15810             NA
## 15811             NA
## 15812             NA
## 15813             NA
## 15814             NA
## 15815   4.052979e+10
## 15816   3.760037e+10
## 15817   3.535306e+10
## 15818   3.292703e+10
## 15819   3.074447e+10
## 15820   2.920399e+10
## 15821   3.238718e+10
## 15822   3.261240e+10
## 15823   2.891579e+10
## 15824   2.730592e+10
## 15825   2.787173e+10
## 15826   2.667344e+10
## 15827   2.512781e+10
## 15828   1.444040e+10
## 15829   1.190256e+10
## 15830   9.977648e+09
## 15831   9.239222e+09
## 15832   7.939487e+09
## 15833   6.606884e+09
## 15834   6.178564e+09
## 15835   5.840504e+09
## 15836   6.193247e+09
## 15837   5.998563e+09
## 15838   6.584816e+09
## 15839   6.269333e+09
## 15840   6.044585e+09
## 15841   5.755819e+09
## 15842   3.990430e+09
## 15843   3.220439e+09
## 15844   2.857458e+09
## 15845   3.321729e+09
## 15846   4.304399e+09
## 15847   5.276481e+09
## 15848   6.508932e+09
## 15849   6.269512e+09
## 15850   3.923232e+09
## 15851   3.519666e+09
## 15852   3.615647e+09
## 15853   2.240333e+09
## 15854   2.177500e+09
## 15855   1.337300e+09
## 15856   1.244610e+09
## 15857   2.139025e+09
## 15858   2.420261e+09
## 15859   2.936471e+09
## 15860   2.447300e+09
## 15861   2.359556e+09
## 15862   2.100143e+09
## 15863   1.702521e+09
## 15864   1.491597e+09
## 15865   1.417787e+09
## 15866   1.260084e+09
## 15867   1.169048e+09
## 15868   1.037815e+09
## 15869   9.676471e+08
## 15870   9.257703e+08
## 15871   8.848739e+08
## 15872   5.890566e+08
## 15873   5.161478e+08
## 15874   4.490126e+08
## 15875   4.415241e+08
## 15876   4.230084e+08
## 15877             NA
## 15878   2.000855e+11
## 15879   1.566179e+11
## 15880   1.538830e+11
## 15881   1.308910e+11
## 15882   1.120905e+11
## 15883   9.335599e+10
## 15884   9.103096e+10
## 15885   1.335034e+11
## 15886   1.904988e+11
## 15887   1.825924e+11
## 15888   1.693330e+11
## 15889   1.412099e+11
## 15890   1.215528e+11
## 15891   1.881111e+11
## 15892   1.487339e+11
## 15893   1.118848e+11
## 15894   8.923937e+10
## 15895   6.722015e+10
## 15896   5.201024e+10
## 15897   4.395637e+10
## 15898   3.930958e+10
## 15899   3.237528e+10
## 15900   3.158096e+10
## 15901   4.188324e+10
## 15902   5.015040e+10
## 15903   4.455808e+10
## 15904   4.821475e+10
## 15905   5.254339e+10
## 15906   6.560752e+10
## 15907   7.394591e+10
## 15908   7.735073e+10
## 15909   8.139356e+10
## 15910   8.270916e+10
## 15911   7.470352e+10
## 15912   6.408769e+10
## 15913             NA
## 15914             NA
## 15915             NA
## 15916             NA
## 15917             NA
## 15918             NA
## 15919             NA
## 15920             NA
## 15921             NA
## 15922             NA
## 15923             NA
## 15924             NA
## 15925             NA
## 15926             NA
## 15927             NA
## 15928             NA
## 15929             NA
## 15930             NA
## 15931             NA
## 15932             NA
## 15933             NA
## 15934             NA
## 15935             NA
## 15936             NA
## 15937             NA
## 15938             NA
## 15939             NA
## 15940             NA
## 15941   4.150216e+11
## 15942   3.494730e+11
## 15943   4.179897e+11
## 15944   4.270494e+11
## 15945   3.905168e+11
## 15946   3.692553e+11
## 15947   3.702755e+11
## 15948   4.141054e+11
## 15949   4.002185e+11
## 15950   3.846101e+11
## 15951   3.506661e+11
## 15952   2.897875e+11
## 15953   2.535474e+11
## 15954   3.154746e+11
## 15955   2.579161e+11
## 15956   2.221165e+11
## 15957   1.806175e+11
## 15958   1.478244e+11
## 15959   1.243464e+11
## 15960   1.098162e+11
## 15961   1.033116e+11
## 15962   1.043374e+11
## 15963   8.444547e+10
## 15964   7.567434e+10
## 15965   7.883901e+10
## 15966   7.357123e+10
## 15967   6.574367e+10
## 15968   5.930509e+10
## 15969   5.562517e+10
## 15970   5.423917e+10
## 15971   5.155217e+10
## 15972   5.070144e+10
## 15973   4.146500e+10
## 15974   3.627567e+10
## 15975   3.638491e+10
## 15976   3.394361e+10
## 15977   4.060365e+10
## 15978   4.180795e+10
## 15979   4.280332e+10
## 15980   4.662272e+10
## 15981   4.933342e+10
## 15982   4.359875e+10
## 15983   3.122546e+10
## 15984   2.377583e+10
## 15985   2.487178e+10
## 15986   1.921302e+10
## 15987   1.472067e+10
## 15988             NA
## 15989             NA
## 15990             NA
## 15991             NA
## 15992             NA
## 15993             NA
## 15994             NA
## 15995             NA
## 15996             NA
## 15997             NA
## 15998             NA
## 15999             NA
## 16000             NA
## 16001             NA
## 16002             NA
## 16003             NA
## 16004   3.131378e+12
## 16005   2.704609e+12
## 16006   2.857058e+12
## 16007   2.878152e+12
## 16008   2.683399e+12
## 16009   2.699660e+12
## 16010   2.934858e+12
## 16011   3.065223e+12
## 16012   2.786315e+12
## 16013   2.706341e+12
## 16014   2.666403e+12
## 16015   2.491397e+12
## 16016   2.417638e+12
## 16017   2.931502e+12
## 16018   3.092821e+12
## 16019   2.709912e+12
## 16020   2.544805e+12
## 16021   2.422959e+12
## 16022   2.056612e+12
## 16023   1.785844e+12
## 16024   1.648658e+12
## 16025   1.666126e+12
## 16026   1.689290e+12
## 16027   1.655061e+12
## 16028   1.561807e+12
## 16029   1.421619e+12
## 16030   1.346184e+12
## 16031   1.140490e+12
## 16032   1.061389e+12
## 16033   1.179660e+12
## 16034   1.142797e+12
## 16035   1.093169e+12
## 16036   9.268848e+11
## 16037   9.101227e+11
## 16038   7.451626e+11
## 16039   6.014527e+11
## 16040   4.892852e+11
## 16041   4.614871e+11
## 16042   4.896180e+11
## 16043   5.150489e+11
## 16044   5.407657e+11
## 16045   5.649477e+11
## 16046   4.389941e+11
## 16047   3.358830e+11
## 16048   2.630665e+11
## 16049   2.326146e+11
## 16050   2.417566e+11
## 16051   2.061314e+11
## 16052   1.925380e+11
## 16053   1.699650e+11
## 16054   1.481139e+11
## 16055   1.306719e+11
## 16056   1.164647e+11
## 16057   1.077599e+11
## 16058   1.131169e+11
## 16059   1.085728e+11
## 16060   1.018248e+11
## 16061   9.440756e+10
## 16062   8.656196e+10
## 16063   8.124756e+10
## 16064   7.774197e+10
## 16065   7.323397e+10
## 16066             NA
## 16067   2.331508e+13
## 16068   2.106047e+13
## 16069   2.138098e+13
## 16070   2.053306e+13
## 16071   1.947734e+13
## 16072   1.869511e+13
## 16073   1.820602e+13
## 16074   1.755068e+13
## 16075   1.684319e+13
## 16076   1.625397e+13
## 16077   1.559973e+13
## 16078   1.504896e+13
## 16079   1.447806e+13
## 16080   1.476986e+13
## 16081   1.447423e+13
## 16082   1.381559e+13
## 16083   1.303920e+13
## 16084   1.221719e+13
## 16085   1.145644e+13
## 16086   1.092911e+13
## 16087   1.058193e+13
## 16088   1.025095e+13
## 16089   9.631174e+12
## 16090   9.062818e+12
## 16091   8.577554e+12
## 16092   8.073122e+12
## 16093   7.639749e+12
## 16094   7.287236e+12
## 16095   6.858559e+12
## 16096   6.520327e+12
## 16097   6.158129e+12
## 16098   5.963144e+12
## 16099   5.641580e+12
## 16100   5.236438e+12
## 16101   4.855215e+12
## 16102   4.579631e+12
## 16103   4.338979e+12
## 16104   4.037613e+12
## 16105   3.634038e+12
## 16106   3.343789e+12
## 16107   3.207041e+12
## 16108   2.857307e+12
## 16109   2.627333e+12
## 16110   2.351599e+12
## 16111   2.081826e+12
## 16112   1.873412e+12
## 16113   1.684904e+12
## 16114   1.545243e+12
## 16115   1.425376e+12
## 16116   1.279110e+12
## 16117   1.164850e+12
## 16118   1.073303e+12
## 16119   1.019900e+12
## 16120   9.425000e+11
## 16121   8.617000e+11
## 16122   8.150000e+11
## 16123   7.437000e+11
## 16124   6.858000e+11
## 16125   6.386000e+11
## 16126   6.051000e+11
## 16127   5.633000e+11
## 16128   5.433000e+11
## 16129             NA
## 16130   5.931948e+10
## 16131   5.356076e+10
## 16132   6.123115e+10
## 16133   6.451504e+10
## 16134   6.423397e+10
## 16135   5.723665e+10
## 16136   5.327430e+10
## 16137   5.723601e+10
## 16138   5.753123e+10
## 16139   5.126439e+10
## 16140   4.796244e+10
## 16141   4.028448e+10
## 16142   3.166091e+10
## 16143   3.036621e+10
## 16144   2.341057e+10
## 16145   1.957946e+10
## 16146   1.736286e+10
## 16147   1.368633e+10
## 16148   1.204563e+10
## 16149   1.360649e+10
## 16150   2.089879e+10
## 16151   2.282326e+10
## 16152   2.398395e+10
## 16153   2.538593e+10
## 16154   2.396982e+10
## 16155   2.051554e+10
## 16156   1.929766e+10
## 16157   1.747465e+10
## 16158   1.500211e+10
## 16159   1.287820e+10
## 16160   1.120597e+10
## 16161   9.298840e+09
## 16162   8.438951e+09
## 16163   8.213515e+09
## 16164   7.367494e+09
## 16165   5.880113e+09
## 16166   4.732018e+09
## 16167   4.850241e+09
## 16168   5.102281e+09
## 16169   9.178802e+09
## 16170   1.104834e+10
## 16171   1.016302e+10
## 16172   7.181185e+09
## 16173   4.910257e+09
## 16174   4.114667e+09
## 16175   3.667161e+09
## 16176   3.538283e+09
## 16177   4.090210e+09
## 16178   3.964296e+09
## 16179   2.189418e+09
## 16180   2.807258e+09
## 16181   2.137097e+09
## 16182   2.004435e+09
## 16183   1.593675e+09
## 16184   1.597721e+09
## 16185   1.809184e+09
## 16186   1.890769e+09
## 16187   1.975702e+09
## 16188   1.539681e+09
## 16189   1.710004e+09
## 16190   1.547389e+09
## 16191   1.242289e+09
## 16192             NA
## 16193   6.923890e+10
## 16194   5.989431e+10
## 16195   5.990767e+10
## 16196   5.263314e+10
## 16197   6.208132e+10
## 16198   8.613829e+10
## 16199   8.619627e+10
## 16200   8.084538e+10
## 16201   7.318004e+10
## 16202   6.751735e+10
## 16203   6.017891e+10
## 16204   4.976568e+10
## 16205   3.368922e+10
## 16206   2.954944e+10
## 16207   2.231139e+10
## 16208   1.733083e+10
## 16209   1.430751e+10
## 16210   1.203002e+10
## 16211   1.013445e+10
## 16212   9.687789e+09
## 16213   1.140142e+10
## 16214   1.376051e+10
## 16215   1.707847e+10
## 16216   1.498897e+10
## 16217   1.474460e+10
## 16218   1.394889e+10
## 16219   1.335047e+10
## 16220   1.289916e+10
## 16221   1.309901e+10
## 16222   1.294130e+10
## 16223   1.367762e+10
## 16224   1.336061e+10
## 16225             NA
## 16226             NA
## 16227             NA
## 16228             NA
## 16229             NA
## 16230             NA
## 16231             NA
## 16232             NA
## 16233             NA
## 16234             NA
## 16235             NA
## 16236             NA
## 16237             NA
## 16238             NA
## 16239             NA
## 16240             NA
## 16241             NA
## 16242             NA
## 16243             NA
## 16244             NA
## 16245             NA
## 16246             NA
## 16247             NA
## 16248             NA
## 16249             NA
## 16250             NA
## 16251             NA
## 16252             NA
## 16253             NA
## 16254             NA
## 16255             NA
## 16256   9.563327e+08
## 16257   8.968799e+08
## 16258   9.365263e+08
## 16259   9.147370e+08
## 16260   8.800621e+08
## 16261   7.808896e+08
## 16262   7.308706e+08
## 16263   7.723157e+08
## 16264   7.583045e+08
## 16265   7.478397e+08
## 16266   7.701533e+08
## 16267   6.707132e+08
## 16268   5.926225e+08
## 16269   5.907482e+08
## 16270   5.163929e+08
## 16271   4.393587e+08
## 16272   3.949626e+08
## 16273   3.649969e+08
## 16274   3.144713e+08
## 16275   2.625966e+08
## 16276   2.579269e+08
## 16277   2.720147e+08
## 16278   2.680070e+08
## 16279   2.622934e+08
## 16280   2.727712e+08
## 16281   2.613700e+08
## 16282   2.493333e+08
## 16283   2.337013e+08
## 16284   2.004919e+08
## 16285   2.090888e+08
## 16286   2.013342e+08
## 16287   1.688792e+08
## 16288   1.540132e+08
## 16289   1.583514e+08
## 16290   1.394642e+08
## 16291   1.264989e+08
## 16292   1.318564e+08
## 16293   1.444825e+08
## 16294   1.173896e+08
## 16295   1.145019e+08
## 16296   1.137818e+08
## 16297   1.211855e+08
## 16298   1.192588e+08
## 16299             NA
## 16300             NA
## 16301             NA
## 16302             NA
## 16303             NA
## 16304             NA
## 16305             NA
## 16306             NA
## 16307             NA
## 16308             NA
## 16309             NA
## 16310             NA
## 16311             NA
## 16312             NA
## 16313             NA
## 16314             NA
## 16315             NA
## 16316             NA
## 16317             NA
## 16318             NA
## 16319             NA
## 16320             NA
## 16321             NA
## 16322             NA
## 16323             NA
## 16324             NA
## 16325             NA
## 16326   4.823593e+11
## 16327   3.710054e+11
## 16328   3.812862e+11
## 16329   3.164822e+11
## 16330   3.931924e+11
## 16331   3.297876e+11
## 16332   3.159534e+11
## 16333   2.303640e+11
## 16334   1.834775e+11
## 16335   1.455100e+11
## 16336   1.124534e+11
## 16337   8.362063e+10
## 16338   9.289359e+10
## 16339   1.229040e+11
## 16340   1.171407e+11
## 16341   9.797689e+10
## 16342   9.133120e+10
## 16343   8.584353e+10
## 16344   7.054321e+10
## 16345   7.740773e+10
## 16346   5.841867e+10
## 16347   6.006501e+10
## 16348   6.040180e+10
## 16349   5.347697e+10
## 16350   4.859832e+10
## 16351   4.352625e+10
## 16352   6.022641e+10
## 16353   4.802903e+10
## 16354   6.039160e+10
## 16355   6.196547e+10
## 16356   6.001029e+10
## 16357   6.755628e+10
## 16358   6.773674e+10
## 16359   6.632744e+10
## 16360   5.911651e+10
## 16361   4.831093e+10
## 16362   3.931628e+10
## 16363   3.621070e+10
## 16364   3.141953e+10
## 16365   2.746465e+10
## 16366   2.610093e+10
## 16367   1.703558e+10
## 16368   1.397773e+10
## 16369   1.298659e+10
## 16370   1.156111e+10
## 16371   1.028511e+10
## 16372   1.003444e+10
## 16373   9.250000e+09
## 16374   8.781333e+09
## 16375   8.427778e+09
## 16376   8.099318e+09
## 16377   9.753333e+09
## 16378   8.946970e+09
## 16379   8.189091e+09
## 16380   7.779091e+09
## 16381             NA
## 16382   3.661376e+11
## 16383   3.466158e+11
## 16384   3.343653e+11
## 16385   3.101065e+11
## 16386   2.813536e+11
## 16387   2.570960e+11
## 16388   2.392583e+11
## 16389   2.334515e+11
## 16390   2.137088e+11
## 16391   1.955906e+11
## 16392   1.725950e+11
## 16393   1.472012e+11
## 16394   1.060147e+11
## 16395   9.913030e+10
## 16396   7.741443e+10
## 16397   6.637166e+10
## 16398   5.763326e+10
## 16399   4.542785e+10
## 16400   3.955251e+10
## 16401   3.506411e+10
## 16402   3.268520e+10
## 16403   3.117252e+10
## 16404   2.868366e+10
## 16405   2.720960e+10
## 16406   2.684370e+10
## 16407   2.465747e+10
## 16408   2.073616e+10
## 16409   1.628643e+10
## 16410   1.318095e+10
## 16411   9.866990e+09
## 16412   9.613370e+09
## 16413   6.471741e+09
## 16414   6.293305e+09
## 16415   2.542381e+10
## 16416   3.665811e+10
## 16417   2.633662e+10
## 16418   1.409469e+10
## 16419             NA
## 16420             NA
## 16421             NA
## 16422             NA
## 16423             NA
## 16424             NA
## 16425             NA
## 16426             NA
## 16427             NA
## 16428             NA
## 16429             NA
## 16430             NA
## 16431             NA
## 16432             NA
## 16433             NA
## 16434             NA
## 16435             NA
## 16436             NA
## 16437             NA
## 16438             NA
## 16439             NA
## 16440             NA
## 16441             NA
## 16442             NA
## 16443             NA
## 16444             NA
## 16445             NA
## 16446   4.204000e+09
## 16447   4.117000e+09
## 16448   3.922000e+09
## 16449   3.794000e+09
## 16450   3.798000e+09
## 16451   3.663000e+09
## 16452   3.565000e+09
## 16453   3.738000e+09
## 16454   4.089000e+09
## 16455   4.223000e+09
## 16456   4.324000e+09
## 16457   4.201000e+09
## 16458   4.244000e+09
## 16459   4.784000e+09
## 16460   4.484000e+09
## 16461   4.428000e+09
## 16462   3.797000e+09
## 16463   3.443000e+09
## 16464   3.262000e+09
## 16465             NA
## 16466             NA
## 16467             NA
## 16468             NA
## 16469             NA
## 16470             NA
## 16471             NA
## 16472             NA
## 16473             NA
## 16474             NA
## 16475             NA
## 16476             NA
## 16477             NA
## 16478             NA
## 16479             NA
## 16480             NA
## 16481             NA
## 16482             NA
## 16483             NA
## 16484             NA
## 16485             NA
## 16486             NA
## 16487             NA
## 16488             NA
## 16489             NA
## 16490             NA
## 16491             NA
## 16492             NA
## 16493             NA
## 16494             NA
## 16495             NA
## 16496             NA
## 16497             NA
## 16498             NA
## 16499             NA
## 16500             NA
## 16501             NA
## 16502             NA
## 16503             NA
## 16504             NA
## 16505             NA
## 16506             NA
## 16507             NA
## 16508   1.803680e+10
## 16509   1.553170e+10
## 16510   1.713350e+10
## 16511   1.627660e+10
## 16512   1.612800e+10
## 16513   1.540540e+10
## 16514   1.397240e+10
## 16515   1.398970e+10
## 16516   1.351550e+10
## 16517   1.220840e+10
## 16518   1.118610e+10
## 16519   9.681500e+09
## 16520   8.085700e+09
## 16521   7.310400e+09
## 16522   5.815700e+09
## 16523   5.348300e+09
## 16524   5.125700e+09
## 16525   4.603100e+09
## 16526   3.968000e+09
## 16527   3.555800e+09
## 16528   4.003700e+09
## 16529   4.313600e+09
## 16530   4.271200e+09
## 16531   4.067800e+09
## 16532   3.759800e+09
## 16533   3.409600e+09
## 16534   3.282800e+09
## 16535   2.843300e+09
## 16536             NA
## 16537             NA
## 16538             NA
## 16539             NA
## 16540             NA
## 16541             NA
## 16542             NA
## 16543             NA
## 16544             NA
## 16545             NA
## 16546             NA
## 16547             NA
## 16548             NA
## 16549             NA
## 16550             NA
## 16551             NA
## 16552             NA
## 16553             NA
## 16554             NA
## 16555             NA
## 16556             NA
## 16557             NA
## 16558             NA
## 16559             NA
## 16560             NA
## 16561             NA
## 16562             NA
## 16563             NA
## 16564             NA
## 16565             NA
## 16566             NA
## 16567             NA
## 16568             NA
## 16569             NA
## 16570             NA
## 16571             NA
## 16572             NA
## 16573             NA
## 16574   2.160616e+10
## 16575   2.684223e+10
## 16576   3.131783e+10
## 16577   4.244450e+10
## 16578   4.322859e+10
## 16579   4.041523e+10
## 16580   3.540132e+10
## 16581   3.272642e+10
## 16582   3.090675e+10
## 16583   2.513027e+10
## 16584   2.691085e+10
## 16585   2.165053e+10
## 16586   1.906198e+10
## 16587   1.674634e+10
## 16588   1.387279e+10
## 16589   1.177797e+10
## 16590   1.069463e+10
## 16591   9.861560e+09
## 16592   9.652436e+09
## 16593   7.641103e+09
## 16594   6.325142e+09
## 16595   6.838557e+09
## 16596   5.785685e+09
## 16597   4.258789e+09
## 16598   4.167356e+09
## 16599   5.368271e+09
## 16600   6.463650e+09
## 16601   5.930370e+09
## 16602   5.647119e+09
## 16603             NA
## 16604             NA
## 16605             NA
## 16606             NA
## 16607             NA
## 16608             NA
## 16609             NA
## 16610             NA
## 16611             NA
## 16612             NA
## 16613             NA
## 16614             NA
## 16615             NA
## 16616             NA
## 16617             NA
## 16618             NA
## 16619             NA
## 16620             NA
## 16621             NA
## 16622             NA
## 16623             NA
## 16624             NA
## 16625             NA
## 16626             NA
## 16627             NA
## 16628             NA
## 16629             NA
## 16630             NA
## 16631             NA
## 16632             NA
## 16633             NA
## 16634   2.214763e+10
## 16635   1.811063e+10
## 16636   2.330867e+10
## 16637   2.631159e+10
## 16638   2.587360e+10
## 16639   2.095841e+10
## 16640   2.125122e+10
## 16641   2.714102e+10
## 16642   2.803724e+10
## 16643   2.550306e+10
## 16644   2.345952e+10
## 16645   2.026556e+10
## 16646   1.532834e+10
## 16647   1.791086e+10
## 16648   1.405696e+10
## 16649   1.275686e+10
## 16650   8.331870e+09
## 16651   6.221078e+09
## 16652   4.901840e+09
## 16653   4.193846e+09
## 16654   4.094481e+09
## 16655   3.600683e+09
## 16656   3.404312e+09
## 16657   3.537683e+09
## 16658   4.303282e+09
## 16659   3.597221e+09
## 16660   3.807067e+09
## 16661   3.656648e+09
## 16662   3.273238e+09
## 16663   3.181922e+09
## 16664   3.378882e+09
## 16665   3.285217e+09
## 16666   3.998638e+09
## 16667   3.713614e+09
## 16668   2.269895e+09
## 16669   1.661949e+09
## 16670   2.281258e+09
## 16671   2.739444e+09
## 16672   3.216308e+09
## 16673   3.994778e+09
## 16674   3.872667e+09
## 16675   3.829500e+09
## 16676   3.325500e+09
## 16677   2.813375e+09
## 16678   2.483000e+09
## 16679   2.746714e+09
## 16680   2.618667e+09
## 16681   3.121833e+09
## 16682   2.268714e+09
## 16683   1.910714e+09
## 16684   1.687000e+09
## 16685   1.825286e+09
## 16686   1.965714e+09
## 16687   1.605857e+09
## 16688   1.368000e+09
## 16689   1.264286e+09
## 16690   1.082857e+09
## 16691   8.394286e+08
## 16692   7.187143e+08
## 16693   6.931429e+08
## 16694   6.962857e+08
## 16695   7.130000e+08
## 16696             NA
## 16697   2.837124e+10
## 16698   2.150970e+10
## 16699   2.183223e+10
## 16700   3.415607e+10
## 16701   1.758489e+10
## 16702   2.054868e+10
## 16703   1.996312e+10
## 16704   1.949552e+10
## 16705   1.909102e+10
## 16706   1.711485e+10
## 16707   1.410192e+10
## 16708   1.204166e+10
## 16709   9.665793e+09
## 16710   4.415703e+09
## 16711   5.291950e+09
## 16712   5.443896e+09
## 16713   5.755215e+09
## 16714   5.805598e+09
## 16715   5.727592e+09
## 16716   6.342116e+09
## 16717   6.777385e+09
## 16718   6.689958e+09
## 16719   6.858013e+09
## 16720   6.401968e+09
## 16721   8.529572e+09
## 16722   8.553147e+09
## 16723   7.111271e+09
## 16724   6.890675e+09
## 16725   6.563813e+09
## 16726   6.751472e+09
## 16727   8.641482e+09
## 16728   8.783817e+09
## 16729   8.286323e+09
## 16730   7.814784e+09
## 16731   6.741215e+09
## 16732   6.217524e+09
## 16733   5.637259e+09
## 16734   6.352126e+09
## 16735   7.764067e+09
## 16736   8.539701e+09
## 16737   8.011374e+09
## 16738   6.678868e+09
## 16739   5.177459e+09
## 16740   4.351600e+09
## 16741   4.364382e+09
## 16742   4.318372e+09
## 16743   4.371301e+09
## 16744   3.982161e+09
## 16745   3.309354e+09
## 16746   2.677729e+09
## 16747   2.178716e+09
## 16748   1.884206e+09
## 16749   1.747999e+09
## 16750   1.479600e+09
## 16751   1.397002e+09
## 16752   1.281750e+09
## 16753   1.311436e+09
## 16754   1.217138e+09
## 16755   1.159512e+09
## 16756   1.117602e+09
## 16757   1.096647e+09
## 16758   1.052990e+09

ダウンロード例 1-2

df_gdp2 <- WDI(country = "all", indicator = c(gdp = "NY.GDP.MKTP.CD"))
df_gdp2
##                                                    country iso2c iso3c year
## 1                              Africa Eastern and Southern    ZH   AFE 2022
## 2                              Africa Eastern and Southern    ZH   AFE 2021
## 3                              Africa Eastern and Southern    ZH   AFE 2020
## 4                              Africa Eastern and Southern    ZH   AFE 2019
## 5                              Africa Eastern and Southern    ZH   AFE 2018
## 6                              Africa Eastern and Southern    ZH   AFE 2017
## 7                              Africa Eastern and Southern    ZH   AFE 2016
## 8                              Africa Eastern and Southern    ZH   AFE 2015
## 9                              Africa Eastern and Southern    ZH   AFE 2014
## 10                             Africa Eastern and Southern    ZH   AFE 2013
## 11                             Africa Eastern and Southern    ZH   AFE 2012
## 12                             Africa Eastern and Southern    ZH   AFE 2011
## 13                             Africa Eastern and Southern    ZH   AFE 2010
## 14                             Africa Eastern and Southern    ZH   AFE 2009
## 15                             Africa Eastern and Southern    ZH   AFE 2008
## 16                             Africa Eastern and Southern    ZH   AFE 2007
## 17                             Africa Eastern and Southern    ZH   AFE 2006
## 18                             Africa Eastern and Southern    ZH   AFE 2005
## 19                             Africa Eastern and Southern    ZH   AFE 2004
## 20                             Africa Eastern and Southern    ZH   AFE 2003
## 21                             Africa Eastern and Southern    ZH   AFE 2002
## 22                             Africa Eastern and Southern    ZH   AFE 2001
## 23                             Africa Eastern and Southern    ZH   AFE 2000
## 24                             Africa Eastern and Southern    ZH   AFE 1999
## 25                             Africa Eastern and Southern    ZH   AFE 1998
## 26                             Africa Eastern and Southern    ZH   AFE 1997
## 27                             Africa Eastern and Southern    ZH   AFE 1996
## 28                             Africa Eastern and Southern    ZH   AFE 1995
## 29                             Africa Eastern and Southern    ZH   AFE 1994
## 30                             Africa Eastern and Southern    ZH   AFE 1993
## 31                             Africa Eastern and Southern    ZH   AFE 1992
## 32                             Africa Eastern and Southern    ZH   AFE 1991
## 33                             Africa Eastern and Southern    ZH   AFE 1990
## 34                             Africa Eastern and Southern    ZH   AFE 1989
## 35                             Africa Eastern and Southern    ZH   AFE 1988
## 36                             Africa Eastern and Southern    ZH   AFE 1987
## 37                             Africa Eastern and Southern    ZH   AFE 1986
## 38                             Africa Eastern and Southern    ZH   AFE 1985
## 39                             Africa Eastern and Southern    ZH   AFE 1984
## 40                             Africa Eastern and Southern    ZH   AFE 1983
## 41                             Africa Eastern and Southern    ZH   AFE 1982
## 42                             Africa Eastern and Southern    ZH   AFE 1981
## 43                             Africa Eastern and Southern    ZH   AFE 1980
## 44                             Africa Eastern and Southern    ZH   AFE 1979
## 45                             Africa Eastern and Southern    ZH   AFE 1978
## 46                             Africa Eastern and Southern    ZH   AFE 1977
## 47                             Africa Eastern and Southern    ZH   AFE 1976
## 48                             Africa Eastern and Southern    ZH   AFE 1975
## 49                             Africa Eastern and Southern    ZH   AFE 1974
## 50                             Africa Eastern and Southern    ZH   AFE 1973
## 51                             Africa Eastern and Southern    ZH   AFE 1972
## 52                             Africa Eastern and Southern    ZH   AFE 1971
## 53                             Africa Eastern and Southern    ZH   AFE 1970
## 54                             Africa Eastern and Southern    ZH   AFE 1969
## 55                             Africa Eastern and Southern    ZH   AFE 1968
## 56                             Africa Eastern and Southern    ZH   AFE 1967
## 57                             Africa Eastern and Southern    ZH   AFE 1966
## 58                             Africa Eastern and Southern    ZH   AFE 1965
## 59                             Africa Eastern and Southern    ZH   AFE 1964
## 60                             Africa Eastern and Southern    ZH   AFE 1963
## 61                             Africa Eastern and Southern    ZH   AFE 1962
## 62                             Africa Eastern and Southern    ZH   AFE 1961
## 63                             Africa Eastern and Southern    ZH   AFE 1960
## 64                              Africa Western and Central    ZI   AFW 2022
## 65                              Africa Western and Central    ZI   AFW 2021
## 66                              Africa Western and Central    ZI   AFW 2020
## 67                              Africa Western and Central    ZI   AFW 2019
## 68                              Africa Western and Central    ZI   AFW 2018
## 69                              Africa Western and Central    ZI   AFW 2017
## 70                              Africa Western and Central    ZI   AFW 2016
## 71                              Africa Western and Central    ZI   AFW 2015
## 72                              Africa Western and Central    ZI   AFW 2014
## 73                              Africa Western and Central    ZI   AFW 2013
## 74                              Africa Western and Central    ZI   AFW 2012
## 75                              Africa Western and Central    ZI   AFW 2011
## 76                              Africa Western and Central    ZI   AFW 2010
## 77                              Africa Western and Central    ZI   AFW 2009
## 78                              Africa Western and Central    ZI   AFW 2008
## 79                              Africa Western and Central    ZI   AFW 2007
## 80                              Africa Western and Central    ZI   AFW 2006
## 81                              Africa Western and Central    ZI   AFW 2005
## 82                              Africa Western and Central    ZI   AFW 2004
## 83                              Africa Western and Central    ZI   AFW 2003
## 84                              Africa Western and Central    ZI   AFW 2002
## 85                              Africa Western and Central    ZI   AFW 2001
## 86                              Africa Western and Central    ZI   AFW 2000
## 87                              Africa Western and Central    ZI   AFW 1999
## 88                              Africa Western and Central    ZI   AFW 1998
## 89                              Africa Western and Central    ZI   AFW 1997
## 90                              Africa Western and Central    ZI   AFW 1996
## 91                              Africa Western and Central    ZI   AFW 1995
## 92                              Africa Western and Central    ZI   AFW 1994
## 93                              Africa Western and Central    ZI   AFW 1993
## 94                              Africa Western and Central    ZI   AFW 1992
## 95                              Africa Western and Central    ZI   AFW 1991
## 96                              Africa Western and Central    ZI   AFW 1990
## 97                              Africa Western and Central    ZI   AFW 1989
## 98                              Africa Western and Central    ZI   AFW 1988
## 99                              Africa Western and Central    ZI   AFW 1987
## 100                             Africa Western and Central    ZI   AFW 1986
## 101                             Africa Western and Central    ZI   AFW 1985
## 102                             Africa Western and Central    ZI   AFW 1984
## 103                             Africa Western and Central    ZI   AFW 1983
## 104                             Africa Western and Central    ZI   AFW 1982
## 105                             Africa Western and Central    ZI   AFW 1981
## 106                             Africa Western and Central    ZI   AFW 1980
## 107                             Africa Western and Central    ZI   AFW 1979
## 108                             Africa Western and Central    ZI   AFW 1978
## 109                             Africa Western and Central    ZI   AFW 1977
## 110                             Africa Western and Central    ZI   AFW 1976
## 111                             Africa Western and Central    ZI   AFW 1975
## 112                             Africa Western and Central    ZI   AFW 1974
## 113                             Africa Western and Central    ZI   AFW 1973
## 114                             Africa Western and Central    ZI   AFW 1972
## 115                             Africa Western and Central    ZI   AFW 1971
## 116                             Africa Western and Central    ZI   AFW 1970
## 117                             Africa Western and Central    ZI   AFW 1969
## 118                             Africa Western and Central    ZI   AFW 1968
## 119                             Africa Western and Central    ZI   AFW 1967
## 120                             Africa Western and Central    ZI   AFW 1966
## 121                             Africa Western and Central    ZI   AFW 1965
## 122                             Africa Western and Central    ZI   AFW 1964
## 123                             Africa Western and Central    ZI   AFW 1963
## 124                             Africa Western and Central    ZI   AFW 1962
## 125                             Africa Western and Central    ZI   AFW 1961
## 126                             Africa Western and Central    ZI   AFW 1960
## 127                                             Arab World    1A   ARB 2022
## 128                                             Arab World    1A   ARB 2021
## 129                                             Arab World    1A   ARB 2020
## 130                                             Arab World    1A   ARB 2019
## 131                                             Arab World    1A   ARB 2018
## 132                                             Arab World    1A   ARB 2017
## 133                                             Arab World    1A   ARB 2016
## 134                                             Arab World    1A   ARB 2015
## 135                                             Arab World    1A   ARB 2014
## 136                                             Arab World    1A   ARB 2013
## 137                                             Arab World    1A   ARB 2012
## 138                                             Arab World    1A   ARB 2011
## 139                                             Arab World    1A   ARB 2010
## 140                                             Arab World    1A   ARB 2009
## 141                                             Arab World    1A   ARB 2008
## 142                                             Arab World    1A   ARB 2007
## 143                                             Arab World    1A   ARB 2006
## 144                                             Arab World    1A   ARB 2005
## 145                                             Arab World    1A   ARB 2004
## 146                                             Arab World    1A   ARB 2003
## 147                                             Arab World    1A   ARB 2002
## 148                                             Arab World    1A   ARB 2001
## 149                                             Arab World    1A   ARB 2000
## 150                                             Arab World    1A   ARB 1999
## 151                                             Arab World    1A   ARB 1998
## 152                                             Arab World    1A   ARB 1997
## 153                                             Arab World    1A   ARB 1996
## 154                                             Arab World    1A   ARB 1995
## 155                                             Arab World    1A   ARB 1994
## 156                                             Arab World    1A   ARB 1993
## 157                                             Arab World    1A   ARB 1992
## 158                                             Arab World    1A   ARB 1991
## 159                                             Arab World    1A   ARB 1990
## 160                                             Arab World    1A   ARB 1989
## 161                                             Arab World    1A   ARB 1988
## 162                                             Arab World    1A   ARB 1987
## 163                                             Arab World    1A   ARB 1986
## 164                                             Arab World    1A   ARB 1985
## 165                                             Arab World    1A   ARB 1984
## 166                                             Arab World    1A   ARB 1983
## 167                                             Arab World    1A   ARB 1982
## 168                                             Arab World    1A   ARB 1981
## 169                                             Arab World    1A   ARB 1980
## 170                                             Arab World    1A   ARB 1979
## 171                                             Arab World    1A   ARB 1978
## 172                                             Arab World    1A   ARB 1977
## 173                                             Arab World    1A   ARB 1976
## 174                                             Arab World    1A   ARB 1975
## 175                                             Arab World    1A   ARB 1974
## 176                                             Arab World    1A   ARB 1973
## 177                                             Arab World    1A   ARB 1972
## 178                                             Arab World    1A   ARB 1971
## 179                                             Arab World    1A   ARB 1970
## 180                                             Arab World    1A   ARB 1969
## 181                                             Arab World    1A   ARB 1968
## 182                                             Arab World    1A   ARB 1967
## 183                                             Arab World    1A   ARB 1966
## 184                                             Arab World    1A   ARB 1965
## 185                                             Arab World    1A   ARB 1964
## 186                                             Arab World    1A   ARB 1963
## 187                                             Arab World    1A   ARB 1962
## 188                                             Arab World    1A   ARB 1961
## 189                                             Arab World    1A   ARB 1960
## 190                                 Caribbean small states    S3   CSS 2022
## 191                                 Caribbean small states    S3   CSS 2021
## 192                                 Caribbean small states    S3   CSS 2020
## 193                                 Caribbean small states    S3   CSS 2019
## 194                                 Caribbean small states    S3   CSS 2018
## 195                                 Caribbean small states    S3   CSS 2017
## 196                                 Caribbean small states    S3   CSS 2016
## 197                                 Caribbean small states    S3   CSS 2015
## 198                                 Caribbean small states    S3   CSS 2014
## 199                                 Caribbean small states    S3   CSS 2013
## 200                                 Caribbean small states    S3   CSS 2012
## 201                                 Caribbean small states    S3   CSS 2011
## 202                                 Caribbean small states    S3   CSS 2010
## 203                                 Caribbean small states    S3   CSS 2009
## 204                                 Caribbean small states    S3   CSS 2008
## 205                                 Caribbean small states    S3   CSS 2007
## 206                                 Caribbean small states    S3   CSS 2006
## 207                                 Caribbean small states    S3   CSS 2005
## 208                                 Caribbean small states    S3   CSS 2004
## 209                                 Caribbean small states    S3   CSS 2003
## 210                                 Caribbean small states    S3   CSS 2002
## 211                                 Caribbean small states    S3   CSS 2001
## 212                                 Caribbean small states    S3   CSS 2000
## 213                                 Caribbean small states    S3   CSS 1999
## 214                                 Caribbean small states    S3   CSS 1998
## 215                                 Caribbean small states    S3   CSS 1997
## 216                                 Caribbean small states    S3   CSS 1996
## 217                                 Caribbean small states    S3   CSS 1995
## 218                                 Caribbean small states    S3   CSS 1994
## 219                                 Caribbean small states    S3   CSS 1993
## 220                                 Caribbean small states    S3   CSS 1992
## 221                                 Caribbean small states    S3   CSS 1991
## 222                                 Caribbean small states    S3   CSS 1990
## 223                                 Caribbean small states    S3   CSS 1989
## 224                                 Caribbean small states    S3   CSS 1988
## 225                                 Caribbean small states    S3   CSS 1987
## 226                                 Caribbean small states    S3   CSS 1986
## 227                                 Caribbean small states    S3   CSS 1985
## 228                                 Caribbean small states    S3   CSS 1984
## 229                                 Caribbean small states    S3   CSS 1983
## 230                                 Caribbean small states    S3   CSS 1982
## 231                                 Caribbean small states    S3   CSS 1981
## 232                                 Caribbean small states    S3   CSS 1980
## 233                                 Caribbean small states    S3   CSS 1979
## 234                                 Caribbean small states    S3   CSS 1978
## 235                                 Caribbean small states    S3   CSS 1977
## 236                                 Caribbean small states    S3   CSS 1976
## 237                                 Caribbean small states    S3   CSS 1975
## 238                                 Caribbean small states    S3   CSS 1974
## 239                                 Caribbean small states    S3   CSS 1973
## 240                                 Caribbean small states    S3   CSS 1972
## 241                                 Caribbean small states    S3   CSS 1971
## 242                                 Caribbean small states    S3   CSS 1970
## 243                                 Caribbean small states    S3   CSS 1969
## 244                                 Caribbean small states    S3   CSS 1968
## 245                                 Caribbean small states    S3   CSS 1967
## 246                                 Caribbean small states    S3   CSS 1966
## 247                                 Caribbean small states    S3   CSS 1965
## 248                                 Caribbean small states    S3   CSS 1964
## 249                                 Caribbean small states    S3   CSS 1963
## 250                                 Caribbean small states    S3   CSS 1962
## 251                                 Caribbean small states    S3   CSS 1961
## 252                                 Caribbean small states    S3   CSS 1960
## 253                         Central Europe and the Baltics    B8   CEB 2022
## 254                         Central Europe and the Baltics    B8   CEB 2021
## 255                         Central Europe and the Baltics    B8   CEB 2020
## 256                         Central Europe and the Baltics    B8   CEB 2019
## 257                         Central Europe and the Baltics    B8   CEB 2018
## 258                         Central Europe and the Baltics    B8   CEB 2017
## 259                         Central Europe and the Baltics    B8   CEB 2016
## 260                         Central Europe and the Baltics    B8   CEB 2015
## 261                         Central Europe and the Baltics    B8   CEB 2014
## 262                         Central Europe and the Baltics    B8   CEB 2013
## 263                         Central Europe and the Baltics    B8   CEB 2012
## 264                         Central Europe and the Baltics    B8   CEB 2011
## 265                         Central Europe and the Baltics    B8   CEB 2010
## 266                         Central Europe and the Baltics    B8   CEB 2009
## 267                         Central Europe and the Baltics    B8   CEB 2008
## 268                         Central Europe and the Baltics    B8   CEB 2007
## 269                         Central Europe and the Baltics    B8   CEB 2006
## 270                         Central Europe and the Baltics    B8   CEB 2005
## 271                         Central Europe and the Baltics    B8   CEB 2004
## 272                         Central Europe and the Baltics    B8   CEB 2003
## 273                         Central Europe and the Baltics    B8   CEB 2002
## 274                         Central Europe and the Baltics    B8   CEB 2001
## 275                         Central Europe and the Baltics    B8   CEB 2000
## 276                         Central Europe and the Baltics    B8   CEB 1999
## 277                         Central Europe and the Baltics    B8   CEB 1998
## 278                         Central Europe and the Baltics    B8   CEB 1997
## 279                         Central Europe and the Baltics    B8   CEB 1996
## 280                         Central Europe and the Baltics    B8   CEB 1995
## 281                         Central Europe and the Baltics    B8   CEB 1994
## 282                         Central Europe and the Baltics    B8   CEB 1993
## 283                         Central Europe and the Baltics    B8   CEB 1992
## 284                         Central Europe and the Baltics    B8   CEB 1991
## 285                         Central Europe and the Baltics    B8   CEB 1990
## 286                         Central Europe and the Baltics    B8   CEB 1989
## 287                         Central Europe and the Baltics    B8   CEB 1988
## 288                         Central Europe and the Baltics    B8   CEB 1987
## 289                         Central Europe and the Baltics    B8   CEB 1986
## 290                         Central Europe and the Baltics    B8   CEB 1985
## 291                         Central Europe and the Baltics    B8   CEB 1984
## 292                         Central Europe and the Baltics    B8   CEB 1983
## 293                         Central Europe and the Baltics    B8   CEB 1982
## 294                         Central Europe and the Baltics    B8   CEB 1981
## 295                         Central Europe and the Baltics    B8   CEB 1980
## 296                         Central Europe and the Baltics    B8   CEB 1979
## 297                         Central Europe and the Baltics    B8   CEB 1978
## 298                         Central Europe and the Baltics    B8   CEB 1977
## 299                         Central Europe and the Baltics    B8   CEB 1976
## 300                         Central Europe and the Baltics    B8   CEB 1975
## 301                         Central Europe and the Baltics    B8   CEB 1974
## 302                         Central Europe and the Baltics    B8   CEB 1973
## 303                         Central Europe and the Baltics    B8   CEB 1972
## 304                         Central Europe and the Baltics    B8   CEB 1971
## 305                         Central Europe and the Baltics    B8   CEB 1970
## 306                         Central Europe and the Baltics    B8   CEB 1969
## 307                         Central Europe and the Baltics    B8   CEB 1968
## 308                         Central Europe and the Baltics    B8   CEB 1967
## 309                         Central Europe and the Baltics    B8   CEB 1966
## 310                         Central Europe and the Baltics    B8   CEB 1965
## 311                         Central Europe and the Baltics    B8   CEB 1964
## 312                         Central Europe and the Baltics    B8   CEB 1963
## 313                         Central Europe and the Baltics    B8   CEB 1962
## 314                         Central Europe and the Baltics    B8   CEB 1961
## 315                         Central Europe and the Baltics    B8   CEB 1960
## 316                             Early-demographic dividend    V2   EAR 2022
## 317                             Early-demographic dividend    V2   EAR 2021
## 318                             Early-demographic dividend    V2   EAR 2020
## 319                             Early-demographic dividend    V2   EAR 2019
## 320                             Early-demographic dividend    V2   EAR 2018
## 321                             Early-demographic dividend    V2   EAR 2017
## 322                             Early-demographic dividend    V2   EAR 2016
## 323                             Early-demographic dividend    V2   EAR 2015
## 324                             Early-demographic dividend    V2   EAR 2014
## 325                             Early-demographic dividend    V2   EAR 2013
## 326                             Early-demographic dividend    V2   EAR 2012
## 327                             Early-demographic dividend    V2   EAR 2011
## 328                             Early-demographic dividend    V2   EAR 2010
## 329                             Early-demographic dividend    V2   EAR 2009
## 330                             Early-demographic dividend    V2   EAR 2008
## 331                             Early-demographic dividend    V2   EAR 2007
## 332                             Early-demographic dividend    V2   EAR 2006
## 333                             Early-demographic dividend    V2   EAR 2005
## 334                             Early-demographic dividend    V2   EAR 2004
## 335                             Early-demographic dividend    V2   EAR 2003
## 336                             Early-demographic dividend    V2   EAR 2002
## 337                             Early-demographic dividend    V2   EAR 2001
## 338                             Early-demographic dividend    V2   EAR 2000
## 339                             Early-demographic dividend    V2   EAR 1999
## 340                             Early-demographic dividend    V2   EAR 1998
## 341                             Early-demographic dividend    V2   EAR 1997
## 342                             Early-demographic dividend    V2   EAR 1996
## 343                             Early-demographic dividend    V2   EAR 1995
## 344                             Early-demographic dividend    V2   EAR 1994
## 345                             Early-demographic dividend    V2   EAR 1993
## 346                             Early-demographic dividend    V2   EAR 1992
## 347                             Early-demographic dividend    V2   EAR 1991
## 348                             Early-demographic dividend    V2   EAR 1990
## 349                             Early-demographic dividend    V2   EAR 1989
## 350                             Early-demographic dividend    V2   EAR 1988
## 351                             Early-demographic dividend    V2   EAR 1987
## 352                             Early-demographic dividend    V2   EAR 1986
## 353                             Early-demographic dividend    V2   EAR 1985
## 354                             Early-demographic dividend    V2   EAR 1984
## 355                             Early-demographic dividend    V2   EAR 1983
## 356                             Early-demographic dividend    V2   EAR 1982
## 357                             Early-demographic dividend    V2   EAR 1981
## 358                             Early-demographic dividend    V2   EAR 1980
## 359                             Early-demographic dividend    V2   EAR 1979
## 360                             Early-demographic dividend    V2   EAR 1978
## 361                             Early-demographic dividend    V2   EAR 1977
## 362                             Early-demographic dividend    V2   EAR 1976
## 363                             Early-demographic dividend    V2   EAR 1975
## 364                             Early-demographic dividend    V2   EAR 1974
## 365                             Early-demographic dividend    V2   EAR 1973
## 366                             Early-demographic dividend    V2   EAR 1972
## 367                             Early-demographic dividend    V2   EAR 1971
## 368                             Early-demographic dividend    V2   EAR 1970
## 369                             Early-demographic dividend    V2   EAR 1969
## 370                             Early-demographic dividend    V2   EAR 1968
## 371                             Early-demographic dividend    V2   EAR 1967
## 372                             Early-demographic dividend    V2   EAR 1966
## 373                             Early-demographic dividend    V2   EAR 1965
## 374                             Early-demographic dividend    V2   EAR 1964
## 375                             Early-demographic dividend    V2   EAR 1963
## 376                             Early-demographic dividend    V2   EAR 1962
## 377                             Early-demographic dividend    V2   EAR 1961
## 378                             Early-demographic dividend    V2   EAR 1960
## 379                                    East Asia & Pacific    Z4   EAS 2022
## 380                                    East Asia & Pacific    Z4   EAS 2021
## 381                                    East Asia & Pacific    Z4   EAS 2020
## 382                                    East Asia & Pacific    Z4   EAS 2019
## 383                                    East Asia & Pacific    Z4   EAS 2018
## 384                                    East Asia & Pacific    Z4   EAS 2017
## 385                                    East Asia & Pacific    Z4   EAS 2016
## 386                                    East Asia & Pacific    Z4   EAS 2015
## 387                                    East Asia & Pacific    Z4   EAS 2014
## 388                                    East Asia & Pacific    Z4   EAS 2013
## 389                                    East Asia & Pacific    Z4   EAS 2012
## 390                                    East Asia & Pacific    Z4   EAS 2011
## 391                                    East Asia & Pacific    Z4   EAS 2010
## 392                                    East Asia & Pacific    Z4   EAS 2009
## 393                                    East Asia & Pacific    Z4   EAS 2008
## 394                                    East Asia & Pacific    Z4   EAS 2007
## 395                                    East Asia & Pacific    Z4   EAS 2006
## 396                                    East Asia & Pacific    Z4   EAS 2005
## 397                                    East Asia & Pacific    Z4   EAS 2004
## 398                                    East Asia & Pacific    Z4   EAS 2003
## 399                                    East Asia & Pacific    Z4   EAS 2002
## 400                                    East Asia & Pacific    Z4   EAS 2001
## 401                                    East Asia & Pacific    Z4   EAS 2000
## 402                                    East Asia & Pacific    Z4   EAS 1999
## 403                                    East Asia & Pacific    Z4   EAS 1998
## 404                                    East Asia & Pacific    Z4   EAS 1997
## 405                                    East Asia & Pacific    Z4   EAS 1996
## 406                                    East Asia & Pacific    Z4   EAS 1995
## 407                                    East Asia & Pacific    Z4   EAS 1994
## 408                                    East Asia & Pacific    Z4   EAS 1993
## 409                                    East Asia & Pacific    Z4   EAS 1992
## 410                                    East Asia & Pacific    Z4   EAS 1991
## 411                                    East Asia & Pacific    Z4   EAS 1990
## 412                                    East Asia & Pacific    Z4   EAS 1989
## 413                                    East Asia & Pacific    Z4   EAS 1988
## 414                                    East Asia & Pacific    Z4   EAS 1987
## 415                                    East Asia & Pacific    Z4   EAS 1986
## 416                                    East Asia & Pacific    Z4   EAS 1985
## 417                                    East Asia & Pacific    Z4   EAS 1984
## 418                                    East Asia & Pacific    Z4   EAS 1983
## 419                                    East Asia & Pacific    Z4   EAS 1982
## 420                                    East Asia & Pacific    Z4   EAS 1981
## 421                                    East Asia & Pacific    Z4   EAS 1980
## 422                                    East Asia & Pacific    Z4   EAS 1979
## 423                                    East Asia & Pacific    Z4   EAS 1978
## 424                                    East Asia & Pacific    Z4   EAS 1977
## 425                                    East Asia & Pacific    Z4   EAS 1976
## 426                                    East Asia & Pacific    Z4   EAS 1975
## 427                                    East Asia & Pacific    Z4   EAS 1974
## 428                                    East Asia & Pacific    Z4   EAS 1973
## 429                                    East Asia & Pacific    Z4   EAS 1972
## 430                                    East Asia & Pacific    Z4   EAS 1971
## 431                                    East Asia & Pacific    Z4   EAS 1970
## 432                                    East Asia & Pacific    Z4   EAS 1969
## 433                                    East Asia & Pacific    Z4   EAS 1968
## 434                                    East Asia & Pacific    Z4   EAS 1967
## 435                                    East Asia & Pacific    Z4   EAS 1966
## 436                                    East Asia & Pacific    Z4   EAS 1965
## 437                                    East Asia & Pacific    Z4   EAS 1964
## 438                                    East Asia & Pacific    Z4   EAS 1963
## 439                                    East Asia & Pacific    Z4   EAS 1962
## 440                                    East Asia & Pacific    Z4   EAS 1961
## 441                                    East Asia & Pacific    Z4   EAS 1960
## 442            East Asia & Pacific (excluding high income)    4E   EAP 2022
## 443            East Asia & Pacific (excluding high income)    4E   EAP 2021
## 444            East Asia & Pacific (excluding high income)    4E   EAP 2020
## 445            East Asia & Pacific (excluding high income)    4E   EAP 2019
## 446            East Asia & Pacific (excluding high income)    4E   EAP 2018
## 447            East Asia & Pacific (excluding high income)    4E   EAP 2017
## 448            East Asia & Pacific (excluding high income)    4E   EAP 2016
## 449            East Asia & Pacific (excluding high income)    4E   EAP 2015
## 450            East Asia & Pacific (excluding high income)    4E   EAP 2014
## 451            East Asia & Pacific (excluding high income)    4E   EAP 2013
## 452            East Asia & Pacific (excluding high income)    4E   EAP 2012
## 453            East Asia & Pacific (excluding high income)    4E   EAP 2011
## 454            East Asia & Pacific (excluding high income)    4E   EAP 2010
## 455            East Asia & Pacific (excluding high income)    4E   EAP 2009
## 456            East Asia & Pacific (excluding high income)    4E   EAP 2008
## 457            East Asia & Pacific (excluding high income)    4E   EAP 2007
## 458            East Asia & Pacific (excluding high income)    4E   EAP 2006
## 459            East Asia & Pacific (excluding high income)    4E   EAP 2005
## 460            East Asia & Pacific (excluding high income)    4E   EAP 2004
## 461            East Asia & Pacific (excluding high income)    4E   EAP 2003
## 462            East Asia & Pacific (excluding high income)    4E   EAP 2002
## 463            East Asia & Pacific (excluding high income)    4E   EAP 2001
## 464            East Asia & Pacific (excluding high income)    4E   EAP 2000
## 465            East Asia & Pacific (excluding high income)    4E   EAP 1999
## 466            East Asia & Pacific (excluding high income)    4E   EAP 1998
## 467            East Asia & Pacific (excluding high income)    4E   EAP 1997
## 468            East Asia & Pacific (excluding high income)    4E   EAP 1996
## 469            East Asia & Pacific (excluding high income)    4E   EAP 1995
## 470            East Asia & Pacific (excluding high income)    4E   EAP 1994
## 471            East Asia & Pacific (excluding high income)    4E   EAP 1993
## 472            East Asia & Pacific (excluding high income)    4E   EAP 1992
## 473            East Asia & Pacific (excluding high income)    4E   EAP 1991
## 474            East Asia & Pacific (excluding high income)    4E   EAP 1990
## 475            East Asia & Pacific (excluding high income)    4E   EAP 1989
## 476            East Asia & Pacific (excluding high income)    4E   EAP 1988
## 477            East Asia & Pacific (excluding high income)    4E   EAP 1987
## 478            East Asia & Pacific (excluding high income)    4E   EAP 1986
## 479            East Asia & Pacific (excluding high income)    4E   EAP 1985
## 480            East Asia & Pacific (excluding high income)    4E   EAP 1984
## 481            East Asia & Pacific (excluding high income)    4E   EAP 1983
## 482            East Asia & Pacific (excluding high income)    4E   EAP 1982
## 483            East Asia & Pacific (excluding high income)    4E   EAP 1981
## 484            East Asia & Pacific (excluding high income)    4E   EAP 1980
## 485            East Asia & Pacific (excluding high income)    4E   EAP 1979
## 486            East Asia & Pacific (excluding high income)    4E   EAP 1978
## 487            East Asia & Pacific (excluding high income)    4E   EAP 1977
## 488            East Asia & Pacific (excluding high income)    4E   EAP 1976
## 489            East Asia & Pacific (excluding high income)    4E   EAP 1975
## 490            East Asia & Pacific (excluding high income)    4E   EAP 1974
## 491            East Asia & Pacific (excluding high income)    4E   EAP 1973
## 492            East Asia & Pacific (excluding high income)    4E   EAP 1972
## 493            East Asia & Pacific (excluding high income)    4E   EAP 1971
## 494            East Asia & Pacific (excluding high income)    4E   EAP 1970
## 495            East Asia & Pacific (excluding high income)    4E   EAP 1969
## 496            East Asia & Pacific (excluding high income)    4E   EAP 1968
## 497            East Asia & Pacific (excluding high income)    4E   EAP 1967
## 498            East Asia & Pacific (excluding high income)    4E   EAP 1966
## 499            East Asia & Pacific (excluding high income)    4E   EAP 1965
## 500            East Asia & Pacific (excluding high income)    4E   EAP 1964
## 501            East Asia & Pacific (excluding high income)    4E   EAP 1963
## 502            East Asia & Pacific (excluding high income)    4E   EAP 1962
## 503            East Asia & Pacific (excluding high income)    4E   EAP 1961
## 504            East Asia & Pacific (excluding high income)    4E   EAP 1960
## 505             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2022
## 506             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021
## 507             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020
## 508             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019
## 509             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018
## 510             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017
## 511             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016
## 512             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015
## 513             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014
## 514             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013
## 515             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012
## 516             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011
## 517             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010
## 518             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009
## 519             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008
## 520             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007
## 521             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006
## 522             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005
## 523             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004
## 524             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003
## 525             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002
## 526             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001
## 527             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000
## 528             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999
## 529             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998
## 530             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997
## 531             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996
## 532             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995
## 533             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994
## 534             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993
## 535             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992
## 536             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991
## 537             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990
## 538             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989
## 539             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988
## 540             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987
## 541             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986
## 542             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985
## 543             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984
## 544             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983
## 545             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982
## 546             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981
## 547             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980
## 548             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979
## 549             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978
## 550             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977
## 551             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976
## 552             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975
## 553             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974
## 554             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973
## 555             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972
## 556             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971
## 557             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970
## 558             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969
## 559             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968
## 560             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967
## 561             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966
## 562             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965
## 563             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964
## 564             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963
## 565             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962
## 566             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961
## 567             East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960
## 568                                              Euro area    XC   EMU 2022
## 569                                              Euro area    XC   EMU 2021
## 570                                              Euro area    XC   EMU 2020
## 571                                              Euro area    XC   EMU 2019
## 572                                              Euro area    XC   EMU 2018
## 573                                              Euro area    XC   EMU 2017
## 574                                              Euro area    XC   EMU 2016
## 575                                              Euro area    XC   EMU 2015
## 576                                              Euro area    XC   EMU 2014
## 577                                              Euro area    XC   EMU 2013
## 578                                              Euro area    XC   EMU 2012
## 579                                              Euro area    XC   EMU 2011
## 580                                              Euro area    XC   EMU 2010
## 581                                              Euro area    XC   EMU 2009
## 582                                              Euro area    XC   EMU 2008
## 583                                              Euro area    XC   EMU 2007
## 584                                              Euro area    XC   EMU 2006
## 585                                              Euro area    XC   EMU 2005
## 586                                              Euro area    XC   EMU 2004
## 587                                              Euro area    XC   EMU 2003
## 588                                              Euro area    XC   EMU 2002
## 589                                              Euro area    XC   EMU 2001
## 590                                              Euro area    XC   EMU 2000
## 591                                              Euro area    XC   EMU 1999
## 592                                              Euro area    XC   EMU 1998
## 593                                              Euro area    XC   EMU 1997
## 594                                              Euro area    XC   EMU 1996
## 595                                              Euro area    XC   EMU 1995
## 596                                              Euro area    XC   EMU 1994
## 597                                              Euro area    XC   EMU 1993
## 598                                              Euro area    XC   EMU 1992
## 599                                              Euro area    XC   EMU 1991
## 600                                              Euro area    XC   EMU 1990
## 601                                              Euro area    XC   EMU 1989
## 602                                              Euro area    XC   EMU 1988
## 603                                              Euro area    XC   EMU 1987
## 604                                              Euro area    XC   EMU 1986
## 605                                              Euro area    XC   EMU 1985
## 606                                              Euro area    XC   EMU 1984
## 607                                              Euro area    XC   EMU 1983
## 608                                              Euro area    XC   EMU 1982
## 609                                              Euro area    XC   EMU 1981
## 610                                              Euro area    XC   EMU 1980
## 611                                              Euro area    XC   EMU 1979
## 612                                              Euro area    XC   EMU 1978
## 613                                              Euro area    XC   EMU 1977
## 614                                              Euro area    XC   EMU 1976
## 615                                              Euro area    XC   EMU 1975
## 616                                              Euro area    XC   EMU 1974
## 617                                              Euro area    XC   EMU 1973
## 618                                              Euro area    XC   EMU 1972
## 619                                              Euro area    XC   EMU 1971
## 620                                              Euro area    XC   EMU 1970
## 621                                              Euro area    XC   EMU 1969
## 622                                              Euro area    XC   EMU 1968
## 623                                              Euro area    XC   EMU 1967
## 624                                              Euro area    XC   EMU 1966
## 625                                              Euro area    XC   EMU 1965
## 626                                              Euro area    XC   EMU 1964
## 627                                              Euro area    XC   EMU 1963
## 628                                              Euro area    XC   EMU 1962
## 629                                              Euro area    XC   EMU 1961
## 630                                              Euro area    XC   EMU 1960
## 631                                  Europe & Central Asia    Z7   ECS 2022
## 632                                  Europe & Central Asia    Z7   ECS 2021
## 633                                  Europe & Central Asia    Z7   ECS 2020
## 634                                  Europe & Central Asia    Z7   ECS 2019
## 635                                  Europe & Central Asia    Z7   ECS 2018
## 636                                  Europe & Central Asia    Z7   ECS 2017
## 637                                  Europe & Central Asia    Z7   ECS 2016
## 638                                  Europe & Central Asia    Z7   ECS 2015
## 639                                  Europe & Central Asia    Z7   ECS 2014
## 640                                  Europe & Central Asia    Z7   ECS 2013
## 641                                  Europe & Central Asia    Z7   ECS 2012
## 642                                  Europe & Central Asia    Z7   ECS 2011
## 643                                  Europe & Central Asia    Z7   ECS 2010
## 644                                  Europe & Central Asia    Z7   ECS 2009
## 645                                  Europe & Central Asia    Z7   ECS 2008
## 646                                  Europe & Central Asia    Z7   ECS 2007
## 647                                  Europe & Central Asia    Z7   ECS 2006
## 648                                  Europe & Central Asia    Z7   ECS 2005
## 649                                  Europe & Central Asia    Z7   ECS 2004
## 650                                  Europe & Central Asia    Z7   ECS 2003
## 651                                  Europe & Central Asia    Z7   ECS 2002
## 652                                  Europe & Central Asia    Z7   ECS 2001
## 653                                  Europe & Central Asia    Z7   ECS 2000
## 654                                  Europe & Central Asia    Z7   ECS 1999
## 655                                  Europe & Central Asia    Z7   ECS 1998
## 656                                  Europe & Central Asia    Z7   ECS 1997
## 657                                  Europe & Central Asia    Z7   ECS 1996
## 658                                  Europe & Central Asia    Z7   ECS 1995
## 659                                  Europe & Central Asia    Z7   ECS 1994
## 660                                  Europe & Central Asia    Z7   ECS 1993
## 661                                  Europe & Central Asia    Z7   ECS 1992
## 662                                  Europe & Central Asia    Z7   ECS 1991
## 663                                  Europe & Central Asia    Z7   ECS 1990
## 664                                  Europe & Central Asia    Z7   ECS 1989
## 665                                  Europe & Central Asia    Z7   ECS 1988
## 666                                  Europe & Central Asia    Z7   ECS 1987
## 667                                  Europe & Central Asia    Z7   ECS 1986
## 668                                  Europe & Central Asia    Z7   ECS 1985
## 669                                  Europe & Central Asia    Z7   ECS 1984
## 670                                  Europe & Central Asia    Z7   ECS 1983
## 671                                  Europe & Central Asia    Z7   ECS 1982
## 672                                  Europe & Central Asia    Z7   ECS 1981
## 673                                  Europe & Central Asia    Z7   ECS 1980
## 674                                  Europe & Central Asia    Z7   ECS 1979
## 675                                  Europe & Central Asia    Z7   ECS 1978
## 676                                  Europe & Central Asia    Z7   ECS 1977
## 677                                  Europe & Central Asia    Z7   ECS 1976
## 678                                  Europe & Central Asia    Z7   ECS 1975
## 679                                  Europe & Central Asia    Z7   ECS 1974
## 680                                  Europe & Central Asia    Z7   ECS 1973
## 681                                  Europe & Central Asia    Z7   ECS 1972
## 682                                  Europe & Central Asia    Z7   ECS 1971
## 683                                  Europe & Central Asia    Z7   ECS 1970
## 684                                  Europe & Central Asia    Z7   ECS 1969
## 685                                  Europe & Central Asia    Z7   ECS 1968
## 686                                  Europe & Central Asia    Z7   ECS 1967
## 687                                  Europe & Central Asia    Z7   ECS 1966
## 688                                  Europe & Central Asia    Z7   ECS 1965
## 689                                  Europe & Central Asia    Z7   ECS 1964
## 690                                  Europe & Central Asia    Z7   ECS 1963
## 691                                  Europe & Central Asia    Z7   ECS 1962
## 692                                  Europe & Central Asia    Z7   ECS 1961
## 693                                  Europe & Central Asia    Z7   ECS 1960
## 694          Europe & Central Asia (excluding high income)    7E   ECA 2022
## 695          Europe & Central Asia (excluding high income)    7E   ECA 2021
## 696          Europe & Central Asia (excluding high income)    7E   ECA 2020
## 697          Europe & Central Asia (excluding high income)    7E   ECA 2019
## 698          Europe & Central Asia (excluding high income)    7E   ECA 2018
## 699          Europe & Central Asia (excluding high income)    7E   ECA 2017
## 700          Europe & Central Asia (excluding high income)    7E   ECA 2016
## 701          Europe & Central Asia (excluding high income)    7E   ECA 2015
## 702          Europe & Central Asia (excluding high income)    7E   ECA 2014
## 703          Europe & Central Asia (excluding high income)    7E   ECA 2013
## 704          Europe & Central Asia (excluding high income)    7E   ECA 2012
## 705          Europe & Central Asia (excluding high income)    7E   ECA 2011
## 706          Europe & Central Asia (excluding high income)    7E   ECA 2010
## 707          Europe & Central Asia (excluding high income)    7E   ECA 2009
## 708          Europe & Central Asia (excluding high income)    7E   ECA 2008
## 709          Europe & Central Asia (excluding high income)    7E   ECA 2007
## 710          Europe & Central Asia (excluding high income)    7E   ECA 2006
## 711          Europe & Central Asia (excluding high income)    7E   ECA 2005
## 712          Europe & Central Asia (excluding high income)    7E   ECA 2004
## 713          Europe & Central Asia (excluding high income)    7E   ECA 2003
## 714          Europe & Central Asia (excluding high income)    7E   ECA 2002
## 715          Europe & Central Asia (excluding high income)    7E   ECA 2001
## 716          Europe & Central Asia (excluding high income)    7E   ECA 2000
## 717          Europe & Central Asia (excluding high income)    7E   ECA 1999
## 718          Europe & Central Asia (excluding high income)    7E   ECA 1998
## 719          Europe & Central Asia (excluding high income)    7E   ECA 1997
## 720          Europe & Central Asia (excluding high income)    7E   ECA 1996
## 721          Europe & Central Asia (excluding high income)    7E   ECA 1995
## 722          Europe & Central Asia (excluding high income)    7E   ECA 1994
## 723          Europe & Central Asia (excluding high income)    7E   ECA 1993
## 724          Europe & Central Asia (excluding high income)    7E   ECA 1992
## 725          Europe & Central Asia (excluding high income)    7E   ECA 1991
## 726          Europe & Central Asia (excluding high income)    7E   ECA 1990
## 727          Europe & Central Asia (excluding high income)    7E   ECA 1989
## 728          Europe & Central Asia (excluding high income)    7E   ECA 1988
## 729          Europe & Central Asia (excluding high income)    7E   ECA 1987
## 730          Europe & Central Asia (excluding high income)    7E   ECA 1986
## 731          Europe & Central Asia (excluding high income)    7E   ECA 1985
## 732          Europe & Central Asia (excluding high income)    7E   ECA 1984
## 733          Europe & Central Asia (excluding high income)    7E   ECA 1983
## 734          Europe & Central Asia (excluding high income)    7E   ECA 1982
## 735          Europe & Central Asia (excluding high income)    7E   ECA 1981
## 736          Europe & Central Asia (excluding high income)    7E   ECA 1980
## 737          Europe & Central Asia (excluding high income)    7E   ECA 1979
## 738          Europe & Central Asia (excluding high income)    7E   ECA 1978
## 739          Europe & Central Asia (excluding high income)    7E   ECA 1977
## 740          Europe & Central Asia (excluding high income)    7E   ECA 1976
## 741          Europe & Central Asia (excluding high income)    7E   ECA 1975
## 742          Europe & Central Asia (excluding high income)    7E   ECA 1974
## 743          Europe & Central Asia (excluding high income)    7E   ECA 1973
## 744          Europe & Central Asia (excluding high income)    7E   ECA 1972
## 745          Europe & Central Asia (excluding high income)    7E   ECA 1971
## 746          Europe & Central Asia (excluding high income)    7E   ECA 1970
## 747          Europe & Central Asia (excluding high income)    7E   ECA 1969
## 748          Europe & Central Asia (excluding high income)    7E   ECA 1968
## 749          Europe & Central Asia (excluding high income)    7E   ECA 1967
## 750          Europe & Central Asia (excluding high income)    7E   ECA 1966
## 751          Europe & Central Asia (excluding high income)    7E   ECA 1965
## 752          Europe & Central Asia (excluding high income)    7E   ECA 1964
## 753          Europe & Central Asia (excluding high income)    7E   ECA 1963
## 754          Europe & Central Asia (excluding high income)    7E   ECA 1962
## 755          Europe & Central Asia (excluding high income)    7E   ECA 1961
## 756          Europe & Central Asia (excluding high income)    7E   ECA 1960
## 757           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2022
## 758           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021
## 759           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2020
## 760           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2019
## 761           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2018
## 762           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2017
## 763           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2016
## 764           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2015
## 765           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2014
## 766           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2013
## 767           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2012
## 768           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2011
## 769           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2010
## 770           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2009
## 771           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2008
## 772           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2007
## 773           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2006
## 774           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2005
## 775           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2004
## 776           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2003
## 777           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2002
## 778           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2001
## 779           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2000
## 780           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1999
## 781           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1998
## 782           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1997
## 783           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1996
## 784           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1995
## 785           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1994
## 786           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1993
## 787           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1992
## 788           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1991
## 789           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1990
## 790           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1989
## 791           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1988
## 792           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1987
## 793           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1986
## 794           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1985
## 795           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1984
## 796           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1983
## 797           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1982
## 798           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1981
## 799           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1980
## 800           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1979
## 801           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1978
## 802           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1977
## 803           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1976
## 804           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1975
## 805           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1974
## 806           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1973
## 807           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1972
## 808           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1971
## 809           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1970
## 810           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1969
## 811           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1968
## 812           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1967
## 813           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1966
## 814           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1965
## 815           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1964
## 816           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1963
## 817           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1962
## 818           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1961
## 819           Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1960
## 820                                         European Union    EU   EUU 2022
## 821                                         European Union    EU   EUU 2021
## 822                                         European Union    EU   EUU 2020
## 823                                         European Union    EU   EUU 2019
## 824                                         European Union    EU   EUU 2018
## 825                                         European Union    EU   EUU 2017
## 826                                         European Union    EU   EUU 2016
## 827                                         European Union    EU   EUU 2015
## 828                                         European Union    EU   EUU 2014
## 829                                         European Union    EU   EUU 2013
## 830                                         European Union    EU   EUU 2012
## 831                                         European Union    EU   EUU 2011
## 832                                         European Union    EU   EUU 2010
## 833                                         European Union    EU   EUU 2009
## 834                                         European Union    EU   EUU 2008
## 835                                         European Union    EU   EUU 2007
## 836                                         European Union    EU   EUU 2006
## 837                                         European Union    EU   EUU 2005
## 838                                         European Union    EU   EUU 2004
## 839                                         European Union    EU   EUU 2003
## 840                                         European Union    EU   EUU 2002
## 841                                         European Union    EU   EUU 2001
## 842                                         European Union    EU   EUU 2000
## 843                                         European Union    EU   EUU 1999
## 844                                         European Union    EU   EUU 1998
## 845                                         European Union    EU   EUU 1997
## 846                                         European Union    EU   EUU 1996
## 847                                         European Union    EU   EUU 1995
## 848                                         European Union    EU   EUU 1994
## 849                                         European Union    EU   EUU 1993
## 850                                         European Union    EU   EUU 1992
## 851                                         European Union    EU   EUU 1991
## 852                                         European Union    EU   EUU 1990
## 853                                         European Union    EU   EUU 1989
## 854                                         European Union    EU   EUU 1988
## 855                                         European Union    EU   EUU 1987
## 856                                         European Union    EU   EUU 1986
## 857                                         European Union    EU   EUU 1985
## 858                                         European Union    EU   EUU 1984
## 859                                         European Union    EU   EUU 1983
## 860                                         European Union    EU   EUU 1982
## 861                                         European Union    EU   EUU 1981
## 862                                         European Union    EU   EUU 1980
## 863                                         European Union    EU   EUU 1979
## 864                                         European Union    EU   EUU 1978
## 865                                         European Union    EU   EUU 1977
## 866                                         European Union    EU   EUU 1976
## 867                                         European Union    EU   EUU 1975
## 868                                         European Union    EU   EUU 1974
## 869                                         European Union    EU   EUU 1973
## 870                                         European Union    EU   EUU 1972
## 871                                         European Union    EU   EUU 1971
## 872                                         European Union    EU   EUU 1970
## 873                                         European Union    EU   EUU 1969
## 874                                         European Union    EU   EUU 1968
## 875                                         European Union    EU   EUU 1967
## 876                                         European Union    EU   EUU 1966
## 877                                         European Union    EU   EUU 1965
## 878                                         European Union    EU   EUU 1964
## 879                                         European Union    EU   EUU 1963
## 880                                         European Union    EU   EUU 1962
## 881                                         European Union    EU   EUU 1961
## 882                                         European Union    EU   EUU 1960
## 883               Fragile and conflict affected situations    F1   FCS 2022
## 884               Fragile and conflict affected situations    F1   FCS 2021
## 885               Fragile and conflict affected situations    F1   FCS 2020
## 886               Fragile and conflict affected situations    F1   FCS 2019
## 887               Fragile and conflict affected situations    F1   FCS 2018
## 888               Fragile and conflict affected situations    F1   FCS 2017
## 889               Fragile and conflict affected situations    F1   FCS 2016
## 890               Fragile and conflict affected situations    F1   FCS 2015
## 891               Fragile and conflict affected situations    F1   FCS 2014
## 892               Fragile and conflict affected situations    F1   FCS 2013
## 893               Fragile and conflict affected situations    F1   FCS 2012
## 894               Fragile and conflict affected situations    F1   FCS 2011
## 895               Fragile and conflict affected situations    F1   FCS 2010
## 896               Fragile and conflict affected situations    F1   FCS 2009
## 897               Fragile and conflict affected situations    F1   FCS 2008
## 898               Fragile and conflict affected situations    F1   FCS 2007
## 899               Fragile and conflict affected situations    F1   FCS 2006
## 900               Fragile and conflict affected situations    F1   FCS 2005
## 901               Fragile and conflict affected situations    F1   FCS 2004
## 902               Fragile and conflict affected situations    F1   FCS 2003
## 903               Fragile and conflict affected situations    F1   FCS 2002
## 904               Fragile and conflict affected situations    F1   FCS 2001
## 905               Fragile and conflict affected situations    F1   FCS 2000
## 906               Fragile and conflict affected situations    F1   FCS 1999
## 907               Fragile and conflict affected situations    F1   FCS 1998
## 908               Fragile and conflict affected situations    F1   FCS 1997
## 909               Fragile and conflict affected situations    F1   FCS 1996
## 910               Fragile and conflict affected situations    F1   FCS 1995
## 911               Fragile and conflict affected situations    F1   FCS 1994
## 912               Fragile and conflict affected situations    F1   FCS 1993
## 913               Fragile and conflict affected situations    F1   FCS 1992
## 914               Fragile and conflict affected situations    F1   FCS 1991
## 915               Fragile and conflict affected situations    F1   FCS 1990
## 916               Fragile and conflict affected situations    F1   FCS 1989
## 917               Fragile and conflict affected situations    F1   FCS 1988
## 918               Fragile and conflict affected situations    F1   FCS 1987
## 919               Fragile and conflict affected situations    F1   FCS 1986
## 920               Fragile and conflict affected situations    F1   FCS 1985
## 921               Fragile and conflict affected situations    F1   FCS 1984
## 922               Fragile and conflict affected situations    F1   FCS 1983
## 923               Fragile and conflict affected situations    F1   FCS 1982
## 924               Fragile and conflict affected situations    F1   FCS 1981
## 925               Fragile and conflict affected situations    F1   FCS 1980
## 926               Fragile and conflict affected situations    F1   FCS 1979
## 927               Fragile and conflict affected situations    F1   FCS 1978
## 928               Fragile and conflict affected situations    F1   FCS 1977
## 929               Fragile and conflict affected situations    F1   FCS 1976
## 930               Fragile and conflict affected situations    F1   FCS 1975
## 931               Fragile and conflict affected situations    F1   FCS 1974
## 932               Fragile and conflict affected situations    F1   FCS 1973
## 933               Fragile and conflict affected situations    F1   FCS 1972
## 934               Fragile and conflict affected situations    F1   FCS 1971
## 935               Fragile and conflict affected situations    F1   FCS 1970
## 936               Fragile and conflict affected situations    F1   FCS 1969
## 937               Fragile and conflict affected situations    F1   FCS 1968
## 938               Fragile and conflict affected situations    F1   FCS 1967
## 939               Fragile and conflict affected situations    F1   FCS 1966
## 940               Fragile and conflict affected situations    F1   FCS 1965
## 941               Fragile and conflict affected situations    F1   FCS 1964
## 942               Fragile and conflict affected situations    F1   FCS 1963
## 943               Fragile and conflict affected situations    F1   FCS 1962
## 944               Fragile and conflict affected situations    F1   FCS 1961
## 945               Fragile and conflict affected situations    F1   FCS 1960
## 946                 Heavily indebted poor countries (HIPC)    XE   HPC 2022
## 947                 Heavily indebted poor countries (HIPC)    XE   HPC 2021
## 948                 Heavily indebted poor countries (HIPC)    XE   HPC 2020
## 949                 Heavily indebted poor countries (HIPC)    XE   HPC 2019
## 950                 Heavily indebted poor countries (HIPC)    XE   HPC 2018
## 951                 Heavily indebted poor countries (HIPC)    XE   HPC 2017
## 952                 Heavily indebted poor countries (HIPC)    XE   HPC 2016
## 953                 Heavily indebted poor countries (HIPC)    XE   HPC 2015
## 954                 Heavily indebted poor countries (HIPC)    XE   HPC 2014
## 955                 Heavily indebted poor countries (HIPC)    XE   HPC 2013
## 956                 Heavily indebted poor countries (HIPC)    XE   HPC 2012
## 957                 Heavily indebted poor countries (HIPC)    XE   HPC 2011
## 958                 Heavily indebted poor countries (HIPC)    XE   HPC 2010
## 959                 Heavily indebted poor countries (HIPC)    XE   HPC 2009
## 960                 Heavily indebted poor countries (HIPC)    XE   HPC 2008
## 961                 Heavily indebted poor countries (HIPC)    XE   HPC 2007
## 962                 Heavily indebted poor countries (HIPC)    XE   HPC 2006
## 963                 Heavily indebted poor countries (HIPC)    XE   HPC 2005
## 964                 Heavily indebted poor countries (HIPC)    XE   HPC 2004
## 965                 Heavily indebted poor countries (HIPC)    XE   HPC 2003
## 966                 Heavily indebted poor countries (HIPC)    XE   HPC 2002
## 967                 Heavily indebted poor countries (HIPC)    XE   HPC 2001
## 968                 Heavily indebted poor countries (HIPC)    XE   HPC 2000
## 969                 Heavily indebted poor countries (HIPC)    XE   HPC 1999
## 970                 Heavily indebted poor countries (HIPC)    XE   HPC 1998
## 971                 Heavily indebted poor countries (HIPC)    XE   HPC 1997
## 972                 Heavily indebted poor countries (HIPC)    XE   HPC 1996
## 973                 Heavily indebted poor countries (HIPC)    XE   HPC 1995
## 974                 Heavily indebted poor countries (HIPC)    XE   HPC 1994
## 975                 Heavily indebted poor countries (HIPC)    XE   HPC 1993
## 976                 Heavily indebted poor countries (HIPC)    XE   HPC 1992
## 977                 Heavily indebted poor countries (HIPC)    XE   HPC 1991
## 978                 Heavily indebted poor countries (HIPC)    XE   HPC 1990
## 979                 Heavily indebted poor countries (HIPC)    XE   HPC 1989
## 980                 Heavily indebted poor countries (HIPC)    XE   HPC 1988
## 981                 Heavily indebted poor countries (HIPC)    XE   HPC 1987
## 982                 Heavily indebted poor countries (HIPC)    XE   HPC 1986
## 983                 Heavily indebted poor countries (HIPC)    XE   HPC 1985
## 984                 Heavily indebted poor countries (HIPC)    XE   HPC 1984
## 985                 Heavily indebted poor countries (HIPC)    XE   HPC 1983
## 986                 Heavily indebted poor countries (HIPC)    XE   HPC 1982
## 987                 Heavily indebted poor countries (HIPC)    XE   HPC 1981
## 988                 Heavily indebted poor countries (HIPC)    XE   HPC 1980
## 989                 Heavily indebted poor countries (HIPC)    XE   HPC 1979
## 990                 Heavily indebted poor countries (HIPC)    XE   HPC 1978
## 991                 Heavily indebted poor countries (HIPC)    XE   HPC 1977
## 992                 Heavily indebted poor countries (HIPC)    XE   HPC 1976
## 993                 Heavily indebted poor countries (HIPC)    XE   HPC 1975
## 994                 Heavily indebted poor countries (HIPC)    XE   HPC 1974
## 995                 Heavily indebted poor countries (HIPC)    XE   HPC 1973
## 996                 Heavily indebted poor countries (HIPC)    XE   HPC 1972
## 997                 Heavily indebted poor countries (HIPC)    XE   HPC 1971
## 998                 Heavily indebted poor countries (HIPC)    XE   HPC 1970
## 999                 Heavily indebted poor countries (HIPC)    XE   HPC 1969
## 1000                Heavily indebted poor countries (HIPC)    XE   HPC 1968
## 1001                Heavily indebted poor countries (HIPC)    XE   HPC 1967
## 1002                Heavily indebted poor countries (HIPC)    XE   HPC 1966
## 1003                Heavily indebted poor countries (HIPC)    XE   HPC 1965
## 1004                Heavily indebted poor countries (HIPC)    XE   HPC 1964
## 1005                Heavily indebted poor countries (HIPC)    XE   HPC 1963
## 1006                Heavily indebted poor countries (HIPC)    XE   HPC 1962
## 1007                Heavily indebted poor countries (HIPC)    XE   HPC 1961
## 1008                Heavily indebted poor countries (HIPC)    XE   HPC 1960
## 1009                                           High income    XD       2022
## 1010                                           High income    XD       2021
## 1011                                           High income    XD       2020
## 1012                                           High income    XD       2019
## 1013                                           High income    XD       2018
## 1014                                           High income    XD       2017
## 1015                                           High income    XD       2016
## 1016                                           High income    XD       2015
## 1017                                           High income    XD       2014
## 1018                                           High income    XD       2013
## 1019                                           High income    XD       2012
## 1020                                           High income    XD       2011
## 1021                                           High income    XD       2010
## 1022                                           High income    XD       2009
## 1023                                           High income    XD       2008
## 1024                                           High income    XD       2007
## 1025                                           High income    XD       2006
## 1026                                           High income    XD       2005
## 1027                                           High income    XD       2004
## 1028                                           High income    XD       2003
## 1029                                           High income    XD       2002
## 1030                                           High income    XD       2001
## 1031                                           High income    XD       2000
## 1032                                           High income    XD       1999
## 1033                                           High income    XD       1998
## 1034                                           High income    XD       1997
## 1035                                           High income    XD       1996
## 1036                                           High income    XD       1995
## 1037                                           High income    XD       1994
## 1038                                           High income    XD       1993
## 1039                                           High income    XD       1992
## 1040                                           High income    XD       1991
## 1041                                           High income    XD       1990
## 1042                                           High income    XD       1989
## 1043                                           High income    XD       1988
## 1044                                           High income    XD       1987
## 1045                                           High income    XD       1986
## 1046                                           High income    XD       1985
## 1047                                           High income    XD       1984
## 1048                                           High income    XD       1983
## 1049                                           High income    XD       1982
## 1050                                           High income    XD       1981
## 1051                                           High income    XD       1980
## 1052                                           High income    XD       1979
## 1053                                           High income    XD       1978
## 1054                                           High income    XD       1977
## 1055                                           High income    XD       1976
## 1056                                           High income    XD       1975
## 1057                                           High income    XD       1974
## 1058                                           High income    XD       1973
## 1059                                           High income    XD       1972
## 1060                                           High income    XD       1971
## 1061                                           High income    XD       1970
## 1062                                           High income    XD       1969
## 1063                                           High income    XD       1968
## 1064                                           High income    XD       1967
## 1065                                           High income    XD       1966
## 1066                                           High income    XD       1965
## 1067                                           High income    XD       1964
## 1068                                           High income    XD       1963
## 1069                                           High income    XD       1962
## 1070                                           High income    XD       1961
## 1071                                           High income    XD       1960
## 1072                                             IBRD only    XF   IBD 2022
## 1073                                             IBRD only    XF   IBD 2021
## 1074                                             IBRD only    XF   IBD 2020
## 1075                                             IBRD only    XF   IBD 2019
## 1076                                             IBRD only    XF   IBD 2018
## 1077                                             IBRD only    XF   IBD 2017
## 1078                                             IBRD only    XF   IBD 2016
## 1079                                             IBRD only    XF   IBD 2015
## 1080                                             IBRD only    XF   IBD 2014
## 1081                                             IBRD only    XF   IBD 2013
## 1082                                             IBRD only    XF   IBD 2012
## 1083                                             IBRD only    XF   IBD 2011
## 1084                                             IBRD only    XF   IBD 2010
## 1085                                             IBRD only    XF   IBD 2009
## 1086                                             IBRD only    XF   IBD 2008
## 1087                                             IBRD only    XF   IBD 2007
## 1088                                             IBRD only    XF   IBD 2006
## 1089                                             IBRD only    XF   IBD 2005
## 1090                                             IBRD only    XF   IBD 2004
## 1091                                             IBRD only    XF   IBD 2003
## 1092                                             IBRD only    XF   IBD 2002
## 1093                                             IBRD only    XF   IBD 2001
## 1094                                             IBRD only    XF   IBD 2000
## 1095                                             IBRD only    XF   IBD 1999
## 1096                                             IBRD only    XF   IBD 1998
## 1097                                             IBRD only    XF   IBD 1997
## 1098                                             IBRD only    XF   IBD 1996
## 1099                                             IBRD only    XF   IBD 1995
## 1100                                             IBRD only    XF   IBD 1994
## 1101                                             IBRD only    XF   IBD 1993
## 1102                                             IBRD only    XF   IBD 1992
## 1103                                             IBRD only    XF   IBD 1991
## 1104                                             IBRD only    XF   IBD 1990
## 1105                                             IBRD only    XF   IBD 1989
## 1106                                             IBRD only    XF   IBD 1988
## 1107                                             IBRD only    XF   IBD 1987
## 1108                                             IBRD only    XF   IBD 1986
## 1109                                             IBRD only    XF   IBD 1985
## 1110                                             IBRD only    XF   IBD 1984
## 1111                                             IBRD only    XF   IBD 1983
## 1112                                             IBRD only    XF   IBD 1982
## 1113                                             IBRD only    XF   IBD 1981
## 1114                                             IBRD only    XF   IBD 1980
## 1115                                             IBRD only    XF   IBD 1979
## 1116                                             IBRD only    XF   IBD 1978
## 1117                                             IBRD only    XF   IBD 1977
## 1118                                             IBRD only    XF   IBD 1976
## 1119                                             IBRD only    XF   IBD 1975
## 1120                                             IBRD only    XF   IBD 1974
## 1121                                             IBRD only    XF   IBD 1973
## 1122                                             IBRD only    XF   IBD 1972
## 1123                                             IBRD only    XF   IBD 1971
## 1124                                             IBRD only    XF   IBD 1970
## 1125                                             IBRD only    XF   IBD 1969
## 1126                                             IBRD only    XF   IBD 1968
## 1127                                             IBRD only    XF   IBD 1967
## 1128                                             IBRD only    XF   IBD 1966
## 1129                                             IBRD only    XF   IBD 1965
## 1130                                             IBRD only    XF   IBD 1964
## 1131                                             IBRD only    XF   IBD 1963
## 1132                                             IBRD only    XF   IBD 1962
## 1133                                             IBRD only    XF   IBD 1961
## 1134                                             IBRD only    XF   IBD 1960
## 1135                                      IDA & IBRD total    ZT   IBT 2022
## 1136                                      IDA & IBRD total    ZT   IBT 2021
## 1137                                      IDA & IBRD total    ZT   IBT 2020
## 1138                                      IDA & IBRD total    ZT   IBT 2019
## 1139                                      IDA & IBRD total    ZT   IBT 2018
## 1140                                      IDA & IBRD total    ZT   IBT 2017
## 1141                                      IDA & IBRD total    ZT   IBT 2016
## 1142                                      IDA & IBRD total    ZT   IBT 2015
## 1143                                      IDA & IBRD total    ZT   IBT 2014
## 1144                                      IDA & IBRD total    ZT   IBT 2013
## 1145                                      IDA & IBRD total    ZT   IBT 2012
## 1146                                      IDA & IBRD total    ZT   IBT 2011
## 1147                                      IDA & IBRD total    ZT   IBT 2010
## 1148                                      IDA & IBRD total    ZT   IBT 2009
## 1149                                      IDA & IBRD total    ZT   IBT 2008
## 1150                                      IDA & IBRD total    ZT   IBT 2007
## 1151                                      IDA & IBRD total    ZT   IBT 2006
## 1152                                      IDA & IBRD total    ZT   IBT 2005
## 1153                                      IDA & IBRD total    ZT   IBT 2004
## 1154                                      IDA & IBRD total    ZT   IBT 2003
## 1155                                      IDA & IBRD total    ZT   IBT 2002
## 1156                                      IDA & IBRD total    ZT   IBT 2001
## 1157                                      IDA & IBRD total    ZT   IBT 2000
## 1158                                      IDA & IBRD total    ZT   IBT 1999
## 1159                                      IDA & IBRD total    ZT   IBT 1998
## 1160                                      IDA & IBRD total    ZT   IBT 1997
## 1161                                      IDA & IBRD total    ZT   IBT 1996
## 1162                                      IDA & IBRD total    ZT   IBT 1995
## 1163                                      IDA & IBRD total    ZT   IBT 1994
## 1164                                      IDA & IBRD total    ZT   IBT 1993
## 1165                                      IDA & IBRD total    ZT   IBT 1992
## 1166                                      IDA & IBRD total    ZT   IBT 1991
## 1167                                      IDA & IBRD total    ZT   IBT 1990
## 1168                                      IDA & IBRD total    ZT   IBT 1989
## 1169                                      IDA & IBRD total    ZT   IBT 1988
## 1170                                      IDA & IBRD total    ZT   IBT 1987
## 1171                                      IDA & IBRD total    ZT   IBT 1986
## 1172                                      IDA & IBRD total    ZT   IBT 1985
## 1173                                      IDA & IBRD total    ZT   IBT 1984
## 1174                                      IDA & IBRD total    ZT   IBT 1983
## 1175                                      IDA & IBRD total    ZT   IBT 1982
## 1176                                      IDA & IBRD total    ZT   IBT 1981
## 1177                                      IDA & IBRD total    ZT   IBT 1980
## 1178                                      IDA & IBRD total    ZT   IBT 1979
## 1179                                      IDA & IBRD total    ZT   IBT 1978
## 1180                                      IDA & IBRD total    ZT   IBT 1977
## 1181                                      IDA & IBRD total    ZT   IBT 1976
## 1182                                      IDA & IBRD total    ZT   IBT 1975
## 1183                                      IDA & IBRD total    ZT   IBT 1974
## 1184                                      IDA & IBRD total    ZT   IBT 1973
## 1185                                      IDA & IBRD total    ZT   IBT 1972
## 1186                                      IDA & IBRD total    ZT   IBT 1971
## 1187                                      IDA & IBRD total    ZT   IBT 1970
## 1188                                      IDA & IBRD total    ZT   IBT 1969
## 1189                                      IDA & IBRD total    ZT   IBT 1968
## 1190                                      IDA & IBRD total    ZT   IBT 1967
## 1191                                      IDA & IBRD total    ZT   IBT 1966
## 1192                                      IDA & IBRD total    ZT   IBT 1965
## 1193                                      IDA & IBRD total    ZT   IBT 1964
## 1194                                      IDA & IBRD total    ZT   IBT 1963
## 1195                                      IDA & IBRD total    ZT   IBT 1962
## 1196                                      IDA & IBRD total    ZT   IBT 1961
## 1197                                      IDA & IBRD total    ZT   IBT 1960
## 1198                                             IDA blend    XH   IDB 2022
## 1199                                             IDA blend    XH   IDB 2021
## 1200                                             IDA blend    XH   IDB 2020
## 1201                                             IDA blend    XH   IDB 2019
## 1202                                             IDA blend    XH   IDB 2018
## 1203                                             IDA blend    XH   IDB 2017
## 1204                                             IDA blend    XH   IDB 2016
## 1205                                             IDA blend    XH   IDB 2015
## 1206                                             IDA blend    XH   IDB 2014
## 1207                                             IDA blend    XH   IDB 2013
## 1208                                             IDA blend    XH   IDB 2012
## 1209                                             IDA blend    XH   IDB 2011
## 1210                                             IDA blend    XH   IDB 2010
## 1211                                             IDA blend    XH   IDB 2009
## 1212                                             IDA blend    XH   IDB 2008
## 1213                                             IDA blend    XH   IDB 2007
## 1214                                             IDA blend    XH   IDB 2006
## 1215                                             IDA blend    XH   IDB 2005
## 1216                                             IDA blend    XH   IDB 2004
## 1217                                             IDA blend    XH   IDB 2003
## 1218                                             IDA blend    XH   IDB 2002
## 1219                                             IDA blend    XH   IDB 2001
## 1220                                             IDA blend    XH   IDB 2000
## 1221                                             IDA blend    XH   IDB 1999
## 1222                                             IDA blend    XH   IDB 1998
## 1223                                             IDA blend    XH   IDB 1997
## 1224                                             IDA blend    XH   IDB 1996
## 1225                                             IDA blend    XH   IDB 1995
## 1226                                             IDA blend    XH   IDB 1994
## 1227                                             IDA blend    XH   IDB 1993
## 1228                                             IDA blend    XH   IDB 1992
## 1229                                             IDA blend    XH   IDB 1991
## 1230                                             IDA blend    XH   IDB 1990
## 1231                                             IDA blend    XH   IDB 1989
## 1232                                             IDA blend    XH   IDB 1988
## 1233                                             IDA blend    XH   IDB 1987
## 1234                                             IDA blend    XH   IDB 1986
## 1235                                             IDA blend    XH   IDB 1985
## 1236                                             IDA blend    XH   IDB 1984
## 1237                                             IDA blend    XH   IDB 1983
## 1238                                             IDA blend    XH   IDB 1982
## 1239                                             IDA blend    XH   IDB 1981
## 1240                                             IDA blend    XH   IDB 1980
## 1241                                             IDA blend    XH   IDB 1979
## 1242                                             IDA blend    XH   IDB 1978
## 1243                                             IDA blend    XH   IDB 1977
## 1244                                             IDA blend    XH   IDB 1976
## 1245                                             IDA blend    XH   IDB 1975
## 1246                                             IDA blend    XH   IDB 1974
## 1247                                             IDA blend    XH   IDB 1973
## 1248                                             IDA blend    XH   IDB 1972
## 1249                                             IDA blend    XH   IDB 1971
## 1250                                             IDA blend    XH   IDB 1970
## 1251                                             IDA blend    XH   IDB 1969
## 1252                                             IDA blend    XH   IDB 1968
## 1253                                             IDA blend    XH   IDB 1967
## 1254                                             IDA blend    XH   IDB 1966
## 1255                                             IDA blend    XH   IDB 1965
## 1256                                             IDA blend    XH   IDB 1964
## 1257                                             IDA blend    XH   IDB 1963
## 1258                                             IDA blend    XH   IDB 1962
## 1259                                             IDA blend    XH   IDB 1961
## 1260                                             IDA blend    XH   IDB 1960
## 1261                                              IDA only    XI   IDX 2022
## 1262                                              IDA only    XI   IDX 2021
## 1263                                              IDA only    XI   IDX 2020
## 1264                                              IDA only    XI   IDX 2019
## 1265                                              IDA only    XI   IDX 2018
## 1266                                              IDA only    XI   IDX 2017
## 1267                                              IDA only    XI   IDX 2016
## 1268                                              IDA only    XI   IDX 2015
## 1269                                              IDA only    XI   IDX 2014
## 1270                                              IDA only    XI   IDX 2013
## 1271                                              IDA only    XI   IDX 2012
## 1272                                              IDA only    XI   IDX 2011
## 1273                                              IDA only    XI   IDX 2010
## 1274                                              IDA only    XI   IDX 2009
## 1275                                              IDA only    XI   IDX 2008
## 1276                                              IDA only    XI   IDX 2007
## 1277                                              IDA only    XI   IDX 2006
## 1278                                              IDA only    XI   IDX 2005
## 1279                                              IDA only    XI   IDX 2004
## 1280                                              IDA only    XI   IDX 2003
## 1281                                              IDA only    XI   IDX 2002
## 1282                                              IDA only    XI   IDX 2001
## 1283                                              IDA only    XI   IDX 2000
## 1284                                              IDA only    XI   IDX 1999
## 1285                                              IDA only    XI   IDX 1998
## 1286                                              IDA only    XI   IDX 1997
## 1287                                              IDA only    XI   IDX 1996
## 1288                                              IDA only    XI   IDX 1995
## 1289                                              IDA only    XI   IDX 1994
## 1290                                              IDA only    XI   IDX 1993
## 1291                                              IDA only    XI   IDX 1992
## 1292                                              IDA only    XI   IDX 1991
## 1293                                              IDA only    XI   IDX 1990
## 1294                                              IDA only    XI   IDX 1989
## 1295                                              IDA only    XI   IDX 1988
## 1296                                              IDA only    XI   IDX 1987
## 1297                                              IDA only    XI   IDX 1986
## 1298                                              IDA only    XI   IDX 1985
## 1299                                              IDA only    XI   IDX 1984
## 1300                                              IDA only    XI   IDX 1983
## 1301                                              IDA only    XI   IDX 1982
## 1302                                              IDA only    XI   IDX 1981
## 1303                                              IDA only    XI   IDX 1980
## 1304                                              IDA only    XI   IDX 1979
## 1305                                              IDA only    XI   IDX 1978
## 1306                                              IDA only    XI   IDX 1977
## 1307                                              IDA only    XI   IDX 1976
## 1308                                              IDA only    XI   IDX 1975
## 1309                                              IDA only    XI   IDX 1974
## 1310                                              IDA only    XI   IDX 1973
## 1311                                              IDA only    XI   IDX 1972
## 1312                                              IDA only    XI   IDX 1971
## 1313                                              IDA only    XI   IDX 1970
## 1314                                              IDA only    XI   IDX 1969
## 1315                                              IDA only    XI   IDX 1968
## 1316                                              IDA only    XI   IDX 1967
## 1317                                              IDA only    XI   IDX 1966
## 1318                                              IDA only    XI   IDX 1965
## 1319                                              IDA only    XI   IDX 1964
## 1320                                              IDA only    XI   IDX 1963
## 1321                                              IDA only    XI   IDX 1962
## 1322                                              IDA only    XI   IDX 1961
## 1323                                              IDA only    XI   IDX 1960
## 1324                                             IDA total    XG   IDA 2022
## 1325                                             IDA total    XG   IDA 2021
## 1326                                             IDA total    XG   IDA 2020
## 1327                                             IDA total    XG   IDA 2019
## 1328                                             IDA total    XG   IDA 2018
## 1329                                             IDA total    XG   IDA 2017
## 1330                                             IDA total    XG   IDA 2016
## 1331                                             IDA total    XG   IDA 2015
## 1332                                             IDA total    XG   IDA 2014
## 1333                                             IDA total    XG   IDA 2013
## 1334                                             IDA total    XG   IDA 2012
## 1335                                             IDA total    XG   IDA 2011
## 1336                                             IDA total    XG   IDA 2010
## 1337                                             IDA total    XG   IDA 2009
## 1338                                             IDA total    XG   IDA 2008
## 1339                                             IDA total    XG   IDA 2007
## 1340                                             IDA total    XG   IDA 2006
## 1341                                             IDA total    XG   IDA 2005
## 1342                                             IDA total    XG   IDA 2004
## 1343                                             IDA total    XG   IDA 2003
## 1344                                             IDA total    XG   IDA 2002
## 1345                                             IDA total    XG   IDA 2001
## 1346                                             IDA total    XG   IDA 2000
## 1347                                             IDA total    XG   IDA 1999
## 1348                                             IDA total    XG   IDA 1998
## 1349                                             IDA total    XG   IDA 1997
## 1350                                             IDA total    XG   IDA 1996
## 1351                                             IDA total    XG   IDA 1995
## 1352                                             IDA total    XG   IDA 1994
## 1353                                             IDA total    XG   IDA 1993
## 1354                                             IDA total    XG   IDA 1992
## 1355                                             IDA total    XG   IDA 1991
## 1356                                             IDA total    XG   IDA 1990
## 1357                                             IDA total    XG   IDA 1989
## 1358                                             IDA total    XG   IDA 1988
## 1359                                             IDA total    XG   IDA 1987
## 1360                                             IDA total    XG   IDA 1986
## 1361                                             IDA total    XG   IDA 1985
## 1362                                             IDA total    XG   IDA 1984
## 1363                                             IDA total    XG   IDA 1983
## 1364                                             IDA total    XG   IDA 1982
## 1365                                             IDA total    XG   IDA 1981
## 1366                                             IDA total    XG   IDA 1980
## 1367                                             IDA total    XG   IDA 1979
## 1368                                             IDA total    XG   IDA 1978
## 1369                                             IDA total    XG   IDA 1977
## 1370                                             IDA total    XG   IDA 1976
## 1371                                             IDA total    XG   IDA 1975
## 1372                                             IDA total    XG   IDA 1974
## 1373                                             IDA total    XG   IDA 1973
## 1374                                             IDA total    XG   IDA 1972
## 1375                                             IDA total    XG   IDA 1971
## 1376                                             IDA total    XG   IDA 1970
## 1377                                             IDA total    XG   IDA 1969
## 1378                                             IDA total    XG   IDA 1968
## 1379                                             IDA total    XG   IDA 1967
## 1380                                             IDA total    XG   IDA 1966
## 1381                                             IDA total    XG   IDA 1965
## 1382                                             IDA total    XG   IDA 1964
## 1383                                             IDA total    XG   IDA 1963
## 1384                                             IDA total    XG   IDA 1962
## 1385                                             IDA total    XG   IDA 1961
## 1386                                             IDA total    XG   IDA 1960
## 1387                             Late-demographic dividend    V3   LTE 2022
## 1388                             Late-demographic dividend    V3   LTE 2021
## 1389                             Late-demographic dividend    V3   LTE 2020
## 1390                             Late-demographic dividend    V3   LTE 2019
## 1391                             Late-demographic dividend    V3   LTE 2018
## 1392                             Late-demographic dividend    V3   LTE 2017
## 1393                             Late-demographic dividend    V3   LTE 2016
## 1394                             Late-demographic dividend    V3   LTE 2015
## 1395                             Late-demographic dividend    V3   LTE 2014
## 1396                             Late-demographic dividend    V3   LTE 2013
## 1397                             Late-demographic dividend    V3   LTE 2012
## 1398                             Late-demographic dividend    V3   LTE 2011
## 1399                             Late-demographic dividend    V3   LTE 2010
## 1400                             Late-demographic dividend    V3   LTE 2009
## 1401                             Late-demographic dividend    V3   LTE 2008
## 1402                             Late-demographic dividend    V3   LTE 2007
## 1403                             Late-demographic dividend    V3   LTE 2006
## 1404                             Late-demographic dividend    V3   LTE 2005
## 1405                             Late-demographic dividend    V3   LTE 2004
## 1406                             Late-demographic dividend    V3   LTE 2003
## 1407                             Late-demographic dividend    V3   LTE 2002
## 1408                             Late-demographic dividend    V3   LTE 2001
## 1409                             Late-demographic dividend    V3   LTE 2000
## 1410                             Late-demographic dividend    V3   LTE 1999
## 1411                             Late-demographic dividend    V3   LTE 1998
## 1412                             Late-demographic dividend    V3   LTE 1997
## 1413                             Late-demographic dividend    V3   LTE 1996
## 1414                             Late-demographic dividend    V3   LTE 1995
## 1415                             Late-demographic dividend    V3   LTE 1994
## 1416                             Late-demographic dividend    V3   LTE 1993
## 1417                             Late-demographic dividend    V3   LTE 1992
## 1418                             Late-demographic dividend    V3   LTE 1991
## 1419                             Late-demographic dividend    V3   LTE 1990
## 1420                             Late-demographic dividend    V3   LTE 1989
## 1421                             Late-demographic dividend    V3   LTE 1988
## 1422                             Late-demographic dividend    V3   LTE 1987
## 1423                             Late-demographic dividend    V3   LTE 1986
## 1424                             Late-demographic dividend    V3   LTE 1985
## 1425                             Late-demographic dividend    V3   LTE 1984
## 1426                             Late-demographic dividend    V3   LTE 1983
## 1427                             Late-demographic dividend    V3   LTE 1982
## 1428                             Late-demographic dividend    V3   LTE 1981
## 1429                             Late-demographic dividend    V3   LTE 1980
## 1430                             Late-demographic dividend    V3   LTE 1979
## 1431                             Late-demographic dividend    V3   LTE 1978
## 1432                             Late-demographic dividend    V3   LTE 1977
## 1433                             Late-demographic dividend    V3   LTE 1976
## 1434                             Late-demographic dividend    V3   LTE 1975
## 1435                             Late-demographic dividend    V3   LTE 1974
## 1436                             Late-demographic dividend    V3   LTE 1973
## 1437                             Late-demographic dividend    V3   LTE 1972
## 1438                             Late-demographic dividend    V3   LTE 1971
## 1439                             Late-demographic dividend    V3   LTE 1970
## 1440                             Late-demographic dividend    V3   LTE 1969
## 1441                             Late-demographic dividend    V3   LTE 1968
## 1442                             Late-demographic dividend    V3   LTE 1967
## 1443                             Late-demographic dividend    V3   LTE 1966
## 1444                             Late-demographic dividend    V3   LTE 1965
## 1445                             Late-demographic dividend    V3   LTE 1964
## 1446                             Late-demographic dividend    V3   LTE 1963
## 1447                             Late-demographic dividend    V3   LTE 1962
## 1448                             Late-demographic dividend    V3   LTE 1961
## 1449                             Late-demographic dividend    V3   LTE 1960
## 1450                             Latin America & Caribbean    ZJ   LCN 2022
## 1451                             Latin America & Caribbean    ZJ   LCN 2021
## 1452                             Latin America & Caribbean    ZJ   LCN 2020
## 1453                             Latin America & Caribbean    ZJ   LCN 2019
## 1454                             Latin America & Caribbean    ZJ   LCN 2018
## 1455                             Latin America & Caribbean    ZJ   LCN 2017
## 1456                             Latin America & Caribbean    ZJ   LCN 2016
## 1457                             Latin America & Caribbean    ZJ   LCN 2015
## 1458                             Latin America & Caribbean    ZJ   LCN 2014
## 1459                             Latin America & Caribbean    ZJ   LCN 2013
## 1460                             Latin America & Caribbean    ZJ   LCN 2012
## 1461                             Latin America & Caribbean    ZJ   LCN 2011
## 1462                             Latin America & Caribbean    ZJ   LCN 2010
## 1463                             Latin America & Caribbean    ZJ   LCN 2009
## 1464                             Latin America & Caribbean    ZJ   LCN 2008
## 1465                             Latin America & Caribbean    ZJ   LCN 2007
## 1466                             Latin America & Caribbean    ZJ   LCN 2006
## 1467                             Latin America & Caribbean    ZJ   LCN 2005
## 1468                             Latin America & Caribbean    ZJ   LCN 2004
## 1469                             Latin America & Caribbean    ZJ   LCN 2003
## 1470                             Latin America & Caribbean    ZJ   LCN 2002
## 1471                             Latin America & Caribbean    ZJ   LCN 2001
## 1472                             Latin America & Caribbean    ZJ   LCN 2000
## 1473                             Latin America & Caribbean    ZJ   LCN 1999
## 1474                             Latin America & Caribbean    ZJ   LCN 1998
## 1475                             Latin America & Caribbean    ZJ   LCN 1997
## 1476                             Latin America & Caribbean    ZJ   LCN 1996
## 1477                             Latin America & Caribbean    ZJ   LCN 1995
## 1478                             Latin America & Caribbean    ZJ   LCN 1994
## 1479                             Latin America & Caribbean    ZJ   LCN 1993
## 1480                             Latin America & Caribbean    ZJ   LCN 1992
## 1481                             Latin America & Caribbean    ZJ   LCN 1991
## 1482                             Latin America & Caribbean    ZJ   LCN 1990
## 1483                             Latin America & Caribbean    ZJ   LCN 1989
## 1484                             Latin America & Caribbean    ZJ   LCN 1988
## 1485                             Latin America & Caribbean    ZJ   LCN 1987
## 1486                             Latin America & Caribbean    ZJ   LCN 1986
## 1487                             Latin America & Caribbean    ZJ   LCN 1985
## 1488                             Latin America & Caribbean    ZJ   LCN 1984
## 1489                             Latin America & Caribbean    ZJ   LCN 1983
## 1490                             Latin America & Caribbean    ZJ   LCN 1982
## 1491                             Latin America & Caribbean    ZJ   LCN 1981
## 1492                             Latin America & Caribbean    ZJ   LCN 1980
## 1493                             Latin America & Caribbean    ZJ   LCN 1979
## 1494                             Latin America & Caribbean    ZJ   LCN 1978
## 1495                             Latin America & Caribbean    ZJ   LCN 1977
## 1496                             Latin America & Caribbean    ZJ   LCN 1976
## 1497                             Latin America & Caribbean    ZJ   LCN 1975
## 1498                             Latin America & Caribbean    ZJ   LCN 1974
## 1499                             Latin America & Caribbean    ZJ   LCN 1973
## 1500                             Latin America & Caribbean    ZJ   LCN 1972
## 1501                             Latin America & Caribbean    ZJ   LCN 1971
## 1502                             Latin America & Caribbean    ZJ   LCN 1970
## 1503                             Latin America & Caribbean    ZJ   LCN 1969
## 1504                             Latin America & Caribbean    ZJ   LCN 1968
## 1505                             Latin America & Caribbean    ZJ   LCN 1967
## 1506                             Latin America & Caribbean    ZJ   LCN 1966
## 1507                             Latin America & Caribbean    ZJ   LCN 1965
## 1508                             Latin America & Caribbean    ZJ   LCN 1964
## 1509                             Latin America & Caribbean    ZJ   LCN 1963
## 1510                             Latin America & Caribbean    ZJ   LCN 1962
## 1511                             Latin America & Caribbean    ZJ   LCN 1961
## 1512                             Latin America & Caribbean    ZJ   LCN 1960
## 1513     Latin America & Caribbean (excluding high income)    XJ   LAC 2022
## 1514     Latin America & Caribbean (excluding high income)    XJ   LAC 2021
## 1515     Latin America & Caribbean (excluding high income)    XJ   LAC 2020
## 1516     Latin America & Caribbean (excluding high income)    XJ   LAC 2019
## 1517     Latin America & Caribbean (excluding high income)    XJ   LAC 2018
## 1518     Latin America & Caribbean (excluding high income)    XJ   LAC 2017
## 1519     Latin America & Caribbean (excluding high income)    XJ   LAC 2016
## 1520     Latin America & Caribbean (excluding high income)    XJ   LAC 2015
## 1521     Latin America & Caribbean (excluding high income)    XJ   LAC 2014
## 1522     Latin America & Caribbean (excluding high income)    XJ   LAC 2013
## 1523     Latin America & Caribbean (excluding high income)    XJ   LAC 2012
## 1524     Latin America & Caribbean (excluding high income)    XJ   LAC 2011
## 1525     Latin America & Caribbean (excluding high income)    XJ   LAC 2010
## 1526     Latin America & Caribbean (excluding high income)    XJ   LAC 2009
## 1527     Latin America & Caribbean (excluding high income)    XJ   LAC 2008
## 1528     Latin America & Caribbean (excluding high income)    XJ   LAC 2007
## 1529     Latin America & Caribbean (excluding high income)    XJ   LAC 2006
## 1530     Latin America & Caribbean (excluding high income)    XJ   LAC 2005
## 1531     Latin America & Caribbean (excluding high income)    XJ   LAC 2004
## 1532     Latin America & Caribbean (excluding high income)    XJ   LAC 2003
## 1533     Latin America & Caribbean (excluding high income)    XJ   LAC 2002
## 1534     Latin America & Caribbean (excluding high income)    XJ   LAC 2001
## 1535     Latin America & Caribbean (excluding high income)    XJ   LAC 2000
## 1536     Latin America & Caribbean (excluding high income)    XJ   LAC 1999
## 1537     Latin America & Caribbean (excluding high income)    XJ   LAC 1998
## 1538     Latin America & Caribbean (excluding high income)    XJ   LAC 1997
## 1539     Latin America & Caribbean (excluding high income)    XJ   LAC 1996
## 1540     Latin America & Caribbean (excluding high income)    XJ   LAC 1995
## 1541     Latin America & Caribbean (excluding high income)    XJ   LAC 1994
## 1542     Latin America & Caribbean (excluding high income)    XJ   LAC 1993
## 1543     Latin America & Caribbean (excluding high income)    XJ   LAC 1992
## 1544     Latin America & Caribbean (excluding high income)    XJ   LAC 1991
## 1545     Latin America & Caribbean (excluding high income)    XJ   LAC 1990
## 1546     Latin America & Caribbean (excluding high income)    XJ   LAC 1989
## 1547     Latin America & Caribbean (excluding high income)    XJ   LAC 1988
## 1548     Latin America & Caribbean (excluding high income)    XJ   LAC 1987
## 1549     Latin America & Caribbean (excluding high income)    XJ   LAC 1986
## 1550     Latin America & Caribbean (excluding high income)    XJ   LAC 1985
## 1551     Latin America & Caribbean (excluding high income)    XJ   LAC 1984
## 1552     Latin America & Caribbean (excluding high income)    XJ   LAC 1983
## 1553     Latin America & Caribbean (excluding high income)    XJ   LAC 1982
## 1554     Latin America & Caribbean (excluding high income)    XJ   LAC 1981
## 1555     Latin America & Caribbean (excluding high income)    XJ   LAC 1980
## 1556     Latin America & Caribbean (excluding high income)    XJ   LAC 1979
## 1557     Latin America & Caribbean (excluding high income)    XJ   LAC 1978
## 1558     Latin America & Caribbean (excluding high income)    XJ   LAC 1977
## 1559     Latin America & Caribbean (excluding high income)    XJ   LAC 1976
## 1560     Latin America & Caribbean (excluding high income)    XJ   LAC 1975
## 1561     Latin America & Caribbean (excluding high income)    XJ   LAC 1974
## 1562     Latin America & Caribbean (excluding high income)    XJ   LAC 1973
## 1563     Latin America & Caribbean (excluding high income)    XJ   LAC 1972
## 1564     Latin America & Caribbean (excluding high income)    XJ   LAC 1971
## 1565     Latin America & Caribbean (excluding high income)    XJ   LAC 1970
## 1566     Latin America & Caribbean (excluding high income)    XJ   LAC 1969
## 1567     Latin America & Caribbean (excluding high income)    XJ   LAC 1968
## 1568     Latin America & Caribbean (excluding high income)    XJ   LAC 1967
## 1569     Latin America & Caribbean (excluding high income)    XJ   LAC 1966
## 1570     Latin America & Caribbean (excluding high income)    XJ   LAC 1965
## 1571     Latin America & Caribbean (excluding high income)    XJ   LAC 1964
## 1572     Latin America & Caribbean (excluding high income)    XJ   LAC 1963
## 1573     Latin America & Caribbean (excluding high income)    XJ   LAC 1962
## 1574     Latin America & Caribbean (excluding high income)    XJ   LAC 1961
## 1575     Latin America & Caribbean (excluding high income)    XJ   LAC 1960
## 1576  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2022
## 1577  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2021
## 1578  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2020
## 1579  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2019
## 1580  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2018
## 1581  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2017
## 1582  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2016
## 1583  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2015
## 1584  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2014
## 1585  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2013
## 1586  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2012
## 1587  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2011
## 1588  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2010
## 1589  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2009
## 1590  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2008
## 1591  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2007
## 1592  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2006
## 1593  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2005
## 1594  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2004
## 1595  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2003
## 1596  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2002
## 1597  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2001
## 1598  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2000
## 1599  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1999
## 1600  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1998
## 1601  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1997
## 1602  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1996
## 1603  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1995
## 1604  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1994
## 1605  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1993
## 1606  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1992
## 1607  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1991
## 1608  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1990
## 1609  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1989
## 1610  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1988
## 1611  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1987
## 1612  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1986
## 1613  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1985
## 1614  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1984
## 1615  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1983
## 1616  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1982
## 1617  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1981
## 1618  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1980
## 1619  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1979
## 1620  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1978
## 1621  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1977
## 1622  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1976
## 1623  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1975
## 1624  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1974
## 1625  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1973
## 1626  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1972
## 1627  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1971
## 1628  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1970
## 1629  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1969
## 1630  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1968
## 1631  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1967
## 1632  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1966
## 1633  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1965
## 1634  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1964
## 1635  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1963
## 1636  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1962
## 1637  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1961
## 1638  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1960
## 1639          Least developed countries: UN classification    XL   LDC 2022
## 1640          Least developed countries: UN classification    XL   LDC 2021
## 1641          Least developed countries: UN classification    XL   LDC 2020
## 1642          Least developed countries: UN classification    XL   LDC 2019
## 1643          Least developed countries: UN classification    XL   LDC 2018
## 1644          Least developed countries: UN classification    XL   LDC 2017
## 1645          Least developed countries: UN classification    XL   LDC 2016
## 1646          Least developed countries: UN classification    XL   LDC 2015
## 1647          Least developed countries: UN classification    XL   LDC 2014
## 1648          Least developed countries: UN classification    XL   LDC 2013
## 1649          Least developed countries: UN classification    XL   LDC 2012
## 1650          Least developed countries: UN classification    XL   LDC 2011
## 1651          Least developed countries: UN classification    XL   LDC 2010
## 1652          Least developed countries: UN classification    XL   LDC 2009
## 1653          Least developed countries: UN classification    XL   LDC 2008
## 1654          Least developed countries: UN classification    XL   LDC 2007
## 1655          Least developed countries: UN classification    XL   LDC 2006
## 1656          Least developed countries: UN classification    XL   LDC 2005
## 1657          Least developed countries: UN classification    XL   LDC 2004
## 1658          Least developed countries: UN classification    XL   LDC 2003
## 1659          Least developed countries: UN classification    XL   LDC 2002
## 1660          Least developed countries: UN classification    XL   LDC 2001
## 1661          Least developed countries: UN classification    XL   LDC 2000
## 1662          Least developed countries: UN classification    XL   LDC 1999
## 1663          Least developed countries: UN classification    XL   LDC 1998
## 1664          Least developed countries: UN classification    XL   LDC 1997
## 1665          Least developed countries: UN classification    XL   LDC 1996
## 1666          Least developed countries: UN classification    XL   LDC 1995
## 1667          Least developed countries: UN classification    XL   LDC 1994
## 1668          Least developed countries: UN classification    XL   LDC 1993
## 1669          Least developed countries: UN classification    XL   LDC 1992
## 1670          Least developed countries: UN classification    XL   LDC 1991
## 1671          Least developed countries: UN classification    XL   LDC 1990
## 1672          Least developed countries: UN classification    XL   LDC 1989
## 1673          Least developed countries: UN classification    XL   LDC 1988
## 1674          Least developed countries: UN classification    XL   LDC 1987
## 1675          Least developed countries: UN classification    XL   LDC 1986
## 1676          Least developed countries: UN classification    XL   LDC 1985
## 1677          Least developed countries: UN classification    XL   LDC 1984
## 1678          Least developed countries: UN classification    XL   LDC 1983
## 1679          Least developed countries: UN classification    XL   LDC 1982
## 1680          Least developed countries: UN classification    XL   LDC 1981
## 1681          Least developed countries: UN classification    XL   LDC 1980
## 1682          Least developed countries: UN classification    XL   LDC 1979
## 1683          Least developed countries: UN classification    XL   LDC 1978
## 1684          Least developed countries: UN classification    XL   LDC 1977
## 1685          Least developed countries: UN classification    XL   LDC 1976
## 1686          Least developed countries: UN classification    XL   LDC 1975
## 1687          Least developed countries: UN classification    XL   LDC 1974
## 1688          Least developed countries: UN classification    XL   LDC 1973
## 1689          Least developed countries: UN classification    XL   LDC 1972
## 1690          Least developed countries: UN classification    XL   LDC 1971
## 1691          Least developed countries: UN classification    XL   LDC 1970
## 1692          Least developed countries: UN classification    XL   LDC 1969
## 1693          Least developed countries: UN classification    XL   LDC 1968
## 1694          Least developed countries: UN classification    XL   LDC 1967
## 1695          Least developed countries: UN classification    XL   LDC 1966
## 1696          Least developed countries: UN classification    XL   LDC 1965
## 1697          Least developed countries: UN classification    XL   LDC 1964
## 1698          Least developed countries: UN classification    XL   LDC 1963
## 1699          Least developed countries: UN classification    XL   LDC 1962
## 1700          Least developed countries: UN classification    XL   LDC 1961
## 1701          Least developed countries: UN classification    XL   LDC 1960
## 1702                                   Low & middle income    XO   LMY 2022
## 1703                                   Low & middle income    XO   LMY 2021
## 1704                                   Low & middle income    XO   LMY 2020
## 1705                                   Low & middle income    XO   LMY 2019
## 1706                                   Low & middle income    XO   LMY 2018
## 1707                                   Low & middle income    XO   LMY 2017
## 1708                                   Low & middle income    XO   LMY 2016
## 1709                                   Low & middle income    XO   LMY 2015
## 1710                                   Low & middle income    XO   LMY 2014
## 1711                                   Low & middle income    XO   LMY 2013
## 1712                                   Low & middle income    XO   LMY 2012
## 1713                                   Low & middle income    XO   LMY 2011
## 1714                                   Low & middle income    XO   LMY 2010
## 1715                                   Low & middle income    XO   LMY 2009
## 1716                                   Low & middle income    XO   LMY 2008
## 1717                                   Low & middle income    XO   LMY 2007
## 1718                                   Low & middle income    XO   LMY 2006
## 1719                                   Low & middle income    XO   LMY 2005
## 1720                                   Low & middle income    XO   LMY 2004
## 1721                                   Low & middle income    XO   LMY 2003
## 1722                                   Low & middle income    XO   LMY 2002
## 1723                                   Low & middle income    XO   LMY 2001
## 1724                                   Low & middle income    XO   LMY 2000
## 1725                                   Low & middle income    XO   LMY 1999
## 1726                                   Low & middle income    XO   LMY 1998
## 1727                                   Low & middle income    XO   LMY 1997
## 1728                                   Low & middle income    XO   LMY 1996
## 1729                                   Low & middle income    XO   LMY 1995
## 1730                                   Low & middle income    XO   LMY 1994
## 1731                                   Low & middle income    XO   LMY 1993
## 1732                                   Low & middle income    XO   LMY 1992
## 1733                                   Low & middle income    XO   LMY 1991
## 1734                                   Low & middle income    XO   LMY 1990
## 1735                                   Low & middle income    XO   LMY 1989
## 1736                                   Low & middle income    XO   LMY 1988
## 1737                                   Low & middle income    XO   LMY 1987
## 1738                                   Low & middle income    XO   LMY 1986
## 1739                                   Low & middle income    XO   LMY 1985
## 1740                                   Low & middle income    XO   LMY 1984
## 1741                                   Low & middle income    XO   LMY 1983
## 1742                                   Low & middle income    XO   LMY 1982
## 1743                                   Low & middle income    XO   LMY 1981
## 1744                                   Low & middle income    XO   LMY 1980
## 1745                                   Low & middle income    XO   LMY 1979
## 1746                                   Low & middle income    XO   LMY 1978
## 1747                                   Low & middle income    XO   LMY 1977
## 1748                                   Low & middle income    XO   LMY 1976
## 1749                                   Low & middle income    XO   LMY 1975
## 1750                                   Low & middle income    XO   LMY 1974
## 1751                                   Low & middle income    XO   LMY 1973
## 1752                                   Low & middle income    XO   LMY 1972
## 1753                                   Low & middle income    XO   LMY 1971
## 1754                                   Low & middle income    XO   LMY 1970
## 1755                                   Low & middle income    XO   LMY 1969
## 1756                                   Low & middle income    XO   LMY 1968
## 1757                                   Low & middle income    XO   LMY 1967
## 1758                                   Low & middle income    XO   LMY 1966
## 1759                                   Low & middle income    XO   LMY 1965
## 1760                                   Low & middle income    XO   LMY 1964
## 1761                                   Low & middle income    XO   LMY 1963
## 1762                                   Low & middle income    XO   LMY 1962
## 1763                                   Low & middle income    XO   LMY 1961
## 1764                                   Low & middle income    XO   LMY 1960
## 1765                                            Low income    XM       2022
## 1766                                            Low income    XM       2021
## 1767                                            Low income    XM       2020
## 1768                                            Low income    XM       2019
## 1769                                            Low income    XM       2018
## 1770                                            Low income    XM       2017
## 1771                                            Low income    XM       2016
## 1772                                            Low income    XM       2015
## 1773                                            Low income    XM       2014
## 1774                                            Low income    XM       2013
## 1775                                            Low income    XM       2012
## 1776                                            Low income    XM       2011
## 1777                                            Low income    XM       2010
## 1778                                            Low income    XM       2009
## 1779                                            Low income    XM       2008
## 1780                                            Low income    XM       2007
## 1781                                            Low income    XM       2006
## 1782                                            Low income    XM       2005
## 1783                                            Low income    XM       2004
## 1784                                            Low income    XM       2003
## 1785                                            Low income    XM       2002
## 1786                                            Low income    XM       2001
## 1787                                            Low income    XM       2000
## 1788                                            Low income    XM       1999
## 1789                                            Low income    XM       1998
## 1790                                            Low income    XM       1997
## 1791                                            Low income    XM       1996
## 1792                                            Low income    XM       1995
## 1793                                            Low income    XM       1994
## 1794                                            Low income    XM       1993
## 1795                                            Low income    XM       1992
## 1796                                            Low income    XM       1991
## 1797                                            Low income    XM       1990
## 1798                                            Low income    XM       1989
## 1799                                            Low income    XM       1988
## 1800                                            Low income    XM       1987
## 1801                                            Low income    XM       1986
## 1802                                            Low income    XM       1985
## 1803                                            Low income    XM       1984
## 1804                                            Low income    XM       1983
## 1805                                            Low income    XM       1982
## 1806                                            Low income    XM       1981
## 1807                                            Low income    XM       1980
## 1808                                            Low income    XM       1979
## 1809                                            Low income    XM       1978
## 1810                                            Low income    XM       1977
## 1811                                            Low income    XM       1976
## 1812                                            Low income    XM       1975
## 1813                                            Low income    XM       1974
## 1814                                            Low income    XM       1973
## 1815                                            Low income    XM       1972
## 1816                                            Low income    XM       1971
## 1817                                            Low income    XM       1970
## 1818                                            Low income    XM       1969
## 1819                                            Low income    XM       1968
## 1820                                            Low income    XM       1967
## 1821                                            Low income    XM       1966
## 1822                                            Low income    XM       1965
## 1823                                            Low income    XM       1964
## 1824                                            Low income    XM       1963
## 1825                                            Low income    XM       1962
## 1826                                            Low income    XM       1961
## 1827                                            Low income    XM       1960
## 1828                                   Lower middle income    XN       2022
## 1829                                   Lower middle income    XN       2021
## 1830                                   Lower middle income    XN       2020
## 1831                                   Lower middle income    XN       2019
## 1832                                   Lower middle income    XN       2018
## 1833                                   Lower middle income    XN       2017
## 1834                                   Lower middle income    XN       2016
## 1835                                   Lower middle income    XN       2015
## 1836                                   Lower middle income    XN       2014
## 1837                                   Lower middle income    XN       2013
## 1838                                   Lower middle income    XN       2012
## 1839                                   Lower middle income    XN       2011
## 1840                                   Lower middle income    XN       2010
## 1841                                   Lower middle income    XN       2009
## 1842                                   Lower middle income    XN       2008
## 1843                                   Lower middle income    XN       2007
## 1844                                   Lower middle income    XN       2006
## 1845                                   Lower middle income    XN       2005
## 1846                                   Lower middle income    XN       2004
## 1847                                   Lower middle income    XN       2003
## 1848                                   Lower middle income    XN       2002
## 1849                                   Lower middle income    XN       2001
## 1850                                   Lower middle income    XN       2000
## 1851                                   Lower middle income    XN       1999
## 1852                                   Lower middle income    XN       1998
## 1853                                   Lower middle income    XN       1997
## 1854                                   Lower middle income    XN       1996
## 1855                                   Lower middle income    XN       1995
## 1856                                   Lower middle income    XN       1994
## 1857                                   Lower middle income    XN       1993
## 1858                                   Lower middle income    XN       1992
## 1859                                   Lower middle income    XN       1991
## 1860                                   Lower middle income    XN       1990
## 1861                                   Lower middle income    XN       1989
## 1862                                   Lower middle income    XN       1988
## 1863                                   Lower middle income    XN       1987
## 1864                                   Lower middle income    XN       1986
## 1865                                   Lower middle income    XN       1985
## 1866                                   Lower middle income    XN       1984
## 1867                                   Lower middle income    XN       1983
## 1868                                   Lower middle income    XN       1982
## 1869                                   Lower middle income    XN       1981
## 1870                                   Lower middle income    XN       1980
## 1871                                   Lower middle income    XN       1979
## 1872                                   Lower middle income    XN       1978
## 1873                                   Lower middle income    XN       1977
## 1874                                   Lower middle income    XN       1976
## 1875                                   Lower middle income    XN       1975
## 1876                                   Lower middle income    XN       1974
## 1877                                   Lower middle income    XN       1973
## 1878                                   Lower middle income    XN       1972
## 1879                                   Lower middle income    XN       1971
## 1880                                   Lower middle income    XN       1970
## 1881                                   Lower middle income    XN       1969
## 1882                                   Lower middle income    XN       1968
## 1883                                   Lower middle income    XN       1967
## 1884                                   Lower middle income    XN       1966
## 1885                                   Lower middle income    XN       1965
## 1886                                   Lower middle income    XN       1964
## 1887                                   Lower middle income    XN       1963
## 1888                                   Lower middle income    XN       1962
## 1889                                   Lower middle income    XN       1961
## 1890                                   Lower middle income    XN       1960
## 1891                            Middle East & North Africa    ZQ   MEA 2022
## 1892                            Middle East & North Africa    ZQ   MEA 2021
## 1893                            Middle East & North Africa    ZQ   MEA 2020
## 1894                            Middle East & North Africa    ZQ   MEA 2019
## 1895                            Middle East & North Africa    ZQ   MEA 2018
## 1896                            Middle East & North Africa    ZQ   MEA 2017
## 1897                            Middle East & North Africa    ZQ   MEA 2016
## 1898                            Middle East & North Africa    ZQ   MEA 2015
## 1899                            Middle East & North Africa    ZQ   MEA 2014
## 1900                            Middle East & North Africa    ZQ   MEA 2013
## 1901                            Middle East & North Africa    ZQ   MEA 2012
## 1902                            Middle East & North Africa    ZQ   MEA 2011
## 1903                            Middle East & North Africa    ZQ   MEA 2010
## 1904                            Middle East & North Africa    ZQ   MEA 2009
## 1905                            Middle East & North Africa    ZQ   MEA 2008
## 1906                            Middle East & North Africa    ZQ   MEA 2007
## 1907                            Middle East & North Africa    ZQ   MEA 2006
## 1908                            Middle East & North Africa    ZQ   MEA 2005
## 1909                            Middle East & North Africa    ZQ   MEA 2004
## 1910                            Middle East & North Africa    ZQ   MEA 2003
## 1911                            Middle East & North Africa    ZQ   MEA 2002
## 1912                            Middle East & North Africa    ZQ   MEA 2001
## 1913                            Middle East & North Africa    ZQ   MEA 2000
## 1914                            Middle East & North Africa    ZQ   MEA 1999
## 1915                            Middle East & North Africa    ZQ   MEA 1998
## 1916                            Middle East & North Africa    ZQ   MEA 1997
## 1917                            Middle East & North Africa    ZQ   MEA 1996
## 1918                            Middle East & North Africa    ZQ   MEA 1995
## 1919                            Middle East & North Africa    ZQ   MEA 1994
## 1920                            Middle East & North Africa    ZQ   MEA 1993
## 1921                            Middle East & North Africa    ZQ   MEA 1992
## 1922                            Middle East & North Africa    ZQ   MEA 1991
## 1923                            Middle East & North Africa    ZQ   MEA 1990
## 1924                            Middle East & North Africa    ZQ   MEA 1989
## 1925                            Middle East & North Africa    ZQ   MEA 1988
## 1926                            Middle East & North Africa    ZQ   MEA 1987
## 1927                            Middle East & North Africa    ZQ   MEA 1986
## 1928                            Middle East & North Africa    ZQ   MEA 1985
## 1929                            Middle East & North Africa    ZQ   MEA 1984
## 1930                            Middle East & North Africa    ZQ   MEA 1983
## 1931                            Middle East & North Africa    ZQ   MEA 1982
## 1932                            Middle East & North Africa    ZQ   MEA 1981
## 1933                            Middle East & North Africa    ZQ   MEA 1980
## 1934                            Middle East & North Africa    ZQ   MEA 1979
## 1935                            Middle East & North Africa    ZQ   MEA 1978
## 1936                            Middle East & North Africa    ZQ   MEA 1977
## 1937                            Middle East & North Africa    ZQ   MEA 1976
## 1938                            Middle East & North Africa    ZQ   MEA 1975
## 1939                            Middle East & North Africa    ZQ   MEA 1974
## 1940                            Middle East & North Africa    ZQ   MEA 1973
## 1941                            Middle East & North Africa    ZQ   MEA 1972
## 1942                            Middle East & North Africa    ZQ   MEA 1971
## 1943                            Middle East & North Africa    ZQ   MEA 1970
## 1944                            Middle East & North Africa    ZQ   MEA 1969
## 1945                            Middle East & North Africa    ZQ   MEA 1968
## 1946                            Middle East & North Africa    ZQ   MEA 1967
## 1947                            Middle East & North Africa    ZQ   MEA 1966
## 1948                            Middle East & North Africa    ZQ   MEA 1965
## 1949                            Middle East & North Africa    ZQ   MEA 1964
## 1950                            Middle East & North Africa    ZQ   MEA 1963
## 1951                            Middle East & North Africa    ZQ   MEA 1962
## 1952                            Middle East & North Africa    ZQ   MEA 1961
## 1953                            Middle East & North Africa    ZQ   MEA 1960
## 1954    Middle East & North Africa (excluding high income)    XQ   MNA 2022
## 1955    Middle East & North Africa (excluding high income)    XQ   MNA 2021
## 1956    Middle East & North Africa (excluding high income)    XQ   MNA 2020
## 1957    Middle East & North Africa (excluding high income)    XQ   MNA 2019
## 1958    Middle East & North Africa (excluding high income)    XQ   MNA 2018
## 1959    Middle East & North Africa (excluding high income)    XQ   MNA 2017
## 1960    Middle East & North Africa (excluding high income)    XQ   MNA 2016
## 1961    Middle East & North Africa (excluding high income)    XQ   MNA 2015
## 1962    Middle East & North Africa (excluding high income)    XQ   MNA 2014
## 1963    Middle East & North Africa (excluding high income)    XQ   MNA 2013
## 1964    Middle East & North Africa (excluding high income)    XQ   MNA 2012
## 1965    Middle East & North Africa (excluding high income)    XQ   MNA 2011
## 1966    Middle East & North Africa (excluding high income)    XQ   MNA 2010
## 1967    Middle East & North Africa (excluding high income)    XQ   MNA 2009
## 1968    Middle East & North Africa (excluding high income)    XQ   MNA 2008
## 1969    Middle East & North Africa (excluding high income)    XQ   MNA 2007
## 1970    Middle East & North Africa (excluding high income)    XQ   MNA 2006
## 1971    Middle East & North Africa (excluding high income)    XQ   MNA 2005
## 1972    Middle East & North Africa (excluding high income)    XQ   MNA 2004
## 1973    Middle East & North Africa (excluding high income)    XQ   MNA 2003
## 1974    Middle East & North Africa (excluding high income)    XQ   MNA 2002
## 1975    Middle East & North Africa (excluding high income)    XQ   MNA 2001
## 1976    Middle East & North Africa (excluding high income)    XQ   MNA 2000
## 1977    Middle East & North Africa (excluding high income)    XQ   MNA 1999
## 1978    Middle East & North Africa (excluding high income)    XQ   MNA 1998
## 1979    Middle East & North Africa (excluding high income)    XQ   MNA 1997
## 1980    Middle East & North Africa (excluding high income)    XQ   MNA 1996
## 1981    Middle East & North Africa (excluding high income)    XQ   MNA 1995
## 1982    Middle East & North Africa (excluding high income)    XQ   MNA 1994
## 1983    Middle East & North Africa (excluding high income)    XQ   MNA 1993
## 1984    Middle East & North Africa (excluding high income)    XQ   MNA 1992
## 1985    Middle East & North Africa (excluding high income)    XQ   MNA 1991
## 1986    Middle East & North Africa (excluding high income)    XQ   MNA 1990
## 1987    Middle East & North Africa (excluding high income)    XQ   MNA 1989
## 1988    Middle East & North Africa (excluding high income)    XQ   MNA 1988
## 1989    Middle East & North Africa (excluding high income)    XQ   MNA 1987
## 1990    Middle East & North Africa (excluding high income)    XQ   MNA 1986
## 1991    Middle East & North Africa (excluding high income)    XQ   MNA 1985
## 1992    Middle East & North Africa (excluding high income)    XQ   MNA 1984
## 1993    Middle East & North Africa (excluding high income)    XQ   MNA 1983
## 1994    Middle East & North Africa (excluding high income)    XQ   MNA 1982
## 1995    Middle East & North Africa (excluding high income)    XQ   MNA 1981
## 1996    Middle East & North Africa (excluding high income)    XQ   MNA 1980
## 1997    Middle East & North Africa (excluding high income)    XQ   MNA 1979
## 1998    Middle East & North Africa (excluding high income)    XQ   MNA 1978
## 1999    Middle East & North Africa (excluding high income)    XQ   MNA 1977
## 2000    Middle East & North Africa (excluding high income)    XQ   MNA 1976
## 2001    Middle East & North Africa (excluding high income)    XQ   MNA 1975
## 2002    Middle East & North Africa (excluding high income)    XQ   MNA 1974
## 2003    Middle East & North Africa (excluding high income)    XQ   MNA 1973
## 2004    Middle East & North Africa (excluding high income)    XQ   MNA 1972
## 2005    Middle East & North Africa (excluding high income)    XQ   MNA 1971
## 2006    Middle East & North Africa (excluding high income)    XQ   MNA 1970
## 2007    Middle East & North Africa (excluding high income)    XQ   MNA 1969
## 2008    Middle East & North Africa (excluding high income)    XQ   MNA 1968
## 2009    Middle East & North Africa (excluding high income)    XQ   MNA 1967
## 2010    Middle East & North Africa (excluding high income)    XQ   MNA 1966
## 2011    Middle East & North Africa (excluding high income)    XQ   MNA 1965
## 2012    Middle East & North Africa (excluding high income)    XQ   MNA 1964
## 2013    Middle East & North Africa (excluding high income)    XQ   MNA 1963
## 2014    Middle East & North Africa (excluding high income)    XQ   MNA 1962
## 2015    Middle East & North Africa (excluding high income)    XQ   MNA 1961
## 2016    Middle East & North Africa (excluding high income)    XQ   MNA 1960
## 2017     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2022
## 2018     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2021
## 2019     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2020
## 2020     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2019
## 2021     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2018
## 2022     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2017
## 2023     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2016
## 2024     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2015
## 2025     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2014
## 2026     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2013
## 2027     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2012
## 2028     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2011
## 2029     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2010
## 2030     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2009
## 2031     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2008
## 2032     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2007
## 2033     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2006
## 2034     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2005
## 2035     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2004
## 2036     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2003
## 2037     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2002
## 2038     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2001
## 2039     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2000
## 2040     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1999
## 2041     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1998
## 2042     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1997
## 2043     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1996
## 2044     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1995
## 2045     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1994
## 2046     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1993
## 2047     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1992
## 2048     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1991
## 2049     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1990
## 2050     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1989
## 2051     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1988
## 2052     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1987
## 2053     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1986
## 2054     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1985
## 2055     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1984
## 2056     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1983
## 2057     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1982
## 2058     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1981
## 2059     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1980
## 2060     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1979
## 2061     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1978
## 2062     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1977
## 2063     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1976
## 2064     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1975
## 2065     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1974
## 2066     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1973
## 2067     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1972
## 2068     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1971
## 2069     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1970
## 2070     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1969
## 2071     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1968
## 2072     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1967
## 2073     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1966
## 2074     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1965
## 2075     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1964
## 2076     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1963
## 2077     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1962
## 2078     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1961
## 2079     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1960
## 2080                                         Middle income    XP   MIC 2022
## 2081                                         Middle income    XP   MIC 2021
## 2082                                         Middle income    XP   MIC 2020
## 2083                                         Middle income    XP   MIC 2019
## 2084                                         Middle income    XP   MIC 2018
## 2085                                         Middle income    XP   MIC 2017
## 2086                                         Middle income    XP   MIC 2016
## 2087                                         Middle income    XP   MIC 2015
## 2088                                         Middle income    XP   MIC 2014
## 2089                                         Middle income    XP   MIC 2013
## 2090                                         Middle income    XP   MIC 2012
## 2091                                         Middle income    XP   MIC 2011
## 2092                                         Middle income    XP   MIC 2010
## 2093                                         Middle income    XP   MIC 2009
## 2094                                         Middle income    XP   MIC 2008
## 2095                                         Middle income    XP   MIC 2007
## 2096                                         Middle income    XP   MIC 2006
## 2097                                         Middle income    XP   MIC 2005
## 2098                                         Middle income    XP   MIC 2004
## 2099                                         Middle income    XP   MIC 2003
## 2100                                         Middle income    XP   MIC 2002
## 2101                                         Middle income    XP   MIC 2001
## 2102                                         Middle income    XP   MIC 2000
## 2103                                         Middle income    XP   MIC 1999
## 2104                                         Middle income    XP   MIC 1998
## 2105                                         Middle income    XP   MIC 1997
## 2106                                         Middle income    XP   MIC 1996
## 2107                                         Middle income    XP   MIC 1995
## 2108                                         Middle income    XP   MIC 1994
## 2109                                         Middle income    XP   MIC 1993
## 2110                                         Middle income    XP   MIC 1992
## 2111                                         Middle income    XP   MIC 1991
## 2112                                         Middle income    XP   MIC 1990
## 2113                                         Middle income    XP   MIC 1989
## 2114                                         Middle income    XP   MIC 1988
## 2115                                         Middle income    XP   MIC 1987
## 2116                                         Middle income    XP   MIC 1986
## 2117                                         Middle income    XP   MIC 1985
## 2118                                         Middle income    XP   MIC 1984
## 2119                                         Middle income    XP   MIC 1983
## 2120                                         Middle income    XP   MIC 1982
## 2121                                         Middle income    XP   MIC 1981
## 2122                                         Middle income    XP   MIC 1980
## 2123                                         Middle income    XP   MIC 1979
## 2124                                         Middle income    XP   MIC 1978
## 2125                                         Middle income    XP   MIC 1977
## 2126                                         Middle income    XP   MIC 1976
## 2127                                         Middle income    XP   MIC 1975
## 2128                                         Middle income    XP   MIC 1974
## 2129                                         Middle income    XP   MIC 1973
## 2130                                         Middle income    XP   MIC 1972
## 2131                                         Middle income    XP   MIC 1971
## 2132                                         Middle income    XP   MIC 1970
## 2133                                         Middle income    XP   MIC 1969
## 2134                                         Middle income    XP   MIC 1968
## 2135                                         Middle income    XP   MIC 1967
## 2136                                         Middle income    XP   MIC 1966
## 2137                                         Middle income    XP   MIC 1965
## 2138                                         Middle income    XP   MIC 1964
## 2139                                         Middle income    XP   MIC 1963
## 2140                                         Middle income    XP   MIC 1962
## 2141                                         Middle income    XP   MIC 1961
## 2142                                         Middle income    XP   MIC 1960
## 2143                                         North America    XU   NAC 2022
## 2144                                         North America    XU   NAC 2021
## 2145                                         North America    XU   NAC 2020
## 2146                                         North America    XU   NAC 2019
## 2147                                         North America    XU   NAC 2018
## 2148                                         North America    XU   NAC 2017
## 2149                                         North America    XU   NAC 2016
## 2150                                         North America    XU   NAC 2015
## 2151                                         North America    XU   NAC 2014
## 2152                                         North America    XU   NAC 2013
## 2153                                         North America    XU   NAC 2012
## 2154                                         North America    XU   NAC 2011
## 2155                                         North America    XU   NAC 2010
## 2156                                         North America    XU   NAC 2009
## 2157                                         North America    XU   NAC 2008
## 2158                                         North America    XU   NAC 2007
## 2159                                         North America    XU   NAC 2006
## 2160                                         North America    XU   NAC 2005
## 2161                                         North America    XU   NAC 2004
## 2162                                         North America    XU   NAC 2003
## 2163                                         North America    XU   NAC 2002
## 2164                                         North America    XU   NAC 2001
## 2165                                         North America    XU   NAC 2000
## 2166                                         North America    XU   NAC 1999
## 2167                                         North America    XU   NAC 1998
## 2168                                         North America    XU   NAC 1997
## 2169                                         North America    XU   NAC 1996
## 2170                                         North America    XU   NAC 1995
## 2171                                         North America    XU   NAC 1994
## 2172                                         North America    XU   NAC 1993
## 2173                                         North America    XU   NAC 1992
## 2174                                         North America    XU   NAC 1991
## 2175                                         North America    XU   NAC 1990
## 2176                                         North America    XU   NAC 1989
## 2177                                         North America    XU   NAC 1988
## 2178                                         North America    XU   NAC 1987
## 2179                                         North America    XU   NAC 1986
## 2180                                         North America    XU   NAC 1985
## 2181                                         North America    XU   NAC 1984
## 2182                                         North America    XU   NAC 1983
## 2183                                         North America    XU   NAC 1982
## 2184                                         North America    XU   NAC 1981
## 2185                                         North America    XU   NAC 1980
## 2186                                         North America    XU   NAC 1979
## 2187                                         North America    XU   NAC 1978
## 2188                                         North America    XU   NAC 1977
## 2189                                         North America    XU   NAC 1976
## 2190                                         North America    XU   NAC 1975
## 2191                                         North America    XU   NAC 1974
## 2192                                         North America    XU   NAC 1973
## 2193                                         North America    XU   NAC 1972
## 2194                                         North America    XU   NAC 1971
## 2195                                         North America    XU   NAC 1970
## 2196                                         North America    XU   NAC 1969
## 2197                                         North America    XU   NAC 1968
## 2198                                         North America    XU   NAC 1967
## 2199                                         North America    XU   NAC 1966
## 2200                                         North America    XU   NAC 1965
## 2201                                         North America    XU   NAC 1964
## 2202                                         North America    XU   NAC 1963
## 2203                                         North America    XU   NAC 1962
## 2204                                         North America    XU   NAC 1961
## 2205                                         North America    XU   NAC 1960
## 2206                                        Not classified    XY       2022
## 2207                                        Not classified    XY       2021
## 2208                                        Not classified    XY       2020
## 2209                                        Not classified    XY       2019
## 2210                                        Not classified    XY       2018
## 2211                                        Not classified    XY       2017
## 2212                                        Not classified    XY       2016
## 2213                                        Not classified    XY       2015
## 2214                                        Not classified    XY       2014
## 2215                                        Not classified    XY       2013
## 2216                                        Not classified    XY       2012
## 2217                                        Not classified    XY       2011
## 2218                                        Not classified    XY       2010
## 2219                                        Not classified    XY       2009
## 2220                                        Not classified    XY       2008
## 2221                                        Not classified    XY       2007
## 2222                                        Not classified    XY       2006
## 2223                                        Not classified    XY       2005
## 2224                                        Not classified    XY       2004
## 2225                                        Not classified    XY       2003
## 2226                                        Not classified    XY       2002
## 2227                                        Not classified    XY       2001
## 2228                                        Not classified    XY       2000
## 2229                                        Not classified    XY       1999
## 2230                                        Not classified    XY       1998
## 2231                                        Not classified    XY       1997
## 2232                                        Not classified    XY       1996
## 2233                                        Not classified    XY       1995
## 2234                                        Not classified    XY       1994
## 2235                                        Not classified    XY       1993
## 2236                                        Not classified    XY       1992
## 2237                                        Not classified    XY       1991
## 2238                                        Not classified    XY       1990
## 2239                                        Not classified    XY       1989
## 2240                                        Not classified    XY       1988
## 2241                                        Not classified    XY       1987
## 2242                                        Not classified    XY       1986
## 2243                                        Not classified    XY       1985
## 2244                                        Not classified    XY       1984
## 2245                                        Not classified    XY       1983
## 2246                                        Not classified    XY       1982
## 2247                                        Not classified    XY       1981
## 2248                                        Not classified    XY       1980
## 2249                                        Not classified    XY       1979
## 2250                                        Not classified    XY       1978
## 2251                                        Not classified    XY       1977
## 2252                                        Not classified    XY       1976
## 2253                                        Not classified    XY       1975
## 2254                                        Not classified    XY       1974
## 2255                                        Not classified    XY       1973
## 2256                                        Not classified    XY       1972
## 2257                                        Not classified    XY       1971
## 2258                                        Not classified    XY       1970
## 2259                                        Not classified    XY       1969
## 2260                                        Not classified    XY       1968
## 2261                                        Not classified    XY       1967
## 2262                                        Not classified    XY       1966
## 2263                                        Not classified    XY       1965
## 2264                                        Not classified    XY       1964
## 2265                                        Not classified    XY       1963
## 2266                                        Not classified    XY       1962
## 2267                                        Not classified    XY       1961
## 2268                                        Not classified    XY       1960
## 2269                                          OECD members    OE   OED 2022
## 2270                                          OECD members    OE   OED 2021
## 2271                                          OECD members    OE   OED 2020
## 2272                                          OECD members    OE   OED 2019
## 2273                                          OECD members    OE   OED 2018
## 2274                                          OECD members    OE   OED 2017
## 2275                                          OECD members    OE   OED 2016
## 2276                                          OECD members    OE   OED 2015
## 2277                                          OECD members    OE   OED 2014
## 2278                                          OECD members    OE   OED 2013
## 2279                                          OECD members    OE   OED 2012
## 2280                                          OECD members    OE   OED 2011
## 2281                                          OECD members    OE   OED 2010
## 2282                                          OECD members    OE   OED 2009
## 2283                                          OECD members    OE   OED 2008
## 2284                                          OECD members    OE   OED 2007
## 2285                                          OECD members    OE   OED 2006
## 2286                                          OECD members    OE   OED 2005
## 2287                                          OECD members    OE   OED 2004
## 2288                                          OECD members    OE   OED 2003
## 2289                                          OECD members    OE   OED 2002
## 2290                                          OECD members    OE   OED 2001
## 2291                                          OECD members    OE   OED 2000
## 2292                                          OECD members    OE   OED 1999
## 2293                                          OECD members    OE   OED 1998
## 2294                                          OECD members    OE   OED 1997
## 2295                                          OECD members    OE   OED 1996
## 2296                                          OECD members    OE   OED 1995
## 2297                                          OECD members    OE   OED 1994
## 2298                                          OECD members    OE   OED 1993
## 2299                                          OECD members    OE   OED 1992
## 2300                                          OECD members    OE   OED 1991
## 2301                                          OECD members    OE   OED 1990
## 2302                                          OECD members    OE   OED 1989
## 2303                                          OECD members    OE   OED 1988
## 2304                                          OECD members    OE   OED 1987
## 2305                                          OECD members    OE   OED 1986
## 2306                                          OECD members    OE   OED 1985
## 2307                                          OECD members    OE   OED 1984
## 2308                                          OECD members    OE   OED 1983
## 2309                                          OECD members    OE   OED 1982
## 2310                                          OECD members    OE   OED 1981
## 2311                                          OECD members    OE   OED 1980
## 2312                                          OECD members    OE   OED 1979
## 2313                                          OECD members    OE   OED 1978
## 2314                                          OECD members    OE   OED 1977
## 2315                                          OECD members    OE   OED 1976
## 2316                                          OECD members    OE   OED 1975
## 2317                                          OECD members    OE   OED 1974
## 2318                                          OECD members    OE   OED 1973
## 2319                                          OECD members    OE   OED 1972
## 2320                                          OECD members    OE   OED 1971
## 2321                                          OECD members    OE   OED 1970
## 2322                                          OECD members    OE   OED 1969
## 2323                                          OECD members    OE   OED 1968
## 2324                                          OECD members    OE   OED 1967
## 2325                                          OECD members    OE   OED 1966
## 2326                                          OECD members    OE   OED 1965
## 2327                                          OECD members    OE   OED 1964
## 2328                                          OECD members    OE   OED 1963
## 2329                                          OECD members    OE   OED 1962
## 2330                                          OECD members    OE   OED 1961
## 2331                                          OECD members    OE   OED 1960
## 2332                                    Other small states    S4   OSS 2022
## 2333                                    Other small states    S4   OSS 2021
## 2334                                    Other small states    S4   OSS 2020
## 2335                                    Other small states    S4   OSS 2019
## 2336                                    Other small states    S4   OSS 2018
## 2337                                    Other small states    S4   OSS 2017
## 2338                                    Other small states    S4   OSS 2016
## 2339                                    Other small states    S4   OSS 2015
## 2340                                    Other small states    S4   OSS 2014
## 2341                                    Other small states    S4   OSS 2013
## 2342                                    Other small states    S4   OSS 2012
## 2343                                    Other small states    S4   OSS 2011
## 2344                                    Other small states    S4   OSS 2010
## 2345                                    Other small states    S4   OSS 2009
## 2346                                    Other small states    S4   OSS 2008
## 2347                                    Other small states    S4   OSS 2007
## 2348                                    Other small states    S4   OSS 2006
## 2349                                    Other small states    S4   OSS 2005
## 2350                                    Other small states    S4   OSS 2004
## 2351                                    Other small states    S4   OSS 2003
## 2352                                    Other small states    S4   OSS 2002
## 2353                                    Other small states    S4   OSS 2001
## 2354                                    Other small states    S4   OSS 2000
## 2355                                    Other small states    S4   OSS 1999
## 2356                                    Other small states    S4   OSS 1998
## 2357                                    Other small states    S4   OSS 1997
## 2358                                    Other small states    S4   OSS 1996
## 2359                                    Other small states    S4   OSS 1995
## 2360                                    Other small states    S4   OSS 1994
## 2361                                    Other small states    S4   OSS 1993
## 2362                                    Other small states    S4   OSS 1992
## 2363                                    Other small states    S4   OSS 1991
## 2364                                    Other small states    S4   OSS 1990
## 2365                                    Other small states    S4   OSS 1989
## 2366                                    Other small states    S4   OSS 1988
## 2367                                    Other small states    S4   OSS 1987
## 2368                                    Other small states    S4   OSS 1986
## 2369                                    Other small states    S4   OSS 1985
## 2370                                    Other small states    S4   OSS 1984
## 2371                                    Other small states    S4   OSS 1983
## 2372                                    Other small states    S4   OSS 1982
## 2373                                    Other small states    S4   OSS 1981
## 2374                                    Other small states    S4   OSS 1980
## 2375                                    Other small states    S4   OSS 1979
## 2376                                    Other small states    S4   OSS 1978
## 2377                                    Other small states    S4   OSS 1977
## 2378                                    Other small states    S4   OSS 1976
## 2379                                    Other small states    S4   OSS 1975
## 2380                                    Other small states    S4   OSS 1974
## 2381                                    Other small states    S4   OSS 1973
## 2382                                    Other small states    S4   OSS 1972
## 2383                                    Other small states    S4   OSS 1971
## 2384                                    Other small states    S4   OSS 1970
## 2385                                    Other small states    S4   OSS 1969
## 2386                                    Other small states    S4   OSS 1968
## 2387                                    Other small states    S4   OSS 1967
## 2388                                    Other small states    S4   OSS 1966
## 2389                                    Other small states    S4   OSS 1965
## 2390                                    Other small states    S4   OSS 1964
## 2391                                    Other small states    S4   OSS 1963
## 2392                                    Other small states    S4   OSS 1962
## 2393                                    Other small states    S4   OSS 1961
## 2394                                    Other small states    S4   OSS 1960
## 2395                           Pacific island small states    S2   PSS 2022
## 2396                           Pacific island small states    S2   PSS 2021
## 2397                           Pacific island small states    S2   PSS 2020
## 2398                           Pacific island small states    S2   PSS 2019
## 2399                           Pacific island small states    S2   PSS 2018
## 2400                           Pacific island small states    S2   PSS 2017
## 2401                           Pacific island small states    S2   PSS 2016
## 2402                           Pacific island small states    S2   PSS 2015
## 2403                           Pacific island small states    S2   PSS 2014
## 2404                           Pacific island small states    S2   PSS 2013
## 2405                           Pacific island small states    S2   PSS 2012
## 2406                           Pacific island small states    S2   PSS 2011
## 2407                           Pacific island small states    S2   PSS 2010
## 2408                           Pacific island small states    S2   PSS 2009
## 2409                           Pacific island small states    S2   PSS 2008
## 2410                           Pacific island small states    S2   PSS 2007
## 2411                           Pacific island small states    S2   PSS 2006
## 2412                           Pacific island small states    S2   PSS 2005
## 2413                           Pacific island small states    S2   PSS 2004
## 2414                           Pacific island small states    S2   PSS 2003
## 2415                           Pacific island small states    S2   PSS 2002
## 2416                           Pacific island small states    S2   PSS 2001
## 2417                           Pacific island small states    S2   PSS 2000
## 2418                           Pacific island small states    S2   PSS 1999
## 2419                           Pacific island small states    S2   PSS 1998
## 2420                           Pacific island small states    S2   PSS 1997
## 2421                           Pacific island small states    S2   PSS 1996
## 2422                           Pacific island small states    S2   PSS 1995
## 2423                           Pacific island small states    S2   PSS 1994
## 2424                           Pacific island small states    S2   PSS 1993
## 2425                           Pacific island small states    S2   PSS 1992
## 2426                           Pacific island small states    S2   PSS 1991
## 2427                           Pacific island small states    S2   PSS 1990
## 2428                           Pacific island small states    S2   PSS 1989
## 2429                           Pacific island small states    S2   PSS 1988
## 2430                           Pacific island small states    S2   PSS 1987
## 2431                           Pacific island small states    S2   PSS 1986
## 2432                           Pacific island small states    S2   PSS 1985
## 2433                           Pacific island small states    S2   PSS 1984
## 2434                           Pacific island small states    S2   PSS 1983
## 2435                           Pacific island small states    S2   PSS 1982
## 2436                           Pacific island small states    S2   PSS 1981
## 2437                           Pacific island small states    S2   PSS 1980
## 2438                           Pacific island small states    S2   PSS 1979
## 2439                           Pacific island small states    S2   PSS 1978
## 2440                           Pacific island small states    S2   PSS 1977
## 2441                           Pacific island small states    S2   PSS 1976
## 2442                           Pacific island small states    S2   PSS 1975
## 2443                           Pacific island small states    S2   PSS 1974
## 2444                           Pacific island small states    S2   PSS 1973
## 2445                           Pacific island small states    S2   PSS 1972
## 2446                           Pacific island small states    S2   PSS 1971
## 2447                           Pacific island small states    S2   PSS 1970
## 2448                           Pacific island small states    S2   PSS 1969
## 2449                           Pacific island small states    S2   PSS 1968
## 2450                           Pacific island small states    S2   PSS 1967
## 2451                           Pacific island small states    S2   PSS 1966
## 2452                           Pacific island small states    S2   PSS 1965
## 2453                           Pacific island small states    S2   PSS 1964
## 2454                           Pacific island small states    S2   PSS 1963
## 2455                           Pacific island small states    S2   PSS 1962
## 2456                           Pacific island small states    S2   PSS 1961
## 2457                           Pacific island small states    S2   PSS 1960
## 2458                             Post-demographic dividend    V4   PST 2022
## 2459                             Post-demographic dividend    V4   PST 2021
## 2460                             Post-demographic dividend    V4   PST 2020
## 2461                             Post-demographic dividend    V4   PST 2019
## 2462                             Post-demographic dividend    V4   PST 2018
## 2463                             Post-demographic dividend    V4   PST 2017
## 2464                             Post-demographic dividend    V4   PST 2016
## 2465                             Post-demographic dividend    V4   PST 2015
## 2466                             Post-demographic dividend    V4   PST 2014
## 2467                             Post-demographic dividend    V4   PST 2013
## 2468                             Post-demographic dividend    V4   PST 2012
## 2469                             Post-demographic dividend    V4   PST 2011
## 2470                             Post-demographic dividend    V4   PST 2010
## 2471                             Post-demographic dividend    V4   PST 2009
## 2472                             Post-demographic dividend    V4   PST 2008
## 2473                             Post-demographic dividend    V4   PST 2007
## 2474                             Post-demographic dividend    V4   PST 2006
## 2475                             Post-demographic dividend    V4   PST 2005
## 2476                             Post-demographic dividend    V4   PST 2004
## 2477                             Post-demographic dividend    V4   PST 2003
## 2478                             Post-demographic dividend    V4   PST 2002
## 2479                             Post-demographic dividend    V4   PST 2001
## 2480                             Post-demographic dividend    V4   PST 2000
## 2481                             Post-demographic dividend    V4   PST 1999
## 2482                             Post-demographic dividend    V4   PST 1998
## 2483                             Post-demographic dividend    V4   PST 1997
## 2484                             Post-demographic dividend    V4   PST 1996
## 2485                             Post-demographic dividend    V4   PST 1995
## 2486                             Post-demographic dividend    V4   PST 1994
## 2487                             Post-demographic dividend    V4   PST 1993
## 2488                             Post-demographic dividend    V4   PST 1992
## 2489                             Post-demographic dividend    V4   PST 1991
## 2490                             Post-demographic dividend    V4   PST 1990
## 2491                             Post-demographic dividend    V4   PST 1989
## 2492                             Post-demographic dividend    V4   PST 1988
## 2493                             Post-demographic dividend    V4   PST 1987
## 2494                             Post-demographic dividend    V4   PST 1986
## 2495                             Post-demographic dividend    V4   PST 1985
## 2496                             Post-demographic dividend    V4   PST 1984
## 2497                             Post-demographic dividend    V4   PST 1983
## 2498                             Post-demographic dividend    V4   PST 1982
## 2499                             Post-demographic dividend    V4   PST 1981
## 2500                             Post-demographic dividend    V4   PST 1980
## 2501                             Post-demographic dividend    V4   PST 1979
## 2502                             Post-demographic dividend    V4   PST 1978
## 2503                             Post-demographic dividend    V4   PST 1977
## 2504                             Post-demographic dividend    V4   PST 1976
## 2505                             Post-demographic dividend    V4   PST 1975
## 2506                             Post-demographic dividend    V4   PST 1974
## 2507                             Post-demographic dividend    V4   PST 1973
## 2508                             Post-demographic dividend    V4   PST 1972
## 2509                             Post-demographic dividend    V4   PST 1971
## 2510                             Post-demographic dividend    V4   PST 1970
## 2511                             Post-demographic dividend    V4   PST 1969
## 2512                             Post-demographic dividend    V4   PST 1968
## 2513                             Post-demographic dividend    V4   PST 1967
## 2514                             Post-demographic dividend    V4   PST 1966
## 2515                             Post-demographic dividend    V4   PST 1965
## 2516                             Post-demographic dividend    V4   PST 1964
## 2517                             Post-demographic dividend    V4   PST 1963
## 2518                             Post-demographic dividend    V4   PST 1962
## 2519                             Post-demographic dividend    V4   PST 1961
## 2520                             Post-demographic dividend    V4   PST 1960
## 2521                              Pre-demographic dividend    V1   PRE 2022
## 2522                              Pre-demographic dividend    V1   PRE 2021
## 2523                              Pre-demographic dividend    V1   PRE 2020
## 2524                              Pre-demographic dividend    V1   PRE 2019
## 2525                              Pre-demographic dividend    V1   PRE 2018
## 2526                              Pre-demographic dividend    V1   PRE 2017
## 2527                              Pre-demographic dividend    V1   PRE 2016
## 2528                              Pre-demographic dividend    V1   PRE 2015
## 2529                              Pre-demographic dividend    V1   PRE 2014
## 2530                              Pre-demographic dividend    V1   PRE 2013
## 2531                              Pre-demographic dividend    V1   PRE 2012
## 2532                              Pre-demographic dividend    V1   PRE 2011
## 2533                              Pre-demographic dividend    V1   PRE 2010
## 2534                              Pre-demographic dividend    V1   PRE 2009
## 2535                              Pre-demographic dividend    V1   PRE 2008
## 2536                              Pre-demographic dividend    V1   PRE 2007
## 2537                              Pre-demographic dividend    V1   PRE 2006
## 2538                              Pre-demographic dividend    V1   PRE 2005
## 2539                              Pre-demographic dividend    V1   PRE 2004
## 2540                              Pre-demographic dividend    V1   PRE 2003
## 2541                              Pre-demographic dividend    V1   PRE 2002
## 2542                              Pre-demographic dividend    V1   PRE 2001
## 2543                              Pre-demographic dividend    V1   PRE 2000
## 2544                              Pre-demographic dividend    V1   PRE 1999
## 2545                              Pre-demographic dividend    V1   PRE 1998
## 2546                              Pre-demographic dividend    V1   PRE 1997
## 2547                              Pre-demographic dividend    V1   PRE 1996
## 2548                              Pre-demographic dividend    V1   PRE 1995
## 2549                              Pre-demographic dividend    V1   PRE 1994
## 2550                              Pre-demographic dividend    V1   PRE 1993
## 2551                              Pre-demographic dividend    V1   PRE 1992
## 2552                              Pre-demographic dividend    V1   PRE 1991
## 2553                              Pre-demographic dividend    V1   PRE 1990
## 2554                              Pre-demographic dividend    V1   PRE 1989
## 2555                              Pre-demographic dividend    V1   PRE 1988
## 2556                              Pre-demographic dividend    V1   PRE 1987
## 2557                              Pre-demographic dividend    V1   PRE 1986
## 2558                              Pre-demographic dividend    V1   PRE 1985
## 2559                              Pre-demographic dividend    V1   PRE 1984
## 2560                              Pre-demographic dividend    V1   PRE 1983
## 2561                              Pre-demographic dividend    V1   PRE 1982
## 2562                              Pre-demographic dividend    V1   PRE 1981
## 2563                              Pre-demographic dividend    V1   PRE 1980
## 2564                              Pre-demographic dividend    V1   PRE 1979
## 2565                              Pre-demographic dividend    V1   PRE 1978
## 2566                              Pre-demographic dividend    V1   PRE 1977
## 2567                              Pre-demographic dividend    V1   PRE 1976
## 2568                              Pre-demographic dividend    V1   PRE 1975
## 2569                              Pre-demographic dividend    V1   PRE 1974
## 2570                              Pre-demographic dividend    V1   PRE 1973
## 2571                              Pre-demographic dividend    V1   PRE 1972
## 2572                              Pre-demographic dividend    V1   PRE 1971
## 2573                              Pre-demographic dividend    V1   PRE 1970
## 2574                              Pre-demographic dividend    V1   PRE 1969
## 2575                              Pre-demographic dividend    V1   PRE 1968
## 2576                              Pre-demographic dividend    V1   PRE 1967
## 2577                              Pre-demographic dividend    V1   PRE 1966
## 2578                              Pre-demographic dividend    V1   PRE 1965
## 2579                              Pre-demographic dividend    V1   PRE 1964
## 2580                              Pre-demographic dividend    V1   PRE 1963
## 2581                              Pre-demographic dividend    V1   PRE 1962
## 2582                              Pre-demographic dividend    V1   PRE 1961
## 2583                              Pre-demographic dividend    V1   PRE 1960
## 2584                                          Small states    S1   SST 2022
## 2585                                          Small states    S1   SST 2021
## 2586                                          Small states    S1   SST 2020
## 2587                                          Small states    S1   SST 2019
## 2588                                          Small states    S1   SST 2018
## 2589                                          Small states    S1   SST 2017
## 2590                                          Small states    S1   SST 2016
## 2591                                          Small states    S1   SST 2015
## 2592                                          Small states    S1   SST 2014
## 2593                                          Small states    S1   SST 2013
## 2594                                          Small states    S1   SST 2012
## 2595                                          Small states    S1   SST 2011
## 2596                                          Small states    S1   SST 2010
## 2597                                          Small states    S1   SST 2009
## 2598                                          Small states    S1   SST 2008
## 2599                                          Small states    S1   SST 2007
## 2600                                          Small states    S1   SST 2006
## 2601                                          Small states    S1   SST 2005
## 2602                                          Small states    S1   SST 2004
## 2603                                          Small states    S1   SST 2003
## 2604                                          Small states    S1   SST 2002
## 2605                                          Small states    S1   SST 2001
## 2606                                          Small states    S1   SST 2000
## 2607                                          Small states    S1   SST 1999
## 2608                                          Small states    S1   SST 1998
## 2609                                          Small states    S1   SST 1997
## 2610                                          Small states    S1   SST 1996
## 2611                                          Small states    S1   SST 1995
## 2612                                          Small states    S1   SST 1994
## 2613                                          Small states    S1   SST 1993
## 2614                                          Small states    S1   SST 1992
## 2615                                          Small states    S1   SST 1991
## 2616                                          Small states    S1   SST 1990
## 2617                                          Small states    S1   SST 1989
## 2618                                          Small states    S1   SST 1988
## 2619                                          Small states    S1   SST 1987
## 2620                                          Small states    S1   SST 1986
## 2621                                          Small states    S1   SST 1985
## 2622                                          Small states    S1   SST 1984
## 2623                                          Small states    S1   SST 1983
## 2624                                          Small states    S1   SST 1982
## 2625                                          Small states    S1   SST 1981
## 2626                                          Small states    S1   SST 1980
## 2627                                          Small states    S1   SST 1979
## 2628                                          Small states    S1   SST 1978
## 2629                                          Small states    S1   SST 1977
## 2630                                          Small states    S1   SST 1976
## 2631                                          Small states    S1   SST 1975
## 2632                                          Small states    S1   SST 1974
## 2633                                          Small states    S1   SST 1973
## 2634                                          Small states    S1   SST 1972
## 2635                                          Small states    S1   SST 1971
## 2636                                          Small states    S1   SST 1970
## 2637                                          Small states    S1   SST 1969
## 2638                                          Small states    S1   SST 1968
## 2639                                          Small states    S1   SST 1967
## 2640                                          Small states    S1   SST 1966
## 2641                                          Small states    S1   SST 1965
## 2642                                          Small states    S1   SST 1964
## 2643                                          Small states    S1   SST 1963
## 2644                                          Small states    S1   SST 1962
## 2645                                          Small states    S1   SST 1961
## 2646                                          Small states    S1   SST 1960
## 2647                                            South Asia    8S   SAS 2022
## 2648                                            South Asia    8S   SAS 2021
## 2649                                            South Asia    8S   SAS 2020
## 2650                                            South Asia    8S   SAS 2019
## 2651                                            South Asia    8S   SAS 2018
## 2652                                            South Asia    8S   SAS 2017
## 2653                                            South Asia    8S   SAS 2016
## 2654                                            South Asia    8S   SAS 2015
## 2655                                            South Asia    8S   SAS 2014
## 2656                                            South Asia    8S   SAS 2013
## 2657                                            South Asia    8S   SAS 2012
## 2658                                            South Asia    8S   SAS 2011
## 2659                                            South Asia    8S   SAS 2010
## 2660                                            South Asia    8S   SAS 2009
## 2661                                            South Asia    8S   SAS 2008
## 2662                                            South Asia    8S   SAS 2007
## 2663                                            South Asia    8S   SAS 2006
## 2664                                            South Asia    8S   SAS 2005
## 2665                                            South Asia    8S   SAS 2004
## 2666                                            South Asia    8S   SAS 2003
## 2667                                            South Asia    8S   SAS 2002
## 2668                                            South Asia    8S   SAS 2001
## 2669                                            South Asia    8S   SAS 2000
## 2670                                            South Asia    8S   SAS 1999
## 2671                                            South Asia    8S   SAS 1998
## 2672                                            South Asia    8S   SAS 1997
## 2673                                            South Asia    8S   SAS 1996
## 2674                                            South Asia    8S   SAS 1995
## 2675                                            South Asia    8S   SAS 1994
## 2676                                            South Asia    8S   SAS 1993
## 2677                                            South Asia    8S   SAS 1992
## 2678                                            South Asia    8S   SAS 1991
## 2679                                            South Asia    8S   SAS 1990
## 2680                                            South Asia    8S   SAS 1989
## 2681                                            South Asia    8S   SAS 1988
## 2682                                            South Asia    8S   SAS 1987
## 2683                                            South Asia    8S   SAS 1986
## 2684                                            South Asia    8S   SAS 1985
## 2685                                            South Asia    8S   SAS 1984
## 2686                                            South Asia    8S   SAS 1983
## 2687                                            South Asia    8S   SAS 1982
## 2688                                            South Asia    8S   SAS 1981
## 2689                                            South Asia    8S   SAS 1980
## 2690                                            South Asia    8S   SAS 1979
## 2691                                            South Asia    8S   SAS 1978
## 2692                                            South Asia    8S   SAS 1977
## 2693                                            South Asia    8S   SAS 1976
## 2694                                            South Asia    8S   SAS 1975
## 2695                                            South Asia    8S   SAS 1974
## 2696                                            South Asia    8S   SAS 1973
## 2697                                            South Asia    8S   SAS 1972
## 2698                                            South Asia    8S   SAS 1971
## 2699                                            South Asia    8S   SAS 1970
## 2700                                            South Asia    8S   SAS 1969
## 2701                                            South Asia    8S   SAS 1968
## 2702                                            South Asia    8S   SAS 1967
## 2703                                            South Asia    8S   SAS 1966
## 2704                                            South Asia    8S   SAS 1965
## 2705                                            South Asia    8S   SAS 1964
## 2706                                            South Asia    8S   SAS 1963
## 2707                                            South Asia    8S   SAS 1962
## 2708                                            South Asia    8S   SAS 1961
## 2709                                            South Asia    8S   SAS 1960
## 2710                               South Asia (IDA & IBRD)    T5   TSA 2022
## 2711                               South Asia (IDA & IBRD)    T5   TSA 2021
## 2712                               South Asia (IDA & IBRD)    T5   TSA 2020
## 2713                               South Asia (IDA & IBRD)    T5   TSA 2019
## 2714                               South Asia (IDA & IBRD)    T5   TSA 2018
## 2715                               South Asia (IDA & IBRD)    T5   TSA 2017
## 2716                               South Asia (IDA & IBRD)    T5   TSA 2016
## 2717                               South Asia (IDA & IBRD)    T5   TSA 2015
## 2718                               South Asia (IDA & IBRD)    T5   TSA 2014
## 2719                               South Asia (IDA & IBRD)    T5   TSA 2013
## 2720                               South Asia (IDA & IBRD)    T5   TSA 2012
## 2721                               South Asia (IDA & IBRD)    T5   TSA 2011
## 2722                               South Asia (IDA & IBRD)    T5   TSA 2010
## 2723                               South Asia (IDA & IBRD)    T5   TSA 2009
## 2724                               South Asia (IDA & IBRD)    T5   TSA 2008
## 2725                               South Asia (IDA & IBRD)    T5   TSA 2007
## 2726                               South Asia (IDA & IBRD)    T5   TSA 2006
## 2727                               South Asia (IDA & IBRD)    T5   TSA 2005
## 2728                               South Asia (IDA & IBRD)    T5   TSA 2004
## 2729                               South Asia (IDA & IBRD)    T5   TSA 2003
## 2730                               South Asia (IDA & IBRD)    T5   TSA 2002
## 2731                               South Asia (IDA & IBRD)    T5   TSA 2001
## 2732                               South Asia (IDA & IBRD)    T5   TSA 2000
## 2733                               South Asia (IDA & IBRD)    T5   TSA 1999
## 2734                               South Asia (IDA & IBRD)    T5   TSA 1998
## 2735                               South Asia (IDA & IBRD)    T5   TSA 1997
## 2736                               South Asia (IDA & IBRD)    T5   TSA 1996
## 2737                               South Asia (IDA & IBRD)    T5   TSA 1995
## 2738                               South Asia (IDA & IBRD)    T5   TSA 1994
## 2739                               South Asia (IDA & IBRD)    T5   TSA 1993
## 2740                               South Asia (IDA & IBRD)    T5   TSA 1992
## 2741                               South Asia (IDA & IBRD)    T5   TSA 1991
## 2742                               South Asia (IDA & IBRD)    T5   TSA 1990
## 2743                               South Asia (IDA & IBRD)    T5   TSA 1989
## 2744                               South Asia (IDA & IBRD)    T5   TSA 1988
## 2745                               South Asia (IDA & IBRD)    T5   TSA 1987
## 2746                               South Asia (IDA & IBRD)    T5   TSA 1986
## 2747                               South Asia (IDA & IBRD)    T5   TSA 1985
## 2748                               South Asia (IDA & IBRD)    T5   TSA 1984
## 2749                               South Asia (IDA & IBRD)    T5   TSA 1983
## 2750                               South Asia (IDA & IBRD)    T5   TSA 1982
## 2751                               South Asia (IDA & IBRD)    T5   TSA 1981
## 2752                               South Asia (IDA & IBRD)    T5   TSA 1980
## 2753                               South Asia (IDA & IBRD)    T5   TSA 1979
## 2754                               South Asia (IDA & IBRD)    T5   TSA 1978
## 2755                               South Asia (IDA & IBRD)    T5   TSA 1977
## 2756                               South Asia (IDA & IBRD)    T5   TSA 1976
## 2757                               South Asia (IDA & IBRD)    T5   TSA 1975
## 2758                               South Asia (IDA & IBRD)    T5   TSA 1974
## 2759                               South Asia (IDA & IBRD)    T5   TSA 1973
## 2760                               South Asia (IDA & IBRD)    T5   TSA 1972
## 2761                               South Asia (IDA & IBRD)    T5   TSA 1971
## 2762                               South Asia (IDA & IBRD)    T5   TSA 1970
## 2763                               South Asia (IDA & IBRD)    T5   TSA 1969
## 2764                               South Asia (IDA & IBRD)    T5   TSA 1968
## 2765                               South Asia (IDA & IBRD)    T5   TSA 1967
## 2766                               South Asia (IDA & IBRD)    T5   TSA 1966
## 2767                               South Asia (IDA & IBRD)    T5   TSA 1965
## 2768                               South Asia (IDA & IBRD)    T5   TSA 1964
## 2769                               South Asia (IDA & IBRD)    T5   TSA 1963
## 2770                               South Asia (IDA & IBRD)    T5   TSA 1962
## 2771                               South Asia (IDA & IBRD)    T5   TSA 1961
## 2772                               South Asia (IDA & IBRD)    T5   TSA 1960
## 2773                                    Sub-Saharan Africa    ZG   SSF 2022
## 2774                                    Sub-Saharan Africa    ZG   SSF 2021
## 2775                                    Sub-Saharan Africa    ZG   SSF 2020
## 2776                                    Sub-Saharan Africa    ZG   SSF 2019
## 2777                                    Sub-Saharan Africa    ZG   SSF 2018
## 2778                                    Sub-Saharan Africa    ZG   SSF 2017
## 2779                                    Sub-Saharan Africa    ZG   SSF 2016
## 2780                                    Sub-Saharan Africa    ZG   SSF 2015
## 2781                                    Sub-Saharan Africa    ZG   SSF 2014
## 2782                                    Sub-Saharan Africa    ZG   SSF 2013
## 2783                                    Sub-Saharan Africa    ZG   SSF 2012
## 2784                                    Sub-Saharan Africa    ZG   SSF 2011
## 2785                                    Sub-Saharan Africa    ZG   SSF 2010
## 2786                                    Sub-Saharan Africa    ZG   SSF 2009
## 2787                                    Sub-Saharan Africa    ZG   SSF 2008
## 2788                                    Sub-Saharan Africa    ZG   SSF 2007
## 2789                                    Sub-Saharan Africa    ZG   SSF 2006
## 2790                                    Sub-Saharan Africa    ZG   SSF 2005
## 2791                                    Sub-Saharan Africa    ZG   SSF 2004
## 2792                                    Sub-Saharan Africa    ZG   SSF 2003
## 2793                                    Sub-Saharan Africa    ZG   SSF 2002
## 2794                                    Sub-Saharan Africa    ZG   SSF 2001
## 2795                                    Sub-Saharan Africa    ZG   SSF 2000
## 2796                                    Sub-Saharan Africa    ZG   SSF 1999
## 2797                                    Sub-Saharan Africa    ZG   SSF 1998
## 2798                                    Sub-Saharan Africa    ZG   SSF 1997
## 2799                                    Sub-Saharan Africa    ZG   SSF 1996
## 2800                                    Sub-Saharan Africa    ZG   SSF 1995
## 2801                                    Sub-Saharan Africa    ZG   SSF 1994
## 2802                                    Sub-Saharan Africa    ZG   SSF 1993
## 2803                                    Sub-Saharan Africa    ZG   SSF 1992
## 2804                                    Sub-Saharan Africa    ZG   SSF 1991
## 2805                                    Sub-Saharan Africa    ZG   SSF 1990
## 2806                                    Sub-Saharan Africa    ZG   SSF 1989
## 2807                                    Sub-Saharan Africa    ZG   SSF 1988
## 2808                                    Sub-Saharan Africa    ZG   SSF 1987
## 2809                                    Sub-Saharan Africa    ZG   SSF 1986
## 2810                                    Sub-Saharan Africa    ZG   SSF 1985
## 2811                                    Sub-Saharan Africa    ZG   SSF 1984
## 2812                                    Sub-Saharan Africa    ZG   SSF 1983
## 2813                                    Sub-Saharan Africa    ZG   SSF 1982
## 2814                                    Sub-Saharan Africa    ZG   SSF 1981
## 2815                                    Sub-Saharan Africa    ZG   SSF 1980
## 2816                                    Sub-Saharan Africa    ZG   SSF 1979
## 2817                                    Sub-Saharan Africa    ZG   SSF 1978
## 2818                                    Sub-Saharan Africa    ZG   SSF 1977
## 2819                                    Sub-Saharan Africa    ZG   SSF 1976
## 2820                                    Sub-Saharan Africa    ZG   SSF 1975
## 2821                                    Sub-Saharan Africa    ZG   SSF 1974
## 2822                                    Sub-Saharan Africa    ZG   SSF 1973
## 2823                                    Sub-Saharan Africa    ZG   SSF 1972
## 2824                                    Sub-Saharan Africa    ZG   SSF 1971
## 2825                                    Sub-Saharan Africa    ZG   SSF 1970
## 2826                                    Sub-Saharan Africa    ZG   SSF 1969
## 2827                                    Sub-Saharan Africa    ZG   SSF 1968
## 2828                                    Sub-Saharan Africa    ZG   SSF 1967
## 2829                                    Sub-Saharan Africa    ZG   SSF 1966
## 2830                                    Sub-Saharan Africa    ZG   SSF 1965
## 2831                                    Sub-Saharan Africa    ZG   SSF 1964
## 2832                                    Sub-Saharan Africa    ZG   SSF 1963
## 2833                                    Sub-Saharan Africa    ZG   SSF 1962
## 2834                                    Sub-Saharan Africa    ZG   SSF 1961
## 2835                                    Sub-Saharan Africa    ZG   SSF 1960
## 2836            Sub-Saharan Africa (excluding high income)    ZF   SSA 2022
## 2837            Sub-Saharan Africa (excluding high income)    ZF   SSA 2021
## 2838            Sub-Saharan Africa (excluding high income)    ZF   SSA 2020
## 2839            Sub-Saharan Africa (excluding high income)    ZF   SSA 2019
## 2840            Sub-Saharan Africa (excluding high income)    ZF   SSA 2018
## 2841            Sub-Saharan Africa (excluding high income)    ZF   SSA 2017
## 2842            Sub-Saharan Africa (excluding high income)    ZF   SSA 2016
## 2843            Sub-Saharan Africa (excluding high income)    ZF   SSA 2015
## 2844            Sub-Saharan Africa (excluding high income)    ZF   SSA 2014
## 2845            Sub-Saharan Africa (excluding high income)    ZF   SSA 2013
## 2846            Sub-Saharan Africa (excluding high income)    ZF   SSA 2012
## 2847            Sub-Saharan Africa (excluding high income)    ZF   SSA 2011
## 2848            Sub-Saharan Africa (excluding high income)    ZF   SSA 2010
## 2849            Sub-Saharan Africa (excluding high income)    ZF   SSA 2009
## 2850            Sub-Saharan Africa (excluding high income)    ZF   SSA 2008
## 2851            Sub-Saharan Africa (excluding high income)    ZF   SSA 2007
## 2852            Sub-Saharan Africa (excluding high income)    ZF   SSA 2006
## 2853            Sub-Saharan Africa (excluding high income)    ZF   SSA 2005
## 2854            Sub-Saharan Africa (excluding high income)    ZF   SSA 2004
## 2855            Sub-Saharan Africa (excluding high income)    ZF   SSA 2003
## 2856            Sub-Saharan Africa (excluding high income)    ZF   SSA 2002
## 2857            Sub-Saharan Africa (excluding high income)    ZF   SSA 2001
## 2858            Sub-Saharan Africa (excluding high income)    ZF   SSA 2000
## 2859            Sub-Saharan Africa (excluding high income)    ZF   SSA 1999
## 2860            Sub-Saharan Africa (excluding high income)    ZF   SSA 1998
## 2861            Sub-Saharan Africa (excluding high income)    ZF   SSA 1997
## 2862            Sub-Saharan Africa (excluding high income)    ZF   SSA 1996
## 2863            Sub-Saharan Africa (excluding high income)    ZF   SSA 1995
## 2864            Sub-Saharan Africa (excluding high income)    ZF   SSA 1994
## 2865            Sub-Saharan Africa (excluding high income)    ZF   SSA 1993
## 2866            Sub-Saharan Africa (excluding high income)    ZF   SSA 1992
## 2867            Sub-Saharan Africa (excluding high income)    ZF   SSA 1991
## 2868            Sub-Saharan Africa (excluding high income)    ZF   SSA 1990
## 2869            Sub-Saharan Africa (excluding high income)    ZF   SSA 1989
## 2870            Sub-Saharan Africa (excluding high income)    ZF   SSA 1988
## 2871            Sub-Saharan Africa (excluding high income)    ZF   SSA 1987
## 2872            Sub-Saharan Africa (excluding high income)    ZF   SSA 1986
## 2873            Sub-Saharan Africa (excluding high income)    ZF   SSA 1985
## 2874            Sub-Saharan Africa (excluding high income)    ZF   SSA 1984
## 2875            Sub-Saharan Africa (excluding high income)    ZF   SSA 1983
## 2876            Sub-Saharan Africa (excluding high income)    ZF   SSA 1982
## 2877            Sub-Saharan Africa (excluding high income)    ZF   SSA 1981
## 2878            Sub-Saharan Africa (excluding high income)    ZF   SSA 1980
## 2879            Sub-Saharan Africa (excluding high income)    ZF   SSA 1979
## 2880            Sub-Saharan Africa (excluding high income)    ZF   SSA 1978
## 2881            Sub-Saharan Africa (excluding high income)    ZF   SSA 1977
## 2882            Sub-Saharan Africa (excluding high income)    ZF   SSA 1976
## 2883            Sub-Saharan Africa (excluding high income)    ZF   SSA 1975
## 2884            Sub-Saharan Africa (excluding high income)    ZF   SSA 1974
## 2885            Sub-Saharan Africa (excluding high income)    ZF   SSA 1973
## 2886            Sub-Saharan Africa (excluding high income)    ZF   SSA 1972
## 2887            Sub-Saharan Africa (excluding high income)    ZF   SSA 1971
## 2888            Sub-Saharan Africa (excluding high income)    ZF   SSA 1970
## 2889            Sub-Saharan Africa (excluding high income)    ZF   SSA 1969
## 2890            Sub-Saharan Africa (excluding high income)    ZF   SSA 1968
## 2891            Sub-Saharan Africa (excluding high income)    ZF   SSA 1967
## 2892            Sub-Saharan Africa (excluding high income)    ZF   SSA 1966
## 2893            Sub-Saharan Africa (excluding high income)    ZF   SSA 1965
## 2894            Sub-Saharan Africa (excluding high income)    ZF   SSA 1964
## 2895            Sub-Saharan Africa (excluding high income)    ZF   SSA 1963
## 2896            Sub-Saharan Africa (excluding high income)    ZF   SSA 1962
## 2897            Sub-Saharan Africa (excluding high income)    ZF   SSA 1961
## 2898            Sub-Saharan Africa (excluding high income)    ZF   SSA 1960
## 2899             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2022
## 2900             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2021
## 2901             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2020
## 2902             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2019
## 2903             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2018
## 2904             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2017
## 2905             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2016
## 2906             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2015
## 2907             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2014
## 2908             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2013
## 2909             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2012
## 2910             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2011
## 2911             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2010
## 2912             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2009
## 2913             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2008
## 2914             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2007
## 2915             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2006
## 2916             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2005
## 2917             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2004
## 2918             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2003
## 2919             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2002
## 2920             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2001
## 2921             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 2000
## 2922             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1999
## 2923             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1998
## 2924             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1997
## 2925             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1996
## 2926             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1995
## 2927             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1994
## 2928             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1993
## 2929             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1992
## 2930             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1991
## 2931             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1990
## 2932             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1989
## 2933             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1988
## 2934             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1987
## 2935             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1986
## 2936             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1985
## 2937             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1984
## 2938             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1983
## 2939             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1982
## 2940             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1981
## 2941             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1980
## 2942             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1979
## 2943             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1978
## 2944             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1977
## 2945             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1976
## 2946             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1975
## 2947             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1974
## 2948             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1973
## 2949             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1972
## 2950             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1971
## 2951             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1970
## 2952             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1969
## 2953             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1968
## 2954             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1967
## 2955             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1966
## 2956             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1965
## 2957             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1964
## 2958             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1963
## 2959             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1962
## 2960             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1961
## 2961             Sub-Saharan Africa (IDA & IBRD countries)    T6   TSS 1960
## 2962                                   Upper middle income    XT       2022
## 2963                                   Upper middle income    XT       2021
## 2964                                   Upper middle income    XT       2020
## 2965                                   Upper middle income    XT       2019
## 2966                                   Upper middle income    XT       2018
## 2967                                   Upper middle income    XT       2017
## 2968                                   Upper middle income    XT       2016
## 2969                                   Upper middle income    XT       2015
## 2970                                   Upper middle income    XT       2014
## 2971                                   Upper middle income    XT       2013
## 2972                                   Upper middle income    XT       2012
## 2973                                   Upper middle income    XT       2011
## 2974                                   Upper middle income    XT       2010
## 2975                                   Upper middle income    XT       2009
## 2976                                   Upper middle income    XT       2008
## 2977                                   Upper middle income    XT       2007
## 2978                                   Upper middle income    XT       2006
## 2979                                   Upper middle income    XT       2005
## 2980                                   Upper middle income    XT       2004
## 2981                                   Upper middle income    XT       2003
## 2982                                   Upper middle income    XT       2002
## 2983                                   Upper middle income    XT       2001
## 2984                                   Upper middle income    XT       2000
## 2985                                   Upper middle income    XT       1999
## 2986                                   Upper middle income    XT       1998
## 2987                                   Upper middle income    XT       1997
## 2988                                   Upper middle income    XT       1996
## 2989                                   Upper middle income    XT       1995
## 2990                                   Upper middle income    XT       1994
## 2991                                   Upper middle income    XT       1993
## 2992                                   Upper middle income    XT       1992
## 2993                                   Upper middle income    XT       1991
## 2994                                   Upper middle income    XT       1990
## 2995                                   Upper middle income    XT       1989
## 2996                                   Upper middle income    XT       1988
## 2997                                   Upper middle income    XT       1987
## 2998                                   Upper middle income    XT       1986
## 2999                                   Upper middle income    XT       1985
## 3000                                   Upper middle income    XT       1984
## 3001                                   Upper middle income    XT       1983
## 3002                                   Upper middle income    XT       1982
## 3003                                   Upper middle income    XT       1981
## 3004                                   Upper middle income    XT       1980
## 3005                                   Upper middle income    XT       1979
## 3006                                   Upper middle income    XT       1978
## 3007                                   Upper middle income    XT       1977
## 3008                                   Upper middle income    XT       1976
## 3009                                   Upper middle income    XT       1975
## 3010                                   Upper middle income    XT       1974
## 3011                                   Upper middle income    XT       1973
## 3012                                   Upper middle income    XT       1972
## 3013                                   Upper middle income    XT       1971
## 3014                                   Upper middle income    XT       1970
## 3015                                   Upper middle income    XT       1969
## 3016                                   Upper middle income    XT       1968
## 3017                                   Upper middle income    XT       1967
## 3018                                   Upper middle income    XT       1966
## 3019                                   Upper middle income    XT       1965
## 3020                                   Upper middle income    XT       1964
## 3021                                   Upper middle income    XT       1963
## 3022                                   Upper middle income    XT       1962
## 3023                                   Upper middle income    XT       1961
## 3024                                   Upper middle income    XT       1960
## 3025                                                 World    1W   WLD 2022
## 3026                                                 World    1W   WLD 2021
## 3027                                                 World    1W   WLD 2020
## 3028                                                 World    1W   WLD 2019
## 3029                                                 World    1W   WLD 2018
## 3030                                                 World    1W   WLD 2017
## 3031                                                 World    1W   WLD 2016
## 3032                                                 World    1W   WLD 2015
## 3033                                                 World    1W   WLD 2014
## 3034                                                 World    1W   WLD 2013
## 3035                                                 World    1W   WLD 2012
## 3036                                                 World    1W   WLD 2011
## 3037                                                 World    1W   WLD 2010
## 3038                                                 World    1W   WLD 2009
## 3039                                                 World    1W   WLD 2008
## 3040                                                 World    1W   WLD 2007
## 3041                                                 World    1W   WLD 2006
## 3042                                                 World    1W   WLD 2005
## 3043                                                 World    1W   WLD 2004
## 3044                                                 World    1W   WLD 2003
## 3045                                                 World    1W   WLD 2002
## 3046                                                 World    1W   WLD 2001
## 3047                                                 World    1W   WLD 2000
## 3048                                                 World    1W   WLD 1999
## 3049                                                 World    1W   WLD 1998
## 3050                                                 World    1W   WLD 1997
## 3051                                                 World    1W   WLD 1996
## 3052                                                 World    1W   WLD 1995
## 3053                                                 World    1W   WLD 1994
## 3054                                                 World    1W   WLD 1993
## 3055                                                 World    1W   WLD 1992
## 3056                                                 World    1W   WLD 1991
## 3057                                                 World    1W   WLD 1990
## 3058                                                 World    1W   WLD 1989
## 3059                                                 World    1W   WLD 1988
## 3060                                                 World    1W   WLD 1987
## 3061                                                 World    1W   WLD 1986
## 3062                                                 World    1W   WLD 1985
## 3063                                                 World    1W   WLD 1984
## 3064                                                 World    1W   WLD 1983
## 3065                                                 World    1W   WLD 1982
## 3066                                                 World    1W   WLD 1981
## 3067                                                 World    1W   WLD 1980
## 3068                                                 World    1W   WLD 1979
## 3069                                                 World    1W   WLD 1978
## 3070                                                 World    1W   WLD 1977
## 3071                                                 World    1W   WLD 1976
## 3072                                                 World    1W   WLD 1975
## 3073                                                 World    1W   WLD 1974
## 3074                                                 World    1W   WLD 1973
## 3075                                                 World    1W   WLD 1972
## 3076                                                 World    1W   WLD 1971
## 3077                                                 World    1W   WLD 1970
## 3078                                                 World    1W   WLD 1969
## 3079                                                 World    1W   WLD 1968
## 3080                                                 World    1W   WLD 1967
## 3081                                                 World    1W   WLD 1966
## 3082                                                 World    1W   WLD 1965
## 3083                                                 World    1W   WLD 1964
## 3084                                                 World    1W   WLD 1963
## 3085                                                 World    1W   WLD 1962
## 3086                                                 World    1W   WLD 1961
## 3087                                                 World    1W   WLD 1960
## 3088                                           Afghanistan    AF   AFG 2022
## 3089                                           Afghanistan    AF   AFG 2021
## 3090                                           Afghanistan    AF   AFG 2020
## 3091                                           Afghanistan    AF   AFG 2019
## 3092                                           Afghanistan    AF   AFG 2018
## 3093                                           Afghanistan    AF   AFG 2017
## 3094                                           Afghanistan    AF   AFG 2016
## 3095                                           Afghanistan    AF   AFG 2015
## 3096                                           Afghanistan    AF   AFG 2014
## 3097                                           Afghanistan    AF   AFG 2013
## 3098                                           Afghanistan    AF   AFG 2012
## 3099                                           Afghanistan    AF   AFG 2011
## 3100                                           Afghanistan    AF   AFG 2010
## 3101                                           Afghanistan    AF   AFG 2009
## 3102                                           Afghanistan    AF   AFG 2008
## 3103                                           Afghanistan    AF   AFG 2007
## 3104                                           Afghanistan    AF   AFG 2006
## 3105                                           Afghanistan    AF   AFG 2005
## 3106                                           Afghanistan    AF   AFG 2004
## 3107                                           Afghanistan    AF   AFG 2003
## 3108                                           Afghanistan    AF   AFG 2002
## 3109                                           Afghanistan    AF   AFG 2001
## 3110                                           Afghanistan    AF   AFG 2000
## 3111                                           Afghanistan    AF   AFG 1999
## 3112                                           Afghanistan    AF   AFG 1998
## 3113                                           Afghanistan    AF   AFG 1997
## 3114                                           Afghanistan    AF   AFG 1996
## 3115                                           Afghanistan    AF   AFG 1995
## 3116                                           Afghanistan    AF   AFG 1994
## 3117                                           Afghanistan    AF   AFG 1993
## 3118                                           Afghanistan    AF   AFG 1992
## 3119                                           Afghanistan    AF   AFG 1991
## 3120                                           Afghanistan    AF   AFG 1990
## 3121                                           Afghanistan    AF   AFG 1989
## 3122                                           Afghanistan    AF   AFG 1988
## 3123                                           Afghanistan    AF   AFG 1987
## 3124                                           Afghanistan    AF   AFG 1986
## 3125                                           Afghanistan    AF   AFG 1985
## 3126                                           Afghanistan    AF   AFG 1984
## 3127                                           Afghanistan    AF   AFG 1983
## 3128                                           Afghanistan    AF   AFG 1982
## 3129                                           Afghanistan    AF   AFG 1981
## 3130                                           Afghanistan    AF   AFG 1980
## 3131                                           Afghanistan    AF   AFG 1979
## 3132                                           Afghanistan    AF   AFG 1978
## 3133                                           Afghanistan    AF   AFG 1977
## 3134                                           Afghanistan    AF   AFG 1976
## 3135                                           Afghanistan    AF   AFG 1975
## 3136                                           Afghanistan    AF   AFG 1974
## 3137                                           Afghanistan    AF   AFG 1973
## 3138                                           Afghanistan    AF   AFG 1972
## 3139                                           Afghanistan    AF   AFG 1971
## 3140                                           Afghanistan    AF   AFG 1970
## 3141                                           Afghanistan    AF   AFG 1969
## 3142                                           Afghanistan    AF   AFG 1968
## 3143                                           Afghanistan    AF   AFG 1967
## 3144                                           Afghanistan    AF   AFG 1966
## 3145                                           Afghanistan    AF   AFG 1965
## 3146                                           Afghanistan    AF   AFG 1964
## 3147                                           Afghanistan    AF   AFG 1963
## 3148                                           Afghanistan    AF   AFG 1962
## 3149                                           Afghanistan    AF   AFG 1961
## 3150                                           Afghanistan    AF   AFG 1960
## 3151                                               Albania    AL   ALB 2022
## 3152                                               Albania    AL   ALB 2021
## 3153                                               Albania    AL   ALB 2020
## 3154                                               Albania    AL   ALB 2019
## 3155                                               Albania    AL   ALB 2018
## 3156                                               Albania    AL   ALB 2017
## 3157                                               Albania    AL   ALB 2016
## 3158                                               Albania    AL   ALB 2015
## 3159                                               Albania    AL   ALB 2014
## 3160                                               Albania    AL   ALB 2013
## 3161                                               Albania    AL   ALB 2012
## 3162                                               Albania    AL   ALB 2011
## 3163                                               Albania    AL   ALB 2010
## 3164                                               Albania    AL   ALB 2009
## 3165                                               Albania    AL   ALB 2008
## 3166                                               Albania    AL   ALB 2007
## 3167                                               Albania    AL   ALB 2006
## 3168                                               Albania    AL   ALB 2005
## 3169                                               Albania    AL   ALB 2004
## 3170                                               Albania    AL   ALB 2003
## 3171                                               Albania    AL   ALB 2002
## 3172                                               Albania    AL   ALB 2001
## 3173                                               Albania    AL   ALB 2000
## 3174                                               Albania    AL   ALB 1999
## 3175                                               Albania    AL   ALB 1998
## 3176                                               Albania    AL   ALB 1997
## 3177                                               Albania    AL   ALB 1996
## 3178                                               Albania    AL   ALB 1995
## 3179                                               Albania    AL   ALB 1994
## 3180                                               Albania    AL   ALB 1993
## 3181                                               Albania    AL   ALB 1992
## 3182                                               Albania    AL   ALB 1991
## 3183                                               Albania    AL   ALB 1990
## 3184                                               Albania    AL   ALB 1989
## 3185                                               Albania    AL   ALB 1988
## 3186                                               Albania    AL   ALB 1987
## 3187                                               Albania    AL   ALB 1986
## 3188                                               Albania    AL   ALB 1985
## 3189                                               Albania    AL   ALB 1984
## 3190                                               Albania    AL   ALB 1983
## 3191                                               Albania    AL   ALB 1982
## 3192                                               Albania    AL   ALB 1981
## 3193                                               Albania    AL   ALB 1980
## 3194                                               Albania    AL   ALB 1979
## 3195                                               Albania    AL   ALB 1978
## 3196                                               Albania    AL   ALB 1977
## 3197                                               Albania    AL   ALB 1976
## 3198                                               Albania    AL   ALB 1975
## 3199                                               Albania    AL   ALB 1974
## 3200                                               Albania    AL   ALB 1973
## 3201                                               Albania    AL   ALB 1972
## 3202                                               Albania    AL   ALB 1971
## 3203                                               Albania    AL   ALB 1970
## 3204                                               Albania    AL   ALB 1969
## 3205                                               Albania    AL   ALB 1968
## 3206                                               Albania    AL   ALB 1967
## 3207                                               Albania    AL   ALB 1966
## 3208                                               Albania    AL   ALB 1965
## 3209                                               Albania    AL   ALB 1964
## 3210                                               Albania    AL   ALB 1963
## 3211                                               Albania    AL   ALB 1962
## 3212                                               Albania    AL   ALB 1961
## 3213                                               Albania    AL   ALB 1960
## 3214                                               Algeria    DZ   DZA 2022
## 3215                                               Algeria    DZ   DZA 2021
## 3216                                               Algeria    DZ   DZA 2020
## 3217                                               Algeria    DZ   DZA 2019
## 3218                                               Algeria    DZ   DZA 2018
## 3219                                               Algeria    DZ   DZA 2017
## 3220                                               Algeria    DZ   DZA 2016
## 3221                                               Algeria    DZ   DZA 2015
## 3222                                               Algeria    DZ   DZA 2014
## 3223                                               Algeria    DZ   DZA 2013
## 3224                                               Algeria    DZ   DZA 2012
## 3225                                               Algeria    DZ   DZA 2011
## 3226                                               Algeria    DZ   DZA 2010
## 3227                                               Algeria    DZ   DZA 2009
## 3228                                               Algeria    DZ   DZA 2008
## 3229                                               Algeria    DZ   DZA 2007
## 3230                                               Algeria    DZ   DZA 2006
## 3231                                               Algeria    DZ   DZA 2005
## 3232                                               Algeria    DZ   DZA 2004
## 3233                                               Algeria    DZ   DZA 2003
## 3234                                               Algeria    DZ   DZA 2002
## 3235                                               Algeria    DZ   DZA 2001
## 3236                                               Algeria    DZ   DZA 2000
## 3237                                               Algeria    DZ   DZA 1999
## 3238                                               Algeria    DZ   DZA 1998
## 3239                                               Algeria    DZ   DZA 1997
## 3240                                               Algeria    DZ   DZA 1996
## 3241                                               Algeria    DZ   DZA 1995
## 3242                                               Algeria    DZ   DZA 1994
## 3243                                               Algeria    DZ   DZA 1993
## 3244                                               Algeria    DZ   DZA 1992
## 3245                                               Algeria    DZ   DZA 1991
## 3246                                               Algeria    DZ   DZA 1990
## 3247                                               Algeria    DZ   DZA 1989
## 3248                                               Algeria    DZ   DZA 1988
## 3249                                               Algeria    DZ   DZA 1987
## 3250                                               Algeria    DZ   DZA 1986
## 3251                                               Algeria    DZ   DZA 1985
## 3252                                               Algeria    DZ   DZA 1984
## 3253                                               Algeria    DZ   DZA 1983
## 3254                                               Algeria    DZ   DZA 1982
## 3255                                               Algeria    DZ   DZA 1981
## 3256                                               Algeria    DZ   DZA 1980
## 3257                                               Algeria    DZ   DZA 1979
## 3258                                               Algeria    DZ   DZA 1978
## 3259                                               Algeria    DZ   DZA 1977
## 3260                                               Algeria    DZ   DZA 1976
## 3261                                               Algeria    DZ   DZA 1975
## 3262                                               Algeria    DZ   DZA 1974
## 3263                                               Algeria    DZ   DZA 1973
## 3264                                               Algeria    DZ   DZA 1972
## 3265                                               Algeria    DZ   DZA 1971
## 3266                                               Algeria    DZ   DZA 1970
## 3267                                               Algeria    DZ   DZA 1969
## 3268                                               Algeria    DZ   DZA 1968
## 3269                                               Algeria    DZ   DZA 1967
## 3270                                               Algeria    DZ   DZA 1966
## 3271                                               Algeria    DZ   DZA 1965
## 3272                                               Algeria    DZ   DZA 1964
## 3273                                               Algeria    DZ   DZA 1963
## 3274                                               Algeria    DZ   DZA 1962
## 3275                                               Algeria    DZ   DZA 1961
## 3276                                               Algeria    DZ   DZA 1960
## 3277                                        American Samoa    AS   ASM 2022
## 3278                                        American Samoa    AS   ASM 2021
## 3279                                        American Samoa    AS   ASM 2020
## 3280                                        American Samoa    AS   ASM 2019
## 3281                                        American Samoa    AS   ASM 2018
## 3282                                        American Samoa    AS   ASM 2017
## 3283                                        American Samoa    AS   ASM 2016
## 3284                                        American Samoa    AS   ASM 2015
## 3285                                        American Samoa    AS   ASM 2014
## 3286                                        American Samoa    AS   ASM 2013
## 3287                                        American Samoa    AS   ASM 2012
## 3288                                        American Samoa    AS   ASM 2011
## 3289                                        American Samoa    AS   ASM 2010
## 3290                                        American Samoa    AS   ASM 2009
## 3291                                        American Samoa    AS   ASM 2008
## 3292                                        American Samoa    AS   ASM 2007
## 3293                                        American Samoa    AS   ASM 2006
## 3294                                        American Samoa    AS   ASM 2005
## 3295                                        American Samoa    AS   ASM 2004
## 3296                                        American Samoa    AS   ASM 2003
## 3297                                        American Samoa    AS   ASM 2002
## 3298                                        American Samoa    AS   ASM 2001
## 3299                                        American Samoa    AS   ASM 2000
## 3300                                        American Samoa    AS   ASM 1999
## 3301                                        American Samoa    AS   ASM 1998
## 3302                                        American Samoa    AS   ASM 1997
## 3303                                        American Samoa    AS   ASM 1996
## 3304                                        American Samoa    AS   ASM 1995
## 3305                                        American Samoa    AS   ASM 1994
## 3306                                        American Samoa    AS   ASM 1993
## 3307                                        American Samoa    AS   ASM 1992
## 3308                                        American Samoa    AS   ASM 1991
## 3309                                        American Samoa    AS   ASM 1990
## 3310                                        American Samoa    AS   ASM 1989
## 3311                                        American Samoa    AS   ASM 1988
## 3312                                        American Samoa    AS   ASM 1987
## 3313                                        American Samoa    AS   ASM 1986
## 3314                                        American Samoa    AS   ASM 1985
## 3315                                        American Samoa    AS   ASM 1984
## 3316                                        American Samoa    AS   ASM 1983
## 3317                                        American Samoa    AS   ASM 1982
## 3318                                        American Samoa    AS   ASM 1981
## 3319                                        American Samoa    AS   ASM 1980
## 3320                                        American Samoa    AS   ASM 1979
## 3321                                        American Samoa    AS   ASM 1978
## 3322                                        American Samoa    AS   ASM 1977
## 3323                                        American Samoa    AS   ASM 1976
## 3324                                        American Samoa    AS   ASM 1975
## 3325                                        American Samoa    AS   ASM 1974
## 3326                                        American Samoa    AS   ASM 1973
## 3327                                        American Samoa    AS   ASM 1972
## 3328                                        American Samoa    AS   ASM 1971
## 3329                                        American Samoa    AS   ASM 1970
## 3330                                        American Samoa    AS   ASM 1969
## 3331                                        American Samoa    AS   ASM 1968
## 3332                                        American Samoa    AS   ASM 1967
## 3333                                        American Samoa    AS   ASM 1966
## 3334                                        American Samoa    AS   ASM 1965
## 3335                                        American Samoa    AS   ASM 1964
## 3336                                        American Samoa    AS   ASM 1963
## 3337                                        American Samoa    AS   ASM 1962
## 3338                                        American Samoa    AS   ASM 1961
## 3339                                        American Samoa    AS   ASM 1960
## 3340                                               Andorra    AD   AND 2022
## 3341                                               Andorra    AD   AND 2021
## 3342                                               Andorra    AD   AND 2020
## 3343                                               Andorra    AD   AND 2019
## 3344                                               Andorra    AD   AND 2018
## 3345                                               Andorra    AD   AND 2017
## 3346                                               Andorra    AD   AND 2016
## 3347                                               Andorra    AD   AND 2015
## 3348                                               Andorra    AD   AND 2014
## 3349                                               Andorra    AD   AND 2013
## 3350                                               Andorra    AD   AND 2012
## 3351                                               Andorra    AD   AND 2011
## 3352                                               Andorra    AD   AND 2010
## 3353                                               Andorra    AD   AND 2009
## 3354                                               Andorra    AD   AND 2008
## 3355                                               Andorra    AD   AND 2007
## 3356                                               Andorra    AD   AND 2006
## 3357                                               Andorra    AD   AND 2005
## 3358                                               Andorra    AD   AND 2004
## 3359                                               Andorra    AD   AND 2003
## 3360                                               Andorra    AD   AND 2002
## 3361                                               Andorra    AD   AND 2001
## 3362                                               Andorra    AD   AND 2000
## 3363                                               Andorra    AD   AND 1999
## 3364                                               Andorra    AD   AND 1998
## 3365                                               Andorra    AD   AND 1997
## 3366                                               Andorra    AD   AND 1996
## 3367                                               Andorra    AD   AND 1995
## 3368                                               Andorra    AD   AND 1994
## 3369                                               Andorra    AD   AND 1993
## 3370                                               Andorra    AD   AND 1992
## 3371                                               Andorra    AD   AND 1991
## 3372                                               Andorra    AD   AND 1990
## 3373                                               Andorra    AD   AND 1989
## 3374                                               Andorra    AD   AND 1988
## 3375                                               Andorra    AD   AND 1987
## 3376                                               Andorra    AD   AND 1986
## 3377                                               Andorra    AD   AND 1985
## 3378                                               Andorra    AD   AND 1984
## 3379                                               Andorra    AD   AND 1983
## 3380                                               Andorra    AD   AND 1982
## 3381                                               Andorra    AD   AND 1981
## 3382                                               Andorra    AD   AND 1980
## 3383                                               Andorra    AD   AND 1979
## 3384                                               Andorra    AD   AND 1978
## 3385                                               Andorra    AD   AND 1977
## 3386                                               Andorra    AD   AND 1976
## 3387                                               Andorra    AD   AND 1975
## 3388                                               Andorra    AD   AND 1974
## 3389                                               Andorra    AD   AND 1973
## 3390                                               Andorra    AD   AND 1972
## 3391                                               Andorra    AD   AND 1971
## 3392                                               Andorra    AD   AND 1970
## 3393                                               Andorra    AD   AND 1969
## 3394                                               Andorra    AD   AND 1968
## 3395                                               Andorra    AD   AND 1967
## 3396                                               Andorra    AD   AND 1966
## 3397                                               Andorra    AD   AND 1965
## 3398                                               Andorra    AD   AND 1964
## 3399                                               Andorra    AD   AND 1963
## 3400                                               Andorra    AD   AND 1962
## 3401                                               Andorra    AD   AND 1961
## 3402                                               Andorra    AD   AND 1960
## 3403                                                Angola    AO   AGO 2022
## 3404                                                Angola    AO   AGO 2021
## 3405                                                Angola    AO   AGO 2020
## 3406                                                Angola    AO   AGO 2019
## 3407                                                Angola    AO   AGO 2018
## 3408                                                Angola    AO   AGO 2017
## 3409                                                Angola    AO   AGO 2016
## 3410                                                Angola    AO   AGO 2015
## 3411                                                Angola    AO   AGO 2014
## 3412                                                Angola    AO   AGO 2013
## 3413                                                Angola    AO   AGO 2012
## 3414                                                Angola    AO   AGO 2011
## 3415                                                Angola    AO   AGO 2010
## 3416                                                Angola    AO   AGO 2009
## 3417                                                Angola    AO   AGO 2008
## 3418                                                Angola    AO   AGO 2007
## 3419                                                Angola    AO   AGO 2006
## 3420                                                Angola    AO   AGO 2005
## 3421                                                Angola    AO   AGO 2004
## 3422                                                Angola    AO   AGO 2003
## 3423                                                Angola    AO   AGO 2002
## 3424                                                Angola    AO   AGO 2001
## 3425                                                Angola    AO   AGO 2000
## 3426                                                Angola    AO   AGO 1999
## 3427                                                Angola    AO   AGO 1998
## 3428                                                Angola    AO   AGO 1997
## 3429                                                Angola    AO   AGO 1996
## 3430                                                Angola    AO   AGO 1995
## 3431                                                Angola    AO   AGO 1994
## 3432                                                Angola    AO   AGO 1993
## 3433                                                Angola    AO   AGO 1992
## 3434                                                Angola    AO   AGO 1991
## 3435                                                Angola    AO   AGO 1990
## 3436                                                Angola    AO   AGO 1989
## 3437                                                Angola    AO   AGO 1988
## 3438                                                Angola    AO   AGO 1987
## 3439                                                Angola    AO   AGO 1986
## 3440                                                Angola    AO   AGO 1985
## 3441                                                Angola    AO   AGO 1984
## 3442                                                Angola    AO   AGO 1983
## 3443                                                Angola    AO   AGO 1982
## 3444                                                Angola    AO   AGO 1981
## 3445                                                Angola    AO   AGO 1980
## 3446                                                Angola    AO   AGO 1979
## 3447                                                Angola    AO   AGO 1978
## 3448                                                Angola    AO   AGO 1977
## 3449                                                Angola    AO   AGO 1976
## 3450                                                Angola    AO   AGO 1975
## 3451                                                Angola    AO   AGO 1974
## 3452                                                Angola    AO   AGO 1973
## 3453                                                Angola    AO   AGO 1972
## 3454                                                Angola    AO   AGO 1971
## 3455                                                Angola    AO   AGO 1970
## 3456                                                Angola    AO   AGO 1969
## 3457                                                Angola    AO   AGO 1968
## 3458                                                Angola    AO   AGO 1967
## 3459                                                Angola    AO   AGO 1966
## 3460                                                Angola    AO   AGO 1965
## 3461                                                Angola    AO   AGO 1964
## 3462                                                Angola    AO   AGO 1963
## 3463                                                Angola    AO   AGO 1962
## 3464                                                Angola    AO   AGO 1961
## 3465                                                Angola    AO   AGO 1960
## 3466                                   Antigua and Barbuda    AG   ATG 2022
## 3467                                   Antigua and Barbuda    AG   ATG 2021
## 3468                                   Antigua and Barbuda    AG   ATG 2020
## 3469                                   Antigua and Barbuda    AG   ATG 2019
## 3470                                   Antigua and Barbuda    AG   ATG 2018
## 3471                                   Antigua and Barbuda    AG   ATG 2017
## 3472                                   Antigua and Barbuda    AG   ATG 2016
## 3473                                   Antigua and Barbuda    AG   ATG 2015
## 3474                                   Antigua and Barbuda    AG   ATG 2014
## 3475                                   Antigua and Barbuda    AG   ATG 2013
## 3476                                   Antigua and Barbuda    AG   ATG 2012
## 3477                                   Antigua and Barbuda    AG   ATG 2011
## 3478                                   Antigua and Barbuda    AG   ATG 2010
## 3479                                   Antigua and Barbuda    AG   ATG 2009
## 3480                                   Antigua and Barbuda    AG   ATG 2008
## 3481                                   Antigua and Barbuda    AG   ATG 2007
## 3482                                   Antigua and Barbuda    AG   ATG 2006
## 3483                                   Antigua and Barbuda    AG   ATG 2005
## 3484                                   Antigua and Barbuda    AG   ATG 2004
## 3485                                   Antigua and Barbuda    AG   ATG 2003
## 3486                                   Antigua and Barbuda    AG   ATG 2002
## 3487                                   Antigua and Barbuda    AG   ATG 2001
## 3488                                   Antigua and Barbuda    AG   ATG 2000
## 3489                                   Antigua and Barbuda    AG   ATG 1999
## 3490                                   Antigua and Barbuda    AG   ATG 1998
## 3491                                   Antigua and Barbuda    AG   ATG 1997
## 3492                                   Antigua and Barbuda    AG   ATG 1996
## 3493                                   Antigua and Barbuda    AG   ATG 1995
## 3494                                   Antigua and Barbuda    AG   ATG 1994
## 3495                                   Antigua and Barbuda    AG   ATG 1993
## 3496                                   Antigua and Barbuda    AG   ATG 1992
## 3497                                   Antigua and Barbuda    AG   ATG 1991
## 3498                                   Antigua and Barbuda    AG   ATG 1990
## 3499                                   Antigua and Barbuda    AG   ATG 1989
## 3500                                   Antigua and Barbuda    AG   ATG 1988
## 3501                                   Antigua and Barbuda    AG   ATG 1987
## 3502                                   Antigua and Barbuda    AG   ATG 1986
## 3503                                   Antigua and Barbuda    AG   ATG 1985
## 3504                                   Antigua and Barbuda    AG   ATG 1984
## 3505                                   Antigua and Barbuda    AG   ATG 1983
## 3506                                   Antigua and Barbuda    AG   ATG 1982
## 3507                                   Antigua and Barbuda    AG   ATG 1981
## 3508                                   Antigua and Barbuda    AG   ATG 1980
## 3509                                   Antigua and Barbuda    AG   ATG 1979
## 3510                                   Antigua and Barbuda    AG   ATG 1978
## 3511                                   Antigua and Barbuda    AG   ATG 1977
## 3512                                   Antigua and Barbuda    AG   ATG 1976
## 3513                                   Antigua and Barbuda    AG   ATG 1975
## 3514                                   Antigua and Barbuda    AG   ATG 1974
## 3515                                   Antigua and Barbuda    AG   ATG 1973
## 3516                                   Antigua and Barbuda    AG   ATG 1972
## 3517                                   Antigua and Barbuda    AG   ATG 1971
## 3518                                   Antigua and Barbuda    AG   ATG 1970
## 3519                                   Antigua and Barbuda    AG   ATG 1969
## 3520                                   Antigua and Barbuda    AG   ATG 1968
## 3521                                   Antigua and Barbuda    AG   ATG 1967
## 3522                                   Antigua and Barbuda    AG   ATG 1966
## 3523                                   Antigua and Barbuda    AG   ATG 1965
## 3524                                   Antigua and Barbuda    AG   ATG 1964
## 3525                                   Antigua and Barbuda    AG   ATG 1963
## 3526                                   Antigua and Barbuda    AG   ATG 1962
## 3527                                   Antigua and Barbuda    AG   ATG 1961
## 3528                                   Antigua and Barbuda    AG   ATG 1960
## 3529                                             Argentina    AR   ARG 2022
## 3530                                             Argentina    AR   ARG 2021
## 3531                                             Argentina    AR   ARG 2020
## 3532                                             Argentina    AR   ARG 2019
## 3533                                             Argentina    AR   ARG 2018
## 3534                                             Argentina    AR   ARG 2017
## 3535                                             Argentina    AR   ARG 2016
## 3536                                             Argentina    AR   ARG 2015
## 3537                                             Argentina    AR   ARG 2014
## 3538                                             Argentina    AR   ARG 2013
## 3539                                             Argentina    AR   ARG 2012
## 3540                                             Argentina    AR   ARG 2011
## 3541                                             Argentina    AR   ARG 2010
## 3542                                             Argentina    AR   ARG 2009
## 3543                                             Argentina    AR   ARG 2008
## 3544                                             Argentina    AR   ARG 2007
## 3545                                             Argentina    AR   ARG 2006
## 3546                                             Argentina    AR   ARG 2005
## 3547                                             Argentina    AR   ARG 2004
## 3548                                             Argentina    AR   ARG 2003
## 3549                                             Argentina    AR   ARG 2002
## 3550                                             Argentina    AR   ARG 2001
## 3551                                             Argentina    AR   ARG 2000
## 3552                                             Argentina    AR   ARG 1999
## 3553                                             Argentina    AR   ARG 1998
## 3554                                             Argentina    AR   ARG 1997
## 3555                                             Argentina    AR   ARG 1996
## 3556                                             Argentina    AR   ARG 1995
## 3557                                             Argentina    AR   ARG 1994
## 3558                                             Argentina    AR   ARG 1993
## 3559                                             Argentina    AR   ARG 1992
## 3560                                             Argentina    AR   ARG 1991
## 3561                                             Argentina    AR   ARG 1990
## 3562                                             Argentina    AR   ARG 1989
## 3563                                             Argentina    AR   ARG 1988
## 3564                                             Argentina    AR   ARG 1987
## 3565                                             Argentina    AR   ARG 1986
## 3566                                             Argentina    AR   ARG 1985
## 3567                                             Argentina    AR   ARG 1984
## 3568                                             Argentina    AR   ARG 1983
## 3569                                             Argentina    AR   ARG 1982
## 3570                                             Argentina    AR   ARG 1981
## 3571                                             Argentina    AR   ARG 1980
## 3572                                             Argentina    AR   ARG 1979
## 3573                                             Argentina    AR   ARG 1978
## 3574                                             Argentina    AR   ARG 1977
## 3575                                             Argentina    AR   ARG 1976
## 3576                                             Argentina    AR   ARG 1975
## 3577                                             Argentina    AR   ARG 1974
## 3578                                             Argentina    AR   ARG 1973
## 3579                                             Argentina    AR   ARG 1972
## 3580                                             Argentina    AR   ARG 1971
## 3581                                             Argentina    AR   ARG 1970
## 3582                                             Argentina    AR   ARG 1969
## 3583                                             Argentina    AR   ARG 1968
## 3584                                             Argentina    AR   ARG 1967
## 3585                                             Argentina    AR   ARG 1966
## 3586                                             Argentina    AR   ARG 1965
## 3587                                             Argentina    AR   ARG 1964
## 3588                                             Argentina    AR   ARG 1963
## 3589                                             Argentina    AR   ARG 1962
## 3590                                             Argentina    AR   ARG 1961
## 3591                                             Argentina    AR   ARG 1960
## 3592                                               Armenia    AM   ARM 2022
## 3593                                               Armenia    AM   ARM 2021
## 3594                                               Armenia    AM   ARM 2020
## 3595                                               Armenia    AM   ARM 2019
## 3596                                               Armenia    AM   ARM 2018
## 3597                                               Armenia    AM   ARM 2017
## 3598                                               Armenia    AM   ARM 2016
## 3599                                               Armenia    AM   ARM 2015
## 3600                                               Armenia    AM   ARM 2014
## 3601                                               Armenia    AM   ARM 2013
## 3602                                               Armenia    AM   ARM 2012
## 3603                                               Armenia    AM   ARM 2011
## 3604                                               Armenia    AM   ARM 2010
## 3605                                               Armenia    AM   ARM 2009
## 3606                                               Armenia    AM   ARM 2008
## 3607                                               Armenia    AM   ARM 2007
## 3608                                               Armenia    AM   ARM 2006
## 3609                                               Armenia    AM   ARM 2005
## 3610                                               Armenia    AM   ARM 2004
## 3611                                               Armenia    AM   ARM 2003
## 3612                                               Armenia    AM   ARM 2002
## 3613                                               Armenia    AM   ARM 2001
## 3614                                               Armenia    AM   ARM 2000
## 3615                                               Armenia    AM   ARM 1999
## 3616                                               Armenia    AM   ARM 1998
## 3617                                               Armenia    AM   ARM 1997
## 3618                                               Armenia    AM   ARM 1996
## 3619                                               Armenia    AM   ARM 1995
## 3620                                               Armenia    AM   ARM 1994
## 3621                                               Armenia    AM   ARM 1993
## 3622                                               Armenia    AM   ARM 1992
## 3623                                               Armenia    AM   ARM 1991
## 3624                                               Armenia    AM   ARM 1990
## 3625                                               Armenia    AM   ARM 1989
## 3626                                               Armenia    AM   ARM 1988
## 3627                                               Armenia    AM   ARM 1987
## 3628                                               Armenia    AM   ARM 1986
## 3629                                               Armenia    AM   ARM 1985
## 3630                                               Armenia    AM   ARM 1984
## 3631                                               Armenia    AM   ARM 1983
## 3632                                               Armenia    AM   ARM 1982
## 3633                                               Armenia    AM   ARM 1981
## 3634                                               Armenia    AM   ARM 1980
## 3635                                               Armenia    AM   ARM 1979
## 3636                                               Armenia    AM   ARM 1978
## 3637                                               Armenia    AM   ARM 1977
## 3638                                               Armenia    AM   ARM 1976
## 3639                                               Armenia    AM   ARM 1975
## 3640                                               Armenia    AM   ARM 1974
## 3641                                               Armenia    AM   ARM 1973
## 3642                                               Armenia    AM   ARM 1972
## 3643                                               Armenia    AM   ARM 1971
## 3644                                               Armenia    AM   ARM 1970
## 3645                                               Armenia    AM   ARM 1969
## 3646                                               Armenia    AM   ARM 1968
## 3647                                               Armenia    AM   ARM 1967
## 3648                                               Armenia    AM   ARM 1966
## 3649                                               Armenia    AM   ARM 1965
## 3650                                               Armenia    AM   ARM 1964
## 3651                                               Armenia    AM   ARM 1963
## 3652                                               Armenia    AM   ARM 1962
## 3653                                               Armenia    AM   ARM 1961
## 3654                                               Armenia    AM   ARM 1960
## 3655                                                 Aruba    AW   ABW 2022
## 3656                                                 Aruba    AW   ABW 2021
## 3657                                                 Aruba    AW   ABW 2020
## 3658                                                 Aruba    AW   ABW 2019
## 3659                                                 Aruba    AW   ABW 2018
## 3660                                                 Aruba    AW   ABW 2017
## 3661                                                 Aruba    AW   ABW 2016
## 3662                                                 Aruba    AW   ABW 2015
## 3663                                                 Aruba    AW   ABW 2014
## 3664                                                 Aruba    AW   ABW 2013
## 3665                                                 Aruba    AW   ABW 2012
## 3666                                                 Aruba    AW   ABW 2011
## 3667                                                 Aruba    AW   ABW 2010
## 3668                                                 Aruba    AW   ABW 2009
## 3669                                                 Aruba    AW   ABW 2008
## 3670                                                 Aruba    AW   ABW 2007
## 3671                                                 Aruba    AW   ABW 2006
## 3672                                                 Aruba    AW   ABW 2005
## 3673                                                 Aruba    AW   ABW 2004
## 3674                                                 Aruba    AW   ABW 2003
## 3675                                                 Aruba    AW   ABW 2002
## 3676                                                 Aruba    AW   ABW 2001
## 3677                                                 Aruba    AW   ABW 2000
## 3678                                                 Aruba    AW   ABW 1999
## 3679                                                 Aruba    AW   ABW 1998
## 3680                                                 Aruba    AW   ABW 1997
## 3681                                                 Aruba    AW   ABW 1996
## 3682                                                 Aruba    AW   ABW 1995
## 3683                                                 Aruba    AW   ABW 1994
## 3684                                                 Aruba    AW   ABW 1993
## 3685                                                 Aruba    AW   ABW 1992
## 3686                                                 Aruba    AW   ABW 1991
## 3687                                                 Aruba    AW   ABW 1990
## 3688                                                 Aruba    AW   ABW 1989
## 3689                                                 Aruba    AW   ABW 1988
## 3690                                                 Aruba    AW   ABW 1987
## 3691                                                 Aruba    AW   ABW 1986
## 3692                                                 Aruba    AW   ABW 1985
## 3693                                                 Aruba    AW   ABW 1984
## 3694                                                 Aruba    AW   ABW 1983
## 3695                                                 Aruba    AW   ABW 1982
## 3696                                                 Aruba    AW   ABW 1981
## 3697                                                 Aruba    AW   ABW 1980
## 3698                                                 Aruba    AW   ABW 1979
## 3699                                                 Aruba    AW   ABW 1978
## 3700                                                 Aruba    AW   ABW 1977
## 3701                                                 Aruba    AW   ABW 1976
## 3702                                                 Aruba    AW   ABW 1975
## 3703                                                 Aruba    AW   ABW 1974
## 3704                                                 Aruba    AW   ABW 1973
## 3705                                                 Aruba    AW   ABW 1972
## 3706                                                 Aruba    AW   ABW 1971
## 3707                                                 Aruba    AW   ABW 1970
## 3708                                                 Aruba    AW   ABW 1969
## 3709                                                 Aruba    AW   ABW 1968
## 3710                                                 Aruba    AW   ABW 1967
## 3711                                                 Aruba    AW   ABW 1966
## 3712                                                 Aruba    AW   ABW 1965
## 3713                                                 Aruba    AW   ABW 1964
## 3714                                                 Aruba    AW   ABW 1963
## 3715                                                 Aruba    AW   ABW 1962
## 3716                                                 Aruba    AW   ABW 1961
## 3717                                                 Aruba    AW   ABW 1960
## 3718                                             Australia    AU   AUS 2022
## 3719                                             Australia    AU   AUS 2021
## 3720                                             Australia    AU   AUS 2020
## 3721                                             Australia    AU   AUS 2019
## 3722                                             Australia    AU   AUS 2018
## 3723                                             Australia    AU   AUS 2017
## 3724                                             Australia    AU   AUS 2016
## 3725                                             Australia    AU   AUS 2015
## 3726                                             Australia    AU   AUS 2014
## 3727                                             Australia    AU   AUS 2013
## 3728                                             Australia    AU   AUS 2012
## 3729                                             Australia    AU   AUS 2011
## 3730                                             Australia    AU   AUS 2010
## 3731                                             Australia    AU   AUS 2009
## 3732                                             Australia    AU   AUS 2008
## 3733                                             Australia    AU   AUS 2007
## 3734                                             Australia    AU   AUS 2006
## 3735                                             Australia    AU   AUS 2005
## 3736                                             Australia    AU   AUS 2004
## 3737                                             Australia    AU   AUS 2003
## 3738                                             Australia    AU   AUS 2002
## 3739                                             Australia    AU   AUS 2001
## 3740                                             Australia    AU   AUS 2000
## 3741                                             Australia    AU   AUS 1999
## 3742                                             Australia    AU   AUS 1998
## 3743                                             Australia    AU   AUS 1997
## 3744                                             Australia    AU   AUS 1996
## 3745                                             Australia    AU   AUS 1995
## 3746                                             Australia    AU   AUS 1994
## 3747                                             Australia    AU   AUS 1993
## 3748                                             Australia    AU   AUS 1992
## 3749                                             Australia    AU   AUS 1991
## 3750                                             Australia    AU   AUS 1990
## 3751                                             Australia    AU   AUS 1989
## 3752                                             Australia    AU   AUS 1988
## 3753                                             Australia    AU   AUS 1987
## 3754                                             Australia    AU   AUS 1986
## 3755                                             Australia    AU   AUS 1985
## 3756                                             Australia    AU   AUS 1984
## 3757                                             Australia    AU   AUS 1983
## 3758                                             Australia    AU   AUS 1982
## 3759                                             Australia    AU   AUS 1981
## 3760                                             Australia    AU   AUS 1980
## 3761                                             Australia    AU   AUS 1979
## 3762                                             Australia    AU   AUS 1978
## 3763                                             Australia    AU   AUS 1977
## 3764                                             Australia    AU   AUS 1976
## 3765                                             Australia    AU   AUS 1975
## 3766                                             Australia    AU   AUS 1974
## 3767                                             Australia    AU   AUS 1973
## 3768                                             Australia    AU   AUS 1972
## 3769                                             Australia    AU   AUS 1971
## 3770                                             Australia    AU   AUS 1970
## 3771                                             Australia    AU   AUS 1969
## 3772                                             Australia    AU   AUS 1968
## 3773                                             Australia    AU   AUS 1967
## 3774                                             Australia    AU   AUS 1966
## 3775                                             Australia    AU   AUS 1965
## 3776                                             Australia    AU   AUS 1964
## 3777                                             Australia    AU   AUS 1963
## 3778                                             Australia    AU   AUS 1962
## 3779                                             Australia    AU   AUS 1961
## 3780                                             Australia    AU   AUS 1960
## 3781                                               Austria    AT   AUT 2022
## 3782                                               Austria    AT   AUT 2021
## 3783                                               Austria    AT   AUT 2020
## 3784                                               Austria    AT   AUT 2019
## 3785                                               Austria    AT   AUT 2018
## 3786                                               Austria    AT   AUT 2017
## 3787                                               Austria    AT   AUT 2016
## 3788                                               Austria    AT   AUT 2015
## 3789                                               Austria    AT   AUT 2014
## 3790                                               Austria    AT   AUT 2013
## 3791                                               Austria    AT   AUT 2012
## 3792                                               Austria    AT   AUT 2011
## 3793                                               Austria    AT   AUT 2010
## 3794                                               Austria    AT   AUT 2009
## 3795                                               Austria    AT   AUT 2008
## 3796                                               Austria    AT   AUT 2007
## 3797                                               Austria    AT   AUT 2006
## 3798                                               Austria    AT   AUT 2005
## 3799                                               Austria    AT   AUT 2004
## 3800                                               Austria    AT   AUT 2003
## 3801                                               Austria    AT   AUT 2002
## 3802                                               Austria    AT   AUT 2001
## 3803                                               Austria    AT   AUT 2000
## 3804                                               Austria    AT   AUT 1999
## 3805                                               Austria    AT   AUT 1998
## 3806                                               Austria    AT   AUT 1997
## 3807                                               Austria    AT   AUT 1996
## 3808                                               Austria    AT   AUT 1995
## 3809                                               Austria    AT   AUT 1994
## 3810                                               Austria    AT   AUT 1993
## 3811                                               Austria    AT   AUT 1992
## 3812                                               Austria    AT   AUT 1991
## 3813                                               Austria    AT   AUT 1990
## 3814                                               Austria    AT   AUT 1989
## 3815                                               Austria    AT   AUT 1988
## 3816                                               Austria    AT   AUT 1987
## 3817                                               Austria    AT   AUT 1986
## 3818                                               Austria    AT   AUT 1985
## 3819                                               Austria    AT   AUT 1984
## 3820                                               Austria    AT   AUT 1983
## 3821                                               Austria    AT   AUT 1982
## 3822                                               Austria    AT   AUT 1981
## 3823                                               Austria    AT   AUT 1980
## 3824                                               Austria    AT   AUT 1979
## 3825                                               Austria    AT   AUT 1978
## 3826                                               Austria    AT   AUT 1977
## 3827                                               Austria    AT   AUT 1976
## 3828                                               Austria    AT   AUT 1975
## 3829                                               Austria    AT   AUT 1974
## 3830                                               Austria    AT   AUT 1973
## 3831                                               Austria    AT   AUT 1972
## 3832                                               Austria    AT   AUT 1971
## 3833                                               Austria    AT   AUT 1970
## 3834                                               Austria    AT   AUT 1969
## 3835                                               Austria    AT   AUT 1968
## 3836                                               Austria    AT   AUT 1967
## 3837                                               Austria    AT   AUT 1966
## 3838                                               Austria    AT   AUT 1965
## 3839                                               Austria    AT   AUT 1964
## 3840                                               Austria    AT   AUT 1963
## 3841                                               Austria    AT   AUT 1962
## 3842                                               Austria    AT   AUT 1961
## 3843                                               Austria    AT   AUT 1960
## 3844                                            Azerbaijan    AZ   AZE 2022
## 3845                                            Azerbaijan    AZ   AZE 2021
## 3846                                            Azerbaijan    AZ   AZE 2020
## 3847                                            Azerbaijan    AZ   AZE 2019
## 3848                                            Azerbaijan    AZ   AZE 2018
## 3849                                            Azerbaijan    AZ   AZE 2017
## 3850                                            Azerbaijan    AZ   AZE 2016
## 3851                                            Azerbaijan    AZ   AZE 2015
## 3852                                            Azerbaijan    AZ   AZE 2014
## 3853                                            Azerbaijan    AZ   AZE 2013
## 3854                                            Azerbaijan    AZ   AZE 2012
## 3855                                            Azerbaijan    AZ   AZE 2011
## 3856                                            Azerbaijan    AZ   AZE 2010
## 3857                                            Azerbaijan    AZ   AZE 2009
## 3858                                            Azerbaijan    AZ   AZE 2008
## 3859                                            Azerbaijan    AZ   AZE 2007
## 3860                                            Azerbaijan    AZ   AZE 2006
## 3861                                            Azerbaijan    AZ   AZE 2005
## 3862                                            Azerbaijan    AZ   AZE 2004
## 3863                                            Azerbaijan    AZ   AZE 2003
## 3864                                            Azerbaijan    AZ   AZE 2002
## 3865                                            Azerbaijan    AZ   AZE 2001
## 3866                                            Azerbaijan    AZ   AZE 2000
## 3867                                            Azerbaijan    AZ   AZE 1999
## 3868                                            Azerbaijan    AZ   AZE 1998
## 3869                                            Azerbaijan    AZ   AZE 1997
## 3870                                            Azerbaijan    AZ   AZE 1996
## 3871                                            Azerbaijan    AZ   AZE 1995
## 3872                                            Azerbaijan    AZ   AZE 1994
## 3873                                            Azerbaijan    AZ   AZE 1993
## 3874                                            Azerbaijan    AZ   AZE 1992
## 3875                                            Azerbaijan    AZ   AZE 1991
## 3876                                            Azerbaijan    AZ   AZE 1990
## 3877                                            Azerbaijan    AZ   AZE 1989
## 3878                                            Azerbaijan    AZ   AZE 1988
## 3879                                            Azerbaijan    AZ   AZE 1987
## 3880                                            Azerbaijan    AZ   AZE 1986
## 3881                                            Azerbaijan    AZ   AZE 1985
## 3882                                            Azerbaijan    AZ   AZE 1984
## 3883                                            Azerbaijan    AZ   AZE 1983
## 3884                                            Azerbaijan    AZ   AZE 1982
## 3885                                            Azerbaijan    AZ   AZE 1981
## 3886                                            Azerbaijan    AZ   AZE 1980
## 3887                                            Azerbaijan    AZ   AZE 1979
## 3888                                            Azerbaijan    AZ   AZE 1978
## 3889                                            Azerbaijan    AZ   AZE 1977
## 3890                                            Azerbaijan    AZ   AZE 1976
## 3891                                            Azerbaijan    AZ   AZE 1975
## 3892                                            Azerbaijan    AZ   AZE 1974
## 3893                                            Azerbaijan    AZ   AZE 1973
## 3894                                            Azerbaijan    AZ   AZE 1972
## 3895                                            Azerbaijan    AZ   AZE 1971
## 3896                                            Azerbaijan    AZ   AZE 1970
## 3897                                            Azerbaijan    AZ   AZE 1969
## 3898                                            Azerbaijan    AZ   AZE 1968
## 3899                                            Azerbaijan    AZ   AZE 1967
## 3900                                            Azerbaijan    AZ   AZE 1966
## 3901                                            Azerbaijan    AZ   AZE 1965
## 3902                                            Azerbaijan    AZ   AZE 1964
## 3903                                            Azerbaijan    AZ   AZE 1963
## 3904                                            Azerbaijan    AZ   AZE 1962
## 3905                                            Azerbaijan    AZ   AZE 1961
## 3906                                            Azerbaijan    AZ   AZE 1960
## 3907                                          Bahamas, The    BS   BHS 2022
## 3908                                          Bahamas, The    BS   BHS 2021
## 3909                                          Bahamas, The    BS   BHS 2020
## 3910                                          Bahamas, The    BS   BHS 2019
## 3911                                          Bahamas, The    BS   BHS 2018
## 3912                                          Bahamas, The    BS   BHS 2017
## 3913                                          Bahamas, The    BS   BHS 2016
## 3914                                          Bahamas, The    BS   BHS 2015
## 3915                                          Bahamas, The    BS   BHS 2014
## 3916                                          Bahamas, The    BS   BHS 2013
## 3917                                          Bahamas, The    BS   BHS 2012
## 3918                                          Bahamas, The    BS   BHS 2011
## 3919                                          Bahamas, The    BS   BHS 2010
## 3920                                          Bahamas, The    BS   BHS 2009
## 3921                                          Bahamas, The    BS   BHS 2008
## 3922                                          Bahamas, The    BS   BHS 2007
## 3923                                          Bahamas, The    BS   BHS 2006
## 3924                                          Bahamas, The    BS   BHS 2005
## 3925                                          Bahamas, The    BS   BHS 2004
## 3926                                          Bahamas, The    BS   BHS 2003
## 3927                                          Bahamas, The    BS   BHS 2002
## 3928                                          Bahamas, The    BS   BHS 2001
## 3929                                          Bahamas, The    BS   BHS 2000
## 3930                                          Bahamas, The    BS   BHS 1999
## 3931                                          Bahamas, The    BS   BHS 1998
## 3932                                          Bahamas, The    BS   BHS 1997
## 3933                                          Bahamas, The    BS   BHS 1996
## 3934                                          Bahamas, The    BS   BHS 1995
## 3935                                          Bahamas, The    BS   BHS 1994
## 3936                                          Bahamas, The    BS   BHS 1993
## 3937                                          Bahamas, The    BS   BHS 1992
## 3938                                          Bahamas, The    BS   BHS 1991
## 3939                                          Bahamas, The    BS   BHS 1990
## 3940                                          Bahamas, The    BS   BHS 1989
## 3941                                          Bahamas, The    BS   BHS 1988
## 3942                                          Bahamas, The    BS   BHS 1987
## 3943                                          Bahamas, The    BS   BHS 1986
## 3944                                          Bahamas, The    BS   BHS 1985
## 3945                                          Bahamas, The    BS   BHS 1984
## 3946                                          Bahamas, The    BS   BHS 1983
## 3947                                          Bahamas, The    BS   BHS 1982
## 3948                                          Bahamas, The    BS   BHS 1981
## 3949                                          Bahamas, The    BS   BHS 1980
## 3950                                          Bahamas, The    BS   BHS 1979
## 3951                                          Bahamas, The    BS   BHS 1978
## 3952                                          Bahamas, The    BS   BHS 1977
## 3953                                          Bahamas, The    BS   BHS 1976
## 3954                                          Bahamas, The    BS   BHS 1975
## 3955                                          Bahamas, The    BS   BHS 1974
## 3956                                          Bahamas, The    BS   BHS 1973
## 3957                                          Bahamas, The    BS   BHS 1972
## 3958                                          Bahamas, The    BS   BHS 1971
## 3959                                          Bahamas, The    BS   BHS 1970
## 3960                                          Bahamas, The    BS   BHS 1969
## 3961                                          Bahamas, The    BS   BHS 1968
## 3962                                          Bahamas, The    BS   BHS 1967
## 3963                                          Bahamas, The    BS   BHS 1966
## 3964                                          Bahamas, The    BS   BHS 1965
## 3965                                          Bahamas, The    BS   BHS 1964
## 3966                                          Bahamas, The    BS   BHS 1963
## 3967                                          Bahamas, The    BS   BHS 1962
## 3968                                          Bahamas, The    BS   BHS 1961
## 3969                                          Bahamas, The    BS   BHS 1960
## 3970                                               Bahrain    BH   BHR 2022
## 3971                                               Bahrain    BH   BHR 2021
## 3972                                               Bahrain    BH   BHR 2020
## 3973                                               Bahrain    BH   BHR 2019
## 3974                                               Bahrain    BH   BHR 2018
## 3975                                               Bahrain    BH   BHR 2017
## 3976                                               Bahrain    BH   BHR 2016
## 3977                                               Bahrain    BH   BHR 2015
## 3978                                               Bahrain    BH   BHR 2014
## 3979                                               Bahrain    BH   BHR 2013
## 3980                                               Bahrain    BH   BHR 2012
## 3981                                               Bahrain    BH   BHR 2011
## 3982                                               Bahrain    BH   BHR 2010
## 3983                                               Bahrain    BH   BHR 2009
## 3984                                               Bahrain    BH   BHR 2008
## 3985                                               Bahrain    BH   BHR 2007
## 3986                                               Bahrain    BH   BHR 2006
## 3987                                               Bahrain    BH   BHR 2005
## 3988                                               Bahrain    BH   BHR 2004
## 3989                                               Bahrain    BH   BHR 2003
## 3990                                               Bahrain    BH   BHR 2002
## 3991                                               Bahrain    BH   BHR 2001
## 3992                                               Bahrain    BH   BHR 2000
## 3993                                               Bahrain    BH   BHR 1999
## 3994                                               Bahrain    BH   BHR 1998
## 3995                                               Bahrain    BH   BHR 1997
## 3996                                               Bahrain    BH   BHR 1996
## 3997                                               Bahrain    BH   BHR 1995
## 3998                                               Bahrain    BH   BHR 1994
## 3999                                               Bahrain    BH   BHR 1993
## 4000                                               Bahrain    BH   BHR 1992
## 4001                                               Bahrain    BH   BHR 1991
## 4002                                               Bahrain    BH   BHR 1990
## 4003                                               Bahrain    BH   BHR 1989
## 4004                                               Bahrain    BH   BHR 1988
## 4005                                               Bahrain    BH   BHR 1987
## 4006                                               Bahrain    BH   BHR 1986
## 4007                                               Bahrain    BH   BHR 1985
## 4008                                               Bahrain    BH   BHR 1984
## 4009                                               Bahrain    BH   BHR 1983
## 4010                                               Bahrain    BH   BHR 1982
## 4011                                               Bahrain    BH   BHR 1981
## 4012                                               Bahrain    BH   BHR 1980
## 4013                                               Bahrain    BH   BHR 1979
## 4014                                               Bahrain    BH   BHR 1978
## 4015                                               Bahrain    BH   BHR 1977
## 4016                                               Bahrain    BH   BHR 1976
## 4017                                               Bahrain    BH   BHR 1975
## 4018                                               Bahrain    BH   BHR 1974
## 4019                                               Bahrain    BH   BHR 1973
## 4020                                               Bahrain    BH   BHR 1972
## 4021                                               Bahrain    BH   BHR 1971
## 4022                                               Bahrain    BH   BHR 1970
## 4023                                               Bahrain    BH   BHR 1969
## 4024                                               Bahrain    BH   BHR 1968
## 4025                                               Bahrain    BH   BHR 1967
## 4026                                               Bahrain    BH   BHR 1966
## 4027                                               Bahrain    BH   BHR 1965
## 4028                                               Bahrain    BH   BHR 1964
## 4029                                               Bahrain    BH   BHR 1963
## 4030                                               Bahrain    BH   BHR 1962
## 4031                                               Bahrain    BH   BHR 1961
## 4032                                               Bahrain    BH   BHR 1960
## 4033                                            Bangladesh    BD   BGD 2022
## 4034                                            Bangladesh    BD   BGD 2021
## 4035                                            Bangladesh    BD   BGD 2020
## 4036                                            Bangladesh    BD   BGD 2019
## 4037                                            Bangladesh    BD   BGD 2018
## 4038                                            Bangladesh    BD   BGD 2017
## 4039                                            Bangladesh    BD   BGD 2016
## 4040                                            Bangladesh    BD   BGD 2015
## 4041                                            Bangladesh    BD   BGD 2014
## 4042                                            Bangladesh    BD   BGD 2013
## 4043                                            Bangladesh    BD   BGD 2012
## 4044                                            Bangladesh    BD   BGD 2011
## 4045                                            Bangladesh    BD   BGD 2010
## 4046                                            Bangladesh    BD   BGD 2009
## 4047                                            Bangladesh    BD   BGD 2008
## 4048                                            Bangladesh    BD   BGD 2007
## 4049                                            Bangladesh    BD   BGD 2006
## 4050                                            Bangladesh    BD   BGD 2005
## 4051                                            Bangladesh    BD   BGD 2004
## 4052                                            Bangladesh    BD   BGD 2003
## 4053                                            Bangladesh    BD   BGD 2002
## 4054                                            Bangladesh    BD   BGD 2001
## 4055                                            Bangladesh    BD   BGD 2000
## 4056                                            Bangladesh    BD   BGD 1999
## 4057                                            Bangladesh    BD   BGD 1998
## 4058                                            Bangladesh    BD   BGD 1997
## 4059                                            Bangladesh    BD   BGD 1996
## 4060                                            Bangladesh    BD   BGD 1995
## 4061                                            Bangladesh    BD   BGD 1994
## 4062                                            Bangladesh    BD   BGD 1993
## 4063                                            Bangladesh    BD   BGD 1992
## 4064                                            Bangladesh    BD   BGD 1991
## 4065                                            Bangladesh    BD   BGD 1990
## 4066                                            Bangladesh    BD   BGD 1989
## 4067                                            Bangladesh    BD   BGD 1988
## 4068                                            Bangladesh    BD   BGD 1987
## 4069                                            Bangladesh    BD   BGD 1986
## 4070                                            Bangladesh    BD   BGD 1985
## 4071                                            Bangladesh    BD   BGD 1984
## 4072                                            Bangladesh    BD   BGD 1983
## 4073                                            Bangladesh    BD   BGD 1982
## 4074                                            Bangladesh    BD   BGD 1981
## 4075                                            Bangladesh    BD   BGD 1980
## 4076                                            Bangladesh    BD   BGD 1979
## 4077                                            Bangladesh    BD   BGD 1978
## 4078                                            Bangladesh    BD   BGD 1977
## 4079                                            Bangladesh    BD   BGD 1976
## 4080                                            Bangladesh    BD   BGD 1975
## 4081                                            Bangladesh    BD   BGD 1974
## 4082                                            Bangladesh    BD   BGD 1973
## 4083                                            Bangladesh    BD   BGD 1972
## 4084                                            Bangladesh    BD   BGD 1971
## 4085                                            Bangladesh    BD   BGD 1970
## 4086                                            Bangladesh    BD   BGD 1969
## 4087                                            Bangladesh    BD   BGD 1968
## 4088                                            Bangladesh    BD   BGD 1967
## 4089                                            Bangladesh    BD   BGD 1966
## 4090                                            Bangladesh    BD   BGD 1965
## 4091                                            Bangladesh    BD   BGD 1964
## 4092                                            Bangladesh    BD   BGD 1963
## 4093                                            Bangladesh    BD   BGD 1962
## 4094                                            Bangladesh    BD   BGD 1961
## 4095                                            Bangladesh    BD   BGD 1960
## 4096                                              Barbados    BB   BRB 2022
## 4097                                              Barbados    BB   BRB 2021
## 4098                                              Barbados    BB   BRB 2020
## 4099                                              Barbados    BB   BRB 2019
## 4100                                              Barbados    BB   BRB 2018
## 4101                                              Barbados    BB   BRB 2017
## 4102                                              Barbados    BB   BRB 2016
## 4103                                              Barbados    BB   BRB 2015
## 4104                                              Barbados    BB   BRB 2014
## 4105                                              Barbados    BB   BRB 2013
## 4106                                              Barbados    BB   BRB 2012
## 4107                                              Barbados    BB   BRB 2011
## 4108                                              Barbados    BB   BRB 2010
## 4109                                              Barbados    BB   BRB 2009
## 4110                                              Barbados    BB   BRB 2008
## 4111                                              Barbados    BB   BRB 2007
## 4112                                              Barbados    BB   BRB 2006
## 4113                                              Barbados    BB   BRB 2005
## 4114                                              Barbados    BB   BRB 2004
## 4115                                              Barbados    BB   BRB 2003
## 4116                                              Barbados    BB   BRB 2002
## 4117                                              Barbados    BB   BRB 2001
## 4118                                              Barbados    BB   BRB 2000
## 4119                                              Barbados    BB   BRB 1999
## 4120                                              Barbados    BB   BRB 1998
## 4121                                              Barbados    BB   BRB 1997
## 4122                                              Barbados    BB   BRB 1996
## 4123                                              Barbados    BB   BRB 1995
## 4124                                              Barbados    BB   BRB 1994
## 4125                                              Barbados    BB   BRB 1993
## 4126                                              Barbados    BB   BRB 1992
## 4127                                              Barbados    BB   BRB 1991
## 4128                                              Barbados    BB   BRB 1990
## 4129                                              Barbados    BB   BRB 1989
## 4130                                              Barbados    BB   BRB 1988
## 4131                                              Barbados    BB   BRB 1987
## 4132                                              Barbados    BB   BRB 1986
## 4133                                              Barbados    BB   BRB 1985
## 4134                                              Barbados    BB   BRB 1984
## 4135                                              Barbados    BB   BRB 1983
## 4136                                              Barbados    BB   BRB 1982
## 4137                                              Barbados    BB   BRB 1981
## 4138                                              Barbados    BB   BRB 1980
## 4139                                              Barbados    BB   BRB 1979
## 4140                                              Barbados    BB   BRB 1978
## 4141                                              Barbados    BB   BRB 1977
## 4142                                              Barbados    BB   BRB 1976
## 4143                                              Barbados    BB   BRB 1975
## 4144                                              Barbados    BB   BRB 1974
## 4145                                              Barbados    BB   BRB 1973
## 4146                                              Barbados    BB   BRB 1972
## 4147                                              Barbados    BB   BRB 1971
## 4148                                              Barbados    BB   BRB 1970
## 4149                                              Barbados    BB   BRB 1969
## 4150                                              Barbados    BB   BRB 1968
## 4151                                              Barbados    BB   BRB 1967
## 4152                                              Barbados    BB   BRB 1966
## 4153                                              Barbados    BB   BRB 1965
## 4154                                              Barbados    BB   BRB 1964
## 4155                                              Barbados    BB   BRB 1963
## 4156                                              Barbados    BB   BRB 1962
## 4157                                              Barbados    BB   BRB 1961
## 4158                                              Barbados    BB   BRB 1960
## 4159                                               Belarus    BY   BLR 2022
## 4160                                               Belarus    BY   BLR 2021
## 4161                                               Belarus    BY   BLR 2020
## 4162                                               Belarus    BY   BLR 2019
## 4163                                               Belarus    BY   BLR 2018
## 4164                                               Belarus    BY   BLR 2017
## 4165                                               Belarus    BY   BLR 2016
## 4166                                               Belarus    BY   BLR 2015
## 4167                                               Belarus    BY   BLR 2014
## 4168                                               Belarus    BY   BLR 2013
## 4169                                               Belarus    BY   BLR 2012
## 4170                                               Belarus    BY   BLR 2011
## 4171                                               Belarus    BY   BLR 2010
## 4172                                               Belarus    BY   BLR 2009
## 4173                                               Belarus    BY   BLR 2008
## 4174                                               Belarus    BY   BLR 2007
## 4175                                               Belarus    BY   BLR 2006
## 4176                                               Belarus    BY   BLR 2005
## 4177                                               Belarus    BY   BLR 2004
## 4178                                               Belarus    BY   BLR 2003
## 4179                                               Belarus    BY   BLR 2002
## 4180                                               Belarus    BY   BLR 2001
## 4181                                               Belarus    BY   BLR 2000
## 4182                                               Belarus    BY   BLR 1999
## 4183                                               Belarus    BY   BLR 1998
## 4184                                               Belarus    BY   BLR 1997
## 4185                                               Belarus    BY   BLR 1996
## 4186                                               Belarus    BY   BLR 1995
## 4187                                               Belarus    BY   BLR 1994
## 4188                                               Belarus    BY   BLR 1993
## 4189                                               Belarus    BY   BLR 1992
## 4190                                               Belarus    BY   BLR 1991
## 4191                                               Belarus    BY   BLR 1990
## 4192                                               Belarus    BY   BLR 1989
## 4193                                               Belarus    BY   BLR 1988
## 4194                                               Belarus    BY   BLR 1987
## 4195                                               Belarus    BY   BLR 1986
## 4196                                               Belarus    BY   BLR 1985
## 4197                                               Belarus    BY   BLR 1984
## 4198                                               Belarus    BY   BLR 1983
## 4199                                               Belarus    BY   BLR 1982
## 4200                                               Belarus    BY   BLR 1981
## 4201                                               Belarus    BY   BLR 1980
## 4202                                               Belarus    BY   BLR 1979
## 4203                                               Belarus    BY   BLR 1978
## 4204                                               Belarus    BY   BLR 1977
## 4205                                               Belarus    BY   BLR 1976
## 4206                                               Belarus    BY   BLR 1975
## 4207                                               Belarus    BY   BLR 1974
## 4208                                               Belarus    BY   BLR 1973
## 4209                                               Belarus    BY   BLR 1972
## 4210                                               Belarus    BY   BLR 1971
## 4211                                               Belarus    BY   BLR 1970
## 4212                                               Belarus    BY   BLR 1969
## 4213                                               Belarus    BY   BLR 1968
## 4214                                               Belarus    BY   BLR 1967
## 4215                                               Belarus    BY   BLR 1966
## 4216                                               Belarus    BY   BLR 1965
## 4217                                               Belarus    BY   BLR 1964
## 4218                                               Belarus    BY   BLR 1963
## 4219                                               Belarus    BY   BLR 1962
## 4220                                               Belarus    BY   BLR 1961
## 4221                                               Belarus    BY   BLR 1960
## 4222                                               Belgium    BE   BEL 2022
## 4223                                               Belgium    BE   BEL 2021
## 4224                                               Belgium    BE   BEL 2020
## 4225                                               Belgium    BE   BEL 2019
## 4226                                               Belgium    BE   BEL 2018
## 4227                                               Belgium    BE   BEL 2017
## 4228                                               Belgium    BE   BEL 2016
## 4229                                               Belgium    BE   BEL 2015
## 4230                                               Belgium    BE   BEL 2014
## 4231                                               Belgium    BE   BEL 2013
## 4232                                               Belgium    BE   BEL 2012
## 4233                                               Belgium    BE   BEL 2011
## 4234                                               Belgium    BE   BEL 2010
## 4235                                               Belgium    BE   BEL 2009
## 4236                                               Belgium    BE   BEL 2008
## 4237                                               Belgium    BE   BEL 2007
## 4238                                               Belgium    BE   BEL 2006
## 4239                                               Belgium    BE   BEL 2005
## 4240                                               Belgium    BE   BEL 2004
## 4241                                               Belgium    BE   BEL 2003
## 4242                                               Belgium    BE   BEL 2002
## 4243                                               Belgium    BE   BEL 2001
## 4244                                               Belgium    BE   BEL 2000
## 4245                                               Belgium    BE   BEL 1999
## 4246                                               Belgium    BE   BEL 1998
## 4247                                               Belgium    BE   BEL 1997
## 4248                                               Belgium    BE   BEL 1996
## 4249                                               Belgium    BE   BEL 1995
## 4250                                               Belgium    BE   BEL 1994
## 4251                                               Belgium    BE   BEL 1993
## 4252                                               Belgium    BE   BEL 1992
## 4253                                               Belgium    BE   BEL 1991
## 4254                                               Belgium    BE   BEL 1990
## 4255                                               Belgium    BE   BEL 1989
## 4256                                               Belgium    BE   BEL 1988
## 4257                                               Belgium    BE   BEL 1987
## 4258                                               Belgium    BE   BEL 1986
## 4259                                               Belgium    BE   BEL 1985
## 4260                                               Belgium    BE   BEL 1984
## 4261                                               Belgium    BE   BEL 1983
## 4262                                               Belgium    BE   BEL 1982
## 4263                                               Belgium    BE   BEL 1981
## 4264                                               Belgium    BE   BEL 1980
## 4265                                               Belgium    BE   BEL 1979
## 4266                                               Belgium    BE   BEL 1978
## 4267                                               Belgium    BE   BEL 1977
## 4268                                               Belgium    BE   BEL 1976
## 4269                                               Belgium    BE   BEL 1975
## 4270                                               Belgium    BE   BEL 1974
## 4271                                               Belgium    BE   BEL 1973
## 4272                                               Belgium    BE   BEL 1972
## 4273                                               Belgium    BE   BEL 1971
## 4274                                               Belgium    BE   BEL 1970
## 4275                                               Belgium    BE   BEL 1969
## 4276                                               Belgium    BE   BEL 1968
## 4277                                               Belgium    BE   BEL 1967
## 4278                                               Belgium    BE   BEL 1966
## 4279                                               Belgium    BE   BEL 1965
## 4280                                               Belgium    BE   BEL 1964
## 4281                                               Belgium    BE   BEL 1963
## 4282                                               Belgium    BE   BEL 1962
## 4283                                               Belgium    BE   BEL 1961
## 4284                                               Belgium    BE   BEL 1960
## 4285                                                Belize    BZ   BLZ 2022
## 4286                                                Belize    BZ   BLZ 2021
## 4287                                                Belize    BZ   BLZ 2020
## 4288                                                Belize    BZ   BLZ 2019
## 4289                                                Belize    BZ   BLZ 2018
## 4290                                                Belize    BZ   BLZ 2017
## 4291                                                Belize    BZ   BLZ 2016
## 4292                                                Belize    BZ   BLZ 2015
## 4293                                                Belize    BZ   BLZ 2014
## 4294                                                Belize    BZ   BLZ 2013
## 4295                                                Belize    BZ   BLZ 2012
## 4296                                                Belize    BZ   BLZ 2011
## 4297                                                Belize    BZ   BLZ 2010
## 4298                                                Belize    BZ   BLZ 2009
## 4299                                                Belize    BZ   BLZ 2008
## 4300                                                Belize    BZ   BLZ 2007
## 4301                                                Belize    BZ   BLZ 2006
## 4302                                                Belize    BZ   BLZ 2005
## 4303                                                Belize    BZ   BLZ 2004
## 4304                                                Belize    BZ   BLZ 2003
## 4305                                                Belize    BZ   BLZ 2002
## 4306                                                Belize    BZ   BLZ 2001
## 4307                                                Belize    BZ   BLZ 2000
## 4308                                                Belize    BZ   BLZ 1999
## 4309                                                Belize    BZ   BLZ 1998
## 4310                                                Belize    BZ   BLZ 1997
## 4311                                                Belize    BZ   BLZ 1996
## 4312                                                Belize    BZ   BLZ 1995
## 4313                                                Belize    BZ   BLZ 1994
## 4314                                                Belize    BZ   BLZ 1993
## 4315                                                Belize    BZ   BLZ 1992
## 4316                                                Belize    BZ   BLZ 1991
## 4317                                                Belize    BZ   BLZ 1990
## 4318                                                Belize    BZ   BLZ 1989
## 4319                                                Belize    BZ   BLZ 1988
## 4320                                                Belize    BZ   BLZ 1987
## 4321                                                Belize    BZ   BLZ 1986
## 4322                                                Belize    BZ   BLZ 1985
## 4323                                                Belize    BZ   BLZ 1984
## 4324                                                Belize    BZ   BLZ 1983
## 4325                                                Belize    BZ   BLZ 1982
## 4326                                                Belize    BZ   BLZ 1981
## 4327                                                Belize    BZ   BLZ 1980
## 4328                                                Belize    BZ   BLZ 1979
## 4329                                                Belize    BZ   BLZ 1978
## 4330                                                Belize    BZ   BLZ 1977
## 4331                                                Belize    BZ   BLZ 1976
## 4332                                                Belize    BZ   BLZ 1975
## 4333                                                Belize    BZ   BLZ 1974
## 4334                                                Belize    BZ   BLZ 1973
## 4335                                                Belize    BZ   BLZ 1972
## 4336                                                Belize    BZ   BLZ 1971
## 4337                                                Belize    BZ   BLZ 1970
## 4338                                                Belize    BZ   BLZ 1969
## 4339                                                Belize    BZ   BLZ 1968
## 4340                                                Belize    BZ   BLZ 1967
## 4341                                                Belize    BZ   BLZ 1966
## 4342                                                Belize    BZ   BLZ 1965
## 4343                                                Belize    BZ   BLZ 1964
## 4344                                                Belize    BZ   BLZ 1963
## 4345                                                Belize    BZ   BLZ 1962
## 4346                                                Belize    BZ   BLZ 1961
## 4347                                                Belize    BZ   BLZ 1960
## 4348                                                 Benin    BJ   BEN 2022
## 4349                                                 Benin    BJ   BEN 2021
## 4350                                                 Benin    BJ   BEN 2020
## 4351                                                 Benin    BJ   BEN 2019
## 4352                                                 Benin    BJ   BEN 2018
## 4353                                                 Benin    BJ   BEN 2017
## 4354                                                 Benin    BJ   BEN 2016
## 4355                                                 Benin    BJ   BEN 2015
## 4356                                                 Benin    BJ   BEN 2014
## 4357                                                 Benin    BJ   BEN 2013
## 4358                                                 Benin    BJ   BEN 2012
## 4359                                                 Benin    BJ   BEN 2011
## 4360                                                 Benin    BJ   BEN 2010
## 4361                                                 Benin    BJ   BEN 2009
## 4362                                                 Benin    BJ   BEN 2008
## 4363                                                 Benin    BJ   BEN 2007
## 4364                                                 Benin    BJ   BEN 2006
## 4365                                                 Benin    BJ   BEN 2005
## 4366                                                 Benin    BJ   BEN 2004
## 4367                                                 Benin    BJ   BEN 2003
## 4368                                                 Benin    BJ   BEN 2002
## 4369                                                 Benin    BJ   BEN 2001
## 4370                                                 Benin    BJ   BEN 2000
## 4371                                                 Benin    BJ   BEN 1999
## 4372                                                 Benin    BJ   BEN 1998
## 4373                                                 Benin    BJ   BEN 1997
## 4374                                                 Benin    BJ   BEN 1996
## 4375                                                 Benin    BJ   BEN 1995
## 4376                                                 Benin    BJ   BEN 1994
## 4377                                                 Benin    BJ   BEN 1993
## 4378                                                 Benin    BJ   BEN 1992
## 4379                                                 Benin    BJ   BEN 1991
## 4380                                                 Benin    BJ   BEN 1990
## 4381                                                 Benin    BJ   BEN 1989
## 4382                                                 Benin    BJ   BEN 1988
## 4383                                                 Benin    BJ   BEN 1987
## 4384                                                 Benin    BJ   BEN 1986
## 4385                                                 Benin    BJ   BEN 1985
## 4386                                                 Benin    BJ   BEN 1984
## 4387                                                 Benin    BJ   BEN 1983
## 4388                                                 Benin    BJ   BEN 1982
## 4389                                                 Benin    BJ   BEN 1981
## 4390                                                 Benin    BJ   BEN 1980
## 4391                                                 Benin    BJ   BEN 1979
## 4392                                                 Benin    BJ   BEN 1978
## 4393                                                 Benin    BJ   BEN 1977
## 4394                                                 Benin    BJ   BEN 1976
## 4395                                                 Benin    BJ   BEN 1975
## 4396                                                 Benin    BJ   BEN 1974
## 4397                                                 Benin    BJ   BEN 1973
## 4398                                                 Benin    BJ   BEN 1972
## 4399                                                 Benin    BJ   BEN 1971
## 4400                                                 Benin    BJ   BEN 1970
## 4401                                                 Benin    BJ   BEN 1969
## 4402                                                 Benin    BJ   BEN 1968
## 4403                                                 Benin    BJ   BEN 1967
## 4404                                                 Benin    BJ   BEN 1966
## 4405                                                 Benin    BJ   BEN 1965
## 4406                                                 Benin    BJ   BEN 1964
## 4407                                                 Benin    BJ   BEN 1963
## 4408                                                 Benin    BJ   BEN 1962
## 4409                                                 Benin    BJ   BEN 1961
## 4410                                                 Benin    BJ   BEN 1960
## 4411                                               Bermuda    BM   BMU 2022
## 4412                                               Bermuda    BM   BMU 2021
## 4413                                               Bermuda    BM   BMU 2020
## 4414                                               Bermuda    BM   BMU 2019
## 4415                                               Bermuda    BM   BMU 2018
## 4416                                               Bermuda    BM   BMU 2017
## 4417                                               Bermuda    BM   BMU 2016
## 4418                                               Bermuda    BM   BMU 2015
## 4419                                               Bermuda    BM   BMU 2014
## 4420                                               Bermuda    BM   BMU 2013
## 4421                                               Bermuda    BM   BMU 2012
## 4422                                               Bermuda    BM   BMU 2011
## 4423                                               Bermuda    BM   BMU 2010
## 4424                                               Bermuda    BM   BMU 2009
## 4425                                               Bermuda    BM   BMU 2008
## 4426                                               Bermuda    BM   BMU 2007
## 4427                                               Bermuda    BM   BMU 2006
## 4428                                               Bermuda    BM   BMU 2005
## 4429                                               Bermuda    BM   BMU 2004
## 4430                                               Bermuda    BM   BMU 2003
## 4431                                               Bermuda    BM   BMU 2002
## 4432                                               Bermuda    BM   BMU 2001
## 4433                                               Bermuda    BM   BMU 2000
## 4434                                               Bermuda    BM   BMU 1999
## 4435                                               Bermuda    BM   BMU 1998
## 4436                                               Bermuda    BM   BMU 1997
## 4437                                               Bermuda    BM   BMU 1996
## 4438                                               Bermuda    BM   BMU 1995
## 4439                                               Bermuda    BM   BMU 1994
## 4440                                               Bermuda    BM   BMU 1993
## 4441                                               Bermuda    BM   BMU 1992
## 4442                                               Bermuda    BM   BMU 1991
## 4443                                               Bermuda    BM   BMU 1990
## 4444                                               Bermuda    BM   BMU 1989
## 4445                                               Bermuda    BM   BMU 1988
## 4446                                               Bermuda    BM   BMU 1987
## 4447                                               Bermuda    BM   BMU 1986
## 4448                                               Bermuda    BM   BMU 1985
## 4449                                               Bermuda    BM   BMU 1984
## 4450                                               Bermuda    BM   BMU 1983
## 4451                                               Bermuda    BM   BMU 1982
## 4452                                               Bermuda    BM   BMU 1981
## 4453                                               Bermuda    BM   BMU 1980
## 4454                                               Bermuda    BM   BMU 1979
## 4455                                               Bermuda    BM   BMU 1978
## 4456                                               Bermuda    BM   BMU 1977
## 4457                                               Bermuda    BM   BMU 1976
## 4458                                               Bermuda    BM   BMU 1975
## 4459                                               Bermuda    BM   BMU 1974
## 4460                                               Bermuda    BM   BMU 1973
## 4461                                               Bermuda    BM   BMU 1972
## 4462                                               Bermuda    BM   BMU 1971
## 4463                                               Bermuda    BM   BMU 1970
## 4464                                               Bermuda    BM   BMU 1969
## 4465                                               Bermuda    BM   BMU 1968
## 4466                                               Bermuda    BM   BMU 1967
## 4467                                               Bermuda    BM   BMU 1966
## 4468                                               Bermuda    BM   BMU 1965
## 4469                                               Bermuda    BM   BMU 1964
## 4470                                               Bermuda    BM   BMU 1963
## 4471                                               Bermuda    BM   BMU 1962
## 4472                                               Bermuda    BM   BMU 1961
## 4473                                               Bermuda    BM   BMU 1960
## 4474                                                Bhutan    BT   BTN 2022
## 4475                                                Bhutan    BT   BTN 2021
## 4476                                                Bhutan    BT   BTN 2020
## 4477                                                Bhutan    BT   BTN 2019
## 4478                                                Bhutan    BT   BTN 2018
## 4479                                                Bhutan    BT   BTN 2017
## 4480                                                Bhutan    BT   BTN 2016
## 4481                                                Bhutan    BT   BTN 2015
## 4482                                                Bhutan    BT   BTN 2014
## 4483                                                Bhutan    BT   BTN 2013
## 4484                                                Bhutan    BT   BTN 2012
## 4485                                                Bhutan    BT   BTN 2011
## 4486                                                Bhutan    BT   BTN 2010
## 4487                                                Bhutan    BT   BTN 2009
## 4488                                                Bhutan    BT   BTN 2008
## 4489                                                Bhutan    BT   BTN 2007
## 4490                                                Bhutan    BT   BTN 2006
## 4491                                                Bhutan    BT   BTN 2005
## 4492                                                Bhutan    BT   BTN 2004
## 4493                                                Bhutan    BT   BTN 2003
## 4494                                                Bhutan    BT   BTN 2002
## 4495                                                Bhutan    BT   BTN 2001
## 4496                                                Bhutan    BT   BTN 2000
## 4497                                                Bhutan    BT   BTN 1999
## 4498                                                Bhutan    BT   BTN 1998
## 4499                                                Bhutan    BT   BTN 1997
## 4500                                                Bhutan    BT   BTN 1996
## 4501                                                Bhutan    BT   BTN 1995
## 4502                                                Bhutan    BT   BTN 1994
## 4503                                                Bhutan    BT   BTN 1993
## 4504                                                Bhutan    BT   BTN 1992
## 4505                                                Bhutan    BT   BTN 1991
## 4506                                                Bhutan    BT   BTN 1990
## 4507                                                Bhutan    BT   BTN 1989
## 4508                                                Bhutan    BT   BTN 1988
## 4509                                                Bhutan    BT   BTN 1987
## 4510                                                Bhutan    BT   BTN 1986
## 4511                                                Bhutan    BT   BTN 1985
## 4512                                                Bhutan    BT   BTN 1984
## 4513                                                Bhutan    BT   BTN 1983
## 4514                                                Bhutan    BT   BTN 1982
## 4515                                                Bhutan    BT   BTN 1981
## 4516                                                Bhutan    BT   BTN 1980
## 4517                                                Bhutan    BT   BTN 1979
## 4518                                                Bhutan    BT   BTN 1978
## 4519                                                Bhutan    BT   BTN 1977
## 4520                                                Bhutan    BT   BTN 1976
## 4521                                                Bhutan    BT   BTN 1975
## 4522                                                Bhutan    BT   BTN 1974
## 4523                                                Bhutan    BT   BTN 1973
## 4524                                                Bhutan    BT   BTN 1972
## 4525                                                Bhutan    BT   BTN 1971
## 4526                                                Bhutan    BT   BTN 1970
## 4527                                                Bhutan    BT   BTN 1969
## 4528                                                Bhutan    BT   BTN 1968
## 4529                                                Bhutan    BT   BTN 1967
## 4530                                                Bhutan    BT   BTN 1966
## 4531                                                Bhutan    BT   BTN 1965
## 4532                                                Bhutan    BT   BTN 1964
## 4533                                                Bhutan    BT   BTN 1963
## 4534                                                Bhutan    BT   BTN 1962
## 4535                                                Bhutan    BT   BTN 1961
## 4536                                                Bhutan    BT   BTN 1960
## 4537                                               Bolivia    BO   BOL 2022
## 4538                                               Bolivia    BO   BOL 2021
## 4539                                               Bolivia    BO   BOL 2020
## 4540                                               Bolivia    BO   BOL 2019
## 4541                                               Bolivia    BO   BOL 2018
## 4542                                               Bolivia    BO   BOL 2017
## 4543                                               Bolivia    BO   BOL 2016
## 4544                                               Bolivia    BO   BOL 2015
## 4545                                               Bolivia    BO   BOL 2014
## 4546                                               Bolivia    BO   BOL 2013
## 4547                                               Bolivia    BO   BOL 2012
## 4548                                               Bolivia    BO   BOL 2011
## 4549                                               Bolivia    BO   BOL 2010
## 4550                                               Bolivia    BO   BOL 2009
## 4551                                               Bolivia    BO   BOL 2008
## 4552                                               Bolivia    BO   BOL 2007
## 4553                                               Bolivia    BO   BOL 2006
## 4554                                               Bolivia    BO   BOL 2005
## 4555                                               Bolivia    BO   BOL 2004
## 4556                                               Bolivia    BO   BOL 2003
## 4557                                               Bolivia    BO   BOL 2002
## 4558                                               Bolivia    BO   BOL 2001
## 4559                                               Bolivia    BO   BOL 2000
## 4560                                               Bolivia    BO   BOL 1999
## 4561                                               Bolivia    BO   BOL 1998
## 4562                                               Bolivia    BO   BOL 1997
## 4563                                               Bolivia    BO   BOL 1996
## 4564                                               Bolivia    BO   BOL 1995
## 4565                                               Bolivia    BO   BOL 1994
## 4566                                               Bolivia    BO   BOL 1993
## 4567                                               Bolivia    BO   BOL 1992
## 4568                                               Bolivia    BO   BOL 1991
## 4569                                               Bolivia    BO   BOL 1990
## 4570                                               Bolivia    BO   BOL 1989
## 4571                                               Bolivia    BO   BOL 1988
## 4572                                               Bolivia    BO   BOL 1987
## 4573                                               Bolivia    BO   BOL 1986
## 4574                                               Bolivia    BO   BOL 1985
## 4575                                               Bolivia    BO   BOL 1984
## 4576                                               Bolivia    BO   BOL 1983
## 4577                                               Bolivia    BO   BOL 1982
## 4578                                               Bolivia    BO   BOL 1981
## 4579                                               Bolivia    BO   BOL 1980
## 4580                                               Bolivia    BO   BOL 1979
## 4581                                               Bolivia    BO   BOL 1978
## 4582                                               Bolivia    BO   BOL 1977
## 4583                                               Bolivia    BO   BOL 1976
## 4584                                               Bolivia    BO   BOL 1975
## 4585                                               Bolivia    BO   BOL 1974
## 4586                                               Bolivia    BO   BOL 1973
## 4587                                               Bolivia    BO   BOL 1972
## 4588                                               Bolivia    BO   BOL 1971
## 4589                                               Bolivia    BO   BOL 1970
## 4590                                               Bolivia    BO   BOL 1969
## 4591                                               Bolivia    BO   BOL 1968
## 4592                                               Bolivia    BO   BOL 1967
## 4593                                               Bolivia    BO   BOL 1966
## 4594                                               Bolivia    BO   BOL 1965
## 4595                                               Bolivia    BO   BOL 1964
## 4596                                               Bolivia    BO   BOL 1963
## 4597                                               Bolivia    BO   BOL 1962
## 4598                                               Bolivia    BO   BOL 1961
## 4599                                               Bolivia    BO   BOL 1960
## 4600                                Bosnia and Herzegovina    BA   BIH 2022
## 4601                                Bosnia and Herzegovina    BA   BIH 2021
## 4602                                Bosnia and Herzegovina    BA   BIH 2020
## 4603                                Bosnia and Herzegovina    BA   BIH 2019
## 4604                                Bosnia and Herzegovina    BA   BIH 2018
## 4605                                Bosnia and Herzegovina    BA   BIH 2017
## 4606                                Bosnia and Herzegovina    BA   BIH 2016
## 4607                                Bosnia and Herzegovina    BA   BIH 2015
## 4608                                Bosnia and Herzegovina    BA   BIH 2014
## 4609                                Bosnia and Herzegovina    BA   BIH 2013
## 4610                                Bosnia and Herzegovina    BA   BIH 2012
## 4611                                Bosnia and Herzegovina    BA   BIH 2011
## 4612                                Bosnia and Herzegovina    BA   BIH 2010
## 4613                                Bosnia and Herzegovina    BA   BIH 2009
## 4614                                Bosnia and Herzegovina    BA   BIH 2008
## 4615                                Bosnia and Herzegovina    BA   BIH 2007
## 4616                                Bosnia and Herzegovina    BA   BIH 2006
## 4617                                Bosnia and Herzegovina    BA   BIH 2005
## 4618                                Bosnia and Herzegovina    BA   BIH 2004
## 4619                                Bosnia and Herzegovina    BA   BIH 2003
## 4620                                Bosnia and Herzegovina    BA   BIH 2002
## 4621                                Bosnia and Herzegovina    BA   BIH 2001
## 4622                                Bosnia and Herzegovina    BA   BIH 2000
## 4623                                Bosnia and Herzegovina    BA   BIH 1999
## 4624                                Bosnia and Herzegovina    BA   BIH 1998
## 4625                                Bosnia and Herzegovina    BA   BIH 1997
## 4626                                Bosnia and Herzegovina    BA   BIH 1996
## 4627                                Bosnia and Herzegovina    BA   BIH 1995
## 4628                                Bosnia and Herzegovina    BA   BIH 1994
## 4629                                Bosnia and Herzegovina    BA   BIH 1993
## 4630                                Bosnia and Herzegovina    BA   BIH 1992
## 4631                                Bosnia and Herzegovina    BA   BIH 1991
## 4632                                Bosnia and Herzegovina    BA   BIH 1990
## 4633                                Bosnia and Herzegovina    BA   BIH 1989
## 4634                                Bosnia and Herzegovina    BA   BIH 1988
## 4635                                Bosnia and Herzegovina    BA   BIH 1987
## 4636                                Bosnia and Herzegovina    BA   BIH 1986
## 4637                                Bosnia and Herzegovina    BA   BIH 1985
## 4638                                Bosnia and Herzegovina    BA   BIH 1984
## 4639                                Bosnia and Herzegovina    BA   BIH 1983
## 4640                                Bosnia and Herzegovina    BA   BIH 1982
## 4641                                Bosnia and Herzegovina    BA   BIH 1981
## 4642                                Bosnia and Herzegovina    BA   BIH 1980
## 4643                                Bosnia and Herzegovina    BA   BIH 1979
## 4644                                Bosnia and Herzegovina    BA   BIH 1978
## 4645                                Bosnia and Herzegovina    BA   BIH 1977
## 4646                                Bosnia and Herzegovina    BA   BIH 1976
## 4647                                Bosnia and Herzegovina    BA   BIH 1975
## 4648                                Bosnia and Herzegovina    BA   BIH 1974
## 4649                                Bosnia and Herzegovina    BA   BIH 1973
## 4650                                Bosnia and Herzegovina    BA   BIH 1972
## 4651                                Bosnia and Herzegovina    BA   BIH 1971
## 4652                                Bosnia and Herzegovina    BA   BIH 1970
## 4653                                Bosnia and Herzegovina    BA   BIH 1969
## 4654                                Bosnia and Herzegovina    BA   BIH 1968
## 4655                                Bosnia and Herzegovina    BA   BIH 1967
## 4656                                Bosnia and Herzegovina    BA   BIH 1966
## 4657                                Bosnia and Herzegovina    BA   BIH 1965
## 4658                                Bosnia and Herzegovina    BA   BIH 1964
## 4659                                Bosnia and Herzegovina    BA   BIH 1963
## 4660                                Bosnia and Herzegovina    BA   BIH 1962
## 4661                                Bosnia and Herzegovina    BA   BIH 1961
## 4662                                Bosnia and Herzegovina    BA   BIH 1960
## 4663                                              Botswana    BW   BWA 2022
## 4664                                              Botswana    BW   BWA 2021
## 4665                                              Botswana    BW   BWA 2020
## 4666                                              Botswana    BW   BWA 2019
## 4667                                              Botswana    BW   BWA 2018
## 4668                                              Botswana    BW   BWA 2017
## 4669                                              Botswana    BW   BWA 2016
## 4670                                              Botswana    BW   BWA 2015
## 4671                                              Botswana    BW   BWA 2014
## 4672                                              Botswana    BW   BWA 2013
## 4673                                              Botswana    BW   BWA 2012
## 4674                                              Botswana    BW   BWA 2011
## 4675                                              Botswana    BW   BWA 2010
## 4676                                              Botswana    BW   BWA 2009
## 4677                                              Botswana    BW   BWA 2008
## 4678                                              Botswana    BW   BWA 2007
## 4679                                              Botswana    BW   BWA 2006
## 4680                                              Botswana    BW   BWA 2005
## 4681                                              Botswana    BW   BWA 2004
## 4682                                              Botswana    BW   BWA 2003
## 4683                                              Botswana    BW   BWA 2002
## 4684                                              Botswana    BW   BWA 2001
## 4685                                              Botswana    BW   BWA 2000
## 4686                                              Botswana    BW   BWA 1999
## 4687                                              Botswana    BW   BWA 1998
## 4688                                              Botswana    BW   BWA 1997
## 4689                                              Botswana    BW   BWA 1996
## 4690                                              Botswana    BW   BWA 1995
## 4691                                              Botswana    BW   BWA 1994
## 4692                                              Botswana    BW   BWA 1993
## 4693                                              Botswana    BW   BWA 1992
## 4694                                              Botswana    BW   BWA 1991
## 4695                                              Botswana    BW   BWA 1990
## 4696                                              Botswana    BW   BWA 1989
## 4697                                              Botswana    BW   BWA 1988
## 4698                                              Botswana    BW   BWA 1987
## 4699                                              Botswana    BW   BWA 1986
## 4700                                              Botswana    BW   BWA 1985
## 4701                                              Botswana    BW   BWA 1984
## 4702                                              Botswana    BW   BWA 1983
## 4703                                              Botswana    BW   BWA 1982
## 4704                                              Botswana    BW   BWA 1981
## 4705                                              Botswana    BW   BWA 1980
## 4706                                              Botswana    BW   BWA 1979
## 4707                                              Botswana    BW   BWA 1978
## 4708                                              Botswana    BW   BWA 1977
## 4709                                              Botswana    BW   BWA 1976
## 4710                                              Botswana    BW   BWA 1975
## 4711                                              Botswana    BW   BWA 1974
## 4712                                              Botswana    BW   BWA 1973
## 4713                                              Botswana    BW   BWA 1972
## 4714                                              Botswana    BW   BWA 1971
## 4715                                              Botswana    BW   BWA 1970
## 4716                                              Botswana    BW   BWA 1969
## 4717                                              Botswana    BW   BWA 1968
## 4718                                              Botswana    BW   BWA 1967
## 4719                                              Botswana    BW   BWA 1966
## 4720                                              Botswana    BW   BWA 1965
## 4721                                              Botswana    BW   BWA 1964
## 4722                                              Botswana    BW   BWA 1963
## 4723                                              Botswana    BW   BWA 1962
## 4724                                              Botswana    BW   BWA 1961
## 4725                                              Botswana    BW   BWA 1960
## 4726                                                Brazil    BR   BRA 2022
## 4727                                                Brazil    BR   BRA 2021
## 4728                                                Brazil    BR   BRA 2020
## 4729                                                Brazil    BR   BRA 2019
## 4730                                                Brazil    BR   BRA 2018
## 4731                                                Brazil    BR   BRA 2017
## 4732                                                Brazil    BR   BRA 2016
## 4733                                                Brazil    BR   BRA 2015
## 4734                                                Brazil    BR   BRA 2014
## 4735                                                Brazil    BR   BRA 2013
## 4736                                                Brazil    BR   BRA 2012
## 4737                                                Brazil    BR   BRA 2011
## 4738                                                Brazil    BR   BRA 2010
## 4739                                                Brazil    BR   BRA 2009
## 4740                                                Brazil    BR   BRA 2008
## 4741                                                Brazil    BR   BRA 2007
## 4742                                                Brazil    BR   BRA 2006
## 4743                                                Brazil    BR   BRA 2005
## 4744                                                Brazil    BR   BRA 2004
## 4745                                                Brazil    BR   BRA 2003
## 4746                                                Brazil    BR   BRA 2002
## 4747                                                Brazil    BR   BRA 2001
## 4748                                                Brazil    BR   BRA 2000
## 4749                                                Brazil    BR   BRA 1999
## 4750                                                Brazil    BR   BRA 1998
## 4751                                                Brazil    BR   BRA 1997
## 4752                                                Brazil    BR   BRA 1996
## 4753                                                Brazil    BR   BRA 1995
## 4754                                                Brazil    BR   BRA 1994
## 4755                                                Brazil    BR   BRA 1993
## 4756                                                Brazil    BR   BRA 1992
## 4757                                                Brazil    BR   BRA 1991
## 4758                                                Brazil    BR   BRA 1990
## 4759                                                Brazil    BR   BRA 1989
## 4760                                                Brazil    BR   BRA 1988
## 4761                                                Brazil    BR   BRA 1987
## 4762                                                Brazil    BR   BRA 1986
## 4763                                                Brazil    BR   BRA 1985
## 4764                                                Brazil    BR   BRA 1984
## 4765                                                Brazil    BR   BRA 1983
## 4766                                                Brazil    BR   BRA 1982
## 4767                                                Brazil    BR   BRA 1981
## 4768                                                Brazil    BR   BRA 1980
## 4769                                                Brazil    BR   BRA 1979
## 4770                                                Brazil    BR   BRA 1978
## 4771                                                Brazil    BR   BRA 1977
## 4772                                                Brazil    BR   BRA 1976
## 4773                                                Brazil    BR   BRA 1975
## 4774                                                Brazil    BR   BRA 1974
## 4775                                                Brazil    BR   BRA 1973
## 4776                                                Brazil    BR   BRA 1972
## 4777                                                Brazil    BR   BRA 1971
## 4778                                                Brazil    BR   BRA 1970
## 4779                                                Brazil    BR   BRA 1969
## 4780                                                Brazil    BR   BRA 1968
## 4781                                                Brazil    BR   BRA 1967
## 4782                                                Brazil    BR   BRA 1966
## 4783                                                Brazil    BR   BRA 1965
## 4784                                                Brazil    BR   BRA 1964
## 4785                                                Brazil    BR   BRA 1963
## 4786                                                Brazil    BR   BRA 1962
## 4787                                                Brazil    BR   BRA 1961
## 4788                                                Brazil    BR   BRA 1960
## 4789                                British Virgin Islands    VG   VGB 2022
## 4790                                British Virgin Islands    VG   VGB 2021
## 4791                                British Virgin Islands    VG   VGB 2020
## 4792                                British Virgin Islands    VG   VGB 2019
## 4793                                British Virgin Islands    VG   VGB 2018
## 4794                                British Virgin Islands    VG   VGB 2017
## 4795                                British Virgin Islands    VG   VGB 2016
## 4796                                British Virgin Islands    VG   VGB 2015
## 4797                                British Virgin Islands    VG   VGB 2014
## 4798                                British Virgin Islands    VG   VGB 2013
## 4799                                British Virgin Islands    VG   VGB 2012
## 4800                                British Virgin Islands    VG   VGB 2011
## 4801                                British Virgin Islands    VG   VGB 2010
## 4802                                British Virgin Islands    VG   VGB 2009
## 4803                                British Virgin Islands    VG   VGB 2008
## 4804                                British Virgin Islands    VG   VGB 2007
## 4805                                British Virgin Islands    VG   VGB 2006
## 4806                                British Virgin Islands    VG   VGB 2005
## 4807                                British Virgin Islands    VG   VGB 2004
## 4808                                British Virgin Islands    VG   VGB 2003
## 4809                                British Virgin Islands    VG   VGB 2002
## 4810                                British Virgin Islands    VG   VGB 2001
## 4811                                British Virgin Islands    VG   VGB 2000
## 4812                                British Virgin Islands    VG   VGB 1999
## 4813                                British Virgin Islands    VG   VGB 1998
## 4814                                British Virgin Islands    VG   VGB 1997
## 4815                                British Virgin Islands    VG   VGB 1996
## 4816                                British Virgin Islands    VG   VGB 1995
## 4817                                British Virgin Islands    VG   VGB 1994
## 4818                                British Virgin Islands    VG   VGB 1993
## 4819                                British Virgin Islands    VG   VGB 1992
## 4820                                British Virgin Islands    VG   VGB 1991
## 4821                                British Virgin Islands    VG   VGB 1990
## 4822                                British Virgin Islands    VG   VGB 1989
## 4823                                British Virgin Islands    VG   VGB 1988
## 4824                                British Virgin Islands    VG   VGB 1987
## 4825                                British Virgin Islands    VG   VGB 1986
## 4826                                British Virgin Islands    VG   VGB 1985
## 4827                                British Virgin Islands    VG   VGB 1984
## 4828                                British Virgin Islands    VG   VGB 1983
## 4829                                British Virgin Islands    VG   VGB 1982
## 4830                                British Virgin Islands    VG   VGB 1981
## 4831                                British Virgin Islands    VG   VGB 1980
## 4832                                British Virgin Islands    VG   VGB 1979
## 4833                                British Virgin Islands    VG   VGB 1978
## 4834                                British Virgin Islands    VG   VGB 1977
## 4835                                British Virgin Islands    VG   VGB 1976
## 4836                                British Virgin Islands    VG   VGB 1975
## 4837                                British Virgin Islands    VG   VGB 1974
## 4838                                British Virgin Islands    VG   VGB 1973
## 4839                                British Virgin Islands    VG   VGB 1972
## 4840                                British Virgin Islands    VG   VGB 1971
## 4841                                British Virgin Islands    VG   VGB 1970
## 4842                                British Virgin Islands    VG   VGB 1969
## 4843                                British Virgin Islands    VG   VGB 1968
## 4844                                British Virgin Islands    VG   VGB 1967
## 4845                                British Virgin Islands    VG   VGB 1966
## 4846                                British Virgin Islands    VG   VGB 1965
## 4847                                British Virgin Islands    VG   VGB 1964
## 4848                                British Virgin Islands    VG   VGB 1963
## 4849                                British Virgin Islands    VG   VGB 1962
## 4850                                British Virgin Islands    VG   VGB 1961
## 4851                                British Virgin Islands    VG   VGB 1960
## 4852                                     Brunei Darussalam    BN   BRN 2022
## 4853                                     Brunei Darussalam    BN   BRN 2021
## 4854                                     Brunei Darussalam    BN   BRN 2020
## 4855                                     Brunei Darussalam    BN   BRN 2019
## 4856                                     Brunei Darussalam    BN   BRN 2018
## 4857                                     Brunei Darussalam    BN   BRN 2017
## 4858                                     Brunei Darussalam    BN   BRN 2016
## 4859                                     Brunei Darussalam    BN   BRN 2015
## 4860                                     Brunei Darussalam    BN   BRN 2014
## 4861                                     Brunei Darussalam    BN   BRN 2013
## 4862                                     Brunei Darussalam    BN   BRN 2012
## 4863                                     Brunei Darussalam    BN   BRN 2011
## 4864                                     Brunei Darussalam    BN   BRN 2010
## 4865                                     Brunei Darussalam    BN   BRN 2009
## 4866                                     Brunei Darussalam    BN   BRN 2008
## 4867                                     Brunei Darussalam    BN   BRN 2007
## 4868                                     Brunei Darussalam    BN   BRN 2006
## 4869                                     Brunei Darussalam    BN   BRN 2005
## 4870                                     Brunei Darussalam    BN   BRN 2004
## 4871                                     Brunei Darussalam    BN   BRN 2003
## 4872                                     Brunei Darussalam    BN   BRN 2002
## 4873                                     Brunei Darussalam    BN   BRN 2001
## 4874                                     Brunei Darussalam    BN   BRN 2000
## 4875                                     Brunei Darussalam    BN   BRN 1999
## 4876                                     Brunei Darussalam    BN   BRN 1998
## 4877                                     Brunei Darussalam    BN   BRN 1997
## 4878                                     Brunei Darussalam    BN   BRN 1996
## 4879                                     Brunei Darussalam    BN   BRN 1995
## 4880                                     Brunei Darussalam    BN   BRN 1994
## 4881                                     Brunei Darussalam    BN   BRN 1993
## 4882                                     Brunei Darussalam    BN   BRN 1992
## 4883                                     Brunei Darussalam    BN   BRN 1991
## 4884                                     Brunei Darussalam    BN   BRN 1990
## 4885                                     Brunei Darussalam    BN   BRN 1989
## 4886                                     Brunei Darussalam    BN   BRN 1988
## 4887                                     Brunei Darussalam    BN   BRN 1987
## 4888                                     Brunei Darussalam    BN   BRN 1986
## 4889                                     Brunei Darussalam    BN   BRN 1985
## 4890                                     Brunei Darussalam    BN   BRN 1984
## 4891                                     Brunei Darussalam    BN   BRN 1983
## 4892                                     Brunei Darussalam    BN   BRN 1982
## 4893                                     Brunei Darussalam    BN   BRN 1981
## 4894                                     Brunei Darussalam    BN   BRN 1980
## 4895                                     Brunei Darussalam    BN   BRN 1979
## 4896                                     Brunei Darussalam    BN   BRN 1978
## 4897                                     Brunei Darussalam    BN   BRN 1977
## 4898                                     Brunei Darussalam    BN   BRN 1976
## 4899                                     Brunei Darussalam    BN   BRN 1975
## 4900                                     Brunei Darussalam    BN   BRN 1974
## 4901                                     Brunei Darussalam    BN   BRN 1973
## 4902                                     Brunei Darussalam    BN   BRN 1972
## 4903                                     Brunei Darussalam    BN   BRN 1971
## 4904                                     Brunei Darussalam    BN   BRN 1970
## 4905                                     Brunei Darussalam    BN   BRN 1969
## 4906                                     Brunei Darussalam    BN   BRN 1968
## 4907                                     Brunei Darussalam    BN   BRN 1967
## 4908                                     Brunei Darussalam    BN   BRN 1966
## 4909                                     Brunei Darussalam    BN   BRN 1965
## 4910                                     Brunei Darussalam    BN   BRN 1964
## 4911                                     Brunei Darussalam    BN   BRN 1963
## 4912                                     Brunei Darussalam    BN   BRN 1962
## 4913                                     Brunei Darussalam    BN   BRN 1961
## 4914                                     Brunei Darussalam    BN   BRN 1960
## 4915                                              Bulgaria    BG   BGR 2022
## 4916                                              Bulgaria    BG   BGR 2021
## 4917                                              Bulgaria    BG   BGR 2020
## 4918                                              Bulgaria    BG   BGR 2019
## 4919                                              Bulgaria    BG   BGR 2018
## 4920                                              Bulgaria    BG   BGR 2017
## 4921                                              Bulgaria    BG   BGR 2016
## 4922                                              Bulgaria    BG   BGR 2015
## 4923                                              Bulgaria    BG   BGR 2014
## 4924                                              Bulgaria    BG   BGR 2013
## 4925                                              Bulgaria    BG   BGR 2012
## 4926                                              Bulgaria    BG   BGR 2011
## 4927                                              Bulgaria    BG   BGR 2010
## 4928                                              Bulgaria    BG   BGR 2009
## 4929                                              Bulgaria    BG   BGR 2008
## 4930                                              Bulgaria    BG   BGR 2007
## 4931                                              Bulgaria    BG   BGR 2006
## 4932                                              Bulgaria    BG   BGR 2005
## 4933                                              Bulgaria    BG   BGR 2004
## 4934                                              Bulgaria    BG   BGR 2003
## 4935                                              Bulgaria    BG   BGR 2002
## 4936                                              Bulgaria    BG   BGR 2001
## 4937                                              Bulgaria    BG   BGR 2000
## 4938                                              Bulgaria    BG   BGR 1999
## 4939                                              Bulgaria    BG   BGR 1998
## 4940                                              Bulgaria    BG   BGR 1997
## 4941                                              Bulgaria    BG   BGR 1996
## 4942                                              Bulgaria    BG   BGR 1995
## 4943                                              Bulgaria    BG   BGR 1994
## 4944                                              Bulgaria    BG   BGR 1993
## 4945                                              Bulgaria    BG   BGR 1992
## 4946                                              Bulgaria    BG   BGR 1991
## 4947                                              Bulgaria    BG   BGR 1990
## 4948                                              Bulgaria    BG   BGR 1989
## 4949                                              Bulgaria    BG   BGR 1988
## 4950                                              Bulgaria    BG   BGR 1987
## 4951                                              Bulgaria    BG   BGR 1986
## 4952                                              Bulgaria    BG   BGR 1985
## 4953                                              Bulgaria    BG   BGR 1984
## 4954                                              Bulgaria    BG   BGR 1983
## 4955                                              Bulgaria    BG   BGR 1982
## 4956                                              Bulgaria    BG   BGR 1981
## 4957                                              Bulgaria    BG   BGR 1980
## 4958                                              Bulgaria    BG   BGR 1979
## 4959                                              Bulgaria    BG   BGR 1978
## 4960                                              Bulgaria    BG   BGR 1977
## 4961                                              Bulgaria    BG   BGR 1976
## 4962                                              Bulgaria    BG   BGR 1975
## 4963                                              Bulgaria    BG   BGR 1974
## 4964                                              Bulgaria    BG   BGR 1973
## 4965                                              Bulgaria    BG   BGR 1972
## 4966                                              Bulgaria    BG   BGR 1971
## 4967                                              Bulgaria    BG   BGR 1970
## 4968                                              Bulgaria    BG   BGR 1969
## 4969                                              Bulgaria    BG   BGR 1968
## 4970                                              Bulgaria    BG   BGR 1967
## 4971                                              Bulgaria    BG   BGR 1966
## 4972                                              Bulgaria    BG   BGR 1965
## 4973                                              Bulgaria    BG   BGR 1964
## 4974                                              Bulgaria    BG   BGR 1963
## 4975                                              Bulgaria    BG   BGR 1962
## 4976                                              Bulgaria    BG   BGR 1961
## 4977                                              Bulgaria    BG   BGR 1960
## 4978                                          Burkina Faso    BF   BFA 2022
## 4979                                          Burkina Faso    BF   BFA 2021
## 4980                                          Burkina Faso    BF   BFA 2020
## 4981                                          Burkina Faso    BF   BFA 2019
## 4982                                          Burkina Faso    BF   BFA 2018
## 4983                                          Burkina Faso    BF   BFA 2017
## 4984                                          Burkina Faso    BF   BFA 2016
## 4985                                          Burkina Faso    BF   BFA 2015
## 4986                                          Burkina Faso    BF   BFA 2014
## 4987                                          Burkina Faso    BF   BFA 2013
## 4988                                          Burkina Faso    BF   BFA 2012
## 4989                                          Burkina Faso    BF   BFA 2011
## 4990                                          Burkina Faso    BF   BFA 2010
## 4991                                          Burkina Faso    BF   BFA 2009
## 4992                                          Burkina Faso    BF   BFA 2008
## 4993                                          Burkina Faso    BF   BFA 2007
## 4994                                          Burkina Faso    BF   BFA 2006
## 4995                                          Burkina Faso    BF   BFA 2005
## 4996                                          Burkina Faso    BF   BFA 2004
## 4997                                          Burkina Faso    BF   BFA 2003
## 4998                                          Burkina Faso    BF   BFA 2002
## 4999                                          Burkina Faso    BF   BFA 2001
## 5000                                          Burkina Faso    BF   BFA 2000
## 5001                                          Burkina Faso    BF   BFA 1999
## 5002                                          Burkina Faso    BF   BFA 1998
## 5003                                          Burkina Faso    BF   BFA 1997
## 5004                                          Burkina Faso    BF   BFA 1996
## 5005                                          Burkina Faso    BF   BFA 1995
## 5006                                          Burkina Faso    BF   BFA 1994
## 5007                                          Burkina Faso    BF   BFA 1993
## 5008                                          Burkina Faso    BF   BFA 1992
## 5009                                          Burkina Faso    BF   BFA 1991
## 5010                                          Burkina Faso    BF   BFA 1990
## 5011                                          Burkina Faso    BF   BFA 1989
## 5012                                          Burkina Faso    BF   BFA 1988
## 5013                                          Burkina Faso    BF   BFA 1987
## 5014                                          Burkina Faso    BF   BFA 1986
## 5015                                          Burkina Faso    BF   BFA 1985
## 5016                                          Burkina Faso    BF   BFA 1984
## 5017                                          Burkina Faso    BF   BFA 1983
## 5018                                          Burkina Faso    BF   BFA 1982
## 5019                                          Burkina Faso    BF   BFA 1981
## 5020                                          Burkina Faso    BF   BFA 1980
## 5021                                          Burkina Faso    BF   BFA 1979
## 5022                                          Burkina Faso    BF   BFA 1978
## 5023                                          Burkina Faso    BF   BFA 1977
## 5024                                          Burkina Faso    BF   BFA 1976
## 5025                                          Burkina Faso    BF   BFA 1975
## 5026                                          Burkina Faso    BF   BFA 1974
## 5027                                          Burkina Faso    BF   BFA 1973
## 5028                                          Burkina Faso    BF   BFA 1972
## 5029                                          Burkina Faso    BF   BFA 1971
## 5030                                          Burkina Faso    BF   BFA 1970
## 5031                                          Burkina Faso    BF   BFA 1969
## 5032                                          Burkina Faso    BF   BFA 1968
## 5033                                          Burkina Faso    BF   BFA 1967
## 5034                                          Burkina Faso    BF   BFA 1966
## 5035                                          Burkina Faso    BF   BFA 1965
## 5036                                          Burkina Faso    BF   BFA 1964
## 5037                                          Burkina Faso    BF   BFA 1963
## 5038                                          Burkina Faso    BF   BFA 1962
## 5039                                          Burkina Faso    BF   BFA 1961
## 5040                                          Burkina Faso    BF   BFA 1960
## 5041                                               Burundi    BI   BDI 2022
## 5042                                               Burundi    BI   BDI 2021
## 5043                                               Burundi    BI   BDI 2020
## 5044                                               Burundi    BI   BDI 2019
## 5045                                               Burundi    BI   BDI 2018
## 5046                                               Burundi    BI   BDI 2017
## 5047                                               Burundi    BI   BDI 2016
## 5048                                               Burundi    BI   BDI 2015
## 5049                                               Burundi    BI   BDI 2014
## 5050                                               Burundi    BI   BDI 2013
## 5051                                               Burundi    BI   BDI 2012
## 5052                                               Burundi    BI   BDI 2011
## 5053                                               Burundi    BI   BDI 2010
## 5054                                               Burundi    BI   BDI 2009
## 5055                                               Burundi    BI   BDI 2008
## 5056                                               Burundi    BI   BDI 2007
## 5057                                               Burundi    BI   BDI 2006
## 5058                                               Burundi    BI   BDI 2005
## 5059                                               Burundi    BI   BDI 2004
## 5060                                               Burundi    BI   BDI 2003
## 5061                                               Burundi    BI   BDI 2002
## 5062                                               Burundi    BI   BDI 2001
## 5063                                               Burundi    BI   BDI 2000
## 5064                                               Burundi    BI   BDI 1999
## 5065                                               Burundi    BI   BDI 1998
## 5066                                               Burundi    BI   BDI 1997
## 5067                                               Burundi    BI   BDI 1996
## 5068                                               Burundi    BI   BDI 1995
## 5069                                               Burundi    BI   BDI 1994
## 5070                                               Burundi    BI   BDI 1993
## 5071                                               Burundi    BI   BDI 1992
## 5072                                               Burundi    BI   BDI 1991
## 5073                                               Burundi    BI   BDI 1990
## 5074                                               Burundi    BI   BDI 1989
## 5075                                               Burundi    BI   BDI 1988
## 5076                                               Burundi    BI   BDI 1987
## 5077                                               Burundi    BI   BDI 1986
## 5078                                               Burundi    BI   BDI 1985
## 5079                                               Burundi    BI   BDI 1984
## 5080                                               Burundi    BI   BDI 1983
## 5081                                               Burundi    BI   BDI 1982
## 5082                                               Burundi    BI   BDI 1981
## 5083                                               Burundi    BI   BDI 1980
## 5084                                               Burundi    BI   BDI 1979
## 5085                                               Burundi    BI   BDI 1978
## 5086                                               Burundi    BI   BDI 1977
## 5087                                               Burundi    BI   BDI 1976
## 5088                                               Burundi    BI   BDI 1975
## 5089                                               Burundi    BI   BDI 1974
## 5090                                               Burundi    BI   BDI 1973
## 5091                                               Burundi    BI   BDI 1972
## 5092                                               Burundi    BI   BDI 1971
## 5093                                               Burundi    BI   BDI 1970
## 5094                                               Burundi    BI   BDI 1969
## 5095                                               Burundi    BI   BDI 1968
## 5096                                               Burundi    BI   BDI 1967
## 5097                                               Burundi    BI   BDI 1966
## 5098                                               Burundi    BI   BDI 1965
## 5099                                               Burundi    BI   BDI 1964
## 5100                                               Burundi    BI   BDI 1963
## 5101                                               Burundi    BI   BDI 1962
## 5102                                               Burundi    BI   BDI 1961
## 5103                                               Burundi    BI   BDI 1960
## 5104                                            Cabo Verde    CV   CPV 2022
## 5105                                            Cabo Verde    CV   CPV 2021
## 5106                                            Cabo Verde    CV   CPV 2020
## 5107                                            Cabo Verde    CV   CPV 2019
## 5108                                            Cabo Verde    CV   CPV 2018
## 5109                                            Cabo Verde    CV   CPV 2017
## 5110                                            Cabo Verde    CV   CPV 2016
## 5111                                            Cabo Verde    CV   CPV 2015
## 5112                                            Cabo Verde    CV   CPV 2014
## 5113                                            Cabo Verde    CV   CPV 2013
## 5114                                            Cabo Verde    CV   CPV 2012
## 5115                                            Cabo Verde    CV   CPV 2011
## 5116                                            Cabo Verde    CV   CPV 2010
## 5117                                            Cabo Verde    CV   CPV 2009
## 5118                                            Cabo Verde    CV   CPV 2008
## 5119                                            Cabo Verde    CV   CPV 2007
## 5120                                            Cabo Verde    CV   CPV 2006
## 5121                                            Cabo Verde    CV   CPV 2005
## 5122                                            Cabo Verde    CV   CPV 2004
## 5123                                            Cabo Verde    CV   CPV 2003
## 5124                                            Cabo Verde    CV   CPV 2002
## 5125                                            Cabo Verde    CV   CPV 2001
## 5126                                            Cabo Verde    CV   CPV 2000
## 5127                                            Cabo Verde    CV   CPV 1999
## 5128                                            Cabo Verde    CV   CPV 1998
## 5129                                            Cabo Verde    CV   CPV 1997
## 5130                                            Cabo Verde    CV   CPV 1996
## 5131                                            Cabo Verde    CV   CPV 1995
## 5132                                            Cabo Verde    CV   CPV 1994
## 5133                                            Cabo Verde    CV   CPV 1993
## 5134                                            Cabo Verde    CV   CPV 1992
## 5135                                            Cabo Verde    CV   CPV 1991
## 5136                                            Cabo Verde    CV   CPV 1990
## 5137                                            Cabo Verde    CV   CPV 1989
## 5138                                            Cabo Verde    CV   CPV 1988
## 5139                                            Cabo Verde    CV   CPV 1987
## 5140                                            Cabo Verde    CV   CPV 1986
## 5141                                            Cabo Verde    CV   CPV 1985
## 5142                                            Cabo Verde    CV   CPV 1984
## 5143                                            Cabo Verde    CV   CPV 1983
## 5144                                            Cabo Verde    CV   CPV 1982
## 5145                                            Cabo Verde    CV   CPV 1981
## 5146                                            Cabo Verde    CV   CPV 1980
## 5147                                            Cabo Verde    CV   CPV 1979
## 5148                                            Cabo Verde    CV   CPV 1978
## 5149                                            Cabo Verde    CV   CPV 1977
## 5150                                            Cabo Verde    CV   CPV 1976
## 5151                                            Cabo Verde    CV   CPV 1975
## 5152                                            Cabo Verde    CV   CPV 1974
## 5153                                            Cabo Verde    CV   CPV 1973
## 5154                                            Cabo Verde    CV   CPV 1972
## 5155                                            Cabo Verde    CV   CPV 1971
## 5156                                            Cabo Verde    CV   CPV 1970
## 5157                                            Cabo Verde    CV   CPV 1969
## 5158                                            Cabo Verde    CV   CPV 1968
## 5159                                            Cabo Verde    CV   CPV 1967
## 5160                                            Cabo Verde    CV   CPV 1966
## 5161                                            Cabo Verde    CV   CPV 1965
## 5162                                            Cabo Verde    CV   CPV 1964
## 5163                                            Cabo Verde    CV   CPV 1963
## 5164                                            Cabo Verde    CV   CPV 1962
## 5165                                            Cabo Verde    CV   CPV 1961
## 5166                                            Cabo Verde    CV   CPV 1960
## 5167                                              Cambodia    KH   KHM 2022
## 5168                                              Cambodia    KH   KHM 2021
## 5169                                              Cambodia    KH   KHM 2020
## 5170                                              Cambodia    KH   KHM 2019
## 5171                                              Cambodia    KH   KHM 2018
## 5172                                              Cambodia    KH   KHM 2017
## 5173                                              Cambodia    KH   KHM 2016
## 5174                                              Cambodia    KH   KHM 2015
## 5175                                              Cambodia    KH   KHM 2014
## 5176                                              Cambodia    KH   KHM 2013
## 5177                                              Cambodia    KH   KHM 2012
## 5178                                              Cambodia    KH   KHM 2011
## 5179                                              Cambodia    KH   KHM 2010
## 5180                                              Cambodia    KH   KHM 2009
## 5181                                              Cambodia    KH   KHM 2008
## 5182                                              Cambodia    KH   KHM 2007
## 5183                                              Cambodia    KH   KHM 2006
## 5184                                              Cambodia    KH   KHM 2005
## 5185                                              Cambodia    KH   KHM 2004
## 5186                                              Cambodia    KH   KHM 2003
## 5187                                              Cambodia    KH   KHM 2002
## 5188                                              Cambodia    KH   KHM 2001
## 5189                                              Cambodia    KH   KHM 2000
## 5190                                              Cambodia    KH   KHM 1999
## 5191                                              Cambodia    KH   KHM 1998
## 5192                                              Cambodia    KH   KHM 1997
## 5193                                              Cambodia    KH   KHM 1996
## 5194                                              Cambodia    KH   KHM 1995
## 5195                                              Cambodia    KH   KHM 1994
## 5196                                              Cambodia    KH   KHM 1993
## 5197                                              Cambodia    KH   KHM 1992
## 5198                                              Cambodia    KH   KHM 1991
## 5199                                              Cambodia    KH   KHM 1990
## 5200                                              Cambodia    KH   KHM 1989
## 5201                                              Cambodia    KH   KHM 1988
## 5202                                              Cambodia    KH   KHM 1987
## 5203                                              Cambodia    KH   KHM 1986
## 5204                                              Cambodia    KH   KHM 1985
## 5205                                              Cambodia    KH   KHM 1984
## 5206                                              Cambodia    KH   KHM 1983
## 5207                                              Cambodia    KH   KHM 1982
## 5208                                              Cambodia    KH   KHM 1981
## 5209                                              Cambodia    KH   KHM 1980
## 5210                                              Cambodia    KH   KHM 1979
## 5211                                              Cambodia    KH   KHM 1978
## 5212                                              Cambodia    KH   KHM 1977
## 5213                                              Cambodia    KH   KHM 1976
## 5214                                              Cambodia    KH   KHM 1975
## 5215                                              Cambodia    KH   KHM 1974
## 5216                                              Cambodia    KH   KHM 1973
## 5217                                              Cambodia    KH   KHM 1972
## 5218                                              Cambodia    KH   KHM 1971
## 5219                                              Cambodia    KH   KHM 1970
## 5220                                              Cambodia    KH   KHM 1969
## 5221                                              Cambodia    KH   KHM 1968
## 5222                                              Cambodia    KH   KHM 1967
## 5223                                              Cambodia    KH   KHM 1966
## 5224                                              Cambodia    KH   KHM 1965
## 5225                                              Cambodia    KH   KHM 1964
## 5226                                              Cambodia    KH   KHM 1963
## 5227                                              Cambodia    KH   KHM 1962
## 5228                                              Cambodia    KH   KHM 1961
## 5229                                              Cambodia    KH   KHM 1960
## 5230                                              Cameroon    CM   CMR 2022
## 5231                                              Cameroon    CM   CMR 2021
## 5232                                              Cameroon    CM   CMR 2020
## 5233                                              Cameroon    CM   CMR 2019
## 5234                                              Cameroon    CM   CMR 2018
## 5235                                              Cameroon    CM   CMR 2017
## 5236                                              Cameroon    CM   CMR 2016
## 5237                                              Cameroon    CM   CMR 2015
## 5238                                              Cameroon    CM   CMR 2014
## 5239                                              Cameroon    CM   CMR 2013
## 5240                                              Cameroon    CM   CMR 2012
## 5241                                              Cameroon    CM   CMR 2011
## 5242                                              Cameroon    CM   CMR 2010
## 5243                                              Cameroon    CM   CMR 2009
## 5244                                              Cameroon    CM   CMR 2008
## 5245                                              Cameroon    CM   CMR 2007
## 5246                                              Cameroon    CM   CMR 2006
## 5247                                              Cameroon    CM   CMR 2005
## 5248                                              Cameroon    CM   CMR 2004
## 5249                                              Cameroon    CM   CMR 2003
## 5250                                              Cameroon    CM   CMR 2002
## 5251                                              Cameroon    CM   CMR 2001
## 5252                                              Cameroon    CM   CMR 2000
## 5253                                              Cameroon    CM   CMR 1999
## 5254                                              Cameroon    CM   CMR 1998
## 5255                                              Cameroon    CM   CMR 1997
## 5256                                              Cameroon    CM   CMR 1996
## 5257                                              Cameroon    CM   CMR 1995
## 5258                                              Cameroon    CM   CMR 1994
## 5259                                              Cameroon    CM   CMR 1993
## 5260                                              Cameroon    CM   CMR 1992
## 5261                                              Cameroon    CM   CMR 1991
## 5262                                              Cameroon    CM   CMR 1990
## 5263                                              Cameroon    CM   CMR 1989
## 5264                                              Cameroon    CM   CMR 1988
## 5265                                              Cameroon    CM   CMR 1987
## 5266                                              Cameroon    CM   CMR 1986
## 5267                                              Cameroon    CM   CMR 1985
## 5268                                              Cameroon    CM   CMR 1984
## 5269                                              Cameroon    CM   CMR 1983
## 5270                                              Cameroon    CM   CMR 1982
## 5271                                              Cameroon    CM   CMR 1981
## 5272                                              Cameroon    CM   CMR 1980
## 5273                                              Cameroon    CM   CMR 1979
## 5274                                              Cameroon    CM   CMR 1978
## 5275                                              Cameroon    CM   CMR 1977
## 5276                                              Cameroon    CM   CMR 1976
## 5277                                              Cameroon    CM   CMR 1975
## 5278                                              Cameroon    CM   CMR 1974
## 5279                                              Cameroon    CM   CMR 1973
## 5280                                              Cameroon    CM   CMR 1972
## 5281                                              Cameroon    CM   CMR 1971
## 5282                                              Cameroon    CM   CMR 1970
## 5283                                              Cameroon    CM   CMR 1969
## 5284                                              Cameroon    CM   CMR 1968
## 5285                                              Cameroon    CM   CMR 1967
## 5286                                              Cameroon    CM   CMR 1966
## 5287                                              Cameroon    CM   CMR 1965
## 5288                                              Cameroon    CM   CMR 1964
## 5289                                              Cameroon    CM   CMR 1963
## 5290                                              Cameroon    CM   CMR 1962
## 5291                                              Cameroon    CM   CMR 1961
## 5292                                              Cameroon    CM   CMR 1960
## 5293                                                Canada    CA   CAN 2022
## 5294                                                Canada    CA   CAN 2021
## 5295                                                Canada    CA   CAN 2020
## 5296                                                Canada    CA   CAN 2019
## 5297                                                Canada    CA   CAN 2018
## 5298                                                Canada    CA   CAN 2017
## 5299                                                Canada    CA   CAN 2016
## 5300                                                Canada    CA   CAN 2015
## 5301                                                Canada    CA   CAN 2014
## 5302                                                Canada    CA   CAN 2013
## 5303                                                Canada    CA   CAN 2012
## 5304                                                Canada    CA   CAN 2011
## 5305                                                Canada    CA   CAN 2010
## 5306                                                Canada    CA   CAN 2009
## 5307                                                Canada    CA   CAN 2008
## 5308                                                Canada    CA   CAN 2007
## 5309                                                Canada    CA   CAN 2006
## 5310                                                Canada    CA   CAN 2005
## 5311                                                Canada    CA   CAN 2004
## 5312                                                Canada    CA   CAN 2003
## 5313                                                Canada    CA   CAN 2002
## 5314                                                Canada    CA   CAN 2001
## 5315                                                Canada    CA   CAN 2000
## 5316                                                Canada    CA   CAN 1999
## 5317                                                Canada    CA   CAN 1998
## 5318                                                Canada    CA   CAN 1997
## 5319                                                Canada    CA   CAN 1996
## 5320                                                Canada    CA   CAN 1995
## 5321                                                Canada    CA   CAN 1994
## 5322                                                Canada    CA   CAN 1993
## 5323                                                Canada    CA   CAN 1992
## 5324                                                Canada    CA   CAN 1991
## 5325                                                Canada    CA   CAN 1990
## 5326                                                Canada    CA   CAN 1989
## 5327                                                Canada    CA   CAN 1988
## 5328                                                Canada    CA   CAN 1987
## 5329                                                Canada    CA   CAN 1986
## 5330                                                Canada    CA   CAN 1985
## 5331                                                Canada    CA   CAN 1984
## 5332                                                Canada    CA   CAN 1983
## 5333                                                Canada    CA   CAN 1982
## 5334                                                Canada    CA   CAN 1981
## 5335                                                Canada    CA   CAN 1980
## 5336                                                Canada    CA   CAN 1979
## 5337                                                Canada    CA   CAN 1978
## 5338                                                Canada    CA   CAN 1977
## 5339                                                Canada    CA   CAN 1976
## 5340                                                Canada    CA   CAN 1975
## 5341                                                Canada    CA   CAN 1974
## 5342                                                Canada    CA   CAN 1973
## 5343                                                Canada    CA   CAN 1972
## 5344                                                Canada    CA   CAN 1971
## 5345                                                Canada    CA   CAN 1970
## 5346                                                Canada    CA   CAN 1969
## 5347                                                Canada    CA   CAN 1968
## 5348                                                Canada    CA   CAN 1967
## 5349                                                Canada    CA   CAN 1966
## 5350                                                Canada    CA   CAN 1965
## 5351                                                Canada    CA   CAN 1964
## 5352                                                Canada    CA   CAN 1963
## 5353                                                Canada    CA   CAN 1962
## 5354                                                Canada    CA   CAN 1961
## 5355                                                Canada    CA   CAN 1960
## 5356                                        Cayman Islands    KY   CYM 2022
## 5357                                        Cayman Islands    KY   CYM 2021
## 5358                                        Cayman Islands    KY   CYM 2020
## 5359                                        Cayman Islands    KY   CYM 2019
## 5360                                        Cayman Islands    KY   CYM 2018
## 5361                                        Cayman Islands    KY   CYM 2017
## 5362                                        Cayman Islands    KY   CYM 2016
## 5363                                        Cayman Islands    KY   CYM 2015
## 5364                                        Cayman Islands    KY   CYM 2014
## 5365                                        Cayman Islands    KY   CYM 2013
## 5366                                        Cayman Islands    KY   CYM 2012
## 5367                                        Cayman Islands    KY   CYM 2011
## 5368                                        Cayman Islands    KY   CYM 2010
## 5369                                        Cayman Islands    KY   CYM 2009
## 5370                                        Cayman Islands    KY   CYM 2008
## 5371                                        Cayman Islands    KY   CYM 2007
## 5372                                        Cayman Islands    KY   CYM 2006
## 5373                                        Cayman Islands    KY   CYM 2005
## 5374                                        Cayman Islands    KY   CYM 2004
## 5375                                        Cayman Islands    KY   CYM 2003
## 5376                                        Cayman Islands    KY   CYM 2002
## 5377                                        Cayman Islands    KY   CYM 2001
## 5378                                        Cayman Islands    KY   CYM 2000
## 5379                                        Cayman Islands    KY   CYM 1999
## 5380                                        Cayman Islands    KY   CYM 1998
## 5381                                        Cayman Islands    KY   CYM 1997
## 5382                                        Cayman Islands    KY   CYM 1996
## 5383                                        Cayman Islands    KY   CYM 1995
## 5384                                        Cayman Islands    KY   CYM 1994
## 5385                                        Cayman Islands    KY   CYM 1993
## 5386                                        Cayman Islands    KY   CYM 1992
## 5387                                        Cayman Islands    KY   CYM 1991
## 5388                                        Cayman Islands    KY   CYM 1990
## 5389                                        Cayman Islands    KY   CYM 1989
## 5390                                        Cayman Islands    KY   CYM 1988
## 5391                                        Cayman Islands    KY   CYM 1987
## 5392                                        Cayman Islands    KY   CYM 1986
## 5393                                        Cayman Islands    KY   CYM 1985
## 5394                                        Cayman Islands    KY   CYM 1984
## 5395                                        Cayman Islands    KY   CYM 1983
## 5396                                        Cayman Islands    KY   CYM 1982
## 5397                                        Cayman Islands    KY   CYM 1981
## 5398                                        Cayman Islands    KY   CYM 1980
## 5399                                        Cayman Islands    KY   CYM 1979
## 5400                                        Cayman Islands    KY   CYM 1978
## 5401                                        Cayman Islands    KY   CYM 1977
## 5402                                        Cayman Islands    KY   CYM 1976
## 5403                                        Cayman Islands    KY   CYM 1975
## 5404                                        Cayman Islands    KY   CYM 1974
## 5405                                        Cayman Islands    KY   CYM 1973
## 5406                                        Cayman Islands    KY   CYM 1972
## 5407                                        Cayman Islands    KY   CYM 1971
## 5408                                        Cayman Islands    KY   CYM 1970
## 5409                                        Cayman Islands    KY   CYM 1969
## 5410                                        Cayman Islands    KY   CYM 1968
## 5411                                        Cayman Islands    KY   CYM 1967
## 5412                                        Cayman Islands    KY   CYM 1966
## 5413                                        Cayman Islands    KY   CYM 1965
## 5414                                        Cayman Islands    KY   CYM 1964
## 5415                                        Cayman Islands    KY   CYM 1963
## 5416                                        Cayman Islands    KY   CYM 1962
## 5417                                        Cayman Islands    KY   CYM 1961
## 5418                                        Cayman Islands    KY   CYM 1960
## 5419                              Central African Republic    CF   CAF 2022
## 5420                              Central African Republic    CF   CAF 2021
## 5421                              Central African Republic    CF   CAF 2020
## 5422                              Central African Republic    CF   CAF 2019
## 5423                              Central African Republic    CF   CAF 2018
## 5424                              Central African Republic    CF   CAF 2017
## 5425                              Central African Republic    CF   CAF 2016
## 5426                              Central African Republic    CF   CAF 2015
## 5427                              Central African Republic    CF   CAF 2014
## 5428                              Central African Republic    CF   CAF 2013
## 5429                              Central African Republic    CF   CAF 2012
## 5430                              Central African Republic    CF   CAF 2011
## 5431                              Central African Republic    CF   CAF 2010
## 5432                              Central African Republic    CF   CAF 2009
## 5433                              Central African Republic    CF   CAF 2008
## 5434                              Central African Republic    CF   CAF 2007
## 5435                              Central African Republic    CF   CAF 2006
## 5436                              Central African Republic    CF   CAF 2005
## 5437                              Central African Republic    CF   CAF 2004
## 5438                              Central African Republic    CF   CAF 2003
## 5439                              Central African Republic    CF   CAF 2002
## 5440                              Central African Republic    CF   CAF 2001
## 5441                              Central African Republic    CF   CAF 2000
## 5442                              Central African Republic    CF   CAF 1999
## 5443                              Central African Republic    CF   CAF 1998
## 5444                              Central African Republic    CF   CAF 1997
## 5445                              Central African Republic    CF   CAF 1996
## 5446                              Central African Republic    CF   CAF 1995
## 5447                              Central African Republic    CF   CAF 1994
## 5448                              Central African Republic    CF   CAF 1993
## 5449                              Central African Republic    CF   CAF 1992
## 5450                              Central African Republic    CF   CAF 1991
## 5451                              Central African Republic    CF   CAF 1990
## 5452                              Central African Republic    CF   CAF 1989
## 5453                              Central African Republic    CF   CAF 1988
## 5454                              Central African Republic    CF   CAF 1987
## 5455                              Central African Republic    CF   CAF 1986
## 5456                              Central African Republic    CF   CAF 1985
## 5457                              Central African Republic    CF   CAF 1984
## 5458                              Central African Republic    CF   CAF 1983
## 5459                              Central African Republic    CF   CAF 1982
## 5460                              Central African Republic    CF   CAF 1981
## 5461                              Central African Republic    CF   CAF 1980
## 5462                              Central African Republic    CF   CAF 1979
## 5463                              Central African Republic    CF   CAF 1978
## 5464                              Central African Republic    CF   CAF 1977
## 5465                              Central African Republic    CF   CAF 1976
## 5466                              Central African Republic    CF   CAF 1975
## 5467                              Central African Republic    CF   CAF 1974
## 5468                              Central African Republic    CF   CAF 1973
## 5469                              Central African Republic    CF   CAF 1972
## 5470                              Central African Republic    CF   CAF 1971
## 5471                              Central African Republic    CF   CAF 1970
## 5472                              Central African Republic    CF   CAF 1969
## 5473                              Central African Republic    CF   CAF 1968
## 5474                              Central African Republic    CF   CAF 1967
## 5475                              Central African Republic    CF   CAF 1966
## 5476                              Central African Republic    CF   CAF 1965
## 5477                              Central African Republic    CF   CAF 1964
## 5478                              Central African Republic    CF   CAF 1963
## 5479                              Central African Republic    CF   CAF 1962
## 5480                              Central African Republic    CF   CAF 1961
## 5481                              Central African Republic    CF   CAF 1960
## 5482                                                  Chad    TD   TCD 2022
## 5483                                                  Chad    TD   TCD 2021
## 5484                                                  Chad    TD   TCD 2020
## 5485                                                  Chad    TD   TCD 2019
## 5486                                                  Chad    TD   TCD 2018
## 5487                                                  Chad    TD   TCD 2017
## 5488                                                  Chad    TD   TCD 2016
## 5489                                                  Chad    TD   TCD 2015
## 5490                                                  Chad    TD   TCD 2014
## 5491                                                  Chad    TD   TCD 2013
## 5492                                                  Chad    TD   TCD 2012
## 5493                                                  Chad    TD   TCD 2011
## 5494                                                  Chad    TD   TCD 2010
## 5495                                                  Chad    TD   TCD 2009
## 5496                                                  Chad    TD   TCD 2008
## 5497                                                  Chad    TD   TCD 2007
## 5498                                                  Chad    TD   TCD 2006
## 5499                                                  Chad    TD   TCD 2005
## 5500                                                  Chad    TD   TCD 2004
## 5501                                                  Chad    TD   TCD 2003
## 5502                                                  Chad    TD   TCD 2002
## 5503                                                  Chad    TD   TCD 2001
## 5504                                                  Chad    TD   TCD 2000
## 5505                                                  Chad    TD   TCD 1999
## 5506                                                  Chad    TD   TCD 1998
## 5507                                                  Chad    TD   TCD 1997
## 5508                                                  Chad    TD   TCD 1996
## 5509                                                  Chad    TD   TCD 1995
## 5510                                                  Chad    TD   TCD 1994
## 5511                                                  Chad    TD   TCD 1993
## 5512                                                  Chad    TD   TCD 1992
## 5513                                                  Chad    TD   TCD 1991
## 5514                                                  Chad    TD   TCD 1990
## 5515                                                  Chad    TD   TCD 1989
## 5516                                                  Chad    TD   TCD 1988
## 5517                                                  Chad    TD   TCD 1987
## 5518                                                  Chad    TD   TCD 1986
## 5519                                                  Chad    TD   TCD 1985
## 5520                                                  Chad    TD   TCD 1984
## 5521                                                  Chad    TD   TCD 1983
## 5522                                                  Chad    TD   TCD 1982
## 5523                                                  Chad    TD   TCD 1981
## 5524                                                  Chad    TD   TCD 1980
## 5525                                                  Chad    TD   TCD 1979
## 5526                                                  Chad    TD   TCD 1978
## 5527                                                  Chad    TD   TCD 1977
## 5528                                                  Chad    TD   TCD 1976
## 5529                                                  Chad    TD   TCD 1975
## 5530                                                  Chad    TD   TCD 1974
## 5531                                                  Chad    TD   TCD 1973
## 5532                                                  Chad    TD   TCD 1972
## 5533                                                  Chad    TD   TCD 1971
## 5534                                                  Chad    TD   TCD 1970
## 5535                                                  Chad    TD   TCD 1969
## 5536                                                  Chad    TD   TCD 1968
## 5537                                                  Chad    TD   TCD 1967
## 5538                                                  Chad    TD   TCD 1966
## 5539                                                  Chad    TD   TCD 1965
## 5540                                                  Chad    TD   TCD 1964
## 5541                                                  Chad    TD   TCD 1963
## 5542                                                  Chad    TD   TCD 1962
## 5543                                                  Chad    TD   TCD 1961
## 5544                                                  Chad    TD   TCD 1960
## 5545                                       Channel Islands    JG   CHI 2022
## 5546                                       Channel Islands    JG   CHI 2021
## 5547                                       Channel Islands    JG   CHI 2020
## 5548                                       Channel Islands    JG   CHI 2019
## 5549                                       Channel Islands    JG   CHI 2018
## 5550                                       Channel Islands    JG   CHI 2017
## 5551                                       Channel Islands    JG   CHI 2016
## 5552                                       Channel Islands    JG   CHI 2015
## 5553                                       Channel Islands    JG   CHI 2014
## 5554                                       Channel Islands    JG   CHI 2013
## 5555                                       Channel Islands    JG   CHI 2012
## 5556                                       Channel Islands    JG   CHI 2011
## 5557                                       Channel Islands    JG   CHI 2010
## 5558                                       Channel Islands    JG   CHI 2009
## 5559                                       Channel Islands    JG   CHI 2008
## 5560                                       Channel Islands    JG   CHI 2007
## 5561                                       Channel Islands    JG   CHI 2006
## 5562                                       Channel Islands    JG   CHI 2005
## 5563                                       Channel Islands    JG   CHI 2004
## 5564                                       Channel Islands    JG   CHI 2003
## 5565                                       Channel Islands    JG   CHI 2002
## 5566                                       Channel Islands    JG   CHI 2001
## 5567                                       Channel Islands    JG   CHI 2000
## 5568                                       Channel Islands    JG   CHI 1999
## 5569                                       Channel Islands    JG   CHI 1998
## 5570                                       Channel Islands    JG   CHI 1997
## 5571                                       Channel Islands    JG   CHI 1996
## 5572                                       Channel Islands    JG   CHI 1995
## 5573                                       Channel Islands    JG   CHI 1994
## 5574                                       Channel Islands    JG   CHI 1993
## 5575                                       Channel Islands    JG   CHI 1992
## 5576                                       Channel Islands    JG   CHI 1991
## 5577                                       Channel Islands    JG   CHI 1990
## 5578                                       Channel Islands    JG   CHI 1989
## 5579                                       Channel Islands    JG   CHI 1988
## 5580                                       Channel Islands    JG   CHI 1987
## 5581                                       Channel Islands    JG   CHI 1986
## 5582                                       Channel Islands    JG   CHI 1985
## 5583                                       Channel Islands    JG   CHI 1984
## 5584                                       Channel Islands    JG   CHI 1983
## 5585                                       Channel Islands    JG   CHI 1982
## 5586                                       Channel Islands    JG   CHI 1981
## 5587                                       Channel Islands    JG   CHI 1980
## 5588                                       Channel Islands    JG   CHI 1979
## 5589                                       Channel Islands    JG   CHI 1978
## 5590                                       Channel Islands    JG   CHI 1977
## 5591                                       Channel Islands    JG   CHI 1976
## 5592                                       Channel Islands    JG   CHI 1975
## 5593                                       Channel Islands    JG   CHI 1974
## 5594                                       Channel Islands    JG   CHI 1973
## 5595                                       Channel Islands    JG   CHI 1972
## 5596                                       Channel Islands    JG   CHI 1971
## 5597                                       Channel Islands    JG   CHI 1970
## 5598                                       Channel Islands    JG   CHI 1969
## 5599                                       Channel Islands    JG   CHI 1968
## 5600                                       Channel Islands    JG   CHI 1967
## 5601                                       Channel Islands    JG   CHI 1966
## 5602                                       Channel Islands    JG   CHI 1965
## 5603                                       Channel Islands    JG   CHI 1964
## 5604                                       Channel Islands    JG   CHI 1963
## 5605                                       Channel Islands    JG   CHI 1962
## 5606                                       Channel Islands    JG   CHI 1961
## 5607                                       Channel Islands    JG   CHI 1960
## 5608                                                 Chile    CL   CHL 2022
## 5609                                                 Chile    CL   CHL 2021
## 5610                                                 Chile    CL   CHL 2020
## 5611                                                 Chile    CL   CHL 2019
## 5612                                                 Chile    CL   CHL 2018
## 5613                                                 Chile    CL   CHL 2017
## 5614                                                 Chile    CL   CHL 2016
## 5615                                                 Chile    CL   CHL 2015
## 5616                                                 Chile    CL   CHL 2014
## 5617                                                 Chile    CL   CHL 2013
## 5618                                                 Chile    CL   CHL 2012
## 5619                                                 Chile    CL   CHL 2011
## 5620                                                 Chile    CL   CHL 2010
## 5621                                                 Chile    CL   CHL 2009
## 5622                                                 Chile    CL   CHL 2008
## 5623                                                 Chile    CL   CHL 2007
## 5624                                                 Chile    CL   CHL 2006
## 5625                                                 Chile    CL   CHL 2005
## 5626                                                 Chile    CL   CHL 2004
## 5627                                                 Chile    CL   CHL 2003
## 5628                                                 Chile    CL   CHL 2002
## 5629                                                 Chile    CL   CHL 2001
## 5630                                                 Chile    CL   CHL 2000
## 5631                                                 Chile    CL   CHL 1999
## 5632                                                 Chile    CL   CHL 1998
## 5633                                                 Chile    CL   CHL 1997
## 5634                                                 Chile    CL   CHL 1996
## 5635                                                 Chile    CL   CHL 1995
## 5636                                                 Chile    CL   CHL 1994
## 5637                                                 Chile    CL   CHL 1993
## 5638                                                 Chile    CL   CHL 1992
## 5639                                                 Chile    CL   CHL 1991
## 5640                                                 Chile    CL   CHL 1990
## 5641                                                 Chile    CL   CHL 1989
## 5642                                                 Chile    CL   CHL 1988
## 5643                                                 Chile    CL   CHL 1987
## 5644                                                 Chile    CL   CHL 1986
## 5645                                                 Chile    CL   CHL 1985
## 5646                                                 Chile    CL   CHL 1984
## 5647                                                 Chile    CL   CHL 1983
## 5648                                                 Chile    CL   CHL 1982
## 5649                                                 Chile    CL   CHL 1981
## 5650                                                 Chile    CL   CHL 1980
## 5651                                                 Chile    CL   CHL 1979
## 5652                                                 Chile    CL   CHL 1978
## 5653                                                 Chile    CL   CHL 1977
## 5654                                                 Chile    CL   CHL 1976
## 5655                                                 Chile    CL   CHL 1975
## 5656                                                 Chile    CL   CHL 1974
## 5657                                                 Chile    CL   CHL 1973
## 5658                                                 Chile    CL   CHL 1972
## 5659                                                 Chile    CL   CHL 1971
## 5660                                                 Chile    CL   CHL 1970
## 5661                                                 Chile    CL   CHL 1969
## 5662                                                 Chile    CL   CHL 1968
## 5663                                                 Chile    CL   CHL 1967
## 5664                                                 Chile    CL   CHL 1966
## 5665                                                 Chile    CL   CHL 1965
## 5666                                                 Chile    CL   CHL 1964
## 5667                                                 Chile    CL   CHL 1963
## 5668                                                 Chile    CL   CHL 1962
## 5669                                                 Chile    CL   CHL 1961
## 5670                                                 Chile    CL   CHL 1960
## 5671                                                 China    CN   CHN 2022
## 5672                                                 China    CN   CHN 2021
## 5673                                                 China    CN   CHN 2020
## 5674                                                 China    CN   CHN 2019
## 5675                                                 China    CN   CHN 2018
## 5676                                                 China    CN   CHN 2017
## 5677                                                 China    CN   CHN 2016
## 5678                                                 China    CN   CHN 2015
## 5679                                                 China    CN   CHN 2014
## 5680                                                 China    CN   CHN 2013
## 5681                                                 China    CN   CHN 2012
## 5682                                                 China    CN   CHN 2011
## 5683                                                 China    CN   CHN 2010
## 5684                                                 China    CN   CHN 2009
## 5685                                                 China    CN   CHN 2008
## 5686                                                 China    CN   CHN 2007
## 5687                                                 China    CN   CHN 2006
## 5688                                                 China    CN   CHN 2005
## 5689                                                 China    CN   CHN 2004
## 5690                                                 China    CN   CHN 2003
## 5691                                                 China    CN   CHN 2002
## 5692                                                 China    CN   CHN 2001
## 5693                                                 China    CN   CHN 2000
## 5694                                                 China    CN   CHN 1999
## 5695                                                 China    CN   CHN 1998
## 5696                                                 China    CN   CHN 1997
## 5697                                                 China    CN   CHN 1996
## 5698                                                 China    CN   CHN 1995
## 5699                                                 China    CN   CHN 1994
## 5700                                                 China    CN   CHN 1993
## 5701                                                 China    CN   CHN 1992
## 5702                                                 China    CN   CHN 1991
## 5703                                                 China    CN   CHN 1990
## 5704                                                 China    CN   CHN 1989
## 5705                                                 China    CN   CHN 1988
## 5706                                                 China    CN   CHN 1987
## 5707                                                 China    CN   CHN 1986
## 5708                                                 China    CN   CHN 1985
## 5709                                                 China    CN   CHN 1984
## 5710                                                 China    CN   CHN 1983
## 5711                                                 China    CN   CHN 1982
## 5712                                                 China    CN   CHN 1981
## 5713                                                 China    CN   CHN 1980
## 5714                                                 China    CN   CHN 1979
## 5715                                                 China    CN   CHN 1978
## 5716                                                 China    CN   CHN 1977
## 5717                                                 China    CN   CHN 1976
## 5718                                                 China    CN   CHN 1975
## 5719                                                 China    CN   CHN 1974
## 5720                                                 China    CN   CHN 1973
## 5721                                                 China    CN   CHN 1972
## 5722                                                 China    CN   CHN 1971
## 5723                                                 China    CN   CHN 1970
## 5724                                                 China    CN   CHN 1969
## 5725                                                 China    CN   CHN 1968
## 5726                                                 China    CN   CHN 1967
## 5727                                                 China    CN   CHN 1966
## 5728                                                 China    CN   CHN 1965
## 5729                                                 China    CN   CHN 1964
## 5730                                                 China    CN   CHN 1963
## 5731                                                 China    CN   CHN 1962
## 5732                                                 China    CN   CHN 1961
## 5733                                                 China    CN   CHN 1960
## 5734                                              Colombia    CO   COL 2022
## 5735                                              Colombia    CO   COL 2021
## 5736                                              Colombia    CO   COL 2020
## 5737                                              Colombia    CO   COL 2019
## 5738                                              Colombia    CO   COL 2018
## 5739                                              Colombia    CO   COL 2017
## 5740                                              Colombia    CO   COL 2016
## 5741                                              Colombia    CO   COL 2015
## 5742                                              Colombia    CO   COL 2014
## 5743                                              Colombia    CO   COL 2013
## 5744                                              Colombia    CO   COL 2012
## 5745                                              Colombia    CO   COL 2011
## 5746                                              Colombia    CO   COL 2010
## 5747                                              Colombia    CO   COL 2009
## 5748                                              Colombia    CO   COL 2008
## 5749                                              Colombia    CO   COL 2007
## 5750                                              Colombia    CO   COL 2006
## 5751                                              Colombia    CO   COL 2005
## 5752                                              Colombia    CO   COL 2004
## 5753                                              Colombia    CO   COL 2003
## 5754                                              Colombia    CO   COL 2002
## 5755                                              Colombia    CO   COL 2001
## 5756                                              Colombia    CO   COL 2000
## 5757                                              Colombia    CO   COL 1999
## 5758                                              Colombia    CO   COL 1998
## 5759                                              Colombia    CO   COL 1997
## 5760                                              Colombia    CO   COL 1996
## 5761                                              Colombia    CO   COL 1995
## 5762                                              Colombia    CO   COL 1994
## 5763                                              Colombia    CO   COL 1993
## 5764                                              Colombia    CO   COL 1992
## 5765                                              Colombia    CO   COL 1991
## 5766                                              Colombia    CO   COL 1990
## 5767                                              Colombia    CO   COL 1989
## 5768                                              Colombia    CO   COL 1988
## 5769                                              Colombia    CO   COL 1987
## 5770                                              Colombia    CO   COL 1986
## 5771                                              Colombia    CO   COL 1985
## 5772                                              Colombia    CO   COL 1984
## 5773                                              Colombia    CO   COL 1983
## 5774                                              Colombia    CO   COL 1982
## 5775                                              Colombia    CO   COL 1981
## 5776                                              Colombia    CO   COL 1980
## 5777                                              Colombia    CO   COL 1979
## 5778                                              Colombia    CO   COL 1978
## 5779                                              Colombia    CO   COL 1977
## 5780                                              Colombia    CO   COL 1976
## 5781                                              Colombia    CO   COL 1975
## 5782                                              Colombia    CO   COL 1974
## 5783                                              Colombia    CO   COL 1973
## 5784                                              Colombia    CO   COL 1972
## 5785                                              Colombia    CO   COL 1971
## 5786                                              Colombia    CO   COL 1970
## 5787                                              Colombia    CO   COL 1969
## 5788                                              Colombia    CO   COL 1968
## 5789                                              Colombia    CO   COL 1967
## 5790                                              Colombia    CO   COL 1966
## 5791                                              Colombia    CO   COL 1965
## 5792                                              Colombia    CO   COL 1964
## 5793                                              Colombia    CO   COL 1963
## 5794                                              Colombia    CO   COL 1962
## 5795                                              Colombia    CO   COL 1961
## 5796                                              Colombia    CO   COL 1960
## 5797                                               Comoros    KM   COM 2022
## 5798                                               Comoros    KM   COM 2021
## 5799                                               Comoros    KM   COM 2020
## 5800                                               Comoros    KM   COM 2019
## 5801                                               Comoros    KM   COM 2018
## 5802                                               Comoros    KM   COM 2017
## 5803                                               Comoros    KM   COM 2016
## 5804                                               Comoros    KM   COM 2015
## 5805                                               Comoros    KM   COM 2014
## 5806                                               Comoros    KM   COM 2013
## 5807                                               Comoros    KM   COM 2012
## 5808                                               Comoros    KM   COM 2011
## 5809                                               Comoros    KM   COM 2010
## 5810                                               Comoros    KM   COM 2009
## 5811                                               Comoros    KM   COM 2008
## 5812                                               Comoros    KM   COM 2007
## 5813                                               Comoros    KM   COM 2006
## 5814                                               Comoros    KM   COM 2005
## 5815                                               Comoros    KM   COM 2004
## 5816                                               Comoros    KM   COM 2003
## 5817                                               Comoros    KM   COM 2002
## 5818                                               Comoros    KM   COM 2001
## 5819                                               Comoros    KM   COM 2000
## 5820                                               Comoros    KM   COM 1999
## 5821                                               Comoros    KM   COM 1998
## 5822                                               Comoros    KM   COM 1997
## 5823                                               Comoros    KM   COM 1996
## 5824                                               Comoros    KM   COM 1995
## 5825                                               Comoros    KM   COM 1994
## 5826                                               Comoros    KM   COM 1993
## 5827                                               Comoros    KM   COM 1992
## 5828                                               Comoros    KM   COM 1991
## 5829                                               Comoros    KM   COM 1990
## 5830                                               Comoros    KM   COM 1989
## 5831                                               Comoros    KM   COM 1988
## 5832                                               Comoros    KM   COM 1987
## 5833                                               Comoros    KM   COM 1986
## 5834                                               Comoros    KM   COM 1985
## 5835                                               Comoros    KM   COM 1984
## 5836                                               Comoros    KM   COM 1983
## 5837                                               Comoros    KM   COM 1982
## 5838                                               Comoros    KM   COM 1981
## 5839                                               Comoros    KM   COM 1980
## 5840                                               Comoros    KM   COM 1979
## 5841                                               Comoros    KM   COM 1978
## 5842                                               Comoros    KM   COM 1977
## 5843                                               Comoros    KM   COM 1976
## 5844                                               Comoros    KM   COM 1975
## 5845                                               Comoros    KM   COM 1974
## 5846                                               Comoros    KM   COM 1973
## 5847                                               Comoros    KM   COM 1972
## 5848                                               Comoros    KM   COM 1971
## 5849                                               Comoros    KM   COM 1970
## 5850                                               Comoros    KM   COM 1969
## 5851                                               Comoros    KM   COM 1968
## 5852                                               Comoros    KM   COM 1967
## 5853                                               Comoros    KM   COM 1966
## 5854                                               Comoros    KM   COM 1965
## 5855                                               Comoros    KM   COM 1964
## 5856                                               Comoros    KM   COM 1963
## 5857                                               Comoros    KM   COM 1962
## 5858                                               Comoros    KM   COM 1961
## 5859                                               Comoros    KM   COM 1960
## 5860                                      Congo, Dem. Rep.    CD   COD 2022
## 5861                                      Congo, Dem. Rep.    CD   COD 2021
## 5862                                      Congo, Dem. Rep.    CD   COD 2020
## 5863                                      Congo, Dem. Rep.    CD   COD 2019
## 5864                                      Congo, Dem. Rep.    CD   COD 2018
## 5865                                      Congo, Dem. Rep.    CD   COD 2017
## 5866                                      Congo, Dem. Rep.    CD   COD 2016
## 5867                                      Congo, Dem. Rep.    CD   COD 2015
## 5868                                      Congo, Dem. Rep.    CD   COD 2014
## 5869                                      Congo, Dem. Rep.    CD   COD 2013
## 5870                                      Congo, Dem. Rep.    CD   COD 2012
## 5871                                      Congo, Dem. Rep.    CD   COD 2011
## 5872                                      Congo, Dem. Rep.    CD   COD 2010
## 5873                                      Congo, Dem. Rep.    CD   COD 2009
## 5874                                      Congo, Dem. Rep.    CD   COD 2008
## 5875                                      Congo, Dem. Rep.    CD   COD 2007
## 5876                                      Congo, Dem. Rep.    CD   COD 2006
## 5877                                      Congo, Dem. Rep.    CD   COD 2005
## 5878                                      Congo, Dem. Rep.    CD   COD 2004
## 5879                                      Congo, Dem. Rep.    CD   COD 2003
## 5880                                      Congo, Dem. Rep.    CD   COD 2002
## 5881                                      Congo, Dem. Rep.    CD   COD 2001
## 5882                                      Congo, Dem. Rep.    CD   COD 2000
## 5883                                      Congo, Dem. Rep.    CD   COD 1999
## 5884                                      Congo, Dem. Rep.    CD   COD 1998
## 5885                                      Congo, Dem. Rep.    CD   COD 1997
## 5886                                      Congo, Dem. Rep.    CD   COD 1996
## 5887                                      Congo, Dem. Rep.    CD   COD 1995
## 5888                                      Congo, Dem. Rep.    CD   COD 1994
## 5889                                      Congo, Dem. Rep.    CD   COD 1993
## 5890                                      Congo, Dem. Rep.    CD   COD 1992
## 5891                                      Congo, Dem. Rep.    CD   COD 1991
## 5892                                      Congo, Dem. Rep.    CD   COD 1990
## 5893                                      Congo, Dem. Rep.    CD   COD 1989
## 5894                                      Congo, Dem. Rep.    CD   COD 1988
## 5895                                      Congo, Dem. Rep.    CD   COD 1987
## 5896                                      Congo, Dem. Rep.    CD   COD 1986
## 5897                                      Congo, Dem. Rep.    CD   COD 1985
## 5898                                      Congo, Dem. Rep.    CD   COD 1984
## 5899                                      Congo, Dem. Rep.    CD   COD 1983
## 5900                                      Congo, Dem. Rep.    CD   COD 1982
## 5901                                      Congo, Dem. Rep.    CD   COD 1981
## 5902                                      Congo, Dem. Rep.    CD   COD 1980
## 5903                                      Congo, Dem. Rep.    CD   COD 1979
## 5904                                      Congo, Dem. Rep.    CD   COD 1978
## 5905                                      Congo, Dem. Rep.    CD   COD 1977
## 5906                                      Congo, Dem. Rep.    CD   COD 1976
## 5907                                      Congo, Dem. Rep.    CD   COD 1975
## 5908                                      Congo, Dem. Rep.    CD   COD 1974
## 5909                                      Congo, Dem. Rep.    CD   COD 1973
## 5910                                      Congo, Dem. Rep.    CD   COD 1972
## 5911                                      Congo, Dem. Rep.    CD   COD 1971
## 5912                                      Congo, Dem. Rep.    CD   COD 1970
## 5913                                      Congo, Dem. Rep.    CD   COD 1969
## 5914                                      Congo, Dem. Rep.    CD   COD 1968
## 5915                                      Congo, Dem. Rep.    CD   COD 1967
## 5916                                      Congo, Dem. Rep.    CD   COD 1966
## 5917                                      Congo, Dem. Rep.    CD   COD 1965
## 5918                                      Congo, Dem. Rep.    CD   COD 1964
## 5919                                      Congo, Dem. Rep.    CD   COD 1963
## 5920                                      Congo, Dem. Rep.    CD   COD 1962
## 5921                                      Congo, Dem. Rep.    CD   COD 1961
## 5922                                      Congo, Dem. Rep.    CD   COD 1960
## 5923                                           Congo, Rep.    CG   COG 2022
## 5924                                           Congo, Rep.    CG   COG 2021
## 5925                                           Congo, Rep.    CG   COG 2020
## 5926                                           Congo, Rep.    CG   COG 2019
## 5927                                           Congo, Rep.    CG   COG 2018
## 5928                                           Congo, Rep.    CG   COG 2017
## 5929                                           Congo, Rep.    CG   COG 2016
## 5930                                           Congo, Rep.    CG   COG 2015
## 5931                                           Congo, Rep.    CG   COG 2014
## 5932                                           Congo, Rep.    CG   COG 2013
## 5933                                           Congo, Rep.    CG   COG 2012
## 5934                                           Congo, Rep.    CG   COG 2011
## 5935                                           Congo, Rep.    CG   COG 2010
## 5936                                           Congo, Rep.    CG   COG 2009
## 5937                                           Congo, Rep.    CG   COG 2008
## 5938                                           Congo, Rep.    CG   COG 2007
## 5939                                           Congo, Rep.    CG   COG 2006
## 5940                                           Congo, Rep.    CG   COG 2005
## 5941                                           Congo, Rep.    CG   COG 2004
## 5942                                           Congo, Rep.    CG   COG 2003
## 5943                                           Congo, Rep.    CG   COG 2002
## 5944                                           Congo, Rep.    CG   COG 2001
## 5945                                           Congo, Rep.    CG   COG 2000
## 5946                                           Congo, Rep.    CG   COG 1999
## 5947                                           Congo, Rep.    CG   COG 1998
## 5948                                           Congo, Rep.    CG   COG 1997
## 5949                                           Congo, Rep.    CG   COG 1996
## 5950                                           Congo, Rep.    CG   COG 1995
## 5951                                           Congo, Rep.    CG   COG 1994
## 5952                                           Congo, Rep.    CG   COG 1993
## 5953                                           Congo, Rep.    CG   COG 1992
## 5954                                           Congo, Rep.    CG   COG 1991
## 5955                                           Congo, Rep.    CG   COG 1990
## 5956                                           Congo, Rep.    CG   COG 1989
## 5957                                           Congo, Rep.    CG   COG 1988
## 5958                                           Congo, Rep.    CG   COG 1987
## 5959                                           Congo, Rep.    CG   COG 1986
## 5960                                           Congo, Rep.    CG   COG 1985
## 5961                                           Congo, Rep.    CG   COG 1984
## 5962                                           Congo, Rep.    CG   COG 1983
## 5963                                           Congo, Rep.    CG   COG 1982
## 5964                                           Congo, Rep.    CG   COG 1981
## 5965                                           Congo, Rep.    CG   COG 1980
## 5966                                           Congo, Rep.    CG   COG 1979
## 5967                                           Congo, Rep.    CG   COG 1978
## 5968                                           Congo, Rep.    CG   COG 1977
## 5969                                           Congo, Rep.    CG   COG 1976
## 5970                                           Congo, Rep.    CG   COG 1975
## 5971                                           Congo, Rep.    CG   COG 1974
## 5972                                           Congo, Rep.    CG   COG 1973
## 5973                                           Congo, Rep.    CG   COG 1972
## 5974                                           Congo, Rep.    CG   COG 1971
## 5975                                           Congo, Rep.    CG   COG 1970
## 5976                                           Congo, Rep.    CG   COG 1969
## 5977                                           Congo, Rep.    CG   COG 1968
## 5978                                           Congo, Rep.    CG   COG 1967
## 5979                                           Congo, Rep.    CG   COG 1966
## 5980                                           Congo, Rep.    CG   COG 1965
## 5981                                           Congo, Rep.    CG   COG 1964
## 5982                                           Congo, Rep.    CG   COG 1963
## 5983                                           Congo, Rep.    CG   COG 1962
## 5984                                           Congo, Rep.    CG   COG 1961
## 5985                                           Congo, Rep.    CG   COG 1960
## 5986                                            Costa Rica    CR   CRI 2022
## 5987                                            Costa Rica    CR   CRI 2021
## 5988                                            Costa Rica    CR   CRI 2020
## 5989                                            Costa Rica    CR   CRI 2019
## 5990                                            Costa Rica    CR   CRI 2018
## 5991                                            Costa Rica    CR   CRI 2017
## 5992                                            Costa Rica    CR   CRI 2016
## 5993                                            Costa Rica    CR   CRI 2015
## 5994                                            Costa Rica    CR   CRI 2014
## 5995                                            Costa Rica    CR   CRI 2013
## 5996                                            Costa Rica    CR   CRI 2012
## 5997                                            Costa Rica    CR   CRI 2011
## 5998                                            Costa Rica    CR   CRI 2010
## 5999                                            Costa Rica    CR   CRI 2009
## 6000                                            Costa Rica    CR   CRI 2008
## 6001                                            Costa Rica    CR   CRI 2007
## 6002                                            Costa Rica    CR   CRI 2006
## 6003                                            Costa Rica    CR   CRI 2005
## 6004                                            Costa Rica    CR   CRI 2004
## 6005                                            Costa Rica    CR   CRI 2003
## 6006                                            Costa Rica    CR   CRI 2002
## 6007                                            Costa Rica    CR   CRI 2001
## 6008                                            Costa Rica    CR   CRI 2000
## 6009                                            Costa Rica    CR   CRI 1999
## 6010                                            Costa Rica    CR   CRI 1998
## 6011                                            Costa Rica    CR   CRI 1997
## 6012                                            Costa Rica    CR   CRI 1996
## 6013                                            Costa Rica    CR   CRI 1995
## 6014                                            Costa Rica    CR   CRI 1994
## 6015                                            Costa Rica    CR   CRI 1993
## 6016                                            Costa Rica    CR   CRI 1992
## 6017                                            Costa Rica    CR   CRI 1991
## 6018                                            Costa Rica    CR   CRI 1990
## 6019                                            Costa Rica    CR   CRI 1989
## 6020                                            Costa Rica    CR   CRI 1988
## 6021                                            Costa Rica    CR   CRI 1987
## 6022                                            Costa Rica    CR   CRI 1986
## 6023                                            Costa Rica    CR   CRI 1985
## 6024                                            Costa Rica    CR   CRI 1984
## 6025                                            Costa Rica    CR   CRI 1983
## 6026                                            Costa Rica    CR   CRI 1982
## 6027                                            Costa Rica    CR   CRI 1981
## 6028                                            Costa Rica    CR   CRI 1980
## 6029                                            Costa Rica    CR   CRI 1979
## 6030                                            Costa Rica    CR   CRI 1978
## 6031                                            Costa Rica    CR   CRI 1977
## 6032                                            Costa Rica    CR   CRI 1976
## 6033                                            Costa Rica    CR   CRI 1975
## 6034                                            Costa Rica    CR   CRI 1974
## 6035                                            Costa Rica    CR   CRI 1973
## 6036                                            Costa Rica    CR   CRI 1972
## 6037                                            Costa Rica    CR   CRI 1971
## 6038                                            Costa Rica    CR   CRI 1970
## 6039                                            Costa Rica    CR   CRI 1969
## 6040                                            Costa Rica    CR   CRI 1968
## 6041                                            Costa Rica    CR   CRI 1967
## 6042                                            Costa Rica    CR   CRI 1966
## 6043                                            Costa Rica    CR   CRI 1965
## 6044                                            Costa Rica    CR   CRI 1964
## 6045                                            Costa Rica    CR   CRI 1963
## 6046                                            Costa Rica    CR   CRI 1962
## 6047                                            Costa Rica    CR   CRI 1961
## 6048                                            Costa Rica    CR   CRI 1960
## 6049                                         Cote d'Ivoire    CI   CIV 2022
## 6050                                         Cote d'Ivoire    CI   CIV 2021
## 6051                                         Cote d'Ivoire    CI   CIV 2020
## 6052                                         Cote d'Ivoire    CI   CIV 2019
## 6053                                         Cote d'Ivoire    CI   CIV 2018
## 6054                                         Cote d'Ivoire    CI   CIV 2017
## 6055                                         Cote d'Ivoire    CI   CIV 2016
## 6056                                         Cote d'Ivoire    CI   CIV 2015
## 6057                                         Cote d'Ivoire    CI   CIV 2014
## 6058                                         Cote d'Ivoire    CI   CIV 2013
## 6059                                         Cote d'Ivoire    CI   CIV 2012
## 6060                                         Cote d'Ivoire    CI   CIV 2011
## 6061                                         Cote d'Ivoire    CI   CIV 2010
## 6062                                         Cote d'Ivoire    CI   CIV 2009
## 6063                                         Cote d'Ivoire    CI   CIV 2008
## 6064                                         Cote d'Ivoire    CI   CIV 2007
## 6065                                         Cote d'Ivoire    CI   CIV 2006
## 6066                                         Cote d'Ivoire    CI   CIV 2005
## 6067                                         Cote d'Ivoire    CI   CIV 2004
## 6068                                         Cote d'Ivoire    CI   CIV 2003
## 6069                                         Cote d'Ivoire    CI   CIV 2002
## 6070                                         Cote d'Ivoire    CI   CIV 2001
## 6071                                         Cote d'Ivoire    CI   CIV 2000
## 6072                                         Cote d'Ivoire    CI   CIV 1999
## 6073                                         Cote d'Ivoire    CI   CIV 1998
## 6074                                         Cote d'Ivoire    CI   CIV 1997
## 6075                                         Cote d'Ivoire    CI   CIV 1996
## 6076                                         Cote d'Ivoire    CI   CIV 1995
## 6077                                         Cote d'Ivoire    CI   CIV 1994
## 6078                                         Cote d'Ivoire    CI   CIV 1993
## 6079                                         Cote d'Ivoire    CI   CIV 1992
## 6080                                         Cote d'Ivoire    CI   CIV 1991
## 6081                                         Cote d'Ivoire    CI   CIV 1990
## 6082                                         Cote d'Ivoire    CI   CIV 1989
## 6083                                         Cote d'Ivoire    CI   CIV 1988
## 6084                                         Cote d'Ivoire    CI   CIV 1987
## 6085                                         Cote d'Ivoire    CI   CIV 1986
## 6086                                         Cote d'Ivoire    CI   CIV 1985
## 6087                                         Cote d'Ivoire    CI   CIV 1984
## 6088                                         Cote d'Ivoire    CI   CIV 1983
## 6089                                         Cote d'Ivoire    CI   CIV 1982
## 6090                                         Cote d'Ivoire    CI   CIV 1981
## 6091                                         Cote d'Ivoire    CI   CIV 1980
## 6092                                         Cote d'Ivoire    CI   CIV 1979
## 6093                                         Cote d'Ivoire    CI   CIV 1978
## 6094                                         Cote d'Ivoire    CI   CIV 1977
## 6095                                         Cote d'Ivoire    CI   CIV 1976
## 6096                                         Cote d'Ivoire    CI   CIV 1975
## 6097                                         Cote d'Ivoire    CI   CIV 1974
## 6098                                         Cote d'Ivoire    CI   CIV 1973
## 6099                                         Cote d'Ivoire    CI   CIV 1972
## 6100                                         Cote d'Ivoire    CI   CIV 1971
## 6101                                         Cote d'Ivoire    CI   CIV 1970
## 6102                                         Cote d'Ivoire    CI   CIV 1969
## 6103                                         Cote d'Ivoire    CI   CIV 1968
## 6104                                         Cote d'Ivoire    CI   CIV 1967
## 6105                                         Cote d'Ivoire    CI   CIV 1966
## 6106                                         Cote d'Ivoire    CI   CIV 1965
## 6107                                         Cote d'Ivoire    CI   CIV 1964
## 6108                                         Cote d'Ivoire    CI   CIV 1963
## 6109                                         Cote d'Ivoire    CI   CIV 1962
## 6110                                         Cote d'Ivoire    CI   CIV 1961
## 6111                                         Cote d'Ivoire    CI   CIV 1960
## 6112                                               Croatia    HR   HRV 2022
## 6113                                               Croatia    HR   HRV 2021
## 6114                                               Croatia    HR   HRV 2020
## 6115                                               Croatia    HR   HRV 2019
## 6116                                               Croatia    HR   HRV 2018
## 6117                                               Croatia    HR   HRV 2017
## 6118                                               Croatia    HR   HRV 2016
## 6119                                               Croatia    HR   HRV 2015
## 6120                                               Croatia    HR   HRV 2014
## 6121                                               Croatia    HR   HRV 2013
## 6122                                               Croatia    HR   HRV 2012
## 6123                                               Croatia    HR   HRV 2011
## 6124                                               Croatia    HR   HRV 2010
## 6125                                               Croatia    HR   HRV 2009
## 6126                                               Croatia    HR   HRV 2008
## 6127                                               Croatia    HR   HRV 2007
## 6128                                               Croatia    HR   HRV 2006
## 6129                                               Croatia    HR   HRV 2005
## 6130                                               Croatia    HR   HRV 2004
## 6131                                               Croatia    HR   HRV 2003
## 6132                                               Croatia    HR   HRV 2002
## 6133                                               Croatia    HR   HRV 2001
## 6134                                               Croatia    HR   HRV 2000
## 6135                                               Croatia    HR   HRV 1999
## 6136                                               Croatia    HR   HRV 1998
## 6137                                               Croatia    HR   HRV 1997
## 6138                                               Croatia    HR   HRV 1996
## 6139                                               Croatia    HR   HRV 1995
## 6140                                               Croatia    HR   HRV 1994
## 6141                                               Croatia    HR   HRV 1993
## 6142                                               Croatia    HR   HRV 1992
## 6143                                               Croatia    HR   HRV 1991
## 6144                                               Croatia    HR   HRV 1990
## 6145                                               Croatia    HR   HRV 1989
## 6146                                               Croatia    HR   HRV 1988
## 6147                                               Croatia    HR   HRV 1987
## 6148                                               Croatia    HR   HRV 1986
## 6149                                               Croatia    HR   HRV 1985
## 6150                                               Croatia    HR   HRV 1984
## 6151                                               Croatia    HR   HRV 1983
## 6152                                               Croatia    HR   HRV 1982
## 6153                                               Croatia    HR   HRV 1981
## 6154                                               Croatia    HR   HRV 1980
## 6155                                               Croatia    HR   HRV 1979
## 6156                                               Croatia    HR   HRV 1978
## 6157                                               Croatia    HR   HRV 1977
## 6158                                               Croatia    HR   HRV 1976
## 6159                                               Croatia    HR   HRV 1975
## 6160                                               Croatia    HR   HRV 1974
## 6161                                               Croatia    HR   HRV 1973
## 6162                                               Croatia    HR   HRV 1972
## 6163                                               Croatia    HR   HRV 1971
## 6164                                               Croatia    HR   HRV 1970
## 6165                                               Croatia    HR   HRV 1969
## 6166                                               Croatia    HR   HRV 1968
## 6167                                               Croatia    HR   HRV 1967
## 6168                                               Croatia    HR   HRV 1966
## 6169                                               Croatia    HR   HRV 1965
## 6170                                               Croatia    HR   HRV 1964
## 6171                                               Croatia    HR   HRV 1963
## 6172                                               Croatia    HR   HRV 1962
## 6173                                               Croatia    HR   HRV 1961
## 6174                                               Croatia    HR   HRV 1960
## 6175                                                  Cuba    CU   CUB 2022
## 6176                                                  Cuba    CU   CUB 2021
## 6177                                                  Cuba    CU   CUB 2020
## 6178                                                  Cuba    CU   CUB 2019
## 6179                                                  Cuba    CU   CUB 2018
## 6180                                                  Cuba    CU   CUB 2017
## 6181                                                  Cuba    CU   CUB 2016
## 6182                                                  Cuba    CU   CUB 2015
## 6183                                                  Cuba    CU   CUB 2014
## 6184                                                  Cuba    CU   CUB 2013
## 6185                                                  Cuba    CU   CUB 2012
## 6186                                                  Cuba    CU   CUB 2011
## 6187                                                  Cuba    CU   CUB 2010
## 6188                                                  Cuba    CU   CUB 2009
## 6189                                                  Cuba    CU   CUB 2008
## 6190                                                  Cuba    CU   CUB 2007
## 6191                                                  Cuba    CU   CUB 2006
## 6192                                                  Cuba    CU   CUB 2005
## 6193                                                  Cuba    CU   CUB 2004
## 6194                                                  Cuba    CU   CUB 2003
## 6195                                                  Cuba    CU   CUB 2002
## 6196                                                  Cuba    CU   CUB 2001
## 6197                                                  Cuba    CU   CUB 2000
## 6198                                                  Cuba    CU   CUB 1999
## 6199                                                  Cuba    CU   CUB 1998
## 6200                                                  Cuba    CU   CUB 1997
## 6201                                                  Cuba    CU   CUB 1996
## 6202                                                  Cuba    CU   CUB 1995
## 6203                                                  Cuba    CU   CUB 1994
## 6204                                                  Cuba    CU   CUB 1993
## 6205                                                  Cuba    CU   CUB 1992
## 6206                                                  Cuba    CU   CUB 1991
## 6207                                                  Cuba    CU   CUB 1990
## 6208                                                  Cuba    CU   CUB 1989
## 6209                                                  Cuba    CU   CUB 1988
## 6210                                                  Cuba    CU   CUB 1987
## 6211                                                  Cuba    CU   CUB 1986
## 6212                                                  Cuba    CU   CUB 1985
## 6213                                                  Cuba    CU   CUB 1984
## 6214                                                  Cuba    CU   CUB 1983
## 6215                                                  Cuba    CU   CUB 1982
## 6216                                                  Cuba    CU   CUB 1981
## 6217                                                  Cuba    CU   CUB 1980
## 6218                                                  Cuba    CU   CUB 1979
## 6219                                                  Cuba    CU   CUB 1978
## 6220                                                  Cuba    CU   CUB 1977
## 6221                                                  Cuba    CU   CUB 1976
## 6222                                                  Cuba    CU   CUB 1975
## 6223                                                  Cuba    CU   CUB 1974
## 6224                                                  Cuba    CU   CUB 1973
## 6225                                                  Cuba    CU   CUB 1972
## 6226                                                  Cuba    CU   CUB 1971
## 6227                                                  Cuba    CU   CUB 1970
## 6228                                                  Cuba    CU   CUB 1969
## 6229                                                  Cuba    CU   CUB 1968
## 6230                                                  Cuba    CU   CUB 1967
## 6231                                                  Cuba    CU   CUB 1966
## 6232                                                  Cuba    CU   CUB 1965
## 6233                                                  Cuba    CU   CUB 1964
## 6234                                                  Cuba    CU   CUB 1963
## 6235                                                  Cuba    CU   CUB 1962
## 6236                                                  Cuba    CU   CUB 1961
## 6237                                                  Cuba    CU   CUB 1960
## 6238                                               Curacao    CW   CUW 2022
## 6239                                               Curacao    CW   CUW 2021
## 6240                                               Curacao    CW   CUW 2020
## 6241                                               Curacao    CW   CUW 2019
## 6242                                               Curacao    CW   CUW 2018
## 6243                                               Curacao    CW   CUW 2017
## 6244                                               Curacao    CW   CUW 2016
## 6245                                               Curacao    CW   CUW 2015
## 6246                                               Curacao    CW   CUW 2014
## 6247                                               Curacao    CW   CUW 2013
## 6248                                               Curacao    CW   CUW 2012
## 6249                                               Curacao    CW   CUW 2011
## 6250                                               Curacao    CW   CUW 2010
## 6251                                               Curacao    CW   CUW 2009
## 6252                                               Curacao    CW   CUW 2008
## 6253                                               Curacao    CW   CUW 2007
## 6254                                               Curacao    CW   CUW 2006
## 6255                                               Curacao    CW   CUW 2005
## 6256                                               Curacao    CW   CUW 2004
## 6257                                               Curacao    CW   CUW 2003
## 6258                                               Curacao    CW   CUW 2002
## 6259                                               Curacao    CW   CUW 2001
## 6260                                               Curacao    CW   CUW 2000
## 6261                                               Curacao    CW   CUW 1999
## 6262                                               Curacao    CW   CUW 1998
## 6263                                               Curacao    CW   CUW 1997
## 6264                                               Curacao    CW   CUW 1996
## 6265                                               Curacao    CW   CUW 1995
## 6266                                               Curacao    CW   CUW 1994
## 6267                                               Curacao    CW   CUW 1993
## 6268                                               Curacao    CW   CUW 1992
## 6269                                               Curacao    CW   CUW 1991
## 6270                                               Curacao    CW   CUW 1990
## 6271                                               Curacao    CW   CUW 1989
## 6272                                               Curacao    CW   CUW 1988
## 6273                                               Curacao    CW   CUW 1987
## 6274                                               Curacao    CW   CUW 1986
## 6275                                               Curacao    CW   CUW 1985
## 6276                                               Curacao    CW   CUW 1984
## 6277                                               Curacao    CW   CUW 1983
## 6278                                               Curacao    CW   CUW 1982
## 6279                                               Curacao    CW   CUW 1981
## 6280                                               Curacao    CW   CUW 1980
## 6281                                               Curacao    CW   CUW 1979
## 6282                                               Curacao    CW   CUW 1978
## 6283                                               Curacao    CW   CUW 1977
## 6284                                               Curacao    CW   CUW 1976
## 6285                                               Curacao    CW   CUW 1975
## 6286                                               Curacao    CW   CUW 1974
## 6287                                               Curacao    CW   CUW 1973
## 6288                                               Curacao    CW   CUW 1972
## 6289                                               Curacao    CW   CUW 1971
## 6290                                               Curacao    CW   CUW 1970
## 6291                                               Curacao    CW   CUW 1969
## 6292                                               Curacao    CW   CUW 1968
## 6293                                               Curacao    CW   CUW 1967
## 6294                                               Curacao    CW   CUW 1966
## 6295                                               Curacao    CW   CUW 1965
## 6296                                               Curacao    CW   CUW 1964
## 6297                                               Curacao    CW   CUW 1963
## 6298                                               Curacao    CW   CUW 1962
## 6299                                               Curacao    CW   CUW 1961
## 6300                                               Curacao    CW   CUW 1960
## 6301                                                Cyprus    CY   CYP 2022
## 6302                                                Cyprus    CY   CYP 2021
## 6303                                                Cyprus    CY   CYP 2020
## 6304                                                Cyprus    CY   CYP 2019
## 6305                                                Cyprus    CY   CYP 2018
## 6306                                                Cyprus    CY   CYP 2017
## 6307                                                Cyprus    CY   CYP 2016
## 6308                                                Cyprus    CY   CYP 2015
## 6309                                                Cyprus    CY   CYP 2014
## 6310                                                Cyprus    CY   CYP 2013
## 6311                                                Cyprus    CY   CYP 2012
## 6312                                                Cyprus    CY   CYP 2011
## 6313                                                Cyprus    CY   CYP 2010
## 6314                                                Cyprus    CY   CYP 2009
## 6315                                                Cyprus    CY   CYP 2008
## 6316                                                Cyprus    CY   CYP 2007
## 6317                                                Cyprus    CY   CYP 2006
## 6318                                                Cyprus    CY   CYP 2005
## 6319                                                Cyprus    CY   CYP 2004
## 6320                                                Cyprus    CY   CYP 2003
## 6321                                                Cyprus    CY   CYP 2002
## 6322                                                Cyprus    CY   CYP 2001
## 6323                                                Cyprus    CY   CYP 2000
## 6324                                                Cyprus    CY   CYP 1999
## 6325                                                Cyprus    CY   CYP 1998
## 6326                                                Cyprus    CY   CYP 1997
## 6327                                                Cyprus    CY   CYP 1996
## 6328                                                Cyprus    CY   CYP 1995
## 6329                                                Cyprus    CY   CYP 1994
## 6330                                                Cyprus    CY   CYP 1993
## 6331                                                Cyprus    CY   CYP 1992
## 6332                                                Cyprus    CY   CYP 1991
## 6333                                                Cyprus    CY   CYP 1990
## 6334                                                Cyprus    CY   CYP 1989
## 6335                                                Cyprus    CY   CYP 1988
## 6336                                                Cyprus    CY   CYP 1987
## 6337                                                Cyprus    CY   CYP 1986
## 6338                                                Cyprus    CY   CYP 1985
## 6339                                                Cyprus    CY   CYP 1984
## 6340                                                Cyprus    CY   CYP 1983
## 6341                                                Cyprus    CY   CYP 1982
## 6342                                                Cyprus    CY   CYP 1981
## 6343                                                Cyprus    CY   CYP 1980
## 6344                                                Cyprus    CY   CYP 1979
## 6345                                                Cyprus    CY   CYP 1978
## 6346                                                Cyprus    CY   CYP 1977
## 6347                                                Cyprus    CY   CYP 1976
## 6348                                                Cyprus    CY   CYP 1975
## 6349                                                Cyprus    CY   CYP 1974
## 6350                                                Cyprus    CY   CYP 1973
## 6351                                                Cyprus    CY   CYP 1972
## 6352                                                Cyprus    CY   CYP 1971
## 6353                                                Cyprus    CY   CYP 1970
## 6354                                                Cyprus    CY   CYP 1969
## 6355                                                Cyprus    CY   CYP 1968
## 6356                                                Cyprus    CY   CYP 1967
## 6357                                                Cyprus    CY   CYP 1966
## 6358                                                Cyprus    CY   CYP 1965
## 6359                                                Cyprus    CY   CYP 1964
## 6360                                                Cyprus    CY   CYP 1963
## 6361                                                Cyprus    CY   CYP 1962
## 6362                                                Cyprus    CY   CYP 1961
## 6363                                                Cyprus    CY   CYP 1960
## 6364                                               Czechia    CZ   CZE 2022
## 6365                                               Czechia    CZ   CZE 2021
## 6366                                               Czechia    CZ   CZE 2020
## 6367                                               Czechia    CZ   CZE 2019
## 6368                                               Czechia    CZ   CZE 2018
## 6369                                               Czechia    CZ   CZE 2017
## 6370                                               Czechia    CZ   CZE 2016
## 6371                                               Czechia    CZ   CZE 2015
## 6372                                               Czechia    CZ   CZE 2014
## 6373                                               Czechia    CZ   CZE 2013
## 6374                                               Czechia    CZ   CZE 2012
## 6375                                               Czechia    CZ   CZE 2011
## 6376                                               Czechia    CZ   CZE 2010
## 6377                                               Czechia    CZ   CZE 2009
## 6378                                               Czechia    CZ   CZE 2008
## 6379                                               Czechia    CZ   CZE 2007
## 6380                                               Czechia    CZ   CZE 2006
## 6381                                               Czechia    CZ   CZE 2005
## 6382                                               Czechia    CZ   CZE 2004
## 6383                                               Czechia    CZ   CZE 2003
## 6384                                               Czechia    CZ   CZE 2002
## 6385                                               Czechia    CZ   CZE 2001
## 6386                                               Czechia    CZ   CZE 2000
## 6387                                               Czechia    CZ   CZE 1999
## 6388                                               Czechia    CZ   CZE 1998
## 6389                                               Czechia    CZ   CZE 1997
## 6390                                               Czechia    CZ   CZE 1996
## 6391                                               Czechia    CZ   CZE 1995
## 6392                                               Czechia    CZ   CZE 1994
## 6393                                               Czechia    CZ   CZE 1993
## 6394                                               Czechia    CZ   CZE 1992
## 6395                                               Czechia    CZ   CZE 1991
## 6396                                               Czechia    CZ   CZE 1990
## 6397                                               Czechia    CZ   CZE 1989
## 6398                                               Czechia    CZ   CZE 1988
## 6399                                               Czechia    CZ   CZE 1987
## 6400                                               Czechia    CZ   CZE 1986
## 6401                                               Czechia    CZ   CZE 1985
## 6402                                               Czechia    CZ   CZE 1984
## 6403                                               Czechia    CZ   CZE 1983
## 6404                                               Czechia    CZ   CZE 1982
## 6405                                               Czechia    CZ   CZE 1981
## 6406                                               Czechia    CZ   CZE 1980
## 6407                                               Czechia    CZ   CZE 1979
## 6408                                               Czechia    CZ   CZE 1978
## 6409                                               Czechia    CZ   CZE 1977
## 6410                                               Czechia    CZ   CZE 1976
## 6411                                               Czechia    CZ   CZE 1975
## 6412                                               Czechia    CZ   CZE 1974
## 6413                                               Czechia    CZ   CZE 1973
## 6414                                               Czechia    CZ   CZE 1972
## 6415                                               Czechia    CZ   CZE 1971
## 6416                                               Czechia    CZ   CZE 1970
## 6417                                               Czechia    CZ   CZE 1969
## 6418                                               Czechia    CZ   CZE 1968
## 6419                                               Czechia    CZ   CZE 1967
## 6420                                               Czechia    CZ   CZE 1966
## 6421                                               Czechia    CZ   CZE 1965
## 6422                                               Czechia    CZ   CZE 1964
## 6423                                               Czechia    CZ   CZE 1963
## 6424                                               Czechia    CZ   CZE 1962
## 6425                                               Czechia    CZ   CZE 1961
## 6426                                               Czechia    CZ   CZE 1960
## 6427                                               Denmark    DK   DNK 2022
## 6428                                               Denmark    DK   DNK 2021
## 6429                                               Denmark    DK   DNK 2020
## 6430                                               Denmark    DK   DNK 2019
## 6431                                               Denmark    DK   DNK 2018
## 6432                                               Denmark    DK   DNK 2017
## 6433                                               Denmark    DK   DNK 2016
## 6434                                               Denmark    DK   DNK 2015
## 6435                                               Denmark    DK   DNK 2014
## 6436                                               Denmark    DK   DNK 2013
## 6437                                               Denmark    DK   DNK 2012
## 6438                                               Denmark    DK   DNK 2011
## 6439                                               Denmark    DK   DNK 2010
## 6440                                               Denmark    DK   DNK 2009
## 6441                                               Denmark    DK   DNK 2008
## 6442                                               Denmark    DK   DNK 2007
## 6443                                               Denmark    DK   DNK 2006
## 6444                                               Denmark    DK   DNK 2005
## 6445                                               Denmark    DK   DNK 2004
## 6446                                               Denmark    DK   DNK 2003
## 6447                                               Denmark    DK   DNK 2002
## 6448                                               Denmark    DK   DNK 2001
## 6449                                               Denmark    DK   DNK 2000
## 6450                                               Denmark    DK   DNK 1999
## 6451                                               Denmark    DK   DNK 1998
## 6452                                               Denmark    DK   DNK 1997
## 6453                                               Denmark    DK   DNK 1996
## 6454                                               Denmark    DK   DNK 1995
## 6455                                               Denmark    DK   DNK 1994
## 6456                                               Denmark    DK   DNK 1993
## 6457                                               Denmark    DK   DNK 1992
## 6458                                               Denmark    DK   DNK 1991
## 6459                                               Denmark    DK   DNK 1990
## 6460                                               Denmark    DK   DNK 1989
## 6461                                               Denmark    DK   DNK 1988
## 6462                                               Denmark    DK   DNK 1987
## 6463                                               Denmark    DK   DNK 1986
## 6464                                               Denmark    DK   DNK 1985
## 6465                                               Denmark    DK   DNK 1984
## 6466                                               Denmark    DK   DNK 1983
## 6467                                               Denmark    DK   DNK 1982
## 6468                                               Denmark    DK   DNK 1981
## 6469                                               Denmark    DK   DNK 1980
## 6470                                               Denmark    DK   DNK 1979
## 6471                                               Denmark    DK   DNK 1978
## 6472                                               Denmark    DK   DNK 1977
## 6473                                               Denmark    DK   DNK 1976
## 6474                                               Denmark    DK   DNK 1975
## 6475                                               Denmark    DK   DNK 1974
## 6476                                               Denmark    DK   DNK 1973
## 6477                                               Denmark    DK   DNK 1972
## 6478                                               Denmark    DK   DNK 1971
## 6479                                               Denmark    DK   DNK 1970
## 6480                                               Denmark    DK   DNK 1969
## 6481                                               Denmark    DK   DNK 1968
## 6482                                               Denmark    DK   DNK 1967
## 6483                                               Denmark    DK   DNK 1966
## 6484                                               Denmark    DK   DNK 1965
## 6485                                               Denmark    DK   DNK 1964
## 6486                                               Denmark    DK   DNK 1963
## 6487                                               Denmark    DK   DNK 1962
## 6488                                               Denmark    DK   DNK 1961
## 6489                                               Denmark    DK   DNK 1960
## 6490                                              Djibouti    DJ   DJI 2022
## 6491                                              Djibouti    DJ   DJI 2021
## 6492                                              Djibouti    DJ   DJI 2020
## 6493                                              Djibouti    DJ   DJI 2019
## 6494                                              Djibouti    DJ   DJI 2018
## 6495                                              Djibouti    DJ   DJI 2017
## 6496                                              Djibouti    DJ   DJI 2016
## 6497                                              Djibouti    DJ   DJI 2015
## 6498                                              Djibouti    DJ   DJI 2014
## 6499                                              Djibouti    DJ   DJI 2013
## 6500                                              Djibouti    DJ   DJI 2012
## 6501                                              Djibouti    DJ   DJI 2011
## 6502                                              Djibouti    DJ   DJI 2010
## 6503                                              Djibouti    DJ   DJI 2009
## 6504                                              Djibouti    DJ   DJI 2008
## 6505                                              Djibouti    DJ   DJI 2007
## 6506                                              Djibouti    DJ   DJI 2006
## 6507                                              Djibouti    DJ   DJI 2005
## 6508                                              Djibouti    DJ   DJI 2004
## 6509                                              Djibouti    DJ   DJI 2003
## 6510                                              Djibouti    DJ   DJI 2002
## 6511                                              Djibouti    DJ   DJI 2001
## 6512                                              Djibouti    DJ   DJI 2000
## 6513                                              Djibouti    DJ   DJI 1999
## 6514                                              Djibouti    DJ   DJI 1998
## 6515                                              Djibouti    DJ   DJI 1997
## 6516                                              Djibouti    DJ   DJI 1996
## 6517                                              Djibouti    DJ   DJI 1995
## 6518                                              Djibouti    DJ   DJI 1994
## 6519                                              Djibouti    DJ   DJI 1993
## 6520                                              Djibouti    DJ   DJI 1992
## 6521                                              Djibouti    DJ   DJI 1991
## 6522                                              Djibouti    DJ   DJI 1990
## 6523                                              Djibouti    DJ   DJI 1989
## 6524                                              Djibouti    DJ   DJI 1988
## 6525                                              Djibouti    DJ   DJI 1987
## 6526                                              Djibouti    DJ   DJI 1986
## 6527                                              Djibouti    DJ   DJI 1985
## 6528                                              Djibouti    DJ   DJI 1984
## 6529                                              Djibouti    DJ   DJI 1983
## 6530                                              Djibouti    DJ   DJI 1982
## 6531                                              Djibouti    DJ   DJI 1981
## 6532                                              Djibouti    DJ   DJI 1980
## 6533                                              Djibouti    DJ   DJI 1979
## 6534                                              Djibouti    DJ   DJI 1978
## 6535                                              Djibouti    DJ   DJI 1977
## 6536                                              Djibouti    DJ   DJI 1976
## 6537                                              Djibouti    DJ   DJI 1975
## 6538                                              Djibouti    DJ   DJI 1974
## 6539                                              Djibouti    DJ   DJI 1973
## 6540                                              Djibouti    DJ   DJI 1972
## 6541                                              Djibouti    DJ   DJI 1971
## 6542                                              Djibouti    DJ   DJI 1970
## 6543                                              Djibouti    DJ   DJI 1969
## 6544                                              Djibouti    DJ   DJI 1968
## 6545                                              Djibouti    DJ   DJI 1967
## 6546                                              Djibouti    DJ   DJI 1966
## 6547                                              Djibouti    DJ   DJI 1965
## 6548                                              Djibouti    DJ   DJI 1964
## 6549                                              Djibouti    DJ   DJI 1963
## 6550                                              Djibouti    DJ   DJI 1962
## 6551                                              Djibouti    DJ   DJI 1961
## 6552                                              Djibouti    DJ   DJI 1960
## 6553                                              Dominica    DM   DMA 2022
## 6554                                              Dominica    DM   DMA 2021
## 6555                                              Dominica    DM   DMA 2020
## 6556                                              Dominica    DM   DMA 2019
## 6557                                              Dominica    DM   DMA 2018
## 6558                                              Dominica    DM   DMA 2017
## 6559                                              Dominica    DM   DMA 2016
## 6560                                              Dominica    DM   DMA 2015
## 6561                                              Dominica    DM   DMA 2014
## 6562                                              Dominica    DM   DMA 2013
## 6563                                              Dominica    DM   DMA 2012
## 6564                                              Dominica    DM   DMA 2011
## 6565                                              Dominica    DM   DMA 2010
## 6566                                              Dominica    DM   DMA 2009
## 6567                                              Dominica    DM   DMA 2008
## 6568                                              Dominica    DM   DMA 2007
## 6569                                              Dominica    DM   DMA 2006
## 6570                                              Dominica    DM   DMA 2005
## 6571                                              Dominica    DM   DMA 2004
## 6572                                              Dominica    DM   DMA 2003
## 6573                                              Dominica    DM   DMA 2002
## 6574                                              Dominica    DM   DMA 2001
## 6575                                              Dominica    DM   DMA 2000
## 6576                                              Dominica    DM   DMA 1999
## 6577                                              Dominica    DM   DMA 1998
## 6578                                              Dominica    DM   DMA 1997
## 6579                                              Dominica    DM   DMA 1996
## 6580                                              Dominica    DM   DMA 1995
## 6581                                              Dominica    DM   DMA 1994
## 6582                                              Dominica    DM   DMA 1993
## 6583                                              Dominica    DM   DMA 1992
## 6584                                              Dominica    DM   DMA 1991
## 6585                                              Dominica    DM   DMA 1990
## 6586                                              Dominica    DM   DMA 1989
## 6587                                              Dominica    DM   DMA 1988
## 6588                                              Dominica    DM   DMA 1987
## 6589                                              Dominica    DM   DMA 1986
## 6590                                              Dominica    DM   DMA 1985
## 6591                                              Dominica    DM   DMA 1984
## 6592                                              Dominica    DM   DMA 1983
## 6593                                              Dominica    DM   DMA 1982
## 6594                                              Dominica    DM   DMA 1981
## 6595                                              Dominica    DM   DMA 1980
## 6596                                              Dominica    DM   DMA 1979
## 6597                                              Dominica    DM   DMA 1978
## 6598                                              Dominica    DM   DMA 1977
## 6599                                              Dominica    DM   DMA 1976
## 6600                                              Dominica    DM   DMA 1975
## 6601                                              Dominica    DM   DMA 1974
## 6602                                              Dominica    DM   DMA 1973
## 6603                                              Dominica    DM   DMA 1972
## 6604                                              Dominica    DM   DMA 1971
## 6605                                              Dominica    DM   DMA 1970
## 6606                                              Dominica    DM   DMA 1969
## 6607                                              Dominica    DM   DMA 1968
## 6608                                              Dominica    DM   DMA 1967
## 6609                                              Dominica    DM   DMA 1966
## 6610                                              Dominica    DM   DMA 1965
## 6611                                              Dominica    DM   DMA 1964
## 6612                                              Dominica    DM   DMA 1963
## 6613                                              Dominica    DM   DMA 1962
## 6614                                              Dominica    DM   DMA 1961
## 6615                                              Dominica    DM   DMA 1960
## 6616                                    Dominican Republic    DO   DOM 2022
## 6617                                    Dominican Republic    DO   DOM 2021
## 6618                                    Dominican Republic    DO   DOM 2020
## 6619                                    Dominican Republic    DO   DOM 2019
## 6620                                    Dominican Republic    DO   DOM 2018
## 6621                                    Dominican Republic    DO   DOM 2017
## 6622                                    Dominican Republic    DO   DOM 2016
## 6623                                    Dominican Republic    DO   DOM 2015
## 6624                                    Dominican Republic    DO   DOM 2014
## 6625                                    Dominican Republic    DO   DOM 2013
## 6626                                    Dominican Republic    DO   DOM 2012
## 6627                                    Dominican Republic    DO   DOM 2011
## 6628                                    Dominican Republic    DO   DOM 2010
## 6629                                    Dominican Republic    DO   DOM 2009
## 6630                                    Dominican Republic    DO   DOM 2008
## 6631                                    Dominican Republic    DO   DOM 2007
## 6632                                    Dominican Republic    DO   DOM 2006
## 6633                                    Dominican Republic    DO   DOM 2005
## 6634                                    Dominican Republic    DO   DOM 2004
## 6635                                    Dominican Republic    DO   DOM 2003
## 6636                                    Dominican Republic    DO   DOM 2002
## 6637                                    Dominican Republic    DO   DOM 2001
## 6638                                    Dominican Republic    DO   DOM 2000
## 6639                                    Dominican Republic    DO   DOM 1999
## 6640                                    Dominican Republic    DO   DOM 1998
## 6641                                    Dominican Republic    DO   DOM 1997
## 6642                                    Dominican Republic    DO   DOM 1996
## 6643                                    Dominican Republic    DO   DOM 1995
## 6644                                    Dominican Republic    DO   DOM 1994
## 6645                                    Dominican Republic    DO   DOM 1993
## 6646                                    Dominican Republic    DO   DOM 1992
## 6647                                    Dominican Republic    DO   DOM 1991
## 6648                                    Dominican Republic    DO   DOM 1990
## 6649                                    Dominican Republic    DO   DOM 1989
## 6650                                    Dominican Republic    DO   DOM 1988
## 6651                                    Dominican Republic    DO   DOM 1987
## 6652                                    Dominican Republic    DO   DOM 1986
## 6653                                    Dominican Republic    DO   DOM 1985
## 6654                                    Dominican Republic    DO   DOM 1984
## 6655                                    Dominican Republic    DO   DOM 1983
## 6656                                    Dominican Republic    DO   DOM 1982
## 6657                                    Dominican Republic    DO   DOM 1981
## 6658                                    Dominican Republic    DO   DOM 1980
## 6659                                    Dominican Republic    DO   DOM 1979
## 6660                                    Dominican Republic    DO   DOM 1978
## 6661                                    Dominican Republic    DO   DOM 1977
## 6662                                    Dominican Republic    DO   DOM 1976
## 6663                                    Dominican Republic    DO   DOM 1975
## 6664                                    Dominican Republic    DO   DOM 1974
## 6665                                    Dominican Republic    DO   DOM 1973
## 6666                                    Dominican Republic    DO   DOM 1972
## 6667                                    Dominican Republic    DO   DOM 1971
## 6668                                    Dominican Republic    DO   DOM 1970
## 6669                                    Dominican Republic    DO   DOM 1969
## 6670                                    Dominican Republic    DO   DOM 1968
## 6671                                    Dominican Republic    DO   DOM 1967
## 6672                                    Dominican Republic    DO   DOM 1966
## 6673                                    Dominican Republic    DO   DOM 1965
## 6674                                    Dominican Republic    DO   DOM 1964
## 6675                                    Dominican Republic    DO   DOM 1963
## 6676                                    Dominican Republic    DO   DOM 1962
## 6677                                    Dominican Republic    DO   DOM 1961
## 6678                                    Dominican Republic    DO   DOM 1960
## 6679                                               Ecuador    EC   ECU 2022
## 6680                                               Ecuador    EC   ECU 2021
## 6681                                               Ecuador    EC   ECU 2020
## 6682                                               Ecuador    EC   ECU 2019
## 6683                                               Ecuador    EC   ECU 2018
## 6684                                               Ecuador    EC   ECU 2017
## 6685                                               Ecuador    EC   ECU 2016
## 6686                                               Ecuador    EC   ECU 2015
## 6687                                               Ecuador    EC   ECU 2014
## 6688                                               Ecuador    EC   ECU 2013
## 6689                                               Ecuador    EC   ECU 2012
## 6690                                               Ecuador    EC   ECU 2011
## 6691                                               Ecuador    EC   ECU 2010
## 6692                                               Ecuador    EC   ECU 2009
## 6693                                               Ecuador    EC   ECU 2008
## 6694                                               Ecuador    EC   ECU 2007
## 6695                                               Ecuador    EC   ECU 2006
## 6696                                               Ecuador    EC   ECU 2005
## 6697                                               Ecuador    EC   ECU 2004
## 6698                                               Ecuador    EC   ECU 2003
## 6699                                               Ecuador    EC   ECU 2002
## 6700                                               Ecuador    EC   ECU 2001
## 6701                                               Ecuador    EC   ECU 2000
## 6702                                               Ecuador    EC   ECU 1999
## 6703                                               Ecuador    EC   ECU 1998
## 6704                                               Ecuador    EC   ECU 1997
## 6705                                               Ecuador    EC   ECU 1996
## 6706                                               Ecuador    EC   ECU 1995
## 6707                                               Ecuador    EC   ECU 1994
## 6708                                               Ecuador    EC   ECU 1993
## 6709                                               Ecuador    EC   ECU 1992
## 6710                                               Ecuador    EC   ECU 1991
## 6711                                               Ecuador    EC   ECU 1990
## 6712                                               Ecuador    EC   ECU 1989
## 6713                                               Ecuador    EC   ECU 1988
## 6714                                               Ecuador    EC   ECU 1987
## 6715                                               Ecuador    EC   ECU 1986
## 6716                                               Ecuador    EC   ECU 1985
## 6717                                               Ecuador    EC   ECU 1984
## 6718                                               Ecuador    EC   ECU 1983
## 6719                                               Ecuador    EC   ECU 1982
## 6720                                               Ecuador    EC   ECU 1981
## 6721                                               Ecuador    EC   ECU 1980
## 6722                                               Ecuador    EC   ECU 1979
## 6723                                               Ecuador    EC   ECU 1978
## 6724                                               Ecuador    EC   ECU 1977
## 6725                                               Ecuador    EC   ECU 1976
## 6726                                               Ecuador    EC   ECU 1975
## 6727                                               Ecuador    EC   ECU 1974
## 6728                                               Ecuador    EC   ECU 1973
## 6729                                               Ecuador    EC   ECU 1972
## 6730                                               Ecuador    EC   ECU 1971
## 6731                                               Ecuador    EC   ECU 1970
## 6732                                               Ecuador    EC   ECU 1969
## 6733                                               Ecuador    EC   ECU 1968
## 6734                                               Ecuador    EC   ECU 1967
## 6735                                               Ecuador    EC   ECU 1966
## 6736                                               Ecuador    EC   ECU 1965
## 6737                                               Ecuador    EC   ECU 1964
## 6738                                               Ecuador    EC   ECU 1963
## 6739                                               Ecuador    EC   ECU 1962
## 6740                                               Ecuador    EC   ECU 1961
## 6741                                               Ecuador    EC   ECU 1960
## 6742                                      Egypt, Arab Rep.    EG   EGY 2022
## 6743                                      Egypt, Arab Rep.    EG   EGY 2021
## 6744                                      Egypt, Arab Rep.    EG   EGY 2020
## 6745                                      Egypt, Arab Rep.    EG   EGY 2019
## 6746                                      Egypt, Arab Rep.    EG   EGY 2018
## 6747                                      Egypt, Arab Rep.    EG   EGY 2017
## 6748                                      Egypt, Arab Rep.    EG   EGY 2016
## 6749                                      Egypt, Arab Rep.    EG   EGY 2015
## 6750                                      Egypt, Arab Rep.    EG   EGY 2014
## 6751                                      Egypt, Arab Rep.    EG   EGY 2013
## 6752                                      Egypt, Arab Rep.    EG   EGY 2012
## 6753                                      Egypt, Arab Rep.    EG   EGY 2011
## 6754                                      Egypt, Arab Rep.    EG   EGY 2010
## 6755                                      Egypt, Arab Rep.    EG   EGY 2009
## 6756                                      Egypt, Arab Rep.    EG   EGY 2008
## 6757                                      Egypt, Arab Rep.    EG   EGY 2007
## 6758                                      Egypt, Arab Rep.    EG   EGY 2006
## 6759                                      Egypt, Arab Rep.    EG   EGY 2005
## 6760                                      Egypt, Arab Rep.    EG   EGY 2004
## 6761                                      Egypt, Arab Rep.    EG   EGY 2003
## 6762                                      Egypt, Arab Rep.    EG   EGY 2002
## 6763                                      Egypt, Arab Rep.    EG   EGY 2001
## 6764                                      Egypt, Arab Rep.    EG   EGY 2000
## 6765                                      Egypt, Arab Rep.    EG   EGY 1999
## 6766                                      Egypt, Arab Rep.    EG   EGY 1998
## 6767                                      Egypt, Arab Rep.    EG   EGY 1997
## 6768                                      Egypt, Arab Rep.    EG   EGY 1996
## 6769                                      Egypt, Arab Rep.    EG   EGY 1995
## 6770                                      Egypt, Arab Rep.    EG   EGY 1994
## 6771                                      Egypt, Arab Rep.    EG   EGY 1993
## 6772                                      Egypt, Arab Rep.    EG   EGY 1992
## 6773                                      Egypt, Arab Rep.    EG   EGY 1991
## 6774                                      Egypt, Arab Rep.    EG   EGY 1990
## 6775                                      Egypt, Arab Rep.    EG   EGY 1989
## 6776                                      Egypt, Arab Rep.    EG   EGY 1988
## 6777                                      Egypt, Arab Rep.    EG   EGY 1987
## 6778                                      Egypt, Arab Rep.    EG   EGY 1986
## 6779                                      Egypt, Arab Rep.    EG   EGY 1985
## 6780                                      Egypt, Arab Rep.    EG   EGY 1984
## 6781                                      Egypt, Arab Rep.    EG   EGY 1983
## 6782                                      Egypt, Arab Rep.    EG   EGY 1982
## 6783                                      Egypt, Arab Rep.    EG   EGY 1981
## 6784                                      Egypt, Arab Rep.    EG   EGY 1980
## 6785                                      Egypt, Arab Rep.    EG   EGY 1979
## 6786                                      Egypt, Arab Rep.    EG   EGY 1978
## 6787                                      Egypt, Arab Rep.    EG   EGY 1977
## 6788                                      Egypt, Arab Rep.    EG   EGY 1976
## 6789                                      Egypt, Arab Rep.    EG   EGY 1975
## 6790                                      Egypt, Arab Rep.    EG   EGY 1974
## 6791                                      Egypt, Arab Rep.    EG   EGY 1973
## 6792                                      Egypt, Arab Rep.    EG   EGY 1972
## 6793                                      Egypt, Arab Rep.    EG   EGY 1971
## 6794                                      Egypt, Arab Rep.    EG   EGY 1970
## 6795                                      Egypt, Arab Rep.    EG   EGY 1969
## 6796                                      Egypt, Arab Rep.    EG   EGY 1968
## 6797                                      Egypt, Arab Rep.    EG   EGY 1967
## 6798                                      Egypt, Arab Rep.    EG   EGY 1966
## 6799                                      Egypt, Arab Rep.    EG   EGY 1965
## 6800                                      Egypt, Arab Rep.    EG   EGY 1964
## 6801                                      Egypt, Arab Rep.    EG   EGY 1963
## 6802                                      Egypt, Arab Rep.    EG   EGY 1962
## 6803                                      Egypt, Arab Rep.    EG   EGY 1961
## 6804                                      Egypt, Arab Rep.    EG   EGY 1960
## 6805                                           El Salvador    SV   SLV 2022
## 6806                                           El Salvador    SV   SLV 2021
## 6807                                           El Salvador    SV   SLV 2020
## 6808                                           El Salvador    SV   SLV 2019
## 6809                                           El Salvador    SV   SLV 2018
## 6810                                           El Salvador    SV   SLV 2017
## 6811                                           El Salvador    SV   SLV 2016
## 6812                                           El Salvador    SV   SLV 2015
## 6813                                           El Salvador    SV   SLV 2014
## 6814                                           El Salvador    SV   SLV 2013
## 6815                                           El Salvador    SV   SLV 2012
## 6816                                           El Salvador    SV   SLV 2011
## 6817                                           El Salvador    SV   SLV 2010
## 6818                                           El Salvador    SV   SLV 2009
## 6819                                           El Salvador    SV   SLV 2008
## 6820                                           El Salvador    SV   SLV 2007
## 6821                                           El Salvador    SV   SLV 2006
## 6822                                           El Salvador    SV   SLV 2005
## 6823                                           El Salvador    SV   SLV 2004
## 6824                                           El Salvador    SV   SLV 2003
## 6825                                           El Salvador    SV   SLV 2002
## 6826                                           El Salvador    SV   SLV 2001
## 6827                                           El Salvador    SV   SLV 2000
## 6828                                           El Salvador    SV   SLV 1999
## 6829                                           El Salvador    SV   SLV 1998
## 6830                                           El Salvador    SV   SLV 1997
## 6831                                           El Salvador    SV   SLV 1996
## 6832                                           El Salvador    SV   SLV 1995
## 6833                                           El Salvador    SV   SLV 1994
## 6834                                           El Salvador    SV   SLV 1993
## 6835                                           El Salvador    SV   SLV 1992
## 6836                                           El Salvador    SV   SLV 1991
## 6837                                           El Salvador    SV   SLV 1990
## 6838                                           El Salvador    SV   SLV 1989
## 6839                                           El Salvador    SV   SLV 1988
## 6840                                           El Salvador    SV   SLV 1987
## 6841                                           El Salvador    SV   SLV 1986
## 6842                                           El Salvador    SV   SLV 1985
## 6843                                           El Salvador    SV   SLV 1984
## 6844                                           El Salvador    SV   SLV 1983
## 6845                                           El Salvador    SV   SLV 1982
## 6846                                           El Salvador    SV   SLV 1981
## 6847                                           El Salvador    SV   SLV 1980
## 6848                                           El Salvador    SV   SLV 1979
## 6849                                           El Salvador    SV   SLV 1978
## 6850                                           El Salvador    SV   SLV 1977
## 6851                                           El Salvador    SV   SLV 1976
## 6852                                           El Salvador    SV   SLV 1975
## 6853                                           El Salvador    SV   SLV 1974
## 6854                                           El Salvador    SV   SLV 1973
## 6855                                           El Salvador    SV   SLV 1972
## 6856                                           El Salvador    SV   SLV 1971
## 6857                                           El Salvador    SV   SLV 1970
## 6858                                           El Salvador    SV   SLV 1969
## 6859                                           El Salvador    SV   SLV 1968
## 6860                                           El Salvador    SV   SLV 1967
## 6861                                           El Salvador    SV   SLV 1966
## 6862                                           El Salvador    SV   SLV 1965
## 6863                                           El Salvador    SV   SLV 1964
## 6864                                           El Salvador    SV   SLV 1963
## 6865                                           El Salvador    SV   SLV 1962
## 6866                                           El Salvador    SV   SLV 1961
## 6867                                           El Salvador    SV   SLV 1960
## 6868                                     Equatorial Guinea    GQ   GNQ 2022
## 6869                                     Equatorial Guinea    GQ   GNQ 2021
## 6870                                     Equatorial Guinea    GQ   GNQ 2020
## 6871                                     Equatorial Guinea    GQ   GNQ 2019
## 6872                                     Equatorial Guinea    GQ   GNQ 2018
## 6873                                     Equatorial Guinea    GQ   GNQ 2017
## 6874                                     Equatorial Guinea    GQ   GNQ 2016
## 6875                                     Equatorial Guinea    GQ   GNQ 2015
## 6876                                     Equatorial Guinea    GQ   GNQ 2014
## 6877                                     Equatorial Guinea    GQ   GNQ 2013
## 6878                                     Equatorial Guinea    GQ   GNQ 2012
## 6879                                     Equatorial Guinea    GQ   GNQ 2011
## 6880                                     Equatorial Guinea    GQ   GNQ 2010
## 6881                                     Equatorial Guinea    GQ   GNQ 2009
## 6882                                     Equatorial Guinea    GQ   GNQ 2008
## 6883                                     Equatorial Guinea    GQ   GNQ 2007
## 6884                                     Equatorial Guinea    GQ   GNQ 2006
## 6885                                     Equatorial Guinea    GQ   GNQ 2005
## 6886                                     Equatorial Guinea    GQ   GNQ 2004
## 6887                                     Equatorial Guinea    GQ   GNQ 2003
## 6888                                     Equatorial Guinea    GQ   GNQ 2002
## 6889                                     Equatorial Guinea    GQ   GNQ 2001
## 6890                                     Equatorial Guinea    GQ   GNQ 2000
## 6891                                     Equatorial Guinea    GQ   GNQ 1999
## 6892                                     Equatorial Guinea    GQ   GNQ 1998
## 6893                                     Equatorial Guinea    GQ   GNQ 1997
## 6894                                     Equatorial Guinea    GQ   GNQ 1996
## 6895                                     Equatorial Guinea    GQ   GNQ 1995
## 6896                                     Equatorial Guinea    GQ   GNQ 1994
## 6897                                     Equatorial Guinea    GQ   GNQ 1993
## 6898                                     Equatorial Guinea    GQ   GNQ 1992
## 6899                                     Equatorial Guinea    GQ   GNQ 1991
## 6900                                     Equatorial Guinea    GQ   GNQ 1990
## 6901                                     Equatorial Guinea    GQ   GNQ 1989
## 6902                                     Equatorial Guinea    GQ   GNQ 1988
## 6903                                     Equatorial Guinea    GQ   GNQ 1987
## 6904                                     Equatorial Guinea    GQ   GNQ 1986
## 6905                                     Equatorial Guinea    GQ   GNQ 1985
## 6906                                     Equatorial Guinea    GQ   GNQ 1984
## 6907                                     Equatorial Guinea    GQ   GNQ 1983
## 6908                                     Equatorial Guinea    GQ   GNQ 1982
## 6909                                     Equatorial Guinea    GQ   GNQ 1981
## 6910                                     Equatorial Guinea    GQ   GNQ 1980
## 6911                                     Equatorial Guinea    GQ   GNQ 1979
## 6912                                     Equatorial Guinea    GQ   GNQ 1978
## 6913                                     Equatorial Guinea    GQ   GNQ 1977
## 6914                                     Equatorial Guinea    GQ   GNQ 1976
## 6915                                     Equatorial Guinea    GQ   GNQ 1975
## 6916                                     Equatorial Guinea    GQ   GNQ 1974
## 6917                                     Equatorial Guinea    GQ   GNQ 1973
## 6918                                     Equatorial Guinea    GQ   GNQ 1972
## 6919                                     Equatorial Guinea    GQ   GNQ 1971
## 6920                                     Equatorial Guinea    GQ   GNQ 1970
## 6921                                     Equatorial Guinea    GQ   GNQ 1969
## 6922                                     Equatorial Guinea    GQ   GNQ 1968
## 6923                                     Equatorial Guinea    GQ   GNQ 1967
## 6924                                     Equatorial Guinea    GQ   GNQ 1966
## 6925                                     Equatorial Guinea    GQ   GNQ 1965
## 6926                                     Equatorial Guinea    GQ   GNQ 1964
## 6927                                     Equatorial Guinea    GQ   GNQ 1963
## 6928                                     Equatorial Guinea    GQ   GNQ 1962
## 6929                                     Equatorial Guinea    GQ   GNQ 1961
## 6930                                     Equatorial Guinea    GQ   GNQ 1960
## 6931                                               Eritrea    ER   ERI 2022
## 6932                                               Eritrea    ER   ERI 2021
## 6933                                               Eritrea    ER   ERI 2020
## 6934                                               Eritrea    ER   ERI 2019
## 6935                                               Eritrea    ER   ERI 2018
## 6936                                               Eritrea    ER   ERI 2017
## 6937                                               Eritrea    ER   ERI 2016
## 6938                                               Eritrea    ER   ERI 2015
## 6939                                               Eritrea    ER   ERI 2014
## 6940                                               Eritrea    ER   ERI 2013
## 6941                                               Eritrea    ER   ERI 2012
## 6942                                               Eritrea    ER   ERI 2011
## 6943                                               Eritrea    ER   ERI 2010
## 6944                                               Eritrea    ER   ERI 2009
## 6945                                               Eritrea    ER   ERI 2008
## 6946                                               Eritrea    ER   ERI 2007
## 6947                                               Eritrea    ER   ERI 2006
## 6948                                               Eritrea    ER   ERI 2005
## 6949                                               Eritrea    ER   ERI 2004
## 6950                                               Eritrea    ER   ERI 2003
## 6951                                               Eritrea    ER   ERI 2002
## 6952                                               Eritrea    ER   ERI 2001
## 6953                                               Eritrea    ER   ERI 2000
## 6954                                               Eritrea    ER   ERI 1999
## 6955                                               Eritrea    ER   ERI 1998
## 6956                                               Eritrea    ER   ERI 1997
## 6957                                               Eritrea    ER   ERI 1996
## 6958                                               Eritrea    ER   ERI 1995
## 6959                                               Eritrea    ER   ERI 1994
## 6960                                               Eritrea    ER   ERI 1993
## 6961                                               Eritrea    ER   ERI 1992
## 6962                                               Eritrea    ER   ERI 1991
## 6963                                               Eritrea    ER   ERI 1990
## 6964                                               Eritrea    ER   ERI 1989
## 6965                                               Eritrea    ER   ERI 1988
## 6966                                               Eritrea    ER   ERI 1987
## 6967                                               Eritrea    ER   ERI 1986
## 6968                                               Eritrea    ER   ERI 1985
## 6969                                               Eritrea    ER   ERI 1984
## 6970                                               Eritrea    ER   ERI 1983
## 6971                                               Eritrea    ER   ERI 1982
## 6972                                               Eritrea    ER   ERI 1981
## 6973                                               Eritrea    ER   ERI 1980
## 6974                                               Eritrea    ER   ERI 1979
## 6975                                               Eritrea    ER   ERI 1978
## 6976                                               Eritrea    ER   ERI 1977
## 6977                                               Eritrea    ER   ERI 1976
## 6978                                               Eritrea    ER   ERI 1975
## 6979                                               Eritrea    ER   ERI 1974
## 6980                                               Eritrea    ER   ERI 1973
## 6981                                               Eritrea    ER   ERI 1972
## 6982                                               Eritrea    ER   ERI 1971
## 6983                                               Eritrea    ER   ERI 1970
## 6984                                               Eritrea    ER   ERI 1969
## 6985                                               Eritrea    ER   ERI 1968
## 6986                                               Eritrea    ER   ERI 1967
## 6987                                               Eritrea    ER   ERI 1966
## 6988                                               Eritrea    ER   ERI 1965
## 6989                                               Eritrea    ER   ERI 1964
## 6990                                               Eritrea    ER   ERI 1963
## 6991                                               Eritrea    ER   ERI 1962
## 6992                                               Eritrea    ER   ERI 1961
## 6993                                               Eritrea    ER   ERI 1960
## 6994                                               Estonia    EE   EST 2022
## 6995                                               Estonia    EE   EST 2021
## 6996                                               Estonia    EE   EST 2020
## 6997                                               Estonia    EE   EST 2019
## 6998                                               Estonia    EE   EST 2018
## 6999                                               Estonia    EE   EST 2017
## 7000                                               Estonia    EE   EST 2016
## 7001                                               Estonia    EE   EST 2015
## 7002                                               Estonia    EE   EST 2014
## 7003                                               Estonia    EE   EST 2013
## 7004                                               Estonia    EE   EST 2012
## 7005                                               Estonia    EE   EST 2011
## 7006                                               Estonia    EE   EST 2010
## 7007                                               Estonia    EE   EST 2009
## 7008                                               Estonia    EE   EST 2008
## 7009                                               Estonia    EE   EST 2007
## 7010                                               Estonia    EE   EST 2006
## 7011                                               Estonia    EE   EST 2005
## 7012                                               Estonia    EE   EST 2004
## 7013                                               Estonia    EE   EST 2003
## 7014                                               Estonia    EE   EST 2002
## 7015                                               Estonia    EE   EST 2001
## 7016                                               Estonia    EE   EST 2000
## 7017                                               Estonia    EE   EST 1999
## 7018                                               Estonia    EE   EST 1998
## 7019                                               Estonia    EE   EST 1997
## 7020                                               Estonia    EE   EST 1996
## 7021                                               Estonia    EE   EST 1995
## 7022                                               Estonia    EE   EST 1994
## 7023                                               Estonia    EE   EST 1993
## 7024                                               Estonia    EE   EST 1992
## 7025                                               Estonia    EE   EST 1991
## 7026                                               Estonia    EE   EST 1990
## 7027                                               Estonia    EE   EST 1989
## 7028                                               Estonia    EE   EST 1988
## 7029                                               Estonia    EE   EST 1987
## 7030                                               Estonia    EE   EST 1986
## 7031                                               Estonia    EE   EST 1985
## 7032                                               Estonia    EE   EST 1984
## 7033                                               Estonia    EE   EST 1983
## 7034                                               Estonia    EE   EST 1982
## 7035                                               Estonia    EE   EST 1981
## 7036                                               Estonia    EE   EST 1980
## 7037                                               Estonia    EE   EST 1979
## 7038                                               Estonia    EE   EST 1978
## 7039                                               Estonia    EE   EST 1977
## 7040                                               Estonia    EE   EST 1976
## 7041                                               Estonia    EE   EST 1975
## 7042                                               Estonia    EE   EST 1974
## 7043                                               Estonia    EE   EST 1973
## 7044                                               Estonia    EE   EST 1972
## 7045                                               Estonia    EE   EST 1971
## 7046                                               Estonia    EE   EST 1970
## 7047                                               Estonia    EE   EST 1969
## 7048                                               Estonia    EE   EST 1968
## 7049                                               Estonia    EE   EST 1967
## 7050                                               Estonia    EE   EST 1966
## 7051                                               Estonia    EE   EST 1965
## 7052                                               Estonia    EE   EST 1964
## 7053                                               Estonia    EE   EST 1963
## 7054                                               Estonia    EE   EST 1962
## 7055                                               Estonia    EE   EST 1961
## 7056                                               Estonia    EE   EST 1960
## 7057                                              Eswatini    SZ   SWZ 2022
## 7058                                              Eswatini    SZ   SWZ 2021
## 7059                                              Eswatini    SZ   SWZ 2020
## 7060                                              Eswatini    SZ   SWZ 2019
## 7061                                              Eswatini    SZ   SWZ 2018
## 7062                                              Eswatini    SZ   SWZ 2017
## 7063                                              Eswatini    SZ   SWZ 2016
## 7064                                              Eswatini    SZ   SWZ 2015
## 7065                                              Eswatini    SZ   SWZ 2014
## 7066                                              Eswatini    SZ   SWZ 2013
## 7067                                              Eswatini    SZ   SWZ 2012
## 7068                                              Eswatini    SZ   SWZ 2011
## 7069                                              Eswatini    SZ   SWZ 2010
## 7070                                              Eswatini    SZ   SWZ 2009
## 7071                                              Eswatini    SZ   SWZ 2008
## 7072                                              Eswatini    SZ   SWZ 2007
## 7073                                              Eswatini    SZ   SWZ 2006
## 7074                                              Eswatini    SZ   SWZ 2005
## 7075                                              Eswatini    SZ   SWZ 2004
## 7076                                              Eswatini    SZ   SWZ 2003
## 7077                                              Eswatini    SZ   SWZ 2002
## 7078                                              Eswatini    SZ   SWZ 2001
## 7079                                              Eswatini    SZ   SWZ 2000
## 7080                                              Eswatini    SZ   SWZ 1999
## 7081                                              Eswatini    SZ   SWZ 1998
## 7082                                              Eswatini    SZ   SWZ 1997
## 7083                                              Eswatini    SZ   SWZ 1996
## 7084                                              Eswatini    SZ   SWZ 1995
## 7085                                              Eswatini    SZ   SWZ 1994
## 7086                                              Eswatini    SZ   SWZ 1993
## 7087                                              Eswatini    SZ   SWZ 1992
## 7088                                              Eswatini    SZ   SWZ 1991
## 7089                                              Eswatini    SZ   SWZ 1990
## 7090                                              Eswatini    SZ   SWZ 1989
## 7091                                              Eswatini    SZ   SWZ 1988
## 7092                                              Eswatini    SZ   SWZ 1987
## 7093                                              Eswatini    SZ   SWZ 1986
## 7094                                              Eswatini    SZ   SWZ 1985
## 7095                                              Eswatini    SZ   SWZ 1984
## 7096                                              Eswatini    SZ   SWZ 1983
## 7097                                              Eswatini    SZ   SWZ 1982
## 7098                                              Eswatini    SZ   SWZ 1981
## 7099                                              Eswatini    SZ   SWZ 1980
## 7100                                              Eswatini    SZ   SWZ 1979
## 7101                                              Eswatini    SZ   SWZ 1978
## 7102                                              Eswatini    SZ   SWZ 1977
## 7103                                              Eswatini    SZ   SWZ 1976
## 7104                                              Eswatini    SZ   SWZ 1975
## 7105                                              Eswatini    SZ   SWZ 1974
## 7106                                              Eswatini    SZ   SWZ 1973
## 7107                                              Eswatini    SZ   SWZ 1972
## 7108                                              Eswatini    SZ   SWZ 1971
## 7109                                              Eswatini    SZ   SWZ 1970
## 7110                                              Eswatini    SZ   SWZ 1969
## 7111                                              Eswatini    SZ   SWZ 1968
## 7112                                              Eswatini    SZ   SWZ 1967
## 7113                                              Eswatini    SZ   SWZ 1966
## 7114                                              Eswatini    SZ   SWZ 1965
## 7115                                              Eswatini    SZ   SWZ 1964
## 7116                                              Eswatini    SZ   SWZ 1963
## 7117                                              Eswatini    SZ   SWZ 1962
## 7118                                              Eswatini    SZ   SWZ 1961
## 7119                                              Eswatini    SZ   SWZ 1960
## 7120                                              Ethiopia    ET   ETH 2022
## 7121                                              Ethiopia    ET   ETH 2021
## 7122                                              Ethiopia    ET   ETH 2020
## 7123                                              Ethiopia    ET   ETH 2019
## 7124                                              Ethiopia    ET   ETH 2018
## 7125                                              Ethiopia    ET   ETH 2017
## 7126                                              Ethiopia    ET   ETH 2016
## 7127                                              Ethiopia    ET   ETH 2015
## 7128                                              Ethiopia    ET   ETH 2014
## 7129                                              Ethiopia    ET   ETH 2013
## 7130                                              Ethiopia    ET   ETH 2012
## 7131                                              Ethiopia    ET   ETH 2011
## 7132                                              Ethiopia    ET   ETH 2010
## 7133                                              Ethiopia    ET   ETH 2009
## 7134                                              Ethiopia    ET   ETH 2008
## 7135                                              Ethiopia    ET   ETH 2007
## 7136                                              Ethiopia    ET   ETH 2006
## 7137                                              Ethiopia    ET   ETH 2005
## 7138                                              Ethiopia    ET   ETH 2004
## 7139                                              Ethiopia    ET   ETH 2003
## 7140                                              Ethiopia    ET   ETH 2002
## 7141                                              Ethiopia    ET   ETH 2001
## 7142                                              Ethiopia    ET   ETH 2000
## 7143                                              Ethiopia    ET   ETH 1999
## 7144                                              Ethiopia    ET   ETH 1998
## 7145                                              Ethiopia    ET   ETH 1997
## 7146                                              Ethiopia    ET   ETH 1996
## 7147                                              Ethiopia    ET   ETH 1995
## 7148                                              Ethiopia    ET   ETH 1994
## 7149                                              Ethiopia    ET   ETH 1993
## 7150                                              Ethiopia    ET   ETH 1992
## 7151                                              Ethiopia    ET   ETH 1991
## 7152                                              Ethiopia    ET   ETH 1990
## 7153                                              Ethiopia    ET   ETH 1989
## 7154                                              Ethiopia    ET   ETH 1988
## 7155                                              Ethiopia    ET   ETH 1987
## 7156                                              Ethiopia    ET   ETH 1986
## 7157                                              Ethiopia    ET   ETH 1985
## 7158                                              Ethiopia    ET   ETH 1984
## 7159                                              Ethiopia    ET   ETH 1983
## 7160                                              Ethiopia    ET   ETH 1982
## 7161                                              Ethiopia    ET   ETH 1981
## 7162                                              Ethiopia    ET   ETH 1980
## 7163                                              Ethiopia    ET   ETH 1979
## 7164                                              Ethiopia    ET   ETH 1978
## 7165                                              Ethiopia    ET   ETH 1977
## 7166                                              Ethiopia    ET   ETH 1976
## 7167                                              Ethiopia    ET   ETH 1975
## 7168                                              Ethiopia    ET   ETH 1974
## 7169                                              Ethiopia    ET   ETH 1973
## 7170                                              Ethiopia    ET   ETH 1972
## 7171                                              Ethiopia    ET   ETH 1971
## 7172                                              Ethiopia    ET   ETH 1970
## 7173                                              Ethiopia    ET   ETH 1969
## 7174                                              Ethiopia    ET   ETH 1968
## 7175                                              Ethiopia    ET   ETH 1967
## 7176                                              Ethiopia    ET   ETH 1966
## 7177                                              Ethiopia    ET   ETH 1965
## 7178                                              Ethiopia    ET   ETH 1964
## 7179                                              Ethiopia    ET   ETH 1963
## 7180                                              Ethiopia    ET   ETH 1962
## 7181                                              Ethiopia    ET   ETH 1961
## 7182                                              Ethiopia    ET   ETH 1960
## 7183                                         Faroe Islands    FO   FRO 2022
## 7184                                         Faroe Islands    FO   FRO 2021
## 7185                                         Faroe Islands    FO   FRO 2020
## 7186                                         Faroe Islands    FO   FRO 2019
## 7187                                         Faroe Islands    FO   FRO 2018
## 7188                                         Faroe Islands    FO   FRO 2017
## 7189                                         Faroe Islands    FO   FRO 2016
## 7190                                         Faroe Islands    FO   FRO 2015
## 7191                                         Faroe Islands    FO   FRO 2014
## 7192                                         Faroe Islands    FO   FRO 2013
## 7193                                         Faroe Islands    FO   FRO 2012
## 7194                                         Faroe Islands    FO   FRO 2011
## 7195                                         Faroe Islands    FO   FRO 2010
## 7196                                         Faroe Islands    FO   FRO 2009
## 7197                                         Faroe Islands    FO   FRO 2008
## 7198                                         Faroe Islands    FO   FRO 2007
## 7199                                         Faroe Islands    FO   FRO 2006
## 7200                                         Faroe Islands    FO   FRO 2005
## 7201                                         Faroe Islands    FO   FRO 2004
## 7202                                         Faroe Islands    FO   FRO 2003
## 7203                                         Faroe Islands    FO   FRO 2002
## 7204                                         Faroe Islands    FO   FRO 2001
## 7205                                         Faroe Islands    FO   FRO 2000
## 7206                                         Faroe Islands    FO   FRO 1999
## 7207                                         Faroe Islands    FO   FRO 1998
## 7208                                         Faroe Islands    FO   FRO 1997
## 7209                                         Faroe Islands    FO   FRO 1996
## 7210                                         Faroe Islands    FO   FRO 1995
## 7211                                         Faroe Islands    FO   FRO 1994
## 7212                                         Faroe Islands    FO   FRO 1993
## 7213                                         Faroe Islands    FO   FRO 1992
## 7214                                         Faroe Islands    FO   FRO 1991
## 7215                                         Faroe Islands    FO   FRO 1990
## 7216                                         Faroe Islands    FO   FRO 1989
## 7217                                         Faroe Islands    FO   FRO 1988
## 7218                                         Faroe Islands    FO   FRO 1987
## 7219                                         Faroe Islands    FO   FRO 1986
## 7220                                         Faroe Islands    FO   FRO 1985
## 7221                                         Faroe Islands    FO   FRO 1984
## 7222                                         Faroe Islands    FO   FRO 1983
## 7223                                         Faroe Islands    FO   FRO 1982
## 7224                                         Faroe Islands    FO   FRO 1981
## 7225                                         Faroe Islands    FO   FRO 1980
## 7226                                         Faroe Islands    FO   FRO 1979
## 7227                                         Faroe Islands    FO   FRO 1978
## 7228                                         Faroe Islands    FO   FRO 1977
## 7229                                         Faroe Islands    FO   FRO 1976
## 7230                                         Faroe Islands    FO   FRO 1975
## 7231                                         Faroe Islands    FO   FRO 1974
## 7232                                         Faroe Islands    FO   FRO 1973
## 7233                                         Faroe Islands    FO   FRO 1972
## 7234                                         Faroe Islands    FO   FRO 1971
## 7235                                         Faroe Islands    FO   FRO 1970
## 7236                                         Faroe Islands    FO   FRO 1969
## 7237                                         Faroe Islands    FO   FRO 1968
## 7238                                         Faroe Islands    FO   FRO 1967
## 7239                                         Faroe Islands    FO   FRO 1966
## 7240                                         Faroe Islands    FO   FRO 1965
## 7241                                         Faroe Islands    FO   FRO 1964
## 7242                                         Faroe Islands    FO   FRO 1963
## 7243                                         Faroe Islands    FO   FRO 1962
## 7244                                         Faroe Islands    FO   FRO 1961
## 7245                                         Faroe Islands    FO   FRO 1960
## 7246                                                  Fiji    FJ   FJI 2022
## 7247                                                  Fiji    FJ   FJI 2021
## 7248                                                  Fiji    FJ   FJI 2020
## 7249                                                  Fiji    FJ   FJI 2019
## 7250                                                  Fiji    FJ   FJI 2018
## 7251                                                  Fiji    FJ   FJI 2017
## 7252                                                  Fiji    FJ   FJI 2016
## 7253                                                  Fiji    FJ   FJI 2015
## 7254                                                  Fiji    FJ   FJI 2014
## 7255                                                  Fiji    FJ   FJI 2013
## 7256                                                  Fiji    FJ   FJI 2012
## 7257                                                  Fiji    FJ   FJI 2011
## 7258                                                  Fiji    FJ   FJI 2010
## 7259                                                  Fiji    FJ   FJI 2009
## 7260                                                  Fiji    FJ   FJI 2008
## 7261                                                  Fiji    FJ   FJI 2007
## 7262                                                  Fiji    FJ   FJI 2006
## 7263                                                  Fiji    FJ   FJI 2005
## 7264                                                  Fiji    FJ   FJI 2004
## 7265                                                  Fiji    FJ   FJI 2003
## 7266                                                  Fiji    FJ   FJI 2002
## 7267                                                  Fiji    FJ   FJI 2001
## 7268                                                  Fiji    FJ   FJI 2000
## 7269                                                  Fiji    FJ   FJI 1999
## 7270                                                  Fiji    FJ   FJI 1998
## 7271                                                  Fiji    FJ   FJI 1997
## 7272                                                  Fiji    FJ   FJI 1996
## 7273                                                  Fiji    FJ   FJI 1995
## 7274                                                  Fiji    FJ   FJI 1994
## 7275                                                  Fiji    FJ   FJI 1993
## 7276                                                  Fiji    FJ   FJI 1992
## 7277                                                  Fiji    FJ   FJI 1991
## 7278                                                  Fiji    FJ   FJI 1990
## 7279                                                  Fiji    FJ   FJI 1989
## 7280                                                  Fiji    FJ   FJI 1988
## 7281                                                  Fiji    FJ   FJI 1987
## 7282                                                  Fiji    FJ   FJI 1986
## 7283                                                  Fiji    FJ   FJI 1985
## 7284                                                  Fiji    FJ   FJI 1984
## 7285                                                  Fiji    FJ   FJI 1983
## 7286                                                  Fiji    FJ   FJI 1982
## 7287                                                  Fiji    FJ   FJI 1981
## 7288                                                  Fiji    FJ   FJI 1980
## 7289                                                  Fiji    FJ   FJI 1979
## 7290                                                  Fiji    FJ   FJI 1978
## 7291                                                  Fiji    FJ   FJI 1977
## 7292                                                  Fiji    FJ   FJI 1976
## 7293                                                  Fiji    FJ   FJI 1975
## 7294                                                  Fiji    FJ   FJI 1974
## 7295                                                  Fiji    FJ   FJI 1973
## 7296                                                  Fiji    FJ   FJI 1972
## 7297                                                  Fiji    FJ   FJI 1971
## 7298                                                  Fiji    FJ   FJI 1970
## 7299                                                  Fiji    FJ   FJI 1969
## 7300                                                  Fiji    FJ   FJI 1968
## 7301                                                  Fiji    FJ   FJI 1967
## 7302                                                  Fiji    FJ   FJI 1966
## 7303                                                  Fiji    FJ   FJI 1965
## 7304                                                  Fiji    FJ   FJI 1964
## 7305                                                  Fiji    FJ   FJI 1963
## 7306                                                  Fiji    FJ   FJI 1962
## 7307                                                  Fiji    FJ   FJI 1961
## 7308                                                  Fiji    FJ   FJI 1960
## 7309                                               Finland    FI   FIN 2022
## 7310                                               Finland    FI   FIN 2021
## 7311                                               Finland    FI   FIN 2020
## 7312                                               Finland    FI   FIN 2019
## 7313                                               Finland    FI   FIN 2018
## 7314                                               Finland    FI   FIN 2017
## 7315                                               Finland    FI   FIN 2016
## 7316                                               Finland    FI   FIN 2015
## 7317                                               Finland    FI   FIN 2014
## 7318                                               Finland    FI   FIN 2013
## 7319                                               Finland    FI   FIN 2012
## 7320                                               Finland    FI   FIN 2011
## 7321                                               Finland    FI   FIN 2010
## 7322                                               Finland    FI   FIN 2009
## 7323                                               Finland    FI   FIN 2008
## 7324                                               Finland    FI   FIN 2007
## 7325                                               Finland    FI   FIN 2006
## 7326                                               Finland    FI   FIN 2005
## 7327                                               Finland    FI   FIN 2004
## 7328                                               Finland    FI   FIN 2003
## 7329                                               Finland    FI   FIN 2002
## 7330                                               Finland    FI   FIN 2001
## 7331                                               Finland    FI   FIN 2000
## 7332                                               Finland    FI   FIN 1999
## 7333                                               Finland    FI   FIN 1998
## 7334                                               Finland    FI   FIN 1997
## 7335                                               Finland    FI   FIN 1996
## 7336                                               Finland    FI   FIN 1995
## 7337                                               Finland    FI   FIN 1994
## 7338                                               Finland    FI   FIN 1993
## 7339                                               Finland    FI   FIN 1992
## 7340                                               Finland    FI   FIN 1991
## 7341                                               Finland    FI   FIN 1990
## 7342                                               Finland    FI   FIN 1989
## 7343                                               Finland    FI   FIN 1988
## 7344                                               Finland    FI   FIN 1987
## 7345                                               Finland    FI   FIN 1986
## 7346                                               Finland    FI   FIN 1985
## 7347                                               Finland    FI   FIN 1984
## 7348                                               Finland    FI   FIN 1983
## 7349                                               Finland    FI   FIN 1982
## 7350                                               Finland    FI   FIN 1981
## 7351                                               Finland    FI   FIN 1980
## 7352                                               Finland    FI   FIN 1979
## 7353                                               Finland    FI   FIN 1978
## 7354                                               Finland    FI   FIN 1977
## 7355                                               Finland    FI   FIN 1976
## 7356                                               Finland    FI   FIN 1975
## 7357                                               Finland    FI   FIN 1974
## 7358                                               Finland    FI   FIN 1973
## 7359                                               Finland    FI   FIN 1972
## 7360                                               Finland    FI   FIN 1971
## 7361                                               Finland    FI   FIN 1970
## 7362                                               Finland    FI   FIN 1969
## 7363                                               Finland    FI   FIN 1968
## 7364                                               Finland    FI   FIN 1967
## 7365                                               Finland    FI   FIN 1966
## 7366                                               Finland    FI   FIN 1965
## 7367                                               Finland    FI   FIN 1964
## 7368                                               Finland    FI   FIN 1963
## 7369                                               Finland    FI   FIN 1962
## 7370                                               Finland    FI   FIN 1961
## 7371                                               Finland    FI   FIN 1960
## 7372                                                France    FR   FRA 2022
## 7373                                                France    FR   FRA 2021
## 7374                                                France    FR   FRA 2020
## 7375                                                France    FR   FRA 2019
## 7376                                                France    FR   FRA 2018
## 7377                                                France    FR   FRA 2017
## 7378                                                France    FR   FRA 2016
## 7379                                                France    FR   FRA 2015
## 7380                                                France    FR   FRA 2014
## 7381                                                France    FR   FRA 2013
## 7382                                                France    FR   FRA 2012
## 7383                                                France    FR   FRA 2011
## 7384                                                France    FR   FRA 2010
## 7385                                                France    FR   FRA 2009
## 7386                                                France    FR   FRA 2008
## 7387                                                France    FR   FRA 2007
## 7388                                                France    FR   FRA 2006
## 7389                                                France    FR   FRA 2005
## 7390                                                France    FR   FRA 2004
## 7391                                                France    FR   FRA 2003
## 7392                                                France    FR   FRA 2002
## 7393                                                France    FR   FRA 2001
## 7394                                                France    FR   FRA 2000
## 7395                                                France    FR   FRA 1999
## 7396                                                France    FR   FRA 1998
## 7397                                                France    FR   FRA 1997
## 7398                                                France    FR   FRA 1996
## 7399                                                France    FR   FRA 1995
## 7400                                                France    FR   FRA 1994
## 7401                                                France    FR   FRA 1993
## 7402                                                France    FR   FRA 1992
## 7403                                                France    FR   FRA 1991
## 7404                                                France    FR   FRA 1990
## 7405                                                France    FR   FRA 1989
## 7406                                                France    FR   FRA 1988
## 7407                                                France    FR   FRA 1987
## 7408                                                France    FR   FRA 1986
## 7409                                                France    FR   FRA 1985
## 7410                                                France    FR   FRA 1984
## 7411                                                France    FR   FRA 1983
## 7412                                                France    FR   FRA 1982
## 7413                                                France    FR   FRA 1981
## 7414                                                France    FR   FRA 1980
## 7415                                                France    FR   FRA 1979
## 7416                                                France    FR   FRA 1978
## 7417                                                France    FR   FRA 1977
## 7418                                                France    FR   FRA 1976
## 7419                                                France    FR   FRA 1975
## 7420                                                France    FR   FRA 1974
## 7421                                                France    FR   FRA 1973
## 7422                                                France    FR   FRA 1972
## 7423                                                France    FR   FRA 1971
## 7424                                                France    FR   FRA 1970
## 7425                                                France    FR   FRA 1969
## 7426                                                France    FR   FRA 1968
## 7427                                                France    FR   FRA 1967
## 7428                                                France    FR   FRA 1966
## 7429                                                France    FR   FRA 1965
## 7430                                                France    FR   FRA 1964
## 7431                                                France    FR   FRA 1963
## 7432                                                France    FR   FRA 1962
## 7433                                                France    FR   FRA 1961
## 7434                                                France    FR   FRA 1960
## 7435                                      French Polynesia    PF   PYF 2022
## 7436                                      French Polynesia    PF   PYF 2021
## 7437                                      French Polynesia    PF   PYF 2020
## 7438                                      French Polynesia    PF   PYF 2019
## 7439                                      French Polynesia    PF   PYF 2018
## 7440                                      French Polynesia    PF   PYF 2017
## 7441                                      French Polynesia    PF   PYF 2016
## 7442                                      French Polynesia    PF   PYF 2015
## 7443                                      French Polynesia    PF   PYF 2014
## 7444                                      French Polynesia    PF   PYF 2013
## 7445                                      French Polynesia    PF   PYF 2012
## 7446                                      French Polynesia    PF   PYF 2011
## 7447                                      French Polynesia    PF   PYF 2010
## 7448                                      French Polynesia    PF   PYF 2009
## 7449                                      French Polynesia    PF   PYF 2008
## 7450                                      French Polynesia    PF   PYF 2007
## 7451                                      French Polynesia    PF   PYF 2006
## 7452                                      French Polynesia    PF   PYF 2005
## 7453                                      French Polynesia    PF   PYF 2004
## 7454                                      French Polynesia    PF   PYF 2003
## 7455                                      French Polynesia    PF   PYF 2002
## 7456                                      French Polynesia    PF   PYF 2001
## 7457                                      French Polynesia    PF   PYF 2000
## 7458                                      French Polynesia    PF   PYF 1999
## 7459                                      French Polynesia    PF   PYF 1998
## 7460                                      French Polynesia    PF   PYF 1997
## 7461                                      French Polynesia    PF   PYF 1996
## 7462                                      French Polynesia    PF   PYF 1995
## 7463                                      French Polynesia    PF   PYF 1994
## 7464                                      French Polynesia    PF   PYF 1993
## 7465                                      French Polynesia    PF   PYF 1992
## 7466                                      French Polynesia    PF   PYF 1991
## 7467                                      French Polynesia    PF   PYF 1990
## 7468                                      French Polynesia    PF   PYF 1989
## 7469                                      French Polynesia    PF   PYF 1988
## 7470                                      French Polynesia    PF   PYF 1987
## 7471                                      French Polynesia    PF   PYF 1986
## 7472                                      French Polynesia    PF   PYF 1985
## 7473                                      French Polynesia    PF   PYF 1984
## 7474                                      French Polynesia    PF   PYF 1983
## 7475                                      French Polynesia    PF   PYF 1982
## 7476                                      French Polynesia    PF   PYF 1981
## 7477                                      French Polynesia    PF   PYF 1980
## 7478                                      French Polynesia    PF   PYF 1979
## 7479                                      French Polynesia    PF   PYF 1978
## 7480                                      French Polynesia    PF   PYF 1977
## 7481                                      French Polynesia    PF   PYF 1976
## 7482                                      French Polynesia    PF   PYF 1975
## 7483                                      French Polynesia    PF   PYF 1974
## 7484                                      French Polynesia    PF   PYF 1973
## 7485                                      French Polynesia    PF   PYF 1972
## 7486                                      French Polynesia    PF   PYF 1971
## 7487                                      French Polynesia    PF   PYF 1970
## 7488                                      French Polynesia    PF   PYF 1969
## 7489                                      French Polynesia    PF   PYF 1968
## 7490                                      French Polynesia    PF   PYF 1967
## 7491                                      French Polynesia    PF   PYF 1966
## 7492                                      French Polynesia    PF   PYF 1965
## 7493                                      French Polynesia    PF   PYF 1964
## 7494                                      French Polynesia    PF   PYF 1963
## 7495                                      French Polynesia    PF   PYF 1962
## 7496                                      French Polynesia    PF   PYF 1961
## 7497                                      French Polynesia    PF   PYF 1960
## 7498                                                 Gabon    GA   GAB 2022
## 7499                                                 Gabon    GA   GAB 2021
## 7500                                                 Gabon    GA   GAB 2020
## 7501                                                 Gabon    GA   GAB 2019
## 7502                                                 Gabon    GA   GAB 2018
## 7503                                                 Gabon    GA   GAB 2017
## 7504                                                 Gabon    GA   GAB 2016
## 7505                                                 Gabon    GA   GAB 2015
## 7506                                                 Gabon    GA   GAB 2014
## 7507                                                 Gabon    GA   GAB 2013
## 7508                                                 Gabon    GA   GAB 2012
## 7509                                                 Gabon    GA   GAB 2011
## 7510                                                 Gabon    GA   GAB 2010
## 7511                                                 Gabon    GA   GAB 2009
## 7512                                                 Gabon    GA   GAB 2008
## 7513                                                 Gabon    GA   GAB 2007
## 7514                                                 Gabon    GA   GAB 2006
## 7515                                                 Gabon    GA   GAB 2005
## 7516                                                 Gabon    GA   GAB 2004
## 7517                                                 Gabon    GA   GAB 2003
## 7518                                                 Gabon    GA   GAB 2002
## 7519                                                 Gabon    GA   GAB 2001
## 7520                                                 Gabon    GA   GAB 2000
## 7521                                                 Gabon    GA   GAB 1999
## 7522                                                 Gabon    GA   GAB 1998
## 7523                                                 Gabon    GA   GAB 1997
## 7524                                                 Gabon    GA   GAB 1996
## 7525                                                 Gabon    GA   GAB 1995
## 7526                                                 Gabon    GA   GAB 1994
## 7527                                                 Gabon    GA   GAB 1993
## 7528                                                 Gabon    GA   GAB 1992
## 7529                                                 Gabon    GA   GAB 1991
## 7530                                                 Gabon    GA   GAB 1990
## 7531                                                 Gabon    GA   GAB 1989
## 7532                                                 Gabon    GA   GAB 1988
## 7533                                                 Gabon    GA   GAB 1987
## 7534                                                 Gabon    GA   GAB 1986
## 7535                                                 Gabon    GA   GAB 1985
## 7536                                                 Gabon    GA   GAB 1984
## 7537                                                 Gabon    GA   GAB 1983
## 7538                                                 Gabon    GA   GAB 1982
## 7539                                                 Gabon    GA   GAB 1981
## 7540                                                 Gabon    GA   GAB 1980
## 7541                                                 Gabon    GA   GAB 1979
## 7542                                                 Gabon    GA   GAB 1978
## 7543                                                 Gabon    GA   GAB 1977
## 7544                                                 Gabon    GA   GAB 1976
## 7545                                                 Gabon    GA   GAB 1975
## 7546                                                 Gabon    GA   GAB 1974
## 7547                                                 Gabon    GA   GAB 1973
## 7548                                                 Gabon    GA   GAB 1972
## 7549                                                 Gabon    GA   GAB 1971
## 7550                                                 Gabon    GA   GAB 1970
## 7551                                                 Gabon    GA   GAB 1969
## 7552                                                 Gabon    GA   GAB 1968
## 7553                                                 Gabon    GA   GAB 1967
## 7554                                                 Gabon    GA   GAB 1966
## 7555                                                 Gabon    GA   GAB 1965
## 7556                                                 Gabon    GA   GAB 1964
## 7557                                                 Gabon    GA   GAB 1963
## 7558                                                 Gabon    GA   GAB 1962
## 7559                                                 Gabon    GA   GAB 1961
## 7560                                                 Gabon    GA   GAB 1960
## 7561                                           Gambia, The    GM   GMB 2022
## 7562                                           Gambia, The    GM   GMB 2021
## 7563                                           Gambia, The    GM   GMB 2020
## 7564                                           Gambia, The    GM   GMB 2019
## 7565                                           Gambia, The    GM   GMB 2018
## 7566                                           Gambia, The    GM   GMB 2017
## 7567                                           Gambia, The    GM   GMB 2016
## 7568                                           Gambia, The    GM   GMB 2015
## 7569                                           Gambia, The    GM   GMB 2014
## 7570                                           Gambia, The    GM   GMB 2013
## 7571                                           Gambia, The    GM   GMB 2012
## 7572                                           Gambia, The    GM   GMB 2011
## 7573                                           Gambia, The    GM   GMB 2010
## 7574                                           Gambia, The    GM   GMB 2009
## 7575                                           Gambia, The    GM   GMB 2008
## 7576                                           Gambia, The    GM   GMB 2007
## 7577                                           Gambia, The    GM   GMB 2006
## 7578                                           Gambia, The    GM   GMB 2005
## 7579                                           Gambia, The    GM   GMB 2004
## 7580                                           Gambia, The    GM   GMB 2003
## 7581                                           Gambia, The    GM   GMB 2002
## 7582                                           Gambia, The    GM   GMB 2001
## 7583                                           Gambia, The    GM   GMB 2000
## 7584                                           Gambia, The    GM   GMB 1999
## 7585                                           Gambia, The    GM   GMB 1998
## 7586                                           Gambia, The    GM   GMB 1997
## 7587                                           Gambia, The    GM   GMB 1996
## 7588                                           Gambia, The    GM   GMB 1995
## 7589                                           Gambia, The    GM   GMB 1994
## 7590                                           Gambia, The    GM   GMB 1993
## 7591                                           Gambia, The    GM   GMB 1992
## 7592                                           Gambia, The    GM   GMB 1991
## 7593                                           Gambia, The    GM   GMB 1990
## 7594                                           Gambia, The    GM   GMB 1989
## 7595                                           Gambia, The    GM   GMB 1988
## 7596                                           Gambia, The    GM   GMB 1987
## 7597                                           Gambia, The    GM   GMB 1986
## 7598                                           Gambia, The    GM   GMB 1985
## 7599                                           Gambia, The    GM   GMB 1984
## 7600                                           Gambia, The    GM   GMB 1983
## 7601                                           Gambia, The    GM   GMB 1982
## 7602                                           Gambia, The    GM   GMB 1981
## 7603                                           Gambia, The    GM   GMB 1980
## 7604                                           Gambia, The    GM   GMB 1979
## 7605                                           Gambia, The    GM   GMB 1978
## 7606                                           Gambia, The    GM   GMB 1977
## 7607                                           Gambia, The    GM   GMB 1976
## 7608                                           Gambia, The    GM   GMB 1975
## 7609                                           Gambia, The    GM   GMB 1974
## 7610                                           Gambia, The    GM   GMB 1973
## 7611                                           Gambia, The    GM   GMB 1972
## 7612                                           Gambia, The    GM   GMB 1971
## 7613                                           Gambia, The    GM   GMB 1970
## 7614                                           Gambia, The    GM   GMB 1969
## 7615                                           Gambia, The    GM   GMB 1968
## 7616                                           Gambia, The    GM   GMB 1967
## 7617                                           Gambia, The    GM   GMB 1966
## 7618                                           Gambia, The    GM   GMB 1965
## 7619                                           Gambia, The    GM   GMB 1964
## 7620                                           Gambia, The    GM   GMB 1963
## 7621                                           Gambia, The    GM   GMB 1962
## 7622                                           Gambia, The    GM   GMB 1961
## 7623                                           Gambia, The    GM   GMB 1960
## 7624                                               Georgia    GE   GEO 2022
## 7625                                               Georgia    GE   GEO 2021
## 7626                                               Georgia    GE   GEO 2020
## 7627                                               Georgia    GE   GEO 2019
## 7628                                               Georgia    GE   GEO 2018
## 7629                                               Georgia    GE   GEO 2017
## 7630                                               Georgia    GE   GEO 2016
## 7631                                               Georgia    GE   GEO 2015
## 7632                                               Georgia    GE   GEO 2014
## 7633                                               Georgia    GE   GEO 2013
## 7634                                               Georgia    GE   GEO 2012
## 7635                                               Georgia    GE   GEO 2011
## 7636                                               Georgia    GE   GEO 2010
## 7637                                               Georgia    GE   GEO 2009
## 7638                                               Georgia    GE   GEO 2008
## 7639                                               Georgia    GE   GEO 2007
## 7640                                               Georgia    GE   GEO 2006
## 7641                                               Georgia    GE   GEO 2005
## 7642                                               Georgia    GE   GEO 2004
## 7643                                               Georgia    GE   GEO 2003
## 7644                                               Georgia    GE   GEO 2002
## 7645                                               Georgia    GE   GEO 2001
## 7646                                               Georgia    GE   GEO 2000
## 7647                                               Georgia    GE   GEO 1999
## 7648                                               Georgia    GE   GEO 1998
## 7649                                               Georgia    GE   GEO 1997
## 7650                                               Georgia    GE   GEO 1996
## 7651                                               Georgia    GE   GEO 1995
## 7652                                               Georgia    GE   GEO 1994
## 7653                                               Georgia    GE   GEO 1993
## 7654                                               Georgia    GE   GEO 1992
## 7655                                               Georgia    GE   GEO 1991
## 7656                                               Georgia    GE   GEO 1990
## 7657                                               Georgia    GE   GEO 1989
## 7658                                               Georgia    GE   GEO 1988
## 7659                                               Georgia    GE   GEO 1987
## 7660                                               Georgia    GE   GEO 1986
## 7661                                               Georgia    GE   GEO 1985
## 7662                                               Georgia    GE   GEO 1984
## 7663                                               Georgia    GE   GEO 1983
## 7664                                               Georgia    GE   GEO 1982
## 7665                                               Georgia    GE   GEO 1981
## 7666                                               Georgia    GE   GEO 1980
## 7667                                               Georgia    GE   GEO 1979
## 7668                                               Georgia    GE   GEO 1978
## 7669                                               Georgia    GE   GEO 1977
## 7670                                               Georgia    GE   GEO 1976
## 7671                                               Georgia    GE   GEO 1975
## 7672                                               Georgia    GE   GEO 1974
## 7673                                               Georgia    GE   GEO 1973
## 7674                                               Georgia    GE   GEO 1972
## 7675                                               Georgia    GE   GEO 1971
## 7676                                               Georgia    GE   GEO 1970
## 7677                                               Georgia    GE   GEO 1969
## 7678                                               Georgia    GE   GEO 1968
## 7679                                               Georgia    GE   GEO 1967
## 7680                                               Georgia    GE   GEO 1966
## 7681                                               Georgia    GE   GEO 1965
## 7682                                               Georgia    GE   GEO 1964
## 7683                                               Georgia    GE   GEO 1963
## 7684                                               Georgia    GE   GEO 1962
## 7685                                               Georgia    GE   GEO 1961
## 7686                                               Georgia    GE   GEO 1960
## 7687                                               Germany    DE   DEU 2022
## 7688                                               Germany    DE   DEU 2021
## 7689                                               Germany    DE   DEU 2020
## 7690                                               Germany    DE   DEU 2019
## 7691                                               Germany    DE   DEU 2018
## 7692                                               Germany    DE   DEU 2017
## 7693                                               Germany    DE   DEU 2016
## 7694                                               Germany    DE   DEU 2015
## 7695                                               Germany    DE   DEU 2014
## 7696                                               Germany    DE   DEU 2013
## 7697                                               Germany    DE   DEU 2012
## 7698                                               Germany    DE   DEU 2011
## 7699                                               Germany    DE   DEU 2010
## 7700                                               Germany    DE   DEU 2009
## 7701                                               Germany    DE   DEU 2008
## 7702                                               Germany    DE   DEU 2007
## 7703                                               Germany    DE   DEU 2006
## 7704                                               Germany    DE   DEU 2005
## 7705                                               Germany    DE   DEU 2004
## 7706                                               Germany    DE   DEU 2003
## 7707                                               Germany    DE   DEU 2002
## 7708                                               Germany    DE   DEU 2001
## 7709                                               Germany    DE   DEU 2000
## 7710                                               Germany    DE   DEU 1999
## 7711                                               Germany    DE   DEU 1998
## 7712                                               Germany    DE   DEU 1997
## 7713                                               Germany    DE   DEU 1996
## 7714                                               Germany    DE   DEU 1995
## 7715                                               Germany    DE   DEU 1994
## 7716                                               Germany    DE   DEU 1993
## 7717                                               Germany    DE   DEU 1992
## 7718                                               Germany    DE   DEU 1991
## 7719                                               Germany    DE   DEU 1990
## 7720                                               Germany    DE   DEU 1989
## 7721                                               Germany    DE   DEU 1988
## 7722                                               Germany    DE   DEU 1987
## 7723                                               Germany    DE   DEU 1986
## 7724                                               Germany    DE   DEU 1985
## 7725                                               Germany    DE   DEU 1984
## 7726                                               Germany    DE   DEU 1983
## 7727                                               Germany    DE   DEU 1982
## 7728                                               Germany    DE   DEU 1981
## 7729                                               Germany    DE   DEU 1980
## 7730                                               Germany    DE   DEU 1979
## 7731                                               Germany    DE   DEU 1978
## 7732                                               Germany    DE   DEU 1977
## 7733                                               Germany    DE   DEU 1976
## 7734                                               Germany    DE   DEU 1975
## 7735                                               Germany    DE   DEU 1974
## 7736                                               Germany    DE   DEU 1973
## 7737                                               Germany    DE   DEU 1972
## 7738                                               Germany    DE   DEU 1971
## 7739                                               Germany    DE   DEU 1970
## 7740                                               Germany    DE   DEU 1969
## 7741                                               Germany    DE   DEU 1968
## 7742                                               Germany    DE   DEU 1967
## 7743                                               Germany    DE   DEU 1966
## 7744                                               Germany    DE   DEU 1965
## 7745                                               Germany    DE   DEU 1964
## 7746                                               Germany    DE   DEU 1963
## 7747                                               Germany    DE   DEU 1962
## 7748                                               Germany    DE   DEU 1961
## 7749                                               Germany    DE   DEU 1960
## 7750                                                 Ghana    GH   GHA 2022
## 7751                                                 Ghana    GH   GHA 2021
## 7752                                                 Ghana    GH   GHA 2020
## 7753                                                 Ghana    GH   GHA 2019
## 7754                                                 Ghana    GH   GHA 2018
## 7755                                                 Ghana    GH   GHA 2017
## 7756                                                 Ghana    GH   GHA 2016
## 7757                                                 Ghana    GH   GHA 2015
## 7758                                                 Ghana    GH   GHA 2014
## 7759                                                 Ghana    GH   GHA 2013
## 7760                                                 Ghana    GH   GHA 2012
## 7761                                                 Ghana    GH   GHA 2011
## 7762                                                 Ghana    GH   GHA 2010
## 7763                                                 Ghana    GH   GHA 2009
## 7764                                                 Ghana    GH   GHA 2008
## 7765                                                 Ghana    GH   GHA 2007
## 7766                                                 Ghana    GH   GHA 2006
## 7767                                                 Ghana    GH   GHA 2005
## 7768                                                 Ghana    GH   GHA 2004
## 7769                                                 Ghana    GH   GHA 2003
## 7770                                                 Ghana    GH   GHA 2002
## 7771                                                 Ghana    GH   GHA 2001
## 7772                                                 Ghana    GH   GHA 2000
## 7773                                                 Ghana    GH   GHA 1999
## 7774                                                 Ghana    GH   GHA 1998
## 7775                                                 Ghana    GH   GHA 1997
## 7776                                                 Ghana    GH   GHA 1996
## 7777                                                 Ghana    GH   GHA 1995
## 7778                                                 Ghana    GH   GHA 1994
## 7779                                                 Ghana    GH   GHA 1993
## 7780                                                 Ghana    GH   GHA 1992
## 7781                                                 Ghana    GH   GHA 1991
## 7782                                                 Ghana    GH   GHA 1990
## 7783                                                 Ghana    GH   GHA 1989
## 7784                                                 Ghana    GH   GHA 1988
## 7785                                                 Ghana    GH   GHA 1987
## 7786                                                 Ghana    GH   GHA 1986
## 7787                                                 Ghana    GH   GHA 1985
## 7788                                                 Ghana    GH   GHA 1984
## 7789                                                 Ghana    GH   GHA 1983
## 7790                                                 Ghana    GH   GHA 1982
## 7791                                                 Ghana    GH   GHA 1981
## 7792                                                 Ghana    GH   GHA 1980
## 7793                                                 Ghana    GH   GHA 1979
## 7794                                                 Ghana    GH   GHA 1978
## 7795                                                 Ghana    GH   GHA 1977
## 7796                                                 Ghana    GH   GHA 1976
## 7797                                                 Ghana    GH   GHA 1975
## 7798                                                 Ghana    GH   GHA 1974
## 7799                                                 Ghana    GH   GHA 1973
## 7800                                                 Ghana    GH   GHA 1972
## 7801                                                 Ghana    GH   GHA 1971
## 7802                                                 Ghana    GH   GHA 1970
## 7803                                                 Ghana    GH   GHA 1969
## 7804                                                 Ghana    GH   GHA 1968
## 7805                                                 Ghana    GH   GHA 1967
## 7806                                                 Ghana    GH   GHA 1966
## 7807                                                 Ghana    GH   GHA 1965
## 7808                                                 Ghana    GH   GHA 1964
## 7809                                                 Ghana    GH   GHA 1963
## 7810                                                 Ghana    GH   GHA 1962
## 7811                                                 Ghana    GH   GHA 1961
## 7812                                                 Ghana    GH   GHA 1960
## 7813                                             Gibraltar    GI   GIB 2022
## 7814                                             Gibraltar    GI   GIB 2021
## 7815                                             Gibraltar    GI   GIB 2020
## 7816                                             Gibraltar    GI   GIB 2019
## 7817                                             Gibraltar    GI   GIB 2018
## 7818                                             Gibraltar    GI   GIB 2017
## 7819                                             Gibraltar    GI   GIB 2016
## 7820                                             Gibraltar    GI   GIB 2015
## 7821                                             Gibraltar    GI   GIB 2014
## 7822                                             Gibraltar    GI   GIB 2013
## 7823                                             Gibraltar    GI   GIB 2012
## 7824                                             Gibraltar    GI   GIB 2011
## 7825                                             Gibraltar    GI   GIB 2010
## 7826                                             Gibraltar    GI   GIB 2009
## 7827                                             Gibraltar    GI   GIB 2008
## 7828                                             Gibraltar    GI   GIB 2007
## 7829                                             Gibraltar    GI   GIB 2006
## 7830                                             Gibraltar    GI   GIB 2005
## 7831                                             Gibraltar    GI   GIB 2004
## 7832                                             Gibraltar    GI   GIB 2003
## 7833                                             Gibraltar    GI   GIB 2002
## 7834                                             Gibraltar    GI   GIB 2001
## 7835                                             Gibraltar    GI   GIB 2000
## 7836                                             Gibraltar    GI   GIB 1999
## 7837                                             Gibraltar    GI   GIB 1998
## 7838                                             Gibraltar    GI   GIB 1997
## 7839                                             Gibraltar    GI   GIB 1996
## 7840                                             Gibraltar    GI   GIB 1995
## 7841                                             Gibraltar    GI   GIB 1994
## 7842                                             Gibraltar    GI   GIB 1993
## 7843                                             Gibraltar    GI   GIB 1992
## 7844                                             Gibraltar    GI   GIB 1991
## 7845                                             Gibraltar    GI   GIB 1990
## 7846                                             Gibraltar    GI   GIB 1989
## 7847                                             Gibraltar    GI   GIB 1988
## 7848                                             Gibraltar    GI   GIB 1987
## 7849                                             Gibraltar    GI   GIB 1986
## 7850                                             Gibraltar    GI   GIB 1985
## 7851                                             Gibraltar    GI   GIB 1984
## 7852                                             Gibraltar    GI   GIB 1983
## 7853                                             Gibraltar    GI   GIB 1982
## 7854                                             Gibraltar    GI   GIB 1981
## 7855                                             Gibraltar    GI   GIB 1980
## 7856                                             Gibraltar    GI   GIB 1979
## 7857                                             Gibraltar    GI   GIB 1978
## 7858                                             Gibraltar    GI   GIB 1977
## 7859                                             Gibraltar    GI   GIB 1976
## 7860                                             Gibraltar    GI   GIB 1975
## 7861                                             Gibraltar    GI   GIB 1974
## 7862                                             Gibraltar    GI   GIB 1973
## 7863                                             Gibraltar    GI   GIB 1972
## 7864                                             Gibraltar    GI   GIB 1971
## 7865                                             Gibraltar    GI   GIB 1970
## 7866                                             Gibraltar    GI   GIB 1969
## 7867                                             Gibraltar    GI   GIB 1968
## 7868                                             Gibraltar    GI   GIB 1967
## 7869                                             Gibraltar    GI   GIB 1966
## 7870                                             Gibraltar    GI   GIB 1965
## 7871                                             Gibraltar    GI   GIB 1964
## 7872                                             Gibraltar    GI   GIB 1963
## 7873                                             Gibraltar    GI   GIB 1962
## 7874                                             Gibraltar    GI   GIB 1961
## 7875                                             Gibraltar    GI   GIB 1960
## 7876                                                Greece    GR   GRC 2022
## 7877                                                Greece    GR   GRC 2021
## 7878                                                Greece    GR   GRC 2020
## 7879                                                Greece    GR   GRC 2019
## 7880                                                Greece    GR   GRC 2018
## 7881                                                Greece    GR   GRC 2017
## 7882                                                Greece    GR   GRC 2016
## 7883                                                Greece    GR   GRC 2015
## 7884                                                Greece    GR   GRC 2014
## 7885                                                Greece    GR   GRC 2013
## 7886                                                Greece    GR   GRC 2012
## 7887                                                Greece    GR   GRC 2011
## 7888                                                Greece    GR   GRC 2010
## 7889                                                Greece    GR   GRC 2009
## 7890                                                Greece    GR   GRC 2008
## 7891                                                Greece    GR   GRC 2007
## 7892                                                Greece    GR   GRC 2006
## 7893                                                Greece    GR   GRC 2005
## 7894                                                Greece    GR   GRC 2004
## 7895                                                Greece    GR   GRC 2003
## 7896                                                Greece    GR   GRC 2002
## 7897                                                Greece    GR   GRC 2001
## 7898                                                Greece    GR   GRC 2000
## 7899                                                Greece    GR   GRC 1999
## 7900                                                Greece    GR   GRC 1998
## 7901                                                Greece    GR   GRC 1997
## 7902                                                Greece    GR   GRC 1996
## 7903                                                Greece    GR   GRC 1995
## 7904                                                Greece    GR   GRC 1994
## 7905                                                Greece    GR   GRC 1993
## 7906                                                Greece    GR   GRC 1992
## 7907                                                Greece    GR   GRC 1991
## 7908                                                Greece    GR   GRC 1990
## 7909                                                Greece    GR   GRC 1989
## 7910                                                Greece    GR   GRC 1988
## 7911                                                Greece    GR   GRC 1987
## 7912                                                Greece    GR   GRC 1986
## 7913                                                Greece    GR   GRC 1985
## 7914                                                Greece    GR   GRC 1984
## 7915                                                Greece    GR   GRC 1983
## 7916                                                Greece    GR   GRC 1982
## 7917                                                Greece    GR   GRC 1981
## 7918                                                Greece    GR   GRC 1980
## 7919                                                Greece    GR   GRC 1979
## 7920                                                Greece    GR   GRC 1978
## 7921                                                Greece    GR   GRC 1977
## 7922                                                Greece    GR   GRC 1976
## 7923                                                Greece    GR   GRC 1975
## 7924                                                Greece    GR   GRC 1974
## 7925                                                Greece    GR   GRC 1973
## 7926                                                Greece    GR   GRC 1972
## 7927                                                Greece    GR   GRC 1971
## 7928                                                Greece    GR   GRC 1970
## 7929                                                Greece    GR   GRC 1969
## 7930                                                Greece    GR   GRC 1968
## 7931                                                Greece    GR   GRC 1967
## 7932                                                Greece    GR   GRC 1966
## 7933                                                Greece    GR   GRC 1965
## 7934                                                Greece    GR   GRC 1964
## 7935                                                Greece    GR   GRC 1963
## 7936                                                Greece    GR   GRC 1962
## 7937                                                Greece    GR   GRC 1961
## 7938                                                Greece    GR   GRC 1960
## 7939                                             Greenland    GL   GRL 2022
## 7940                                             Greenland    GL   GRL 2021
## 7941                                             Greenland    GL   GRL 2020
## 7942                                             Greenland    GL   GRL 2019
## 7943                                             Greenland    GL   GRL 2018
## 7944                                             Greenland    GL   GRL 2017
## 7945                                             Greenland    GL   GRL 2016
## 7946                                             Greenland    GL   GRL 2015
## 7947                                             Greenland    GL   GRL 2014
## 7948                                             Greenland    GL   GRL 2013
## 7949                                             Greenland    GL   GRL 2012
## 7950                                             Greenland    GL   GRL 2011
## 7951                                             Greenland    GL   GRL 2010
## 7952                                             Greenland    GL   GRL 2009
## 7953                                             Greenland    GL   GRL 2008
## 7954                                             Greenland    GL   GRL 2007
## 7955                                             Greenland    GL   GRL 2006
## 7956                                             Greenland    GL   GRL 2005
## 7957                                             Greenland    GL   GRL 2004
## 7958                                             Greenland    GL   GRL 2003
## 7959                                             Greenland    GL   GRL 2002
## 7960                                             Greenland    GL   GRL 2001
## 7961                                             Greenland    GL   GRL 2000
## 7962                                             Greenland    GL   GRL 1999
## 7963                                             Greenland    GL   GRL 1998
## 7964                                             Greenland    GL   GRL 1997
## 7965                                             Greenland    GL   GRL 1996
## 7966                                             Greenland    GL   GRL 1995
## 7967                                             Greenland    GL   GRL 1994
## 7968                                             Greenland    GL   GRL 1993
## 7969                                             Greenland    GL   GRL 1992
## 7970                                             Greenland    GL   GRL 1991
## 7971                                             Greenland    GL   GRL 1990
## 7972                                             Greenland    GL   GRL 1989
## 7973                                             Greenland    GL   GRL 1988
## 7974                                             Greenland    GL   GRL 1987
## 7975                                             Greenland    GL   GRL 1986
## 7976                                             Greenland    GL   GRL 1985
## 7977                                             Greenland    GL   GRL 1984
## 7978                                             Greenland    GL   GRL 1983
## 7979                                             Greenland    GL   GRL 1982
## 7980                                             Greenland    GL   GRL 1981
## 7981                                             Greenland    GL   GRL 1980
## 7982                                             Greenland    GL   GRL 1979
## 7983                                             Greenland    GL   GRL 1978
## 7984                                             Greenland    GL   GRL 1977
## 7985                                             Greenland    GL   GRL 1976
## 7986                                             Greenland    GL   GRL 1975
## 7987                                             Greenland    GL   GRL 1974
## 7988                                             Greenland    GL   GRL 1973
## 7989                                             Greenland    GL   GRL 1972
## 7990                                             Greenland    GL   GRL 1971
## 7991                                             Greenland    GL   GRL 1970
## 7992                                             Greenland    GL   GRL 1969
## 7993                                             Greenland    GL   GRL 1968
## 7994                                             Greenland    GL   GRL 1967
## 7995                                             Greenland    GL   GRL 1966
## 7996                                             Greenland    GL   GRL 1965
## 7997                                             Greenland    GL   GRL 1964
## 7998                                             Greenland    GL   GRL 1963
## 7999                                             Greenland    GL   GRL 1962
## 8000                                             Greenland    GL   GRL 1961
## 8001                                             Greenland    GL   GRL 1960
## 8002                                               Grenada    GD   GRD 2022
## 8003                                               Grenada    GD   GRD 2021
## 8004                                               Grenada    GD   GRD 2020
## 8005                                               Grenada    GD   GRD 2019
## 8006                                               Grenada    GD   GRD 2018
## 8007                                               Grenada    GD   GRD 2017
## 8008                                               Grenada    GD   GRD 2016
## 8009                                               Grenada    GD   GRD 2015
## 8010                                               Grenada    GD   GRD 2014
## 8011                                               Grenada    GD   GRD 2013
## 8012                                               Grenada    GD   GRD 2012
## 8013                                               Grenada    GD   GRD 2011
## 8014                                               Grenada    GD   GRD 2010
## 8015                                               Grenada    GD   GRD 2009
## 8016                                               Grenada    GD   GRD 2008
## 8017                                               Grenada    GD   GRD 2007
## 8018                                               Grenada    GD   GRD 2006
## 8019                                               Grenada    GD   GRD 2005
## 8020                                               Grenada    GD   GRD 2004
## 8021                                               Grenada    GD   GRD 2003
## 8022                                               Grenada    GD   GRD 2002
## 8023                                               Grenada    GD   GRD 2001
## 8024                                               Grenada    GD   GRD 2000
## 8025                                               Grenada    GD   GRD 1999
## 8026                                               Grenada    GD   GRD 1998
## 8027                                               Grenada    GD   GRD 1997
## 8028                                               Grenada    GD   GRD 1996
## 8029                                               Grenada    GD   GRD 1995
## 8030                                               Grenada    GD   GRD 1994
## 8031                                               Grenada    GD   GRD 1993
## 8032                                               Grenada    GD   GRD 1992
## 8033                                               Grenada    GD   GRD 1991
## 8034                                               Grenada    GD   GRD 1990
## 8035                                               Grenada    GD   GRD 1989
## 8036                                               Grenada    GD   GRD 1988
## 8037                                               Grenada    GD   GRD 1987
## 8038                                               Grenada    GD   GRD 1986
## 8039                                               Grenada    GD   GRD 1985
## 8040                                               Grenada    GD   GRD 1984
## 8041                                               Grenada    GD   GRD 1983
## 8042                                               Grenada    GD   GRD 1982
## 8043                                               Grenada    GD   GRD 1981
## 8044                                               Grenada    GD   GRD 1980
## 8045                                               Grenada    GD   GRD 1979
## 8046                                               Grenada    GD   GRD 1978
## 8047                                               Grenada    GD   GRD 1977
## 8048                                               Grenada    GD   GRD 1976
## 8049                                               Grenada    GD   GRD 1975
## 8050                                               Grenada    GD   GRD 1974
## 8051                                               Grenada    GD   GRD 1973
## 8052                                               Grenada    GD   GRD 1972
## 8053                                               Grenada    GD   GRD 1971
## 8054                                               Grenada    GD   GRD 1970
## 8055                                               Grenada    GD   GRD 1969
## 8056                                               Grenada    GD   GRD 1968
## 8057                                               Grenada    GD   GRD 1967
## 8058                                               Grenada    GD   GRD 1966
## 8059                                               Grenada    GD   GRD 1965
## 8060                                               Grenada    GD   GRD 1964
## 8061                                               Grenada    GD   GRD 1963
## 8062                                               Grenada    GD   GRD 1962
## 8063                                               Grenada    GD   GRD 1961
## 8064                                               Grenada    GD   GRD 1960
## 8065                                                  Guam    GU   GUM 2022
## 8066                                                  Guam    GU   GUM 2021
## 8067                                                  Guam    GU   GUM 2020
## 8068                                                  Guam    GU   GUM 2019
## 8069                                                  Guam    GU   GUM 2018
## 8070                                                  Guam    GU   GUM 2017
## 8071                                                  Guam    GU   GUM 2016
## 8072                                                  Guam    GU   GUM 2015
## 8073                                                  Guam    GU   GUM 2014
## 8074                                                  Guam    GU   GUM 2013
## 8075                                                  Guam    GU   GUM 2012
## 8076                                                  Guam    GU   GUM 2011
## 8077                                                  Guam    GU   GUM 2010
## 8078                                                  Guam    GU   GUM 2009
## 8079                                                  Guam    GU   GUM 2008
## 8080                                                  Guam    GU   GUM 2007
## 8081                                                  Guam    GU   GUM 2006
## 8082                                                  Guam    GU   GUM 2005
## 8083                                                  Guam    GU   GUM 2004
## 8084                                                  Guam    GU   GUM 2003
## 8085                                                  Guam    GU   GUM 2002
## 8086                                                  Guam    GU   GUM 2001
## 8087                                                  Guam    GU   GUM 2000
## 8088                                                  Guam    GU   GUM 1999
## 8089                                                  Guam    GU   GUM 1998
## 8090                                                  Guam    GU   GUM 1997
## 8091                                                  Guam    GU   GUM 1996
## 8092                                                  Guam    GU   GUM 1995
## 8093                                                  Guam    GU   GUM 1994
## 8094                                                  Guam    GU   GUM 1993
## 8095                                                  Guam    GU   GUM 1992
## 8096                                                  Guam    GU   GUM 1991
## 8097                                                  Guam    GU   GUM 1990
## 8098                                                  Guam    GU   GUM 1989
## 8099                                                  Guam    GU   GUM 1988
## 8100                                                  Guam    GU   GUM 1987
## 8101                                                  Guam    GU   GUM 1986
## 8102                                                  Guam    GU   GUM 1985
## 8103                                                  Guam    GU   GUM 1984
## 8104                                                  Guam    GU   GUM 1983
## 8105                                                  Guam    GU   GUM 1982
## 8106                                                  Guam    GU   GUM 1981
## 8107                                                  Guam    GU   GUM 1980
## 8108                                                  Guam    GU   GUM 1979
## 8109                                                  Guam    GU   GUM 1978
## 8110                                                  Guam    GU   GUM 1977
## 8111                                                  Guam    GU   GUM 1976
## 8112                                                  Guam    GU   GUM 1975
## 8113                                                  Guam    GU   GUM 1974
## 8114                                                  Guam    GU   GUM 1973
## 8115                                                  Guam    GU   GUM 1972
## 8116                                                  Guam    GU   GUM 1971
## 8117                                                  Guam    GU   GUM 1970
## 8118                                                  Guam    GU   GUM 1969
## 8119                                                  Guam    GU   GUM 1968
## 8120                                                  Guam    GU   GUM 1967
## 8121                                                  Guam    GU   GUM 1966
## 8122                                                  Guam    GU   GUM 1965
## 8123                                                  Guam    GU   GUM 1964
## 8124                                                  Guam    GU   GUM 1963
## 8125                                                  Guam    GU   GUM 1962
## 8126                                                  Guam    GU   GUM 1961
## 8127                                                  Guam    GU   GUM 1960
## 8128                                             Guatemala    GT   GTM 2022
## 8129                                             Guatemala    GT   GTM 2021
## 8130                                             Guatemala    GT   GTM 2020
## 8131                                             Guatemala    GT   GTM 2019
## 8132                                             Guatemala    GT   GTM 2018
## 8133                                             Guatemala    GT   GTM 2017
## 8134                                             Guatemala    GT   GTM 2016
## 8135                                             Guatemala    GT   GTM 2015
## 8136                                             Guatemala    GT   GTM 2014
## 8137                                             Guatemala    GT   GTM 2013
## 8138                                             Guatemala    GT   GTM 2012
## 8139                                             Guatemala    GT   GTM 2011
## 8140                                             Guatemala    GT   GTM 2010
## 8141                                             Guatemala    GT   GTM 2009
## 8142                                             Guatemala    GT   GTM 2008
## 8143                                             Guatemala    GT   GTM 2007
## 8144                                             Guatemala    GT   GTM 2006
## 8145                                             Guatemala    GT   GTM 2005
## 8146                                             Guatemala    GT   GTM 2004
## 8147                                             Guatemala    GT   GTM 2003
## 8148                                             Guatemala    GT   GTM 2002
## 8149                                             Guatemala    GT   GTM 2001
## 8150                                             Guatemala    GT   GTM 2000
## 8151                                             Guatemala    GT   GTM 1999
## 8152                                             Guatemala    GT   GTM 1998
## 8153                                             Guatemala    GT   GTM 1997
## 8154                                             Guatemala    GT   GTM 1996
## 8155                                             Guatemala    GT   GTM 1995
## 8156                                             Guatemala    GT   GTM 1994
## 8157                                             Guatemala    GT   GTM 1993
## 8158                                             Guatemala    GT   GTM 1992
## 8159                                             Guatemala    GT   GTM 1991
## 8160                                             Guatemala    GT   GTM 1990
## 8161                                             Guatemala    GT   GTM 1989
## 8162                                             Guatemala    GT   GTM 1988
## 8163                                             Guatemala    GT   GTM 1987
## 8164                                             Guatemala    GT   GTM 1986
## 8165                                             Guatemala    GT   GTM 1985
## 8166                                             Guatemala    GT   GTM 1984
## 8167                                             Guatemala    GT   GTM 1983
## 8168                                             Guatemala    GT   GTM 1982
## 8169                                             Guatemala    GT   GTM 1981
## 8170                                             Guatemala    GT   GTM 1980
## 8171                                             Guatemala    GT   GTM 1979
## 8172                                             Guatemala    GT   GTM 1978
## 8173                                             Guatemala    GT   GTM 1977
## 8174                                             Guatemala    GT   GTM 1976
## 8175                                             Guatemala    GT   GTM 1975
## 8176                                             Guatemala    GT   GTM 1974
## 8177                                             Guatemala    GT   GTM 1973
## 8178                                             Guatemala    GT   GTM 1972
## 8179                                             Guatemala    GT   GTM 1971
## 8180                                             Guatemala    GT   GTM 1970
## 8181                                             Guatemala    GT   GTM 1969
## 8182                                             Guatemala    GT   GTM 1968
## 8183                                             Guatemala    GT   GTM 1967
## 8184                                             Guatemala    GT   GTM 1966
## 8185                                             Guatemala    GT   GTM 1965
## 8186                                             Guatemala    GT   GTM 1964
## 8187                                             Guatemala    GT   GTM 1963
## 8188                                             Guatemala    GT   GTM 1962
## 8189                                             Guatemala    GT   GTM 1961
## 8190                                             Guatemala    GT   GTM 1960
## 8191                                                Guinea    GN   GIN 2022
## 8192                                                Guinea    GN   GIN 2021
## 8193                                                Guinea    GN   GIN 2020
## 8194                                                Guinea    GN   GIN 2019
## 8195                                                Guinea    GN   GIN 2018
## 8196                                                Guinea    GN   GIN 2017
## 8197                                                Guinea    GN   GIN 2016
## 8198                                                Guinea    GN   GIN 2015
## 8199                                                Guinea    GN   GIN 2014
## 8200                                                Guinea    GN   GIN 2013
## 8201                                                Guinea    GN   GIN 2012
## 8202                                                Guinea    GN   GIN 2011
## 8203                                                Guinea    GN   GIN 2010
## 8204                                                Guinea    GN   GIN 2009
## 8205                                                Guinea    GN   GIN 2008
## 8206                                                Guinea    GN   GIN 2007
## 8207                                                Guinea    GN   GIN 2006
## 8208                                                Guinea    GN   GIN 2005
## 8209                                                Guinea    GN   GIN 2004
## 8210                                                Guinea    GN   GIN 2003
## 8211                                                Guinea    GN   GIN 2002
## 8212                                                Guinea    GN   GIN 2001
## 8213                                                Guinea    GN   GIN 2000
## 8214                                                Guinea    GN   GIN 1999
## 8215                                                Guinea    GN   GIN 1998
## 8216                                                Guinea    GN   GIN 1997
## 8217                                                Guinea    GN   GIN 1996
## 8218                                                Guinea    GN   GIN 1995
## 8219                                                Guinea    GN   GIN 1994
## 8220                                                Guinea    GN   GIN 1993
## 8221                                                Guinea    GN   GIN 1992
## 8222                                                Guinea    GN   GIN 1991
## 8223                                                Guinea    GN   GIN 1990
## 8224                                                Guinea    GN   GIN 1989
## 8225                                                Guinea    GN   GIN 1988
## 8226                                                Guinea    GN   GIN 1987
## 8227                                                Guinea    GN   GIN 1986
## 8228                                                Guinea    GN   GIN 1985
## 8229                                                Guinea    GN   GIN 1984
## 8230                                                Guinea    GN   GIN 1983
## 8231                                                Guinea    GN   GIN 1982
## 8232                                                Guinea    GN   GIN 1981
## 8233                                                Guinea    GN   GIN 1980
## 8234                                                Guinea    GN   GIN 1979
## 8235                                                Guinea    GN   GIN 1978
## 8236                                                Guinea    GN   GIN 1977
## 8237                                                Guinea    GN   GIN 1976
## 8238                                                Guinea    GN   GIN 1975
## 8239                                                Guinea    GN   GIN 1974
## 8240                                                Guinea    GN   GIN 1973
## 8241                                                Guinea    GN   GIN 1972
## 8242                                                Guinea    GN   GIN 1971
## 8243                                                Guinea    GN   GIN 1970
## 8244                                                Guinea    GN   GIN 1969
## 8245                                                Guinea    GN   GIN 1968
## 8246                                                Guinea    GN   GIN 1967
## 8247                                                Guinea    GN   GIN 1966
## 8248                                                Guinea    GN   GIN 1965
## 8249                                                Guinea    GN   GIN 1964
## 8250                                                Guinea    GN   GIN 1963
## 8251                                                Guinea    GN   GIN 1962
## 8252                                                Guinea    GN   GIN 1961
## 8253                                                Guinea    GN   GIN 1960
## 8254                                         Guinea-Bissau    GW   GNB 2022
## 8255                                         Guinea-Bissau    GW   GNB 2021
## 8256                                         Guinea-Bissau    GW   GNB 2020
## 8257                                         Guinea-Bissau    GW   GNB 2019
## 8258                                         Guinea-Bissau    GW   GNB 2018
## 8259                                         Guinea-Bissau    GW   GNB 2017
## 8260                                         Guinea-Bissau    GW   GNB 2016
## 8261                                         Guinea-Bissau    GW   GNB 2015
## 8262                                         Guinea-Bissau    GW   GNB 2014
## 8263                                         Guinea-Bissau    GW   GNB 2013
## 8264                                         Guinea-Bissau    GW   GNB 2012
## 8265                                         Guinea-Bissau    GW   GNB 2011
## 8266                                         Guinea-Bissau    GW   GNB 2010
## 8267                                         Guinea-Bissau    GW   GNB 2009
## 8268                                         Guinea-Bissau    GW   GNB 2008
## 8269                                         Guinea-Bissau    GW   GNB 2007
## 8270                                         Guinea-Bissau    GW   GNB 2006
## 8271                                         Guinea-Bissau    GW   GNB 2005
## 8272                                         Guinea-Bissau    GW   GNB 2004
## 8273                                         Guinea-Bissau    GW   GNB 2003
## 8274                                         Guinea-Bissau    GW   GNB 2002
## 8275                                         Guinea-Bissau    GW   GNB 2001
## 8276                                         Guinea-Bissau    GW   GNB 2000
## 8277                                         Guinea-Bissau    GW   GNB 1999
## 8278                                         Guinea-Bissau    GW   GNB 1998
## 8279                                         Guinea-Bissau    GW   GNB 1997
## 8280                                         Guinea-Bissau    GW   GNB 1996
## 8281                                         Guinea-Bissau    GW   GNB 1995
## 8282                                         Guinea-Bissau    GW   GNB 1994
## 8283                                         Guinea-Bissau    GW   GNB 1993
## 8284                                         Guinea-Bissau    GW   GNB 1992
## 8285                                         Guinea-Bissau    GW   GNB 1991
## 8286                                         Guinea-Bissau    GW   GNB 1990
## 8287                                         Guinea-Bissau    GW   GNB 1989
## 8288                                         Guinea-Bissau    GW   GNB 1988
## 8289                                         Guinea-Bissau    GW   GNB 1987
## 8290                                         Guinea-Bissau    GW   GNB 1986
## 8291                                         Guinea-Bissau    GW   GNB 1985
## 8292                                         Guinea-Bissau    GW   GNB 1984
## 8293                                         Guinea-Bissau    GW   GNB 1983
## 8294                                         Guinea-Bissau    GW   GNB 1982
## 8295                                         Guinea-Bissau    GW   GNB 1981
## 8296                                         Guinea-Bissau    GW   GNB 1980
## 8297                                         Guinea-Bissau    GW   GNB 1979
## 8298                                         Guinea-Bissau    GW   GNB 1978
## 8299                                         Guinea-Bissau    GW   GNB 1977
## 8300                                         Guinea-Bissau    GW   GNB 1976
## 8301                                         Guinea-Bissau    GW   GNB 1975
## 8302                                         Guinea-Bissau    GW   GNB 1974
## 8303                                         Guinea-Bissau    GW   GNB 1973
## 8304                                         Guinea-Bissau    GW   GNB 1972
## 8305                                         Guinea-Bissau    GW   GNB 1971
## 8306                                         Guinea-Bissau    GW   GNB 1970
## 8307                                         Guinea-Bissau    GW   GNB 1969
## 8308                                         Guinea-Bissau    GW   GNB 1968
## 8309                                         Guinea-Bissau    GW   GNB 1967
## 8310                                         Guinea-Bissau    GW   GNB 1966
## 8311                                         Guinea-Bissau    GW   GNB 1965
## 8312                                         Guinea-Bissau    GW   GNB 1964
## 8313                                         Guinea-Bissau    GW   GNB 1963
## 8314                                         Guinea-Bissau    GW   GNB 1962
## 8315                                         Guinea-Bissau    GW   GNB 1961
## 8316                                         Guinea-Bissau    GW   GNB 1960
## 8317                                                Guyana    GY   GUY 2022
## 8318                                                Guyana    GY   GUY 2021
## 8319                                                Guyana    GY   GUY 2020
## 8320                                                Guyana    GY   GUY 2019
## 8321                                                Guyana    GY   GUY 2018
## 8322                                                Guyana    GY   GUY 2017
## 8323                                                Guyana    GY   GUY 2016
## 8324                                                Guyana    GY   GUY 2015
## 8325                                                Guyana    GY   GUY 2014
## 8326                                                Guyana    GY   GUY 2013
## 8327                                                Guyana    GY   GUY 2012
## 8328                                                Guyana    GY   GUY 2011
## 8329                                                Guyana    GY   GUY 2010
## 8330                                                Guyana    GY   GUY 2009
## 8331                                                Guyana    GY   GUY 2008
## 8332                                                Guyana    GY   GUY 2007
## 8333                                                Guyana    GY   GUY 2006
## 8334                                                Guyana    GY   GUY 2005
## 8335                                                Guyana    GY   GUY 2004
## 8336                                                Guyana    GY   GUY 2003
## 8337                                                Guyana    GY   GUY 2002
## 8338                                                Guyana    GY   GUY 2001
## 8339                                                Guyana    GY   GUY 2000
## 8340                                                Guyana    GY   GUY 1999
## 8341                                                Guyana    GY   GUY 1998
## 8342                                                Guyana    GY   GUY 1997
## 8343                                                Guyana    GY   GUY 1996
## 8344                                                Guyana    GY   GUY 1995
## 8345                                                Guyana    GY   GUY 1994
## 8346                                                Guyana    GY   GUY 1993
## 8347                                                Guyana    GY   GUY 1992
## 8348                                                Guyana    GY   GUY 1991
## 8349                                                Guyana    GY   GUY 1990
## 8350                                                Guyana    GY   GUY 1989
## 8351                                                Guyana    GY   GUY 1988
## 8352                                                Guyana    GY   GUY 1987
## 8353                                                Guyana    GY   GUY 1986
## 8354                                                Guyana    GY   GUY 1985
## 8355                                                Guyana    GY   GUY 1984
## 8356                                                Guyana    GY   GUY 1983
## 8357                                                Guyana    GY   GUY 1982
## 8358                                                Guyana    GY   GUY 1981
## 8359                                                Guyana    GY   GUY 1980
## 8360                                                Guyana    GY   GUY 1979
## 8361                                                Guyana    GY   GUY 1978
## 8362                                                Guyana    GY   GUY 1977
## 8363                                                Guyana    GY   GUY 1976
## 8364                                                Guyana    GY   GUY 1975
## 8365                                                Guyana    GY   GUY 1974
## 8366                                                Guyana    GY   GUY 1973
## 8367                                                Guyana    GY   GUY 1972
## 8368                                                Guyana    GY   GUY 1971
## 8369                                                Guyana    GY   GUY 1970
## 8370                                                Guyana    GY   GUY 1969
## 8371                                                Guyana    GY   GUY 1968
## 8372                                                Guyana    GY   GUY 1967
## 8373                                                Guyana    GY   GUY 1966
## 8374                                                Guyana    GY   GUY 1965
## 8375                                                Guyana    GY   GUY 1964
## 8376                                                Guyana    GY   GUY 1963
## 8377                                                Guyana    GY   GUY 1962
## 8378                                                Guyana    GY   GUY 1961
## 8379                                                Guyana    GY   GUY 1960
## 8380                                                 Haiti    HT   HTI 2022
## 8381                                                 Haiti    HT   HTI 2021
## 8382                                                 Haiti    HT   HTI 2020
## 8383                                                 Haiti    HT   HTI 2019
## 8384                                                 Haiti    HT   HTI 2018
## 8385                                                 Haiti    HT   HTI 2017
## 8386                                                 Haiti    HT   HTI 2016
## 8387                                                 Haiti    HT   HTI 2015
## 8388                                                 Haiti    HT   HTI 2014
## 8389                                                 Haiti    HT   HTI 2013
## 8390                                                 Haiti    HT   HTI 2012
## 8391                                                 Haiti    HT   HTI 2011
## 8392                                                 Haiti    HT   HTI 2010
## 8393                                                 Haiti    HT   HTI 2009
## 8394                                                 Haiti    HT   HTI 2008
## 8395                                                 Haiti    HT   HTI 2007
## 8396                                                 Haiti    HT   HTI 2006
## 8397                                                 Haiti    HT   HTI 2005
## 8398                                                 Haiti    HT   HTI 2004
## 8399                                                 Haiti    HT   HTI 2003
## 8400                                                 Haiti    HT   HTI 2002
## 8401                                                 Haiti    HT   HTI 2001
## 8402                                                 Haiti    HT   HTI 2000
## 8403                                                 Haiti    HT   HTI 1999
## 8404                                                 Haiti    HT   HTI 1998
## 8405                                                 Haiti    HT   HTI 1997
## 8406                                                 Haiti    HT   HTI 1996
## 8407                                                 Haiti    HT   HTI 1995
## 8408                                                 Haiti    HT   HTI 1994
## 8409                                                 Haiti    HT   HTI 1993
## 8410                                                 Haiti    HT   HTI 1992
## 8411                                                 Haiti    HT   HTI 1991
## 8412                                                 Haiti    HT   HTI 1990
## 8413                                                 Haiti    HT   HTI 1989
## 8414                                                 Haiti    HT   HTI 1988
## 8415                                                 Haiti    HT   HTI 1987
## 8416                                                 Haiti    HT   HTI 1986
## 8417                                                 Haiti    HT   HTI 1985
## 8418                                                 Haiti    HT   HTI 1984
## 8419                                                 Haiti    HT   HTI 1983
## 8420                                                 Haiti    HT   HTI 1982
## 8421                                                 Haiti    HT   HTI 1981
## 8422                                                 Haiti    HT   HTI 1980
## 8423                                                 Haiti    HT   HTI 1979
## 8424                                                 Haiti    HT   HTI 1978
## 8425                                                 Haiti    HT   HTI 1977
## 8426                                                 Haiti    HT   HTI 1976
## 8427                                                 Haiti    HT   HTI 1975
## 8428                                                 Haiti    HT   HTI 1974
## 8429                                                 Haiti    HT   HTI 1973
## 8430                                                 Haiti    HT   HTI 1972
## 8431                                                 Haiti    HT   HTI 1971
## 8432                                                 Haiti    HT   HTI 1970
## 8433                                                 Haiti    HT   HTI 1969
## 8434                                                 Haiti    HT   HTI 1968
## 8435                                                 Haiti    HT   HTI 1967
## 8436                                                 Haiti    HT   HTI 1966
## 8437                                                 Haiti    HT   HTI 1965
## 8438                                                 Haiti    HT   HTI 1964
## 8439                                                 Haiti    HT   HTI 1963
## 8440                                                 Haiti    HT   HTI 1962
## 8441                                                 Haiti    HT   HTI 1961
## 8442                                                 Haiti    HT   HTI 1960
## 8443                                              Honduras    HN   HND 2022
## 8444                                              Honduras    HN   HND 2021
## 8445                                              Honduras    HN   HND 2020
## 8446                                              Honduras    HN   HND 2019
## 8447                                              Honduras    HN   HND 2018
## 8448                                              Honduras    HN   HND 2017
## 8449                                              Honduras    HN   HND 2016
## 8450                                              Honduras    HN   HND 2015
## 8451                                              Honduras    HN   HND 2014
## 8452                                              Honduras    HN   HND 2013
## 8453                                              Honduras    HN   HND 2012
## 8454                                              Honduras    HN   HND 2011
## 8455                                              Honduras    HN   HND 2010
## 8456                                              Honduras    HN   HND 2009
## 8457                                              Honduras    HN   HND 2008
## 8458                                              Honduras    HN   HND 2007
## 8459                                              Honduras    HN   HND 2006
## 8460                                              Honduras    HN   HND 2005
## 8461                                              Honduras    HN   HND 2004
## 8462                                              Honduras    HN   HND 2003
## 8463                                              Honduras    HN   HND 2002
## 8464                                              Honduras    HN   HND 2001
## 8465                                              Honduras    HN   HND 2000
## 8466                                              Honduras    HN   HND 1999
## 8467                                              Honduras    HN   HND 1998
## 8468                                              Honduras    HN   HND 1997
## 8469                                              Honduras    HN   HND 1996
## 8470                                              Honduras    HN   HND 1995
## 8471                                              Honduras    HN   HND 1994
## 8472                                              Honduras    HN   HND 1993
## 8473                                              Honduras    HN   HND 1992
## 8474                                              Honduras    HN   HND 1991
## 8475                                              Honduras    HN   HND 1990
## 8476                                              Honduras    HN   HND 1989
## 8477                                              Honduras    HN   HND 1988
## 8478                                              Honduras    HN   HND 1987
## 8479                                              Honduras    HN   HND 1986
## 8480                                              Honduras    HN   HND 1985
## 8481                                              Honduras    HN   HND 1984
## 8482                                              Honduras    HN   HND 1983
## 8483                                              Honduras    HN   HND 1982
## 8484                                              Honduras    HN   HND 1981
## 8485                                              Honduras    HN   HND 1980
## 8486                                              Honduras    HN   HND 1979
## 8487                                              Honduras    HN   HND 1978
## 8488                                              Honduras    HN   HND 1977
## 8489                                              Honduras    HN   HND 1976
## 8490                                              Honduras    HN   HND 1975
## 8491                                              Honduras    HN   HND 1974
## 8492                                              Honduras    HN   HND 1973
## 8493                                              Honduras    HN   HND 1972
## 8494                                              Honduras    HN   HND 1971
## 8495                                              Honduras    HN   HND 1970
## 8496                                              Honduras    HN   HND 1969
## 8497                                              Honduras    HN   HND 1968
## 8498                                              Honduras    HN   HND 1967
## 8499                                              Honduras    HN   HND 1966
## 8500                                              Honduras    HN   HND 1965
## 8501                                              Honduras    HN   HND 1964
## 8502                                              Honduras    HN   HND 1963
## 8503                                              Honduras    HN   HND 1962
## 8504                                              Honduras    HN   HND 1961
## 8505                                              Honduras    HN   HND 1960
## 8506                                  Hong Kong SAR, China    HK   HKG 2022
## 8507                                  Hong Kong SAR, China    HK   HKG 2021
## 8508                                  Hong Kong SAR, China    HK   HKG 2020
## 8509                                  Hong Kong SAR, China    HK   HKG 2019
## 8510                                  Hong Kong SAR, China    HK   HKG 2018
## 8511                                  Hong Kong SAR, China    HK   HKG 2017
## 8512                                  Hong Kong SAR, China    HK   HKG 2016
## 8513                                  Hong Kong SAR, China    HK   HKG 2015
## 8514                                  Hong Kong SAR, China    HK   HKG 2014
## 8515                                  Hong Kong SAR, China    HK   HKG 2013
## 8516                                  Hong Kong SAR, China    HK   HKG 2012
## 8517                                  Hong Kong SAR, China    HK   HKG 2011
## 8518                                  Hong Kong SAR, China    HK   HKG 2010
## 8519                                  Hong Kong SAR, China    HK   HKG 2009
## 8520                                  Hong Kong SAR, China    HK   HKG 2008
## 8521                                  Hong Kong SAR, China    HK   HKG 2007
## 8522                                  Hong Kong SAR, China    HK   HKG 2006
## 8523                                  Hong Kong SAR, China    HK   HKG 2005
## 8524                                  Hong Kong SAR, China    HK   HKG 2004
## 8525                                  Hong Kong SAR, China    HK   HKG 2003
## 8526                                  Hong Kong SAR, China    HK   HKG 2002
## 8527                                  Hong Kong SAR, China    HK   HKG 2001
## 8528                                  Hong Kong SAR, China    HK   HKG 2000
## 8529                                  Hong Kong SAR, China    HK   HKG 1999
## 8530                                  Hong Kong SAR, China    HK   HKG 1998
## 8531                                  Hong Kong SAR, China    HK   HKG 1997
## 8532                                  Hong Kong SAR, China    HK   HKG 1996
## 8533                                  Hong Kong SAR, China    HK   HKG 1995
## 8534                                  Hong Kong SAR, China    HK   HKG 1994
## 8535                                  Hong Kong SAR, China    HK   HKG 1993
## 8536                                  Hong Kong SAR, China    HK   HKG 1992
## 8537                                  Hong Kong SAR, China    HK   HKG 1991
## 8538                                  Hong Kong SAR, China    HK   HKG 1990
## 8539                                  Hong Kong SAR, China    HK   HKG 1989
## 8540                                  Hong Kong SAR, China    HK   HKG 1988
## 8541                                  Hong Kong SAR, China    HK   HKG 1987
## 8542                                  Hong Kong SAR, China    HK   HKG 1986
## 8543                                  Hong Kong SAR, China    HK   HKG 1985
## 8544                                  Hong Kong SAR, China    HK   HKG 1984
## 8545                                  Hong Kong SAR, China    HK   HKG 1983
## 8546                                  Hong Kong SAR, China    HK   HKG 1982
## 8547                                  Hong Kong SAR, China    HK   HKG 1981
## 8548                                  Hong Kong SAR, China    HK   HKG 1980
## 8549                                  Hong Kong SAR, China    HK   HKG 1979
## 8550                                  Hong Kong SAR, China    HK   HKG 1978
## 8551                                  Hong Kong SAR, China    HK   HKG 1977
## 8552                                  Hong Kong SAR, China    HK   HKG 1976
## 8553                                  Hong Kong SAR, China    HK   HKG 1975
## 8554                                  Hong Kong SAR, China    HK   HKG 1974
## 8555                                  Hong Kong SAR, China    HK   HKG 1973
## 8556                                  Hong Kong SAR, China    HK   HKG 1972
## 8557                                  Hong Kong SAR, China    HK   HKG 1971
## 8558                                  Hong Kong SAR, China    HK   HKG 1970
## 8559                                  Hong Kong SAR, China    HK   HKG 1969
## 8560                                  Hong Kong SAR, China    HK   HKG 1968
## 8561                                  Hong Kong SAR, China    HK   HKG 1967
## 8562                                  Hong Kong SAR, China    HK   HKG 1966
## 8563                                  Hong Kong SAR, China    HK   HKG 1965
## 8564                                  Hong Kong SAR, China    HK   HKG 1964
## 8565                                  Hong Kong SAR, China    HK   HKG 1963
## 8566                                  Hong Kong SAR, China    HK   HKG 1962
## 8567                                  Hong Kong SAR, China    HK   HKG 1961
## 8568                                  Hong Kong SAR, China    HK   HKG 1960
## 8569                                               Hungary    HU   HUN 2022
## 8570                                               Hungary    HU   HUN 2021
## 8571                                               Hungary    HU   HUN 2020
## 8572                                               Hungary    HU   HUN 2019
## 8573                                               Hungary    HU   HUN 2018
## 8574                                               Hungary    HU   HUN 2017
## 8575                                               Hungary    HU   HUN 2016
## 8576                                               Hungary    HU   HUN 2015
## 8577                                               Hungary    HU   HUN 2014
## 8578                                               Hungary    HU   HUN 2013
## 8579                                               Hungary    HU   HUN 2012
## 8580                                               Hungary    HU   HUN 2011
## 8581                                               Hungary    HU   HUN 2010
## 8582                                               Hungary    HU   HUN 2009
## 8583                                               Hungary    HU   HUN 2008
## 8584                                               Hungary    HU   HUN 2007
## 8585                                               Hungary    HU   HUN 2006
## 8586                                               Hungary    HU   HUN 2005
## 8587                                               Hungary    HU   HUN 2004
## 8588                                               Hungary    HU   HUN 2003
## 8589                                               Hungary    HU   HUN 2002
## 8590                                               Hungary    HU   HUN 2001
## 8591                                               Hungary    HU   HUN 2000
## 8592                                               Hungary    HU   HUN 1999
## 8593                                               Hungary    HU   HUN 1998
## 8594                                               Hungary    HU   HUN 1997
## 8595                                               Hungary    HU   HUN 1996
## 8596                                               Hungary    HU   HUN 1995
## 8597                                               Hungary    HU   HUN 1994
## 8598                                               Hungary    HU   HUN 1993
## 8599                                               Hungary    HU   HUN 1992
## 8600                                               Hungary    HU   HUN 1991
## 8601                                               Hungary    HU   HUN 1990
## 8602                                               Hungary    HU   HUN 1989
## 8603                                               Hungary    HU   HUN 1988
## 8604                                               Hungary    HU   HUN 1987
## 8605                                               Hungary    HU   HUN 1986
## 8606                                               Hungary    HU   HUN 1985
## 8607                                               Hungary    HU   HUN 1984
## 8608                                               Hungary    HU   HUN 1983
## 8609                                               Hungary    HU   HUN 1982
## 8610                                               Hungary    HU   HUN 1981
## 8611                                               Hungary    HU   HUN 1980
## 8612                                               Hungary    HU   HUN 1979
## 8613                                               Hungary    HU   HUN 1978
## 8614                                               Hungary    HU   HUN 1977
## 8615                                               Hungary    HU   HUN 1976
## 8616                                               Hungary    HU   HUN 1975
## 8617                                               Hungary    HU   HUN 1974
## 8618                                               Hungary    HU   HUN 1973
## 8619                                               Hungary    HU   HUN 1972
## 8620                                               Hungary    HU   HUN 1971
## 8621                                               Hungary    HU   HUN 1970
## 8622                                               Hungary    HU   HUN 1969
## 8623                                               Hungary    HU   HUN 1968
## 8624                                               Hungary    HU   HUN 1967
## 8625                                               Hungary    HU   HUN 1966
## 8626                                               Hungary    HU   HUN 1965
## 8627                                               Hungary    HU   HUN 1964
## 8628                                               Hungary    HU   HUN 1963
## 8629                                               Hungary    HU   HUN 1962
## 8630                                               Hungary    HU   HUN 1961
## 8631                                               Hungary    HU   HUN 1960
## 8632                                               Iceland    IS   ISL 2022
## 8633                                               Iceland    IS   ISL 2021
## 8634                                               Iceland    IS   ISL 2020
## 8635                                               Iceland    IS   ISL 2019
## 8636                                               Iceland    IS   ISL 2018
## 8637                                               Iceland    IS   ISL 2017
## 8638                                               Iceland    IS   ISL 2016
## 8639                                               Iceland    IS   ISL 2015
## 8640                                               Iceland    IS   ISL 2014
## 8641                                               Iceland    IS   ISL 2013
## 8642                                               Iceland    IS   ISL 2012
## 8643                                               Iceland    IS   ISL 2011
## 8644                                               Iceland    IS   ISL 2010
## 8645                                               Iceland    IS   ISL 2009
## 8646                                               Iceland    IS   ISL 2008
## 8647                                               Iceland    IS   ISL 2007
## 8648                                               Iceland    IS   ISL 2006
## 8649                                               Iceland    IS   ISL 2005
## 8650                                               Iceland    IS   ISL 2004
## 8651                                               Iceland    IS   ISL 2003
## 8652                                               Iceland    IS   ISL 2002
## 8653                                               Iceland    IS   ISL 2001
## 8654                                               Iceland    IS   ISL 2000
## 8655                                               Iceland    IS   ISL 1999
## 8656                                               Iceland    IS   ISL 1998
## 8657                                               Iceland    IS   ISL 1997
## 8658                                               Iceland    IS   ISL 1996
## 8659                                               Iceland    IS   ISL 1995
## 8660                                               Iceland    IS   ISL 1994
## 8661                                               Iceland    IS   ISL 1993
## 8662                                               Iceland    IS   ISL 1992
## 8663                                               Iceland    IS   ISL 1991
## 8664                                               Iceland    IS   ISL 1990
## 8665                                               Iceland    IS   ISL 1989
## 8666                                               Iceland    IS   ISL 1988
## 8667                                               Iceland    IS   ISL 1987
## 8668                                               Iceland    IS   ISL 1986
## 8669                                               Iceland    IS   ISL 1985
## 8670                                               Iceland    IS   ISL 1984
## 8671                                               Iceland    IS   ISL 1983
## 8672                                               Iceland    IS   ISL 1982
## 8673                                               Iceland    IS   ISL 1981
## 8674                                               Iceland    IS   ISL 1980
## 8675                                               Iceland    IS   ISL 1979
## 8676                                               Iceland    IS   ISL 1978
## 8677                                               Iceland    IS   ISL 1977
## 8678                                               Iceland    IS   ISL 1976
## 8679                                               Iceland    IS   ISL 1975
## 8680                                               Iceland    IS   ISL 1974
## 8681                                               Iceland    IS   ISL 1973
## 8682                                               Iceland    IS   ISL 1972
## 8683                                               Iceland    IS   ISL 1971
## 8684                                               Iceland    IS   ISL 1970
## 8685                                               Iceland    IS   ISL 1969
## 8686                                               Iceland    IS   ISL 1968
## 8687                                               Iceland    IS   ISL 1967
## 8688                                               Iceland    IS   ISL 1966
## 8689                                               Iceland    IS   ISL 1965
## 8690                                               Iceland    IS   ISL 1964
## 8691                                               Iceland    IS   ISL 1963
## 8692                                               Iceland    IS   ISL 1962
## 8693                                               Iceland    IS   ISL 1961
## 8694                                               Iceland    IS   ISL 1960
## 8695                                                 India    IN   IND 2022
## 8696                                                 India    IN   IND 2021
## 8697                                                 India    IN   IND 2020
## 8698                                                 India    IN   IND 2019
## 8699                                                 India    IN   IND 2018
## 8700                                                 India    IN   IND 2017
## 8701                                                 India    IN   IND 2016
## 8702                                                 India    IN   IND 2015
## 8703                                                 India    IN   IND 2014
## 8704                                                 India    IN   IND 2013
## 8705                                                 India    IN   IND 2012
## 8706                                                 India    IN   IND 2011
## 8707                                                 India    IN   IND 2010
## 8708                                                 India    IN   IND 2009
## 8709                                                 India    IN   IND 2008
## 8710                                                 India    IN   IND 2007
## 8711                                                 India    IN   IND 2006
## 8712                                                 India    IN   IND 2005
## 8713                                                 India    IN   IND 2004
## 8714                                                 India    IN   IND 2003
## 8715                                                 India    IN   IND 2002
## 8716                                                 India    IN   IND 2001
## 8717                                                 India    IN   IND 2000
## 8718                                                 India    IN   IND 1999
## 8719                                                 India    IN   IND 1998
## 8720                                                 India    IN   IND 1997
## 8721                                                 India    IN   IND 1996
## 8722                                                 India    IN   IND 1995
## 8723                                                 India    IN   IND 1994
## 8724                                                 India    IN   IND 1993
## 8725                                                 India    IN   IND 1992
## 8726                                                 India    IN   IND 1991
## 8727                                                 India    IN   IND 1990
## 8728                                                 India    IN   IND 1989
## 8729                                                 India    IN   IND 1988
## 8730                                                 India    IN   IND 1987
## 8731                                                 India    IN   IND 1986
## 8732                                                 India    IN   IND 1985
## 8733                                                 India    IN   IND 1984
## 8734                                                 India    IN   IND 1983
## 8735                                                 India    IN   IND 1982
## 8736                                                 India    IN   IND 1981
## 8737                                                 India    IN   IND 1980
## 8738                                                 India    IN   IND 1979
## 8739                                                 India    IN   IND 1978
## 8740                                                 India    IN   IND 1977
## 8741                                                 India    IN   IND 1976
## 8742                                                 India    IN   IND 1975
## 8743                                                 India    IN   IND 1974
## 8744                                                 India    IN   IND 1973
## 8745                                                 India    IN   IND 1972
## 8746                                                 India    IN   IND 1971
## 8747                                                 India    IN   IND 1970
## 8748                                                 India    IN   IND 1969
## 8749                                                 India    IN   IND 1968
## 8750                                                 India    IN   IND 1967
## 8751                                                 India    IN   IND 1966
## 8752                                                 India    IN   IND 1965
## 8753                                                 India    IN   IND 1964
## 8754                                                 India    IN   IND 1963
## 8755                                                 India    IN   IND 1962
## 8756                                                 India    IN   IND 1961
## 8757                                                 India    IN   IND 1960
## 8758                                             Indonesia    ID   IDN 2022
## 8759                                             Indonesia    ID   IDN 2021
## 8760                                             Indonesia    ID   IDN 2020
## 8761                                             Indonesia    ID   IDN 2019
## 8762                                             Indonesia    ID   IDN 2018
## 8763                                             Indonesia    ID   IDN 2017
## 8764                                             Indonesia    ID   IDN 2016
## 8765                                             Indonesia    ID   IDN 2015
## 8766                                             Indonesia    ID   IDN 2014
## 8767                                             Indonesia    ID   IDN 2013
## 8768                                             Indonesia    ID   IDN 2012
## 8769                                             Indonesia    ID   IDN 2011
## 8770                                             Indonesia    ID   IDN 2010
## 8771                                             Indonesia    ID   IDN 2009
## 8772                                             Indonesia    ID   IDN 2008
## 8773                                             Indonesia    ID   IDN 2007
## 8774                                             Indonesia    ID   IDN 2006
## 8775                                             Indonesia    ID   IDN 2005
## 8776                                             Indonesia    ID   IDN 2004
## 8777                                             Indonesia    ID   IDN 2003
## 8778                                             Indonesia    ID   IDN 2002
## 8779                                             Indonesia    ID   IDN 2001
## 8780                                             Indonesia    ID   IDN 2000
## 8781                                             Indonesia    ID   IDN 1999
## 8782                                             Indonesia    ID   IDN 1998
## 8783                                             Indonesia    ID   IDN 1997
## 8784                                             Indonesia    ID   IDN 1996
## 8785                                             Indonesia    ID   IDN 1995
## 8786                                             Indonesia    ID   IDN 1994
## 8787                                             Indonesia    ID   IDN 1993
## 8788                                             Indonesia    ID   IDN 1992
## 8789                                             Indonesia    ID   IDN 1991
## 8790                                             Indonesia    ID   IDN 1990
## 8791                                             Indonesia    ID   IDN 1989
## 8792                                             Indonesia    ID   IDN 1988
## 8793                                             Indonesia    ID   IDN 1987
## 8794                                             Indonesia    ID   IDN 1986
## 8795                                             Indonesia    ID   IDN 1985
## 8796                                             Indonesia    ID   IDN 1984
## 8797                                             Indonesia    ID   IDN 1983
## 8798                                             Indonesia    ID   IDN 1982
## 8799                                             Indonesia    ID   IDN 1981
## 8800                                             Indonesia    ID   IDN 1980
## 8801                                             Indonesia    ID   IDN 1979
## 8802                                             Indonesia    ID   IDN 1978
## 8803                                             Indonesia    ID   IDN 1977
## 8804                                             Indonesia    ID   IDN 1976
## 8805                                             Indonesia    ID   IDN 1975
## 8806                                             Indonesia    ID   IDN 1974
## 8807                                             Indonesia    ID   IDN 1973
## 8808                                             Indonesia    ID   IDN 1972
## 8809                                             Indonesia    ID   IDN 1971
## 8810                                             Indonesia    ID   IDN 1970
## 8811                                             Indonesia    ID   IDN 1969
## 8812                                             Indonesia    ID   IDN 1968
## 8813                                             Indonesia    ID   IDN 1967
## 8814                                             Indonesia    ID   IDN 1966
## 8815                                             Indonesia    ID   IDN 1965
## 8816                                             Indonesia    ID   IDN 1964
## 8817                                             Indonesia    ID   IDN 1963
## 8818                                             Indonesia    ID   IDN 1962
## 8819                                             Indonesia    ID   IDN 1961
## 8820                                             Indonesia    ID   IDN 1960
## 8821                                    Iran, Islamic Rep.    IR   IRN 2022
## 8822                                    Iran, Islamic Rep.    IR   IRN 2021
## 8823                                    Iran, Islamic Rep.    IR   IRN 2020
## 8824                                    Iran, Islamic Rep.    IR   IRN 2019
## 8825                                    Iran, Islamic Rep.    IR   IRN 2018
## 8826                                    Iran, Islamic Rep.    IR   IRN 2017
## 8827                                    Iran, Islamic Rep.    IR   IRN 2016
## 8828                                    Iran, Islamic Rep.    IR   IRN 2015
## 8829                                    Iran, Islamic Rep.    IR   IRN 2014
## 8830                                    Iran, Islamic Rep.    IR   IRN 2013
## 8831                                    Iran, Islamic Rep.    IR   IRN 2012
## 8832                                    Iran, Islamic Rep.    IR   IRN 2011
## 8833                                    Iran, Islamic Rep.    IR   IRN 2010
## 8834                                    Iran, Islamic Rep.    IR   IRN 2009
## 8835                                    Iran, Islamic Rep.    IR   IRN 2008
## 8836                                    Iran, Islamic Rep.    IR   IRN 2007
## 8837                                    Iran, Islamic Rep.    IR   IRN 2006
## 8838                                    Iran, Islamic Rep.    IR   IRN 2005
## 8839                                    Iran, Islamic Rep.    IR   IRN 2004
## 8840                                    Iran, Islamic Rep.    IR   IRN 2003
## 8841                                    Iran, Islamic Rep.    IR   IRN 2002
## 8842                                    Iran, Islamic Rep.    IR   IRN 2001
## 8843                                    Iran, Islamic Rep.    IR   IRN 2000
## 8844                                    Iran, Islamic Rep.    IR   IRN 1999
## 8845                                    Iran, Islamic Rep.    IR   IRN 1998
## 8846                                    Iran, Islamic Rep.    IR   IRN 1997
## 8847                                    Iran, Islamic Rep.    IR   IRN 1996
## 8848                                    Iran, Islamic Rep.    IR   IRN 1995
## 8849                                    Iran, Islamic Rep.    IR   IRN 1994
## 8850                                    Iran, Islamic Rep.    IR   IRN 1993
## 8851                                    Iran, Islamic Rep.    IR   IRN 1992
## 8852                                    Iran, Islamic Rep.    IR   IRN 1991
## 8853                                    Iran, Islamic Rep.    IR   IRN 1990
## 8854                                    Iran, Islamic Rep.    IR   IRN 1989
## 8855                                    Iran, Islamic Rep.    IR   IRN 1988
## 8856                                    Iran, Islamic Rep.    IR   IRN 1987
## 8857                                    Iran, Islamic Rep.    IR   IRN 1986
## 8858                                    Iran, Islamic Rep.    IR   IRN 1985
## 8859                                    Iran, Islamic Rep.    IR   IRN 1984
## 8860                                    Iran, Islamic Rep.    IR   IRN 1983
## 8861                                    Iran, Islamic Rep.    IR   IRN 1982
## 8862                                    Iran, Islamic Rep.    IR   IRN 1981
## 8863                                    Iran, Islamic Rep.    IR   IRN 1980
## 8864                                    Iran, Islamic Rep.    IR   IRN 1979
## 8865                                    Iran, Islamic Rep.    IR   IRN 1978
## 8866                                    Iran, Islamic Rep.    IR   IRN 1977
## 8867                                    Iran, Islamic Rep.    IR   IRN 1976
## 8868                                    Iran, Islamic Rep.    IR   IRN 1975
## 8869                                    Iran, Islamic Rep.    IR   IRN 1974
## 8870                                    Iran, Islamic Rep.    IR   IRN 1973
## 8871                                    Iran, Islamic Rep.    IR   IRN 1972
## 8872                                    Iran, Islamic Rep.    IR   IRN 1971
## 8873                                    Iran, Islamic Rep.    IR   IRN 1970
## 8874                                    Iran, Islamic Rep.    IR   IRN 1969
## 8875                                    Iran, Islamic Rep.    IR   IRN 1968
## 8876                                    Iran, Islamic Rep.    IR   IRN 1967
## 8877                                    Iran, Islamic Rep.    IR   IRN 1966
## 8878                                    Iran, Islamic Rep.    IR   IRN 1965
## 8879                                    Iran, Islamic Rep.    IR   IRN 1964
## 8880                                    Iran, Islamic Rep.    IR   IRN 1963
## 8881                                    Iran, Islamic Rep.    IR   IRN 1962
## 8882                                    Iran, Islamic Rep.    IR   IRN 1961
## 8883                                    Iran, Islamic Rep.    IR   IRN 1960
## 8884                                                  Iraq    IQ   IRQ 2022
## 8885                                                  Iraq    IQ   IRQ 2021
## 8886                                                  Iraq    IQ   IRQ 2020
## 8887                                                  Iraq    IQ   IRQ 2019
## 8888                                                  Iraq    IQ   IRQ 2018
## 8889                                                  Iraq    IQ   IRQ 2017
## 8890                                                  Iraq    IQ   IRQ 2016
## 8891                                                  Iraq    IQ   IRQ 2015
## 8892                                                  Iraq    IQ   IRQ 2014
## 8893                                                  Iraq    IQ   IRQ 2013
## 8894                                                  Iraq    IQ   IRQ 2012
## 8895                                                  Iraq    IQ   IRQ 2011
## 8896                                                  Iraq    IQ   IRQ 2010
## 8897                                                  Iraq    IQ   IRQ 2009
## 8898                                                  Iraq    IQ   IRQ 2008
## 8899                                                  Iraq    IQ   IRQ 2007
## 8900                                                  Iraq    IQ   IRQ 2006
## 8901                                                  Iraq    IQ   IRQ 2005
## 8902                                                  Iraq    IQ   IRQ 2004
## 8903                                                  Iraq    IQ   IRQ 2003
## 8904                                                  Iraq    IQ   IRQ 2002
## 8905                                                  Iraq    IQ   IRQ 2001
## 8906                                                  Iraq    IQ   IRQ 2000
## 8907                                                  Iraq    IQ   IRQ 1999
## 8908                                                  Iraq    IQ   IRQ 1998
## 8909                                                  Iraq    IQ   IRQ 1997
## 8910                                                  Iraq    IQ   IRQ 1996
## 8911                                                  Iraq    IQ   IRQ 1995
## 8912                                                  Iraq    IQ   IRQ 1994
## 8913                                                  Iraq    IQ   IRQ 1993
## 8914                                                  Iraq    IQ   IRQ 1992
## 8915                                                  Iraq    IQ   IRQ 1991
## 8916                                                  Iraq    IQ   IRQ 1990
## 8917                                                  Iraq    IQ   IRQ 1989
## 8918                                                  Iraq    IQ   IRQ 1988
## 8919                                                  Iraq    IQ   IRQ 1987
## 8920                                                  Iraq    IQ   IRQ 1986
## 8921                                                  Iraq    IQ   IRQ 1985
## 8922                                                  Iraq    IQ   IRQ 1984
## 8923                                                  Iraq    IQ   IRQ 1983
## 8924                                                  Iraq    IQ   IRQ 1982
## 8925                                                  Iraq    IQ   IRQ 1981
## 8926                                                  Iraq    IQ   IRQ 1980
## 8927                                                  Iraq    IQ   IRQ 1979
## 8928                                                  Iraq    IQ   IRQ 1978
## 8929                                                  Iraq    IQ   IRQ 1977
## 8930                                                  Iraq    IQ   IRQ 1976
## 8931                                                  Iraq    IQ   IRQ 1975
## 8932                                                  Iraq    IQ   IRQ 1974
## 8933                                                  Iraq    IQ   IRQ 1973
## 8934                                                  Iraq    IQ   IRQ 1972
## 8935                                                  Iraq    IQ   IRQ 1971
## 8936                                                  Iraq    IQ   IRQ 1970
## 8937                                                  Iraq    IQ   IRQ 1969
## 8938                                                  Iraq    IQ   IRQ 1968
## 8939                                                  Iraq    IQ   IRQ 1967
## 8940                                                  Iraq    IQ   IRQ 1966
## 8941                                                  Iraq    IQ   IRQ 1965
## 8942                                                  Iraq    IQ   IRQ 1964
## 8943                                                  Iraq    IQ   IRQ 1963
## 8944                                                  Iraq    IQ   IRQ 1962
## 8945                                                  Iraq    IQ   IRQ 1961
## 8946                                                  Iraq    IQ   IRQ 1960
## 8947                                               Ireland    IE   IRL 2022
## 8948                                               Ireland    IE   IRL 2021
## 8949                                               Ireland    IE   IRL 2020
## 8950                                               Ireland    IE   IRL 2019
## 8951                                               Ireland    IE   IRL 2018
## 8952                                               Ireland    IE   IRL 2017
## 8953                                               Ireland    IE   IRL 2016
## 8954                                               Ireland    IE   IRL 2015
## 8955                                               Ireland    IE   IRL 2014
## 8956                                               Ireland    IE   IRL 2013
## 8957                                               Ireland    IE   IRL 2012
## 8958                                               Ireland    IE   IRL 2011
## 8959                                               Ireland    IE   IRL 2010
## 8960                                               Ireland    IE   IRL 2009
## 8961                                               Ireland    IE   IRL 2008
## 8962                                               Ireland    IE   IRL 2007
## 8963                                               Ireland    IE   IRL 2006
## 8964                                               Ireland    IE   IRL 2005
## 8965                                               Ireland    IE   IRL 2004
## 8966                                               Ireland    IE   IRL 2003
## 8967                                               Ireland    IE   IRL 2002
## 8968                                               Ireland    IE   IRL 2001
## 8969                                               Ireland    IE   IRL 2000
## 8970                                               Ireland    IE   IRL 1999
## 8971                                               Ireland    IE   IRL 1998
## 8972                                               Ireland    IE   IRL 1997
## 8973                                               Ireland    IE   IRL 1996
## 8974                                               Ireland    IE   IRL 1995
## 8975                                               Ireland    IE   IRL 1994
## 8976                                               Ireland    IE   IRL 1993
## 8977                                               Ireland    IE   IRL 1992
## 8978                                               Ireland    IE   IRL 1991
## 8979                                               Ireland    IE   IRL 1990
## 8980                                               Ireland    IE   IRL 1989
## 8981                                               Ireland    IE   IRL 1988
## 8982                                               Ireland    IE   IRL 1987
## 8983                                               Ireland    IE   IRL 1986
## 8984                                               Ireland    IE   IRL 1985
## 8985                                               Ireland    IE   IRL 1984
## 8986                                               Ireland    IE   IRL 1983
## 8987                                               Ireland    IE   IRL 1982
## 8988                                               Ireland    IE   IRL 1981
## 8989                                               Ireland    IE   IRL 1980
## 8990                                               Ireland    IE   IRL 1979
## 8991                                               Ireland    IE   IRL 1978
## 8992                                               Ireland    IE   IRL 1977
## 8993                                               Ireland    IE   IRL 1976
## 8994                                               Ireland    IE   IRL 1975
## 8995                                               Ireland    IE   IRL 1974
## 8996                                               Ireland    IE   IRL 1973
## 8997                                               Ireland    IE   IRL 1972
## 8998                                               Ireland    IE   IRL 1971
## 8999                                               Ireland    IE   IRL 1970
## 9000                                               Ireland    IE   IRL 1969
## 9001                                               Ireland    IE   IRL 1968
## 9002                                               Ireland    IE   IRL 1967
## 9003                                               Ireland    IE   IRL 1966
## 9004                                               Ireland    IE   IRL 1965
## 9005                                               Ireland    IE   IRL 1964
## 9006                                               Ireland    IE   IRL 1963
## 9007                                               Ireland    IE   IRL 1962
## 9008                                               Ireland    IE   IRL 1961
## 9009                                               Ireland    IE   IRL 1960
## 9010                                           Isle of Man    IM   IMN 2022
## 9011                                           Isle of Man    IM   IMN 2021
## 9012                                           Isle of Man    IM   IMN 2020
## 9013                                           Isle of Man    IM   IMN 2019
## 9014                                           Isle of Man    IM   IMN 2018
## 9015                                           Isle of Man    IM   IMN 2017
## 9016                                           Isle of Man    IM   IMN 2016
## 9017                                           Isle of Man    IM   IMN 2015
## 9018                                           Isle of Man    IM   IMN 2014
## 9019                                           Isle of Man    IM   IMN 2013
## 9020                                           Isle of Man    IM   IMN 2012
## 9021                                           Isle of Man    IM   IMN 2011
## 9022                                           Isle of Man    IM   IMN 2010
## 9023                                           Isle of Man    IM   IMN 2009
## 9024                                           Isle of Man    IM   IMN 2008
## 9025                                           Isle of Man    IM   IMN 2007
## 9026                                           Isle of Man    IM   IMN 2006
## 9027                                           Isle of Man    IM   IMN 2005
## 9028                                           Isle of Man    IM   IMN 2004
## 9029                                           Isle of Man    IM   IMN 2003
## 9030                                           Isle of Man    IM   IMN 2002
## 9031                                           Isle of Man    IM   IMN 2001
## 9032                                           Isle of Man    IM   IMN 2000
## 9033                                           Isle of Man    IM   IMN 1999
## 9034                                           Isle of Man    IM   IMN 1998
## 9035                                           Isle of Man    IM   IMN 1997
## 9036                                           Isle of Man    IM   IMN 1996
## 9037                                           Isle of Man    IM   IMN 1995
## 9038                                           Isle of Man    IM   IMN 1994
## 9039                                           Isle of Man    IM   IMN 1993
## 9040                                           Isle of Man    IM   IMN 1992
## 9041                                           Isle of Man    IM   IMN 1991
## 9042                                           Isle of Man    IM   IMN 1990
## 9043                                           Isle of Man    IM   IMN 1989
## 9044                                           Isle of Man    IM   IMN 1988
## 9045                                           Isle of Man    IM   IMN 1987
## 9046                                           Isle of Man    IM   IMN 1986
## 9047                                           Isle of Man    IM   IMN 1985
## 9048                                           Isle of Man    IM   IMN 1984
## 9049                                           Isle of Man    IM   IMN 1983
## 9050                                           Isle of Man    IM   IMN 1982
## 9051                                           Isle of Man    IM   IMN 1981
## 9052                                           Isle of Man    IM   IMN 1980
## 9053                                           Isle of Man    IM   IMN 1979
## 9054                                           Isle of Man    IM   IMN 1978
## 9055                                           Isle of Man    IM   IMN 1977
## 9056                                           Isle of Man    IM   IMN 1976
## 9057                                           Isle of Man    IM   IMN 1975
## 9058                                           Isle of Man    IM   IMN 1974
## 9059                                           Isle of Man    IM   IMN 1973
## 9060                                           Isle of Man    IM   IMN 1972
## 9061                                           Isle of Man    IM   IMN 1971
## 9062                                           Isle of Man    IM   IMN 1970
## 9063                                           Isle of Man    IM   IMN 1969
## 9064                                           Isle of Man    IM   IMN 1968
## 9065                                           Isle of Man    IM   IMN 1967
## 9066                                           Isle of Man    IM   IMN 1966
## 9067                                           Isle of Man    IM   IMN 1965
## 9068                                           Isle of Man    IM   IMN 1964
## 9069                                           Isle of Man    IM   IMN 1963
## 9070                                           Isle of Man    IM   IMN 1962
## 9071                                           Isle of Man    IM   IMN 1961
## 9072                                           Isle of Man    IM   IMN 1960
## 9073                                                Israel    IL   ISR 2022
## 9074                                                Israel    IL   ISR 2021
## 9075                                                Israel    IL   ISR 2020
## 9076                                                Israel    IL   ISR 2019
## 9077                                                Israel    IL   ISR 2018
## 9078                                                Israel    IL   ISR 2017
## 9079                                                Israel    IL   ISR 2016
## 9080                                                Israel    IL   ISR 2015
## 9081                                                Israel    IL   ISR 2014
## 9082                                                Israel    IL   ISR 2013
## 9083                                                Israel    IL   ISR 2012
## 9084                                                Israel    IL   ISR 2011
## 9085                                                Israel    IL   ISR 2010
## 9086                                                Israel    IL   ISR 2009
## 9087                                                Israel    IL   ISR 2008
## 9088                                                Israel    IL   ISR 2007
## 9089                                                Israel    IL   ISR 2006
## 9090                                                Israel    IL   ISR 2005
## 9091                                                Israel    IL   ISR 2004
## 9092                                                Israel    IL   ISR 2003
## 9093                                                Israel    IL   ISR 2002
## 9094                                                Israel    IL   ISR 2001
## 9095                                                Israel    IL   ISR 2000
## 9096                                                Israel    IL   ISR 1999
## 9097                                                Israel    IL   ISR 1998
## 9098                                                Israel    IL   ISR 1997
## 9099                                                Israel    IL   ISR 1996
## 9100                                                Israel    IL   ISR 1995
## 9101                                                Israel    IL   ISR 1994
## 9102                                                Israel    IL   ISR 1993
## 9103                                                Israel    IL   ISR 1992
## 9104                                                Israel    IL   ISR 1991
## 9105                                                Israel    IL   ISR 1990
## 9106                                                Israel    IL   ISR 1989
## 9107                                                Israel    IL   ISR 1988
## 9108                                                Israel    IL   ISR 1987
## 9109                                                Israel    IL   ISR 1986
## 9110                                                Israel    IL   ISR 1985
## 9111                                                Israel    IL   ISR 1984
## 9112                                                Israel    IL   ISR 1983
## 9113                                                Israel    IL   ISR 1982
## 9114                                                Israel    IL   ISR 1981
## 9115                                                Israel    IL   ISR 1980
## 9116                                                Israel    IL   ISR 1979
## 9117                                                Israel    IL   ISR 1978
## 9118                                                Israel    IL   ISR 1977
## 9119                                                Israel    IL   ISR 1976
## 9120                                                Israel    IL   ISR 1975
## 9121                                                Israel    IL   ISR 1974
## 9122                                                Israel    IL   ISR 1973
## 9123                                                Israel    IL   ISR 1972
## 9124                                                Israel    IL   ISR 1971
## 9125                                                Israel    IL   ISR 1970
## 9126                                                Israel    IL   ISR 1969
## 9127                                                Israel    IL   ISR 1968
## 9128                                                Israel    IL   ISR 1967
## 9129                                                Israel    IL   ISR 1966
## 9130                                                Israel    IL   ISR 1965
## 9131                                                Israel    IL   ISR 1964
## 9132                                                Israel    IL   ISR 1963
## 9133                                                Israel    IL   ISR 1962
## 9134                                                Israel    IL   ISR 1961
## 9135                                                Israel    IL   ISR 1960
## 9136                                                 Italy    IT   ITA 2022
## 9137                                                 Italy    IT   ITA 2021
## 9138                                                 Italy    IT   ITA 2020
## 9139                                                 Italy    IT   ITA 2019
## 9140                                                 Italy    IT   ITA 2018
## 9141                                                 Italy    IT   ITA 2017
## 9142                                                 Italy    IT   ITA 2016
## 9143                                                 Italy    IT   ITA 2015
## 9144                                                 Italy    IT   ITA 2014
## 9145                                                 Italy    IT   ITA 2013
## 9146                                                 Italy    IT   ITA 2012
## 9147                                                 Italy    IT   ITA 2011
## 9148                                                 Italy    IT   ITA 2010
## 9149                                                 Italy    IT   ITA 2009
## 9150                                                 Italy    IT   ITA 2008
## 9151                                                 Italy    IT   ITA 2007
## 9152                                                 Italy    IT   ITA 2006
## 9153                                                 Italy    IT   ITA 2005
## 9154                                                 Italy    IT   ITA 2004
## 9155                                                 Italy    IT   ITA 2003
## 9156                                                 Italy    IT   ITA 2002
## 9157                                                 Italy    IT   ITA 2001
## 9158                                                 Italy    IT   ITA 2000
## 9159                                                 Italy    IT   ITA 1999
## 9160                                                 Italy    IT   ITA 1998
## 9161                                                 Italy    IT   ITA 1997
## 9162                                                 Italy    IT   ITA 1996
## 9163                                                 Italy    IT   ITA 1995
## 9164                                                 Italy    IT   ITA 1994
## 9165                                                 Italy    IT   ITA 1993
## 9166                                                 Italy    IT   ITA 1992
## 9167                                                 Italy    IT   ITA 1991
## 9168                                                 Italy    IT   ITA 1990
## 9169                                                 Italy    IT   ITA 1989
## 9170                                                 Italy    IT   ITA 1988
## 9171                                                 Italy    IT   ITA 1987
## 9172                                                 Italy    IT   ITA 1986
## 9173                                                 Italy    IT   ITA 1985
## 9174                                                 Italy    IT   ITA 1984
## 9175                                                 Italy    IT   ITA 1983
## 9176                                                 Italy    IT   ITA 1982
## 9177                                                 Italy    IT   ITA 1981
## 9178                                                 Italy    IT   ITA 1980
## 9179                                                 Italy    IT   ITA 1979
## 9180                                                 Italy    IT   ITA 1978
## 9181                                                 Italy    IT   ITA 1977
## 9182                                                 Italy    IT   ITA 1976
## 9183                                                 Italy    IT   ITA 1975
## 9184                                                 Italy    IT   ITA 1974
## 9185                                                 Italy    IT   ITA 1973
## 9186                                                 Italy    IT   ITA 1972
## 9187                                                 Italy    IT   ITA 1971
## 9188                                                 Italy    IT   ITA 1970
## 9189                                                 Italy    IT   ITA 1969
## 9190                                                 Italy    IT   ITA 1968
## 9191                                                 Italy    IT   ITA 1967
## 9192                                                 Italy    IT   ITA 1966
## 9193                                                 Italy    IT   ITA 1965
## 9194                                                 Italy    IT   ITA 1964
## 9195                                                 Italy    IT   ITA 1963
## 9196                                                 Italy    IT   ITA 1962
## 9197                                                 Italy    IT   ITA 1961
## 9198                                                 Italy    IT   ITA 1960
## 9199                                               Jamaica    JM   JAM 2022
## 9200                                               Jamaica    JM   JAM 2021
## 9201                                               Jamaica    JM   JAM 2020
## 9202                                               Jamaica    JM   JAM 2019
## 9203                                               Jamaica    JM   JAM 2018
## 9204                                               Jamaica    JM   JAM 2017
## 9205                                               Jamaica    JM   JAM 2016
## 9206                                               Jamaica    JM   JAM 2015
## 9207                                               Jamaica    JM   JAM 2014
## 9208                                               Jamaica    JM   JAM 2013
## 9209                                               Jamaica    JM   JAM 2012
## 9210                                               Jamaica    JM   JAM 2011
## 9211                                               Jamaica    JM   JAM 2010
## 9212                                               Jamaica    JM   JAM 2009
## 9213                                               Jamaica    JM   JAM 2008
## 9214                                               Jamaica    JM   JAM 2007
## 9215                                               Jamaica    JM   JAM 2006
## 9216                                               Jamaica    JM   JAM 2005
## 9217                                               Jamaica    JM   JAM 2004
## 9218                                               Jamaica    JM   JAM 2003
## 9219                                               Jamaica    JM   JAM 2002
## 9220                                               Jamaica    JM   JAM 2001
## 9221                                               Jamaica    JM   JAM 2000
## 9222                                               Jamaica    JM   JAM 1999
## 9223                                               Jamaica    JM   JAM 1998
## 9224                                               Jamaica    JM   JAM 1997
## 9225                                               Jamaica    JM   JAM 1996
## 9226                                               Jamaica    JM   JAM 1995
## 9227                                               Jamaica    JM   JAM 1994
## 9228                                               Jamaica    JM   JAM 1993
## 9229                                               Jamaica    JM   JAM 1992
## 9230                                               Jamaica    JM   JAM 1991
## 9231                                               Jamaica    JM   JAM 1990
## 9232                                               Jamaica    JM   JAM 1989
## 9233                                               Jamaica    JM   JAM 1988
## 9234                                               Jamaica    JM   JAM 1987
## 9235                                               Jamaica    JM   JAM 1986
## 9236                                               Jamaica    JM   JAM 1985
## 9237                                               Jamaica    JM   JAM 1984
## 9238                                               Jamaica    JM   JAM 1983
## 9239                                               Jamaica    JM   JAM 1982
## 9240                                               Jamaica    JM   JAM 1981
## 9241                                               Jamaica    JM   JAM 1980
## 9242                                               Jamaica    JM   JAM 1979
## 9243                                               Jamaica    JM   JAM 1978
## 9244                                               Jamaica    JM   JAM 1977
## 9245                                               Jamaica    JM   JAM 1976
## 9246                                               Jamaica    JM   JAM 1975
## 9247                                               Jamaica    JM   JAM 1974
## 9248                                               Jamaica    JM   JAM 1973
## 9249                                               Jamaica    JM   JAM 1972
## 9250                                               Jamaica    JM   JAM 1971
## 9251                                               Jamaica    JM   JAM 1970
## 9252                                               Jamaica    JM   JAM 1969
## 9253                                               Jamaica    JM   JAM 1968
## 9254                                               Jamaica    JM   JAM 1967
## 9255                                               Jamaica    JM   JAM 1966
## 9256                                               Jamaica    JM   JAM 1965
## 9257                                               Jamaica    JM   JAM 1964
## 9258                                               Jamaica    JM   JAM 1963
## 9259                                               Jamaica    JM   JAM 1962
## 9260                                               Jamaica    JM   JAM 1961
## 9261                                               Jamaica    JM   JAM 1960
## 9262                                                 Japan    JP   JPN 2022
## 9263                                                 Japan    JP   JPN 2021
## 9264                                                 Japan    JP   JPN 2020
## 9265                                                 Japan    JP   JPN 2019
## 9266                                                 Japan    JP   JPN 2018
## 9267                                                 Japan    JP   JPN 2017
## 9268                                                 Japan    JP   JPN 2016
## 9269                                                 Japan    JP   JPN 2015
## 9270                                                 Japan    JP   JPN 2014
## 9271                                                 Japan    JP   JPN 2013
## 9272                                                 Japan    JP   JPN 2012
## 9273                                                 Japan    JP   JPN 2011
## 9274                                                 Japan    JP   JPN 2010
## 9275                                                 Japan    JP   JPN 2009
## 9276                                                 Japan    JP   JPN 2008
## 9277                                                 Japan    JP   JPN 2007
## 9278                                                 Japan    JP   JPN 2006
## 9279                                                 Japan    JP   JPN 2005
## 9280                                                 Japan    JP   JPN 2004
## 9281                                                 Japan    JP   JPN 2003
## 9282                                                 Japan    JP   JPN 2002
## 9283                                                 Japan    JP   JPN 2001
## 9284                                                 Japan    JP   JPN 2000
## 9285                                                 Japan    JP   JPN 1999
## 9286                                                 Japan    JP   JPN 1998
## 9287                                                 Japan    JP   JPN 1997
## 9288                                                 Japan    JP   JPN 1996
## 9289                                                 Japan    JP   JPN 1995
## 9290                                                 Japan    JP   JPN 1994
## 9291                                                 Japan    JP   JPN 1993
## 9292                                                 Japan    JP   JPN 1992
## 9293                                                 Japan    JP   JPN 1991
## 9294                                                 Japan    JP   JPN 1990
## 9295                                                 Japan    JP   JPN 1989
## 9296                                                 Japan    JP   JPN 1988
## 9297                                                 Japan    JP   JPN 1987
## 9298                                                 Japan    JP   JPN 1986
## 9299                                                 Japan    JP   JPN 1985
## 9300                                                 Japan    JP   JPN 1984
## 9301                                                 Japan    JP   JPN 1983
## 9302                                                 Japan    JP   JPN 1982
## 9303                                                 Japan    JP   JPN 1981
## 9304                                                 Japan    JP   JPN 1980
## 9305                                                 Japan    JP   JPN 1979
## 9306                                                 Japan    JP   JPN 1978
## 9307                                                 Japan    JP   JPN 1977
## 9308                                                 Japan    JP   JPN 1976
## 9309                                                 Japan    JP   JPN 1975
## 9310                                                 Japan    JP   JPN 1974
## 9311                                                 Japan    JP   JPN 1973
## 9312                                                 Japan    JP   JPN 1972
## 9313                                                 Japan    JP   JPN 1971
## 9314                                                 Japan    JP   JPN 1970
## 9315                                                 Japan    JP   JPN 1969
## 9316                                                 Japan    JP   JPN 1968
## 9317                                                 Japan    JP   JPN 1967
## 9318                                                 Japan    JP   JPN 1966
## 9319                                                 Japan    JP   JPN 1965
## 9320                                                 Japan    JP   JPN 1964
## 9321                                                 Japan    JP   JPN 1963
## 9322                                                 Japan    JP   JPN 1962
## 9323                                                 Japan    JP   JPN 1961
## 9324                                                 Japan    JP   JPN 1960
## 9325                                                Jordan    JO   JOR 2022
## 9326                                                Jordan    JO   JOR 2021
## 9327                                                Jordan    JO   JOR 2020
## 9328                                                Jordan    JO   JOR 2019
## 9329                                                Jordan    JO   JOR 2018
## 9330                                                Jordan    JO   JOR 2017
## 9331                                                Jordan    JO   JOR 2016
## 9332                                                Jordan    JO   JOR 2015
## 9333                                                Jordan    JO   JOR 2014
## 9334                                                Jordan    JO   JOR 2013
## 9335                                                Jordan    JO   JOR 2012
## 9336                                                Jordan    JO   JOR 2011
## 9337                                                Jordan    JO   JOR 2010
## 9338                                                Jordan    JO   JOR 2009
## 9339                                                Jordan    JO   JOR 2008
## 9340                                                Jordan    JO   JOR 2007
## 9341                                                Jordan    JO   JOR 2006
## 9342                                                Jordan    JO   JOR 2005
## 9343                                                Jordan    JO   JOR 2004
## 9344                                                Jordan    JO   JOR 2003
## 9345                                                Jordan    JO   JOR 2002
## 9346                                                Jordan    JO   JOR 2001
## 9347                                                Jordan    JO   JOR 2000
## 9348                                                Jordan    JO   JOR 1999
## 9349                                                Jordan    JO   JOR 1998
## 9350                                                Jordan    JO   JOR 1997
## 9351                                                Jordan    JO   JOR 1996
## 9352                                                Jordan    JO   JOR 1995
## 9353                                                Jordan    JO   JOR 1994
## 9354                                                Jordan    JO   JOR 1993
## 9355                                                Jordan    JO   JOR 1992
## 9356                                                Jordan    JO   JOR 1991
## 9357                                                Jordan    JO   JOR 1990
## 9358                                                Jordan    JO   JOR 1989
## 9359                                                Jordan    JO   JOR 1988
## 9360                                                Jordan    JO   JOR 1987
## 9361                                                Jordan    JO   JOR 1986
## 9362                                                Jordan    JO   JOR 1985
## 9363                                                Jordan    JO   JOR 1984
## 9364                                                Jordan    JO   JOR 1983
## 9365                                                Jordan    JO   JOR 1982
## 9366                                                Jordan    JO   JOR 1981
## 9367                                                Jordan    JO   JOR 1980
## 9368                                                Jordan    JO   JOR 1979
## 9369                                                Jordan    JO   JOR 1978
## 9370                                                Jordan    JO   JOR 1977
## 9371                                                Jordan    JO   JOR 1976
## 9372                                                Jordan    JO   JOR 1975
## 9373                                                Jordan    JO   JOR 1974
## 9374                                                Jordan    JO   JOR 1973
## 9375                                                Jordan    JO   JOR 1972
## 9376                                                Jordan    JO   JOR 1971
## 9377                                                Jordan    JO   JOR 1970
## 9378                                                Jordan    JO   JOR 1969
## 9379                                                Jordan    JO   JOR 1968
## 9380                                                Jordan    JO   JOR 1967
## 9381                                                Jordan    JO   JOR 1966
## 9382                                                Jordan    JO   JOR 1965
## 9383                                                Jordan    JO   JOR 1964
## 9384                                                Jordan    JO   JOR 1963
## 9385                                                Jordan    JO   JOR 1962
## 9386                                                Jordan    JO   JOR 1961
## 9387                                                Jordan    JO   JOR 1960
## 9388                                            Kazakhstan    KZ   KAZ 2022
## 9389                                            Kazakhstan    KZ   KAZ 2021
## 9390                                            Kazakhstan    KZ   KAZ 2020
## 9391                                            Kazakhstan    KZ   KAZ 2019
## 9392                                            Kazakhstan    KZ   KAZ 2018
## 9393                                            Kazakhstan    KZ   KAZ 2017
## 9394                                            Kazakhstan    KZ   KAZ 2016
## 9395                                            Kazakhstan    KZ   KAZ 2015
## 9396                                            Kazakhstan    KZ   KAZ 2014
## 9397                                            Kazakhstan    KZ   KAZ 2013
## 9398                                            Kazakhstan    KZ   KAZ 2012
## 9399                                            Kazakhstan    KZ   KAZ 2011
## 9400                                            Kazakhstan    KZ   KAZ 2010
## 9401                                            Kazakhstan    KZ   KAZ 2009
## 9402                                            Kazakhstan    KZ   KAZ 2008
## 9403                                            Kazakhstan    KZ   KAZ 2007
## 9404                                            Kazakhstan    KZ   KAZ 2006
## 9405                                            Kazakhstan    KZ   KAZ 2005
## 9406                                            Kazakhstan    KZ   KAZ 2004
## 9407                                            Kazakhstan    KZ   KAZ 2003
## 9408                                            Kazakhstan    KZ   KAZ 2002
## 9409                                            Kazakhstan    KZ   KAZ 2001
## 9410                                            Kazakhstan    KZ   KAZ 2000
## 9411                                            Kazakhstan    KZ   KAZ 1999
## 9412                                            Kazakhstan    KZ   KAZ 1998
## 9413                                            Kazakhstan    KZ   KAZ 1997
## 9414                                            Kazakhstan    KZ   KAZ 1996
## 9415                                            Kazakhstan    KZ   KAZ 1995
## 9416                                            Kazakhstan    KZ   KAZ 1994
## 9417                                            Kazakhstan    KZ   KAZ 1993
## 9418                                            Kazakhstan    KZ   KAZ 1992
## 9419                                            Kazakhstan    KZ   KAZ 1991
## 9420                                            Kazakhstan    KZ   KAZ 1990
## 9421                                            Kazakhstan    KZ   KAZ 1989
## 9422                                            Kazakhstan    KZ   KAZ 1988
## 9423                                            Kazakhstan    KZ   KAZ 1987
## 9424                                            Kazakhstan    KZ   KAZ 1986
## 9425                                            Kazakhstan    KZ   KAZ 1985
## 9426                                            Kazakhstan    KZ   KAZ 1984
## 9427                                            Kazakhstan    KZ   KAZ 1983
## 9428                                            Kazakhstan    KZ   KAZ 1982
## 9429                                            Kazakhstan    KZ   KAZ 1981
## 9430                                            Kazakhstan    KZ   KAZ 1980
## 9431                                            Kazakhstan    KZ   KAZ 1979
## 9432                                            Kazakhstan    KZ   KAZ 1978
## 9433                                            Kazakhstan    KZ   KAZ 1977
## 9434                                            Kazakhstan    KZ   KAZ 1976
## 9435                                            Kazakhstan    KZ   KAZ 1975
## 9436                                            Kazakhstan    KZ   KAZ 1974
## 9437                                            Kazakhstan    KZ   KAZ 1973
## 9438                                            Kazakhstan    KZ   KAZ 1972
## 9439                                            Kazakhstan    KZ   KAZ 1971
## 9440                                            Kazakhstan    KZ   KAZ 1970
## 9441                                            Kazakhstan    KZ   KAZ 1969
## 9442                                            Kazakhstan    KZ   KAZ 1968
## 9443                                            Kazakhstan    KZ   KAZ 1967
## 9444                                            Kazakhstan    KZ   KAZ 1966
## 9445                                            Kazakhstan    KZ   KAZ 1965
## 9446                                            Kazakhstan    KZ   KAZ 1964
## 9447                                            Kazakhstan    KZ   KAZ 1963
## 9448                                            Kazakhstan    KZ   KAZ 1962
## 9449                                            Kazakhstan    KZ   KAZ 1961
## 9450                                            Kazakhstan    KZ   KAZ 1960
## 9451                                                 Kenya    KE   KEN 2022
## 9452                                                 Kenya    KE   KEN 2021
## 9453                                                 Kenya    KE   KEN 2020
## 9454                                                 Kenya    KE   KEN 2019
## 9455                                                 Kenya    KE   KEN 2018
## 9456                                                 Kenya    KE   KEN 2017
## 9457                                                 Kenya    KE   KEN 2016
## 9458                                                 Kenya    KE   KEN 2015
## 9459                                                 Kenya    KE   KEN 2014
## 9460                                                 Kenya    KE   KEN 2013
## 9461                                                 Kenya    KE   KEN 2012
## 9462                                                 Kenya    KE   KEN 2011
## 9463                                                 Kenya    KE   KEN 2010
## 9464                                                 Kenya    KE   KEN 2009
## 9465                                                 Kenya    KE   KEN 2008
## 9466                                                 Kenya    KE   KEN 2007
## 9467                                                 Kenya    KE   KEN 2006
## 9468                                                 Kenya    KE   KEN 2005
## 9469                                                 Kenya    KE   KEN 2004
## 9470                                                 Kenya    KE   KEN 2003
## 9471                                                 Kenya    KE   KEN 2002
## 9472                                                 Kenya    KE   KEN 2001
## 9473                                                 Kenya    KE   KEN 2000
## 9474                                                 Kenya    KE   KEN 1999
## 9475                                                 Kenya    KE   KEN 1998
## 9476                                                 Kenya    KE   KEN 1997
## 9477                                                 Kenya    KE   KEN 1996
## 9478                                                 Kenya    KE   KEN 1995
## 9479                                                 Kenya    KE   KEN 1994
## 9480                                                 Kenya    KE   KEN 1993
## 9481                                                 Kenya    KE   KEN 1992
## 9482                                                 Kenya    KE   KEN 1991
## 9483                                                 Kenya    KE   KEN 1990
## 9484                                                 Kenya    KE   KEN 1989
## 9485                                                 Kenya    KE   KEN 1988
## 9486                                                 Kenya    KE   KEN 1987
## 9487                                                 Kenya    KE   KEN 1986
## 9488                                                 Kenya    KE   KEN 1985
## 9489                                                 Kenya    KE   KEN 1984
## 9490                                                 Kenya    KE   KEN 1983
## 9491                                                 Kenya    KE   KEN 1982
## 9492                                                 Kenya    KE   KEN 1981
## 9493                                                 Kenya    KE   KEN 1980
## 9494                                                 Kenya    KE   KEN 1979
## 9495                                                 Kenya    KE   KEN 1978
## 9496                                                 Kenya    KE   KEN 1977
## 9497                                                 Kenya    KE   KEN 1976
## 9498                                                 Kenya    KE   KEN 1975
## 9499                                                 Kenya    KE   KEN 1974
## 9500                                                 Kenya    KE   KEN 1973
## 9501                                                 Kenya    KE   KEN 1972
## 9502                                                 Kenya    KE   KEN 1971
## 9503                                                 Kenya    KE   KEN 1970
## 9504                                                 Kenya    KE   KEN 1969
## 9505                                                 Kenya    KE   KEN 1968
## 9506                                                 Kenya    KE   KEN 1967
## 9507                                                 Kenya    KE   KEN 1966
## 9508                                                 Kenya    KE   KEN 1965
## 9509                                                 Kenya    KE   KEN 1964
## 9510                                                 Kenya    KE   KEN 1963
## 9511                                                 Kenya    KE   KEN 1962
## 9512                                                 Kenya    KE   KEN 1961
## 9513                                                 Kenya    KE   KEN 1960
## 9514                                              Kiribati    KI   KIR 2022
## 9515                                              Kiribati    KI   KIR 2021
## 9516                                              Kiribati    KI   KIR 2020
## 9517                                              Kiribati    KI   KIR 2019
## 9518                                              Kiribati    KI   KIR 2018
## 9519                                              Kiribati    KI   KIR 2017
## 9520                                              Kiribati    KI   KIR 2016
## 9521                                              Kiribati    KI   KIR 2015
## 9522                                              Kiribati    KI   KIR 2014
## 9523                                              Kiribati    KI   KIR 2013
## 9524                                              Kiribati    KI   KIR 2012
## 9525                                              Kiribati    KI   KIR 2011
## 9526                                              Kiribati    KI   KIR 2010
## 9527                                              Kiribati    KI   KIR 2009
## 9528                                              Kiribati    KI   KIR 2008
## 9529                                              Kiribati    KI   KIR 2007
## 9530                                              Kiribati    KI   KIR 2006
## 9531                                              Kiribati    KI   KIR 2005
## 9532                                              Kiribati    KI   KIR 2004
## 9533                                              Kiribati    KI   KIR 2003
## 9534                                              Kiribati    KI   KIR 2002
## 9535                                              Kiribati    KI   KIR 2001
## 9536                                              Kiribati    KI   KIR 2000
## 9537                                              Kiribati    KI   KIR 1999
## 9538                                              Kiribati    KI   KIR 1998
## 9539                                              Kiribati    KI   KIR 1997
## 9540                                              Kiribati    KI   KIR 1996
## 9541                                              Kiribati    KI   KIR 1995
## 9542                                              Kiribati    KI   KIR 1994
## 9543                                              Kiribati    KI   KIR 1993
## 9544                                              Kiribati    KI   KIR 1992
## 9545                                              Kiribati    KI   KIR 1991
## 9546                                              Kiribati    KI   KIR 1990
## 9547                                              Kiribati    KI   KIR 1989
## 9548                                              Kiribati    KI   KIR 1988
## 9549                                              Kiribati    KI   KIR 1987
## 9550                                              Kiribati    KI   KIR 1986
## 9551                                              Kiribati    KI   KIR 1985
## 9552                                              Kiribati    KI   KIR 1984
## 9553                                              Kiribati    KI   KIR 1983
## 9554                                              Kiribati    KI   KIR 1982
## 9555                                              Kiribati    KI   KIR 1981
## 9556                                              Kiribati    KI   KIR 1980
## 9557                                              Kiribati    KI   KIR 1979
## 9558                                              Kiribati    KI   KIR 1978
## 9559                                              Kiribati    KI   KIR 1977
## 9560                                              Kiribati    KI   KIR 1976
## 9561                                              Kiribati    KI   KIR 1975
## 9562                                              Kiribati    KI   KIR 1974
## 9563                                              Kiribati    KI   KIR 1973
## 9564                                              Kiribati    KI   KIR 1972
## 9565                                              Kiribati    KI   KIR 1971
## 9566                                              Kiribati    KI   KIR 1970
## 9567                                              Kiribati    KI   KIR 1969
## 9568                                              Kiribati    KI   KIR 1968
## 9569                                              Kiribati    KI   KIR 1967
## 9570                                              Kiribati    KI   KIR 1966
## 9571                                              Kiribati    KI   KIR 1965
## 9572                                              Kiribati    KI   KIR 1964
## 9573                                              Kiribati    KI   KIR 1963
## 9574                                              Kiribati    KI   KIR 1962
## 9575                                              Kiribati    KI   KIR 1961
## 9576                                              Kiribati    KI   KIR 1960
## 9577                             Korea, Dem. People's Rep.    KP   PRK 2022
## 9578                             Korea, Dem. People's Rep.    KP   PRK 2021
## 9579                             Korea, Dem. People's Rep.    KP   PRK 2020
## 9580                             Korea, Dem. People's Rep.    KP   PRK 2019
## 9581                             Korea, Dem. People's Rep.    KP   PRK 2018
## 9582                             Korea, Dem. People's Rep.    KP   PRK 2017
## 9583                             Korea, Dem. People's Rep.    KP   PRK 2016
## 9584                             Korea, Dem. People's Rep.    KP   PRK 2015
## 9585                             Korea, Dem. People's Rep.    KP   PRK 2014
## 9586                             Korea, Dem. People's Rep.    KP   PRK 2013
## 9587                             Korea, Dem. People's Rep.    KP   PRK 2012
## 9588                             Korea, Dem. People's Rep.    KP   PRK 2011
## 9589                             Korea, Dem. People's Rep.    KP   PRK 2010
## 9590                             Korea, Dem. People's Rep.    KP   PRK 2009
## 9591                             Korea, Dem. People's Rep.    KP   PRK 2008
## 9592                             Korea, Dem. People's Rep.    KP   PRK 2007
## 9593                             Korea, Dem. People's Rep.    KP   PRK 2006
## 9594                             Korea, Dem. People's Rep.    KP   PRK 2005
## 9595                             Korea, Dem. People's Rep.    KP   PRK 2004
## 9596                             Korea, Dem. People's Rep.    KP   PRK 2003
## 9597                             Korea, Dem. People's Rep.    KP   PRK 2002
## 9598                             Korea, Dem. People's Rep.    KP   PRK 2001
## 9599                             Korea, Dem. People's Rep.    KP   PRK 2000
## 9600                             Korea, Dem. People's Rep.    KP   PRK 1999
## 9601                             Korea, Dem. People's Rep.    KP   PRK 1998
## 9602                             Korea, Dem. People's Rep.    KP   PRK 1997
## 9603                             Korea, Dem. People's Rep.    KP   PRK 1996
## 9604                             Korea, Dem. People's Rep.    KP   PRK 1995
## 9605                             Korea, Dem. People's Rep.    KP   PRK 1994
## 9606                             Korea, Dem. People's Rep.    KP   PRK 1993
## 9607                             Korea, Dem. People's Rep.    KP   PRK 1992
## 9608                             Korea, Dem. People's Rep.    KP   PRK 1991
## 9609                             Korea, Dem. People's Rep.    KP   PRK 1990
## 9610                             Korea, Dem. People's Rep.    KP   PRK 1989
## 9611                             Korea, Dem. People's Rep.    KP   PRK 1988
## 9612                             Korea, Dem. People's Rep.    KP   PRK 1987
## 9613                             Korea, Dem. People's Rep.    KP   PRK 1986
## 9614                             Korea, Dem. People's Rep.    KP   PRK 1985
## 9615                             Korea, Dem. People's Rep.    KP   PRK 1984
## 9616                             Korea, Dem. People's Rep.    KP   PRK 1983
## 9617                             Korea, Dem. People's Rep.    KP   PRK 1982
## 9618                             Korea, Dem. People's Rep.    KP   PRK 1981
## 9619                             Korea, Dem. People's Rep.    KP   PRK 1980
## 9620                             Korea, Dem. People's Rep.    KP   PRK 1979
## 9621                             Korea, Dem. People's Rep.    KP   PRK 1978
## 9622                             Korea, Dem. People's Rep.    KP   PRK 1977
## 9623                             Korea, Dem. People's Rep.    KP   PRK 1976
## 9624                             Korea, Dem. People's Rep.    KP   PRK 1975
## 9625                             Korea, Dem. People's Rep.    KP   PRK 1974
## 9626                             Korea, Dem. People's Rep.    KP   PRK 1973
## 9627                             Korea, Dem. People's Rep.    KP   PRK 1972
## 9628                             Korea, Dem. People's Rep.    KP   PRK 1971
## 9629                             Korea, Dem. People's Rep.    KP   PRK 1970
## 9630                             Korea, Dem. People's Rep.    KP   PRK 1969
## 9631                             Korea, Dem. People's Rep.    KP   PRK 1968
## 9632                             Korea, Dem. People's Rep.    KP   PRK 1967
## 9633                             Korea, Dem. People's Rep.    KP   PRK 1966
## 9634                             Korea, Dem. People's Rep.    KP   PRK 1965
## 9635                             Korea, Dem. People's Rep.    KP   PRK 1964
## 9636                             Korea, Dem. People's Rep.    KP   PRK 1963
## 9637                             Korea, Dem. People's Rep.    KP   PRK 1962
## 9638                             Korea, Dem. People's Rep.    KP   PRK 1961
## 9639                             Korea, Dem. People's Rep.    KP   PRK 1960
## 9640                                           Korea, Rep.    KR   KOR 2022
## 9641                                           Korea, Rep.    KR   KOR 2021
## 9642                                           Korea, Rep.    KR   KOR 2020
## 9643                                           Korea, Rep.    KR   KOR 2019
## 9644                                           Korea, Rep.    KR   KOR 2018
## 9645                                           Korea, Rep.    KR   KOR 2017
## 9646                                           Korea, Rep.    KR   KOR 2016
## 9647                                           Korea, Rep.    KR   KOR 2015
## 9648                                           Korea, Rep.    KR   KOR 2014
## 9649                                           Korea, Rep.    KR   KOR 2013
## 9650                                           Korea, Rep.    KR   KOR 2012
## 9651                                           Korea, Rep.    KR   KOR 2011
## 9652                                           Korea, Rep.    KR   KOR 2010
## 9653                                           Korea, Rep.    KR   KOR 2009
## 9654                                           Korea, Rep.    KR   KOR 2008
## 9655                                           Korea, Rep.    KR   KOR 2007
## 9656                                           Korea, Rep.    KR   KOR 2006
## 9657                                           Korea, Rep.    KR   KOR 2005
## 9658                                           Korea, Rep.    KR   KOR 2004
## 9659                                           Korea, Rep.    KR   KOR 2003
## 9660                                           Korea, Rep.    KR   KOR 2002
## 9661                                           Korea, Rep.    KR   KOR 2001
## 9662                                           Korea, Rep.    KR   KOR 2000
## 9663                                           Korea, Rep.    KR   KOR 1999
## 9664                                           Korea, Rep.    KR   KOR 1998
## 9665                                           Korea, Rep.    KR   KOR 1997
## 9666                                           Korea, Rep.    KR   KOR 1996
## 9667                                           Korea, Rep.    KR   KOR 1995
## 9668                                           Korea, Rep.    KR   KOR 1994
## 9669                                           Korea, Rep.    KR   KOR 1993
## 9670                                           Korea, Rep.    KR   KOR 1992
## 9671                                           Korea, Rep.    KR   KOR 1991
## 9672                                           Korea, Rep.    KR   KOR 1990
## 9673                                           Korea, Rep.    KR   KOR 1989
## 9674                                           Korea, Rep.    KR   KOR 1988
## 9675                                           Korea, Rep.    KR   KOR 1987
## 9676                                           Korea, Rep.    KR   KOR 1986
## 9677                                           Korea, Rep.    KR   KOR 1985
## 9678                                           Korea, Rep.    KR   KOR 1984
## 9679                                           Korea, Rep.    KR   KOR 1983
## 9680                                           Korea, Rep.    KR   KOR 1982
## 9681                                           Korea, Rep.    KR   KOR 1981
## 9682                                           Korea, Rep.    KR   KOR 1980
## 9683                                           Korea, Rep.    KR   KOR 1979
## 9684                                           Korea, Rep.    KR   KOR 1978
## 9685                                           Korea, Rep.    KR   KOR 1977
## 9686                                           Korea, Rep.    KR   KOR 1976
## 9687                                           Korea, Rep.    KR   KOR 1975
## 9688                                           Korea, Rep.    KR   KOR 1974
## 9689                                           Korea, Rep.    KR   KOR 1973
## 9690                                           Korea, Rep.    KR   KOR 1972
## 9691                                           Korea, Rep.    KR   KOR 1971
## 9692                                           Korea, Rep.    KR   KOR 1970
## 9693                                           Korea, Rep.    KR   KOR 1969
## 9694                                           Korea, Rep.    KR   KOR 1968
## 9695                                           Korea, Rep.    KR   KOR 1967
## 9696                                           Korea, Rep.    KR   KOR 1966
## 9697                                           Korea, Rep.    KR   KOR 1965
## 9698                                           Korea, Rep.    KR   KOR 1964
## 9699                                           Korea, Rep.    KR   KOR 1963
## 9700                                           Korea, Rep.    KR   KOR 1962
## 9701                                           Korea, Rep.    KR   KOR 1961
## 9702                                           Korea, Rep.    KR   KOR 1960
## 9703                                                Kosovo    XK   XKX 2022
## 9704                                                Kosovo    XK   XKX 2021
## 9705                                                Kosovo    XK   XKX 2020
## 9706                                                Kosovo    XK   XKX 2019
## 9707                                                Kosovo    XK   XKX 2018
## 9708                                                Kosovo    XK   XKX 2017
## 9709                                                Kosovo    XK   XKX 2016
## 9710                                                Kosovo    XK   XKX 2015
## 9711                                                Kosovo    XK   XKX 2014
## 9712                                                Kosovo    XK   XKX 2013
## 9713                                                Kosovo    XK   XKX 2012
## 9714                                                Kosovo    XK   XKX 2011
## 9715                                                Kosovo    XK   XKX 2010
## 9716                                                Kosovo    XK   XKX 2009
## 9717                                                Kosovo    XK   XKX 2008
## 9718                                                Kosovo    XK   XKX 2007
## 9719                                                Kosovo    XK   XKX 2006
## 9720                                                Kosovo    XK   XKX 2005
## 9721                                                Kosovo    XK   XKX 2004
## 9722                                                Kosovo    XK   XKX 2003
## 9723                                                Kosovo    XK   XKX 2002
## 9724                                                Kosovo    XK   XKX 2001
## 9725                                                Kosovo    XK   XKX 2000
## 9726                                                Kosovo    XK   XKX 1999
## 9727                                                Kosovo    XK   XKX 1998
## 9728                                                Kosovo    XK   XKX 1997
## 9729                                                Kosovo    XK   XKX 1996
## 9730                                                Kosovo    XK   XKX 1995
## 9731                                                Kosovo    XK   XKX 1994
## 9732                                                Kosovo    XK   XKX 1993
## 9733                                                Kosovo    XK   XKX 1992
## 9734                                                Kosovo    XK   XKX 1991
## 9735                                                Kosovo    XK   XKX 1990
## 9736                                                Kosovo    XK   XKX 1989
## 9737                                                Kosovo    XK   XKX 1988
## 9738                                                Kosovo    XK   XKX 1987
## 9739                                                Kosovo    XK   XKX 1986
## 9740                                                Kosovo    XK   XKX 1985
## 9741                                                Kosovo    XK   XKX 1984
## 9742                                                Kosovo    XK   XKX 1983
## 9743                                                Kosovo    XK   XKX 1982
## 9744                                                Kosovo    XK   XKX 1981
## 9745                                                Kosovo    XK   XKX 1980
## 9746                                                Kosovo    XK   XKX 1979
## 9747                                                Kosovo    XK   XKX 1978
## 9748                                                Kosovo    XK   XKX 1977
## 9749                                                Kosovo    XK   XKX 1976
## 9750                                                Kosovo    XK   XKX 1975
## 9751                                                Kosovo    XK   XKX 1974
## 9752                                                Kosovo    XK   XKX 1973
## 9753                                                Kosovo    XK   XKX 1972
## 9754                                                Kosovo    XK   XKX 1971
## 9755                                                Kosovo    XK   XKX 1970
## 9756                                                Kosovo    XK   XKX 1969
## 9757                                                Kosovo    XK   XKX 1968
## 9758                                                Kosovo    XK   XKX 1967
## 9759                                                Kosovo    XK   XKX 1966
## 9760                                                Kosovo    XK   XKX 1965
## 9761                                                Kosovo    XK   XKX 1964
## 9762                                                Kosovo    XK   XKX 1963
## 9763                                                Kosovo    XK   XKX 1962
## 9764                                                Kosovo    XK   XKX 1961
## 9765                                                Kosovo    XK   XKX 1960
## 9766                                                Kuwait    KW   KWT 2022
## 9767                                                Kuwait    KW   KWT 2021
## 9768                                                Kuwait    KW   KWT 2020
## 9769                                                Kuwait    KW   KWT 2019
## 9770                                                Kuwait    KW   KWT 2018
## 9771                                                Kuwait    KW   KWT 2017
## 9772                                                Kuwait    KW   KWT 2016
## 9773                                                Kuwait    KW   KWT 2015
## 9774                                                Kuwait    KW   KWT 2014
## 9775                                                Kuwait    KW   KWT 2013
## 9776                                                Kuwait    KW   KWT 2012
## 9777                                                Kuwait    KW   KWT 2011
## 9778                                                Kuwait    KW   KWT 2010
## 9779                                                Kuwait    KW   KWT 2009
## 9780                                                Kuwait    KW   KWT 2008
## 9781                                                Kuwait    KW   KWT 2007
## 9782                                                Kuwait    KW   KWT 2006
## 9783                                                Kuwait    KW   KWT 2005
## 9784                                                Kuwait    KW   KWT 2004
## 9785                                                Kuwait    KW   KWT 2003
## 9786                                                Kuwait    KW   KWT 2002
## 9787                                                Kuwait    KW   KWT 2001
## 9788                                                Kuwait    KW   KWT 2000
## 9789                                                Kuwait    KW   KWT 1999
## 9790                                                Kuwait    KW   KWT 1998
## 9791                                                Kuwait    KW   KWT 1997
## 9792                                                Kuwait    KW   KWT 1996
## 9793                                                Kuwait    KW   KWT 1995
## 9794                                                Kuwait    KW   KWT 1994
## 9795                                                Kuwait    KW   KWT 1993
## 9796                                                Kuwait    KW   KWT 1992
## 9797                                                Kuwait    KW   KWT 1991
## 9798                                                Kuwait    KW   KWT 1990
## 9799                                                Kuwait    KW   KWT 1989
## 9800                                                Kuwait    KW   KWT 1988
## 9801                                                Kuwait    KW   KWT 1987
## 9802                                                Kuwait    KW   KWT 1986
## 9803                                                Kuwait    KW   KWT 1985
## 9804                                                Kuwait    KW   KWT 1984
## 9805                                                Kuwait    KW   KWT 1983
## 9806                                                Kuwait    KW   KWT 1982
## 9807                                                Kuwait    KW   KWT 1981
## 9808                                                Kuwait    KW   KWT 1980
## 9809                                                Kuwait    KW   KWT 1979
## 9810                                                Kuwait    KW   KWT 1978
## 9811                                                Kuwait    KW   KWT 1977
## 9812                                                Kuwait    KW   KWT 1976
## 9813                                                Kuwait    KW   KWT 1975
## 9814                                                Kuwait    KW   KWT 1974
## 9815                                                Kuwait    KW   KWT 1973
## 9816                                                Kuwait    KW   KWT 1972
## 9817                                                Kuwait    KW   KWT 1971
## 9818                                                Kuwait    KW   KWT 1970
## 9819                                                Kuwait    KW   KWT 1969
## 9820                                                Kuwait    KW   KWT 1968
## 9821                                                Kuwait    KW   KWT 1967
## 9822                                                Kuwait    KW   KWT 1966
## 9823                                                Kuwait    KW   KWT 1965
## 9824                                                Kuwait    KW   KWT 1964
## 9825                                                Kuwait    KW   KWT 1963
## 9826                                                Kuwait    KW   KWT 1962
## 9827                                                Kuwait    KW   KWT 1961
## 9828                                                Kuwait    KW   KWT 1960
## 9829                                       Kyrgyz Republic    KG   KGZ 2022
## 9830                                       Kyrgyz Republic    KG   KGZ 2021
## 9831                                       Kyrgyz Republic    KG   KGZ 2020
## 9832                                       Kyrgyz Republic    KG   KGZ 2019
## 9833                                       Kyrgyz Republic    KG   KGZ 2018
## 9834                                       Kyrgyz Republic    KG   KGZ 2017
## 9835                                       Kyrgyz Republic    KG   KGZ 2016
## 9836                                       Kyrgyz Republic    KG   KGZ 2015
## 9837                                       Kyrgyz Republic    KG   KGZ 2014
## 9838                                       Kyrgyz Republic    KG   KGZ 2013
## 9839                                       Kyrgyz Republic    KG   KGZ 2012
## 9840                                       Kyrgyz Republic    KG   KGZ 2011
## 9841                                       Kyrgyz Republic    KG   KGZ 2010
## 9842                                       Kyrgyz Republic    KG   KGZ 2009
## 9843                                       Kyrgyz Republic    KG   KGZ 2008
## 9844                                       Kyrgyz Republic    KG   KGZ 2007
## 9845                                       Kyrgyz Republic    KG   KGZ 2006
## 9846                                       Kyrgyz Republic    KG   KGZ 2005
## 9847                                       Kyrgyz Republic    KG   KGZ 2004
## 9848                                       Kyrgyz Republic    KG   KGZ 2003
## 9849                                       Kyrgyz Republic    KG   KGZ 2002
## 9850                                       Kyrgyz Republic    KG   KGZ 2001
## 9851                                       Kyrgyz Republic    KG   KGZ 2000
## 9852                                       Kyrgyz Republic    KG   KGZ 1999
## 9853                                       Kyrgyz Republic    KG   KGZ 1998
## 9854                                       Kyrgyz Republic    KG   KGZ 1997
## 9855                                       Kyrgyz Republic    KG   KGZ 1996
## 9856                                       Kyrgyz Republic    KG   KGZ 1995
## 9857                                       Kyrgyz Republic    KG   KGZ 1994
## 9858                                       Kyrgyz Republic    KG   KGZ 1993
## 9859                                       Kyrgyz Republic    KG   KGZ 1992
## 9860                                       Kyrgyz Republic    KG   KGZ 1991
## 9861                                       Kyrgyz Republic    KG   KGZ 1990
## 9862                                       Kyrgyz Republic    KG   KGZ 1989
## 9863                                       Kyrgyz Republic    KG   KGZ 1988
## 9864                                       Kyrgyz Republic    KG   KGZ 1987
## 9865                                       Kyrgyz Republic    KG   KGZ 1986
## 9866                                       Kyrgyz Republic    KG   KGZ 1985
## 9867                                       Kyrgyz Republic    KG   KGZ 1984
## 9868                                       Kyrgyz Republic    KG   KGZ 1983
## 9869                                       Kyrgyz Republic    KG   KGZ 1982
## 9870                                       Kyrgyz Republic    KG   KGZ 1981
## 9871                                       Kyrgyz Republic    KG   KGZ 1980
## 9872                                       Kyrgyz Republic    KG   KGZ 1979
## 9873                                       Kyrgyz Republic    KG   KGZ 1978
## 9874                                       Kyrgyz Republic    KG   KGZ 1977
## 9875                                       Kyrgyz Republic    KG   KGZ 1976
## 9876                                       Kyrgyz Republic    KG   KGZ 1975
## 9877                                       Kyrgyz Republic    KG   KGZ 1974
## 9878                                       Kyrgyz Republic    KG   KGZ 1973
## 9879                                       Kyrgyz Republic    KG   KGZ 1972
## 9880                                       Kyrgyz Republic    KG   KGZ 1971
## 9881                                       Kyrgyz Republic    KG   KGZ 1970
## 9882                                       Kyrgyz Republic    KG   KGZ 1969
## 9883                                       Kyrgyz Republic    KG   KGZ 1968
## 9884                                       Kyrgyz Republic    KG   KGZ 1967
## 9885                                       Kyrgyz Republic    KG   KGZ 1966
## 9886                                       Kyrgyz Republic    KG   KGZ 1965
## 9887                                       Kyrgyz Republic    KG   KGZ 1964
## 9888                                       Kyrgyz Republic    KG   KGZ 1963
## 9889                                       Kyrgyz Republic    KG   KGZ 1962
## 9890                                       Kyrgyz Republic    KG   KGZ 1961
## 9891                                       Kyrgyz Republic    KG   KGZ 1960
## 9892                                               Lao PDR    LA   LAO 2022
## 9893                                               Lao PDR    LA   LAO 2021
## 9894                                               Lao PDR    LA   LAO 2020
## 9895                                               Lao PDR    LA   LAO 2019
## 9896                                               Lao PDR    LA   LAO 2018
## 9897                                               Lao PDR    LA   LAO 2017
## 9898                                               Lao PDR    LA   LAO 2016
## 9899                                               Lao PDR    LA   LAO 2015
## 9900                                               Lao PDR    LA   LAO 2014
## 9901                                               Lao PDR    LA   LAO 2013
## 9902                                               Lao PDR    LA   LAO 2012
## 9903                                               Lao PDR    LA   LAO 2011
## 9904                                               Lao PDR    LA   LAO 2010
## 9905                                               Lao PDR    LA   LAO 2009
## 9906                                               Lao PDR    LA   LAO 2008
## 9907                                               Lao PDR    LA   LAO 2007
## 9908                                               Lao PDR    LA   LAO 2006
## 9909                                               Lao PDR    LA   LAO 2005
## 9910                                               Lao PDR    LA   LAO 2004
## 9911                                               Lao PDR    LA   LAO 2003
## 9912                                               Lao PDR    LA   LAO 2002
## 9913                                               Lao PDR    LA   LAO 2001
## 9914                                               Lao PDR    LA   LAO 2000
## 9915                                               Lao PDR    LA   LAO 1999
## 9916                                               Lao PDR    LA   LAO 1998
## 9917                                               Lao PDR    LA   LAO 1997
## 9918                                               Lao PDR    LA   LAO 1996
## 9919                                               Lao PDR    LA   LAO 1995
## 9920                                               Lao PDR    LA   LAO 1994
## 9921                                               Lao PDR    LA   LAO 1993
## 9922                                               Lao PDR    LA   LAO 1992
## 9923                                               Lao PDR    LA   LAO 1991
## 9924                                               Lao PDR    LA   LAO 1990
## 9925                                               Lao PDR    LA   LAO 1989
## 9926                                               Lao PDR    LA   LAO 1988
## 9927                                               Lao PDR    LA   LAO 1987
## 9928                                               Lao PDR    LA   LAO 1986
## 9929                                               Lao PDR    LA   LAO 1985
## 9930                                               Lao PDR    LA   LAO 1984
## 9931                                               Lao PDR    LA   LAO 1983
## 9932                                               Lao PDR    LA   LAO 1982
## 9933                                               Lao PDR    LA   LAO 1981
## 9934                                               Lao PDR    LA   LAO 1980
## 9935                                               Lao PDR    LA   LAO 1979
## 9936                                               Lao PDR    LA   LAO 1978
## 9937                                               Lao PDR    LA   LAO 1977
## 9938                                               Lao PDR    LA   LAO 1976
## 9939                                               Lao PDR    LA   LAO 1975
## 9940                                               Lao PDR    LA   LAO 1974
## 9941                                               Lao PDR    LA   LAO 1973
## 9942                                               Lao PDR    LA   LAO 1972
## 9943                                               Lao PDR    LA   LAO 1971
## 9944                                               Lao PDR    LA   LAO 1970
## 9945                                               Lao PDR    LA   LAO 1969
## 9946                                               Lao PDR    LA   LAO 1968
## 9947                                               Lao PDR    LA   LAO 1967
## 9948                                               Lao PDR    LA   LAO 1966
## 9949                                               Lao PDR    LA   LAO 1965
## 9950                                               Lao PDR    LA   LAO 1964
## 9951                                               Lao PDR    LA   LAO 1963
## 9952                                               Lao PDR    LA   LAO 1962
## 9953                                               Lao PDR    LA   LAO 1961
## 9954                                               Lao PDR    LA   LAO 1960
## 9955                                                Latvia    LV   LVA 2022
## 9956                                                Latvia    LV   LVA 2021
## 9957                                                Latvia    LV   LVA 2020
## 9958                                                Latvia    LV   LVA 2019
## 9959                                                Latvia    LV   LVA 2018
## 9960                                                Latvia    LV   LVA 2017
## 9961                                                Latvia    LV   LVA 2016
## 9962                                                Latvia    LV   LVA 2015
## 9963                                                Latvia    LV   LVA 2014
## 9964                                                Latvia    LV   LVA 2013
## 9965                                                Latvia    LV   LVA 2012
## 9966                                                Latvia    LV   LVA 2011
## 9967                                                Latvia    LV   LVA 2010
## 9968                                                Latvia    LV   LVA 2009
## 9969                                                Latvia    LV   LVA 2008
## 9970                                                Latvia    LV   LVA 2007
## 9971                                                Latvia    LV   LVA 2006
## 9972                                                Latvia    LV   LVA 2005
## 9973                                                Latvia    LV   LVA 2004
## 9974                                                Latvia    LV   LVA 2003
## 9975                                                Latvia    LV   LVA 2002
## 9976                                                Latvia    LV   LVA 2001
## 9977                                                Latvia    LV   LVA 2000
## 9978                                                Latvia    LV   LVA 1999
## 9979                                                Latvia    LV   LVA 1998
## 9980                                                Latvia    LV   LVA 1997
## 9981                                                Latvia    LV   LVA 1996
## 9982                                                Latvia    LV   LVA 1995
## 9983                                                Latvia    LV   LVA 1994
## 9984                                                Latvia    LV   LVA 1993
## 9985                                                Latvia    LV   LVA 1992
## 9986                                                Latvia    LV   LVA 1991
## 9987                                                Latvia    LV   LVA 1990
## 9988                                                Latvia    LV   LVA 1989
## 9989                                                Latvia    LV   LVA 1988
## 9990                                                Latvia    LV   LVA 1987
## 9991                                                Latvia    LV   LVA 1986
## 9992                                                Latvia    LV   LVA 1985
## 9993                                                Latvia    LV   LVA 1984
## 9994                                                Latvia    LV   LVA 1983
## 9995                                                Latvia    LV   LVA 1982
## 9996                                                Latvia    LV   LVA 1981
## 9997                                                Latvia    LV   LVA 1980
## 9998                                                Latvia    LV   LVA 1979
## 9999                                                Latvia    LV   LVA 1978
## 10000                                               Latvia    LV   LVA 1977
## 10001                                               Latvia    LV   LVA 1976
## 10002                                               Latvia    LV   LVA 1975
## 10003                                               Latvia    LV   LVA 1974
## 10004                                               Latvia    LV   LVA 1973
## 10005                                               Latvia    LV   LVA 1972
## 10006                                               Latvia    LV   LVA 1971
## 10007                                               Latvia    LV   LVA 1970
## 10008                                               Latvia    LV   LVA 1969
## 10009                                               Latvia    LV   LVA 1968
## 10010                                               Latvia    LV   LVA 1967
## 10011                                               Latvia    LV   LVA 1966
## 10012                                               Latvia    LV   LVA 1965
## 10013                                               Latvia    LV   LVA 1964
## 10014                                               Latvia    LV   LVA 1963
## 10015                                               Latvia    LV   LVA 1962
## 10016                                               Latvia    LV   LVA 1961
## 10017                                               Latvia    LV   LVA 1960
## 10018                                              Lebanon    LB   LBN 2022
## 10019                                              Lebanon    LB   LBN 2021
## 10020                                              Lebanon    LB   LBN 2020
## 10021                                              Lebanon    LB   LBN 2019
## 10022                                              Lebanon    LB   LBN 2018
## 10023                                              Lebanon    LB   LBN 2017
## 10024                                              Lebanon    LB   LBN 2016
## 10025                                              Lebanon    LB   LBN 2015
## 10026                                              Lebanon    LB   LBN 2014
## 10027                                              Lebanon    LB   LBN 2013
## 10028                                              Lebanon    LB   LBN 2012
## 10029                                              Lebanon    LB   LBN 2011
## 10030                                              Lebanon    LB   LBN 2010
## 10031                                              Lebanon    LB   LBN 2009
## 10032                                              Lebanon    LB   LBN 2008
## 10033                                              Lebanon    LB   LBN 2007
## 10034                                              Lebanon    LB   LBN 2006
## 10035                                              Lebanon    LB   LBN 2005
## 10036                                              Lebanon    LB   LBN 2004
## 10037                                              Lebanon    LB   LBN 2003
## 10038                                              Lebanon    LB   LBN 2002
## 10039                                              Lebanon    LB   LBN 2001
## 10040                                              Lebanon    LB   LBN 2000
## 10041                                              Lebanon    LB   LBN 1999
## 10042                                              Lebanon    LB   LBN 1998
## 10043                                              Lebanon    LB   LBN 1997
## 10044                                              Lebanon    LB   LBN 1996
## 10045                                              Lebanon    LB   LBN 1995
## 10046                                              Lebanon    LB   LBN 1994
## 10047                                              Lebanon    LB   LBN 1993
## 10048                                              Lebanon    LB   LBN 1992
## 10049                                              Lebanon    LB   LBN 1991
## 10050                                              Lebanon    LB   LBN 1990
## 10051                                              Lebanon    LB   LBN 1989
## 10052                                              Lebanon    LB   LBN 1988
## 10053                                              Lebanon    LB   LBN 1987
## 10054                                              Lebanon    LB   LBN 1986
## 10055                                              Lebanon    LB   LBN 1985
## 10056                                              Lebanon    LB   LBN 1984
## 10057                                              Lebanon    LB   LBN 1983
## 10058                                              Lebanon    LB   LBN 1982
## 10059                                              Lebanon    LB   LBN 1981
## 10060                                              Lebanon    LB   LBN 1980
## 10061                                              Lebanon    LB   LBN 1979
## 10062                                              Lebanon    LB   LBN 1978
## 10063                                              Lebanon    LB   LBN 1977
## 10064                                              Lebanon    LB   LBN 1976
## 10065                                              Lebanon    LB   LBN 1975
## 10066                                              Lebanon    LB   LBN 1974
## 10067                                              Lebanon    LB   LBN 1973
## 10068                                              Lebanon    LB   LBN 1972
## 10069                                              Lebanon    LB   LBN 1971
## 10070                                              Lebanon    LB   LBN 1970
## 10071                                              Lebanon    LB   LBN 1969
## 10072                                              Lebanon    LB   LBN 1968
## 10073                                              Lebanon    LB   LBN 1967
## 10074                                              Lebanon    LB   LBN 1966
## 10075                                              Lebanon    LB   LBN 1965
## 10076                                              Lebanon    LB   LBN 1964
## 10077                                              Lebanon    LB   LBN 1963
## 10078                                              Lebanon    LB   LBN 1962
## 10079                                              Lebanon    LB   LBN 1961
## 10080                                              Lebanon    LB   LBN 1960
## 10081                                              Lesotho    LS   LSO 2022
## 10082                                              Lesotho    LS   LSO 2021
## 10083                                              Lesotho    LS   LSO 2020
## 10084                                              Lesotho    LS   LSO 2019
## 10085                                              Lesotho    LS   LSO 2018
## 10086                                              Lesotho    LS   LSO 2017
## 10087                                              Lesotho    LS   LSO 2016
## 10088                                              Lesotho    LS   LSO 2015
## 10089                                              Lesotho    LS   LSO 2014
## 10090                                              Lesotho    LS   LSO 2013
## 10091                                              Lesotho    LS   LSO 2012
## 10092                                              Lesotho    LS   LSO 2011
## 10093                                              Lesotho    LS   LSO 2010
## 10094                                              Lesotho    LS   LSO 2009
## 10095                                              Lesotho    LS   LSO 2008
## 10096                                              Lesotho    LS   LSO 2007
## 10097                                              Lesotho    LS   LSO 2006
## 10098                                              Lesotho    LS   LSO 2005
## 10099                                              Lesotho    LS   LSO 2004
## 10100                                              Lesotho    LS   LSO 2003
## 10101                                              Lesotho    LS   LSO 2002
## 10102                                              Lesotho    LS   LSO 2001
## 10103                                              Lesotho    LS   LSO 2000
## 10104                                              Lesotho    LS   LSO 1999
## 10105                                              Lesotho    LS   LSO 1998
## 10106                                              Lesotho    LS   LSO 1997
## 10107                                              Lesotho    LS   LSO 1996
## 10108                                              Lesotho    LS   LSO 1995
## 10109                                              Lesotho    LS   LSO 1994
## 10110                                              Lesotho    LS   LSO 1993
## 10111                                              Lesotho    LS   LSO 1992
## 10112                                              Lesotho    LS   LSO 1991
## 10113                                              Lesotho    LS   LSO 1990
## 10114                                              Lesotho    LS   LSO 1989
## 10115                                              Lesotho    LS   LSO 1988
## 10116                                              Lesotho    LS   LSO 1987
## 10117                                              Lesotho    LS   LSO 1986
## 10118                                              Lesotho    LS   LSO 1985
## 10119                                              Lesotho    LS   LSO 1984
## 10120                                              Lesotho    LS   LSO 1983
## 10121                                              Lesotho    LS   LSO 1982
## 10122                                              Lesotho    LS   LSO 1981
## 10123                                              Lesotho    LS   LSO 1980
## 10124                                              Lesotho    LS   LSO 1979
## 10125                                              Lesotho    LS   LSO 1978
## 10126                                              Lesotho    LS   LSO 1977
## 10127                                              Lesotho    LS   LSO 1976
## 10128                                              Lesotho    LS   LSO 1975
## 10129                                              Lesotho    LS   LSO 1974
## 10130                                              Lesotho    LS   LSO 1973
## 10131                                              Lesotho    LS   LSO 1972
## 10132                                              Lesotho    LS   LSO 1971
## 10133                                              Lesotho    LS   LSO 1970
## 10134                                              Lesotho    LS   LSO 1969
## 10135                                              Lesotho    LS   LSO 1968
## 10136                                              Lesotho    LS   LSO 1967
## 10137                                              Lesotho    LS   LSO 1966
## 10138                                              Lesotho    LS   LSO 1965
## 10139                                              Lesotho    LS   LSO 1964
## 10140                                              Lesotho    LS   LSO 1963
## 10141                                              Lesotho    LS   LSO 1962
## 10142                                              Lesotho    LS   LSO 1961
## 10143                                              Lesotho    LS   LSO 1960
## 10144                                              Liberia    LR   LBR 2022
## 10145                                              Liberia    LR   LBR 2021
## 10146                                              Liberia    LR   LBR 2020
## 10147                                              Liberia    LR   LBR 2019
## 10148                                              Liberia    LR   LBR 2018
## 10149                                              Liberia    LR   LBR 2017
## 10150                                              Liberia    LR   LBR 2016
## 10151                                              Liberia    LR   LBR 2015
## 10152                                              Liberia    LR   LBR 2014
## 10153                                              Liberia    LR   LBR 2013
## 10154                                              Liberia    LR   LBR 2012
## 10155                                              Liberia    LR   LBR 2011
## 10156                                              Liberia    LR   LBR 2010
## 10157                                              Liberia    LR   LBR 2009
## 10158                                              Liberia    LR   LBR 2008
## 10159                                              Liberia    LR   LBR 2007
## 10160                                              Liberia    LR   LBR 2006
## 10161                                              Liberia    LR   LBR 2005
## 10162                                              Liberia    LR   LBR 2004
## 10163                                              Liberia    LR   LBR 2003
## 10164                                              Liberia    LR   LBR 2002
## 10165                                              Liberia    LR   LBR 2001
## 10166                                              Liberia    LR   LBR 2000
## 10167                                              Liberia    LR   LBR 1999
## 10168                                              Liberia    LR   LBR 1998
## 10169                                              Liberia    LR   LBR 1997
## 10170                                              Liberia    LR   LBR 1996
## 10171                                              Liberia    LR   LBR 1995
## 10172                                              Liberia    LR   LBR 1994
## 10173                                              Liberia    LR   LBR 1993
## 10174                                              Liberia    LR   LBR 1992
## 10175                                              Liberia    LR   LBR 1991
## 10176                                              Liberia    LR   LBR 1990
## 10177                                              Liberia    LR   LBR 1989
## 10178                                              Liberia    LR   LBR 1988
## 10179                                              Liberia    LR   LBR 1987
## 10180                                              Liberia    LR   LBR 1986
## 10181                                              Liberia    LR   LBR 1985
## 10182                                              Liberia    LR   LBR 1984
## 10183                                              Liberia    LR   LBR 1983
## 10184                                              Liberia    LR   LBR 1982
## 10185                                              Liberia    LR   LBR 1981
## 10186                                              Liberia    LR   LBR 1980
## 10187                                              Liberia    LR   LBR 1979
## 10188                                              Liberia    LR   LBR 1978
## 10189                                              Liberia    LR   LBR 1977
## 10190                                              Liberia    LR   LBR 1976
## 10191                                              Liberia    LR   LBR 1975
## 10192                                              Liberia    LR   LBR 1974
## 10193                                              Liberia    LR   LBR 1973
## 10194                                              Liberia    LR   LBR 1972
## 10195                                              Liberia    LR   LBR 1971
## 10196                                              Liberia    LR   LBR 1970
## 10197                                              Liberia    LR   LBR 1969
## 10198                                              Liberia    LR   LBR 1968
## 10199                                              Liberia    LR   LBR 1967
## 10200                                              Liberia    LR   LBR 1966
## 10201                                              Liberia    LR   LBR 1965
## 10202                                              Liberia    LR   LBR 1964
## 10203                                              Liberia    LR   LBR 1963
## 10204                                              Liberia    LR   LBR 1962
## 10205                                              Liberia    LR   LBR 1961
## 10206                                              Liberia    LR   LBR 1960
## 10207                                                Libya    LY   LBY 2022
## 10208                                                Libya    LY   LBY 2021
## 10209                                                Libya    LY   LBY 2020
## 10210                                                Libya    LY   LBY 2019
## 10211                                                Libya    LY   LBY 2018
## 10212                                                Libya    LY   LBY 2017
## 10213                                                Libya    LY   LBY 2016
## 10214                                                Libya    LY   LBY 2015
## 10215                                                Libya    LY   LBY 2014
## 10216                                                Libya    LY   LBY 2013
## 10217                                                Libya    LY   LBY 2012
## 10218                                                Libya    LY   LBY 2011
## 10219                                                Libya    LY   LBY 2010
## 10220                                                Libya    LY   LBY 2009
## 10221                                                Libya    LY   LBY 2008
## 10222                                                Libya    LY   LBY 2007
## 10223                                                Libya    LY   LBY 2006
## 10224                                                Libya    LY   LBY 2005
## 10225                                                Libya    LY   LBY 2004
## 10226                                                Libya    LY   LBY 2003
## 10227                                                Libya    LY   LBY 2002
## 10228                                                Libya    LY   LBY 2001
## 10229                                                Libya    LY   LBY 2000
## 10230                                                Libya    LY   LBY 1999
## 10231                                                Libya    LY   LBY 1998
## 10232                                                Libya    LY   LBY 1997
## 10233                                                Libya    LY   LBY 1996
## 10234                                                Libya    LY   LBY 1995
## 10235                                                Libya    LY   LBY 1994
## 10236                                                Libya    LY   LBY 1993
## 10237                                                Libya    LY   LBY 1992
## 10238                                                Libya    LY   LBY 1991
## 10239                                                Libya    LY   LBY 1990
## 10240                                                Libya    LY   LBY 1989
## 10241                                                Libya    LY   LBY 1988
## 10242                                                Libya    LY   LBY 1987
## 10243                                                Libya    LY   LBY 1986
## 10244                                                Libya    LY   LBY 1985
## 10245                                                Libya    LY   LBY 1984
## 10246                                                Libya    LY   LBY 1983
## 10247                                                Libya    LY   LBY 1982
## 10248                                                Libya    LY   LBY 1981
## 10249                                                Libya    LY   LBY 1980
## 10250                                                Libya    LY   LBY 1979
## 10251                                                Libya    LY   LBY 1978
## 10252                                                Libya    LY   LBY 1977
## 10253                                                Libya    LY   LBY 1976
## 10254                                                Libya    LY   LBY 1975
## 10255                                                Libya    LY   LBY 1974
## 10256                                                Libya    LY   LBY 1973
## 10257                                                Libya    LY   LBY 1972
## 10258                                                Libya    LY   LBY 1971
## 10259                                                Libya    LY   LBY 1970
## 10260                                                Libya    LY   LBY 1969
## 10261                                                Libya    LY   LBY 1968
## 10262                                                Libya    LY   LBY 1967
## 10263                                                Libya    LY   LBY 1966
## 10264                                                Libya    LY   LBY 1965
## 10265                                                Libya    LY   LBY 1964
## 10266                                                Libya    LY   LBY 1963
## 10267                                                Libya    LY   LBY 1962
## 10268                                                Libya    LY   LBY 1961
## 10269                                                Libya    LY   LBY 1960
## 10270                                        Liechtenstein    LI   LIE 2022
## 10271                                        Liechtenstein    LI   LIE 2021
## 10272                                        Liechtenstein    LI   LIE 2020
## 10273                                        Liechtenstein    LI   LIE 2019
## 10274                                        Liechtenstein    LI   LIE 2018
## 10275                                        Liechtenstein    LI   LIE 2017
## 10276                                        Liechtenstein    LI   LIE 2016
## 10277                                        Liechtenstein    LI   LIE 2015
## 10278                                        Liechtenstein    LI   LIE 2014
## 10279                                        Liechtenstein    LI   LIE 2013
## 10280                                        Liechtenstein    LI   LIE 2012
## 10281                                        Liechtenstein    LI   LIE 2011
## 10282                                        Liechtenstein    LI   LIE 2010
## 10283                                        Liechtenstein    LI   LIE 2009
## 10284                                        Liechtenstein    LI   LIE 2008
## 10285                                        Liechtenstein    LI   LIE 2007
## 10286                                        Liechtenstein    LI   LIE 2006
## 10287                                        Liechtenstein    LI   LIE 2005
## 10288                                        Liechtenstein    LI   LIE 2004
## 10289                                        Liechtenstein    LI   LIE 2003
## 10290                                        Liechtenstein    LI   LIE 2002
## 10291                                        Liechtenstein    LI   LIE 2001
## 10292                                        Liechtenstein    LI   LIE 2000
## 10293                                        Liechtenstein    LI   LIE 1999
## 10294                                        Liechtenstein    LI   LIE 1998
## 10295                                        Liechtenstein    LI   LIE 1997
## 10296                                        Liechtenstein    LI   LIE 1996
## 10297                                        Liechtenstein    LI   LIE 1995
## 10298                                        Liechtenstein    LI   LIE 1994
## 10299                                        Liechtenstein    LI   LIE 1993
## 10300                                        Liechtenstein    LI   LIE 1992
## 10301                                        Liechtenstein    LI   LIE 1991
## 10302                                        Liechtenstein    LI   LIE 1990
## 10303                                        Liechtenstein    LI   LIE 1989
## 10304                                        Liechtenstein    LI   LIE 1988
## 10305                                        Liechtenstein    LI   LIE 1987
## 10306                                        Liechtenstein    LI   LIE 1986
## 10307                                        Liechtenstein    LI   LIE 1985
## 10308                                        Liechtenstein    LI   LIE 1984
## 10309                                        Liechtenstein    LI   LIE 1983
## 10310                                        Liechtenstein    LI   LIE 1982
## 10311                                        Liechtenstein    LI   LIE 1981
## 10312                                        Liechtenstein    LI   LIE 1980
## 10313                                        Liechtenstein    LI   LIE 1979
## 10314                                        Liechtenstein    LI   LIE 1978
## 10315                                        Liechtenstein    LI   LIE 1977
## 10316                                        Liechtenstein    LI   LIE 1976
## 10317                                        Liechtenstein    LI   LIE 1975
## 10318                                        Liechtenstein    LI   LIE 1974
## 10319                                        Liechtenstein    LI   LIE 1973
## 10320                                        Liechtenstein    LI   LIE 1972
## 10321                                        Liechtenstein    LI   LIE 1971
## 10322                                        Liechtenstein    LI   LIE 1970
## 10323                                        Liechtenstein    LI   LIE 1969
## 10324                                        Liechtenstein    LI   LIE 1968
## 10325                                        Liechtenstein    LI   LIE 1967
## 10326                                        Liechtenstein    LI   LIE 1966
## 10327                                        Liechtenstein    LI   LIE 1965
## 10328                                        Liechtenstein    LI   LIE 1964
## 10329                                        Liechtenstein    LI   LIE 1963
## 10330                                        Liechtenstein    LI   LIE 1962
## 10331                                        Liechtenstein    LI   LIE 1961
## 10332                                        Liechtenstein    LI   LIE 1960
## 10333                                            Lithuania    LT   LTU 2022
## 10334                                            Lithuania    LT   LTU 2021
## 10335                                            Lithuania    LT   LTU 2020
## 10336                                            Lithuania    LT   LTU 2019
## 10337                                            Lithuania    LT   LTU 2018
## 10338                                            Lithuania    LT   LTU 2017
## 10339                                            Lithuania    LT   LTU 2016
## 10340                                            Lithuania    LT   LTU 2015
## 10341                                            Lithuania    LT   LTU 2014
## 10342                                            Lithuania    LT   LTU 2013
## 10343                                            Lithuania    LT   LTU 2012
## 10344                                            Lithuania    LT   LTU 2011
## 10345                                            Lithuania    LT   LTU 2010
## 10346                                            Lithuania    LT   LTU 2009
## 10347                                            Lithuania    LT   LTU 2008
## 10348                                            Lithuania    LT   LTU 2007
## 10349                                            Lithuania    LT   LTU 2006
## 10350                                            Lithuania    LT   LTU 2005
## 10351                                            Lithuania    LT   LTU 2004
## 10352                                            Lithuania    LT   LTU 2003
## 10353                                            Lithuania    LT   LTU 2002
## 10354                                            Lithuania    LT   LTU 2001
## 10355                                            Lithuania    LT   LTU 2000
## 10356                                            Lithuania    LT   LTU 1999
## 10357                                            Lithuania    LT   LTU 1998
## 10358                                            Lithuania    LT   LTU 1997
## 10359                                            Lithuania    LT   LTU 1996
## 10360                                            Lithuania    LT   LTU 1995
## 10361                                            Lithuania    LT   LTU 1994
## 10362                                            Lithuania    LT   LTU 1993
## 10363                                            Lithuania    LT   LTU 1992
## 10364                                            Lithuania    LT   LTU 1991
## 10365                                            Lithuania    LT   LTU 1990
## 10366                                            Lithuania    LT   LTU 1989
## 10367                                            Lithuania    LT   LTU 1988
## 10368                                            Lithuania    LT   LTU 1987
## 10369                                            Lithuania    LT   LTU 1986
## 10370                                            Lithuania    LT   LTU 1985
## 10371                                            Lithuania    LT   LTU 1984
## 10372                                            Lithuania    LT   LTU 1983
## 10373                                            Lithuania    LT   LTU 1982
## 10374                                            Lithuania    LT   LTU 1981
## 10375                                            Lithuania    LT   LTU 1980
## 10376                                            Lithuania    LT   LTU 1979
## 10377                                            Lithuania    LT   LTU 1978
## 10378                                            Lithuania    LT   LTU 1977
## 10379                                            Lithuania    LT   LTU 1976
## 10380                                            Lithuania    LT   LTU 1975
## 10381                                            Lithuania    LT   LTU 1974
## 10382                                            Lithuania    LT   LTU 1973
## 10383                                            Lithuania    LT   LTU 1972
## 10384                                            Lithuania    LT   LTU 1971
## 10385                                            Lithuania    LT   LTU 1970
## 10386                                            Lithuania    LT   LTU 1969
## 10387                                            Lithuania    LT   LTU 1968
## 10388                                            Lithuania    LT   LTU 1967
## 10389                                            Lithuania    LT   LTU 1966
## 10390                                            Lithuania    LT   LTU 1965
## 10391                                            Lithuania    LT   LTU 1964
## 10392                                            Lithuania    LT   LTU 1963
## 10393                                            Lithuania    LT   LTU 1962
## 10394                                            Lithuania    LT   LTU 1961
## 10395                                            Lithuania    LT   LTU 1960
## 10396                                           Luxembourg    LU   LUX 2022
## 10397                                           Luxembourg    LU   LUX 2021
## 10398                                           Luxembourg    LU   LUX 2020
## 10399                                           Luxembourg    LU   LUX 2019
## 10400                                           Luxembourg    LU   LUX 2018
## 10401                                           Luxembourg    LU   LUX 2017
## 10402                                           Luxembourg    LU   LUX 2016
## 10403                                           Luxembourg    LU   LUX 2015
## 10404                                           Luxembourg    LU   LUX 2014
## 10405                                           Luxembourg    LU   LUX 2013
## 10406                                           Luxembourg    LU   LUX 2012
## 10407                                           Luxembourg    LU   LUX 2011
## 10408                                           Luxembourg    LU   LUX 2010
## 10409                                           Luxembourg    LU   LUX 2009
## 10410                                           Luxembourg    LU   LUX 2008
## 10411                                           Luxembourg    LU   LUX 2007
## 10412                                           Luxembourg    LU   LUX 2006
## 10413                                           Luxembourg    LU   LUX 2005
## 10414                                           Luxembourg    LU   LUX 2004
## 10415                                           Luxembourg    LU   LUX 2003
## 10416                                           Luxembourg    LU   LUX 2002
## 10417                                           Luxembourg    LU   LUX 2001
## 10418                                           Luxembourg    LU   LUX 2000
## 10419                                           Luxembourg    LU   LUX 1999
## 10420                                           Luxembourg    LU   LUX 1998
## 10421                                           Luxembourg    LU   LUX 1997
## 10422                                           Luxembourg    LU   LUX 1996
## 10423                                           Luxembourg    LU   LUX 1995
## 10424                                           Luxembourg    LU   LUX 1994
## 10425                                           Luxembourg    LU   LUX 1993
## 10426                                           Luxembourg    LU   LUX 1992
## 10427                                           Luxembourg    LU   LUX 1991
## 10428                                           Luxembourg    LU   LUX 1990
## 10429                                           Luxembourg    LU   LUX 1989
## 10430                                           Luxembourg    LU   LUX 1988
## 10431                                           Luxembourg    LU   LUX 1987
## 10432                                           Luxembourg    LU   LUX 1986
## 10433                                           Luxembourg    LU   LUX 1985
## 10434                                           Luxembourg    LU   LUX 1984
## 10435                                           Luxembourg    LU   LUX 1983
## 10436                                           Luxembourg    LU   LUX 1982
## 10437                                           Luxembourg    LU   LUX 1981
## 10438                                           Luxembourg    LU   LUX 1980
## 10439                                           Luxembourg    LU   LUX 1979
## 10440                                           Luxembourg    LU   LUX 1978
## 10441                                           Luxembourg    LU   LUX 1977
## 10442                                           Luxembourg    LU   LUX 1976
## 10443                                           Luxembourg    LU   LUX 1975
## 10444                                           Luxembourg    LU   LUX 1974
## 10445                                           Luxembourg    LU   LUX 1973
## 10446                                           Luxembourg    LU   LUX 1972
## 10447                                           Luxembourg    LU   LUX 1971
## 10448                                           Luxembourg    LU   LUX 1970
## 10449                                           Luxembourg    LU   LUX 1969
## 10450                                           Luxembourg    LU   LUX 1968
## 10451                                           Luxembourg    LU   LUX 1967
## 10452                                           Luxembourg    LU   LUX 1966
## 10453                                           Luxembourg    LU   LUX 1965
## 10454                                           Luxembourg    LU   LUX 1964
## 10455                                           Luxembourg    LU   LUX 1963
## 10456                                           Luxembourg    LU   LUX 1962
## 10457                                           Luxembourg    LU   LUX 1961
## 10458                                           Luxembourg    LU   LUX 1960
## 10459                                     Macao SAR, China    MO   MAC 2022
## 10460                                     Macao SAR, China    MO   MAC 2021
## 10461                                     Macao SAR, China    MO   MAC 2020
## 10462                                     Macao SAR, China    MO   MAC 2019
## 10463                                     Macao SAR, China    MO   MAC 2018
## 10464                                     Macao SAR, China    MO   MAC 2017
## 10465                                     Macao SAR, China    MO   MAC 2016
## 10466                                     Macao SAR, China    MO   MAC 2015
## 10467                                     Macao SAR, China    MO   MAC 2014
## 10468                                     Macao SAR, China    MO   MAC 2013
## 10469                                     Macao SAR, China    MO   MAC 2012
## 10470                                     Macao SAR, China    MO   MAC 2011
## 10471                                     Macao SAR, China    MO   MAC 2010
## 10472                                     Macao SAR, China    MO   MAC 2009
## 10473                                     Macao SAR, China    MO   MAC 2008
## 10474                                     Macao SAR, China    MO   MAC 2007
## 10475                                     Macao SAR, China    MO   MAC 2006
## 10476                                     Macao SAR, China    MO   MAC 2005
## 10477                                     Macao SAR, China    MO   MAC 2004
## 10478                                     Macao SAR, China    MO   MAC 2003
## 10479                                     Macao SAR, China    MO   MAC 2002
## 10480                                     Macao SAR, China    MO   MAC 2001
## 10481                                     Macao SAR, China    MO   MAC 2000
## 10482                                     Macao SAR, China    MO   MAC 1999
## 10483                                     Macao SAR, China    MO   MAC 1998
## 10484                                     Macao SAR, China    MO   MAC 1997
## 10485                                     Macao SAR, China    MO   MAC 1996
## 10486                                     Macao SAR, China    MO   MAC 1995
## 10487                                     Macao SAR, China    MO   MAC 1994
## 10488                                     Macao SAR, China    MO   MAC 1993
## 10489                                     Macao SAR, China    MO   MAC 1992
## 10490                                     Macao SAR, China    MO   MAC 1991
## 10491                                     Macao SAR, China    MO   MAC 1990
## 10492                                     Macao SAR, China    MO   MAC 1989
## 10493                                     Macao SAR, China    MO   MAC 1988
## 10494                                     Macao SAR, China    MO   MAC 1987
## 10495                                     Macao SAR, China    MO   MAC 1986
## 10496                                     Macao SAR, China    MO   MAC 1985
## 10497                                     Macao SAR, China    MO   MAC 1984
## 10498                                     Macao SAR, China    MO   MAC 1983
## 10499                                     Macao SAR, China    MO   MAC 1982
## 10500                                     Macao SAR, China    MO   MAC 1981
## 10501                                     Macao SAR, China    MO   MAC 1980
## 10502                                     Macao SAR, China    MO   MAC 1979
## 10503                                     Macao SAR, China    MO   MAC 1978
## 10504                                     Macao SAR, China    MO   MAC 1977
## 10505                                     Macao SAR, China    MO   MAC 1976
## 10506                                     Macao SAR, China    MO   MAC 1975
## 10507                                     Macao SAR, China    MO   MAC 1974
## 10508                                     Macao SAR, China    MO   MAC 1973
## 10509                                     Macao SAR, China    MO   MAC 1972
## 10510                                     Macao SAR, China    MO   MAC 1971
## 10511                                     Macao SAR, China    MO   MAC 1970
## 10512                                     Macao SAR, China    MO   MAC 1969
## 10513                                     Macao SAR, China    MO   MAC 1968
## 10514                                     Macao SAR, China    MO   MAC 1967
## 10515                                     Macao SAR, China    MO   MAC 1966
## 10516                                     Macao SAR, China    MO   MAC 1965
## 10517                                     Macao SAR, China    MO   MAC 1964
## 10518                                     Macao SAR, China    MO   MAC 1963
## 10519                                     Macao SAR, China    MO   MAC 1962
## 10520                                     Macao SAR, China    MO   MAC 1961
## 10521                                     Macao SAR, China    MO   MAC 1960
## 10522                                           Madagascar    MG   MDG 2022
## 10523                                           Madagascar    MG   MDG 2021
## 10524                                           Madagascar    MG   MDG 2020
## 10525                                           Madagascar    MG   MDG 2019
## 10526                                           Madagascar    MG   MDG 2018
## 10527                                           Madagascar    MG   MDG 2017
## 10528                                           Madagascar    MG   MDG 2016
## 10529                                           Madagascar    MG   MDG 2015
## 10530                                           Madagascar    MG   MDG 2014
## 10531                                           Madagascar    MG   MDG 2013
## 10532                                           Madagascar    MG   MDG 2012
## 10533                                           Madagascar    MG   MDG 2011
## 10534                                           Madagascar    MG   MDG 2010
## 10535                                           Madagascar    MG   MDG 2009
## 10536                                           Madagascar    MG   MDG 2008
## 10537                                           Madagascar    MG   MDG 2007
## 10538                                           Madagascar    MG   MDG 2006
## 10539                                           Madagascar    MG   MDG 2005
## 10540                                           Madagascar    MG   MDG 2004
## 10541                                           Madagascar    MG   MDG 2003
## 10542                                           Madagascar    MG   MDG 2002
## 10543                                           Madagascar    MG   MDG 2001
## 10544                                           Madagascar    MG   MDG 2000
## 10545                                           Madagascar    MG   MDG 1999
## 10546                                           Madagascar    MG   MDG 1998
## 10547                                           Madagascar    MG   MDG 1997
## 10548                                           Madagascar    MG   MDG 1996
## 10549                                           Madagascar    MG   MDG 1995
## 10550                                           Madagascar    MG   MDG 1994
## 10551                                           Madagascar    MG   MDG 1993
## 10552                                           Madagascar    MG   MDG 1992
## 10553                                           Madagascar    MG   MDG 1991
## 10554                                           Madagascar    MG   MDG 1990
## 10555                                           Madagascar    MG   MDG 1989
## 10556                                           Madagascar    MG   MDG 1988
## 10557                                           Madagascar    MG   MDG 1987
## 10558                                           Madagascar    MG   MDG 1986
## 10559                                           Madagascar    MG   MDG 1985
## 10560                                           Madagascar    MG   MDG 1984
## 10561                                           Madagascar    MG   MDG 1983
## 10562                                           Madagascar    MG   MDG 1982
## 10563                                           Madagascar    MG   MDG 1981
## 10564                                           Madagascar    MG   MDG 1980
## 10565                                           Madagascar    MG   MDG 1979
## 10566                                           Madagascar    MG   MDG 1978
## 10567                                           Madagascar    MG   MDG 1977
## 10568                                           Madagascar    MG   MDG 1976
## 10569                                           Madagascar    MG   MDG 1975
## 10570                                           Madagascar    MG   MDG 1974
## 10571                                           Madagascar    MG   MDG 1973
## 10572                                           Madagascar    MG   MDG 1972
## 10573                                           Madagascar    MG   MDG 1971
## 10574                                           Madagascar    MG   MDG 1970
## 10575                                           Madagascar    MG   MDG 1969
## 10576                                           Madagascar    MG   MDG 1968
## 10577                                           Madagascar    MG   MDG 1967
## 10578                                           Madagascar    MG   MDG 1966
## 10579                                           Madagascar    MG   MDG 1965
## 10580                                           Madagascar    MG   MDG 1964
## 10581                                           Madagascar    MG   MDG 1963
## 10582                                           Madagascar    MG   MDG 1962
## 10583                                           Madagascar    MG   MDG 1961
## 10584                                           Madagascar    MG   MDG 1960
## 10585                                               Malawi    MW   MWI 2022
## 10586                                               Malawi    MW   MWI 2021
## 10587                                               Malawi    MW   MWI 2020
## 10588                                               Malawi    MW   MWI 2019
## 10589                                               Malawi    MW   MWI 2018
## 10590                                               Malawi    MW   MWI 2017
## 10591                                               Malawi    MW   MWI 2016
## 10592                                               Malawi    MW   MWI 2015
## 10593                                               Malawi    MW   MWI 2014
## 10594                                               Malawi    MW   MWI 2013
## 10595                                               Malawi    MW   MWI 2012
## 10596                                               Malawi    MW   MWI 2011
## 10597                                               Malawi    MW   MWI 2010
## 10598                                               Malawi    MW   MWI 2009
## 10599                                               Malawi    MW   MWI 2008
## 10600                                               Malawi    MW   MWI 2007
## 10601                                               Malawi    MW   MWI 2006
## 10602                                               Malawi    MW   MWI 2005
## 10603                                               Malawi    MW   MWI 2004
## 10604                                               Malawi    MW   MWI 2003
## 10605                                               Malawi    MW   MWI 2002
## 10606                                               Malawi    MW   MWI 2001
## 10607                                               Malawi    MW   MWI 2000
## 10608                                               Malawi    MW   MWI 1999
## 10609                                               Malawi    MW   MWI 1998
## 10610                                               Malawi    MW   MWI 1997
## 10611                                               Malawi    MW   MWI 1996
## 10612                                               Malawi    MW   MWI 1995
## 10613                                               Malawi    MW   MWI 1994
## 10614                                               Malawi    MW   MWI 1993
## 10615                                               Malawi    MW   MWI 1992
## 10616                                               Malawi    MW   MWI 1991
## 10617                                               Malawi    MW   MWI 1990
## 10618                                               Malawi    MW   MWI 1989
## 10619                                               Malawi    MW   MWI 1988
## 10620                                               Malawi    MW   MWI 1987
## 10621                                               Malawi    MW   MWI 1986
## 10622                                               Malawi    MW   MWI 1985
## 10623                                               Malawi    MW   MWI 1984
## 10624                                               Malawi    MW   MWI 1983
## 10625                                               Malawi    MW   MWI 1982
## 10626                                               Malawi    MW   MWI 1981
## 10627                                               Malawi    MW   MWI 1980
## 10628                                               Malawi    MW   MWI 1979
## 10629                                               Malawi    MW   MWI 1978
## 10630                                               Malawi    MW   MWI 1977
## 10631                                               Malawi    MW   MWI 1976
## 10632                                               Malawi    MW   MWI 1975
## 10633                                               Malawi    MW   MWI 1974
## 10634                                               Malawi    MW   MWI 1973
## 10635                                               Malawi    MW   MWI 1972
## 10636                                               Malawi    MW   MWI 1971
## 10637                                               Malawi    MW   MWI 1970
## 10638                                               Malawi    MW   MWI 1969
## 10639                                               Malawi    MW   MWI 1968
## 10640                                               Malawi    MW   MWI 1967
## 10641                                               Malawi    MW   MWI 1966
## 10642                                               Malawi    MW   MWI 1965
## 10643                                               Malawi    MW   MWI 1964
## 10644                                               Malawi    MW   MWI 1963
## 10645                                               Malawi    MW   MWI 1962
## 10646                                               Malawi    MW   MWI 1961
## 10647                                               Malawi    MW   MWI 1960
## 10648                                             Malaysia    MY   MYS 2022
## 10649                                             Malaysia    MY   MYS 2021
## 10650                                             Malaysia    MY   MYS 2020
## 10651                                             Malaysia    MY   MYS 2019
## 10652                                             Malaysia    MY   MYS 2018
## 10653                                             Malaysia    MY   MYS 2017
## 10654                                             Malaysia    MY   MYS 2016
## 10655                                             Malaysia    MY   MYS 2015
## 10656                                             Malaysia    MY   MYS 2014
## 10657                                             Malaysia    MY   MYS 2013
## 10658                                             Malaysia    MY   MYS 2012
## 10659                                             Malaysia    MY   MYS 2011
## 10660                                             Malaysia    MY   MYS 2010
## 10661                                             Malaysia    MY   MYS 2009
## 10662                                             Malaysia    MY   MYS 2008
## 10663                                             Malaysia    MY   MYS 2007
## 10664                                             Malaysia    MY   MYS 2006
## 10665                                             Malaysia    MY   MYS 2005
## 10666                                             Malaysia    MY   MYS 2004
## 10667                                             Malaysia    MY   MYS 2003
## 10668                                             Malaysia    MY   MYS 2002
## 10669                                             Malaysia    MY   MYS 2001
## 10670                                             Malaysia    MY   MYS 2000
## 10671                                             Malaysia    MY   MYS 1999
## 10672                                             Malaysia    MY   MYS 1998
## 10673                                             Malaysia    MY   MYS 1997
## 10674                                             Malaysia    MY   MYS 1996
## 10675                                             Malaysia    MY   MYS 1995
## 10676                                             Malaysia    MY   MYS 1994
## 10677                                             Malaysia    MY   MYS 1993
## 10678                                             Malaysia    MY   MYS 1992
## 10679                                             Malaysia    MY   MYS 1991
## 10680                                             Malaysia    MY   MYS 1990
## 10681                                             Malaysia    MY   MYS 1989
## 10682                                             Malaysia    MY   MYS 1988
## 10683                                             Malaysia    MY   MYS 1987
## 10684                                             Malaysia    MY   MYS 1986
## 10685                                             Malaysia    MY   MYS 1985
## 10686                                             Malaysia    MY   MYS 1984
## 10687                                             Malaysia    MY   MYS 1983
## 10688                                             Malaysia    MY   MYS 1982
## 10689                                             Malaysia    MY   MYS 1981
## 10690                                             Malaysia    MY   MYS 1980
## 10691                                             Malaysia    MY   MYS 1979
## 10692                                             Malaysia    MY   MYS 1978
## 10693                                             Malaysia    MY   MYS 1977
## 10694                                             Malaysia    MY   MYS 1976
## 10695                                             Malaysia    MY   MYS 1975
## 10696                                             Malaysia    MY   MYS 1974
## 10697                                             Malaysia    MY   MYS 1973
## 10698                                             Malaysia    MY   MYS 1972
## 10699                                             Malaysia    MY   MYS 1971
## 10700                                             Malaysia    MY   MYS 1970
## 10701                                             Malaysia    MY   MYS 1969
## 10702                                             Malaysia    MY   MYS 1968
## 10703                                             Malaysia    MY   MYS 1967
## 10704                                             Malaysia    MY   MYS 1966
## 10705                                             Malaysia    MY   MYS 1965
## 10706                                             Malaysia    MY   MYS 1964
## 10707                                             Malaysia    MY   MYS 1963
## 10708                                             Malaysia    MY   MYS 1962
## 10709                                             Malaysia    MY   MYS 1961
## 10710                                             Malaysia    MY   MYS 1960
## 10711                                             Maldives    MV   MDV 2022
## 10712                                             Maldives    MV   MDV 2021
## 10713                                             Maldives    MV   MDV 2020
## 10714                                             Maldives    MV   MDV 2019
## 10715                                             Maldives    MV   MDV 2018
## 10716                                             Maldives    MV   MDV 2017
## 10717                                             Maldives    MV   MDV 2016
## 10718                                             Maldives    MV   MDV 2015
## 10719                                             Maldives    MV   MDV 2014
## 10720                                             Maldives    MV   MDV 2013
## 10721                                             Maldives    MV   MDV 2012
## 10722                                             Maldives    MV   MDV 2011
## 10723                                             Maldives    MV   MDV 2010
## 10724                                             Maldives    MV   MDV 2009
## 10725                                             Maldives    MV   MDV 2008
## 10726                                             Maldives    MV   MDV 2007
## 10727                                             Maldives    MV   MDV 2006
## 10728                                             Maldives    MV   MDV 2005
## 10729                                             Maldives    MV   MDV 2004
## 10730                                             Maldives    MV   MDV 2003
## 10731                                             Maldives    MV   MDV 2002
## 10732                                             Maldives    MV   MDV 2001
## 10733                                             Maldives    MV   MDV 2000
## 10734                                             Maldives    MV   MDV 1999
## 10735                                             Maldives    MV   MDV 1998
## 10736                                             Maldives    MV   MDV 1997
## 10737                                             Maldives    MV   MDV 1996
## 10738                                             Maldives    MV   MDV 1995
## 10739                                             Maldives    MV   MDV 1994
## 10740                                             Maldives    MV   MDV 1993
## 10741                                             Maldives    MV   MDV 1992
## 10742                                             Maldives    MV   MDV 1991
## 10743                                             Maldives    MV   MDV 1990
## 10744                                             Maldives    MV   MDV 1989
## 10745                                             Maldives    MV   MDV 1988
## 10746                                             Maldives    MV   MDV 1987
## 10747                                             Maldives    MV   MDV 1986
## 10748                                             Maldives    MV   MDV 1985
## 10749                                             Maldives    MV   MDV 1984
## 10750                                             Maldives    MV   MDV 1983
## 10751                                             Maldives    MV   MDV 1982
## 10752                                             Maldives    MV   MDV 1981
## 10753                                             Maldives    MV   MDV 1980
## 10754                                             Maldives    MV   MDV 1979
## 10755                                             Maldives    MV   MDV 1978
## 10756                                             Maldives    MV   MDV 1977
## 10757                                             Maldives    MV   MDV 1976
## 10758                                             Maldives    MV   MDV 1975
## 10759                                             Maldives    MV   MDV 1974
## 10760                                             Maldives    MV   MDV 1973
## 10761                                             Maldives    MV   MDV 1972
## 10762                                             Maldives    MV   MDV 1971
## 10763                                             Maldives    MV   MDV 1970
## 10764                                             Maldives    MV   MDV 1969
## 10765                                             Maldives    MV   MDV 1968
## 10766                                             Maldives    MV   MDV 1967
## 10767                                             Maldives    MV   MDV 1966
## 10768                                             Maldives    MV   MDV 1965
## 10769                                             Maldives    MV   MDV 1964
## 10770                                             Maldives    MV   MDV 1963
## 10771                                             Maldives    MV   MDV 1962
## 10772                                             Maldives    MV   MDV 1961
## 10773                                             Maldives    MV   MDV 1960
## 10774                                                 Mali    ML   MLI 2022
## 10775                                                 Mali    ML   MLI 2021
## 10776                                                 Mali    ML   MLI 2020
## 10777                                                 Mali    ML   MLI 2019
## 10778                                                 Mali    ML   MLI 2018
## 10779                                                 Mali    ML   MLI 2017
## 10780                                                 Mali    ML   MLI 2016
## 10781                                                 Mali    ML   MLI 2015
## 10782                                                 Mali    ML   MLI 2014
## 10783                                                 Mali    ML   MLI 2013
## 10784                                                 Mali    ML   MLI 2012
## 10785                                                 Mali    ML   MLI 2011
## 10786                                                 Mali    ML   MLI 2010
## 10787                                                 Mali    ML   MLI 2009
## 10788                                                 Mali    ML   MLI 2008
## 10789                                                 Mali    ML   MLI 2007
## 10790                                                 Mali    ML   MLI 2006
## 10791                                                 Mali    ML   MLI 2005
## 10792                                                 Mali    ML   MLI 2004
## 10793                                                 Mali    ML   MLI 2003
## 10794                                                 Mali    ML   MLI 2002
## 10795                                                 Mali    ML   MLI 2001
## 10796                                                 Mali    ML   MLI 2000
## 10797                                                 Mali    ML   MLI 1999
## 10798                                                 Mali    ML   MLI 1998
## 10799                                                 Mali    ML   MLI 1997
## 10800                                                 Mali    ML   MLI 1996
## 10801                                                 Mali    ML   MLI 1995
## 10802                                                 Mali    ML   MLI 1994
## 10803                                                 Mali    ML   MLI 1993
## 10804                                                 Mali    ML   MLI 1992
## 10805                                                 Mali    ML   MLI 1991
## 10806                                                 Mali    ML   MLI 1990
## 10807                                                 Mali    ML   MLI 1989
## 10808                                                 Mali    ML   MLI 1988
## 10809                                                 Mali    ML   MLI 1987
## 10810                                                 Mali    ML   MLI 1986
## 10811                                                 Mali    ML   MLI 1985
## 10812                                                 Mali    ML   MLI 1984
## 10813                                                 Mali    ML   MLI 1983
## 10814                                                 Mali    ML   MLI 1982
## 10815                                                 Mali    ML   MLI 1981
## 10816                                                 Mali    ML   MLI 1980
## 10817                                                 Mali    ML   MLI 1979
## 10818                                                 Mali    ML   MLI 1978
## 10819                                                 Mali    ML   MLI 1977
## 10820                                                 Mali    ML   MLI 1976
## 10821                                                 Mali    ML   MLI 1975
## 10822                                                 Mali    ML   MLI 1974
## 10823                                                 Mali    ML   MLI 1973
## 10824                                                 Mali    ML   MLI 1972
## 10825                                                 Mali    ML   MLI 1971
## 10826                                                 Mali    ML   MLI 1970
## 10827                                                 Mali    ML   MLI 1969
## 10828                                                 Mali    ML   MLI 1968
## 10829                                                 Mali    ML   MLI 1967
## 10830                                                 Mali    ML   MLI 1966
## 10831                                                 Mali    ML   MLI 1965
## 10832                                                 Mali    ML   MLI 1964
## 10833                                                 Mali    ML   MLI 1963
## 10834                                                 Mali    ML   MLI 1962
## 10835                                                 Mali    ML   MLI 1961
## 10836                                                 Mali    ML   MLI 1960
## 10837                                                Malta    MT   MLT 2022
## 10838                                                Malta    MT   MLT 2021
## 10839                                                Malta    MT   MLT 2020
## 10840                                                Malta    MT   MLT 2019
## 10841                                                Malta    MT   MLT 2018
## 10842                                                Malta    MT   MLT 2017
## 10843                                                Malta    MT   MLT 2016
## 10844                                                Malta    MT   MLT 2015
## 10845                                                Malta    MT   MLT 2014
## 10846                                                Malta    MT   MLT 2013
## 10847                                                Malta    MT   MLT 2012
## 10848                                                Malta    MT   MLT 2011
## 10849                                                Malta    MT   MLT 2010
## 10850                                                Malta    MT   MLT 2009
## 10851                                                Malta    MT   MLT 2008
## 10852                                                Malta    MT   MLT 2007
## 10853                                                Malta    MT   MLT 2006
## 10854                                                Malta    MT   MLT 2005
## 10855                                                Malta    MT   MLT 2004
## 10856                                                Malta    MT   MLT 2003
## 10857                                                Malta    MT   MLT 2002
## 10858                                                Malta    MT   MLT 2001
## 10859                                                Malta    MT   MLT 2000
## 10860                                                Malta    MT   MLT 1999
## 10861                                                Malta    MT   MLT 1998
## 10862                                                Malta    MT   MLT 1997
## 10863                                                Malta    MT   MLT 1996
## 10864                                                Malta    MT   MLT 1995
## 10865                                                Malta    MT   MLT 1994
## 10866                                                Malta    MT   MLT 1993
## 10867                                                Malta    MT   MLT 1992
## 10868                                                Malta    MT   MLT 1991
## 10869                                                Malta    MT   MLT 1990
## 10870                                                Malta    MT   MLT 1989
## 10871                                                Malta    MT   MLT 1988
## 10872                                                Malta    MT   MLT 1987
## 10873                                                Malta    MT   MLT 1986
## 10874                                                Malta    MT   MLT 1985
## 10875                                                Malta    MT   MLT 1984
## 10876                                                Malta    MT   MLT 1983
## 10877                                                Malta    MT   MLT 1982
## 10878                                                Malta    MT   MLT 1981
## 10879                                                Malta    MT   MLT 1980
## 10880                                                Malta    MT   MLT 1979
## 10881                                                Malta    MT   MLT 1978
## 10882                                                Malta    MT   MLT 1977
## 10883                                                Malta    MT   MLT 1976
## 10884                                                Malta    MT   MLT 1975
## 10885                                                Malta    MT   MLT 1974
## 10886                                                Malta    MT   MLT 1973
## 10887                                                Malta    MT   MLT 1972
## 10888                                                Malta    MT   MLT 1971
## 10889                                                Malta    MT   MLT 1970
## 10890                                                Malta    MT   MLT 1969
## 10891                                                Malta    MT   MLT 1968
## 10892                                                Malta    MT   MLT 1967
## 10893                                                Malta    MT   MLT 1966
## 10894                                                Malta    MT   MLT 1965
## 10895                                                Malta    MT   MLT 1964
## 10896                                                Malta    MT   MLT 1963
## 10897                                                Malta    MT   MLT 1962
## 10898                                                Malta    MT   MLT 1961
## 10899                                                Malta    MT   MLT 1960
## 10900                                     Marshall Islands    MH   MHL 2022
## 10901                                     Marshall Islands    MH   MHL 2021
## 10902                                     Marshall Islands    MH   MHL 2020
## 10903                                     Marshall Islands    MH   MHL 2019
## 10904                                     Marshall Islands    MH   MHL 2018
## 10905                                     Marshall Islands    MH   MHL 2017
## 10906                                     Marshall Islands    MH   MHL 2016
## 10907                                     Marshall Islands    MH   MHL 2015
## 10908                                     Marshall Islands    MH   MHL 2014
## 10909                                     Marshall Islands    MH   MHL 2013
## 10910                                     Marshall Islands    MH   MHL 2012
## 10911                                     Marshall Islands    MH   MHL 2011
## 10912                                     Marshall Islands    MH   MHL 2010
## 10913                                     Marshall Islands    MH   MHL 2009
## 10914                                     Marshall Islands    MH   MHL 2008
## 10915                                     Marshall Islands    MH   MHL 2007
## 10916                                     Marshall Islands    MH   MHL 2006
## 10917                                     Marshall Islands    MH   MHL 2005
## 10918                                     Marshall Islands    MH   MHL 2004
## 10919                                     Marshall Islands    MH   MHL 2003
## 10920                                     Marshall Islands    MH   MHL 2002
## 10921                                     Marshall Islands    MH   MHL 2001
## 10922                                     Marshall Islands    MH   MHL 2000
## 10923                                     Marshall Islands    MH   MHL 1999
## 10924                                     Marshall Islands    MH   MHL 1998
## 10925                                     Marshall Islands    MH   MHL 1997
## 10926                                     Marshall Islands    MH   MHL 1996
## 10927                                     Marshall Islands    MH   MHL 1995
## 10928                                     Marshall Islands    MH   MHL 1994
## 10929                                     Marshall Islands    MH   MHL 1993
## 10930                                     Marshall Islands    MH   MHL 1992
## 10931                                     Marshall Islands    MH   MHL 1991
## 10932                                     Marshall Islands    MH   MHL 1990
## 10933                                     Marshall Islands    MH   MHL 1989
## 10934                                     Marshall Islands    MH   MHL 1988
## 10935                                     Marshall Islands    MH   MHL 1987
## 10936                                     Marshall Islands    MH   MHL 1986
## 10937                                     Marshall Islands    MH   MHL 1985
## 10938                                     Marshall Islands    MH   MHL 1984
## 10939                                     Marshall Islands    MH   MHL 1983
## 10940                                     Marshall Islands    MH   MHL 1982
## 10941                                     Marshall Islands    MH   MHL 1981
## 10942                                     Marshall Islands    MH   MHL 1980
## 10943                                     Marshall Islands    MH   MHL 1979
## 10944                                     Marshall Islands    MH   MHL 1978
## 10945                                     Marshall Islands    MH   MHL 1977
## 10946                                     Marshall Islands    MH   MHL 1976
## 10947                                     Marshall Islands    MH   MHL 1975
## 10948                                     Marshall Islands    MH   MHL 1974
## 10949                                     Marshall Islands    MH   MHL 1973
## 10950                                     Marshall Islands    MH   MHL 1972
## 10951                                     Marshall Islands    MH   MHL 1971
## 10952                                     Marshall Islands    MH   MHL 1970
## 10953                                     Marshall Islands    MH   MHL 1969
## 10954                                     Marshall Islands    MH   MHL 1968
## 10955                                     Marshall Islands    MH   MHL 1967
## 10956                                     Marshall Islands    MH   MHL 1966
## 10957                                     Marshall Islands    MH   MHL 1965
## 10958                                     Marshall Islands    MH   MHL 1964
## 10959                                     Marshall Islands    MH   MHL 1963
## 10960                                     Marshall Islands    MH   MHL 1962
## 10961                                     Marshall Islands    MH   MHL 1961
## 10962                                     Marshall Islands    MH   MHL 1960
## 10963                                           Mauritania    MR   MRT 2022
## 10964                                           Mauritania    MR   MRT 2021
## 10965                                           Mauritania    MR   MRT 2020
## 10966                                           Mauritania    MR   MRT 2019
## 10967                                           Mauritania    MR   MRT 2018
## 10968                                           Mauritania    MR   MRT 2017
## 10969                                           Mauritania    MR   MRT 2016
## 10970                                           Mauritania    MR   MRT 2015
## 10971                                           Mauritania    MR   MRT 2014
## 10972                                           Mauritania    MR   MRT 2013
## 10973                                           Mauritania    MR   MRT 2012
## 10974                                           Mauritania    MR   MRT 2011
## 10975                                           Mauritania    MR   MRT 2010
## 10976                                           Mauritania    MR   MRT 2009
## 10977                                           Mauritania    MR   MRT 2008
## 10978                                           Mauritania    MR   MRT 2007
## 10979                                           Mauritania    MR   MRT 2006
## 10980                                           Mauritania    MR   MRT 2005
## 10981                                           Mauritania    MR   MRT 2004
## 10982                                           Mauritania    MR   MRT 2003
## 10983                                           Mauritania    MR   MRT 2002
## 10984                                           Mauritania    MR   MRT 2001
## 10985                                           Mauritania    MR   MRT 2000
## 10986                                           Mauritania    MR   MRT 1999
## 10987                                           Mauritania    MR   MRT 1998
## 10988                                           Mauritania    MR   MRT 1997
## 10989                                           Mauritania    MR   MRT 1996
## 10990                                           Mauritania    MR   MRT 1995
## 10991                                           Mauritania    MR   MRT 1994
## 10992                                           Mauritania    MR   MRT 1993
## 10993                                           Mauritania    MR   MRT 1992
## 10994                                           Mauritania    MR   MRT 1991
## 10995                                           Mauritania    MR   MRT 1990
## 10996                                           Mauritania    MR   MRT 1989
## 10997                                           Mauritania    MR   MRT 1988
## 10998                                           Mauritania    MR   MRT 1987
## 10999                                           Mauritania    MR   MRT 1986
## 11000                                           Mauritania    MR   MRT 1985
## 11001                                           Mauritania    MR   MRT 1984
## 11002                                           Mauritania    MR   MRT 1983
## 11003                                           Mauritania    MR   MRT 1982
## 11004                                           Mauritania    MR   MRT 1981
## 11005                                           Mauritania    MR   MRT 1980
## 11006                                           Mauritania    MR   MRT 1979
## 11007                                           Mauritania    MR   MRT 1978
## 11008                                           Mauritania    MR   MRT 1977
## 11009                                           Mauritania    MR   MRT 1976
## 11010                                           Mauritania    MR   MRT 1975
## 11011                                           Mauritania    MR   MRT 1974
## 11012                                           Mauritania    MR   MRT 1973
## 11013                                           Mauritania    MR   MRT 1972
## 11014                                           Mauritania    MR   MRT 1971
## 11015                                           Mauritania    MR   MRT 1970
## 11016                                           Mauritania    MR   MRT 1969
## 11017                                           Mauritania    MR   MRT 1968
## 11018                                           Mauritania    MR   MRT 1967
## 11019                                           Mauritania    MR   MRT 1966
## 11020                                           Mauritania    MR   MRT 1965
## 11021                                           Mauritania    MR   MRT 1964
## 11022                                           Mauritania    MR   MRT 1963
## 11023                                           Mauritania    MR   MRT 1962
## 11024                                           Mauritania    MR   MRT 1961
## 11025                                           Mauritania    MR   MRT 1960
## 11026                                            Mauritius    MU   MUS 2022
## 11027                                            Mauritius    MU   MUS 2021
## 11028                                            Mauritius    MU   MUS 2020
## 11029                                            Mauritius    MU   MUS 2019
## 11030                                            Mauritius    MU   MUS 2018
## 11031                                            Mauritius    MU   MUS 2017
## 11032                                            Mauritius    MU   MUS 2016
## 11033                                            Mauritius    MU   MUS 2015
## 11034                                            Mauritius    MU   MUS 2014
## 11035                                            Mauritius    MU   MUS 2013
## 11036                                            Mauritius    MU   MUS 2012
## 11037                                            Mauritius    MU   MUS 2011
## 11038                                            Mauritius    MU   MUS 2010
## 11039                                            Mauritius    MU   MUS 2009
## 11040                                            Mauritius    MU   MUS 2008
## 11041                                            Mauritius    MU   MUS 2007
## 11042                                            Mauritius    MU   MUS 2006
## 11043                                            Mauritius    MU   MUS 2005
## 11044                                            Mauritius    MU   MUS 2004
## 11045                                            Mauritius    MU   MUS 2003
## 11046                                            Mauritius    MU   MUS 2002
## 11047                                            Mauritius    MU   MUS 2001
## 11048                                            Mauritius    MU   MUS 2000
## 11049                                            Mauritius    MU   MUS 1999
## 11050                                            Mauritius    MU   MUS 1998
## 11051                                            Mauritius    MU   MUS 1997
## 11052                                            Mauritius    MU   MUS 1996
## 11053                                            Mauritius    MU   MUS 1995
## 11054                                            Mauritius    MU   MUS 1994
## 11055                                            Mauritius    MU   MUS 1993
## 11056                                            Mauritius    MU   MUS 1992
## 11057                                            Mauritius    MU   MUS 1991
## 11058                                            Mauritius    MU   MUS 1990
## 11059                                            Mauritius    MU   MUS 1989
## 11060                                            Mauritius    MU   MUS 1988
## 11061                                            Mauritius    MU   MUS 1987
## 11062                                            Mauritius    MU   MUS 1986
## 11063                                            Mauritius    MU   MUS 1985
## 11064                                            Mauritius    MU   MUS 1984
## 11065                                            Mauritius    MU   MUS 1983
## 11066                                            Mauritius    MU   MUS 1982
## 11067                                            Mauritius    MU   MUS 1981
## 11068                                            Mauritius    MU   MUS 1980
## 11069                                            Mauritius    MU   MUS 1979
## 11070                                            Mauritius    MU   MUS 1978
## 11071                                            Mauritius    MU   MUS 1977
## 11072                                            Mauritius    MU   MUS 1976
## 11073                                            Mauritius    MU   MUS 1975
## 11074                                            Mauritius    MU   MUS 1974
## 11075                                            Mauritius    MU   MUS 1973
## 11076                                            Mauritius    MU   MUS 1972
## 11077                                            Mauritius    MU   MUS 1971
## 11078                                            Mauritius    MU   MUS 1970
## 11079                                            Mauritius    MU   MUS 1969
## 11080                                            Mauritius    MU   MUS 1968
## 11081                                            Mauritius    MU   MUS 1967
## 11082                                            Mauritius    MU   MUS 1966
## 11083                                            Mauritius    MU   MUS 1965
## 11084                                            Mauritius    MU   MUS 1964
## 11085                                            Mauritius    MU   MUS 1963
## 11086                                            Mauritius    MU   MUS 1962
## 11087                                            Mauritius    MU   MUS 1961
## 11088                                            Mauritius    MU   MUS 1960
## 11089                                               Mexico    MX   MEX 2022
## 11090                                               Mexico    MX   MEX 2021
## 11091                                               Mexico    MX   MEX 2020
## 11092                                               Mexico    MX   MEX 2019
## 11093                                               Mexico    MX   MEX 2018
## 11094                                               Mexico    MX   MEX 2017
## 11095                                               Mexico    MX   MEX 2016
## 11096                                               Mexico    MX   MEX 2015
## 11097                                               Mexico    MX   MEX 2014
## 11098                                               Mexico    MX   MEX 2013
## 11099                                               Mexico    MX   MEX 2012
## 11100                                               Mexico    MX   MEX 2011
## 11101                                               Mexico    MX   MEX 2010
## 11102                                               Mexico    MX   MEX 2009
## 11103                                               Mexico    MX   MEX 2008
## 11104                                               Mexico    MX   MEX 2007
## 11105                                               Mexico    MX   MEX 2006
## 11106                                               Mexico    MX   MEX 2005
## 11107                                               Mexico    MX   MEX 2004
## 11108                                               Mexico    MX   MEX 2003
## 11109                                               Mexico    MX   MEX 2002
## 11110                                               Mexico    MX   MEX 2001
## 11111                                               Mexico    MX   MEX 2000
## 11112                                               Mexico    MX   MEX 1999
## 11113                                               Mexico    MX   MEX 1998
## 11114                                               Mexico    MX   MEX 1997
## 11115                                               Mexico    MX   MEX 1996
## 11116                                               Mexico    MX   MEX 1995
## 11117                                               Mexico    MX   MEX 1994
## 11118                                               Mexico    MX   MEX 1993
## 11119                                               Mexico    MX   MEX 1992
## 11120                                               Mexico    MX   MEX 1991
## 11121                                               Mexico    MX   MEX 1990
## 11122                                               Mexico    MX   MEX 1989
## 11123                                               Mexico    MX   MEX 1988
## 11124                                               Mexico    MX   MEX 1987
## 11125                                               Mexico    MX   MEX 1986
## 11126                                               Mexico    MX   MEX 1985
## 11127                                               Mexico    MX   MEX 1984
## 11128                                               Mexico    MX   MEX 1983
## 11129                                               Mexico    MX   MEX 1982
## 11130                                               Mexico    MX   MEX 1981
## 11131                                               Mexico    MX   MEX 1980
## 11132                                               Mexico    MX   MEX 1979
## 11133                                               Mexico    MX   MEX 1978
## 11134                                               Mexico    MX   MEX 1977
## 11135                                               Mexico    MX   MEX 1976
## 11136                                               Mexico    MX   MEX 1975
## 11137                                               Mexico    MX   MEX 1974
## 11138                                               Mexico    MX   MEX 1973
## 11139                                               Mexico    MX   MEX 1972
## 11140                                               Mexico    MX   MEX 1971
## 11141                                               Mexico    MX   MEX 1970
## 11142                                               Mexico    MX   MEX 1969
## 11143                                               Mexico    MX   MEX 1968
## 11144                                               Mexico    MX   MEX 1967
## 11145                                               Mexico    MX   MEX 1966
## 11146                                               Mexico    MX   MEX 1965
## 11147                                               Mexico    MX   MEX 1964
## 11148                                               Mexico    MX   MEX 1963
## 11149                                               Mexico    MX   MEX 1962
## 11150                                               Mexico    MX   MEX 1961
## 11151                                               Mexico    MX   MEX 1960
## 11152                                Micronesia, Fed. Sts.    FM   FSM 2022
## 11153                                Micronesia, Fed. Sts.    FM   FSM 2021
## 11154                                Micronesia, Fed. Sts.    FM   FSM 2020
## 11155                                Micronesia, Fed. Sts.    FM   FSM 2019
## 11156                                Micronesia, Fed. Sts.    FM   FSM 2018
## 11157                                Micronesia, Fed. Sts.    FM   FSM 2017
## 11158                                Micronesia, Fed. Sts.    FM   FSM 2016
## 11159                                Micronesia, Fed. Sts.    FM   FSM 2015
## 11160                                Micronesia, Fed. Sts.    FM   FSM 2014
## 11161                                Micronesia, Fed. Sts.    FM   FSM 2013
## 11162                                Micronesia, Fed. Sts.    FM   FSM 2012
## 11163                                Micronesia, Fed. Sts.    FM   FSM 2011
## 11164                                Micronesia, Fed. Sts.    FM   FSM 2010
## 11165                                Micronesia, Fed. Sts.    FM   FSM 2009
## 11166                                Micronesia, Fed. Sts.    FM   FSM 2008
## 11167                                Micronesia, Fed. Sts.    FM   FSM 2007
## 11168                                Micronesia, Fed. Sts.    FM   FSM 2006
## 11169                                Micronesia, Fed. Sts.    FM   FSM 2005
## 11170                                Micronesia, Fed. Sts.    FM   FSM 2004
## 11171                                Micronesia, Fed. Sts.    FM   FSM 2003
## 11172                                Micronesia, Fed. Sts.    FM   FSM 2002
## 11173                                Micronesia, Fed. Sts.    FM   FSM 2001
## 11174                                Micronesia, Fed. Sts.    FM   FSM 2000
## 11175                                Micronesia, Fed. Sts.    FM   FSM 1999
## 11176                                Micronesia, Fed. Sts.    FM   FSM 1998
## 11177                                Micronesia, Fed. Sts.    FM   FSM 1997
## 11178                                Micronesia, Fed. Sts.    FM   FSM 1996
## 11179                                Micronesia, Fed. Sts.    FM   FSM 1995
## 11180                                Micronesia, Fed. Sts.    FM   FSM 1994
## 11181                                Micronesia, Fed. Sts.    FM   FSM 1993
## 11182                                Micronesia, Fed. Sts.    FM   FSM 1992
## 11183                                Micronesia, Fed. Sts.    FM   FSM 1991
## 11184                                Micronesia, Fed. Sts.    FM   FSM 1990
## 11185                                Micronesia, Fed. Sts.    FM   FSM 1989
## 11186                                Micronesia, Fed. Sts.    FM   FSM 1988
## 11187                                Micronesia, Fed. Sts.    FM   FSM 1987
## 11188                                Micronesia, Fed. Sts.    FM   FSM 1986
## 11189                                Micronesia, Fed. Sts.    FM   FSM 1985
## 11190                                Micronesia, Fed. Sts.    FM   FSM 1984
## 11191                                Micronesia, Fed. Sts.    FM   FSM 1983
## 11192                                Micronesia, Fed. Sts.    FM   FSM 1982
## 11193                                Micronesia, Fed. Sts.    FM   FSM 1981
## 11194                                Micronesia, Fed. Sts.    FM   FSM 1980
## 11195                                Micronesia, Fed. Sts.    FM   FSM 1979
## 11196                                Micronesia, Fed. Sts.    FM   FSM 1978
## 11197                                Micronesia, Fed. Sts.    FM   FSM 1977
## 11198                                Micronesia, Fed. Sts.    FM   FSM 1976
## 11199                                Micronesia, Fed. Sts.    FM   FSM 1975
## 11200                                Micronesia, Fed. Sts.    FM   FSM 1974
## 11201                                Micronesia, Fed. Sts.    FM   FSM 1973
## 11202                                Micronesia, Fed. Sts.    FM   FSM 1972
## 11203                                Micronesia, Fed. Sts.    FM   FSM 1971
## 11204                                Micronesia, Fed. Sts.    FM   FSM 1970
## 11205                                Micronesia, Fed. Sts.    FM   FSM 1969
## 11206                                Micronesia, Fed. Sts.    FM   FSM 1968
## 11207                                Micronesia, Fed. Sts.    FM   FSM 1967
## 11208                                Micronesia, Fed. Sts.    FM   FSM 1966
## 11209                                Micronesia, Fed. Sts.    FM   FSM 1965
## 11210                                Micronesia, Fed. Sts.    FM   FSM 1964
## 11211                                Micronesia, Fed. Sts.    FM   FSM 1963
## 11212                                Micronesia, Fed. Sts.    FM   FSM 1962
## 11213                                Micronesia, Fed. Sts.    FM   FSM 1961
## 11214                                Micronesia, Fed. Sts.    FM   FSM 1960
## 11215                                              Moldova    MD   MDA 2022
## 11216                                              Moldova    MD   MDA 2021
## 11217                                              Moldova    MD   MDA 2020
## 11218                                              Moldova    MD   MDA 2019
## 11219                                              Moldova    MD   MDA 2018
## 11220                                              Moldova    MD   MDA 2017
## 11221                                              Moldova    MD   MDA 2016
## 11222                                              Moldova    MD   MDA 2015
## 11223                                              Moldova    MD   MDA 2014
## 11224                                              Moldova    MD   MDA 2013
## 11225                                              Moldova    MD   MDA 2012
## 11226                                              Moldova    MD   MDA 2011
## 11227                                              Moldova    MD   MDA 2010
## 11228                                              Moldova    MD   MDA 2009
## 11229                                              Moldova    MD   MDA 2008
## 11230                                              Moldova    MD   MDA 2007
## 11231                                              Moldova    MD   MDA 2006
## 11232                                              Moldova    MD   MDA 2005
## 11233                                              Moldova    MD   MDA 2004
## 11234                                              Moldova    MD   MDA 2003
## 11235                                              Moldova    MD   MDA 2002
## 11236                                              Moldova    MD   MDA 2001
## 11237                                              Moldova    MD   MDA 2000
## 11238                                              Moldova    MD   MDA 1999
## 11239                                              Moldova    MD   MDA 1998
## 11240                                              Moldova    MD   MDA 1997
## 11241                                              Moldova    MD   MDA 1996
## 11242                                              Moldova    MD   MDA 1995
## 11243                                              Moldova    MD   MDA 1994
## 11244                                              Moldova    MD   MDA 1993
## 11245                                              Moldova    MD   MDA 1992
## 11246                                              Moldova    MD   MDA 1991
## 11247                                              Moldova    MD   MDA 1990
## 11248                                              Moldova    MD   MDA 1989
## 11249                                              Moldova    MD   MDA 1988
## 11250                                              Moldova    MD   MDA 1987
## 11251                                              Moldova    MD   MDA 1986
## 11252                                              Moldova    MD   MDA 1985
## 11253                                              Moldova    MD   MDA 1984
## 11254                                              Moldova    MD   MDA 1983
## 11255                                              Moldova    MD   MDA 1982
## 11256                                              Moldova    MD   MDA 1981
## 11257                                              Moldova    MD   MDA 1980
## 11258                                              Moldova    MD   MDA 1979
## 11259                                              Moldova    MD   MDA 1978
## 11260                                              Moldova    MD   MDA 1977
## 11261                                              Moldova    MD   MDA 1976
## 11262                                              Moldova    MD   MDA 1975
## 11263                                              Moldova    MD   MDA 1974
## 11264                                              Moldova    MD   MDA 1973
## 11265                                              Moldova    MD   MDA 1972
## 11266                                              Moldova    MD   MDA 1971
## 11267                                              Moldova    MD   MDA 1970
## 11268                                              Moldova    MD   MDA 1969
## 11269                                              Moldova    MD   MDA 1968
## 11270                                              Moldova    MD   MDA 1967
## 11271                                              Moldova    MD   MDA 1966
## 11272                                              Moldova    MD   MDA 1965
## 11273                                              Moldova    MD   MDA 1964
## 11274                                              Moldova    MD   MDA 1963
## 11275                                              Moldova    MD   MDA 1962
## 11276                                              Moldova    MD   MDA 1961
## 11277                                              Moldova    MD   MDA 1960
## 11278                                               Monaco    MC   MCO 2022
## 11279                                               Monaco    MC   MCO 2021
## 11280                                               Monaco    MC   MCO 2020
## 11281                                               Monaco    MC   MCO 2019
## 11282                                               Monaco    MC   MCO 2018
## 11283                                               Monaco    MC   MCO 2017
## 11284                                               Monaco    MC   MCO 2016
## 11285                                               Monaco    MC   MCO 2015
## 11286                                               Monaco    MC   MCO 2014
## 11287                                               Monaco    MC   MCO 2013
## 11288                                               Monaco    MC   MCO 2012
## 11289                                               Monaco    MC   MCO 2011
## 11290                                               Monaco    MC   MCO 2010
## 11291                                               Monaco    MC   MCO 2009
## 11292                                               Monaco    MC   MCO 2008
## 11293                                               Monaco    MC   MCO 2007
## 11294                                               Monaco    MC   MCO 2006
## 11295                                               Monaco    MC   MCO 2005
## 11296                                               Monaco    MC   MCO 2004
## 11297                                               Monaco    MC   MCO 2003
## 11298                                               Monaco    MC   MCO 2002
## 11299                                               Monaco    MC   MCO 2001
## 11300                                               Monaco    MC   MCO 2000
## 11301                                               Monaco    MC   MCO 1999
## 11302                                               Monaco    MC   MCO 1998
## 11303                                               Monaco    MC   MCO 1997
## 11304                                               Monaco    MC   MCO 1996
## 11305                                               Monaco    MC   MCO 1995
## 11306                                               Monaco    MC   MCO 1994
## 11307                                               Monaco    MC   MCO 1993
## 11308                                               Monaco    MC   MCO 1992
## 11309                                               Monaco    MC   MCO 1991
## 11310                                               Monaco    MC   MCO 1990
## 11311                                               Monaco    MC   MCO 1989
## 11312                                               Monaco    MC   MCO 1988
## 11313                                               Monaco    MC   MCO 1987
## 11314                                               Monaco    MC   MCO 1986
## 11315                                               Monaco    MC   MCO 1985
## 11316                                               Monaco    MC   MCO 1984
## 11317                                               Monaco    MC   MCO 1983
## 11318                                               Monaco    MC   MCO 1982
## 11319                                               Monaco    MC   MCO 1981
## 11320                                               Monaco    MC   MCO 1980
## 11321                                               Monaco    MC   MCO 1979
## 11322                                               Monaco    MC   MCO 1978
## 11323                                               Monaco    MC   MCO 1977
## 11324                                               Monaco    MC   MCO 1976
## 11325                                               Monaco    MC   MCO 1975
## 11326                                               Monaco    MC   MCO 1974
## 11327                                               Monaco    MC   MCO 1973
## 11328                                               Monaco    MC   MCO 1972
## 11329                                               Monaco    MC   MCO 1971
## 11330                                               Monaco    MC   MCO 1970
## 11331                                               Monaco    MC   MCO 1969
## 11332                                               Monaco    MC   MCO 1968
## 11333                                               Monaco    MC   MCO 1967
## 11334                                               Monaco    MC   MCO 1966
## 11335                                               Monaco    MC   MCO 1965
## 11336                                               Monaco    MC   MCO 1964
## 11337                                               Monaco    MC   MCO 1963
## 11338                                               Monaco    MC   MCO 1962
## 11339                                               Monaco    MC   MCO 1961
## 11340                                               Monaco    MC   MCO 1960
## 11341                                             Mongolia    MN   MNG 2022
## 11342                                             Mongolia    MN   MNG 2021
## 11343                                             Mongolia    MN   MNG 2020
## 11344                                             Mongolia    MN   MNG 2019
## 11345                                             Mongolia    MN   MNG 2018
## 11346                                             Mongolia    MN   MNG 2017
## 11347                                             Mongolia    MN   MNG 2016
## 11348                                             Mongolia    MN   MNG 2015
## 11349                                             Mongolia    MN   MNG 2014
## 11350                                             Mongolia    MN   MNG 2013
## 11351                                             Mongolia    MN   MNG 2012
## 11352                                             Mongolia    MN   MNG 2011
## 11353                                             Mongolia    MN   MNG 2010
## 11354                                             Mongolia    MN   MNG 2009
## 11355                                             Mongolia    MN   MNG 2008
## 11356                                             Mongolia    MN   MNG 2007
## 11357                                             Mongolia    MN   MNG 2006
## 11358                                             Mongolia    MN   MNG 2005
## 11359                                             Mongolia    MN   MNG 2004
## 11360                                             Mongolia    MN   MNG 2003
## 11361                                             Mongolia    MN   MNG 2002
## 11362                                             Mongolia    MN   MNG 2001
## 11363                                             Mongolia    MN   MNG 2000
## 11364                                             Mongolia    MN   MNG 1999
## 11365                                             Mongolia    MN   MNG 1998
## 11366                                             Mongolia    MN   MNG 1997
## 11367                                             Mongolia    MN   MNG 1996
## 11368                                             Mongolia    MN   MNG 1995
## 11369                                             Mongolia    MN   MNG 1994
## 11370                                             Mongolia    MN   MNG 1993
## 11371                                             Mongolia    MN   MNG 1992
## 11372                                             Mongolia    MN   MNG 1991
## 11373                                             Mongolia    MN   MNG 1990
## 11374                                             Mongolia    MN   MNG 1989
## 11375                                             Mongolia    MN   MNG 1988
## 11376                                             Mongolia    MN   MNG 1987
## 11377                                             Mongolia    MN   MNG 1986
## 11378                                             Mongolia    MN   MNG 1985
## 11379                                             Mongolia    MN   MNG 1984
## 11380                                             Mongolia    MN   MNG 1983
## 11381                                             Mongolia    MN   MNG 1982
## 11382                                             Mongolia    MN   MNG 1981
## 11383                                             Mongolia    MN   MNG 1980
## 11384                                             Mongolia    MN   MNG 1979
## 11385                                             Mongolia    MN   MNG 1978
## 11386                                             Mongolia    MN   MNG 1977
## 11387                                             Mongolia    MN   MNG 1976
## 11388                                             Mongolia    MN   MNG 1975
## 11389                                             Mongolia    MN   MNG 1974
## 11390                                             Mongolia    MN   MNG 1973
## 11391                                             Mongolia    MN   MNG 1972
## 11392                                             Mongolia    MN   MNG 1971
## 11393                                             Mongolia    MN   MNG 1970
## 11394                                             Mongolia    MN   MNG 1969
## 11395                                             Mongolia    MN   MNG 1968
## 11396                                             Mongolia    MN   MNG 1967
## 11397                                             Mongolia    MN   MNG 1966
## 11398                                             Mongolia    MN   MNG 1965
## 11399                                             Mongolia    MN   MNG 1964
## 11400                                             Mongolia    MN   MNG 1963
## 11401                                             Mongolia    MN   MNG 1962
## 11402                                             Mongolia    MN   MNG 1961
## 11403                                             Mongolia    MN   MNG 1960
## 11404                                           Montenegro    ME   MNE 2022
## 11405                                           Montenegro    ME   MNE 2021
## 11406                                           Montenegro    ME   MNE 2020
## 11407                                           Montenegro    ME   MNE 2019
## 11408                                           Montenegro    ME   MNE 2018
## 11409                                           Montenegro    ME   MNE 2017
## 11410                                           Montenegro    ME   MNE 2016
## 11411                                           Montenegro    ME   MNE 2015
## 11412                                           Montenegro    ME   MNE 2014
## 11413                                           Montenegro    ME   MNE 2013
## 11414                                           Montenegro    ME   MNE 2012
## 11415                                           Montenegro    ME   MNE 2011
## 11416                                           Montenegro    ME   MNE 2010
## 11417                                           Montenegro    ME   MNE 2009
## 11418                                           Montenegro    ME   MNE 2008
## 11419                                           Montenegro    ME   MNE 2007
## 11420                                           Montenegro    ME   MNE 2006
## 11421                                           Montenegro    ME   MNE 2005
## 11422                                           Montenegro    ME   MNE 2004
## 11423                                           Montenegro    ME   MNE 2003
## 11424                                           Montenegro    ME   MNE 2002
## 11425                                           Montenegro    ME   MNE 2001
## 11426                                           Montenegro    ME   MNE 2000
## 11427                                           Montenegro    ME   MNE 1999
## 11428                                           Montenegro    ME   MNE 1998
## 11429                                           Montenegro    ME   MNE 1997
## 11430                                           Montenegro    ME   MNE 1996
## 11431                                           Montenegro    ME   MNE 1995
## 11432                                           Montenegro    ME   MNE 1994
## 11433                                           Montenegro    ME   MNE 1993
## 11434                                           Montenegro    ME   MNE 1992
## 11435                                           Montenegro    ME   MNE 1991
## 11436                                           Montenegro    ME   MNE 1990
## 11437                                           Montenegro    ME   MNE 1989
## 11438                                           Montenegro    ME   MNE 1988
## 11439                                           Montenegro    ME   MNE 1987
## 11440                                           Montenegro    ME   MNE 1986
## 11441                                           Montenegro    ME   MNE 1985
## 11442                                           Montenegro    ME   MNE 1984
## 11443                                           Montenegro    ME   MNE 1983
## 11444                                           Montenegro    ME   MNE 1982
## 11445                                           Montenegro    ME   MNE 1981
## 11446                                           Montenegro    ME   MNE 1980
## 11447                                           Montenegro    ME   MNE 1979
## 11448                                           Montenegro    ME   MNE 1978
## 11449                                           Montenegro    ME   MNE 1977
## 11450                                           Montenegro    ME   MNE 1976
## 11451                                           Montenegro    ME   MNE 1975
## 11452                                           Montenegro    ME   MNE 1974
## 11453                                           Montenegro    ME   MNE 1973
## 11454                                           Montenegro    ME   MNE 1972
## 11455                                           Montenegro    ME   MNE 1971
## 11456                                           Montenegro    ME   MNE 1970
## 11457                                           Montenegro    ME   MNE 1969
## 11458                                           Montenegro    ME   MNE 1968
## 11459                                           Montenegro    ME   MNE 1967
## 11460                                           Montenegro    ME   MNE 1966
## 11461                                           Montenegro    ME   MNE 1965
## 11462                                           Montenegro    ME   MNE 1964
## 11463                                           Montenegro    ME   MNE 1963
## 11464                                           Montenegro    ME   MNE 1962
## 11465                                           Montenegro    ME   MNE 1961
## 11466                                           Montenegro    ME   MNE 1960
## 11467                                              Morocco    MA   MAR 2022
## 11468                                              Morocco    MA   MAR 2021
## 11469                                              Morocco    MA   MAR 2020
## 11470                                              Morocco    MA   MAR 2019
## 11471                                              Morocco    MA   MAR 2018
## 11472                                              Morocco    MA   MAR 2017
## 11473                                              Morocco    MA   MAR 2016
## 11474                                              Morocco    MA   MAR 2015
## 11475                                              Morocco    MA   MAR 2014
## 11476                                              Morocco    MA   MAR 2013
## 11477                                              Morocco    MA   MAR 2012
## 11478                                              Morocco    MA   MAR 2011
## 11479                                              Morocco    MA   MAR 2010
## 11480                                              Morocco    MA   MAR 2009
## 11481                                              Morocco    MA   MAR 2008
## 11482                                              Morocco    MA   MAR 2007
## 11483                                              Morocco    MA   MAR 2006
## 11484                                              Morocco    MA   MAR 2005
## 11485                                              Morocco    MA   MAR 2004
## 11486                                              Morocco    MA   MAR 2003
## 11487                                              Morocco    MA   MAR 2002
## 11488                                              Morocco    MA   MAR 2001
## 11489                                              Morocco    MA   MAR 2000
## 11490                                              Morocco    MA   MAR 1999
## 11491                                              Morocco    MA   MAR 1998
## 11492                                              Morocco    MA   MAR 1997
## 11493                                              Morocco    MA   MAR 1996
## 11494                                              Morocco    MA   MAR 1995
## 11495                                              Morocco    MA   MAR 1994
## 11496                                              Morocco    MA   MAR 1993
## 11497                                              Morocco    MA   MAR 1992
## 11498                                              Morocco    MA   MAR 1991
## 11499                                              Morocco    MA   MAR 1990
## 11500                                              Morocco    MA   MAR 1989
## 11501                                              Morocco    MA   MAR 1988
## 11502                                              Morocco    MA   MAR 1987
## 11503                                              Morocco    MA   MAR 1986
## 11504                                              Morocco    MA   MAR 1985
## 11505                                              Morocco    MA   MAR 1984
## 11506                                              Morocco    MA   MAR 1983
## 11507                                              Morocco    MA   MAR 1982
## 11508                                              Morocco    MA   MAR 1981
## 11509                                              Morocco    MA   MAR 1980
## 11510                                              Morocco    MA   MAR 1979
## 11511                                              Morocco    MA   MAR 1978
## 11512                                              Morocco    MA   MAR 1977
## 11513                                              Morocco    MA   MAR 1976
## 11514                                              Morocco    MA   MAR 1975
## 11515                                              Morocco    MA   MAR 1974
## 11516                                              Morocco    MA   MAR 1973
## 11517                                              Morocco    MA   MAR 1972
## 11518                                              Morocco    MA   MAR 1971
## 11519                                              Morocco    MA   MAR 1970
## 11520                                              Morocco    MA   MAR 1969
## 11521                                              Morocco    MA   MAR 1968
## 11522                                              Morocco    MA   MAR 1967
## 11523                                              Morocco    MA   MAR 1966
## 11524                                              Morocco    MA   MAR 1965
## 11525                                              Morocco    MA   MAR 1964
## 11526                                              Morocco    MA   MAR 1963
## 11527                                              Morocco    MA   MAR 1962
## 11528                                              Morocco    MA   MAR 1961
## 11529                                              Morocco    MA   MAR 1960
## 11530                                           Mozambique    MZ   MOZ 2022
## 11531                                           Mozambique    MZ   MOZ 2021
## 11532                                           Mozambique    MZ   MOZ 2020
## 11533                                           Mozambique    MZ   MOZ 2019
## 11534                                           Mozambique    MZ   MOZ 2018
## 11535                                           Mozambique    MZ   MOZ 2017
## 11536                                           Mozambique    MZ   MOZ 2016
## 11537                                           Mozambique    MZ   MOZ 2015
## 11538                                           Mozambique    MZ   MOZ 2014
## 11539                                           Mozambique    MZ   MOZ 2013
## 11540                                           Mozambique    MZ   MOZ 2012
## 11541                                           Mozambique    MZ   MOZ 2011
## 11542                                           Mozambique    MZ   MOZ 2010
## 11543                                           Mozambique    MZ   MOZ 2009
## 11544                                           Mozambique    MZ   MOZ 2008
## 11545                                           Mozambique    MZ   MOZ 2007
## 11546                                           Mozambique    MZ   MOZ 2006
## 11547                                           Mozambique    MZ   MOZ 2005
## 11548                                           Mozambique    MZ   MOZ 2004
## 11549                                           Mozambique    MZ   MOZ 2003
## 11550                                           Mozambique    MZ   MOZ 2002
## 11551                                           Mozambique    MZ   MOZ 2001
## 11552                                           Mozambique    MZ   MOZ 2000
## 11553                                           Mozambique    MZ   MOZ 1999
## 11554                                           Mozambique    MZ   MOZ 1998
## 11555                                           Mozambique    MZ   MOZ 1997
## 11556                                           Mozambique    MZ   MOZ 1996
## 11557                                           Mozambique    MZ   MOZ 1995
## 11558                                           Mozambique    MZ   MOZ 1994
## 11559                                           Mozambique    MZ   MOZ 1993
## 11560                                           Mozambique    MZ   MOZ 1992
## 11561                                           Mozambique    MZ   MOZ 1991
## 11562                                           Mozambique    MZ   MOZ 1990
## 11563                                           Mozambique    MZ   MOZ 1989
## 11564                                           Mozambique    MZ   MOZ 1988
## 11565                                           Mozambique    MZ   MOZ 1987
## 11566                                           Mozambique    MZ   MOZ 1986
## 11567                                           Mozambique    MZ   MOZ 1985
## 11568                                           Mozambique    MZ   MOZ 1984
## 11569                                           Mozambique    MZ   MOZ 1983
## 11570                                           Mozambique    MZ   MOZ 1982
## 11571                                           Mozambique    MZ   MOZ 1981
## 11572                                           Mozambique    MZ   MOZ 1980
## 11573                                           Mozambique    MZ   MOZ 1979
## 11574                                           Mozambique    MZ   MOZ 1978
## 11575                                           Mozambique    MZ   MOZ 1977
## 11576                                           Mozambique    MZ   MOZ 1976
## 11577                                           Mozambique    MZ   MOZ 1975
## 11578                                           Mozambique    MZ   MOZ 1974
## 11579                                           Mozambique    MZ   MOZ 1973
## 11580                                           Mozambique    MZ   MOZ 1972
## 11581                                           Mozambique    MZ   MOZ 1971
## 11582                                           Mozambique    MZ   MOZ 1970
## 11583                                           Mozambique    MZ   MOZ 1969
## 11584                                           Mozambique    MZ   MOZ 1968
## 11585                                           Mozambique    MZ   MOZ 1967
## 11586                                           Mozambique    MZ   MOZ 1966
## 11587                                           Mozambique    MZ   MOZ 1965
## 11588                                           Mozambique    MZ   MOZ 1964
## 11589                                           Mozambique    MZ   MOZ 1963
## 11590                                           Mozambique    MZ   MOZ 1962
## 11591                                           Mozambique    MZ   MOZ 1961
## 11592                                           Mozambique    MZ   MOZ 1960
## 11593                                              Myanmar    MM   MMR 2022
## 11594                                              Myanmar    MM   MMR 2021
## 11595                                              Myanmar    MM   MMR 2020
## 11596                                              Myanmar    MM   MMR 2019
## 11597                                              Myanmar    MM   MMR 2018
## 11598                                              Myanmar    MM   MMR 2017
## 11599                                              Myanmar    MM   MMR 2016
## 11600                                              Myanmar    MM   MMR 2015
## 11601                                              Myanmar    MM   MMR 2014
## 11602                                              Myanmar    MM   MMR 2013
## 11603                                              Myanmar    MM   MMR 2012
## 11604                                              Myanmar    MM   MMR 2011
## 11605                                              Myanmar    MM   MMR 2010
## 11606                                              Myanmar    MM   MMR 2009
## 11607                                              Myanmar    MM   MMR 2008
## 11608                                              Myanmar    MM   MMR 2007
## 11609                                              Myanmar    MM   MMR 2006
## 11610                                              Myanmar    MM   MMR 2005
## 11611                                              Myanmar    MM   MMR 2004
## 11612                                              Myanmar    MM   MMR 2003
## 11613                                              Myanmar    MM   MMR 2002
## 11614                                              Myanmar    MM   MMR 2001
## 11615                                              Myanmar    MM   MMR 2000
## 11616                                              Myanmar    MM   MMR 1999
## 11617                                              Myanmar    MM   MMR 1998
## 11618                                              Myanmar    MM   MMR 1997
## 11619                                              Myanmar    MM   MMR 1996
## 11620                                              Myanmar    MM   MMR 1995
## 11621                                              Myanmar    MM   MMR 1994
## 11622                                              Myanmar    MM   MMR 1993
## 11623                                              Myanmar    MM   MMR 1992
## 11624                                              Myanmar    MM   MMR 1991
## 11625                                              Myanmar    MM   MMR 1990
## 11626                                              Myanmar    MM   MMR 1989
## 11627                                              Myanmar    MM   MMR 1988
## 11628                                              Myanmar    MM   MMR 1987
## 11629                                              Myanmar    MM   MMR 1986
## 11630                                              Myanmar    MM   MMR 1985
## 11631                                              Myanmar    MM   MMR 1984
## 11632                                              Myanmar    MM   MMR 1983
## 11633                                              Myanmar    MM   MMR 1982
## 11634                                              Myanmar    MM   MMR 1981
## 11635                                              Myanmar    MM   MMR 1980
## 11636                                              Myanmar    MM   MMR 1979
## 11637                                              Myanmar    MM   MMR 1978
## 11638                                              Myanmar    MM   MMR 1977
## 11639                                              Myanmar    MM   MMR 1976
## 11640                                              Myanmar    MM   MMR 1975
## 11641                                              Myanmar    MM   MMR 1974
## 11642                                              Myanmar    MM   MMR 1973
## 11643                                              Myanmar    MM   MMR 1972
## 11644                                              Myanmar    MM   MMR 1971
## 11645                                              Myanmar    MM   MMR 1970
## 11646                                              Myanmar    MM   MMR 1969
## 11647                                              Myanmar    MM   MMR 1968
## 11648                                              Myanmar    MM   MMR 1967
## 11649                                              Myanmar    MM   MMR 1966
## 11650                                              Myanmar    MM   MMR 1965
## 11651                                              Myanmar    MM   MMR 1964
## 11652                                              Myanmar    MM   MMR 1963
## 11653                                              Myanmar    MM   MMR 1962
## 11654                                              Myanmar    MM   MMR 1961
## 11655                                              Myanmar    MM   MMR 1960
## 11656                                              Namibia    NA   NAM 2022
## 11657                                              Namibia    NA   NAM 2021
## 11658                                              Namibia    NA   NAM 2020
## 11659                                              Namibia    NA   NAM 2019
## 11660                                              Namibia    NA   NAM 2018
## 11661                                              Namibia    NA   NAM 2017
## 11662                                              Namibia    NA   NAM 2016
## 11663                                              Namibia    NA   NAM 2015
## 11664                                              Namibia    NA   NAM 2014
## 11665                                              Namibia    NA   NAM 2013
## 11666                                              Namibia    NA   NAM 2012
## 11667                                              Namibia    NA   NAM 2011
## 11668                                              Namibia    NA   NAM 2010
## 11669                                              Namibia    NA   NAM 2009
## 11670                                              Namibia    NA   NAM 2008
## 11671                                              Namibia    NA   NAM 2007
## 11672                                              Namibia    NA   NAM 2006
## 11673                                              Namibia    NA   NAM 2005
## 11674                                              Namibia    NA   NAM 2004
## 11675                                              Namibia    NA   NAM 2003
## 11676                                              Namibia    NA   NAM 2002
## 11677                                              Namibia    NA   NAM 2001
## 11678                                              Namibia    NA   NAM 2000
## 11679                                              Namibia    NA   NAM 1999
## 11680                                              Namibia    NA   NAM 1998
## 11681                                              Namibia    NA   NAM 1997
## 11682                                              Namibia    NA   NAM 1996
## 11683                                              Namibia    NA   NAM 1995
## 11684                                              Namibia    NA   NAM 1994
## 11685                                              Namibia    NA   NAM 1993
## 11686                                              Namibia    NA   NAM 1992
## 11687                                              Namibia    NA   NAM 1991
## 11688                                              Namibia    NA   NAM 1990
## 11689                                              Namibia    NA   NAM 1989
## 11690                                              Namibia    NA   NAM 1988
## 11691                                              Namibia    NA   NAM 1987
## 11692                                              Namibia    NA   NAM 1986
## 11693                                              Namibia    NA   NAM 1985
## 11694                                              Namibia    NA   NAM 1984
## 11695                                              Namibia    NA   NAM 1983
## 11696                                              Namibia    NA   NAM 1982
## 11697                                              Namibia    NA   NAM 1981
## 11698                                              Namibia    NA   NAM 1980
## 11699                                              Namibia    NA   NAM 1979
## 11700                                              Namibia    NA   NAM 1978
## 11701                                              Namibia    NA   NAM 1977
## 11702                                              Namibia    NA   NAM 1976
## 11703                                              Namibia    NA   NAM 1975
## 11704                                              Namibia    NA   NAM 1974
## 11705                                              Namibia    NA   NAM 1973
## 11706                                              Namibia    NA   NAM 1972
## 11707                                              Namibia    NA   NAM 1971
## 11708                                              Namibia    NA   NAM 1970
## 11709                                              Namibia    NA   NAM 1969
## 11710                                              Namibia    NA   NAM 1968
## 11711                                              Namibia    NA   NAM 1967
## 11712                                              Namibia    NA   NAM 1966
## 11713                                              Namibia    NA   NAM 1965
## 11714                                              Namibia    NA   NAM 1964
## 11715                                              Namibia    NA   NAM 1963
## 11716                                              Namibia    NA   NAM 1962
## 11717                                              Namibia    NA   NAM 1961
## 11718                                              Namibia    NA   NAM 1960
## 11719                                                Nauru    NR   NRU 2022
## 11720                                                Nauru    NR   NRU 2021
## 11721                                                Nauru    NR   NRU 2020
## 11722                                                Nauru    NR   NRU 2019
## 11723                                                Nauru    NR   NRU 2018
## 11724                                                Nauru    NR   NRU 2017
## 11725                                                Nauru    NR   NRU 2016
## 11726                                                Nauru    NR   NRU 2015
## 11727                                                Nauru    NR   NRU 2014
## 11728                                                Nauru    NR   NRU 2013
## 11729                                                Nauru    NR   NRU 2012
## 11730                                                Nauru    NR   NRU 2011
## 11731                                                Nauru    NR   NRU 2010
## 11732                                                Nauru    NR   NRU 2009
## 11733                                                Nauru    NR   NRU 2008
## 11734                                                Nauru    NR   NRU 2007
## 11735                                                Nauru    NR   NRU 2006
## 11736                                                Nauru    NR   NRU 2005
## 11737                                                Nauru    NR   NRU 2004
## 11738                                                Nauru    NR   NRU 2003
## 11739                                                Nauru    NR   NRU 2002
## 11740                                                Nauru    NR   NRU 2001
## 11741                                                Nauru    NR   NRU 2000
## 11742                                                Nauru    NR   NRU 1999
## 11743                                                Nauru    NR   NRU 1998
## 11744                                                Nauru    NR   NRU 1997
## 11745                                                Nauru    NR   NRU 1996
## 11746                                                Nauru    NR   NRU 1995
## 11747                                                Nauru    NR   NRU 1994
## 11748                                                Nauru    NR   NRU 1993
## 11749                                                Nauru    NR   NRU 1992
## 11750                                                Nauru    NR   NRU 1991
## 11751                                                Nauru    NR   NRU 1990
## 11752                                                Nauru    NR   NRU 1989
## 11753                                                Nauru    NR   NRU 1988
## 11754                                                Nauru    NR   NRU 1987
## 11755                                                Nauru    NR   NRU 1986
## 11756                                                Nauru    NR   NRU 1985
## 11757                                                Nauru    NR   NRU 1984
## 11758                                                Nauru    NR   NRU 1983
## 11759                                                Nauru    NR   NRU 1982
## 11760                                                Nauru    NR   NRU 1981
## 11761                                                Nauru    NR   NRU 1980
## 11762                                                Nauru    NR   NRU 1979
## 11763                                                Nauru    NR   NRU 1978
## 11764                                                Nauru    NR   NRU 1977
## 11765                                                Nauru    NR   NRU 1976
## 11766                                                Nauru    NR   NRU 1975
## 11767                                                Nauru    NR   NRU 1974
## 11768                                                Nauru    NR   NRU 1973
## 11769                                                Nauru    NR   NRU 1972
## 11770                                                Nauru    NR   NRU 1971
## 11771                                                Nauru    NR   NRU 1970
## 11772                                                Nauru    NR   NRU 1969
## 11773                                                Nauru    NR   NRU 1968
## 11774                                                Nauru    NR   NRU 1967
## 11775                                                Nauru    NR   NRU 1966
## 11776                                                Nauru    NR   NRU 1965
## 11777                                                Nauru    NR   NRU 1964
## 11778                                                Nauru    NR   NRU 1963
## 11779                                                Nauru    NR   NRU 1962
## 11780                                                Nauru    NR   NRU 1961
## 11781                                                Nauru    NR   NRU 1960
## 11782                                                Nepal    NP   NPL 2022
## 11783                                                Nepal    NP   NPL 2021
## 11784                                                Nepal    NP   NPL 2020
## 11785                                                Nepal    NP   NPL 2019
## 11786                                                Nepal    NP   NPL 2018
## 11787                                                Nepal    NP   NPL 2017
## 11788                                                Nepal    NP   NPL 2016
## 11789                                                Nepal    NP   NPL 2015
## 11790                                                Nepal    NP   NPL 2014
## 11791                                                Nepal    NP   NPL 2013
## 11792                                                Nepal    NP   NPL 2012
## 11793                                                Nepal    NP   NPL 2011
## 11794                                                Nepal    NP   NPL 2010
## 11795                                                Nepal    NP   NPL 2009
## 11796                                                Nepal    NP   NPL 2008
## 11797                                                Nepal    NP   NPL 2007
## 11798                                                Nepal    NP   NPL 2006
## 11799                                                Nepal    NP   NPL 2005
## 11800                                                Nepal    NP   NPL 2004
## 11801                                                Nepal    NP   NPL 2003
## 11802                                                Nepal    NP   NPL 2002
## 11803                                                Nepal    NP   NPL 2001
## 11804                                                Nepal    NP   NPL 2000
## 11805                                                Nepal    NP   NPL 1999
## 11806                                                Nepal    NP   NPL 1998
## 11807                                                Nepal    NP   NPL 1997
## 11808                                                Nepal    NP   NPL 1996
## 11809                                                Nepal    NP   NPL 1995
## 11810                                                Nepal    NP   NPL 1994
## 11811                                                Nepal    NP   NPL 1993
## 11812                                                Nepal    NP   NPL 1992
## 11813                                                Nepal    NP   NPL 1991
## 11814                                                Nepal    NP   NPL 1990
## 11815                                                Nepal    NP   NPL 1989
## 11816                                                Nepal    NP   NPL 1988
## 11817                                                Nepal    NP   NPL 1987
## 11818                                                Nepal    NP   NPL 1986
## 11819                                                Nepal    NP   NPL 1985
## 11820                                                Nepal    NP   NPL 1984
## 11821                                                Nepal    NP   NPL 1983
## 11822                                                Nepal    NP   NPL 1982
## 11823                                                Nepal    NP   NPL 1981
## 11824                                                Nepal    NP   NPL 1980
## 11825                                                Nepal    NP   NPL 1979
## 11826                                                Nepal    NP   NPL 1978
## 11827                                                Nepal    NP   NPL 1977
## 11828                                                Nepal    NP   NPL 1976
## 11829                                                Nepal    NP   NPL 1975
## 11830                                                Nepal    NP   NPL 1974
## 11831                                                Nepal    NP   NPL 1973
## 11832                                                Nepal    NP   NPL 1972
## 11833                                                Nepal    NP   NPL 1971
## 11834                                                Nepal    NP   NPL 1970
## 11835                                                Nepal    NP   NPL 1969
## 11836                                                Nepal    NP   NPL 1968
## 11837                                                Nepal    NP   NPL 1967
## 11838                                                Nepal    NP   NPL 1966
## 11839                                                Nepal    NP   NPL 1965
## 11840                                                Nepal    NP   NPL 1964
## 11841                                                Nepal    NP   NPL 1963
## 11842                                                Nepal    NP   NPL 1962
## 11843                                                Nepal    NP   NPL 1961
## 11844                                                Nepal    NP   NPL 1960
## 11845                                          Netherlands    NL   NLD 2022
## 11846                                          Netherlands    NL   NLD 2021
## 11847                                          Netherlands    NL   NLD 2020
## 11848                                          Netherlands    NL   NLD 2019
## 11849                                          Netherlands    NL   NLD 2018
## 11850                                          Netherlands    NL   NLD 2017
## 11851                                          Netherlands    NL   NLD 2016
## 11852                                          Netherlands    NL   NLD 2015
## 11853                                          Netherlands    NL   NLD 2014
## 11854                                          Netherlands    NL   NLD 2013
## 11855                                          Netherlands    NL   NLD 2012
## 11856                                          Netherlands    NL   NLD 2011
## 11857                                          Netherlands    NL   NLD 2010
## 11858                                          Netherlands    NL   NLD 2009
## 11859                                          Netherlands    NL   NLD 2008
## 11860                                          Netherlands    NL   NLD 2007
## 11861                                          Netherlands    NL   NLD 2006
## 11862                                          Netherlands    NL   NLD 2005
## 11863                                          Netherlands    NL   NLD 2004
## 11864                                          Netherlands    NL   NLD 2003
## 11865                                          Netherlands    NL   NLD 2002
## 11866                                          Netherlands    NL   NLD 2001
## 11867                                          Netherlands    NL   NLD 2000
## 11868                                          Netherlands    NL   NLD 1999
## 11869                                          Netherlands    NL   NLD 1998
## 11870                                          Netherlands    NL   NLD 1997
## 11871                                          Netherlands    NL   NLD 1996
## 11872                                          Netherlands    NL   NLD 1995
## 11873                                          Netherlands    NL   NLD 1994
## 11874                                          Netherlands    NL   NLD 1993
## 11875                                          Netherlands    NL   NLD 1992
## 11876                                          Netherlands    NL   NLD 1991
## 11877                                          Netherlands    NL   NLD 1990
## 11878                                          Netherlands    NL   NLD 1989
## 11879                                          Netherlands    NL   NLD 1988
## 11880                                          Netherlands    NL   NLD 1987
## 11881                                          Netherlands    NL   NLD 1986
## 11882                                          Netherlands    NL   NLD 1985
## 11883                                          Netherlands    NL   NLD 1984
## 11884                                          Netherlands    NL   NLD 1983
## 11885                                          Netherlands    NL   NLD 1982
## 11886                                          Netherlands    NL   NLD 1981
## 11887                                          Netherlands    NL   NLD 1980
## 11888                                          Netherlands    NL   NLD 1979
## 11889                                          Netherlands    NL   NLD 1978
## 11890                                          Netherlands    NL   NLD 1977
## 11891                                          Netherlands    NL   NLD 1976
## 11892                                          Netherlands    NL   NLD 1975
## 11893                                          Netherlands    NL   NLD 1974
## 11894                                          Netherlands    NL   NLD 1973
## 11895                                          Netherlands    NL   NLD 1972
## 11896                                          Netherlands    NL   NLD 1971
## 11897                                          Netherlands    NL   NLD 1970
## 11898                                          Netherlands    NL   NLD 1969
## 11899                                          Netherlands    NL   NLD 1968
## 11900                                          Netherlands    NL   NLD 1967
## 11901                                          Netherlands    NL   NLD 1966
## 11902                                          Netherlands    NL   NLD 1965
## 11903                                          Netherlands    NL   NLD 1964
## 11904                                          Netherlands    NL   NLD 1963
## 11905                                          Netherlands    NL   NLD 1962
## 11906                                          Netherlands    NL   NLD 1961
## 11907                                          Netherlands    NL   NLD 1960
## 11908                                        New Caledonia    NC   NCL 2022
## 11909                                        New Caledonia    NC   NCL 2021
## 11910                                        New Caledonia    NC   NCL 2020
## 11911                                        New Caledonia    NC   NCL 2019
## 11912                                        New Caledonia    NC   NCL 2018
## 11913                                        New Caledonia    NC   NCL 2017
## 11914                                        New Caledonia    NC   NCL 2016
## 11915                                        New Caledonia    NC   NCL 2015
## 11916                                        New Caledonia    NC   NCL 2014
## 11917                                        New Caledonia    NC   NCL 2013
## 11918                                        New Caledonia    NC   NCL 2012
## 11919                                        New Caledonia    NC   NCL 2011
## 11920                                        New Caledonia    NC   NCL 2010
## 11921                                        New Caledonia    NC   NCL 2009
## 11922                                        New Caledonia    NC   NCL 2008
## 11923                                        New Caledonia    NC   NCL 2007
## 11924                                        New Caledonia    NC   NCL 2006
## 11925                                        New Caledonia    NC   NCL 2005
## 11926                                        New Caledonia    NC   NCL 2004
## 11927                                        New Caledonia    NC   NCL 2003
## 11928                                        New Caledonia    NC   NCL 2002
## 11929                                        New Caledonia    NC   NCL 2001
## 11930                                        New Caledonia    NC   NCL 2000
## 11931                                        New Caledonia    NC   NCL 1999
## 11932                                        New Caledonia    NC   NCL 1998
## 11933                                        New Caledonia    NC   NCL 1997
## 11934                                        New Caledonia    NC   NCL 1996
## 11935                                        New Caledonia    NC   NCL 1995
## 11936                                        New Caledonia    NC   NCL 1994
## 11937                                        New Caledonia    NC   NCL 1993
## 11938                                        New Caledonia    NC   NCL 1992
## 11939                                        New Caledonia    NC   NCL 1991
## 11940                                        New Caledonia    NC   NCL 1990
## 11941                                        New Caledonia    NC   NCL 1989
## 11942                                        New Caledonia    NC   NCL 1988
## 11943                                        New Caledonia    NC   NCL 1987
## 11944                                        New Caledonia    NC   NCL 1986
## 11945                                        New Caledonia    NC   NCL 1985
## 11946                                        New Caledonia    NC   NCL 1984
## 11947                                        New Caledonia    NC   NCL 1983
## 11948                                        New Caledonia    NC   NCL 1982
## 11949                                        New Caledonia    NC   NCL 1981
## 11950                                        New Caledonia    NC   NCL 1980
## 11951                                        New Caledonia    NC   NCL 1979
## 11952                                        New Caledonia    NC   NCL 1978
## 11953                                        New Caledonia    NC   NCL 1977
## 11954                                        New Caledonia    NC   NCL 1976
## 11955                                        New Caledonia    NC   NCL 1975
## 11956                                        New Caledonia    NC   NCL 1974
## 11957                                        New Caledonia    NC   NCL 1973
## 11958                                        New Caledonia    NC   NCL 1972
## 11959                                        New Caledonia    NC   NCL 1971
## 11960                                        New Caledonia    NC   NCL 1970
## 11961                                        New Caledonia    NC   NCL 1969
## 11962                                        New Caledonia    NC   NCL 1968
## 11963                                        New Caledonia    NC   NCL 1967
## 11964                                        New Caledonia    NC   NCL 1966
## 11965                                        New Caledonia    NC   NCL 1965
## 11966                                        New Caledonia    NC   NCL 1964
## 11967                                        New Caledonia    NC   NCL 1963
## 11968                                        New Caledonia    NC   NCL 1962
## 11969                                        New Caledonia    NC   NCL 1961
## 11970                                        New Caledonia    NC   NCL 1960
## 11971                                          New Zealand    NZ   NZL 2022
## 11972                                          New Zealand    NZ   NZL 2021
## 11973                                          New Zealand    NZ   NZL 2020
## 11974                                          New Zealand    NZ   NZL 2019
## 11975                                          New Zealand    NZ   NZL 2018
## 11976                                          New Zealand    NZ   NZL 2017
## 11977                                          New Zealand    NZ   NZL 2016
## 11978                                          New Zealand    NZ   NZL 2015
## 11979                                          New Zealand    NZ   NZL 2014
## 11980                                          New Zealand    NZ   NZL 2013
## 11981                                          New Zealand    NZ   NZL 2012
## 11982                                          New Zealand    NZ   NZL 2011
## 11983                                          New Zealand    NZ   NZL 2010
## 11984                                          New Zealand    NZ   NZL 2009
## 11985                                          New Zealand    NZ   NZL 2008
## 11986                                          New Zealand    NZ   NZL 2007
## 11987                                          New Zealand    NZ   NZL 2006
## 11988                                          New Zealand    NZ   NZL 2005
## 11989                                          New Zealand    NZ   NZL 2004
## 11990                                          New Zealand    NZ   NZL 2003
## 11991                                          New Zealand    NZ   NZL 2002
## 11992                                          New Zealand    NZ   NZL 2001
## 11993                                          New Zealand    NZ   NZL 2000
## 11994                                          New Zealand    NZ   NZL 1999
## 11995                                          New Zealand    NZ   NZL 1998
## 11996                                          New Zealand    NZ   NZL 1997
## 11997                                          New Zealand    NZ   NZL 1996
## 11998                                          New Zealand    NZ   NZL 1995
## 11999                                          New Zealand    NZ   NZL 1994
## 12000                                          New Zealand    NZ   NZL 1993
## 12001                                          New Zealand    NZ   NZL 1992
## 12002                                          New Zealand    NZ   NZL 1991
## 12003                                          New Zealand    NZ   NZL 1990
## 12004                                          New Zealand    NZ   NZL 1989
## 12005                                          New Zealand    NZ   NZL 1988
## 12006                                          New Zealand    NZ   NZL 1987
## 12007                                          New Zealand    NZ   NZL 1986
## 12008                                          New Zealand    NZ   NZL 1985
## 12009                                          New Zealand    NZ   NZL 1984
## 12010                                          New Zealand    NZ   NZL 1983
## 12011                                          New Zealand    NZ   NZL 1982
## 12012                                          New Zealand    NZ   NZL 1981
## 12013                                          New Zealand    NZ   NZL 1980
## 12014                                          New Zealand    NZ   NZL 1979
## 12015                                          New Zealand    NZ   NZL 1978
## 12016                                          New Zealand    NZ   NZL 1977
## 12017                                          New Zealand    NZ   NZL 1976
## 12018                                          New Zealand    NZ   NZL 1975
## 12019                                          New Zealand    NZ   NZL 1974
## 12020                                          New Zealand    NZ   NZL 1973
## 12021                                          New Zealand    NZ   NZL 1972
## 12022                                          New Zealand    NZ   NZL 1971
## 12023                                          New Zealand    NZ   NZL 1970
## 12024                                          New Zealand    NZ   NZL 1969
## 12025                                          New Zealand    NZ   NZL 1968
## 12026                                          New Zealand    NZ   NZL 1967
## 12027                                          New Zealand    NZ   NZL 1966
## 12028                                          New Zealand    NZ   NZL 1965
## 12029                                          New Zealand    NZ   NZL 1964
## 12030                                          New Zealand    NZ   NZL 1963
## 12031                                          New Zealand    NZ   NZL 1962
## 12032                                          New Zealand    NZ   NZL 1961
## 12033                                          New Zealand    NZ   NZL 1960
## 12034                                            Nicaragua    NI   NIC 2022
## 12035                                            Nicaragua    NI   NIC 2021
## 12036                                            Nicaragua    NI   NIC 2020
## 12037                                            Nicaragua    NI   NIC 2019
## 12038                                            Nicaragua    NI   NIC 2018
## 12039                                            Nicaragua    NI   NIC 2017
## 12040                                            Nicaragua    NI   NIC 2016
## 12041                                            Nicaragua    NI   NIC 2015
## 12042                                            Nicaragua    NI   NIC 2014
## 12043                                            Nicaragua    NI   NIC 2013
## 12044                                            Nicaragua    NI   NIC 2012
## 12045                                            Nicaragua    NI   NIC 2011
## 12046                                            Nicaragua    NI   NIC 2010
## 12047                                            Nicaragua    NI   NIC 2009
## 12048                                            Nicaragua    NI   NIC 2008
## 12049                                            Nicaragua    NI   NIC 2007
## 12050                                            Nicaragua    NI   NIC 2006
## 12051                                            Nicaragua    NI   NIC 2005
## 12052                                            Nicaragua    NI   NIC 2004
## 12053                                            Nicaragua    NI   NIC 2003
## 12054                                            Nicaragua    NI   NIC 2002
## 12055                                            Nicaragua    NI   NIC 2001
## 12056                                            Nicaragua    NI   NIC 2000
## 12057                                            Nicaragua    NI   NIC 1999
## 12058                                            Nicaragua    NI   NIC 1998
## 12059                                            Nicaragua    NI   NIC 1997
## 12060                                            Nicaragua    NI   NIC 1996
## 12061                                            Nicaragua    NI   NIC 1995
## 12062                                            Nicaragua    NI   NIC 1994
## 12063                                            Nicaragua    NI   NIC 1993
## 12064                                            Nicaragua    NI   NIC 1992
## 12065                                            Nicaragua    NI   NIC 1991
## 12066                                            Nicaragua    NI   NIC 1990
## 12067                                            Nicaragua    NI   NIC 1989
## 12068                                            Nicaragua    NI   NIC 1988
## 12069                                            Nicaragua    NI   NIC 1987
## 12070                                            Nicaragua    NI   NIC 1986
## 12071                                            Nicaragua    NI   NIC 1985
## 12072                                            Nicaragua    NI   NIC 1984
## 12073                                            Nicaragua    NI   NIC 1983
## 12074                                            Nicaragua    NI   NIC 1982
## 12075                                            Nicaragua    NI   NIC 1981
## 12076                                            Nicaragua    NI   NIC 1980
## 12077                                            Nicaragua    NI   NIC 1979
## 12078                                            Nicaragua    NI   NIC 1978
## 12079                                            Nicaragua    NI   NIC 1977
## 12080                                            Nicaragua    NI   NIC 1976
## 12081                                            Nicaragua    NI   NIC 1975
## 12082                                            Nicaragua    NI   NIC 1974
## 12083                                            Nicaragua    NI   NIC 1973
## 12084                                            Nicaragua    NI   NIC 1972
## 12085                                            Nicaragua    NI   NIC 1971
## 12086                                            Nicaragua    NI   NIC 1970
## 12087                                            Nicaragua    NI   NIC 1969
## 12088                                            Nicaragua    NI   NIC 1968
## 12089                                            Nicaragua    NI   NIC 1967
## 12090                                            Nicaragua    NI   NIC 1966
## 12091                                            Nicaragua    NI   NIC 1965
## 12092                                            Nicaragua    NI   NIC 1964
## 12093                                            Nicaragua    NI   NIC 1963
## 12094                                            Nicaragua    NI   NIC 1962
## 12095                                            Nicaragua    NI   NIC 1961
## 12096                                            Nicaragua    NI   NIC 1960
## 12097                                                Niger    NE   NER 2022
## 12098                                                Niger    NE   NER 2021
## 12099                                                Niger    NE   NER 2020
## 12100                                                Niger    NE   NER 2019
## 12101                                                Niger    NE   NER 2018
## 12102                                                Niger    NE   NER 2017
## 12103                                                Niger    NE   NER 2016
## 12104                                                Niger    NE   NER 2015
## 12105                                                Niger    NE   NER 2014
## 12106                                                Niger    NE   NER 2013
## 12107                                                Niger    NE   NER 2012
## 12108                                                Niger    NE   NER 2011
## 12109                                                Niger    NE   NER 2010
## 12110                                                Niger    NE   NER 2009
## 12111                                                Niger    NE   NER 2008
## 12112                                                Niger    NE   NER 2007
## 12113                                                Niger    NE   NER 2006
## 12114                                                Niger    NE   NER 2005
## 12115                                                Niger    NE   NER 2004
## 12116                                                Niger    NE   NER 2003
## 12117                                                Niger    NE   NER 2002
## 12118                                                Niger    NE   NER 2001
## 12119                                                Niger    NE   NER 2000
## 12120                                                Niger    NE   NER 1999
## 12121                                                Niger    NE   NER 1998
## 12122                                                Niger    NE   NER 1997
## 12123                                                Niger    NE   NER 1996
## 12124                                                Niger    NE   NER 1995
## 12125                                                Niger    NE   NER 1994
## 12126                                                Niger    NE   NER 1993
## 12127                                                Niger    NE   NER 1992
## 12128                                                Niger    NE   NER 1991
## 12129                                                Niger    NE   NER 1990
## 12130                                                Niger    NE   NER 1989
## 12131                                                Niger    NE   NER 1988
## 12132                                                Niger    NE   NER 1987
## 12133                                                Niger    NE   NER 1986
## 12134                                                Niger    NE   NER 1985
## 12135                                                Niger    NE   NER 1984
## 12136                                                Niger    NE   NER 1983
## 12137                                                Niger    NE   NER 1982
## 12138                                                Niger    NE   NER 1981
## 12139                                                Niger    NE   NER 1980
## 12140                                                Niger    NE   NER 1979
## 12141                                                Niger    NE   NER 1978
## 12142                                                Niger    NE   NER 1977
## 12143                                                Niger    NE   NER 1976
## 12144                                                Niger    NE   NER 1975
## 12145                                                Niger    NE   NER 1974
## 12146                                                Niger    NE   NER 1973
## 12147                                                Niger    NE   NER 1972
## 12148                                                Niger    NE   NER 1971
## 12149                                                Niger    NE   NER 1970
## 12150                                                Niger    NE   NER 1969
## 12151                                                Niger    NE   NER 1968
## 12152                                                Niger    NE   NER 1967
## 12153                                                Niger    NE   NER 1966
## 12154                                                Niger    NE   NER 1965
## 12155                                                Niger    NE   NER 1964
## 12156                                                Niger    NE   NER 1963
## 12157                                                Niger    NE   NER 1962
## 12158                                                Niger    NE   NER 1961
## 12159                                                Niger    NE   NER 1960
## 12160                                              Nigeria    NG   NGA 2022
## 12161                                              Nigeria    NG   NGA 2021
## 12162                                              Nigeria    NG   NGA 2020
## 12163                                              Nigeria    NG   NGA 2019
## 12164                                              Nigeria    NG   NGA 2018
## 12165                                              Nigeria    NG   NGA 2017
## 12166                                              Nigeria    NG   NGA 2016
## 12167                                              Nigeria    NG   NGA 2015
## 12168                                              Nigeria    NG   NGA 2014
## 12169                                              Nigeria    NG   NGA 2013
## 12170                                              Nigeria    NG   NGA 2012
## 12171                                              Nigeria    NG   NGA 2011
## 12172                                              Nigeria    NG   NGA 2010
## 12173                                              Nigeria    NG   NGA 2009
## 12174                                              Nigeria    NG   NGA 2008
## 12175                                              Nigeria    NG   NGA 2007
## 12176                                              Nigeria    NG   NGA 2006
## 12177                                              Nigeria    NG   NGA 2005
## 12178                                              Nigeria    NG   NGA 2004
## 12179                                              Nigeria    NG   NGA 2003
## 12180                                              Nigeria    NG   NGA 2002
## 12181                                              Nigeria    NG   NGA 2001
## 12182                                              Nigeria    NG   NGA 2000
## 12183                                              Nigeria    NG   NGA 1999
## 12184                                              Nigeria    NG   NGA 1998
## 12185                                              Nigeria    NG   NGA 1997
## 12186                                              Nigeria    NG   NGA 1996
## 12187                                              Nigeria    NG   NGA 1995
## 12188                                              Nigeria    NG   NGA 1994
## 12189                                              Nigeria    NG   NGA 1993
## 12190                                              Nigeria    NG   NGA 1992
## 12191                                              Nigeria    NG   NGA 1991
## 12192                                              Nigeria    NG   NGA 1990
## 12193                                              Nigeria    NG   NGA 1989
## 12194                                              Nigeria    NG   NGA 1988
## 12195                                              Nigeria    NG   NGA 1987
## 12196                                              Nigeria    NG   NGA 1986
## 12197                                              Nigeria    NG   NGA 1985
## 12198                                              Nigeria    NG   NGA 1984
## 12199                                              Nigeria    NG   NGA 1983
## 12200                                              Nigeria    NG   NGA 1982
## 12201                                              Nigeria    NG   NGA 1981
## 12202                                              Nigeria    NG   NGA 1980
## 12203                                              Nigeria    NG   NGA 1979
## 12204                                              Nigeria    NG   NGA 1978
## 12205                                              Nigeria    NG   NGA 1977
## 12206                                              Nigeria    NG   NGA 1976
## 12207                                              Nigeria    NG   NGA 1975
## 12208                                              Nigeria    NG   NGA 1974
## 12209                                              Nigeria    NG   NGA 1973
## 12210                                              Nigeria    NG   NGA 1972
## 12211                                              Nigeria    NG   NGA 1971
## 12212                                              Nigeria    NG   NGA 1970
## 12213                                              Nigeria    NG   NGA 1969
## 12214                                              Nigeria    NG   NGA 1968
## 12215                                              Nigeria    NG   NGA 1967
## 12216                                              Nigeria    NG   NGA 1966
## 12217                                              Nigeria    NG   NGA 1965
## 12218                                              Nigeria    NG   NGA 1964
## 12219                                              Nigeria    NG   NGA 1963
## 12220                                              Nigeria    NG   NGA 1962
## 12221                                              Nigeria    NG   NGA 1961
## 12222                                              Nigeria    NG   NGA 1960
## 12223                                      North Macedonia    MK   MKD 2022
## 12224                                      North Macedonia    MK   MKD 2021
## 12225                                      North Macedonia    MK   MKD 2020
## 12226                                      North Macedonia    MK   MKD 2019
## 12227                                      North Macedonia    MK   MKD 2018
## 12228                                      North Macedonia    MK   MKD 2017
## 12229                                      North Macedonia    MK   MKD 2016
## 12230                                      North Macedonia    MK   MKD 2015
## 12231                                      North Macedonia    MK   MKD 2014
## 12232                                      North Macedonia    MK   MKD 2013
## 12233                                      North Macedonia    MK   MKD 2012
## 12234                                      North Macedonia    MK   MKD 2011
## 12235                                      North Macedonia    MK   MKD 2010
## 12236                                      North Macedonia    MK   MKD 2009
## 12237                                      North Macedonia    MK   MKD 2008
## 12238                                      North Macedonia    MK   MKD 2007
## 12239                                      North Macedonia    MK   MKD 2006
## 12240                                      North Macedonia    MK   MKD 2005
## 12241                                      North Macedonia    MK   MKD 2004
## 12242                                      North Macedonia    MK   MKD 2003
## 12243                                      North Macedonia    MK   MKD 2002
## 12244                                      North Macedonia    MK   MKD 2001
## 12245                                      North Macedonia    MK   MKD 2000
## 12246                                      North Macedonia    MK   MKD 1999
## 12247                                      North Macedonia    MK   MKD 1998
## 12248                                      North Macedonia    MK   MKD 1997
## 12249                                      North Macedonia    MK   MKD 1996
## 12250                                      North Macedonia    MK   MKD 1995
## 12251                                      North Macedonia    MK   MKD 1994
## 12252                                      North Macedonia    MK   MKD 1993
## 12253                                      North Macedonia    MK   MKD 1992
## 12254                                      North Macedonia    MK   MKD 1991
## 12255                                      North Macedonia    MK   MKD 1990
## 12256                                      North Macedonia    MK   MKD 1989
## 12257                                      North Macedonia    MK   MKD 1988
## 12258                                      North Macedonia    MK   MKD 1987
## 12259                                      North Macedonia    MK   MKD 1986
## 12260                                      North Macedonia    MK   MKD 1985
## 12261                                      North Macedonia    MK   MKD 1984
## 12262                                      North Macedonia    MK   MKD 1983
## 12263                                      North Macedonia    MK   MKD 1982
## 12264                                      North Macedonia    MK   MKD 1981
## 12265                                      North Macedonia    MK   MKD 1980
## 12266                                      North Macedonia    MK   MKD 1979
## 12267                                      North Macedonia    MK   MKD 1978
## 12268                                      North Macedonia    MK   MKD 1977
## 12269                                      North Macedonia    MK   MKD 1976
## 12270                                      North Macedonia    MK   MKD 1975
## 12271                                      North Macedonia    MK   MKD 1974
## 12272                                      North Macedonia    MK   MKD 1973
## 12273                                      North Macedonia    MK   MKD 1972
## 12274                                      North Macedonia    MK   MKD 1971
## 12275                                      North Macedonia    MK   MKD 1970
## 12276                                      North Macedonia    MK   MKD 1969
## 12277                                      North Macedonia    MK   MKD 1968
## 12278                                      North Macedonia    MK   MKD 1967
## 12279                                      North Macedonia    MK   MKD 1966
## 12280                                      North Macedonia    MK   MKD 1965
## 12281                                      North Macedonia    MK   MKD 1964
## 12282                                      North Macedonia    MK   MKD 1963
## 12283                                      North Macedonia    MK   MKD 1962
## 12284                                      North Macedonia    MK   MKD 1961
## 12285                                      North Macedonia    MK   MKD 1960
## 12286                             Northern Mariana Islands    MP   MNP 2022
## 12287                             Northern Mariana Islands    MP   MNP 2021
## 12288                             Northern Mariana Islands    MP   MNP 2020
## 12289                             Northern Mariana Islands    MP   MNP 2019
## 12290                             Northern Mariana Islands    MP   MNP 2018
## 12291                             Northern Mariana Islands    MP   MNP 2017
## 12292                             Northern Mariana Islands    MP   MNP 2016
## 12293                             Northern Mariana Islands    MP   MNP 2015
## 12294                             Northern Mariana Islands    MP   MNP 2014
## 12295                             Northern Mariana Islands    MP   MNP 2013
## 12296                             Northern Mariana Islands    MP   MNP 2012
## 12297                             Northern Mariana Islands    MP   MNP 2011
## 12298                             Northern Mariana Islands    MP   MNP 2010
## 12299                             Northern Mariana Islands    MP   MNP 2009
## 12300                             Northern Mariana Islands    MP   MNP 2008
## 12301                             Northern Mariana Islands    MP   MNP 2007
## 12302                             Northern Mariana Islands    MP   MNP 2006
## 12303                             Northern Mariana Islands    MP   MNP 2005
## 12304                             Northern Mariana Islands    MP   MNP 2004
## 12305                             Northern Mariana Islands    MP   MNP 2003
## 12306                             Northern Mariana Islands    MP   MNP 2002
## 12307                             Northern Mariana Islands    MP   MNP 2001
## 12308                             Northern Mariana Islands    MP   MNP 2000
## 12309                             Northern Mariana Islands    MP   MNP 1999
## 12310                             Northern Mariana Islands    MP   MNP 1998
## 12311                             Northern Mariana Islands    MP   MNP 1997
## 12312                             Northern Mariana Islands    MP   MNP 1996
## 12313                             Northern Mariana Islands    MP   MNP 1995
## 12314                             Northern Mariana Islands    MP   MNP 1994
## 12315                             Northern Mariana Islands    MP   MNP 1993
## 12316                             Northern Mariana Islands    MP   MNP 1992
## 12317                             Northern Mariana Islands    MP   MNP 1991
## 12318                             Northern Mariana Islands    MP   MNP 1990
## 12319                             Northern Mariana Islands    MP   MNP 1989
## 12320                             Northern Mariana Islands    MP   MNP 1988
## 12321                             Northern Mariana Islands    MP   MNP 1987
## 12322                             Northern Mariana Islands    MP   MNP 1986
## 12323                             Northern Mariana Islands    MP   MNP 1985
## 12324                             Northern Mariana Islands    MP   MNP 1984
## 12325                             Northern Mariana Islands    MP   MNP 1983
## 12326                             Northern Mariana Islands    MP   MNP 1982
## 12327                             Northern Mariana Islands    MP   MNP 1981
## 12328                             Northern Mariana Islands    MP   MNP 1980
## 12329                             Northern Mariana Islands    MP   MNP 1979
## 12330                             Northern Mariana Islands    MP   MNP 1978
## 12331                             Northern Mariana Islands    MP   MNP 1977
## 12332                             Northern Mariana Islands    MP   MNP 1976
## 12333                             Northern Mariana Islands    MP   MNP 1975
## 12334                             Northern Mariana Islands    MP   MNP 1974
## 12335                             Northern Mariana Islands    MP   MNP 1973
## 12336                             Northern Mariana Islands    MP   MNP 1972
## 12337                             Northern Mariana Islands    MP   MNP 1971
## 12338                             Northern Mariana Islands    MP   MNP 1970
## 12339                             Northern Mariana Islands    MP   MNP 1969
## 12340                             Northern Mariana Islands    MP   MNP 1968
## 12341                             Northern Mariana Islands    MP   MNP 1967
## 12342                             Northern Mariana Islands    MP   MNP 1966
## 12343                             Northern Mariana Islands    MP   MNP 1965
## 12344                             Northern Mariana Islands    MP   MNP 1964
## 12345                             Northern Mariana Islands    MP   MNP 1963
## 12346                             Northern Mariana Islands    MP   MNP 1962
## 12347                             Northern Mariana Islands    MP   MNP 1961
## 12348                             Northern Mariana Islands    MP   MNP 1960
## 12349                                               Norway    NO   NOR 2022
## 12350                                               Norway    NO   NOR 2021
## 12351                                               Norway    NO   NOR 2020
## 12352                                               Norway    NO   NOR 2019
## 12353                                               Norway    NO   NOR 2018
## 12354                                               Norway    NO   NOR 2017
## 12355                                               Norway    NO   NOR 2016
## 12356                                               Norway    NO   NOR 2015
## 12357                                               Norway    NO   NOR 2014
## 12358                                               Norway    NO   NOR 2013
## 12359                                               Norway    NO   NOR 2012
## 12360                                               Norway    NO   NOR 2011
## 12361                                               Norway    NO   NOR 2010
## 12362                                               Norway    NO   NOR 2009
## 12363                                               Norway    NO   NOR 2008
## 12364                                               Norway    NO   NOR 2007
## 12365                                               Norway    NO   NOR 2006
## 12366                                               Norway    NO   NOR 2005
## 12367                                               Norway    NO   NOR 2004
## 12368                                               Norway    NO   NOR 2003
## 12369                                               Norway    NO   NOR 2002
## 12370                                               Norway    NO   NOR 2001
## 12371                                               Norway    NO   NOR 2000
## 12372                                               Norway    NO   NOR 1999
## 12373                                               Norway    NO   NOR 1998
## 12374                                               Norway    NO   NOR 1997
## 12375                                               Norway    NO   NOR 1996
## 12376                                               Norway    NO   NOR 1995
## 12377                                               Norway    NO   NOR 1994
## 12378                                               Norway    NO   NOR 1993
## 12379                                               Norway    NO   NOR 1992
## 12380                                               Norway    NO   NOR 1991
## 12381                                               Norway    NO   NOR 1990
## 12382                                               Norway    NO   NOR 1989
## 12383                                               Norway    NO   NOR 1988
## 12384                                               Norway    NO   NOR 1987
## 12385                                               Norway    NO   NOR 1986
## 12386                                               Norway    NO   NOR 1985
## 12387                                               Norway    NO   NOR 1984
## 12388                                               Norway    NO   NOR 1983
## 12389                                               Norway    NO   NOR 1982
## 12390                                               Norway    NO   NOR 1981
## 12391                                               Norway    NO   NOR 1980
## 12392                                               Norway    NO   NOR 1979
## 12393                                               Norway    NO   NOR 1978
## 12394                                               Norway    NO   NOR 1977
## 12395                                               Norway    NO   NOR 1976
## 12396                                               Norway    NO   NOR 1975
## 12397                                               Norway    NO   NOR 1974
## 12398                                               Norway    NO   NOR 1973
## 12399                                               Norway    NO   NOR 1972
## 12400                                               Norway    NO   NOR 1971
## 12401                                               Norway    NO   NOR 1970
## 12402                                               Norway    NO   NOR 1969
## 12403                                               Norway    NO   NOR 1968
## 12404                                               Norway    NO   NOR 1967
## 12405                                               Norway    NO   NOR 1966
## 12406                                               Norway    NO   NOR 1965
## 12407                                               Norway    NO   NOR 1964
## 12408                                               Norway    NO   NOR 1963
## 12409                                               Norway    NO   NOR 1962
## 12410                                               Norway    NO   NOR 1961
## 12411                                               Norway    NO   NOR 1960
## 12412                                                 Oman    OM   OMN 2022
## 12413                                                 Oman    OM   OMN 2021
## 12414                                                 Oman    OM   OMN 2020
## 12415                                                 Oman    OM   OMN 2019
## 12416                                                 Oman    OM   OMN 2018
## 12417                                                 Oman    OM   OMN 2017
## 12418                                                 Oman    OM   OMN 2016
## 12419                                                 Oman    OM   OMN 2015
## 12420                                                 Oman    OM   OMN 2014
## 12421                                                 Oman    OM   OMN 2013
## 12422                                                 Oman    OM   OMN 2012
## 12423                                                 Oman    OM   OMN 2011
## 12424                                                 Oman    OM   OMN 2010
## 12425                                                 Oman    OM   OMN 2009
## 12426                                                 Oman    OM   OMN 2008
## 12427                                                 Oman    OM   OMN 2007
## 12428                                                 Oman    OM   OMN 2006
## 12429                                                 Oman    OM   OMN 2005
## 12430                                                 Oman    OM   OMN 2004
## 12431                                                 Oman    OM   OMN 2003
## 12432                                                 Oman    OM   OMN 2002
## 12433                                                 Oman    OM   OMN 2001
## 12434                                                 Oman    OM   OMN 2000
## 12435                                                 Oman    OM   OMN 1999
## 12436                                                 Oman    OM   OMN 1998
## 12437                                                 Oman    OM   OMN 1997
## 12438                                                 Oman    OM   OMN 1996
## 12439                                                 Oman    OM   OMN 1995
## 12440                                                 Oman    OM   OMN 1994
## 12441                                                 Oman    OM   OMN 1993
## 12442                                                 Oman    OM   OMN 1992
## 12443                                                 Oman    OM   OMN 1991
## 12444                                                 Oman    OM   OMN 1990
## 12445                                                 Oman    OM   OMN 1989
## 12446                                                 Oman    OM   OMN 1988
## 12447                                                 Oman    OM   OMN 1987
## 12448                                                 Oman    OM   OMN 1986
## 12449                                                 Oman    OM   OMN 1985
## 12450                                                 Oman    OM   OMN 1984
## 12451                                                 Oman    OM   OMN 1983
## 12452                                                 Oman    OM   OMN 1982
## 12453                                                 Oman    OM   OMN 1981
## 12454                                                 Oman    OM   OMN 1980
## 12455                                                 Oman    OM   OMN 1979
## 12456                                                 Oman    OM   OMN 1978
## 12457                                                 Oman    OM   OMN 1977
## 12458                                                 Oman    OM   OMN 1976
## 12459                                                 Oman    OM   OMN 1975
## 12460                                                 Oman    OM   OMN 1974
## 12461                                                 Oman    OM   OMN 1973
## 12462                                                 Oman    OM   OMN 1972
## 12463                                                 Oman    OM   OMN 1971
## 12464                                                 Oman    OM   OMN 1970
## 12465                                                 Oman    OM   OMN 1969
## 12466                                                 Oman    OM   OMN 1968
## 12467                                                 Oman    OM   OMN 1967
## 12468                                                 Oman    OM   OMN 1966
## 12469                                                 Oman    OM   OMN 1965
## 12470                                                 Oman    OM   OMN 1964
## 12471                                                 Oman    OM   OMN 1963
## 12472                                                 Oman    OM   OMN 1962
## 12473                                                 Oman    OM   OMN 1961
## 12474                                                 Oman    OM   OMN 1960
## 12475                                             Pakistan    PK   PAK 2022
## 12476                                             Pakistan    PK   PAK 2021
## 12477                                             Pakistan    PK   PAK 2020
## 12478                                             Pakistan    PK   PAK 2019
## 12479                                             Pakistan    PK   PAK 2018
## 12480                                             Pakistan    PK   PAK 2017
## 12481                                             Pakistan    PK   PAK 2016
## 12482                                             Pakistan    PK   PAK 2015
## 12483                                             Pakistan    PK   PAK 2014
## 12484                                             Pakistan    PK   PAK 2013
## 12485                                             Pakistan    PK   PAK 2012
## 12486                                             Pakistan    PK   PAK 2011
## 12487                                             Pakistan    PK   PAK 2010
## 12488                                             Pakistan    PK   PAK 2009
## 12489                                             Pakistan    PK   PAK 2008
## 12490                                             Pakistan    PK   PAK 2007
## 12491                                             Pakistan    PK   PAK 2006
## 12492                                             Pakistan    PK   PAK 2005
## 12493                                             Pakistan    PK   PAK 2004
## 12494                                             Pakistan    PK   PAK 2003
## 12495                                             Pakistan    PK   PAK 2002
## 12496                                             Pakistan    PK   PAK 2001
## 12497                                             Pakistan    PK   PAK 2000
## 12498                                             Pakistan    PK   PAK 1999
## 12499                                             Pakistan    PK   PAK 1998
## 12500                                             Pakistan    PK   PAK 1997
## 12501                                             Pakistan    PK   PAK 1996
## 12502                                             Pakistan    PK   PAK 1995
## 12503                                             Pakistan    PK   PAK 1994
## 12504                                             Pakistan    PK   PAK 1993
## 12505                                             Pakistan    PK   PAK 1992
## 12506                                             Pakistan    PK   PAK 1991
## 12507                                             Pakistan    PK   PAK 1990
## 12508                                             Pakistan    PK   PAK 1989
## 12509                                             Pakistan    PK   PAK 1988
## 12510                                             Pakistan    PK   PAK 1987
## 12511                                             Pakistan    PK   PAK 1986
## 12512                                             Pakistan    PK   PAK 1985
## 12513                                             Pakistan    PK   PAK 1984
## 12514                                             Pakistan    PK   PAK 1983
## 12515                                             Pakistan    PK   PAK 1982
## 12516                                             Pakistan    PK   PAK 1981
## 12517                                             Pakistan    PK   PAK 1980
## 12518                                             Pakistan    PK   PAK 1979
## 12519                                             Pakistan    PK   PAK 1978
## 12520                                             Pakistan    PK   PAK 1977
## 12521                                             Pakistan    PK   PAK 1976
## 12522                                             Pakistan    PK   PAK 1975
## 12523                                             Pakistan    PK   PAK 1974
## 12524                                             Pakistan    PK   PAK 1973
## 12525                                             Pakistan    PK   PAK 1972
## 12526                                             Pakistan    PK   PAK 1971
## 12527                                             Pakistan    PK   PAK 1970
## 12528                                             Pakistan    PK   PAK 1969
## 12529                                             Pakistan    PK   PAK 1968
## 12530                                             Pakistan    PK   PAK 1967
## 12531                                             Pakistan    PK   PAK 1966
## 12532                                             Pakistan    PK   PAK 1965
## 12533                                             Pakistan    PK   PAK 1964
## 12534                                             Pakistan    PK   PAK 1963
## 12535                                             Pakistan    PK   PAK 1962
## 12536                                             Pakistan    PK   PAK 1961
## 12537                                             Pakistan    PK   PAK 1960
## 12538                                                Palau    PW   PLW 2022
## 12539                                                Palau    PW   PLW 2021
## 12540                                                Palau    PW   PLW 2020
## 12541                                                Palau    PW   PLW 2019
## 12542                                                Palau    PW   PLW 2018
## 12543                                                Palau    PW   PLW 2017
## 12544                                                Palau    PW   PLW 2016
## 12545                                                Palau    PW   PLW 2015
## 12546                                                Palau    PW   PLW 2014
## 12547                                                Palau    PW   PLW 2013
## 12548                                                Palau    PW   PLW 2012
## 12549                                                Palau    PW   PLW 2011
## 12550                                                Palau    PW   PLW 2010
## 12551                                                Palau    PW   PLW 2009
## 12552                                                Palau    PW   PLW 2008
## 12553                                                Palau    PW   PLW 2007
## 12554                                                Palau    PW   PLW 2006
## 12555                                                Palau    PW   PLW 2005
## 12556                                                Palau    PW   PLW 2004
## 12557                                                Palau    PW   PLW 2003
## 12558                                                Palau    PW   PLW 2002
## 12559                                                Palau    PW   PLW 2001
## 12560                                                Palau    PW   PLW 2000
## 12561                                                Palau    PW   PLW 1999
## 12562                                                Palau    PW   PLW 1998
## 12563                                                Palau    PW   PLW 1997
## 12564                                                Palau    PW   PLW 1996
## 12565                                                Palau    PW   PLW 1995
## 12566                                                Palau    PW   PLW 1994
## 12567                                                Palau    PW   PLW 1993
## 12568                                                Palau    PW   PLW 1992
## 12569                                                Palau    PW   PLW 1991
## 12570                                                Palau    PW   PLW 1990
## 12571                                                Palau    PW   PLW 1989
## 12572                                                Palau    PW   PLW 1988
## 12573                                                Palau    PW   PLW 1987
## 12574                                                Palau    PW   PLW 1986
## 12575                                                Palau    PW   PLW 1985
## 12576                                                Palau    PW   PLW 1984
## 12577                                                Palau    PW   PLW 1983
## 12578                                                Palau    PW   PLW 1982
## 12579                                                Palau    PW   PLW 1981
## 12580                                                Palau    PW   PLW 1980
## 12581                                                Palau    PW   PLW 1979
## 12582                                                Palau    PW   PLW 1978
## 12583                                                Palau    PW   PLW 1977
## 12584                                                Palau    PW   PLW 1976
## 12585                                                Palau    PW   PLW 1975
## 12586                                                Palau    PW   PLW 1974
## 12587                                                Palau    PW   PLW 1973
## 12588                                                Palau    PW   PLW 1972
## 12589                                                Palau    PW   PLW 1971
## 12590                                                Palau    PW   PLW 1970
## 12591                                                Palau    PW   PLW 1969
## 12592                                                Palau    PW   PLW 1968
## 12593                                                Palau    PW   PLW 1967
## 12594                                                Palau    PW   PLW 1966
## 12595                                                Palau    PW   PLW 1965
## 12596                                                Palau    PW   PLW 1964
## 12597                                                Palau    PW   PLW 1963
## 12598                                                Palau    PW   PLW 1962
## 12599                                                Palau    PW   PLW 1961
## 12600                                                Palau    PW   PLW 1960
## 12601                                               Panama    PA   PAN 2022
## 12602                                               Panama    PA   PAN 2021
## 12603                                               Panama    PA   PAN 2020
## 12604                                               Panama    PA   PAN 2019
## 12605                                               Panama    PA   PAN 2018
## 12606                                               Panama    PA   PAN 2017
## 12607                                               Panama    PA   PAN 2016
## 12608                                               Panama    PA   PAN 2015
## 12609                                               Panama    PA   PAN 2014
## 12610                                               Panama    PA   PAN 2013
## 12611                                               Panama    PA   PAN 2012
## 12612                                               Panama    PA   PAN 2011
## 12613                                               Panama    PA   PAN 2010
## 12614                                               Panama    PA   PAN 2009
## 12615                                               Panama    PA   PAN 2008
## 12616                                               Panama    PA   PAN 2007
## 12617                                               Panama    PA   PAN 2006
## 12618                                               Panama    PA   PAN 2005
## 12619                                               Panama    PA   PAN 2004
## 12620                                               Panama    PA   PAN 2003
## 12621                                               Panama    PA   PAN 2002
## 12622                                               Panama    PA   PAN 2001
## 12623                                               Panama    PA   PAN 2000
## 12624                                               Panama    PA   PAN 1999
## 12625                                               Panama    PA   PAN 1998
## 12626                                               Panama    PA   PAN 1997
## 12627                                               Panama    PA   PAN 1996
## 12628                                               Panama    PA   PAN 1995
## 12629                                               Panama    PA   PAN 1994
## 12630                                               Panama    PA   PAN 1993
## 12631                                               Panama    PA   PAN 1992
## 12632                                               Panama    PA   PAN 1991
## 12633                                               Panama    PA   PAN 1990
## 12634                                               Panama    PA   PAN 1989
## 12635                                               Panama    PA   PAN 1988
## 12636                                               Panama    PA   PAN 1987
## 12637                                               Panama    PA   PAN 1986
## 12638                                               Panama    PA   PAN 1985
## 12639                                               Panama    PA   PAN 1984
## 12640                                               Panama    PA   PAN 1983
## 12641                                               Panama    PA   PAN 1982
## 12642                                               Panama    PA   PAN 1981
## 12643                                               Panama    PA   PAN 1980
## 12644                                               Panama    PA   PAN 1979
## 12645                                               Panama    PA   PAN 1978
## 12646                                               Panama    PA   PAN 1977
## 12647                                               Panama    PA   PAN 1976
## 12648                                               Panama    PA   PAN 1975
## 12649                                               Panama    PA   PAN 1974
## 12650                                               Panama    PA   PAN 1973
## 12651                                               Panama    PA   PAN 1972
## 12652                                               Panama    PA   PAN 1971
## 12653                                               Panama    PA   PAN 1970
## 12654                                               Panama    PA   PAN 1969
## 12655                                               Panama    PA   PAN 1968
## 12656                                               Panama    PA   PAN 1967
## 12657                                               Panama    PA   PAN 1966
## 12658                                               Panama    PA   PAN 1965
## 12659                                               Panama    PA   PAN 1964
## 12660                                               Panama    PA   PAN 1963
## 12661                                               Panama    PA   PAN 1962
## 12662                                               Panama    PA   PAN 1961
## 12663                                               Panama    PA   PAN 1960
## 12664                                     Papua New Guinea    PG   PNG 2022
## 12665                                     Papua New Guinea    PG   PNG 2021
## 12666                                     Papua New Guinea    PG   PNG 2020
## 12667                                     Papua New Guinea    PG   PNG 2019
## 12668                                     Papua New Guinea    PG   PNG 2018
## 12669                                     Papua New Guinea    PG   PNG 2017
## 12670                                     Papua New Guinea    PG   PNG 2016
## 12671                                     Papua New Guinea    PG   PNG 2015
## 12672                                     Papua New Guinea    PG   PNG 2014
## 12673                                     Papua New Guinea    PG   PNG 2013
## 12674                                     Papua New Guinea    PG   PNG 2012
## 12675                                     Papua New Guinea    PG   PNG 2011
## 12676                                     Papua New Guinea    PG   PNG 2010
## 12677                                     Papua New Guinea    PG   PNG 2009
## 12678                                     Papua New Guinea    PG   PNG 2008
## 12679                                     Papua New Guinea    PG   PNG 2007
## 12680                                     Papua New Guinea    PG   PNG 2006
## 12681                                     Papua New Guinea    PG   PNG 2005
## 12682                                     Papua New Guinea    PG   PNG 2004
## 12683                                     Papua New Guinea    PG   PNG 2003
## 12684                                     Papua New Guinea    PG   PNG 2002
## 12685                                     Papua New Guinea    PG   PNG 2001
## 12686                                     Papua New Guinea    PG   PNG 2000
## 12687                                     Papua New Guinea    PG   PNG 1999
## 12688                                     Papua New Guinea    PG   PNG 1998
## 12689                                     Papua New Guinea    PG   PNG 1997
## 12690                                     Papua New Guinea    PG   PNG 1996
## 12691                                     Papua New Guinea    PG   PNG 1995
## 12692                                     Papua New Guinea    PG   PNG 1994
## 12693                                     Papua New Guinea    PG   PNG 1993
## 12694                                     Papua New Guinea    PG   PNG 1992
## 12695                                     Papua New Guinea    PG   PNG 1991
## 12696                                     Papua New Guinea    PG   PNG 1990
## 12697                                     Papua New Guinea    PG   PNG 1989
## 12698                                     Papua New Guinea    PG   PNG 1988
## 12699                                     Papua New Guinea    PG   PNG 1987
## 12700                                     Papua New Guinea    PG   PNG 1986
## 12701                                     Papua New Guinea    PG   PNG 1985
## 12702                                     Papua New Guinea    PG   PNG 1984
## 12703                                     Papua New Guinea    PG   PNG 1983
## 12704                                     Papua New Guinea    PG   PNG 1982
## 12705                                     Papua New Guinea    PG   PNG 1981
## 12706                                     Papua New Guinea    PG   PNG 1980
## 12707                                     Papua New Guinea    PG   PNG 1979
## 12708                                     Papua New Guinea    PG   PNG 1978
## 12709                                     Papua New Guinea    PG   PNG 1977
## 12710                                     Papua New Guinea    PG   PNG 1976
## 12711                                     Papua New Guinea    PG   PNG 1975
## 12712                                     Papua New Guinea    PG   PNG 1974
## 12713                                     Papua New Guinea    PG   PNG 1973
## 12714                                     Papua New Guinea    PG   PNG 1972
## 12715                                     Papua New Guinea    PG   PNG 1971
## 12716                                     Papua New Guinea    PG   PNG 1970
## 12717                                     Papua New Guinea    PG   PNG 1969
## 12718                                     Papua New Guinea    PG   PNG 1968
## 12719                                     Papua New Guinea    PG   PNG 1967
## 12720                                     Papua New Guinea    PG   PNG 1966
## 12721                                     Papua New Guinea    PG   PNG 1965
## 12722                                     Papua New Guinea    PG   PNG 1964
## 12723                                     Papua New Guinea    PG   PNG 1963
## 12724                                     Papua New Guinea    PG   PNG 1962
## 12725                                     Papua New Guinea    PG   PNG 1961
## 12726                                     Papua New Guinea    PG   PNG 1960
## 12727                                             Paraguay    PY   PRY 2022
## 12728                                             Paraguay    PY   PRY 2021
## 12729                                             Paraguay    PY   PRY 2020
## 12730                                             Paraguay    PY   PRY 2019
## 12731                                             Paraguay    PY   PRY 2018
## 12732                                             Paraguay    PY   PRY 2017
## 12733                                             Paraguay    PY   PRY 2016
## 12734                                             Paraguay    PY   PRY 2015
## 12735                                             Paraguay    PY   PRY 2014
## 12736                                             Paraguay    PY   PRY 2013
## 12737                                             Paraguay    PY   PRY 2012
## 12738                                             Paraguay    PY   PRY 2011
## 12739                                             Paraguay    PY   PRY 2010
## 12740                                             Paraguay    PY   PRY 2009
## 12741                                             Paraguay    PY   PRY 2008
## 12742                                             Paraguay    PY   PRY 2007
## 12743                                             Paraguay    PY   PRY 2006
## 12744                                             Paraguay    PY   PRY 2005
## 12745                                             Paraguay    PY   PRY 2004
## 12746                                             Paraguay    PY   PRY 2003
## 12747                                             Paraguay    PY   PRY 2002
## 12748                                             Paraguay    PY   PRY 2001
## 12749                                             Paraguay    PY   PRY 2000
## 12750                                             Paraguay    PY   PRY 1999
## 12751                                             Paraguay    PY   PRY 1998
## 12752                                             Paraguay    PY   PRY 1997
## 12753                                             Paraguay    PY   PRY 1996
## 12754                                             Paraguay    PY   PRY 1995
## 12755                                             Paraguay    PY   PRY 1994
## 12756                                             Paraguay    PY   PRY 1993
## 12757                                             Paraguay    PY   PRY 1992
## 12758                                             Paraguay    PY   PRY 1991
## 12759                                             Paraguay    PY   PRY 1990
## 12760                                             Paraguay    PY   PRY 1989
## 12761                                             Paraguay    PY   PRY 1988
## 12762                                             Paraguay    PY   PRY 1987
## 12763                                             Paraguay    PY   PRY 1986
## 12764                                             Paraguay    PY   PRY 1985
## 12765                                             Paraguay    PY   PRY 1984
## 12766                                             Paraguay    PY   PRY 1983
## 12767                                             Paraguay    PY   PRY 1982
## 12768                                             Paraguay    PY   PRY 1981
## 12769                                             Paraguay    PY   PRY 1980
## 12770                                             Paraguay    PY   PRY 1979
## 12771                                             Paraguay    PY   PRY 1978
## 12772                                             Paraguay    PY   PRY 1977
## 12773                                             Paraguay    PY   PRY 1976
## 12774                                             Paraguay    PY   PRY 1975
## 12775                                             Paraguay    PY   PRY 1974
## 12776                                             Paraguay    PY   PRY 1973
## 12777                                             Paraguay    PY   PRY 1972
## 12778                                             Paraguay    PY   PRY 1971
## 12779                                             Paraguay    PY   PRY 1970
## 12780                                             Paraguay    PY   PRY 1969
## 12781                                             Paraguay    PY   PRY 1968
## 12782                                             Paraguay    PY   PRY 1967
## 12783                                             Paraguay    PY   PRY 1966
## 12784                                             Paraguay    PY   PRY 1965
## 12785                                             Paraguay    PY   PRY 1964
## 12786                                             Paraguay    PY   PRY 1963
## 12787                                             Paraguay    PY   PRY 1962
## 12788                                             Paraguay    PY   PRY 1961
## 12789                                             Paraguay    PY   PRY 1960
## 12790                                                 Peru    PE   PER 2022
## 12791                                                 Peru    PE   PER 2021
## 12792                                                 Peru    PE   PER 2020
## 12793                                                 Peru    PE   PER 2019
## 12794                                                 Peru    PE   PER 2018
## 12795                                                 Peru    PE   PER 2017
## 12796                                                 Peru    PE   PER 2016
## 12797                                                 Peru    PE   PER 2015
## 12798                                                 Peru    PE   PER 2014
## 12799                                                 Peru    PE   PER 2013
## 12800                                                 Peru    PE   PER 2012
## 12801                                                 Peru    PE   PER 2011
## 12802                                                 Peru    PE   PER 2010
## 12803                                                 Peru    PE   PER 2009
## 12804                                                 Peru    PE   PER 2008
## 12805                                                 Peru    PE   PER 2007
## 12806                                                 Peru    PE   PER 2006
## 12807                                                 Peru    PE   PER 2005
## 12808                                                 Peru    PE   PER 2004
## 12809                                                 Peru    PE   PER 2003
## 12810                                                 Peru    PE   PER 2002
## 12811                                                 Peru    PE   PER 2001
## 12812                                                 Peru    PE   PER 2000
## 12813                                                 Peru    PE   PER 1999
## 12814                                                 Peru    PE   PER 1998
## 12815                                                 Peru    PE   PER 1997
## 12816                                                 Peru    PE   PER 1996
## 12817                                                 Peru    PE   PER 1995
## 12818                                                 Peru    PE   PER 1994
## 12819                                                 Peru    PE   PER 1993
## 12820                                                 Peru    PE   PER 1992
## 12821                                                 Peru    PE   PER 1991
## 12822                                                 Peru    PE   PER 1990
## 12823                                                 Peru    PE   PER 1989
## 12824                                                 Peru    PE   PER 1988
## 12825                                                 Peru    PE   PER 1987
## 12826                                                 Peru    PE   PER 1986
## 12827                                                 Peru    PE   PER 1985
## 12828                                                 Peru    PE   PER 1984
## 12829                                                 Peru    PE   PER 1983
## 12830                                                 Peru    PE   PER 1982
## 12831                                                 Peru    PE   PER 1981
## 12832                                                 Peru    PE   PER 1980
## 12833                                                 Peru    PE   PER 1979
## 12834                                                 Peru    PE   PER 1978
## 12835                                                 Peru    PE   PER 1977
## 12836                                                 Peru    PE   PER 1976
## 12837                                                 Peru    PE   PER 1975
## 12838                                                 Peru    PE   PER 1974
## 12839                                                 Peru    PE   PER 1973
## 12840                                                 Peru    PE   PER 1972
## 12841                                                 Peru    PE   PER 1971
## 12842                                                 Peru    PE   PER 1970
## 12843                                                 Peru    PE   PER 1969
## 12844                                                 Peru    PE   PER 1968
## 12845                                                 Peru    PE   PER 1967
## 12846                                                 Peru    PE   PER 1966
## 12847                                                 Peru    PE   PER 1965
## 12848                                                 Peru    PE   PER 1964
## 12849                                                 Peru    PE   PER 1963
## 12850                                                 Peru    PE   PER 1962
## 12851                                                 Peru    PE   PER 1961
## 12852                                                 Peru    PE   PER 1960
## 12853                                          Philippines    PH   PHL 2022
## 12854                                          Philippines    PH   PHL 2021
## 12855                                          Philippines    PH   PHL 2020
## 12856                                          Philippines    PH   PHL 2019
## 12857                                          Philippines    PH   PHL 2018
## 12858                                          Philippines    PH   PHL 2017
## 12859                                          Philippines    PH   PHL 2016
## 12860                                          Philippines    PH   PHL 2015
## 12861                                          Philippines    PH   PHL 2014
## 12862                                          Philippines    PH   PHL 2013
## 12863                                          Philippines    PH   PHL 2012
## 12864                                          Philippines    PH   PHL 2011
## 12865                                          Philippines    PH   PHL 2010
## 12866                                          Philippines    PH   PHL 2009
## 12867                                          Philippines    PH   PHL 2008
## 12868                                          Philippines    PH   PHL 2007
## 12869                                          Philippines    PH   PHL 2006
## 12870                                          Philippines    PH   PHL 2005
## 12871                                          Philippines    PH   PHL 2004
## 12872                                          Philippines    PH   PHL 2003
## 12873                                          Philippines    PH   PHL 2002
## 12874                                          Philippines    PH   PHL 2001
## 12875                                          Philippines    PH   PHL 2000
## 12876                                          Philippines    PH   PHL 1999
## 12877                                          Philippines    PH   PHL 1998
## 12878                                          Philippines    PH   PHL 1997
## 12879                                          Philippines    PH   PHL 1996
## 12880                                          Philippines    PH   PHL 1995
## 12881                                          Philippines    PH   PHL 1994
## 12882                                          Philippines    PH   PHL 1993
## 12883                                          Philippines    PH   PHL 1992
## 12884                                          Philippines    PH   PHL 1991
## 12885                                          Philippines    PH   PHL 1990
## 12886                                          Philippines    PH   PHL 1989
## 12887                                          Philippines    PH   PHL 1988
## 12888                                          Philippines    PH   PHL 1987
## 12889                                          Philippines    PH   PHL 1986
## 12890                                          Philippines    PH   PHL 1985
## 12891                                          Philippines    PH   PHL 1984
## 12892                                          Philippines    PH   PHL 1983
## 12893                                          Philippines    PH   PHL 1982
## 12894                                          Philippines    PH   PHL 1981
## 12895                                          Philippines    PH   PHL 1980
## 12896                                          Philippines    PH   PHL 1979
## 12897                                          Philippines    PH   PHL 1978
## 12898                                          Philippines    PH   PHL 1977
## 12899                                          Philippines    PH   PHL 1976
## 12900                                          Philippines    PH   PHL 1975
## 12901                                          Philippines    PH   PHL 1974
## 12902                                          Philippines    PH   PHL 1973
## 12903                                          Philippines    PH   PHL 1972
## 12904                                          Philippines    PH   PHL 1971
## 12905                                          Philippines    PH   PHL 1970
## 12906                                          Philippines    PH   PHL 1969
## 12907                                          Philippines    PH   PHL 1968
## 12908                                          Philippines    PH   PHL 1967
## 12909                                          Philippines    PH   PHL 1966
## 12910                                          Philippines    PH   PHL 1965
## 12911                                          Philippines    PH   PHL 1964
## 12912                                          Philippines    PH   PHL 1963
## 12913                                          Philippines    PH   PHL 1962
## 12914                                          Philippines    PH   PHL 1961
## 12915                                          Philippines    PH   PHL 1960
## 12916                                               Poland    PL   POL 2022
## 12917                                               Poland    PL   POL 2021
## 12918                                               Poland    PL   POL 2020
## 12919                                               Poland    PL   POL 2019
## 12920                                               Poland    PL   POL 2018
## 12921                                               Poland    PL   POL 2017
## 12922                                               Poland    PL   POL 2016
## 12923                                               Poland    PL   POL 2015
## 12924                                               Poland    PL   POL 2014
## 12925                                               Poland    PL   POL 2013
## 12926                                               Poland    PL   POL 2012
## 12927                                               Poland    PL   POL 2011
## 12928                                               Poland    PL   POL 2010
## 12929                                               Poland    PL   POL 2009
## 12930                                               Poland    PL   POL 2008
## 12931                                               Poland    PL   POL 2007
## 12932                                               Poland    PL   POL 2006
## 12933                                               Poland    PL   POL 2005
## 12934                                               Poland    PL   POL 2004
## 12935                                               Poland    PL   POL 2003
## 12936                                               Poland    PL   POL 2002
## 12937                                               Poland    PL   POL 2001
## 12938                                               Poland    PL   POL 2000
## 12939                                               Poland    PL   POL 1999
## 12940                                               Poland    PL   POL 1998
## 12941                                               Poland    PL   POL 1997
## 12942                                               Poland    PL   POL 1996
## 12943                                               Poland    PL   POL 1995
## 12944                                               Poland    PL   POL 1994
## 12945                                               Poland    PL   POL 1993
## 12946                                               Poland    PL   POL 1992
## 12947                                               Poland    PL   POL 1991
## 12948                                               Poland    PL   POL 1990
## 12949                                               Poland    PL   POL 1989
## 12950                                               Poland    PL   POL 1988
## 12951                                               Poland    PL   POL 1987
## 12952                                               Poland    PL   POL 1986
## 12953                                               Poland    PL   POL 1985
## 12954                                               Poland    PL   POL 1984
## 12955                                               Poland    PL   POL 1983
## 12956                                               Poland    PL   POL 1982
## 12957                                               Poland    PL   POL 1981
## 12958                                               Poland    PL   POL 1980
## 12959                                               Poland    PL   POL 1979
## 12960                                               Poland    PL   POL 1978
## 12961                                               Poland    PL   POL 1977
## 12962                                               Poland    PL   POL 1976
## 12963                                               Poland    PL   POL 1975
## 12964                                               Poland    PL   POL 1974
## 12965                                               Poland    PL   POL 1973
## 12966                                               Poland    PL   POL 1972
## 12967                                               Poland    PL   POL 1971
## 12968                                               Poland    PL   POL 1970
## 12969                                               Poland    PL   POL 1969
## 12970                                               Poland    PL   POL 1968
## 12971                                               Poland    PL   POL 1967
## 12972                                               Poland    PL   POL 1966
## 12973                                               Poland    PL   POL 1965
## 12974                                               Poland    PL   POL 1964
## 12975                                               Poland    PL   POL 1963
## 12976                                               Poland    PL   POL 1962
## 12977                                               Poland    PL   POL 1961
## 12978                                               Poland    PL   POL 1960
## 12979                                             Portugal    PT   PRT 2022
## 12980                                             Portugal    PT   PRT 2021
## 12981                                             Portugal    PT   PRT 2020
## 12982                                             Portugal    PT   PRT 2019
## 12983                                             Portugal    PT   PRT 2018
## 12984                                             Portugal    PT   PRT 2017
## 12985                                             Portugal    PT   PRT 2016
## 12986                                             Portugal    PT   PRT 2015
## 12987                                             Portugal    PT   PRT 2014
## 12988                                             Portugal    PT   PRT 2013
## 12989                                             Portugal    PT   PRT 2012
## 12990                                             Portugal    PT   PRT 2011
## 12991                                             Portugal    PT   PRT 2010
## 12992                                             Portugal    PT   PRT 2009
## 12993                                             Portugal    PT   PRT 2008
## 12994                                             Portugal    PT   PRT 2007
## 12995                                             Portugal    PT   PRT 2006
## 12996                                             Portugal    PT   PRT 2005
## 12997                                             Portugal    PT   PRT 2004
## 12998                                             Portugal    PT   PRT 2003
## 12999                                             Portugal    PT   PRT 2002
## 13000                                             Portugal    PT   PRT 2001
## 13001                                             Portugal    PT   PRT 2000
## 13002                                             Portugal    PT   PRT 1999
## 13003                                             Portugal    PT   PRT 1998
## 13004                                             Portugal    PT   PRT 1997
## 13005                                             Portugal    PT   PRT 1996
## 13006                                             Portugal    PT   PRT 1995
## 13007                                             Portugal    PT   PRT 1994
## 13008                                             Portugal    PT   PRT 1993
## 13009                                             Portugal    PT   PRT 1992
## 13010                                             Portugal    PT   PRT 1991
## 13011                                             Portugal    PT   PRT 1990
## 13012                                             Portugal    PT   PRT 1989
## 13013                                             Portugal    PT   PRT 1988
## 13014                                             Portugal    PT   PRT 1987
## 13015                                             Portugal    PT   PRT 1986
## 13016                                             Portugal    PT   PRT 1985
## 13017                                             Portugal    PT   PRT 1984
## 13018                                             Portugal    PT   PRT 1983
## 13019                                             Portugal    PT   PRT 1982
## 13020                                             Portugal    PT   PRT 1981
## 13021                                             Portugal    PT   PRT 1980
## 13022                                             Portugal    PT   PRT 1979
## 13023                                             Portugal    PT   PRT 1978
## 13024                                             Portugal    PT   PRT 1977
## 13025                                             Portugal    PT   PRT 1976
## 13026                                             Portugal    PT   PRT 1975
## 13027                                             Portugal    PT   PRT 1974
## 13028                                             Portugal    PT   PRT 1973
## 13029                                             Portugal    PT   PRT 1972
## 13030                                             Portugal    PT   PRT 1971
## 13031                                             Portugal    PT   PRT 1970
## 13032                                             Portugal    PT   PRT 1969
## 13033                                             Portugal    PT   PRT 1968
## 13034                                             Portugal    PT   PRT 1967
## 13035                                             Portugal    PT   PRT 1966
## 13036                                             Portugal    PT   PRT 1965
## 13037                                             Portugal    PT   PRT 1964
## 13038                                             Portugal    PT   PRT 1963
## 13039                                             Portugal    PT   PRT 1962
## 13040                                             Portugal    PT   PRT 1961
## 13041                                             Portugal    PT   PRT 1960
## 13042                                          Puerto Rico    PR   PRI 2022
## 13043                                          Puerto Rico    PR   PRI 2021
## 13044                                          Puerto Rico    PR   PRI 2020
## 13045                                          Puerto Rico    PR   PRI 2019
## 13046                                          Puerto Rico    PR   PRI 2018
## 13047                                          Puerto Rico    PR   PRI 2017
## 13048                                          Puerto Rico    PR   PRI 2016
## 13049                                          Puerto Rico    PR   PRI 2015
## 13050                                          Puerto Rico    PR   PRI 2014
## 13051                                          Puerto Rico    PR   PRI 2013
## 13052                                          Puerto Rico    PR   PRI 2012
## 13053                                          Puerto Rico    PR   PRI 2011
## 13054                                          Puerto Rico    PR   PRI 2010
## 13055                                          Puerto Rico    PR   PRI 2009
## 13056                                          Puerto Rico    PR   PRI 2008
## 13057                                          Puerto Rico    PR   PRI 2007
## 13058                                          Puerto Rico    PR   PRI 2006
## 13059                                          Puerto Rico    PR   PRI 2005
## 13060                                          Puerto Rico    PR   PRI 2004
## 13061                                          Puerto Rico    PR   PRI 2003
## 13062                                          Puerto Rico    PR   PRI 2002
## 13063                                          Puerto Rico    PR   PRI 2001
## 13064                                          Puerto Rico    PR   PRI 2000
## 13065                                          Puerto Rico    PR   PRI 1999
## 13066                                          Puerto Rico    PR   PRI 1998
## 13067                                          Puerto Rico    PR   PRI 1997
## 13068                                          Puerto Rico    PR   PRI 1996
## 13069                                          Puerto Rico    PR   PRI 1995
## 13070                                          Puerto Rico    PR   PRI 1994
## 13071                                          Puerto Rico    PR   PRI 1993
## 13072                                          Puerto Rico    PR   PRI 1992
## 13073                                          Puerto Rico    PR   PRI 1991
## 13074                                          Puerto Rico    PR   PRI 1990
## 13075                                          Puerto Rico    PR   PRI 1989
## 13076                                          Puerto Rico    PR   PRI 1988
## 13077                                          Puerto Rico    PR   PRI 1987
## 13078                                          Puerto Rico    PR   PRI 1986
## 13079                                          Puerto Rico    PR   PRI 1985
## 13080                                          Puerto Rico    PR   PRI 1984
## 13081                                          Puerto Rico    PR   PRI 1983
## 13082                                          Puerto Rico    PR   PRI 1982
## 13083                                          Puerto Rico    PR   PRI 1981
## 13084                                          Puerto Rico    PR   PRI 1980
## 13085                                          Puerto Rico    PR   PRI 1979
## 13086                                          Puerto Rico    PR   PRI 1978
## 13087                                          Puerto Rico    PR   PRI 1977
## 13088                                          Puerto Rico    PR   PRI 1976
## 13089                                          Puerto Rico    PR   PRI 1975
## 13090                                          Puerto Rico    PR   PRI 1974
## 13091                                          Puerto Rico    PR   PRI 1973
## 13092                                          Puerto Rico    PR   PRI 1972
## 13093                                          Puerto Rico    PR   PRI 1971
## 13094                                          Puerto Rico    PR   PRI 1970
## 13095                                          Puerto Rico    PR   PRI 1969
## 13096                                          Puerto Rico    PR   PRI 1968
## 13097                                          Puerto Rico    PR   PRI 1967
## 13098                                          Puerto Rico    PR   PRI 1966
## 13099                                          Puerto Rico    PR   PRI 1965
## 13100                                          Puerto Rico    PR   PRI 1964
## 13101                                          Puerto Rico    PR   PRI 1963
## 13102                                          Puerto Rico    PR   PRI 1962
## 13103                                          Puerto Rico    PR   PRI 1961
## 13104                                          Puerto Rico    PR   PRI 1960
## 13105                                                Qatar    QA   QAT 2022
## 13106                                                Qatar    QA   QAT 2021
## 13107                                                Qatar    QA   QAT 2020
## 13108                                                Qatar    QA   QAT 2019
## 13109                                                Qatar    QA   QAT 2018
## 13110                                                Qatar    QA   QAT 2017
## 13111                                                Qatar    QA   QAT 2016
## 13112                                                Qatar    QA   QAT 2015
## 13113                                                Qatar    QA   QAT 2014
## 13114                                                Qatar    QA   QAT 2013
## 13115                                                Qatar    QA   QAT 2012
## 13116                                                Qatar    QA   QAT 2011
## 13117                                                Qatar    QA   QAT 2010
## 13118                                                Qatar    QA   QAT 2009
## 13119                                                Qatar    QA   QAT 2008
## 13120                                                Qatar    QA   QAT 2007
## 13121                                                Qatar    QA   QAT 2006
## 13122                                                Qatar    QA   QAT 2005
## 13123                                                Qatar    QA   QAT 2004
## 13124                                                Qatar    QA   QAT 2003
## 13125                                                Qatar    QA   QAT 2002
## 13126                                                Qatar    QA   QAT 2001
## 13127                                                Qatar    QA   QAT 2000
## 13128                                                Qatar    QA   QAT 1999
## 13129                                                Qatar    QA   QAT 1998
## 13130                                                Qatar    QA   QAT 1997
## 13131                                                Qatar    QA   QAT 1996
## 13132                                                Qatar    QA   QAT 1995
## 13133                                                Qatar    QA   QAT 1994
## 13134                                                Qatar    QA   QAT 1993
## 13135                                                Qatar    QA   QAT 1992
## 13136                                                Qatar    QA   QAT 1991
## 13137                                                Qatar    QA   QAT 1990
## 13138                                                Qatar    QA   QAT 1989
## 13139                                                Qatar    QA   QAT 1988
## 13140                                                Qatar    QA   QAT 1987
## 13141                                                Qatar    QA   QAT 1986
## 13142                                                Qatar    QA   QAT 1985
## 13143                                                Qatar    QA   QAT 1984
## 13144                                                Qatar    QA   QAT 1983
## 13145                                                Qatar    QA   QAT 1982
## 13146                                                Qatar    QA   QAT 1981
## 13147                                                Qatar    QA   QAT 1980
## 13148                                                Qatar    QA   QAT 1979
## 13149                                                Qatar    QA   QAT 1978
## 13150                                                Qatar    QA   QAT 1977
## 13151                                                Qatar    QA   QAT 1976
## 13152                                                Qatar    QA   QAT 1975
## 13153                                                Qatar    QA   QAT 1974
## 13154                                                Qatar    QA   QAT 1973
## 13155                                                Qatar    QA   QAT 1972
## 13156                                                Qatar    QA   QAT 1971
## 13157                                                Qatar    QA   QAT 1970
## 13158                                                Qatar    QA   QAT 1969
## 13159                                                Qatar    QA   QAT 1968
## 13160                                                Qatar    QA   QAT 1967
## 13161                                                Qatar    QA   QAT 1966
## 13162                                                Qatar    QA   QAT 1965
## 13163                                                Qatar    QA   QAT 1964
## 13164                                                Qatar    QA   QAT 1963
## 13165                                                Qatar    QA   QAT 1962
## 13166                                                Qatar    QA   QAT 1961
## 13167                                                Qatar    QA   QAT 1960
## 13168                                              Romania    RO   ROU 2022
## 13169                                              Romania    RO   ROU 2021
## 13170                                              Romania    RO   ROU 2020
## 13171                                              Romania    RO   ROU 2019
## 13172                                              Romania    RO   ROU 2018
## 13173                                              Romania    RO   ROU 2017
## 13174                                              Romania    RO   ROU 2016
## 13175                                              Romania    RO   ROU 2015
## 13176                                              Romania    RO   ROU 2014
## 13177                                              Romania    RO   ROU 2013
## 13178                                              Romania    RO   ROU 2012
## 13179                                              Romania    RO   ROU 2011
## 13180                                              Romania    RO   ROU 2010
## 13181                                              Romania    RO   ROU 2009
## 13182                                              Romania    RO   ROU 2008
## 13183                                              Romania    RO   ROU 2007
## 13184                                              Romania    RO   ROU 2006
## 13185                                              Romania    RO   ROU 2005
## 13186                                              Romania    RO   ROU 2004
## 13187                                              Romania    RO   ROU 2003
## 13188                                              Romania    RO   ROU 2002
## 13189                                              Romania    RO   ROU 2001
## 13190                                              Romania    RO   ROU 2000
## 13191                                              Romania    RO   ROU 1999
## 13192                                              Romania    RO   ROU 1998
## 13193                                              Romania    RO   ROU 1997
## 13194                                              Romania    RO   ROU 1996
## 13195                                              Romania    RO   ROU 1995
## 13196                                              Romania    RO   ROU 1994
## 13197                                              Romania    RO   ROU 1993
## 13198                                              Romania    RO   ROU 1992
## 13199                                              Romania    RO   ROU 1991
## 13200                                              Romania    RO   ROU 1990
## 13201                                              Romania    RO   ROU 1989
## 13202                                              Romania    RO   ROU 1988
## 13203                                              Romania    RO   ROU 1987
## 13204                                              Romania    RO   ROU 1986
## 13205                                              Romania    RO   ROU 1985
## 13206                                              Romania    RO   ROU 1984
## 13207                                              Romania    RO   ROU 1983
## 13208                                              Romania    RO   ROU 1982
## 13209                                              Romania    RO   ROU 1981
## 13210                                              Romania    RO   ROU 1980
## 13211                                              Romania    RO   ROU 1979
## 13212                                              Romania    RO   ROU 1978
## 13213                                              Romania    RO   ROU 1977
## 13214                                              Romania    RO   ROU 1976
## 13215                                              Romania    RO   ROU 1975
## 13216                                              Romania    RO   ROU 1974
## 13217                                              Romania    RO   ROU 1973
## 13218                                              Romania    RO   ROU 1972
## 13219                                              Romania    RO   ROU 1971
## 13220                                              Romania    RO   ROU 1970
## 13221                                              Romania    RO   ROU 1969
## 13222                                              Romania    RO   ROU 1968
## 13223                                              Romania    RO   ROU 1967
## 13224                                              Romania    RO   ROU 1966
## 13225                                              Romania    RO   ROU 1965
## 13226                                              Romania    RO   ROU 1964
## 13227                                              Romania    RO   ROU 1963
## 13228                                              Romania    RO   ROU 1962
## 13229                                              Romania    RO   ROU 1961
## 13230                                              Romania    RO   ROU 1960
## 13231                                   Russian Federation    RU   RUS 2022
## 13232                                   Russian Federation    RU   RUS 2021
## 13233                                   Russian Federation    RU   RUS 2020
## 13234                                   Russian Federation    RU   RUS 2019
## 13235                                   Russian Federation    RU   RUS 2018
## 13236                                   Russian Federation    RU   RUS 2017
## 13237                                   Russian Federation    RU   RUS 2016
## 13238                                   Russian Federation    RU   RUS 2015
## 13239                                   Russian Federation    RU   RUS 2014
## 13240                                   Russian Federation    RU   RUS 2013
## 13241                                   Russian Federation    RU   RUS 2012
## 13242                                   Russian Federation    RU   RUS 2011
## 13243                                   Russian Federation    RU   RUS 2010
## 13244                                   Russian Federation    RU   RUS 2009
## 13245                                   Russian Federation    RU   RUS 2008
## 13246                                   Russian Federation    RU   RUS 2007
## 13247                                   Russian Federation    RU   RUS 2006
## 13248                                   Russian Federation    RU   RUS 2005
## 13249                                   Russian Federation    RU   RUS 2004
## 13250                                   Russian Federation    RU   RUS 2003
## 13251                                   Russian Federation    RU   RUS 2002
## 13252                                   Russian Federation    RU   RUS 2001
## 13253                                   Russian Federation    RU   RUS 2000
## 13254                                   Russian Federation    RU   RUS 1999
## 13255                                   Russian Federation    RU   RUS 1998
## 13256                                   Russian Federation    RU   RUS 1997
## 13257                                   Russian Federation    RU   RUS 1996
## 13258                                   Russian Federation    RU   RUS 1995
## 13259                                   Russian Federation    RU   RUS 1994
## 13260                                   Russian Federation    RU   RUS 1993
## 13261                                   Russian Federation    RU   RUS 1992
## 13262                                   Russian Federation    RU   RUS 1991
## 13263                                   Russian Federation    RU   RUS 1990
## 13264                                   Russian Federation    RU   RUS 1989
## 13265                                   Russian Federation    RU   RUS 1988
## 13266                                   Russian Federation    RU   RUS 1987
## 13267                                   Russian Federation    RU   RUS 1986
## 13268                                   Russian Federation    RU   RUS 1985
## 13269                                   Russian Federation    RU   RUS 1984
## 13270                                   Russian Federation    RU   RUS 1983
## 13271                                   Russian Federation    RU   RUS 1982
## 13272                                   Russian Federation    RU   RUS 1981
## 13273                                   Russian Federation    RU   RUS 1980
## 13274                                   Russian Federation    RU   RUS 1979
## 13275                                   Russian Federation    RU   RUS 1978
## 13276                                   Russian Federation    RU   RUS 1977
## 13277                                   Russian Federation    RU   RUS 1976
## 13278                                   Russian Federation    RU   RUS 1975
## 13279                                   Russian Federation    RU   RUS 1974
## 13280                                   Russian Federation    RU   RUS 1973
## 13281                                   Russian Federation    RU   RUS 1972
## 13282                                   Russian Federation    RU   RUS 1971
## 13283                                   Russian Federation    RU   RUS 1970
## 13284                                   Russian Federation    RU   RUS 1969
## 13285                                   Russian Federation    RU   RUS 1968
## 13286                                   Russian Federation    RU   RUS 1967
## 13287                                   Russian Federation    RU   RUS 1966
## 13288                                   Russian Federation    RU   RUS 1965
## 13289                                   Russian Federation    RU   RUS 1964
## 13290                                   Russian Federation    RU   RUS 1963
## 13291                                   Russian Federation    RU   RUS 1962
## 13292                                   Russian Federation    RU   RUS 1961
## 13293                                   Russian Federation    RU   RUS 1960
## 13294                                               Rwanda    RW   RWA 2022
## 13295                                               Rwanda    RW   RWA 2021
## 13296                                               Rwanda    RW   RWA 2020
## 13297                                               Rwanda    RW   RWA 2019
## 13298                                               Rwanda    RW   RWA 2018
## 13299                                               Rwanda    RW   RWA 2017
## 13300                                               Rwanda    RW   RWA 2016
## 13301                                               Rwanda    RW   RWA 2015
## 13302                                               Rwanda    RW   RWA 2014
## 13303                                               Rwanda    RW   RWA 2013
## 13304                                               Rwanda    RW   RWA 2012
## 13305                                               Rwanda    RW   RWA 2011
## 13306                                               Rwanda    RW   RWA 2010
## 13307                                               Rwanda    RW   RWA 2009
## 13308                                               Rwanda    RW   RWA 2008
## 13309                                               Rwanda    RW   RWA 2007
## 13310                                               Rwanda    RW   RWA 2006
## 13311                                               Rwanda    RW   RWA 2005
## 13312                                               Rwanda    RW   RWA 2004
## 13313                                               Rwanda    RW   RWA 2003
## 13314                                               Rwanda    RW   RWA 2002
## 13315                                               Rwanda    RW   RWA 2001
## 13316                                               Rwanda    RW   RWA 2000
## 13317                                               Rwanda    RW   RWA 1999
## 13318                                               Rwanda    RW   RWA 1998
## 13319                                               Rwanda    RW   RWA 1997
## 13320                                               Rwanda    RW   RWA 1996
## 13321                                               Rwanda    RW   RWA 1995
## 13322                                               Rwanda    RW   RWA 1994
## 13323                                               Rwanda    RW   RWA 1993
## 13324                                               Rwanda    RW   RWA 1992
## 13325                                               Rwanda    RW   RWA 1991
## 13326                                               Rwanda    RW   RWA 1990
## 13327                                               Rwanda    RW   RWA 1989
## 13328                                               Rwanda    RW   RWA 1988
## 13329                                               Rwanda    RW   RWA 1987
## 13330                                               Rwanda    RW   RWA 1986
## 13331                                               Rwanda    RW   RWA 1985
## 13332                                               Rwanda    RW   RWA 1984
## 13333                                               Rwanda    RW   RWA 1983
## 13334                                               Rwanda    RW   RWA 1982
## 13335                                               Rwanda    RW   RWA 1981
## 13336                                               Rwanda    RW   RWA 1980
## 13337                                               Rwanda    RW   RWA 1979
## 13338                                               Rwanda    RW   RWA 1978
## 13339                                               Rwanda    RW   RWA 1977
## 13340                                               Rwanda    RW   RWA 1976
## 13341                                               Rwanda    RW   RWA 1975
## 13342                                               Rwanda    RW   RWA 1974
## 13343                                               Rwanda    RW   RWA 1973
## 13344                                               Rwanda    RW   RWA 1972
## 13345                                               Rwanda    RW   RWA 1971
## 13346                                               Rwanda    RW   RWA 1970
## 13347                                               Rwanda    RW   RWA 1969
## 13348                                               Rwanda    RW   RWA 1968
## 13349                                               Rwanda    RW   RWA 1967
## 13350                                               Rwanda    RW   RWA 1966
## 13351                                               Rwanda    RW   RWA 1965
## 13352                                               Rwanda    RW   RWA 1964
## 13353                                               Rwanda    RW   RWA 1963
## 13354                                               Rwanda    RW   RWA 1962
## 13355                                               Rwanda    RW   RWA 1961
## 13356                                               Rwanda    RW   RWA 1960
## 13357                                                Samoa    WS   WSM 2022
## 13358                                                Samoa    WS   WSM 2021
## 13359                                                Samoa    WS   WSM 2020
## 13360                                                Samoa    WS   WSM 2019
## 13361                                                Samoa    WS   WSM 2018
## 13362                                                Samoa    WS   WSM 2017
## 13363                                                Samoa    WS   WSM 2016
## 13364                                                Samoa    WS   WSM 2015
## 13365                                                Samoa    WS   WSM 2014
## 13366                                                Samoa    WS   WSM 2013
## 13367                                                Samoa    WS   WSM 2012
## 13368                                                Samoa    WS   WSM 2011
## 13369                                                Samoa    WS   WSM 2010
## 13370                                                Samoa    WS   WSM 2009
## 13371                                                Samoa    WS   WSM 2008
## 13372                                                Samoa    WS   WSM 2007
## 13373                                                Samoa    WS   WSM 2006
## 13374                                                Samoa    WS   WSM 2005
## 13375                                                Samoa    WS   WSM 2004
## 13376                                                Samoa    WS   WSM 2003
## 13377                                                Samoa    WS   WSM 2002
## 13378                                                Samoa    WS   WSM 2001
## 13379                                                Samoa    WS   WSM 2000
## 13380                                                Samoa    WS   WSM 1999
## 13381                                                Samoa    WS   WSM 1998
## 13382                                                Samoa    WS   WSM 1997
## 13383                                                Samoa    WS   WSM 1996
## 13384                                                Samoa    WS   WSM 1995
## 13385                                                Samoa    WS   WSM 1994
## 13386                                                Samoa    WS   WSM 1993
## 13387                                                Samoa    WS   WSM 1992
## 13388                                                Samoa    WS   WSM 1991
## 13389                                                Samoa    WS   WSM 1990
## 13390                                                Samoa    WS   WSM 1989
## 13391                                                Samoa    WS   WSM 1988
## 13392                                                Samoa    WS   WSM 1987
## 13393                                                Samoa    WS   WSM 1986
## 13394                                                Samoa    WS   WSM 1985
## 13395                                                Samoa    WS   WSM 1984
## 13396                                                Samoa    WS   WSM 1983
## 13397                                                Samoa    WS   WSM 1982
## 13398                                                Samoa    WS   WSM 1981
## 13399                                                Samoa    WS   WSM 1980
## 13400                                                Samoa    WS   WSM 1979
## 13401                                                Samoa    WS   WSM 1978
## 13402                                                Samoa    WS   WSM 1977
## 13403                                                Samoa    WS   WSM 1976
## 13404                                                Samoa    WS   WSM 1975
## 13405                                                Samoa    WS   WSM 1974
## 13406                                                Samoa    WS   WSM 1973
## 13407                                                Samoa    WS   WSM 1972
## 13408                                                Samoa    WS   WSM 1971
## 13409                                                Samoa    WS   WSM 1970
## 13410                                                Samoa    WS   WSM 1969
## 13411                                                Samoa    WS   WSM 1968
## 13412                                                Samoa    WS   WSM 1967
## 13413                                                Samoa    WS   WSM 1966
## 13414                                                Samoa    WS   WSM 1965
## 13415                                                Samoa    WS   WSM 1964
## 13416                                                Samoa    WS   WSM 1963
## 13417                                                Samoa    WS   WSM 1962
## 13418                                                Samoa    WS   WSM 1961
## 13419                                                Samoa    WS   WSM 1960
## 13420                                           San Marino    SM   SMR 2022
## 13421                                           San Marino    SM   SMR 2021
## 13422                                           San Marino    SM   SMR 2020
## 13423                                           San Marino    SM   SMR 2019
## 13424                                           San Marino    SM   SMR 2018
## 13425                                           San Marino    SM   SMR 2017
## 13426                                           San Marino    SM   SMR 2016
## 13427                                           San Marino    SM   SMR 2015
## 13428                                           San Marino    SM   SMR 2014
## 13429                                           San Marino    SM   SMR 2013
## 13430                                           San Marino    SM   SMR 2012
## 13431                                           San Marino    SM   SMR 2011
## 13432                                           San Marino    SM   SMR 2010
## 13433                                           San Marino    SM   SMR 2009
## 13434                                           San Marino    SM   SMR 2008
## 13435                                           San Marino    SM   SMR 2007
## 13436                                           San Marino    SM   SMR 2006
## 13437                                           San Marino    SM   SMR 2005
## 13438                                           San Marino    SM   SMR 2004
## 13439                                           San Marino    SM   SMR 2003
## 13440                                           San Marino    SM   SMR 2002
## 13441                                           San Marino    SM   SMR 2001
## 13442                                           San Marino    SM   SMR 2000
## 13443                                           San Marino    SM   SMR 1999
## 13444                                           San Marino    SM   SMR 1998
## 13445                                           San Marino    SM   SMR 1997
## 13446                                           San Marino    SM   SMR 1996
## 13447                                           San Marino    SM   SMR 1995
## 13448                                           San Marino    SM   SMR 1994
## 13449                                           San Marino    SM   SMR 1993
## 13450                                           San Marino    SM   SMR 1992
## 13451                                           San Marino    SM   SMR 1991
## 13452                                           San Marino    SM   SMR 1990
## 13453                                           San Marino    SM   SMR 1989
## 13454                                           San Marino    SM   SMR 1988
## 13455                                           San Marino    SM   SMR 1987
## 13456                                           San Marino    SM   SMR 1986
## 13457                                           San Marino    SM   SMR 1985
## 13458                                           San Marino    SM   SMR 1984
## 13459                                           San Marino    SM   SMR 1983
## 13460                                           San Marino    SM   SMR 1982
## 13461                                           San Marino    SM   SMR 1981
## 13462                                           San Marino    SM   SMR 1980
## 13463                                           San Marino    SM   SMR 1979
## 13464                                           San Marino    SM   SMR 1978
## 13465                                           San Marino    SM   SMR 1977
## 13466                                           San Marino    SM   SMR 1976
## 13467                                           San Marino    SM   SMR 1975
## 13468                                           San Marino    SM   SMR 1974
## 13469                                           San Marino    SM   SMR 1973
## 13470                                           San Marino    SM   SMR 1972
## 13471                                           San Marino    SM   SMR 1971
## 13472                                           San Marino    SM   SMR 1970
## 13473                                           San Marino    SM   SMR 1969
## 13474                                           San Marino    SM   SMR 1968
## 13475                                           San Marino    SM   SMR 1967
## 13476                                           San Marino    SM   SMR 1966
## 13477                                           San Marino    SM   SMR 1965
## 13478                                           San Marino    SM   SMR 1964
## 13479                                           San Marino    SM   SMR 1963
## 13480                                           San Marino    SM   SMR 1962
## 13481                                           San Marino    SM   SMR 1961
## 13482                                           San Marino    SM   SMR 1960
## 13483                                Sao Tome and Principe    ST   STP 2022
## 13484                                Sao Tome and Principe    ST   STP 2021
## 13485                                Sao Tome and Principe    ST   STP 2020
## 13486                                Sao Tome and Principe    ST   STP 2019
## 13487                                Sao Tome and Principe    ST   STP 2018
## 13488                                Sao Tome and Principe    ST   STP 2017
## 13489                                Sao Tome and Principe    ST   STP 2016
## 13490                                Sao Tome and Principe    ST   STP 2015
## 13491                                Sao Tome and Principe    ST   STP 2014
## 13492                                Sao Tome and Principe    ST   STP 2013
## 13493                                Sao Tome and Principe    ST   STP 2012
## 13494                                Sao Tome and Principe    ST   STP 2011
## 13495                                Sao Tome and Principe    ST   STP 2010
## 13496                                Sao Tome and Principe    ST   STP 2009
## 13497                                Sao Tome and Principe    ST   STP 2008
## 13498                                Sao Tome and Principe    ST   STP 2007
## 13499                                Sao Tome and Principe    ST   STP 2006
## 13500                                Sao Tome and Principe    ST   STP 2005
## 13501                                Sao Tome and Principe    ST   STP 2004
## 13502                                Sao Tome and Principe    ST   STP 2003
## 13503                                Sao Tome and Principe    ST   STP 2002
## 13504                                Sao Tome and Principe    ST   STP 2001
## 13505                                Sao Tome and Principe    ST   STP 2000
## 13506                                Sao Tome and Principe    ST   STP 1999
## 13507                                Sao Tome and Principe    ST   STP 1998
## 13508                                Sao Tome and Principe    ST   STP 1997
## 13509                                Sao Tome and Principe    ST   STP 1996
## 13510                                Sao Tome and Principe    ST   STP 1995
## 13511                                Sao Tome and Principe    ST   STP 1994
## 13512                                Sao Tome and Principe    ST   STP 1993
## 13513                                Sao Tome and Principe    ST   STP 1992
## 13514                                Sao Tome and Principe    ST   STP 1991
## 13515                                Sao Tome and Principe    ST   STP 1990
## 13516                                Sao Tome and Principe    ST   STP 1989
## 13517                                Sao Tome and Principe    ST   STP 1988
## 13518                                Sao Tome and Principe    ST   STP 1987
## 13519                                Sao Tome and Principe    ST   STP 1986
## 13520                                Sao Tome and Principe    ST   STP 1985
## 13521                                Sao Tome and Principe    ST   STP 1984
## 13522                                Sao Tome and Principe    ST   STP 1983
## 13523                                Sao Tome and Principe    ST   STP 1982
## 13524                                Sao Tome and Principe    ST   STP 1981
## 13525                                Sao Tome and Principe    ST   STP 1980
## 13526                                Sao Tome and Principe    ST   STP 1979
## 13527                                Sao Tome and Principe    ST   STP 1978
## 13528                                Sao Tome and Principe    ST   STP 1977
## 13529                                Sao Tome and Principe    ST   STP 1976
## 13530                                Sao Tome and Principe    ST   STP 1975
## 13531                                Sao Tome and Principe    ST   STP 1974
## 13532                                Sao Tome and Principe    ST   STP 1973
## 13533                                Sao Tome and Principe    ST   STP 1972
## 13534                                Sao Tome and Principe    ST   STP 1971
## 13535                                Sao Tome and Principe    ST   STP 1970
## 13536                                Sao Tome and Principe    ST   STP 1969
## 13537                                Sao Tome and Principe    ST   STP 1968
## 13538                                Sao Tome and Principe    ST   STP 1967
## 13539                                Sao Tome and Principe    ST   STP 1966
## 13540                                Sao Tome and Principe    ST   STP 1965
## 13541                                Sao Tome and Principe    ST   STP 1964
## 13542                                Sao Tome and Principe    ST   STP 1963
## 13543                                Sao Tome and Principe    ST   STP 1962
## 13544                                Sao Tome and Principe    ST   STP 1961
## 13545                                Sao Tome and Principe    ST   STP 1960
## 13546                                         Saudi Arabia    SA   SAU 2022
## 13547                                         Saudi Arabia    SA   SAU 2021
## 13548                                         Saudi Arabia    SA   SAU 2020
## 13549                                         Saudi Arabia    SA   SAU 2019
## 13550                                         Saudi Arabia    SA   SAU 2018
## 13551                                         Saudi Arabia    SA   SAU 2017
## 13552                                         Saudi Arabia    SA   SAU 2016
## 13553                                         Saudi Arabia    SA   SAU 2015
## 13554                                         Saudi Arabia    SA   SAU 2014
## 13555                                         Saudi Arabia    SA   SAU 2013
## 13556                                         Saudi Arabia    SA   SAU 2012
## 13557                                         Saudi Arabia    SA   SAU 2011
## 13558                                         Saudi Arabia    SA   SAU 2010
## 13559                                         Saudi Arabia    SA   SAU 2009
## 13560                                         Saudi Arabia    SA   SAU 2008
## 13561                                         Saudi Arabia    SA   SAU 2007
## 13562                                         Saudi Arabia    SA   SAU 2006
## 13563                                         Saudi Arabia    SA   SAU 2005
## 13564                                         Saudi Arabia    SA   SAU 2004
## 13565                                         Saudi Arabia    SA   SAU 2003
## 13566                                         Saudi Arabia    SA   SAU 2002
## 13567                                         Saudi Arabia    SA   SAU 2001
## 13568                                         Saudi Arabia    SA   SAU 2000
## 13569                                         Saudi Arabia    SA   SAU 1999
## 13570                                         Saudi Arabia    SA   SAU 1998
## 13571                                         Saudi Arabia    SA   SAU 1997
## 13572                                         Saudi Arabia    SA   SAU 1996
## 13573                                         Saudi Arabia    SA   SAU 1995
## 13574                                         Saudi Arabia    SA   SAU 1994
## 13575                                         Saudi Arabia    SA   SAU 1993
## 13576                                         Saudi Arabia    SA   SAU 1992
## 13577                                         Saudi Arabia    SA   SAU 1991
## 13578                                         Saudi Arabia    SA   SAU 1990
## 13579                                         Saudi Arabia    SA   SAU 1989
## 13580                                         Saudi Arabia    SA   SAU 1988
## 13581                                         Saudi Arabia    SA   SAU 1987
## 13582                                         Saudi Arabia    SA   SAU 1986
## 13583                                         Saudi Arabia    SA   SAU 1985
## 13584                                         Saudi Arabia    SA   SAU 1984
## 13585                                         Saudi Arabia    SA   SAU 1983
## 13586                                         Saudi Arabia    SA   SAU 1982
## 13587                                         Saudi Arabia    SA   SAU 1981
## 13588                                         Saudi Arabia    SA   SAU 1980
## 13589                                         Saudi Arabia    SA   SAU 1979
## 13590                                         Saudi Arabia    SA   SAU 1978
## 13591                                         Saudi Arabia    SA   SAU 1977
## 13592                                         Saudi Arabia    SA   SAU 1976
## 13593                                         Saudi Arabia    SA   SAU 1975
## 13594                                         Saudi Arabia    SA   SAU 1974
## 13595                                         Saudi Arabia    SA   SAU 1973
## 13596                                         Saudi Arabia    SA   SAU 1972
## 13597                                         Saudi Arabia    SA   SAU 1971
## 13598                                         Saudi Arabia    SA   SAU 1970
## 13599                                         Saudi Arabia    SA   SAU 1969
## 13600                                         Saudi Arabia    SA   SAU 1968
## 13601                                         Saudi Arabia    SA   SAU 1967
## 13602                                         Saudi Arabia    SA   SAU 1966
## 13603                                         Saudi Arabia    SA   SAU 1965
## 13604                                         Saudi Arabia    SA   SAU 1964
## 13605                                         Saudi Arabia    SA   SAU 1963
## 13606                                         Saudi Arabia    SA   SAU 1962
## 13607                                         Saudi Arabia    SA   SAU 1961
## 13608                                         Saudi Arabia    SA   SAU 1960
## 13609                                              Senegal    SN   SEN 2022
## 13610                                              Senegal    SN   SEN 2021
## 13611                                              Senegal    SN   SEN 2020
## 13612                                              Senegal    SN   SEN 2019
## 13613                                              Senegal    SN   SEN 2018
## 13614                                              Senegal    SN   SEN 2017
## 13615                                              Senegal    SN   SEN 2016
## 13616                                              Senegal    SN   SEN 2015
## 13617                                              Senegal    SN   SEN 2014
## 13618                                              Senegal    SN   SEN 2013
## 13619                                              Senegal    SN   SEN 2012
## 13620                                              Senegal    SN   SEN 2011
## 13621                                              Senegal    SN   SEN 2010
## 13622                                              Senegal    SN   SEN 2009
## 13623                                              Senegal    SN   SEN 2008
## 13624                                              Senegal    SN   SEN 2007
## 13625                                              Senegal    SN   SEN 2006
## 13626                                              Senegal    SN   SEN 2005
## 13627                                              Senegal    SN   SEN 2004
## 13628                                              Senegal    SN   SEN 2003
## 13629                                              Senegal    SN   SEN 2002
## 13630                                              Senegal    SN   SEN 2001
## 13631                                              Senegal    SN   SEN 2000
## 13632                                              Senegal    SN   SEN 1999
## 13633                                              Senegal    SN   SEN 1998
## 13634                                              Senegal    SN   SEN 1997
## 13635                                              Senegal    SN   SEN 1996
## 13636                                              Senegal    SN   SEN 1995
## 13637                                              Senegal    SN   SEN 1994
## 13638                                              Senegal    SN   SEN 1993
## 13639                                              Senegal    SN   SEN 1992
## 13640                                              Senegal    SN   SEN 1991
## 13641                                              Senegal    SN   SEN 1990
## 13642                                              Senegal    SN   SEN 1989
## 13643                                              Senegal    SN   SEN 1988
## 13644                                              Senegal    SN   SEN 1987
## 13645                                              Senegal    SN   SEN 1986
## 13646                                              Senegal    SN   SEN 1985
## 13647                                              Senegal    SN   SEN 1984
## 13648                                              Senegal    SN   SEN 1983
## 13649                                              Senegal    SN   SEN 1982
## 13650                                              Senegal    SN   SEN 1981
## 13651                                              Senegal    SN   SEN 1980
## 13652                                              Senegal    SN   SEN 1979
## 13653                                              Senegal    SN   SEN 1978
## 13654                                              Senegal    SN   SEN 1977
## 13655                                              Senegal    SN   SEN 1976
## 13656                                              Senegal    SN   SEN 1975
## 13657                                              Senegal    SN   SEN 1974
## 13658                                              Senegal    SN   SEN 1973
## 13659                                              Senegal    SN   SEN 1972
## 13660                                              Senegal    SN   SEN 1971
## 13661                                              Senegal    SN   SEN 1970
## 13662                                              Senegal    SN   SEN 1969
## 13663                                              Senegal    SN   SEN 1968
## 13664                                              Senegal    SN   SEN 1967
## 13665                                              Senegal    SN   SEN 1966
## 13666                                              Senegal    SN   SEN 1965
## 13667                                              Senegal    SN   SEN 1964
## 13668                                              Senegal    SN   SEN 1963
## 13669                                              Senegal    SN   SEN 1962
## 13670                                              Senegal    SN   SEN 1961
## 13671                                              Senegal    SN   SEN 1960
## 13672                                               Serbia    RS   SRB 2022
## 13673                                               Serbia    RS   SRB 2021
## 13674                                               Serbia    RS   SRB 2020
## 13675                                               Serbia    RS   SRB 2019
## 13676                                               Serbia    RS   SRB 2018
## 13677                                               Serbia    RS   SRB 2017
## 13678                                               Serbia    RS   SRB 2016
## 13679                                               Serbia    RS   SRB 2015
## 13680                                               Serbia    RS   SRB 2014
## 13681                                               Serbia    RS   SRB 2013
## 13682                                               Serbia    RS   SRB 2012
## 13683                                               Serbia    RS   SRB 2011
## 13684                                               Serbia    RS   SRB 2010
## 13685                                               Serbia    RS   SRB 2009
## 13686                                               Serbia    RS   SRB 2008
## 13687                                               Serbia    RS   SRB 2007
## 13688                                               Serbia    RS   SRB 2006
## 13689                                               Serbia    RS   SRB 2005
## 13690                                               Serbia    RS   SRB 2004
## 13691                                               Serbia    RS   SRB 2003
## 13692                                               Serbia    RS   SRB 2002
## 13693                                               Serbia    RS   SRB 2001
## 13694                                               Serbia    RS   SRB 2000
## 13695                                               Serbia    RS   SRB 1999
## 13696                                               Serbia    RS   SRB 1998
## 13697                                               Serbia    RS   SRB 1997
## 13698                                               Serbia    RS   SRB 1996
## 13699                                               Serbia    RS   SRB 1995
## 13700                                               Serbia    RS   SRB 1994
## 13701                                               Serbia    RS   SRB 1993
## 13702                                               Serbia    RS   SRB 1992
## 13703                                               Serbia    RS   SRB 1991
## 13704                                               Serbia    RS   SRB 1990
## 13705                                               Serbia    RS   SRB 1989
## 13706                                               Serbia    RS   SRB 1988
## 13707                                               Serbia    RS   SRB 1987
## 13708                                               Serbia    RS   SRB 1986
## 13709                                               Serbia    RS   SRB 1985
## 13710                                               Serbia    RS   SRB 1984
## 13711                                               Serbia    RS   SRB 1983
## 13712                                               Serbia    RS   SRB 1982
## 13713                                               Serbia    RS   SRB 1981
## 13714                                               Serbia    RS   SRB 1980
## 13715                                               Serbia    RS   SRB 1979
## 13716                                               Serbia    RS   SRB 1978
## 13717                                               Serbia    RS   SRB 1977
## 13718                                               Serbia    RS   SRB 1976
## 13719                                               Serbia    RS   SRB 1975
## 13720                                               Serbia    RS   SRB 1974
## 13721                                               Serbia    RS   SRB 1973
## 13722                                               Serbia    RS   SRB 1972
## 13723                                               Serbia    RS   SRB 1971
## 13724                                               Serbia    RS   SRB 1970
## 13725                                               Serbia    RS   SRB 1969
## 13726                                               Serbia    RS   SRB 1968
## 13727                                               Serbia    RS   SRB 1967
## 13728                                               Serbia    RS   SRB 1966
## 13729                                               Serbia    RS   SRB 1965
## 13730                                               Serbia    RS   SRB 1964
## 13731                                               Serbia    RS   SRB 1963
## 13732                                               Serbia    RS   SRB 1962
## 13733                                               Serbia    RS   SRB 1961
## 13734                                               Serbia    RS   SRB 1960
## 13735                                           Seychelles    SC   SYC 2022
## 13736                                           Seychelles    SC   SYC 2021
## 13737                                           Seychelles    SC   SYC 2020
## 13738                                           Seychelles    SC   SYC 2019
## 13739                                           Seychelles    SC   SYC 2018
## 13740                                           Seychelles    SC   SYC 2017
## 13741                                           Seychelles    SC   SYC 2016
## 13742                                           Seychelles    SC   SYC 2015
## 13743                                           Seychelles    SC   SYC 2014
## 13744                                           Seychelles    SC   SYC 2013
## 13745                                           Seychelles    SC   SYC 2012
## 13746                                           Seychelles    SC   SYC 2011
## 13747                                           Seychelles    SC   SYC 2010
## 13748                                           Seychelles    SC   SYC 2009
## 13749                                           Seychelles    SC   SYC 2008
## 13750                                           Seychelles    SC   SYC 2007
## 13751                                           Seychelles    SC   SYC 2006
## 13752                                           Seychelles    SC   SYC 2005
## 13753                                           Seychelles    SC   SYC 2004
## 13754                                           Seychelles    SC   SYC 2003
## 13755                                           Seychelles    SC   SYC 2002
## 13756                                           Seychelles    SC   SYC 2001
## 13757                                           Seychelles    SC   SYC 2000
## 13758                                           Seychelles    SC   SYC 1999
## 13759                                           Seychelles    SC   SYC 1998
## 13760                                           Seychelles    SC   SYC 1997
## 13761                                           Seychelles    SC   SYC 1996
## 13762                                           Seychelles    SC   SYC 1995
## 13763                                           Seychelles    SC   SYC 1994
## 13764                                           Seychelles    SC   SYC 1993
## 13765                                           Seychelles    SC   SYC 1992
## 13766                                           Seychelles    SC   SYC 1991
## 13767                                           Seychelles    SC   SYC 1990
## 13768                                           Seychelles    SC   SYC 1989
## 13769                                           Seychelles    SC   SYC 1988
## 13770                                           Seychelles    SC   SYC 1987
## 13771                                           Seychelles    SC   SYC 1986
## 13772                                           Seychelles    SC   SYC 1985
## 13773                                           Seychelles    SC   SYC 1984
## 13774                                           Seychelles    SC   SYC 1983
## 13775                                           Seychelles    SC   SYC 1982
## 13776                                           Seychelles    SC   SYC 1981
## 13777                                           Seychelles    SC   SYC 1980
## 13778                                           Seychelles    SC   SYC 1979
## 13779                                           Seychelles    SC   SYC 1978
## 13780                                           Seychelles    SC   SYC 1977
## 13781                                           Seychelles    SC   SYC 1976
## 13782                                           Seychelles    SC   SYC 1975
## 13783                                           Seychelles    SC   SYC 1974
## 13784                                           Seychelles    SC   SYC 1973
## 13785                                           Seychelles    SC   SYC 1972
## 13786                                           Seychelles    SC   SYC 1971
## 13787                                           Seychelles    SC   SYC 1970
## 13788                                           Seychelles    SC   SYC 1969
## 13789                                           Seychelles    SC   SYC 1968
## 13790                                           Seychelles    SC   SYC 1967
## 13791                                           Seychelles    SC   SYC 1966
## 13792                                           Seychelles    SC   SYC 1965
## 13793                                           Seychelles    SC   SYC 1964
## 13794                                           Seychelles    SC   SYC 1963
## 13795                                           Seychelles    SC   SYC 1962
## 13796                                           Seychelles    SC   SYC 1961
## 13797                                           Seychelles    SC   SYC 1960
## 13798                                         Sierra Leone    SL   SLE 2022
## 13799                                         Sierra Leone    SL   SLE 2021
## 13800                                         Sierra Leone    SL   SLE 2020
## 13801                                         Sierra Leone    SL   SLE 2019
## 13802                                         Sierra Leone    SL   SLE 2018
## 13803                                         Sierra Leone    SL   SLE 2017
## 13804                                         Sierra Leone    SL   SLE 2016
## 13805                                         Sierra Leone    SL   SLE 2015
## 13806                                         Sierra Leone    SL   SLE 2014
## 13807                                         Sierra Leone    SL   SLE 2013
## 13808                                         Sierra Leone    SL   SLE 2012
## 13809                                         Sierra Leone    SL   SLE 2011
## 13810                                         Sierra Leone    SL   SLE 2010
## 13811                                         Sierra Leone    SL   SLE 2009
## 13812                                         Sierra Leone    SL   SLE 2008
## 13813                                         Sierra Leone    SL   SLE 2007
## 13814                                         Sierra Leone    SL   SLE 2006
## 13815                                         Sierra Leone    SL   SLE 2005
## 13816                                         Sierra Leone    SL   SLE 2004
## 13817                                         Sierra Leone    SL   SLE 2003
## 13818                                         Sierra Leone    SL   SLE 2002
## 13819                                         Sierra Leone    SL   SLE 2001
## 13820                                         Sierra Leone    SL   SLE 2000
## 13821                                         Sierra Leone    SL   SLE 1999
## 13822                                         Sierra Leone    SL   SLE 1998
## 13823                                         Sierra Leone    SL   SLE 1997
## 13824                                         Sierra Leone    SL   SLE 1996
## 13825                                         Sierra Leone    SL   SLE 1995
## 13826                                         Sierra Leone    SL   SLE 1994
## 13827                                         Sierra Leone    SL   SLE 1993
## 13828                                         Sierra Leone    SL   SLE 1992
## 13829                                         Sierra Leone    SL   SLE 1991
## 13830                                         Sierra Leone    SL   SLE 1990
## 13831                                         Sierra Leone    SL   SLE 1989
## 13832                                         Sierra Leone    SL   SLE 1988
## 13833                                         Sierra Leone    SL   SLE 1987
## 13834                                         Sierra Leone    SL   SLE 1986
## 13835                                         Sierra Leone    SL   SLE 1985
## 13836                                         Sierra Leone    SL   SLE 1984
## 13837                                         Sierra Leone    SL   SLE 1983
## 13838                                         Sierra Leone    SL   SLE 1982
## 13839                                         Sierra Leone    SL   SLE 1981
## 13840                                         Sierra Leone    SL   SLE 1980
## 13841                                         Sierra Leone    SL   SLE 1979
## 13842                                         Sierra Leone    SL   SLE 1978
## 13843                                         Sierra Leone    SL   SLE 1977
## 13844                                         Sierra Leone    SL   SLE 1976
## 13845                                         Sierra Leone    SL   SLE 1975
## 13846                                         Sierra Leone    SL   SLE 1974
## 13847                                         Sierra Leone    SL   SLE 1973
## 13848                                         Sierra Leone    SL   SLE 1972
## 13849                                         Sierra Leone    SL   SLE 1971
## 13850                                         Sierra Leone    SL   SLE 1970
## 13851                                         Sierra Leone    SL   SLE 1969
## 13852                                         Sierra Leone    SL   SLE 1968
## 13853                                         Sierra Leone    SL   SLE 1967
## 13854                                         Sierra Leone    SL   SLE 1966
## 13855                                         Sierra Leone    SL   SLE 1965
## 13856                                         Sierra Leone    SL   SLE 1964
## 13857                                         Sierra Leone    SL   SLE 1963
## 13858                                         Sierra Leone    SL   SLE 1962
## 13859                                         Sierra Leone    SL   SLE 1961
## 13860                                         Sierra Leone    SL   SLE 1960
## 13861                                            Singapore    SG   SGP 2022
## 13862                                            Singapore    SG   SGP 2021
## 13863                                            Singapore    SG   SGP 2020
## 13864                                            Singapore    SG   SGP 2019
## 13865                                            Singapore    SG   SGP 2018
## 13866                                            Singapore    SG   SGP 2017
## 13867                                            Singapore    SG   SGP 2016
## 13868                                            Singapore    SG   SGP 2015
## 13869                                            Singapore    SG   SGP 2014
## 13870                                            Singapore    SG   SGP 2013
## 13871                                            Singapore    SG   SGP 2012
## 13872                                            Singapore    SG   SGP 2011
## 13873                                            Singapore    SG   SGP 2010
## 13874                                            Singapore    SG   SGP 2009
## 13875                                            Singapore    SG   SGP 2008
## 13876                                            Singapore    SG   SGP 2007
## 13877                                            Singapore    SG   SGP 2006
## 13878                                            Singapore    SG   SGP 2005
## 13879                                            Singapore    SG   SGP 2004
## 13880                                            Singapore    SG   SGP 2003
## 13881                                            Singapore    SG   SGP 2002
## 13882                                            Singapore    SG   SGP 2001
## 13883                                            Singapore    SG   SGP 2000
## 13884                                            Singapore    SG   SGP 1999
## 13885                                            Singapore    SG   SGP 1998
## 13886                                            Singapore    SG   SGP 1997
## 13887                                            Singapore    SG   SGP 1996
## 13888                                            Singapore    SG   SGP 1995
## 13889                                            Singapore    SG   SGP 1994
## 13890                                            Singapore    SG   SGP 1993
## 13891                                            Singapore    SG   SGP 1992
## 13892                                            Singapore    SG   SGP 1991
## 13893                                            Singapore    SG   SGP 1990
## 13894                                            Singapore    SG   SGP 1989
## 13895                                            Singapore    SG   SGP 1988
## 13896                                            Singapore    SG   SGP 1987
## 13897                                            Singapore    SG   SGP 1986
## 13898                                            Singapore    SG   SGP 1985
## 13899                                            Singapore    SG   SGP 1984
## 13900                                            Singapore    SG   SGP 1983
## 13901                                            Singapore    SG   SGP 1982
## 13902                                            Singapore    SG   SGP 1981
## 13903                                            Singapore    SG   SGP 1980
## 13904                                            Singapore    SG   SGP 1979
## 13905                                            Singapore    SG   SGP 1978
## 13906                                            Singapore    SG   SGP 1977
## 13907                                            Singapore    SG   SGP 1976
## 13908                                            Singapore    SG   SGP 1975
## 13909                                            Singapore    SG   SGP 1974
## 13910                                            Singapore    SG   SGP 1973
## 13911                                            Singapore    SG   SGP 1972
## 13912                                            Singapore    SG   SGP 1971
## 13913                                            Singapore    SG   SGP 1970
## 13914                                            Singapore    SG   SGP 1969
## 13915                                            Singapore    SG   SGP 1968
## 13916                                            Singapore    SG   SGP 1967
## 13917                                            Singapore    SG   SGP 1966
## 13918                                            Singapore    SG   SGP 1965
## 13919                                            Singapore    SG   SGP 1964
## 13920                                            Singapore    SG   SGP 1963
## 13921                                            Singapore    SG   SGP 1962
## 13922                                            Singapore    SG   SGP 1961
## 13923                                            Singapore    SG   SGP 1960
## 13924                            Sint Maarten (Dutch part)    SX   SXM 2022
## 13925                            Sint Maarten (Dutch part)    SX   SXM 2021
## 13926                            Sint Maarten (Dutch part)    SX   SXM 2020
## 13927                            Sint Maarten (Dutch part)    SX   SXM 2019
## 13928                            Sint Maarten (Dutch part)    SX   SXM 2018
## 13929                            Sint Maarten (Dutch part)    SX   SXM 2017
## 13930                            Sint Maarten (Dutch part)    SX   SXM 2016
## 13931                            Sint Maarten (Dutch part)    SX   SXM 2015
## 13932                            Sint Maarten (Dutch part)    SX   SXM 2014
## 13933                            Sint Maarten (Dutch part)    SX   SXM 2013
## 13934                            Sint Maarten (Dutch part)    SX   SXM 2012
## 13935                            Sint Maarten (Dutch part)    SX   SXM 2011
## 13936                            Sint Maarten (Dutch part)    SX   SXM 2010
## 13937                            Sint Maarten (Dutch part)    SX   SXM 2009
## 13938                            Sint Maarten (Dutch part)    SX   SXM 2008
## 13939                            Sint Maarten (Dutch part)    SX   SXM 2007
## 13940                            Sint Maarten (Dutch part)    SX   SXM 2006
## 13941                            Sint Maarten (Dutch part)    SX   SXM 2005
## 13942                            Sint Maarten (Dutch part)    SX   SXM 2004
## 13943                            Sint Maarten (Dutch part)    SX   SXM 2003
## 13944                            Sint Maarten (Dutch part)    SX   SXM 2002
## 13945                            Sint Maarten (Dutch part)    SX   SXM 2001
## 13946                            Sint Maarten (Dutch part)    SX   SXM 2000
## 13947                            Sint Maarten (Dutch part)    SX   SXM 1999
## 13948                            Sint Maarten (Dutch part)    SX   SXM 1998
## 13949                            Sint Maarten (Dutch part)    SX   SXM 1997
## 13950                            Sint Maarten (Dutch part)    SX   SXM 1996
## 13951                            Sint Maarten (Dutch part)    SX   SXM 1995
## 13952                            Sint Maarten (Dutch part)    SX   SXM 1994
## 13953                            Sint Maarten (Dutch part)    SX   SXM 1993
## 13954                            Sint Maarten (Dutch part)    SX   SXM 1992
## 13955                            Sint Maarten (Dutch part)    SX   SXM 1991
## 13956                            Sint Maarten (Dutch part)    SX   SXM 1990
## 13957                            Sint Maarten (Dutch part)    SX   SXM 1989
## 13958                            Sint Maarten (Dutch part)    SX   SXM 1988
## 13959                            Sint Maarten (Dutch part)    SX   SXM 1987
## 13960                            Sint Maarten (Dutch part)    SX   SXM 1986
## 13961                            Sint Maarten (Dutch part)    SX   SXM 1985
## 13962                            Sint Maarten (Dutch part)    SX   SXM 1984
## 13963                            Sint Maarten (Dutch part)    SX   SXM 1983
## 13964                            Sint Maarten (Dutch part)    SX   SXM 1982
## 13965                            Sint Maarten (Dutch part)    SX   SXM 1981
## 13966                            Sint Maarten (Dutch part)    SX   SXM 1980
## 13967                            Sint Maarten (Dutch part)    SX   SXM 1979
## 13968                            Sint Maarten (Dutch part)    SX   SXM 1978
## 13969                            Sint Maarten (Dutch part)    SX   SXM 1977
## 13970                            Sint Maarten (Dutch part)    SX   SXM 1976
## 13971                            Sint Maarten (Dutch part)    SX   SXM 1975
## 13972                            Sint Maarten (Dutch part)    SX   SXM 1974
## 13973                            Sint Maarten (Dutch part)    SX   SXM 1973
## 13974                            Sint Maarten (Dutch part)    SX   SXM 1972
## 13975                            Sint Maarten (Dutch part)    SX   SXM 1971
## 13976                            Sint Maarten (Dutch part)    SX   SXM 1970
## 13977                            Sint Maarten (Dutch part)    SX   SXM 1969
## 13978                            Sint Maarten (Dutch part)    SX   SXM 1968
## 13979                            Sint Maarten (Dutch part)    SX   SXM 1967
## 13980                            Sint Maarten (Dutch part)    SX   SXM 1966
## 13981                            Sint Maarten (Dutch part)    SX   SXM 1965
## 13982                            Sint Maarten (Dutch part)    SX   SXM 1964
## 13983                            Sint Maarten (Dutch part)    SX   SXM 1963
## 13984                            Sint Maarten (Dutch part)    SX   SXM 1962
## 13985                            Sint Maarten (Dutch part)    SX   SXM 1961
## 13986                            Sint Maarten (Dutch part)    SX   SXM 1960
## 13987                                      Slovak Republic    SK   SVK 2022
## 13988                                      Slovak Republic    SK   SVK 2021
## 13989                                      Slovak Republic    SK   SVK 2020
## 13990                                      Slovak Republic    SK   SVK 2019
## 13991                                      Slovak Republic    SK   SVK 2018
## 13992                                      Slovak Republic    SK   SVK 2017
## 13993                                      Slovak Republic    SK   SVK 2016
## 13994                                      Slovak Republic    SK   SVK 2015
## 13995                                      Slovak Republic    SK   SVK 2014
## 13996                                      Slovak Republic    SK   SVK 2013
## 13997                                      Slovak Republic    SK   SVK 2012
## 13998                                      Slovak Republic    SK   SVK 2011
## 13999                                      Slovak Republic    SK   SVK 2010
## 14000                                      Slovak Republic    SK   SVK 2009
## 14001                                      Slovak Republic    SK   SVK 2008
## 14002                                      Slovak Republic    SK   SVK 2007
## 14003                                      Slovak Republic    SK   SVK 2006
## 14004                                      Slovak Republic    SK   SVK 2005
## 14005                                      Slovak Republic    SK   SVK 2004
## 14006                                      Slovak Republic    SK   SVK 2003
## 14007                                      Slovak Republic    SK   SVK 2002
## 14008                                      Slovak Republic    SK   SVK 2001
## 14009                                      Slovak Republic    SK   SVK 2000
## 14010                                      Slovak Republic    SK   SVK 1999
## 14011                                      Slovak Republic    SK   SVK 1998
## 14012                                      Slovak Republic    SK   SVK 1997
## 14013                                      Slovak Republic    SK   SVK 1996
## 14014                                      Slovak Republic    SK   SVK 1995
## 14015                                      Slovak Republic    SK   SVK 1994
## 14016                                      Slovak Republic    SK   SVK 1993
## 14017                                      Slovak Republic    SK   SVK 1992
## 14018                                      Slovak Republic    SK   SVK 1991
## 14019                                      Slovak Republic    SK   SVK 1990
## 14020                                      Slovak Republic    SK   SVK 1989
## 14021                                      Slovak Republic    SK   SVK 1988
## 14022                                      Slovak Republic    SK   SVK 1987
## 14023                                      Slovak Republic    SK   SVK 1986
## 14024                                      Slovak Republic    SK   SVK 1985
## 14025                                      Slovak Republic    SK   SVK 1984
## 14026                                      Slovak Republic    SK   SVK 1983
## 14027                                      Slovak Republic    SK   SVK 1982
## 14028                                      Slovak Republic    SK   SVK 1981
## 14029                                      Slovak Republic    SK   SVK 1980
## 14030                                      Slovak Republic    SK   SVK 1979
## 14031                                      Slovak Republic    SK   SVK 1978
## 14032                                      Slovak Republic    SK   SVK 1977
## 14033                                      Slovak Republic    SK   SVK 1976
## 14034                                      Slovak Republic    SK   SVK 1975
## 14035                                      Slovak Republic    SK   SVK 1974
## 14036                                      Slovak Republic    SK   SVK 1973
## 14037                                      Slovak Republic    SK   SVK 1972
## 14038                                      Slovak Republic    SK   SVK 1971
## 14039                                      Slovak Republic    SK   SVK 1970
## 14040                                      Slovak Republic    SK   SVK 1969
## 14041                                      Slovak Republic    SK   SVK 1968
## 14042                                      Slovak Republic    SK   SVK 1967
## 14043                                      Slovak Republic    SK   SVK 1966
## 14044                                      Slovak Republic    SK   SVK 1965
## 14045                                      Slovak Republic    SK   SVK 1964
## 14046                                      Slovak Republic    SK   SVK 1963
## 14047                                      Slovak Republic    SK   SVK 1962
## 14048                                      Slovak Republic    SK   SVK 1961
## 14049                                      Slovak Republic    SK   SVK 1960
## 14050                                             Slovenia    SI   SVN 2022
## 14051                                             Slovenia    SI   SVN 2021
## 14052                                             Slovenia    SI   SVN 2020
## 14053                                             Slovenia    SI   SVN 2019
## 14054                                             Slovenia    SI   SVN 2018
## 14055                                             Slovenia    SI   SVN 2017
## 14056                                             Slovenia    SI   SVN 2016
## 14057                                             Slovenia    SI   SVN 2015
## 14058                                             Slovenia    SI   SVN 2014
## 14059                                             Slovenia    SI   SVN 2013
## 14060                                             Slovenia    SI   SVN 2012
## 14061                                             Slovenia    SI   SVN 2011
## 14062                                             Slovenia    SI   SVN 2010
## 14063                                             Slovenia    SI   SVN 2009
## 14064                                             Slovenia    SI   SVN 2008
## 14065                                             Slovenia    SI   SVN 2007
## 14066                                             Slovenia    SI   SVN 2006
## 14067                                             Slovenia    SI   SVN 2005
## 14068                                             Slovenia    SI   SVN 2004
## 14069                                             Slovenia    SI   SVN 2003
## 14070                                             Slovenia    SI   SVN 2002
## 14071                                             Slovenia    SI   SVN 2001
## 14072                                             Slovenia    SI   SVN 2000
## 14073                                             Slovenia    SI   SVN 1999
## 14074                                             Slovenia    SI   SVN 1998
## 14075                                             Slovenia    SI   SVN 1997
## 14076                                             Slovenia    SI   SVN 1996
## 14077                                             Slovenia    SI   SVN 1995
## 14078                                             Slovenia    SI   SVN 1994
## 14079                                             Slovenia    SI   SVN 1993
## 14080                                             Slovenia    SI   SVN 1992
## 14081                                             Slovenia    SI   SVN 1991
## 14082                                             Slovenia    SI   SVN 1990
## 14083                                             Slovenia    SI   SVN 1989
## 14084                                             Slovenia    SI   SVN 1988
## 14085                                             Slovenia    SI   SVN 1987
## 14086                                             Slovenia    SI   SVN 1986
## 14087                                             Slovenia    SI   SVN 1985
## 14088                                             Slovenia    SI   SVN 1984
## 14089                                             Slovenia    SI   SVN 1983
## 14090                                             Slovenia    SI   SVN 1982
## 14091                                             Slovenia    SI   SVN 1981
## 14092                                             Slovenia    SI   SVN 1980
## 14093                                             Slovenia    SI   SVN 1979
## 14094                                             Slovenia    SI   SVN 1978
## 14095                                             Slovenia    SI   SVN 1977
## 14096                                             Slovenia    SI   SVN 1976
## 14097                                             Slovenia    SI   SVN 1975
## 14098                                             Slovenia    SI   SVN 1974
## 14099                                             Slovenia    SI   SVN 1973
## 14100                                             Slovenia    SI   SVN 1972
## 14101                                             Slovenia    SI   SVN 1971
## 14102                                             Slovenia    SI   SVN 1970
## 14103                                             Slovenia    SI   SVN 1969
## 14104                                             Slovenia    SI   SVN 1968
## 14105                                             Slovenia    SI   SVN 1967
## 14106                                             Slovenia    SI   SVN 1966
## 14107                                             Slovenia    SI   SVN 1965
## 14108                                             Slovenia    SI   SVN 1964
## 14109                                             Slovenia    SI   SVN 1963
## 14110                                             Slovenia    SI   SVN 1962
## 14111                                             Slovenia    SI   SVN 1961
## 14112                                             Slovenia    SI   SVN 1960
## 14113                                      Solomon Islands    SB   SLB 2022
## 14114                                      Solomon Islands    SB   SLB 2021
## 14115                                      Solomon Islands    SB   SLB 2020
## 14116                                      Solomon Islands    SB   SLB 2019
## 14117                                      Solomon Islands    SB   SLB 2018
## 14118                                      Solomon Islands    SB   SLB 2017
## 14119                                      Solomon Islands    SB   SLB 2016
## 14120                                      Solomon Islands    SB   SLB 2015
## 14121                                      Solomon Islands    SB   SLB 2014
## 14122                                      Solomon Islands    SB   SLB 2013
## 14123                                      Solomon Islands    SB   SLB 2012
## 14124                                      Solomon Islands    SB   SLB 2011
## 14125                                      Solomon Islands    SB   SLB 2010
## 14126                                      Solomon Islands    SB   SLB 2009
## 14127                                      Solomon Islands    SB   SLB 2008
## 14128                                      Solomon Islands    SB   SLB 2007
## 14129                                      Solomon Islands    SB   SLB 2006
## 14130                                      Solomon Islands    SB   SLB 2005
## 14131                                      Solomon Islands    SB   SLB 2004
## 14132                                      Solomon Islands    SB   SLB 2003
## 14133                                      Solomon Islands    SB   SLB 2002
## 14134                                      Solomon Islands    SB   SLB 2001
## 14135                                      Solomon Islands    SB   SLB 2000
## 14136                                      Solomon Islands    SB   SLB 1999
## 14137                                      Solomon Islands    SB   SLB 1998
## 14138                                      Solomon Islands    SB   SLB 1997
## 14139                                      Solomon Islands    SB   SLB 1996
## 14140                                      Solomon Islands    SB   SLB 1995
## 14141                                      Solomon Islands    SB   SLB 1994
## 14142                                      Solomon Islands    SB   SLB 1993
## 14143                                      Solomon Islands    SB   SLB 1992
## 14144                                      Solomon Islands    SB   SLB 1991
## 14145                                      Solomon Islands    SB   SLB 1990
## 14146                                      Solomon Islands    SB   SLB 1989
## 14147                                      Solomon Islands    SB   SLB 1988
## 14148                                      Solomon Islands    SB   SLB 1987
## 14149                                      Solomon Islands    SB   SLB 1986
## 14150                                      Solomon Islands    SB   SLB 1985
## 14151                                      Solomon Islands    SB   SLB 1984
## 14152                                      Solomon Islands    SB   SLB 1983
## 14153                                      Solomon Islands    SB   SLB 1982
## 14154                                      Solomon Islands    SB   SLB 1981
## 14155                                      Solomon Islands    SB   SLB 1980
## 14156                                      Solomon Islands    SB   SLB 1979
## 14157                                      Solomon Islands    SB   SLB 1978
## 14158                                      Solomon Islands    SB   SLB 1977
## 14159                                      Solomon Islands    SB   SLB 1976
## 14160                                      Solomon Islands    SB   SLB 1975
## 14161                                      Solomon Islands    SB   SLB 1974
## 14162                                      Solomon Islands    SB   SLB 1973
## 14163                                      Solomon Islands    SB   SLB 1972
## 14164                                      Solomon Islands    SB   SLB 1971
## 14165                                      Solomon Islands    SB   SLB 1970
## 14166                                      Solomon Islands    SB   SLB 1969
## 14167                                      Solomon Islands    SB   SLB 1968
## 14168                                      Solomon Islands    SB   SLB 1967
## 14169                                      Solomon Islands    SB   SLB 1966
## 14170                                      Solomon Islands    SB   SLB 1965
## 14171                                      Solomon Islands    SB   SLB 1964
## 14172                                      Solomon Islands    SB   SLB 1963
## 14173                                      Solomon Islands    SB   SLB 1962
## 14174                                      Solomon Islands    SB   SLB 1961
## 14175                                      Solomon Islands    SB   SLB 1960
## 14176                                              Somalia    SO   SOM 2022
## 14177                                              Somalia    SO   SOM 2021
## 14178                                              Somalia    SO   SOM 2020
## 14179                                              Somalia    SO   SOM 2019
## 14180                                              Somalia    SO   SOM 2018
## 14181                                              Somalia    SO   SOM 2017
## 14182                                              Somalia    SO   SOM 2016
## 14183                                              Somalia    SO   SOM 2015
## 14184                                              Somalia    SO   SOM 2014
## 14185                                              Somalia    SO   SOM 2013
## 14186                                              Somalia    SO   SOM 2012
## 14187                                              Somalia    SO   SOM 2011
## 14188                                              Somalia    SO   SOM 2010
## 14189                                              Somalia    SO   SOM 2009
## 14190                                              Somalia    SO   SOM 2008
## 14191                                              Somalia    SO   SOM 2007
## 14192                                              Somalia    SO   SOM 2006
## 14193                                              Somalia    SO   SOM 2005
## 14194                                              Somalia    SO   SOM 2004
## 14195                                              Somalia    SO   SOM 2003
## 14196                                              Somalia    SO   SOM 2002
## 14197                                              Somalia    SO   SOM 2001
## 14198                                              Somalia    SO   SOM 2000
## 14199                                              Somalia    SO   SOM 1999
## 14200                                              Somalia    SO   SOM 1998
## 14201                                              Somalia    SO   SOM 1997
## 14202                                              Somalia    SO   SOM 1996
## 14203                                              Somalia    SO   SOM 1995
## 14204                                              Somalia    SO   SOM 1994
## 14205                                              Somalia    SO   SOM 1993
## 14206                                              Somalia    SO   SOM 1992
## 14207                                              Somalia    SO   SOM 1991
## 14208                                              Somalia    SO   SOM 1990
## 14209                                              Somalia    SO   SOM 1989
## 14210                                              Somalia    SO   SOM 1988
## 14211                                              Somalia    SO   SOM 1987
## 14212                                              Somalia    SO   SOM 1986
## 14213                                              Somalia    SO   SOM 1985
## 14214                                              Somalia    SO   SOM 1984
## 14215                                              Somalia    SO   SOM 1983
## 14216                                              Somalia    SO   SOM 1982
## 14217                                              Somalia    SO   SOM 1981
## 14218                                              Somalia    SO   SOM 1980
## 14219                                              Somalia    SO   SOM 1979
## 14220                                              Somalia    SO   SOM 1978
## 14221                                              Somalia    SO   SOM 1977
## 14222                                              Somalia    SO   SOM 1976
## 14223                                              Somalia    SO   SOM 1975
## 14224                                              Somalia    SO   SOM 1974
## 14225                                              Somalia    SO   SOM 1973
## 14226                                              Somalia    SO   SOM 1972
## 14227                                              Somalia    SO   SOM 1971
## 14228                                              Somalia    SO   SOM 1970
## 14229                                              Somalia    SO   SOM 1969
## 14230                                              Somalia    SO   SOM 1968
## 14231                                              Somalia    SO   SOM 1967
## 14232                                              Somalia    SO   SOM 1966
## 14233                                              Somalia    SO   SOM 1965
## 14234                                              Somalia    SO   SOM 1964
## 14235                                              Somalia    SO   SOM 1963
## 14236                                              Somalia    SO   SOM 1962
## 14237                                              Somalia    SO   SOM 1961
## 14238                                              Somalia    SO   SOM 1960
## 14239                                         South Africa    ZA   ZAF 2022
## 14240                                         South Africa    ZA   ZAF 2021
## 14241                                         South Africa    ZA   ZAF 2020
## 14242                                         South Africa    ZA   ZAF 2019
## 14243                                         South Africa    ZA   ZAF 2018
## 14244                                         South Africa    ZA   ZAF 2017
## 14245                                         South Africa    ZA   ZAF 2016
## 14246                                         South Africa    ZA   ZAF 2015
## 14247                                         South Africa    ZA   ZAF 2014
## 14248                                         South Africa    ZA   ZAF 2013
## 14249                                         South Africa    ZA   ZAF 2012
## 14250                                         South Africa    ZA   ZAF 2011
## 14251                                         South Africa    ZA   ZAF 2010
## 14252                                         South Africa    ZA   ZAF 2009
## 14253                                         South Africa    ZA   ZAF 2008
## 14254                                         South Africa    ZA   ZAF 2007
## 14255                                         South Africa    ZA   ZAF 2006
## 14256                                         South Africa    ZA   ZAF 2005
## 14257                                         South Africa    ZA   ZAF 2004
## 14258                                         South Africa    ZA   ZAF 2003
## 14259                                         South Africa    ZA   ZAF 2002
## 14260                                         South Africa    ZA   ZAF 2001
## 14261                                         South Africa    ZA   ZAF 2000
## 14262                                         South Africa    ZA   ZAF 1999
## 14263                                         South Africa    ZA   ZAF 1998
## 14264                                         South Africa    ZA   ZAF 1997
## 14265                                         South Africa    ZA   ZAF 1996
## 14266                                         South Africa    ZA   ZAF 1995
## 14267                                         South Africa    ZA   ZAF 1994
## 14268                                         South Africa    ZA   ZAF 1993
## 14269                                         South Africa    ZA   ZAF 1992
## 14270                                         South Africa    ZA   ZAF 1991
## 14271                                         South Africa    ZA   ZAF 1990
## 14272                                         South Africa    ZA   ZAF 1989
## 14273                                         South Africa    ZA   ZAF 1988
## 14274                                         South Africa    ZA   ZAF 1987
## 14275                                         South Africa    ZA   ZAF 1986
## 14276                                         South Africa    ZA   ZAF 1985
## 14277                                         South Africa    ZA   ZAF 1984
## 14278                                         South Africa    ZA   ZAF 1983
## 14279                                         South Africa    ZA   ZAF 1982
## 14280                                         South Africa    ZA   ZAF 1981
## 14281                                         South Africa    ZA   ZAF 1980
## 14282                                         South Africa    ZA   ZAF 1979
## 14283                                         South Africa    ZA   ZAF 1978
## 14284                                         South Africa    ZA   ZAF 1977
## 14285                                         South Africa    ZA   ZAF 1976
## 14286                                         South Africa    ZA   ZAF 1975
## 14287                                         South Africa    ZA   ZAF 1974
## 14288                                         South Africa    ZA   ZAF 1973
## 14289                                         South Africa    ZA   ZAF 1972
## 14290                                         South Africa    ZA   ZAF 1971
## 14291                                         South Africa    ZA   ZAF 1970
## 14292                                         South Africa    ZA   ZAF 1969
## 14293                                         South Africa    ZA   ZAF 1968
## 14294                                         South Africa    ZA   ZAF 1967
## 14295                                         South Africa    ZA   ZAF 1966
## 14296                                         South Africa    ZA   ZAF 1965
## 14297                                         South Africa    ZA   ZAF 1964
## 14298                                         South Africa    ZA   ZAF 1963
## 14299                                         South Africa    ZA   ZAF 1962
## 14300                                         South Africa    ZA   ZAF 1961
## 14301                                         South Africa    ZA   ZAF 1960
## 14302                                          South Sudan    SS   SSD 2022
## 14303                                          South Sudan    SS   SSD 2021
## 14304                                          South Sudan    SS   SSD 2020
## 14305                                          South Sudan    SS   SSD 2019
## 14306                                          South Sudan    SS   SSD 2018
## 14307                                          South Sudan    SS   SSD 2017
## 14308                                          South Sudan    SS   SSD 2016
## 14309                                          South Sudan    SS   SSD 2015
## 14310                                          South Sudan    SS   SSD 2014
## 14311                                          South Sudan    SS   SSD 2013
## 14312                                          South Sudan    SS   SSD 2012
## 14313                                          South Sudan    SS   SSD 2011
## 14314                                          South Sudan    SS   SSD 2010
## 14315                                          South Sudan    SS   SSD 2009
## 14316                                          South Sudan    SS   SSD 2008
## 14317                                          South Sudan    SS   SSD 2007
## 14318                                          South Sudan    SS   SSD 2006
## 14319                                          South Sudan    SS   SSD 2005
## 14320                                          South Sudan    SS   SSD 2004
## 14321                                          South Sudan    SS   SSD 2003
## 14322                                          South Sudan    SS   SSD 2002
## 14323                                          South Sudan    SS   SSD 2001
## 14324                                          South Sudan    SS   SSD 2000
## 14325                                          South Sudan    SS   SSD 1999
## 14326                                          South Sudan    SS   SSD 1998
## 14327                                          South Sudan    SS   SSD 1997
## 14328                                          South Sudan    SS   SSD 1996
## 14329                                          South Sudan    SS   SSD 1995
## 14330                                          South Sudan    SS   SSD 1994
## 14331                                          South Sudan    SS   SSD 1993
## 14332                                          South Sudan    SS   SSD 1992
## 14333                                          South Sudan    SS   SSD 1991
## 14334                                          South Sudan    SS   SSD 1990
## 14335                                          South Sudan    SS   SSD 1989
## 14336                                          South Sudan    SS   SSD 1988
## 14337                                          South Sudan    SS   SSD 1987
## 14338                                          South Sudan    SS   SSD 1986
## 14339                                          South Sudan    SS   SSD 1985
## 14340                                          South Sudan    SS   SSD 1984
## 14341                                          South Sudan    SS   SSD 1983
## 14342                                          South Sudan    SS   SSD 1982
## 14343                                          South Sudan    SS   SSD 1981
## 14344                                          South Sudan    SS   SSD 1980
## 14345                                          South Sudan    SS   SSD 1979
## 14346                                          South Sudan    SS   SSD 1978
## 14347                                          South Sudan    SS   SSD 1977
## 14348                                          South Sudan    SS   SSD 1976
## 14349                                          South Sudan    SS   SSD 1975
## 14350                                          South Sudan    SS   SSD 1974
## 14351                                          South Sudan    SS   SSD 1973
## 14352                                          South Sudan    SS   SSD 1972
## 14353                                          South Sudan    SS   SSD 1971
## 14354                                          South Sudan    SS   SSD 1970
## 14355                                          South Sudan    SS   SSD 1969
## 14356                                          South Sudan    SS   SSD 1968
## 14357                                          South Sudan    SS   SSD 1967
## 14358                                          South Sudan    SS   SSD 1966
## 14359                                          South Sudan    SS   SSD 1965
## 14360                                          South Sudan    SS   SSD 1964
## 14361                                          South Sudan    SS   SSD 1963
## 14362                                          South Sudan    SS   SSD 1962
## 14363                                          South Sudan    SS   SSD 1961
## 14364                                          South Sudan    SS   SSD 1960
## 14365                                                Spain    ES   ESP 2022
## 14366                                                Spain    ES   ESP 2021
## 14367                                                Spain    ES   ESP 2020
## 14368                                                Spain    ES   ESP 2019
## 14369                                                Spain    ES   ESP 2018
## 14370                                                Spain    ES   ESP 2017
## 14371                                                Spain    ES   ESP 2016
## 14372                                                Spain    ES   ESP 2015
## 14373                                                Spain    ES   ESP 2014
## 14374                                                Spain    ES   ESP 2013
## 14375                                                Spain    ES   ESP 2012
## 14376                                                Spain    ES   ESP 2011
## 14377                                                Spain    ES   ESP 2010
## 14378                                                Spain    ES   ESP 2009
## 14379                                                Spain    ES   ESP 2008
## 14380                                                Spain    ES   ESP 2007
## 14381                                                Spain    ES   ESP 2006
## 14382                                                Spain    ES   ESP 2005
## 14383                                                Spain    ES   ESP 2004
## 14384                                                Spain    ES   ESP 2003
## 14385                                                Spain    ES   ESP 2002
## 14386                                                Spain    ES   ESP 2001
## 14387                                                Spain    ES   ESP 2000
## 14388                                                Spain    ES   ESP 1999
## 14389                                                Spain    ES   ESP 1998
## 14390                                                Spain    ES   ESP 1997
## 14391                                                Spain    ES   ESP 1996
## 14392                                                Spain    ES   ESP 1995
## 14393                                                Spain    ES   ESP 1994
## 14394                                                Spain    ES   ESP 1993
## 14395                                                Spain    ES   ESP 1992
## 14396                                                Spain    ES   ESP 1991
## 14397                                                Spain    ES   ESP 1990
## 14398                                                Spain    ES   ESP 1989
## 14399                                                Spain    ES   ESP 1988
## 14400                                                Spain    ES   ESP 1987
## 14401                                                Spain    ES   ESP 1986
## 14402                                                Spain    ES   ESP 1985
## 14403                                                Spain    ES   ESP 1984
## 14404                                                Spain    ES   ESP 1983
## 14405                                                Spain    ES   ESP 1982
## 14406                                                Spain    ES   ESP 1981
## 14407                                                Spain    ES   ESP 1980
## 14408                                                Spain    ES   ESP 1979
## 14409                                                Spain    ES   ESP 1978
## 14410                                                Spain    ES   ESP 1977
## 14411                                                Spain    ES   ESP 1976
## 14412                                                Spain    ES   ESP 1975
## 14413                                                Spain    ES   ESP 1974
## 14414                                                Spain    ES   ESP 1973
## 14415                                                Spain    ES   ESP 1972
## 14416                                                Spain    ES   ESP 1971
## 14417                                                Spain    ES   ESP 1970
## 14418                                                Spain    ES   ESP 1969
## 14419                                                Spain    ES   ESP 1968
## 14420                                                Spain    ES   ESP 1967
## 14421                                                Spain    ES   ESP 1966
## 14422                                                Spain    ES   ESP 1965
## 14423                                                Spain    ES   ESP 1964
## 14424                                                Spain    ES   ESP 1963
## 14425                                                Spain    ES   ESP 1962
## 14426                                                Spain    ES   ESP 1961
## 14427                                                Spain    ES   ESP 1960
## 14428                                            Sri Lanka    LK   LKA 2022
## 14429                                            Sri Lanka    LK   LKA 2021
## 14430                                            Sri Lanka    LK   LKA 2020
## 14431                                            Sri Lanka    LK   LKA 2019
## 14432                                            Sri Lanka    LK   LKA 2018
## 14433                                            Sri Lanka    LK   LKA 2017
## 14434                                            Sri Lanka    LK   LKA 2016
## 14435                                            Sri Lanka    LK   LKA 2015
## 14436                                            Sri Lanka    LK   LKA 2014
## 14437                                            Sri Lanka    LK   LKA 2013
## 14438                                            Sri Lanka    LK   LKA 2012
## 14439                                            Sri Lanka    LK   LKA 2011
## 14440                                            Sri Lanka    LK   LKA 2010
## 14441                                            Sri Lanka    LK   LKA 2009
## 14442                                            Sri Lanka    LK   LKA 2008
## 14443                                            Sri Lanka    LK   LKA 2007
## 14444                                            Sri Lanka    LK   LKA 2006
## 14445                                            Sri Lanka    LK   LKA 2005
## 14446                                            Sri Lanka    LK   LKA 2004
## 14447                                            Sri Lanka    LK   LKA 2003
## 14448                                            Sri Lanka    LK   LKA 2002
## 14449                                            Sri Lanka    LK   LKA 2001
## 14450                                            Sri Lanka    LK   LKA 2000
## 14451                                            Sri Lanka    LK   LKA 1999
## 14452                                            Sri Lanka    LK   LKA 1998
## 14453                                            Sri Lanka    LK   LKA 1997
## 14454                                            Sri Lanka    LK   LKA 1996
## 14455                                            Sri Lanka    LK   LKA 1995
## 14456                                            Sri Lanka    LK   LKA 1994
## 14457                                            Sri Lanka    LK   LKA 1993
## 14458                                            Sri Lanka    LK   LKA 1992
## 14459                                            Sri Lanka    LK   LKA 1991
## 14460                                            Sri Lanka    LK   LKA 1990
## 14461                                            Sri Lanka    LK   LKA 1989
## 14462                                            Sri Lanka    LK   LKA 1988
## 14463                                            Sri Lanka    LK   LKA 1987
## 14464                                            Sri Lanka    LK   LKA 1986
## 14465                                            Sri Lanka    LK   LKA 1985
## 14466                                            Sri Lanka    LK   LKA 1984
## 14467                                            Sri Lanka    LK   LKA 1983
## 14468                                            Sri Lanka    LK   LKA 1982
## 14469                                            Sri Lanka    LK   LKA 1981
## 14470                                            Sri Lanka    LK   LKA 1980
## 14471                                            Sri Lanka    LK   LKA 1979
## 14472                                            Sri Lanka    LK   LKA 1978
## 14473                                            Sri Lanka    LK   LKA 1977
## 14474                                            Sri Lanka    LK   LKA 1976
## 14475                                            Sri Lanka    LK   LKA 1975
## 14476                                            Sri Lanka    LK   LKA 1974
## 14477                                            Sri Lanka    LK   LKA 1973
## 14478                                            Sri Lanka    LK   LKA 1972
## 14479                                            Sri Lanka    LK   LKA 1971
## 14480                                            Sri Lanka    LK   LKA 1970
## 14481                                            Sri Lanka    LK   LKA 1969
## 14482                                            Sri Lanka    LK   LKA 1968
## 14483                                            Sri Lanka    LK   LKA 1967
## 14484                                            Sri Lanka    LK   LKA 1966
## 14485                                            Sri Lanka    LK   LKA 1965
## 14486                                            Sri Lanka    LK   LKA 1964
## 14487                                            Sri Lanka    LK   LKA 1963
## 14488                                            Sri Lanka    LK   LKA 1962
## 14489                                            Sri Lanka    LK   LKA 1961
## 14490                                            Sri Lanka    LK   LKA 1960
## 14491                                  St. Kitts and Nevis    KN   KNA 2022
## 14492                                  St. Kitts and Nevis    KN   KNA 2021
## 14493                                  St. Kitts and Nevis    KN   KNA 2020
## 14494                                  St. Kitts and Nevis    KN   KNA 2019
## 14495                                  St. Kitts and Nevis    KN   KNA 2018
## 14496                                  St. Kitts and Nevis    KN   KNA 2017
## 14497                                  St. Kitts and Nevis    KN   KNA 2016
## 14498                                  St. Kitts and Nevis    KN   KNA 2015
## 14499                                  St. Kitts and Nevis    KN   KNA 2014
## 14500                                  St. Kitts and Nevis    KN   KNA 2013
## 14501                                  St. Kitts and Nevis    KN   KNA 2012
## 14502                                  St. Kitts and Nevis    KN   KNA 2011
## 14503                                  St. Kitts and Nevis    KN   KNA 2010
## 14504                                  St. Kitts and Nevis    KN   KNA 2009
## 14505                                  St. Kitts and Nevis    KN   KNA 2008
## 14506                                  St. Kitts and Nevis    KN   KNA 2007
## 14507                                  St. Kitts and Nevis    KN   KNA 2006
## 14508                                  St. Kitts and Nevis    KN   KNA 2005
## 14509                                  St. Kitts and Nevis    KN   KNA 2004
## 14510                                  St. Kitts and Nevis    KN   KNA 2003
## 14511                                  St. Kitts and Nevis    KN   KNA 2002
## 14512                                  St. Kitts and Nevis    KN   KNA 2001
## 14513                                  St. Kitts and Nevis    KN   KNA 2000
## 14514                                  St. Kitts and Nevis    KN   KNA 1999
## 14515                                  St. Kitts and Nevis    KN   KNA 1998
## 14516                                  St. Kitts and Nevis    KN   KNA 1997
## 14517                                  St. Kitts and Nevis    KN   KNA 1996
## 14518                                  St. Kitts and Nevis    KN   KNA 1995
## 14519                                  St. Kitts and Nevis    KN   KNA 1994
## 14520                                  St. Kitts and Nevis    KN   KNA 1993
## 14521                                  St. Kitts and Nevis    KN   KNA 1992
## 14522                                  St. Kitts and Nevis    KN   KNA 1991
## 14523                                  St. Kitts and Nevis    KN   KNA 1990
## 14524                                  St. Kitts and Nevis    KN   KNA 1989
## 14525                                  St. Kitts and Nevis    KN   KNA 1988
## 14526                                  St. Kitts and Nevis    KN   KNA 1987
## 14527                                  St. Kitts and Nevis    KN   KNA 1986
## 14528                                  St. Kitts and Nevis    KN   KNA 1985
## 14529                                  St. Kitts and Nevis    KN   KNA 1984
## 14530                                  St. Kitts and Nevis    KN   KNA 1983
## 14531                                  St. Kitts and Nevis    KN   KNA 1982
## 14532                                  St. Kitts and Nevis    KN   KNA 1981
## 14533                                  St. Kitts and Nevis    KN   KNA 1980
## 14534                                  St. Kitts and Nevis    KN   KNA 1979
## 14535                                  St. Kitts and Nevis    KN   KNA 1978
## 14536                                  St. Kitts and Nevis    KN   KNA 1977
## 14537                                  St. Kitts and Nevis    KN   KNA 1976
## 14538                                  St. Kitts and Nevis    KN   KNA 1975
## 14539                                  St. Kitts and Nevis    KN   KNA 1974
## 14540                                  St. Kitts and Nevis    KN   KNA 1973
## 14541                                  St. Kitts and Nevis    KN   KNA 1972
## 14542                                  St. Kitts and Nevis    KN   KNA 1971
## 14543                                  St. Kitts and Nevis    KN   KNA 1970
## 14544                                  St. Kitts and Nevis    KN   KNA 1969
## 14545                                  St. Kitts and Nevis    KN   KNA 1968
## 14546                                  St. Kitts and Nevis    KN   KNA 1967
## 14547                                  St. Kitts and Nevis    KN   KNA 1966
## 14548                                  St. Kitts and Nevis    KN   KNA 1965
## 14549                                  St. Kitts and Nevis    KN   KNA 1964
## 14550                                  St. Kitts and Nevis    KN   KNA 1963
## 14551                                  St. Kitts and Nevis    KN   KNA 1962
## 14552                                  St. Kitts and Nevis    KN   KNA 1961
## 14553                                  St. Kitts and Nevis    KN   KNA 1960
## 14554                                            St. Lucia    LC   LCA 2022
## 14555                                            St. Lucia    LC   LCA 2021
## 14556                                            St. Lucia    LC   LCA 2020
## 14557                                            St. Lucia    LC   LCA 2019
## 14558                                            St. Lucia    LC   LCA 2018
## 14559                                            St. Lucia    LC   LCA 2017
## 14560                                            St. Lucia    LC   LCA 2016
## 14561                                            St. Lucia    LC   LCA 2015
## 14562                                            St. Lucia    LC   LCA 2014
## 14563                                            St. Lucia    LC   LCA 2013
## 14564                                            St. Lucia    LC   LCA 2012
## 14565                                            St. Lucia    LC   LCA 2011
## 14566                                            St. Lucia    LC   LCA 2010
## 14567                                            St. Lucia    LC   LCA 2009
## 14568                                            St. Lucia    LC   LCA 2008
## 14569                                            St. Lucia    LC   LCA 2007
## 14570                                            St. Lucia    LC   LCA 2006
## 14571                                            St. Lucia    LC   LCA 2005
## 14572                                            St. Lucia    LC   LCA 2004
## 14573                                            St. Lucia    LC   LCA 2003
## 14574                                            St. Lucia    LC   LCA 2002
## 14575                                            St. Lucia    LC   LCA 2001
## 14576                                            St. Lucia    LC   LCA 2000
## 14577                                            St. Lucia    LC   LCA 1999
## 14578                                            St. Lucia    LC   LCA 1998
## 14579                                            St. Lucia    LC   LCA 1997
## 14580                                            St. Lucia    LC   LCA 1996
## 14581                                            St. Lucia    LC   LCA 1995
## 14582                                            St. Lucia    LC   LCA 1994
## 14583                                            St. Lucia    LC   LCA 1993
## 14584                                            St. Lucia    LC   LCA 1992
## 14585                                            St. Lucia    LC   LCA 1991
## 14586                                            St. Lucia    LC   LCA 1990
## 14587                                            St. Lucia    LC   LCA 1989
## 14588                                            St. Lucia    LC   LCA 1988
## 14589                                            St. Lucia    LC   LCA 1987
## 14590                                            St. Lucia    LC   LCA 1986
## 14591                                            St. Lucia    LC   LCA 1985
## 14592                                            St. Lucia    LC   LCA 1984
## 14593                                            St. Lucia    LC   LCA 1983
## 14594                                            St. Lucia    LC   LCA 1982
## 14595                                            St. Lucia    LC   LCA 1981
## 14596                                            St. Lucia    LC   LCA 1980
## 14597                                            St. Lucia    LC   LCA 1979
## 14598                                            St. Lucia    LC   LCA 1978
## 14599                                            St. Lucia    LC   LCA 1977
## 14600                                            St. Lucia    LC   LCA 1976
## 14601                                            St. Lucia    LC   LCA 1975
## 14602                                            St. Lucia    LC   LCA 1974
## 14603                                            St. Lucia    LC   LCA 1973
## 14604                                            St. Lucia    LC   LCA 1972
## 14605                                            St. Lucia    LC   LCA 1971
## 14606                                            St. Lucia    LC   LCA 1970
## 14607                                            St. Lucia    LC   LCA 1969
## 14608                                            St. Lucia    LC   LCA 1968
## 14609                                            St. Lucia    LC   LCA 1967
## 14610                                            St. Lucia    LC   LCA 1966
## 14611                                            St. Lucia    LC   LCA 1965
## 14612                                            St. Lucia    LC   LCA 1964
## 14613                                            St. Lucia    LC   LCA 1963
## 14614                                            St. Lucia    LC   LCA 1962
## 14615                                            St. Lucia    LC   LCA 1961
## 14616                                            St. Lucia    LC   LCA 1960
## 14617                             St. Martin (French part)    MF   MAF 2022
## 14618                             St. Martin (French part)    MF   MAF 2021
## 14619                             St. Martin (French part)    MF   MAF 2020
## 14620                             St. Martin (French part)    MF   MAF 2019
## 14621                             St. Martin (French part)    MF   MAF 2018
## 14622                             St. Martin (French part)    MF   MAF 2017
## 14623                             St. Martin (French part)    MF   MAF 2016
## 14624                             St. Martin (French part)    MF   MAF 2015
## 14625                             St. Martin (French part)    MF   MAF 2014
## 14626                             St. Martin (French part)    MF   MAF 2013
## 14627                             St. Martin (French part)    MF   MAF 2012
## 14628                             St. Martin (French part)    MF   MAF 2011
## 14629                             St. Martin (French part)    MF   MAF 2010
## 14630                             St. Martin (French part)    MF   MAF 2009
## 14631                             St. Martin (French part)    MF   MAF 2008
## 14632                             St. Martin (French part)    MF   MAF 2007
## 14633                             St. Martin (French part)    MF   MAF 2006
## 14634                             St. Martin (French part)    MF   MAF 2005
## 14635                             St. Martin (French part)    MF   MAF 2004
## 14636                             St. Martin (French part)    MF   MAF 2003
## 14637                             St. Martin (French part)    MF   MAF 2002
## 14638                             St. Martin (French part)    MF   MAF 2001
## 14639                             St. Martin (French part)    MF   MAF 2000
## 14640                             St. Martin (French part)    MF   MAF 1999
## 14641                             St. Martin (French part)    MF   MAF 1998
## 14642                             St. Martin (French part)    MF   MAF 1997
## 14643                             St. Martin (French part)    MF   MAF 1996
## 14644                             St. Martin (French part)    MF   MAF 1995
## 14645                             St. Martin (French part)    MF   MAF 1994
## 14646                             St. Martin (French part)    MF   MAF 1993
## 14647                             St. Martin (French part)    MF   MAF 1992
## 14648                             St. Martin (French part)    MF   MAF 1991
## 14649                             St. Martin (French part)    MF   MAF 1990
## 14650                             St. Martin (French part)    MF   MAF 1989
## 14651                             St. Martin (French part)    MF   MAF 1988
## 14652                             St. Martin (French part)    MF   MAF 1987
## 14653                             St. Martin (French part)    MF   MAF 1986
## 14654                             St. Martin (French part)    MF   MAF 1985
## 14655                             St. Martin (French part)    MF   MAF 1984
## 14656                             St. Martin (French part)    MF   MAF 1983
## 14657                             St. Martin (French part)    MF   MAF 1982
## 14658                             St. Martin (French part)    MF   MAF 1981
## 14659                             St. Martin (French part)    MF   MAF 1980
## 14660                             St. Martin (French part)    MF   MAF 1979
## 14661                             St. Martin (French part)    MF   MAF 1978
## 14662                             St. Martin (French part)    MF   MAF 1977
## 14663                             St. Martin (French part)    MF   MAF 1976
## 14664                             St. Martin (French part)    MF   MAF 1975
## 14665                             St. Martin (French part)    MF   MAF 1974
## 14666                             St. Martin (French part)    MF   MAF 1973
## 14667                             St. Martin (French part)    MF   MAF 1972
## 14668                             St. Martin (French part)    MF   MAF 1971
## 14669                             St. Martin (French part)    MF   MAF 1970
## 14670                             St. Martin (French part)    MF   MAF 1969
## 14671                             St. Martin (French part)    MF   MAF 1968
## 14672                             St. Martin (French part)    MF   MAF 1967
## 14673                             St. Martin (French part)    MF   MAF 1966
## 14674                             St. Martin (French part)    MF   MAF 1965
## 14675                             St. Martin (French part)    MF   MAF 1964
## 14676                             St. Martin (French part)    MF   MAF 1963
## 14677                             St. Martin (French part)    MF   MAF 1962
## 14678                             St. Martin (French part)    MF   MAF 1961
## 14679                             St. Martin (French part)    MF   MAF 1960
## 14680                       St. Vincent and the Grenadines    VC   VCT 2022
## 14681                       St. Vincent and the Grenadines    VC   VCT 2021
## 14682                       St. Vincent and the Grenadines    VC   VCT 2020
## 14683                       St. Vincent and the Grenadines    VC   VCT 2019
## 14684                       St. Vincent and the Grenadines    VC   VCT 2018
## 14685                       St. Vincent and the Grenadines    VC   VCT 2017
## 14686                       St. Vincent and the Grenadines    VC   VCT 2016
## 14687                       St. Vincent and the Grenadines    VC   VCT 2015
## 14688                       St. Vincent and the Grenadines    VC   VCT 2014
## 14689                       St. Vincent and the Grenadines    VC   VCT 2013
## 14690                       St. Vincent and the Grenadines    VC   VCT 2012
## 14691                       St. Vincent and the Grenadines    VC   VCT 2011
## 14692                       St. Vincent and the Grenadines    VC   VCT 2010
## 14693                       St. Vincent and the Grenadines    VC   VCT 2009
## 14694                       St. Vincent and the Grenadines    VC   VCT 2008
## 14695                       St. Vincent and the Grenadines    VC   VCT 2007
## 14696                       St. Vincent and the Grenadines    VC   VCT 2006
## 14697                       St. Vincent and the Grenadines    VC   VCT 2005
## 14698                       St. Vincent and the Grenadines    VC   VCT 2004
## 14699                       St. Vincent and the Grenadines    VC   VCT 2003
## 14700                       St. Vincent and the Grenadines    VC   VCT 2002
## 14701                       St. Vincent and the Grenadines    VC   VCT 2001
## 14702                       St. Vincent and the Grenadines    VC   VCT 2000
## 14703                       St. Vincent and the Grenadines    VC   VCT 1999
## 14704                       St. Vincent and the Grenadines    VC   VCT 1998
## 14705                       St. Vincent and the Grenadines    VC   VCT 1997
## 14706                       St. Vincent and the Grenadines    VC   VCT 1996
## 14707                       St. Vincent and the Grenadines    VC   VCT 1995
## 14708                       St. Vincent and the Grenadines    VC   VCT 1994
## 14709                       St. Vincent and the Grenadines    VC   VCT 1993
## 14710                       St. Vincent and the Grenadines    VC   VCT 1992
## 14711                       St. Vincent and the Grenadines    VC   VCT 1991
## 14712                       St. Vincent and the Grenadines    VC   VCT 1990
## 14713                       St. Vincent and the Grenadines    VC   VCT 1989
## 14714                       St. Vincent and the Grenadines    VC   VCT 1988
## 14715                       St. Vincent and the Grenadines    VC   VCT 1987
## 14716                       St. Vincent and the Grenadines    VC   VCT 1986
## 14717                       St. Vincent and the Grenadines    VC   VCT 1985
## 14718                       St. Vincent and the Grenadines    VC   VCT 1984
## 14719                       St. Vincent and the Grenadines    VC   VCT 1983
## 14720                       St. Vincent and the Grenadines    VC   VCT 1982
## 14721                       St. Vincent and the Grenadines    VC   VCT 1981
## 14722                       St. Vincent and the Grenadines    VC   VCT 1980
## 14723                       St. Vincent and the Grenadines    VC   VCT 1979
## 14724                       St. Vincent and the Grenadines    VC   VCT 1978
## 14725                       St. Vincent and the Grenadines    VC   VCT 1977
## 14726                       St. Vincent and the Grenadines    VC   VCT 1976
## 14727                       St. Vincent and the Grenadines    VC   VCT 1975
## 14728                       St. Vincent and the Grenadines    VC   VCT 1974
## 14729                       St. Vincent and the Grenadines    VC   VCT 1973
## 14730                       St. Vincent and the Grenadines    VC   VCT 1972
## 14731                       St. Vincent and the Grenadines    VC   VCT 1971
## 14732                       St. Vincent and the Grenadines    VC   VCT 1970
## 14733                       St. Vincent and the Grenadines    VC   VCT 1969
## 14734                       St. Vincent and the Grenadines    VC   VCT 1968
## 14735                       St. Vincent and the Grenadines    VC   VCT 1967
## 14736                       St. Vincent and the Grenadines    VC   VCT 1966
## 14737                       St. Vincent and the Grenadines    VC   VCT 1965
## 14738                       St. Vincent and the Grenadines    VC   VCT 1964
## 14739                       St. Vincent and the Grenadines    VC   VCT 1963
## 14740                       St. Vincent and the Grenadines    VC   VCT 1962
## 14741                       St. Vincent and the Grenadines    VC   VCT 1961
## 14742                       St. Vincent and the Grenadines    VC   VCT 1960
## 14743                                                Sudan    SD   SDN 2022
## 14744                                                Sudan    SD   SDN 2021
## 14745                                                Sudan    SD   SDN 2020
## 14746                                                Sudan    SD   SDN 2019
## 14747                                                Sudan    SD   SDN 2018
## 14748                                                Sudan    SD   SDN 2017
## 14749                                                Sudan    SD   SDN 2016
## 14750                                                Sudan    SD   SDN 2015
## 14751                                                Sudan    SD   SDN 2014
## 14752                                                Sudan    SD   SDN 2013
## 14753                                                Sudan    SD   SDN 2012
## 14754                                                Sudan    SD   SDN 2011
## 14755                                                Sudan    SD   SDN 2010
## 14756                                                Sudan    SD   SDN 2009
## 14757                                                Sudan    SD   SDN 2008
## 14758                                                Sudan    SD   SDN 2007
## 14759                                                Sudan    SD   SDN 2006
## 14760                                                Sudan    SD   SDN 2005
## 14761                                                Sudan    SD   SDN 2004
## 14762                                                Sudan    SD   SDN 2003
## 14763                                                Sudan    SD   SDN 2002
## 14764                                                Sudan    SD   SDN 2001
## 14765                                                Sudan    SD   SDN 2000
## 14766                                                Sudan    SD   SDN 1999
## 14767                                                Sudan    SD   SDN 1998
## 14768                                                Sudan    SD   SDN 1997
## 14769                                                Sudan    SD   SDN 1996
## 14770                                                Sudan    SD   SDN 1995
## 14771                                                Sudan    SD   SDN 1994
## 14772                                                Sudan    SD   SDN 1993
## 14773                                                Sudan    SD   SDN 1992
## 14774                                                Sudan    SD   SDN 1991
## 14775                                                Sudan    SD   SDN 1990
## 14776                                                Sudan    SD   SDN 1989
## 14777                                                Sudan    SD   SDN 1988
## 14778                                                Sudan    SD   SDN 1987
## 14779                                                Sudan    SD   SDN 1986
## 14780                                                Sudan    SD   SDN 1985
## 14781                                                Sudan    SD   SDN 1984
## 14782                                                Sudan    SD   SDN 1983
## 14783                                                Sudan    SD   SDN 1982
## 14784                                                Sudan    SD   SDN 1981
## 14785                                                Sudan    SD   SDN 1980
## 14786                                                Sudan    SD   SDN 1979
## 14787                                                Sudan    SD   SDN 1978
## 14788                                                Sudan    SD   SDN 1977
## 14789                                                Sudan    SD   SDN 1976
## 14790                                                Sudan    SD   SDN 1975
## 14791                                                Sudan    SD   SDN 1974
## 14792                                                Sudan    SD   SDN 1973
## 14793                                                Sudan    SD   SDN 1972
## 14794                                                Sudan    SD   SDN 1971
## 14795                                                Sudan    SD   SDN 1970
## 14796                                                Sudan    SD   SDN 1969
## 14797                                                Sudan    SD   SDN 1968
## 14798                                                Sudan    SD   SDN 1967
## 14799                                                Sudan    SD   SDN 1966
## 14800                                                Sudan    SD   SDN 1965
## 14801                                                Sudan    SD   SDN 1964
## 14802                                                Sudan    SD   SDN 1963
## 14803                                                Sudan    SD   SDN 1962
## 14804                                                Sudan    SD   SDN 1961
## 14805                                                Sudan    SD   SDN 1960
## 14806                                             Suriname    SR   SUR 2022
## 14807                                             Suriname    SR   SUR 2021
## 14808                                             Suriname    SR   SUR 2020
## 14809                                             Suriname    SR   SUR 2019
## 14810                                             Suriname    SR   SUR 2018
## 14811                                             Suriname    SR   SUR 2017
## 14812                                             Suriname    SR   SUR 2016
## 14813                                             Suriname    SR   SUR 2015
## 14814                                             Suriname    SR   SUR 2014
## 14815                                             Suriname    SR   SUR 2013
## 14816                                             Suriname    SR   SUR 2012
## 14817                                             Suriname    SR   SUR 2011
## 14818                                             Suriname    SR   SUR 2010
## 14819                                             Suriname    SR   SUR 2009
## 14820                                             Suriname    SR   SUR 2008
## 14821                                             Suriname    SR   SUR 2007
## 14822                                             Suriname    SR   SUR 2006
## 14823                                             Suriname    SR   SUR 2005
## 14824                                             Suriname    SR   SUR 2004
## 14825                                             Suriname    SR   SUR 2003
## 14826                                             Suriname    SR   SUR 2002
## 14827                                             Suriname    SR   SUR 2001
## 14828                                             Suriname    SR   SUR 2000
## 14829                                             Suriname    SR   SUR 1999
## 14830                                             Suriname    SR   SUR 1998
## 14831                                             Suriname    SR   SUR 1997
## 14832                                             Suriname    SR   SUR 1996
## 14833                                             Suriname    SR   SUR 1995
## 14834                                             Suriname    SR   SUR 1994
## 14835                                             Suriname    SR   SUR 1993
## 14836                                             Suriname    SR   SUR 1992
## 14837                                             Suriname    SR   SUR 1991
## 14838                                             Suriname    SR   SUR 1990
## 14839                                             Suriname    SR   SUR 1989
## 14840                                             Suriname    SR   SUR 1988
## 14841                                             Suriname    SR   SUR 1987
## 14842                                             Suriname    SR   SUR 1986
## 14843                                             Suriname    SR   SUR 1985
## 14844                                             Suriname    SR   SUR 1984
## 14845                                             Suriname    SR   SUR 1983
## 14846                                             Suriname    SR   SUR 1982
## 14847                                             Suriname    SR   SUR 1981
## 14848                                             Suriname    SR   SUR 1980
## 14849                                             Suriname    SR   SUR 1979
## 14850                                             Suriname    SR   SUR 1978
## 14851                                             Suriname    SR   SUR 1977
## 14852                                             Suriname    SR   SUR 1976
## 14853                                             Suriname    SR   SUR 1975
## 14854                                             Suriname    SR   SUR 1974
## 14855                                             Suriname    SR   SUR 1973
## 14856                                             Suriname    SR   SUR 1972
## 14857                                             Suriname    SR   SUR 1971
## 14858                                             Suriname    SR   SUR 1970
## 14859                                             Suriname    SR   SUR 1969
## 14860                                             Suriname    SR   SUR 1968
## 14861                                             Suriname    SR   SUR 1967
## 14862                                             Suriname    SR   SUR 1966
## 14863                                             Suriname    SR   SUR 1965
## 14864                                             Suriname    SR   SUR 1964
## 14865                                             Suriname    SR   SUR 1963
## 14866                                             Suriname    SR   SUR 1962
## 14867                                             Suriname    SR   SUR 1961
## 14868                                             Suriname    SR   SUR 1960
## 14869                                               Sweden    SE   SWE 2022
## 14870                                               Sweden    SE   SWE 2021
## 14871                                               Sweden    SE   SWE 2020
## 14872                                               Sweden    SE   SWE 2019
## 14873                                               Sweden    SE   SWE 2018
## 14874                                               Sweden    SE   SWE 2017
## 14875                                               Sweden    SE   SWE 2016
## 14876                                               Sweden    SE   SWE 2015
## 14877                                               Sweden    SE   SWE 2014
## 14878                                               Sweden    SE   SWE 2013
## 14879                                               Sweden    SE   SWE 2012
## 14880                                               Sweden    SE   SWE 2011
## 14881                                               Sweden    SE   SWE 2010
## 14882                                               Sweden    SE   SWE 2009
## 14883                                               Sweden    SE   SWE 2008
## 14884                                               Sweden    SE   SWE 2007
## 14885                                               Sweden    SE   SWE 2006
## 14886                                               Sweden    SE   SWE 2005
## 14887                                               Sweden    SE   SWE 2004
## 14888                                               Sweden    SE   SWE 2003
## 14889                                               Sweden    SE   SWE 2002
## 14890                                               Sweden    SE   SWE 2001
## 14891                                               Sweden    SE   SWE 2000
## 14892                                               Sweden    SE   SWE 1999
## 14893                                               Sweden    SE   SWE 1998
## 14894                                               Sweden    SE   SWE 1997
## 14895                                               Sweden    SE   SWE 1996
## 14896                                               Sweden    SE   SWE 1995
## 14897                                               Sweden    SE   SWE 1994
## 14898                                               Sweden    SE   SWE 1993
## 14899                                               Sweden    SE   SWE 1992
## 14900                                               Sweden    SE   SWE 1991
## 14901                                               Sweden    SE   SWE 1990
## 14902                                               Sweden    SE   SWE 1989
## 14903                                               Sweden    SE   SWE 1988
## 14904                                               Sweden    SE   SWE 1987
## 14905                                               Sweden    SE   SWE 1986
## 14906                                               Sweden    SE   SWE 1985
## 14907                                               Sweden    SE   SWE 1984
## 14908                                               Sweden    SE   SWE 1983
## 14909                                               Sweden    SE   SWE 1982
## 14910                                               Sweden    SE   SWE 1981
## 14911                                               Sweden    SE   SWE 1980
## 14912                                               Sweden    SE   SWE 1979
## 14913                                               Sweden    SE   SWE 1978
## 14914                                               Sweden    SE   SWE 1977
## 14915                                               Sweden    SE   SWE 1976
## 14916                                               Sweden    SE   SWE 1975
## 14917                                               Sweden    SE   SWE 1974
## 14918                                               Sweden    SE   SWE 1973
## 14919                                               Sweden    SE   SWE 1972
## 14920                                               Sweden    SE   SWE 1971
## 14921                                               Sweden    SE   SWE 1970
## 14922                                               Sweden    SE   SWE 1969
## 14923                                               Sweden    SE   SWE 1968
## 14924                                               Sweden    SE   SWE 1967
## 14925                                               Sweden    SE   SWE 1966
## 14926                                               Sweden    SE   SWE 1965
## 14927                                               Sweden    SE   SWE 1964
## 14928                                               Sweden    SE   SWE 1963
## 14929                                               Sweden    SE   SWE 1962
## 14930                                               Sweden    SE   SWE 1961
## 14931                                               Sweden    SE   SWE 1960
## 14932                                          Switzerland    CH   CHE 2022
## 14933                                          Switzerland    CH   CHE 2021
## 14934                                          Switzerland    CH   CHE 2020
## 14935                                          Switzerland    CH   CHE 2019
## 14936                                          Switzerland    CH   CHE 2018
## 14937                                          Switzerland    CH   CHE 2017
## 14938                                          Switzerland    CH   CHE 2016
## 14939                                          Switzerland    CH   CHE 2015
## 14940                                          Switzerland    CH   CHE 2014
## 14941                                          Switzerland    CH   CHE 2013
## 14942                                          Switzerland    CH   CHE 2012
## 14943                                          Switzerland    CH   CHE 2011
## 14944                                          Switzerland    CH   CHE 2010
## 14945                                          Switzerland    CH   CHE 2009
## 14946                                          Switzerland    CH   CHE 2008
## 14947                                          Switzerland    CH   CHE 2007
## 14948                                          Switzerland    CH   CHE 2006
## 14949                                          Switzerland    CH   CHE 2005
## 14950                                          Switzerland    CH   CHE 2004
## 14951                                          Switzerland    CH   CHE 2003
## 14952                                          Switzerland    CH   CHE 2002
## 14953                                          Switzerland    CH   CHE 2001
## 14954                                          Switzerland    CH   CHE 2000
## 14955                                          Switzerland    CH   CHE 1999
## 14956                                          Switzerland    CH   CHE 1998
## 14957                                          Switzerland    CH   CHE 1997
## 14958                                          Switzerland    CH   CHE 1996
## 14959                                          Switzerland    CH   CHE 1995
## 14960                                          Switzerland    CH   CHE 1994
## 14961                                          Switzerland    CH   CHE 1993
## 14962                                          Switzerland    CH   CHE 1992
## 14963                                          Switzerland    CH   CHE 1991
## 14964                                          Switzerland    CH   CHE 1990
## 14965                                          Switzerland    CH   CHE 1989
## 14966                                          Switzerland    CH   CHE 1988
## 14967                                          Switzerland    CH   CHE 1987
## 14968                                          Switzerland    CH   CHE 1986
## 14969                                          Switzerland    CH   CHE 1985
## 14970                                          Switzerland    CH   CHE 1984
## 14971                                          Switzerland    CH   CHE 1983
## 14972                                          Switzerland    CH   CHE 1982
## 14973                                          Switzerland    CH   CHE 1981
## 14974                                          Switzerland    CH   CHE 1980
## 14975                                          Switzerland    CH   CHE 1979
## 14976                                          Switzerland    CH   CHE 1978
## 14977                                          Switzerland    CH   CHE 1977
## 14978                                          Switzerland    CH   CHE 1976
## 14979                                          Switzerland    CH   CHE 1975
## 14980                                          Switzerland    CH   CHE 1974
## 14981                                          Switzerland    CH   CHE 1973
## 14982                                          Switzerland    CH   CHE 1972
## 14983                                          Switzerland    CH   CHE 1971
## 14984                                          Switzerland    CH   CHE 1970
## 14985                                          Switzerland    CH   CHE 1969
## 14986                                          Switzerland    CH   CHE 1968
## 14987                                          Switzerland    CH   CHE 1967
## 14988                                          Switzerland    CH   CHE 1966
## 14989                                          Switzerland    CH   CHE 1965
## 14990                                          Switzerland    CH   CHE 1964
## 14991                                          Switzerland    CH   CHE 1963
## 14992                                          Switzerland    CH   CHE 1962
## 14993                                          Switzerland    CH   CHE 1961
## 14994                                          Switzerland    CH   CHE 1960
## 14995                                 Syrian Arab Republic    SY   SYR 2022
## 14996                                 Syrian Arab Republic    SY   SYR 2021
## 14997                                 Syrian Arab Republic    SY   SYR 2020
## 14998                                 Syrian Arab Republic    SY   SYR 2019
## 14999                                 Syrian Arab Republic    SY   SYR 2018
## 15000                                 Syrian Arab Republic    SY   SYR 2017
## 15001                                 Syrian Arab Republic    SY   SYR 2016
## 15002                                 Syrian Arab Republic    SY   SYR 2015
## 15003                                 Syrian Arab Republic    SY   SYR 2014
## 15004                                 Syrian Arab Republic    SY   SYR 2013
## 15005                                 Syrian Arab Republic    SY   SYR 2012
## 15006                                 Syrian Arab Republic    SY   SYR 2011
## 15007                                 Syrian Arab Republic    SY   SYR 2010
## 15008                                 Syrian Arab Republic    SY   SYR 2009
## 15009                                 Syrian Arab Republic    SY   SYR 2008
## 15010                                 Syrian Arab Republic    SY   SYR 2007
## 15011                                 Syrian Arab Republic    SY   SYR 2006
## 15012                                 Syrian Arab Republic    SY   SYR 2005
## 15013                                 Syrian Arab Republic    SY   SYR 2004
## 15014                                 Syrian Arab Republic    SY   SYR 2003
## 15015                                 Syrian Arab Republic    SY   SYR 2002
## 15016                                 Syrian Arab Republic    SY   SYR 2001
## 15017                                 Syrian Arab Republic    SY   SYR 2000
## 15018                                 Syrian Arab Republic    SY   SYR 1999
## 15019                                 Syrian Arab Republic    SY   SYR 1998
## 15020                                 Syrian Arab Republic    SY   SYR 1997
## 15021                                 Syrian Arab Republic    SY   SYR 1996
## 15022                                 Syrian Arab Republic    SY   SYR 1995
## 15023                                 Syrian Arab Republic    SY   SYR 1994
## 15024                                 Syrian Arab Republic    SY   SYR 1993
## 15025                                 Syrian Arab Republic    SY   SYR 1992
## 15026                                 Syrian Arab Republic    SY   SYR 1991
## 15027                                 Syrian Arab Republic    SY   SYR 1990
## 15028                                 Syrian Arab Republic    SY   SYR 1989
## 15029                                 Syrian Arab Republic    SY   SYR 1988
## 15030                                 Syrian Arab Republic    SY   SYR 1987
## 15031                                 Syrian Arab Republic    SY   SYR 1986
## 15032                                 Syrian Arab Republic    SY   SYR 1985
## 15033                                 Syrian Arab Republic    SY   SYR 1984
## 15034                                 Syrian Arab Republic    SY   SYR 1983
## 15035                                 Syrian Arab Republic    SY   SYR 1982
## 15036                                 Syrian Arab Republic    SY   SYR 1981
## 15037                                 Syrian Arab Republic    SY   SYR 1980
## 15038                                 Syrian Arab Republic    SY   SYR 1979
## 15039                                 Syrian Arab Republic    SY   SYR 1978
## 15040                                 Syrian Arab Republic    SY   SYR 1977
## 15041                                 Syrian Arab Republic    SY   SYR 1976
## 15042                                 Syrian Arab Republic    SY   SYR 1975
## 15043                                 Syrian Arab Republic    SY   SYR 1974
## 15044                                 Syrian Arab Republic    SY   SYR 1973
## 15045                                 Syrian Arab Republic    SY   SYR 1972
## 15046                                 Syrian Arab Republic    SY   SYR 1971
## 15047                                 Syrian Arab Republic    SY   SYR 1970
## 15048                                 Syrian Arab Republic    SY   SYR 1969
## 15049                                 Syrian Arab Republic    SY   SYR 1968
## 15050                                 Syrian Arab Republic    SY   SYR 1967
## 15051                                 Syrian Arab Republic    SY   SYR 1966
## 15052                                 Syrian Arab Republic    SY   SYR 1965
## 15053                                 Syrian Arab Republic    SY   SYR 1964
## 15054                                 Syrian Arab Republic    SY   SYR 1963
## 15055                                 Syrian Arab Republic    SY   SYR 1962
## 15056                                 Syrian Arab Republic    SY   SYR 1961
## 15057                                 Syrian Arab Republic    SY   SYR 1960
## 15058                                           Tajikistan    TJ   TJK 2022
## 15059                                           Tajikistan    TJ   TJK 2021
## 15060                                           Tajikistan    TJ   TJK 2020
## 15061                                           Tajikistan    TJ   TJK 2019
## 15062                                           Tajikistan    TJ   TJK 2018
## 15063                                           Tajikistan    TJ   TJK 2017
## 15064                                           Tajikistan    TJ   TJK 2016
## 15065                                           Tajikistan    TJ   TJK 2015
## 15066                                           Tajikistan    TJ   TJK 2014
## 15067                                           Tajikistan    TJ   TJK 2013
## 15068                                           Tajikistan    TJ   TJK 2012
## 15069                                           Tajikistan    TJ   TJK 2011
## 15070                                           Tajikistan    TJ   TJK 2010
## 15071                                           Tajikistan    TJ   TJK 2009
## 15072                                           Tajikistan    TJ   TJK 2008
## 15073                                           Tajikistan    TJ   TJK 2007
## 15074                                           Tajikistan    TJ   TJK 2006
## 15075                                           Tajikistan    TJ   TJK 2005
## 15076                                           Tajikistan    TJ   TJK 2004
## 15077                                           Tajikistan    TJ   TJK 2003
## 15078                                           Tajikistan    TJ   TJK 2002
## 15079                                           Tajikistan    TJ   TJK 2001
## 15080                                           Tajikistan    TJ   TJK 2000
## 15081                                           Tajikistan    TJ   TJK 1999
## 15082                                           Tajikistan    TJ   TJK 1998
## 15083                                           Tajikistan    TJ   TJK 1997
## 15084                                           Tajikistan    TJ   TJK 1996
## 15085                                           Tajikistan    TJ   TJK 1995
## 15086                                           Tajikistan    TJ   TJK 1994
## 15087                                           Tajikistan    TJ   TJK 1993
## 15088                                           Tajikistan    TJ   TJK 1992
## 15089                                           Tajikistan    TJ   TJK 1991
## 15090                                           Tajikistan    TJ   TJK 1990
## 15091                                           Tajikistan    TJ   TJK 1989
## 15092                                           Tajikistan    TJ   TJK 1988
## 15093                                           Tajikistan    TJ   TJK 1987
## 15094                                           Tajikistan    TJ   TJK 1986
## 15095                                           Tajikistan    TJ   TJK 1985
## 15096                                           Tajikistan    TJ   TJK 1984
## 15097                                           Tajikistan    TJ   TJK 1983
## 15098                                           Tajikistan    TJ   TJK 1982
## 15099                                           Tajikistan    TJ   TJK 1981
## 15100                                           Tajikistan    TJ   TJK 1980
## 15101                                           Tajikistan    TJ   TJK 1979
## 15102                                           Tajikistan    TJ   TJK 1978
## 15103                                           Tajikistan    TJ   TJK 1977
## 15104                                           Tajikistan    TJ   TJK 1976
## 15105                                           Tajikistan    TJ   TJK 1975
## 15106                                           Tajikistan    TJ   TJK 1974
## 15107                                           Tajikistan    TJ   TJK 1973
## 15108                                           Tajikistan    TJ   TJK 1972
## 15109                                           Tajikistan    TJ   TJK 1971
## 15110                                           Tajikistan    TJ   TJK 1970
## 15111                                           Tajikistan    TJ   TJK 1969
## 15112                                           Tajikistan    TJ   TJK 1968
## 15113                                           Tajikistan    TJ   TJK 1967
## 15114                                           Tajikistan    TJ   TJK 1966
## 15115                                           Tajikistan    TJ   TJK 1965
## 15116                                           Tajikistan    TJ   TJK 1964
## 15117                                           Tajikistan    TJ   TJK 1963
## 15118                                           Tajikistan    TJ   TJK 1962
## 15119                                           Tajikistan    TJ   TJK 1961
## 15120                                           Tajikistan    TJ   TJK 1960
## 15121                                             Tanzania    TZ   TZA 2022
## 15122                                             Tanzania    TZ   TZA 2021
## 15123                                             Tanzania    TZ   TZA 2020
## 15124                                             Tanzania    TZ   TZA 2019
## 15125                                             Tanzania    TZ   TZA 2018
## 15126                                             Tanzania    TZ   TZA 2017
## 15127                                             Tanzania    TZ   TZA 2016
## 15128                                             Tanzania    TZ   TZA 2015
## 15129                                             Tanzania    TZ   TZA 2014
## 15130                                             Tanzania    TZ   TZA 2013
## 15131                                             Tanzania    TZ   TZA 2012
## 15132                                             Tanzania    TZ   TZA 2011
## 15133                                             Tanzania    TZ   TZA 2010
## 15134                                             Tanzania    TZ   TZA 2009
## 15135                                             Tanzania    TZ   TZA 2008
## 15136                                             Tanzania    TZ   TZA 2007
## 15137                                             Tanzania    TZ   TZA 2006
## 15138                                             Tanzania    TZ   TZA 2005
## 15139                                             Tanzania    TZ   TZA 2004
## 15140                                             Tanzania    TZ   TZA 2003
## 15141                                             Tanzania    TZ   TZA 2002
## 15142                                             Tanzania    TZ   TZA 2001
## 15143                                             Tanzania    TZ   TZA 2000
## 15144                                             Tanzania    TZ   TZA 1999
## 15145                                             Tanzania    TZ   TZA 1998
## 15146                                             Tanzania    TZ   TZA 1997
## 15147                                             Tanzania    TZ   TZA 1996
## 15148                                             Tanzania    TZ   TZA 1995
## 15149                                             Tanzania    TZ   TZA 1994
## 15150                                             Tanzania    TZ   TZA 1993
## 15151                                             Tanzania    TZ   TZA 1992
## 15152                                             Tanzania    TZ   TZA 1991
## 15153                                             Tanzania    TZ   TZA 1990
## 15154                                             Tanzania    TZ   TZA 1989
## 15155                                             Tanzania    TZ   TZA 1988
## 15156                                             Tanzania    TZ   TZA 1987
## 15157                                             Tanzania    TZ   TZA 1986
## 15158                                             Tanzania    TZ   TZA 1985
## 15159                                             Tanzania    TZ   TZA 1984
## 15160                                             Tanzania    TZ   TZA 1983
## 15161                                             Tanzania    TZ   TZA 1982
## 15162                                             Tanzania    TZ   TZA 1981
## 15163                                             Tanzania    TZ   TZA 1980
## 15164                                             Tanzania    TZ   TZA 1979
## 15165                                             Tanzania    TZ   TZA 1978
## 15166                                             Tanzania    TZ   TZA 1977
## 15167                                             Tanzania    TZ   TZA 1976
## 15168                                             Tanzania    TZ   TZA 1975
## 15169                                             Tanzania    TZ   TZA 1974
## 15170                                             Tanzania    TZ   TZA 1973
## 15171                                             Tanzania    TZ   TZA 1972
## 15172                                             Tanzania    TZ   TZA 1971
## 15173                                             Tanzania    TZ   TZA 1970
## 15174                                             Tanzania    TZ   TZA 1969
## 15175                                             Tanzania    TZ   TZA 1968
## 15176                                             Tanzania    TZ   TZA 1967
## 15177                                             Tanzania    TZ   TZA 1966
## 15178                                             Tanzania    TZ   TZA 1965
## 15179                                             Tanzania    TZ   TZA 1964
## 15180                                             Tanzania    TZ   TZA 1963
## 15181                                             Tanzania    TZ   TZA 1962
## 15182                                             Tanzania    TZ   TZA 1961
## 15183                                             Tanzania    TZ   TZA 1960
## 15184                                             Thailand    TH   THA 2022
## 15185                                             Thailand    TH   THA 2021
## 15186                                             Thailand    TH   THA 2020
## 15187                                             Thailand    TH   THA 2019
## 15188                                             Thailand    TH   THA 2018
## 15189                                             Thailand    TH   THA 2017
## 15190                                             Thailand    TH   THA 2016
## 15191                                             Thailand    TH   THA 2015
## 15192                                             Thailand    TH   THA 2014
## 15193                                             Thailand    TH   THA 2013
## 15194                                             Thailand    TH   THA 2012
## 15195                                             Thailand    TH   THA 2011
## 15196                                             Thailand    TH   THA 2010
## 15197                                             Thailand    TH   THA 2009
## 15198                                             Thailand    TH   THA 2008
## 15199                                             Thailand    TH   THA 2007
## 15200                                             Thailand    TH   THA 2006
## 15201                                             Thailand    TH   THA 2005
## 15202                                             Thailand    TH   THA 2004
## 15203                                             Thailand    TH   THA 2003
## 15204                                             Thailand    TH   THA 2002
## 15205                                             Thailand    TH   THA 2001
## 15206                                             Thailand    TH   THA 2000
## 15207                                             Thailand    TH   THA 1999
## 15208                                             Thailand    TH   THA 1998
## 15209                                             Thailand    TH   THA 1997
## 15210                                             Thailand    TH   THA 1996
## 15211                                             Thailand    TH   THA 1995
## 15212                                             Thailand    TH   THA 1994
## 15213                                             Thailand    TH   THA 1993
## 15214                                             Thailand    TH   THA 1992
## 15215                                             Thailand    TH   THA 1991
## 15216                                             Thailand    TH   THA 1990
## 15217                                             Thailand    TH   THA 1989
## 15218                                             Thailand    TH   THA 1988
## 15219                                             Thailand    TH   THA 1987
## 15220                                             Thailand    TH   THA 1986
## 15221                                             Thailand    TH   THA 1985
## 15222                                             Thailand    TH   THA 1984
## 15223                                             Thailand    TH   THA 1983
## 15224                                             Thailand    TH   THA 1982
## 15225                                             Thailand    TH   THA 1981
## 15226                                             Thailand    TH   THA 1980
## 15227                                             Thailand    TH   THA 1979
## 15228                                             Thailand    TH   THA 1978
## 15229                                             Thailand    TH   THA 1977
## 15230                                             Thailand    TH   THA 1976
## 15231                                             Thailand    TH   THA 1975
## 15232                                             Thailand    TH   THA 1974
## 15233                                             Thailand    TH   THA 1973
## 15234                                             Thailand    TH   THA 1972
## 15235                                             Thailand    TH   THA 1971
## 15236                                             Thailand    TH   THA 1970
## 15237                                             Thailand    TH   THA 1969
## 15238                                             Thailand    TH   THA 1968
## 15239                                             Thailand    TH   THA 1967
## 15240                                             Thailand    TH   THA 1966
## 15241                                             Thailand    TH   THA 1965
## 15242                                             Thailand    TH   THA 1964
## 15243                                             Thailand    TH   THA 1963
## 15244                                             Thailand    TH   THA 1962
## 15245                                             Thailand    TH   THA 1961
## 15246                                             Thailand    TH   THA 1960
## 15247                                          Timor-Leste    TL   TLS 2022
## 15248                                          Timor-Leste    TL   TLS 2021
## 15249                                          Timor-Leste    TL   TLS 2020
## 15250                                          Timor-Leste    TL   TLS 2019
## 15251                                          Timor-Leste    TL   TLS 2018
## 15252                                          Timor-Leste    TL   TLS 2017
## 15253                                          Timor-Leste    TL   TLS 2016
## 15254                                          Timor-Leste    TL   TLS 2015
## 15255                                          Timor-Leste    TL   TLS 2014
## 15256                                          Timor-Leste    TL   TLS 2013
## 15257                                          Timor-Leste    TL   TLS 2012
## 15258                                          Timor-Leste    TL   TLS 2011
## 15259                                          Timor-Leste    TL   TLS 2010
## 15260                                          Timor-Leste    TL   TLS 2009
## 15261                                          Timor-Leste    TL   TLS 2008
## 15262                                          Timor-Leste    TL   TLS 2007
## 15263                                          Timor-Leste    TL   TLS 2006
## 15264                                          Timor-Leste    TL   TLS 2005
## 15265                                          Timor-Leste    TL   TLS 2004
## 15266                                          Timor-Leste    TL   TLS 2003
## 15267                                          Timor-Leste    TL   TLS 2002
## 15268                                          Timor-Leste    TL   TLS 2001
## 15269                                          Timor-Leste    TL   TLS 2000
## 15270                                          Timor-Leste    TL   TLS 1999
## 15271                                          Timor-Leste    TL   TLS 1998
## 15272                                          Timor-Leste    TL   TLS 1997
## 15273                                          Timor-Leste    TL   TLS 1996
## 15274                                          Timor-Leste    TL   TLS 1995
## 15275                                          Timor-Leste    TL   TLS 1994
## 15276                                          Timor-Leste    TL   TLS 1993
## 15277                                          Timor-Leste    TL   TLS 1992
## 15278                                          Timor-Leste    TL   TLS 1991
## 15279                                          Timor-Leste    TL   TLS 1990
## 15280                                          Timor-Leste    TL   TLS 1989
## 15281                                          Timor-Leste    TL   TLS 1988
## 15282                                          Timor-Leste    TL   TLS 1987
## 15283                                          Timor-Leste    TL   TLS 1986
## 15284                                          Timor-Leste    TL   TLS 1985
## 15285                                          Timor-Leste    TL   TLS 1984
## 15286                                          Timor-Leste    TL   TLS 1983
## 15287                                          Timor-Leste    TL   TLS 1982
## 15288                                          Timor-Leste    TL   TLS 1981
## 15289                                          Timor-Leste    TL   TLS 1980
## 15290                                          Timor-Leste    TL   TLS 1979
## 15291                                          Timor-Leste    TL   TLS 1978
## 15292                                          Timor-Leste    TL   TLS 1977
## 15293                                          Timor-Leste    TL   TLS 1976
## 15294                                          Timor-Leste    TL   TLS 1975
## 15295                                          Timor-Leste    TL   TLS 1974
## 15296                                          Timor-Leste    TL   TLS 1973
## 15297                                          Timor-Leste    TL   TLS 1972
## 15298                                          Timor-Leste    TL   TLS 1971
## 15299                                          Timor-Leste    TL   TLS 1970
## 15300                                          Timor-Leste    TL   TLS 1969
## 15301                                          Timor-Leste    TL   TLS 1968
## 15302                                          Timor-Leste    TL   TLS 1967
## 15303                                          Timor-Leste    TL   TLS 1966
## 15304                                          Timor-Leste    TL   TLS 1965
## 15305                                          Timor-Leste    TL   TLS 1964
## 15306                                          Timor-Leste    TL   TLS 1963
## 15307                                          Timor-Leste    TL   TLS 1962
## 15308                                          Timor-Leste    TL   TLS 1961
## 15309                                          Timor-Leste    TL   TLS 1960
## 15310                                                 Togo    TG   TGO 2022
## 15311                                                 Togo    TG   TGO 2021
## 15312                                                 Togo    TG   TGO 2020
## 15313                                                 Togo    TG   TGO 2019
## 15314                                                 Togo    TG   TGO 2018
## 15315                                                 Togo    TG   TGO 2017
## 15316                                                 Togo    TG   TGO 2016
## 15317                                                 Togo    TG   TGO 2015
## 15318                                                 Togo    TG   TGO 2014
## 15319                                                 Togo    TG   TGO 2013
## 15320                                                 Togo    TG   TGO 2012
## 15321                                                 Togo    TG   TGO 2011
## 15322                                                 Togo    TG   TGO 2010
## 15323                                                 Togo    TG   TGO 2009
## 15324                                                 Togo    TG   TGO 2008
## 15325                                                 Togo    TG   TGO 2007
## 15326                                                 Togo    TG   TGO 2006
## 15327                                                 Togo    TG   TGO 2005
## 15328                                                 Togo    TG   TGO 2004
## 15329                                                 Togo    TG   TGO 2003
## 15330                                                 Togo    TG   TGO 2002
## 15331                                                 Togo    TG   TGO 2001
## 15332                                                 Togo    TG   TGO 2000
## 15333                                                 Togo    TG   TGO 1999
## 15334                                                 Togo    TG   TGO 1998
## 15335                                                 Togo    TG   TGO 1997
## 15336                                                 Togo    TG   TGO 1996
## 15337                                                 Togo    TG   TGO 1995
## 15338                                                 Togo    TG   TGO 1994
## 15339                                                 Togo    TG   TGO 1993
## 15340                                                 Togo    TG   TGO 1992
## 15341                                                 Togo    TG   TGO 1991
## 15342                                                 Togo    TG   TGO 1990
## 15343                                                 Togo    TG   TGO 1989
## 15344                                                 Togo    TG   TGO 1988
## 15345                                                 Togo    TG   TGO 1987
## 15346                                                 Togo    TG   TGO 1986
## 15347                                                 Togo    TG   TGO 1985
## 15348                                                 Togo    TG   TGO 1984
## 15349                                                 Togo    TG   TGO 1983
## 15350                                                 Togo    TG   TGO 1982
## 15351                                                 Togo    TG   TGO 1981
## 15352                                                 Togo    TG   TGO 1980
## 15353                                                 Togo    TG   TGO 1979
## 15354                                                 Togo    TG   TGO 1978
## 15355                                                 Togo    TG   TGO 1977
## 15356                                                 Togo    TG   TGO 1976
## 15357                                                 Togo    TG   TGO 1975
## 15358                                                 Togo    TG   TGO 1974
## 15359                                                 Togo    TG   TGO 1973
## 15360                                                 Togo    TG   TGO 1972
## 15361                                                 Togo    TG   TGO 1971
## 15362                                                 Togo    TG   TGO 1970
## 15363                                                 Togo    TG   TGO 1969
## 15364                                                 Togo    TG   TGO 1968
## 15365                                                 Togo    TG   TGO 1967
## 15366                                                 Togo    TG   TGO 1966
## 15367                                                 Togo    TG   TGO 1965
## 15368                                                 Togo    TG   TGO 1964
## 15369                                                 Togo    TG   TGO 1963
## 15370                                                 Togo    TG   TGO 1962
## 15371                                                 Togo    TG   TGO 1961
## 15372                                                 Togo    TG   TGO 1960
## 15373                                                Tonga    TO   TON 2022
## 15374                                                Tonga    TO   TON 2021
## 15375                                                Tonga    TO   TON 2020
## 15376                                                Tonga    TO   TON 2019
## 15377                                                Tonga    TO   TON 2018
## 15378                                                Tonga    TO   TON 2017
## 15379                                                Tonga    TO   TON 2016
## 15380                                                Tonga    TO   TON 2015
## 15381                                                Tonga    TO   TON 2014
## 15382                                                Tonga    TO   TON 2013
## 15383                                                Tonga    TO   TON 2012
## 15384                                                Tonga    TO   TON 2011
## 15385                                                Tonga    TO   TON 2010
## 15386                                                Tonga    TO   TON 2009
## 15387                                                Tonga    TO   TON 2008
## 15388                                                Tonga    TO   TON 2007
## 15389                                                Tonga    TO   TON 2006
## 15390                                                Tonga    TO   TON 2005
## 15391                                                Tonga    TO   TON 2004
## 15392                                                Tonga    TO   TON 2003
## 15393                                                Tonga    TO   TON 2002
## 15394                                                Tonga    TO   TON 2001
## 15395                                                Tonga    TO   TON 2000
## 15396                                                Tonga    TO   TON 1999
## 15397                                                Tonga    TO   TON 1998
## 15398                                                Tonga    TO   TON 1997
## 15399                                                Tonga    TO   TON 1996
## 15400                                                Tonga    TO   TON 1995
## 15401                                                Tonga    TO   TON 1994
## 15402                                                Tonga    TO   TON 1993
## 15403                                                Tonga    TO   TON 1992
## 15404                                                Tonga    TO   TON 1991
## 15405                                                Tonga    TO   TON 1990
## 15406                                                Tonga    TO   TON 1989
## 15407                                                Tonga    TO   TON 1988
## 15408                                                Tonga    TO   TON 1987
## 15409                                                Tonga    TO   TON 1986
## 15410                                                Tonga    TO   TON 1985
## 15411                                                Tonga    TO   TON 1984
## 15412                                                Tonga    TO   TON 1983
## 15413                                                Tonga    TO   TON 1982
## 15414                                                Tonga    TO   TON 1981
## 15415                                                Tonga    TO   TON 1980
## 15416                                                Tonga    TO   TON 1979
## 15417                                                Tonga    TO   TON 1978
## 15418                                                Tonga    TO   TON 1977
## 15419                                                Tonga    TO   TON 1976
## 15420                                                Tonga    TO   TON 1975
## 15421                                                Tonga    TO   TON 1974
## 15422                                                Tonga    TO   TON 1973
## 15423                                                Tonga    TO   TON 1972
## 15424                                                Tonga    TO   TON 1971
## 15425                                                Tonga    TO   TON 1970
## 15426                                                Tonga    TO   TON 1969
## 15427                                                Tonga    TO   TON 1968
## 15428                                                Tonga    TO   TON 1967
## 15429                                                Tonga    TO   TON 1966
## 15430                                                Tonga    TO   TON 1965
## 15431                                                Tonga    TO   TON 1964
## 15432                                                Tonga    TO   TON 1963
## 15433                                                Tonga    TO   TON 1962
## 15434                                                Tonga    TO   TON 1961
## 15435                                                Tonga    TO   TON 1960
## 15436                                  Trinidad and Tobago    TT   TTO 2022
## 15437                                  Trinidad and Tobago    TT   TTO 2021
## 15438                                  Trinidad and Tobago    TT   TTO 2020
## 15439                                  Trinidad and Tobago    TT   TTO 2019
## 15440                                  Trinidad and Tobago    TT   TTO 2018
## 15441                                  Trinidad and Tobago    TT   TTO 2017
## 15442                                  Trinidad and Tobago    TT   TTO 2016
## 15443                                  Trinidad and Tobago    TT   TTO 2015
## 15444                                  Trinidad and Tobago    TT   TTO 2014
## 15445                                  Trinidad and Tobago    TT   TTO 2013
## 15446                                  Trinidad and Tobago    TT   TTO 2012
## 15447                                  Trinidad and Tobago    TT   TTO 2011
## 15448                                  Trinidad and Tobago    TT   TTO 2010
## 15449                                  Trinidad and Tobago    TT   TTO 2009
## 15450                                  Trinidad and Tobago    TT   TTO 2008
## 15451                                  Trinidad and Tobago    TT   TTO 2007
## 15452                                  Trinidad and Tobago    TT   TTO 2006
## 15453                                  Trinidad and Tobago    TT   TTO 2005
## 15454                                  Trinidad and Tobago    TT   TTO 2004
## 15455                                  Trinidad and Tobago    TT   TTO 2003
## 15456                                  Trinidad and Tobago    TT   TTO 2002
## 15457                                  Trinidad and Tobago    TT   TTO 2001
## 15458                                  Trinidad and Tobago    TT   TTO 2000
## 15459                                  Trinidad and Tobago    TT   TTO 1999
## 15460                                  Trinidad and Tobago    TT   TTO 1998
## 15461                                  Trinidad and Tobago    TT   TTO 1997
## 15462                                  Trinidad and Tobago    TT   TTO 1996
## 15463                                  Trinidad and Tobago    TT   TTO 1995
## 15464                                  Trinidad and Tobago    TT   TTO 1994
## 15465                                  Trinidad and Tobago    TT   TTO 1993
## 15466                                  Trinidad and Tobago    TT   TTO 1992
## 15467                                  Trinidad and Tobago    TT   TTO 1991
## 15468                                  Trinidad and Tobago    TT   TTO 1990
## 15469                                  Trinidad and Tobago    TT   TTO 1989
## 15470                                  Trinidad and Tobago    TT   TTO 1988
## 15471                                  Trinidad and Tobago    TT   TTO 1987
## 15472                                  Trinidad and Tobago    TT   TTO 1986
## 15473                                  Trinidad and Tobago    TT   TTO 1985
## 15474                                  Trinidad and Tobago    TT   TTO 1984
## 15475                                  Trinidad and Tobago    TT   TTO 1983
## 15476                                  Trinidad and Tobago    TT   TTO 1982
## 15477                                  Trinidad and Tobago    TT   TTO 1981
## 15478                                  Trinidad and Tobago    TT   TTO 1980
## 15479                                  Trinidad and Tobago    TT   TTO 1979
## 15480                                  Trinidad and Tobago    TT   TTO 1978
## 15481                                  Trinidad and Tobago    TT   TTO 1977
## 15482                                  Trinidad and Tobago    TT   TTO 1976
## 15483                                  Trinidad and Tobago    TT   TTO 1975
## 15484                                  Trinidad and Tobago    TT   TTO 1974
## 15485                                  Trinidad and Tobago    TT   TTO 1973
## 15486                                  Trinidad and Tobago    TT   TTO 1972
## 15487                                  Trinidad and Tobago    TT   TTO 1971
## 15488                                  Trinidad and Tobago    TT   TTO 1970
## 15489                                  Trinidad and Tobago    TT   TTO 1969
## 15490                                  Trinidad and Tobago    TT   TTO 1968
## 15491                                  Trinidad and Tobago    TT   TTO 1967
## 15492                                  Trinidad and Tobago    TT   TTO 1966
## 15493                                  Trinidad and Tobago    TT   TTO 1965
## 15494                                  Trinidad and Tobago    TT   TTO 1964
## 15495                                  Trinidad and Tobago    TT   TTO 1963
## 15496                                  Trinidad and Tobago    TT   TTO 1962
## 15497                                  Trinidad and Tobago    TT   TTO 1961
## 15498                                  Trinidad and Tobago    TT   TTO 1960
## 15499                                              Tunisia    TN   TUN 2022
## 15500                                              Tunisia    TN   TUN 2021
## 15501                                              Tunisia    TN   TUN 2020
## 15502                                              Tunisia    TN   TUN 2019
## 15503                                              Tunisia    TN   TUN 2018
## 15504                                              Tunisia    TN   TUN 2017
## 15505                                              Tunisia    TN   TUN 2016
## 15506                                              Tunisia    TN   TUN 2015
## 15507                                              Tunisia    TN   TUN 2014
## 15508                                              Tunisia    TN   TUN 2013
## 15509                                              Tunisia    TN   TUN 2012
## 15510                                              Tunisia    TN   TUN 2011
## 15511                                              Tunisia    TN   TUN 2010
## 15512                                              Tunisia    TN   TUN 2009
## 15513                                              Tunisia    TN   TUN 2008
## 15514                                              Tunisia    TN   TUN 2007
## 15515                                              Tunisia    TN   TUN 2006
## 15516                                              Tunisia    TN   TUN 2005
## 15517                                              Tunisia    TN   TUN 2004
## 15518                                              Tunisia    TN   TUN 2003
## 15519                                              Tunisia    TN   TUN 2002
## 15520                                              Tunisia    TN   TUN 2001
## 15521                                              Tunisia    TN   TUN 2000
## 15522                                              Tunisia    TN   TUN 1999
## 15523                                              Tunisia    TN   TUN 1998
## 15524                                              Tunisia    TN   TUN 1997
## 15525                                              Tunisia    TN   TUN 1996
## 15526                                              Tunisia    TN   TUN 1995
## 15527                                              Tunisia    TN   TUN 1994
## 15528                                              Tunisia    TN   TUN 1993
## 15529                                              Tunisia    TN   TUN 1992
## 15530                                              Tunisia    TN   TUN 1991
## 15531                                              Tunisia    TN   TUN 1990
## 15532                                              Tunisia    TN   TUN 1989
## 15533                                              Tunisia    TN   TUN 1988
## 15534                                              Tunisia    TN   TUN 1987
## 15535                                              Tunisia    TN   TUN 1986
## 15536                                              Tunisia    TN   TUN 1985
## 15537                                              Tunisia    TN   TUN 1984
## 15538                                              Tunisia    TN   TUN 1983
## 15539                                              Tunisia    TN   TUN 1982
## 15540                                              Tunisia    TN   TUN 1981
## 15541                                              Tunisia    TN   TUN 1980
## 15542                                              Tunisia    TN   TUN 1979
## 15543                                              Tunisia    TN   TUN 1978
## 15544                                              Tunisia    TN   TUN 1977
## 15545                                              Tunisia    TN   TUN 1976
## 15546                                              Tunisia    TN   TUN 1975
## 15547                                              Tunisia    TN   TUN 1974
## 15548                                              Tunisia    TN   TUN 1973
## 15549                                              Tunisia    TN   TUN 1972
## 15550                                              Tunisia    TN   TUN 1971
## 15551                                              Tunisia    TN   TUN 1970
## 15552                                              Tunisia    TN   TUN 1969
## 15553                                              Tunisia    TN   TUN 1968
## 15554                                              Tunisia    TN   TUN 1967
## 15555                                              Tunisia    TN   TUN 1966
## 15556                                              Tunisia    TN   TUN 1965
## 15557                                              Tunisia    TN   TUN 1964
## 15558                                              Tunisia    TN   TUN 1963
## 15559                                              Tunisia    TN   TUN 1962
## 15560                                              Tunisia    TN   TUN 1961
## 15561                                              Tunisia    TN   TUN 1960
## 15562                                              Turkiye    TR   TUR 2022
## 15563                                              Turkiye    TR   TUR 2021
## 15564                                              Turkiye    TR   TUR 2020
## 15565                                              Turkiye    TR   TUR 2019
## 15566                                              Turkiye    TR   TUR 2018
## 15567                                              Turkiye    TR   TUR 2017
## 15568                                              Turkiye    TR   TUR 2016
## 15569                                              Turkiye    TR   TUR 2015
## 15570                                              Turkiye    TR   TUR 2014
## 15571                                              Turkiye    TR   TUR 2013
## 15572                                              Turkiye    TR   TUR 2012
## 15573                                              Turkiye    TR   TUR 2011
## 15574                                              Turkiye    TR   TUR 2010
## 15575                                              Turkiye    TR   TUR 2009
## 15576                                              Turkiye    TR   TUR 2008
## 15577                                              Turkiye    TR   TUR 2007
## 15578                                              Turkiye    TR   TUR 2006
## 15579                                              Turkiye    TR   TUR 2005
## 15580                                              Turkiye    TR   TUR 2004
## 15581                                              Turkiye    TR   TUR 2003
## 15582                                              Turkiye    TR   TUR 2002
## 15583                                              Turkiye    TR   TUR 2001
## 15584                                              Turkiye    TR   TUR 2000
## 15585                                              Turkiye    TR   TUR 1999
## 15586                                              Turkiye    TR   TUR 1998
## 15587                                              Turkiye    TR   TUR 1997
## 15588                                              Turkiye    TR   TUR 1996
## 15589                                              Turkiye    TR   TUR 1995
## 15590                                              Turkiye    TR   TUR 1994
## 15591                                              Turkiye    TR   TUR 1993
## 15592                                              Turkiye    TR   TUR 1992
## 15593                                              Turkiye    TR   TUR 1991
## 15594                                              Turkiye    TR   TUR 1990
## 15595                                              Turkiye    TR   TUR 1989
## 15596                                              Turkiye    TR   TUR 1988
## 15597                                              Turkiye    TR   TUR 1987
## 15598                                              Turkiye    TR   TUR 1986
## 15599                                              Turkiye    TR   TUR 1985
## 15600                                              Turkiye    TR   TUR 1984
## 15601                                              Turkiye    TR   TUR 1983
## 15602                                              Turkiye    TR   TUR 1982
## 15603                                              Turkiye    TR   TUR 1981
## 15604                                              Turkiye    TR   TUR 1980
## 15605                                              Turkiye    TR   TUR 1979
## 15606                                              Turkiye    TR   TUR 1978
## 15607                                              Turkiye    TR   TUR 1977
## 15608                                              Turkiye    TR   TUR 1976
## 15609                                              Turkiye    TR   TUR 1975
## 15610                                              Turkiye    TR   TUR 1974
## 15611                                              Turkiye    TR   TUR 1973
## 15612                                              Turkiye    TR   TUR 1972
## 15613                                              Turkiye    TR   TUR 1971
## 15614                                              Turkiye    TR   TUR 1970
## 15615                                              Turkiye    TR   TUR 1969
## 15616                                              Turkiye    TR   TUR 1968
## 15617                                              Turkiye    TR   TUR 1967
## 15618                                              Turkiye    TR   TUR 1966
## 15619                                              Turkiye    TR   TUR 1965
## 15620                                              Turkiye    TR   TUR 1964
## 15621                                              Turkiye    TR   TUR 1963
## 15622                                              Turkiye    TR   TUR 1962
## 15623                                              Turkiye    TR   TUR 1961
## 15624                                              Turkiye    TR   TUR 1960
## 15625                                         Turkmenistan    TM   TKM 2022
## 15626                                         Turkmenistan    TM   TKM 2021
## 15627                                         Turkmenistan    TM   TKM 2020
## 15628                                         Turkmenistan    TM   TKM 2019
## 15629                                         Turkmenistan    TM   TKM 2018
## 15630                                         Turkmenistan    TM   TKM 2017
## 15631                                         Turkmenistan    TM   TKM 2016
## 15632                                         Turkmenistan    TM   TKM 2015
## 15633                                         Turkmenistan    TM   TKM 2014
## 15634                                         Turkmenistan    TM   TKM 2013
## 15635                                         Turkmenistan    TM   TKM 2012
## 15636                                         Turkmenistan    TM   TKM 2011
## 15637                                         Turkmenistan    TM   TKM 2010
## 15638                                         Turkmenistan    TM   TKM 2009
## 15639                                         Turkmenistan    TM   TKM 2008
## 15640                                         Turkmenistan    TM   TKM 2007
## 15641                                         Turkmenistan    TM   TKM 2006
## 15642                                         Turkmenistan    TM   TKM 2005
## 15643                                         Turkmenistan    TM   TKM 2004
## 15644                                         Turkmenistan    TM   TKM 2003
## 15645                                         Turkmenistan    TM   TKM 2002
## 15646                                         Turkmenistan    TM   TKM 2001
## 15647                                         Turkmenistan    TM   TKM 2000
## 15648                                         Turkmenistan    TM   TKM 1999
## 15649                                         Turkmenistan    TM   TKM 1998
## 15650                                         Turkmenistan    TM   TKM 1997
## 15651                                         Turkmenistan    TM   TKM 1996
## 15652                                         Turkmenistan    TM   TKM 1995
## 15653                                         Turkmenistan    TM   TKM 1994
## 15654                                         Turkmenistan    TM   TKM 1993
## 15655                                         Turkmenistan    TM   TKM 1992
## 15656                                         Turkmenistan    TM   TKM 1991
## 15657                                         Turkmenistan    TM   TKM 1990
## 15658                                         Turkmenistan    TM   TKM 1989
## 15659                                         Turkmenistan    TM   TKM 1988
## 15660                                         Turkmenistan    TM   TKM 1987
## 15661                                         Turkmenistan    TM   TKM 1986
## 15662                                         Turkmenistan    TM   TKM 1985
## 15663                                         Turkmenistan    TM   TKM 1984
## 15664                                         Turkmenistan    TM   TKM 1983
## 15665                                         Turkmenistan    TM   TKM 1982
## 15666                                         Turkmenistan    TM   TKM 1981
## 15667                                         Turkmenistan    TM   TKM 1980
## 15668                                         Turkmenistan    TM   TKM 1979
## 15669                                         Turkmenistan    TM   TKM 1978
## 15670                                         Turkmenistan    TM   TKM 1977
## 15671                                         Turkmenistan    TM   TKM 1976
## 15672                                         Turkmenistan    TM   TKM 1975
## 15673                                         Turkmenistan    TM   TKM 1974
## 15674                                         Turkmenistan    TM   TKM 1973
## 15675                                         Turkmenistan    TM   TKM 1972
## 15676                                         Turkmenistan    TM   TKM 1971
## 15677                                         Turkmenistan    TM   TKM 1970
## 15678                                         Turkmenistan    TM   TKM 1969
## 15679                                         Turkmenistan    TM   TKM 1968
## 15680                                         Turkmenistan    TM   TKM 1967
## 15681                                         Turkmenistan    TM   TKM 1966
## 15682                                         Turkmenistan    TM   TKM 1965
## 15683                                         Turkmenistan    TM   TKM 1964
## 15684                                         Turkmenistan    TM   TKM 1963
## 15685                                         Turkmenistan    TM   TKM 1962
## 15686                                         Turkmenistan    TM   TKM 1961
## 15687                                         Turkmenistan    TM   TKM 1960
## 15688                             Turks and Caicos Islands    TC   TCA 2022
## 15689                             Turks and Caicos Islands    TC   TCA 2021
## 15690                             Turks and Caicos Islands    TC   TCA 2020
## 15691                             Turks and Caicos Islands    TC   TCA 2019
## 15692                             Turks and Caicos Islands    TC   TCA 2018
## 15693                             Turks and Caicos Islands    TC   TCA 2017
## 15694                             Turks and Caicos Islands    TC   TCA 2016
## 15695                             Turks and Caicos Islands    TC   TCA 2015
## 15696                             Turks and Caicos Islands    TC   TCA 2014
## 15697                             Turks and Caicos Islands    TC   TCA 2013
## 15698                             Turks and Caicos Islands    TC   TCA 2012
## 15699                             Turks and Caicos Islands    TC   TCA 2011
## 15700                             Turks and Caicos Islands    TC   TCA 2010
## 15701                             Turks and Caicos Islands    TC   TCA 2009
## 15702                             Turks and Caicos Islands    TC   TCA 2008
## 15703                             Turks and Caicos Islands    TC   TCA 2007
## 15704                             Turks and Caicos Islands    TC   TCA 2006
## 15705                             Turks and Caicos Islands    TC   TCA 2005
## 15706                             Turks and Caicos Islands    TC   TCA 2004
## 15707                             Turks and Caicos Islands    TC   TCA 2003
## 15708                             Turks and Caicos Islands    TC   TCA 2002
## 15709                             Turks and Caicos Islands    TC   TCA 2001
## 15710                             Turks and Caicos Islands    TC   TCA 2000
## 15711                             Turks and Caicos Islands    TC   TCA 1999
## 15712                             Turks and Caicos Islands    TC   TCA 1998
## 15713                             Turks and Caicos Islands    TC   TCA 1997
## 15714                             Turks and Caicos Islands    TC   TCA 1996
## 15715                             Turks and Caicos Islands    TC   TCA 1995
## 15716                             Turks and Caicos Islands    TC   TCA 1994
## 15717                             Turks and Caicos Islands    TC   TCA 1993
## 15718                             Turks and Caicos Islands    TC   TCA 1992
## 15719                             Turks and Caicos Islands    TC   TCA 1991
## 15720                             Turks and Caicos Islands    TC   TCA 1990
## 15721                             Turks and Caicos Islands    TC   TCA 1989
## 15722                             Turks and Caicos Islands    TC   TCA 1988
## 15723                             Turks and Caicos Islands    TC   TCA 1987
## 15724                             Turks and Caicos Islands    TC   TCA 1986
## 15725                             Turks and Caicos Islands    TC   TCA 1985
## 15726                             Turks and Caicos Islands    TC   TCA 1984
## 15727                             Turks and Caicos Islands    TC   TCA 1983
## 15728                             Turks and Caicos Islands    TC   TCA 1982
## 15729                             Turks and Caicos Islands    TC   TCA 1981
## 15730                             Turks and Caicos Islands    TC   TCA 1980
## 15731                             Turks and Caicos Islands    TC   TCA 1979
## 15732                             Turks and Caicos Islands    TC   TCA 1978
## 15733                             Turks and Caicos Islands    TC   TCA 1977
## 15734                             Turks and Caicos Islands    TC   TCA 1976
## 15735                             Turks and Caicos Islands    TC   TCA 1975
## 15736                             Turks and Caicos Islands    TC   TCA 1974
## 15737                             Turks and Caicos Islands    TC   TCA 1973
## 15738                             Turks and Caicos Islands    TC   TCA 1972
## 15739                             Turks and Caicos Islands    TC   TCA 1971
## 15740                             Turks and Caicos Islands    TC   TCA 1970
## 15741                             Turks and Caicos Islands    TC   TCA 1969
## 15742                             Turks and Caicos Islands    TC   TCA 1968
## 15743                             Turks and Caicos Islands    TC   TCA 1967
## 15744                             Turks and Caicos Islands    TC   TCA 1966
## 15745                             Turks and Caicos Islands    TC   TCA 1965
## 15746                             Turks and Caicos Islands    TC   TCA 1964
## 15747                             Turks and Caicos Islands    TC   TCA 1963
## 15748                             Turks and Caicos Islands    TC   TCA 1962
## 15749                             Turks and Caicos Islands    TC   TCA 1961
## 15750                             Turks and Caicos Islands    TC   TCA 1960
## 15751                                               Tuvalu    TV   TUV 2022
## 15752                                               Tuvalu    TV   TUV 2021
## 15753                                               Tuvalu    TV   TUV 2020
## 15754                                               Tuvalu    TV   TUV 2019
## 15755                                               Tuvalu    TV   TUV 2018
## 15756                                               Tuvalu    TV   TUV 2017
## 15757                                               Tuvalu    TV   TUV 2016
## 15758                                               Tuvalu    TV   TUV 2015
## 15759                                               Tuvalu    TV   TUV 2014
## 15760                                               Tuvalu    TV   TUV 2013
## 15761                                               Tuvalu    TV   TUV 2012
## 15762                                               Tuvalu    TV   TUV 2011
## 15763                                               Tuvalu    TV   TUV 2010
## 15764                                               Tuvalu    TV   TUV 2009
## 15765                                               Tuvalu    TV   TUV 2008
## 15766                                               Tuvalu    TV   TUV 2007
## 15767                                               Tuvalu    TV   TUV 2006
## 15768                                               Tuvalu    TV   TUV 2005
## 15769                                               Tuvalu    TV   TUV 2004
## 15770                                               Tuvalu    TV   TUV 2003
## 15771                                               Tuvalu    TV   TUV 2002
## 15772                                               Tuvalu    TV   TUV 2001
## 15773                                               Tuvalu    TV   TUV 2000
## 15774                                               Tuvalu    TV   TUV 1999
## 15775                                               Tuvalu    TV   TUV 1998
## 15776                                               Tuvalu    TV   TUV 1997
## 15777                                               Tuvalu    TV   TUV 1996
## 15778                                               Tuvalu    TV   TUV 1995
## 15779                                               Tuvalu    TV   TUV 1994
## 15780                                               Tuvalu    TV   TUV 1993
## 15781                                               Tuvalu    TV   TUV 1992
## 15782                                               Tuvalu    TV   TUV 1991
## 15783                                               Tuvalu    TV   TUV 1990
## 15784                                               Tuvalu    TV   TUV 1989
## 15785                                               Tuvalu    TV   TUV 1988
## 15786                                               Tuvalu    TV   TUV 1987
## 15787                                               Tuvalu    TV   TUV 1986
## 15788                                               Tuvalu    TV   TUV 1985
## 15789                                               Tuvalu    TV   TUV 1984
## 15790                                               Tuvalu    TV   TUV 1983
## 15791                                               Tuvalu    TV   TUV 1982
## 15792                                               Tuvalu    TV   TUV 1981
## 15793                                               Tuvalu    TV   TUV 1980
## 15794                                               Tuvalu    TV   TUV 1979
## 15795                                               Tuvalu    TV   TUV 1978
## 15796                                               Tuvalu    TV   TUV 1977
## 15797                                               Tuvalu    TV   TUV 1976
## 15798                                               Tuvalu    TV   TUV 1975
## 15799                                               Tuvalu    TV   TUV 1974
## 15800                                               Tuvalu    TV   TUV 1973
## 15801                                               Tuvalu    TV   TUV 1972
## 15802                                               Tuvalu    TV   TUV 1971
## 15803                                               Tuvalu    TV   TUV 1970
## 15804                                               Tuvalu    TV   TUV 1969
## 15805                                               Tuvalu    TV   TUV 1968
## 15806                                               Tuvalu    TV   TUV 1967
## 15807                                               Tuvalu    TV   TUV 1966
## 15808                                               Tuvalu    TV   TUV 1965
## 15809                                               Tuvalu    TV   TUV 1964
## 15810                                               Tuvalu    TV   TUV 1963
## 15811                                               Tuvalu    TV   TUV 1962
## 15812                                               Tuvalu    TV   TUV 1961
## 15813                                               Tuvalu    TV   TUV 1960
## 15814                                               Uganda    UG   UGA 2022
## 15815                                               Uganda    UG   UGA 2021
## 15816                                               Uganda    UG   UGA 2020
## 15817                                               Uganda    UG   UGA 2019
## 15818                                               Uganda    UG   UGA 2018
## 15819                                               Uganda    UG   UGA 2017
## 15820                                               Uganda    UG   UGA 2016
## 15821                                               Uganda    UG   UGA 2015
## 15822                                               Uganda    UG   UGA 2014
## 15823                                               Uganda    UG   UGA 2013
## 15824                                               Uganda    UG   UGA 2012
## 15825                                               Uganda    UG   UGA 2011
## 15826                                               Uganda    UG   UGA 2010
## 15827                                               Uganda    UG   UGA 2009
## 15828                                               Uganda    UG   UGA 2008
## 15829                                               Uganda    UG   UGA 2007
## 15830                                               Uganda    UG   UGA 2006
## 15831                                               Uganda    UG   UGA 2005
## 15832                                               Uganda    UG   UGA 2004
## 15833                                               Uganda    UG   UGA 2003
## 15834                                               Uganda    UG   UGA 2002
## 15835                                               Uganda    UG   UGA 2001
## 15836                                               Uganda    UG   UGA 2000
## 15837                                               Uganda    UG   UGA 1999
## 15838                                               Uganda    UG   UGA 1998
## 15839                                               Uganda    UG   UGA 1997
## 15840                                               Uganda    UG   UGA 1996
## 15841                                               Uganda    UG   UGA 1995
## 15842                                               Uganda    UG   UGA 1994
## 15843                                               Uganda    UG   UGA 1993
## 15844                                               Uganda    UG   UGA 1992
## 15845                                               Uganda    UG   UGA 1991
## 15846                                               Uganda    UG   UGA 1990
## 15847                                               Uganda    UG   UGA 1989
## 15848                                               Uganda    UG   UGA 1988
## 15849                                               Uganda    UG   UGA 1987
## 15850                                               Uganda    UG   UGA 1986
## 15851                                               Uganda    UG   UGA 1985
## 15852                                               Uganda    UG   UGA 1984
## 15853                                               Uganda    UG   UGA 1983
## 15854                                               Uganda    UG   UGA 1982
## 15855                                               Uganda    UG   UGA 1981
## 15856                                               Uganda    UG   UGA 1980
## 15857                                               Uganda    UG   UGA 1979
## 15858                                               Uganda    UG   UGA 1978
## 15859                                               Uganda    UG   UGA 1977
## 15860                                               Uganda    UG   UGA 1976
## 15861                                               Uganda    UG   UGA 1975
## 15862                                               Uganda    UG   UGA 1974
## 15863                                               Uganda    UG   UGA 1973
## 15864                                               Uganda    UG   UGA 1972
## 15865                                               Uganda    UG   UGA 1971
## 15866                                               Uganda    UG   UGA 1970
## 15867                                               Uganda    UG   UGA 1969
## 15868                                               Uganda    UG   UGA 1968
## 15869                                               Uganda    UG   UGA 1967
## 15870                                               Uganda    UG   UGA 1966
## 15871                                               Uganda    UG   UGA 1965
## 15872                                               Uganda    UG   UGA 1964
## 15873                                               Uganda    UG   UGA 1963
## 15874                                               Uganda    UG   UGA 1962
## 15875                                               Uganda    UG   UGA 1961
## 15876                                               Uganda    UG   UGA 1960
## 15877                                              Ukraine    UA   UKR 2022
## 15878                                              Ukraine    UA   UKR 2021
## 15879                                              Ukraine    UA   UKR 2020
## 15880                                              Ukraine    UA   UKR 2019
## 15881                                              Ukraine    UA   UKR 2018
## 15882                                              Ukraine    UA   UKR 2017
## 15883                                              Ukraine    UA   UKR 2016
## 15884                                              Ukraine    UA   UKR 2015
## 15885                                              Ukraine    UA   UKR 2014
## 15886                                              Ukraine    UA   UKR 2013
## 15887                                              Ukraine    UA   UKR 2012
## 15888                                              Ukraine    UA   UKR 2011
## 15889                                              Ukraine    UA   UKR 2010
## 15890                                              Ukraine    UA   UKR 2009
## 15891                                              Ukraine    UA   UKR 2008
## 15892                                              Ukraine    UA   UKR 2007
## 15893                                              Ukraine    UA   UKR 2006
## 15894                                              Ukraine    UA   UKR 2005
## 15895                                              Ukraine    UA   UKR 2004
## 15896                                              Ukraine    UA   UKR 2003
## 15897                                              Ukraine    UA   UKR 2002
## 15898                                              Ukraine    UA   UKR 2001
## 15899                                              Ukraine    UA   UKR 2000
## 15900                                              Ukraine    UA   UKR 1999
## 15901                                              Ukraine    UA   UKR 1998
## 15902                                              Ukraine    UA   UKR 1997
## 15903                                              Ukraine    UA   UKR 1996
## 15904                                              Ukraine    UA   UKR 1995
## 15905                                              Ukraine    UA   UKR 1994
## 15906                                              Ukraine    UA   UKR 1993
## 15907                                              Ukraine    UA   UKR 1992
## 15908                                              Ukraine    UA   UKR 1991
## 15909                                              Ukraine    UA   UKR 1990
## 15910                                              Ukraine    UA   UKR 1989
## 15911                                              Ukraine    UA   UKR 1988
## 15912                                              Ukraine    UA   UKR 1987
## 15913                                              Ukraine    UA   UKR 1986
## 15914                                              Ukraine    UA   UKR 1985
## 15915                                              Ukraine    UA   UKR 1984
## 15916                                              Ukraine    UA   UKR 1983
## 15917                                              Ukraine    UA   UKR 1982
## 15918                                              Ukraine    UA   UKR 1981
## 15919                                              Ukraine    UA   UKR 1980
## 15920                                              Ukraine    UA   UKR 1979
## 15921                                              Ukraine    UA   UKR 1978
## 15922                                              Ukraine    UA   UKR 1977
## 15923                                              Ukraine    UA   UKR 1976
## 15924                                              Ukraine    UA   UKR 1975
## 15925                                              Ukraine    UA   UKR 1974
## 15926                                              Ukraine    UA   UKR 1973
## 15927                                              Ukraine    UA   UKR 1972
## 15928                                              Ukraine    UA   UKR 1971
## 15929                                              Ukraine    UA   UKR 1970
## 15930                                              Ukraine    UA   UKR 1969
## 15931                                              Ukraine    UA   UKR 1968
## 15932                                              Ukraine    UA   UKR 1967
## 15933                                              Ukraine    UA   UKR 1966
## 15934                                              Ukraine    UA   UKR 1965
## 15935                                              Ukraine    UA   UKR 1964
## 15936                                              Ukraine    UA   UKR 1963
## 15937                                              Ukraine    UA   UKR 1962
## 15938                                              Ukraine    UA   UKR 1961
## 15939                                              Ukraine    UA   UKR 1960
## 15940                                 United Arab Emirates    AE   ARE 2022
## 15941                                 United Arab Emirates    AE   ARE 2021
## 15942                                 United Arab Emirates    AE   ARE 2020
## 15943                                 United Arab Emirates    AE   ARE 2019
## 15944                                 United Arab Emirates    AE   ARE 2018
## 15945                                 United Arab Emirates    AE   ARE 2017
## 15946                                 United Arab Emirates    AE   ARE 2016
## 15947                                 United Arab Emirates    AE   ARE 2015
## 15948                                 United Arab Emirates    AE   ARE 2014
## 15949                                 United Arab Emirates    AE   ARE 2013
## 15950                                 United Arab Emirates    AE   ARE 2012
## 15951                                 United Arab Emirates    AE   ARE 2011
## 15952                                 United Arab Emirates    AE   ARE 2010
## 15953                                 United Arab Emirates    AE   ARE 2009
## 15954                                 United Arab Emirates    AE   ARE 2008
## 15955                                 United Arab Emirates    AE   ARE 2007
## 15956                                 United Arab Emirates    AE   ARE 2006
## 15957                                 United Arab Emirates    AE   ARE 2005
## 15958                                 United Arab Emirates    AE   ARE 2004
## 15959                                 United Arab Emirates    AE   ARE 2003
## 15960                                 United Arab Emirates    AE   ARE 2002
## 15961                                 United Arab Emirates    AE   ARE 2001
## 15962                                 United Arab Emirates    AE   ARE 2000
## 15963                                 United Arab Emirates    AE   ARE 1999
## 15964                                 United Arab Emirates    AE   ARE 1998
## 15965                                 United Arab Emirates    AE   ARE 1997
## 15966                                 United Arab Emirates    AE   ARE 1996
## 15967                                 United Arab Emirates    AE   ARE 1995
## 15968                                 United Arab Emirates    AE   ARE 1994
## 15969                                 United Arab Emirates    AE   ARE 1993
## 15970                                 United Arab Emirates    AE   ARE 1992
## 15971                                 United Arab Emirates    AE   ARE 1991
## 15972                                 United Arab Emirates    AE   ARE 1990
## 15973                                 United Arab Emirates    AE   ARE 1989
## 15974                                 United Arab Emirates    AE   ARE 1988
## 15975                                 United Arab Emirates    AE   ARE 1987
## 15976                                 United Arab Emirates    AE   ARE 1986
## 15977                                 United Arab Emirates    AE   ARE 1985
## 15978                                 United Arab Emirates    AE   ARE 1984
## 15979                                 United Arab Emirates    AE   ARE 1983
## 15980                                 United Arab Emirates    AE   ARE 1982
## 15981                                 United Arab Emirates    AE   ARE 1981
## 15982                                 United Arab Emirates    AE   ARE 1980
## 15983                                 United Arab Emirates    AE   ARE 1979
## 15984                                 United Arab Emirates    AE   ARE 1978
## 15985                                 United Arab Emirates    AE   ARE 1977
## 15986                                 United Arab Emirates    AE   ARE 1976
## 15987                                 United Arab Emirates    AE   ARE 1975
## 15988                                 United Arab Emirates    AE   ARE 1974
## 15989                                 United Arab Emirates    AE   ARE 1973
## 15990                                 United Arab Emirates    AE   ARE 1972
## 15991                                 United Arab Emirates    AE   ARE 1971
## 15992                                 United Arab Emirates    AE   ARE 1970
## 15993                                 United Arab Emirates    AE   ARE 1969
## 15994                                 United Arab Emirates    AE   ARE 1968
## 15995                                 United Arab Emirates    AE   ARE 1967
## 15996                                 United Arab Emirates    AE   ARE 1966
## 15997                                 United Arab Emirates    AE   ARE 1965
## 15998                                 United Arab Emirates    AE   ARE 1964
## 15999                                 United Arab Emirates    AE   ARE 1963
## 16000                                 United Arab Emirates    AE   ARE 1962
## 16001                                 United Arab Emirates    AE   ARE 1961
## 16002                                 United Arab Emirates    AE   ARE 1960
## 16003                                       United Kingdom    GB   GBR 2022
## 16004                                       United Kingdom    GB   GBR 2021
## 16005                                       United Kingdom    GB   GBR 2020
## 16006                                       United Kingdom    GB   GBR 2019
## 16007                                       United Kingdom    GB   GBR 2018
## 16008                                       United Kingdom    GB   GBR 2017
## 16009                                       United Kingdom    GB   GBR 2016
## 16010                                       United Kingdom    GB   GBR 2015
## 16011                                       United Kingdom    GB   GBR 2014
## 16012                                       United Kingdom    GB   GBR 2013
## 16013                                       United Kingdom    GB   GBR 2012
## 16014                                       United Kingdom    GB   GBR 2011
## 16015                                       United Kingdom    GB   GBR 2010
## 16016                                       United Kingdom    GB   GBR 2009
## 16017                                       United Kingdom    GB   GBR 2008
## 16018                                       United Kingdom    GB   GBR 2007
## 16019                                       United Kingdom    GB   GBR 2006
## 16020                                       United Kingdom    GB   GBR 2005
## 16021                                       United Kingdom    GB   GBR 2004
## 16022                                       United Kingdom    GB   GBR 2003
## 16023                                       United Kingdom    GB   GBR 2002
## 16024                                       United Kingdom    GB   GBR 2001
## 16025                                       United Kingdom    GB   GBR 2000
## 16026                                       United Kingdom    GB   GBR 1999
## 16027                                       United Kingdom    GB   GBR 1998
## 16028                                       United Kingdom    GB   GBR 1997
## 16029                                       United Kingdom    GB   GBR 1996
## 16030                                       United Kingdom    GB   GBR 1995
## 16031                                       United Kingdom    GB   GBR 1994
## 16032                                       United Kingdom    GB   GBR 1993
## 16033                                       United Kingdom    GB   GBR 1992
## 16034                                       United Kingdom    GB   GBR 1991
## 16035                                       United Kingdom    GB   GBR 1990
## 16036                                       United Kingdom    GB   GBR 1989
## 16037                                       United Kingdom    GB   GBR 1988
## 16038                                       United Kingdom    GB   GBR 1987
## 16039                                       United Kingdom    GB   GBR 1986
## 16040                                       United Kingdom    GB   GBR 1985
## 16041                                       United Kingdom    GB   GBR 1984
## 16042                                       United Kingdom    GB   GBR 1983
## 16043                                       United Kingdom    GB   GBR 1982
## 16044                                       United Kingdom    GB   GBR 1981
## 16045                                       United Kingdom    GB   GBR 1980
## 16046                                       United Kingdom    GB   GBR 1979
## 16047                                       United Kingdom    GB   GBR 1978
## 16048                                       United Kingdom    GB   GBR 1977
## 16049                                       United Kingdom    GB   GBR 1976
## 16050                                       United Kingdom    GB   GBR 1975
## 16051                                       United Kingdom    GB   GBR 1974
## 16052                                       United Kingdom    GB   GBR 1973
## 16053                                       United Kingdom    GB   GBR 1972
## 16054                                       United Kingdom    GB   GBR 1971
## 16055                                       United Kingdom    GB   GBR 1970
## 16056                                       United Kingdom    GB   GBR 1969
## 16057                                       United Kingdom    GB   GBR 1968
## 16058                                       United Kingdom    GB   GBR 1967
## 16059                                       United Kingdom    GB   GBR 1966
## 16060                                       United Kingdom    GB   GBR 1965
## 16061                                       United Kingdom    GB   GBR 1964
## 16062                                       United Kingdom    GB   GBR 1963
## 16063                                       United Kingdom    GB   GBR 1962
## 16064                                       United Kingdom    GB   GBR 1961
## 16065                                       United Kingdom    GB   GBR 1960
## 16066                                        United States    US   USA 2022
## 16067                                        United States    US   USA 2021
## 16068                                        United States    US   USA 2020
## 16069                                        United States    US   USA 2019
## 16070                                        United States    US   USA 2018
## 16071                                        United States    US   USA 2017
## 16072                                        United States    US   USA 2016
## 16073                                        United States    US   USA 2015
## 16074                                        United States    US   USA 2014
## 16075                                        United States    US   USA 2013
## 16076                                        United States    US   USA 2012
## 16077                                        United States    US   USA 2011
## 16078                                        United States    US   USA 2010
## 16079                                        United States    US   USA 2009
## 16080                                        United States    US   USA 2008
## 16081                                        United States    US   USA 2007
## 16082                                        United States    US   USA 2006
## 16083                                        United States    US   USA 2005
## 16084                                        United States    US   USA 2004
## 16085                                        United States    US   USA 2003
## 16086                                        United States    US   USA 2002
## 16087                                        United States    US   USA 2001
## 16088                                        United States    US   USA 2000
## 16089                                        United States    US   USA 1999
## 16090                                        United States    US   USA 1998
## 16091                                        United States    US   USA 1997
## 16092                                        United States    US   USA 1996
## 16093                                        United States    US   USA 1995
## 16094                                        United States    US   USA 1994
## 16095                                        United States    US   USA 1993
## 16096                                        United States    US   USA 1992
## 16097                                        United States    US   USA 1991
## 16098                                        United States    US   USA 1990
## 16099                                        United States    US   USA 1989
## 16100                                        United States    US   USA 1988
## 16101                                        United States    US   USA 1987
## 16102                                        United States    US   USA 1986
## 16103                                        United States    US   USA 1985
## 16104                                        United States    US   USA 1984
## 16105                                        United States    US   USA 1983
## 16106                                        United States    US   USA 1982
## 16107                                        United States    US   USA 1981
## 16108                                        United States    US   USA 1980
## 16109                                        United States    US   USA 1979
## 16110                                        United States    US   USA 1978
## 16111                                        United States    US   USA 1977
## 16112                                        United States    US   USA 1976
## 16113                                        United States    US   USA 1975
## 16114                                        United States    US   USA 1974
## 16115                                        United States    US   USA 1973
## 16116                                        United States    US   USA 1972
## 16117                                        United States    US   USA 1971
## 16118                                        United States    US   USA 1970
## 16119                                        United States    US   USA 1969
## 16120                                        United States    US   USA 1968
## 16121                                        United States    US   USA 1967
## 16122                                        United States    US   USA 1966
## 16123                                        United States    US   USA 1965
## 16124                                        United States    US   USA 1964
## 16125                                        United States    US   USA 1963
## 16126                                        United States    US   USA 1962
## 16127                                        United States    US   USA 1961
## 16128                                        United States    US   USA 1960
## 16129                                              Uruguay    UY   URY 2022
## 16130                                              Uruguay    UY   URY 2021
## 16131                                              Uruguay    UY   URY 2020
## 16132                                              Uruguay    UY   URY 2019
## 16133                                              Uruguay    UY   URY 2018
## 16134                                              Uruguay    UY   URY 2017
## 16135                                              Uruguay    UY   URY 2016
## 16136                                              Uruguay    UY   URY 2015
## 16137                                              Uruguay    UY   URY 2014
## 16138                                              Uruguay    UY   URY 2013
## 16139                                              Uruguay    UY   URY 2012
## 16140                                              Uruguay    UY   URY 2011
## 16141                                              Uruguay    UY   URY 2010
## 16142                                              Uruguay    UY   URY 2009
## 16143                                              Uruguay    UY   URY 2008
## 16144                                              Uruguay    UY   URY 2007
## 16145                                              Uruguay    UY   URY 2006
## 16146                                              Uruguay    UY   URY 2005
## 16147                                              Uruguay    UY   URY 2004
## 16148                                              Uruguay    UY   URY 2003
## 16149                                              Uruguay    UY   URY 2002
## 16150                                              Uruguay    UY   URY 2001
## 16151                                              Uruguay    UY   URY 2000
## 16152                                              Uruguay    UY   URY 1999
## 16153                                              Uruguay    UY   URY 1998
## 16154                                              Uruguay    UY   URY 1997
## 16155                                              Uruguay    UY   URY 1996
## 16156                                              Uruguay    UY   URY 1995
## 16157                                              Uruguay    UY   URY 1994
## 16158                                              Uruguay    UY   URY 1993
## 16159                                              Uruguay    UY   URY 1992
## 16160                                              Uruguay    UY   URY 1991
## 16161                                              Uruguay    UY   URY 1990
## 16162                                              Uruguay    UY   URY 1989
## 16163                                              Uruguay    UY   URY 1988
## 16164                                              Uruguay    UY   URY 1987
## 16165                                              Uruguay    UY   URY 1986
## 16166                                              Uruguay    UY   URY 1985
## 16167                                              Uruguay    UY   URY 1984
## 16168                                              Uruguay    UY   URY 1983
## 16169                                              Uruguay    UY   URY 1982
## 16170                                              Uruguay    UY   URY 1981
## 16171                                              Uruguay    UY   URY 1980
## 16172                                              Uruguay    UY   URY 1979
## 16173                                              Uruguay    UY   URY 1978
## 16174                                              Uruguay    UY   URY 1977
## 16175                                              Uruguay    UY   URY 1976
## 16176                                              Uruguay    UY   URY 1975
## 16177                                              Uruguay    UY   URY 1974
## 16178                                              Uruguay    UY   URY 1973
## 16179                                              Uruguay    UY   URY 1972
## 16180                                              Uruguay    UY   URY 1971
## 16181                                              Uruguay    UY   URY 1970
## 16182                                              Uruguay    UY   URY 1969
## 16183                                              Uruguay    UY   URY 1968
## 16184                                              Uruguay    UY   URY 1967
## 16185                                              Uruguay    UY   URY 1966
## 16186                                              Uruguay    UY   URY 1965
## 16187                                              Uruguay    UY   URY 1964
## 16188                                              Uruguay    UY   URY 1963
## 16189                                              Uruguay    UY   URY 1962
## 16190                                              Uruguay    UY   URY 1961
## 16191                                              Uruguay    UY   URY 1960
## 16192                                           Uzbekistan    UZ   UZB 2022
## 16193                                           Uzbekistan    UZ   UZB 2021
## 16194                                           Uzbekistan    UZ   UZB 2020
## 16195                                           Uzbekistan    UZ   UZB 2019
## 16196                                           Uzbekistan    UZ   UZB 2018
## 16197                                           Uzbekistan    UZ   UZB 2017
## 16198                                           Uzbekistan    UZ   UZB 2016
## 16199                                           Uzbekistan    UZ   UZB 2015
## 16200                                           Uzbekistan    UZ   UZB 2014
## 16201                                           Uzbekistan    UZ   UZB 2013
## 16202                                           Uzbekistan    UZ   UZB 2012
## 16203                                           Uzbekistan    UZ   UZB 2011
## 16204                                           Uzbekistan    UZ   UZB 2010
## 16205                                           Uzbekistan    UZ   UZB 2009
## 16206                                           Uzbekistan    UZ   UZB 2008
## 16207                                           Uzbekistan    UZ   UZB 2007
## 16208                                           Uzbekistan    UZ   UZB 2006
## 16209                                           Uzbekistan    UZ   UZB 2005
## 16210                                           Uzbekistan    UZ   UZB 2004
## 16211                                           Uzbekistan    UZ   UZB 2003
## 16212                                           Uzbekistan    UZ   UZB 2002
## 16213                                           Uzbekistan    UZ   UZB 2001
## 16214                                           Uzbekistan    UZ   UZB 2000
## 16215                                           Uzbekistan    UZ   UZB 1999
## 16216                                           Uzbekistan    UZ   UZB 1998
## 16217                                           Uzbekistan    UZ   UZB 1997
## 16218                                           Uzbekistan    UZ   UZB 1996
## 16219                                           Uzbekistan    UZ   UZB 1995
## 16220                                           Uzbekistan    UZ   UZB 1994
## 16221                                           Uzbekistan    UZ   UZB 1993
## 16222                                           Uzbekistan    UZ   UZB 1992
## 16223                                           Uzbekistan    UZ   UZB 1991
## 16224                                           Uzbekistan    UZ   UZB 1990
## 16225                                           Uzbekistan    UZ   UZB 1989
## 16226                                           Uzbekistan    UZ   UZB 1988
## 16227                                           Uzbekistan    UZ   UZB 1987
## 16228                                           Uzbekistan    UZ   UZB 1986
## 16229                                           Uzbekistan    UZ   UZB 1985
## 16230                                           Uzbekistan    UZ   UZB 1984
## 16231                                           Uzbekistan    UZ   UZB 1983
## 16232                                           Uzbekistan    UZ   UZB 1982
## 16233                                           Uzbekistan    UZ   UZB 1981
## 16234                                           Uzbekistan    UZ   UZB 1980
## 16235                                           Uzbekistan    UZ   UZB 1979
## 16236                                           Uzbekistan    UZ   UZB 1978
## 16237                                           Uzbekistan    UZ   UZB 1977
## 16238                                           Uzbekistan    UZ   UZB 1976
## 16239                                           Uzbekistan    UZ   UZB 1975
## 16240                                           Uzbekistan    UZ   UZB 1974
## 16241                                           Uzbekistan    UZ   UZB 1973
## 16242                                           Uzbekistan    UZ   UZB 1972
## 16243                                           Uzbekistan    UZ   UZB 1971
## 16244                                           Uzbekistan    UZ   UZB 1970
## 16245                                           Uzbekistan    UZ   UZB 1969
## 16246                                           Uzbekistan    UZ   UZB 1968
## 16247                                           Uzbekistan    UZ   UZB 1967
## 16248                                           Uzbekistan    UZ   UZB 1966
## 16249                                           Uzbekistan    UZ   UZB 1965
## 16250                                           Uzbekistan    UZ   UZB 1964
## 16251                                           Uzbekistan    UZ   UZB 1963
## 16252                                           Uzbekistan    UZ   UZB 1962
## 16253                                           Uzbekistan    UZ   UZB 1961
## 16254                                           Uzbekistan    UZ   UZB 1960
## 16255                                              Vanuatu    VU   VUT 2022
## 16256                                              Vanuatu    VU   VUT 2021
## 16257                                              Vanuatu    VU   VUT 2020
## 16258                                              Vanuatu    VU   VUT 2019
## 16259                                              Vanuatu    VU   VUT 2018
## 16260                                              Vanuatu    VU   VUT 2017
## 16261                                              Vanuatu    VU   VUT 2016
## 16262                                              Vanuatu    VU   VUT 2015
## 16263                                              Vanuatu    VU   VUT 2014
## 16264                                              Vanuatu    VU   VUT 2013
## 16265                                              Vanuatu    VU   VUT 2012
## 16266                                              Vanuatu    VU   VUT 2011
## 16267                                              Vanuatu    VU   VUT 2010
## 16268                                              Vanuatu    VU   VUT 2009
## 16269                                              Vanuatu    VU   VUT 2008
## 16270                                              Vanuatu    VU   VUT 2007
## 16271                                              Vanuatu    VU   VUT 2006
## 16272                                              Vanuatu    VU   VUT 2005
## 16273                                              Vanuatu    VU   VUT 2004
## 16274                                              Vanuatu    VU   VUT 2003
## 16275                                              Vanuatu    VU   VUT 2002
## 16276                                              Vanuatu    VU   VUT 2001
## 16277                                              Vanuatu    VU   VUT 2000
## 16278                                              Vanuatu    VU   VUT 1999
## 16279                                              Vanuatu    VU   VUT 1998
## 16280                                              Vanuatu    VU   VUT 1997
## 16281                                              Vanuatu    VU   VUT 1996
## 16282                                              Vanuatu    VU   VUT 1995
## 16283                                              Vanuatu    VU   VUT 1994
## 16284                                              Vanuatu    VU   VUT 1993
## 16285                                              Vanuatu    VU   VUT 1992
## 16286                                              Vanuatu    VU   VUT 1991
## 16287                                              Vanuatu    VU   VUT 1990
## 16288                                              Vanuatu    VU   VUT 1989
## 16289                                              Vanuatu    VU   VUT 1988
## 16290                                              Vanuatu    VU   VUT 1987
## 16291                                              Vanuatu    VU   VUT 1986
## 16292                                              Vanuatu    VU   VUT 1985
## 16293                                              Vanuatu    VU   VUT 1984
## 16294                                              Vanuatu    VU   VUT 1983
## 16295                                              Vanuatu    VU   VUT 1982
## 16296                                              Vanuatu    VU   VUT 1981
## 16297                                              Vanuatu    VU   VUT 1980
## 16298                                              Vanuatu    VU   VUT 1979
## 16299                                              Vanuatu    VU   VUT 1978
## 16300                                              Vanuatu    VU   VUT 1977
## 16301                                              Vanuatu    VU   VUT 1976
## 16302                                              Vanuatu    VU   VUT 1975
## 16303                                              Vanuatu    VU   VUT 1974
## 16304                                              Vanuatu    VU   VUT 1973
## 16305                                              Vanuatu    VU   VUT 1972
## 16306                                              Vanuatu    VU   VUT 1971
## 16307                                              Vanuatu    VU   VUT 1970
## 16308                                              Vanuatu    VU   VUT 1969
## 16309                                              Vanuatu    VU   VUT 1968
## 16310                                              Vanuatu    VU   VUT 1967
## 16311                                              Vanuatu    VU   VUT 1966
## 16312                                              Vanuatu    VU   VUT 1965
## 16313                                              Vanuatu    VU   VUT 1964
## 16314                                              Vanuatu    VU   VUT 1963
## 16315                                              Vanuatu    VU   VUT 1962
## 16316                                              Vanuatu    VU   VUT 1961
## 16317                                              Vanuatu    VU   VUT 1960
## 16318                                        Venezuela, RB    VE   VEN 2022
## 16319                                        Venezuela, RB    VE   VEN 2021
## 16320                                        Venezuela, RB    VE   VEN 2020
## 16321                                        Venezuela, RB    VE   VEN 2019
## 16322                                        Venezuela, RB    VE   VEN 2018
## 16323                                        Venezuela, RB    VE   VEN 2017
## 16324                                        Venezuela, RB    VE   VEN 2016
## 16325                                        Venezuela, RB    VE   VEN 2015
## 16326                                        Venezuela, RB    VE   VEN 2014
## 16327                                        Venezuela, RB    VE   VEN 2013
## 16328                                        Venezuela, RB    VE   VEN 2012
## 16329                                        Venezuela, RB    VE   VEN 2011
## 16330                                        Venezuela, RB    VE   VEN 2010
## 16331                                        Venezuela, RB    VE   VEN 2009
## 16332                                        Venezuela, RB    VE   VEN 2008
## 16333                                        Venezuela, RB    VE   VEN 2007
## 16334                                        Venezuela, RB    VE   VEN 2006
## 16335                                        Venezuela, RB    VE   VEN 2005
## 16336                                        Venezuela, RB    VE   VEN 2004
## 16337                                        Venezuela, RB    VE   VEN 2003
## 16338                                        Venezuela, RB    VE   VEN 2002
## 16339                                        Venezuela, RB    VE   VEN 2001
## 16340                                        Venezuela, RB    VE   VEN 2000
## 16341                                        Venezuela, RB    VE   VEN 1999
## 16342                                        Venezuela, RB    VE   VEN 1998
## 16343                                        Venezuela, RB    VE   VEN 1997
## 16344                                        Venezuela, RB    VE   VEN 1996
## 16345                                        Venezuela, RB    VE   VEN 1995
## 16346                                        Venezuela, RB    VE   VEN 1994
## 16347                                        Venezuela, RB    VE   VEN 1993
## 16348                                        Venezuela, RB    VE   VEN 1992
## 16349                                        Venezuela, RB    VE   VEN 1991
## 16350                                        Venezuela, RB    VE   VEN 1990
## 16351                                        Venezuela, RB    VE   VEN 1989
## 16352                                        Venezuela, RB    VE   VEN 1988
## 16353                                        Venezuela, RB    VE   VEN 1987
## 16354                                        Venezuela, RB    VE   VEN 1986
## 16355                                        Venezuela, RB    VE   VEN 1985
## 16356                                        Venezuela, RB    VE   VEN 1984
## 16357                                        Venezuela, RB    VE   VEN 1983
## 16358                                        Venezuela, RB    VE   VEN 1982
## 16359                                        Venezuela, RB    VE   VEN 1981
## 16360                                        Venezuela, RB    VE   VEN 1980
## 16361                                        Venezuela, RB    VE   VEN 1979
## 16362                                        Venezuela, RB    VE   VEN 1978
## 16363                                        Venezuela, RB    VE   VEN 1977
## 16364                                        Venezuela, RB    VE   VEN 1976
## 16365                                        Venezuela, RB    VE   VEN 1975
## 16366                                        Venezuela, RB    VE   VEN 1974
## 16367                                        Venezuela, RB    VE   VEN 1973
## 16368                                        Venezuela, RB    VE   VEN 1972
## 16369                                        Venezuela, RB    VE   VEN 1971
## 16370                                        Venezuela, RB    VE   VEN 1970
## 16371                                        Venezuela, RB    VE   VEN 1969
## 16372                                        Venezuela, RB    VE   VEN 1968
## 16373                                        Venezuela, RB    VE   VEN 1967
## 16374                                        Venezuela, RB    VE   VEN 1966
## 16375                                        Venezuela, RB    VE   VEN 1965
## 16376                                        Venezuela, RB    VE   VEN 1964
## 16377                                        Venezuela, RB    VE   VEN 1963
## 16378                                        Venezuela, RB    VE   VEN 1962
## 16379                                        Venezuela, RB    VE   VEN 1961
## 16380                                        Venezuela, RB    VE   VEN 1960
## 16381                                              Vietnam    VN   VNM 2022
## 16382                                              Vietnam    VN   VNM 2021
## 16383                                              Vietnam    VN   VNM 2020
## 16384                                              Vietnam    VN   VNM 2019
## 16385                                              Vietnam    VN   VNM 2018
## 16386                                              Vietnam    VN   VNM 2017
## 16387                                              Vietnam    VN   VNM 2016
## 16388                                              Vietnam    VN   VNM 2015
## 16389                                              Vietnam    VN   VNM 2014
## 16390                                              Vietnam    VN   VNM 2013
## 16391                                              Vietnam    VN   VNM 2012
## 16392                                              Vietnam    VN   VNM 2011
## 16393                                              Vietnam    VN   VNM 2010
## 16394                                              Vietnam    VN   VNM 2009
## 16395                                              Vietnam    VN   VNM 2008
## 16396                                              Vietnam    VN   VNM 2007
## 16397                                              Vietnam    VN   VNM 2006
## 16398                                              Vietnam    VN   VNM 2005
## 16399                                              Vietnam    VN   VNM 2004
## 16400                                              Vietnam    VN   VNM 2003
## 16401                                              Vietnam    VN   VNM 2002
## 16402                                              Vietnam    VN   VNM 2001
## 16403                                              Vietnam    VN   VNM 2000
## 16404                                              Vietnam    VN   VNM 1999
## 16405                                              Vietnam    VN   VNM 1998
## 16406                                              Vietnam    VN   VNM 1997
## 16407                                              Vietnam    VN   VNM 1996
## 16408                                              Vietnam    VN   VNM 1995
## 16409                                              Vietnam    VN   VNM 1994
## 16410                                              Vietnam    VN   VNM 1993
## 16411                                              Vietnam    VN   VNM 1992
## 16412                                              Vietnam    VN   VNM 1991
## 16413                                              Vietnam    VN   VNM 1990
## 16414                                              Vietnam    VN   VNM 1989
## 16415                                              Vietnam    VN   VNM 1988
## 16416                                              Vietnam    VN   VNM 1987
## 16417                                              Vietnam    VN   VNM 1986
## 16418                                              Vietnam    VN   VNM 1985
## 16419                                              Vietnam    VN   VNM 1984
## 16420                                              Vietnam    VN   VNM 1983
## 16421                                              Vietnam    VN   VNM 1982
## 16422                                              Vietnam    VN   VNM 1981
## 16423                                              Vietnam    VN   VNM 1980
## 16424                                              Vietnam    VN   VNM 1979
## 16425                                              Vietnam    VN   VNM 1978
## 16426                                              Vietnam    VN   VNM 1977
## 16427                                              Vietnam    VN   VNM 1976
## 16428                                              Vietnam    VN   VNM 1975
## 16429                                              Vietnam    VN   VNM 1974
## 16430                                              Vietnam    VN   VNM 1973
## 16431                                              Vietnam    VN   VNM 1972
## 16432                                              Vietnam    VN   VNM 1971
## 16433                                              Vietnam    VN   VNM 1970
## 16434                                              Vietnam    VN   VNM 1969
## 16435                                              Vietnam    VN   VNM 1968
## 16436                                              Vietnam    VN   VNM 1967
## 16437                                              Vietnam    VN   VNM 1966
## 16438                                              Vietnam    VN   VNM 1965
## 16439                                              Vietnam    VN   VNM 1964
## 16440                                              Vietnam    VN   VNM 1963
## 16441                                              Vietnam    VN   VNM 1962
## 16442                                              Vietnam    VN   VNM 1961
## 16443                                              Vietnam    VN   VNM 1960
## 16444                                Virgin Islands (U.S.)    VI   VIR 2022
## 16445                                Virgin Islands (U.S.)    VI   VIR 2021
## 16446                                Virgin Islands (U.S.)    VI   VIR 2020
## 16447                                Virgin Islands (U.S.)    VI   VIR 2019
## 16448                                Virgin Islands (U.S.)    VI   VIR 2018
## 16449                                Virgin Islands (U.S.)    VI   VIR 2017
## 16450                                Virgin Islands (U.S.)    VI   VIR 2016
## 16451                                Virgin Islands (U.S.)    VI   VIR 2015
## 16452                                Virgin Islands (U.S.)    VI   VIR 2014
## 16453                                Virgin Islands (U.S.)    VI   VIR 2013
## 16454                                Virgin Islands (U.S.)    VI   VIR 2012
## 16455                                Virgin Islands (U.S.)    VI   VIR 2011
## 16456                                Virgin Islands (U.S.)    VI   VIR 2010
## 16457                                Virgin Islands (U.S.)    VI   VIR 2009
## 16458                                Virgin Islands (U.S.)    VI   VIR 2008
## 16459                                Virgin Islands (U.S.)    VI   VIR 2007
## 16460                                Virgin Islands (U.S.)    VI   VIR 2006
## 16461                                Virgin Islands (U.S.)    VI   VIR 2005
## 16462                                Virgin Islands (U.S.)    VI   VIR 2004
## 16463                                Virgin Islands (U.S.)    VI   VIR 2003
## 16464                                Virgin Islands (U.S.)    VI   VIR 2002
## 16465                                Virgin Islands (U.S.)    VI   VIR 2001
## 16466                                Virgin Islands (U.S.)    VI   VIR 2000
## 16467                                Virgin Islands (U.S.)    VI   VIR 1999
## 16468                                Virgin Islands (U.S.)    VI   VIR 1998
## 16469                                Virgin Islands (U.S.)    VI   VIR 1997
## 16470                                Virgin Islands (U.S.)    VI   VIR 1996
## 16471                                Virgin Islands (U.S.)    VI   VIR 1995
## 16472                                Virgin Islands (U.S.)    VI   VIR 1994
## 16473                                Virgin Islands (U.S.)    VI   VIR 1993
## 16474                                Virgin Islands (U.S.)    VI   VIR 1992
## 16475                                Virgin Islands (U.S.)    VI   VIR 1991
## 16476                                Virgin Islands (U.S.)    VI   VIR 1990
## 16477                                Virgin Islands (U.S.)    VI   VIR 1989
## 16478                                Virgin Islands (U.S.)    VI   VIR 1988
## 16479                                Virgin Islands (U.S.)    VI   VIR 1987
## 16480                                Virgin Islands (U.S.)    VI   VIR 1986
## 16481                                Virgin Islands (U.S.)    VI   VIR 1985
## 16482                                Virgin Islands (U.S.)    VI   VIR 1984
## 16483                                Virgin Islands (U.S.)    VI   VIR 1983
## 16484                                Virgin Islands (U.S.)    VI   VIR 1982
## 16485                                Virgin Islands (U.S.)    VI   VIR 1981
## 16486                                Virgin Islands (U.S.)    VI   VIR 1980
## 16487                                Virgin Islands (U.S.)    VI   VIR 1979
## 16488                                Virgin Islands (U.S.)    VI   VIR 1978
## 16489                                Virgin Islands (U.S.)    VI   VIR 1977
## 16490                                Virgin Islands (U.S.)    VI   VIR 1976
## 16491                                Virgin Islands (U.S.)    VI   VIR 1975
## 16492                                Virgin Islands (U.S.)    VI   VIR 1974
## 16493                                Virgin Islands (U.S.)    VI   VIR 1973
## 16494                                Virgin Islands (U.S.)    VI   VIR 1972
## 16495                                Virgin Islands (U.S.)    VI   VIR 1971
## 16496                                Virgin Islands (U.S.)    VI   VIR 1970
## 16497                                Virgin Islands (U.S.)    VI   VIR 1969
## 16498                                Virgin Islands (U.S.)    VI   VIR 1968
## 16499                                Virgin Islands (U.S.)    VI   VIR 1967
## 16500                                Virgin Islands (U.S.)    VI   VIR 1966
## 16501                                Virgin Islands (U.S.)    VI   VIR 1965
## 16502                                Virgin Islands (U.S.)    VI   VIR 1964
## 16503                                Virgin Islands (U.S.)    VI   VIR 1963
## 16504                                Virgin Islands (U.S.)    VI   VIR 1962
## 16505                                Virgin Islands (U.S.)    VI   VIR 1961
## 16506                                Virgin Islands (U.S.)    VI   VIR 1960
## 16507                                   West Bank and Gaza    PS   PSE 2022
## 16508                                   West Bank and Gaza    PS   PSE 2021
## 16509                                   West Bank and Gaza    PS   PSE 2020
## 16510                                   West Bank and Gaza    PS   PSE 2019
## 16511                                   West Bank and Gaza    PS   PSE 2018
## 16512                                   West Bank and Gaza    PS   PSE 2017
## 16513                                   West Bank and Gaza    PS   PSE 2016
## 16514                                   West Bank and Gaza    PS   PSE 2015
## 16515                                   West Bank and Gaza    PS   PSE 2014
## 16516                                   West Bank and Gaza    PS   PSE 2013
## 16517                                   West Bank and Gaza    PS   PSE 2012
## 16518                                   West Bank and Gaza    PS   PSE 2011
## 16519                                   West Bank and Gaza    PS   PSE 2010
## 16520                                   West Bank and Gaza    PS   PSE 2009
## 16521                                   West Bank and Gaza    PS   PSE 2008
## 16522                                   West Bank and Gaza    PS   PSE 2007
## 16523                                   West Bank and Gaza    PS   PSE 2006
## 16524                                   West Bank and Gaza    PS   PSE 2005
## 16525                                   West Bank and Gaza    PS   PSE 2004
## 16526                                   West Bank and Gaza    PS   PSE 2003
## 16527                                   West Bank and Gaza    PS   PSE 2002
## 16528                                   West Bank and Gaza    PS   PSE 2001
## 16529                                   West Bank and Gaza    PS   PSE 2000
## 16530                                   West Bank and Gaza    PS   PSE 1999
## 16531                                   West Bank and Gaza    PS   PSE 1998
## 16532                                   West Bank and Gaza    PS   PSE 1997
## 16533                                   West Bank and Gaza    PS   PSE 1996
## 16534                                   West Bank and Gaza    PS   PSE 1995
## 16535                                   West Bank and Gaza    PS   PSE 1994
## 16536                                   West Bank and Gaza    PS   PSE 1993
## 16537                                   West Bank and Gaza    PS   PSE 1992
## 16538                                   West Bank and Gaza    PS   PSE 1991
## 16539                                   West Bank and Gaza    PS   PSE 1990
## 16540                                   West Bank and Gaza    PS   PSE 1989
## 16541                                   West Bank and Gaza    PS   PSE 1988
## 16542                                   West Bank and Gaza    PS   PSE 1987
## 16543                                   West Bank and Gaza    PS   PSE 1986
## 16544                                   West Bank and Gaza    PS   PSE 1985
## 16545                                   West Bank and Gaza    PS   PSE 1984
## 16546                                   West Bank and Gaza    PS   PSE 1983
## 16547                                   West Bank and Gaza    PS   PSE 1982
## 16548                                   West Bank and Gaza    PS   PSE 1981
## 16549                                   West Bank and Gaza    PS   PSE 1980
## 16550                                   West Bank and Gaza    PS   PSE 1979
## 16551                                   West Bank and Gaza    PS   PSE 1978
## 16552                                   West Bank and Gaza    PS   PSE 1977
## 16553                                   West Bank and Gaza    PS   PSE 1976
## 16554                                   West Bank and Gaza    PS   PSE 1975
## 16555                                   West Bank and Gaza    PS   PSE 1974
## 16556                                   West Bank and Gaza    PS   PSE 1973
## 16557                                   West Bank and Gaza    PS   PSE 1972
## 16558                                   West Bank and Gaza    PS   PSE 1971
## 16559                                   West Bank and Gaza    PS   PSE 1970
## 16560                                   West Bank and Gaza    PS   PSE 1969
## 16561                                   West Bank and Gaza    PS   PSE 1968
## 16562                                   West Bank and Gaza    PS   PSE 1967
## 16563                                   West Bank and Gaza    PS   PSE 1966
## 16564                                   West Bank and Gaza    PS   PSE 1965
## 16565                                   West Bank and Gaza    PS   PSE 1964
## 16566                                   West Bank and Gaza    PS   PSE 1963
## 16567                                   West Bank and Gaza    PS   PSE 1962
## 16568                                   West Bank and Gaza    PS   PSE 1961
## 16569                                   West Bank and Gaza    PS   PSE 1960
## 16570                                          Yemen, Rep.    YE   YEM 2022
## 16571                                          Yemen, Rep.    YE   YEM 2021
## 16572                                          Yemen, Rep.    YE   YEM 2020
## 16573                                          Yemen, Rep.    YE   YEM 2019
## 16574                                          Yemen, Rep.    YE   YEM 2018
## 16575                                          Yemen, Rep.    YE   YEM 2017
## 16576                                          Yemen, Rep.    YE   YEM 2016
## 16577                                          Yemen, Rep.    YE   YEM 2015
## 16578                                          Yemen, Rep.    YE   YEM 2014
## 16579                                          Yemen, Rep.    YE   YEM 2013
## 16580                                          Yemen, Rep.    YE   YEM 2012
## 16581                                          Yemen, Rep.    YE   YEM 2011
## 16582                                          Yemen, Rep.    YE   YEM 2010
## 16583                                          Yemen, Rep.    YE   YEM 2009
## 16584                                          Yemen, Rep.    YE   YEM 2008
## 16585                                          Yemen, Rep.    YE   YEM 2007
## 16586                                          Yemen, Rep.    YE   YEM 2006
## 16587                                          Yemen, Rep.    YE   YEM 2005
## 16588                                          Yemen, Rep.    YE   YEM 2004
## 16589                                          Yemen, Rep.    YE   YEM 2003
## 16590                                          Yemen, Rep.    YE   YEM 2002
## 16591                                          Yemen, Rep.    YE   YEM 2001
## 16592                                          Yemen, Rep.    YE   YEM 2000
## 16593                                          Yemen, Rep.    YE   YEM 1999
## 16594                                          Yemen, Rep.    YE   YEM 1998
## 16595                                          Yemen, Rep.    YE   YEM 1997
## 16596                                          Yemen, Rep.    YE   YEM 1996
## 16597                                          Yemen, Rep.    YE   YEM 1995
## 16598                                          Yemen, Rep.    YE   YEM 1994
## 16599                                          Yemen, Rep.    YE   YEM 1993
## 16600                                          Yemen, Rep.    YE   YEM 1992
## 16601                                          Yemen, Rep.    YE   YEM 1991
## 16602                                          Yemen, Rep.    YE   YEM 1990
## 16603                                          Yemen, Rep.    YE   YEM 1989
## 16604                                          Yemen, Rep.    YE   YEM 1988
## 16605                                          Yemen, Rep.    YE   YEM 1987
## 16606                                          Yemen, Rep.    YE   YEM 1986
## 16607                                          Yemen, Rep.    YE   YEM 1985
## 16608                                          Yemen, Rep.    YE   YEM 1984
## 16609                                          Yemen, Rep.    YE   YEM 1983
## 16610                                          Yemen, Rep.    YE   YEM 1982
## 16611                                          Yemen, Rep.    YE   YEM 1981
## 16612                                          Yemen, Rep.    YE   YEM 1980
## 16613                                          Yemen, Rep.    YE   YEM 1979
## 16614                                          Yemen, Rep.    YE   YEM 1978
## 16615                                          Yemen, Rep.    YE   YEM 1977
## 16616                                          Yemen, Rep.    YE   YEM 1976
## 16617                                          Yemen, Rep.    YE   YEM 1975
## 16618                                          Yemen, Rep.    YE   YEM 1974
## 16619                                          Yemen, Rep.    YE   YEM 1973
## 16620                                          Yemen, Rep.    YE   YEM 1972
## 16621                                          Yemen, Rep.    YE   YEM 1971
## 16622                                          Yemen, Rep.    YE   YEM 1970
## 16623                                          Yemen, Rep.    YE   YEM 1969
## 16624                                          Yemen, Rep.    YE   YEM 1968
## 16625                                          Yemen, Rep.    YE   YEM 1967
## 16626                                          Yemen, Rep.    YE   YEM 1966
## 16627                                          Yemen, Rep.    YE   YEM 1965
## 16628                                          Yemen, Rep.    YE   YEM 1964
## 16629                                          Yemen, Rep.    YE   YEM 1963
## 16630                                          Yemen, Rep.    YE   YEM 1962
## 16631                                          Yemen, Rep.    YE   YEM 1961
## 16632                                          Yemen, Rep.    YE   YEM 1960
## 16633                                               Zambia    ZM   ZMB 2022
## 16634                                               Zambia    ZM   ZMB 2021
## 16635                                               Zambia    ZM   ZMB 2020
## 16636                                               Zambia    ZM   ZMB 2019
## 16637                                               Zambia    ZM   ZMB 2018
## 16638                                               Zambia    ZM   ZMB 2017
## 16639                                               Zambia    ZM   ZMB 2016
## 16640                                               Zambia    ZM   ZMB 2015
## 16641                                               Zambia    ZM   ZMB 2014
## 16642                                               Zambia    ZM   ZMB 2013
## 16643                                               Zambia    ZM   ZMB 2012
## 16644                                               Zambia    ZM   ZMB 2011
## 16645                                               Zambia    ZM   ZMB 2010
## 16646                                               Zambia    ZM   ZMB 2009
## 16647                                               Zambia    ZM   ZMB 2008
## 16648                                               Zambia    ZM   ZMB 2007
## 16649                                               Zambia    ZM   ZMB 2006
## 16650                                               Zambia    ZM   ZMB 2005
## 16651                                               Zambia    ZM   ZMB 2004
## 16652                                               Zambia    ZM   ZMB 2003
## 16653                                               Zambia    ZM   ZMB 2002
## 16654                                               Zambia    ZM   ZMB 2001
## 16655                                               Zambia    ZM   ZMB 2000
## 16656                                               Zambia    ZM   ZMB 1999
## 16657                                               Zambia    ZM   ZMB 1998
## 16658                                               Zambia    ZM   ZMB 1997
## 16659                                               Zambia    ZM   ZMB 1996
## 16660                                               Zambia    ZM   ZMB 1995
## 16661                                               Zambia    ZM   ZMB 1994
## 16662                                               Zambia    ZM   ZMB 1993
## 16663                                               Zambia    ZM   ZMB 1992
## 16664                                               Zambia    ZM   ZMB 1991
## 16665                                               Zambia    ZM   ZMB 1990
## 16666                                               Zambia    ZM   ZMB 1989
## 16667                                               Zambia    ZM   ZMB 1988
## 16668                                               Zambia    ZM   ZMB 1987
## 16669                                               Zambia    ZM   ZMB 1986
## 16670                                               Zambia    ZM   ZMB 1985
## 16671                                               Zambia    ZM   ZMB 1984
## 16672                                               Zambia    ZM   ZMB 1983
## 16673                                               Zambia    ZM   ZMB 1982
## 16674                                               Zambia    ZM   ZMB 1981
## 16675                                               Zambia    ZM   ZMB 1980
## 16676                                               Zambia    ZM   ZMB 1979
## 16677                                               Zambia    ZM   ZMB 1978
## 16678                                               Zambia    ZM   ZMB 1977
## 16679                                               Zambia    ZM   ZMB 1976
## 16680                                               Zambia    ZM   ZMB 1975
## 16681                                               Zambia    ZM   ZMB 1974
## 16682                                               Zambia    ZM   ZMB 1973
## 16683                                               Zambia    ZM   ZMB 1972
## 16684                                               Zambia    ZM   ZMB 1971
## 16685                                               Zambia    ZM   ZMB 1970
## 16686                                               Zambia    ZM   ZMB 1969
## 16687                                               Zambia    ZM   ZMB 1968
## 16688                                               Zambia    ZM   ZMB 1967
## 16689                                               Zambia    ZM   ZMB 1966
## 16690                                               Zambia    ZM   ZMB 1965
## 16691                                               Zambia    ZM   ZMB 1964
## 16692                                               Zambia    ZM   ZMB 1963
## 16693                                               Zambia    ZM   ZMB 1962
## 16694                                               Zambia    ZM   ZMB 1961
## 16695                                               Zambia    ZM   ZMB 1960
## 16696                                             Zimbabwe    ZW   ZWE 2022
## 16697                                             Zimbabwe    ZW   ZWE 2021
## 16698                                             Zimbabwe    ZW   ZWE 2020
## 16699                                             Zimbabwe    ZW   ZWE 2019
## 16700                                             Zimbabwe    ZW   ZWE 2018
## 16701                                             Zimbabwe    ZW   ZWE 2017
## 16702                                             Zimbabwe    ZW   ZWE 2016
## 16703                                             Zimbabwe    ZW   ZWE 2015
## 16704                                             Zimbabwe    ZW   ZWE 2014
## 16705                                             Zimbabwe    ZW   ZWE 2013
## 16706                                             Zimbabwe    ZW   ZWE 2012
## 16707                                             Zimbabwe    ZW   ZWE 2011
## 16708                                             Zimbabwe    ZW   ZWE 2010
## 16709                                             Zimbabwe    ZW   ZWE 2009
## 16710                                             Zimbabwe    ZW   ZWE 2008
## 16711                                             Zimbabwe    ZW   ZWE 2007
## 16712                                             Zimbabwe    ZW   ZWE 2006
## 16713                                             Zimbabwe    ZW   ZWE 2005
## 16714                                             Zimbabwe    ZW   ZWE 2004
## 16715                                             Zimbabwe    ZW   ZWE 2003
## 16716                                             Zimbabwe    ZW   ZWE 2002
## 16717                                             Zimbabwe    ZW   ZWE 2001
## 16718                                             Zimbabwe    ZW   ZWE 2000
## 16719                                             Zimbabwe    ZW   ZWE 1999
## 16720                                             Zimbabwe    ZW   ZWE 1998
## 16721                                             Zimbabwe    ZW   ZWE 1997
## 16722                                             Zimbabwe    ZW   ZWE 1996
## 16723                                             Zimbabwe    ZW   ZWE 1995
## 16724                                             Zimbabwe    ZW   ZWE 1994
## 16725                                             Zimbabwe    ZW   ZWE 1993
## 16726                                             Zimbabwe    ZW   ZWE 1992
## 16727                                             Zimbabwe    ZW   ZWE 1991
## 16728                                             Zimbabwe    ZW   ZWE 1990
## 16729                                             Zimbabwe    ZW   ZWE 1989
## 16730                                             Zimbabwe    ZW   ZWE 1988
## 16731                                             Zimbabwe    ZW   ZWE 1987
## 16732                                             Zimbabwe    ZW   ZWE 1986
## 16733                                             Zimbabwe    ZW   ZWE 1985
## 16734                                             Zimbabwe    ZW   ZWE 1984
## 16735                                             Zimbabwe    ZW   ZWE 1983
## 16736                                             Zimbabwe    ZW   ZWE 1982
## 16737                                             Zimbabwe    ZW   ZWE 1981
## 16738                                             Zimbabwe    ZW   ZWE 1980
## 16739                                             Zimbabwe    ZW   ZWE 1979
## 16740                                             Zimbabwe    ZW   ZWE 1978
## 16741                                             Zimbabwe    ZW   ZWE 1977
## 16742                                             Zimbabwe    ZW   ZWE 1976
## 16743                                             Zimbabwe    ZW   ZWE 1975
## 16744                                             Zimbabwe    ZW   ZWE 1974
## 16745                                             Zimbabwe    ZW   ZWE 1973
## 16746                                             Zimbabwe    ZW   ZWE 1972
## 16747                                             Zimbabwe    ZW   ZWE 1971
## 16748                                             Zimbabwe    ZW   ZWE 1970
## 16749                                             Zimbabwe    ZW   ZWE 1969
## 16750                                             Zimbabwe    ZW   ZWE 1968
## 16751                                             Zimbabwe    ZW   ZWE 1967
## 16752                                             Zimbabwe    ZW   ZWE 1966
## 16753                                             Zimbabwe    ZW   ZWE 1965
## 16754                                             Zimbabwe    ZW   ZWE 1964
## 16755                                             Zimbabwe    ZW   ZWE 1963
## 16756                                             Zimbabwe    ZW   ZWE 1962
## 16757                                             Zimbabwe    ZW   ZWE 1961
## 16758                                             Zimbabwe    ZW   ZWE 1960
##                gdp
## 1               NA
## 2     1.089454e+12
## 3     9.341791e+11
## 4     1.009052e+12
## 5     1.016697e+12
## 6     1.030482e+12
## 7     8.898593e+11
## 8     9.231439e+11
## 9     1.003403e+12
## 10    9.826771e+11
## 11    9.720022e+11
## 12    9.642130e+11
## 13    8.603612e+11
## 14    7.190953e+11
## 15    7.081192e+11
## 16    6.608270e+11
## 17    5.757224e+11
## 18    5.122337e+11
## 19    4.388531e+11
## 20    3.526741e+11
## 21    2.648815e+11
## 22    2.588300e+11
## 23    2.839379e+11
## 24    2.621838e+11
## 25    2.658258e+11
## 26    2.821974e+11
## 27    2.684255e+11
## 28    2.696487e+11
## 29    2.401307e+11
## 30    2.365373e+11
## 31    2.382659e+11
## 32    2.734149e+11
## 33    2.532352e+11
## 34    2.175482e+11
## 35    2.041488e+11
## 36    1.861529e+11
## 37    1.525250e+11
## 38    1.363033e+11
## 39    1.601410e+11
## 40    1.749258e+11
## 41    1.672737e+11
## 42    1.743947e+11
## 43    1.706619e+11
## 44    1.346773e+11
## 45    1.153501e+11
## 46    1.034204e+11
## 47    9.112857e+10
## 48    9.165319e+10
## 49    8.606157e+10
## 50    6.960386e+10
## 51    5.351720e+10
## 52    4.948110e+10
## 53    4.486458e+10
## 54    4.183018e+10
## 55    3.652309e+10
## 56    3.351603e+10
## 57    3.224054e+10
## 58    2.968348e+10
## 59    2.611994e+10
## 60    2.821128e+10
## 61    2.370806e+10
## 62    2.180944e+10
## 63    2.129152e+10
## 64              NA
## 65    8.401873e+11
## 66    7.847997e+11
## 67    7.947191e+11
## 68    7.663597e+11
## 69    6.837480e+11
## 70    6.905454e+11
## 71    7.669580e+11
## 72    8.924979e+11
## 73    8.322169e+11
## 74    7.360399e+11
## 75    6.804560e+11
## 76    5.971293e+11
## 77    5.070295e+11
## 78    5.664795e+11
## 79    4.644256e+11
## 80    3.956559e+11
## 81    3.100942e+11
## 82    2.534719e+11
## 83    2.044709e+11
## 84    1.766058e+11
## 85    1.467798e+11
## 86    1.404103e+11
## 87    1.375210e+11
## 88    1.301068e+11
## 89    1.270639e+11
## 90    1.257630e+11
## 91    1.082213e+11
## 92    8.628174e+10
## 93    9.882637e+10
## 94    1.182823e+11
## 95    1.174571e+11
## 96    1.218021e+11
## 97    1.017688e+11
## 98    1.089435e+11
## 99    1.103218e+11
## 100   1.074975e+11
## 101   1.165073e+11
## 102   1.142627e+11
## 103   1.381152e+11
## 104   1.871637e+11
## 105   2.110035e+11
## 106   1.120313e+11
## 107   8.862840e+10
## 108   7.119971e+10
## 109   6.531501e+10
## 110   6.212939e+10
## 111   5.144473e+10
## 112   4.421448e+10
## 113   3.127382e+10
## 114   2.526495e+10
## 115   2.083282e+10
## 116   2.350461e+10
## 117   1.688209e+10
## 118   1.488035e+10
## 119   1.442604e+10
## 120   1.583259e+10
## 121   1.486223e+10
## 122   1.383837e+10
## 123   1.267633e+10
## 124   1.194319e+10
## 125   1.112789e+10
## 126   1.040414e+10
## 127             NA
## 128   2.862987e+12
## 129   2.491175e+12
## 130   2.818359e+12
## 131   2.800428e+12
## 132   2.598094e+12
## 133   2.516485e+12
## 134   2.538925e+12
## 135   2.895458e+12
## 136   2.843529e+12
## 137   2.787171e+12
## 138   2.541860e+12
## 139   2.327000e+12
## 140   1.978797e+12
## 141   2.253731e+12
## 142   1.790036e+12
## 143   1.538290e+12
## 144   1.297893e+12
## 145   1.056247e+12
## 146   8.878525e+11
## 147   8.031228e+11
## 148   7.985054e+11
## 149   8.160193e+11
## 150   7.128368e+11
## 151   6.444943e+11
## 152   6.623172e+11
## 153   6.141926e+11
## 154   5.560580e+11
## 155   5.077666e+11
## 156   4.827667e+11
## 157   4.738129e+11
## 158   4.715240e+11
## 159   6.440664e+11
## 160   4.558230e+11
## 161   4.249004e+11
## 162   4.406062e+11
## 163   4.069842e+11
## 164   4.194994e+11
## 165   4.258983e+11
## 166   4.184619e+11
## 167   4.441305e+11
## 168   4.740232e+11
## 169   4.598097e+11
## 170   3.386247e+11
## 171   2.491100e+11
## 172   2.269777e+11
## 173   1.965586e+11
## 174   1.579092e+11
## 175   1.428157e+11
## 176   7.532979e+10
## 177   5.938129e+10
## 178   4.984148e+10
## 179   4.314983e+10
## 180   3.816299e+10
## 181   3.501973e+10
## 182             NA
## 183             NA
## 184             NA
## 185             NA
## 186             NA
## 187             NA
## 188             NA
## 189             NA
## 190             NA
## 191   7.529530e+10
## 192   6.589681e+10
## 193   7.742842e+10
## 194   7.635061e+10
## 195   7.359018e+10
## 196   7.106169e+10
## 197   7.566929e+10
## 198   7.692176e+10
## 199   7.523210e+10
## 200   7.385272e+10
## 201   7.008317e+10
## 202   6.494347e+10
## 203   5.984058e+10
## 204   7.078139e+10
## 205   6.232893e+10
## 206   5.607428e+10
## 207   4.930710e+10
## 208   4.362565e+10
## 209   3.988763e+10
## 210   3.732441e+10
## 211   3.557581e+10
## 212   3.453383e+10
## 213   3.218692e+10
## 214   3.035403e+10
## 215   2.841623e+10
## 216   2.429163e+10
## 217   2.227086e+10
## 218   2.020520e+10
## 219   1.922415e+10
## 220   1.775035e+10
## 221   1.803278e+10
## 222   1.814909e+10
## 223   1.687290e+10
## 224   1.645986e+10
## 225   1.552175e+10
## 226   1.444128e+10
## 227   1.581475e+10
## 228   1.598283e+10
## 229   1.673558e+10
## 230   1.651783e+10
## 231   1.489032e+10
## 232   1.349527e+10
## 233   1.083542e+10
## 234   9.433651e+09
## 235   9.210483e+09
## 236   7.932123e+09
## 237   7.706761e+09
## 238   6.595605e+09
## 239   5.076286e+09
## 240   4.639299e+09
## 241   4.017607e+09
## 242   3.695258e+09
## 243   3.359707e+09
## 244   3.083591e+09
## 245   3.102515e+09
## 246   2.888648e+09
## 247   2.660946e+09
## 248   2.470265e+09
## 249   2.290314e+09
## 250   2.153896e+09
## 251   2.038302e+09
## 252   1.880306e+09
## 253             NA
## 254   1.901935e+12
## 255   1.664903e+12
## 256   1.675084e+12
## 257   1.649466e+12
## 258   1.461463e+12
## 259   1.316466e+12
## 260   1.292823e+12
## 261   1.462687e+12
## 262   1.416962e+12
## 263   1.359030e+12
## 264   1.455318e+12
## 265   1.318305e+12
## 266   1.291092e+12
## 267   1.533142e+12
## 268   1.266892e+12
## 269   1.002944e+12
## 270   8.868792e+11
## 271   7.632508e+11
## 272   6.341596e+11
## 273   5.284037e+11
## 274   4.688109e+11
## 275   4.282754e+11
## 276   4.349239e+11
## 277   4.487391e+11
## 278   4.100256e+11
## 279   4.160520e+11
## 280   3.932796e+11
## 281   3.108890e+11
## 282   2.740647e+11
## 283   2.599188e+11
## 284   2.426833e+11
## 285   2.562881e+11
## 286             NA
## 287             NA
## 288             NA
## 289             NA
## 290             NA
## 291             NA
## 292             NA
## 293             NA
## 294             NA
## 295             NA
## 296             NA
## 297             NA
## 298             NA
## 299             NA
## 300             NA
## 301             NA
## 302             NA
## 303             NA
## 304             NA
## 305             NA
## 306             NA
## 307             NA
## 308             NA
## 309             NA
## 310             NA
## 311             NA
## 312             NA
## 313             NA
## 314             NA
## 315             NA
## 316             NA
## 317   1.263730e+13
## 318   1.085137e+13
## 319   1.163800e+13
## 320   1.142192e+13
## 321   1.129505e+13
## 322   1.045822e+13
## 323   1.013174e+13
## 324   1.065144e+13
## 325   1.029765e+13
## 326   1.015631e+13
## 327   9.718645e+12
## 328   8.804981e+12
## 329   7.262191e+12
## 330   7.524110e+12
## 331   6.672114e+12
## 332   5.639084e+12
## 333   4.932003e+12
## 334   4.229725e+12
## 335   3.632857e+12
## 336   3.264190e+12
## 337   3.356995e+12
## 338   3.386374e+12
## 339   3.112672e+12
## 340   2.942819e+12
## 341   2.984858e+12
## 342   2.792367e+12
## 343   2.561134e+12
## 344   2.497989e+12
## 345   2.375983e+12
## 346   2.162736e+12
## 347   1.966540e+12
## 348   1.860045e+12
## 349   1.584646e+12
## 350   1.554594e+12
## 351   1.480761e+12
## 352   1.469791e+12
## 353   1.457343e+12
## 354   1.418373e+12
## 355   1.429346e+12
## 356   1.419017e+12
## 357   1.491257e+12
## 358   1.334651e+12
## 359   1.072707e+12
## 360   8.824410e+11
## 361   7.948760e+11
## 362   7.113722e+11
## 363   6.515882e+11
## 364   6.061663e+11
## 365   4.333221e+11
## 366   3.390947e+11
## 367   3.101801e+11
## 368   2.865162e+11
## 369   2.708357e+11
## 370   2.427236e+11
## 371   2.240331e+11
## 372   2.131702e+11
## 373   2.158836e+11
## 374   1.993081e+11
## 375   1.740027e+11
## 376   1.640166e+11
## 377   1.591787e+11
## 378   1.582070e+11
## 379             NA
## 380   3.091169e+13
## 381   2.712731e+13
## 382   2.702830e+13
## 383   2.648226e+13
## 384   2.432488e+13
## 385   2.277204e+13
## 386   2.199721e+13
## 387   2.208621e+13
## 388   2.141074e+13
## 389   2.117219e+13
## 390   1.979064e+13
## 391   1.706638e+13
## 392   1.462305e+13
## 393   1.421078e+13
## 394   1.232599e+13
## 395   1.103167e+13
## 396   1.040956e+13
## 397   9.756924e+12
## 398   8.699260e+12
## 399   7.911873e+12
## 400   7.788976e+12
## 401   8.374986e+12
## 402   7.740374e+12
## 403   6.929773e+12
## 404   7.744678e+12
## 405   8.101130e+12
## 406   8.407333e+12
## 407   7.403861e+12
## 408   6.536237e+12
## 409   5.844851e+12
## 410   5.349242e+12
## 411   4.738187e+12
## 412   4.536215e+12
## 413   4.354921e+12
## 414   3.619763e+12
## 415   3.082610e+12
## 416   2.359536e+12
## 417   2.235985e+12
## 418   2.087908e+12
## 419   1.962329e+12
## 420   2.001892e+12
## 421   1.815968e+12
## 422   1.679994e+12
## 423   1.546796e+12
## 424   1.225992e+12
## 425   1.028853e+12
## 426   9.358211e+11
## 427   8.547060e+11
## 428   7.418910e+11
## 429   5.630094e+11
## 430   4.537250e+11
## 431   4.088965e+11
## 432   3.468603e+11
## 433   3.012029e+11
## 434   2.731818e+11
## 435   2.521056e+11
## 436   2.256206e+11
## 437   2.027139e+11
## 438   1.767294e+11
## 439   1.583876e+11
## 440   1.551708e+11
## 441   1.546349e+11
## 442             NA
## 443   2.075179e+13
## 444   1.748692e+13
## 445   1.720786e+13
## 446   1.664044e+13
## 447   1.487728e+13
## 448   1.361247e+13
## 449   1.332759e+13
## 450   1.279883e+13
## 451   1.187114e+13
## 452   1.075917e+13
## 453   9.645534e+12
## 454   7.889502e+12
## 455   6.484665e+12
## 456   5.978961e+12
## 457   4.727901e+12
## 458   3.740827e+12
## 459   3.106989e+12
## 460   2.682432e+12
## 461   2.311828e+12
## 462   2.044358e+12
## 463   1.847475e+12
## 464   1.734674e+12
## 465   1.575693e+12
## 466   1.431784e+12
## 467   1.572049e+12
## 468   1.518470e+12
## 469   1.322130e+12
## 470   1.071596e+12
## 471   8.905214e+11
## 472   8.112680e+11
## 473   7.238419e+11
## 474   6.673669e+11
## 475   6.225302e+11
## 476   5.756275e+11
## 477   5.190690e+11
## 478   5.251587e+11
## 479   5.264578e+11
## 480   4.810219e+11
## 481   4.439483e+11
## 482   4.237918e+11
## 483   4.036521e+11
## 484   3.781287e+11
## 485   3.276345e+11
## 486   2.828230e+11
## 487   2.916518e+11
## 488   2.526918e+11
## 489   2.486653e+11
## 490   2.212542e+11
## 491   1.955844e+11
## 492   1.554459e+11
## 493   1.370647e+11
## 494   1.274873e+11
## 495   1.147958e+11
## 496   1.022790e+11
## 497   1.010068e+11
## 498   1.040775e+11
## 499   9.518059e+10
## 500   8.176281e+10
## 501   7.084394e+10
## 502   6.539659e+10
## 503   7.161440e+10
## 504   8.134696e+10
## 505             NA
## 506   2.072517e+13
## 507   1.746437e+13
## 508   1.718573e+13
## 509   1.661905e+13
## 510   1.485810e+13
## 511   1.359482e+13
## 512   1.331028e+13
## 513   1.278223e+13
## 514   1.185570e+13
## 515   1.074512e+13
## 516   9.632925e+12
## 517   7.879076e+12
## 518   6.475891e+12
## 519   5.970934e+12
## 520   4.721478e+12
## 521   3.735662e+12
## 522   3.102608e+12
## 523   2.678573e+12
## 524   2.308416e+12
## 525   2.041292e+12
## 526   1.844705e+12
## 527   1.732073e+12
## 528   1.573330e+12
## 529   1.429637e+12
## 530   1.569692e+12
## 531   1.516193e+12
## 532   1.320148e+12
## 533   1.069989e+12
## 534   8.891862e+11
## 535   8.100516e+11
## 536   7.227566e+11
## 537   6.663662e+11
## 538   6.215968e+11
## 539   5.747644e+11
## 540   5.182908e+11
## 541   5.243713e+11
## 542   5.256685e+11
## 543   4.803006e+11
## 544   4.432827e+11
## 545   4.231564e+11
## 546   4.030469e+11
## 547   3.775617e+11
## 548   3.271433e+11
## 549   2.823989e+11
## 550   2.912145e+11
## 551   2.523129e+11
## 552   2.482924e+11
## 553   2.209224e+11
## 554   1.952911e+11
## 555   1.552128e+11
## 556   1.368592e+11
## 557   1.272961e+11
## 558   1.146237e+11
## 559   1.021256e+11
## 560   1.008553e+11
## 561   1.039214e+11
## 562   9.503788e+10
## 563   8.164022e+10
## 564   7.073772e+10
## 565   6.529853e+10
## 566   7.150702e+10
## 567   8.122499e+10
## 568             NA
## 569   1.456328e+13
## 570   1.308548e+13
## 571   1.341817e+13
## 572   1.369819e+13
## 573   1.267972e+13
## 574   1.197370e+13
## 575   1.167551e+13
## 576   1.351007e+13
## 577   1.319630e+13
## 578   1.263878e+13
## 579   1.363789e+13
## 580   1.264175e+13
## 581   1.293851e+13
## 582   1.415826e+13
## 583   1.287911e+13
## 584   1.118404e+13
## 585   1.052353e+13
## 586   1.016040e+13
## 587   8.862331e+12
## 588   7.200157e+12
## 589   6.596587e+12
## 590   6.495755e+12
## 591   7.116213e+12
## 592   7.149215e+12
## 593   6.952190e+12
## 594   7.604358e+12
## 595   7.515453e+12
## 596   6.515618e+12
## 597   6.172472e+12
## 598   6.745618e+12
## 599   6.114123e+12
## 600   5.880688e+12
## 601   4.672689e+12
## 602   4.574521e+12
## 603   4.159431e+12
## 604   3.362907e+12
## 605   2.396185e+12
## 606   2.332403e+12
## 607   2.431611e+12
## 608   2.492495e+12
## 609   2.574375e+12
## 610   2.962181e+12
## 611   2.644834e+12
## 612   2.183344e+12
## 613   1.782978e+12
## 614   1.567496e+12
## 615   1.501999e+12
## 616   1.295370e+12
## 617   1.142237e+12
## 618   8.798665e+11
## 619   7.283507e+11
## 620   6.426182e+11
## 621   5.793329e+11
## 622   5.189917e+11
## 623   4.834186e+11
## 624   4.448828e+11
## 625   4.077406e+11
## 626   3.730242e+11
## 627   3.353418e+11
## 628   2.988191e+11
## 629   2.689652e+11
## 630   2.448330e+11
## 631             NA
## 632   2.508283e+13
## 633   2.213998e+13
## 634   2.290998e+13
## 635   2.319356e+13
## 636   2.165394e+13
## 637   2.041863e+13
## 638   2.048415e+13
## 639   2.377971e+13
## 640   2.345250e+13
## 641   2.244977e+13
## 642   2.330552e+13
## 643   2.102173e+13
## 644   2.054920e+13
## 645   2.336517e+13
## 646   2.122964e+13
## 647   1.816915e+13
## 648   1.678223e+13
## 649   1.577645e+13
## 650   1.353603e+13
## 651   1.113443e+13
## 652   1.016710e+13
## 653   1.006598e+13
## 654   1.067763e+13
## 655   1.079585e+13
## 656   1.052289e+13
## 657   1.109598e+13
## 658   1.087131e+13
## 659   9.412850e+12
## 660   9.002567e+12
## 661   9.800978e+12
## 662   9.141276e+12
## 663   8.860593e+12
## 664   7.242781e+12
## 665   7.147465e+12
## 666   6.421091e+12
## 667   5.196365e+12
## 668   3.807090e+12
## 669   3.678858e+12
## 670   3.827612e+12
## 671   3.945553e+12
## 672   4.094298e+12
## 673   4.600279e+12
## 674   4.061374e+12
## 675   3.319980e+12
## 676   2.720248e+12
## 677   2.400109e+12
## 678   2.309246e+12
## 679   1.976678e+12
## 680   1.749160e+12
## 681   1.377130e+12
## 682   1.149406e+12
## 683   1.019162e+12
## 684   9.213398e+11
## 685   8.329884e+11
## 686   7.963079e+11
## 687   7.394190e+11
## 688             NA
## 689             NA
## 690             NA
## 691             NA
## 692             NA
## 693             NA
## 694             NA
## 695   3.517373e+12
## 696   2.982627e+12
## 697   3.248640e+12
## 698   3.182536e+12
## 699   3.118194e+12
## 700   2.777730e+12
## 701   2.921396e+12
## 702   3.845830e+12
## 703   4.150229e+12
## 704   3.914702e+12
## 705   3.670007e+12
## 706   2.953063e+12
## 707   2.437793e+12
## 708   3.110418e+12
## 709   2.509490e+12
## 710   1.950079e+12
## 711   1.589617e+12
## 712   1.256036e+12
## 713   9.472237e+11
## 714   7.507115e+11
## 715   6.550665e+11
## 716   6.628738e+11
## 717   5.917875e+11
## 718   7.055167e+11
## 719   7.613698e+11
## 720   7.293511e+11
## 721   7.216983e+11
## 722   6.740525e+11
## 723   7.848181e+11
## 724   7.986868e+11
## 725   8.700416e+11
## 726   8.930262e+11
## 727   8.340879e+11
## 728   8.620813e+11
## 729             NA
## 730             NA
## 731             NA
## 732             NA
## 733             NA
## 734             NA
## 735             NA
## 736             NA
## 737             NA
## 738             NA
## 739             NA
## 740             NA
## 741             NA
## 742             NA
## 743             NA
## 744             NA
## 745             NA
## 746             NA
## 747             NA
## 748             NA
## 749             NA
## 750             NA
## 751             NA
## 752             NA
## 753             NA
## 754             NA
## 755             NA
## 756             NA
## 757             NA
## 758   4.550386e+12
## 759   3.891717e+12
## 760   4.158042e+12
## 761   4.076953e+12
## 762   3.909310e+12
## 763   3.485437e+12
## 764   3.626632e+12
## 765   4.643054e+12
## 766   4.914816e+12
## 767   4.646441e+12
## 768   4.450412e+12
## 769   3.659461e+12
## 770   3.114958e+12
## 771   3.929284e+12
## 772   3.173751e+12
## 773   2.467644e+12
## 774   2.040091e+12
## 775   1.628187e+12
## 776   1.257961e+12
## 777   1.023033e+12
## 778   9.097348e+11
## 779   8.942293e+11
## 780   8.215232e+11
## 781   9.476987e+11
## 782   9.803050e+11
## 783   9.504878e+11
## 784   9.240318e+11
## 785   8.347114e+11
## 786   9.281349e+11
## 787   9.391624e+11
## 788   1.006638e+12
## 789   1.020040e+12
## 790   9.598433e+11
## 791   9.886615e+11
## 792             NA
## 793             NA
## 794             NA
## 795             NA
## 796             NA
## 797             NA
## 798             NA
## 799             NA
## 800             NA
## 801             NA
## 802             NA
## 803             NA
## 804             NA
## 805             NA
## 806             NA
## 807             NA
## 808             NA
## 809             NA
## 810             NA
## 811             NA
## 812             NA
## 813             NA
## 814             NA
## 815             NA
## 816             NA
## 817             NA
## 818             NA
## 819             NA
## 820             NA
## 821   1.717742e+13
## 822   1.536944e+13
## 823   1.569340e+13
## 824   1.598083e+13
## 825   1.476492e+13
## 826   1.388901e+13
## 827   1.355251e+13
## 828   1.564973e+13
## 829   1.529449e+13
## 830   1.464212e+13
## 831   1.576558e+13
## 832   1.455788e+13
## 833   1.476398e+13
## 834   1.629781e+13
## 835   1.472885e+13
## 836   1.271394e+13
## 837   1.191087e+13
## 838   1.141908e+13
## 839   9.931941e+12
## 840   8.084072e+12
## 841   7.394076e+12
## 842   7.276322e+12
## 843   7.925737e+12
## 844   7.969673e+12
## 845   7.733629e+12
## 846   8.431211e+12
## 847   8.295694e+12
## 848   7.161811e+12
## 849   6.761057e+12
## 850   7.406227e+12
## 851   6.735958e+12
## 852   6.498416e+12
## 853   5.193624e+12
## 854   5.084244e+12
## 855   4.631211e+12
## 856   3.744010e+12
## 857   2.677638e+12
## 858   2.603373e+12
## 859   2.702046e+12
## 860   2.777353e+12
## 861   2.879959e+12
## 862   3.303153e+12
## 863   2.952813e+12
## 864   2.442675e+12
## 865   2.004883e+12
## 866   1.770039e+12
## 867   1.690861e+12
## 868   1.451738e+12
## 869   1.282009e+12
## 870   9.904202e+11
## 871   8.208059e+11
## 872   7.259249e+11
## 873             NA
## 874             NA
## 875             NA
## 876             NA
## 877             NA
## 878             NA
## 879             NA
## 880             NA
## 881             NA
## 882             NA
## 883             NA
## 884   1.799023e+12
## 885   1.680894e+12
## 886   1.804386e+12
## 887   1.739933e+12
## 888   1.654052e+12
## 889   1.562857e+12
## 890   1.656900e+12
## 891   2.076425e+12
## 892   1.956635e+12
## 893   1.885131e+12
## 894   1.682465e+12
## 895   1.788992e+12
## 896   1.511933e+12
## 897   1.635873e+12
## 898   1.291542e+12
## 899   1.060202e+12
## 900   8.561075e+11
## 901   6.809038e+11
## 902   5.396356e+11
## 903   5.147974e+11
## 904   5.233888e+11
## 905   5.257508e+11
## 906   4.522323e+11
## 907   4.196367e+11
## 908   4.238771e+11
## 909   3.740401e+11
## 910   3.618756e+11
## 911   3.142572e+11
## 912   3.263581e+11
## 913   3.476427e+11
## 914   3.812621e+11
## 915   5.513112e+11
## 916   3.812040e+11
## 917   3.837796e+11
## 918   3.662403e+11
## 919   3.553067e+11
## 920   3.663731e+11
## 921   3.587886e+11
## 922   3.968591e+11
## 923   4.653842e+11
## 924   4.859069e+11
## 925   3.491501e+11
## 926   2.791500e+11
## 927   2.209553e+11
## 928   2.006557e+11
## 929   1.823309e+11
## 930   1.548576e+11
## 931   1.378818e+11
## 932   9.280898e+10
## 933   7.571746e+10
## 934   6.616730e+10
## 935   6.523120e+10
## 936   5.344607e+10
## 937   4.793579e+10
## 938             NA
## 939             NA
## 940             NA
## 941             NA
## 942             NA
## 943             NA
## 944             NA
## 945             NA
## 946             NA
## 947   8.919015e+11
## 948   8.032365e+11
## 949   7.975718e+11
## 950   7.706731e+11
## 951   8.084194e+11
## 952   7.283127e+11
## 953   6.930827e+11
## 954   7.148584e+11
## 955   6.726394e+11
## 956   6.042707e+11
## 957   5.830816e+11
## 958   5.196949e+11
## 959   4.703178e+11
## 960   4.654798e+11
## 961   3.912173e+11
## 962   3.263080e+11
## 963   2.767497e+11
## 964   2.408146e+11
## 965   2.089426e+11
## 966   1.843481e+11
## 967   1.712463e+11
## 968   1.761539e+11
## 969   1.623764e+11
## 970   1.616102e+11
## 971   1.527341e+11
## 972   1.466675e+11
## 973   1.352988e+11
## 974   1.159105e+11
## 975   1.365102e+11
## 976   1.315544e+11
## 977   1.746330e+11
## 978   1.610428e+11
## 979   1.393324e+11
## 980   1.364826e+11
## 981   1.294710e+11
## 982   1.176341e+11
## 983   1.023878e+11
## 984   1.029355e+11
## 985   1.022343e+11
## 986   1.066937e+11
## 987   1.073928e+11
## 988   1.103620e+11
## 989   1.019786e+11
## 990   9.122715e+10
## 991   7.897185e+10
## 992   6.717259e+10
## 993   6.326648e+10
## 994   5.537780e+10
## 995   4.542843e+10
## 996   3.755925e+10
## 997   3.448505e+10
## 998   3.202661e+10
## 999   3.055494e+10
## 1000  2.749745e+10
## 1001  2.598490e+10
## 1002  2.652709e+10
## 1003  2.435999e+10
## 1004  2.085741e+10
## 1005  2.334738e+10
## 1006  1.935111e+10
## 1007  1.778051e+10
## 1008  1.733156e+10
## 1009            NA
## 1010  5.982967e+13
## 1011  5.387455e+13
## 1012  5.527293e+13
## 1013  5.479916e+13
## 1014  5.153813e+13
## 1015  4.927973e+13
## 1016  4.824643e+13
## 1017  5.111059e+13
## 1018  5.003467e+13
## 1019  4.942940e+13
## 1020  4.939815e+13
## 1021  4.575389e+13
## 1022  4.366413e+13
## 1023  4.661926e+13
## 1024  4.375200e+13
## 1025  3.995935e+13
## 1026  3.782945e+13
## 1027  3.576958e+13
## 1028  3.212331e+13
## 1029  2.865965e+13
## 1030  2.748771e+13
## 1031  2.776235e+13
## 1032  2.719324e+13
## 1033  2.588709e+13
## 1034  2.579044e+13
## 1035  2.623714e+13
## 1036  2.601329e+13
## 1037  2.342283e+13
## 1038  2.175897e+13
## 1039  2.159232e+13
## 1040  2.007417e+13
## 1041  1.898270e+13
## 1042  1.689760e+13
## 1043  1.614890e+13
## 1044  1.434343e+13
## 1045  1.237561e+13
## 1046  1.019230e+13
## 1047  9.706804e+12
## 1048  9.305580e+12
## 1049  9.012587e+12
## 1050  9.097109e+12
## 1051  8.961142e+12
## 1052  8.023022e+12
## 1053  6.939058e+12
## 1054  5.790906e+12
## 1055  5.113634e+12
## 1056  4.692779e+12
## 1057  4.205658e+12
## 1058  3.730069e+12
## 1059  3.082808e+12
## 1060  2.657638e+12
## 1061  2.393887e+12
## 1062  2.191150e+12
## 1063  1.991581e+12
## 1064  1.836531e+12
## 1065  1.711720e+12
## 1066  1.560360e+12
## 1067  1.436852e+12
## 1068  1.316378e+12
## 1069  1.221985e+12
## 1070  1.132019e+12
## 1071  1.069412e+12
## 1072            NA
## 1073  3.542267e+13
## 1074  2.998364e+13
## 1075  3.116165e+13
## 1076  3.050871e+13
## 1077  2.867562e+13
## 1078  2.597182e+13
## 1079  2.576904e+13
## 1080  2.751441e+13
## 1081  2.660796e+13
## 1082  2.521988e+13
## 1083  2.372914e+13
## 1084  2.004097e+13
## 1085  1.647989e+13
## 1086  1.699241e+13
## 1087  1.415916e+13
## 1088  1.139768e+13
## 1089  9.610045e+12
## 1090  8.037145e+12
## 1091  6.741689e+12
## 1092  5.996716e+12
## 1093  5.907464e+12
## 1094  5.834940e+12
## 1095  5.361137e+12
## 1096  5.505121e+12
## 1097  5.671264e+12
## 1098  5.348582e+12
## 1099  4.897209e+12
## 1100  4.312606e+12
## 1101  3.901572e+12
## 1102  3.631314e+12
## 1103  3.451859e+12
## 1104  3.564058e+12
## 1105  3.097994e+12
## 1106  2.987574e+12
## 1107  2.773655e+12
## 1108  2.714754e+12
## 1109  2.614024e+12
## 1110  2.510549e+12
## 1111  2.467726e+12
## 1112  2.506732e+12
## 1113  2.532497e+12
## 1114  2.347359e+12
## 1115  1.983106e+12
## 1116  1.659092e+12
## 1117  1.537317e+12
## 1118  1.357122e+12
## 1119  1.252846e+12
## 1120  1.159891e+12
## 1121  9.204244e+11
## 1122  7.104941e+11
## 1123  6.314028e+11
## 1124  5.782202e+11
## 1125  5.319099e+11
## 1126  4.764632e+11
## 1127  4.510912e+11
## 1128  4.393680e+11
## 1129  4.255783e+11
## 1130  3.880877e+11
## 1131  3.428540e+11
## 1132  3.192014e+11
## 1133  3.113895e+11
## 1134  3.255399e+11
## 1135            NA
## 1136  3.806285e+13
## 1137  3.240440e+13
## 1138  3.360018e+13
## 1139  3.289174e+13
## 1140  3.097303e+13
## 1141  2.816665e+13
## 1142  2.791104e+13
## 1143  2.970678e+13
## 1144  2.864082e+13
## 1145  2.708995e+13
## 1146  2.550582e+13
## 1147  2.178644e+13
## 1148  1.799076e+13
## 1149  1.850953e+13
## 1150  1.543017e+13
## 1151  1.248366e+13
## 1152  1.051878e+13
## 1153  8.813665e+12
## 1154  7.403034e+12
## 1155  6.590213e+12
## 1156  6.460238e+12
## 1157  6.386334e+12
## 1158  5.858602e+12
## 1159  5.988549e+12
## 1160  6.145158e+12
## 1161  5.803276e+12
## 1162  5.302240e+12
## 1163  4.664046e+12
## 1164  4.252990e+12
## 1165  3.991777e+12
## 1166  3.846851e+12
## 1167  3.941425e+12
## 1168  3.429186e+12
## 1169  3.313999e+12
## 1170  3.106547e+12
## 1171  3.021070e+12
## 1172  2.917807e+12
## 1173  2.808933e+12
## 1174  2.793080e+12
## 1175  2.900741e+12
## 1176  2.952559e+12
## 1177  2.624778e+12
## 1178  2.215740e+12
## 1179  1.858917e+12
## 1180  1.714429e+12
## 1181  1.519934e+12
## 1182  1.410696e+12
## 1183  1.290303e+12
## 1184  1.016187e+12
## 1185  7.955981e+11
## 1186  7.137000e+11
## 1187  6.611332e+11
## 1188  6.026781e+11
## 1189  5.395112e+11
## 1190  5.111362e+11
## 1191  4.989883e+11
## 1192  4.802004e+11
## 1193  4.361605e+11
## 1194  3.932373e+11
## 1195  3.641689e+11
## 1196  3.526747e+11
## 1197  3.635480e+11
## 1198            NA
## 1199  1.096478e+12
## 1200  1.002075e+12
## 1201  1.042643e+12
## 1202  1.048387e+12
## 1203  9.597998e+11
## 1204  9.771352e+11
## 1205  1.017692e+12
## 1206  1.076798e+12
## 1207  9.894334e+11
## 1208  9.090224e+11
## 1209  8.237336e+11
## 1210  7.154337e+11
## 1211  6.068111e+11
## 1212  6.398644e+11
## 1213  5.411281e+11
## 1214  4.692955e+11
## 1215  3.727425e+11
## 1216  3.115224e+11
## 1217  2.563115e+11
## 1218  2.277723e+11
## 1219  2.051860e+11
## 1220  2.067368e+11
## 1221  1.815542e+11
## 1222  1.738211e+11
## 1223  1.760722e+11
## 1224  1.724498e+11
## 1225  1.562540e+11
## 1226  1.333007e+11
## 1227  1.327060e+11
## 1228  1.476123e+11
## 1229  1.469203e+11
## 1230  1.462992e+11
## 1231  1.326454e+11
## 1232  1.376205e+11
## 1233  1.340412e+11
## 1234  1.310181e+11
## 1235  1.453172e+11
## 1236  1.446565e+11
## 1237  1.685647e+11
## 1238  2.221345e+11
## 1239  2.430406e+11
## 1240  1.262630e+11
## 1241  9.842681e+10
## 1242  8.018338e+10
## 1243  7.375644e+10
## 1244  6.995945e+10
## 1245  5.797130e+10
## 1246  5.039643e+10
## 1247  3.496022e+10
## 1248  3.277061e+10
## 1249  2.918519e+10
## 1250  3.142447e+10
## 1251  2.286064e+10
## 1252  1.998231e+10
## 1253  1.893035e+10
## 1254  1.883357e+10
## 1255  1.731412e+10
## 1256  1.594549e+10
## 1257  1.461189e+10
## 1258  1.380605e+10
## 1259  1.291017e+10
## 1260  1.206362e+10
## 1261            NA
## 1262  1.544392e+12
## 1263  1.421149e+12
## 1264  1.397069e+12
## 1265  1.334908e+12
## 1266  1.338336e+12
## 1267  1.217295e+12
## 1268  1.123192e+12
## 1269  1.115598e+12
## 1270  1.043391e+12
## 1271  9.608578e+11
## 1272  9.530653e+11
## 1273  1.031027e+12
## 1274  9.050960e+11
## 1275  8.781070e+11
## 1276  7.305474e+11
## 1277  6.179409e+11
## 1278  5.374962e+11
## 1279  4.666945e+11
## 1280  4.068527e+11
## 1281  3.674854e+11
## 1282  3.488940e+11
## 1283  3.459880e+11
## 1284  3.171076e+11
## 1285  3.102611e+11
## 1286  2.976695e+11
## 1287  2.821505e+11
## 1288  2.483145e+11
## 1289  2.177380e+11
## 1290  2.189024e+11
## 1291  2.126677e+11
## 1292  2.490688e+11
## 1293  2.311306e+11
## 1294  1.987285e+11
## 1295  1.893172e+11
## 1296  1.964031e+11
## 1297  1.753357e+11
## 1298  1.561632e+11
## 1299  1.503744e+11
## 1300  1.478000e+11
## 1301  1.515791e+11
## 1302  1.525628e+11
## 1303  1.494935e+11
## 1304  1.339576e+11
## 1305  1.192222e+11
## 1306  1.037667e+11
## 1307  9.204472e+10
## 1308  9.923466e+10
## 1309  8.125056e+10
## 1310  6.310237e+10
## 1311  5.236352e+10
## 1312  5.247232e+10
## 1313  4.963819e+10
## 1314  4.742564e+10
## 1315  4.272339e+10
## 1316  4.075267e+10
## 1317  4.026075e+10
## 1318  3.725406e+10
## 1319  3.228242e+10
## 1320  3.487571e+10
## 1321  3.053919e+10
## 1322  2.836964e+10
## 1323  2.710974e+10
## 1324            NA
## 1325  2.637762e+12
## 1326  2.420222e+12
## 1327  2.437674e+12
## 1328  2.382176e+12
## 1329  2.296411e+12
## 1330  2.193549e+12
## 1331  2.140838e+12
## 1332  2.192414e+12
## 1333  2.032824e+12
## 1334  1.869873e+12
## 1335  1.776541e+12
## 1336  1.745821e+12
## 1337  1.511302e+12
## 1338  1.517489e+12
## 1339  1.271409e+12
## 1340  1.087188e+12
## 1341  9.096540e+11
## 1342  7.775236e+11
## 1343  6.623261e+11
## 1344  5.944436e+11
## 1345  5.530633e+11
## 1346  5.517888e+11
## 1347  4.976239e+11
## 1348  4.829800e+11
## 1349  4.728956e+11
## 1350  4.539247e+11
## 1351  4.040757e+11
## 1352  3.505223e+11
## 1353  3.510595e+11
## 1354  3.603135e+11
## 1355  3.952044e+11
## 1356  3.771163e+11
## 1357  3.311858e+11
## 1358  3.268923e+11
## 1359  3.301370e+11
## 1360  3.064330e+11
## 1361  3.026748e+11
## 1362  2.963664e+11
## 1363  3.189008e+11
## 1364  3.785987e+11
## 1365  4.014302e+11
## 1366  2.749145e+11
## 1367  2.307648e+11
## 1368  1.975233e+11
## 1369  1.761207e+11
## 1370  1.610250e+11
## 1371  1.551310e+11
## 1372  1.301200e+11
## 1373  9.665488e+10
## 1374  8.416554e+10
## 1375  8.049300e+10
## 1376  8.016647e+10
## 1377  6.903415e+10
## 1378  6.154422e+10
## 1379  5.856799e+10
## 1380  5.800080e+10
## 1381  5.354932e+10
## 1382  4.740349e+10
## 1383  4.843466e+10
## 1384  4.348599e+10
## 1385  4.048686e+10
## 1386  3.839227e+10
## 1387            NA
## 1388  2.662214e+13
## 1389  2.249345e+13
## 1390  2.304700e+13
## 1391  2.262081e+13
## 1392  2.062931e+13
## 1393  1.859348e+13
## 1394  1.854556e+13
## 1395  1.977103e+13
## 1396  1.902934e+13
## 1397  1.766930e+13
## 1398  1.650843e+13
## 1399  1.354447e+13
## 1400  1.125954e+13
## 1401  1.165288e+13
## 1402  9.374124e+12
## 1403  7.440932e+12
## 1404  6.166283e+12
## 1405  5.110655e+12
## 1406  4.251868e+12
## 1407  3.731880e+12
## 1408  3.520568e+12
## 1409  3.405977e+12
## 1410  3.101524e+12
## 1411  3.356331e+12
## 1412  3.486535e+12
## 1413  3.329622e+12
## 1414  3.018403e+12
## 1415  2.435434e+12
## 1416  2.095551e+12
## 1417  2.012753e+12
## 1418  1.976554e+12
## 1419  1.962251e+12
## 1420  1.825836e+12
## 1421  1.725810e+12
## 1422  1.580836e+12
## 1423  1.501849e+12
## 1424  1.416215e+12
## 1425  1.365913e+12
## 1426  1.307975e+12
## 1427  1.423393e+12
## 1428  1.399394e+12
## 1429  1.333749e+12
## 1430  1.166463e+12
## 1431  9.807321e+11
## 1432  9.425194e+11
## 1433  8.125642e+11
## 1434  7.537674e+11
## 1435  6.852901e+11
## 1436  5.825553e+11
## 1437  4.520215e+11
## 1438  3.934482e+11
## 1439  3.539226e+11
## 1440  3.110161e+11
## 1441  2.788909e+11
## 1442  2.740257e+11
## 1443  2.726223e+11
## 1444  2.447412e+11
## 1445  2.177918e+11
## 1446  1.983687e+11
## 1447  1.812281e+11
## 1448  1.779083e+11
## 1449  1.920066e+11
## 1450            NA
## 1451  5.454429e+12
## 1452  4.742372e+12
## 1453  5.618711e+12
## 1454  5.702983e+12
## 1455  5.831864e+12
## 1456  5.249605e+12
## 1457  5.372086e+12
## 1458  6.428177e+12
## 1459  6.303809e+12
## 1460  6.152225e+12
## 1461  6.086409e+12
## 1462  5.347631e+12
## 1463  4.313266e+12
## 1464  4.590250e+12
## 1465  3.948635e+12
## 1466  3.351391e+12
## 1467  2.863014e+12
## 1468  2.368134e+12
## 1469  2.055539e+12
## 1470  2.014355e+12
## 1471  2.243459e+12
## 1472  2.292621e+12
## 1473  2.076051e+12
## 1474  2.300579e+12
## 1475  2.280276e+12
## 1476  2.079828e+12
## 1477  1.921634e+12
## 1478  1.769160e+12
## 1479  1.507044e+12
## 1480  1.298731e+12
## 1481  1.189447e+12
## 1482  1.107820e+12
## 1483  9.286034e+11
## 1484  8.510430e+11
## 1485  7.617675e+11
## 1486  7.229043e+11
## 1487  7.227277e+11
## 1488  7.264991e+11
## 1489  7.263349e+11
## 1490  8.291427e+11
## 1491  8.944109e+11
## 1492  7.828171e+11
## 1493  6.442009e+11
## 1494  5.429316e+11
## 1495  4.788376e+11
## 1496  4.360063e+11
## 1497  3.975434e+11
## 1498  3.790499e+11
## 1499  2.923946e+11
## 1500  2.198289e+11
## 1501  1.954508e+11
## 1502  1.752253e+11
## 1503  1.606537e+11
## 1504  1.437830e+11
## 1505  1.339582e+11
## 1506  1.312878e+11
## 1507  1.192459e+11
## 1508  1.109274e+11
## 1509  1.000559e+11
## 1510  9.813312e+10
## 1511  8.956449e+10
## 1512  8.450580e+10
## 1513            NA
## 1514  4.585104e+12
## 1515  3.997651e+12
## 1516  4.773980e+12
## 1517  4.841460e+12
## 1518  4.985625e+12
## 1519  4.470023e+12
## 1520  4.599491e+12
## 1521  5.411098e+12
## 1522  5.386387e+12
## 1523  5.248290e+12
## 1524  5.275940e+12
## 1525  4.513754e+12
## 1526  3.605394e+12
## 1527  3.883194e+12
## 1528  3.356041e+12
## 1529  2.839422e+12
## 1530  2.432622e+12
## 1531  2.008591e+12
## 1532  1.759684e+12
## 1533  1.720599e+12
## 1534  1.914116e+12
## 1535  1.968833e+12
## 1536  1.779891e+12
## 1537  2.008546e+12
## 1538  1.999607e+12
## 1539  1.832597e+12
## 1540  1.678399e+12
## 1541  1.567648e+12
## 1542  1.319249e+12
## 1543  1.119422e+12
## 1544  1.030803e+12
## 1545  9.636585e+11
## 1546  7.982460e+11
## 1547  7.105798e+11
## 1548  6.400309e+11
## 1549  5.964058e+11
## 1550  5.967465e+11
## 1551  6.019088e+11
## 1552  5.958100e+11
## 1553  6.894576e+11
## 1554  7.475116e+11
## 1555  6.531016e+11
## 1556  5.409367e+11
## 1557  4.607497e+11
## 1558  4.052519e+11
## 1559  3.733597e+11
## 1560  3.429399e+11
## 1561  3.179692e+11
## 1562  2.420166e+11
## 1563  1.808885e+11
## 1564  1.590267e+11
## 1565  1.436659e+11
## 1566  1.321056e+11
## 1567  1.179181e+11
## 1568  1.096088e+11
## 1569  1.077216e+11
## 1570  9.744112e+10
## 1571  8.986140e+10
## 1572  7.836034e+10
## 1573  7.778448e+10
## 1574  7.154495e+10
## 1575  6.833586e+10
## 1576            NA
## 1577  5.183127e+12
## 1578  4.494456e+12
## 1579  5.367417e+12
## 1580  5.461290e+12
## 1581  5.592359e+12
## 1582  5.015170e+12
## 1583  5.143813e+12
## 1584  6.211056e+12
## 1585  6.091229e+12
## 1586  5.944453e+12
## 1587  5.884712e+12
## 1588  5.158299e+12
## 1589  4.129066e+12
## 1590  4.408050e+12
## 1591  3.773058e+12
## 1592  3.185797e+12
## 1593  2.709093e+12
## 1594  2.225327e+12
## 1595  1.922282e+12
## 1596  1.887102e+12
## 1597  2.120339e+12
## 1598  2.178188e+12
## 1599  1.969195e+12
## 1600  2.200252e+12
## 1601  2.187254e+12
## 1602  1.993811e+12
## 1603  1.833915e+12
## 1604  1.687299e+12
## 1605  1.435497e+12
## 1606  1.230803e+12
## 1607  1.122089e+12
## 1608  1.038203e+12
## 1609  8.639463e+11
## 1610  7.885720e+11
## 1611  7.045793e+11
## 1612  6.693554e+11
## 1613  6.724958e+11
## 1614  6.766000e+11
## 1615  6.805761e+11
## 1616  7.849061e+11
## 1617  8.516902e+11
## 1618  7.425548e+11
## 1619  6.071211e+11
## 1620  5.100625e+11
## 1621  4.513308e+11
## 1622  4.101830e+11
## 1623  3.735072e+11
## 1624  3.572879e+11
## 1625  2.731592e+11
## 1626  2.035891e+11
## 1627  1.812626e+11
## 1628  1.630152e+11
## 1629  1.495799e+11
## 1630  1.339505e+11
## 1631  1.249617e+11
## 1632  1.228050e+11
## 1633  1.115478e+11
## 1634  1.038906e+11
## 1635  9.369633e+10
## 1636  9.211380e+10
## 1637  8.414007e+10
## 1638  7.949496e+10
## 1639            NA
## 1640  1.280908e+12
## 1641  1.176577e+12
## 1642  1.153041e+12
## 1643  1.098537e+12
## 1644  1.114130e+12
## 1645  9.965149e+11
## 1646  9.491984e+11
## 1647  9.809697e+11
## 1648  9.122262e+11
## 1649  8.368330e+11
## 1650  7.964963e+11
## 1651  6.856263e+11
## 1652  6.035454e+11
## 1653  5.997068e+11
## 1654  4.914258e+11
## 1655  4.094145e+11
## 1656  3.530612e+11
## 1657  2.986228e+11
## 1658  2.582721e+11
## 1659  2.301527e+11
## 1660  2.121605e+11
## 1661  2.171253e+11
## 1662  1.892410e+11
## 1663  1.843376e+11
## 1664  1.812060e+11
## 1665  1.722742e+11
## 1666  1.562468e+11
## 1667  1.364245e+11
## 1668  1.474558e+11
## 1669  1.471819e+11
## 1670  1.951730e+11
## 1671  1.819865e+11
## 1672  1.568271e+11
## 1673  1.451713e+11
## 1674  1.318484e+11
## 1675  1.198868e+11
## 1676  1.114505e+11
## 1677  1.063658e+11
## 1678  1.064766e+11
## 1679  1.117319e+11
## 1680  1.130225e+11
## 1681  1.134370e+11
## 1682            NA
## 1683            NA
## 1684            NA
## 1685            NA
## 1686            NA
## 1687            NA
## 1688            NA
## 1689            NA
## 1690            NA
## 1691            NA
## 1692            NA
## 1693            NA
## 1694            NA
## 1695            NA
## 1696            NA
## 1697            NA
## 1698            NA
## 1699            NA
## 1700            NA
## 1701            NA
## 1702            NA
## 1703  3.637059e+13
## 1704  3.094839e+13
## 1705  3.207977e+13
## 1706  3.136991e+13
## 1707  2.959095e+13
## 1708  2.692549e+13
## 1709  2.668040e+13
## 1710  2.813972e+13
## 1711  2.720054e+13
## 1712  2.568924e+13
## 1713  2.414183e+13
## 1714  2.045704e+13
## 1715  1.680790e+13
## 1716  1.718298e+13
## 1717  1.436283e+13
## 1718  1.163156e+13
## 1719  9.802488e+12
## 1720  8.234094e+12
## 1721  6.937796e+12
## 1722  6.158591e+12
## 1723  6.006919e+12
## 1724  5.953473e+12
## 1725  5.447028e+12
## 1726  5.561949e+12
## 1727  5.745720e+12
## 1728  5.427591e+12
## 1729  4.950534e+12
## 1730  4.389187e+12
## 1731  4.001227e+12
## 1732  3.748477e+12
## 1733  3.629520e+12
## 1734  3.750910e+12
## 1735  3.254191e+12
## 1736  3.129896e+12
## 1737  2.944562e+12
## 1738  2.850406e+12
## 1739  2.746155e+12
## 1740  2.641393e+12
## 1741  2.612767e+12
## 1742  2.703789e+12
## 1743  2.742897e+12
## 1744  2.442523e+12
## 1745  2.074307e+12
## 1746  1.748564e+12
## 1747  1.611876e+12
## 1748  1.434391e+12
## 1749  1.336106e+12
## 1750  1.206945e+12
## 1751  9.502973e+11
## 1752  7.462470e+11
## 1753  6.669435e+11
## 1754  6.194853e+11
## 1755  5.648736e+11
## 1756  5.051601e+11
## 1757  4.784807e+11
## 1758  4.669375e+11
## 1759  4.502621e+11
## 1760  4.071843e+11
## 1761  3.635354e+11
## 1762  3.361842e+11
## 1763  3.275583e+11
## 1764  3.404949e+11
## 1765            NA
## 1766  5.629778e+11
## 1767  5.087402e+11
## 1768  5.041296e+11
## 1769  4.958764e+11
## 1770  5.492678e+11
## 1771  4.899793e+11
## 1772  4.670567e+11
## 1773  4.690625e+11
## 1774  4.393501e+11
## 1775  4.052922e+11
## 1776  3.974590e+11
## 1777  3.571525e+11
## 1778  3.197040e+11
## 1779  3.088496e+11
## 1780  2.624399e+11
## 1781  2.139850e+11
## 1782  1.826115e+11
## 1783  1.542587e+11
## 1784  1.324244e+11
## 1785  1.192285e+11
## 1786  1.106392e+11
## 1787  1.174505e+11
## 1788  9.797319e+10
## 1789  9.868404e+10
## 1790  1.009782e+11
## 1791  9.609882e+10
## 1792  9.382024e+10
## 1793  8.261317e+10
## 1794  9.414623e+10
## 1795  9.268613e+10
## 1796  1.445565e+11
## 1797  1.315883e+11
## 1798  1.105767e+11
## 1799  1.017543e+11
## 1800  9.090085e+10
## 1801  8.224380e+10
## 1802  7.233131e+10
## 1803  7.444306e+10
## 1804  7.816149e+10
## 1805  8.361321e+10
## 1806  8.244718e+10
## 1807  8.383991e+10
## 1808  7.815233e+10
## 1809  7.043273e+10
## 1810  6.406927e+10
## 1811  5.582492e+10
## 1812  5.364035e+10
## 1813  4.741186e+10
## 1814  3.931982e+10
## 1815  3.245163e+10
## 1816  2.933142e+10
## 1817  2.704458e+10
## 1818  2.602777e+10
## 1819  2.304607e+10
## 1820  2.185253e+10
## 1821  2.231664e+10
## 1822  2.049023e+10
## 1823  1.748029e+10
## 1824  2.108504e+10
## 1825  1.707114e+10
## 1826  1.564605e+10
## 1827  1.550433e+10
## 1828            NA
## 1829  8.742535e+12
## 1830  7.617243e+12
## 1831  7.908593e+12
## 1832  7.599756e+12
## 1833  7.412210e+12
## 1834  6.899234e+12
## 1835  6.546022e+12
## 1836  6.722603e+12
## 1837  6.446887e+12
## 1838  6.339639e+12
## 1839  6.042962e+12
## 1840  5.254415e+12
## 1841  4.295996e+12
## 1842  4.219890e+12
## 1843  3.728928e+12
## 1844  3.037465e+12
## 1845  2.564029e+12
## 1846  2.209428e+12
## 1847  1.907224e+12
## 1848  1.661285e+12
## 1849  1.552592e+12
## 1850  1.520347e+12
## 1851  1.445505e+12
## 1852  1.338626e+12
## 1853  1.465410e+12
## 1854  1.432365e+12
## 1855  1.280790e+12
## 1856  1.128028e+12
## 1857  1.046852e+12
## 1858  1.039039e+12
## 1859  9.892602e+11
## 1860  1.047873e+12
## 1861  9.721138e+11
## 1862  9.726350e+11
## 1863  9.553295e+11
## 1864  9.759951e+11
## 1865  9.172454e+11
## 1866  8.607847e+11
## 1867  8.713565e+11
## 1868  8.809454e+11
## 1869  8.555439e+11
## 1870  7.109109e+11
## 1871  5.854554e+11
## 1872  5.092768e+11
## 1873  4.618443e+11
## 1874  4.010494e+11
## 1875  3.602332e+11
## 1876  3.235450e+11
## 1877  2.425869e+11
## 1878  1.971021e+11
## 1879  1.810692e+11
## 1880  1.716231e+11
## 1881  1.548703e+11
## 1882  1.394511e+11
## 1883  1.294487e+11
## 1884  1.211448e+11
## 1885  1.320427e+11
## 1886  1.224766e+11
## 1887  1.090779e+11
## 1888  9.797892e+10
## 1889  9.642714e+10
## 1890  9.105170e+10
## 1891            NA
## 1892  3.679844e+12
## 1893  3.115703e+12
## 1894  3.472047e+12
## 1895  3.477249e+12
## 1896  3.313255e+12
## 1897  3.192322e+12
## 1898  3.164191e+12
## 1899  3.592212e+12
## 1900  3.565646e+12
## 1901  3.627526e+12
## 1902  3.354142e+12
## 1903  2.976774e+12
## 1904  2.548739e+12
## 1905  2.821107e+12
## 1906  2.264432e+12
## 1907  1.917679e+12
## 1908  1.636975e+12
## 1909  1.361038e+12
## 1910  1.152804e+12
## 1911  1.039871e+12
## 1912  1.045249e+12
## 1913  1.050269e+12
## 1914  9.375655e+11
## 1915  8.640960e+11
## 1916  8.836341e+11
## 1917  8.401531e+11
## 1918  7.436165e+11
## 1919  6.598013e+11
## 1920  6.254816e+11
## 1921  6.161151e+11
## 1922  5.638548e+11
## 1923  8.056001e+11
## 1924  6.094782e+11
## 1925  5.869146e+11
## 1926  6.191928e+11
## 1927  6.724614e+11
## 1928  6.546997e+11
## 1929  6.380636e+11
## 1930  6.257124e+11
## 1931  6.181544e+11
## 1932  6.190665e+11
## 1933  5.978972e+11
## 1934  4.616619e+11
## 1935  3.516846e+11
## 1936  3.294304e+11
## 1937  2.833388e+11
## 1938  2.241327e+11
## 1939  2.027031e+11
## 1940  1.085394e+11
## 1941  8.015360e+10
## 1942  6.616710e+10
## 1943  5.590822e+10
## 1944  4.945272e+10
## 1945  4.468550e+10
## 1946            NA
## 1947            NA
## 1948            NA
## 1949            NA
## 1950            NA
## 1951            NA
## 1952            NA
## 1953            NA
## 1954            NA
## 1955  1.493752e+12
## 1956  1.274090e+12
## 1957  1.393572e+12
## 1958  1.390805e+12
## 1959  1.464280e+12
## 1960  1.475844e+12
## 1961  1.439071e+12
## 1962  1.600857e+12
## 1963  1.615132e+12
## 1964  1.756134e+12
## 1965  1.627688e+12
## 1966  1.580131e+12
## 1967  1.370339e+12
## 1968  1.406933e+12
## 1969  1.140406e+12
## 1970  9.350623e+11
## 1971  8.020269e+11
## 1972  6.792946e+11
## 1973  5.717417e+11
## 1974  5.234575e+11
## 1975  5.379545e+11
## 1976  5.320141e+11
## 1977  5.015935e+11
## 1978  4.612551e+11
## 1979  4.524102e+11
## 1980  4.278956e+11
## 1981  3.711942e+11
## 1982  3.185432e+11
## 1983  2.971155e+11
## 1984  2.893711e+11
## 1985  2.627709e+11
## 1986  5.071400e+11
## 1987  3.604885e+11
## 1988  3.584779e+11
## 1989  3.904834e+11
## 1990  4.465088e+11
## 1991  3.973223e+11
## 1992  3.644171e+11
## 1993  3.442060e+11
## 1994  3.062795e+11
## 1995  2.670351e+11
## 1996  2.736289e+11
## 1997  2.284968e+11
## 1998  1.831922e+11
## 1999  1.704391e+11
## 2000  1.472729e+11
## 2001  1.193113e+11
## 2002  1.025376e+11
## 2003  6.726357e+10
## 2004  5.067095e+10
## 2005  4.246589e+10
## 2006  3.704138e+10
## 2007  3.279605e+10
## 2008  2.955995e+10
## 2009  2.686845e+10
## 2010  2.481859e+10
## 2011  2.381056e+10
## 2012            NA
## 2013            NA
## 2014            NA
## 2015            NA
## 2016            NA
## 2017            NA
## 2018  1.475708e+12
## 2019  1.258549e+12
## 2020  1.376425e+12
## 2021  1.374528e+12
## 2022  1.448152e+12
## 2023  1.460439e+12
## 2024  1.425099e+12
## 2025  1.586867e+12
## 2026  1.601617e+12
## 2027  1.743926e+12
## 2028  1.616502e+12
## 2029  1.570450e+12
## 2030  1.362254e+12
## 2031  1.399622e+12
## 2032  1.134591e+12
## 2033  9.297140e+11
## 2034  7.969012e+11
## 2035  6.746915e+11
## 2036  5.677737e+11
## 2037  5.199017e+11
## 2038  5.339508e+11
## 2039  5.277005e+11
## 2040  4.973223e+11
## 2041  4.571873e+11
## 2042  4.486504e+11
## 2043  4.244860e+11
## 2044  3.679114e+11
## 2045  3.156999e+11
## 2046  2.944635e+11
## 2047  2.867882e+11
## 2048  2.604254e+11
## 2049  5.026133e+11
## 2050  3.572708e+11
## 2051  3.552782e+11
## 2052  3.869979e+11
## 2053  4.425233e+11
## 2054  3.937758e+11
## 2055  3.611643e+11
## 2056  3.411336e+11
## 2057  3.035457e+11
## 2058  2.646516e+11
## 2059  2.711865e+11
## 2060  2.264572e+11
## 2061  1.815571e+11
## 2062  1.689178e+11
## 2063  1.459584e+11
## 2064  1.182464e+11
## 2065  1.016224e+11
## 2066  6.666318e+10
## 2067  5.021867e+10
## 2068  4.208685e+10
## 2069  3.671075e+10
## 2070  3.250332e+10
## 2071  2.929610e+10
## 2072  2.662862e+10
## 2073  2.459706e+10
## 2074  2.359803e+10
## 2075            NA
## 2076            NA
## 2077            NA
## 2078            NA
## 2079            NA
## 2080            NA
## 2081  3.584514e+13
## 2082  3.046860e+13
## 2083  3.159034e+13
## 2084  3.090426e+13
## 2085  2.905705e+13
## 2086  2.644906e+13
## 2087  2.620956e+13
## 2088  2.766221e+13
## 2089  2.675352e+13
## 2090  2.525443e+13
## 2091  2.369052e+13
## 2092  1.985875e+13
## 2093  1.627917e+13
## 2094  1.666336e+13
## 2095  1.393002e+13
## 2096  1.127158e+13
## 2097  9.495021e+12
## 2098  7.976988e+12
## 2099  6.719127e+12
## 2100  5.959303e+12
## 2101  5.820256e+12
## 2102  5.767244e+12
## 2103  5.286624e+12
## 2104  5.403542e+12
## 2105  5.589652e+12
## 2106  5.282574e+12
## 2107  4.819065e+12
## 2108  4.272388e+12
## 2109  3.884185e+12
## 2110  3.636890e+12
## 2111  3.481130e+12
## 2112  3.617384e+12
## 2113  3.144260e+12
## 2114  3.029629e+12
## 2115  2.833271e+12
## 2116  2.755636e+12
## 2117  2.663885e+12
## 2118  2.559428e+12
## 2119  2.529134e+12
## 2120  2.617466e+12
## 2121  2.658380e+12
## 2122  2.359821e+12
## 2123  1.998047e+12
## 2124  1.679615e+12
## 2125  1.550585e+12
## 2126  1.381647e+12
## 2127  1.286334e+12
## 2128  1.163469e+12
## 2129  9.155842e+11
## 2130  7.171739e+11
## 2131  6.403136e+11
## 2132  5.950569e+11
## 2133  5.411943e+11
## 2134  4.844577e+11
## 2135  4.589267e+11
## 2136  4.468828e+11
## 2137  4.320303e+11
## 2138  3.918110e+11
## 2139  3.441928e+11
## 2140  3.210129e+11
## 2141  3.141730e+11
## 2142  3.273786e+11
## 2143            NA
## 2144  2.531070e+13
## 2145  2.271278e+13
## 2146  2.313041e+13
## 2147  2.226561e+13
## 2148  2.113374e+13
## 2149  2.023001e+13
## 2150  1.976918e+13
## 2151  1.936284e+13
## 2152  1.869625e+13
## 2153  1.808872e+13
## 2154  1.739937e+13
## 2155  1.667294e+13
## 2156  1.585935e+13
## 2157  1.632983e+13
## 2158  1.594981e+13
## 2159  1.514100e+13
## 2160  1.421718e+13
## 2161  1.324837e+13
## 2162  1.235617e+13
## 2163  1.169370e+13
## 2164  1.132459e+13
## 2165  1.099920e+13
## 2166  1.031291e+13
## 2167  9.699949e+12
## 2168  9.235474e+12
## 2169  8.704364e+12
## 2170  8.245811e+12
## 2171  7.867242e+12
## 2172  7.437550e+12
## 2173  7.114395e+12
## 2174  6.770092e+12
## 2175  6.558666e+12
## 2176  6.208137e+12
## 2177  5.745207e+12
## 2178  5.287828e+12
## 2179  4.958242e+12
## 2180  4.704775e+12
## 2181  4.393971e+12
## 2182  3.975475e+12
## 2183  3.658081e+12
## 2184  3.513995e+12
## 2185  3.131774e+12
## 2186  2.870922e+12
## 2187  2.570708e+12
## 2188  2.293885e+12
## 2189  2.080374e+12
## 2190  1.859083e+12
## 2191  1.705964e+12
## 2192  1.556967e+12
## 2193  1.392428e+12
## 2194  1.264333e+12
## 2195  1.161385e+12
## 2196  1.099213e+12
## 2197  1.014480e+12
## 2198  9.275238e+11
## 2199  8.762226e+11
## 2200  7.983295e+11
## 2201  7.352851e+11
## 2202  6.837264e+11
## 2203  6.474216e+11
## 2204  6.043242e+11
## 2205  5.838462e+11
## 2206            NA
## 2207            NA
## 2208            NA
## 2209            NA
## 2210            NA
## 2211            NA
## 2212            NA
## 2213            NA
## 2214            NA
## 2215            NA
## 2216            NA
## 2217            NA
## 2218            NA
## 2219            NA
## 2220            NA
## 2221            NA
## 2222            NA
## 2223            NA
## 2224            NA
## 2225            NA
## 2226            NA
## 2227            NA
## 2228            NA
## 2229            NA
## 2230            NA
## 2231            NA
## 2232            NA
## 2233            NA
## 2234            NA
## 2235            NA
## 2236            NA
## 2237            NA
## 2238            NA
## 2239            NA
## 2240            NA
## 2241            NA
## 2242            NA
## 2243            NA
## 2244            NA
## 2245            NA
## 2246            NA
## 2247            NA
## 2248            NA
## 2249            NA
## 2250            NA
## 2251            NA
## 2252            NA
## 2253            NA
## 2254            NA
## 2255            NA
## 2256            NA
## 2257            NA
## 2258            NA
## 2259            NA
## 2260            NA
## 2261            NA
## 2262            NA
## 2263            NA
## 2264            NA
## 2265            NA
## 2266            NA
## 2267            NA
## 2268            NA
## 2269            NA
## 2270  5.826835e+13
## 2271  5.251705e+13
## 2272  5.387859e+13
## 2273  5.336583e+13
## 2274  5.044393e+13
## 2275  4.832536e+13
## 2276  4.740883e+13
## 2277  5.027546e+13
## 2278  4.926724e+13
## 2279  4.861931e+13
## 2280  4.867149e+13
## 2281  4.525348e+13
## 2282  4.314305e+13
## 2283  4.611951e+13
## 2284  4.343419e+13
## 2285  3.967283e+13
## 2286  3.760826e+13
## 2287  3.557197e+13
## 2288  3.195057e+13
## 2289  2.856271e+13
## 2290  2.737424e+13
## 2291  2.763545e+13
## 2292  2.704112e+13
## 2293  2.574525e+13
## 2294  2.548550e+13
## 2295  2.587810e+13
## 2296  2.566138e+13
## 2297  2.327795e+13
## 2298  2.169410e+13
## 2299  2.140206e+13
## 2300  1.989912e+13
## 2301  1.880105e+13
## 2302  1.668974e+13
## 2303  1.594831e+13
## 2304  1.414909e+13
## 2305  1.221753e+13
## 2306  1.008706e+13
## 2307  9.577290e+12
## 2308  9.157658e+12
## 2309  8.867590e+12
## 2310  9.002275e+12
## 2311  8.843232e+12
## 2312  7.956895e+12
## 2313  6.888422e+12
## 2314  5.733753e+12
## 2315  5.082150e+12
## 2316  4.686291e+12
## 2317  4.180948e+12
## 2318  3.731261e+12
## 2319  3.088352e+12
## 2320  2.662499e+12
## 2321  2.404121e+12
## 2322  2.205837e+12
## 2323  2.005273e+12
## 2324  1.848604e+12
## 2325  1.722045e+12
## 2326  1.568996e+12
## 2327  1.445606e+12
## 2328  1.322665e+12
## 2329  1.227109e+12
## 2330  1.136830e+12
## 2331  1.081090e+12
## 2332            NA
## 2333  4.539483e+11
## 2334  3.783155e+11
## 2335  4.333633e+11
## 2336  4.428876e+11
## 2337  3.989432e+11
## 2338  3.663573e+11
## 2339  3.703217e+11
## 2340  4.464409e+11
## 2341  4.318832e+11
## 2342  4.137997e+11
## 2343  3.968010e+11
## 2344  3.223891e+11
## 2345  2.770364e+11
## 2346  3.228111e+11
## 2347  2.636831e+11
## 2348  2.155668e+11
## 2349  1.836184e+11
## 2350  1.515924e+11
## 2351  1.221858e+11
## 2352  9.833689e+10
## 2353  9.120991e+10
## 2354  9.166330e+10
## 2355  8.097949e+10
## 2356  7.523493e+10
## 2357  7.678604e+10
## 2358  7.374716e+10
## 2359  6.996239e+10
## 2360  6.092160e+10
## 2361  5.823963e+10
## 2362  6.115740e+10
## 2363  5.606473e+10
## 2364  5.444658e+10
## 2365  4.549367e+10
## 2366  4.344834e+10
## 2367  3.867253e+10
## 2368  3.258441e+10
## 2369  3.217793e+10
## 2370  3.386022e+10
## 2371  3.361790e+10
## 2372  3.558692e+10
## 2373  3.762357e+10
## 2374  3.742564e+10
## 2375  2.695279e+10
## 2376  2.075659e+10
## 2377  1.881406e+10
## 2378  1.670768e+10
## 2379  1.343979e+10
## 2380  1.203989e+10
## 2381  6.530811e+09
## 2382  4.507537e+09
## 2383  3.724245e+09
## 2384  3.137166e+09
## 2385            NA
## 2386            NA
## 2387            NA
## 2388            NA
## 2389            NA
## 2390            NA
## 2391            NA
## 2392            NA
## 2393            NA
## 2394            NA
## 2395            NA
## 2396  9.481916e+09
## 2397  9.515995e+09
## 2398  1.073623e+10
## 2399  1.075316e+10
## 2400  1.025622e+10
## 2401  9.506190e+09
## 2402  9.056069e+09
## 2403  9.269083e+09
## 2404  8.527970e+09
## 2405  8.194345e+09
## 2406  7.737746e+09
## 2407  6.634293e+09
## 2408  6.031363e+09
## 2409  6.704430e+09
## 2410  6.273721e+09
## 2411  5.688862e+09
## 2412  5.419207e+09
## 2413  4.877985e+09
## 2414  4.239148e+09
## 2415  3.558833e+09
## 2416  3.389384e+09
## 2417  3.435682e+09
## 2418  3.750945e+09
## 2419  3.413075e+09
## 2420  3.985855e+09
## 2421  3.978853e+09
## 2422  3.716954e+09
## 2423  3.426130e+09
## 2424  2.908018e+09
## 2425  2.743007e+09
## 2426  2.500503e+09
## 2427  2.354693e+09
## 2428  2.103639e+09
## 2429  2.033192e+09
## 2430  1.987609e+09
## 2431  2.042372e+09
## 2432  1.873278e+09
## 2433  1.979415e+09
## 2434  1.877642e+09
## 2435  1.974411e+09
## 2436  2.023852e+09
## 2437  1.966034e+09
## 2438  1.690597e+09
## 2439  1.379883e+09
## 2440  1.189809e+09
## 2441  1.140406e+09
## 2442  1.137284e+09
## 2443  1.018241e+09
## 2444  7.166942e+08
## 2445  5.256222e+08
## 2446  4.374457e+08
## 2447            NA
## 2448            NA
## 2449            NA
## 2450            NA
## 2451            NA
## 2452            NA
## 2453            NA
## 2454            NA
## 2455            NA
## 2456            NA
## 2457            NA
## 2458            NA
## 2459  5.497273e+13
## 2460  4.969780e+13
## 2461  5.087935e+13
## 2462  5.038011e+13
## 2463  4.753232e+13
## 2464  4.559050e+13
## 2465  4.458279e+13
## 2466  4.714454e+13
## 2467  4.622991e+13
## 2468  4.577512e+13
## 2469  4.584725e+13
## 2470  4.269092e+13
## 2471  4.092947e+13
## 2472  4.347655e+13
## 2473  4.104366e+13
## 2474  3.760494e+13
## 2475  3.574243e+13
## 2476  3.397094e+13
## 2477  3.057166e+13
## 2478  2.726848e+13
## 2479  2.614242e+13
## 2480  2.639874e+13
## 2481  2.594638e+13
## 2482  2.470915e+13
## 2483  2.460253e+13
## 2484  2.509482e+13
## 2485  2.497659e+13
## 2486  2.251999e+13
## 2487  2.094626e+13
## 2488  2.080881e+13
## 2489  1.938869e+13
## 2490  1.837509e+13
## 2491  1.637058e+13
## 2492  1.567421e+13
## 2493  1.391408e+13
## 2494  1.200064e+13
## 2495  9.821559e+12
## 2496  9.327147e+12
## 2497  8.924956e+12
## 2498  8.600060e+12
## 2499  8.637928e+12
## 2500  8.541375e+12
## 2501  7.713342e+12
## 2502  6.708712e+12
## 2503  5.583268e+12
## 2504  4.938483e+12
## 2505  4.551078e+12
## 2506  4.061736e+12
## 2507  3.636978e+12
## 2508  3.012355e+12
## 2509  2.596785e+12
## 2510  2.342119e+12
## 2511  2.144870e+12
## 2512  1.950689e+12
## 2513  1.798405e+12
## 2514  1.675301e+12
## 2515  1.527357e+12
## 2516  1.405789e+12
## 2517  1.288511e+12
## 2518  1.196188e+12
## 2519  1.107846e+12
## 2520  1.047798e+12
## 2521            NA
## 2522  1.434259e+12
## 2523  1.316350e+12
## 2524  1.401121e+12
## 2525  1.356086e+12
## 2526  1.301380e+12
## 2527  1.220805e+12
## 2528  1.328135e+12
## 2529  1.557383e+12
## 2530  1.466531e+12
## 2531  1.336891e+12
## 2532  1.230254e+12
## 2533  1.055906e+12
## 2534  8.979348e+11
## 2535  9.822302e+11
## 2536  7.867443e+11
## 2537  6.499183e+11
## 2538  5.143003e+11
## 2539  4.117351e+11
## 2540  3.301427e+11
## 2541  3.034284e+11
## 2542  2.637078e+11
## 2543  2.772802e+11
## 2544  2.393907e+11
## 2545  2.189550e+11
## 2546  2.121223e+11
## 2547  1.925289e+11
## 2548  1.735757e+11
## 2549  1.360775e+11
## 2550  1.460879e+11
## 2551  1.640514e+11
## 2552  2.072701e+11
## 2553  3.930664e+11
## 2554  2.398987e+11
## 2555  2.369382e+11
## 2556  2.258741e+11
## 2557  2.061617e+11
## 2558  2.140140e+11
## 2559  2.121872e+11
## 2560  2.317027e+11
## 2561  2.895519e+11
## 2562  3.094603e+11
## 2563  2.226331e+11
## 2564  1.806422e+11
## 2565  1.431207e+11
## 2566  1.285000e+11
## 2567  1.161310e+11
## 2568  9.902050e+10
## 2569  8.667418e+10
## 2570  6.111448e+10
## 2571  4.975251e+10
## 2572  4.276989e+10
## 2573  4.375701e+10
## 2574  3.577078e+10
## 2575  3.158374e+10
## 2576  2.996563e+10
## 2577  3.173720e+10
## 2578  2.889532e+10
## 2579  2.563715e+10
## 2580  2.752097e+10
## 2581  2.361494e+10
## 2582  2.162418e+10
## 2583  2.091650e+10
## 2584            NA
## 2585  5.387061e+11
## 2586  4.537283e+11
## 2587  5.215279e+11
## 2588  5.299913e+11
## 2589  4.827896e+11
## 2590  4.469252e+11
## 2591  4.550470e+11
## 2592  5.326318e+11
## 2593  5.156433e+11
## 2594  4.958468e+11
## 2595  4.746219e+11
## 2596  3.939669e+11
## 2597  3.429065e+11
## 2598  4.002972e+11
## 2599  3.322808e+11
## 2600  2.773227e+11
## 2601  2.383346e+11
## 2602  2.000852e+11
## 2603  1.663022e+11
## 2604  1.392114e+11
## 2605  1.301665e+11
## 2606  1.296231e+11
## 2607  1.169025e+11
## 2608  1.090003e+11
## 2609  1.091149e+11
## 2610  1.018764e+11
## 2611  9.580062e+10
## 2612  8.448650e+10
## 2613  8.029405e+10
## 2614  8.138287e+10
## 2615  7.648212e+10
## 2616  7.488332e+10
## 2617  6.454276e+10
## 2618  6.203665e+10
## 2619  5.633404e+10
## 2620  4.931631e+10
## 2621  5.024690e+10
## 2622  5.216750e+10
## 2623  5.264973e+10
## 2624  5.442170e+10
## 2625  5.468238e+10
## 2626  5.292081e+10
## 2627  3.976671e+10
## 2628  3.204419e+10
## 2629  2.980424e+10
## 2630  2.624560e+10
## 2631  2.299215e+10
## 2632  2.019719e+10
## 2633  1.300195e+10
## 2634  1.043293e+10
## 2635  8.855163e+09
## 2636  7.870923e+09
## 2637            NA
## 2638            NA
## 2639            NA
## 2640            NA
## 2641            NA
## 2642            NA
## 2643            NA
## 2644            NA
## 2645            NA
## 2646            NA
## 2647            NA
## 2648  4.088771e+12
## 2649  3.487013e+12
## 2650  3.653951e+12
## 2651  3.534209e+12
## 2652  3.433882e+12
## 2653  3.010758e+12
## 2654  2.704836e+12
## 2655  2.587789e+12
## 2656  2.362710e+12
## 2657  2.302399e+12
## 2658  2.277344e+12
## 2659  2.062469e+12
## 2660  1.683173e+12
## 2661  1.527613e+12
## 2662  1.504161e+12
## 2663  1.196088e+12
## 2664  1.050602e+12
## 2665  9.170834e+11
## 2666  7.910267e+11
## 2667  6.774265e+11
## 2668  6.456786e+11
## 2669  6.302421e+11
## 2670  5.981465e+11
## 2671  5.582590e+11
## 2672  5.505488e+11
## 2673  5.248147e+11
## 2674  4.797073e+11
## 2675  4.321961e+11
## 2676  3.809873e+11
## 2677  3.846195e+11
## 2678  3.621551e+11
## 2679  4.070666e+11
## 2680  3.781131e+11
## 2681  3.746786e+11
## 2682  3.486904e+11
## 2683  3.140349e+11
## 2684  2.965111e+11
## 2685  2.726769e+11
## 2686  2.739515e+11
## 2687  2.587924e+11
## 2688  2.501394e+11
## 2689  2.359622e+11
## 2690  1.956931e+11
## 2691  1.747218e+11
## 2692  1.535543e+11
## 2693  1.326085e+11
## 2694  1.358675e+11
## 2695  1.269346e+11
## 2696  1.047814e+11
## 2697  9.165334e+10
## 2698  9.116884e+10
## 2699  8.571186e+10
## 2700  7.917201e+10
## 2701  7.201846e+10
## 2702  6.871297e+10
## 2703  6.245659e+10
## 2704  7.427448e+10
## 2705  6.915898e+10
## 2706  6.040834e+10
## 2707  5.370559e+10
## 2708  5.031685e+10
## 2709  4.715671e+10
## 2710            NA
## 2711  4.088771e+12
## 2712  3.487013e+12
## 2713  3.653951e+12
## 2714  3.534209e+12
## 2715  3.433882e+12
## 2716  3.010758e+12
## 2717  2.704836e+12
## 2718  2.587789e+12
## 2719  2.362710e+12
## 2720  2.302399e+12
## 2721  2.277344e+12
## 2722  2.062469e+12
## 2723  1.683173e+12
## 2724  1.527613e+12
## 2725  1.504161e+12
## 2726  1.196088e+12
## 2727  1.050602e+12
## 2728  9.170834e+11
## 2729  7.910267e+11
## 2730  6.774265e+11
## 2731  6.456786e+11
## 2732  6.302421e+11
## 2733  5.981465e+11
## 2734  5.582590e+11
## 2735  5.505488e+11
## 2736  5.248147e+11
## 2737  4.797073e+11
## 2738  4.321961e+11
## 2739  3.809873e+11
## 2740  3.846195e+11
## 2741  3.621551e+11
## 2742  4.070666e+11
## 2743  3.781131e+11
## 2744  3.746786e+11
## 2745  3.486904e+11
## 2746  3.140349e+11
## 2747  2.965111e+11
## 2748  2.726769e+11
## 2749  2.739515e+11
## 2750  2.587924e+11
## 2751  2.501394e+11
## 2752  2.359622e+11
## 2753  1.956931e+11
## 2754  1.747218e+11
## 2755  1.535543e+11
## 2756  1.326085e+11
## 2757  1.358675e+11
## 2758  1.269346e+11
## 2759  1.047814e+11
## 2760  9.165334e+10
## 2761  9.116884e+10
## 2762  8.571186e+10
## 2763  7.917201e+10
## 2764  7.201846e+10
## 2765  6.871297e+10
## 2766  6.245659e+10
## 2767  7.427448e+10
## 2768  6.915898e+10
## 2769  6.040834e+10
## 2770  5.370559e+10
## 2771  5.031685e+10
## 2772  4.715671e+10
## 2773            NA
## 2774  1.929052e+12
## 2775  1.719010e+12
## 2776  1.803363e+12
## 2777  1.782359e+12
## 2778  1.712749e+12
## 2779  1.579959e+12
## 2780  1.690061e+12
## 2781  1.895925e+12
## 2782  1.814869e+12
## 2783  1.707695e+12
## 2784  1.644141e+12
## 2785  1.456995e+12
## 2786  1.225730e+12
## 2787  1.274373e+12
## 2788  1.124139e+12
## 2789  9.702818e+11
## 2790  8.207625e+11
## 2791  6.908123e+11
## 2792  5.559401e+11
## 2793  4.409065e+11
## 2794  4.046794e+11
## 2795  4.230336e+11
## 2796  3.985701e+11
## 2797  3.946884e+11
## 2798  4.078292e+11
## 2799  3.928756e+11
## 2800  3.763688e+11
## 2801  3.249739e+11
## 2802  3.340860e+11
## 2803  3.554497e+11
## 2804  3.894022e+11
## 2805  3.739512e+11
## 2806  3.183306e+11
## 2807  3.124164e+11
## 2808  2.962527e+11
## 2809  2.604549e+11
## 2810  2.537029e+11
## 2811  2.748923e+11
## 2812  3.139038e+11
## 2813  3.566257e+11
## 2814  3.880724e+11
## 2815  2.810142e+11
## 2816  2.219983e+11
## 2817  1.850546e+11
## 2818  1.675127e+11
## 2819  1.525501e+11
## 2820  1.414332e+11
## 2821  1.283598e+11
## 2822  9.894085e+10
## 2823  7.739815e+10
## 2824  6.881627e+10
## 2825  6.740952e+10
## 2826  5.739493e+10
## 2827  5.026500e+10
## 2828  4.696208e+10
## 2829  4.726667e+10
## 2830  4.382251e+10
## 2831  3.937337e+10
## 2832  4.010227e+10
## 2833  3.507856e+10
## 2834  3.241997e+10
## 2835  3.116447e+10
## 2836            NA
## 2837  1.927599e+12
## 2838  1.717750e+12
## 2839  1.801677e+12
## 2840  1.780721e+12
## 2841  1.711174e+12
## 2842  1.578467e+12
## 2843  1.688645e+12
## 2844  1.894537e+12
## 2845  1.813541e+12
## 2846  1.706636e+12
## 2847  1.643076e+12
## 2848  1.456025e+12
## 2849  1.224883e+12
## 2850  1.273406e+12
## 2851  1.123103e+12
## 2852  9.692615e+11
## 2853  8.198393e+11
## 2854  6.899686e+11
## 2855  5.552304e+11
## 2856  4.402039e+11
## 2857  4.040527e+11
## 2858  4.224146e+11
## 2859  3.979425e+11
## 2860  3.940756e+11
## 2861  4.072627e+11
## 2862  3.923698e+11
## 2863  3.758575e+11
## 2864  3.244841e+11
## 2865  3.336090e+11
## 2866  3.550139e+11
## 2867  3.890273e+11
## 2868  3.735819e+11
## 2869  3.180254e+11
## 2870  3.121326e+11
## 2871  2.960043e+11
## 2872  2.602483e+11
## 2873  2.535369e+11
## 2874  2.747457e+11
## 2875  3.137639e+11
## 2876  3.564864e+11
## 2877  3.879272e+11
## 2878  2.808714e+11
## 2879  2.218734e+11
## 2880  1.849733e+11
## 2881  1.674534e+11
## 2882  1.525066e+11
## 2883  1.413905e+11
## 2884  1.283214e+11
## 2885  9.890714e+10
## 2886  7.736979e+10
## 2887  6.879694e+10
## 2888  6.739402e+10
## 2889  5.738089e+10
## 2890  5.025085e+10
## 2891  4.694706e+10
## 2892  4.725188e+10
## 2893  4.380839e+10
## 2894  3.935914e+10
## 2895  4.008976e+10
## 2896  3.506709e+10
## 2897  3.240948e+10
## 2898  3.115339e+10
## 2899            NA
## 2900  1.929052e+12
## 2901  1.719010e+12
## 2902  1.803363e+12
## 2903  1.782359e+12
## 2904  1.712749e+12
## 2905  1.579959e+12
## 2906  1.690061e+12
## 2907  1.895925e+12
## 2908  1.814869e+12
## 2909  1.707695e+12
## 2910  1.644141e+12
## 2911  1.456995e+12
## 2912  1.225730e+12
## 2913  1.274373e+12
## 2914  1.124139e+12
## 2915  9.702818e+11
## 2916  8.207625e+11
## 2917  6.908123e+11
## 2918  5.559401e+11
## 2919  4.409065e+11
## 2920  4.046794e+11
## 2921  4.230336e+11
## 2922  3.985701e+11
## 2923  3.946884e+11
## 2924  4.078292e+11
## 2925  3.928756e+11
## 2926  3.763688e+11
## 2927  3.249739e+11
## 2928  3.340860e+11
## 2929  3.554497e+11
## 2930  3.894022e+11
## 2931  3.739512e+11
## 2932  3.183306e+11
## 2933  3.124164e+11
## 2934  2.962527e+11
## 2935  2.604549e+11
## 2936  2.537029e+11
## 2937  2.748923e+11
## 2938  3.139038e+11
## 2939  3.566257e+11
## 2940  3.880724e+11
## 2941  2.810142e+11
## 2942  2.219983e+11
## 2943  1.850546e+11
## 2944  1.675127e+11
## 2945  1.525501e+11
## 2946  1.414332e+11
## 2947  1.283598e+11
## 2948  9.894085e+10
## 2949  7.739815e+10
## 2950  6.881627e+10
## 2951  6.740952e+10
## 2952  5.739493e+10
## 2953  5.026500e+10
## 2954  4.696208e+10
## 2955  4.726667e+10
## 2956  4.382251e+10
## 2957  3.937337e+10
## 2958  4.010227e+10
## 2959  3.507856e+10
## 2960  3.241997e+10
## 2961  3.116447e+10
## 2962            NA
## 2963  2.710409e+13
## 2964  2.285137e+13
## 2965  2.368174e+13
## 2966  2.330450e+13
## 2967  2.164484e+13
## 2968  1.954982e+13
## 2969  1.966354e+13
## 2970  2.093960e+13
## 2971  2.030664e+13
## 2972  1.891479e+13
## 2973  1.764755e+13
## 2974  1.460434e+13
## 2975  1.198318e+13
## 2976  1.244347e+13
## 2977  1.020101e+13
## 2978  8.234043e+12
## 2979  6.930926e+12
## 2980  5.767481e+12
## 2981  4.811817e+12
## 2982  4.297954e+12
## 2983  4.267639e+12
## 2984  4.246882e+12
## 2985  3.841078e+12
## 2986  4.064946e+12
## 2987  4.124231e+12
## 2988  3.850175e+12
## 2989  3.538257e+12
## 2990  3.144387e+12
## 2991  2.837279e+12
## 2992  2.601335e+12
## 2993  2.494887e+12
## 2994  2.573841e+12
## 2995  2.170714e+12
## 2996  2.052565e+12
## 2997  1.850902e+12
## 2998  1.734387e+12
## 2999  1.713511e+12
## 3000  1.674642e+12
## 3001  1.626146e+12
## 3002  1.711731e+12
## 3003  1.792584e+12
## 3004  1.658117e+12
## 3005  1.426837e+12
## 3006  1.175612e+12
## 3007  1.096860e+12
## 3008  9.919326e+11
## 3009  9.418184e+11
## 3010  8.550365e+11
## 3011  6.896469e+11
## 3012  5.303106e+11
## 3013  4.663721e+11
## 3014  4.287332e+11
## 3015  3.916593e+11
## 3016  3.494366e+11
## 3017  3.348471e+11
## 3018  3.328006e+11
## 3019  3.012361e+11
## 3020  2.696465e+11
## 3021  2.349677e+11
## 3022  2.239607e+11
## 3023  2.183622e+11
## 3024  2.419478e+11
## 3025            NA
## 3026  9.652743e+13
## 3027  8.511634e+13
## 3028  8.765425e+13
## 3029  8.646696e+13
## 3030  8.140950e+13
## 3031  7.646936e+13
## 3032  7.518636e+13
## 3033  7.973264e+13
## 3034  7.760623e+13
## 3035  7.550039e+13
## 3036  7.385746e+13
## 3037  6.660560e+13
## 3038  6.080391e+13
## 3039  6.412060e+13
## 3040  5.834935e+13
## 3041  5.178010e+13
## 3042  4.778432e+13
## 3043  4.412387e+13
## 3044  3.915222e+13
## 3045  3.491787e+13
## 3046  3.362387e+13
## 3047  3.383954e+13
## 3048  3.274540e+13
## 3049  3.154648e+13
## 3050  3.162774e+13
## 3051  3.174178e+13
## 3052  3.104840e+13
## 3053  2.787677e+13
## 3054  2.582620e+13
## 3055  2.541028e+13
## 3056  2.376350e+13
## 3057  2.278375e+13
## 3058  2.019742e+13
## 3059  1.934119e+13
## 3060  1.731021e+13
## 3061  1.520774e+13
## 3062  1.286213e+13
## 3063  1.227160e+13
## 3064  1.184007e+13
## 3065  1.160977e+13
## 3066  1.172760e+13
## 3067  1.133659e+13
## 3068  1.005421e+13
## 3069  8.656534e+12
## 3070  7.350784e+12
## 3071  6.499365e+12
## 3072  5.978906e+12
## 3073  5.367575e+12
## 3074  4.656966e+12
## 3075  3.817137e+12
## 3076  3.310772e+12
## 3077  2.997220e+12
## 3078  2.741172e+12
## 3079  2.485213e+12
## 3080  2.302529e+12
## 3081  2.163894e+12
## 3082  1.993900e+12
## 3083  1.830287e+12
## 3084  1.671610e+12
## 3085  1.550544e+12
## 3086  1.448622e+12
## 3087  1.392273e+12
## 3088            NA
## 3089  1.478686e+10
## 3090  2.014344e+10
## 3091  1.890449e+10
## 3092  1.841885e+10
## 3093  1.889635e+10
## 3094  1.801956e+10
## 3095  1.999816e+10
## 3096  2.055058e+10
## 3097  2.056449e+10
## 3098  2.020357e+10
## 3099  1.819041e+10
## 3100  1.563386e+10
## 3101  1.215484e+10
## 3102  1.024977e+10
## 3103  9.715762e+09
## 3104  6.971379e+09
## 3105  6.226199e+09
## 3106  5.220824e+09
## 3107  4.539501e+09
## 3108  3.854235e+09
## 3109            NA
## 3110            NA
## 3111            NA
## 3112            NA
## 3113            NA
## 3114            NA
## 3115            NA
## 3116            NA
## 3117            NA
## 3118            NA
## 3119            NA
## 3120            NA
## 3121            NA
## 3122            NA
## 3123            NA
## 3124            NA
## 3125            NA
## 3126            NA
## 3127            NA
## 3128            NA
## 3129  3.478788e+09
## 3130  3.641723e+09
## 3131  3.697940e+09
## 3132  3.300000e+09
## 3133  2.953333e+09
## 3134  2.555556e+09
## 3135  2.366667e+09
## 3136  2.155555e+09
## 3137  1.733333e+09
## 3138  1.595555e+09
## 3139  1.831109e+09
## 3140  1.748887e+09
## 3141  1.408889e+09
## 3142  1.373333e+09
## 3143  1.673333e+09
## 3144  1.400000e+09
## 3145  1.006667e+09
## 3146  8.000000e+08
## 3147  7.511112e+08
## 3148  5.466667e+08
## 3149  5.488889e+08
## 3150  5.377778e+08
## 3151            NA
## 3152  1.825579e+10
## 3153  1.513187e+10
## 3154  1.540183e+10
## 3155  1.515643e+10
## 3156  1.301969e+10
## 3157  1.186120e+10
## 3158  1.138685e+10
## 3159  1.322815e+10
## 3160  1.277622e+10
## 3161  1.231983e+10
## 3162  1.289076e+10
## 3163  1.192692e+10
## 3164  1.204421e+10
## 3165  1.288135e+10
## 3166  1.067732e+10
## 3167  8.896073e+09
## 3168  8.052074e+09
## 3169  7.184686e+09
## 3170  5.611496e+09
## 3171  4.348068e+09
## 3172  3.922101e+09
## 3173  3.480355e+09
## 3174  3.212122e+09
## 3175  2.545965e+09
## 3176  2.258514e+09
## 3177  3.199641e+09
## 3178  2.392765e+09
## 3179  1.880952e+09
## 3180  1.185315e+09
## 3181  6.521750e+08
## 3182  1.099559e+09
## 3183  2.028554e+09
## 3184  2.253090e+09
## 3185  2.051236e+09
## 3186  2.080796e+09
## 3187  2.097326e+09
## 3188  1.897050e+09
## 3189  1.857338e+09
## 3190            NA
## 3191            NA
## 3192            NA
## 3193            NA
## 3194            NA
## 3195            NA
## 3196            NA
## 3197            NA
## 3198            NA
## 3199            NA
## 3200            NA
## 3201            NA
## 3202            NA
## 3203            NA
## 3204            NA
## 3205            NA
## 3206            NA
## 3207            NA
## 3208            NA
## 3209            NA
## 3210            NA
## 3211            NA
## 3212            NA
## 3213            NA
## 3214            NA
## 3215  1.630444e+11
## 3216  1.450092e+11
## 3217  1.717674e+11
## 3218  1.749109e+11
## 3219  1.700970e+11
## 3220  1.600342e+11
## 3221  1.659793e+11
## 3222  2.138100e+11
## 3223  2.097550e+11
## 3224  2.090590e+11
## 3225  2.000131e+11
## 3226  1.612073e+11
## 3227  1.372110e+11
## 3228  1.710007e+11
## 3229  1.349771e+11
## 3230  1.170273e+11
## 3231  1.031982e+11
## 3232  8.533258e+10
## 3233  6.786383e+10
## 3234  5.676036e+10
## 3235  5.474471e+10
## 3236  5.479039e+10
## 3237  4.864065e+10
## 3238  4.818775e+10
## 3239  4.817761e+10
## 3240  4.694158e+10
## 3241  4.176432e+10
## 3242  4.254318e+10
## 3243  4.994560e+10
## 3244  4.800308e+10
## 3245  4.571561e+10
## 3246  6.204856e+10
## 3247  5.563441e+10
## 3248  5.908907e+10
## 3249  6.674640e+10
## 3250  6.369224e+10
## 3251  5.793787e+10
## 3252  5.369828e+10
## 3253  4.880137e+10
## 3254  4.520709e+10
## 3255  4.434867e+10
## 3256  4.234638e+10
## 3257  3.324342e+10
## 3258  2.636449e+10
## 3259  2.097190e+10
## 3260  1.772835e+10
## 3261  1.555793e+10
## 3262  1.321003e+10
## 3263  8.707848e+09
## 3264  6.766767e+09
## 3265  5.077222e+09
## 3266  4.863487e+09
## 3267  4.257219e+09
## 3268  3.852116e+09
## 3269  3.370843e+09
## 3270  3.039835e+09
## 3271  3.136259e+09
## 3272  2.909293e+09
## 3273  2.702960e+09
## 3274  2.001428e+09
## 3275  2.434727e+09
## 3276  2.723593e+09
## 3277            NA
## 3278  7.090000e+08
## 3279  7.160000e+08
## 3280  6.470000e+08
## 3281  6.390000e+08
## 3282  6.120000e+08
## 3283  6.710000e+08
## 3284  6.730000e+08
## 3285  6.430000e+08
## 3286  6.380000e+08
## 3287  6.400000e+08
## 3288  5.700000e+08
## 3289  5.730000e+08
## 3290  6.750000e+08
## 3291  5.600000e+08
## 3292  5.180000e+08
## 3293  4.930000e+08
## 3294  5.000000e+08
## 3295  5.090000e+08
## 3296  5.240000e+08
## 3297  5.120000e+08
## 3298            NA
## 3299            NA
## 3300            NA
## 3301            NA
## 3302            NA
## 3303            NA
## 3304            NA
## 3305            NA
## 3306            NA
## 3307            NA
## 3308            NA
## 3309            NA
## 3310            NA
## 3311            NA
## 3312            NA
## 3313            NA
## 3314            NA
## 3315            NA
## 3316            NA
## 3317            NA
## 3318            NA
## 3319            NA
## 3320            NA
## 3321            NA
## 3322            NA
## 3323            NA
## 3324            NA
## 3325            NA
## 3326            NA
## 3327            NA
## 3328            NA
## 3329            NA
## 3330            NA
## 3331            NA
## 3332            NA
## 3333            NA
## 3334            NA
## 3335            NA
## 3336            NA
## 3337            NA
## 3338            NA
## 3339            NA
## 3340            NA
## 3341  3.330282e+09
## 3342  2.891022e+09
## 3343  3.155065e+09
## 3344  3.218316e+09
## 3345  3.000181e+09
## 3346  2.896679e+09
## 3347  2.789870e+09
## 3348  3.271808e+09
## 3349  3.193704e+09
## 3350  3.188809e+09
## 3351  3.629204e+09
## 3352  3.449967e+09
## 3353  3.674410e+09
## 3354  4.085631e+09
## 3355  3.952601e+09
## 3356  3.456442e+09
## 3357  3.159905e+09
## 3358  2.894922e+09
## 3359  2.361727e+09
## 3360  1.755910e+09
## 3361  1.546926e+09
## 3362  1.429049e+09
## 3363  1.239876e+09
## 3364  1.211932e+09
## 3365  1.180597e+09
## 3366  1.223945e+09
## 3367  1.178739e+09
## 3368  1.017549e+09
## 3369  1.007026e+09
## 3370  1.210014e+09
## 3371  1.106929e+09
## 3372  1.029048e+09
## 3373  7.954493e+08
## 3374  7.214259e+08
## 3375  6.113164e+08
## 3376  4.820006e+08
## 3377  3.467380e+08
## 3378  3.300707e+08
## 3379  3.278618e+08
## 3380  3.758960e+08
## 3381  3.889587e+08
## 3382  4.464161e+08
## 3383  4.115783e+08
## 3384  3.080089e+08
## 3385  2.540202e+08
## 3386  2.272810e+08
## 3387  2.201272e+08
## 3388  1.865587e+08
## 3389  1.508201e+08
## 3390  1.134082e+08
## 3391  8.940982e+07
## 3392  7.861921e+07
## 3393            NA
## 3394            NA
## 3395            NA
## 3396            NA
## 3397            NA
## 3398            NA
## 3399            NA
## 3400            NA
## 3401            NA
## 3402            NA
## 3403            NA
## 3404  6.740429e+10
## 3405  5.361907e+10
## 3406  6.930911e+10
## 3407  7.779294e+10
## 3408  6.897277e+10
## 3409  4.984049e+10
## 3410  8.721930e+10
## 3411  1.372444e+11
## 3412  1.334016e+11
## 3413  1.249982e+11
## 3414  1.094366e+11
## 3415  8.169953e+10
## 3416  7.030717e+10
## 3417  8.853861e+10
## 3418  6.526645e+10
## 3419  5.238101e+10
## 3420  3.697092e+10
## 3421  2.355205e+10
## 3422  1.781270e+10
## 3423  1.528559e+10
## 3424  8.936064e+09
## 3425  9.129595e+09
## 3426  6.152923e+09
## 3427  6.506230e+09
## 3428  7.648377e+09
## 3429  7.526447e+09
## 3430  5.538749e+09
## 3431  4.438321e+09
## 3432  5.768720e+09
## 3433  8.307811e+09
## 3434  1.060378e+10
## 3435  1.122876e+10
## 3436  1.020110e+10
## 3437  8.769251e+09
## 3438  8.083872e+09
## 3439  7.072063e+09
## 3440  7.553560e+09
## 3441  6.131475e+09
## 3442  5.784342e+09
## 3443  5.550483e+09
## 3444  5.550483e+09
## 3445  5.930503e+09
## 3446            NA
## 3447            NA
## 3448            NA
## 3449            NA
## 3450            NA
## 3451            NA
## 3452            NA
## 3453            NA
## 3454            NA
## 3455            NA
## 3456            NA
## 3457            NA
## 3458            NA
## 3459            NA
## 3460            NA
## 3461            NA
## 3462            NA
## 3463            NA
## 3464            NA
## 3465            NA
## 3466            NA
## 3467  1.471126e+09
## 3468  1.370281e+09
## 3469  1.687533e+09
## 3470  1.605944e+09
## 3471  1.467978e+09
## 3472  1.436585e+09
## 3473  1.336693e+09
## 3474  1.249733e+09
## 3475  1.181448e+09
## 3476  1.199948e+09
## 3477  1.137637e+09
## 3478  1.148700e+09
## 3479  1.228330e+09
## 3480  1.370070e+09
## 3481  1.312759e+09
## 3482  1.157663e+09
## 3483  1.022963e+09
## 3484  9.197296e+08
## 3485  8.563963e+08
## 3486  8.143815e+08
## 3487  8.004815e+08
## 3488  8.263704e+08
## 3489  7.662000e+08
## 3490  7.278593e+08
## 3491  6.806185e+08
## 3492  6.337296e+08
## 3493  5.772815e+08
## 3494  5.894296e+08
## 3495  5.351741e+08
## 3496  4.992815e+08
## 3497  4.817074e+08
## 3498  4.594704e+08
## 3499  4.387948e+08
## 3500  3.986377e+08
## 3501  3.371749e+08
## 3502  2.904401e+08
## 3503  2.409239e+08
## 3504  2.083728e+08
## 3505  1.821441e+08
## 3506  1.643693e+08
## 3507  1.478417e+08
## 3508  1.314310e+08
## 3509  1.090800e+08
## 3510  8.787934e+07
## 3511  7.749675e+07
## 3512            NA
## 3513            NA
## 3514            NA
## 3515            NA
## 3516            NA
## 3517            NA
## 3518            NA
## 3519            NA
## 3520            NA
## 3521            NA
## 3522            NA
## 3523            NA
## 3524            NA
## 3525            NA
## 3526            NA
## 3527            NA
## 3528            NA
## 3529            NA
## 3530  4.872273e+11
## 3531  3.855402e+11
## 3532  4.477546e+11
## 3533  5.248197e+11
## 3534  6.436287e+11
## 3535  5.575314e+11
## 3536  5.947493e+11
## 3537  5.263197e+11
## 3538  5.520251e+11
## 3539  5.459824e+11
## 3540  5.301633e+11
## 3541  4.236274e+11
## 3542  3.329765e+11
## 3543  3.615580e+11
## 3544  2.875305e+11
## 3545  2.325573e+11
## 3546  1.987371e+11
## 3547  1.646579e+11
## 3548  1.275870e+11
## 3549  9.772400e+10
## 3550  2.686968e+11
## 3551  2.842038e+11
## 3552  2.835230e+11
## 3553  2.989482e+11
## 3554  2.928590e+11
## 3555  2.721498e+11
## 3556  2.580318e+11
## 3557  2.574400e+11
## 3558  2.367417e+11
## 3559  2.287886e+11
## 3560  1.897200e+11
## 3561  1.413524e+11
## 3562  7.663690e+10
## 3563  1.262068e+11
## 3564  1.111062e+11
## 3565  1.109344e+11
## 3566  8.841667e+10
## 3567  7.909200e+10
## 3568  1.039791e+11
## 3569  8.430749e+10
## 3570  7.867684e+10
## 3571  7.696192e+10
## 3572  6.925233e+10
## 3573  5.808287e+10
## 3574  5.678100e+10
## 3575  5.116950e+10
## 3576  5.243865e+10
## 3577  7.243678e+10
## 3578  5.254400e+10
## 3579  3.473300e+10
## 3580  3.329320e+10
## 3581  3.158421e+10
## 3582  3.125628e+10
## 3583  2.643686e+10
## 3584  2.425667e+10
## 3585  2.863047e+10
## 3586  2.834471e+10
## 3587  2.560525e+10
## 3588  1.827212e+10
## 3589  2.445060e+10
## 3590            NA
## 3591            NA
## 3592            NA
## 3593  1.386141e+10
## 3594  1.264170e+10
## 3595  1.361929e+10
## 3596  1.245794e+10
## 3597  1.152746e+10
## 3598  1.054614e+10
## 3599  1.055334e+10
## 3600  1.160951e+10
## 3601  1.112147e+10
## 3602  1.061932e+10
## 3603  1.014211e+10
## 3604  9.260285e+09
## 3605  8.647937e+09
## 3606  1.166204e+10
## 3607  9.206302e+09
## 3608  6.384452e+09
## 3609  4.900470e+09
## 3610  3.576615e+09
## 3611  2.807061e+09
## 3612  2.376335e+09
## 3613  2.118468e+09
## 3614  1.911564e+09
## 3615  1.845482e+09
## 3616  1.893726e+09
## 3617  1.639492e+09
## 3618  1.596969e+09
## 3619  1.468317e+09
## 3620  1.315159e+09
## 3621  1.201313e+09
## 3622  1.272835e+09
## 3623  2.069870e+09
## 3624  2.256839e+09
## 3625            NA
## 3626            NA
## 3627            NA
## 3628            NA
## 3629            NA
## 3630            NA
## 3631            NA
## 3632            NA
## 3633            NA
## 3634            NA
## 3635            NA
## 3636            NA
## 3637            NA
## 3638            NA
## 3639            NA
## 3640            NA
## 3641            NA
## 3642            NA
## 3643            NA
## 3644            NA
## 3645            NA
## 3646            NA
## 3647            NA
## 3648            NA
## 3649            NA
## 3650            NA
## 3651            NA
## 3652            NA
## 3653            NA
## 3654            NA
## 3655            NA
## 3656  3.126019e+09
## 3657  2.610039e+09
## 3658  3.368970e+09
## 3659  3.202235e+09
## 3660  3.092179e+09
## 3661  2.983799e+09
## 3662  2.963128e+09
## 3663  2.791061e+09
## 3664  2.727933e+09
## 3665  2.615084e+09
## 3666  2.637989e+09
## 3667  2.453631e+09
## 3668  2.553631e+09
## 3669  2.843017e+09
## 3670  2.677654e+09
## 3671  2.469832e+09
## 3672  2.359777e+09
## 3673  2.254749e+09
## 3674  2.044134e+09
## 3675  1.962011e+09
## 3676  1.896648e+09
## 3677  1.873184e+09
## 3678  1.722905e+09
## 3679  1.665363e+09
## 3680  1.531844e+09
## 3681  1.379888e+09
## 3682  1.320670e+09
## 3683  1.245810e+09
## 3684  1.083240e+09
## 3685  9.586592e+08
## 3686  8.720670e+08
## 3687  7.648045e+08
## 3688  6.955307e+08
## 3689  5.966480e+08
## 3690  4.877095e+08
## 3691  4.055866e+08
## 3692            NA
## 3693            NA
## 3694            NA
## 3695            NA
## 3696            NA
## 3697            NA
## 3698            NA
## 3699            NA
## 3700            NA
## 3701            NA
## 3702            NA
## 3703            NA
## 3704            NA
## 3705            NA
## 3706            NA
## 3707            NA
## 3708            NA
## 3709            NA
## 3710            NA
## 3711            NA
## 3712            NA
## 3713            NA
## 3714            NA
## 3715            NA
## 3716            NA
## 3717            NA
## 3718            NA
## 3719  1.552667e+12
## 3720  1.326901e+12
## 3721  1.392228e+12
## 3722  1.428289e+12
## 3723  1.326516e+12
## 3724  1.206535e+12
## 3725  1.350616e+12
## 3726  1.467545e+12
## 3727  1.576380e+12
## 3728  1.546892e+12
## 3729  1.398406e+12
## 3730  1.148610e+12
## 3731  9.286269e+11
## 3732  1.055643e+12
## 3733  8.544273e+11
## 3734  7.479066e+11
## 3735  6.953285e+11
## 3736  6.143264e+11
## 3737  4.674980e+11
## 3738  3.955808e+11
## 3739  3.793582e+11
## 3740  4.158513e+11
## 3741  3.893896e+11
## 3742  3.996609e+11
## 3743  4.356143e+11
## 3744  4.013111e+11
## 3745  3.681408e+11
## 3746  3.228094e+11
## 3747  3.121381e+11
## 3748  3.255318e+11
## 3749  3.259870e+11
## 3750  3.114336e+11
## 3751  2.998779e+11
## 3752  2.361540e+11
## 3753  1.894878e+11
## 3754  1.824720e+11
## 3755  1.806336e+11
## 3756  1.935193e+11
## 3757  1.772672e+11
## 3758  1.940373e+11
## 3759  1.768919e+11
## 3760  1.499844e+11
## 3761  1.348983e+11
## 3762  1.184954e+11
## 3763  1.103510e+11
## 3764  1.050662e+11
## 3765  9.730438e+10
## 3766  8.896389e+10
## 3767  6.383216e+10
## 3768  5.204206e+10
## 3769  4.521447e+10
## 3770  4.133162e+10
## 3771  3.668160e+10
## 3772  3.271251e+10
## 3773  3.044126e+10
## 3774  2.730653e+10
## 3775  2.597491e+10
## 3776  2.379998e+10
## 3777  2.153881e+10
## 3778  1.992160e+10
## 3779  1.968194e+10
## 3780  1.860567e+10
## 3781            NA
## 3782  4.803684e+11
## 3783  4.352252e+11
## 3784  4.446212e+11
## 3785  4.549912e+11
## 3786  4.172612e+11
## 3787  3.958374e+11
## 3788  3.819711e+11
## 3789  4.425848e+11
## 3790  4.301910e+11
## 3791  4.094018e+11
## 3792  4.316852e+11
## 3793  3.922751e+11
## 3794  4.017587e+11
## 3795  4.320519e+11
## 3796  3.891856e+11
## 3797  3.362801e+11
## 3798  3.160923e+11
## 3799  3.014576e+11
## 3800  2.622736e+11
## 3801  2.143949e+11
## 3802  1.975088e+11
## 3803  1.972896e+11
## 3804  2.172591e+11
## 3805  2.182599e+11
## 3806  2.127903e+11
## 3807  2.372509e+11
## 3808  2.410383e+11
## 3809  2.035352e+11
## 3810  1.903797e+11
## 3811  1.950781e+11
## 3812  1.737942e+11
## 3813  1.664634e+11
## 3814  1.331058e+11
## 3815  1.333394e+11
## 3816  1.241684e+11
## 3817  9.903616e+10
## 3818  6.938677e+10
## 3819  6.798534e+10
## 3820  7.212102e+10
## 3821  7.127529e+10
## 3822  7.103423e+10
## 3823  8.205891e+10
## 3824  7.393730e+10
## 3825  6.205226e+10
## 3826  5.154576e+10
## 3827  4.295998e+10
## 3828  4.005921e+10
## 3829  3.518930e+10
## 3830  2.951547e+10
## 3831  2.205961e+10
## 3832  1.785849e+10
## 3833  1.537301e+10
## 3834  1.358280e+10
## 3835  1.244063e+10
## 3836  1.157943e+10
## 3837  1.088768e+10
## 3838  9.994071e+09
## 3839  9.169984e+09
## 3840  8.374175e+09
## 3841  7.756110e+09
## 3842  7.311750e+09
## 3843  6.592694e+09
## 3844            NA
## 3845  5.462218e+10
## 3846  4.269300e+10
## 3847  4.817424e+10
## 3848  4.711294e+10
## 3849  4.086556e+10
## 3850  3.786752e+10
## 3851  5.307437e+10
## 3852  7.524429e+10
## 3853  7.416444e+10
## 3854  6.968394e+10
## 3855  6.595163e+10
## 3856  5.290929e+10
## 3857  4.429149e+10
## 3858  4.885248e+10
## 3859  3.305034e+10
## 3860  2.098299e+10
## 3861  1.324572e+10
## 3862  8.680370e+09
## 3863  7.276754e+09
## 3864  6.235857e+09
## 3865  5.707720e+09
## 3866  5.272798e+09
## 3867  4.581432e+09
## 3868  4.446369e+09
## 3869  3.962238e+09
## 3870  3.176334e+09
## 3871  2.417356e+09
## 3872  1.193312e+09
## 3873  1.570000e+09
## 3874  4.463056e+08
## 3875  8.792366e+09
## 3876  8.858006e+09
## 3877            NA
## 3878            NA
## 3879            NA
## 3880            NA
## 3881            NA
## 3882            NA
## 3883            NA
## 3884            NA
## 3885            NA
## 3886            NA
## 3887            NA
## 3888            NA
## 3889            NA
## 3890            NA
## 3891            NA
## 3892            NA
## 3893            NA
## 3894            NA
## 3895            NA
## 3896            NA
## 3897            NA
## 3898            NA
## 3899            NA
## 3900            NA
## 3901            NA
## 3902            NA
## 3903            NA
## 3904            NA
## 3905            NA
## 3906            NA
## 3907            NA
## 3908  1.120860e+10
## 3909  9.699500e+09
## 3910  1.319280e+10
## 3911  1.275580e+10
## 3912  1.235760e+10
## 3913  1.183460e+10
## 3914  1.186190e+10
## 3915  1.117610e+10
## 3916  1.056280e+10
## 3917  1.072050e+10
## 3918  1.007045e+10
## 3919  1.009576e+10
## 3920  9.981960e+09
## 3921  1.052600e+10
## 3922  1.061834e+10
## 3923  1.016725e+10
## 3924  9.836200e+09
## 3925  9.055290e+09
## 3926  8.870090e+09
## 3927  8.881160e+09
## 3928  8.317830e+09
## 3929  8.076470e+09
## 3930  7.683870e+09
## 3931  6.833220e+09
## 3932  6.332360e+09
## 3933  3.609000e+09
## 3934  3.429000e+09
## 3935  3.259000e+09
## 3936  3.092000e+09
## 3937  3.109000e+09
## 3938  3.111160e+09
## 3939  3.166000e+09
## 3940  3.062000e+09
## 3941  2.817900e+09
## 3942  2.714000e+09
## 3943  2.472500e+09
## 3944  2.320700e+09
## 3945  2.041100e+09
## 3946  1.732800e+09
## 3947  1.578300e+09
## 3948  1.426500e+09
## 3949  1.335300e+09
## 3950  1.139800e+09
## 3951  8.324000e+08
## 3952  7.130000e+08
## 3953  6.421000e+08
## 3954  5.962000e+08
## 3955  6.324000e+08
## 3956  6.709000e+08
## 3957  5.909000e+08
## 3958  5.734000e+08
## 3959  5.384232e+08
## 3960  5.281373e+08
## 3961  4.449020e+08
## 3962  3.901961e+08
## 3963  3.400000e+08
## 3964  3.003922e+08
## 3965  2.666667e+08
## 3966  2.377451e+08
## 3967  2.122549e+08
## 3968  1.900980e+08
## 3969  1.698039e+08
## 3970            NA
## 3971  3.886866e+10
## 3972  3.472336e+10
## 3973  3.865332e+10
## 3974  3.780201e+10
## 3975  3.547378e+10
## 3976  3.223497e+10
## 3977  3.105064e+10
## 3978  3.338771e+10
## 3979  3.253947e+10
## 3980  3.074931e+10
## 3981  2.877660e+10
## 3982  2.571327e+10
## 3983  2.293822e+10
## 3984  2.571090e+10
## 3985  2.173000e+10
## 3986  1.850476e+10
## 3987  1.596872e+10
## 3988  1.315016e+10
## 3989  1.107481e+10
## 3990  9.593511e+09
## 3991  8.976197e+09
## 3992  9.062899e+09
## 3993  6.621010e+09
## 3994  6.183777e+09
## 3995  6.349202e+09
## 3996  6.101861e+09
## 3997  5.849468e+09
## 3998  5.567553e+09
## 3999  5.200266e+09
## 4000  4.751064e+09
## 4001  4.616223e+09
## 4002  4.229787e+09
## 4003  3.863564e+09
## 4004  3.702394e+09
## 4005  3.392021e+09
## 4006  3.052394e+09
## 4007  3.651862e+09
## 4008  3.905585e+09
## 4009  3.735106e+09
## 4010  3.645745e+09
## 4011  3.467819e+09
## 4012  3.072698e+09
## 4013            NA
## 4014            NA
## 4015            NA
## 4016            NA
## 4017            NA
## 4018            NA
## 4019            NA
## 4020            NA
## 4021            NA
## 4022            NA
## 4023            NA
## 4024            NA
## 4025            NA
## 4026            NA
## 4027            NA
## 4028            NA
## 4029            NA
## 4030            NA
## 4031            NA
## 4032            NA
## 4033            NA
## 4034  4.162649e+11
## 4035  3.739021e+11
## 4036  3.512385e+11
## 4037  3.213790e+11
## 4038  2.937546e+11
## 4039  2.652362e+11
## 4040  1.950787e+11
## 4041  1.728855e+11
## 4042  1.499905e+11
## 4043  1.333557e+11
## 4044  1.286379e+11
## 4045  1.152791e+11
## 4046  1.024778e+11
## 4047  9.163128e+10
## 4048  7.961189e+10
## 4049  7.181908e+10
## 4050  6.944294e+10
## 4051  6.510854e+10
## 4052  6.015893e+10
## 4053  5.472408e+10
## 4054  5.399129e+10
## 4055  5.336979e+10
## 4056  5.127057e+10
## 4057  4.998456e+10
## 4058  4.824431e+10
## 4059  4.643848e+10
## 4060  3.793975e+10
## 4061  3.376866e+10
## 4062  3.316652e+10
## 4063  3.170887e+10
## 4064  3.095748e+10
## 4065  3.159834e+10
## 4066  2.878171e+10
## 4067  2.657901e+10
## 4068  2.429803e+10
## 4069  2.177403e+10
## 4070  2.227842e+10
## 4071  1.892084e+10
## 4072  1.760905e+10
## 4073  1.852540e+10
## 4074  2.024969e+10
## 4075  1.813805e+10
## 4076  1.556548e+10
## 4077  1.328177e+10
## 4078  9.651149e+09
## 4079  1.011711e+10
## 4080  1.944835e+10
## 4081  1.251246e+10
## 4082  8.086726e+09
## 4083  6.288246e+09
## 4084  8.751843e+09
## 4085  8.992722e+09
## 4086  8.471006e+09
## 4087  7.483685e+09
## 4088  7.253575e+09
## 4089  6.439688e+09
## 4090  5.906637e+09
## 4091  5.386055e+09
## 4092  5.319458e+09
## 4093  5.081413e+09
## 4094  4.817580e+09
## 4095  4.274894e+09
## 4096            NA
## 4097  4.843800e+09
## 4098  4.671800e+09
## 4099  5.324250e+09
## 4100  5.097283e+09
## 4101  4.981589e+09
## 4102  4.832812e+09
## 4103  4.724691e+09
## 4104  4.696344e+09
## 4105  4.677248e+09
## 4106  4.610096e+09
## 4107  4.657699e+09
## 4108  4.529928e+09
## 4109  4.465657e+09
## 4110  4.784925e+09
## 4111  4.674007e+09
## 4112  4.217451e+09
## 4113  3.819500e+09
## 4114  3.444500e+09
## 4115  3.209500e+09
## 4116  3.106500e+09
## 4117  3.054500e+09
## 4118  3.059500e+09
## 4119  2.951822e+09
## 4120  2.817083e+09
## 4121  2.498384e+09
## 4122  2.363645e+09
## 4123  2.216974e+09
## 4124  2.151345e+09
## 4125  2.063342e+09
## 4126  1.957000e+09
## 4127  2.020584e+09
## 4128  2.012131e+09
## 4129  2.006165e+09
## 4130  1.812758e+09
## 4131  1.704370e+09
## 4132  1.547755e+09
## 4133  1.409536e+09
## 4134  1.346890e+09
## 4135  1.236017e+09
## 4136  1.163924e+09
## 4137  1.114205e+09
## 4138  1.012281e+09
## 4139  6.703625e+08
## 4140  5.528837e+08
## 4141  4.950977e+08
## 4142  4.359113e+08
## 4143  4.021786e+08
## 4144  3.118093e+08
## 4145            NA
## 4146            NA
## 4147            NA
## 4148            NA
## 4149            NA
## 4150            NA
## 4151            NA
## 4152            NA
## 4153            NA
## 4154            NA
## 4155            NA
## 4156            NA
## 4157            NA
## 4158            NA
## 4159            NA
## 4160  6.820538e+10
## 4161  6.137113e+10
## 4162  6.440965e+10
## 4163  6.003126e+10
## 4164  5.472660e+10
## 4165  4.772266e+10
## 4166  5.645473e+10
## 4167  7.881384e+10
## 4168  7.552798e+10
## 4169  6.568510e+10
## 4170  6.175779e+10
## 4171  5.722249e+10
## 4172  5.087408e+10
## 4173  6.076348e+10
## 4174  4.527740e+10
## 4175  3.695431e+10
## 4176  3.020757e+10
## 4177  2.314435e+10
## 4178  1.782779e+10
## 4179  1.459425e+10
## 4180  1.235482e+10
## 4181  1.273686e+10
## 4182  1.213849e+10
## 4183  1.522201e+10
## 4184  1.412841e+10
## 4185  1.475685e+10
## 4186  1.397268e+10
## 4187  1.493202e+10
## 4188  1.628099e+10
## 4189  1.703704e+10
## 4190  1.800000e+10
## 4191  2.165000e+10
## 4192            NA
## 4193            NA
## 4194            NA
## 4195            NA
## 4196            NA
## 4197            NA
## 4198            NA
## 4199            NA
## 4200            NA
## 4201            NA
## 4202            NA
## 4203            NA
## 4204            NA
## 4205            NA
## 4206            NA
## 4207            NA
## 4208            NA
## 4209            NA
## 4210            NA
## 4211            NA
## 4212            NA
## 4213            NA
## 4214            NA
## 4215            NA
## 4216            NA
## 4217            NA
## 4218            NA
## 4219            NA
## 4220            NA
## 4221            NA
## 4222            NA
## 4223  5.941042e+11
## 4224  5.252118e+11
## 4225  5.358309e+11
## 4226  5.432991e+11
## 4227  5.027647e+11
## 4228  4.760628e+11
## 4229  4.623356e+11
## 4230  5.353902e+11
## 4231  5.217910e+11
## 4232  4.961529e+11
## 4233  5.233304e+11
## 4234  4.814209e+11
## 4235  4.832542e+11
## 4236  5.173281e+11
## 4237  4.709222e+11
## 4238  4.082598e+11
## 4239  3.857148e+11
## 4240  3.692147e+11
## 4241  3.180825e+11
## 4242  2.583836e+11
## 4243  2.367461e+11
## 4244  2.367925e+11
## 4245  2.582457e+11
## 4246  2.585283e+11
## 4247  2.527081e+11
## 4248  2.792014e+11
## 4249  2.880256e+11
## 4250  2.448841e+11
## 4251  2.247218e+11
## 4252  2.347817e+11
## 4253  2.105110e+11
## 4254  2.053317e+11
## 4255  1.642211e+11
## 4256  1.622991e+11
## 4257  1.493944e+11
## 4258  1.200188e+11
## 4259  8.626826e+10
## 4260  8.334953e+10
## 4261  8.718424e+10
## 4262  9.209593e+10
## 4263  1.047300e+11
## 4264  1.268293e+11
## 4265  1.163155e+11
## 4266  1.012465e+11
## 4267  8.283991e+10
## 4268  7.111388e+10
## 4269  6.567819e+10
## 4270  5.603308e+10
## 4271  4.774380e+10
## 4272  3.720942e+10
## 4273  2.982166e+10
## 4274  2.670620e+10
## 4275  2.371074e+10
## 4276  2.137635e+10
## 4277  1.999204e+10
## 4278  1.865188e+10
## 4279  1.737146e+10
## 4280  1.596011e+10
## 4281  1.426002e+10
## 4282  1.326402e+10
## 4283  1.240015e+10
## 4284  1.165872e+10
## 4285            NA
## 4286  2.491500e+09
## 4287  2.080000e+09
## 4288  2.416500e+09
## 4289  2.315000e+09
## 4290  2.286000e+09
## 4291  2.258500e+09
## 4292  2.210500e+09
## 4293  2.138000e+09
## 4294  2.029500e+09
## 4295  1.903000e+09
## 4296  1.819500e+09
## 4297  1.738500e+09
## 4298  1.680500e+09
## 4299  1.729000e+09
## 4300  1.696000e+09
## 4301  1.581000e+09
## 4302  1.461500e+09
## 4303  1.389500e+09
## 4304  1.298000e+09
## 4305  1.233000e+09
## 4306  1.163000e+09
## 4307  1.116000e+09
## 4308  9.750000e+08
## 4309  9.140000e+08
## 4310  8.680000e+08
## 4311  8.515000e+08
## 4312  8.185000e+08
## 4313  7.715000e+08
## 4314  7.510000e+08
## 4315  6.935000e+08
## 4316  5.990000e+08
## 4317  5.495000e+08
## 4318  3.691339e+08
## 4319  3.200934e+08
## 4320  2.810826e+08
## 4321  2.316383e+08
## 4322  2.126437e+08
## 4323  2.143819e+08
## 4324  1.921032e+08
## 4325  1.822063e+08
## 4326  1.960899e+08
## 4327  1.979382e+08
## 4328  1.518000e+08
## 4329  1.363000e+08
## 4330  1.176500e+08
## 4331  9.690583e+07
## 4332  1.180663e+08
## 4333  1.032164e+08
## 4334  7.834356e+07
## 4335  6.606250e+07
## 4336  5.920732e+07
## 4337  5.323353e+07
## 4338  4.730539e+07
## 4339  4.491018e+07
## 4340  4.737931e+07
## 4341  4.440559e+07
## 4342  4.006993e+07
## 4343  3.619383e+07
## 4344  3.374941e+07
## 4345  3.185692e+07
## 4346  2.996437e+07
## 4347  2.807189e+07
## 4348            NA
## 4349  1.714492e+10
## 4350  1.565155e+10
## 4351  1.439169e+10
## 4352  1.426241e+10
## 4353  1.270166e+10
## 4354  1.182107e+10
## 4355  1.138816e+10
## 4356  1.328453e+10
## 4357  1.251785e+10
## 4358  1.114136e+10
## 4359  1.069332e+10
## 4360  9.535345e+09
## 4361  9.738627e+09
## 4362  9.787735e+09
## 4363  8.169049e+09
## 4364  7.034112e+09
## 4365  6.567654e+09
## 4366  6.190271e+09
## 4367  5.349258e+09
## 4368  4.194343e+09
## 4369  3.666223e+09
## 4370  3.519991e+09
## 4371  3.677394e+09
## 4372  2.455093e+09
## 4373  2.268302e+09
## 4374  2.361117e+09
## 4375  2.169627e+09
## 4376  1.598076e+09
## 4377  2.274558e+09
## 4378  1.695315e+09
## 4379  1.986438e+09
## 4380  1.959965e+09
## 4381  1.502294e+09
## 4382  1.620246e+09
## 4383  1.562412e+09
## 4384  1.336102e+09
## 4385  1.045713e+09
## 4386  1.051134e+09
## 4387  1.095348e+09
## 4388  1.267778e+09
## 4389  1.291120e+09
## 4390  1.405252e+09
## 4391  1.186231e+09
## 4392  9.288433e+08
## 4393  7.500497e+08
## 4394  6.984082e+08
## 4395  6.768701e+08
## 4396  5.546548e+08
## 4397  5.043760e+08
## 4398  4.103319e+08
## 4399  3.350730e+08
## 4400  3.336278e+08
## 4401  3.307482e+08
## 4402  3.263231e+08
## 4403  3.062220e+08
## 4404  3.029253e+08
## 4405  2.899087e+08
## 4406  2.698190e+08
## 4407  2.539276e+08
## 4408  2.364349e+08
## 4409  2.356682e+08
## 4410  2.261956e+08
## 4411            NA
## 4412  7.286607e+09
## 4413  6.887147e+09
## 4414  7.423465e+09
## 4415  7.225977e+09
## 4416  7.142316e+09
## 4417  6.899911e+09
## 4418  6.654541e+09
## 4419  6.413988e+09
## 4420  6.465756e+09
## 4421  6.378188e+09
## 4422  6.312691e+09
## 4423  6.634526e+09
## 4424  6.656000e+09
## 4425  6.980000e+09
## 4426  6.767000e+09
## 4427  6.144000e+09
## 4428  4.868136e+09
## 4429  4.484703e+09
## 4430  4.186525e+09
## 4431  3.937228e+09
## 4432  3.680483e+09
## 4433  3.480219e+09
## 4434  3.324433e+09
## 4435  3.130748e+09
## 4436  2.932827e+09
## 4437  2.695390e+09
## 4438  2.030750e+09
## 4439  1.867160e+09
## 4440  1.820360e+09
## 4441  1.679900e+09
## 4442  1.634900e+09
## 4443  1.592400e+09
## 4444  1.501500e+09
## 4445  1.415100e+09
## 4446  1.296500e+09
## 4447  1.173500e+09
## 4448  1.039500e+09
## 4449  9.857000e+08
## 4450  8.894000e+08
## 4451  7.855000e+08
## 4452  7.391000e+08
## 4453  6.133000e+08
## 4454  5.172000e+08
## 4455  4.758000e+08
## 4456  4.470000e+08
## 4457  3.863000e+08
## 4458  3.450000e+08
## 4459  3.126000e+08
## 4460  2.695000e+08
## 4461  2.354000e+08
## 4462  2.111000e+08
## 4463  1.863000e+08
## 4464  1.649000e+08
## 4465  1.500000e+08
## 4466  1.551030e+08
## 4467  1.341734e+08
## 4468  1.143390e+08
## 4469  1.075667e+08
## 4470  9.636665e+07
## 4471  9.414999e+07
## 4472  8.924999e+07
## 4473  8.446665e+07
## 4474            NA
## 4475  2.539553e+09
## 4476  2.325184e+09
## 4477  2.535657e+09
## 4478  2.446866e+09
## 4479  2.450365e+09
## 4480  2.158972e+09
## 4481  2.003598e+09
## 4482  1.907091e+09
## 4483  1.756216e+09
## 4484  1.781281e+09
## 4485  1.777101e+09
## 4486  1.547991e+09
## 4487  1.234014e+09
## 4488  1.227809e+09
## 4489  1.168309e+09
## 4490  8.749899e+08
## 4491  7.969381e+08
## 4492  6.825239e+08
## 4493  6.040420e+08
## 4494  5.208496e+08
## 4495  4.614445e+08
## 4496  4.244641e+08
## 4497  3.992688e+08
## 4498  3.634528e+08
## 4499  3.522610e+08
## 4500  3.034355e+08
## 4501  2.904648e+08
## 4502  2.589856e+08
## 4503  2.259981e+08
## 4504  2.402158e+08
## 4505  2.403200e+08
## 4506  2.876582e+08
## 4507  2.647252e+08
## 4508  2.722410e+08
## 4509  2.427709e+08
## 4510  1.912307e+08
## 4511  1.632723e+08
## 4512  1.604600e+08
## 4513  1.566872e+08
## 4514  1.413665e+08
## 4515  1.391504e+08
## 4516  1.287174e+08
## 4517            NA
## 4518            NA
## 4519            NA
## 4520            NA
## 4521            NA
## 4522            NA
## 4523            NA
## 4524            NA
## 4525            NA
## 4526            NA
## 4527            NA
## 4528            NA
## 4529            NA
## 4530            NA
## 4531            NA
## 4532            NA
## 4533            NA
## 4534            NA
## 4535            NA
## 4536            NA
## 4537            NA
## 4538  4.040821e+10
## 4539  3.662984e+10
## 4540  4.089532e+10
## 4541  4.028765e+10
## 4542  3.750864e+10
## 4543  3.394113e+10
## 4544  3.300020e+10
## 4545  3.299619e+10
## 4546  3.065934e+10
## 4547  2.708450e+10
## 4548  2.396303e+10
## 4549  1.964963e+10
## 4550  1.733999e+10
## 4551  1.667432e+10
## 4552  1.312018e+10
## 4553  1.145187e+10
## 4554  9.549078e+09
## 4555  8.773452e+09
## 4556  8.082365e+09
## 4557  7.905485e+09
## 4558  8.141538e+09
## 4559  8.397913e+09
## 4560  8.285076e+09
## 4561  8.497546e+09
## 4562  7.925673e+09
## 4563  7.396967e+09
## 4564  6.715220e+09
## 4565  5.981245e+09
## 4566  5.734677e+09
## 4567  5.643893e+09
## 4568  5.343274e+09
## 4569  4.867583e+09
## 4570  4.715979e+09
## 4571  4.597616e+09
## 4572  4.347956e+09
## 4573  3.959379e+09
## 4574  5.377277e+09
## 4575  6.169482e+09
## 4576  5.422656e+09
## 4577  5.594118e+09
## 4578  5.891607e+09
## 4579  4.537488e+09
## 4580  4.421344e+09
## 4581  3.758221e+09
## 4582  3.227436e+09
## 4583  2.731984e+09
## 4584  2.404698e+09
## 4585  2.100250e+09
## 4586  1.262969e+09
## 4587  1.257616e+09
## 4588  1.095623e+09
## 4589  1.017003e+09
## 4590  9.296296e+08
## 4591  8.579125e+08
## 4592  7.558081e+08
## 4593  6.691919e+08
## 4594  6.043771e+08
## 4595  5.394915e+08
## 4596  4.788060e+08
## 4597  4.446652e+08
## 4598  4.066846e+08
## 4599  3.738794e+08
## 4600            NA
## 4601  2.336536e+10
## 4602  1.995047e+10
## 4603  2.020248e+10
## 4604  2.018351e+10
## 4605  1.808012e+10
## 4606  1.691333e+10
## 4607  1.621154e+10
## 4608  1.855834e+10
## 4609  1.817850e+10
## 4610  1.722685e+10
## 4611  1.864472e+10
## 4612  1.717678e+10
## 4613  1.761384e+10
## 4614  1.911274e+10
## 4615  1.577877e+10
## 4616  1.286461e+10
## 4617  1.122295e+10
## 4618  1.015755e+10
## 4619  8.498561e+09
## 4620  6.728771e+09
## 4621  5.800775e+09
## 4622  5.567406e+09
## 4623  4.685733e+09
## 4624  4.116699e+09
## 4625  3.671817e+09
## 4626  2.786045e+09
## 4627  1.866573e+09
## 4628  1.255802e+09
## 4629            NA
## 4630            NA
## 4631            NA
## 4632            NA
## 4633            NA
## 4634            NA
## 4635            NA
## 4636            NA
## 4637            NA
## 4638            NA
## 4639            NA
## 4640            NA
## 4641            NA
## 4642            NA
## 4643            NA
## 4644            NA
## 4645            NA
## 4646            NA
## 4647            NA
## 4648            NA
## 4649            NA
## 4650            NA
## 4651            NA
## 4652            NA
## 4653            NA
## 4654            NA
## 4655            NA
## 4656            NA
## 4657            NA
## 4658            NA
## 4659            NA
## 4660            NA
## 4661            NA
## 4662            NA
## 4663            NA
## 4664  1.761479e+10
## 4665  1.493007e+10
## 4666  1.669593e+10
## 4667  1.703190e+10
## 4668  1.610518e+10
## 4669  1.508258e+10
## 4670  1.353074e+10
## 4671  1.547006e+10
## 4672  1.427175e+10
## 4673  1.390751e+10
## 4674  1.511072e+10
## 4675  1.263732e+10
## 4676  1.011852e+10
## 4677  1.073076e+10
## 4678  1.056727e+10
## 4679  9.919158e+09
## 4680  9.918907e+09
## 4681  8.957468e+09
## 4682  7.511582e+09
## 4683  5.438857e+09
## 4684  5.489608e+09
## 4685  5.788330e+09
## 4686  5.484257e+09
## 4687  4.790459e+09
## 4688  5.020215e+09
## 4689  4.847753e+09
## 4690  4.730611e+09
## 4691  4.259331e+09
## 4692  4.160086e+09
## 4693  4.146514e+09
## 4694  3.942793e+09
## 4695  3.790567e+09
## 4696  3.083801e+09
## 4697  2.644537e+09
## 4698  1.965275e+09
## 4699  1.392635e+09
## 4700  1.114764e+09
## 4701  1.240796e+09
## 4702  1.172258e+09
## 4703  1.014907e+09
## 4704  1.073862e+09
## 4705  1.060924e+09
## 4706  8.198773e+08
## 4707  5.903767e+08
## 4708  4.516033e+08
## 4709  3.720101e+08
## 4710  3.551724e+08
## 4711  3.060338e+08
## 4712  2.441291e+08
## 4713  1.644669e+08
## 4714  1.274565e+08
## 4715  9.624511e+07
## 4716  7.735691e+07
## 4717  6.624826e+07
## 4718  5.864644e+07
## 4719  5.146444e+07
## 4720  4.579087e+07
## 4721  4.161397e+07
## 4722  3.809115e+07
## 4723  3.564321e+07
## 4724  3.290234e+07
## 4725  3.041231e+07
## 4726            NA
## 4727  1.608981e+12
## 4728  1.448560e+12
## 4729  1.873274e+12
## 4730  1.916947e+12
## 4731  2.063508e+12
## 4732  1.795700e+12
## 4733  1.802214e+12
## 4734  2.455994e+12
## 4735  2.472807e+12
## 4736  2.465189e+12
## 4737  2.616202e+12
## 4738  2.208872e+12
## 4739  1.667020e+12
## 4740  1.695825e+12
## 4741  1.397084e+12
## 4742  1.107640e+12
## 4743  8.916302e+11
## 4744  6.692938e+11
## 4745  5.582292e+11
## 4746  5.097888e+11
## 4747  5.599913e+11
## 4748  6.554482e+11
## 4749  5.996421e+11
## 4750  8.637110e+11
## 4751  8.832065e+11
## 4752  8.504264e+11
## 4753  7.693333e+11
## 4754  5.253699e+11
## 4755  3.682958e+11
## 4756  3.281880e+11
## 4757  3.426092e+11
## 4758  3.907256e+11
## 4759  3.470281e+11
## 4760  2.588161e+11
## 4761  2.375180e+11
## 4762  2.158786e+11
## 4763  1.761237e+11
## 4764  1.883400e+11
## 4765  1.896565e+11
## 4766  2.713141e+11
## 4767  2.580152e+11
## 4768  2.373935e+11
## 4769  2.213382e+11
## 4770  2.002786e+11
## 4771  1.763441e+11
## 4772  1.531689e+11
## 4773  1.292036e+11
## 4774  1.097945e+11
## 4775  8.359228e+10
## 4776  5.843486e+10
## 4777  4.886983e+10
## 4778  4.232766e+10
## 4779  3.717164e+10
## 4780  3.393046e+10
## 4781  3.108639e+10
## 4782  2.828332e+10
## 4783  2.246552e+10
## 4784  2.096373e+10
## 4785  2.328771e+10
## 4786  1.923175e+10
## 4787  1.727594e+10
## 4788  1.703047e+10
## 4789            NA
## 4790            NA
## 4791            NA
## 4792            NA
## 4793            NA
## 4794            NA
## 4795            NA
## 4796            NA
## 4797            NA
## 4798            NA
## 4799            NA
## 4800            NA
## 4801            NA
## 4802            NA
## 4803            NA
## 4804            NA
## 4805            NA
## 4806            NA
## 4807            NA
## 4808            NA
## 4809            NA
## 4810            NA
## 4811            NA
## 4812            NA
## 4813            NA
## 4814            NA
## 4815            NA
## 4816            NA
## 4817            NA
## 4818            NA
## 4819            NA
## 4820            NA
## 4821            NA
## 4822            NA
## 4823            NA
## 4824            NA
## 4825            NA
## 4826            NA
## 4827            NA
## 4828            NA
## 4829            NA
## 4830            NA
## 4831            NA
## 4832            NA
## 4833            NA
## 4834            NA
## 4835            NA
## 4836            NA
## 4837            NA
## 4838            NA
## 4839            NA
## 4840            NA
## 4841            NA
## 4842            NA
## 4843            NA
## 4844            NA
## 4845            NA
## 4846            NA
## 4847            NA
## 4848            NA
## 4849            NA
## 4850            NA
## 4851            NA
## 4852            NA
## 4853  1.400657e+10
## 4854  1.200583e+10
## 4855  1.346942e+10
## 4856  1.356735e+10
## 4857  1.212810e+10
## 4858  1.140085e+10
## 4859  1.293039e+10
## 4860  1.709834e+10
## 4861  1.809383e+10
## 4862  1.904794e+10
## 4863  1.852532e+10
## 4864  1.370737e+10
## 4865  1.073237e+10
## 4866  1.439310e+10
## 4867  1.224769e+10
## 4868  1.147070e+10
## 4869  9.531403e+09
## 4870  7.872333e+09
## 4871  6.557333e+09
## 4872  5.843329e+09
## 4873  5.601091e+09
## 4874  6.001153e+09
## 4875  4.600000e+09
## 4876  4.051147e+09
## 4877  5.197333e+09
## 4878  5.115603e+09
## 4879  4.734020e+09
## 4880  4.087338e+09
## 4881  4.105706e+09
## 4882  4.183548e+09
## 4883  3.701667e+09
## 4884  3.520552e+09
## 4885  2.985468e+09
## 4886  2.690718e+09
## 4887  2.754463e+09
## 4888  2.358593e+09
## 4889  3.523613e+09
## 4890  3.782523e+09
## 4891  3.844723e+09
## 4892  4.264252e+09
## 4893  4.366214e+09
## 4894  4.928825e+09
## 4895  2.803780e+09
## 4896  1.941601e+09
## 4897  1.732721e+09
## 4898  1.423061e+09
## 4899  1.168304e+09
## 4900  1.073577e+09
## 4901  4.330920e+08
## 4902  2.708186e+08
## 4903  1.975232e+08
## 4904  1.790801e+08
## 4905  1.612113e+08
## 4906  1.608193e+08
## 4907  1.390304e+08
## 4908  1.327584e+08
## 4909  1.140402e+08
## 4910            NA
## 4911            NA
## 4912            NA
## 4913            NA
## 4914            NA
## 4915            NA
## 4916  8.405631e+10
## 4917  7.024028e+10
## 4918  6.891588e+10
## 4919  6.636354e+10
## 4920  5.919945e+10
## 4921  5.395390e+10
## 4922  5.078200e+10
## 4923  5.708201e+10
## 4924  5.581014e+10
## 4925  5.430086e+10
## 4926  5.767824e+10
## 4927  5.068206e+10
## 4928  5.202351e+10
## 4929  5.448138e+10
## 4930  4.443281e+10
## 4931  3.437981e+10
## 4932  2.986928e+10
## 4933  2.615789e+10
## 4934  2.114498e+10
## 4935  1.640285e+10
## 4936  1.418350e+10
## 4937  1.324583e+10
## 4938  1.362733e+10
## 4939  1.503070e+10
## 4940  1.131599e+10
## 4941  1.229420e+10
## 4942  1.898329e+10
## 4943  9.697417e+09
## 4944  1.082971e+10
## 4945  1.035052e+10
## 4946  1.094355e+10
## 4947  2.063209e+10
## 4948  2.198844e+10
## 4949  2.255594e+10
## 4950  2.810100e+10
## 4951  2.024929e+10
## 4952  1.715542e+10
## 4953  1.759494e+10
## 4954  1.656367e+10
## 4955  1.934200e+10
## 4956  1.987000e+10
## 4957  1.983923e+10
## 4958            NA
## 4959            NA
## 4960            NA
## 4961            NA
## 4962            NA
## 4963            NA
## 4964            NA
## 4965            NA
## 4966            NA
## 4967            NA
## 4968            NA
## 4969            NA
## 4970            NA
## 4971            NA
## 4972            NA
## 4973            NA
## 4974            NA
## 4975            NA
## 4976            NA
## 4977            NA
## 4978            NA
## 4979  1.973762e+10
## 4980  1.793361e+10
## 4981  1.617816e+10
## 4982  1.589007e+10
## 4983  1.410696e+10
## 4984  1.283336e+10
## 4985  1.183216e+10
## 4986  1.394302e+10
## 4987  1.344430e+10
## 4988  1.256102e+10
## 4989  1.208030e+10
## 4990  1.010962e+10
## 4991  9.450697e+09
## 4992  9.451436e+09
## 4993  7.625723e+09
## 4994  6.547420e+09
## 4995  6.146353e+09
## 4996  5.451689e+09
## 4997  4.740768e+09
## 4998  3.622350e+09
## 4999  3.190371e+09
## 5000  2.968370e+09
## 5001  3.389567e+09
## 5002  2.804902e+09
## 5003  2.447669e+09
## 5004  2.586551e+09
## 5005  2.379518e+09
## 5006  1.895291e+09
## 5007  3.199536e+09
## 5008  3.356693e+09
## 5009  3.135046e+09
## 5010  3.101301e+09
## 5011  2.615588e+09
## 5012  2.616041e+09
## 5013  2.369835e+09
## 5014  2.036303e+09
## 5015  1.552493e+09
## 5016  1.459880e+09
## 5017  1.600279e+09
## 5018  1.754450e+09
## 5019  1.775842e+09
## 5020  1.928719e+09
## 5021  1.748481e+09
## 5022  1.475583e+09
## 5023  1.131225e+09
## 5024  9.765472e+08
## 5025  9.399727e+08
## 5026  7.511333e+08
## 5027  6.747735e+08
## 5028  5.785956e+08
## 5029  4.824111e+08
## 5030  4.584043e+08
## 5031  4.782986e+08
## 5032  4.604427e+08
## 5033  4.507540e+08
## 5034  4.338898e+08
## 5035  4.229168e+08
## 5036  4.103216e+08
## 5037  3.940406e+08
## 5038  3.795670e+08
## 5039  3.502472e+08
## 5040  3.304428e+08
## 5041            NA
## 5042  2.779813e+09
## 5043  2.649672e+09
## 5044  2.576519e+09
## 5045  2.660124e+09
## 5046  2.712324e+09
## 5047  2.639321e+09
## 5048  3.104004e+09
## 5049  2.705783e+09
## 5050  2.451607e+09
## 5051  2.333341e+09
## 5052  2.235821e+09
## 5053  2.032135e+09
## 5054  1.781455e+09
## 5055  1.611836e+09
## 5056  1.356199e+09
## 5057  1.273375e+09
## 5058  1.117113e+09
## 5059  9.152573e+08
## 5060  7.846544e+08
## 5061  8.253945e+08
## 5062  8.767947e+08
## 5063  8.704861e+08
## 5064  8.080772e+08
## 5065  8.937708e+08
## 5066  9.728963e+08
## 5067  8.690339e+08
## 5068  1.000428e+09
## 5069  9.250306e+08
## 5070  9.386326e+08
## 5071  1.083038e+09
## 5072  1.167398e+09
## 5073  1.132101e+09
## 5074  1.113924e+09
## 5075  1.082403e+09
## 5076  1.131466e+09
## 5077  1.201725e+09
## 5078  1.149979e+09
## 5079  9.871439e+08
## 5080  1.082926e+09
## 5081  1.013222e+09
## 5082  9.690467e+08
## 5083  9.197267e+08
## 5084  7.824967e+08
## 5085  6.102256e+08
## 5086  5.475356e+08
## 5087  4.484128e+08
## 5088  4.209867e+08
## 5089  3.452635e+08
## 5090  3.043398e+08
## 5091  2.468046e+08
## 5092  2.528423e+08
## 5093  2.427326e+08
## 5094  1.902057e+08
## 5095  1.832000e+08
## 5096  1.782971e+08
## 5097  1.654446e+08
## 5098  1.589950e+08
## 5099  2.607500e+08
## 5100  2.327500e+08
## 5101  2.135000e+08
## 5102  2.030000e+08
## 5103  1.960000e+08
## 5104            NA
## 5105  1.936174e+09
## 5106  1.703699e+09
## 5107  1.981846e+09
## 5108  1.966501e+09
## 5109  1.769787e+09
## 5110  1.663009e+09
## 5111  1.596800e+09
## 5112  1.859899e+09
## 5113  1.850470e+09
## 5114  1.741810e+09
## 5115  1.865916e+09
## 5116  1.663913e+09
## 5117  1.697737e+09
## 5118  1.787968e+09
## 5119  1.513040e+09
## 5120  1.107571e+09
## 5121  9.722413e+08
## 5122  9.249403e+08
## 5123  8.132605e+08
## 5124  6.205076e+08
## 5125  5.630906e+08
## 5126  5.392273e+08
## 5127  5.924167e+08
## 5128  5.219106e+08
## 5129  4.906087e+08
## 5130  5.019791e+08
## 5131  4.871490e+08
## 5132  4.065807e+08
## 5133  4.904174e+08
## 5134  3.571610e+08
## 5135  3.198271e+08
## 5136  3.068911e+08
## 5137  2.674485e+08
## 5138  2.643081e+08
## 5139  2.352532e+08
## 5140  1.906512e+08
## 5141  1.377282e+08
## 5142  1.320191e+08
## 5143  1.384762e+08
## 5144  1.406308e+08
## 5145  1.394681e+08
## 5146  1.422469e+08
## 5147            NA
## 5148            NA
## 5149            NA
## 5150            NA
## 5151            NA
## 5152            NA
## 5153            NA
## 5154            NA
## 5155            NA
## 5156            NA
## 5157            NA
## 5158            NA
## 5159            NA
## 5160            NA
## 5161            NA
## 5162            NA
## 5163            NA
## 5164            NA
## 5165            NA
## 5166            NA
## 5167            NA
## 5168  2.696106e+10
## 5169  2.587280e+10
## 5170  2.708939e+10
## 5171  2.457175e+10
## 5172  2.217720e+10
## 5173  2.001675e+10
## 5174  1.804995e+10
## 5175  1.670261e+10
## 5176  1.522799e+10
## 5177  1.405444e+10
## 5178  1.282954e+10
## 5179  1.124228e+10
## 5180  1.040185e+10
## 5181  1.035191e+10
## 5182  8.639236e+09
## 5183  7.274596e+09
## 5184  6.293046e+09
## 5185  5.337833e+09
## 5186  4.658247e+09
## 5187  4.284028e+09
## 5188  3.984001e+09
## 5189  3.654032e+09
## 5190  3.517242e+09
## 5191  3.120426e+09
## 5192  3.443413e+09
## 5193  3.506696e+09
## 5194  3.441206e+09
## 5195  2.791435e+09
## 5196  2.533728e+09
## 5197            NA
## 5198            NA
## 5199            NA
## 5200            NA
## 5201            NA
## 5202            NA
## 5203            NA
## 5204            NA
## 5205            NA
## 5206            NA
## 5207            NA
## 5208            NA
## 5209            NA
## 5210            NA
## 5211            NA
## 5212            NA
## 5213            NA
## 5214            NA
## 5215  5.884439e+08
## 5216  7.028992e+08
## 5217  5.055494e+08
## 5218  9.699114e+08
## 5219  7.184012e+08
## 5220  9.788732e+08
## 5221  1.065714e+09
## 5222  9.628571e+08
## 5223  9.142857e+08
## 5224  8.685714e+08
## 5225  7.828571e+08
## 5226  7.285714e+08
## 5227  6.600000e+08
## 5228  6.428571e+08
## 5229  6.371429e+08
## 5230            NA
## 5231  4.533828e+10
## 5232  4.077324e+10
## 5233  3.967098e+10
## 5234  3.997384e+10
## 5235  3.609855e+10
## 5236  3.381434e+10
## 5237  3.221023e+10
## 5238  3.638655e+10
## 5239  3.372862e+10
## 5240  3.015506e+10
## 5241  3.063091e+10
## 5242  2.750750e+10
## 5243  2.793297e+10
## 5244  2.771514e+10
## 5245  2.392825e+10
## 5246  2.091051e+10
## 5247  1.950985e+10
## 5248  1.882622e+10
## 5249  1.597032e+10
## 5250  1.241725e+10
## 5251  1.095349e+10
## 5252  1.056658e+10
## 5253  1.156583e+10
## 5254  1.129814e+10
## 5255  1.078946e+10
## 5256  1.109354e+10
## 5257  1.086477e+10
## 5258  8.902446e+09
## 5259  1.618181e+10
## 5260  1.207178e+10
## 5261  1.184019e+10
## 5262  1.231448e+10
## 5263  1.101257e+10
## 5264  1.223606e+10
## 5265  1.304966e+10
## 5266  1.185706e+10
## 5267  8.544810e+09
## 5268  7.311937e+09
## 5269  6.870201e+09
## 5270  6.611255e+09
## 5271  6.610937e+09
## 5272  6.674568e+09
## 5273  5.919004e+09
## 5274  4.662852e+09
## 5275  3.394664e+09
## 5276  2.898090e+09
## 5277  2.857037e+09
## 5278  2.157415e+09
## 5279  1.901393e+09
## 5280  1.498252e+09
## 5281  1.236941e+09
## 5282  1.151217e+09
## 5283  1.100551e+09
## 5284  1.046191e+09
## 5285  9.361754e+08
## 5286  8.511127e+08
## 5287  8.140834e+08
## 5288  7.766501e+08
## 5289  7.183207e+08
## 5290  6.942477e+08
## 5291  6.527776e+08
## 5292  6.142061e+08
## 5293            NA
## 5294  1.988336e+12
## 5295  1.645423e+12
## 5296  1.742015e+12
## 5297  1.725329e+12
## 5298  1.649266e+12
## 5299  1.527995e+12
## 5300  1.556509e+12
## 5301  1.805750e+12
## 5302  1.846597e+12
## 5303  1.828366e+12
## 5304  1.793327e+12
## 5305  1.617343e+12
## 5306  1.374625e+12
## 5307  1.552990e+12
## 5308  1.468820e+12
## 5309  1.319265e+12
## 5310  1.173109e+12
## 5311  1.026690e+12
## 5312  8.955406e+11
## 5313  7.606493e+11
## 5314  7.389818e+11
## 5315  7.447734e+11
## 5316  6.784122e+11
## 5317  6.340000e+11
## 5318  6.549870e+11
## 5319  6.285464e+11
## 5320  6.040316e+11
## 5321  5.781393e+11
## 5322  5.771708e+11
## 5323  5.923877e+11
## 5324  6.103282e+11
## 5325  5.939296e+11
## 5326  5.650557e+11
## 5327  5.073544e+11
## 5328  4.313167e+11
## 5329  3.774379e+11
## 5330  3.647565e+11
## 5331  3.553726e+11
## 5332  3.405477e+11
## 5333  3.135065e+11
## 5334  3.062149e+11
## 5335  2.738538e+11
## 5336  2.430721e+11
## 5337  2.186329e+11
## 5338  2.116122e+11
## 5339  2.065756e+11
## 5340  1.738340e+11
## 5341  1.604087e+11
## 5342  1.313219e+11
## 5343  1.130828e+11
## 5344  9.927196e+10
## 5345  8.789610e+10
## 5346  7.914841e+10
## 5347  7.182981e+10
## 5348  6.566866e+10
## 5349  6.108838e+10
## 5350  5.451518e+10
## 5351  4.937752e+10
## 5352  4.502999e+10
## 5353  4.222745e+10
## 5354  4.093495e+10
## 5355  4.046172e+10
## 5356            NA
## 5357  5.898450e+09
## 5358  5.608989e+09
## 5359  5.943589e+09
## 5360  5.530378e+09
## 5361  5.166467e+09
## 5362  4.909499e+09
## 5363  4.708337e+09
## 5364  4.563018e+09
## 5365  4.405955e+09
## 5366  4.291159e+09
## 5367  4.186224e+09
## 5368  4.156991e+09
## 5369  4.281869e+09
## 5370  4.586114e+09
## 5371  4.466439e+09
## 5372  4.200439e+09
## 5373            NA
## 5374            NA
## 5375            NA
## 5376            NA
## 5377            NA
## 5378            NA
## 5379            NA
## 5380            NA
## 5381            NA
## 5382            NA
## 5383            NA
## 5384            NA
## 5385            NA
## 5386            NA
## 5387            NA
## 5388            NA
## 5389            NA
## 5390            NA
## 5391            NA
## 5392            NA
## 5393            NA
## 5394            NA
## 5395            NA
## 5396            NA
## 5397            NA
## 5398            NA
## 5399            NA
## 5400            NA
## 5401            NA
## 5402            NA
## 5403            NA
## 5404            NA
## 5405            NA
## 5406            NA
## 5407            NA
## 5408            NA
## 5409            NA
## 5410            NA
## 5411            NA
## 5412            NA
## 5413            NA
## 5414            NA
## 5415            NA
## 5416            NA
## 5417            NA
## 5418            NA
## 5419            NA
## 5420  2.516498e+09
## 5421  2.326721e+09
## 5422  2.221301e+09
## 5423  2.220979e+09
## 5424  2.072350e+09
## 5425  1.825018e+09
## 5426  1.695826e+09
## 5427  1.894814e+09
## 5428  1.691544e+09
## 5429  2.510127e+09
## 5430  2.437983e+09
## 5431  2.142591e+09
## 5432  2.067382e+09
## 5433  1.993408e+09
## 5434  1.699811e+09
## 5435  1.461860e+09
## 5436  1.337894e+09
## 5437  1.272361e+09
## 5438  1.142316e+09
## 5439  9.960682e+08
## 5440  9.326486e+08
## 5441  9.167773e+08
## 5442  9.994775e+08
## 5443  9.673383e+08
## 5444  9.377415e+08
## 5445  1.007791e+09
## 5446  1.115390e+09
## 5447  8.511744e+08
## 5448  1.278781e+09
## 5449  1.411918e+09
## 5450  1.377375e+09
## 5451  1.440711e+09
## 5452  1.233930e+09
## 5453  1.264899e+09
## 5454  1.200992e+09
## 5455  1.122265e+09
## 5456  8.648498e+08
## 5457  6.378206e+08
## 5458  6.586794e+08
## 5459  7.483123e+08
## 5460  6.948035e+08
## 5461  7.970480e+08
## 5462  7.007649e+08
## 5463  6.105785e+08
## 5464  5.072981e+08
## 5465  4.511524e+08
## 5466  3.786600e+08
## 5467  2.813987e+08
## 5468  2.711831e+08
## 5469  2.303179e+08
## 5470  2.014508e+08
## 5471  1.891066e+08
## 5472  1.880392e+08
## 5473  1.917674e+08
## 5474  1.638205e+08
## 5475  1.579300e+08
## 5476  1.505748e+08
## 5477  1.420251e+08
## 5478  1.293791e+08
## 5479  1.244827e+08
## 5480  1.231346e+08
## 5481  1.121556e+08
## 5482            NA
## 5483  1.177998e+10
## 5484  1.071540e+10
## 5485  1.131495e+10
## 5486  1.123917e+10
## 5487  1.000040e+10
## 5488  1.009778e+10
## 5489  1.095039e+10
## 5490  1.394077e+10
## 5491  1.295354e+10
## 5492  1.236736e+10
## 5493  1.217231e+10
## 5494  1.066810e+10
## 5495  9.290729e+09
## 5496  1.039383e+10
## 5497  8.650138e+09
## 5498  7.428702e+09
## 5499  6.649307e+09
## 5500  4.422856e+09
## 5501  2.742815e+09
## 5502  1.997006e+09
## 5503  1.710843e+09
## 5504  1.388507e+09
## 5505  1.534674e+09
## 5506  1.744794e+09
## 5507  1.544690e+09
## 5508  1.607345e+09
## 5509  1.445920e+09
## 5510  1.179838e+09
## 5511  1.463251e+09
## 5512  1.881848e+09
## 5513  1.877138e+09
## 5514  1.738606e+09
## 5515  1.433686e+09
## 5516  1.482597e+09
## 5517  1.163427e+09
## 5518  1.067828e+09
## 5519  1.033070e+09
## 5520  9.191037e+08
## 5521  8.324158e+08
## 5522  8.343699e+08
## 5523  8.769376e+08
## 5524  1.033002e+09
## 5525  1.004316e+09
## 5526  1.113920e+09
## 5527  9.353605e+08
## 5528  8.660450e+08
## 5529  8.646021e+08
## 5530  6.525328e+08
## 5531  6.471995e+08
## 5532  5.854275e+08
## 5533  5.018667e+08
## 5534  4.692667e+08
## 5535  4.716356e+08
## 5536  4.539801e+08
## 5537  4.498263e+08
## 5538  4.327949e+08
## 5539  4.169263e+08
## 5540  3.922475e+08
## 5541  3.717670e+08
## 5542  3.576357e+08
## 5543  3.339753e+08
## 5544  3.135827e+08
## 5545            NA
## 5546            NA
## 5547            NA
## 5548            NA
## 5549            NA
## 5550            NA
## 5551            NA
## 5552            NA
## 5553            NA
## 5554            NA
## 5555            NA
## 5556            NA
## 5557            NA
## 5558            NA
## 5559            NA
## 5560  1.151526e+10
## 5561  9.676410e+09
## 5562  8.827299e+09
## 5563  8.553957e+09
## 5564  7.332574e+09
## 5565  6.663436e+09
## 5566  6.233310e+09
## 5567  6.439403e+09
## 5568  6.263178e+09
## 5569  5.945445e+09
## 5570            NA
## 5571            NA
## 5572            NA
## 5573            NA
## 5574            NA
## 5575            NA
## 5576            NA
## 5577            NA
## 5578            NA
## 5579            NA
## 5580            NA
## 5581            NA
## 5582            NA
## 5583            NA
## 5584            NA
## 5585            NA
## 5586            NA
## 5587            NA
## 5588            NA
## 5589            NA
## 5590            NA
## 5591            NA
## 5592            NA
## 5593            NA
## 5594            NA
## 5595            NA
## 5596            NA
## 5597            NA
## 5598            NA
## 5599            NA
## 5600            NA
## 5601            NA
## 5602            NA
## 5603            NA
## 5604            NA
## 5605            NA
## 5606            NA
## 5607            NA
## 5608            NA
## 5609  3.170585e+11
## 5610  2.527272e+11
## 5611  2.785847e+11
## 5612  2.954027e+11
## 5613  2.763649e+11
## 5614  2.492987e+11
## 5615  2.424966e+11
## 5616  2.594052e+11
## 5617  2.772395e+11
## 5618  2.671759e+11
## 5619  2.512249e+11
## 5620  2.171054e+11
## 5621  1.714126e+11
## 5622  1.796634e+11
## 5623  1.725659e+11
## 5624  1.538401e+11
## 5625  1.223150e+11
## 5626  9.907923e+10
## 5627  7.650758e+10
## 5628  7.029489e+10
## 5629  7.151708e+10
## 5630  7.824988e+10
## 5631  7.559610e+10
## 5632  8.199530e+10
## 5633  8.572890e+10
## 5634  7.857439e+10
## 5635  7.344706e+10
## 5636  5.700843e+10
## 5637  4.929777e+10
## 5638  4.596433e+10
## 5639  3.783479e+10
## 5640  3.311389e+10
## 5641  2.988569e+10
## 5642  2.604023e+10
## 5643  2.225541e+10
## 5644  1.889105e+10
## 5645  1.770289e+10
## 5646  1.962253e+10
## 5647  2.035596e+10
## 5648  2.532589e+10
## 5649  3.450988e+10
## 5650  2.903671e+10
## 5651  2.180370e+10
## 5652  1.598993e+10
## 5653  1.396289e+10
## 5654  1.034193e+10
## 5655  7.622217e+09
## 5656  1.621040e+10
## 5657  1.683626e+10
## 5658  1.185382e+10
## 5659  1.088411e+10
## 5660  9.126310e+09
## 5661  8.377093e+09
## 5662  7.167087e+09
## 5663  7.013196e+09
## 5664  7.072641e+09
## 5665  6.026594e+09
## 5666  5.982348e+09
## 5667  5.668188e+09
## 5668  5.416273e+09
## 5669  4.609727e+09
## 5670  4.110000e+09
## 5671            NA
## 5672  1.773406e+13
## 5673  1.468767e+13
## 5674  1.427994e+13
## 5675  1.389482e+13
## 5676  1.231041e+13
## 5677  1.123328e+13
## 5678  1.106155e+13
## 5679  1.047568e+13
## 5680  9.570406e+12
## 5681  8.532230e+12
## 5682  7.551500e+12
## 5683  6.087164e+12
## 5684  5.101703e+12
## 5685  4.594307e+12
## 5686  3.550343e+12
## 5687  2.752132e+12
## 5688  2.285966e+12
## 5689  1.955347e+12
## 5690  1.660288e+12
## 5691  1.470550e+12
## 5692  1.339396e+12
## 5693  1.211347e+12
## 5694  1.093997e+12
## 5695  1.029043e+12
## 5696  9.616040e+11
## 5697  8.637467e+11
## 5698  7.345479e+11
## 5699  5.643247e+11
## 5700  4.447313e+11
## 5701  4.269157e+11
## 5702  3.833733e+11
## 5703  3.608579e+11
## 5704  3.477681e+11
## 5705  3.123536e+11
## 5706  2.729730e+11
## 5707  3.007581e+11
## 5708  3.094880e+11
## 5709  2.599465e+11
## 5710  2.306867e+11
## 5711  2.050897e+11
## 5712  1.958664e+11
## 5713  1.911492e+11
## 5714  1.782806e+11
## 5715  1.495408e+11
## 5716  1.749381e+11
## 5717  1.539405e+11
## 5718  1.634316e+11
## 5719  1.441821e+11
## 5720  1.385443e+11
## 5721  1.136876e+11
## 5722  9.980096e+10
## 5723  9.260297e+10
## 5724  7.970591e+10
## 5725  7.084654e+10
## 5726  7.288163e+10
## 5727  7.672029e+10
## 5728  7.043627e+10
## 5729  5.970834e+10
## 5730  5.070680e+10
## 5731  4.720936e+10
## 5732  5.005687e+10
## 5733  5.971647e+10
## 5734            NA
## 5735  3.144641e+11
## 5736  2.703000e+11
## 5737  3.231095e+11
## 5738  3.341982e+11
## 5739  3.118837e+11
## 5740  2.828250e+11
## 5741  2.934818e+11
## 5742  3.811121e+11
## 5743  3.821161e+11
## 5744  3.709213e+11
## 5745  3.349439e+11
## 5746  2.865631e+11
## 5747  2.323978e+11
## 5748  2.421869e+11
## 5749  2.061818e+11
## 5750  1.616186e+11
## 5751  1.456192e+11
## 5752  1.170815e+11
## 5753  9.464138e+10
## 5754  9.796300e+10
## 5755  9.821175e+10
## 5756  9.988658e+10
## 5757  8.618616e+10
## 5758  9.844374e+10
## 5759  1.066595e+11
## 5760  9.716011e+10
## 5761  9.250728e+10
## 5762  8.170350e+10
## 5763  6.644680e+10
## 5764  5.841899e+10
## 5765  4.917557e+10
## 5766  4.784409e+10
## 5767  3.954008e+10
## 5768  3.921255e+10
## 5769  3.637331e+10
## 5770  3.494249e+10
## 5771  3.489441e+10
## 5772  3.825312e+10
## 5773  3.872982e+10
## 5774  3.896804e+10
## 5775  3.638837e+10
## 5776  3.340074e+10
## 5777  2.794041e+10
## 5778  2.326351e+10
## 5779  1.947096e+10
## 5780  1.534140e+10
## 5781  1.309863e+10
## 5782  1.237003e+10
## 5783  1.031576e+10
## 5784  8.671359e+09
## 5785  7.820381e+09
## 5786  7.198360e+09
## 5787  6.450175e+09
## 5788  5.960213e+09
## 5789  5.825170e+09
## 5790  5.428519e+09
## 5791  5.760762e+09
## 5792  5.973367e+09
## 5793  4.836167e+09
## 5794  4.955544e+09
## 5795  4.540448e+09
## 5796  4.031153e+09
## 5797            NA
## 5798  1.296090e+09
## 5799  1.225039e+09
## 5800  1.195020e+09
## 5801  1.188798e+09
## 5802  1.077440e+09
## 5803  1.012836e+09
## 5804  9.660295e+08
## 5805  1.149588e+09
## 5806  1.116224e+09
## 5807  1.015843e+09
## 5808  1.023086e+09
## 5809  9.079787e+08
## 5810  9.053411e+08
## 5811  9.156592e+08
## 5812  7.956731e+08
## 5813  6.984318e+08
## 5814  6.538451e+08
## 5815  6.337061e+08
## 5816  5.468852e+08
## 5817  4.259647e+08
## 5818  3.785120e+08
## 5819  3.511366e+08
## 5820  3.824550e+08
## 5821  3.701068e+08
## 5822  3.644456e+08
## 5823  3.960538e+08
## 5824  3.984618e+08
## 5825  3.191892e+08
## 5826  4.528814e+08
## 5827  4.573886e+08
## 5828  4.241088e+08
## 5829  4.296221e+08
## 5830  3.414768e+08
## 5831  3.565000e+08
## 5832  3.375259e+08
## 5833  2.791977e+08
## 5834  1.967261e+08
## 5835  1.846972e+08
## 5836  1.916220e+08
## 5837  1.840090e+08
## 5838  1.963500e+08
## 5839  2.122182e+08
## 5840            NA
## 5841            NA
## 5842            NA
## 5843            NA
## 5844            NA
## 5845            NA
## 5846            NA
## 5847            NA
## 5848            NA
## 5849            NA
## 5850            NA
## 5851            NA
## 5852            NA
## 5853            NA
## 5854            NA
## 5855            NA
## 5856            NA
## 5857            NA
## 5858            NA
## 5859            NA
## 5860            NA
## 5861  5.535097e+10
## 5862  4.871696e+10
## 5863  5.177583e+10
## 5864  4.756821e+10
## 5865  3.801927e+10
## 5866  3.713480e+10
## 5867  3.791770e+10
## 5868  3.590904e+10
## 5869  3.267975e+10
## 5870  2.930624e+10
## 5871  2.583975e+10
## 5872  2.156572e+10
## 5873  1.864837e+10
## 5874  1.978852e+10
## 5875  1.673707e+10
## 5876  1.445190e+10
## 5877  1.196448e+10
## 5878  1.029748e+10
## 5879  8.937567e+09
## 5880  8.728039e+09
## 5881  7.438189e+09
## 5882  1.908805e+10
## 5883  4.711259e+09
## 5884  6.217806e+09
## 5885  6.090841e+09
## 5886  5.771455e+09
## 5887  5.643439e+09
## 5888  5.820382e+09
## 5889  1.070625e+10
## 5890  8.227201e+09
## 5891  9.633911e+09
## 5892  9.349765e+09
## 5893  9.021863e+09
## 5894  8.861300e+09
## 5895  7.661625e+09
## 5896  8.095367e+09
## 5897  7.195043e+09
## 5898  7.857729e+09
## 5899  1.100671e+10
## 5900  1.365167e+10
## 5901  1.253782e+10
## 5902  1.439493e+10
## 5903  1.506842e+10
## 5904  1.537261e+10
## 5905  1.234442e+10
## 5906  9.648583e+09
## 5907  1.023734e+10
## 5908  9.596960e+09
## 5909  7.870239e+09
## 5910  6.173713e+09
## 5911  5.594770e+09
## 5912  4.877685e+09
## 5913  5.032435e+09
## 5914  3.909781e+09
## 5915  3.384063e+09
## 5916  4.532660e+09
## 5917  4.043902e+09
## 5918  2.881545e+09
## 5919  6.213186e+09
## 5920  3.779841e+09
## 5921  3.086747e+09
## 5922  3.359404e+09
## 5923            NA
## 5924  1.336623e+10
## 5925  1.048315e+10
## 5926  1.275034e+10
## 5927  1.367004e+10
## 5928  1.109482e+10
## 5929  1.021934e+10
## 5930  1.189026e+10
## 5931  1.791291e+10
## 5932  1.795872e+10
## 5933  1.769291e+10
## 5934  1.565538e+10
## 5935  1.314840e+10
## 5936  9.723300e+09
## 5937  1.164986e+10
## 5938  8.782704e+09
## 5939  8.072305e+09
## 5940  6.650001e+09
## 5941  4.656975e+09
## 5942  3.503723e+09
## 5943  3.034251e+09
## 5944  2.796705e+09
## 5945  3.227928e+09
## 5946  2.354773e+09
## 5947  1.949481e+09
## 5948  2.322719e+09
## 5949  2.540698e+09
## 5950  2.116004e+09
## 5951  1.769365e+09
## 5952  2.684324e+09
## 5953  2.933223e+09
## 5954  2.724854e+09
## 5955  2.798746e+09
## 5956  2.389593e+09
## 5957  2.212536e+09
## 5958  2.297754e+09
## 5959  1.849268e+09
## 5960  2.160873e+09
## 5961  2.193581e+09
## 5962  2.097274e+09
## 5963  2.160641e+09
## 5964  1.993512e+09
## 5965  1.705797e+09
## 5966  1.198750e+09
## 5967  8.787718e+08
## 5968  7.652240e+08
## 5969  7.545496e+08
## 5970  7.671027e+08
## 5971  5.853646e+08
## 5972  5.419734e+08
## 5973  4.106693e+08
## 5974  3.221280e+08
## 5975  2.749607e+08
## 5976  2.650400e+08
## 5977  2.512475e+08
## 5978  2.373974e+08
## 5979  2.206136e+08
## 5980  1.983181e+08
## 5981  1.856937e+08
## 5982  1.722334e+08
## 5983  1.665212e+08
## 5984  1.516757e+08
## 5985  1.317319e+08
## 5986            NA
## 5987  6.428244e+10
## 5988  6.215800e+10
## 5989  6.441767e+10
## 5990  6.242017e+10
## 5991  6.051604e+10
## 5992  5.884702e+10
## 5993  5.644192e+10
## 5994  5.201641e+10
## 5995  5.094967e+10
## 5996  4.723165e+10
## 5997  4.276262e+10
## 5998  3.765861e+10
## 5999  3.074571e+10
## 6000  3.080174e+10
## 6001  2.688470e+10
## 6002  2.271554e+10
## 6003  2.004064e+10
## 6004  1.861059e+10
## 6005  1.727176e+10
## 6006  1.657882e+10
## 6007  1.597617e+10
## 6008  1.501363e+10
## 6009  1.425487e+10
## 6010  1.368426e+10
## 6011  1.261460e+10
## 6012  1.167842e+10
## 6013  1.157859e+10
## 6014  1.048678e+10
## 6015  9.582866e+09
## 6016  8.564044e+09
## 6017  7.196276e+09
## 6018  5.711688e+09
## 6019  5.251026e+09
## 6020  4.614630e+09
## 6021  4.532952e+09
## 6022  4.418984e+09
## 6023  3.919204e+09
## 6024  3.660476e+09
## 6025  3.146770e+09
## 6026  2.606621e+09
## 6027  2.623807e+09
## 6028  4.831447e+09
## 6029  4.035519e+09
## 6030  3.523209e+09
## 6031  3.072427e+09
## 6032  2.412555e+09
## 6033  1.960863e+09
## 6034  1.666545e+09
## 6035  1.528916e+09
## 6036  1.238252e+09
## 6037  1.077153e+09
## 6038  9.848302e+08
## 6039  8.536302e+08
## 6040  7.738415e+08
## 6041  6.994566e+08
## 6042  6.473056e+08
## 6043  5.929812e+08
## 6044  5.425784e+08
## 6045  5.119021e+08
## 6046  4.791808e+08
## 6047  4.903252e+08
## 6048  5.075138e+08
## 6049            NA
## 6050  7.004319e+10
## 6051  6.134858e+10
## 6052  5.853942e+10
## 6053  5.801147e+10
## 6054  5.158816e+10
## 6055  4.796423e+10
## 6056  4.581464e+10
## 6057  4.884301e+10
## 6058  4.276024e+10
## 6059  3.630231e+10
## 6060  3.669371e+10
## 6061  3.493631e+10
## 6062  3.388681e+10
## 6063  3.407824e+10
## 6064  2.876009e+10
## 6065  2.528141e+10
## 6066  2.403692e+10
## 6067  2.351058e+10
## 6068  2.125176e+10
## 6069  1.805438e+10
## 6070  1.681054e+10
## 6071  1.657753e+10
## 6072  1.887099e+10
## 6073  1.961965e+10
## 6074  1.804756e+10
## 6075  1.807115e+10
## 6076  1.100015e+10
## 6077  8.313557e+09
## 6078  1.104576e+10
## 6079  1.115297e+10
## 6080  1.049263e+10
## 6081  1.079585e+10
## 6082  9.757411e+09
## 6083  1.025517e+10
## 6084  1.008765e+10
## 6085  9.158302e+09
## 6086  6.977650e+09
## 6087  6.841639e+09
## 6088  6.838185e+09
## 6089  7.567110e+09
## 6090  8.432588e+09
## 6091  1.017562e+10
## 6092  9.142936e+09
## 6093  7.900525e+09
## 6094  6.265068e+09
## 6095  4.662054e+09
## 6096  3.893839e+09
## 6097  3.070152e+09
## 6098  2.508421e+09
## 6099  1.849401e+09
## 6100  1.584128e+09
## 6101  1.455483e+09
## 6102  1.361360e+09
## 6103  1.281281e+09
## 6104  1.082923e+09
## 6105  1.024103e+09
## 6106  9.197714e+08
## 6107  9.210633e+08
## 6108  7.610470e+08
## 6109  6.452843e+08
## 6110  6.182456e+08
## 6111  5.462036e+08
## 6112            NA
## 6113  6.895508e+10
## 6114  5.747201e+10
## 6115  6.232798e+10
## 6116  6.231684e+10
## 6117  5.632384e+10
## 6118  5.239749e+10
## 6119  5.024278e+10
## 6120  5.842398e+10
## 6121  5.903207e+10
## 6122  5.736936e+10
## 6123  6.340829e+10
## 6124  6.067209e+10
## 6125  6.332439e+10
## 6126  7.094330e+10
## 6127  6.064194e+10
## 6128  5.091502e+10
## 6129  4.583510e+10
## 6130  4.201346e+10
## 6131  3.502290e+10
## 6132  2.708526e+10
## 6133  2.325957e+10
## 6134  2.180786e+10
## 6135  2.362895e+10
## 6136  2.573213e+10
## 6137  2.402965e+10
## 6138  2.400483e+10
## 6139  2.264372e+10
## 6140            NA
## 6141            NA
## 6142            NA
## 6143            NA
## 6144            NA
## 6145            NA
## 6146            NA
## 6147            NA
## 6148            NA
## 6149            NA
## 6150            NA
## 6151            NA
## 6152            NA
## 6153            NA
## 6154            NA
## 6155            NA
## 6156            NA
## 6157            NA
## 6158            NA
## 6159            NA
## 6160            NA
## 6161            NA
## 6162            NA
## 6163            NA
## 6164            NA
## 6165            NA
## 6166            NA
## 6167            NA
## 6168            NA
## 6169            NA
## 6170            NA
## 6171            NA
## 6172            NA
## 6173            NA
## 6174            NA
## 6175            NA
## 6176            NA
## 6177  1.073520e+11
## 6178  1.034280e+11
## 6179  1.000500e+11
## 6180  9.685100e+10
## 6181  9.137000e+10
## 6182  8.713300e+10
## 6183  8.065600e+10
## 6184  7.714800e+10
## 6185  7.314100e+10
## 6186  6.899000e+10
## 6187  5.956296e+10
## 6188  5.748148e+10
## 6189  5.630213e+10
## 6190  5.426287e+10
## 6191  4.883593e+10
## 6192  4.264384e+10
## 6193  3.820300e+10
## 6194  3.590120e+10
## 6195  3.359050e+10
## 6196  3.168240e+10
## 6197  3.056540e+10
## 6198  2.836462e+10
## 6199  2.573633e+10
## 6200  2.536591e+10
## 6201  2.501737e+10
## 6202  3.042980e+10
## 6203  2.844833e+10
## 6204  2.236725e+10
## 6205  2.208586e+10
## 6206  2.431656e+10
## 6207  2.864544e+10
## 6208  2.702347e+10
## 6209  2.745900e+10
## 6210  2.521394e+10
## 6211  2.422657e+10
## 6212  2.292049e+10
## 6213  2.403938e+10
## 6214  2.220494e+10
## 6215  2.095351e+10
## 6216  2.015025e+10
## 6217  1.991289e+10
## 6218  1.958444e+10
## 6219  1.784471e+10
## 6220  1.420616e+10
## 6221  1.378958e+10
## 6222  1.302742e+10
## 6223  1.140596e+10
## 6224  9.987710e+09
## 6225  8.135151e+09
## 6226  6.914658e+09
## 6227  5.693005e+09
## 6228            NA
## 6229            NA
## 6230            NA
## 6231            NA
## 6232            NA
## 6233            NA
## 6234            NA
## 6235            NA
## 6236            NA
## 6237            NA
## 6238            NA
## 6239  2.699612e+09
## 6240  2.496175e+09
## 6241  2.995185e+09
## 6242  3.020389e+09
## 6243  3.009497e+09
## 6244  3.014749e+09
## 6245  3.042737e+09
## 6246  3.048436e+09
## 6247  3.039944e+09
## 6248  3.024525e+09
## 6249  2.933128e+09
## 6250            NA
## 6251            NA
## 6252            NA
## 6253            NA
## 6254            NA
## 6255            NA
## 6256            NA
## 6257            NA
## 6258            NA
## 6259            NA
## 6260            NA
## 6261            NA
## 6262            NA
## 6263            NA
## 6264            NA
## 6265            NA
## 6266            NA
## 6267            NA
## 6268            NA
## 6269            NA
## 6270            NA
## 6271            NA
## 6272            NA
## 6273            NA
## 6274            NA
## 6275            NA
## 6276            NA
## 6277            NA
## 6278            NA
## 6279            NA
## 6280            NA
## 6281            NA
## 6282            NA
## 6283            NA
## 6284            NA
## 6285            NA
## 6286            NA
## 6287            NA
## 6288            NA
## 6289            NA
## 6290            NA
## 6291            NA
## 6292            NA
## 6293            NA
## 6294            NA
## 6295            NA
## 6296            NA
## 6297            NA
## 6298            NA
## 6299            NA
## 6300            NA
## 6301            NA
## 6302  2.840787e+10
## 6303  2.500845e+10
## 6304  2.594450e+10
## 6305  2.559647e+10
## 6306  2.294673e+10
## 6307  2.104695e+10
## 6308  1.990919e+10
## 6309  2.322678e+10
## 6310  2.396114e+10
## 6311  2.504866e+10
## 6312  2.764209e+10
## 6313  2.580025e+10
## 6314  2.594539e+10
## 6315  2.784470e+10
## 6316  2.396876e+10
## 6317  2.007279e+10
## 6318  1.843341e+10
## 6319  1.732055e+10
## 6320  1.454733e+10
## 6321  1.142023e+10
## 6322  1.039790e+10
## 6323  9.985844e+09
## 6324  1.049791e+10
## 6325  1.024862e+10
## 6326  9.547819e+09
## 6327  1.001192e+10
## 6328  9.933133e+09
## 6329  7.425704e+09
## 6330  6.590291e+09
## 6331  6.912150e+09
## 6332  5.770197e+09
## 6333  5.591130e+09
## 6334  4.563483e+09
## 6335  4.278793e+09
## 6336  3.704814e+09
## 6337  3.090734e+09
## 6338  2.430412e+09
## 6339  2.278249e+09
## 6340  2.160364e+09
## 6341  2.159242e+09
## 6342  2.087496e+09
## 6343  2.154311e+09
## 6344  1.288715e+09
## 6345  9.640265e+08
## 6346  7.348880e+08
## 6347  5.760901e+08
## 6348  4.899148e+08
## 6349            NA
## 6350            NA
## 6351            NA
## 6352            NA
## 6353            NA
## 6354            NA
## 6355            NA
## 6356            NA
## 6357            NA
## 6358            NA
## 6359            NA
## 6360            NA
## 6361            NA
## 6362            NA
## 6363            NA
## 6364            NA
## 6365  2.817779e+11
## 6366  2.459746e+11
## 6367  2.525482e+11
## 6368  2.490005e+11
## 6369  2.186289e+11
## 6370  1.962721e+11
## 6371  1.880331e+11
## 6372  2.093588e+11
## 6373  2.116856e+11
## 6374  2.088577e+11
## 6375  2.295627e+11
## 6376  2.090699e+11
## 6377  2.074343e+11
## 6378  2.368165e+11
## 6379  1.901838e+11
## 6380  1.562641e+11
## 6381  1.371435e+11
## 6382  1.198144e+11
## 6383  1.000905e+11
## 6384  8.219600e+10
## 6385  6.780803e+10
## 6386  6.182817e+10
## 6387  6.517313e+10
## 6388  6.680743e+10
## 6389  6.218016e+10
## 6390  6.738779e+10
## 6391  6.014717e+10
## 6392  4.785020e+10
## 6393  4.086675e+10
## 6394  3.480501e+10
## 6395  2.985992e+10
## 6396  4.072895e+10
## 6397            NA
## 6398            NA
## 6399            NA
## 6400            NA
## 6401            NA
## 6402            NA
## 6403            NA
## 6404            NA
## 6405            NA
## 6406            NA
## 6407            NA
## 6408            NA
## 6409            NA
## 6410            NA
## 6411            NA
## 6412            NA
## 6413            NA
## 6414            NA
## 6415            NA
## 6416            NA
## 6417            NA
## 6418            NA
## 6419            NA
## 6420            NA
## 6421            NA
## 6422            NA
## 6423            NA
## 6424            NA
## 6425            NA
## 6426            NA
## 6427            NA
## 6428  3.983033e+11
## 6429  3.552224e+11
## 6430  3.464987e+11
## 6431  3.568412e+11
## 6432  3.321211e+11
## 6433  3.131159e+11
## 6434  3.026731e+11
## 6435  3.529936e+11
## 6436  3.435844e+11
## 6437  3.271489e+11
## 6438  3.440031e+11
## 6439  3.219953e+11
## 6440  3.212413e+11
## 6441  3.533610e+11
## 6442  3.194234e+11
## 6443  2.828849e+11
## 6444  2.644673e+11
## 6445  2.513730e+11
## 6446  2.180960e+11
## 6447  1.786352e+11
## 6448  1.647914e+11
## 6449  1.641587e+11
## 6450  1.779652e+11
## 6451  1.769919e+11
## 6452  1.735376e+11
## 6453  1.876323e+11
## 6454  1.850069e+11
## 6455  1.561624e+11
## 6456  1.431956e+11
## 6457  1.529157e+11
## 6458  1.392247e+11
## 6459  1.382473e+11
## 6460  1.124092e+11
## 6461  1.155528e+11
## 6462  1.094144e+11
## 6463  8.807876e+10
## 6464  6.265857e+10
## 6465  5.910524e+10
## 6466  6.064478e+10
## 6467  6.041284e+10
## 6468  6.187781e+10
## 6469  7.112753e+10
## 6470  7.036624e+10
## 6471  6.036293e+10
## 6472  4.978434e+10
## 6473  4.457589e+10
## 6474  4.047441e+10
## 6475  3.416044e+10
## 6476  3.073063e+10
## 6477  2.323238e+10
## 6478  1.908573e+10
## 6479  1.707546e+10
## 6480  1.541490e+10
## 6481  1.350557e+10
## 6482  1.305906e+10
## 6483  1.193174e+10
## 6484            NA
## 6485            NA
## 6486            NA
## 6487            NA
## 6488            NA
## 6489            NA
## 6490            NA
## 6491  3.482987e+09
## 6492  3.181071e+09
## 6493  3.088854e+09
## 6494  2.913467e+09
## 6495  2.762581e+09
## 6496  2.604955e+09
## 6497  2.424392e+09
## 6498  2.214679e+09
## 6499  2.042817e+09
## 6500  1.353633e+09
## 6501  1.239145e+09
## 6502  1.128612e+09
## 6503  1.049111e+09
## 6504  9.991053e+08
## 6505  8.479189e+08
## 6506  7.688737e+08
## 6507  7.086332e+08
## 6508  6.660721e+08
## 6509  6.220447e+08
## 6510  5.911220e+08
## 6511  5.724174e+08
## 6512  5.512309e+08
## 6513  5.360801e+08
## 6514  5.142679e+08
## 6515  5.026755e+08
## 6516  4.940046e+08
## 6517  4.977240e+08
## 6518  4.916892e+08
## 6519  4.660485e+08
## 6520  4.780583e+08
## 6521  4.624220e+08
## 6522  4.523281e+08
## 6523  4.092201e+08
## 6524  3.957945e+08
## 6525  3.733717e+08
## 6526            NA
## 6527  3.409895e+08
## 6528            NA
## 6529            NA
## 6530            NA
## 6531            NA
## 6532            NA
## 6533            NA
## 6534            NA
## 6535            NA
## 6536            NA
## 6537            NA
## 6538            NA
## 6539            NA
## 6540            NA
## 6541            NA
## 6542            NA
## 6543            NA
## 6544            NA
## 6545            NA
## 6546            NA
## 6547            NA
## 6548            NA
## 6549            NA
## 6550            NA
## 6551            NA
## 6552            NA
## 6553            NA
## 6554  5.541815e+08
## 6555  5.042148e+08
## 6556  6.115370e+08
## 6557  5.547704e+08
## 6558  5.215519e+08
## 6559  5.762296e+08
## 6560  5.407370e+08
## 6561  5.202074e+08
## 6562  4.982963e+08
## 6563  4.859963e+08
## 6564  5.010259e+08
## 6565  4.938259e+08
## 6566  4.890741e+08
## 6567  4.581889e+08
## 6568  4.213741e+08
## 6569  3.902519e+08
## 6570  3.642556e+08
## 6571  3.672000e+08
## 6572  3.433111e+08
## 6573  3.331963e+08
## 6574  3.402037e+08
## 6575  3.334704e+08
## 6576  3.317593e+08
## 6577  3.224111e+08
## 6578  3.029889e+08
## 6579  2.922852e+08
## 6580  2.745222e+08
## 6581  2.643741e+08
## 6582  2.455259e+08
## 6583  2.340593e+08
## 6584  2.197630e+08
## 6585  2.014296e+08
## 6586  1.851372e+08
## 6587  1.711062e+08
## 6588  1.518688e+08
## 6589  1.351620e+08
## 6590  1.194919e+08
## 6591  1.091571e+08
## 6592  9.866519e+07
## 6593  8.952758e+07
## 6594  8.210739e+07
## 6595  7.280465e+07
## 6596  5.501776e+07
## 6597  5.713022e+07
## 6598  4.587295e+07
## 6599            NA
## 6600            NA
## 6601            NA
## 6602            NA
## 6603            NA
## 6604            NA
## 6605            NA
## 6606            NA
## 6607            NA
## 6608            NA
## 6609            NA
## 6610            NA
## 6611            NA
## 6612            NA
## 6613            NA
## 6614            NA
## 6615            NA
## 6616            NA
## 6617  9.424345e+10
## 6618  7.884470e+10
## 6619  8.894130e+10
## 6620  8.555538e+10
## 6621  7.999798e+10
## 6622  7.570472e+10
## 6623  7.116483e+10
## 6624  6.717991e+10
## 6625  6.268216e+10
## 6626  6.068154e+10
## 6627  5.802975e+10
## 6628  5.386018e+10
## 6629  4.826103e+10
## 6630  4.812255e+10
## 6631  4.396542e+10
## 6632  3.787987e+10
## 6633  3.577757e+10
## 6634  2.232240e+10
## 6635  2.140317e+10
## 6636  2.713751e+10
## 6637  2.560177e+10
## 6638  2.430572e+10
## 6639  2.213662e+10
## 6640  2.167223e+10
## 6641  2.001748e+10
## 6642  1.824169e+10
## 6643  1.663737e+10
## 6644  1.464471e+10
## 6645  1.308104e+10
## 6646  1.160538e+10
## 6647  9.824498e+09
## 6648  7.073676e+09
## 6649  6.686593e+09
## 6650  5.374315e+09
## 6651  5.826987e+09
## 6652  6.122198e+09
## 6653  5.044593e+09
## 6654  1.159400e+10
## 6655  9.220600e+09
## 6656  8.267400e+09
## 6657  7.561300e+09
## 6658  6.761300e+09
## 6659  5.498800e+09
## 6660  4.734400e+09
## 6661  4.587100e+09
## 6662  3.951500e+09
## 6663  3.599200e+09
## 6664  2.925700e+09
## 6665  2.344800e+09
## 6666  1.987400e+09
## 6667  1.666500e+09
## 6668  1.485500e+09
## 6669  1.230500e+09
## 6670  1.079100e+09
## 6671  1.034800e+09
## 6672  9.839000e+08
## 6673  8.881000e+08
## 6674  1.025600e+09
## 6675  9.407999e+08
## 6676  8.241000e+08
## 6677  6.541002e+08
## 6678  6.723997e+08
## 6679            NA
## 6680  1.061659e+11
## 6681  9.929112e+10
## 6682  1.081080e+11
## 6683  1.075620e+11
## 6684  1.042959e+11
## 6685  9.993770e+10
## 6686  9.929038e+10
## 6687  1.017263e+11
## 6688  9.512966e+10
## 6689  8.792454e+10
## 6690  7.927666e+10
## 6691  6.955537e+10
## 6692  6.251969e+10
## 6693  6.176264e+10
## 6694  5.100778e+10
## 6695  4.680204e+10
## 6696  4.150708e+10
## 6697  3.659166e+10
## 6698  3.243286e+10
## 6699  2.854894e+10
## 6700  2.446832e+10
## 6701  1.832776e+10
## 6702  1.964527e+10
## 6703  2.798190e+10
## 6704  2.816205e+10
## 6705  2.522639e+10
## 6706  2.443288e+10
## 6707  2.270867e+10
## 6708  1.893872e+10
## 6709  1.809424e+10
## 6710  1.698854e+10
## 6711  1.523928e+10
## 6712  1.389083e+10
## 6713  1.305189e+10
## 6714  1.394543e+10
## 6715  1.531414e+10
## 6716  1.714909e+10
## 6717  1.691252e+10
## 6718  1.715248e+10
## 6719  1.992985e+10
## 6720  2.181077e+10
## 6721  1.788151e+10
## 6722  1.417517e+10
## 6723  1.192250e+10
## 6724  1.102635e+10
## 6725  9.091924e+09
## 6726  7.731677e+09
## 6727  6.599259e+09
## 6728  3.891756e+09
## 6729  3.185987e+09
## 6730  2.754220e+09
## 6731  2.862504e+09
## 6732  3.112167e+09
## 6733  2.582181e+09
## 6734  2.553596e+09
## 6735  2.429310e+09
## 6736  2.387048e+09
## 6737  2.244147e+09
## 6738  1.824344e+09
## 6739  1.518208e+09
## 6740  1.753850e+09
## 6741  2.069465e+09
## 6742            NA
## 6743  4.041428e+11
## 6744  3.652527e+11
## 6745  3.030809e+11
## 6746  2.497130e+11
## 6747  2.357337e+11
## 6748  3.324417e+11
## 6749  3.293666e+11
## 6750  3.055954e+11
## 6751  2.884341e+11
## 6752  2.791167e+11
## 6753  2.359897e+11
## 6754  2.189837e+11
## 6755  1.891470e+11
## 6756  1.628182e+11
## 6757  1.304378e+11
## 6758  1.074261e+11
## 6759  8.960067e+10
## 6760  7.878247e+10
## 6761  8.028846e+10
## 6762  8.514607e+10
## 6763  9.668464e+10
## 6764  9.983854e+10
## 6765  9.071070e+10
## 6766  8.482881e+10
## 6767  7.843658e+10
## 6768  6.762972e+10
## 6769  6.015925e+10
## 6770  5.189798e+10
## 6771  4.657863e+10
## 6772  4.185599e+10
## 6773  3.738784e+10
## 6774  4.297891e+10
## 6775  3.975630e+10
## 6776  3.498012e+10
## 6777  4.045562e+10
## 6778  4.125351e+10
## 6779  3.905350e+10
## 6780  3.397119e+10
## 6781  3.096624e+10
## 6782  2.765517e+10
## 6783  2.213608e+10
## 6784  2.166991e+10
## 6785  1.802057e+10
## 6786  1.481170e+10
## 6787  1.440081e+10
## 6788  1.331599e+10
## 6789  1.163218e+10
## 6790  9.228963e+09
## 6791  1.009853e+10
## 6792  9.299638e+09
## 6793  8.609283e+09
## 6794  8.042200e+09
## 6795  6.524455e+09
## 6796  5.932243e+09
## 6797  5.605484e+09
## 6798  5.278006e+09
## 6799  4.948668e+09
## 6800            NA
## 6801            NA
## 6802            NA
## 6803            NA
## 6804            NA
## 6805            NA
## 6806  2.873694e+10
## 6807  2.456302e+10
## 6808  2.688114e+10
## 6809  2.602085e+10
## 6810  2.497919e+10
## 6811  2.419143e+10
## 6812  2.343824e+10
## 6813  2.259347e+10
## 6814  2.199096e+10
## 6815  2.138615e+10
## 6816  2.028378e+10
## 6817  1.844792e+10
## 6818  1.760162e+10
## 6819  1.798689e+10
## 6820  1.701175e+10
## 6821  1.599989e+10
## 6822  1.469800e+10
## 6823  1.372481e+10
## 6824  1.324389e+10
## 6825  1.266419e+10
## 6826  1.228253e+10
## 6827  1.178493e+10
## 6828  1.128420e+10
## 6829  1.093667e+10
## 6830  1.022171e+10
## 6831  9.586328e+09
## 6832  8.921947e+09
## 6833  7.679384e+09
## 6834  6.680269e+09
## 6835  5.813399e+09
## 6836  5.252342e+09
## 6837  4.817542e+09
## 6838  4.372215e+09
## 6839  4.189880e+09
## 6840  3.958046e+09
## 6841  3.771663e+09
## 6842  3.800369e+09
## 6843  3.661683e+09
## 6844  3.506348e+09
## 6845  3.399189e+09
## 6846  3.437200e+09
## 6847  3.573960e+09
## 6848  3.463640e+09
## 6849  3.127960e+09
## 6850  2.941640e+09
## 6851  2.328280e+09
## 6852  1.884120e+09
## 6853  1.665880e+09
## 6854  1.442320e+09
## 6855  1.263720e+09
## 6856  1.186120e+09
## 6857  1.132920e+09
## 6858  1.049400e+09
## 6859  1.009760e+09
## 6860  9.762000e+08
## 6861  9.295200e+08
## 6862  8.777200e+08
## 6863            NA
## 6864            NA
## 6865            NA
## 6866            NA
## 6867            NA
## 6868            NA
## 6869  1.226939e+10
## 6870  1.009916e+10
## 6871  1.136413e+10
## 6872  1.309701e+10
## 6873  1.220091e+10
## 6874  1.124081e+10
## 6875  1.318550e+10
## 6876  2.176545e+10
## 6877  2.194884e+10
## 6878  2.238835e+10
## 6879  2.135734e+10
## 6880  1.631444e+10
## 6881  1.502780e+10
## 6882  1.974989e+10
## 6883  1.307172e+10
## 6884  1.008653e+10
## 6885  8.217369e+09
## 6886  4.410764e+09
## 6887  2.484746e+09
## 6888  1.806743e+09
## 6889  1.461139e+09
## 6890  1.045998e+09
## 6891  6.211179e+08
## 6892  3.706876e+08
## 6893  4.423378e+08
## 6894  2.324630e+08
## 6895  1.418534e+08
## 6896  1.008070e+08
## 6897  1.360479e+08
## 6898  1.347072e+08
## 6899  1.109060e+08
## 6900  1.121194e+08
## 6901  8.826597e+07
## 6902  1.005347e+08
## 6903  9.334585e+07
## 6904  7.640740e+07
## 6905  6.211856e+07
## 6906  5.032091e+07
## 6907  4.444246e+07
## 6908  4.429465e+07
## 6909  3.673142e+07
## 6910  5.064288e+07
## 6911            NA
## 6912            NA
## 6913  1.039875e+08
## 6914  1.036530e+08
## 6915  1.042956e+08
## 6916  9.415986e+07
## 6917  8.120323e+07
## 6918  6.542920e+07
## 6919  6.494695e+07
## 6920  6.633143e+07
## 6921  6.722571e+07
## 6922  6.751429e+07
## 6923  7.231745e+07
## 6924  6.911000e+07
## 6925  6.474833e+07
## 6926  1.271247e+07
## 6927  1.084010e+07
## 6928  9.122751e+06
## 6929            NA
## 6930            NA
## 6931            NA
## 6932            NA
## 6933            NA
## 6934            NA
## 6935            NA
## 6936            NA
## 6937            NA
## 6938            NA
## 6939            NA
## 6940            NA
## 6941            NA
## 6942  2.065002e+09
## 6943  1.589515e+09
## 6944  1.856696e+09
## 6945  1.380189e+09
## 6946  1.317974e+09
## 6947  1.211162e+09
## 6948  1.098426e+09
## 6949  1.109054e+09
## 6950  8.702477e+08
## 6951  7.293214e+08
## 6952  7.523685e+08
## 6953  7.063708e+08
## 6954  6.889213e+08
## 6955  7.455262e+08
## 6956  6.864901e+08
## 6957  6.935360e+08
## 6958  5.780156e+08
## 6959  5.316883e+08
## 6960  4.678727e+08
## 6961  4.771017e+08
## 6962            NA
## 6963            NA
## 6964            NA
## 6965            NA
## 6966            NA
## 6967            NA
## 6968            NA
## 6969            NA
## 6970            NA
## 6971            NA
## 6972            NA
## 6973            NA
## 6974            NA
## 6975            NA
## 6976            NA
## 6977            NA
## 6978            NA
## 6979            NA
## 6980            NA
## 6981            NA
## 6982            NA
## 6983            NA
## 6984            NA
## 6985            NA
## 6986            NA
## 6987            NA
## 6988            NA
## 6989            NA
## 6990            NA
## 6991            NA
## 6992            NA
## 6993            NA
## 6994            NA
## 6995  3.719117e+10
## 6996  3.137040e+10
## 6997  3.108190e+10
## 6998  3.062472e+10
## 6999  2.692439e+10
## 7000  2.407283e+10
## 7001  2.289076e+10
## 7002  2.663408e+10
## 7003  2.511575e+10
## 7004  2.301915e+10
## 7005  2.321399e+10
## 7006  1.952348e+10
## 7007  1.963303e+10
## 7008  2.434168e+10
## 7009  2.244913e+10
## 7010  1.702287e+10
## 7011  1.410679e+10
## 7012  1.214591e+10
## 7013  9.874013e+09
## 7014  7.367976e+09
## 7015  6.254650e+09
## 7016  5.686580e+09
## 7017  5.756912e+09
## 7018  5.674081e+09
## 7019  5.154421e+09
## 7020  4.786019e+09
## 7021  4.502971e+09
## 7022            NA
## 7023            NA
## 7024            NA
## 7025            NA
## 7026            NA
## 7027            NA
## 7028            NA
## 7029            NA
## 7030            NA
## 7031            NA
## 7032            NA
## 7033            NA
## 7034            NA
## 7035            NA
## 7036            NA
## 7037            NA
## 7038            NA
## 7039            NA
## 7040            NA
## 7041            NA
## 7042            NA
## 7043            NA
## 7044            NA
## 7045            NA
## 7046            NA
## 7047            NA
## 7048            NA
## 7049            NA
## 7050            NA
## 7051            NA
## 7052            NA
## 7053            NA
## 7054            NA
## 7055            NA
## 7056            NA
## 7057            NA
## 7058  4.743335e+09
## 7059  3.982226e+09
## 7060  4.495264e+09
## 7061  4.665237e+09
## 7062  4.402969e+09
## 7063  3.816022e+09
## 7064  4.063246e+09
## 7065  4.422968e+09
## 7066  4.597532e+09
## 7067  4.886533e+09
## 7068  4.820500e+09
## 7069  4.438778e+09
## 7070  3.580417e+09
## 7071  3.294093e+09
## 7072  3.469364e+09
## 7073  3.291354e+09
## 7074  3.178126e+09
## 7075  2.770083e+09
## 7076  2.197613e+09
## 7077  1.432228e+09
## 7078  1.542477e+09
## 7079  1.738101e+09
## 7080  1.547884e+09
## 7081  1.576904e+09
## 7082  1.716700e+09
## 7083  1.602760e+09
## 7084  1.698982e+09
## 7085  1.419293e+09
## 7086  1.357207e+09
## 7087  1.284766e+09
## 7088  1.156142e+09
## 7089  1.114703e+09
## 7090  6.969154e+08
## 7091  6.920167e+08
## 7092  5.841356e+08
## 7093  4.491466e+08
## 7094  3.600754e+08
## 7095  4.944757e+08
## 7096  5.553361e+08
## 7097  5.375760e+08
## 7098  5.707612e+08
## 7099  5.420005e+08
## 7100  4.120931e+08
## 7101  3.406164e+08
## 7102  3.040478e+08
## 7103  2.725391e+08
## 7104  2.883029e+08
## 7105  2.643120e+08
## 7106  2.219020e+08
## 7107  1.467413e+08
## 7108  1.364653e+08
## 7109  1.121378e+08
## 7110  1.054179e+08
## 7111  7.979840e+07
## 7112  7.475850e+07
## 7113  7.685846e+07
## 7114  7.027859e+07
## 7115  6.497928e+07
## 7116  5.412838e+07
## 7117  4.592706e+07
## 7118  4.302520e+07
## 7119  3.507616e+07
## 7120            NA
## 7121  1.112711e+11
## 7122  1.076577e+11
## 7123  9.591259e+10
## 7124  8.426935e+10
## 7125  8.177079e+10
## 7126  7.429662e+10
## 7127  6.458933e+10
## 7128  5.561223e+10
## 7129  4.764821e+10
## 7130  4.331072e+10
## 7131  3.195276e+10
## 7132  2.993379e+10
## 7133  3.243739e+10
## 7134  2.706691e+10
## 7135  1.970762e+10
## 7136  1.528086e+10
## 7137  1.240114e+10
## 7138  1.013119e+10
## 7139  8.623691e+09
## 7140  7.850809e+09
## 7141  8.231326e+09
## 7142  8.242392e+09
## 7143  7.700833e+09
## 7144  7.818225e+09
## 7145  8.589211e+09
## 7146  8.547940e+09
## 7147  7.663985e+09
## 7148  6.927951e+09
## 7149  8.830713e+09
## 7150  1.049299e+10
## 7151  1.346387e+10
## 7152  1.217517e+10
## 7153  1.147658e+10
## 7154  1.090894e+10
## 7155  1.052734e+10
## 7156  9.848601e+09
## 7157  9.480840e+09
## 7158  8.096302e+09
## 7159  8.567891e+09
## 7160  7.707678e+09
## 7161  7.324903e+09
## 7162            NA
## 7163            NA
## 7164            NA
## 7165            NA
## 7166            NA
## 7167            NA
## 7168            NA
## 7169            NA
## 7170            NA
## 7171            NA
## 7172            NA
## 7173            NA
## 7174            NA
## 7175            NA
## 7176            NA
## 7177            NA
## 7178            NA
## 7179            NA
## 7180            NA
## 7181            NA
## 7182            NA
## 7183            NA
## 7184  3.649886e+09
## 7185  3.248697e+09
## 7186  3.275707e+09
## 7187  3.188611e+09
## 7188  2.980054e+09
## 7189  2.813286e+09
## 7190  2.573909e+09
## 7191  2.913996e+09
## 7192  2.690116e+09
## 7193  2.427190e+09
## 7194  2.505746e+09
## 7195  2.331786e+09
## 7196  2.296051e+09
## 7197  2.489888e+09
## 7198  2.339016e+09
## 7199  2.017673e+09
## 7200  1.759743e+09
## 7201  1.724758e+09
## 7202  1.501935e+09
## 7203  1.275096e+09
## 7204  1.160271e+09
## 7205  1.067115e+09
## 7206  1.127691e+09
## 7207  1.104749e+09
## 7208            NA
## 7209            NA
## 7210            NA
## 7211            NA
## 7212            NA
## 7213            NA
## 7214            NA
## 7215            NA
## 7216            NA
## 7217            NA
## 7218            NA
## 7219            NA
## 7220            NA
## 7221            NA
## 7222            NA
## 7223            NA
## 7224            NA
## 7225            NA
## 7226            NA
## 7227            NA
## 7228            NA
## 7229            NA
## 7230            NA
## 7231            NA
## 7232            NA
## 7233            NA
## 7234            NA
## 7235            NA
## 7236            NA
## 7237            NA
## 7238            NA
## 7239            NA
## 7240            NA
## 7241            NA
## 7242            NA
## 7243            NA
## 7244            NA
## 7245            NA
## 7246            NA
## 7247  4.296305e+09
## 7248  4.477040e+09
## 7249  5.481675e+09
## 7250  5.581372e+09
## 7251  5.353404e+09
## 7252  4.930204e+09
## 7253  4.682547e+09
## 7254  4.857221e+09
## 7255  4.189916e+09
## 7256  3.972013e+09
## 7257  3.779378e+09
## 7258  3.140181e+09
## 7259  2.870625e+09
## 7260  3.523186e+09
## 7261  3.378315e+09
## 7262  3.076305e+09
## 7263  2.980485e+09
## 7264  2.708078e+09
## 7265  2.300454e+09
## 7266  1.833280e+09
## 7267  1.652464e+09
## 7268  1.678239e+09
## 7269  1.936485e+09
## 7270  1.653161e+09
## 7271  2.090185e+09
## 7272  2.128697e+09
## 7273  1.970348e+09
## 7274  1.825763e+09
## 7275  1.636075e+09
## 7276  1.532402e+09
## 7277  1.383844e+09
## 7278  1.337025e+09
## 7279  1.182687e+09
## 7280  1.109977e+09
## 7281  1.177908e+09
## 7282  1.290229e+09
## 7283  1.141123e+09
## 7284  1.177997e+09
## 7285  1.123107e+09
## 7286  1.194123e+09
## 7287  1.235666e+09
## 7288  1.202567e+09
## 7289  1.019744e+09
## 7290  8.292395e+08
## 7291  7.195331e+08
## 7292  6.945524e+08
## 7293  6.842683e+08
## 7294  5.585899e+08
## 7295  4.259634e+08
## 7296  3.166505e+08
## 7297  2.477493e+08
## 7298  2.198785e+08
## 7299  1.821821e+08
## 7300  1.669529e+08
## 7301  1.626259e+08
## 7302  1.506039e+08
## 7303  1.470848e+08
## 7304  1.400327e+08
## 7305  1.294547e+08
## 7306  1.229064e+08
## 7307  1.169878e+08
## 7308  1.123284e+08
## 7309            NA
## 7310  2.973019e+11
## 7311  2.718918e+11
## 7312  2.685149e+11
## 7313  2.757080e+11
## 7314  2.556480e+11
## 7315  2.407714e+11
## 7316  2.345344e+11
## 7317  2.748628e+11
## 7318  2.713624e+11
## 7319  2.582901e+11
## 7320  2.756044e+11
## 7321  2.494243e+11
## 7322  2.534975e+11
## 7323  2.857163e+11
## 7324  2.563781e+11
## 7325  2.170893e+11
## 7326  2.048855e+11
## 7327  1.974794e+11
## 7328  1.716525e+11
## 7329  1.404045e+11
## 7330  1.295331e+11
## 7331  1.260195e+11
## 7332  1.352641e+11
## 7333  1.340387e+11
## 7334  1.269122e+11
## 7335  1.321292e+11
## 7336  1.341898e+11
## 7337  1.032999e+11
## 7338  8.921411e+10
## 7339  1.125325e+11
## 7340  1.277739e+11
## 7341  1.414383e+11
## 7342  1.190121e+11
## 7343  1.090590e+11
## 7344  9.159475e+10
## 7345  7.353155e+10
## 7346  5.587586e+10
## 7347  5.288880e+10
## 7348  5.097353e+10
## 7349  5.279758e+10
## 7350  5.244833e+10
## 7351  5.364520e+10
## 7352  4.446526e+10
## 7353  3.625616e+10
## 7354  3.349980e+10
## 7355  3.184951e+10
## 7356  2.947262e+10
## 7357  2.484882e+10
## 7358  1.947236e+10
## 7359  1.474319e+10
## 7360  1.252741e+10
## 7361  1.135752e+10
## 7362  1.007077e+10
## 7363  8.823034e+09
## 7364  9.368954e+09
## 7365  9.208525e+09
## 7366  8.589340e+09
## 7367  7.766655e+09
## 7368  6.885920e+09
## 7369  6.340581e+09
## 7370  5.921659e+09
## 7371  5.224102e+09
## 7372            NA
## 7373  2.957880e+12
## 7374  2.639009e+12
## 7375  2.728870e+12
## 7376  2.790957e+12
## 7377  2.595151e+12
## 7378  2.472964e+12
## 7379  2.439189e+12
## 7380  2.855964e+12
## 7381  2.811877e+12
## 7382  2.683672e+12
## 7383  2.865158e+12
## 7384  2.645188e+12
## 7385  2.700887e+12
## 7386  2.930304e+12
## 7387  2.660591e+12
## 7388  2.320536e+12
## 7389  2.196945e+12
## 7390  2.119633e+12
## 7391  1.844545e+12
## 7392  1.501409e+12
## 7393  1.377657e+12
## 7394  1.365640e+12
## 7395  1.493152e+12
## 7396  1.503109e+12
## 7397  1.452885e+12
## 7398  1.605675e+12
## 7399  1.601095e+12
## 7400  1.393983e+12
## 7401  1.322816e+12
## 7402  1.401466e+12
## 7403  1.269277e+12
## 7404  1.269180e+12
## 7405  1.025212e+12
## 7406  1.018847e+12
## 7407  9.341733e+11
## 7408  7.714708e+11
## 7409  5.531384e+11
## 7410  5.306838e+11
## 7411  5.598692e+11
## 7412  5.848777e+11
## 7413  6.155522e+11
## 7414  7.012884e+11
## 7415  6.139531e+11
## 7416  5.067078e+11
## 7417  4.102795e+11
## 7418  3.723190e+11
## 7419  3.608322e+11
## 7420  2.855524e+11
## 7421  2.644299e+11
## 7422  2.034941e+11
## 7423  1.659666e+11
## 7424  1.484564e+11
## 7425  1.419031e+11
## 7426  1.297854e+11
## 7427  1.189730e+11
## 7428  1.100459e+11
## 7429  1.015372e+11
## 7430  9.400785e+10
## 7431  8.475920e+10
## 7432  7.560753e+10
## 7433  6.746164e+10
## 7434  6.222548e+10
## 7435            NA
## 7436  6.054677e+09
## 7437  5.709422e+09
## 7438  6.001385e+09
## 7439  6.135118e+09
## 7440  5.833351e+09
## 7441  5.497037e+09
## 7442  5.325848e+09
## 7443  6.151999e+09
## 7444  6.031829e+09
## 7445  5.692859e+09
## 7446  6.203937e+09
## 7447  6.086643e+09
## 7448  6.584557e+09
## 7449  7.136744e+09
## 7450  6.631160e+09
## 7451  5.877996e+09
## 7452  5.705055e+09
## 7453  5.564112e+09
## 7454  4.927783e+09
## 7455  3.965406e+09
## 7456  3.573808e+09
## 7457  3.599847e+09
## 7458  3.911602e+09
## 7459  3.903187e+09
## 7460  3.762858e+09
## 7461  4.166073e+09
## 7462  4.186996e+09
## 7463  3.676123e+09
## 7464  3.544609e+09
## 7465  3.713786e+09
## 7466  3.410080e+09
## 7467  3.320160e+09
## 7468  2.731683e+09
## 7469  2.723496e+09
## 7470  2.677977e+09
## 7471  2.212028e+09
## 7472  1.448281e+09
## 7473  1.325515e+09
## 7474  1.284181e+09
## 7475  1.235898e+09
## 7476  1.234743e+09
## 7477  1.320416e+09
## 7478  1.215032e+09
## 7479  1.005570e+09
## 7480  7.931964e+08
## 7481  7.322889e+08
## 7482  6.903234e+08
## 7483  5.553408e+08
## 7484  4.312529e+08
## 7485  3.264336e+08
## 7486  2.968655e+08
## 7487  2.540360e+08
## 7488  2.429438e+08
## 7489  2.595901e+08
## 7490  2.209844e+08
## 7491  2.156595e+08
## 7492  1.765346e+08
## 7493            NA
## 7494            NA
## 7495            NA
## 7496            NA
## 7497            NA
## 7498            NA
## 7499  2.021684e+10
## 7500  1.531458e+10
## 7501  1.687441e+10
## 7502  1.686733e+10
## 7503  1.492949e+10
## 7504  1.402389e+10
## 7505  1.438311e+10
## 7506  1.820397e+10
## 7507  1.759575e+10
## 7508  1.717047e+10
## 7509  1.821031e+10
## 7510  1.437259e+10
## 7511  1.211370e+10
## 7512  1.557135e+10
## 7513  1.245541e+10
## 7514  1.032760e+10
## 7515  9.582783e+09
## 7516  7.770219e+09
## 7517  6.511904e+09
## 7518  5.335451e+09
## 7519  5.023265e+09
## 7520  5.080483e+09
## 7521  4.662992e+09
## 7522  4.483417e+09
## 7523  5.326817e+09
## 7524  5.694040e+09
## 7525  4.958846e+09
## 7526  4.190819e+09
## 7527  4.378645e+09
## 7528  5.592391e+09
## 7529  5.402920e+09
## 7530  5.952294e+09
## 7531  4.186411e+09
## 7532  3.834503e+09
## 7533  3.281797e+09
## 7534  3.403638e+09
## 7535  3.339915e+09
## 7536  3.561452e+09
## 7537  3.391276e+09
## 7538  3.618008e+09
## 7539  3.862269e+09
## 7540  4.279638e+09
## 7541  3.030251e+09
## 7542  2.389479e+09
## 7543  2.809349e+09
## 7544  3.009410e+09
## 7545  2.157593e+09
## 7546  1.544216e+09
## 7547  7.227807e+08
## 7548  4.305084e+08
## 7549  3.816871e+08
## 7550  3.238025e+08
## 7551  3.181247e+08
## 7552  2.944686e+08
## 7553  2.715437e+08
## 7554  2.458498e+08
## 7555  2.264743e+08
## 7556  2.156799e+08
## 7557  1.544802e+08
## 7558  1.827965e+08
## 7559  1.676379e+08
## 7560  1.414690e+08
## 7561            NA
## 7562  2.038417e+09
## 7563  1.812169e+09
## 7564  1.813608e+09
## 7565  1.670671e+09
## 7566  1.504910e+09
## 7567  1.484580e+09
## 7568  1.378177e+09
## 7569  1.229461e+09
## 7570  1.375609e+09
## 7571  1.415006e+09
## 7572  1.409695e+09
## 7573  1.543292e+09
## 7574  1.450140e+09
## 7575  1.561763e+09
## 7576  1.279705e+09
## 7577  1.054113e+09
## 7578  1.027702e+09
## 7579  9.619001e+08
## 7580  4.870388e+08
## 7581  5.782360e+08
## 7582  6.874088e+08
## 7583  7.829154e+08
## 7584  8.147235e+08
## 7585  8.402853e+08
## 7586  8.036307e+08
## 7587  8.482371e+08
## 7588  7.859970e+08
## 7589  7.464917e+08
## 7590  7.550425e+08
## 7591  7.142555e+08
## 7592  6.903143e+08
## 7593  3.170834e+08
## 7594  2.841197e+08
## 7595  2.666731e+08
## 7596  2.206265e+08
## 7597  1.856462e+08
## 7598  2.257249e+08
## 7599  1.773388e+08
## 7600  2.134466e+08
## 7601  2.160515e+08
## 7602  2.187644e+08
## 7603  2.410807e+08
## 7604  2.071144e+08
## 7605  1.718368e+08
## 7606  1.380942e+08
## 7607  1.121895e+08
## 7608  1.151825e+08
## 7609  9.579753e+07
## 7610  7.518797e+07
## 7611  5.916154e+07
## 7612  5.572861e+07
## 7613  5.229684e+07
## 7614  4.516872e+07
## 7615  4.116066e+07
## 7616  4.669536e+07
## 7617  4.421235e+07
## 7618            NA
## 7619            NA
## 7620            NA
## 7621            NA
## 7622            NA
## 7623            NA
## 7624            NA
## 7625  1.862937e+10
## 7626  1.584292e+10
## 7627  1.747044e+10
## 7628  1.759692e+10
## 7629  1.624292e+10
## 7630  1.514176e+10
## 7631  1.495395e+10
## 7632  1.762700e+10
## 7633  1.718955e+10
## 7634  1.648840e+10
## 7635  1.510744e+10
## 7636  1.224351e+10
## 7637  1.076684e+10
## 7638  1.279508e+10
## 7639  1.017288e+10
## 7640  7.745394e+09
## 7641  6.410824e+09
## 7642  5.125365e+09
## 7643  3.991285e+09
## 7644  3.395728e+09
## 7645  3.219489e+09
## 7646  3.057475e+09
## 7647  2.800049e+09
## 7648  3.613542e+09
## 7649  3.510520e+09
## 7650  3.095048e+09
## 7651  2.693768e+09
## 7652  2.514071e+09
## 7653  2.701181e+09
## 7654  3.690329e+09
## 7655  6.357616e+09
## 7656  7.753502e+09
## 7657            NA
## 7658            NA
## 7659            NA
## 7660            NA
## 7661            NA
## 7662            NA
## 7663            NA
## 7664            NA
## 7665            NA
## 7666            NA
## 7667            NA
## 7668            NA
## 7669            NA
## 7670            NA
## 7671            NA
## 7672            NA
## 7673            NA
## 7674            NA
## 7675            NA
## 7676            NA
## 7677            NA
## 7678            NA
## 7679            NA
## 7680            NA
## 7681            NA
## 7682            NA
## 7683            NA
## 7684            NA
## 7685            NA
## 7686            NA
## 7687            NA
## 7688  4.259935e+12
## 7689  3.889669e+12
## 7690  3.888226e+12
## 7691  3.974443e+12
## 7692  3.690849e+12
## 7693  3.469853e+12
## 7694  3.357586e+12
## 7695  3.889093e+12
## 7696  3.733805e+12
## 7697  3.527143e+12
## 7698  3.749315e+12
## 7699  3.399668e+12
## 7700  3.411261e+12
## 7701  3.745264e+12
## 7702  3.425578e+12
## 7703  2.994704e+12
## 7704  2.846864e+12
## 7705  2.814354e+12
## 7706  2.501640e+12
## 7707  2.078485e+12
## 7708  1.945791e+12
## 7709  1.947982e+12
## 7710  2.194945e+12
## 7711  2.238991e+12
## 7712  2.211990e+12
## 7713  2.497245e+12
## 7714  2.585792e+12
## 7715  2.205074e+12
## 7716  2.071324e+12
## 7717  2.131572e+12
## 7718  1.868945e+12
## 7719  1.771671e+12
## 7720  1.398967e+12
## 7721  1.401233e+12
## 7722  1.298176e+12
## 7723  1.046259e+12
## 7724  7.325349e+11
## 7725  7.251111e+11
## 7726  7.706843e+11
## 7727  7.765764e+11
## 7728  8.004721e+11
## 7729  9.502909e+11
## 7730  8.813452e+11
## 7731  7.404700e+11
## 7732  6.004982e+11
## 7733  5.197545e+11
## 7734  4.906365e+11
## 7735  4.453035e+11
## 7736  3.983740e+11
## 7737  2.998015e+11
## 7738  2.499851e+11
## 7739  2.158384e+11
## 7740            NA
## 7741            NA
## 7742            NA
## 7743            NA
## 7744            NA
## 7745            NA
## 7746            NA
## 7747            NA
## 7748            NA
## 7749            NA
## 7750            NA
## 7751  7.759428e+10
## 7752  7.004320e+10
## 7753  6.833754e+10
## 7754  6.729928e+10
## 7755  6.040638e+10
## 7756  5.616517e+10
## 7757  4.940657e+10
## 7758  5.478285e+10
## 7759  6.282304e+10
## 7760  4.127095e+10
## 7761  3.933731e+10
## 7762  3.219727e+10
## 7763  2.604811e+10
## 7764  2.867870e+10
## 7765  2.482784e+10
## 7766  2.044089e+10
## 7767  1.074468e+10
## 7768  8.881369e+09
## 7769  7.632407e+09
## 7770  6.166330e+09
## 7771  5.314910e+09
## 7772  4.983024e+09
## 7773  7.719355e+09
## 7774  7.480969e+09
## 7775  6.891309e+09
## 7776  6.934985e+09
## 7777  6.465138e+09
## 7778  5.444561e+09
## 7779  5.966256e+09
## 7780  6.413902e+09
## 7781  6.596546e+09
## 7782  5.889175e+09
## 7783  5.251764e+09
## 7784  5.197841e+09
## 7785  5.074830e+09
## 7786  5.727603e+09
## 7787  4.504342e+09
## 7788  4.412280e+09
## 7789  4.057275e+09
## 7790  4.035994e+09
## 7791  4.222442e+09
## 7792  4.445228e+09
## 7793  4.020228e+09
## 7794  3.662478e+09
## 7795  3.189429e+09
## 7796  2.765254e+09
## 7797  2.810106e+09
## 7798  2.894410e+09
## 7799  2.465493e+09
## 7800  2.112293e+09
## 7801  2.417108e+09
## 7802  2.215029e+09
## 7803  1.962051e+09
## 7804  1.666910e+09
## 7805  1.746806e+09
## 7806  2.126050e+09
## 7807  2.053221e+09
## 7808  1.731092e+09
## 7809  1.540616e+09
## 7810  1.382353e+09
## 7811  1.302521e+09
## 7812  1.217087e+09
## 7813            NA
## 7814            NA
## 7815            NA
## 7816            NA
## 7817            NA
## 7818            NA
## 7819            NA
## 7820            NA
## 7821            NA
## 7822            NA
## 7823            NA
## 7824            NA
## 7825            NA
## 7826            NA
## 7827            NA
## 7828            NA
## 7829            NA
## 7830            NA
## 7831            NA
## 7832            NA
## 7833            NA
## 7834            NA
## 7835            NA
## 7836            NA
## 7837            NA
## 7838            NA
## 7839            NA
## 7840            NA
## 7841            NA
## 7842            NA
## 7843            NA
## 7844            NA
## 7845            NA
## 7846            NA
## 7847            NA
## 7848            NA
## 7849            NA
## 7850            NA
## 7851            NA
## 7852            NA
## 7853            NA
## 7854            NA
## 7855            NA
## 7856            NA
## 7857            NA
## 7858            NA
## 7859            NA
## 7860            NA
## 7861            NA
## 7862            NA
## 7863            NA
## 7864            NA
## 7865            NA
## 7866            NA
## 7867            NA
## 7868            NA
## 7869            NA
## 7870            NA
## 7871            NA
## 7872            NA
## 7873            NA
## 7874            NA
## 7875            NA
## 7876            NA
## 7877  2.148739e+11
## 7878  1.889260e+11
## 7879  2.052570e+11
## 7880  2.120494e+11
## 7881  1.998444e+11
## 7882  1.931481e+11
## 7883  1.956835e+11
## 7884  2.354581e+11
## 7885  2.389077e+11
## 7886  2.420293e+11
## 7887  2.829959e+11
## 7888  2.971250e+11
## 7889  3.313085e+11
## 7890  3.559087e+11
## 7891  3.189028e+11
## 7892  2.735467e+11
## 7893  2.478754e+11
## 7894  2.409636e+11
## 7895  2.023701e+11
## 7896  1.545642e+11
## 7897  1.363093e+11
## 7898  1.304578e+11
## 7899  1.425889e+11
## 7900  1.444282e+11
## 7901  1.431576e+11
## 7902  1.458616e+11
## 7903  1.368784e+11
## 7904  1.166018e+11
## 7905  1.088091e+11
## 7906  1.162247e+11
## 7907  1.051432e+11
## 7908  9.789109e+10
## 7909  7.916904e+10
## 7910  7.626128e+10
## 7911  6.565275e+10
## 7912  5.637959e+10
## 7913  4.782085e+10
## 7914  4.802002e+10
## 7915  4.942887e+10
## 7916  5.461799e+10
## 7917  5.234651e+10
## 7918  5.682966e+10
## 7919  5.448188e+10
## 7920  4.427020e+10
## 7921  3.617623e+10
## 7922  3.115284e+10
## 7923  2.852588e+10
## 7924  2.535131e+10
## 7925  2.234785e+10
## 7926  1.688551e+10
## 7927  1.459175e+10
## 7928  1.313986e+10
## 7929  1.161566e+10
## 7930  1.009068e+10
## 7931  9.275601e+09
## 7932  8.591518e+09
## 7933  7.689154e+09
## 7934  6.669673e+09
## 7935  5.895278e+09
## 7936  5.213048e+09
## 7937  4.961400e+09
## 7938  4.335186e+09
## 7939            NA
## 7940            NA
## 7941  3.076015e+09
## 7942  2.994332e+09
## 7943  3.055791e+09
## 7944  2.851611e+09
## 7945  2.707147e+09
## 7946  2.499116e+09
## 7947  2.842049e+09
## 7948  2.684953e+09
## 7949  2.609668e+09
## 7950  2.684467e+09
## 7951  2.503156e+09
## 7952  2.529948e+09
## 7953  2.499108e+09
## 7954  2.249812e+09
## 7955  2.013099e+09
## 7956  1.849806e+09
## 7957  1.822487e+09
## 7958  1.558753e+09
## 7959  1.169139e+09
## 7960  1.086173e+09
## 7961  1.068031e+09
## 7962  1.131562e+09
## 7963  1.149863e+09
## 7964  1.072148e+09
## 7965  1.197510e+09
## 7966  1.208946e+09
## 7967  1.005880e+09
## 7968  9.272197e+08
## 7969  1.037922e+09
## 7970  1.016493e+09
## 7971  1.018970e+09
## 7972  9.297967e+08
## 7973  8.986110e+08
## 7974  7.873924e+08
## 7975  6.030157e+08
## 7976  4.128761e+08
## 7977  3.793716e+08
## 7978  4.161837e+08
## 7979  4.024051e+08
## 7980  4.357470e+08
## 7981  4.760553e+08
## 7982  4.206425e+08
## 7983  3.559890e+08
## 7984  2.822694e+08
## 7985  2.407804e+08
## 7986  2.111943e+08
## 7987  1.699189e+08
## 7988  1.401537e+08
## 7989  1.061012e+08
## 7990  8.857095e+07
## 7991  6.952003e+07
## 7992            NA
## 7993            NA
## 7994            NA
## 7995            NA
## 7996            NA
## 7997            NA
## 7998            NA
## 7999            NA
## 8000            NA
## 8001            NA
## 8002            NA
## 8003  1.122807e+09
## 8004  1.043415e+09
## 8005  1.213485e+09
## 8006  1.166511e+09
## 8007  1.125681e+09
## 8008  1.061641e+09
## 8009  9.970074e+08
## 8010  9.115000e+08
## 8011  8.426201e+08
## 8012  7.998823e+08
## 8013  7.786559e+08
## 8014  7.710133e+08
## 8015  7.712756e+08
## 8016  8.259760e+08
## 8017  7.586836e+08
## 8018  6.987007e+08
## 8019  6.955556e+08
## 8020  5.991186e+08
## 8021  5.910184e+08
## 8022  5.403369e+08
## 8023  5.204442e+08
## 8024  5.200444e+08
## 8025  4.820094e+08
## 8026  4.459036e+08
## 8027  3.921906e+08
## 8028  3.669114e+08
## 8029  3.421725e+08
## 8030  3.251118e+08
## 8031  3.098122e+08
## 8032  3.101604e+08
## 8033  3.007579e+08
## 8034  2.780988e+08
## 8035  2.673276e+08
## 8036  2.363575e+08
## 8037  2.150096e+08
## 8038  1.875895e+08
## 8039  1.677285e+08
## 8040  1.455333e+08
## 8041  1.318036e+08
## 8042  1.254356e+08
## 8043  1.156519e+08
## 8044  1.109005e+08
## 8045  1.022444e+08
## 8046  8.832239e+07
## 8047  7.149450e+07
## 8048            NA
## 8049            NA
## 8050            NA
## 8051            NA
## 8052            NA
## 8053            NA
## 8054            NA
## 8055            NA
## 8056            NA
## 8057            NA
## 8058            NA
## 8059            NA
## 8060            NA
## 8061            NA
## 8062            NA
## 8063            NA
## 8064            NA
## 8065            NA
## 8066  6.123000e+09
## 8067  5.886000e+09
## 8068  6.366000e+09
## 8069  6.056000e+09
## 8070  6.013000e+09
## 8071  5.901000e+09
## 8072  5.799000e+09
## 8073  5.610000e+09
## 8074  5.399000e+09
## 8075  5.265000e+09
## 8076  4.984000e+09
## 8077  4.949000e+09
## 8078  4.828000e+09
## 8079  4.658000e+09
## 8080  4.397000e+09
## 8081  4.238000e+09
## 8082  4.213000e+09
## 8083  3.869000e+09
## 8084  3.569000e+09
## 8085  3.394000e+09
## 8086            NA
## 8087            NA
## 8088            NA
## 8089            NA
## 8090            NA
## 8091            NA
## 8092            NA
## 8093            NA
## 8094            NA
## 8095            NA
## 8096            NA
## 8097            NA
## 8098            NA
## 8099            NA
## 8100            NA
## 8101            NA
## 8102            NA
## 8103            NA
## 8104            NA
## 8105            NA
## 8106            NA
## 8107            NA
## 8108            NA
## 8109            NA
## 8110            NA
## 8111            NA
## 8112            NA
## 8113            NA
## 8114            NA
## 8115            NA
## 8116            NA
## 8117            NA
## 8118            NA
## 8119            NA
## 8120            NA
## 8121            NA
## 8122            NA
## 8123            NA
## 8124            NA
## 8125            NA
## 8126            NA
## 8127            NA
## 8128            NA
## 8129  8.598575e+10
## 8130  7.762549e+10
## 8131  7.717042e+10
## 8132  7.332802e+10
## 8133  7.165413e+10
## 8134  6.605373e+10
## 8135  6.218619e+10
## 8136  5.785240e+10
## 8137  5.299654e+10
## 8138  4.959396e+10
## 8139  4.687611e+10
## 8140  4.067643e+10
## 8141  3.712594e+10
## 8142  3.850386e+10
## 8143  3.356787e+10
## 8144  2.974437e+10
## 8145  2.678354e+10
## 8146  2.357729e+10
## 8147  2.157635e+10
## 8148  2.044421e+10
## 8149  1.840520e+10
## 8150  1.928883e+10
## 8151  1.831841e+10
## 8152  1.939549e+10
## 8153  1.779003e+10
## 8154  1.567484e+10
## 8155  1.465540e+10
## 8156  1.298324e+10
## 8157  1.139994e+10
## 8158  1.044084e+10
## 8159  9.406098e+09
## 8160  7.650125e+09
## 8161  8.410724e+09
## 8162  7.841603e+09
## 8163  7.084400e+09
## 8164  7.231964e+09
## 8165  9.721652e+09
## 8166  9.470000e+09
## 8167  9.050000e+09
## 8168  8.717000e+09
## 8169  8.607500e+09
## 8170  7.878700e+09
## 8171  6.902600e+09
## 8172  6.070600e+09
## 8173  5.480500e+09
## 8174  4.365300e+09
## 8175  3.645900e+09
## 8176  3.161500e+09
## 8177  2.569200e+09
## 8178  2.101300e+09
## 8179  1.984800e+09
## 8180  1.904000e+09
## 8181  1.715400e+09
## 8182  1.610500e+09
## 8183  1.453500e+09
## 8184  1.390700e+09
## 8185  1.331400e+09
## 8186  1.299100e+09
## 8187  1.262800e+09
## 8188  1.143600e+09
## 8189  1.076700e+09
## 8190  1.043600e+09
## 8191            NA
## 8192  1.609182e+10
## 8193  1.417784e+10
## 8194  1.344286e+10
## 8195  1.185703e+10
## 8196  1.032467e+10
## 8197  8.595956e+09
## 8198  8.794202e+09
## 8199  8.778474e+09
## 8200  8.376614e+09
## 8201  7.638045e+09
## 8202  6.785137e+09
## 8203  6.853468e+09
## 8204  6.716905e+09
## 8205  6.964179e+09
## 8206  6.281918e+09
## 8207  4.220019e+09
## 8208  2.937072e+09
## 8209  3.635458e+09
## 8210  3.446442e+09
## 8211  2.950199e+09
## 8212  2.829436e+09
## 8213  2.995361e+09
## 8214  3.461283e+09
## 8215  3.588375e+09
## 8216  3.783700e+09
## 8217  3.868968e+09
## 8218  3.693711e+09
## 8219  3.383093e+09
## 8220  3.279097e+09
## 8221  3.284621e+09
## 8222  3.015058e+09
## 8223  2.666751e+09
## 8224  2.432029e+09
## 8225  2.384296e+09
## 8226  2.041538e+09
## 8227  1.995187e+09
## 8228            NA
## 8229            NA
## 8230            NA
## 8231            NA
## 8232            NA
## 8233            NA
## 8234            NA
## 8235            NA
## 8236            NA
## 8237            NA
## 8238            NA
## 8239            NA
## 8240            NA
## 8241            NA
## 8242            NA
## 8243            NA
## 8244            NA
## 8245            NA
## 8246            NA
## 8247            NA
## 8248            NA
## 8249            NA
## 8250            NA
## 8251            NA
## 8252            NA
## 8253            NA
## 8254            NA
## 8255  1.638518e+09
## 8256  1.431758e+09
## 8257  1.439638e+09
## 8258  1.504630e+09
## 8259  1.350177e+09
## 8260  1.179005e+09
## 8261  1.048230e+09
## 8262  1.054916e+09
## 8263  1.046087e+09
## 8264  9.892712e+08
## 8265  1.099819e+09
## 8266  8.498784e+08
## 8267  8.301265e+08
## 8268  8.681547e+08
## 8269  6.969108e+08
## 8270  5.923657e+08
## 8271  5.870291e+08
## 8272  5.320629e+08
## 8273  4.774586e+08
## 8274  4.178067e+08
## 8275  3.926214e+08
## 8276  3.710955e+08
## 8277  2.244467e+08
## 8278  2.064575e+08
## 8279  2.685510e+08
## 8280  2.704198e+08
## 8281  2.539669e+08
## 8282  2.356200e+08
## 8283  2.368808e+08
## 8284  2.263134e+08
## 8285  2.571504e+08
## 8286  2.439620e+08
## 8287  2.131430e+08
## 8288  1.644581e+08
## 8289  1.738364e+08
## 8290  1.302250e+08
## 8291  1.438563e+08
## 8292  1.384789e+08
## 8293  1.635775e+08
## 8294  1.655236e+08
## 8295  1.547320e+08
## 8296  1.106538e+08
## 8297  1.185379e+08
## 8298  1.226669e+08
## 8299  1.149712e+08
## 8300  1.123865e+08
## 8301  1.089857e+08
## 8302  9.877533e+07
## 8303  8.937424e+07
## 8304  8.770283e+07
## 8305  7.854006e+07
## 8306  7.873359e+07
## 8307            NA
## 8308            NA
## 8309            NA
## 8310            NA
## 8311            NA
## 8312            NA
## 8313            NA
## 8314            NA
## 8315            NA
## 8316            NA
## 8317            NA
## 8318  8.044499e+09
## 8319  5.471257e+09
## 8320  5.173760e+09
## 8321  4.787636e+09
## 8322  4.748174e+09
## 8323  4.482697e+09
## 8324  4.279840e+09
## 8325  4.127659e+09
## 8326  4.167800e+09
## 8327  4.063089e+09
## 8328  3.691384e+09
## 8329  3.432913e+09
## 8330  3.165663e+09
## 8331  3.025188e+09
## 8332  2.730971e+09
## 8333  2.379818e+09
## 8334  8.248806e+08
## 8335  7.878144e+08
## 8336  7.430641e+08
## 8337  7.261314e+08
## 8338  7.121676e+08
## 8339  7.126679e+08
## 8340  6.947550e+08
## 8341  7.175307e+08
## 8342  7.491380e+08
## 8343  7.054060e+08
## 8344  6.216268e+08
## 8345  5.408749e+08
## 8346  4.541014e+08
## 8347  3.735731e+08
## 8348  3.485331e+08
## 8349  3.965823e+08
## 8350  3.797794e+08
## 8351  4.138000e+08
## 8352  3.545918e+08
## 8353  5.046511e+08
## 8354  4.534884e+08
## 8355  4.376316e+08
## 8356  4.893333e+08
## 8357  4.820000e+08
## 8358  5.703571e+08
## 8359  6.032000e+08
## 8360  5.304400e+08
## 8361  5.070800e+08
## 8362  4.498800e+08
## 8363  4.544400e+08
## 8364  4.947917e+08
## 8365  4.339545e+08
## 8366  3.070476e+08
## 8367  2.853810e+08
## 8368  2.820500e+08
## 8369  2.678000e+08
## 8370  2.493000e+08
## 8371  2.297500e+08
## 8372  2.501765e+08
## 8373  2.287059e+08
## 8374  2.132353e+08
## 8375  1.947734e+08
## 8376  1.757569e+08
## 8377  1.949484e+08
## 8378  1.858485e+08
## 8379  1.702152e+08
## 8380            NA
## 8381  2.094439e+10
## 8382  1.450822e+10
## 8383  1.478584e+10
## 8384  1.645503e+10
## 8385  1.503556e+10
## 8386  1.398769e+10
## 8387  1.483315e+10
## 8388  1.513926e+10
## 8389  1.490247e+10
## 8390  1.370893e+10
## 8391  1.300875e+10
## 8392  1.185932e+10
## 8393  1.159701e+10
## 8394  1.048523e+10
## 8395  9.522763e+09
## 8396  7.518108e+09
## 8397  7.184065e+09
## 8398  6.036960e+09
## 8399  4.826828e+09
## 8400  6.058134e+09
## 8401  6.331962e+09
## 8402  6.813578e+09
## 8403  4.153736e+09
## 8404  3.723909e+09
## 8405  3.338939e+09
## 8406  2.907515e+09
## 8407  2.813313e+09
## 8408  2.167564e+09
## 8409  1.878249e+09
## 8410  2.257122e+09
## 8411  3.473541e+09
## 8412  3.096290e+09
## 8413  2.736244e+09
## 8414  2.613927e+09
## 8415  2.047200e+09
## 8416  2.318000e+09
## 8417  2.009400e+09
## 8418  1.816200e+09
## 8419  1.623600e+09
## 8420  1.474200e+09
## 8421  1.479400e+09
## 8422  1.383800e+09
## 8423  1.080600e+09
## 8424  9.742000e+08
## 8425  9.470000e+08
## 8426  8.790000e+08
## 8427  6.814000e+08
## 8428  5.654000e+08
## 8429  4.668000e+08
## 8430  3.720000e+08
## 8431  3.628000e+08
## 8432  3.312000e+08
## 8433  3.918204e+08
## 8434  3.679688e+08
## 8435  3.691242e+08
## 8436  3.689486e+08
## 8437  3.532518e+08
## 8438  3.252812e+08
## 8439  2.948834e+08
## 8440  2.818968e+08
## 8441  2.710660e+08
## 8442  2.731872e+08
## 8443            NA
## 8444  2.848867e+10
## 8445  2.382784e+10
## 8446  2.508998e+10
## 8447  2.406778e+10
## 8448  2.313623e+10
## 8449  2.171762e+10
## 8450  2.097977e+10
## 8451  1.975649e+10
## 8452  1.849971e+10
## 8453  1.852860e+10
## 8454  1.771032e+10
## 8455  1.583934e+10
## 8456  1.458750e+10
## 8457  1.388170e+10
## 8458  1.236126e+10
## 8459  1.091748e+10
## 8460  9.757034e+09
## 8461  8.869311e+09
## 8462  8.230388e+09
## 8463  7.858235e+09
## 8464  7.651175e+09
## 8465  7.186650e+09
## 8466  6.414521e+09
## 8467  6.366340e+09
## 8468  5.737100e+09
## 8469  5.215029e+09
## 8470  5.347445e+09
## 8471  4.642281e+09
## 8472  4.926729e+09
## 8473  4.943700e+09
## 8474  4.648668e+09
## 8475  4.923010e+09
## 8476  5.432345e+09
## 8477  5.902717e+09
## 8478  6.190521e+09
## 8479  5.677829e+09
## 8480  5.278121e+09
## 8481  4.915312e+09
## 8482  4.476697e+09
## 8483  4.266504e+09
## 8484  4.043895e+09
## 8485  3.968160e+09
## 8486  3.544282e+09
## 8487  3.097242e+09
## 8488  1.669500e+09
## 8489  1.348000e+09
## 8490  1.124000e+09
## 8491  1.034500e+09
## 8492  9.125000e+08
## 8493  8.030000e+08
## 8494  7.310000e+08
## 8495  7.230000e+08
## 8496  6.680000e+08
## 8497  6.468000e+08
## 8498  5.981000e+08
## 8499  5.499500e+08
## 8500  5.086500e+08
## 8501  4.570000e+08
## 8502  4.102000e+08
## 8503  3.877500e+08
## 8504  3.562000e+08
## 8505  3.356500e+08
## 8506            NA
## 8507  3.691764e+11
## 8508  3.449322e+11
## 8509  3.630525e+11
## 8510  3.617311e+11
## 8511  3.412733e+11
## 8512  3.208583e+11
## 8513  3.093836e+11
## 8514  2.914594e+11
## 8515  2.756969e+11
## 8516  2.626294e+11
## 8517  2.485136e+11
## 8518  2.286377e+11
## 8519  2.140464e+11
## 8520  2.192797e+11
## 8521  2.115974e+11
## 8522  1.935363e+11
## 8523  1.815701e+11
## 8524  1.690998e+11
## 8525  1.613845e+11
## 8526  1.663492e+11
## 8527  1.694032e+11
## 8528  1.716682e+11
## 8529  1.657681e+11
## 8530  1.688862e+11
## 8531  1.773528e+11
## 8532  1.597172e+11
## 8533  1.446529e+11
## 8534  1.358121e+11
## 8535  1.203539e+11
## 8536  1.042723e+11
## 8537  8.895962e+10
## 8538  7.692829e+10
## 8539  6.879037e+10
## 8540  5.970740e+10
## 8541  5.062257e+10
## 8542  4.107557e+10
## 8543  3.569954e+10
## 8544  3.351138e+10
## 8545  2.990709e+10
## 8546  3.229131e+10
## 8547  3.105541e+10
## 8548  2.886176e+10
## 8549  2.252604e+10
## 8550  1.831501e+10
## 8551  1.571943e+10
## 8552  1.287637e+10
## 8553  1.004802e+10
## 8554  9.388664e+09
## 8555  8.030118e+09
## 8556  5.710107e+09
## 8557  4.476002e+09
## 8558  3.800767e+09
## 8559  3.189740e+09
## 8560  2.716964e+09
## 8561  2.692475e+09
## 8562  2.489845e+09
## 8563  2.435079e+09
## 8564  2.206466e+09
## 8565  1.935298e+09
## 8566  1.612346e+09
## 8567  1.383682e+09
## 8568  1.320797e+09
## 8569            NA
## 8570  1.818480e+11
## 8571  1.571820e+11
## 8572  1.639886e+11
## 8573  1.605646e+11
## 8574  1.431122e+11
## 8575  1.286098e+11
## 8576  1.251742e+11
## 8577  1.410338e+11
## 8578  1.356843e+11
## 8579  1.288143e+11
## 8580  1.419423e+11
## 8581  1.321753e+11
## 8582  1.310693e+11
## 8583  1.583256e+11
## 8584  1.401867e+11
## 8585  1.157156e+11
## 8586  1.132112e+11
## 8587  1.041208e+11
## 8588  8.528506e+10
## 8589  6.760892e+10
## 8590  5.374999e+10
## 8591  4.721841e+10
## 8592  4.907338e+10
## 8593  4.870679e+10
## 8594  4.729695e+10
## 8595  4.665876e+10
## 8596  4.642568e+10
## 8597  4.316668e+10
## 8598  4.012492e+10
## 8599  3.873059e+10
## 8600  3.475357e+10
## 8601            NA
## 8602            NA
## 8603            NA
## 8604            NA
## 8605            NA
## 8606            NA
## 8607            NA
## 8608            NA
## 8609            NA
## 8610            NA
## 8611            NA
## 8612            NA
## 8613            NA
## 8614            NA
## 8615            NA
## 8616            NA
## 8617            NA
## 8618            NA
## 8619            NA
## 8620            NA
## 8621            NA
## 8622            NA
## 8623            NA
## 8624            NA
## 8625            NA
## 8626            NA
## 8627            NA
## 8628            NA
## 8629            NA
## 8630            NA
## 8631            NA
## 8632            NA
## 8633  2.560242e+10
## 8634  2.169467e+10
## 8635  2.482610e+10
## 8636  2.626413e+10
## 8637  2.472829e+10
## 8638  2.079317e+10
## 8639  1.751721e+10
## 8640  1.786766e+10
## 8641  1.612506e+10
## 8642  1.475151e+10
## 8643  1.522162e+10
## 8644  1.375116e+10
## 8645  1.315441e+10
## 8646  1.807462e+10
## 8647  2.165251e+10
## 8648  1.746532e+10
## 8649  1.685296e+10
## 8650  1.382530e+10
## 8651  1.142933e+10
## 8652  9.318395e+09
## 8653  8.234847e+09
## 8654  9.025660e+09
## 8655  8.982048e+09
## 8656  8.503693e+09
## 8657  7.569673e+09
## 8658  7.426082e+09
## 8659  7.123633e+09
## 8660  6.389460e+09
## 8661  6.218582e+09
## 8662  7.080982e+09
## 8663  6.909730e+09
## 8664  6.468736e+09
## 8665  5.672569e+09
## 8666  6.106636e+09
## 8667  5.520318e+09
## 8668  3.989623e+09
## 8669  2.984052e+09
## 8670  2.864441e+09
## 8671  2.765950e+09
## 8672  3.206627e+09
## 8673  3.492997e+09
## 8674  3.381419e+09
## 8675  2.853435e+09
## 8676  2.511826e+09
## 8677  2.208509e+09
## 8678  1.669488e+09
## 8679  1.406875e+09
## 8680  1.515191e+09
## 8681  1.154440e+09
## 8682  8.396522e+08
## 8683  6.702511e+08
## 8684  5.267045e+08
## 8685  4.147093e+08
## 8686  4.743995e+08
## 8687  6.212260e+08
## 8688  6.288933e+08
## 8689  5.236949e+08
## 8690  4.342679e+08
## 8691  3.400617e+08
## 8692  2.849165e+08
## 8693  2.538857e+08
## 8694  2.484341e+08
## 8695            NA
## 8696  3.176295e+12
## 8697  2.667688e+12
## 8698  2.831552e+12
## 8699  2.702930e+12
## 8700  2.651473e+12
## 8701  2.294798e+12
## 8702  2.103588e+12
## 8703  2.039127e+12
## 8704  1.856722e+12
## 8705  1.827638e+12
## 8706  1.823050e+12
## 8707  1.675615e+12
## 8708  1.341887e+12
## 8709  1.198896e+12
## 8710  1.216735e+12
## 8711  9.402599e+11
## 8712  8.203816e+11
## 8713  7.091485e+11
## 8714  6.076993e+11
## 8715  5.149379e+11
## 8716  4.854410e+11
## 8717  4.683949e+11
## 8718  4.588204e+11
## 8719  4.213515e+11
## 8720  4.158678e+11
## 8721  3.928971e+11
## 8722  3.602820e+11
## 8723  3.272756e+11
## 8724  2.792960e+11
## 8725  2.882084e+11
## 8726  2.701053e+11
## 8727  3.209790e+11
## 8728  2.960424e+11
## 8729  2.965890e+11
## 8730  2.790336e+11
## 8731  2.489860e+11
## 8732  2.325119e+11
## 8733  2.121582e+11
## 8734  2.182623e+11
## 8735  2.007151e+11
## 8736  1.934906e+11
## 8737  1.863253e+11
## 8738  1.529917e+11
## 8739  1.373003e+11
## 8740  1.214873e+11
## 8741  1.027172e+11
## 8742  9.847280e+10
## 8743  9.952590e+10
## 8744  8.551527e+10
## 8745  7.146319e+10
## 8746  6.735099e+10
## 8747  6.242248e+10
## 8748  5.844800e+10
## 8749  5.308546e+10
## 8750  5.013494e+10
## 8751  4.586546e+10
## 8752  5.955485e+10
## 8753  5.648029e+10
## 8754  4.842192e+10
## 8755  4.216148e+10
## 8756  3.923244e+10
## 8757  3.702988e+10
## 8758            NA
## 8759  1.186093e+12
## 8760  1.058689e+12
## 8761  1.119100e+12
## 8762  1.042272e+12
## 8763  1.015619e+12
## 8764  9.318774e+11
## 8765  8.608542e+11
## 8766  8.908148e+11
## 8767  9.125241e+11
## 8768  9.178699e+11
## 8769  8.929691e+11
## 8770  7.550942e+11
## 8771  5.395801e+11
## 8772  5.102286e+11
## 8773  4.322167e+11
## 8774  3.645705e+11
## 8775  2.858686e+11
## 8776  2.568369e+11
## 8777  2.347725e+11
## 8778  1.956606e+11
## 8779  1.604469e+11
## 8780  1.650210e+11
## 8781  1.400014e+11
## 8782  9.544555e+10
## 8783  2.157490e+11
## 8784  2.273697e+11
## 8785  2.021320e+11
## 8786  1.768921e+11
## 8787  1.580067e+11
## 8788  1.280270e+11
## 8789  1.166220e+11
## 8790  1.061407e+11
## 8791  9.445143e+10
## 8792  8.430017e+10
## 8793  7.592962e+10
## 8794  7.995407e+10
## 8795  8.528949e+10
## 8796  8.485370e+10
## 8797  8.105228e+10
## 8798  9.015845e+10
## 8799  8.551823e+10
## 8800  7.248234e+10
## 8801  5.140019e+10
## 8802  5.145572e+10
## 8803  4.580892e+10
## 8804  3.726916e+10
## 8805  3.046386e+10
## 8806  2.580241e+10
## 8807  1.627325e+10
## 8808  1.099759e+10
## 8809  9.333536e+09
## 8810  9.150685e+09
## 8811  8.337423e+09
## 8812  7.076465e+09
## 8813  5.667757e+09
## 8814            NA
## 8815            NA
## 8816            NA
## 8817            NA
## 8818            NA
## 8819            NA
## 8820            NA
## 8821            NA
## 8822  3.597132e+11
## 8823  2.397356e+11
## 8824  2.837467e+11
## 8825  3.316820e+11
## 8826  4.866301e+11
## 8827  4.579546e+11
## 8828  4.082129e+11
## 8829  4.603828e+11
## 8830  4.927756e+11
## 8831  6.440355e+11
## 8832  6.261331e+11
## 8833  4.868076e+11
## 8834  4.163970e+11
## 8835  4.123362e+11
## 8836  3.498816e+11
## 8837  2.662989e+11
## 8838  2.264521e+11
## 8839  1.900434e+11
## 8840  1.535448e+11
## 8841  1.286269e+11
## 8842  1.268788e+11
## 8843  1.095917e+11
## 8844  1.138485e+11
## 8845  1.102769e+11
## 8846  1.139192e+11
## 8847  1.204039e+11
## 8848  9.641923e+10
## 8849  7.184146e+10
## 8850  6.374362e+10
## 8851            NA
## 8852            NA
## 8853  1.248133e+11
## 8854  1.204964e+11
## 8855  1.230579e+11
## 8856  1.340100e+11
## 8857  2.090946e+11
## 8858  1.801836e+11
## 8859  1.622767e+11
## 8860  1.563652e+11
## 8861  1.259488e+11
## 8862  1.004993e+11
## 8863  9.436228e+10
## 8864  9.039188e+10
## 8865  7.799432e+10
## 8866  8.060012e+10
## 8867  6.805530e+10
## 8868  5.177622e+10
## 8869  4.620909e+10
## 8870  2.708170e+10
## 8871  1.715346e+10
## 8872  1.373180e+10
## 8873  1.097625e+10
## 8874  9.743090e+09
## 8875  8.623173e+09
## 8876  7.555384e+09
## 8877  6.789939e+09
## 8878  6.197320e+09
## 8879  5.379846e+09
## 8880  4.928628e+09
## 8881  4.693566e+09
## 8882  4.426949e+09
## 8883  4.199134e+09
## 8884            NA
## 8885  2.078893e+11
## 8886  1.843698e+11
## 8887  2.336361e+11
## 8888  2.273675e+11
## 8889  1.872177e+11
## 8890  1.666025e+11
## 8891  1.667741e+11
## 8892  2.284157e+11
## 8893  2.346377e+11
## 8894  2.180025e+11
## 8895  1.857497e+11
## 8896  1.385167e+11
## 8897  1.116576e+11
## 8898  1.316144e+11
## 8899  8.883706e+10
## 8900  6.514015e+10
## 8901  4.995489e+10
## 8902  3.662790e+10
## 8903  2.192157e+10
## 8904  3.292845e+10
## 8905  3.617643e+10
## 8906  4.836425e+10
## 8907  3.688160e+10
## 8908  2.061741e+10
## 8909  2.076486e+10
## 8910  1.043370e+10
## 8911  1.289403e+10
## 8912  3.991349e+09
## 8913  1.031945e+09
## 8914  5.536720e+08
## 8915  4.077963e+08
## 8916  1.804081e+11
## 8917  6.583194e+10
## 8918  6.268452e+10
## 8919  5.677419e+10
## 8920  4.726452e+10
## 8921  4.842516e+10
## 8922  4.693839e+10
## 8923  4.071290e+10
## 8924  4.238233e+10
## 8925  3.782300e+10
## 8926  5.256900e+10
## 8927  3.781646e+10
## 8928  2.376228e+10
## 8929  1.983813e+10
## 8930  1.775483e+10
## 8931  1.345852e+10
## 8932  1.151676e+10
## 8933  5.134368e+09
## 8934  4.113848e+09
## 8935  3.865347e+09
## 8936  3.281714e+09
## 8937  3.008121e+09
## 8938  2.896948e+09
## 8939            NA
## 8940            NA
## 8941            NA
## 8942  2.340521e+09
## 8943  1.978438e+09
## 8944  1.954635e+09
## 8945  1.831700e+09
## 8946  1.684122e+09
## 8947            NA
## 8948  5.041826e+11
## 8949  4.258523e+11
## 8950  3.993217e+11
## 8951  3.857367e+11
## 8952  3.363775e+11
## 8953  2.990911e+11
## 8954  2.917752e+11
## 8955  2.591709e+11
## 8956  2.383409e+11
## 8957  2.256287e+11
## 8958  2.390031e+11
## 8959  2.219136e+11
## 8960  2.364431e+11
## 8961  2.754475e+11
## 8962  2.700793e+11
## 8963  2.321806e+11
## 8964  2.118770e+11
## 8965  1.943721e+11
## 8966  1.646708e+11
## 8967  1.285960e+11
## 8968  1.093467e+11
## 8969  1.002076e+11
## 8970  9.889396e+10
## 8971  9.019941e+10
## 8972  8.285665e+10
## 8973  7.579079e+10
## 8974  6.913982e+10
## 8975  5.709766e+10
## 8976  5.241748e+10
## 8977  5.591854e+10
## 8978  4.978750e+10
## 8979  4.930563e+10
## 8980  3.923839e+10
## 8981  3.777290e+10
## 8982  3.392052e+10
## 8983  2.871457e+10
## 8984  2.127001e+10
## 8985  2.010665e+10
## 8986  2.076605e+10
## 8987  2.147475e+10
## 8988  2.067019e+10
## 8989  2.174786e+10
## 8990  1.831933e+10
## 8991  1.464800e+10
## 8992  1.124834e+10
## 8993  9.453756e+09
## 8994  9.483808e+09
## 8995  7.896861e+09
## 8996  7.481173e+09
## 8997  6.318061e+09
## 8998  5.098250e+09
## 8999  4.395995e+09
## 9000  3.787077e+09
## 9001  3.278584e+09
## 9002  3.343637e+09
## 9003  3.104034e+09
## 9004  2.945704e+09
## 9005  2.766609e+09
## 9006  2.430844e+09
## 9007  2.260350e+09
## 9008  2.088012e+09
## 9009  1.939330e+09
## 9010            NA
## 9011            NA
## 9012            NA
## 9013  7.315388e+09
## 9014  7.491969e+09
## 9015  6.979582e+09
## 9016  6.846692e+09
## 9017  7.085288e+09
## 9018  7.708835e+09
## 9019  7.000749e+09
## 9020  6.690725e+09
## 9021  6.566098e+09
## 9022  5.920178e+09
## 9023  5.487084e+09
## 9024  5.928421e+09
## 9025  4.466100e+09
## 9026  3.422651e+09
## 9027  3.032400e+09
## 9028  2.822358e+09
## 9029  2.328658e+09
## 9030  1.947333e+09
## 9031  1.659131e+09
## 9032  1.563668e+09
## 9033  1.567403e+09
## 9034  1.382605e+09
## 9035  1.180968e+09
## 9036  1.023006e+09
## 9037  9.147629e+08
## 9038            NA
## 9039            NA
## 9040            NA
## 9041            NA
## 9042            NA
## 9043            NA
## 9044            NA
## 9045            NA
## 9046            NA
## 9047            NA
## 9048            NA
## 9049            NA
## 9050            NA
## 9051            NA
## 9052            NA
## 9053            NA
## 9054            NA
## 9055            NA
## 9056            NA
## 9057            NA
## 9058            NA
## 9059            NA
## 9060            NA
## 9061            NA
## 9062            NA
## 9063            NA
## 9064            NA
## 9065            NA
## 9066            NA
## 9067            NA
## 9068            NA
## 9069            NA
## 9070            NA
## 9071            NA
## 9072            NA
## 9073            NA
## 9074  4.885265e+11
## 9075  4.132677e+11
## 9076  4.024705e+11
## 9077  3.766915e+11
## 9078  3.582454e+11
## 9079  3.221028e+11
## 9080  3.034143e+11
## 9081  3.143301e+11
## 9082  2.977328e+11
## 9083  2.622823e+11
## 9084  2.667919e+11
## 9085  2.383641e+11
## 9086  2.119700e+11
## 9087  2.205311e+11
## 9088  1.840521e+11
## 9089  1.586705e+11
## 9090  1.470840e+11
## 9091  1.399731e+11
## 9092  1.312999e+11
## 9093  1.250606e+11
## 9094  1.346358e+11
## 9095  1.360358e+11
## 9096  1.209229e+11
## 9097  1.200567e+11
## 9098  1.188594e+11
## 9099  1.145059e+11
## 9100  1.048930e+11
## 9101            NA
## 9102            NA
## 9103            NA
## 9104            NA
## 9105            NA
## 9106            NA
## 9107            NA
## 9108            NA
## 9109            NA
## 9110            NA
## 9111            NA
## 9112            NA
## 9113            NA
## 9114            NA
## 9115            NA
## 9116            NA
## 9117            NA
## 9118            NA
## 9119            NA
## 9120            NA
## 9121            NA
## 9122            NA
## 9123            NA
## 9124            NA
## 9125            NA
## 9126  5.329333e+09
## 9127  4.619000e+09
## 9128  4.030000e+09
## 9129  3.980000e+09
## 9130  3.663333e+09
## 9131  3.405333e+09
## 9132  2.992333e+09
## 9133  2.510000e+09
## 9134  3.138500e+09
## 9135  2.598500e+09
## 9136            NA
## 9137  2.107703e+12
## 9138  1.896755e+12
## 9139  2.011302e+12
## 9140  2.091932e+12
## 9141  1.961796e+12
## 9142  1.877072e+12
## 9143  1.836638e+12
## 9144  2.162010e+12
## 9145  2.141924e+12
## 9146  2.086958e+12
## 9147  2.294994e+12
## 9148  2.136100e+12
## 9149  2.199929e+12
## 9150  2.408655e+12
## 9151  2.213102e+12
## 9152  1.949552e+12
## 9153  1.858217e+12
## 9154  1.806543e+12
## 9155  1.577622e+12
## 9156  1.276769e+12
## 9157  1.168023e+12
## 9158  1.146677e+12
## 9159  1.252447e+12
## 9160  1.270053e+12
## 9161  1.241880e+12
## 9162  1.312427e+12
## 9163  1.174662e+12
## 9164  1.099217e+12
## 9165  1.064958e+12
## 9166  1.320162e+12
## 9167  1.246220e+12
## 9168  1.181223e+12
## 9169  9.286613e+11
## 9170  8.916090e+11
## 9171  8.057131e+11
## 9172  6.403864e+11
## 9173  4.522175e+11
## 9174  4.378877e+11
## 9175  4.430424e+11
## 9176  4.272726e+11
## 9177  4.307029e+11
## 9178  4.772568e+11
## 9179  3.936772e+11
## 9180  3.150583e+11
## 9181  2.575963e+11
## 9182  2.247173e+11
## 9183  2.276959e+11
## 9184  1.995645e+11
## 9185  1.754921e+11
## 9186  1.452600e+11
## 9187  1.246724e+11
## 9188  1.133953e+11
## 9189  9.708508e+10
## 9190  8.794223e+10
## 9191  8.113312e+10
## 9192  7.365487e+10
## 9193  6.797815e+10
## 9194  6.317542e+10
## 9195  5.771074e+10
## 9196  5.038389e+10
## 9197  4.484276e+10
## 9198  4.038529e+10
## 9199            NA
## 9200  1.465759e+10
## 9201  1.381243e+10
## 9202  1.583077e+10
## 9203  1.573079e+10
## 9204  1.480899e+10
## 9205  1.407711e+10
## 9206  1.418894e+10
## 9207  1.389923e+10
## 9208  1.426420e+10
## 9209  1.480709e+10
## 9210  1.444466e+10
## 9211  1.322056e+10
## 9212  1.212046e+10
## 9213  1.370940e+10
## 9214  1.279959e+10
## 9215  1.193017e+10
## 9216  1.124387e+10
## 9217  1.017466e+10
## 9218  9.430231e+09
## 9219  9.719018e+09
## 9220  9.194718e+09
## 9221  9.005064e+09
## 9222  8.887062e+09
## 9223  8.787196e+09
## 9224  8.400034e+09
## 9225  7.393884e+09
## 9226  6.577524e+09
## 9227  5.452564e+09
## 9228  5.440065e+09
## 9229  3.535460e+09
## 9230  4.106199e+09
## 9231  4.592224e+09
## 9232  4.404970e+09
## 9233  3.828311e+09
## 9234  3.286988e+09
## 9235  2.754566e+09
## 9236  2.100223e+09
## 9237  2.373567e+09
## 9238  3.619294e+09
## 9239  3.293533e+09
## 9240  2.979061e+09
## 9241  2.679409e+09
## 9242  2.425034e+09
## 9243  2.644449e+09
## 9244  3.249697e+09
## 9245  2.966010e+09
## 9246  2.860411e+09
## 9247  2.375096e+09
## 9248  1.905918e+09
## 9249  1.875049e+09
## 9250  1.539866e+09
## 9251  1.404776e+09
## 9252  1.191288e+09
## 9253  1.083883e+09
## 9254  1.148025e+09
## 9255  1.096738e+09
## 9256  9.721406e+08
## 9257  8.979314e+08
## 9258  8.266905e+08
## 9259  7.777124e+08
## 9260  7.480288e+08
## 9261  6.990507e+08
## 9262            NA
## 9263  4.940878e+12
## 9264  5.040108e+12
## 9265  5.123318e+12
## 9266  5.037835e+12
## 9267  4.930837e+12
## 9268  5.003678e+12
## 9269  4.444931e+12
## 9270  4.896994e+12
## 9271  5.212328e+12
## 9272  6.272363e+12
## 9273  6.233147e+12
## 9274  5.759072e+12
## 9275  5.289493e+12
## 9276  5.106679e+12
## 9277  4.579751e+12
## 9278  4.601663e+12
## 9279  4.831467e+12
## 9280  4.893116e+12
## 9281  4.519562e+12
## 9282  4.182846e+12
## 9283  4.374712e+12
## 9284  4.968359e+12
## 9285  4.635982e+12
## 9286  4.098363e+12
## 9287  4.492449e+12
## 9288  4.923392e+12
## 9289  5.545564e+12
## 9290  4.998798e+12
## 9291  4.454144e+12
## 9292  3.908809e+12
## 9293  3.584420e+12
## 9294  3.132818e+12
## 9295  3.054914e+12
## 9296  3.071683e+12
## 9297  2.532809e+12
## 9298  2.078953e+12
## 9299  1.398893e+12
## 9300  1.318382e+12
## 9301  1.243324e+12
## 9302  1.134518e+12
## 9303  1.218989e+12
## 9304  1.105386e+12
## 9305  1.055012e+12
## 9306  1.013612e+12
## 9307  7.214118e+11
## 9308  5.861619e+11
## 9309  5.215419e+11
## 9310  4.796260e+11
## 9311  4.320827e+11
## 9312  3.180313e+11
## 9313  2.401518e+11
## 9314  2.126092e+11
## 9315  1.722042e+11
## 9316  1.466011e+11
## 9317  1.237819e+11
## 9318  1.056281e+11
## 9319  9.095028e+10
## 9320  8.174901e+10
## 9321  6.949813e+10
## 9322  6.072302e+10
## 9323  5.350862e+10
## 9324  4.430734e+10
## 9325            NA
## 9326  4.574427e+10
## 9327  4.418230e+10
## 9328  4.499399e+10
## 9329  4.337086e+10
## 9330  4.160844e+10
## 9331  3.989255e+10
## 9332  3.858702e+10
## 9333  3.684764e+10
## 9334  3.445444e+10
## 9335  3.163456e+10
## 9336  2.952415e+10
## 9337  2.713380e+10
## 9338  2.453788e+10
## 9339  2.265766e+10
## 9340  1.711044e+10
## 9341  1.505698e+10
## 9342  1.258900e+10
## 9343  1.141171e+10
## 9344  1.019563e+10
## 9345  9.582511e+09
## 9346  8.975599e+09
## 9347  8.460790e+09
## 9348  8.149929e+09
## 9349  7.912271e+09
## 9350  7.245839e+09
## 9351  6.927504e+09
## 9352  6.727597e+09
## 9353  6.236296e+09
## 9354  5.606004e+09
## 9355  5.310974e+09
## 9356  4.344250e+09
## 9357  4.160163e+09
## 9358  4.221197e+09
## 9359  6.277318e+09
## 9360  6.755391e+09
## 9361  6.401429e+09
## 9362  4.993918e+09
## 9363  4.966710e+09
## 9364  4.920408e+09
## 9365  4.681135e+09
## 9366  4.384383e+09
## 9367  3.910373e+09
## 9368  3.271728e+09
## 9369  2.602421e+09
## 9370  2.096568e+09
## 9371  1.708434e+09
## 9372  1.363039e+09
## 9373  1.197454e+09
## 9374  9.437005e+08
## 9375  7.885746e+08
## 9376  6.782414e+08
## 9377  6.395968e+08
## 9378  6.989639e+08
## 9379  5.611873e+08
## 9380  6.317558e+08
## 9381  6.580790e+08
## 9382  5.998320e+08
## 9383            NA
## 9384            NA
## 9385            NA
## 9386            NA
## 9387            NA
## 9388            NA
## 9389  1.971123e+11
## 9390  1.710824e+11
## 9391  1.816672e+11
## 9392  1.793400e+11
## 9393  1.668058e+11
## 9394  1.372783e+11
## 9395  1.843884e+11
## 9396  2.214156e+11
## 9397  2.366346e+11
## 9398  2.079986e+11
## 9399  1.926265e+11
## 9400  1.480473e+11
## 9401  1.153087e+11
## 9402  1.334416e+11
## 9403  1.048499e+11
## 9404  8.100388e+10
## 9405  5.712367e+10
## 9406  4.315165e+10
## 9407  3.083370e+10
## 9408  2.463659e+10
## 9409  2.215269e+10
## 9410  1.829199e+10
## 9411  1.687082e+10
## 9412  2.213525e+10
## 9413  2.216593e+10
## 9414  2.103537e+10
## 9415  2.037430e+10
## 9416  2.125079e+10
## 9417  2.340926e+10
## 9418  2.491736e+10
## 9419  2.492308e+10
## 9420  2.693273e+10
## 9421            NA
## 9422            NA
## 9423            NA
## 9424            NA
## 9425            NA
## 9426            NA
## 9427            NA
## 9428            NA
## 9429            NA
## 9430            NA
## 9431            NA
## 9432            NA
## 9433            NA
## 9434            NA
## 9435            NA
## 9436            NA
## 9437            NA
## 9438            NA
## 9439            NA
## 9440            NA
## 9441            NA
## 9442            NA
## 9443            NA
## 9444            NA
## 9445            NA
## 9446            NA
## 9447            NA
## 9448            NA
## 9449            NA
## 9450            NA
## 9451            NA
## 9452  1.103471e+11
## 9453  1.006665e+11
## 9454  1.003797e+11
## 9455  9.220296e+10
## 9456  8.203580e+10
## 9457  7.481512e+10
## 9458  7.012041e+10
## 9459  6.828577e+10
## 9460  6.167143e+10
## 9461  5.639671e+10
## 9462  4.686946e+10
## 9463  4.540559e+10
## 9464  4.234722e+10
## 9465  3.589515e+10
## 9466  3.195820e+10
## 9467  2.582552e+10
## 9468  1.873790e+10
## 9469  1.609534e+10
## 9470  1.490452e+10
## 9471  1.314774e+10
## 9472  1.298601e+10
## 9473  1.270536e+10
## 9474  1.289601e+10
## 9475  1.409400e+10
## 9476  1.311577e+10
## 9477  1.204586e+10
## 9478  9.046326e+09
## 9479  7.148145e+09
## 9480  5.751790e+09
## 9481  8.209129e+09
## 9482  8.151479e+09
## 9483  8.572359e+09
## 9484  8.283115e+09
## 9485  8.355381e+09
## 9486  7.970821e+09
## 9487  7.239127e+09
## 9488  6.135034e+09
## 9489  6.191437e+09
## 9490  5.979198e+09
## 9491  6.431579e+09
## 9492  6.854491e+09
## 9493  7.265315e+09
## 9494  6.234391e+09
## 9495  5.303735e+09
## 9496  4.494379e+09
## 9497  3.474542e+09
## 9498  3.259345e+09
## 9499  2.969942e+09
## 9500  2.508998e+09
## 9501  2.107279e+09
## 9502  1.778391e+09
## 9503  1.603447e+09
## 9504  1.458379e+09
## 9505  1.353295e+09
## 9506  1.232560e+09
## 9507  1.164520e+09
## 9508  9.979193e+08
## 9509  9.987593e+08
## 9510  9.265893e+08
## 9511  8.681114e+08
## 9512  7.929595e+08
## 9513  7.912655e+08
## 9514            NA
## 9515  2.070312e+08
## 9516  1.809118e+08
## 9517  1.779353e+08
## 9518  1.962306e+08
## 9519  1.881921e+08
## 9520  1.785098e+08
## 9521  1.702910e+08
## 9522  1.778623e+08
## 9523  1.845508e+08
## 9524  1.896302e+08
## 9525  1.806658e+08
## 9526  1.552998e+08
## 9527  1.324199e+08
## 9528  1.410426e+08
## 9529  1.326717e+08
## 9530  1.102349e+08
## 9531  1.121339e+08
## 9532  1.023670e+08
## 9533  9.023186e+07
## 9534  7.219646e+07
## 9535  6.310127e+07
## 9536  6.725417e+07
## 9537  6.903226e+07
## 9538  6.533484e+07
## 9539  6.753748e+07
## 9540  6.651538e+07
## 9541  5.633803e+07
## 9542  5.483258e+07
## 9543  4.691962e+07
## 9544  4.773796e+07
## 9545  4.751519e+07
## 9546  4.293186e+07
## 9547  4.428278e+07
## 9548  4.453473e+07
## 9549  3.570928e+07
## 9550  3.141711e+07
## 9551  3.212515e+07
## 9552  4.212374e+07
## 9553  3.783784e+07
## 9554  4.057207e+07
## 9555  4.366812e+07
## 9556  4.213163e+07
## 9557  4.262017e+07
## 9558  4.521003e+07
## 9559  3.874806e+07
## 9560  4.110962e+07
## 9561  5.508182e+07
## 9562  8.563717e+07
## 9563  3.171066e+07
## 9564  1.893653e+07
## 9565  1.527863e+07
## 9566  1.429528e+07
## 9567            NA
## 9568            NA
## 9569            NA
## 9570            NA
## 9571            NA
## 9572            NA
## 9573            NA
## 9574            NA
## 9575            NA
## 9576            NA
## 9577            NA
## 9578            NA
## 9579            NA
## 9580            NA
## 9581            NA
## 9582            NA
## 9583            NA
## 9584            NA
## 9585            NA
## 9586            NA
## 9587            NA
## 9588            NA
## 9589            NA
## 9590            NA
## 9591            NA
## 9592            NA
## 9593            NA
## 9594            NA
## 9595            NA
## 9596            NA
## 9597            NA
## 9598            NA
## 9599            NA
## 9600            NA
## 9601            NA
## 9602            NA
## 9603            NA
## 9604            NA
## 9605            NA
## 9606            NA
## 9607            NA
## 9608            NA
## 9609            NA
## 9610            NA
## 9611            NA
## 9612            NA
## 9613            NA
## 9614            NA
## 9615            NA
## 9616            NA
## 9617            NA
## 9618            NA
## 9619            NA
## 9620            NA
## 9621            NA
## 9622            NA
## 9623            NA
## 9624            NA
## 9625            NA
## 9626            NA
## 9627            NA
## 9628            NA
## 9629            NA
## 9630            NA
## 9631            NA
## 9632            NA
## 9633            NA
## 9634            NA
## 9635            NA
## 9636            NA
## 9637            NA
## 9638            NA
## 9639            NA
## 9640            NA
## 9641  1.810956e+12
## 9642  1.644313e+12
## 9643  1.651423e+12
## 9644  1.724846e+12
## 9645  1.623901e+12
## 9646  1.500112e+12
## 9647  1.465773e+12
## 9648  1.484318e+12
## 9649  1.370795e+12
## 9650  1.278428e+12
## 9651  1.253223e+12
## 9652  1.144067e+12
## 9653  9.439419e+11
## 9654  1.047339e+12
## 9655  1.172614e+12
## 9656  1.053217e+12
## 9657  9.349011e+11
## 9658  7.931750e+11
## 9659  7.027173e+11
## 9660  6.272461e+11
## 9661  5.476582e+11
## 9662  5.761781e+11
## 9663  4.975127e+11
## 9664  3.833309e+11
## 9665  5.697545e+11
## 9666  6.101696e+11
## 9667  5.665834e+11
## 9668  4.636174e+11
## 9669  3.926661e+11
## 9670  3.555253e+11
## 9671  3.306485e+11
## 9672  2.833675e+11
## 9673  2.469273e+11
## 9674  1.995908e+11
## 9675  1.479483e+11
## 9676  1.168368e+11
## 9677  1.012962e+11
## 9678  9.751024e+10
## 9679  8.776036e+10
## 9680  7.835887e+10
## 9681  7.293335e+10
## 9682  6.539865e+10
## 9683  6.694690e+10
## 9684  5.197211e+10
## 9685  3.844649e+10
## 9686  2.990248e+10
## 9687  2.178430e+10
## 9688  1.954409e+10
## 9689  1.387653e+10
## 9690  1.086233e+10
## 9691  9.903500e+09
## 9692  9.005023e+09
## 9693  7.678720e+09
## 9694  6.119284e+09
## 9695  4.855833e+09
## 9696  3.929019e+09
## 9697  3.120871e+09
## 9698  3.459033e+09
## 9699  3.988477e+09
## 9700  2.814626e+09
## 9701  2.417638e+09
## 9702  3.958824e+09
## 9703            NA
## 9704  9.412034e+09
## 9705  7.716925e+09
## 9706  7.899879e+09
## 9707  7.878509e+09
## 9708  7.180813e+09
## 9709  6.682833e+09
## 9710  6.295820e+09
## 9711  7.074658e+09
## 9712  6.735731e+09
## 9713  6.163785e+09
## 9714  6.341737e+09
## 9715  5.344014e+09
## 9716  5.015895e+09
## 9717  5.181777e+09
## 9718            NA
## 9719            NA
## 9720            NA
## 9721            NA
## 9722            NA
## 9723            NA
## 9724            NA
## 9725            NA
## 9726            NA
## 9727            NA
## 9728            NA
## 9729            NA
## 9730            NA
## 9731            NA
## 9732            NA
## 9733            NA
## 9734            NA
## 9735            NA
## 9736            NA
## 9737            NA
## 9738            NA
## 9739            NA
## 9740            NA
## 9741            NA
## 9742            NA
## 9743            NA
## 9744            NA
## 9745            NA
## 9746            NA
## 9747            NA
## 9748            NA
## 9749            NA
## 9750            NA
## 9751            NA
## 9752            NA
## 9753            NA
## 9754            NA
## 9755            NA
## 9756            NA
## 9757            NA
## 9758            NA
## 9759            NA
## 9760            NA
## 9761            NA
## 9762            NA
## 9763            NA
## 9764            NA
## 9765            NA
## 9766            NA
## 9767            NA
## 9768  1.059602e+11
## 9769  1.361968e+11
## 9770  1.381824e+11
## 9771  1.207074e+11
## 9772  1.094197e+11
## 9773  1.145673e+11
## 9774  1.626314e+11
## 9775  1.741611e+11
## 9776  1.740704e+11
## 9777  1.540681e+11
## 9778  1.154194e+11
## 9779  1.059632e+11
## 9780  1.473951e+11
## 9781  1.146397e+11
## 9782  1.015489e+11
## 9783  8.079863e+10
## 9784  5.943909e+10
## 9785  4.787651e+10
## 9786  3.813755e+10
## 9787  3.488751e+10
## 9788  3.771284e+10
## 9789  3.012385e+10
## 9790  2.593996e+10
## 9791  3.035509e+10
## 9792  3.149332e+10
## 9793  2.719135e+10
## 9794  2.484848e+10
## 9795  2.394139e+10
## 9796  1.985856e+10
## 9797  1.100879e+10
## 9798  1.842778e+10
## 9799  2.431212e+10
## 9800  2.069247e+10
## 9801  2.236573e+10
## 9802  1.790368e+10
## 9803  2.144262e+10
## 9804  2.169730e+10
## 9805  2.086943e+10
## 9806  2.157798e+10
## 9807  2.505667e+10
## 9808  2.863855e+10
## 9809  2.474602e+10
## 9810  1.550091e+10
## 9811  1.413573e+10
## 9812  1.313167e+10
## 9813  1.202414e+10
## 9814  1.300477e+10
## 9815  5.408294e+09
## 9816  4.451201e+09
## 9817  3.880370e+09
## 9818  2.873985e+09
## 9819  2.769532e+09
## 9820  2.663120e+09
## 9821  2.441893e+09
## 9822  2.391487e+09
## 9823  2.097452e+09
## 9824            NA
## 9825            NA
## 9826            NA
## 9827            NA
## 9828            NA
## 9829            NA
## 9830  8.543424e+09
## 9831  7.780875e+09
## 9832  8.871026e+09
## 9833  8.271109e+09
## 9834  7.702935e+09
## 9835  6.813092e+09
## 9836  6.678178e+09
## 9837  7.468097e+09
## 9838  7.335028e+09
## 9839  6.605140e+09
## 9840  6.197766e+09
## 9841  4.794358e+09
## 9842  4.690062e+09
## 9843  5.139958e+09
## 9844  3.802566e+09
## 9845  2.834169e+09
## 9846  2.460248e+09
## 9847  2.211535e+09
## 9848  1.919008e+09
## 9849  1.605643e+09
## 9850  1.525116e+09
## 9851  1.369688e+09
## 9852  1.249061e+09
## 9853  1.645964e+09
## 9854  1.767864e+09
## 9855  1.827571e+09
## 9856  1.661019e+09
## 9857  1.681007e+09
## 9858  2.028295e+09
## 9859  2.316562e+09
## 9860  2.569444e+09
## 9861  2.675000e+09
## 9862            NA
## 9863            NA
## 9864            NA
## 9865            NA
## 9866            NA
## 9867            NA
## 9868            NA
## 9869            NA
## 9870            NA
## 9871            NA
## 9872            NA
## 9873            NA
## 9874            NA
## 9875            NA
## 9876            NA
## 9877            NA
## 9878            NA
## 9879            NA
## 9880            NA
## 9881            NA
## 9882            NA
## 9883            NA
## 9884            NA
## 9885            NA
## 9886            NA
## 9887            NA
## 9888            NA
## 9889            NA
## 9890            NA
## 9891            NA
## 9892            NA
## 9893  1.882715e+10
## 9894  1.898180e+10
## 9895  1.874056e+10
## 9896  1.814165e+10
## 9897  1.707116e+10
## 9898  1.591250e+10
## 9899  1.442638e+10
## 9900  1.327925e+10
## 9901  1.198325e+10
## 9902  1.019285e+10
## 9903  8.750107e+09
## 9904  7.131774e+09
## 9905  5.836138e+09
## 9906  5.446434e+09
## 9907  4.223152e+09
## 9908  3.455031e+09
## 9909  2.735559e+09
## 9910  2.366398e+09
## 9911  2.023324e+09
## 9912  1.758177e+09
## 9913  1.768619e+09
## 9914  1.731198e+09
## 9915  1.454431e+09
## 9916  1.280178e+09
## 9917  1.747012e+09
## 9918  1.873672e+09
## 9919  1.763536e+09
## 9920  1.543606e+09
## 9921  1.327749e+09
## 9922  1.127807e+09
## 9923  1.028088e+09
## 9924  8.655599e+08
## 9925  7.140468e+08
## 9926  5.989613e+08
## 9927  1.087273e+09
## 9928  1.776842e+09
## 9929  2.366667e+09
## 9930  1.757143e+09
## 9931            NA
## 9932            NA
## 9933            NA
## 9934            NA
## 9935            NA
## 9936            NA
## 9937            NA
## 9938            NA
## 9939            NA
## 9940            NA
## 9941            NA
## 9942            NA
## 9943            NA
## 9944            NA
## 9945            NA
## 9946            NA
## 9947            NA
## 9948            NA
## 9949            NA
## 9950            NA
## 9951            NA
## 9952            NA
## 9953            NA
## 9954            NA
## 9955            NA
## 9956  3.985350e+10
## 9957  3.460174e+10
## 9958  3.434396e+10
## 9959  3.442902e+10
## 9960  3.048381e+10
## 9961  2.808360e+10
## 9962  2.726309e+10
## 9963  3.138690e+10
## 9964  3.020478e+10
## 9965  2.816990e+10
## 9966  2.747438e+10
## 9967  2.395616e+10
## 9968  2.641091e+10
## 9969  3.585427e+10
## 9970  3.105435e+10
## 9971  2.157008e+10
## 9972  1.700346e+10
## 9973  1.443570e+10
## 9974  1.177198e+10
## 9975  9.557032e+09
## 9976  8.362399e+09
## 9977  7.958853e+09
## 9978  7.533788e+09
## 9979  7.166275e+09
## 9980  6.527926e+09
## 9981  5.975249e+09
## 9982  5.789129e+09
## 9983            NA
## 9984            NA
## 9985            NA
## 9986            NA
## 9987            NA
## 9988            NA
## 9989            NA
## 9990            NA
## 9991            NA
## 9992            NA
## 9993            NA
## 9994            NA
## 9995            NA
## 9996            NA
## 9997            NA
## 9998            NA
## 9999            NA
## 10000           NA
## 10001           NA
## 10002           NA
## 10003           NA
## 10004           NA
## 10005           NA
## 10006           NA
## 10007           NA
## 10008           NA
## 10009           NA
## 10010           NA
## 10011           NA
## 10012           NA
## 10013           NA
## 10014           NA
## 10015           NA
## 10016           NA
## 10017           NA
## 10018           NA
## 10019 2.313194e+10
## 10020 3.171213e+10
## 10021 5.195374e+10
## 10022 5.490152e+10
## 10023 5.302768e+10
## 10024 5.114731e+10
## 10025 4.992934e+10
## 10026 4.809521e+10
## 10027 4.688010e+10
## 10028 4.401680e+10
## 10029 3.992713e+10
## 10030 3.844391e+10
## 10031 3.539958e+10
## 10032 2.911892e+10
## 10033 2.482736e+10
## 10034 2.202271e+10
## 10035 2.149734e+10
## 10036 2.115983e+10
## 10037 2.008292e+10
## 10038 1.915224e+10
## 10039 1.764975e+10
## 10040 1.726036e+10
## 10041 1.739106e+10
## 10042 1.724718e+10
## 10043 1.575187e+10
## 10044 1.369022e+10
## 10045 1.171880e+10
## 10046 9.599127e+09
## 10047 7.941744e+09
## 10048 5.843579e+09
## 10049 4.690415e+09
## 10050 2.838485e+09
## 10051 2.717999e+09
## 10052 3.313540e+09
## 10053           NA
## 10054           NA
## 10055           NA
## 10056           NA
## 10057           NA
## 10058           NA
## 10059           NA
## 10060           NA
## 10061           NA
## 10062           NA
## 10063           NA
## 10064           NA
## 10065           NA
## 10066           NA
## 10067           NA
## 10068           NA
## 10069           NA
## 10070           NA
## 10071           NA
## 10072           NA
## 10073           NA
## 10074           NA
## 10075           NA
## 10076           NA
## 10077           NA
## 10078           NA
## 10079           NA
## 10080           NA
## 10081           NA
## 10082 2.496135e+09
## 10083 2.231215e+09
## 10084 2.453981e+09
## 10085 2.553496e+09
## 10086 2.306742e+09
## 10087 2.114428e+09
## 10088 2.359760e+09
## 10089 2.441053e+09
## 10090 2.367113e+09
## 10091 2.477702e+09
## 10092 2.579422e+09
## 10093 2.234732e+09
## 10094 1.740831e+09
## 10095 1.766825e+09
## 10096 1.682017e+09
## 10097 1.800106e+09
## 10098 1.682351e+09
## 10099 1.511237e+09
## 10100 1.157833e+09
## 10101 7.757807e+08
## 10102 8.257070e+08
## 10103 8.872953e+08
## 10104 9.127713e+08
## 10105 9.284582e+08
## 10106 9.979960e+08
## 10107 9.461233e+08
## 10108 1.001890e+09
## 10109 8.782505e+08
## 10110 8.355928e+08
## 10111 8.310339e+08
## 10112 7.043292e+08
## 10113 5.964151e+08
## 10114 4.954049e+08
## 10115 4.703892e+08
## 10116 4.027749e+08
## 10117 3.188629e+08
## 10118 2.686269e+08
## 10119 3.331585e+08
## 10120 3.866993e+08
## 10121 3.487468e+08
## 10122 4.341880e+08
## 10123 4.315614e+08
## 10124 2.901425e+08
## 10125 2.665593e+08
## 10126 1.933073e+08
## 10127 1.476541e+08
## 10128 1.495605e+08
## 10129 1.508462e+08
## 10130 1.211816e+08
## 10131 8.091583e+07
## 10132 7.648210e+07
## 10133 6.873863e+07
## 10134 6.596668e+07
## 10135 6.144477e+07
## 10136 5.926081e+07
## 10137 5.669887e+07
## 10138 5.487890e+07
## 10139 5.193896e+07
## 10140 4.703906e+07
## 10141 4.185916e+07
## 10142 3.569929e+07
## 10143 3.457931e+07
## 10144           NA
## 10145 3.509000e+09
## 10146 3.039982e+09
## 10147 3.319596e+09
## 10148 3.422755e+09
## 10149 3.390703e+09
## 10150 3.398420e+09
## 10151 3.227076e+09
## 10152 3.225652e+09
## 10153 3.177198e+09
## 10154 2.791614e+09
## 10155 2.398000e+09
## 10156 1.998000e+09
## 10157 1.768000e+09
## 10158 1.726000e+09
## 10159 1.373000e+09
## 10160 1.119000e+09
## 10161 9.490000e+08
## 10162 8.970000e+08
## 10163 7.480000e+08
## 10164 9.270000e+08
## 10165 9.060000e+08
## 10166 8.740000e+08
## 10167           NA
## 10168           NA
## 10169           NA
## 10170           NA
## 10171           NA
## 10172           NA
## 10173           NA
## 10174           NA
## 10175           NA
## 10176           NA
## 10177           NA
## 10178           NA
## 10179           NA
## 10180           NA
## 10181           NA
## 10182           NA
## 10183           NA
## 10184           NA
## 10185           NA
## 10186           NA
## 10187           NA
## 10188           NA
## 10189           NA
## 10190           NA
## 10191           NA
## 10192           NA
## 10193           NA
## 10194           NA
## 10195           NA
## 10196           NA
## 10197           NA
## 10198           NA
## 10199           NA
## 10200           NA
## 10201           NA
## 10202           NA
## 10203           NA
## 10204           NA
## 10205           NA
## 10206           NA
## 10207           NA
## 10208 4.281747e+10
## 10209 5.035731e+10
## 10210 6.925231e+10
## 10211 7.668418e+10
## 10212 6.715842e+10
## 10213 4.991096e+10
## 10214 4.871785e+10
## 10215 5.737245e+10
## 10216 7.535063e+10
## 10217 9.253800e+10
## 10218 4.816737e+10
## 10219 7.538017e+10
## 10220 6.081021e+10
## 10221 8.670807e+10
## 10222 6.803540e+10
## 10223 6.009295e+10
## 10224 4.733415e+10
## 10225 3.312231e+10
## 10226 2.626562e+10
## 10227 2.048189e+10
## 10228 3.411006e+10
## 10229 3.827021e+10
## 10230 3.597671e+10
## 10231 2.724979e+10
## 10232 3.069863e+10
## 10233 2.788462e+10
## 10234 2.554413e+10
## 10235 2.860792e+10
## 10236 3.065703e+10
## 10237 3.388139e+10
## 10238 3.199501e+10
## 10239 2.890184e+10
## 10240           NA
## 10241           NA
## 10242           NA
## 10243           NA
## 10244           NA
## 10245           NA
## 10246           NA
## 10247           NA
## 10248           NA
## 10249           NA
## 10250           NA
## 10251           NA
## 10252           NA
## 10253           NA
## 10254           NA
## 10255           NA
## 10256           NA
## 10257           NA
## 10258           NA
## 10259           NA
## 10260           NA
## 10261           NA
## 10262           NA
## 10263           NA
## 10264           NA
## 10265           NA
## 10266           NA
## 10267           NA
## 10268           NA
## 10269           NA
## 10270           NA
## 10271           NA
## 10272 6.113951e+09
## 10273 6.427249e+09
## 10274 6.692504e+09
## 10275 6.474256e+09
## 10276 6.237264e+09
## 10277 6.268392e+09
## 10278 6.657171e+09
## 10279 6.391736e+09
## 10280 5.456009e+09
## 10281 5.739977e+09
## 10282 5.082366e+09
## 10283 4.504549e+09
## 10284 5.081433e+09
## 10285 4.601300e+09
## 10286 4.000239e+09
## 10287 3.659252e+09
## 10288 3.454363e+09
## 10289 3.070691e+09
## 10290 2.688631e+09
## 10291 2.491823e+09
## 10292 2.483953e+09
## 10293 2.664026e+09
## 10294 2.479721e+09
## 10295 2.298410e+09
## 10296 2.504033e+09
## 10297 2.428461e+09
## 10298 1.948118e+09
## 10299 1.673104e+09
## 10300 1.631198e+09
## 10301 1.484152e+09
## 10302 1.421466e+09
## 10303 1.120001e+09
## 10304 1.161758e+09
## 10305 1.052843e+09
## 10306 7.793652e+08
## 10307 5.290790e+08
## 10308 5.026174e+08
## 10309 5.240341e+08
## 10310 5.220903e+08
## 10311 5.116587e+08
## 10312 5.347019e+08
## 10313 5.031807e+08
## 10314 4.369182e+08
## 10315 3.034963e+08
## 10316 2.724939e+08
## 10317 2.463875e+08
## 10318 1.939837e+08
## 10319 1.659306e+08
## 10320 1.249419e+08
## 10321 1.048886e+08
## 10322 9.009833e+07
## 10323           NA
## 10324           NA
## 10325           NA
## 10326           NA
## 10327           NA
## 10328           NA
## 10329           NA
## 10330           NA
## 10331           NA
## 10332           NA
## 10333           NA
## 10334 6.644526e+10
## 10335 5.684662e+10
## 10336 5.475151e+10
## 10337 5.375141e+10
## 10338 4.775874e+10
## 10339 4.304731e+10
## 10340 4.143553e+10
## 10341 4.853366e+10
## 10342 4.652342e+10
## 10343 4.292745e+10
## 10344 4.353505e+10
## 10345 3.712869e+10
## 10346 3.738812e+10
## 10347 4.779755e+10
## 10348 3.969789e+10
## 10349 3.018358e+10
## 10350 2.609768e+10
## 10351 2.262751e+10
## 10352 1.878172e+10
## 10353 1.425978e+10
## 10354 1.223739e+10
## 10355 1.152478e+10
## 10356 1.097158e+10
## 10357 1.123955e+10
## 10358 1.011863e+10
## 10359 8.382520e+09
## 10360 7.867140e+09
## 10361           NA
## 10362           NA
## 10363           NA
## 10364           NA
## 10365           NA
## 10366           NA
## 10367           NA
## 10368           NA
## 10369           NA
## 10370           NA
## 10371           NA
## 10372           NA
## 10373           NA
## 10374           NA
## 10375           NA
## 10376           NA
## 10377           NA
## 10378           NA
## 10379           NA
## 10380           NA
## 10381           NA
## 10382           NA
## 10383           NA
## 10384           NA
## 10385           NA
## 10386           NA
## 10387           NA
## 10388           NA
## 10389           NA
## 10390           NA
## 10391           NA
## 10392           NA
## 10393           NA
## 10394           NA
## 10395           NA
## 10396           NA
## 10397 8.550624e+10
## 10398 7.399259e+10
## 10399 6.982564e+10
## 10400 7.100036e+10
## 10401 6.571218e+10
## 10402 6.221689e+10
## 10403 6.007158e+10
## 10404 6.880481e+10
## 10405 6.520328e+10
## 10406 5.977638e+10
## 10407 6.169628e+10
## 10408 5.621399e+10
## 10409 5.446729e+10
## 10410 5.884428e+10
## 10411 5.158740e+10
## 10412 4.291015e+10
## 10413 3.767228e+10
## 10414 3.506484e+10
## 10415 2.966727e+10
## 10416 2.364983e+10
## 10417 2.138753e+10
## 10418 2.123018e+10
## 10419 2.189932e+10
## 10420 2.015005e+10
## 10421 1.956384e+10
## 10422 2.089531e+10
## 10423 2.085309e+10
## 10424 1.770180e+10
## 10425 1.592552e+10
## 10426 1.551870e+10
## 10427 1.383422e+10
## 10428 1.277879e+10
## 10429 1.003767e+10
## 10430 9.418168e+09
## 10431 8.320902e+09
## 10432 6.685595e+09
## 10433 4.577212e+09
## 10434 4.438435e+09
## 10435 4.524218e+09
## 10436 4.602317e+09
## 10437 5.053666e+09
## 10438 6.019805e+09
## 10439 5.516983e+09
## 10440 4.718540e+09
## 10441 3.789321e+09
## 10442 3.423586e+09
## 10443 3.123333e+09
## 10444 3.183637e+09
## 10445 2.609876e+09
## 10446 1.901697e+09
## 10447 1.518773e+09
## 10448 1.457768e+09
## 10449 1.234879e+09
## 10450 1.066447e+09
## 10451 9.747218e+08
## 10452 9.684401e+08
## 10453 9.216007e+08
## 10454 9.031588e+08
## 10455 7.911406e+08
## 10456 7.415095e+08
## 10457 7.041457e+08
## 10458 7.039257e+08
## 10459           NA
## 10460 3.012391e+10
## 10461 2.545956e+10
## 10462 5.520476e+10
## 10463 5.528436e+10
## 10464 5.044094e+10
## 10465 4.507061e+10
## 10466 4.504796e+10
## 10467 5.490303e+10
## 10468 5.153630e+10
## 10469 4.318953e+10
## 10470 3.684593e+10
## 10471 2.824186e+10
## 10472 2.158774e+10
## 10473 2.102704e+10
## 10474 1.843988e+10
## 10475 1.487415e+10
## 10476 1.216000e+10
## 10477 1.064322e+10
## 10478 8.246522e+09
## 10479 7.371723e+09
## 10480 6.860273e+09
## 10481 6.774194e+09
## 10482 6.547629e+09
## 10483 6.797764e+09
## 10484 7.267564e+09
## 10485 7.176893e+09
## 10486 7.046111e+09
## 10487 6.311194e+09
## 10488 5.665571e+09
## 10489 4.914391e+09
## 10490 3.765226e+09
## 10491 3.246478e+09
## 10492 2.705660e+09
## 10493 2.288760e+09
## 10494 1.957727e+09
## 10495 1.532097e+09
## 10496 1.362079e+09
## 10497 1.304353e+09
## 10498 1.133008e+09
## 10499 1.142504e+09
## 10500           NA
## 10501           NA
## 10502           NA
## 10503           NA
## 10504           NA
## 10505           NA
## 10506           NA
## 10507           NA
## 10508           NA
## 10509           NA
## 10510           NA
## 10511           NA
## 10512           NA
## 10513           NA
## 10514           NA
## 10515           NA
## 10516           NA
## 10517           NA
## 10518           NA
## 10519           NA
## 10520           NA
## 10521           NA
## 10522           NA
## 10523 1.447260e+10
## 10524 1.305144e+10
## 10525 1.410466e+10
## 10526 1.376003e+10
## 10527 1.317631e+10
## 10528 1.184861e+10
## 10529 1.132302e+10
## 10530 1.252296e+10
## 10531 1.242356e+10
## 10532 1.157897e+10
## 10533 1.155182e+10
## 10534 9.982711e+09
## 10535 9.616880e+09
## 10536 1.072514e+10
## 10537 8.524621e+09
## 10538 6.395712e+09
## 10539 5.859270e+09
## 10540 5.064733e+09
## 10541 6.372499e+09
## 10542 5.351702e+09
## 10543 5.438333e+09
## 10544 4.629247e+09
## 10545 4.277904e+09
## 10546 4.401967e+09
## 10547 4.262965e+09
## 10548 4.931861e+09
## 10549 3.838101e+09
## 10550 3.522227e+09
## 10551 4.063299e+09
## 10552 3.714967e+09
## 10553 3.254713e+09
## 10554 3.931335e+09
## 10555 3.175638e+09
## 10556 3.189457e+09
## 10557 3.212901e+09
## 10558 4.347990e+09
## 10559 3.802558e+09
## 10560 3.905938e+09
## 10561 4.686457e+09
## 10562 4.784977e+09
## 10563 4.759334e+09
## 10564 5.201818e+09
## 10565 3.463566e+09
## 10566 2.669755e+09
## 10567 2.358930e+09
## 10568 2.181844e+09
## 10569 2.283049e+09
## 10570 1.917508e+09
## 10571 1.653062e+09
## 10572 1.341591e+09
## 10573 1.199508e+09
## 10574 1.111860e+09
## 10575 1.056391e+09
## 10576 1.031670e+09
## 10577 9.564369e+08
## 10578 9.002646e+08
## 10579 8.335635e+08
## 10580 8.024822e+08
## 10581 7.593459e+08
## 10582 7.392869e+08
## 10583 6.991619e+08
## 10584 6.730817e+08
## 10585           NA
## 10586 1.262672e+10
## 10587 1.218235e+10
## 10588 1.102537e+10
## 10589 9.880676e+09
## 10590 8.943544e+09
## 10591 5.433040e+09
## 10592 6.373213e+09
## 10593 6.047813e+09
## 10594 5.518881e+09
## 10595 6.028488e+09
## 10596 8.004001e+09
## 10597 6.959656e+09
## 10598 6.191128e+09
## 10599 5.321012e+09
## 10600 4.432937e+09
## 10601 3.998020e+09
## 10602 3.655910e+09
## 10603 3.476094e+09
## 10604 3.208837e+09
## 10605 3.495748e+09
## 10606 1.716503e+09
## 10607 1.743507e+09
## 10608 1.775922e+09
## 10609 1.750584e+09
## 10610 2.663235e+09
## 10611 2.281034e+09
## 10612 1.397458e+09
## 10613 1.181803e+09
## 10614 2.070637e+09
## 10615 1.799517e+09
## 10616 2.203546e+09
## 10617 1.880772e+09
## 10618 1.590216e+09
## 10619 1.379924e+09
## 10620 1.183094e+09
## 10621 1.183655e+09
## 10622 1.131348e+09
## 10623 1.208009e+09
## 10624 1.223187e+09
## 10625 1.180104e+09
## 10626 1.237686e+09
## 10627 1.237655e+09
## 10628 1.058269e+09
## 10629 9.490340e+08
## 10630 8.062908e+08
## 10631 6.703176e+08
## 10632 6.132207e+08
## 10633 5.486210e+08
## 10634 4.442817e+08
## 10635 4.060629e+08
## 10636 3.653869e+08
## 10637 2.905316e+08
## 10638 2.658106e+08
## 10639 2.451698e+08
## 10640 2.698150e+08
## 10641 2.603948e+08
## 10642 2.294554e+08
## 10643 1.947361e+08
## 10644 1.908162e+08
## 10645 1.831163e+08
## 10646 1.745765e+08
## 10647 1.629567e+08
## 10648           NA
## 10649 3.729810e+11
## 10650 3.373379e+11
## 10651 3.651751e+11
## 10652 3.587916e+11
## 10653 3.191122e+11
## 10654 3.012555e+11
## 10655 3.013548e+11
## 10656 3.380620e+11
## 10657 3.232772e+11
## 10658 3.144431e+11
## 10659 2.979520e+11
## 10660 2.550166e+11
## 10661 2.022576e+11
## 10662 2.308139e+11
## 10663 1.935478e+11
## 10664 1.626912e+11
## 10665 1.435341e+11
## 10666 1.247495e+11
## 10667 1.102024e+11
## 10668 1.008455e+11
## 10669 9.278395e+10
## 10670 9.378974e+10
## 10671 7.914842e+10
## 10672 7.216750e+10
## 10673 1.000053e+11
## 10674 1.008554e+11
## 10675 8.870534e+10
## 10676 7.447836e+10
## 10677 6.689484e+10
## 10678 5.916755e+10
## 10679 4.914315e+10
## 10680 4.402418e+10
## 10681 3.884857e+10
## 10682 3.527188e+10
## 10683 3.218170e+10
## 10684 2.773456e+10
## 10685 3.120016e+10
## 10686 3.394351e+10
## 10687 3.034679e+10
## 10688 2.680440e+10
## 10689 2.500456e+10
## 10690 2.448803e+10
## 10691 2.121367e+10
## 10692 1.635838e+10
## 10693 1.313940e+10
## 10694 1.105013e+10
## 10695 9.298801e+09
## 10696 9.496074e+09
## 10697 7.662997e+09
## 10698 5.043269e+09
## 10699 4.244340e+09
## 10700 3.864171e+09
## 10701 3.664576e+09
## 10702 3.330393e+09
## 10703 3.188946e+09
## 10704 3.143538e+09
## 10705 2.956357e+09
## 10706 2.674441e+09
## 10707 2.510127e+09
## 10708 2.001503e+09
## 10709 1.901869e+09
## 10710 1.916242e+09
## 10711           NA
## 10712 5.405576e+09
## 10713 3.746322e+09
## 10714 5.609401e+09
## 10715 5.300963e+09
## 10716 4.754176e+09
## 10717 4.379136e+09
## 10718 4.109425e+09
## 10719 3.697352e+09
## 10720 3.295011e+09
## 10721 2.886171e+09
## 10722 2.774352e+09
## 10723 2.588176e+09
## 10724 2.345295e+09
## 10725 2.271646e+09
## 10726 1.868383e+09
## 10727 1.575200e+09
## 10728 1.163362e+09
## 10729 1.226830e+09
## 10730 1.052121e+09
## 10731 8.970312e+08
## 10732 8.700305e+08
## 10733 6.243371e+08
## 10734 5.892398e+08
## 10735 5.400964e+08
## 10736 5.082236e+08
## 10737 4.503823e+08
## 10738 3.989890e+08
## 10739 3.560134e+08
## 10740 3.224178e+08
## 10741 2.848749e+08
## 10742 2.443968e+08
## 10743 2.150440e+08
## 10744 1.895144e+08
## 10745 1.685145e+08
## 10746 1.412230e+08
## 10747 1.418823e+08
## 10748 1.271908e+08
## 10749 1.095035e+08
## 10750 5.782979e+07
## 10751 4.791112e+07
## 10752 4.478146e+07
## 10753 4.246358e+07
## 10754           NA
## 10755           NA
## 10756           NA
## 10757           NA
## 10758           NA
## 10759           NA
## 10760           NA
## 10761           NA
## 10762           NA
## 10763           NA
## 10764           NA
## 10765           NA
## 10766           NA
## 10767           NA
## 10768           NA
## 10769           NA
## 10770           NA
## 10771           NA
## 10772           NA
## 10773           NA
## 10774           NA
## 10775 1.914046e+10
## 10776 1.746539e+10
## 10777 1.728025e+10
## 10778 1.707087e+10
## 10779 1.536571e+10
## 10780 1.402605e+10
## 10781 1.310476e+10
## 10782 1.436494e+10
## 10783 1.324269e+10
## 10784 1.244204e+10
## 10785 1.299511e+10
## 10786 1.068917e+10
## 10787 1.023196e+10
## 10788 9.838404e+09
## 10789 8.156469e+09
## 10790 6.905935e+09
## 10791 6.247515e+09
## 10792 5.454249e+09
## 10793 4.714072e+09
## 10794 3.908121e+09
## 10795 3.468338e+09
## 10796 2.961485e+09
## 10797 3.440725e+09
## 10798 2.920359e+09
## 10799 2.697106e+09
## 10800 2.780422e+09
## 10801 2.706425e+09
## 10802 2.081846e+09
## 10803 2.818281e+09
## 10804 2.830673e+09
## 10805 2.724131e+09
## 10806 2.681912e+09
## 10807 2.181822e+09
## 10808 2.169041e+09
## 10809 2.090630e+09
## 10810 1.852163e+09
## 10811 1.392196e+09
## 10812 1.232932e+09
## 10813 1.297765e+09
## 10814 1.333754e+09
## 10815 1.538972e+09
## 10816 1.759691e+09
## 10817 1.595423e+09
## 10818 1.222703e+09
## 10819 1.049839e+09
## 10820 9.392280e+08
## 10821 8.307106e+08
## 10822 5.387473e+08
## 10823 5.636837e+08
## 10824 4.866173e+08
## 10825 3.952186e+08
## 10826 3.597723e+08
## 10827 3.399139e+08
## 10828 3.437720e+08
## 10829 2.754945e+08
## 10830           NA
## 10831           NA
## 10832           NA
## 10833           NA
## 10834           NA
## 10835           NA
## 10836           NA
## 10837           NA
## 10838 1.736404e+10
## 10839 1.493307e+10
## 10840 1.572585e+10
## 10841 1.529877e+10
## 10842 1.348938e+10
## 10843 1.166825e+10
## 10844 1.109142e+10
## 10845 1.162628e+10
## 10846 1.055160e+10
## 10847 9.462290e+09
## 10848 9.638920e+09
## 10849 9.035927e+09
## 10850 8.696305e+09
## 10851 9.090376e+09
## 10852 7.925404e+09
## 10853 6.778321e+09
## 10854 6.407288e+09
## 10855 6.116592e+09
## 10856 5.489359e+09
## 10857 4.693496e+09
## 10858 4.355146e+09
## 10859 4.323339e+09
## 10860 4.155187e+09
## 10861 3.958227e+09
## 10862 3.722389e+09
## 10863 3.585755e+09
## 10864 3.461333e+09
## 10865 2.998570e+09
## 10866 2.709178e+09
## 10867 3.021910e+09
## 10868 2.750041e+09
## 10869 2.547164e+09
## 10870 2.118575e+09
## 10871 2.019474e+09
## 10872 1.751248e+09
## 10873 1.435079e+09
## 10874 1.117835e+09
## 10875 1.101829e+09
## 10876 1.165771e+09
## 10877 1.234518e+09
## 10878 1.243469e+09
## 10879 1.250242e+09
## 10880 1.001301e+09
## 10881 7.936752e+08
## 10882 6.255733e+08
## 10883 5.279370e+08
## 10884 4.746204e+08
## 10885 3.760941e+08
## 10886 3.456020e+08
## 10887 2.951182e+08
## 10888 2.645799e+08
## 10889 2.507218e+08
## 10890           NA
## 10891           NA
## 10892           NA
## 10893           NA
## 10894           NA
## 10895           NA
## 10896           NA
## 10897           NA
## 10898           NA
## 10899           NA
## 10900           NA
## 10901 2.595387e+08
## 10902 2.417224e+08
## 10903 2.320923e+08
## 10904 2.193303e+08
## 10905 2.127012e+08
## 10906 2.007160e+08
## 10907 1.829973e+08
## 10908 1.851729e+08
## 10909 1.854680e+08
## 10910 1.798558e+08
## 10911 1.715671e+08
## 10912 1.603185e+08
## 10913 1.506249e+08
## 10914 1.459691e+08
## 10915 1.498700e+08
## 10916 1.427452e+08
## 10917 1.376663e+08
## 10918 1.329346e+08
## 10919 1.313985e+08
## 10920 1.317382e+08
## 10921 1.228240e+08
## 10922 1.153475e+08
## 10923 1.143263e+08
## 10924 1.122794e+08
## 10925 1.107056e+08
## 10926 1.108580e+08
## 10927 1.202300e+08
## 10928 1.080710e+08
## 10929 9.946100e+07
## 10930 9.106300e+07
## 10931 8.250700e+07
## 10932 7.847600e+07
## 10933 7.279800e+07
## 10934 7.068800e+07
## 10935 6.298300e+07
## 10936 5.598900e+07
## 10937 4.387900e+07
## 10938 4.514400e+07
## 10939 4.174900e+07
## 10940 3.491800e+07
## 10941 3.102000e+07
## 10942           NA
## 10943           NA
## 10944           NA
## 10945           NA
## 10946           NA
## 10947           NA
## 10948           NA
## 10949           NA
## 10950           NA
## 10951           NA
## 10952           NA
## 10953           NA
## 10954           NA
## 10955           NA
## 10956           NA
## 10957           NA
## 10958           NA
## 10959           NA
## 10960           NA
## 10961           NA
## 10962           NA
## 10963           NA
## 10964 9.996250e+09
## 10965 8.405491e+09
## 10966 8.066126e+09
## 10967 7.473551e+09
## 10968 6.800142e+09
## 10969 6.398739e+09
## 10970 6.166858e+09
## 10971 6.592538e+09
## 10972 7.223063e+09
## 10973 6.728209e+09
## 10974 6.764636e+09
## 10975 5.628882e+09
## 10976 4.714592e+09
## 10977 5.206444e+09
## 10978 4.346207e+09
## 10979 3.919577e+09
## 10980 2.936020e+09
## 10981 2.362501e+09
## 10982 2.051148e+09
## 10983 1.777059e+09
## 10984 1.746065e+09
## 10985 1.779523e+09
## 10986 1.985924e+09
## 10987 2.032346e+09
## 10988 2.072001e+09
## 10989 2.132082e+09
## 10990 2.091731e+09
## 10991 1.944877e+09
## 10992 1.847351e+09
## 10993 2.164292e+09
## 10994 2.133688e+09
## 10995 1.506914e+09
## 10996 1.450647e+09
## 10997 1.414952e+09
## 10998 1.344665e+09
## 10999 1.186629e+09
## 11000 1.009723e+09
## 11001 1.074374e+09
## 11002 1.165171e+09
## 11003 1.108776e+09
## 11004 1.105495e+09
## 11005 1.047925e+09
## 11006 9.519009e+08
## 11007 8.046299e+08
## 11008 7.990297e+08
## 11009 7.750464e+08
## 11010 7.033787e+08
## 11011 6.130110e+08
## 11012 4.932375e+08
## 11013 3.916694e+08
## 11014 3.355691e+08
## 11015 3.094053e+08
## 11016 2.950621e+08
## 11017 3.113960e+08
## 11018 2.826154e+08
## 11019 2.665337e+08
## 11020 2.553405e+08
## 11021 2.244958e+08
## 11022 1.681863e+08
## 11023 1.642716e+08
## 11024 1.592131e+08
## 11025           NA
## 11026           NA
## 11027 1.152904e+10
## 11028 1.140105e+10
## 11029 1.443635e+10
## 11030 1.473570e+10
## 11031 1.371351e+10
## 11032 1.259415e+10
## 11033 1.200729e+10
## 11034 1.307414e+10
## 11035 1.229296e+10
## 11036 1.166869e+10
## 11037 1.151839e+10
## 11038 1.000367e+10
## 11039 9.128843e+09
## 11040 9.990370e+09
## 11041 8.150139e+09
## 11042 7.028803e+09
## 11043 6.488750e+09
## 11044 6.578844e+09
## 11045 5.816554e+09
## 11046 4.841310e+09
## 11047 4.613631e+09
## 11048 4.663314e+09
## 11049 4.343710e+09
## 11050 4.169664e+09
## 11051 4.187368e+09
## 11052 4.421944e+09
## 11053 4.040346e+09
## 11054 3.558137e+09
## 11055 3.263368e+09
## 11056 3.224268e+09
## 11057 2.856891e+09
## 11058 2.653480e+09
## 11059 2.181930e+09
## 11060 2.134517e+09
## 11061 1.880853e+09
## 11062 1.462900e+09
## 11063 1.076121e+09
## 11064 1.040557e+09
## 11065 1.090277e+09
## 11066 1.078409e+09
## 11067 1.142394e+09
## 11068 1.131788e+09
## 11069 1.211141e+09
## 11070 1.015365e+09
## 11071 8.236345e+08
## 11072 7.040335e+08
## 11073           NA
## 11074           NA
## 11075           NA
## 11076           NA
## 11077           NA
## 11078           NA
## 11079           NA
## 11080           NA
## 11081           NA
## 11082           NA
## 11083           NA
## 11084           NA
## 11085           NA
## 11086           NA
## 11087           NA
## 11088           NA
## 11089           NA
## 11090 1.272839e+12
## 11091 1.090515e+12
## 11092 1.269012e+12
## 11093 1.222408e+12
## 11094 1.158913e+12
## 11095 1.078491e+12
## 11096 1.171868e+12
## 11097 1.315351e+12
## 11098 1.274443e+12
## 11099 1.201090e+12
## 11100 1.180490e+12
## 11101 1.057801e+12
## 11102 9.000454e+11
## 11103 1.109989e+12
## 11104 1.052696e+12
## 11105 9.753871e+11
## 11106 8.774762e+11
## 11107 7.822406e+11
## 11108 7.293363e+11
## 11109 7.721064e+11
## 11110 7.567063e+11
## 11111 7.079067e+11
## 11112 6.002329e+11
## 11113 5.265021e+11
## 11114 5.004135e+11
## 11115 4.109756e+11
## 11116 3.600739e+11
## 11117 5.278132e+11
## 11118 5.007361e+11
## 11119 3.631576e+11
## 11120 3.131428e+11
## 11121 2.612536e+11
## 11122 2.214007e+11
## 11123 1.816115e+11
## 11124 1.475407e+11
## 11125 1.345501e+11
## 11126 1.952198e+11
## 11127 1.842615e+11
## 11128 1.561592e+11
## 11129 1.846092e+11
## 11130 2.639593e+11
## 11131 2.051391e+11
## 11132 1.345614e+11
## 11133 1.025000e+11
## 11134 8.181416e+10
## 11135 8.902597e+10
## 11136 8.800000e+10
## 11137 7.200000e+10
## 11138 5.528000e+10
## 11139 4.520000e+10
## 11140 3.920000e+10
## 11141 3.552000e+10
## 11142 3.248000e+10
## 11143 2.936000e+10
## 11144 2.656000e+10
## 11145 2.432000e+10
## 11146 2.184000e+10
## 11147 2.008000e+10
## 11148 1.696000e+10
## 11149 1.520000e+10
## 11150 1.416000e+10
## 11151 1.304000e+10
## 11152           NA
## 11153 4.040289e+08
## 11154 4.080000e+08
## 11155 4.120000e+08
## 11156 4.019323e+08
## 11157 3.666668e+08
## 11158 3.322652e+08
## 11159 3.164899e+08
## 11160 3.192712e+08
## 11161 3.172144e+08
## 11162 3.272487e+08
## 11163 3.113016e+08
## 11164 2.969441e+08
## 11165 2.802846e+08
## 11166 2.631451e+08
## 11167 2.567872e+08
## 11168 2.535419e+08
## 11169 2.502819e+08
## 11170 2.402360e+08
## 11171 2.454329e+08
## 11172 2.425172e+08
## 11173 2.409709e+08
## 11174 2.332718e+08
## 11175 2.201405e+08
## 11176 2.188731e+08
## 11177 2.066263e+08
## 11178 2.185347e+08
## 11179 2.215753e+08
## 11180 2.025000e+08
## 11181 1.984000e+08
## 11182 1.781000e+08
## 11183 1.662000e+08
## 11184 1.472000e+08
## 11185 1.352000e+08
## 11186 1.247000e+08
## 11187 1.167000e+08
## 11188 1.122100e+08
## 11189           NA
## 11190           NA
## 11191 1.065000e+08
## 11192           NA
## 11193           NA
## 11194           NA
## 11195           NA
## 11196           NA
## 11197           NA
## 11198           NA
## 11199           NA
## 11200           NA
## 11201           NA
## 11202           NA
## 11203           NA
## 11204           NA
## 11205           NA
## 11206           NA
## 11207           NA
## 11208           NA
## 11209           NA
## 11210           NA
## 11211           NA
## 11212           NA
## 11213           NA
## 11214           NA
## 11215           NA
## 11216 1.367922e+10
## 11217 1.185973e+10
## 11218 1.197135e+10
## 11219 1.145744e+10
## 11220 9.669742e+09
## 11221 8.071469e+09
## 11222 7.745242e+09
## 11223 9.510199e+09
## 11224 9.496718e+09
## 11225 8.709139e+09
## 11226 8.414352e+09
## 11227 6.974982e+09
## 11228 5.439422e+09
## 11229 6.054850e+09
## 11230 4.401189e+09
## 11231 3.408245e+09
## 11232 2.988349e+09
## 11233 2.598250e+09
## 11234 1.980907e+09
## 11235 1.661818e+09
## 11236 1.480674e+09
## 11237 1.288429e+09
## 11238 1.170783e+09
## 11239 1.698718e+09
## 11240 1.930081e+09
## 11241 1.695122e+09
## 11242 1.752980e+09
## 11243           NA
## 11244           NA
## 11245           NA
## 11246           NA
## 11247           NA
## 11248           NA
## 11249           NA
## 11250           NA
## 11251           NA
## 11252           NA
## 11253           NA
## 11254           NA
## 11255           NA
## 11256           NA
## 11257           NA
## 11258           NA
## 11259           NA
## 11260           NA
## 11261           NA
## 11262           NA
## 11263           NA
## 11264           NA
## 11265           NA
## 11266           NA
## 11267           NA
## 11268           NA
## 11269           NA
## 11270           NA
## 11271           NA
## 11272           NA
## 11273           NA
## 11274           NA
## 11275           NA
## 11276           NA
## 11277           NA
## 11278           NA
## 11279 8.596097e+09
## 11280 6.739692e+09
## 11281 7.383746e+09
## 11282 7.194025e+09
## 11283 6.431315e+09
## 11284 6.472991e+09
## 11285 6.261622e+09
## 11286 7.069616e+09
## 11287 6.555984e+09
## 11288 5.743030e+09
## 11289 6.088808e+09
## 11290 5.367626e+09
## 11291 5.451653e+09
## 11292 6.476490e+09
## 11293 5.867917e+09
## 11294 4.582988e+09
## 11295 4.203084e+09
## 11296 4.137914e+09
## 11297 3.601321e+09
## 11298 2.968987e+09
## 11299 2.718868e+09
## 11300 2.647886e+09
## 11301 2.906094e+09
## 11302 2.934498e+09
## 11303 2.840176e+09
## 11304 3.137673e+09
## 11305 3.130463e+09
## 11306 2.720310e+09
## 11307 2.574302e+09
## 11308 2.737193e+09
## 11309 2.480599e+09
## 11310 2.481316e+09
## 11311 2.010117e+09
## 11312 2.000675e+09
## 11313 1.839096e+09
## 11314 1.515210e+09
## 11315 1.082851e+09
## 11316 1.037315e+09
## 11317 1.092552e+09
## 11318 1.143229e+09
## 11319 1.205166e+09
## 11320 1.378131e+09
## 11321 1.209898e+09
## 11322 1.000536e+09
## 11323 8.112509e+08
## 11324 7.353399e+08
## 11325 7.119230e+08
## 11326 5.639397e+08
## 11327 5.235528e+08
## 11328 4.024603e+08
## 11329 3.276515e+08
## 11330 2.930739e+08
## 11331           NA
## 11332           NA
## 11333           NA
## 11334           NA
## 11335           NA
## 11336           NA
## 11337           NA
## 11338           NA
## 11339           NA
## 11340           NA
## 11341           NA
## 11342 1.528644e+10
## 11343 1.331298e+10
## 11344 1.420636e+10
## 11345 1.317809e+10
## 11346 1.148085e+10
## 11347 1.118135e+10
## 11348 1.161989e+10
## 11349 1.222651e+10
## 11350 1.258212e+10
## 11351 1.229277e+10
## 11352 1.040980e+10
## 11353 7.189482e+09
## 11354 4.583850e+09
## 11355 5.623216e+09
## 11356 4.235000e+09
## 11357 3.414056e+09
## 11358 2.523472e+09
## 11359 1.992067e+09
## 11360 1.595297e+09
## 11361 1.396556e+09
## 11362 1.267998e+09
## 11363 1.136896e+09
## 11364 1.057409e+09
## 11365 1.124440e+09
## 11366 1.180934e+09
## 11367 1.345719e+09
## 11368 1.452165e+09
## 11369 9.258171e+08
## 11370 7.684016e+08
## 11371 1.317612e+09
## 11372 2.379018e+09
## 11373 2.560786e+09
## 11374 3.576967e+09
## 11375 3.204462e+09
## 11376 3.020612e+09
## 11377 2.896179e+09
## 11378 2.186505e+09
## 11379 2.098735e+09
## 11380 2.725737e+09
## 11381 2.552402e+09
## 11382 2.310099e+09
## 11383           NA
## 11384           NA
## 11385           NA
## 11386           NA
## 11387           NA
## 11388           NA
## 11389           NA
## 11390           NA
## 11391           NA
## 11392           NA
## 11393           NA
## 11394           NA
## 11395           NA
## 11396           NA
## 11397           NA
## 11398           NA
## 11399           NA
## 11400           NA
## 11401           NA
## 11402           NA
## 11403           NA
## 11404           NA
## 11405 5.861268e+09
## 11406 4.769861e+09
## 11407 5.542054e+09
## 11408 5.506767e+09
## 11409 4.856632e+09
## 11410 4.377033e+09
## 11411 4.054712e+09
## 11412 4.594024e+09
## 11413 4.466039e+09
## 11414 4.087726e+09
## 11415 4.544517e+09
## 11416 4.143033e+09
## 11417 4.159330e+09
## 11418 4.545675e+09
## 11419 3.680712e+09
## 11420 2.721903e+09
## 11421 2.257174e+09
## 11422 2.073234e+09
## 11423 1.707710e+09
## 11424 1.284685e+09
## 11425 1.159869e+09
## 11426 9.842976e+08
## 11427           NA
## 11428           NA
## 11429           NA
## 11430           NA
## 11431           NA
## 11432           NA
## 11433           NA
## 11434           NA
## 11435           NA
## 11436           NA
## 11437           NA
## 11438           NA
## 11439           NA
## 11440           NA
## 11441           NA
## 11442           NA
## 11443           NA
## 11444           NA
## 11445           NA
## 11446           NA
## 11447           NA
## 11448           NA
## 11449           NA
## 11450           NA
## 11451           NA
## 11452           NA
## 11453           NA
## 11454           NA
## 11455           NA
## 11456           NA
## 11457           NA
## 11458           NA
## 11459           NA
## 11460           NA
## 11461           NA
## 11462           NA
## 11463           NA
## 11464           NA
## 11465           NA
## 11466           NA
## 11467           NA
## 11468 1.428663e+11
## 11469 1.213481e+11
## 11470 1.289199e+11
## 11471 1.273412e+11
## 11472 1.185405e+11
## 11473 1.115727e+11
## 11474 1.104144e+11
## 11475 1.191314e+11
## 11476 1.068256e+11
## 11477 9.826631e+10
## 11478 1.013705e+11
## 11479 9.321675e+10
## 11480 9.289732e+10
## 11481 9.250726e+10
## 11482 7.904129e+10
## 11483 6.864083e+10
## 11484 6.234302e+10
## 11485 5.962602e+10
## 11486 5.206406e+10
## 11487 4.223684e+10
## 11488 3.945958e+10
## 11489 3.885725e+10
## 11490 4.163203e+10
## 11491 4.180622e+10
## 11492 3.914784e+10
## 11493 4.316145e+10
## 11494 3.903029e+10
## 11495 3.560414e+10
## 11496 3.165547e+10
## 11497 3.371107e+10
## 11498 3.228539e+10
## 11499 3.018011e+10
## 11500 2.631422e+10
## 11501 2.570530e+10
## 11502 2.176526e+10
## 11503 1.946218e+10
## 11504 1.499128e+10
## 11505 1.482473e+10
## 11506 1.625146e+10
## 11507 1.769234e+10
## 11508 1.778817e+10
## 11509 2.172877e+10
## 11510 1.591213e+10
## 11511 1.323685e+10
## 11512 1.104990e+10
## 11513 9.584323e+09
## 11514 8.984824e+09
## 11515 7.675408e+09
## 11516 6.242178e+09
## 11517 5.074118e+09
## 11518 4.356634e+09
## 11519 3.956328e+09
## 11520 3.651615e+09
## 11521 3.271416e+09
## 11522 3.046339e+09
## 11523 2.876396e+09
## 11524 2.948325e+09
## 11525 2.798340e+09
## 11526 2.657247e+09
## 11527 2.379606e+09
## 11528 2.025690e+09
## 11529 2.037151e+09
## 11530           NA
## 11531 1.577676e+10
## 11532 1.402881e+10
## 11533 1.539004e+10
## 11534 1.484540e+10
## 11535 1.321908e+10
## 11536 1.193700e+10
## 11537 1.595097e+10
## 11538 1.771608e+10
## 11539 1.697432e+10
## 11540 1.635080e+10
## 11541 1.438155e+10
## 11542 1.110465e+10
## 11543 1.191447e+10
## 11544 1.255620e+10
## 11545 1.045084e+10
## 11546 9.176889e+09
## 11547 8.542070e+09
## 11548 7.631121e+09
## 11549 6.303391e+09
## 11550 5.677003e+09
## 11551 5.398569e+09
## 11552 5.656474e+09
## 11553 5.976408e+09
## 11554 5.263878e+09
## 11555 4.648832e+09
## 11556 3.856800e+09
## 11557 2.899923e+09
## 11558 2.796550e+09
## 11559 2.729551e+09
## 11560 2.639953e+09
## 11561 3.633406e+09
## 11562           NA
## 11563           NA
## 11564           NA
## 11565           NA
## 11566           NA
## 11567           NA
## 11568           NA
## 11569           NA
## 11570           NA
## 11571           NA
## 11572           NA
## 11573           NA
## 11574           NA
## 11575           NA
## 11576           NA
## 11577           NA
## 11578           NA
## 11579           NA
## 11580           NA
## 11581           NA
## 11582           NA
## 11583           NA
## 11584           NA
## 11585           NA
## 11586           NA
## 11587           NA
## 11588           NA
## 11589           NA
## 11590           NA
## 11591           NA
## 11592           NA
## 11593           NA
## 11594 6.509175e+10
## 11595 7.893026e+10
## 11596 6.869776e+10
## 11597 6.714473e+10
## 11598 6.144939e+10
## 11599 6.029174e+10
## 11600 6.304531e+10
## 11601 6.326489e+10
## 11602 6.057226e+10
## 11603 5.831868e+10
## 11604 5.411860e+10
## 11605 3.779605e+10
## 11606 2.945517e+10
## 11607 2.301302e+10
## 11608 1.559118e+10
## 11609 1.186302e+10
## 11610 1.058843e+10
## 11611 9.390855e+09
## 11612 7.754647e+09
## 11613 6.110633e+09
## 11614 6.220271e+09
## 11615 6.849322e+09
## 11616 5.643819e+09
## 11617 4.613071e+09
## 11618 5.633071e+09
## 11619 5.759625e+09
## 11620 4.879258e+09
## 11621 3.821536e+09
## 11622 2.809748e+09
## 11623 2.216073e+09
## 11624 2.137185e+09
## 11625 2.036374e+09
## 11626 1.674823e+09
## 11627 1.392548e+09
## 11628 1.448004e+09
## 11629 1.590097e+09
## 11630 1.310837e+09
## 11631 1.354699e+09
## 11632 1.427210e+09
## 11633 1.302702e+09
## 11634 1.064868e+09
## 11635 1.010597e+09
## 11636 9.195252e+08
## 11637 9.169147e+08
## 11638 1.000351e+09
## 11639 1.155596e+09
## 11640 1.128485e+09
## 11641 1.000558e+09
## 11642 6.670388e+08
## 11643 6.345251e+08
## 11644 5.593784e+08
## 11645 5.789926e+08
## 11646 5.513792e+08
## 11647 5.311864e+08
## 11648 3.281824e+08
## 11649 3.178162e+08
## 11650 4.026194e+08
## 11651 4.751974e+08
## 11652 6.599767e+08
## 11653 6.125173e+08
## 11654 5.843514e+08
## 11655           NA
## 11656           NA
## 11657 1.231060e+10
## 11658 1.058159e+10
## 11659 1.254193e+10
## 11660 1.368206e+10
## 11661 1.289515e+10
## 11662 1.072199e+10
## 11663 1.133518e+10
## 11664 1.243542e+10
## 11665 1.204328e+10
## 11666 1.304201e+10
## 11667 1.252340e+10
## 11668 1.143133e+10
## 11669 8.938868e+09
## 11670 8.607475e+09
## 11671 8.839526e+09
## 11672 8.001780e+09
## 11673 7.248394e+09
## 11674 6.609199e+09
## 11675 4.926471e+09
## 11676 3.349185e+09
## 11677 3.557333e+09
## 11678 3.922248e+09
## 11679 3.868542e+09
## 11680 3.873099e+09
## 11681 4.154956e+09
## 11682 3.989209e+09
## 11683 3.978498e+09
## 11684 3.666501e+09
## 11685 3.251231e+09
## 11686 3.429539e+09
## 11687 2.996886e+09
## 11688 2.789944e+09
## 11689 2.535114e+09
## 11690 2.495060e+09
## 11691 2.300105e+09
## 11692 1.809074e+09
## 11693 1.608219e+09
## 11694 1.951230e+09
## 11695 2.297401e+09
## 11696 2.118741e+09
## 11697 2.249855e+09
## 11698 2.422096e+09
## 11699           NA
## 11700           NA
## 11701           NA
## 11702           NA
## 11703           NA
## 11704           NA
## 11705           NA
## 11706           NA
## 11707           NA
## 11708           NA
## 11709           NA
## 11710           NA
## 11711           NA
## 11712           NA
## 11713           NA
## 11714           NA
## 11715           NA
## 11716           NA
## 11717           NA
## 11718           NA
## 11719           NA
## 11720 1.332189e+08
## 11721 1.146266e+08
## 11722 1.187241e+08
## 11723 1.240214e+08
## 11724 1.093597e+08
## 11725 9.972339e+07
## 11726 8.652966e+07
## 11727 1.046544e+08
## 11728 9.849184e+07
## 11729 9.692720e+07
## 11730 6.605541e+07
## 11731 4.756452e+07
## 11732           NA
## 11733           NA
## 11734           NA
## 11735           NA
## 11736           NA
## 11737           NA
## 11738           NA
## 11739           NA
## 11740           NA
## 11741           NA
## 11742           NA
## 11743           NA
## 11744           NA
## 11745           NA
## 11746           NA
## 11747           NA
## 11748           NA
## 11749           NA
## 11750           NA
## 11751           NA
## 11752           NA
## 11753           NA
## 11754           NA
## 11755           NA
## 11756           NA
## 11757           NA
## 11758           NA
## 11759           NA
## 11760           NA
## 11761           NA
## 11762           NA
## 11763           NA
## 11764           NA
## 11765           NA
## 11766           NA
## 11767           NA
## 11768           NA
## 11769           NA
## 11770           NA
## 11771           NA
## 11772           NA
## 11773           NA
## 11774           NA
## 11775           NA
## 11776           NA
## 11777           NA
## 11778           NA
## 11779           NA
## 11780           NA
## 11781           NA
## 11782           NA
## 11783 3.628883e+10
## 11784 3.343367e+10
## 11785 3.418619e+10
## 11786 3.311153e+10
## 11787 2.897159e+10
## 11788 2.452410e+10
## 11789 2.436080e+10
## 11790 2.273160e+10
## 11791 2.216221e+10
## 11792 2.170311e+10
## 11793 2.157386e+10
## 11794 1.600266e+10
## 11795 1.285499e+10
## 11796 1.254544e+10
## 11797 1.032562e+10
## 11798 9.043715e+09
## 11799 8.130258e+09
## 11800 7.273938e+09
## 11801 6.330473e+09
## 11802 6.050876e+09
## 11803 6.007055e+09
## 11804 5.494252e+09
## 11805 5.033642e+09
## 11806 4.856255e+09
## 11807 4.918692e+09
## 11808 4.521580e+09
## 11809 4.401104e+09
## 11810 4.066776e+09
## 11811 3.660042e+09
## 11812 3.401212e+09
## 11813 3.921476e+09
## 11814 3.627562e+09
## 11815 3.525228e+09
## 11816 3.487010e+09
## 11817 2.957255e+09
## 11818 2.850785e+09
## 11819 2.619914e+09
## 11820 2.581207e+09
## 11821 2.447175e+09
## 11822 2.395430e+09
## 11823 2.275583e+09
## 11824 1.945917e+09
## 11825 1.851250e+09
## 11826 1.604162e+09
## 11827 1.382400e+09
## 11828 1.452793e+09
## 11829 1.575789e+09
## 11830 1.217954e+09
## 11831 9.721017e+08
## 11832 1.024099e+09
## 11833 8.827655e+08
## 11834 8.659753e+08
## 11835 7.886420e+08
## 11836 7.722286e+08
## 11837 8.419740e+08
## 11838 9.068119e+08
## 11839 7.352671e+08
## 11840 4.960988e+08
## 11841 4.969479e+08
## 11842 5.740911e+08
## 11843 5.319596e+08
## 11844 5.083344e+08
## 11845           NA
## 11846 1.012847e+12
## 11847 9.097935e+11
## 11848 9.101943e+11
## 11849 9.140434e+11
## 11850 8.338696e+11
## 11851 7.840604e+11
## 11852 7.655728e+11
## 11853 8.921680e+11
## 11854 8.771728e+11
## 11855 8.389233e+11
## 11856 9.052706e+11
## 11857 8.473809e+11
## 11858 8.715186e+11
## 11859 9.518700e+11
## 11860 8.485589e+11
## 11861 7.339553e+11
## 11862 6.853482e+11
## 11863 6.583801e+11
## 11864 5.800704e+11
## 11865 4.738620e+11
## 11866 4.315869e+11
## 11867 4.174793e+11
## 11868 4.470495e+11
## 11869 4.380082e+11
## 11870 4.168127e+11
## 11871 4.504902e+11
## 11872 4.523017e+11
## 11873 3.791303e+11
## 11874 3.535502e+11
## 11875 3.629629e+11
## 11876 3.275003e+11
## 11877 3.183305e+11
## 11878 2.583367e+11
## 11879 2.619105e+11
## 11880 2.450463e+11
## 11881 2.008621e+11
## 11882 1.438458e+11
## 11883 1.439127e+11
## 11884 1.534455e+11
## 11885 1.584795e+11
## 11886 1.641342e+11
## 11887 1.951521e+11
## 11888 1.796694e+11
## 11889 1.558597e+11
## 11890 1.270170e+11
## 11891 1.091687e+11
## 11892 1.002495e+11
## 11893 8.724341e+10
## 11894 7.184091e+10
## 11895 5.470656e+10
## 11896 4.457912e+10
## 11897 3.816472e+10
## 11898 3.403595e+10
## 11899 2.781761e+10
## 11900 2.508756e+10
## 11901 2.286720e+10
## 11902 2.100059e+10
## 11903 1.869938e+10
## 11904 1.589124e+10
## 11905 1.464706e+10
## 11906 1.349383e+10
## 11907 1.227673e+10
## 11908           NA
## 11909 1.007135e+10
## 11910 9.435530e+09
## 11911 9.438131e+09
## 11912 9.846922e+09
## 11913 9.173668e+09
## 11914 8.724570e+09
## 11915 8.738206e+09
## 11916 1.063504e+10
## 11917 1.015139e+10
## 11918 9.659153e+09
## 11919 1.035144e+10
## 11920 9.364347e+09
## 11921 8.704436e+09
## 11922 9.067623e+09
## 11923 8.819922e+09
## 11924 6.979153e+09
## 11925 6.238632e+09
## 11926 5.895011e+09
## 11927 4.915356e+09
## 11928 3.740057e+09
## 11929 3.297735e+09
## 11930 3.420033e+09
## 11931 3.647803e+09
## 11932 3.556305e+09
## 11933 3.291130e+09
## 11934 3.606969e+09
## 11935 3.628442e+09
## 11936 3.038728e+09
## 11937 2.822244e+09
## 11938 2.923883e+09
## 11939 2.653782e+09
## 11940 2.529440e+09
## 11941 2.185083e+09
## 11942 2.072776e+09
## 11943 1.488093e+09
## 11944 1.201322e+09
## 11945 8.548209e+08
## 11946 7.960662e+08
## 11947 8.238579e+08
## 11948 9.045999e+08
## 11949 9.725642e+08
## 11950 1.182464e+09
## 11951 1.047226e+09
## 11952 8.460047e+08
## 11953 8.376201e+08
## 11954 7.983135e+08
## 11955 8.166522e+08
## 11956 6.374035e+08
## 11957 5.422934e+08
## 11958 5.068090e+08
## 11959 4.139858e+08
## 11960 3.588157e+08
## 11961 2.631088e+08
## 11962 2.155072e+08
## 11963 1.800368e+08
## 11964 1.642065e+08
## 11965 1.595945e+08
## 11966           NA
## 11967           NA
## 11968           NA
## 11969           NA
## 11970           NA
## 11971           NA
## 11972 2.498857e+11
## 11973 2.117345e+11
## 11974 2.134346e+11
## 11975 2.119531e+11
## 11976 2.066238e+11
## 11977 1.888383e+11
## 11978 1.780645e+11
## 11979 2.013135e+11
## 11980 1.909066e+11
## 11981 1.762067e+11
## 11982 1.682914e+11
## 11983 1.465175e+11
## 11984 1.213736e+11
## 11985 1.331314e+11
## 11986 1.371889e+11
## 11987 1.115388e+11
## 11988 1.147201e+11
## 11989 1.039052e+11
## 11990 8.825089e+10
## 11991 6.662773e+10
## 11992 5.387243e+10
## 11993 5.262328e+10
## 11994 5.876226e+10
## 11995 5.622717e+10
## 11996 6.607514e+10
## 11997 7.014084e+10
## 11998 6.391870e+10
## 11999 5.531473e+10
## 12000 4.677562e+10
## 12001 4.164983e+10
## 12002 4.274533e+10
## 12003 4.549513e+10
## 12004 4.392022e+10
## 12005 4.517681e+10
## 12006 4.037635e+10
## 12007 3.060467e+10
## 12008 2.467980e+10
## 12009 2.166598e+10
## 12010 2.430928e+10
## 12011 2.416460e+10
## 12012 2.441762e+10
## 12013 2.324455e+10
## 12014 2.073124e+10
## 12015 1.853052e+10
## 12016 1.544683e+10
## 12017 1.360483e+10
## 12018 1.286198e+10
## 12019 1.394098e+10
## 12020 1.280228e+10
## 12021 9.567331e+09
## 12022 7.911137e+09
## 12023           NA
## 12024 5.761589e+09
## 12025 5.180598e+09
## 12026 5.961418e+09
## 12027 5.863733e+09
## 12028 5.654464e+09
## 12029 7.274144e+09
## 12030 6.638937e+09
## 12031 6.077496e+09
## 12032 5.670064e+09
## 12033 5.485855e+09
## 12034           NA
## 12035 1.401302e+10
## 12036 1.258697e+10
## 12037 1.259664e+10
## 12038 1.302524e+10
## 12039 1.378591e+10
## 12040 1.328608e+10
## 12041 1.275671e+10
## 12042 1.188043e+10
## 12043 1.098298e+10
## 12044 1.053201e+10
## 12045 9.774307e+09
## 12046 8.758639e+09
## 12047 8.298680e+09
## 12048 8.496947e+09
## 12049 7.423314e+09
## 12050 6.763362e+09
## 12051 6.321336e+09
## 12052 5.795568e+09
## 12053 5.322455e+09
## 12054 5.224213e+09
## 12055 5.323147e+09
## 12056 5.107329e+09
## 12057 4.855718e+09
## 12058 4.635267e+09
## 12059 4.389966e+09
## 12060 4.308352e+09
## 12061 4.140470e+09
## 12062 3.863185e+09
## 12063 1.756454e+09
## 12064 1.792800e+09
## 12065 1.488804e+09
## 12066 1.009455e+09
## 12067 1.013185e+09
## 12068 2.631097e+09
## 12069 3.851214e+09
## 12070 2.885711e+09
## 12071 2.683816e+09
## 12072 3.105517e+09
## 12073 2.743342e+09
## 12074 2.465165e+09
## 12075 2.448290e+09
## 12076 2.189347e+09
## 12077 1.527853e+09
## 12078 2.142129e+09
## 12079 2.239857e+09
## 12080 1.847871e+09
## 12081 1.590429e+09
## 12082 1.520900e+09
## 12083 1.093571e+09
## 12084 8.808429e+08
## 12085 8.265714e+08
## 12086 7.765857e+08
## 12087 7.479714e+08
## 12088 6.959000e+08
## 12089 6.571714e+08
## 12090 6.066714e+08
## 12091 5.665429e+08
## 12092 3.419738e+08
## 12093 2.929162e+08
## 12094 2.652916e+08
## 12095 2.405247e+08
## 12096 2.238547e+08
## 12097           NA
## 12098 1.491500e+10
## 12099 1.374417e+10
## 12100 1.291646e+10
## 12101 1.280866e+10
## 12102 1.118510e+10
## 12103 1.039886e+10
## 12104 9.683868e+09
## 12105 1.086294e+10
## 12106 1.022490e+10
## 12107 9.426913e+09
## 12108 8.772951e+09
## 12109 7.851192e+09
## 12110 7.352132e+09
## 12111 7.297601e+09
## 12112 5.731485e+09
## 12113 4.756361e+09
## 12114 4.383316e+09
## 12115 3.760444e+09
## 12116 3.394085e+09
## 12117 2.782193e+09
## 12118 2.448715e+09
## 12119 2.241753e+09
## 12120 2.537790e+09
## 12121 2.643363e+09
## 12122 2.290319e+09
## 12123 2.405687e+09
## 12124 2.302538e+09
## 12125 1.938058e+09
## 12126 3.052674e+09
## 12127 3.386233e+09
## 12128 3.285797e+09
## 12129 3.512356e+09
## 12130 2.179567e+09
## 12131 2.280356e+09
## 12132 2.233006e+09
## 12133 1.904097e+09
## 12134 1.440582e+09
## 12135 1.461243e+09
## 12136 1.803100e+09
## 12137 2.017612e+09
## 12138 2.170893e+09
## 12139 2.508524e+09
## 12140 2.109278e+09
## 12141 1.774365e+09
## 12142 1.291458e+09
## 12143 1.064518e+09
## 12144 1.048691e+09
## 12145 1.026137e+09
## 12146 9.463850e+08
## 12147 7.427797e+08
## 12148 6.935736e+08
## 12149 6.499167e+08
## 12150 6.258679e+08
## 12151 6.412142e+08
## 12152 6.655870e+08
## 12153 7.022962e+08
## 12154 6.733836e+08
## 12155 5.828164e+08
## 12156 5.862948e+08
## 12157 5.317365e+08
## 12158 4.857852e+08
## 12159 4.495269e+08
## 12160           NA
## 12161 4.408336e+11
## 12162 4.321989e+11
## 12163 4.481200e+11
## 12164 4.217392e+11
## 12165 3.757457e+11
## 12166 4.046490e+11
## 12167 4.930268e+11
## 12168 5.741838e+11
## 12169 5.201172e+11
## 12170 4.639710e+11
## 12171 4.144665e+11
## 12172 3.669905e+11
## 12173 2.950088e+11
## 12174 3.394762e+11
## 12175 2.782608e+11
## 12176 2.384550e+11
## 12177 1.756705e+11
## 12178 1.357647e+11
## 12179 1.047390e+11
## 12180 9.505409e+10
## 12181 7.279728e+10
## 12182 6.944876e+10
## 12183 5.937261e+10
## 12184 5.460405e+10
## 12185 5.445784e+10
## 12186 5.107582e+10
## 12187 4.406247e+10
## 12188 3.383304e+10
## 12189 2.775220e+10
## 12190 4.779493e+10
## 12191 4.911843e+10
## 12192 5.403580e+10
## 12193 4.400306e+10
## 12194 4.964847e+10
## 12195 5.267604e+10
## 12196 5.480585e+10
## 12197 7.374582e+10
## 12198 7.348436e+10
## 12199 9.709491e+10
## 12200 1.427694e+11
## 12201 1.644752e+11
## 12202 6.420179e+10
## 12203 4.725991e+10
## 12204 3.652786e+10
## 12205 3.603541e+10
## 12206 3.630888e+10
## 12207 2.777893e+10
## 12208 2.484664e+10
## 12209 1.516287e+10
## 12210 1.227442e+10
## 12211 9.181770e+09
## 12212 1.254585e+10
## 12213 6.634187e+09
## 12214 5.200896e+09
## 12215 5.203136e+09
## 12216 6.366793e+09
## 12217 5.874423e+09
## 12218 5.552822e+09
## 12219 5.165489e+09
## 12220 4.909303e+09
## 12221 4.467200e+09
## 12222 4.196092e+09
## 12223           NA
## 12224 1.382505e+10
## 12225 1.236358e+10
## 12226 1.260634e+10
## 12227 1.268307e+10
## 12228 1.130706e+10
## 12229 1.067247e+10
## 12230 1.006452e+10
## 12231 1.136227e+10
## 12232 1.081771e+10
## 12233 9.745251e+09
## 12234 1.049463e+10
## 12235 9.407169e+09
## 12236 9.401731e+09
## 12237 9.909548e+09
## 12238 8.336478e+09
## 12239 6.861222e+09
## 12240 6.258601e+09
## 12241 5.682788e+09
## 12242 4.946293e+09
## 12243 4.018365e+09
## 12244 3.709638e+09
## 12245 3.772857e+09
## 12246 3.863621e+09
## 12247 3.765747e+09
## 12248 3.912986e+09
## 12249 4.642018e+09
## 12250 4.707036e+09
## 12251 3.559607e+09
## 12252 2.682457e+09
## 12253 2.436849e+09
## 12254 4.938776e+09
## 12255 4.699647e+09
## 12256           NA
## 12257           NA
## 12258           NA
## 12259           NA
## 12260           NA
## 12261           NA
## 12262           NA
## 12263           NA
## 12264           NA
## 12265           NA
## 12266           NA
## 12267           NA
## 12268           NA
## 12269           NA
## 12270           NA
## 12271           NA
## 12272           NA
## 12273           NA
## 12274           NA
## 12275           NA
## 12276           NA
## 12277           NA
## 12278           NA
## 12279           NA
## 12280           NA
## 12281           NA
## 12282           NA
## 12283           NA
## 12284           NA
## 12285           NA
## 12286           NA
## 12287           NA
## 12288           NA
## 12289 1.182000e+09
## 12290 1.302000e+09
## 12291 1.560000e+09
## 12292 1.230000e+09
## 12293 9.100000e+08
## 12294 8.320000e+08
## 12295 7.720000e+08
## 12296 7.460000e+08
## 12297 7.290000e+08
## 12298 7.990000e+08
## 12299 7.950000e+08
## 12300 9.390000e+08
## 12301 9.380000e+08
## 12302 9.900000e+08
## 12303 1.061000e+09
## 12304 1.210000e+09
## 12305 1.239000e+09
## 12306 1.284000e+09
## 12307           NA
## 12308           NA
## 12309           NA
## 12310           NA
## 12311           NA
## 12312           NA
## 12313           NA
## 12314           NA
## 12315           NA
## 12316           NA
## 12317           NA
## 12318           NA
## 12319           NA
## 12320           NA
## 12321           NA
## 12322           NA
## 12323           NA
## 12324           NA
## 12325           NA
## 12326           NA
## 12327           NA
## 12328           NA
## 12329           NA
## 12330           NA
## 12331           NA
## 12332           NA
## 12333           NA
## 12334           NA
## 12335           NA
## 12336           NA
## 12337           NA
## 12338           NA
## 12339           NA
## 12340           NA
## 12341           NA
## 12342           NA
## 12343           NA
## 12344           NA
## 12345           NA
## 12346           NA
## 12347           NA
## 12348           NA
## 12349           NA
## 12350 4.821749e+11
## 12351 3.621983e+11
## 12352 4.049414e+11
## 12353 4.369997e+11
## 12354 3.983940e+11
## 12355 3.688271e+11
## 12356 3.858016e+11
## 12357 4.984101e+11
## 12358 5.227615e+11
## 12359 5.095063e+11
## 12360 4.982834e+11
## 12361 4.287570e+11
## 12362 3.861904e+11
## 12363 4.622500e+11
## 12364 4.009371e+11
## 12365 3.455814e+11
## 12366 3.088843e+11
## 12367 2.645116e+11
## 12368 2.288585e+11
## 12369 1.955242e+11
## 12370 1.739722e+11
## 12371 1.712471e+11
## 12372 1.622845e+11
## 12373 1.541634e+11
## 12374 1.613566e+11
## 12375 1.635201e+11
## 12376 1.520296e+11
## 12377 1.271315e+11
## 12378 1.205791e+11
## 12379 1.308380e+11
## 12380 1.218725e+11
## 12381 1.197917e+11
## 12382 1.026338e+11
## 12383 1.019003e+11
## 12384 9.423006e+10
## 12385 7.869325e+10
## 12386 6.541688e+10
## 12387 6.205796e+10
## 12388 6.162724e+10
## 12389 6.264720e+10
## 12390 6.359665e+10
## 12391 6.443938e+10
## 12392 5.313224e+10
## 12393 4.652309e+10
## 12394 4.150803e+10
## 12395 3.594227e+10
## 12396 3.287781e+10
## 12397 2.714569e+10
## 12398 2.253425e+10
## 12399 1.735861e+10
## 12400 1.458311e+10
## 12401 1.281412e+10
## 12402 1.106307e+10
## 12403 1.015993e+10
## 12404 9.514497e+09
## 12405 8.696460e+09
## 12406 8.058681e+09
## 12407 7.159203e+09
## 12408 6.510240e+09
## 12409 6.066977e+09
## 12410 5.632461e+09
## 12411 5.163272e+09
## 12412           NA
## 12413 8.819198e+10
## 12414 7.590940e+10
## 12415 8.806086e+10
## 12416 9.150585e+10
## 12417 8.085670e+10
## 12418 7.512874e+10
## 12419 7.871079e+10
## 12420 9.269909e+10
## 12421 8.993602e+10
## 12422 8.740884e+10
## 12423 7.749753e+10
## 12424 6.499350e+10
## 12425 4.838836e+10
## 12426 6.090545e+10
## 12427 4.208538e+10
## 12428 3.721578e+10
## 12429 3.108199e+10
## 12430 2.476371e+10
## 12431 2.163371e+10
## 12432 2.014276e+10
## 12433 1.945200e+10
## 12434 1.950745e+10
## 12435 1.559346e+10
## 12436 1.399691e+10
## 12437 1.583745e+10
## 12438 1.527776e+10
## 12439 1.380260e+10
## 12440 1.291886e+10
## 12441 1.249311e+10
## 12442 1.245228e+10
## 12443 1.134148e+10
## 12444 1.168505e+10
## 12445 9.372172e+09
## 12446 8.386216e+09
## 12447 7.811183e+09
## 12448 7.323822e+09
## 12449 1.000550e+10
## 12450 8.821367e+09
## 12451 7.932542e+09
## 12452 7.554719e+09
## 12453 7.259120e+09
## 12454 5.981760e+09
## 12455 3.733353e+09
## 12456 2.740301e+09
## 12457 2.741170e+09
## 12458 2.560220e+09
## 12459 2.096699e+09
## 12460 1.645918e+09
## 12461 4.830339e+08
## 12462 3.668577e+08
## 12463 3.010106e+08
## 12464 2.562995e+08
## 12465 2.399808e+08
## 12466 1.888649e+08
## 12467 1.071527e+08
## 12468 6.776813e+07
## 12469 6.328759e+07
## 12470           NA
## 12471           NA
## 12472           NA
## 12473           NA
## 12474           NA
## 12475           NA
## 12476 3.482625e+11
## 12477 3.004257e+11
## 12478 3.209095e+11
## 12479 3.561282e+11
## 12480 3.392056e+11
## 12481 3.136299e+11
## 12482 2.705561e+11
## 12483 2.443609e+11
## 12484 2.312186e+11
## 12485 2.243836e+11
## 12486 2.135874e+11
## 12487 1.771656e+11
## 12488 1.681528e+11
## 12489 1.700778e+11
## 12490 1.523857e+11
## 12491 1.372641e+11
## 12492 1.200553e+11
## 12493 1.077597e+11
## 12494 9.176054e+10
## 12495 7.990499e+10
## 12496 7.948440e+10
## 12497 8.201774e+10
## 12498 6.297386e+10
## 12499 6.219196e+10
## 12500 6.243330e+10
## 12501 6.332012e+10
## 12502 6.063602e+10
## 12503 5.229346e+10
## 12504 5.180995e+10
## 12505 4.888461e+10
## 12506 4.562523e+10
## 12507 4.001042e+10
## 12508 4.017102e+10
## 12509 3.847274e+10
## 12510 3.335153e+10
## 12511 3.189907e+10
## 12512 3.114492e+10
## 12513 3.115183e+10
## 12514 2.869189e+10
## 12515 3.072597e+10
## 12516 2.810061e+10
## 12517 2.365444e+10
## 12518 1.968838e+10
## 12519 1.781152e+10
## 12520 1.512606e+10
## 12521 1.316808e+10
## 12522 1.123061e+10
## 12523 8.899192e+09
## 12524 6.383429e+09
## 12525 9.415016e+09
## 12526 1.066590e+10
## 12527 1.002751e+10
## 12528 8.683116e+09
## 12529 8.041999e+09
## 12530 7.464511e+09
## 12531 6.561109e+09
## 12532 5.929231e+09
## 12533 5.204956e+09
## 12534 4.630827e+09
## 12535 4.310164e+09
## 12536 4.118648e+09
## 12537 3.749265e+09
## 12538           NA
## 12539 2.178000e+08
## 12540 2.519000e+08
## 12541 2.789000e+08
## 12542 2.849000e+08
## 12543 2.856000e+08
## 12544 2.983000e+08
## 12545 2.804577e+08
## 12546 2.416698e+08
## 12547 2.211172e+08
## 12548 2.123978e+08
## 12549 1.969111e+08
## 12550 1.859430e+08
## 12551 1.875228e+08
## 12552 1.982839e+08
## 12553 1.988977e+08
## 12554 1.923824e+08
## 12555 1.904529e+08
## 12556 1.651862e+08
## 12557 1.539632e+08
## 12558 1.631849e+08
## 12559 1.569079e+08
## 12560 1.462975e+08
## 12561           NA
## 12562           NA
## 12563           NA
## 12564           NA
## 12565           NA
## 12566           NA
## 12567           NA
## 12568           NA
## 12569           NA
## 12570           NA
## 12571           NA
## 12572           NA
## 12573           NA
## 12574           NA
## 12575           NA
## 12576           NA
## 12577           NA
## 12578           NA
## 12579           NA
## 12580           NA
## 12581           NA
## 12582           NA
## 12583           NA
## 12584           NA
## 12585           NA
## 12586           NA
## 12587           NA
## 12588           NA
## 12589           NA
## 12590           NA
## 12591           NA
## 12592           NA
## 12593           NA
## 12594           NA
## 12595           NA
## 12596           NA
## 12597           NA
## 12598           NA
## 12599           NA
## 12600           NA
## 12601           NA
## 12602 6.360510e+10
## 12603 5.397700e+10
## 12604 6.698440e+10
## 12605 6.492940e+10
## 12606 6.220270e+10
## 12607 5.790770e+10
## 12608 5.409180e+10
## 12609 4.992140e+10
## 12610 4.559990e+10
## 12611 4.042970e+10
## 12612 3.468622e+10
## 12613 2.944029e+10
## 12614 2.711664e+10
## 12615 2.515589e+10
## 12616 2.129598e+10
## 12617 1.814167e+10
## 12618 1.637439e+10
## 12619 1.501338e+10
## 12620 1.369398e+10
## 12621 1.299431e+10
## 12622 1.250201e+10
## 12623 1.230412e+10
## 12624 1.213025e+10
## 12625 1.157549e+10
## 12626 1.067729e+10
## 12627 9.870494e+09
## 12628 9.573814e+09
## 12629 9.365290e+09
## 12630 8.782585e+09
## 12631 8.042338e+09
## 12632 7.074676e+09
## 12633 6.433967e+09
## 12634 5.918470e+09
## 12635 5.902783e+09
## 12636 6.827665e+09
## 12637 6.797834e+09
## 12638 6.541517e+09
## 12639 6.183387e+09
## 12640 5.923756e+09
## 12641 5.769768e+09
## 12642 5.222422e+09
## 12643 4.614086e+09
## 12644 3.704552e+09
## 12645 3.244559e+09
## 12646 2.738262e+09
## 12647 2.588106e+09
## 12648 2.435304e+09
## 12649 2.188308e+09
## 12650 1.913793e+09
## 12651 1.673412e+09
## 12652 1.523917e+09
## 12653 1.351006e+09
## 12654 1.221306e+09
## 12655 1.112791e+09
## 12656 1.034376e+09
## 12657 9.288330e+08
## 12658 8.524853e+08
## 12659 7.761375e+08
## 12660 7.227845e+08
## 12661 6.521209e+08
## 12662 5.990263e+08
## 12663 5.371471e+08
## 12664           NA
## 12665 2.659431e+10
## 12666 2.384827e+10
## 12667 2.475134e+10
## 12668 2.410951e+10
## 12669 2.274261e+10
## 12670 2.075907e+10
## 12671 2.172353e+10
## 12672 2.321068e+10
## 12673 2.126143e+10
## 12674 2.129566e+10
## 12675 1.798491e+10
## 12676 1.425076e+10
## 12677 1.161964e+10
## 12678 1.167084e+10
## 12679 9.545177e+09
## 12680 8.355007e+09
## 12681 4.865893e+09
## 12682 3.927158e+09
## 12683 3.536412e+09
## 12684 2.999511e+09
## 12685 3.081024e+09
## 12686 3.521340e+09
## 12687 3.477038e+09
## 12688 3.789443e+09
## 12689 4.936615e+09
## 12690 5.155311e+09
## 12691 4.636057e+09
## 12692 5.502786e+09
## 12693 4.974550e+09
## 12694 4.377981e+09
## 12695 3.787395e+09
## 12696 3.219730e+09
## 12697 3.546460e+09
## 12698 3.655980e+09
## 12699 3.143848e+09
## 12700 2.648034e+09
## 12701 2.423373e+09
## 12702 2.552526e+09
## 12703 2.562493e+09
## 12704 2.368585e+09
## 12705 2.498068e+09
## 12706 2.545983e+09
## 12707 2.293622e+09
## 12708 1.947948e+09
## 12709 1.640763e+09
## 12710 1.511857e+09
## 12711 1.356591e+09
## 12712 1.467346e+09
## 12713 1.299105e+09
## 12714 8.588020e+08
## 12715 7.177161e+08
## 12716 6.455371e+08
## 12717 5.512373e+08
## 12718 4.851608e+08
## 12719 4.417069e+08
## 12720 3.909732e+08
## 12721 3.441595e+08
## 12722 3.053120e+08
## 12723 2.759680e+08
## 12724 2.611840e+08
## 12725 2.448320e+08
## 12726 2.304960e+08
## 12727           NA
## 12728 3.949543e+10
## 12729 3.543218e+10
## 12730 3.792534e+10
## 12731 4.022545e+10
## 12732 3.899713e+10
## 12733 3.608970e+10
## 12734 3.621145e+10
## 12735 4.037793e+10
## 12736 3.850112e+10
## 12737 3.327192e+10
## 12738 3.375624e+10
## 12739 2.726089e+10
## 12740 2.235515e+10
## 12741 2.461527e+10
## 12742 1.785639e+10
## 12743 1.342943e+10
## 12744 1.073750e+10
## 12745 9.624441e+09
## 12746 7.691367e+09
## 12747 7.196261e+09
## 12748 8.495806e+09
## 12749 8.855705e+09
## 12750 8.837070e+09
## 12751 9.260482e+09
## 12752 9.965226e+09
## 12753 9.788392e+09
## 12754 9.062131e+09
## 12755 7.870982e+09
## 12756 7.249534e+09
## 12757 7.157424e+09
## 12758 6.984368e+09
## 12759 5.812115e+09
## 12760 4.757732e+09
## 12761 4.255684e+09
## 12762 3.971045e+09
## 12763 3.723994e+09
## 12764 3.282449e+09
## 12765 4.502463e+09
## 12766 5.673249e+09
## 12767 5.419412e+09
## 12768 5.624516e+09
## 12769 4.448087e+09
## 12770 3.416778e+09
## 12771 2.559857e+09
## 12772 2.092159e+09
## 12773 1.698960e+09
## 12774 1.511421e+09
## 12775 1.333475e+09
## 12776 9.955317e+08
## 12777 7.690397e+08
## 12778 6.645714e+08
## 12779 5.946111e+08
## 12780 5.562937e+08
## 12781 5.176508e+08
## 12782 4.926746e+08
## 12783 4.658889e+08
## 12784 4.435873e+08
## 12785           NA
## 12786           NA
## 12787           NA
## 12788           NA
## 12789           NA
## 12790           NA
## 12791 2.232495e+11
## 12792 2.017051e+11
## 12793 2.283235e+11
## 12794 2.225972e+11
## 12795 2.110072e+11
## 12796 1.918959e+11
## 12797 1.898053e+11
## 12798 2.007894e+11
## 12799 2.011755e+11
## 12800 1.926490e+11
## 12801 1.717617e+11
## 12802 1.475289e+11
## 12803 1.208230e+11
## 12804 1.205506e+11
## 12805 1.021710e+11
## 12806 8.864319e+10
## 12807 7.606061e+10
## 12808 6.676870e+10
## 12809 5.873103e+10
## 12810 5.477755e+10
## 12811 5.203016e+10
## 12812 5.174475e+10
## 12813 5.018732e+10
## 12814 5.550147e+10
## 12815 5.814752e+10
## 12816 5.525241e+10
## 12817 5.331279e+10
## 12818 4.488208e+10
## 12819 3.483208e+10
## 12820 3.596630e+10
## 12821 3.434147e+10
## 12822 2.641039e+10
## 12823 2.249956e+10
## 12824 1.543941e+10
## 12825 2.070230e+10
## 12826 1.524423e+10
## 12827 1.654883e+10
## 12828 1.758444e+10
## 12829 1.733073e+10
## 12830 2.178101e+10
## 12831 2.166453e+10
## 12832 1.812775e+10
## 12833 1.593408e+10
## 12834 1.251981e+10
## 12835 1.462039e+10
## 12836 1.594771e+10
## 12837 1.687716e+10
## 12838 1.385844e+10
## 12839 1.099438e+10
## 12840 9.189413e+09
## 12841 8.289583e+09
## 12842 7.432223e+09
## 12843 6.420910e+09
## 12844 5.736084e+09
## 12845 6.204254e+09
## 12846 6.113608e+09
## 12847 5.166861e+09
## 12848 4.356914e+09
## 12849 3.600958e+09
## 12850 3.286773e+09
## 12851 2.899655e+09
## 12852 2.571908e+09
## 12853           NA
## 12854 3.940864e+11
## 12855 3.617511e+11
## 12856 3.768233e+11
## 12857 3.468421e+11
## 12858 3.284809e+11
## 12859 3.186268e+11
## 12860 3.064461e+11
## 12861 2.974832e+11
## 12862 2.839027e+11
## 12863 2.619205e+11
## 12864 2.342169e+11
## 12865 2.083687e+11
## 12866 1.759747e+11
## 12867 1.816246e+11
## 12868 1.559804e+11
## 12869 1.276529e+11
## 12870 1.074200e+11
## 12871 9.500203e+10
## 12872 8.703915e+10
## 12873 8.430729e+10
## 12874 7.892123e+10
## 12875 8.366969e+10
## 12876 8.564013e+10
## 12877 7.449233e+10
## 12878 9.410618e+10
## 12879 9.464808e+10
## 12880 8.464422e+10
## 12881 7.315925e+10
## 12882 6.203663e+10
## 12883 6.042231e+10
## 12884 5.178421e+10
## 12885 5.050829e+10
## 12886 4.851374e+10
## 12887 4.315208e+10
## 12888 3.779144e+10
## 12889 3.398718e+10
## 12890 3.496157e+10
## 12891 3.573020e+10
## 12892 3.775924e+10
## 12893 4.220601e+10
## 12894 4.049965e+10
## 12895 3.684824e+10
## 12896 3.121851e+10
## 12897 2.576208e+10
## 12898 2.228319e+10
## 12899 1.938095e+10
## 12900 1.687524e+10
## 12901 1.560783e+10
## 12902 1.141242e+10
## 12903 9.067873e+09
## 12904 8.375086e+09
## 12905 7.559180e+09
## 12906 9.571801e+09
## 12907 8.632749e+09
## 12908 7.724874e+09
## 12909 7.189018e+09
## 12910 6.517305e+09
## 12911 5.953767e+09
## 12912 5.505056e+09
## 12913 4.954529e+09
## 12914 8.171186e+09
## 12915 7.515887e+09
## 12916           NA
## 12917 6.794448e+11
## 12918 5.994492e+11
## 12919 5.960546e+11
## 12920 5.887826e+11
## 12921 5.246458e+11
## 12922 4.700226e+11
## 12923 4.771113e+11
## 12924 5.390877e+11
## 12925 5.157647e+11
## 12926 4.952369e+11
## 12927 5.243827e+11
## 12928 4.756966e+11
## 12929 4.397375e+11
## 12930 5.336091e+11
## 12931 4.290285e+11
## 12932 3.446220e+11
## 12933 3.061443e+11
## 12934 2.551102e+11
## 12935 2.178273e+11
## 12936 1.990721e+11
## 12937 1.909055e+11
## 12938 1.722195e+11
## 12939 1.700310e+11
## 12940 1.746858e+11
## 12941 1.593578e+11
## 12942 1.601932e+11
## 12943 1.422928e+11
## 12944 1.108034e+11
## 12945 9.604565e+10
## 12946 9.433705e+10
## 12947 8.550094e+10
## 12948 6.597775e+10
## 12949           NA
## 12950           NA
## 12951           NA
## 12952           NA
## 12953           NA
## 12954           NA
## 12955           NA
## 12956           NA
## 12957           NA
## 12958           NA
## 12959           NA
## 12960           NA
## 12961           NA
## 12962           NA
## 12963           NA
## 12964           NA
## 12965           NA
## 12966           NA
## 12967           NA
## 12968           NA
## 12969           NA
## 12970           NA
## 12971           NA
## 12972           NA
## 12973           NA
## 12974           NA
## 12975           NA
## 12976           NA
## 12977           NA
## 12978           NA
## 12979           NA
## 12980 2.536631e+11
## 12981 2.290319e+11
## 12982 2.399869e+11
## 12983 2.423131e+11
## 12984 2.213579e+11
## 12985 2.064262e+11
## 12986 1.993941e+11
## 12987 2.299020e+11
## 12988 2.264339e+11
## 12989 2.162242e+11
## 12990 2.451180e+11
## 12991 2.381130e+11
## 12992 2.446678e+11
## 12993 2.634164e+11
## 12994 2.404961e+11
## 12995 2.087564e+11
## 12996 1.972539e+11
## 12997 1.893821e+11
## 12998 1.652262e+11
## 12999 1.347956e+11
## 13000 1.216041e+11
## 13001 1.186052e+11
## 13002 1.274704e+11
## 13003 1.239463e+11
## 13004 1.170165e+11
## 13005 1.226301e+11
## 13006 1.181220e+11
## 13007 9.968864e+10
## 13008 9.500975e+10
## 13009 1.075921e+11
## 13010 8.923360e+10
## 13011 7.871386e+10
## 13012 6.059409e+10
## 13013 5.634725e+10
## 13014 4.818293e+10
## 13015 3.874590e+10
## 13016 2.711581e+10
## 13017 2.521797e+10
## 13018 2.723965e+10
## 13019 3.052775e+10
## 13020 3.197728e+10
## 13021 3.289652e+10
## 13022 2.662282e+10
## 13023 2.348761e+10
## 13024 2.143952e+10
## 13025 2.033283e+10
## 13026 1.934761e+10
## 13027 1.751239e+10
## 13028 1.509056e+10
## 13029 1.123912e+10
## 13030 9.201604e+09
## 13031 8.108236e+09
## 13032 6.969026e+09
## 13033 6.354263e+09
## 13034 5.740241e+09
## 13035 5.135388e+09
## 13036 4.687464e+09
## 13037 4.235608e+09
## 13038 3.905734e+09
## 13039 3.668222e+09
## 13040 3.417517e+09
## 13041 3.193200e+09
## 13042           NA
## 13043 1.065257e+11
## 13044 1.030203e+11
## 13045 1.051264e+11
## 13046 1.009581e+11
## 13047 1.034455e+11
## 13048 1.043367e+11
## 13049 1.033755e+11
## 13050 1.024458e+11
## 13051 1.024500e+11
## 13052 1.015648e+11
## 13053 1.003517e+11
## 13054 9.838130e+10
## 13055 9.638560e+10
## 13056 9.363930e+10
## 13057 8.952413e+10
## 13058 8.727616e+10
## 13059 8.391452e+10
## 13060 8.032231e+10
## 13061 7.482740e+10
## 13062 7.162350e+10
## 13063 6.920840e+10
## 13064 6.170180e+10
## 13065 5.784100e+10
## 13066 5.408640e+10
## 13067 4.818704e+10
## 13068 4.534084e+10
## 13069 4.264733e+10
## 13070 3.969063e+10
## 13071 3.692246e+10
## 13072 3.463043e+10
## 13073 3.228703e+10
## 13074 3.060392e+10
## 13075 2.816120e+10
## 13076 2.638580e+10
## 13077 2.402580e+10
## 13078 2.200930e+10
## 13079 2.028920e+10
## 13080 1.916260e+10
## 13081 1.727660e+10
## 13082 1.676420e+10
## 13083 1.595570e+10
## 13084 1.443610e+10
## 13085 1.275000e+10
## 13086 1.116500e+10
## 13087 9.910900e+09
## 13088 8.968600e+09
## 13089 8.198300e+09
## 13090 7.684800e+09
## 13091 7.002400e+09
## 13092 6.328900e+09
## 13093 5.646800e+09
## 13094 5.034700e+09
## 13095 4.460700e+09
## 13096 3.941700e+09
## 13097 3.532700e+09
## 13098 3.170500e+09
## 13099 2.881500e+09
## 13100 2.570500e+09
## 13101 2.333600e+09
## 13102 2.094400e+09
## 13103 1.865100e+09
## 13104 1.691900e+09
## 13105           NA
## 13106 1.796772e+11
## 13107 1.444114e+11
## 13108 1.758376e+11
## 13109 1.833350e+11
## 13110 1.610991e+11
## 13111 1.517322e+11
## 13112 1.617400e+11
## 13113 2.062246e+11
## 13114 1.987276e+11
## 13115 1.868335e+11
## 13116 1.677753e+11
## 13117 1.251223e+11
## 13118 9.779835e+10
## 13119 1.152701e+11
## 13120 7.971209e+10
## 13121 6.088214e+10
## 13122 4.453049e+10
## 13123 3.173407e+10
## 13124 2.353379e+10
## 13125 1.936374e+10
## 13126 1.753846e+10
## 13127 1.775989e+10
## 13128 1.239313e+10
## 13129 1.025550e+10
## 13130 1.129780e+10
## 13131 9.059340e+09
## 13132 8.137912e+09
## 13133 7.374451e+09
## 13134 7.156594e+09
## 13135 7.646154e+09
## 13136 6.883516e+09
## 13137 7.360439e+09
## 13138 6.487912e+09
## 13139 6.038187e+09
## 13140 5.446429e+09
## 13141 5.053022e+09
## 13142 6.153296e+09
## 13143 6.704396e+09
## 13144 6.467582e+09
## 13145 7.596703e+09
## 13146 8.661264e+09
## 13147 7.829095e+09
## 13148 5.633000e+09
## 13149 4.052000e+09
## 13150 3.617580e+09
## 13151 3.284301e+09
## 13152 2.512784e+09
## 13153 2.401403e+09
## 13154 7.938844e+08
## 13155 5.102599e+08
## 13156 3.877001e+08
## 13157 3.017913e+08
## 13158           NA
## 13159           NA
## 13160           NA
## 13161           NA
## 13162           NA
## 13163           NA
## 13164           NA
## 13165           NA
## 13166           NA
## 13167           NA
## 13168           NA
## 13169 2.840876e+11
## 13170 2.513620e+11
## 13171 2.510193e+11
## 13172 2.433171e+11
## 13173 2.101467e+11
## 13174 1.852869e+11
## 13175 1.778824e+11
## 13176 1.997123e+11
## 13177 1.897902e+11
## 13178 1.791329e+11
## 13179 1.926141e+11
## 13180 1.700294e+11
## 13181 1.741037e+11
## 13182 2.143136e+11
## 13183 1.745852e+11
## 13184 1.220230e+11
## 13185 9.845279e+10
## 13186 7.497267e+10
## 13187 5.780651e+10
## 13188 4.606610e+10
## 13189 4.039482e+10
## 13190 3.725326e+10
## 13191 3.595278e+10
## 13192 4.169412e+10
## 13193 3.557492e+10
## 13194 3.693707e+10
## 13195 3.743532e+10
## 13196 3.007444e+10
## 13197 2.636289e+10
## 13198 2.512167e+10
## 13199 2.899868e+10
## 13200 3.899545e+10
## 13201 4.210526e+10
## 13202 4.080952e+10
## 13203 3.841364e+10
## 13204           NA
## 13205           NA
## 13206           NA
## 13207           NA
## 13208           NA
## 13209           NA
## 13210           NA
## 13211           NA
## 13212           NA
## 13213           NA
## 13214           NA
## 13215           NA
## 13216           NA
## 13217           NA
## 13218           NA
## 13219           NA
## 13220           NA
## 13221           NA
## 13222           NA
## 13223           NA
## 13224           NA
## 13225           NA
## 13226           NA
## 13227           NA
## 13228           NA
## 13229           NA
## 13230           NA
## 13231           NA
## 13232 1.778783e+12
## 13233 1.489362e+12
## 13234 1.693114e+12
## 13235 1.657330e+12
## 13236 1.574199e+12
## 13237 1.276787e+12
## 13238 1.363481e+12
## 13239 2.059242e+12
## 13240 2.292473e+12
## 13241 2.208296e+12
## 13242 2.045926e+12
## 13243 1.524917e+12
## 13244 1.222644e+12
## 13245 1.660846e+12
## 13246 1.299706e+12
## 13247 9.899305e+11
## 13248 7.640171e+11
## 13249 5.910167e+11
## 13250 4.303478e+11
## 13251 3.454705e+11
## 13252 3.066021e+11
## 13253 2.597101e+11
## 13254 1.959071e+11
## 13255 2.709555e+11
## 13256 4.049290e+11
## 13257 3.917249e+11
## 13258 3.955372e+11
## 13259 3.950773e+11
## 13260 4.350837e+11
## 13261 4.602906e+11
## 13262 5.179630e+11
## 13263 5.168143e+11
## 13264 5.065002e+11
## 13265 5.547135e+11
## 13266           NA
## 13267           NA
## 13268           NA
## 13269           NA
## 13270           NA
## 13271           NA
## 13272           NA
## 13273           NA
## 13274           NA
## 13275           NA
## 13276           NA
## 13277           NA
## 13278           NA
## 13279           NA
## 13280           NA
## 13281           NA
## 13282           NA
## 13283           NA
## 13284           NA
## 13285           NA
## 13286           NA
## 13287           NA
## 13288           NA
## 13289           NA
## 13290           NA
## 13291           NA
## 13292           NA
## 13293           NA
## 13294           NA
## 13295 1.107036e+10
## 13296 1.018435e+10
## 13297 1.035633e+10
## 13298 9.642441e+09
## 13299 9.252834e+09
## 13300 8.690878e+09
## 13301 8.539425e+09
## 13302 8.234762e+09
## 13303 7.815975e+09
## 13304 7.650671e+09
## 13305 6.881380e+09
## 13306 6.121529e+09
## 13307 5.671593e+09
## 13308 5.177231e+09
## 13309 4.068225e+09
## 13310 3.318107e+09
## 13311 2.932341e+09
## 13312 2.375377e+09
## 13313 2.137157e+09
## 13314 1.964833e+09
## 13315 1.965501e+09
## 13316 2.067580e+09
## 13317 2.155707e+09
## 13318 1.989343e+09
## 13319 1.851558e+09
## 13320 1.382335e+09
## 13321 1.293535e+09
## 13322 7.536364e+08
## 13323 1.971526e+09
## 13324 2.029027e+09
## 13325 1.911601e+09
## 13326 2.550186e+09
## 13327 2.405022e+09
## 13328 2.395494e+09
## 13329 2.157434e+09
## 13330 1.944711e+09
## 13331 1.715626e+09
## 13332 1.587413e+09
## 13333 1.479688e+09
## 13334 1.407243e+09
## 13335 1.407063e+09
## 13336 1.254765e+09
## 13337 1.109346e+09
## 13338 9.057091e+08
## 13339 7.466506e+08
## 13340 6.377542e+08
## 13341 5.718633e+08
## 13342 3.084584e+08
## 13343 2.907462e+08
## 13344 2.464578e+08
## 13345 2.229526e+08
## 13346 2.199000e+08
## 13347 1.887000e+08
## 13348 1.722000e+08
## 13349 1.595600e+08
## 13350 1.245257e+08
## 13351 1.488000e+08
## 13352 1.300000e+08
## 13353 1.280000e+08
## 13354 1.250000e+08
## 13355 1.220000e+08
## 13356 1.190000e+08
## 13357           NA
## 13358 8.438424e+08
## 13359 8.689045e+08
## 13360 9.129445e+08
## 13361 8.784351e+08
## 13362 8.848472e+08
## 13363 8.439296e+08
## 13364 8.241600e+08
## 13365 7.966983e+08
## 13366 7.977287e+08
## 13367 7.731575e+08
## 13368 7.441048e+08
## 13369 6.802505e+08
## 13370 6.280061e+08
## 13371 6.413462e+08
## 13372 5.735485e+08
## 13373 4.999238e+08
## 13374 4.768018e+08
## 13375 4.077496e+08
## 13376 3.334287e+08
## 13377 2.817936e+08
## 13378 2.662996e+08
## 13379 2.588561e+08
## 13380 2.554100e+08
## 13381 2.694815e+08
## 13382 2.854756e+08
## 13383 2.499090e+08
## 13384 2.248657e+08
## 13385 2.210981e+08
## 13386 1.331229e+08
## 13387 1.323030e+08
## 13388 1.255972e+08
## 13389 1.257663e+08
## 13390 1.228886e+08
## 13391 1.330161e+08
## 13392 1.117139e+08
## 13393 1.009478e+08
## 13394 9.557217e+07
## 13395 1.092009e+08
## 13396 1.118628e+08
## 13397 1.212217e+08
## 13398           NA
## 13399           NA
## 13400           NA
## 13401           NA
## 13402           NA
## 13403           NA
## 13404           NA
## 13405           NA
## 13406           NA
## 13407           NA
## 13408           NA
## 13409           NA
## 13410           NA
## 13411           NA
## 13412           NA
## 13413           NA
## 13414           NA
## 13415           NA
## 13416           NA
## 13417           NA
## 13418           NA
## 13419           NA
## 13420           NA
## 13421           NA
## 13422 1.541204e+09
## 13423 1.616189e+09
## 13424 1.655301e+09
## 13425 1.528631e+09
## 13426 1.468377e+09
## 13427 1.419395e+09
## 13428 1.673974e+09
## 13429 1.678842e+09
## 13430 1.604780e+09
## 13431 1.813753e+09
## 13432 1.881214e+09
## 13433 2.056127e+09
## 13434 2.393438e+09
## 13435 2.185875e+09
## 13436 1.908167e+09
## 13437 1.785848e+09
## 13438 1.723750e+09
## 13439 1.464326e+09
## 13440 1.168269e+09
## 13441 1.077413e+09
## 13442 1.005159e+09
## 13443 1.109099e+09
## 13444           NA
## 13445           NA
## 13446           NA
## 13447           NA
## 13448           NA
## 13449           NA
## 13450           NA
## 13451           NA
## 13452           NA
## 13453           NA
## 13454           NA
## 13455           NA
## 13456           NA
## 13457           NA
## 13458           NA
## 13459           NA
## 13460           NA
## 13461           NA
## 13462           NA
## 13463           NA
## 13464           NA
## 13465           NA
## 13466           NA
## 13467           NA
## 13468           NA
## 13469           NA
## 13470           NA
## 13471           NA
## 13472           NA
## 13473           NA
## 13474           NA
## 13475           NA
## 13476           NA
## 13477           NA
## 13478           NA
## 13479           NA
## 13480           NA
## 13481           NA
## 13482           NA
## 13483           NA
## 13484 5.266538e+08
## 13485 4.725510e+08
## 13486 4.274250e+08
## 13487 4.122538e+08
## 13488 3.756141e+08
## 13489 3.454956e+08
## 13490 3.160661e+08
## 13491 3.465283e+08
## 13492 3.005545e+08
## 13493 2.506808e+08
## 13494 2.314893e+08
## 13495 1.966525e+08
## 13496 1.878205e+08
## 13497 1.880212e+08
## 13498 1.491464e+08
## 13499 1.427756e+08
## 13500 1.364503e+08
## 13501 1.145826e+08
## 13502 1.020856e+08
## 13503 8.517131e+07
## 13504 7.595121e+07
## 13505           NA
## 13506           NA
## 13507           NA
## 13508           NA
## 13509           NA
## 13510           NA
## 13511           NA
## 13512           NA
## 13513           NA
## 13514           NA
## 13515           NA
## 13516           NA
## 13517           NA
## 13518           NA
## 13519           NA
## 13520           NA
## 13521           NA
## 13522           NA
## 13523           NA
## 13524           NA
## 13525           NA
## 13526           NA
## 13527           NA
## 13528           NA
## 13529           NA
## 13530           NA
## 13531           NA
## 13532           NA
## 13533           NA
## 13534           NA
## 13535           NA
## 13536           NA
## 13537           NA
## 13538           NA
## 13539           NA
## 13540           NA
## 13541           NA
## 13542           NA
## 13543           NA
## 13544           NA
## 13545           NA
## 13546           NA
## 13547 8.335412e+11
## 13548 7.033678e+11
## 13549 8.036163e+11
## 13550 8.165787e+11
## 13551 6.885861e+11
## 13552 6.449357e+11
## 13553 6.542697e+11
## 13554 7.563503e+11
## 13555 7.466471e+11
## 13556 7.359748e+11
## 13557 6.712388e+11
## 13558 5.282073e+11
## 13559 4.290979e+11
## 13560 5.197967e+11
## 13561 4.159646e+11
## 13562 3.769001e+11
## 13563 3.284597e+11
## 13564 2.587423e+11
## 13565 2.158077e+11
## 13566 1.896059e+11
## 13567 1.841375e+11
## 13568 1.895149e+11
## 13569 1.617170e+11
## 13570 1.467755e+11
## 13571 1.659636e+11
## 13572 1.586624e+11
## 13573 1.433430e+11
## 13574 1.351749e+11
## 13575 1.329679e+11
## 13576 1.370879e+11
## 13577 1.322233e+11
## 13578 1.176303e+11
## 13579 9.534435e+10
## 13580 8.825616e+10
## 13581 8.569594e+10
## 13582 8.696201e+10
## 13583 1.038979e+11
## 13584 1.196249e+11
## 13585 1.291716e+11
## 13586 1.532390e+11
## 13587 1.842919e+11
## 13588 1.645417e+11
## 13589 1.118597e+11
## 13590 8.026573e+10
## 13591 7.418836e+10
## 13592 6.400562e+10
## 13593 4.677330e+10
## 13594 4.541297e+10
## 13595 1.494749e+10
## 13596 9.664068e+09
## 13597 7.184863e+09
## 13598 5.377269e+09
## 13599 4.485778e+09
## 13600 4.187778e+09
## 13601           NA
## 13602           NA
## 13603           NA
## 13604           NA
## 13605           NA
## 13606           NA
## 13607           NA
## 13608           NA
## 13609           NA
## 13610 2.762539e+10
## 13611 2.449316e+10
## 13612 2.339881e+10
## 13613 2.311690e+10
## 13614 2.099656e+10
## 13615 1.904031e+10
## 13616 1.777477e+10
## 13617 1.979725e+10
## 13618 1.891867e+10
## 13619 1.766087e+10
## 13620 1.781428e+10
## 13621 1.612131e+10
## 13622 1.614587e+10
## 13623 1.685399e+10
## 13624 1.399422e+10
## 13625 1.169792e+10
## 13626 1.100903e+10
## 13627 1.007682e+10
## 13628 8.768722e+09
## 13629 7.006403e+09
## 13630 6.507825e+09
## 13631 6.013185e+09
## 13632 6.592835e+09
## 13633 6.505608e+09
## 13634 6.041478e+09
## 13635 6.559713e+09
## 13636 6.326343e+09
## 13637 5.034588e+09
## 13638 7.367986e+09
## 13639 7.769818e+09
## 13640 7.255211e+09
## 13641 7.390967e+09
## 13642 6.366039e+09
## 13643 6.418420e+09
## 13644 6.487352e+09
## 13645 5.392094e+09
## 13646 3.818945e+09
## 13647 3.485165e+09
## 13648 3.569356e+09
## 13649 4.013951e+09
## 13650 4.095892e+09
## 13651 4.510107e+09
## 13652 4.084879e+09
## 13653 3.280354e+09
## 13654 2.938046e+09
## 13655 2.869778e+09
## 13656 2.830388e+09
## 13657 2.099325e+09
## 13658 1.863398e+09
## 13659 1.620857e+09
## 13660 1.339549e+09
## 13661 1.297408e+09
## 13662 1.245235e+09
## 13663 1.309385e+09
## 13664 1.246481e+09
## 13665 1.246908e+09
## 13666 1.210058e+09
## 13667 1.188931e+09
## 13668 1.122140e+09
## 13669 1.085476e+09
## 13670 1.058975e+09
## 13671 1.003692e+09
## 13672           NA
## 13673 6.308205e+10
## 13674 5.335648e+10
## 13675 5.151422e+10
## 13676 5.064065e+10
## 13677 4.417906e+10
## 13678 4.069264e+10
## 13679 3.965596e+10
## 13680 4.706221e+10
## 13681 4.839424e+10
## 13682 4.330925e+10
## 13683 4.925814e+10
## 13684 4.181947e+10
## 13685 4.516289e+10
## 13686 5.219422e+10
## 13687 4.317099e+10
## 13688 3.248207e+10
## 13689 2.768323e+10
## 13690 2.614197e+10
## 13691 2.248237e+10
## 13692 1.712091e+10
## 13693 1.296054e+10
## 13694 6.875846e+09
## 13695 1.938866e+10
## 13696 1.945798e+10
## 13697 2.567649e+10
## 13698 2.181801e+10
## 13699 1.683260e+10
## 13700           NA
## 13701           NA
## 13702           NA
## 13703           NA
## 13704           NA
## 13705           NA
## 13706           NA
## 13707           NA
## 13708           NA
## 13709           NA
## 13710           NA
## 13711           NA
## 13712           NA
## 13713           NA
## 13714           NA
## 13715           NA
## 13716           NA
## 13717           NA
## 13718           NA
## 13719           NA
## 13720           NA
## 13721           NA
## 13722           NA
## 13723           NA
## 13724           NA
## 13725           NA
## 13726           NA
## 13727           NA
## 13728           NA
## 13729           NA
## 13730           NA
## 13731           NA
## 13732           NA
## 13733           NA
## 13734           NA
## 13735           NA
## 13736 1.454458e+09
## 13737 1.261199e+09
## 13738 1.684373e+09
## 13739 1.636312e+09
## 13740 1.573433e+09
## 13741 1.490228e+09
## 13742 1.416001e+09
## 13743 1.387581e+09
## 13744 1.328092e+09
## 13745 1.059499e+09
## 13746 1.065827e+09
## 13747 9.699365e+08
## 13748 8.473979e+08
## 13749 9.671996e+08
## 13750 1.033562e+09
## 13751 1.016418e+09
## 13752 9.191033e+08
## 13753 8.393199e+08
## 13754 7.057048e+08
## 13755 6.975182e+08
## 13756 6.222621e+08
## 13757 6.148798e+08
## 13758 6.229855e+08
## 13759 6.083693e+08
## 13760 5.629588e+08
## 13761 5.030685e+08
## 13762 5.082215e+08
## 13763 4.864512e+08
## 13764 4.739168e+08
## 13765 4.336672e+08
## 13766 3.743596e+08
## 13767 3.685848e+08
## 13768 3.048329e+08
## 13769 2.838288e+08
## 13770 2.492670e+08
## 13771 2.078506e+08
## 13772 1.688875e+08
## 13773 1.513132e+08
## 13774 1.467129e+08
## 13775 1.479121e+08
## 13776 1.549029e+08
## 13777 1.473572e+08
## 13778 1.272611e+08
## 13779 8.555237e+07
## 13780 6.452640e+07
## 13781 4.927898e+07
## 13782 4.780315e+07
## 13783 4.313450e+07
## 13784 3.689628e+07
## 13785 3.064512e+07
## 13786 2.196595e+07
## 13787 1.843203e+07
## 13788 1.645203e+07
## 13789 1.607403e+07
## 13790 1.663203e+07
## 13791 1.644303e+07
## 13792 1.560303e+07
## 13793 1.539303e+07
## 13794 1.392303e+07
## 13795 1.264203e+07
## 13796 1.159201e+07
## 13797 1.201201e+07
## 13798           NA
## 13799 4.042238e+09
## 13800 4.063289e+09
## 13801 4.076579e+09
## 13802 4.085115e+09
## 13803 3.719369e+09
## 13804 3.674795e+09
## 13805 4.218724e+09
## 13806 5.015158e+09
## 13807 4.920343e+09
## 13808 3.801863e+09
## 13809 2.942547e+09
## 13810 2.578026e+09
## 13811 2.453900e+09
## 13812 2.505459e+09
## 13813 2.158497e+09
## 13814 1.885112e+09
## 13815 1.650494e+09
## 13816 1.448537e+09
## 13817 1.385810e+09
## 13818 1.253341e+09
## 13819 1.090468e+09
## 13820 6.358740e+08
## 13821 6.693848e+08
## 13822 6.723759e+08
## 13823 8.502180e+08
## 13824 9.417422e+08
## 13825 8.707587e+08
## 13826 9.119160e+08
## 13827 7.688123e+08
## 13828 6.799980e+08
## 13829 7.799815e+08
## 13830 6.496448e+08
## 13831 9.329744e+08
## 13832 1.055084e+09
## 13833 7.013076e+08
## 13834 4.901815e+08
## 13835 8.568905e+08
## 13836 1.087472e+09
## 13837 9.951043e+08
## 13838 1.295362e+09
## 13839 1.114830e+09
## 13840 1.100686e+09
## 13841 1.109375e+09
## 13842 9.607283e+08
## 13843 6.917778e+08
## 13844 5.948957e+08
## 13845 6.793359e+08
## 13846 6.485906e+08
## 13847 5.752302e+08
## 13848 4.653811e+08
## 13849 4.195494e+08
## 13850 4.344104e+08
## 13851 4.086902e+08
## 13852 3.298601e+08
## 13853 3.487953e+08
## 13854 3.754798e+08
## 13855 3.593799e+08
## 13856 3.718481e+08
## 13857 3.485470e+08
## 13858 3.427216e+08
## 13859 3.278347e+08
## 13860 3.220095e+08
## 13861           NA
## 13862 3.969869e+11
## 13863 3.452959e+11
## 13864 3.754727e+11
## 13865 3.769981e+11
## 13866 3.431934e+11
## 13867 3.188324e+11
## 13868 3.080041e+11
## 13869 3.148512e+11
## 13870 3.075764e+11
## 13871 2.950872e+11
## 13872 2.793512e+11
## 13873 2.398094e+11
## 13874 1.941523e+11
## 13875 1.936120e+11
## 13876 1.809419e+11
## 13877 1.486304e+11
## 13878 1.278076e+11
## 13879 1.150355e+11
## 13880 9.764545e+10
## 13881 9.253775e+10
## 13882 8.979494e+10
## 13883 9.607448e+10
## 13884 8.628466e+10
## 13885 8.572831e+10
## 13886 1.001242e+11
## 13887 9.629589e+10
## 13888 8.781099e+10
## 13889 7.369085e+10
## 13890 6.060348e+10
## 13891 5.213026e+10
## 13892 4.546616e+10
## 13893 3.614434e+10
## 13894 3.046536e+10
## 13895 2.537146e+10
## 13896 2.091922e+10
## 13897 1.858675e+10
## 13898 1.915653e+10
## 13899 1.974936e+10
## 13900 1.778411e+10
## 13901 1.608425e+10
## 13902 1.417523e+10
## 13903 1.189626e+10
## 13904 9.296922e+09
## 13905 7.517176e+09
## 13906 6.618585e+09
## 13907 6.327078e+09
## 13908 5.633674e+09
## 13909 5.221535e+09
## 13910 3.696213e+09
## 13911 2.721441e+09
## 13912 2.263785e+09
## 13913 1.920587e+09
## 13914 1.659905e+09
## 13915 1.425715e+09
## 13916 1.238044e+09
## 13917 1.096433e+09
## 13918 9.746505e+08
## 13919 8.941592e+08
## 13920 9.176140e+08
## 13921 8.262446e+08
## 13922 7.646348e+08
## 13923 7.047563e+08
## 13924           NA
## 13925           NA
## 13926           NA
## 13927           NA
## 13928 1.185475e+09
## 13929 1.191620e+09
## 13930 1.263687e+09
## 13931 1.253073e+09
## 13932 1.245251e+09
## 13933 1.022905e+09
## 13934 9.858659e+08
## 13935 9.360894e+08
## 13936           NA
## 13937           NA
## 13938           NA
## 13939           NA
## 13940           NA
## 13941           NA
## 13942           NA
## 13943           NA
## 13944           NA
## 13945           NA
## 13946           NA
## 13947           NA
## 13948           NA
## 13949           NA
## 13950           NA
## 13951           NA
## 13952           NA
## 13953           NA
## 13954           NA
## 13955           NA
## 13956           NA
## 13957           NA
## 13958           NA
## 13959           NA
## 13960           NA
## 13961           NA
## 13962           NA
## 13963           NA
## 13964           NA
## 13965           NA
## 13966           NA
## 13967           NA
## 13968           NA
## 13969           NA
## 13970           NA
## 13971           NA
## 13972           NA
## 13973           NA
## 13974           NA
## 13975           NA
## 13976           NA
## 13977           NA
## 13978           NA
## 13979           NA
## 13980           NA
## 13981           NA
## 13982           NA
## 13983           NA
## 13984           NA
## 13985           NA
## 13986           NA
## 13987           NA
## 13988 1.165271e+11
## 13989 1.066968e+11
## 13990 1.057204e+11
## 13991 1.061379e+11
## 13992 9.564997e+10
## 13993 8.995270e+10
## 13994 8.890088e+10
## 13995 1.014370e+11
## 13996 9.893522e+10
## 13997 9.462373e+10
## 13998 9.992269e+10
## 13999 9.116284e+10
## 14000 8.939930e+10
## 14001 1.008799e+11
## 14002 8.656399e+10
## 14003 7.076734e+10
## 14004 6.280872e+10
## 14005 5.743744e+10
## 14006 4.691997e+10
## 14007 3.529779e+10
## 14008 3.077878e+10
## 14009 2.924256e+10
## 14010 3.046367e+10
## 14011 2.985600e+10
## 14012 2.770603e+10
## 14013 2.792504e+10
## 14014 2.584015e+10
## 14015 2.016294e+10
## 14016 1.652068e+10
## 14017 1.549551e+10
## 14018 1.427220e+10
## 14019 1.274738e+10
## 14020           NA
## 14021           NA
## 14022           NA
## 14023           NA
## 14024           NA
## 14025           NA
## 14026           NA
## 14027           NA
## 14028           NA
## 14029           NA
## 14030           NA
## 14031           NA
## 14032           NA
## 14033           NA
## 14034           NA
## 14035           NA
## 14036           NA
## 14037           NA
## 14038           NA
## 14039           NA
## 14040           NA
## 14041           NA
## 14042           NA
## 14043           NA
## 14044           NA
## 14045           NA
## 14046           NA
## 14047           NA
## 14048           NA
## 14049           NA
## 14050           NA
## 14051 6.174859e+10
## 14052 5.370680e+10
## 14053 5.433159e+10
## 14054 5.417788e+10
## 14055 4.858910e+10
## 14056 4.476672e+10
## 14057 4.310751e+10
## 14058 4.999719e+10
## 14059 4.841566e+10
## 14060 4.657779e+10
## 14061 5.158387e+10
## 14062 4.820824e+10
## 14063 5.056773e+10
## 14064 5.577943e+10
## 14065 4.806740e+10
## 14066 3.948105e+10
## 14067 3.620640e+10
## 14068 3.441478e+10
## 14069 2.963471e+10
## 14070 2.348989e+10
## 14071 2.087631e+10
## 14072 2.028963e+10
## 14073 2.271138e+10
## 14074 2.214623e+10
## 14075 2.076310e+10
## 14076 2.150723e+10
## 14077 2.135222e+10
## 14078           NA
## 14079           NA
## 14080           NA
## 14081           NA
## 14082           NA
## 14083           NA
## 14084           NA
## 14085           NA
## 14086           NA
## 14087           NA
## 14088           NA
## 14089           NA
## 14090           NA
## 14091           NA
## 14092           NA
## 14093           NA
## 14094           NA
## 14095           NA
## 14096           NA
## 14097           NA
## 14098           NA
## 14099           NA
## 14100           NA
## 14101           NA
## 14102           NA
## 14103           NA
## 14104           NA
## 14105           NA
## 14106           NA
## 14107           NA
## 14108           NA
## 14109           NA
## 14110           NA
## 14111           NA
## 14112           NA
## 14113           NA
## 14114 1.631487e+09
## 14115 1.536148e+09
## 14116 1.619155e+09
## 14117 1.615479e+09
## 14118 1.469787e+09
## 14119 1.379482e+09
## 14120 1.307908e+09
## 14121 1.335580e+09
## 14122 1.285918e+09
## 14123 1.185216e+09
## 14124 1.063890e+09
## 14125 8.981338e+08
## 14126 8.055618e+08
## 14127 7.763394e+08
## 14128 6.952953e+08
## 14129 6.172547e+08
## 14130 5.528626e+08
## 14131 4.680081e+08
## 14132 4.176714e+08
## 14133 3.464053e+08
## 14134 4.095074e+08
## 14135 4.198452e+08
## 14136 4.880288e+08
## 14137 4.575845e+08
## 14138 5.265600e+08
## 14139 5.105804e+08
## 14140 4.694432e+08
## 14141 4.028319e+08
## 14142 3.007495e+08
## 14143 2.690346e+08
## 14144 2.275363e+08
## 14145 2.148776e+08
## 14146 1.728824e+08
## 14147 1.764944e+08
## 14148 1.551286e+08
## 14149 1.476200e+08
## 14150 1.655250e+08
## 14151 1.815705e+08
## 14152 1.812203e+08
## 14153 1.929019e+08
## 14154 1.937505e+08
## 14155 1.828521e+08
## 14156 1.512702e+08
## 14157 1.110221e+08
## 14158 9.314704e+07
## 14159 8.309911e+07
## 14160 7.461710e+07
## 14161 8.453933e+07
## 14162 5.527211e+07
## 14163 4.060671e+07
## 14164 5.005688e+07
## 14165           NA
## 14166 2.860641e+07
## 14167 2.808425e+07
## 14168 2.520352e+07
## 14169           NA
## 14170           NA
## 14171           NA
## 14172           NA
## 14173           NA
## 14174           NA
## 14175           NA
## 14176           NA
## 14177 7.628000e+09
## 14178 6.883000e+09
## 14179 6.485000e+09
## 14180 5.856000e+09
## 14181 5.609000e+09
## 14182 5.534000e+09
## 14183 5.335000e+09
## 14184 5.025000e+09
## 14185 4.577000e+09
## 14186           NA
## 14187           NA
## 14188           NA
## 14189           NA
## 14190           NA
## 14191           NA
## 14192           NA
## 14193           NA
## 14194           NA
## 14195           NA
## 14196           NA
## 14197           NA
## 14198           NA
## 14199           NA
## 14200           NA
## 14201           NA
## 14202           NA
## 14203           NA
## 14204           NA
## 14205           NA
## 14206           NA
## 14207           NA
## 14208 9.170442e+08
## 14209 1.092393e+09
## 14210 1.038291e+09
## 14211 1.009793e+09
## 14212 9.303187e+08
## 14213 8.764046e+08
## 14214 7.883072e+08
## 14215 7.339014e+08
## 14216 7.744196e+08
## 14217 6.991123e+08
## 14218 6.035927e+08
## 14219 5.904199e+08
## 14220 5.649861e+08
## 14221 4.985509e+08
## 14222 8.072758e+08
## 14223 7.108502e+08
## 14224 4.675774e+08
## 14225 5.070284e+08
## 14226 4.169424e+08
## 14227 3.311027e+08
## 14228 3.226000e+08
## 14229 3.063573e+08
## 14230 2.867183e+08
## 14231 2.717804e+08
## 14232 2.573745e+08
## 14233 2.437245e+08
## 14234 2.295299e+08
## 14235 2.161459e+08
## 14236 2.035319e+08
## 14237 1.916599e+08
## 14238 1.804599e+08
## 14239           NA
## 14240 4.190150e+11
## 14241 3.376197e+11
## 14242 3.885320e+11
## 14243 4.041597e+11
## 14244 3.814488e+11
## 14245 3.235855e+11
## 14246 3.467098e+11
## 14247 3.811989e+11
## 14248 4.008860e+11
## 14249 4.344005e+11
## 14250 4.582015e+11
## 14251 4.173651e+11
## 14252 3.297530e+11
## 14253 3.161321e+11
## 14254 3.330755e+11
## 14255 3.038609e+11
## 14256 2.888685e+11
## 14257 2.558066e+11
## 14258 1.970202e+11
## 14259 1.290881e+11
## 14260 1.354296e+11
## 14261 1.517534e+11
## 14262 1.515166e+11
## 14263 1.529825e+11
## 14264 1.689767e+11
## 14265 1.632368e+11
## 14266 1.717352e+11
## 14267 1.535126e+11
## 14268 1.471966e+11
## 14269 1.469569e+11
## 14270 1.352044e+11
## 14271 1.260481e+11
## 14272 1.080556e+11
## 14273 1.039769e+11
## 14274 9.653575e+10
## 14275 7.335478e+10
## 14276 6.445938e+10
## 14277 8.487013e+10
## 14278 9.620411e+10
## 14279 8.590407e+10
## 14280 9.314148e+10
## 14281 8.941189e+10
## 14282 6.303869e+10
## 14283 5.160740e+10
## 14284 4.532840e+10
## 14285 4.115045e+10
## 14286 4.290692e+10
## 14287 4.138919e+10
## 14288 3.326277e+10
## 14289 2.451591e+10
## 14290 2.341108e+10
## 14291 2.121839e+10
## 14292 1.925699e+10
## 14293 1.712479e+10
## 14294 1.582139e+10
## 14295 1.421139e+10
## 14296 1.306899e+10
## 14297 1.195600e+10
## 14298 1.085420e+10
## 14299 9.813996e+09
## 14300 9.225996e+09
## 14301 8.748597e+09
## 14302           NA
## 14303           NA
## 14304           NA
## 14305           NA
## 14306           NA
## 14307           NA
## 14308           NA
## 14309 1.199780e+10
## 14310 1.396221e+10
## 14311 1.842647e+10
## 14312 1.193147e+10
## 14313 1.490731e+10
## 14314 1.460207e+10
## 14315 1.223126e+10
## 14316 1.458625e+10
## 14317           NA
## 14318           NA
## 14319           NA
## 14320           NA
## 14321           NA
## 14322           NA
## 14323           NA
## 14324           NA
## 14325           NA
## 14326           NA
## 14327           NA
## 14328           NA
## 14329           NA
## 14330           NA
## 14331           NA
## 14332           NA
## 14333           NA
## 14334           NA
## 14335           NA
## 14336           NA
## 14337           NA
## 14338           NA
## 14339           NA
## 14340           NA
## 14341           NA
## 14342           NA
## 14343           NA
## 14344           NA
## 14345           NA
## 14346           NA
## 14347           NA
## 14348           NA
## 14349           NA
## 14350           NA
## 14351           NA
## 14352           NA
## 14353           NA
## 14354           NA
## 14355           NA
## 14356           NA
## 14357           NA
## 14358           NA
## 14359           NA
## 14360           NA
## 14361           NA
## 14362           NA
## 14363           NA
## 14364           NA
## 14365           NA
## 14366 1.427381e+12
## 14367 1.276963e+12
## 14368 1.394320e+12
## 14369 1.421703e+12
## 14370 1.313245e+12
## 14371 1.233555e+12
## 14372 1.196157e+12
## 14373 1.371821e+12
## 14374 1.355580e+12
## 14375 1.324751e+12
## 14376 1.480710e+12
## 14377 1.422108e+12
## 14378 1.491473e+12
## 14379 1.631863e+12
## 14380 1.474003e+12
## 14381 1.260399e+12
## 14382 1.153716e+12
## 14383 1.069056e+12
## 14384 9.074915e+11
## 14385 7.087567e+11
## 14386 6.278300e+11
## 14387 5.983633e+11
## 14388 6.349075e+11
## 14389 6.192148e+11
## 14390 5.900773e+11
## 14391 6.425890e+11
## 14392 6.146090e+11
## 14393 5.305626e+11
## 14394 5.250756e+11
## 14395 6.309160e+11
## 14396 5.771662e+11
## 14397 5.365586e+11
## 14398 4.147571e+11
## 14399 3.761604e+11
## 14400 3.187479e+11
## 14401 2.513211e+11
## 14402 1.807935e+11
## 14403 1.721029e+11
## 14404 1.709512e+11
## 14405 1.959968e+11
## 14406 2.028079e+11
## 14407 2.327668e+11
## 14408 2.146020e+11
## 14409 1.605997e+11
## 14410 1.324493e+11
## 14411 1.185072e+11
## 14412 1.147770e+11
## 14413 9.727401e+10
## 14414 7.863953e+10
## 14415 5.913242e+10
## 14416 4.661942e+10
## 14417 4.099300e+10
## 14418 3.603871e+10
## 14419 3.147555e+10
## 14420 3.164712e+10
## 14421 2.872106e+10
## 14422 2.475696e+10
## 14423 2.134384e+10
## 14424 1.907491e+10
## 14425 1.613855e+10
## 14426 1.383430e+10
## 14427 1.207213e+10
## 14428           NA
## 14429 8.892726e+10
## 14430 8.534911e+10
## 14431 8.901499e+10
## 14432 9.449385e+10
## 14433 9.437625e+10
## 14434 8.801226e+10
## 14435 8.514096e+10
## 14436 8.252853e+10
## 14437 7.700060e+10
## 14438 7.044719e+10
## 14439 6.775329e+10
## 14440 5.863615e+10
## 14441 4.206622e+10
## 14442 4.071381e+10
## 14443 3.235025e+10
## 14444 2.827981e+10
## 14445 2.440579e+10
## 14446 2.066253e+10
## 14447 1.888177e+10
## 14448 1.653654e+10
## 14449 1.574975e+10
## 14450 1.633081e+10
## 14451 1.565633e+10
## 14452 1.579497e+10
## 14453 1.509191e+10
## 14454 1.389774e+10
## 14455 1.302970e+10
## 14456 1.171760e+10
## 14457 1.033868e+10
## 14458 9.703012e+09
## 14459 9.000363e+09
## 14460 8.032551e+09
## 14461 6.987268e+09
## 14462 6.978372e+09
## 14463 6.682167e+09
## 14464 6.405211e+09
## 14465 5.978461e+09
## 14466 6.043475e+09
## 14467 5.167913e+09
## 14468 4.768765e+09
## 14469 4.415844e+09
## 14470 4.024622e+09
## 14471 3.364611e+09
## 14472 2.733184e+09
## 14473 4.104510e+09
## 14474 3.591320e+09
## 14475 3.791298e+09
## 14476 3.574586e+09
## 14477 2.875625e+09
## 14478 2.553936e+09
## 14479 2.369309e+09
## 14480 2.296471e+09
## 14481 1.965546e+09
## 14482 1.801345e+09
## 14483 1.859465e+09
## 14484 1.751471e+09
## 14485 1.698319e+09
## 14486 1.309748e+09
## 14487 1.240672e+09
## 14488 1.434156e+09
## 14489 1.444328e+09
## 14490 1.409874e+09
## 14491           NA
## 14492 8.608407e+08
## 14493 8.845259e+08
## 14494 1.107841e+09
## 14495 1.076911e+09
## 14496 1.058937e+09
## 14497 1.008100e+09
## 14498 9.570407e+08
## 14499 9.531741e+08
## 14500 8.753764e+08
## 14501 8.262316e+08
## 14502 8.360924e+08
## 14503 7.787181e+08
## 14504 7.742731e+08
## 14505 7.776913e+08
## 14506 6.892852e+08
## 14507 6.444148e+08
## 14508 5.472037e+08
## 14509 5.069000e+08
## 14510 4.698699e+08
## 14511 4.810774e+08
## 14512 4.586438e+08
## 14513 4.216958e+08
## 14514 4.065955e+08
## 14515 3.832573e+08
## 14516 3.746413e+08
## 14517 3.339444e+08
## 14518 3.134852e+08
## 14519 2.951593e+08
## 14520 2.637556e+08
## 14521 2.421370e+08
## 14522 2.205407e+08
## 14523 2.172593e+08
## 14524 1.925185e+08
## 14525 1.726926e+08
## 14526 1.477481e+08
## 14527 1.306852e+08
## 14528 1.110074e+08
## 14529 9.860370e+07
## 14530 8.687407e+07
## 14531 8.602222e+07
## 14532 8.088889e+07
## 14533 6.845926e+07
## 14534 5.884074e+07
## 14535 4.943333e+07
## 14536 4.449630e+07
## 14537 3.009560e+07
## 14538 3.336406e+07
## 14539 3.151486e+07
## 14540 2.419602e+07
## 14541 2.294485e+07
## 14542 1.962475e+07
## 14543 1.630000e+07
## 14544 1.585000e+07
## 14545 1.460000e+07
## 14546 1.674234e+07
## 14547 1.446908e+07
## 14548 1.359393e+07
## 14549 1.341655e+07
## 14550 1.283323e+07
## 14551 1.254156e+07
## 14552 1.248323e+07
## 14553 1.236656e+07
## 14554           NA
## 14555 1.691275e+09
## 14556 1.516016e+09
## 14557 2.094202e+09
## 14558 2.057068e+09
## 14559 1.996711e+09
## 14560 1.865460e+09
## 14561 1.807227e+09
## 14562 1.749289e+09
## 14563 1.664817e+09
## 14564 1.605147e+09
## 14565 1.576988e+09
## 14566 1.486758e+09
## 14567 1.401508e+09
## 14568 1.437731e+09
## 14569 1.336089e+09
## 14570 1.268319e+09
## 14571 1.135556e+09
## 14572 1.066667e+09
## 14573 9.874074e+08
## 14574 9.000000e+08
## 14575 8.925926e+08
## 14576 9.325926e+08
## 14577 9.218519e+08
## 14578 8.774074e+08
## 14579 8.059259e+08
## 14580 7.888889e+08
## 14581 7.629630e+08
## 14582 7.137037e+08
## 14583 6.848148e+08
## 14584 6.740741e+08
## 14585 6.137037e+08
## 14586 5.796296e+08
## 14587 4.866667e+08
## 14588 4.296296e+08
## 14589 3.755556e+08
## 14590 3.400000e+08
## 14591 2.844444e+08
## 14592 2.514815e+08
## 14593 1.970370e+08
## 14594 1.833333e+08
## 14595 1.944444e+08
## 14596 1.703704e+08
## 14597           NA
## 14598           NA
## 14599           NA
## 14600           NA
## 14601           NA
## 14602           NA
## 14603           NA
## 14604           NA
## 14605           NA
## 14606           NA
## 14607           NA
## 14608           NA
## 14609           NA
## 14610           NA
## 14611           NA
## 14612           NA
## 14613           NA
## 14614           NA
## 14615           NA
## 14616           NA
## 14617           NA
## 14618           NA
## 14619           NA
## 14620           NA
## 14621           NA
## 14622           NA
## 14623           NA
## 14624           NA
## 14625 7.729507e+08
## 14626           NA
## 14627           NA
## 14628 7.758909e+08
## 14629           NA
## 14630           NA
## 14631           NA
## 14632           NA
## 14633           NA
## 14634           NA
## 14635           NA
## 14636           NA
## 14637           NA
## 14638           NA
## 14639           NA
## 14640           NA
## 14641           NA
## 14642           NA
## 14643           NA
## 14644           NA
## 14645           NA
## 14646           NA
## 14647           NA
## 14648           NA
## 14649           NA
## 14650           NA
## 14651           NA
## 14652           NA
## 14653           NA
## 14654           NA
## 14655           NA
## 14656           NA
## 14657           NA
## 14658           NA
## 14659           NA
## 14660           NA
## 14661           NA
## 14662           NA
## 14663           NA
## 14664           NA
## 14665           NA
## 14666           NA
## 14667           NA
## 14668           NA
## 14669           NA
## 14670           NA
## 14671           NA
## 14672           NA
## 14673           NA
## 14674           NA
## 14675           NA
## 14676           NA
## 14677           NA
## 14678           NA
## 14679           NA
## 14680           NA
## 14681 9.041815e+08
## 14682 8.721346e+08
## 14683 9.101497e+08
## 14684 8.843282e+08
## 14685 8.476202e+08
## 14686 8.143023e+08
## 14687 7.865546e+08
## 14688 7.709014e+08
## 14689 7.647813e+08
## 14690 7.300326e+08
## 14691 7.137964e+08
## 14692 7.204479e+08
## 14693 7.143003e+08
## 14694 7.326633e+08
## 14695 7.135967e+08
## 14696 6.435011e+08
## 14697 5.799489e+08
## 14698 5.499002e+08
## 14699 5.090909e+08
## 14700 4.877639e+08
## 14701 4.620723e+08
## 14702 4.279460e+08
## 14703 3.907185e+08
## 14704 3.736185e+08
## 14705 3.477704e+08
## 14706 3.314889e+08
## 14707 3.160074e+08
## 14708 2.894370e+08
## 14709 2.863074e+08
## 14710 2.779556e+08
## 14711 2.548296e+08
## 14712 2.403667e+08
## 14713 2.147450e+08
## 14714 2.007267e+08
## 14715 1.755806e+08
## 14716 1.608467e+08
## 14717 1.456417e+08
## 14718 1.350250e+08
## 14719 1.222553e+08
## 14720 1.137592e+08
## 14721 1.020865e+08
## 14722 8.234034e+07
## 14723 7.109636e+07
## 14724 6.084477e+07
## 14725 4.935316e+07
## 14726 3.279248e+07
## 14727 3.323716e+07
## 14728 3.292422e+07
## 14729 3.016537e+07
## 14730 2.758549e+07
## 14731 2.005165e+07
## 14732 1.845000e+07
## 14733 1.665000e+07
## 14734 1.535000e+07
## 14735 1.583518e+07
## 14736 1.609987e+07
## 14737 1.510821e+07
## 14738 1.475821e+07
## 14739 1.370822e+07
## 14740 1.452488e+07
## 14741 1.399988e+07
## 14742 1.306656e+07
## 14743           NA
## 14744 3.432606e+10
## 14745 2.703459e+10
## 14746 3.233808e+10
## 14747 3.233378e+10
## 14748 1.297178e+11
## 14749 1.029437e+11
## 14750 8.498513e+10
## 14751 7.681833e+10
## 14752 6.602660e+10
## 14753 6.319550e+10
## 14754 7.840342e+10
## 14755 7.415119e+10
## 14756 5.831619e+10
## 14757 6.483194e+10
## 14758 5.944014e+10
## 14759 4.526452e+10
## 14760 3.518211e+10
## 14761 2.664549e+10
## 14762 2.135558e+10
## 14763 1.813684e+10
## 14764 1.571649e+10
## 14765 1.225742e+10
## 14766 1.068205e+10
## 14767 1.125033e+10
## 14768 1.168149e+10
## 14769 9.018243e+09
## 14770 1.382974e+10
## 14771 1.279419e+10
## 14772 8.881786e+09
## 14773 7.034220e+09
## 14774 4.389129e+10
## 14775 3.364122e+10
## 14776 2.140811e+10
## 14777 1.437256e+10
## 14778 1.209333e+10
## 14779 1.009220e+10
## 14780 8.089391e+09
## 14781 1.044762e+10
## 14782 8.230154e+09
## 14783 8.316000e+09
## 14784 1.001650e+10
## 14785 8.951800e+09
## 14786 9.032250e+09
## 14787 7.670500e+09
## 14788 8.704000e+09
## 14789 6.979333e+09
## 14790 5.598000e+09
## 14791 4.595000e+09
## 14792 3.571667e+09
## 14793 2.882000e+09
## 14794 2.656000e+09
## 14795 2.437667e+09
## 14796 2.144333e+09
## 14797 1.947333e+09
## 14798 1.865667e+09
## 14799 1.723000e+09
## 14800 1.679333e+09
## 14801 1.611333e+09
## 14802 1.568333e+09
## 14803 1.541667e+09
## 14804 1.419333e+09
## 14805 1.307333e+09
## 14806           NA
## 14807 2.984706e+09
## 14808 2.911807e+09
## 14809 4.016041e+09
## 14810 3.996205e+09
## 14811 3.591661e+09
## 14812 3.317438e+09
## 14813 5.126188e+09
## 14814 5.240606e+09
## 14815 5.145758e+09
## 14816 4.980000e+09
## 14817 4.422277e+09
## 14818 4.368398e+09
## 14819 3.875410e+09
## 14820 3.532969e+09
## 14821 2.936612e+09
## 14822 2.626380e+09
## 14823 1.793389e+09
## 14824 1.484093e+09
## 14825 1.274190e+09
## 14826 1.093574e+09
## 14827 8.342794e+08
## 14828 9.476720e+08
## 14829 8.862907e+08
## 14830 1.110850e+09
## 14831 9.264225e+08
## 14832 8.614115e+08
## 14833 6.915905e+08
## 14834 6.054925e+08
## 14835 4.287647e+08
## 14836 4.046000e+08
## 14837 4.481000e+08
## 14838 3.884000e+08
## 14839 5.426000e+08
## 14840 1.161000e+09
## 14841 9.800000e+08
## 14842 8.910000e+08
## 14843 8.730000e+08
## 14844 8.640000e+08
## 14845 8.835000e+08
## 14846 9.150000e+08
## 14847 8.890000e+08
## 14848 7.950000e+08
## 14849 7.825000e+08
## 14850 7.355000e+08
## 14851 6.415000e+08
## 14852 5.055000e+08
## 14853 4.655000e+08
## 14854 4.098500e+08
## 14855 3.394500e+08
## 14856 3.119500e+08
## 14857 3.010000e+08
## 14858 2.749000e+08
## 14859 2.596500e+08
## 14860 2.413500e+08
## 14861 2.207000e+08
## 14862 1.903500e+08
## 14863 1.541500e+08
## 14864 1.344000e+08
## 14865 1.259500e+08
## 14866 1.161500e+08
## 14867 1.077000e+08
## 14868 9.965000e+07
## 14869           NA
## 14870 6.356638e+11
## 14871 5.470542e+11
## 14872 5.338795e+11
## 14873 5.554554e+11
## 14874 5.410187e+11
## 14875 5.156547e+11
## 14876 5.051038e+11
## 14877 5.819640e+11
## 14878 5.868418e+11
## 14879 5.524837e+11
## 14880 5.740941e+11
## 14881 4.958126e+11
## 14882 4.365370e+11
## 14883 5.177061e+11
## 14884 4.912526e+11
## 14885 4.230934e+11
## 14886 3.922181e+11
## 14887 3.851180e+11
## 14888 3.343372e+11
## 14889 2.668491e+11
## 14890 2.423959e+11
## 14891 2.628355e+11
## 14892 2.740722e+11
## 14893 2.708091e+11
## 14894 2.681461e+11
## 14895 2.917438e+11
## 14896 2.673059e+11
## 14897 2.290336e+11
## 14898 2.129533e+11
## 14899 2.843211e+11
## 14900 2.742290e+11
## 14901 2.618462e+11
## 14902 2.179483e+11
## 14903 2.069867e+11
## 14904 1.830096e+11
## 14905 1.504981e+11
## 14906 1.141235e+11
## 14907 1.092014e+11
## 14908 1.050144e+11
## 14909 1.143806e+11
## 14910 1.296869e+11
## 14911 1.420921e+11
## 14912 1.233864e+11
## 14913 1.044424e+11
## 14914 9.446874e+10
## 14915 8.936207e+10
## 14916 8.288540e+10
## 14917 6.601334e+10
## 14918 5.940497e+10
## 14919 4.895415e+10
## 14920 4.156641e+10
## 14921 3.809245e+10
## 14922 3.373810e+10
## 14923 3.106682e+10
## 14924 2.927600e+10
## 14925 2.697149e+10
## 14926 2.479550e+10
## 14927 2.253242e+10
## 14928 2.020487e+10
## 14929 1.866725e+10
## 14930 1.721269e+10
## 14931 1.582259e+10
## 14932           NA
## 14933 8.006402e+11
## 14934 7.399136e+11
## 14935 7.213691e+11
## 14936 7.255687e+11
## 14937 6.952008e+11
## 14938 6.878955e+11
## 14939 6.941182e+11
## 14940 7.265378e+11
## 14941 7.062349e+11
## 14942 6.864202e+11
## 14943 7.158881e+11
## 14944 5.988510e+11
## 14945 5.542129e+11
## 14946 5.672678e+11
## 14947 4.907407e+11
## 14948 4.416347e+11
## 14949 4.182849e+11
## 14950 4.039129e+11
## 14951 3.620751e+11
## 14952 3.093014e+11
## 14953 2.865827e+11
## 14954 2.792160e+11
## 14955 2.978736e+11
## 14956 3.034590e+11
## 14957 2.947882e+11
## 14958 3.401040e+11
## 14959 3.528358e+11
## 14960 3.013751e+11
## 14961 2.722375e+11
## 14962 2.799214e+11
## 14963 2.689017e+11
## 14964 2.657636e+11
## 14965 2.082808e+11
## 14966 2.157219e+11
## 14967 1.994039e+11
## 14968 1.592237e+11
## 14969 1.110736e+11
## 14970 1.095474e+11
## 14971 1.147308e+11
## 14972 1.151401e+11
## 14973 1.123392e+11
## 14974 1.226609e+11
## 14975           NA
## 14976           NA
## 14977           NA
## 14978           NA
## 14979           NA
## 14980           NA
## 14981           NA
## 14982           NA
## 14983           NA
## 14984           NA
## 14985 2.052489e+10
## 14986 1.894273e+10
## 14987 1.774001e+10
## 14988 1.648006e+10
## 14989 1.534674e+10
## 14990 1.448056e+10
## 14991 1.306364e+10
## 14992 1.187998e+10
## 14993 1.071271e+10
## 14994 9.522747e+09
## 14995           NA
## 14996           NA
## 14997 1.107980e+10
## 14998 2.244330e+10
## 14999 2.135173e+10
## 15000 1.636972e+10
## 15001 1.259874e+10
## 15002 1.646840e+10
## 15003 2.150206e+10
## 15004 2.136125e+10
## 15005 4.319032e+10
## 15006 6.753943e+10
## 15007 2.525182e+11
## 15008 2.245617e+11
## 15009 2.180900e+11
## 15010 1.800301e+11
## 15011 1.537999e+11
## 15012 1.342038e+11
## 15013 1.128633e+11
## 15014 9.569381e+10
## 15015 9.055849e+10
## 15016 8.677131e+10
## 15017 8.059002e+10
## 15018 7.297033e+10
## 15019 7.041817e+10
## 15020 6.642040e+10
## 15021 6.154628e+10
## 15022 5.086637e+10
## 15023 4.508695e+10
## 15024 3.686013e+10
## 15025 3.310735e+10
## 15026 2.775626e+10
## 15027 2.390450e+10
## 15028 1.860953e+10
## 15029 1.657434e+10
## 15030 3.253809e+10
## 15031 2.546064e+10
## 15032 2.120382e+10
## 15033 1.919541e+10
## 15034 1.867287e+10
## 15035 1.752561e+10
## 15036 1.675847e+10
## 15037 1.306242e+10
## 15038 9.929682e+09
## 15039 8.251975e+09
## 15040 6.882293e+09
## 15041 6.417633e+09
## 15042 5.566757e+09
## 15043 4.244670e+09
## 15044 2.579219e+09
## 15045 2.415707e+09
## 15046 2.097644e+09
## 15047 1.780105e+09
## 15048 1.796597e+09
## 15049 1.562303e+09
## 15050 1.443718e+09
## 15051 1.321205e+09
## 15052 1.329842e+09
## 15053 1.339494e+09
## 15054 1.200447e+09
## 15055 1.110566e+09
## 15056 9.452450e+08
## 15057 8.577044e+08
## 15058           NA
## 15059 8.746271e+09
## 15060 8.133997e+09
## 15061 8.300785e+09
## 15062 7.765014e+09
## 15063 7.536440e+09
## 15064 6.992394e+09
## 15065 8.271454e+09
## 15066 9.112545e+09
## 15067 8.448470e+09
## 15068 7.633050e+09
## 15069 6.522732e+09
## 15070 5.642179e+09
## 15071 4.979482e+09
## 15072 5.161337e+09
## 15073 3.719506e+09
## 15074 2.830221e+09
## 15075 2.312328e+09
## 15076 2.076182e+09
## 15077 1.555301e+09
## 15078 1.221121e+09
## 15079 1.080769e+09
## 15080 8.605211e+08
## 15081 1.086605e+09
## 15082 1.320242e+09
## 15083 9.215721e+08
## 15084 1.043655e+09
## 15085 1.231041e+09
## 15086 1.518797e+09
## 15087 1.644326e+09
## 15088 2.156667e+09
## 15089 1.352000e+09
## 15090 2.631769e+09
## 15091           NA
## 15092           NA
## 15093           NA
## 15094           NA
## 15095           NA
## 15096           NA
## 15097           NA
## 15098           NA
## 15099           NA
## 15100           NA
## 15101           NA
## 15102           NA
## 15103           NA
## 15104           NA
## 15105           NA
## 15106           NA
## 15107           NA
## 15108           NA
## 15109           NA
## 15110           NA
## 15111           NA
## 15112           NA
## 15113           NA
## 15114           NA
## 15115           NA
## 15116           NA
## 15117           NA
## 15118           NA
## 15119           NA
## 15120           NA
## 15121           NA
## 15122 6.784105e+10
## 15123 6.240971e+10
## 15124 6.113687e+10
## 15125 5.700369e+10
## 15126 5.332065e+10
## 15127 4.977400e+10
## 15128 4.737860e+10
## 15129 4.996483e+10
## 15130 4.568053e+10
## 15131 3.965052e+10
## 15132 3.465714e+10
## 15133 3.201425e+10
## 15134 2.908183e+10
## 15135 2.796153e+10
## 15136 2.184353e+10
## 15137 1.864959e+10
## 15138 1.839905e+10
## 15139 1.667595e+10
## 15140 1.522426e+10
## 15141 1.414204e+10
## 15142 1.358164e+10
## 15143 1.337598e+10
## 15144 1.271121e+10
## 15145 1.227045e+10
## 15146 7.683852e+09
## 15147 6.496195e+09
## 15148 5.255221e+09
## 15149 4.510847e+09
## 15150 4.257702e+09
## 15151 4.601413e+09
## 15152 4.956588e+09
## 15153 4.258743e+09
## 15154 4.420168e+09
## 15155 5.100406e+09
## 15156           NA
## 15157           NA
## 15158           NA
## 15159           NA
## 15160           NA
## 15161           NA
## 15162           NA
## 15163           NA
## 15164           NA
## 15165           NA
## 15166           NA
## 15167           NA
## 15168           NA
## 15169           NA
## 15170           NA
## 15171           NA
## 15172           NA
## 15173           NA
## 15174           NA
## 15175           NA
## 15176           NA
## 15177           NA
## 15178           NA
## 15179           NA
## 15180           NA
## 15181           NA
## 15182           NA
## 15183           NA
## 15184           NA
## 15185 5.059470e+11
## 15186 4.996818e+11
## 15187 5.440811e+11
## 15188 5.067546e+11
## 15189 4.563570e+11
## 15190 4.133662e+11
## 15191 4.012964e+11
## 15192 4.073395e+11
## 15193 4.203332e+11
## 15194 3.975582e+11
## 15195 3.708191e+11
## 15196 3.411048e+11
## 15197 2.817104e+11
## 15198 2.913830e+11
## 15199 2.629425e+11
## 15200 2.217582e+11
## 15201 1.893185e+11
## 15202 1.728957e+11
## 15203 1.522807e+11
## 15204 1.343009e+11
## 15205 1.202965e+11
## 15206 1.263922e+11
## 15207 1.266691e+11
## 15208 1.136756e+11
## 15209 1.501806e+11
## 15210 1.830351e+11
## 15211 1.692788e+11
## 15212 1.466835e+11
## 15213 1.288893e+11
## 15214 1.114529e+11
## 15215 9.823470e+10
## 15216 8.534306e+10
## 15217 7.225088e+10
## 15218 6.166720e+10
## 15219 5.053544e+10
## 15220 4.309675e+10
## 15221 3.890069e+10
## 15222 4.179759e+10
## 15223 4.004283e+10
## 15224 3.658980e+10
## 15225 3.484611e+10
## 15226 3.235344e+10
## 15227 2.737170e+10
## 15228 2.400657e+10
## 15229 1.977932e+10
## 15230 1.698521e+10
## 15231 1.488275e+10
## 15232 1.370300e+10
## 15233 1.083859e+10
## 15234 8.177885e+09
## 15235 7.375000e+09
## 15236 7.086538e+09
## 15237 6.695337e+09
## 15238 6.081009e+09
## 15239 5.638461e+09
## 15240 5.279231e+09
## 15241 4.388938e+09
## 15242 3.889130e+09
## 15243 3.540403e+09
## 15244 3.308913e+09
## 15245 3.034044e+09
## 15246 2.760747e+09
## 15247           NA
## 15248 3.621222e+09
## 15249 2.158393e+09
## 15250 2.028552e+09
## 15251 1.563888e+09
## 15252 1.595724e+09
## 15253 1.650619e+09
## 15254 1.594448e+09
## 15255 1.447310e+09
## 15256 1.395520e+09
## 15257 1.160390e+09
## 15258 1.042411e+09
## 15259 8.818278e+08
## 15260 7.268824e+08
## 15261 6.484927e+08
## 15262 5.427954e+08
## 15263 4.538051e+08
## 15264 4.622836e+08
## 15265 4.407646e+08
## 15266 4.904391e+08
## 15267 4.695067e+08
## 15268 4.774435e+08
## 15269 3.670879e+08
## 15270           NA
## 15271           NA
## 15272           NA
## 15273           NA
## 15274           NA
## 15275           NA
## 15276           NA
## 15277           NA
## 15278           NA
## 15279           NA
## 15280           NA
## 15281           NA
## 15282           NA
## 15283           NA
## 15284           NA
## 15285           NA
## 15286           NA
## 15287           NA
## 15288           NA
## 15289           NA
## 15290           NA
## 15291           NA
## 15292           NA
## 15293           NA
## 15294           NA
## 15295           NA
## 15296           NA
## 15297           NA
## 15298           NA
## 15299           NA
## 15300           NA
## 15301           NA
## 15302           NA
## 15303           NA
## 15304           NA
## 15305           NA
## 15306           NA
## 15307           NA
## 15308           NA
## 15309           NA
## 15310           NA
## 15311 8.413201e+09
## 15312 7.574637e+09
## 15313 7.220395e+09
## 15314 7.112201e+09
## 15315 6.395473e+09
## 15316 6.031632e+09
## 15317 4.180866e+09
## 15318 4.574987e+09
## 15319 4.321656e+09
## 15320 3.873308e+09
## 15321 3.872459e+09
## 15322 3.429461e+09
## 15323 3.379259e+09
## 15324 3.323677e+09
## 15325 2.662612e+09
## 15326 2.351585e+09
## 15327 2.281483e+09
## 15328 2.259993e+09
## 15329 2.115836e+09
## 15330 1.706698e+09
## 15331 1.482438e+09
## 15332 1.491891e+09
## 15333 1.576673e+09
## 15334 1.587346e+09
## 15335 1.498951e+09
## 15336 1.465448e+09
## 15337 1.309383e+09
## 15338 9.826243e+08
## 15339 1.233497e+09
## 15340 1.692959e+09
## 15341 1.602300e+09
## 15342 1.628428e+09
## 15343 1.352950e+09
## 15344 1.378847e+09
## 15345 1.249099e+09
## 15346 1.060912e+09
## 15347 7.623597e+08
## 15348 7.181490e+08
## 15349 7.657466e+08
## 15350 8.216519e+08
## 15351 9.623470e+08
## 15352 1.136409e+09
## 15353 8.917759e+08
## 15354 8.242638e+08
## 15355 7.774350e+08
## 15356 6.193751e+08
## 15357 6.173217e+08
## 15358 5.604377e+08
## 15359 4.064799e+08
## 15360 3.356776e+08
## 15361 2.865375e+08
## 15362 2.539766e+08
## 15363 2.677324e+08
## 15364 2.419569e+08
## 15365 2.317065e+08
## 15366 2.161363e+08
## 15367 1.873003e+08
## 15368 1.661041e+08
## 15369 1.432558e+08
## 15370 1.322374e+08
## 15371 1.263965e+08
## 15372 1.211281e+08
## 15373           NA
## 15374 4.692313e+08
## 15375 4.848067e+08
## 15376 5.120577e+08
## 15377 4.889033e+08
## 15378 4.603791e+08
## 15379 4.205402e+08
## 15380 4.370062e+08
## 15381 4.398788e+08
## 15382 4.506436e+08
## 15383 4.707141e+08
## 15384 4.145234e+08
## 15385 3.668400e+08
## 15386 3.123774e+08
## 15387 3.444286e+08
## 15388 2.985140e+08
## 15389 2.922321e+08
## 15390 2.617976e+08
## 15391 2.306580e+08
## 15392 2.022470e+08
## 15393 1.827637e+08
## 15394 1.811170e+08
## 15395 2.048496e+08
## 15396 1.992146e+08
## 15397 1.915049e+08
## 15398 2.149915e+08
## 15399 2.221006e+08
## 15400 2.088717e+08
## 15401 1.959910e+08
## 15402 1.384899e+08
## 15403 1.370663e+08
## 15404 1.322011e+08
## 15405 1.135638e+08
## 15406 1.063449e+08
## 15407 1.066573e+08
## 15408 8.166713e+07
## 15409 6.819586e+07
## 15410 6.005866e+07
## 15411 6.424835e+07
## 15412 6.086396e+07
## 15413 6.206816e+07
## 15414 6.224201e+07
## 15415 5.326008e+07
## 15416 4.466700e+07
## 15417 4.156747e+07
## 15418 3.413939e+07
## 15419 3.003642e+07
## 15420 3.250674e+07
## 15421           NA
## 15422           NA
## 15423           NA
## 15424           NA
## 15425           NA
## 15426           NA
## 15427           NA
## 15428           NA
## 15429           NA
## 15430           NA
## 15431           NA
## 15432           NA
## 15433           NA
## 15434           NA
## 15435           NA
## 15436           NA
## 15437 2.446020e+10
## 15438 2.105943e+10
## 15439 2.384956e+10
## 15440 2.432236e+10
## 15441 2.379769e+10
## 15442 2.349622e+10
## 15443 2.685197e+10
## 15444 2.948901e+10
## 15445 2.855745e+10
## 15446 2.712171e+10
## 15447 2.543301e+10
## 15448 2.215795e+10
## 15449 1.917217e+10
## 15450 2.787159e+10
## 15451 2.164162e+10
## 15452 1.836936e+10
## 15453 1.598228e+10
## 15454 1.328028e+10
## 15455 1.130546e+10
## 15456 9.008274e+09
## 15457 8.824873e+09
## 15458 8.154338e+09
## 15459 6.808983e+09
## 15460 6.043694e+09
## 15461 5.737751e+09
## 15462 5.759538e+09
## 15463 5.329214e+09
## 15464 4.947206e+09
## 15465 4.669489e+09
## 15466 5.439553e+09
## 15467 5.307906e+09
## 15468 5.068000e+09
## 15469 4.323059e+09
## 15470 4.496852e+09
## 15471 4.797778e+09
## 15472 4.794444e+09
## 15473 7.375918e+09
## 15474 7.757083e+09
## 15475 7.763750e+09
## 15476 8.140417e+09
## 15477 6.992083e+09
## 15478 6.235833e+09
## 15479 4.602417e+09
## 15480 3.562333e+09
## 15481 3.138667e+09
## 15482 2.500411e+09
## 15483 2.442668e+09
## 15484 2.042032e+09
## 15485 1.308799e+09
## 15486 1.083381e+09
## 15487 8.967543e+08
## 15488 8.218500e+08
## 15489 7.792000e+08
## 15490 7.589000e+08
## 15491 7.619815e+08
## 15492 7.237356e+08
## 15493 7.365689e+08
## 15494 7.118934e+08
## 15495 6.782354e+08
## 15496 6.193192e+08
## 15497 5.849612e+08
## 15498 5.356701e+08
## 15499           NA
## 15500 4.668674e+10
## 15501 4.253783e+10
## 15502 4.190611e+10
## 15503 4.268597e+10
## 15504 4.216397e+10
## 15505 4.436075e+10
## 15506 4.578008e+10
## 15507 5.027107e+10
## 15508 4.868419e+10
## 15509 4.731116e+10
## 15510 4.812274e+10
## 15511 4.620609e+10
## 15512 4.345494e+10
## 15513 4.486097e+10
## 15514 3.891408e+10
## 15515 3.437731e+10
## 15516 3.227301e+10
## 15517 3.118306e+10
## 15518 2.745301e+10
## 15519 2.314215e+10
## 15520 2.206603e+10
## 15521 2.147326e+10
## 15522 2.294369e+10
## 15523 2.180337e+10
## 15524 2.074636e+10
## 15525 1.958732e+10
## 15526 1.803088e+10
## 15527 1.563246e+10
## 15528 1.460895e+10
## 15529 1.549729e+10
## 15530 1.307478e+10
## 15531 1.229057e+10
## 15532 1.010208e+10
## 15533 1.009629e+10
## 15534 9.696271e+09
## 15535 9.018136e+09
## 15536 8.410186e+09
## 15537 8.254892e+09
## 15538 8.350177e+09
## 15539 8.133401e+09
## 15540 8.428514e+09
## 15541 8.744134e+09
## 15542 7.188192e+09
## 15543 5.968044e+09
## 15544 5.109324e+09
## 15545 4.507929e+09
## 15546 4.328610e+09
## 15547 3.545934e+09
## 15548 2.730787e+09
## 15549 2.237476e+09
## 15550 1.685217e+09
## 15551 1.439238e+09
## 15552 1.289905e+09
## 15553 1.214667e+09
## 15554 1.085714e+09
## 15555 1.040952e+09
## 15556 9.910476e+08
## 15557           NA
## 15558           NA
## 15559           NA
## 15560           NA
## 15561           NA
## 15562           NA
## 15563 8.190352e+11
## 15564 7.202894e+11
## 15565 7.599374e+11
## 15566 7.784719e+11
## 15567 8.589963e+11
## 15568 8.696930e+11
## 15569 8.643167e+11
## 15570 9.389526e+11
## 15571 9.577830e+11
## 15572 8.805564e+11
## 15573 8.387628e+11
## 15574 7.769926e+11
## 15575 6.492726e+11
## 15576 7.704622e+11
## 15577 6.813373e+11
## 15578 5.570578e+11
## 15579 5.063083e+11
## 15580 4.088760e+11
## 15581 3.145924e+11
## 15582 2.402532e+11
## 15583 2.017511e+11
## 15584 2.743030e+11
## 15585 2.563855e+11
## 15586 2.759674e+11
## 15587 1.898346e+11
## 15588 1.814756e+11
## 15589 1.694859e+11
## 15590 1.306902e+11
## 15591 1.801697e+11
## 15592 1.584591e+11
## 15593 1.500278e+11
## 15594 1.506763e+11
## 15595 1.071433e+11
## 15596 9.085281e+10
## 15597 8.717279e+10
## 15598 7.572801e+10
## 15599 6.723495e+10
## 15600 5.998991e+10
## 15601 6.167828e+10
## 15602 6.454633e+10
## 15603 7.104002e+10
## 15604 6.882368e+10
## 15605 8.932797e+10
## 15606 6.509877e+10
## 15607 5.868333e+10
## 15608 5.113043e+10
## 15609 4.476389e+10
## 15610 3.566906e+10
## 15611 2.563380e+10
## 15612 2.035915e+10
## 15613 1.627517e+10
## 15614 1.708696e+10
## 15615 1.946667e+10
## 15616 1.750000e+10
## 15617 1.564444e+10
## 15618 1.410000e+10
## 15619 1.196667e+10
## 15620 1.117778e+10
## 15621 1.035556e+10
## 15622 8.922222e+09
## 15623 7.988889e+09
## 15624 1.398357e+10
## 15625           NA
## 15626           NA
## 15627           NA
## 15628 4.523143e+10
## 15629 4.076543e+10
## 15630 3.792629e+10
## 15631 3.616943e+10
## 15632 3.579971e+10
## 15633 4.352421e+10
## 15634 3.919754e+10
## 15635 3.516421e+10
## 15636 2.923333e+10
## 15637 2.258316e+10
## 15638 2.021439e+10
## 15639 1.927152e+10
## 15640 1.266417e+10
## 15641 1.027667e+10
## 15642 8.103902e+09
## 15643 6.838351e+09
## 15644 5.977561e+09
## 15645 4.461978e+09
## 15646 3.534804e+09
## 15647 2.904663e+09
## 15648 2.450564e+09
## 15649 2.605688e+09
## 15650 2.450350e+09
## 15651 2.378760e+09
## 15652 2.482228e+09
## 15653 2.561119e+09
## 15654 3.179226e+09
## 15655 3.200540e+09
## 15656 3.208099e+09
## 15657 3.188098e+09
## 15658 3.007519e+09
## 15659 3.010033e+09
## 15660 2.336449e+09
## 15661           NA
## 15662           NA
## 15663           NA
## 15664           NA
## 15665           NA
## 15666           NA
## 15667           NA
## 15668           NA
## 15669           NA
## 15670           NA
## 15671           NA
## 15672           NA
## 15673           NA
## 15674           NA
## 15675           NA
## 15676           NA
## 15677           NA
## 15678           NA
## 15679           NA
## 15680           NA
## 15681           NA
## 15682           NA
## 15683           NA
## 15684           NA
## 15685           NA
## 15686           NA
## 15687           NA
## 15688           NA
## 15689 9.432698e+08
## 15690 9.245830e+08
## 15691 1.197415e+09
## 15692 1.113178e+09
## 15693 1.022365e+09
## 15694 1.032452e+09
## 15695 9.420700e+08
## 15696 8.410700e+08
## 15697 7.542380e+08
## 15698 7.271610e+08
## 15699 7.287896e+08
## 15700 6.867878e+08
## 15701 7.031758e+08
## 15702 8.626836e+08
## 15703 7.734897e+08
## 15704 7.218915e+08
## 15705 5.786458e+08
## 15706 4.855988e+08
## 15707 4.097536e+08
## 15708 3.667079e+08
## 15709 3.587448e+08
## 15710           NA
## 15711           NA
## 15712           NA
## 15713           NA
## 15714           NA
## 15715           NA
## 15716           NA
## 15717           NA
## 15718           NA
## 15719           NA
## 15720           NA
## 15721           NA
## 15722           NA
## 15723           NA
## 15724           NA
## 15725           NA
## 15726           NA
## 15727           NA
## 15728           NA
## 15729           NA
## 15730           NA
## 15731           NA
## 15732           NA
## 15733           NA
## 15734           NA
## 15735           NA
## 15736           NA
## 15737           NA
## 15738           NA
## 15739           NA
## 15740           NA
## 15741           NA
## 15742           NA
## 15743           NA
## 15744           NA
## 15745           NA
## 15746           NA
## 15747           NA
## 15748           NA
## 15749           NA
## 15750           NA
## 15751           NA
## 15752 6.310096e+07
## 15753 5.505471e+07
## 15754 5.422315e+07
## 15755 4.781829e+07
## 15756 4.521766e+07
## 15757 4.162950e+07
## 15758 3.681166e+07
## 15759 3.875969e+07
## 15760 3.861749e+07
## 15761 3.934562e+07
## 15762 3.919546e+07
## 15763 3.210420e+07
## 15764 2.807674e+07
## 15765 3.187385e+07
## 15766 2.844950e+07
## 15767 2.409639e+07
## 15768 2.290951e+07
## 15769 2.279747e+07
## 15770 1.945651e+07
## 15771 1.684233e+07
## 15772 1.396504e+07
## 15773 1.507421e+07
## 15774 1.368714e+07
## 15775 1.275763e+07
## 15776 1.270091e+07
## 15777 1.233485e+07
## 15778 1.102595e+07
## 15779 1.088683e+07
## 15780 9.630763e+06
## 15781 9.742949e+06
## 15782 9.365166e+06
## 15783 8.824448e+06
## 15784           NA
## 15785           NA
## 15786           NA
## 15787           NA
## 15788           NA
## 15789           NA
## 15790           NA
## 15791           NA
## 15792           NA
## 15793           NA
## 15794           NA
## 15795           NA
## 15796           NA
## 15797           NA
## 15798           NA
## 15799           NA
## 15800           NA
## 15801           NA
## 15802           NA
## 15803           NA
## 15804           NA
## 15805           NA
## 15806           NA
## 15807           NA
## 15808           NA
## 15809           NA
## 15810           NA
## 15811           NA
## 15812           NA
## 15813           NA
## 15814           NA
## 15815 4.052979e+10
## 15816 3.760037e+10
## 15817 3.535306e+10
## 15818 3.292703e+10
## 15819 3.074447e+10
## 15820 2.920399e+10
## 15821 3.238718e+10
## 15822 3.261240e+10
## 15823 2.891579e+10
## 15824 2.730592e+10
## 15825 2.787173e+10
## 15826 2.667344e+10
## 15827 2.512781e+10
## 15828 1.444040e+10
## 15829 1.190256e+10
## 15830 9.977648e+09
## 15831 9.239222e+09
## 15832 7.939487e+09
## 15833 6.606884e+09
## 15834 6.178564e+09
## 15835 5.840504e+09
## 15836 6.193247e+09
## 15837 5.998563e+09
## 15838 6.584816e+09
## 15839 6.269333e+09
## 15840 6.044585e+09
## 15841 5.755819e+09
## 15842 3.990430e+09
## 15843 3.220439e+09
## 15844 2.857458e+09
## 15845 3.321729e+09
## 15846 4.304399e+09
## 15847 5.276481e+09
## 15848 6.508932e+09
## 15849 6.269512e+09
## 15850 3.923232e+09
## 15851 3.519666e+09
## 15852 3.615647e+09
## 15853 2.240333e+09
## 15854 2.177500e+09
## 15855 1.337300e+09
## 15856 1.244610e+09
## 15857 2.139025e+09
## 15858 2.420261e+09
## 15859 2.936471e+09
## 15860 2.447300e+09
## 15861 2.359556e+09
## 15862 2.100143e+09
## 15863 1.702521e+09
## 15864 1.491597e+09
## 15865 1.417787e+09
## 15866 1.260084e+09
## 15867 1.169048e+09
## 15868 1.037815e+09
## 15869 9.676471e+08
## 15870 9.257703e+08
## 15871 8.848739e+08
## 15872 5.890566e+08
## 15873 5.161478e+08
## 15874 4.490126e+08
## 15875 4.415241e+08
## 15876 4.230084e+08
## 15877           NA
## 15878 2.000855e+11
## 15879 1.566179e+11
## 15880 1.538830e+11
## 15881 1.308910e+11
## 15882 1.120905e+11
## 15883 9.335599e+10
## 15884 9.103096e+10
## 15885 1.335034e+11
## 15886 1.904988e+11
## 15887 1.825924e+11
## 15888 1.693330e+11
## 15889 1.412099e+11
## 15890 1.215528e+11
## 15891 1.881111e+11
## 15892 1.487339e+11
## 15893 1.118848e+11
## 15894 8.923937e+10
## 15895 6.722015e+10
## 15896 5.201024e+10
## 15897 4.395637e+10
## 15898 3.930958e+10
## 15899 3.237528e+10
## 15900 3.158096e+10
## 15901 4.188324e+10
## 15902 5.015040e+10
## 15903 4.455808e+10
## 15904 4.821475e+10
## 15905 5.254339e+10
## 15906 6.560752e+10
## 15907 7.394591e+10
## 15908 7.735073e+10
## 15909 8.139356e+10
## 15910 8.270916e+10
## 15911 7.470352e+10
## 15912 6.408769e+10
## 15913           NA
## 15914           NA
## 15915           NA
## 15916           NA
## 15917           NA
## 15918           NA
## 15919           NA
## 15920           NA
## 15921           NA
## 15922           NA
## 15923           NA
## 15924           NA
## 15925           NA
## 15926           NA
## 15927           NA
## 15928           NA
## 15929           NA
## 15930           NA
## 15931           NA
## 15932           NA
## 15933           NA
## 15934           NA
## 15935           NA
## 15936           NA
## 15937           NA
## 15938           NA
## 15939           NA
## 15940           NA
## 15941 4.150216e+11
## 15942 3.494730e+11
## 15943 4.179897e+11
## 15944 4.270494e+11
## 15945 3.905168e+11
## 15946 3.692553e+11
## 15947 3.702755e+11
## 15948 4.141054e+11
## 15949 4.002185e+11
## 15950 3.846101e+11
## 15951 3.506661e+11
## 15952 2.897875e+11
## 15953 2.535474e+11
## 15954 3.154746e+11
## 15955 2.579161e+11
## 15956 2.221165e+11
## 15957 1.806175e+11
## 15958 1.478244e+11
## 15959 1.243464e+11
## 15960 1.098162e+11
## 15961 1.033116e+11
## 15962 1.043374e+11
## 15963 8.444547e+10
## 15964 7.567434e+10
## 15965 7.883901e+10
## 15966 7.357123e+10
## 15967 6.574367e+10
## 15968 5.930509e+10
## 15969 5.562517e+10
## 15970 5.423917e+10
## 15971 5.155217e+10
## 15972 5.070144e+10
## 15973 4.146500e+10
## 15974 3.627567e+10
## 15975 3.638491e+10
## 15976 3.394361e+10
## 15977 4.060365e+10
## 15978 4.180795e+10
## 15979 4.280332e+10
## 15980 4.662272e+10
## 15981 4.933342e+10
## 15982 4.359875e+10
## 15983 3.122546e+10
## 15984 2.377583e+10
## 15985 2.487178e+10
## 15986 1.921302e+10
## 15987 1.472067e+10
## 15988           NA
## 15989           NA
## 15990           NA
## 15991           NA
## 15992           NA
## 15993           NA
## 15994           NA
## 15995           NA
## 15996           NA
## 15997           NA
## 15998           NA
## 15999           NA
## 16000           NA
## 16001           NA
## 16002           NA
## 16003           NA
## 16004 3.131378e+12
## 16005 2.704609e+12
## 16006 2.857058e+12
## 16007 2.878152e+12
## 16008 2.683399e+12
## 16009 2.699660e+12
## 16010 2.934858e+12
## 16011 3.065223e+12
## 16012 2.786315e+12
## 16013 2.706341e+12
## 16014 2.666403e+12
## 16015 2.491397e+12
## 16016 2.417638e+12
## 16017 2.931502e+12
## 16018 3.092821e+12
## 16019 2.709912e+12
## 16020 2.544805e+12
## 16021 2.422959e+12
## 16022 2.056612e+12
## 16023 1.785844e+12
## 16024 1.648658e+12
## 16025 1.666126e+12
## 16026 1.689290e+12
## 16027 1.655061e+12
## 16028 1.561807e+12
## 16029 1.421619e+12
## 16030 1.346184e+12
## 16031 1.140490e+12
## 16032 1.061389e+12
## 16033 1.179660e+12
## 16034 1.142797e+12
## 16035 1.093169e+12
## 16036 9.268848e+11
## 16037 9.101227e+11
## 16038 7.451626e+11
## 16039 6.014527e+11
## 16040 4.892852e+11
## 16041 4.614871e+11
## 16042 4.896180e+11
## 16043 5.150489e+11
## 16044 5.407657e+11
## 16045 5.649477e+11
## 16046 4.389941e+11
## 16047 3.358830e+11
## 16048 2.630665e+11
## 16049 2.326146e+11
## 16050 2.417566e+11
## 16051 2.061314e+11
## 16052 1.925380e+11
## 16053 1.699650e+11
## 16054 1.481139e+11
## 16055 1.306719e+11
## 16056 1.164647e+11
## 16057 1.077599e+11
## 16058 1.131169e+11
## 16059 1.085728e+11
## 16060 1.018248e+11
## 16061 9.440756e+10
## 16062 8.656196e+10
## 16063 8.124756e+10
## 16064 7.774197e+10
## 16065 7.323397e+10
## 16066           NA
## 16067 2.331508e+13
## 16068 2.106047e+13
## 16069 2.138098e+13
## 16070 2.053306e+13
## 16071 1.947734e+13
## 16072 1.869511e+13
## 16073 1.820602e+13
## 16074 1.755068e+13
## 16075 1.684319e+13
## 16076 1.625397e+13
## 16077 1.559973e+13
## 16078 1.504896e+13
## 16079 1.447806e+13
## 16080 1.476986e+13
## 16081 1.447423e+13
## 16082 1.381559e+13
## 16083 1.303920e+13
## 16084 1.221719e+13
## 16085 1.145644e+13
## 16086 1.092911e+13
## 16087 1.058193e+13
## 16088 1.025095e+13
## 16089 9.631174e+12
## 16090 9.062818e+12
## 16091 8.577554e+12
## 16092 8.073122e+12
## 16093 7.639749e+12
## 16094 7.287236e+12
## 16095 6.858559e+12
## 16096 6.520327e+12
## 16097 6.158129e+12
## 16098 5.963144e+12
## 16099 5.641580e+12
## 16100 5.236438e+12
## 16101 4.855215e+12
## 16102 4.579631e+12
## 16103 4.338979e+12
## 16104 4.037613e+12
## 16105 3.634038e+12
## 16106 3.343789e+12
## 16107 3.207041e+12
## 16108 2.857307e+12
## 16109 2.627333e+12
## 16110 2.351599e+12
## 16111 2.081826e+12
## 16112 1.873412e+12
## 16113 1.684904e+12
## 16114 1.545243e+12
## 16115 1.425376e+12
## 16116 1.279110e+12
## 16117 1.164850e+12
## 16118 1.073303e+12
## 16119 1.019900e+12
## 16120 9.425000e+11
## 16121 8.617000e+11
## 16122 8.150000e+11
## 16123 7.437000e+11
## 16124 6.858000e+11
## 16125 6.386000e+11
## 16126 6.051000e+11
## 16127 5.633000e+11
## 16128 5.433000e+11
## 16129           NA
## 16130 5.931948e+10
## 16131 5.356076e+10
## 16132 6.123115e+10
## 16133 6.451504e+10
## 16134 6.423397e+10
## 16135 5.723665e+10
## 16136 5.327430e+10
## 16137 5.723601e+10
## 16138 5.753123e+10
## 16139 5.126439e+10
## 16140 4.796244e+10
## 16141 4.028448e+10
## 16142 3.166091e+10
## 16143 3.036621e+10
## 16144 2.341057e+10
## 16145 1.957946e+10
## 16146 1.736286e+10
## 16147 1.368633e+10
## 16148 1.204563e+10
## 16149 1.360649e+10
## 16150 2.089879e+10
## 16151 2.282326e+10
## 16152 2.398395e+10
## 16153 2.538593e+10
## 16154 2.396982e+10
## 16155 2.051554e+10
## 16156 1.929766e+10
## 16157 1.747465e+10
## 16158 1.500211e+10
## 16159 1.287820e+10
## 16160 1.120597e+10
## 16161 9.298840e+09
## 16162 8.438951e+09
## 16163 8.213515e+09
## 16164 7.367494e+09
## 16165 5.880113e+09
## 16166 4.732018e+09
## 16167 4.850241e+09
## 16168 5.102281e+09
## 16169 9.178802e+09
## 16170 1.104834e+10
## 16171 1.016302e+10
## 16172 7.181185e+09
## 16173 4.910257e+09
## 16174 4.114667e+09
## 16175 3.667161e+09
## 16176 3.538283e+09
## 16177 4.090210e+09
## 16178 3.964296e+09
## 16179 2.189418e+09
## 16180 2.807258e+09
## 16181 2.137097e+09
## 16182 2.004435e+09
## 16183 1.593675e+09
## 16184 1.597721e+09
## 16185 1.809184e+09
## 16186 1.890769e+09
## 16187 1.975702e+09
## 16188 1.539681e+09
## 16189 1.710004e+09
## 16190 1.547389e+09
## 16191 1.242289e+09
## 16192           NA
## 16193 6.923890e+10
## 16194 5.989431e+10
## 16195 5.990767e+10
## 16196 5.263314e+10
## 16197 6.208132e+10
## 16198 8.613829e+10
## 16199 8.619627e+10
## 16200 8.084538e+10
## 16201 7.318004e+10
## 16202 6.751735e+10
## 16203 6.017891e+10
## 16204 4.976568e+10
## 16205 3.368922e+10
## 16206 2.954944e+10
## 16207 2.231139e+10
## 16208 1.733083e+10
## 16209 1.430751e+10
## 16210 1.203002e+10
## 16211 1.013445e+10
## 16212 9.687789e+09
## 16213 1.140142e+10
## 16214 1.376051e+10
## 16215 1.707847e+10
## 16216 1.498897e+10
## 16217 1.474460e+10
## 16218 1.394889e+10
## 16219 1.335047e+10
## 16220 1.289916e+10
## 16221 1.309901e+10
## 16222 1.294130e+10
## 16223 1.367762e+10
## 16224 1.336061e+10
## 16225           NA
## 16226           NA
## 16227           NA
## 16228           NA
## 16229           NA
## 16230           NA
## 16231           NA
## 16232           NA
## 16233           NA
## 16234           NA
## 16235           NA
## 16236           NA
## 16237           NA
## 16238           NA
## 16239           NA
## 16240           NA
## 16241           NA
## 16242           NA
## 16243           NA
## 16244           NA
## 16245           NA
## 16246           NA
## 16247           NA
## 16248           NA
## 16249           NA
## 16250           NA
## 16251           NA
## 16252           NA
## 16253           NA
## 16254           NA
## 16255           NA
## 16256 9.563327e+08
## 16257 8.968799e+08
## 16258 9.365263e+08
## 16259 9.147370e+08
## 16260 8.800621e+08
## 16261 7.808896e+08
## 16262 7.308706e+08
## 16263 7.723157e+08
## 16264 7.583045e+08
## 16265 7.478397e+08
## 16266 7.701533e+08
## 16267 6.707132e+08
## 16268 5.926225e+08
## 16269 5.907482e+08
## 16270 5.163929e+08
## 16271 4.393587e+08
## 16272 3.949626e+08
## 16273 3.649969e+08
## 16274 3.144713e+08
## 16275 2.625966e+08
## 16276 2.579269e+08
## 16277 2.720147e+08
## 16278 2.680070e+08
## 16279 2.622934e+08
## 16280 2.727712e+08
## 16281 2.613700e+08
## 16282 2.493333e+08
## 16283 2.337013e+08
## 16284 2.004919e+08
## 16285 2.090888e+08
## 16286 2.013342e+08
## 16287 1.688792e+08
## 16288 1.540132e+08
## 16289 1.583514e+08
## 16290 1.394642e+08
## 16291 1.264989e+08
## 16292 1.318564e+08
## 16293 1.444825e+08
## 16294 1.173896e+08
## 16295 1.145019e+08
## 16296 1.137818e+08
## 16297 1.211855e+08
## 16298 1.192588e+08
## 16299           NA
## 16300           NA
## 16301           NA
## 16302           NA
## 16303           NA
## 16304           NA
## 16305           NA
## 16306           NA
## 16307           NA
## 16308           NA
## 16309           NA
## 16310           NA
## 16311           NA
## 16312           NA
## 16313           NA
## 16314           NA
## 16315           NA
## 16316           NA
## 16317           NA
## 16318           NA
## 16319           NA
## 16320           NA
## 16321           NA
## 16322           NA
## 16323           NA
## 16324           NA
## 16325           NA
## 16326 4.823593e+11
## 16327 3.710054e+11
## 16328 3.812862e+11
## 16329 3.164822e+11
## 16330 3.931924e+11
## 16331 3.297876e+11
## 16332 3.159534e+11
## 16333 2.303640e+11
## 16334 1.834775e+11
## 16335 1.455100e+11
## 16336 1.124534e+11
## 16337 8.362063e+10
## 16338 9.289359e+10
## 16339 1.229040e+11
## 16340 1.171407e+11
## 16341 9.797689e+10
## 16342 9.133120e+10
## 16343 8.584353e+10
## 16344 7.054321e+10
## 16345 7.740773e+10
## 16346 5.841867e+10
## 16347 6.006501e+10
## 16348 6.040180e+10
## 16349 5.347697e+10
## 16350 4.859832e+10
## 16351 4.352625e+10
## 16352 6.022641e+10
## 16353 4.802903e+10
## 16354 6.039160e+10
## 16355 6.196547e+10
## 16356 6.001029e+10
## 16357 6.755628e+10
## 16358 6.773674e+10
## 16359 6.632744e+10
## 16360 5.911651e+10
## 16361 4.831093e+10
## 16362 3.931628e+10
## 16363 3.621070e+10
## 16364 3.141953e+10
## 16365 2.746465e+10
## 16366 2.610093e+10
## 16367 1.703558e+10
## 16368 1.397773e+10
## 16369 1.298659e+10
## 16370 1.156111e+10
## 16371 1.028511e+10
## 16372 1.003444e+10
## 16373 9.250000e+09
## 16374 8.781333e+09
## 16375 8.427778e+09
## 16376 8.099318e+09
## 16377 9.753333e+09
## 16378 8.946970e+09
## 16379 8.189091e+09
## 16380 7.779091e+09
## 16381           NA
## 16382 3.661376e+11
## 16383 3.466158e+11
## 16384 3.343653e+11
## 16385 3.101065e+11
## 16386 2.813536e+11
## 16387 2.570960e+11
## 16388 2.392583e+11
## 16389 2.334515e+11
## 16390 2.137088e+11
## 16391 1.955906e+11
## 16392 1.725950e+11
## 16393 1.472012e+11
## 16394 1.060147e+11
## 16395 9.913030e+10
## 16396 7.741443e+10
## 16397 6.637166e+10
## 16398 5.763326e+10
## 16399 4.542785e+10
## 16400 3.955251e+10
## 16401 3.506411e+10
## 16402 3.268520e+10
## 16403 3.117252e+10
## 16404 2.868366e+10
## 16405 2.720960e+10
## 16406 2.684370e+10
## 16407 2.465747e+10
## 16408 2.073616e+10
## 16409 1.628643e+10
## 16410 1.318095e+10
## 16411 9.866990e+09
## 16412 9.613370e+09
## 16413 6.471741e+09
## 16414 6.293305e+09
## 16415 2.542381e+10
## 16416 3.665811e+10
## 16417 2.633662e+10
## 16418 1.409469e+10
## 16419           NA
## 16420           NA
## 16421           NA
## 16422           NA
## 16423           NA
## 16424           NA
## 16425           NA
## 16426           NA
## 16427           NA
## 16428           NA
## 16429           NA
## 16430           NA
## 16431           NA
## 16432           NA
## 16433           NA
## 16434           NA
## 16435           NA
## 16436           NA
## 16437           NA
## 16438           NA
## 16439           NA
## 16440           NA
## 16441           NA
## 16442           NA
## 16443           NA
## 16444           NA
## 16445           NA
## 16446 4.204000e+09
## 16447 4.117000e+09
## 16448 3.922000e+09
## 16449 3.794000e+09
## 16450 3.798000e+09
## 16451 3.663000e+09
## 16452 3.565000e+09
## 16453 3.738000e+09
## 16454 4.089000e+09
## 16455 4.223000e+09
## 16456 4.324000e+09
## 16457 4.201000e+09
## 16458 4.244000e+09
## 16459 4.784000e+09
## 16460 4.484000e+09
## 16461 4.428000e+09
## 16462 3.797000e+09
## 16463 3.443000e+09
## 16464 3.262000e+09
## 16465           NA
## 16466           NA
## 16467           NA
## 16468           NA
## 16469           NA
## 16470           NA
## 16471           NA
## 16472           NA
## 16473           NA
## 16474           NA
## 16475           NA
## 16476           NA
## 16477           NA
## 16478           NA
## 16479           NA
## 16480           NA
## 16481           NA
## 16482           NA
## 16483           NA
## 16484           NA
## 16485           NA
## 16486           NA
## 16487           NA
## 16488           NA
## 16489           NA
## 16490           NA
## 16491           NA
## 16492           NA
## 16493           NA
## 16494           NA
## 16495           NA
## 16496           NA
## 16497           NA
## 16498           NA
## 16499           NA
## 16500           NA
## 16501           NA
## 16502           NA
## 16503           NA
## 16504           NA
## 16505           NA
## 16506           NA
## 16507           NA
## 16508 1.803680e+10
## 16509 1.553170e+10
## 16510 1.713350e+10
## 16511 1.627660e+10
## 16512 1.612800e+10
## 16513 1.540540e+10
## 16514 1.397240e+10
## 16515 1.398970e+10
## 16516 1.351550e+10
## 16517 1.220840e+10
## 16518 1.118610e+10
## 16519 9.681500e+09
## 16520 8.085700e+09
## 16521 7.310400e+09
## 16522 5.815700e+09
## 16523 5.348300e+09
## 16524 5.125700e+09
## 16525 4.603100e+09
## 16526 3.968000e+09
## 16527 3.555800e+09
## 16528 4.003700e+09
## 16529 4.313600e+09
## 16530 4.271200e+09
## 16531 4.067800e+09
## 16532 3.759800e+09
## 16533 3.409600e+09
## 16534 3.282800e+09
## 16535 2.843300e+09
## 16536           NA
## 16537           NA
## 16538           NA
## 16539           NA
## 16540           NA
## 16541           NA
## 16542           NA
## 16543           NA
## 16544           NA
## 16545           NA
## 16546           NA
## 16547           NA
## 16548           NA
## 16549           NA
## 16550           NA
## 16551           NA
## 16552           NA
## 16553           NA
## 16554           NA
## 16555           NA
## 16556           NA
## 16557           NA
## 16558           NA
## 16559           NA
## 16560           NA
## 16561           NA
## 16562           NA
## 16563           NA
## 16564           NA
## 16565           NA
## 16566           NA
## 16567           NA
## 16568           NA
## 16569           NA
## 16570           NA
## 16571           NA
## 16572           NA
## 16573           NA
## 16574 2.160616e+10
## 16575 2.684223e+10
## 16576 3.131783e+10
## 16577 4.244450e+10
## 16578 4.322859e+10
## 16579 4.041523e+10
## 16580 3.540132e+10
## 16581 3.272642e+10
## 16582 3.090675e+10
## 16583 2.513027e+10
## 16584 2.691085e+10
## 16585 2.165053e+10
## 16586 1.906198e+10
## 16587 1.674634e+10
## 16588 1.387279e+10
## 16589 1.177797e+10
## 16590 1.069463e+10
## 16591 9.861560e+09
## 16592 9.652436e+09
## 16593 7.641103e+09
## 16594 6.325142e+09
## 16595 6.838557e+09
## 16596 5.785685e+09
## 16597 4.258789e+09
## 16598 4.167356e+09
## 16599 5.368271e+09
## 16600 6.463650e+09
## 16601 5.930370e+09
## 16602 5.647119e+09
## 16603           NA
## 16604           NA
## 16605           NA
## 16606           NA
## 16607           NA
## 16608           NA
## 16609           NA
## 16610           NA
## 16611           NA
## 16612           NA
## 16613           NA
## 16614           NA
## 16615           NA
## 16616           NA
## 16617           NA
## 16618           NA
## 16619           NA
## 16620           NA
## 16621           NA
## 16622           NA
## 16623           NA
## 16624           NA
## 16625           NA
## 16626           NA
## 16627           NA
## 16628           NA
## 16629           NA
## 16630           NA
## 16631           NA
## 16632           NA
## 16633           NA
## 16634 2.214763e+10
## 16635 1.811063e+10
## 16636 2.330867e+10
## 16637 2.631159e+10
## 16638 2.587360e+10
## 16639 2.095841e+10
## 16640 2.125122e+10
## 16641 2.714102e+10
## 16642 2.803724e+10
## 16643 2.550306e+10
## 16644 2.345952e+10
## 16645 2.026556e+10
## 16646 1.532834e+10
## 16647 1.791086e+10
## 16648 1.405696e+10
## 16649 1.275686e+10
## 16650 8.331870e+09
## 16651 6.221078e+09
## 16652 4.901840e+09
## 16653 4.193846e+09
## 16654 4.094481e+09
## 16655 3.600683e+09
## 16656 3.404312e+09
## 16657 3.537683e+09
## 16658 4.303282e+09
## 16659 3.597221e+09
## 16660 3.807067e+09
## 16661 3.656648e+09
## 16662 3.273238e+09
## 16663 3.181922e+09
## 16664 3.378882e+09
## 16665 3.285217e+09
## 16666 3.998638e+09
## 16667 3.713614e+09
## 16668 2.269895e+09
## 16669 1.661949e+09
## 16670 2.281258e+09
## 16671 2.739444e+09
## 16672 3.216308e+09
## 16673 3.994778e+09
## 16674 3.872667e+09
## 16675 3.829500e+09
## 16676 3.325500e+09
## 16677 2.813375e+09
## 16678 2.483000e+09
## 16679 2.746714e+09
## 16680 2.618667e+09
## 16681 3.121833e+09
## 16682 2.268714e+09
## 16683 1.910714e+09
## 16684 1.687000e+09
## 16685 1.825286e+09
## 16686 1.965714e+09
## 16687 1.605857e+09
## 16688 1.368000e+09
## 16689 1.264286e+09
## 16690 1.082857e+09
## 16691 8.394286e+08
## 16692 7.187143e+08
## 16693 6.931429e+08
## 16694 6.962857e+08
## 16695 7.130000e+08
## 16696           NA
## 16697 2.837124e+10
## 16698 2.150970e+10
## 16699 2.183223e+10
## 16700 3.415607e+10
## 16701 1.758489e+10
## 16702 2.054868e+10
## 16703 1.996312e+10
## 16704 1.949552e+10
## 16705 1.909102e+10
## 16706 1.711485e+10
## 16707 1.410192e+10
## 16708 1.204166e+10
## 16709 9.665793e+09
## 16710 4.415703e+09
## 16711 5.291950e+09
## 16712 5.443896e+09
## 16713 5.755215e+09
## 16714 5.805598e+09
## 16715 5.727592e+09
## 16716 6.342116e+09
## 16717 6.777385e+09
## 16718 6.689958e+09
## 16719 6.858013e+09
## 16720 6.401968e+09
## 16721 8.529572e+09
## 16722 8.553147e+09
## 16723 7.111271e+09
## 16724 6.890675e+09
## 16725 6.563813e+09
## 16726 6.751472e+09
## 16727 8.641482e+09
## 16728 8.783817e+09
## 16729 8.286323e+09
## 16730 7.814784e+09
## 16731 6.741215e+09
## 16732 6.217524e+09
## 16733 5.637259e+09
## 16734 6.352126e+09
## 16735 7.764067e+09
## 16736 8.539701e+09
## 16737 8.011374e+09
## 16738 6.678868e+09
## 16739 5.177459e+09
## 16740 4.351600e+09
## 16741 4.364382e+09
## 16742 4.318372e+09
## 16743 4.371301e+09
## 16744 3.982161e+09
## 16745 3.309354e+09
## 16746 2.677729e+09
## 16747 2.178716e+09
## 16748 1.884206e+09
## 16749 1.747999e+09
## 16750 1.479600e+09
## 16751 1.397002e+09
## 16752 1.281750e+09
## 16753 1.311436e+09
## 16754 1.217138e+09
## 16755 1.159512e+09
## 16756 1.117602e+09
## 16757 1.096647e+09
## 16758 1.052990e+09

ダウンロード例 1-3

df_gdp3 <- WDI(country = "all", indicator = c(gdp = "NY.GDP.MKTP.CD"), extra=TRUE, cache=wdi_cache)
df_gdp3
##                                            country iso2c iso3c year
## 1                                      Afghanistan    AF   AFG 2022
## 2                                      Afghanistan    AF   AFG 2021
## 3                                      Afghanistan    AF   AFG 2020
## 4                                      Afghanistan    AF   AFG 2019
## 5                                      Afghanistan    AF   AFG 2018
## 6                                      Afghanistan    AF   AFG 2017
## 7                                      Afghanistan    AF   AFG 2016
## 8                                      Afghanistan    AF   AFG 2015
## 9                                      Afghanistan    AF   AFG 2014
## 10                                     Afghanistan    AF   AFG 2013
## 11                                     Afghanistan    AF   AFG 2012
## 12                                     Afghanistan    AF   AFG 2011
## 13                                     Afghanistan    AF   AFG 2010
## 14                                     Afghanistan    AF   AFG 2009
## 15                                     Afghanistan    AF   AFG 2008
## 16                                     Afghanistan    AF   AFG 2007
## 17                                     Afghanistan    AF   AFG 2006
## 18                                     Afghanistan    AF   AFG 2005
## 19                                     Afghanistan    AF   AFG 2004
## 20                                     Afghanistan    AF   AFG 2003
## 21                                     Afghanistan    AF   AFG 2002
## 22                                     Afghanistan    AF   AFG 2001
## 23                                     Afghanistan    AF   AFG 2000
## 24                                     Afghanistan    AF   AFG 1999
## 25                                     Afghanistan    AF   AFG 1998
## 26                                     Afghanistan    AF   AFG 1997
## 27                                     Afghanistan    AF   AFG 1996
## 28                                     Afghanistan    AF   AFG 1995
## 29                                     Afghanistan    AF   AFG 1994
## 30                                     Afghanistan    AF   AFG 1993
## 31                                     Afghanistan    AF   AFG 1992
## 32                                     Afghanistan    AF   AFG 1991
## 33                                     Afghanistan    AF   AFG 1990
## 34                                     Afghanistan    AF   AFG 1989
## 35                                     Afghanistan    AF   AFG 1988
## 36                                     Afghanistan    AF   AFG 1987
## 37                                     Afghanistan    AF   AFG 1986
## 38                                     Afghanistan    AF   AFG 1985
## 39                                     Afghanistan    AF   AFG 1984
## 40                                     Afghanistan    AF   AFG 1983
## 41                                     Afghanistan    AF   AFG 1982
## 42                                     Afghanistan    AF   AFG 1981
## 43                                     Afghanistan    AF   AFG 1980
## 44                                     Afghanistan    AF   AFG 1979
## 45                                     Afghanistan    AF   AFG 1978
## 46                                     Afghanistan    AF   AFG 1977
## 47                                     Afghanistan    AF   AFG 1976
## 48                                     Afghanistan    AF   AFG 1975
## 49                                     Afghanistan    AF   AFG 1974
## 50                                     Afghanistan    AF   AFG 1973
## 51                                     Afghanistan    AF   AFG 1972
## 52                                     Afghanistan    AF   AFG 1971
## 53                                     Afghanistan    AF   AFG 1970
## 54                                     Afghanistan    AF   AFG 1969
## 55                                     Afghanistan    AF   AFG 1968
## 56                                     Afghanistan    AF   AFG 1967
## 57                                     Afghanistan    AF   AFG 1966
## 58                                     Afghanistan    AF   AFG 1965
## 59                                     Afghanistan    AF   AFG 1964
## 60                                     Afghanistan    AF   AFG 1963
## 61                                     Afghanistan    AF   AFG 1962
## 62                                     Afghanistan    AF   AFG 1961
## 63                                     Afghanistan    AF   AFG 1960
## 64                     Africa Eastern and Southern    ZH   AFE 2004
## 65                     Africa Eastern and Southern    ZH   AFE 1994
## 66                     Africa Eastern and Southern    ZH   AFE 2017
## 67                     Africa Eastern and Southern    ZH   AFE 2005
## 68                     Africa Eastern and Southern    ZH   AFE 2013
## 69                     Africa Eastern and Southern    ZH   AFE 2018
## 70                     Africa Eastern and Southern    ZH   AFE 2014
## 71                     Africa Eastern and Southern    ZH   AFE 1982
## 72                     Africa Eastern and Southern    ZH   AFE 2016
## 73                     Africa Eastern and Southern    ZH   AFE 2019
## 74                     Africa Eastern and Southern    ZH   AFE 2020
## 75                     Africa Eastern and Southern    ZH   AFE 1978
## 76                     Africa Eastern and Southern    ZH   AFE 1981
## 77                     Africa Eastern and Southern    ZH   AFE 2021
## 78                     Africa Eastern and Southern    ZH   AFE 2015
## 79                     Africa Eastern and Southern    ZH   AFE 2011
## 80                     Africa Eastern and Southern    ZH   AFE 1977
## 81                     Africa Eastern and Southern    ZH   AFE 1980
## 82                     Africa Eastern and Southern    ZH   AFE 2012
## 83                     Africa Eastern and Southern    ZH   AFE 2007
## 84                     Africa Eastern and Southern    ZH   AFE 2006
## 85                     Africa Eastern and Southern    ZH   AFE 1976
## 86                     Africa Eastern and Southern    ZH   AFE 2008
## 87                     Africa Eastern and Southern    ZH   AFE 1979
## 88                     Africa Eastern and Southern    ZH   AFE 1965
## 89                     Africa Eastern and Southern    ZH   AFE 1968
## 90                     Africa Eastern and Southern    ZH   AFE 1967
## 91                     Africa Eastern and Southern    ZH   AFE 2002
## 92                     Africa Eastern and Southern    ZH   AFE 2001
## 93                     Africa Eastern and Southern    ZH   AFE 1964
## 94                     Africa Eastern and Southern    ZH   AFE 2003
## 95                     Africa Eastern and Southern    ZH   AFE 1998
## 96                     Africa Eastern and Southern    ZH   AFE 1997
## 97                     Africa Eastern and Southern    ZH   AFE 1996
## 98                     Africa Eastern and Southern    ZH   AFE 1995
## 99                     Africa Eastern and Southern    ZH   AFE 1970
## 100                    Africa Eastern and Southern    ZH   AFE 1993
## 101                    Africa Eastern and Southern    ZH   AFE 1992
## 102                    Africa Eastern and Southern    ZH   AFE 1991
## 103                    Africa Eastern and Southern    ZH   AFE 1990
## 104                    Africa Eastern and Southern    ZH   AFE 1989
## 105                    Africa Eastern and Southern    ZH   AFE 1988
## 106                    Africa Eastern and Southern    ZH   AFE 2010
## 107                    Africa Eastern and Southern    ZH   AFE 2009
## 108                    Africa Eastern and Southern    ZH   AFE 2022
## 109                    Africa Eastern and Southern    ZH   AFE 1985
## 110                    Africa Eastern and Southern    ZH   AFE 1984
## 111                    Africa Eastern and Southern    ZH   AFE 1983
## 112                    Africa Eastern and Southern    ZH   AFE 1975
## 113                    Africa Eastern and Southern    ZH   AFE 1969
## 114                    Africa Eastern and Southern    ZH   AFE 1966
## 115                    Africa Eastern and Southern    ZH   AFE 1961
## 116                    Africa Eastern and Southern    ZH   AFE 1971
## 117                    Africa Eastern and Southern    ZH   AFE 1963
## 118                    Africa Eastern and Southern    ZH   AFE 1962
## 119                    Africa Eastern and Southern    ZH   AFE 1972
## 120                    Africa Eastern and Southern    ZH   AFE 1960
## 121                    Africa Eastern and Southern    ZH   AFE 1974
## 122                    Africa Eastern and Southern    ZH   AFE 1973
## 123                    Africa Eastern and Southern    ZH   AFE 1986
## 124                    Africa Eastern and Southern    ZH   AFE 2000
## 125                    Africa Eastern and Southern    ZH   AFE 1999
## 126                    Africa Eastern and Southern    ZH   AFE 1987
## 127                     Africa Western and Central    ZI   AFW 1971
## 128                     Africa Western and Central    ZI   AFW 1996
## 129                     Africa Western and Central    ZI   AFW 2000
## 130                     Africa Western and Central    ZI   AFW 1999
## 131                     Africa Western and Central    ZI   AFW 1997
## 132                     Africa Western and Central    ZI   AFW 1984
## 133                     Africa Western and Central    ZI   AFW 1983
## 134                     Africa Western and Central    ZI   AFW 1995
## 135                     Africa Western and Central    ZI   AFW 1998
## 136                     Africa Western and Central    ZI   AFW 1993
## 137                     Africa Western and Central    ZI   AFW 1973
## 138                     Africa Western and Central    ZI   AFW 1972
## 139                     Africa Western and Central    ZI   AFW 1994
## 140                     Africa Western and Central    ZI   AFW 1974
## 141                     Africa Western and Central    ZI   AFW 1970
## 142                     Africa Western and Central    ZI   AFW 1969
## 143                     Africa Western and Central    ZI   AFW 2016
## 144                     Africa Western and Central    ZI   AFW 2015
## 145                     Africa Western and Central    ZI   AFW 1966
## 146                     Africa Western and Central    ZI   AFW 1965
## 147                     Africa Western and Central    ZI   AFW 1968
## 148                     Africa Western and Central    ZI   AFW 1967
## 149                     Africa Western and Central    ZI   AFW 2003
## 150                     Africa Western and Central    ZI   AFW 2002
## 151                     Africa Western and Central    ZI   AFW 2001
## 152                     Africa Western and Central    ZI   AFW 1987
## 153                     Africa Western and Central    ZI   AFW 1986
## 154                     Africa Western and Central    ZI   AFW 2017
## 155                     Africa Western and Central    ZI   AFW 1985
## 156                     Africa Western and Central    ZI   AFW 2013
## 157                     Africa Western and Central    ZI   AFW 1982
## 158                     Africa Western and Central    ZI   AFW 1981
## 159                     Africa Western and Central    ZI   AFW 1980
## 160                     Africa Western and Central    ZI   AFW 1992
## 161                     Africa Western and Central    ZI   AFW 1975
## 162                     Africa Western and Central    ZI   AFW 1990
## 163                     Africa Western and Central    ZI   AFW 1989
## 164                     Africa Western and Central    ZI   AFW 1988
## 165                     Africa Western and Central    ZI   AFW 2019
## 166                     Africa Western and Central    ZI   AFW 2018
## 167                     Africa Western and Central    ZI   AFW 2011
## 168                     Africa Western and Central    ZI   AFW 2014
## 169                     Africa Western and Central    ZI   AFW 1979
## 170                     Africa Western and Central    ZI   AFW 2012
## 171                     Africa Western and Central    ZI   AFW 1977
## 172                     Africa Western and Central    ZI   AFW 2010
## 173                     Africa Western and Central    ZI   AFW 2020
## 174                     Africa Western and Central    ZI   AFW 1991
## 175                     Africa Western and Central    ZI   AFW 2004
## 176                     Africa Western and Central    ZI   AFW 1976
## 177                     Africa Western and Central    ZI   AFW 1962
## 178                     Africa Western and Central    ZI   AFW 1960
## 179                     Africa Western and Central    ZI   AFW 1964
## 180                     Africa Western and Central    ZI   AFW 1963
## 181                     Africa Western and Central    ZI   AFW 1978
## 182                     Africa Western and Central    ZI   AFW 2009
## 183                     Africa Western and Central    ZI   AFW 2005
## 184                     Africa Western and Central    ZI   AFW 2006
## 185                     Africa Western and Central    ZI   AFW 1961
## 186                     Africa Western and Central    ZI   AFW 2021
## 187                     Africa Western and Central    ZI   AFW 2022
## 188                     Africa Western and Central    ZI   AFW 2007
## 189                     Africa Western and Central    ZI   AFW 2008
## 190                                        Albania    AL   ALB 2022
## 191                                        Albania    AL   ALB 2021
## 192                                        Albania    AL   ALB 2020
## 193                                        Albania    AL   ALB 2019
## 194                                        Albania    AL   ALB 2018
## 195                                        Albania    AL   ALB 2017
## 196                                        Albania    AL   ALB 2016
## 197                                        Albania    AL   ALB 2015
## 198                                        Albania    AL   ALB 2014
## 199                                        Albania    AL   ALB 2013
## 200                                        Albania    AL   ALB 2012
## 201                                        Albania    AL   ALB 2011
## 202                                        Albania    AL   ALB 2010
## 203                                        Albania    AL   ALB 2009
## 204                                        Albania    AL   ALB 2008
## 205                                        Albania    AL   ALB 2007
## 206                                        Albania    AL   ALB 2006
## 207                                        Albania    AL   ALB 2005
## 208                                        Albania    AL   ALB 2004
## 209                                        Albania    AL   ALB 2003
## 210                                        Albania    AL   ALB 2002
## 211                                        Albania    AL   ALB 2001
## 212                                        Albania    AL   ALB 2000
## 213                                        Albania    AL   ALB 1999
## 214                                        Albania    AL   ALB 1998
## 215                                        Albania    AL   ALB 1997
## 216                                        Albania    AL   ALB 1996
## 217                                        Albania    AL   ALB 1995
## 218                                        Albania    AL   ALB 1994
## 219                                        Albania    AL   ALB 1993
## 220                                        Albania    AL   ALB 1992
## 221                                        Albania    AL   ALB 1991
## 222                                        Albania    AL   ALB 1990
## 223                                        Albania    AL   ALB 1989
## 224                                        Albania    AL   ALB 1988
## 225                                        Albania    AL   ALB 1987
## 226                                        Albania    AL   ALB 1986
## 227                                        Albania    AL   ALB 1985
## 228                                        Albania    AL   ALB 1984
## 229                                        Albania    AL   ALB 1983
## 230                                        Albania    AL   ALB 1982
## 231                                        Albania    AL   ALB 1981
## 232                                        Albania    AL   ALB 1980
## 233                                        Albania    AL   ALB 1979
## 234                                        Albania    AL   ALB 1978
## 235                                        Albania    AL   ALB 1977
## 236                                        Albania    AL   ALB 1976
## 237                                        Albania    AL   ALB 1975
## 238                                        Albania    AL   ALB 1974
## 239                                        Albania    AL   ALB 1973
## 240                                        Albania    AL   ALB 1972
## 241                                        Albania    AL   ALB 1971
## 242                                        Albania    AL   ALB 1970
## 243                                        Albania    AL   ALB 1969
## 244                                        Albania    AL   ALB 1968
## 245                                        Albania    AL   ALB 1967
## 246                                        Albania    AL   ALB 1966
## 247                                        Albania    AL   ALB 1965
## 248                                        Albania    AL   ALB 1964
## 249                                        Albania    AL   ALB 1963
## 250                                        Albania    AL   ALB 1962
## 251                                        Albania    AL   ALB 1961
## 252                                        Albania    AL   ALB 1960
## 253                                        Algeria    DZ   DZA 2022
## 254                                        Algeria    DZ   DZA 2021
## 255                                        Algeria    DZ   DZA 2020
## 256                                        Algeria    DZ   DZA 2019
## 257                                        Algeria    DZ   DZA 2018
## 258                                        Algeria    DZ   DZA 2017
## 259                                        Algeria    DZ   DZA 2016
## 260                                        Algeria    DZ   DZA 2015
## 261                                        Algeria    DZ   DZA 2014
## 262                                        Algeria    DZ   DZA 2013
## 263                                        Algeria    DZ   DZA 2012
## 264                                        Algeria    DZ   DZA 2011
## 265                                        Algeria    DZ   DZA 2010
## 266                                        Algeria    DZ   DZA 2009
## 267                                        Algeria    DZ   DZA 2008
## 268                                        Algeria    DZ   DZA 2007
## 269                                        Algeria    DZ   DZA 2006
## 270                                        Algeria    DZ   DZA 2005
## 271                                        Algeria    DZ   DZA 2004
## 272                                        Algeria    DZ   DZA 2003
## 273                                        Algeria    DZ   DZA 2002
## 274                                        Algeria    DZ   DZA 2001
## 275                                        Algeria    DZ   DZA 2000
## 276                                        Algeria    DZ   DZA 1999
## 277                                        Algeria    DZ   DZA 1998
## 278                                        Algeria    DZ   DZA 1997
## 279                                        Algeria    DZ   DZA 1996
## 280                                        Algeria    DZ   DZA 1995
## 281                                        Algeria    DZ   DZA 1994
## 282                                        Algeria    DZ   DZA 1993
## 283                                        Algeria    DZ   DZA 1992
## 284                                        Algeria    DZ   DZA 1991
## 285                                        Algeria    DZ   DZA 1990
## 286                                        Algeria    DZ   DZA 1989
## 287                                        Algeria    DZ   DZA 1988
## 288                                        Algeria    DZ   DZA 1987
## 289                                        Algeria    DZ   DZA 1986
## 290                                        Algeria    DZ   DZA 1985
## 291                                        Algeria    DZ   DZA 1984
## 292                                        Algeria    DZ   DZA 1983
## 293                                        Algeria    DZ   DZA 1982
## 294                                        Algeria    DZ   DZA 1981
## 295                                        Algeria    DZ   DZA 1980
## 296                                        Algeria    DZ   DZA 1979
## 297                                        Algeria    DZ   DZA 1978
## 298                                        Algeria    DZ   DZA 1977
## 299                                        Algeria    DZ   DZA 1976
## 300                                        Algeria    DZ   DZA 1975
## 301                                        Algeria    DZ   DZA 1974
## 302                                        Algeria    DZ   DZA 1973
## 303                                        Algeria    DZ   DZA 1972
## 304                                        Algeria    DZ   DZA 1971
## 305                                        Algeria    DZ   DZA 1970
## 306                                        Algeria    DZ   DZA 1969
## 307                                        Algeria    DZ   DZA 1968
## 308                                        Algeria    DZ   DZA 1967
## 309                                        Algeria    DZ   DZA 1966
## 310                                        Algeria    DZ   DZA 1965
## 311                                        Algeria    DZ   DZA 1964
## 312                                        Algeria    DZ   DZA 1963
## 313                                        Algeria    DZ   DZA 1962
## 314                                        Algeria    DZ   DZA 1961
## 315                                        Algeria    DZ   DZA 1960
## 316                                 American Samoa    AS   ASM 2022
## 317                                 American Samoa    AS   ASM 2021
## 318                                 American Samoa    AS   ASM 2020
## 319                                 American Samoa    AS   ASM 2019
## 320                                 American Samoa    AS   ASM 2018
## 321                                 American Samoa    AS   ASM 2017
## 322                                 American Samoa    AS   ASM 2016
## 323                                 American Samoa    AS   ASM 2015
## 324                                 American Samoa    AS   ASM 2014
## 325                                 American Samoa    AS   ASM 2013
## 326                                 American Samoa    AS   ASM 2012
## 327                                 American Samoa    AS   ASM 2011
## 328                                 American Samoa    AS   ASM 2010
## 329                                 American Samoa    AS   ASM 2009
## 330                                 American Samoa    AS   ASM 2008
## 331                                 American Samoa    AS   ASM 2007
## 332                                 American Samoa    AS   ASM 2006
## 333                                 American Samoa    AS   ASM 2005
## 334                                 American Samoa    AS   ASM 2004
## 335                                 American Samoa    AS   ASM 2003
## 336                                 American Samoa    AS   ASM 2002
## 337                                 American Samoa    AS   ASM 2001
## 338                                 American Samoa    AS   ASM 2000
## 339                                 American Samoa    AS   ASM 1999
## 340                                 American Samoa    AS   ASM 1998
## 341                                 American Samoa    AS   ASM 1997
## 342                                 American Samoa    AS   ASM 1996
## 343                                 American Samoa    AS   ASM 1995
## 344                                 American Samoa    AS   ASM 1994
## 345                                 American Samoa    AS   ASM 1993
## 346                                 American Samoa    AS   ASM 1992
## 347                                 American Samoa    AS   ASM 1991
## 348                                 American Samoa    AS   ASM 1990
## 349                                 American Samoa    AS   ASM 1989
## 350                                 American Samoa    AS   ASM 1988
## 351                                 American Samoa    AS   ASM 1987
## 352                                 American Samoa    AS   ASM 1986
## 353                                 American Samoa    AS   ASM 1985
## 354                                 American Samoa    AS   ASM 1984
## 355                                 American Samoa    AS   ASM 1983
## 356                                 American Samoa    AS   ASM 1982
## 357                                 American Samoa    AS   ASM 1981
## 358                                 American Samoa    AS   ASM 1980
## 359                                 American Samoa    AS   ASM 1979
## 360                                 American Samoa    AS   ASM 1978
## 361                                 American Samoa    AS   ASM 1977
## 362                                 American Samoa    AS   ASM 1976
## 363                                 American Samoa    AS   ASM 1975
## 364                                 American Samoa    AS   ASM 1974
## 365                                 American Samoa    AS   ASM 1973
## 366                                 American Samoa    AS   ASM 1972
## 367                                 American Samoa    AS   ASM 1971
## 368                                 American Samoa    AS   ASM 1970
## 369                                 American Samoa    AS   ASM 1969
## 370                                 American Samoa    AS   ASM 1968
## 371                                 American Samoa    AS   ASM 1967
## 372                                 American Samoa    AS   ASM 1966
## 373                                 American Samoa    AS   ASM 1965
## 374                                 American Samoa    AS   ASM 1964
## 375                                 American Samoa    AS   ASM 1963
## 376                                 American Samoa    AS   ASM 1962
## 377                                 American Samoa    AS   ASM 1961
## 378                                 American Samoa    AS   ASM 1960
## 379                                        Andorra    AD   AND 2022
## 380                                        Andorra    AD   AND 2021
## 381                                        Andorra    AD   AND 2020
## 382                                        Andorra    AD   AND 2019
## 383                                        Andorra    AD   AND 2018
## 384                                        Andorra    AD   AND 2017
## 385                                        Andorra    AD   AND 2016
## 386                                        Andorra    AD   AND 2015
## 387                                        Andorra    AD   AND 2014
## 388                                        Andorra    AD   AND 2013
## 389                                        Andorra    AD   AND 2012
## 390                                        Andorra    AD   AND 2011
## 391                                        Andorra    AD   AND 2010
## 392                                        Andorra    AD   AND 2009
## 393                                        Andorra    AD   AND 2008
## 394                                        Andorra    AD   AND 2007
## 395                                        Andorra    AD   AND 2006
## 396                                        Andorra    AD   AND 2005
## 397                                        Andorra    AD   AND 2004
## 398                                        Andorra    AD   AND 2003
## 399                                        Andorra    AD   AND 2002
## 400                                        Andorra    AD   AND 2001
## 401                                        Andorra    AD   AND 2000
## 402                                        Andorra    AD   AND 1999
## 403                                        Andorra    AD   AND 1998
## 404                                        Andorra    AD   AND 1997
## 405                                        Andorra    AD   AND 1996
## 406                                        Andorra    AD   AND 1995
## 407                                        Andorra    AD   AND 1994
## 408                                        Andorra    AD   AND 1993
## 409                                        Andorra    AD   AND 1992
## 410                                        Andorra    AD   AND 1991
## 411                                        Andorra    AD   AND 1990
## 412                                        Andorra    AD   AND 1989
## 413                                        Andorra    AD   AND 1988
## 414                                        Andorra    AD   AND 1987
## 415                                        Andorra    AD   AND 1986
## 416                                        Andorra    AD   AND 1985
## 417                                        Andorra    AD   AND 1984
## 418                                        Andorra    AD   AND 1983
## 419                                        Andorra    AD   AND 1982
## 420                                        Andorra    AD   AND 1981
## 421                                        Andorra    AD   AND 1980
## 422                                        Andorra    AD   AND 1979
## 423                                        Andorra    AD   AND 1978
## 424                                        Andorra    AD   AND 1977
## 425                                        Andorra    AD   AND 1976
## 426                                        Andorra    AD   AND 1975
## 427                                        Andorra    AD   AND 1974
## 428                                        Andorra    AD   AND 1973
## 429                                        Andorra    AD   AND 1972
## 430                                        Andorra    AD   AND 1971
## 431                                        Andorra    AD   AND 1970
## 432                                        Andorra    AD   AND 1969
## 433                                        Andorra    AD   AND 1968
## 434                                        Andorra    AD   AND 1967
## 435                                        Andorra    AD   AND 1966
## 436                                        Andorra    AD   AND 1965
## 437                                        Andorra    AD   AND 1964
## 438                                        Andorra    AD   AND 1963
## 439                                        Andorra    AD   AND 1962
## 440                                        Andorra    AD   AND 1961
## 441                                        Andorra    AD   AND 1960
## 442                                         Angola    AO   AGO 2022
## 443                                         Angola    AO   AGO 2021
## 444                                         Angola    AO   AGO 2020
## 445                                         Angola    AO   AGO 2019
## 446                                         Angola    AO   AGO 2018
## 447                                         Angola    AO   AGO 2017
## 448                                         Angola    AO   AGO 2016
## 449                                         Angola    AO   AGO 2015
## 450                                         Angola    AO   AGO 2014
## 451                                         Angola    AO   AGO 2013
## 452                                         Angola    AO   AGO 2012
## 453                                         Angola    AO   AGO 2011
## 454                                         Angola    AO   AGO 2010
## 455                                         Angola    AO   AGO 2009
## 456                                         Angola    AO   AGO 2008
## 457                                         Angola    AO   AGO 2007
## 458                                         Angola    AO   AGO 2006
## 459                                         Angola    AO   AGO 2005
## 460                                         Angola    AO   AGO 2004
## 461                                         Angola    AO   AGO 2003
## 462                                         Angola    AO   AGO 2002
## 463                                         Angola    AO   AGO 2001
## 464                                         Angola    AO   AGO 2000
## 465                                         Angola    AO   AGO 1999
## 466                                         Angola    AO   AGO 1998
## 467                                         Angola    AO   AGO 1997
## 468                                         Angola    AO   AGO 1996
## 469                                         Angola    AO   AGO 1995
## 470                                         Angola    AO   AGO 1994
## 471                                         Angola    AO   AGO 1993
## 472                                         Angola    AO   AGO 1992
## 473                                         Angola    AO   AGO 1991
## 474                                         Angola    AO   AGO 1990
## 475                                         Angola    AO   AGO 1989
## 476                                         Angola    AO   AGO 1988
## 477                                         Angola    AO   AGO 1987
## 478                                         Angola    AO   AGO 1986
## 479                                         Angola    AO   AGO 1985
## 480                                         Angola    AO   AGO 1984
## 481                                         Angola    AO   AGO 1983
## 482                                         Angola    AO   AGO 1982
## 483                                         Angola    AO   AGO 1981
## 484                                         Angola    AO   AGO 1980
## 485                                         Angola    AO   AGO 1979
## 486                                         Angola    AO   AGO 1978
## 487                                         Angola    AO   AGO 1977
## 488                                         Angola    AO   AGO 1976
## 489                                         Angola    AO   AGO 1975
## 490                                         Angola    AO   AGO 1974
## 491                                         Angola    AO   AGO 1973
## 492                                         Angola    AO   AGO 1972
## 493                                         Angola    AO   AGO 1971
## 494                                         Angola    AO   AGO 1970
## 495                                         Angola    AO   AGO 1969
## 496                                         Angola    AO   AGO 1968
## 497                                         Angola    AO   AGO 1967
## 498                                         Angola    AO   AGO 1966
## 499                                         Angola    AO   AGO 1965
## 500                                         Angola    AO   AGO 1964
## 501                                         Angola    AO   AGO 1963
## 502                                         Angola    AO   AGO 1962
## 503                                         Angola    AO   AGO 1961
## 504                                         Angola    AO   AGO 1960
## 505                            Antigua and Barbuda    AG   ATG 2022
## 506                            Antigua and Barbuda    AG   ATG 2021
## 507                            Antigua and Barbuda    AG   ATG 2020
## 508                            Antigua and Barbuda    AG   ATG 2019
## 509                            Antigua and Barbuda    AG   ATG 2018
## 510                            Antigua and Barbuda    AG   ATG 2017
## 511                            Antigua and Barbuda    AG   ATG 2016
## 512                            Antigua and Barbuda    AG   ATG 2015
## 513                            Antigua and Barbuda    AG   ATG 2014
## 514                            Antigua and Barbuda    AG   ATG 2013
## 515                            Antigua and Barbuda    AG   ATG 2012
## 516                            Antigua and Barbuda    AG   ATG 2011
## 517                            Antigua and Barbuda    AG   ATG 2010
## 518                            Antigua and Barbuda    AG   ATG 2009
## 519                            Antigua and Barbuda    AG   ATG 2008
## 520                            Antigua and Barbuda    AG   ATG 2007
## 521                            Antigua and Barbuda    AG   ATG 2006
## 522                            Antigua and Barbuda    AG   ATG 2005
## 523                            Antigua and Barbuda    AG   ATG 2004
## 524                            Antigua and Barbuda    AG   ATG 2003
## 525                            Antigua and Barbuda    AG   ATG 2002
## 526                            Antigua and Barbuda    AG   ATG 2001
## 527                            Antigua and Barbuda    AG   ATG 2000
## 528                            Antigua and Barbuda    AG   ATG 1999
## 529                            Antigua and Barbuda    AG   ATG 1998
## 530                            Antigua and Barbuda    AG   ATG 1997
## 531                            Antigua and Barbuda    AG   ATG 1996
## 532                            Antigua and Barbuda    AG   ATG 1995
## 533                            Antigua and Barbuda    AG   ATG 1994
## 534                            Antigua and Barbuda    AG   ATG 1993
## 535                            Antigua and Barbuda    AG   ATG 1992
## 536                            Antigua and Barbuda    AG   ATG 1991
## 537                            Antigua and Barbuda    AG   ATG 1990
## 538                            Antigua and Barbuda    AG   ATG 1989
## 539                            Antigua and Barbuda    AG   ATG 1988
## 540                            Antigua and Barbuda    AG   ATG 1987
## 541                            Antigua and Barbuda    AG   ATG 1986
## 542                            Antigua and Barbuda    AG   ATG 1985
## 543                            Antigua and Barbuda    AG   ATG 1984
## 544                            Antigua and Barbuda    AG   ATG 1983
## 545                            Antigua and Barbuda    AG   ATG 1982
## 546                            Antigua and Barbuda    AG   ATG 1981
## 547                            Antigua and Barbuda    AG   ATG 1980
## 548                            Antigua and Barbuda    AG   ATG 1979
## 549                            Antigua and Barbuda    AG   ATG 1978
## 550                            Antigua and Barbuda    AG   ATG 1977
## 551                            Antigua and Barbuda    AG   ATG 1976
## 552                            Antigua and Barbuda    AG   ATG 1975
## 553                            Antigua and Barbuda    AG   ATG 1974
## 554                            Antigua and Barbuda    AG   ATG 1973
## 555                            Antigua and Barbuda    AG   ATG 1972
## 556                            Antigua and Barbuda    AG   ATG 1971
## 557                            Antigua and Barbuda    AG   ATG 1970
## 558                            Antigua and Barbuda    AG   ATG 1969
## 559                            Antigua and Barbuda    AG   ATG 1968
## 560                            Antigua and Barbuda    AG   ATG 1967
## 561                            Antigua and Barbuda    AG   ATG 1966
## 562                            Antigua and Barbuda    AG   ATG 1965
## 563                            Antigua and Barbuda    AG   ATG 1964
## 564                            Antigua and Barbuda    AG   ATG 1963
## 565                            Antigua and Barbuda    AG   ATG 1962
## 566                            Antigua and Barbuda    AG   ATG 1961
## 567                            Antigua and Barbuda    AG   ATG 1960
## 568                                     Arab World    1A   ARB 2018
## 569                                     Arab World    1A   ARB 2007
## 570                                     Arab World    1A   ARB 2019
## 571                                     Arab World    1A   ARB 2016
## 572                                     Arab World    1A   ARB 2015
## 573                                     Arab World    1A   ARB 2020
## 574                                     Arab World    1A   ARB 2021
## 575                                     Arab World    1A   ARB 1982
## 576                                     Arab World    1A   ARB 2005
## 577                                     Arab World    1A   ARB 2017
## 578                                     Arab World    1A   ARB 1979
## 579                                     Arab World    1A   ARB 1978
## 580                                     Arab World    1A   ARB 1981
## 581                                     Arab World    1A   ARB 1980
## 582                                     Arab World    1A   ARB 2014
## 583                                     Arab World    1A   ARB 1983
## 584                                     Arab World    1A   ARB 1977
## 585                                     Arab World    1A   ARB 1976
## 586                                     Arab World    1A   ARB 2022
## 587                                     Arab World    1A   ARB 1966
## 588                                     Arab World    1A   ARB 2008
## 589                                     Arab World    1A   ARB 1968
## 590                                     Arab World    1A   ARB 2006
## 591                                     Arab World    1A   ARB 2002
## 592                                     Arab World    1A   ARB 1965
## 593                                     Arab World    1A   ARB 2004
## 594                                     Arab World    1A   ARB 2003
## 595                                     Arab World    1A   ARB 2010
## 596                                     Arab World    1A   ARB 2009
## 597                                     Arab World    1A   ARB 1996
## 598                                     Arab World    1A   ARB 1995
## 599                                     Arab World    1A   ARB 1994
## 600                                     Arab World    1A   ARB 1993
## 601                                     Arab World    1A   ARB 1992
## 602                                     Arab World    1A   ARB 1991
## 603                                     Arab World    1A   ARB 1990
## 604                                     Arab World    1A   ARB 1989
## 605                                     Arab World    1A   ARB 2013
## 606                                     Arab World    1A   ARB 2012
## 607                                     Arab World    1A   ARB 2011
## 608                                     Arab World    1A   ARB 1998
## 609                                     Arab World    1A   ARB 1997
## 610                                     Arab World    1A   ARB 1984
## 611                                     Arab World    1A   ARB 1970
## 612                                     Arab World    1A   ARB 1969
## 613                                     Arab World    1A   ARB 1967
## 614                                     Arab World    1A   ARB 1962
## 615                                     Arab World    1A   ARB 1975
## 616                                     Arab World    1A   ARB 1964
## 617                                     Arab World    1A   ARB 1963
## 618                                     Arab World    1A   ARB 1972
## 619                                     Arab World    1A   ARB 1971
## 620                                     Arab World    1A   ARB 1974
## 621                                     Arab World    1A   ARB 1973
## 622                                     Arab World    1A   ARB 1999
## 623                                     Arab World    1A   ARB 1986
## 624                                     Arab World    1A   ARB 2001
## 625                                     Arab World    1A   ARB 2000
## 626                                     Arab World    1A   ARB 1988
## 627                                     Arab World    1A   ARB 1987
## 628                                     Arab World    1A   ARB 1985
## 629                                     Arab World    1A   ARB 1960
## 630                                     Arab World    1A   ARB 1961
## 631                                      Argentina    AR   ARG 2022
## 632                                      Argentina    AR   ARG 2021
## 633                                      Argentina    AR   ARG 2020
## 634                                      Argentina    AR   ARG 2019
## 635                                      Argentina    AR   ARG 2018
## 636                                      Argentina    AR   ARG 2017
## 637                                      Argentina    AR   ARG 2016
## 638                                      Argentina    AR   ARG 2015
## 639                                      Argentina    AR   ARG 2014
## 640                                      Argentina    AR   ARG 2013
## 641                                      Argentina    AR   ARG 2012
## 642                                      Argentina    AR   ARG 2011
## 643                                      Argentina    AR   ARG 2010
## 644                                      Argentina    AR   ARG 2009
## 645                                      Argentina    AR   ARG 2008
## 646                                      Argentina    AR   ARG 2007
## 647                                      Argentina    AR   ARG 2006
## 648                                      Argentina    AR   ARG 2005
## 649                                      Argentina    AR   ARG 2004
## 650                                      Argentina    AR   ARG 2003
## 651                                      Argentina    AR   ARG 2002
## 652                                      Argentina    AR   ARG 2001
## 653                                      Argentina    AR   ARG 2000
## 654                                      Argentina    AR   ARG 1999
## 655                                      Argentina    AR   ARG 1998
## 656                                      Argentina    AR   ARG 1997
## 657                                      Argentina    AR   ARG 1996
## 658                                      Argentina    AR   ARG 1995
## 659                                      Argentina    AR   ARG 1994
## 660                                      Argentina    AR   ARG 1993
## 661                                      Argentina    AR   ARG 1992
## 662                                      Argentina    AR   ARG 1991
## 663                                      Argentina    AR   ARG 1990
## 664                                      Argentina    AR   ARG 1989
## 665                                      Argentina    AR   ARG 1988
## 666                                      Argentina    AR   ARG 1987
## 667                                      Argentina    AR   ARG 1986
## 668                                      Argentina    AR   ARG 1985
## 669                                      Argentina    AR   ARG 1984
## 670                                      Argentina    AR   ARG 1983
## 671                                      Argentina    AR   ARG 1982
## 672                                      Argentina    AR   ARG 1981
## 673                                      Argentina    AR   ARG 1980
## 674                                      Argentina    AR   ARG 1979
## 675                                      Argentina    AR   ARG 1978
## 676                                      Argentina    AR   ARG 1977
## 677                                      Argentina    AR   ARG 1976
## 678                                      Argentina    AR   ARG 1975
## 679                                      Argentina    AR   ARG 1974
## 680                                      Argentina    AR   ARG 1973
## 681                                      Argentina    AR   ARG 1972
## 682                                      Argentina    AR   ARG 1971
## 683                                      Argentina    AR   ARG 1970
## 684                                      Argentina    AR   ARG 1969
## 685                                      Argentina    AR   ARG 1968
## 686                                      Argentina    AR   ARG 1967
## 687                                      Argentina    AR   ARG 1966
## 688                                      Argentina    AR   ARG 1965
## 689                                      Argentina    AR   ARG 1964
## 690                                      Argentina    AR   ARG 1963
## 691                                      Argentina    AR   ARG 1962
## 692                                      Argentina    AR   ARG 1961
## 693                                      Argentina    AR   ARG 1960
## 694                                        Armenia    AM   ARM 2022
## 695                                        Armenia    AM   ARM 2021
## 696                                        Armenia    AM   ARM 2020
## 697                                        Armenia    AM   ARM 2019
## 698                                        Armenia    AM   ARM 2018
## 699                                        Armenia    AM   ARM 2017
## 700                                        Armenia    AM   ARM 2016
## 701                                        Armenia    AM   ARM 2015
## 702                                        Armenia    AM   ARM 2014
## 703                                        Armenia    AM   ARM 2013
## 704                                        Armenia    AM   ARM 2012
## 705                                        Armenia    AM   ARM 2011
## 706                                        Armenia    AM   ARM 2010
## 707                                        Armenia    AM   ARM 2009
## 708                                        Armenia    AM   ARM 2008
## 709                                        Armenia    AM   ARM 2007
## 710                                        Armenia    AM   ARM 2006
## 711                                        Armenia    AM   ARM 2005
## 712                                        Armenia    AM   ARM 2004
## 713                                        Armenia    AM   ARM 2003
## 714                                        Armenia    AM   ARM 2002
## 715                                        Armenia    AM   ARM 2001
## 716                                        Armenia    AM   ARM 2000
## 717                                        Armenia    AM   ARM 1999
## 718                                        Armenia    AM   ARM 1998
## 719                                        Armenia    AM   ARM 1997
## 720                                        Armenia    AM   ARM 1996
## 721                                        Armenia    AM   ARM 1995
## 722                                        Armenia    AM   ARM 1994
## 723                                        Armenia    AM   ARM 1993
## 724                                        Armenia    AM   ARM 1992
## 725                                        Armenia    AM   ARM 1991
## 726                                        Armenia    AM   ARM 1990
## 727                                        Armenia    AM   ARM 1989
## 728                                        Armenia    AM   ARM 1988
## 729                                        Armenia    AM   ARM 1987
## 730                                        Armenia    AM   ARM 1986
## 731                                        Armenia    AM   ARM 1985
## 732                                        Armenia    AM   ARM 1984
## 733                                        Armenia    AM   ARM 1983
## 734                                        Armenia    AM   ARM 1982
## 735                                        Armenia    AM   ARM 1981
## 736                                        Armenia    AM   ARM 1980
## 737                                        Armenia    AM   ARM 1979
## 738                                        Armenia    AM   ARM 1978
## 739                                        Armenia    AM   ARM 1977
## 740                                        Armenia    AM   ARM 1976
## 741                                        Armenia    AM   ARM 1975
## 742                                        Armenia    AM   ARM 1974
## 743                                        Armenia    AM   ARM 1973
## 744                                        Armenia    AM   ARM 1972
## 745                                        Armenia    AM   ARM 1971
## 746                                        Armenia    AM   ARM 1970
## 747                                        Armenia    AM   ARM 1969
## 748                                        Armenia    AM   ARM 1968
## 749                                        Armenia    AM   ARM 1967
## 750                                        Armenia    AM   ARM 1966
## 751                                        Armenia    AM   ARM 1965
## 752                                        Armenia    AM   ARM 1964
## 753                                        Armenia    AM   ARM 1963
## 754                                        Armenia    AM   ARM 1962
## 755                                        Armenia    AM   ARM 1961
## 756                                        Armenia    AM   ARM 1960
## 757                                          Aruba    AW   ABW 2022
## 758                                          Aruba    AW   ABW 2021
## 759                                          Aruba    AW   ABW 2020
## 760                                          Aruba    AW   ABW 2019
## 761                                          Aruba    AW   ABW 2018
## 762                                          Aruba    AW   ABW 2017
## 763                                          Aruba    AW   ABW 2016
## 764                                          Aruba    AW   ABW 2015
## 765                                          Aruba    AW   ABW 2014
## 766                                          Aruba    AW   ABW 2013
## 767                                          Aruba    AW   ABW 2012
## 768                                          Aruba    AW   ABW 2011
## 769                                          Aruba    AW   ABW 2010
## 770                                          Aruba    AW   ABW 2009
## 771                                          Aruba    AW   ABW 2008
## 772                                          Aruba    AW   ABW 2007
## 773                                          Aruba    AW   ABW 2006
## 774                                          Aruba    AW   ABW 2005
## 775                                          Aruba    AW   ABW 2004
## 776                                          Aruba    AW   ABW 2003
## 777                                          Aruba    AW   ABW 2002
## 778                                          Aruba    AW   ABW 2001
## 779                                          Aruba    AW   ABW 2000
## 780                                          Aruba    AW   ABW 1999
## 781                                          Aruba    AW   ABW 1998
## 782                                          Aruba    AW   ABW 1997
## 783                                          Aruba    AW   ABW 1996
## 784                                          Aruba    AW   ABW 1995
## 785                                          Aruba    AW   ABW 1994
## 786                                          Aruba    AW   ABW 1993
## 787                                          Aruba    AW   ABW 1992
## 788                                          Aruba    AW   ABW 1991
## 789                                          Aruba    AW   ABW 1990
## 790                                          Aruba    AW   ABW 1989
## 791                                          Aruba    AW   ABW 1988
## 792                                          Aruba    AW   ABW 1987
## 793                                          Aruba    AW   ABW 1986
## 794                                          Aruba    AW   ABW 1985
## 795                                          Aruba    AW   ABW 1984
## 796                                          Aruba    AW   ABW 1983
## 797                                          Aruba    AW   ABW 1982
## 798                                          Aruba    AW   ABW 1981
## 799                                          Aruba    AW   ABW 1980
## 800                                          Aruba    AW   ABW 1979
## 801                                          Aruba    AW   ABW 1978
## 802                                          Aruba    AW   ABW 1977
## 803                                          Aruba    AW   ABW 1976
## 804                                          Aruba    AW   ABW 1975
## 805                                          Aruba    AW   ABW 1974
## 806                                          Aruba    AW   ABW 1973
## 807                                          Aruba    AW   ABW 1972
## 808                                          Aruba    AW   ABW 1971
## 809                                          Aruba    AW   ABW 1970
## 810                                          Aruba    AW   ABW 1969
## 811                                          Aruba    AW   ABW 1968
## 812                                          Aruba    AW   ABW 1967
## 813                                          Aruba    AW   ABW 1966
## 814                                          Aruba    AW   ABW 1965
## 815                                          Aruba    AW   ABW 1964
## 816                                          Aruba    AW   ABW 1963
## 817                                          Aruba    AW   ABW 1962
## 818                                          Aruba    AW   ABW 1961
## 819                                          Aruba    AW   ABW 1960
## 820                                      Australia    AU   AUS 2022
## 821                                      Australia    AU   AUS 2021
## 822                                      Australia    AU   AUS 2020
## 823                                      Australia    AU   AUS 2019
## 824                                      Australia    AU   AUS 2018
## 825                                      Australia    AU   AUS 2017
## 826                                      Australia    AU   AUS 2016
## 827                                      Australia    AU   AUS 2015
## 828                                      Australia    AU   AUS 2014
## 829                                      Australia    AU   AUS 2013
## 830                                      Australia    AU   AUS 2012
## 831                                      Australia    AU   AUS 2011
## 832                                      Australia    AU   AUS 2010
## 833                                      Australia    AU   AUS 2009
## 834                                      Australia    AU   AUS 2008
## 835                                      Australia    AU   AUS 2007
## 836                                      Australia    AU   AUS 2006
## 837                                      Australia    AU   AUS 2005
## 838                                      Australia    AU   AUS 2004
## 839                                      Australia    AU   AUS 2003
## 840                                      Australia    AU   AUS 2002
## 841                                      Australia    AU   AUS 2001
## 842                                      Australia    AU   AUS 2000
## 843                                      Australia    AU   AUS 1999
## 844                                      Australia    AU   AUS 1998
## 845                                      Australia    AU   AUS 1997
## 846                                      Australia    AU   AUS 1996
## 847                                      Australia    AU   AUS 1995
## 848                                      Australia    AU   AUS 1994
## 849                                      Australia    AU   AUS 1993
## 850                                      Australia    AU   AUS 1992
## 851                                      Australia    AU   AUS 1991
## 852                                      Australia    AU   AUS 1990
## 853                                      Australia    AU   AUS 1989
## 854                                      Australia    AU   AUS 1988
## 855                                      Australia    AU   AUS 1987
## 856                                      Australia    AU   AUS 1986
## 857                                      Australia    AU   AUS 1985
## 858                                      Australia    AU   AUS 1984
## 859                                      Australia    AU   AUS 1983
## 860                                      Australia    AU   AUS 1982
## 861                                      Australia    AU   AUS 1981
## 862                                      Australia    AU   AUS 1980
## 863                                      Australia    AU   AUS 1979
## 864                                      Australia    AU   AUS 1978
## 865                                      Australia    AU   AUS 1977
## 866                                      Australia    AU   AUS 1976
## 867                                      Australia    AU   AUS 1975
## 868                                      Australia    AU   AUS 1974
## 869                                      Australia    AU   AUS 1973
## 870                                      Australia    AU   AUS 1972
## 871                                      Australia    AU   AUS 1971
## 872                                      Australia    AU   AUS 1970
## 873                                      Australia    AU   AUS 1969
## 874                                      Australia    AU   AUS 1968
## 875                                      Australia    AU   AUS 1967
## 876                                      Australia    AU   AUS 1966
## 877                                      Australia    AU   AUS 1965
## 878                                      Australia    AU   AUS 1964
## 879                                      Australia    AU   AUS 1963
## 880                                      Australia    AU   AUS 1962
## 881                                      Australia    AU   AUS 1961
## 882                                      Australia    AU   AUS 1960
## 883                                        Austria    AT   AUT 2022
## 884                                        Austria    AT   AUT 2021
## 885                                        Austria    AT   AUT 2020
## 886                                        Austria    AT   AUT 2019
## 887                                        Austria    AT   AUT 2018
## 888                                        Austria    AT   AUT 2017
## 889                                        Austria    AT   AUT 2016
## 890                                        Austria    AT   AUT 2015
## 891                                        Austria    AT   AUT 2014
## 892                                        Austria    AT   AUT 2013
## 893                                        Austria    AT   AUT 2012
## 894                                        Austria    AT   AUT 2011
## 895                                        Austria    AT   AUT 2010
## 896                                        Austria    AT   AUT 2009
## 897                                        Austria    AT   AUT 2008
## 898                                        Austria    AT   AUT 2007
## 899                                        Austria    AT   AUT 2006
## 900                                        Austria    AT   AUT 2005
## 901                                        Austria    AT   AUT 2004
## 902                                        Austria    AT   AUT 2003
## 903                                        Austria    AT   AUT 2002
## 904                                        Austria    AT   AUT 2001
## 905                                        Austria    AT   AUT 2000
## 906                                        Austria    AT   AUT 1999
## 907                                        Austria    AT   AUT 1998
## 908                                        Austria    AT   AUT 1997
## 909                                        Austria    AT   AUT 1996
## 910                                        Austria    AT   AUT 1995
## 911                                        Austria    AT   AUT 1994
## 912                                        Austria    AT   AUT 1993
## 913                                        Austria    AT   AUT 1992
## 914                                        Austria    AT   AUT 1991
## 915                                        Austria    AT   AUT 1990
## 916                                        Austria    AT   AUT 1989
## 917                                        Austria    AT   AUT 1988
## 918                                        Austria    AT   AUT 1987
## 919                                        Austria    AT   AUT 1986
## 920                                        Austria    AT   AUT 1985
## 921                                        Austria    AT   AUT 1984
## 922                                        Austria    AT   AUT 1983
## 923                                        Austria    AT   AUT 1982
## 924                                        Austria    AT   AUT 1981
## 925                                        Austria    AT   AUT 1980
## 926                                        Austria    AT   AUT 1979
## 927                                        Austria    AT   AUT 1978
## 928                                        Austria    AT   AUT 1977
## 929                                        Austria    AT   AUT 1976
## 930                                        Austria    AT   AUT 1975
## 931                                        Austria    AT   AUT 1974
## 932                                        Austria    AT   AUT 1973
## 933                                        Austria    AT   AUT 1972
## 934                                        Austria    AT   AUT 1971
## 935                                        Austria    AT   AUT 1970
## 936                                        Austria    AT   AUT 1969
## 937                                        Austria    AT   AUT 1968
## 938                                        Austria    AT   AUT 1967
## 939                                        Austria    AT   AUT 1966
## 940                                        Austria    AT   AUT 1965
## 941                                        Austria    AT   AUT 1964
## 942                                        Austria    AT   AUT 1963
## 943                                        Austria    AT   AUT 1962
## 944                                        Austria    AT   AUT 1961
## 945                                        Austria    AT   AUT 1960
## 946                                     Azerbaijan    AZ   AZE 2022
## 947                                     Azerbaijan    AZ   AZE 2021
## 948                                     Azerbaijan    AZ   AZE 2020
## 949                                     Azerbaijan    AZ   AZE 2019
## 950                                     Azerbaijan    AZ   AZE 2018
## 951                                     Azerbaijan    AZ   AZE 2017
## 952                                     Azerbaijan    AZ   AZE 2016
## 953                                     Azerbaijan    AZ   AZE 2015
## 954                                     Azerbaijan    AZ   AZE 2014
## 955                                     Azerbaijan    AZ   AZE 2013
## 956                                     Azerbaijan    AZ   AZE 2012
## 957                                     Azerbaijan    AZ   AZE 2011
## 958                                     Azerbaijan    AZ   AZE 2010
## 959                                     Azerbaijan    AZ   AZE 2009
## 960                                     Azerbaijan    AZ   AZE 2008
## 961                                     Azerbaijan    AZ   AZE 2007
## 962                                     Azerbaijan    AZ   AZE 2006
## 963                                     Azerbaijan    AZ   AZE 2005
## 964                                     Azerbaijan    AZ   AZE 2004
## 965                                     Azerbaijan    AZ   AZE 2003
## 966                                     Azerbaijan    AZ   AZE 2002
## 967                                     Azerbaijan    AZ   AZE 2001
## 968                                     Azerbaijan    AZ   AZE 2000
## 969                                     Azerbaijan    AZ   AZE 1999
## 970                                     Azerbaijan    AZ   AZE 1998
## 971                                     Azerbaijan    AZ   AZE 1997
## 972                                     Azerbaijan    AZ   AZE 1996
## 973                                     Azerbaijan    AZ   AZE 1995
## 974                                     Azerbaijan    AZ   AZE 1994
## 975                                     Azerbaijan    AZ   AZE 1993
## 976                                     Azerbaijan    AZ   AZE 1992
## 977                                     Azerbaijan    AZ   AZE 1991
## 978                                     Azerbaijan    AZ   AZE 1990
## 979                                     Azerbaijan    AZ   AZE 1989
## 980                                     Azerbaijan    AZ   AZE 1988
## 981                                     Azerbaijan    AZ   AZE 1987
## 982                                     Azerbaijan    AZ   AZE 1986
## 983                                     Azerbaijan    AZ   AZE 1985
## 984                                     Azerbaijan    AZ   AZE 1984
## 985                                     Azerbaijan    AZ   AZE 1983
## 986                                     Azerbaijan    AZ   AZE 1982
## 987                                     Azerbaijan    AZ   AZE 1981
## 988                                     Azerbaijan    AZ   AZE 1980
## 989                                     Azerbaijan    AZ   AZE 1979
## 990                                     Azerbaijan    AZ   AZE 1978
## 991                                     Azerbaijan    AZ   AZE 1977
## 992                                     Azerbaijan    AZ   AZE 1976
## 993                                     Azerbaijan    AZ   AZE 1975
## 994                                     Azerbaijan    AZ   AZE 1974
## 995                                     Azerbaijan    AZ   AZE 1973
## 996                                     Azerbaijan    AZ   AZE 1972
## 997                                     Azerbaijan    AZ   AZE 1971
## 998                                     Azerbaijan    AZ   AZE 1970
## 999                                     Azerbaijan    AZ   AZE 1969
## 1000                                    Azerbaijan    AZ   AZE 1968
## 1001                                    Azerbaijan    AZ   AZE 1967
## 1002                                    Azerbaijan    AZ   AZE 1966
## 1003                                    Azerbaijan    AZ   AZE 1965
## 1004                                    Azerbaijan    AZ   AZE 1964
## 1005                                    Azerbaijan    AZ   AZE 1963
## 1006                                    Azerbaijan    AZ   AZE 1962
## 1007                                    Azerbaijan    AZ   AZE 1961
## 1008                                    Azerbaijan    AZ   AZE 1960
## 1009                                  Bahamas, The    BS   BHS 2022
## 1010                                  Bahamas, The    BS   BHS 2021
## 1011                                  Bahamas, The    BS   BHS 2020
## 1012                                  Bahamas, The    BS   BHS 2019
## 1013                                  Bahamas, The    BS   BHS 2018
## 1014                                  Bahamas, The    BS   BHS 2017
## 1015                                  Bahamas, The    BS   BHS 2016
## 1016                                  Bahamas, The    BS   BHS 2015
## 1017                                  Bahamas, The    BS   BHS 2014
## 1018                                  Bahamas, The    BS   BHS 2013
## 1019                                  Bahamas, The    BS   BHS 2012
## 1020                                  Bahamas, The    BS   BHS 2011
## 1021                                  Bahamas, The    BS   BHS 2010
## 1022                                  Bahamas, The    BS   BHS 2009
## 1023                                  Bahamas, The    BS   BHS 2008
## 1024                                  Bahamas, The    BS   BHS 2007
## 1025                                  Bahamas, The    BS   BHS 2006
## 1026                                  Bahamas, The    BS   BHS 2005
## 1027                                  Bahamas, The    BS   BHS 2004
## 1028                                  Bahamas, The    BS   BHS 2003
## 1029                                  Bahamas, The    BS   BHS 2002
## 1030                                  Bahamas, The    BS   BHS 2001
## 1031                                  Bahamas, The    BS   BHS 2000
## 1032                                  Bahamas, The    BS   BHS 1999
## 1033                                  Bahamas, The    BS   BHS 1998
## 1034                                  Bahamas, The    BS   BHS 1997
## 1035                                  Bahamas, The    BS   BHS 1996
## 1036                                  Bahamas, The    BS   BHS 1995
## 1037                                  Bahamas, The    BS   BHS 1994
## 1038                                  Bahamas, The    BS   BHS 1993
## 1039                                  Bahamas, The    BS   BHS 1992
## 1040                                  Bahamas, The    BS   BHS 1991
## 1041                                  Bahamas, The    BS   BHS 1990
## 1042                                  Bahamas, The    BS   BHS 1989
## 1043                                  Bahamas, The    BS   BHS 1988
## 1044                                  Bahamas, The    BS   BHS 1987
## 1045                                  Bahamas, The    BS   BHS 1986
## 1046                                  Bahamas, The    BS   BHS 1985
## 1047                                  Bahamas, The    BS   BHS 1984
## 1048                                  Bahamas, The    BS   BHS 1983
## 1049                                  Bahamas, The    BS   BHS 1982
## 1050                                  Bahamas, The    BS   BHS 1981
## 1051                                  Bahamas, The    BS   BHS 1980
## 1052                                  Bahamas, The    BS   BHS 1979
## 1053                                  Bahamas, The    BS   BHS 1978
## 1054                                  Bahamas, The    BS   BHS 1977
## 1055                                  Bahamas, The    BS   BHS 1976
## 1056                                  Bahamas, The    BS   BHS 1975
## 1057                                  Bahamas, The    BS   BHS 1974
## 1058                                  Bahamas, The    BS   BHS 1973
## 1059                                  Bahamas, The    BS   BHS 1972
## 1060                                  Bahamas, The    BS   BHS 1971
## 1061                                  Bahamas, The    BS   BHS 1970
## 1062                                  Bahamas, The    BS   BHS 1969
## 1063                                  Bahamas, The    BS   BHS 1968
## 1064                                  Bahamas, The    BS   BHS 1967
## 1065                                  Bahamas, The    BS   BHS 1966
## 1066                                  Bahamas, The    BS   BHS 1965
## 1067                                  Bahamas, The    BS   BHS 1964
## 1068                                  Bahamas, The    BS   BHS 1963
## 1069                                  Bahamas, The    BS   BHS 1962
## 1070                                  Bahamas, The    BS   BHS 1961
## 1071                                  Bahamas, The    BS   BHS 1960
## 1072                                       Bahrain    BH   BHR 2022
## 1073                                       Bahrain    BH   BHR 2021
## 1074                                       Bahrain    BH   BHR 2020
## 1075                                       Bahrain    BH   BHR 2019
## 1076                                       Bahrain    BH   BHR 2018
## 1077                                       Bahrain    BH   BHR 2017
## 1078                                       Bahrain    BH   BHR 2016
## 1079                                       Bahrain    BH   BHR 2015
## 1080                                       Bahrain    BH   BHR 2014
## 1081                                       Bahrain    BH   BHR 2013
## 1082                                       Bahrain    BH   BHR 2012
## 1083                                       Bahrain    BH   BHR 2011
## 1084                                       Bahrain    BH   BHR 2010
## 1085                                       Bahrain    BH   BHR 2009
## 1086                                       Bahrain    BH   BHR 2008
## 1087                                       Bahrain    BH   BHR 2007
## 1088                                       Bahrain    BH   BHR 2006
## 1089                                       Bahrain    BH   BHR 2005
## 1090                                       Bahrain    BH   BHR 2004
## 1091                                       Bahrain    BH   BHR 2003
## 1092                                       Bahrain    BH   BHR 2002
## 1093                                       Bahrain    BH   BHR 2001
## 1094                                       Bahrain    BH   BHR 2000
## 1095                                       Bahrain    BH   BHR 1999
## 1096                                       Bahrain    BH   BHR 1998
## 1097                                       Bahrain    BH   BHR 1997
## 1098                                       Bahrain    BH   BHR 1996
## 1099                                       Bahrain    BH   BHR 1995
## 1100                                       Bahrain    BH   BHR 1994
## 1101                                       Bahrain    BH   BHR 1993
## 1102                                       Bahrain    BH   BHR 1992
## 1103                                       Bahrain    BH   BHR 1991
## 1104                                       Bahrain    BH   BHR 1990
## 1105                                       Bahrain    BH   BHR 1989
## 1106                                       Bahrain    BH   BHR 1988
## 1107                                       Bahrain    BH   BHR 1987
## 1108                                       Bahrain    BH   BHR 1986
## 1109                                       Bahrain    BH   BHR 1985
## 1110                                       Bahrain    BH   BHR 1984
## 1111                                       Bahrain    BH   BHR 1983
## 1112                                       Bahrain    BH   BHR 1982
## 1113                                       Bahrain    BH   BHR 1981
## 1114                                       Bahrain    BH   BHR 1980
## 1115                                       Bahrain    BH   BHR 1979
## 1116                                       Bahrain    BH   BHR 1978
## 1117                                       Bahrain    BH   BHR 1977
## 1118                                       Bahrain    BH   BHR 1976
## 1119                                       Bahrain    BH   BHR 1975
## 1120                                       Bahrain    BH   BHR 1974
## 1121                                       Bahrain    BH   BHR 1973
## 1122                                       Bahrain    BH   BHR 1972
## 1123                                       Bahrain    BH   BHR 1971
## 1124                                       Bahrain    BH   BHR 1970
## 1125                                       Bahrain    BH   BHR 1969
## 1126                                       Bahrain    BH   BHR 1968
## 1127                                       Bahrain    BH   BHR 1967
## 1128                                       Bahrain    BH   BHR 1966
## 1129                                       Bahrain    BH   BHR 1965
## 1130                                       Bahrain    BH   BHR 1964
## 1131                                       Bahrain    BH   BHR 1963
## 1132                                       Bahrain    BH   BHR 1962
## 1133                                       Bahrain    BH   BHR 1961
## 1134                                       Bahrain    BH   BHR 1960
## 1135                                    Bangladesh    BD   BGD 2022
## 1136                                    Bangladesh    BD   BGD 2021
## 1137                                    Bangladesh    BD   BGD 2020
## 1138                                    Bangladesh    BD   BGD 2019
## 1139                                    Bangladesh    BD   BGD 2018
## 1140                                    Bangladesh    BD   BGD 2017
## 1141                                    Bangladesh    BD   BGD 2016
## 1142                                    Bangladesh    BD   BGD 2015
## 1143                                    Bangladesh    BD   BGD 2014
## 1144                                    Bangladesh    BD   BGD 2013
## 1145                                    Bangladesh    BD   BGD 2012
## 1146                                    Bangladesh    BD   BGD 2011
## 1147                                    Bangladesh    BD   BGD 2010
## 1148                                    Bangladesh    BD   BGD 2009
## 1149                                    Bangladesh    BD   BGD 2008
## 1150                                    Bangladesh    BD   BGD 2007
## 1151                                    Bangladesh    BD   BGD 2006
## 1152                                    Bangladesh    BD   BGD 2005
## 1153                                    Bangladesh    BD   BGD 2004
## 1154                                    Bangladesh    BD   BGD 2003
## 1155                                    Bangladesh    BD   BGD 2002
## 1156                                    Bangladesh    BD   BGD 2001
## 1157                                    Bangladesh    BD   BGD 2000
## 1158                                    Bangladesh    BD   BGD 1999
## 1159                                    Bangladesh    BD   BGD 1998
## 1160                                    Bangladesh    BD   BGD 1997
## 1161                                    Bangladesh    BD   BGD 1996
## 1162                                    Bangladesh    BD   BGD 1995
## 1163                                    Bangladesh    BD   BGD 1994
## 1164                                    Bangladesh    BD   BGD 1993
## 1165                                    Bangladesh    BD   BGD 1992
## 1166                                    Bangladesh    BD   BGD 1991
## 1167                                    Bangladesh    BD   BGD 1990
## 1168                                    Bangladesh    BD   BGD 1989
## 1169                                    Bangladesh    BD   BGD 1988
## 1170                                    Bangladesh    BD   BGD 1987
## 1171                                    Bangladesh    BD   BGD 1986
## 1172                                    Bangladesh    BD   BGD 1985
## 1173                                    Bangladesh    BD   BGD 1984
## 1174                                    Bangladesh    BD   BGD 1983
## 1175                                    Bangladesh    BD   BGD 1982
## 1176                                    Bangladesh    BD   BGD 1981
## 1177                                    Bangladesh    BD   BGD 1980
## 1178                                    Bangladesh    BD   BGD 1979
## 1179                                    Bangladesh    BD   BGD 1978
## 1180                                    Bangladesh    BD   BGD 1977
## 1181                                    Bangladesh    BD   BGD 1976
## 1182                                    Bangladesh    BD   BGD 1975
## 1183                                    Bangladesh    BD   BGD 1974
## 1184                                    Bangladesh    BD   BGD 1973
## 1185                                    Bangladesh    BD   BGD 1972
## 1186                                    Bangladesh    BD   BGD 1971
## 1187                                    Bangladesh    BD   BGD 1970
## 1188                                    Bangladesh    BD   BGD 1969
## 1189                                    Bangladesh    BD   BGD 1968
## 1190                                    Bangladesh    BD   BGD 1967
## 1191                                    Bangladesh    BD   BGD 1966
## 1192                                    Bangladesh    BD   BGD 1965
## 1193                                    Bangladesh    BD   BGD 1964
## 1194                                    Bangladesh    BD   BGD 1963
## 1195                                    Bangladesh    BD   BGD 1962
## 1196                                    Bangladesh    BD   BGD 1961
## 1197                                    Bangladesh    BD   BGD 1960
## 1198                                      Barbados    BB   BRB 2022
## 1199                                      Barbados    BB   BRB 2021
## 1200                                      Barbados    BB   BRB 2020
## 1201                                      Barbados    BB   BRB 2019
## 1202                                      Barbados    BB   BRB 2018
## 1203                                      Barbados    BB   BRB 2017
## 1204                                      Barbados    BB   BRB 2016
## 1205                                      Barbados    BB   BRB 2015
## 1206                                      Barbados    BB   BRB 2014
## 1207                                      Barbados    BB   BRB 2013
## 1208                                      Barbados    BB   BRB 2012
## 1209                                      Barbados    BB   BRB 2011
## 1210                                      Barbados    BB   BRB 2010
## 1211                                      Barbados    BB   BRB 2009
## 1212                                      Barbados    BB   BRB 2008
## 1213                                      Barbados    BB   BRB 2007
## 1214                                      Barbados    BB   BRB 2006
## 1215                                      Barbados    BB   BRB 2005
## 1216                                      Barbados    BB   BRB 2004
## 1217                                      Barbados    BB   BRB 2003
## 1218                                      Barbados    BB   BRB 2002
## 1219                                      Barbados    BB   BRB 2001
## 1220                                      Barbados    BB   BRB 2000
## 1221                                      Barbados    BB   BRB 1999
## 1222                                      Barbados    BB   BRB 1998
## 1223                                      Barbados    BB   BRB 1997
## 1224                                      Barbados    BB   BRB 1996
## 1225                                      Barbados    BB   BRB 1995
## 1226                                      Barbados    BB   BRB 1994
## 1227                                      Barbados    BB   BRB 1993
## 1228                                      Barbados    BB   BRB 1992
## 1229                                      Barbados    BB   BRB 1991
## 1230                                      Barbados    BB   BRB 1990
## 1231                                      Barbados    BB   BRB 1989
## 1232                                      Barbados    BB   BRB 1988
## 1233                                      Barbados    BB   BRB 1987
## 1234                                      Barbados    BB   BRB 1986
## 1235                                      Barbados    BB   BRB 1985
## 1236                                      Barbados    BB   BRB 1984
## 1237                                      Barbados    BB   BRB 1983
## 1238                                      Barbados    BB   BRB 1982
## 1239                                      Barbados    BB   BRB 1981
## 1240                                      Barbados    BB   BRB 1980
## 1241                                      Barbados    BB   BRB 1979
## 1242                                      Barbados    BB   BRB 1978
## 1243                                      Barbados    BB   BRB 1977
## 1244                                      Barbados    BB   BRB 1976
## 1245                                      Barbados    BB   BRB 1975
## 1246                                      Barbados    BB   BRB 1974
## 1247                                      Barbados    BB   BRB 1973
## 1248                                      Barbados    BB   BRB 1972
## 1249                                      Barbados    BB   BRB 1971
## 1250                                      Barbados    BB   BRB 1970
## 1251                                      Barbados    BB   BRB 1969
## 1252                                      Barbados    BB   BRB 1968
## 1253                                      Barbados    BB   BRB 1967
## 1254                                      Barbados    BB   BRB 1966
## 1255                                      Barbados    BB   BRB 1965
## 1256                                      Barbados    BB   BRB 1964
## 1257                                      Barbados    BB   BRB 1963
## 1258                                      Barbados    BB   BRB 1962
## 1259                                      Barbados    BB   BRB 1961
## 1260                                      Barbados    BB   BRB 1960
## 1261                                       Belarus    BY   BLR 2022
## 1262                                       Belarus    BY   BLR 2021
## 1263                                       Belarus    BY   BLR 2020
## 1264                                       Belarus    BY   BLR 2019
## 1265                                       Belarus    BY   BLR 2018
## 1266                                       Belarus    BY   BLR 2017
## 1267                                       Belarus    BY   BLR 2016
## 1268                                       Belarus    BY   BLR 2015
## 1269                                       Belarus    BY   BLR 2014
## 1270                                       Belarus    BY   BLR 2013
## 1271                                       Belarus    BY   BLR 2012
## 1272                                       Belarus    BY   BLR 2011
## 1273                                       Belarus    BY   BLR 2010
## 1274                                       Belarus    BY   BLR 2009
## 1275                                       Belarus    BY   BLR 2008
## 1276                                       Belarus    BY   BLR 2007
## 1277                                       Belarus    BY   BLR 2006
## 1278                                       Belarus    BY   BLR 2005
## 1279                                       Belarus    BY   BLR 2004
## 1280                                       Belarus    BY   BLR 2003
## 1281                                       Belarus    BY   BLR 2002
## 1282                                       Belarus    BY   BLR 2001
## 1283                                       Belarus    BY   BLR 2000
## 1284                                       Belarus    BY   BLR 1999
## 1285                                       Belarus    BY   BLR 1998
## 1286                                       Belarus    BY   BLR 1997
## 1287                                       Belarus    BY   BLR 1996
## 1288                                       Belarus    BY   BLR 1995
## 1289                                       Belarus    BY   BLR 1994
## 1290                                       Belarus    BY   BLR 1993
## 1291                                       Belarus    BY   BLR 1992
## 1292                                       Belarus    BY   BLR 1991
## 1293                                       Belarus    BY   BLR 1990
## 1294                                       Belarus    BY   BLR 1989
## 1295                                       Belarus    BY   BLR 1988
## 1296                                       Belarus    BY   BLR 1987
## 1297                                       Belarus    BY   BLR 1986
## 1298                                       Belarus    BY   BLR 1985
## 1299                                       Belarus    BY   BLR 1984
## 1300                                       Belarus    BY   BLR 1983
## 1301                                       Belarus    BY   BLR 1982
## 1302                                       Belarus    BY   BLR 1981
## 1303                                       Belarus    BY   BLR 1980
## 1304                                       Belarus    BY   BLR 1979
## 1305                                       Belarus    BY   BLR 1978
## 1306                                       Belarus    BY   BLR 1977
## 1307                                       Belarus    BY   BLR 1976
## 1308                                       Belarus    BY   BLR 1975
## 1309                                       Belarus    BY   BLR 1974
## 1310                                       Belarus    BY   BLR 1973
## 1311                                       Belarus    BY   BLR 1972
## 1312                                       Belarus    BY   BLR 1971
## 1313                                       Belarus    BY   BLR 1970
## 1314                                       Belarus    BY   BLR 1969
## 1315                                       Belarus    BY   BLR 1968
## 1316                                       Belarus    BY   BLR 1967
## 1317                                       Belarus    BY   BLR 1966
## 1318                                       Belarus    BY   BLR 1965
## 1319                                       Belarus    BY   BLR 1964
## 1320                                       Belarus    BY   BLR 1963
## 1321                                       Belarus    BY   BLR 1962
## 1322                                       Belarus    BY   BLR 1961
## 1323                                       Belarus    BY   BLR 1960
## 1324                                       Belgium    BE   BEL 2022
## 1325                                       Belgium    BE   BEL 2021
## 1326                                       Belgium    BE   BEL 2020
## 1327                                       Belgium    BE   BEL 2019
## 1328                                       Belgium    BE   BEL 2018
## 1329                                       Belgium    BE   BEL 2017
## 1330                                       Belgium    BE   BEL 2016
## 1331                                       Belgium    BE   BEL 2015
## 1332                                       Belgium    BE   BEL 2014
## 1333                                       Belgium    BE   BEL 2013
## 1334                                       Belgium    BE   BEL 2012
## 1335                                       Belgium    BE   BEL 2011
## 1336                                       Belgium    BE   BEL 2010
## 1337                                       Belgium    BE   BEL 2009
## 1338                                       Belgium    BE   BEL 2008
## 1339                                       Belgium    BE   BEL 2007
## 1340                                       Belgium    BE   BEL 2006
## 1341                                       Belgium    BE   BEL 2005
## 1342                                       Belgium    BE   BEL 2004
## 1343                                       Belgium    BE   BEL 2003
## 1344                                       Belgium    BE   BEL 2002
## 1345                                       Belgium    BE   BEL 2001
## 1346                                       Belgium    BE   BEL 2000
## 1347                                       Belgium    BE   BEL 1999
## 1348                                       Belgium    BE   BEL 1998
## 1349                                       Belgium    BE   BEL 1997
## 1350                                       Belgium    BE   BEL 1996
## 1351                                       Belgium    BE   BEL 1995
## 1352                                       Belgium    BE   BEL 1994
## 1353                                       Belgium    BE   BEL 1993
## 1354                                       Belgium    BE   BEL 1992
## 1355                                       Belgium    BE   BEL 1991
## 1356                                       Belgium    BE   BEL 1990
## 1357                                       Belgium    BE   BEL 1989
## 1358                                       Belgium    BE   BEL 1988
## 1359                                       Belgium    BE   BEL 1987
## 1360                                       Belgium    BE   BEL 1986
## 1361                                       Belgium    BE   BEL 1985
## 1362                                       Belgium    BE   BEL 1984
## 1363                                       Belgium    BE   BEL 1983
## 1364                                       Belgium    BE   BEL 1982
## 1365                                       Belgium    BE   BEL 1981
## 1366                                       Belgium    BE   BEL 1980
## 1367                                       Belgium    BE   BEL 1979
## 1368                                       Belgium    BE   BEL 1978
## 1369                                       Belgium    BE   BEL 1977
## 1370                                       Belgium    BE   BEL 1976
## 1371                                       Belgium    BE   BEL 1975
## 1372                                       Belgium    BE   BEL 1974
## 1373                                       Belgium    BE   BEL 1973
## 1374                                       Belgium    BE   BEL 1972
## 1375                                       Belgium    BE   BEL 1971
## 1376                                       Belgium    BE   BEL 1970
## 1377                                       Belgium    BE   BEL 1969
## 1378                                       Belgium    BE   BEL 1968
## 1379                                       Belgium    BE   BEL 1967
## 1380                                       Belgium    BE   BEL 1966
## 1381                                       Belgium    BE   BEL 1965
## 1382                                       Belgium    BE   BEL 1964
## 1383                                       Belgium    BE   BEL 1963
## 1384                                       Belgium    BE   BEL 1962
## 1385                                       Belgium    BE   BEL 1961
## 1386                                       Belgium    BE   BEL 1960
## 1387                                        Belize    BZ   BLZ 2022
## 1388                                        Belize    BZ   BLZ 2021
## 1389                                        Belize    BZ   BLZ 2020
## 1390                                        Belize    BZ   BLZ 2019
## 1391                                        Belize    BZ   BLZ 2018
## 1392                                        Belize    BZ   BLZ 2017
## 1393                                        Belize    BZ   BLZ 2016
## 1394                                        Belize    BZ   BLZ 2015
## 1395                                        Belize    BZ   BLZ 2014
## 1396                                        Belize    BZ   BLZ 2013
## 1397                                        Belize    BZ   BLZ 2012
## 1398                                        Belize    BZ   BLZ 2011
## 1399                                        Belize    BZ   BLZ 2010
## 1400                                        Belize    BZ   BLZ 2009
## 1401                                        Belize    BZ   BLZ 2008
## 1402                                        Belize    BZ   BLZ 2007
## 1403                                        Belize    BZ   BLZ 2006
## 1404                                        Belize    BZ   BLZ 2005
## 1405                                        Belize    BZ   BLZ 2004
## 1406                                        Belize    BZ   BLZ 2003
## 1407                                        Belize    BZ   BLZ 2002
## 1408                                        Belize    BZ   BLZ 2001
## 1409                                        Belize    BZ   BLZ 2000
## 1410                                        Belize    BZ   BLZ 1999
## 1411                                        Belize    BZ   BLZ 1998
## 1412                                        Belize    BZ   BLZ 1997
## 1413                                        Belize    BZ   BLZ 1996
## 1414                                        Belize    BZ   BLZ 1995
## 1415                                        Belize    BZ   BLZ 1994
## 1416                                        Belize    BZ   BLZ 1993
## 1417                                        Belize    BZ   BLZ 1992
## 1418                                        Belize    BZ   BLZ 1991
## 1419                                        Belize    BZ   BLZ 1990
## 1420                                        Belize    BZ   BLZ 1989
## 1421                                        Belize    BZ   BLZ 1988
## 1422                                        Belize    BZ   BLZ 1987
## 1423                                        Belize    BZ   BLZ 1986
## 1424                                        Belize    BZ   BLZ 1985
## 1425                                        Belize    BZ   BLZ 1984
## 1426                                        Belize    BZ   BLZ 1983
## 1427                                        Belize    BZ   BLZ 1982
## 1428                                        Belize    BZ   BLZ 1981
## 1429                                        Belize    BZ   BLZ 1980
## 1430                                        Belize    BZ   BLZ 1979
## 1431                                        Belize    BZ   BLZ 1978
## 1432                                        Belize    BZ   BLZ 1977
## 1433                                        Belize    BZ   BLZ 1976
## 1434                                        Belize    BZ   BLZ 1975
## 1435                                        Belize    BZ   BLZ 1974
## 1436                                        Belize    BZ   BLZ 1973
## 1437                                        Belize    BZ   BLZ 1972
## 1438                                        Belize    BZ   BLZ 1971
## 1439                                        Belize    BZ   BLZ 1970
## 1440                                        Belize    BZ   BLZ 1969
## 1441                                        Belize    BZ   BLZ 1968
## 1442                                        Belize    BZ   BLZ 1967
## 1443                                        Belize    BZ   BLZ 1966
## 1444                                        Belize    BZ   BLZ 1965
## 1445                                        Belize    BZ   BLZ 1964
## 1446                                        Belize    BZ   BLZ 1963
## 1447                                        Belize    BZ   BLZ 1962
## 1448                                        Belize    BZ   BLZ 1961
## 1449                                        Belize    BZ   BLZ 1960
## 1450                                         Benin    BJ   BEN 2022
## 1451                                         Benin    BJ   BEN 2021
## 1452                                         Benin    BJ   BEN 2020
## 1453                                         Benin    BJ   BEN 2019
## 1454                                         Benin    BJ   BEN 2018
## 1455                                         Benin    BJ   BEN 2017
## 1456                                         Benin    BJ   BEN 2016
## 1457                                         Benin    BJ   BEN 2015
## 1458                                         Benin    BJ   BEN 2014
## 1459                                         Benin    BJ   BEN 2013
## 1460                                         Benin    BJ   BEN 2012
## 1461                                         Benin    BJ   BEN 2011
## 1462                                         Benin    BJ   BEN 2010
## 1463                                         Benin    BJ   BEN 2009
## 1464                                         Benin    BJ   BEN 2008
## 1465                                         Benin    BJ   BEN 2007
## 1466                                         Benin    BJ   BEN 2006
## 1467                                         Benin    BJ   BEN 2005
## 1468                                         Benin    BJ   BEN 2004
## 1469                                         Benin    BJ   BEN 2003
## 1470                                         Benin    BJ   BEN 2002
## 1471                                         Benin    BJ   BEN 2001
## 1472                                         Benin    BJ   BEN 2000
## 1473                                         Benin    BJ   BEN 1999
## 1474                                         Benin    BJ   BEN 1998
## 1475                                         Benin    BJ   BEN 1997
## 1476                                         Benin    BJ   BEN 1996
## 1477                                         Benin    BJ   BEN 1995
## 1478                                         Benin    BJ   BEN 1994
## 1479                                         Benin    BJ   BEN 1993
## 1480                                         Benin    BJ   BEN 1992
## 1481                                         Benin    BJ   BEN 1991
## 1482                                         Benin    BJ   BEN 1990
## 1483                                         Benin    BJ   BEN 1989
## 1484                                         Benin    BJ   BEN 1988
## 1485                                         Benin    BJ   BEN 1987
## 1486                                         Benin    BJ   BEN 1986
## 1487                                         Benin    BJ   BEN 1985
## 1488                                         Benin    BJ   BEN 1984
## 1489                                         Benin    BJ   BEN 1983
## 1490                                         Benin    BJ   BEN 1982
## 1491                                         Benin    BJ   BEN 1981
## 1492                                         Benin    BJ   BEN 1980
## 1493                                         Benin    BJ   BEN 1979
## 1494                                         Benin    BJ   BEN 1978
## 1495                                         Benin    BJ   BEN 1977
## 1496                                         Benin    BJ   BEN 1976
## 1497                                         Benin    BJ   BEN 1975
## 1498                                         Benin    BJ   BEN 1974
## 1499                                         Benin    BJ   BEN 1973
## 1500                                         Benin    BJ   BEN 1972
## 1501                                         Benin    BJ   BEN 1971
## 1502                                         Benin    BJ   BEN 1970
## 1503                                         Benin    BJ   BEN 1969
## 1504                                         Benin    BJ   BEN 1968
## 1505                                         Benin    BJ   BEN 1967
## 1506                                         Benin    BJ   BEN 1966
## 1507                                         Benin    BJ   BEN 1965
## 1508                                         Benin    BJ   BEN 1964
## 1509                                         Benin    BJ   BEN 1963
## 1510                                         Benin    BJ   BEN 1962
## 1511                                         Benin    BJ   BEN 1961
## 1512                                         Benin    BJ   BEN 1960
## 1513                                       Bermuda    BM   BMU 2022
## 1514                                       Bermuda    BM   BMU 2021
## 1515                                       Bermuda    BM   BMU 2020
## 1516                                       Bermuda    BM   BMU 2019
## 1517                                       Bermuda    BM   BMU 2018
## 1518                                       Bermuda    BM   BMU 2017
## 1519                                       Bermuda    BM   BMU 2016
## 1520                                       Bermuda    BM   BMU 2015
## 1521                                       Bermuda    BM   BMU 2014
## 1522                                       Bermuda    BM   BMU 2013
## 1523                                       Bermuda    BM   BMU 2012
## 1524                                       Bermuda    BM   BMU 2011
## 1525                                       Bermuda    BM   BMU 2010
## 1526                                       Bermuda    BM   BMU 2009
## 1527                                       Bermuda    BM   BMU 2008
## 1528                                       Bermuda    BM   BMU 2007
## 1529                                       Bermuda    BM   BMU 2006
## 1530                                       Bermuda    BM   BMU 2005
## 1531                                       Bermuda    BM   BMU 2004
## 1532                                       Bermuda    BM   BMU 2003
## 1533                                       Bermuda    BM   BMU 2002
## 1534                                       Bermuda    BM   BMU 2001
## 1535                                       Bermuda    BM   BMU 2000
## 1536                                       Bermuda    BM   BMU 1999
## 1537                                       Bermuda    BM   BMU 1998
## 1538                                       Bermuda    BM   BMU 1997
## 1539                                       Bermuda    BM   BMU 1996
## 1540                                       Bermuda    BM   BMU 1995
## 1541                                       Bermuda    BM   BMU 1994
## 1542                                       Bermuda    BM   BMU 1993
## 1543                                       Bermuda    BM   BMU 1992
## 1544                                       Bermuda    BM   BMU 1991
## 1545                                       Bermuda    BM   BMU 1990
## 1546                                       Bermuda    BM   BMU 1989
## 1547                                       Bermuda    BM   BMU 1988
## 1548                                       Bermuda    BM   BMU 1987
## 1549                                       Bermuda    BM   BMU 1986
## 1550                                       Bermuda    BM   BMU 1985
## 1551                                       Bermuda    BM   BMU 1984
## 1552                                       Bermuda    BM   BMU 1983
## 1553                                       Bermuda    BM   BMU 1982
## 1554                                       Bermuda    BM   BMU 1981
## 1555                                       Bermuda    BM   BMU 1980
## 1556                                       Bermuda    BM   BMU 1979
## 1557                                       Bermuda    BM   BMU 1978
## 1558                                       Bermuda    BM   BMU 1977
## 1559                                       Bermuda    BM   BMU 1976
## 1560                                       Bermuda    BM   BMU 1975
## 1561                                       Bermuda    BM   BMU 1974
## 1562                                       Bermuda    BM   BMU 1973
## 1563                                       Bermuda    BM   BMU 1972
## 1564                                       Bermuda    BM   BMU 1971
## 1565                                       Bermuda    BM   BMU 1970
## 1566                                       Bermuda    BM   BMU 1969
## 1567                                       Bermuda    BM   BMU 1968
## 1568                                       Bermuda    BM   BMU 1967
## 1569                                       Bermuda    BM   BMU 1966
## 1570                                       Bermuda    BM   BMU 1965
## 1571                                       Bermuda    BM   BMU 1964
## 1572                                       Bermuda    BM   BMU 1963
## 1573                                       Bermuda    BM   BMU 1962
## 1574                                       Bermuda    BM   BMU 1961
## 1575                                       Bermuda    BM   BMU 1960
## 1576                                        Bhutan    BT   BTN 2022
## 1577                                        Bhutan    BT   BTN 2021
## 1578                                        Bhutan    BT   BTN 2020
## 1579                                        Bhutan    BT   BTN 2019
## 1580                                        Bhutan    BT   BTN 2018
## 1581                                        Bhutan    BT   BTN 2017
## 1582                                        Bhutan    BT   BTN 2016
## 1583                                        Bhutan    BT   BTN 2015
## 1584                                        Bhutan    BT   BTN 2014
## 1585                                        Bhutan    BT   BTN 2013
## 1586                                        Bhutan    BT   BTN 2012
## 1587                                        Bhutan    BT   BTN 2011
## 1588                                        Bhutan    BT   BTN 2010
## 1589                                        Bhutan    BT   BTN 2009
## 1590                                        Bhutan    BT   BTN 2008
## 1591                                        Bhutan    BT   BTN 2007
## 1592                                        Bhutan    BT   BTN 2006
## 1593                                        Bhutan    BT   BTN 2005
## 1594                                        Bhutan    BT   BTN 2004
## 1595                                        Bhutan    BT   BTN 2003
## 1596                                        Bhutan    BT   BTN 2002
## 1597                                        Bhutan    BT   BTN 2001
## 1598                                        Bhutan    BT   BTN 2000
## 1599                                        Bhutan    BT   BTN 1999
## 1600                                        Bhutan    BT   BTN 1998
## 1601                                        Bhutan    BT   BTN 1997
## 1602                                        Bhutan    BT   BTN 1996
## 1603                                        Bhutan    BT   BTN 1995
## 1604                                        Bhutan    BT   BTN 1994
## 1605                                        Bhutan    BT   BTN 1993
## 1606                                        Bhutan    BT   BTN 1992
## 1607                                        Bhutan    BT   BTN 1991
## 1608                                        Bhutan    BT   BTN 1990
## 1609                                        Bhutan    BT   BTN 1989
## 1610                                        Bhutan    BT   BTN 1988
## 1611                                        Bhutan    BT   BTN 1987
## 1612                                        Bhutan    BT   BTN 1986
## 1613                                        Bhutan    BT   BTN 1985
## 1614                                        Bhutan    BT   BTN 1984
## 1615                                        Bhutan    BT   BTN 1983
## 1616                                        Bhutan    BT   BTN 1982
## 1617                                        Bhutan    BT   BTN 1981
## 1618                                        Bhutan    BT   BTN 1980
## 1619                                        Bhutan    BT   BTN 1979
## 1620                                        Bhutan    BT   BTN 1978
## 1621                                        Bhutan    BT   BTN 1977
## 1622                                        Bhutan    BT   BTN 1976
## 1623                                        Bhutan    BT   BTN 1975
## 1624                                        Bhutan    BT   BTN 1974
## 1625                                        Bhutan    BT   BTN 1973
## 1626                                        Bhutan    BT   BTN 1972
## 1627                                        Bhutan    BT   BTN 1971
## 1628                                        Bhutan    BT   BTN 1970
## 1629                                        Bhutan    BT   BTN 1969
## 1630                                        Bhutan    BT   BTN 1968
## 1631                                        Bhutan    BT   BTN 1967
## 1632                                        Bhutan    BT   BTN 1966
## 1633                                        Bhutan    BT   BTN 1965
## 1634                                        Bhutan    BT   BTN 1964
## 1635                                        Bhutan    BT   BTN 1963
## 1636                                        Bhutan    BT   BTN 1962
## 1637                                        Bhutan    BT   BTN 1961
## 1638                                        Bhutan    BT   BTN 1960
## 1639                                       Bolivia    BO   BOL 2022
## 1640                                       Bolivia    BO   BOL 2021
## 1641                                       Bolivia    BO   BOL 2020
## 1642                                       Bolivia    BO   BOL 2019
## 1643                                       Bolivia    BO   BOL 2018
## 1644                                       Bolivia    BO   BOL 2017
## 1645                                       Bolivia    BO   BOL 2016
## 1646                                       Bolivia    BO   BOL 2015
## 1647                                       Bolivia    BO   BOL 2014
## 1648                                       Bolivia    BO   BOL 2013
## 1649                                       Bolivia    BO   BOL 2012
## 1650                                       Bolivia    BO   BOL 2011
## 1651                                       Bolivia    BO   BOL 2010
## 1652                                       Bolivia    BO   BOL 2009
## 1653                                       Bolivia    BO   BOL 2008
## 1654                                       Bolivia    BO   BOL 2007
## 1655                                       Bolivia    BO   BOL 2006
## 1656                                       Bolivia    BO   BOL 2005
## 1657                                       Bolivia    BO   BOL 2004
## 1658                                       Bolivia    BO   BOL 2003
## 1659                                       Bolivia    BO   BOL 2002
## 1660                                       Bolivia    BO   BOL 2001
## 1661                                       Bolivia    BO   BOL 2000
## 1662                                       Bolivia    BO   BOL 1999
## 1663                                       Bolivia    BO   BOL 1998
## 1664                                       Bolivia    BO   BOL 1997
## 1665                                       Bolivia    BO   BOL 1996
## 1666                                       Bolivia    BO   BOL 1995
## 1667                                       Bolivia    BO   BOL 1994
## 1668                                       Bolivia    BO   BOL 1993
## 1669                                       Bolivia    BO   BOL 1992
## 1670                                       Bolivia    BO   BOL 1991
## 1671                                       Bolivia    BO   BOL 1990
## 1672                                       Bolivia    BO   BOL 1989
## 1673                                       Bolivia    BO   BOL 1988
## 1674                                       Bolivia    BO   BOL 1987
## 1675                                       Bolivia    BO   BOL 1986
## 1676                                       Bolivia    BO   BOL 1985
## 1677                                       Bolivia    BO   BOL 1984
## 1678                                       Bolivia    BO   BOL 1983
## 1679                                       Bolivia    BO   BOL 1982
## 1680                                       Bolivia    BO   BOL 1981
## 1681                                       Bolivia    BO   BOL 1980
## 1682                                       Bolivia    BO   BOL 1979
## 1683                                       Bolivia    BO   BOL 1978
## 1684                                       Bolivia    BO   BOL 1977
## 1685                                       Bolivia    BO   BOL 1976
## 1686                                       Bolivia    BO   BOL 1975
## 1687                                       Bolivia    BO   BOL 1974
## 1688                                       Bolivia    BO   BOL 1973
## 1689                                       Bolivia    BO   BOL 1972
## 1690                                       Bolivia    BO   BOL 1971
## 1691                                       Bolivia    BO   BOL 1970
## 1692                                       Bolivia    BO   BOL 1969
## 1693                                       Bolivia    BO   BOL 1968
## 1694                                       Bolivia    BO   BOL 1967
## 1695                                       Bolivia    BO   BOL 1966
## 1696                                       Bolivia    BO   BOL 1965
## 1697                                       Bolivia    BO   BOL 1964
## 1698                                       Bolivia    BO   BOL 1963
## 1699                                       Bolivia    BO   BOL 1962
## 1700                                       Bolivia    BO   BOL 1961
## 1701                                       Bolivia    BO   BOL 1960
## 1702                        Bosnia and Herzegovina    BA   BIH 2022
## 1703                        Bosnia and Herzegovina    BA   BIH 2021
## 1704                        Bosnia and Herzegovina    BA   BIH 2020
## 1705                        Bosnia and Herzegovina    BA   BIH 2019
## 1706                        Bosnia and Herzegovina    BA   BIH 2018
## 1707                        Bosnia and Herzegovina    BA   BIH 2017
## 1708                        Bosnia and Herzegovina    BA   BIH 2016
## 1709                        Bosnia and Herzegovina    BA   BIH 2015
## 1710                        Bosnia and Herzegovina    BA   BIH 2014
## 1711                        Bosnia and Herzegovina    BA   BIH 2013
## 1712                        Bosnia and Herzegovina    BA   BIH 2012
## 1713                        Bosnia and Herzegovina    BA   BIH 2011
## 1714                        Bosnia and Herzegovina    BA   BIH 2010
## 1715                        Bosnia and Herzegovina    BA   BIH 2009
## 1716                        Bosnia and Herzegovina    BA   BIH 2008
## 1717                        Bosnia and Herzegovina    BA   BIH 2007
## 1718                        Bosnia and Herzegovina    BA   BIH 2006
## 1719                        Bosnia and Herzegovina    BA   BIH 2005
## 1720                        Bosnia and Herzegovina    BA   BIH 2004
## 1721                        Bosnia and Herzegovina    BA   BIH 2003
## 1722                        Bosnia and Herzegovina    BA   BIH 2002
## 1723                        Bosnia and Herzegovina    BA   BIH 2001
## 1724                        Bosnia and Herzegovina    BA   BIH 2000
## 1725                        Bosnia and Herzegovina    BA   BIH 1999
## 1726                        Bosnia and Herzegovina    BA   BIH 1998
## 1727                        Bosnia and Herzegovina    BA   BIH 1997
## 1728                        Bosnia and Herzegovina    BA   BIH 1996
## 1729                        Bosnia and Herzegovina    BA   BIH 1995
## 1730                        Bosnia and Herzegovina    BA   BIH 1994
## 1731                        Bosnia and Herzegovina    BA   BIH 1993
## 1732                        Bosnia and Herzegovina    BA   BIH 1992
## 1733                        Bosnia and Herzegovina    BA   BIH 1991
## 1734                        Bosnia and Herzegovina    BA   BIH 1990
## 1735                        Bosnia and Herzegovina    BA   BIH 1989
## 1736                        Bosnia and Herzegovina    BA   BIH 1988
## 1737                        Bosnia and Herzegovina    BA   BIH 1987
## 1738                        Bosnia and Herzegovina    BA   BIH 1986
## 1739                        Bosnia and Herzegovina    BA   BIH 1985
## 1740                        Bosnia and Herzegovina    BA   BIH 1984
## 1741                        Bosnia and Herzegovina    BA   BIH 1983
## 1742                        Bosnia and Herzegovina    BA   BIH 1982
## 1743                        Bosnia and Herzegovina    BA   BIH 1981
## 1744                        Bosnia and Herzegovina    BA   BIH 1980
## 1745                        Bosnia and Herzegovina    BA   BIH 1979
## 1746                        Bosnia and Herzegovina    BA   BIH 1978
## 1747                        Bosnia and Herzegovina    BA   BIH 1977
## 1748                        Bosnia and Herzegovina    BA   BIH 1976
## 1749                        Bosnia and Herzegovina    BA   BIH 1975
## 1750                        Bosnia and Herzegovina    BA   BIH 1974
## 1751                        Bosnia and Herzegovina    BA   BIH 1973
## 1752                        Bosnia and Herzegovina    BA   BIH 1972
## 1753                        Bosnia and Herzegovina    BA   BIH 1971
## 1754                        Bosnia and Herzegovina    BA   BIH 1970
## 1755                        Bosnia and Herzegovina    BA   BIH 1969
## 1756                        Bosnia and Herzegovina    BA   BIH 1968
## 1757                        Bosnia and Herzegovina    BA   BIH 1967
## 1758                        Bosnia and Herzegovina    BA   BIH 1966
## 1759                        Bosnia and Herzegovina    BA   BIH 1965
## 1760                        Bosnia and Herzegovina    BA   BIH 1964
## 1761                        Bosnia and Herzegovina    BA   BIH 1963
## 1762                        Bosnia and Herzegovina    BA   BIH 1962
## 1763                        Bosnia and Herzegovina    BA   BIH 1961
## 1764                        Bosnia and Herzegovina    BA   BIH 1960
## 1765                                      Botswana    BW   BWA 2022
## 1766                                      Botswana    BW   BWA 2021
## 1767                                      Botswana    BW   BWA 2020
## 1768                                      Botswana    BW   BWA 2019
## 1769                                      Botswana    BW   BWA 2018
## 1770                                      Botswana    BW   BWA 2017
## 1771                                      Botswana    BW   BWA 2016
## 1772                                      Botswana    BW   BWA 2015
## 1773                                      Botswana    BW   BWA 2014
## 1774                                      Botswana    BW   BWA 2013
## 1775                                      Botswana    BW   BWA 2012
## 1776                                      Botswana    BW   BWA 2011
## 1777                                      Botswana    BW   BWA 2010
## 1778                                      Botswana    BW   BWA 2009
## 1779                                      Botswana    BW   BWA 2008
## 1780                                      Botswana    BW   BWA 2007
## 1781                                      Botswana    BW   BWA 2006
## 1782                                      Botswana    BW   BWA 2005
## 1783                                      Botswana    BW   BWA 2004
## 1784                                      Botswana    BW   BWA 2003
## 1785                                      Botswana    BW   BWA 2002
## 1786                                      Botswana    BW   BWA 2001
## 1787                                      Botswana    BW   BWA 2000
## 1788                                      Botswana    BW   BWA 1999
## 1789                                      Botswana    BW   BWA 1998
## 1790                                      Botswana    BW   BWA 1997
## 1791                                      Botswana    BW   BWA 1996
## 1792                                      Botswana    BW   BWA 1995
## 1793                                      Botswana    BW   BWA 1994
## 1794                                      Botswana    BW   BWA 1993
## 1795                                      Botswana    BW   BWA 1992
## 1796                                      Botswana    BW   BWA 1991
## 1797                                      Botswana    BW   BWA 1990
## 1798                                      Botswana    BW   BWA 1989
## 1799                                      Botswana    BW   BWA 1988
## 1800                                      Botswana    BW   BWA 1987
## 1801                                      Botswana    BW   BWA 1986
## 1802                                      Botswana    BW   BWA 1985
## 1803                                      Botswana    BW   BWA 1984
## 1804                                      Botswana    BW   BWA 1983
## 1805                                      Botswana    BW   BWA 1982
## 1806                                      Botswana    BW   BWA 1981
## 1807                                      Botswana    BW   BWA 1980
## 1808                                      Botswana    BW   BWA 1979
## 1809                                      Botswana    BW   BWA 1978
## 1810                                      Botswana    BW   BWA 1977
## 1811                                      Botswana    BW   BWA 1976
## 1812                                      Botswana    BW   BWA 1975
## 1813                                      Botswana    BW   BWA 1974
## 1814                                      Botswana    BW   BWA 1973
## 1815                                      Botswana    BW   BWA 1972
## 1816                                      Botswana    BW   BWA 1971
## 1817                                      Botswana    BW   BWA 1970
## 1818                                      Botswana    BW   BWA 1969
## 1819                                      Botswana    BW   BWA 1968
## 1820                                      Botswana    BW   BWA 1967
## 1821                                      Botswana    BW   BWA 1966
## 1822                                      Botswana    BW   BWA 1965
## 1823                                      Botswana    BW   BWA 1964
## 1824                                      Botswana    BW   BWA 1963
## 1825                                      Botswana    BW   BWA 1962
## 1826                                      Botswana    BW   BWA 1961
## 1827                                      Botswana    BW   BWA 1960
## 1828                                        Brazil    BR   BRA 2022
## 1829                                        Brazil    BR   BRA 2021
## 1830                                        Brazil    BR   BRA 2020
## 1831                                        Brazil    BR   BRA 2019
## 1832                                        Brazil    BR   BRA 2018
## 1833                                        Brazil    BR   BRA 2017
## 1834                                        Brazil    BR   BRA 2016
## 1835                                        Brazil    BR   BRA 2015
## 1836                                        Brazil    BR   BRA 2014
## 1837                                        Brazil    BR   BRA 2013
## 1838                                        Brazil    BR   BRA 2012
## 1839                                        Brazil    BR   BRA 2011
## 1840                                        Brazil    BR   BRA 2010
## 1841                                        Brazil    BR   BRA 2009
## 1842                                        Brazil    BR   BRA 2008
## 1843                                        Brazil    BR   BRA 2007
## 1844                                        Brazil    BR   BRA 2006
## 1845                                        Brazil    BR   BRA 2005
## 1846                                        Brazil    BR   BRA 2004
## 1847                                        Brazil    BR   BRA 2003
## 1848                                        Brazil    BR   BRA 2002
## 1849                                        Brazil    BR   BRA 2001
## 1850                                        Brazil    BR   BRA 2000
## 1851                                        Brazil    BR   BRA 1999
## 1852                                        Brazil    BR   BRA 1998
## 1853                                        Brazil    BR   BRA 1997
## 1854                                        Brazil    BR   BRA 1996
## 1855                                        Brazil    BR   BRA 1995
## 1856                                        Brazil    BR   BRA 1994
## 1857                                        Brazil    BR   BRA 1993
## 1858                                        Brazil    BR   BRA 1992
## 1859                                        Brazil    BR   BRA 1991
## 1860                                        Brazil    BR   BRA 1990
## 1861                                        Brazil    BR   BRA 1989
## 1862                                        Brazil    BR   BRA 1988
## 1863                                        Brazil    BR   BRA 1987
## 1864                                        Brazil    BR   BRA 1986
## 1865                                        Brazil    BR   BRA 1985
## 1866                                        Brazil    BR   BRA 1984
## 1867                                        Brazil    BR   BRA 1983
## 1868                                        Brazil    BR   BRA 1982
## 1869                                        Brazil    BR   BRA 1981
## 1870                                        Brazil    BR   BRA 1980
## 1871                                        Brazil    BR   BRA 1979
## 1872                                        Brazil    BR   BRA 1978
## 1873                                        Brazil    BR   BRA 1977
## 1874                                        Brazil    BR   BRA 1976
## 1875                                        Brazil    BR   BRA 1975
## 1876                                        Brazil    BR   BRA 1974
## 1877                                        Brazil    BR   BRA 1973
## 1878                                        Brazil    BR   BRA 1972
## 1879                                        Brazil    BR   BRA 1971
## 1880                                        Brazil    BR   BRA 1970
## 1881                                        Brazil    BR   BRA 1969
## 1882                                        Brazil    BR   BRA 1968
## 1883                                        Brazil    BR   BRA 1967
## 1884                                        Brazil    BR   BRA 1966
## 1885                                        Brazil    BR   BRA 1965
## 1886                                        Brazil    BR   BRA 1964
## 1887                                        Brazil    BR   BRA 1963
## 1888                                        Brazil    BR   BRA 1962
## 1889                                        Brazil    BR   BRA 1961
## 1890                                        Brazil    BR   BRA 1960
## 1891                        British Virgin Islands    VG   VGB 2022
## 1892                        British Virgin Islands    VG   VGB 2021
## 1893                        British Virgin Islands    VG   VGB 2020
## 1894                        British Virgin Islands    VG   VGB 2019
## 1895                        British Virgin Islands    VG   VGB 2018
## 1896                        British Virgin Islands    VG   VGB 2017
## 1897                        British Virgin Islands    VG   VGB 2016
## 1898                        British Virgin Islands    VG   VGB 2015
## 1899                        British Virgin Islands    VG   VGB 2014
## 1900                        British Virgin Islands    VG   VGB 2013
## 1901                        British Virgin Islands    VG   VGB 2012
## 1902                        British Virgin Islands    VG   VGB 2011
## 1903                        British Virgin Islands    VG   VGB 2010
## 1904                        British Virgin Islands    VG   VGB 2009
## 1905                        British Virgin Islands    VG   VGB 2008
## 1906                        British Virgin Islands    VG   VGB 2007
## 1907                        British Virgin Islands    VG   VGB 2006
## 1908                        British Virgin Islands    VG   VGB 2005
## 1909                        British Virgin Islands    VG   VGB 2004
## 1910                        British Virgin Islands    VG   VGB 2003
## 1911                        British Virgin Islands    VG   VGB 2002
## 1912                        British Virgin Islands    VG   VGB 2001
## 1913                        British Virgin Islands    VG   VGB 2000
## 1914                        British Virgin Islands    VG   VGB 1999
## 1915                        British Virgin Islands    VG   VGB 1998
## 1916                        British Virgin Islands    VG   VGB 1997
## 1917                        British Virgin Islands    VG   VGB 1996
## 1918                        British Virgin Islands    VG   VGB 1995
## 1919                        British Virgin Islands    VG   VGB 1994
## 1920                        British Virgin Islands    VG   VGB 1993
## 1921                        British Virgin Islands    VG   VGB 1992
## 1922                        British Virgin Islands    VG   VGB 1991
## 1923                        British Virgin Islands    VG   VGB 1990
## 1924                        British Virgin Islands    VG   VGB 1989
## 1925                        British Virgin Islands    VG   VGB 1988
## 1926                        British Virgin Islands    VG   VGB 1987
## 1927                        British Virgin Islands    VG   VGB 1986
## 1928                        British Virgin Islands    VG   VGB 1985
## 1929                        British Virgin Islands    VG   VGB 1984
## 1930                        British Virgin Islands    VG   VGB 1983
## 1931                        British Virgin Islands    VG   VGB 1982
## 1932                        British Virgin Islands    VG   VGB 1981
## 1933                        British Virgin Islands    VG   VGB 1980
## 1934                        British Virgin Islands    VG   VGB 1979
## 1935                        British Virgin Islands    VG   VGB 1978
## 1936                        British Virgin Islands    VG   VGB 1977
## 1937                        British Virgin Islands    VG   VGB 1976
## 1938                        British Virgin Islands    VG   VGB 1975
## 1939                        British Virgin Islands    VG   VGB 1974
## 1940                        British Virgin Islands    VG   VGB 1973
## 1941                        British Virgin Islands    VG   VGB 1972
## 1942                        British Virgin Islands    VG   VGB 1971
## 1943                        British Virgin Islands    VG   VGB 1970
## 1944                        British Virgin Islands    VG   VGB 1969
## 1945                        British Virgin Islands    VG   VGB 1968
## 1946                        British Virgin Islands    VG   VGB 1967
## 1947                        British Virgin Islands    VG   VGB 1966
## 1948                        British Virgin Islands    VG   VGB 1965
## 1949                        British Virgin Islands    VG   VGB 1964
## 1950                        British Virgin Islands    VG   VGB 1963
## 1951                        British Virgin Islands    VG   VGB 1962
## 1952                        British Virgin Islands    VG   VGB 1961
## 1953                        British Virgin Islands    VG   VGB 1960
## 1954                             Brunei Darussalam    BN   BRN 2022
## 1955                             Brunei Darussalam    BN   BRN 2021
## 1956                             Brunei Darussalam    BN   BRN 2020
## 1957                             Brunei Darussalam    BN   BRN 2019
## 1958                             Brunei Darussalam    BN   BRN 2018
## 1959                             Brunei Darussalam    BN   BRN 2017
## 1960                             Brunei Darussalam    BN   BRN 2016
## 1961                             Brunei Darussalam    BN   BRN 2015
## 1962                             Brunei Darussalam    BN   BRN 2014
## 1963                             Brunei Darussalam    BN   BRN 2013
## 1964                             Brunei Darussalam    BN   BRN 2012
## 1965                             Brunei Darussalam    BN   BRN 2011
## 1966                             Brunei Darussalam    BN   BRN 2010
## 1967                             Brunei Darussalam    BN   BRN 2009
## 1968                             Brunei Darussalam    BN   BRN 2008
## 1969                             Brunei Darussalam    BN   BRN 2007
## 1970                             Brunei Darussalam    BN   BRN 2006
## 1971                             Brunei Darussalam    BN   BRN 2005
## 1972                             Brunei Darussalam    BN   BRN 2004
## 1973                             Brunei Darussalam    BN   BRN 2003
## 1974                             Brunei Darussalam    BN   BRN 2002
## 1975                             Brunei Darussalam    BN   BRN 2001
## 1976                             Brunei Darussalam    BN   BRN 2000
## 1977                             Brunei Darussalam    BN   BRN 1999
## 1978                             Brunei Darussalam    BN   BRN 1998
## 1979                             Brunei Darussalam    BN   BRN 1997
## 1980                             Brunei Darussalam    BN   BRN 1996
## 1981                             Brunei Darussalam    BN   BRN 1995
## 1982                             Brunei Darussalam    BN   BRN 1994
## 1983                             Brunei Darussalam    BN   BRN 1993
## 1984                             Brunei Darussalam    BN   BRN 1992
## 1985                             Brunei Darussalam    BN   BRN 1991
## 1986                             Brunei Darussalam    BN   BRN 1990
## 1987                             Brunei Darussalam    BN   BRN 1989
## 1988                             Brunei Darussalam    BN   BRN 1988
## 1989                             Brunei Darussalam    BN   BRN 1987
## 1990                             Brunei Darussalam    BN   BRN 1986
## 1991                             Brunei Darussalam    BN   BRN 1985
## 1992                             Brunei Darussalam    BN   BRN 1984
## 1993                             Brunei Darussalam    BN   BRN 1983
## 1994                             Brunei Darussalam    BN   BRN 1982
## 1995                             Brunei Darussalam    BN   BRN 1981
## 1996                             Brunei Darussalam    BN   BRN 1980
## 1997                             Brunei Darussalam    BN   BRN 1979
## 1998                             Brunei Darussalam    BN   BRN 1978
## 1999                             Brunei Darussalam    BN   BRN 1977
## 2000                             Brunei Darussalam    BN   BRN 1976
## 2001                             Brunei Darussalam    BN   BRN 1975
## 2002                             Brunei Darussalam    BN   BRN 1974
## 2003                             Brunei Darussalam    BN   BRN 1973
## 2004                             Brunei Darussalam    BN   BRN 1972
## 2005                             Brunei Darussalam    BN   BRN 1971
## 2006                             Brunei Darussalam    BN   BRN 1970
## 2007                             Brunei Darussalam    BN   BRN 1969
## 2008                             Brunei Darussalam    BN   BRN 1968
## 2009                             Brunei Darussalam    BN   BRN 1967
## 2010                             Brunei Darussalam    BN   BRN 1966
## 2011                             Brunei Darussalam    BN   BRN 1965
## 2012                             Brunei Darussalam    BN   BRN 1964
## 2013                             Brunei Darussalam    BN   BRN 1963
## 2014                             Brunei Darussalam    BN   BRN 1962
## 2015                             Brunei Darussalam    BN   BRN 1961
## 2016                             Brunei Darussalam    BN   BRN 1960
## 2017                                      Bulgaria    BG   BGR 2022
## 2018                                      Bulgaria    BG   BGR 2021
## 2019                                      Bulgaria    BG   BGR 2020
## 2020                                      Bulgaria    BG   BGR 2019
## 2021                                      Bulgaria    BG   BGR 2018
## 2022                                      Bulgaria    BG   BGR 2017
## 2023                                      Bulgaria    BG   BGR 2016
## 2024                                      Bulgaria    BG   BGR 2015
## 2025                                      Bulgaria    BG   BGR 2014
## 2026                                      Bulgaria    BG   BGR 2013
## 2027                                      Bulgaria    BG   BGR 2012
## 2028                                      Bulgaria    BG   BGR 2011
## 2029                                      Bulgaria    BG   BGR 2010
## 2030                                      Bulgaria    BG   BGR 2009
## 2031                                      Bulgaria    BG   BGR 2008
## 2032                                      Bulgaria    BG   BGR 2007
## 2033                                      Bulgaria    BG   BGR 2006
## 2034                                      Bulgaria    BG   BGR 2005
## 2035                                      Bulgaria    BG   BGR 2004
## 2036                                      Bulgaria    BG   BGR 2003
## 2037                                      Bulgaria    BG   BGR 2002
## 2038                                      Bulgaria    BG   BGR 2001
## 2039                                      Bulgaria    BG   BGR 2000
## 2040                                      Bulgaria    BG   BGR 1999
## 2041                                      Bulgaria    BG   BGR 1998
## 2042                                      Bulgaria    BG   BGR 1997
## 2043                                      Bulgaria    BG   BGR 1996
## 2044                                      Bulgaria    BG   BGR 1995
## 2045                                      Bulgaria    BG   BGR 1994
## 2046                                      Bulgaria    BG   BGR 1993
## 2047                                      Bulgaria    BG   BGR 1992
## 2048                                      Bulgaria    BG   BGR 1991
## 2049                                      Bulgaria    BG   BGR 1990
## 2050                                      Bulgaria    BG   BGR 1989
## 2051                                      Bulgaria    BG   BGR 1988
## 2052                                      Bulgaria    BG   BGR 1987
## 2053                                      Bulgaria    BG   BGR 1986
## 2054                                      Bulgaria    BG   BGR 1985
## 2055                                      Bulgaria    BG   BGR 1984
## 2056                                      Bulgaria    BG   BGR 1983
## 2057                                      Bulgaria    BG   BGR 1982
## 2058                                      Bulgaria    BG   BGR 1981
## 2059                                      Bulgaria    BG   BGR 1980
## 2060                                      Bulgaria    BG   BGR 1979
## 2061                                      Bulgaria    BG   BGR 1978
## 2062                                      Bulgaria    BG   BGR 1977
## 2063                                      Bulgaria    BG   BGR 1976
## 2064                                      Bulgaria    BG   BGR 1975
## 2065                                      Bulgaria    BG   BGR 1974
## 2066                                      Bulgaria    BG   BGR 1973
## 2067                                      Bulgaria    BG   BGR 1972
## 2068                                      Bulgaria    BG   BGR 1971
## 2069                                      Bulgaria    BG   BGR 1970
## 2070                                      Bulgaria    BG   BGR 1969
## 2071                                      Bulgaria    BG   BGR 1968
## 2072                                      Bulgaria    BG   BGR 1967
## 2073                                      Bulgaria    BG   BGR 1966
## 2074                                      Bulgaria    BG   BGR 1965
## 2075                                      Bulgaria    BG   BGR 1964
## 2076                                      Bulgaria    BG   BGR 1963
## 2077                                      Bulgaria    BG   BGR 1962
## 2078                                      Bulgaria    BG   BGR 1961
## 2079                                      Bulgaria    BG   BGR 1960
## 2080                                  Burkina Faso    BF   BFA 2022
## 2081                                  Burkina Faso    BF   BFA 2021
## 2082                                  Burkina Faso    BF   BFA 2020
## 2083                                  Burkina Faso    BF   BFA 2019
## 2084                                  Burkina Faso    BF   BFA 2018
## 2085                                  Burkina Faso    BF   BFA 2017
## 2086                                  Burkina Faso    BF   BFA 2016
## 2087                                  Burkina Faso    BF   BFA 2015
## 2088                                  Burkina Faso    BF   BFA 2014
## 2089                                  Burkina Faso    BF   BFA 2013
## 2090                                  Burkina Faso    BF   BFA 2012
## 2091                                  Burkina Faso    BF   BFA 2011
## 2092                                  Burkina Faso    BF   BFA 2010
## 2093                                  Burkina Faso    BF   BFA 2009
## 2094                                  Burkina Faso    BF   BFA 2008
## 2095                                  Burkina Faso    BF   BFA 2007
## 2096                                  Burkina Faso    BF   BFA 2006
## 2097                                  Burkina Faso    BF   BFA 2005
## 2098                                  Burkina Faso    BF   BFA 2004
## 2099                                  Burkina Faso    BF   BFA 2003
## 2100                                  Burkina Faso    BF   BFA 2002
## 2101                                  Burkina Faso    BF   BFA 2001
## 2102                                  Burkina Faso    BF   BFA 2000
## 2103                                  Burkina Faso    BF   BFA 1999
## 2104                                  Burkina Faso    BF   BFA 1998
## 2105                                  Burkina Faso    BF   BFA 1997
## 2106                                  Burkina Faso    BF   BFA 1996
## 2107                                  Burkina Faso    BF   BFA 1995
## 2108                                  Burkina Faso    BF   BFA 1994
## 2109                                  Burkina Faso    BF   BFA 1993
## 2110                                  Burkina Faso    BF   BFA 1992
## 2111                                  Burkina Faso    BF   BFA 1991
## 2112                                  Burkina Faso    BF   BFA 1990
## 2113                                  Burkina Faso    BF   BFA 1989
## 2114                                  Burkina Faso    BF   BFA 1988
## 2115                                  Burkina Faso    BF   BFA 1987
## 2116                                  Burkina Faso    BF   BFA 1986
## 2117                                  Burkina Faso    BF   BFA 1985
## 2118                                  Burkina Faso    BF   BFA 1984
## 2119                                  Burkina Faso    BF   BFA 1983
## 2120                                  Burkina Faso    BF   BFA 1982
## 2121                                  Burkina Faso    BF   BFA 1981
## 2122                                  Burkina Faso    BF   BFA 1980
## 2123                                  Burkina Faso    BF   BFA 1979
## 2124                                  Burkina Faso    BF   BFA 1978
## 2125                                  Burkina Faso    BF   BFA 1977
## 2126                                  Burkina Faso    BF   BFA 1976
## 2127                                  Burkina Faso    BF   BFA 1975
## 2128                                  Burkina Faso    BF   BFA 1974
## 2129                                  Burkina Faso    BF   BFA 1973
## 2130                                  Burkina Faso    BF   BFA 1972
## 2131                                  Burkina Faso    BF   BFA 1971
## 2132                                  Burkina Faso    BF   BFA 1970
## 2133                                  Burkina Faso    BF   BFA 1969
## 2134                                  Burkina Faso    BF   BFA 1968
## 2135                                  Burkina Faso    BF   BFA 1967
## 2136                                  Burkina Faso    BF   BFA 1966
## 2137                                  Burkina Faso    BF   BFA 1965
## 2138                                  Burkina Faso    BF   BFA 1964
## 2139                                  Burkina Faso    BF   BFA 1963
## 2140                                  Burkina Faso    BF   BFA 1962
## 2141                                  Burkina Faso    BF   BFA 1961
## 2142                                  Burkina Faso    BF   BFA 1960
## 2143                                       Burundi    BI   BDI 2022
## 2144                                       Burundi    BI   BDI 2021
## 2145                                       Burundi    BI   BDI 2020
## 2146                                       Burundi    BI   BDI 2019
## 2147                                       Burundi    BI   BDI 2018
## 2148                                       Burundi    BI   BDI 2017
## 2149                                       Burundi    BI   BDI 2016
## 2150                                       Burundi    BI   BDI 2015
## 2151                                       Burundi    BI   BDI 2014
## 2152                                       Burundi    BI   BDI 2013
## 2153                                       Burundi    BI   BDI 2012
## 2154                                       Burundi    BI   BDI 2011
## 2155                                       Burundi    BI   BDI 2010
## 2156                                       Burundi    BI   BDI 2009
## 2157                                       Burundi    BI   BDI 2008
## 2158                                       Burundi    BI   BDI 2007
## 2159                                       Burundi    BI   BDI 2006
## 2160                                       Burundi    BI   BDI 2005
## 2161                                       Burundi    BI   BDI 2004
## 2162                                       Burundi    BI   BDI 2003
## 2163                                       Burundi    BI   BDI 2002
## 2164                                       Burundi    BI   BDI 2001
## 2165                                       Burundi    BI   BDI 2000
## 2166                                       Burundi    BI   BDI 1999
## 2167                                       Burundi    BI   BDI 1998
## 2168                                       Burundi    BI   BDI 1997
## 2169                                       Burundi    BI   BDI 1996
## 2170                                       Burundi    BI   BDI 1995
## 2171                                       Burundi    BI   BDI 1994
## 2172                                       Burundi    BI   BDI 1993
## 2173                                       Burundi    BI   BDI 1992
## 2174                                       Burundi    BI   BDI 1991
## 2175                                       Burundi    BI   BDI 1990
## 2176                                       Burundi    BI   BDI 1989
## 2177                                       Burundi    BI   BDI 1988
## 2178                                       Burundi    BI   BDI 1987
## 2179                                       Burundi    BI   BDI 1986
## 2180                                       Burundi    BI   BDI 1985
## 2181                                       Burundi    BI   BDI 1984
## 2182                                       Burundi    BI   BDI 1983
## 2183                                       Burundi    BI   BDI 1982
## 2184                                       Burundi    BI   BDI 1981
## 2185                                       Burundi    BI   BDI 1980
## 2186                                       Burundi    BI   BDI 1979
## 2187                                       Burundi    BI   BDI 1978
## 2188                                       Burundi    BI   BDI 1977
## 2189                                       Burundi    BI   BDI 1976
## 2190                                       Burundi    BI   BDI 1975
## 2191                                       Burundi    BI   BDI 1974
## 2192                                       Burundi    BI   BDI 1973
## 2193                                       Burundi    BI   BDI 1972
## 2194                                       Burundi    BI   BDI 1971
## 2195                                       Burundi    BI   BDI 1970
## 2196                                       Burundi    BI   BDI 1969
## 2197                                       Burundi    BI   BDI 1968
## 2198                                       Burundi    BI   BDI 1967
## 2199                                       Burundi    BI   BDI 1966
## 2200                                       Burundi    BI   BDI 1965
## 2201                                       Burundi    BI   BDI 1964
## 2202                                       Burundi    BI   BDI 1963
## 2203                                       Burundi    BI   BDI 1962
## 2204                                       Burundi    BI   BDI 1961
## 2205                                       Burundi    BI   BDI 1960
## 2206                                    Cabo Verde    CV   CPV 2022
## 2207                                    Cabo Verde    CV   CPV 2021
## 2208                                    Cabo Verde    CV   CPV 2020
## 2209                                    Cabo Verde    CV   CPV 2019
## 2210                                    Cabo Verde    CV   CPV 2018
## 2211                                    Cabo Verde    CV   CPV 2017
## 2212                                    Cabo Verde    CV   CPV 2016
## 2213                                    Cabo Verde    CV   CPV 2015
## 2214                                    Cabo Verde    CV   CPV 2014
## 2215                                    Cabo Verde    CV   CPV 2013
## 2216                                    Cabo Verde    CV   CPV 2012
## 2217                                    Cabo Verde    CV   CPV 2011
## 2218                                    Cabo Verde    CV   CPV 2010
## 2219                                    Cabo Verde    CV   CPV 2009
## 2220                                    Cabo Verde    CV   CPV 2008
## 2221                                    Cabo Verde    CV   CPV 2007
## 2222                                    Cabo Verde    CV   CPV 2006
## 2223                                    Cabo Verde    CV   CPV 2005
## 2224                                    Cabo Verde    CV   CPV 2004
## 2225                                    Cabo Verde    CV   CPV 2003
## 2226                                    Cabo Verde    CV   CPV 2002
## 2227                                    Cabo Verde    CV   CPV 2001
## 2228                                    Cabo Verde    CV   CPV 2000
## 2229                                    Cabo Verde    CV   CPV 1999
## 2230                                    Cabo Verde    CV   CPV 1998
## 2231                                    Cabo Verde    CV   CPV 1997
## 2232                                    Cabo Verde    CV   CPV 1996
## 2233                                    Cabo Verde    CV   CPV 1995
## 2234                                    Cabo Verde    CV   CPV 1994
## 2235                                    Cabo Verde    CV   CPV 1993
## 2236                                    Cabo Verde    CV   CPV 1992
## 2237                                    Cabo Verde    CV   CPV 1991
## 2238                                    Cabo Verde    CV   CPV 1990
## 2239                                    Cabo Verde    CV   CPV 1989
## 2240                                    Cabo Verde    CV   CPV 1988
## 2241                                    Cabo Verde    CV   CPV 1987
## 2242                                    Cabo Verde    CV   CPV 1986
## 2243                                    Cabo Verde    CV   CPV 1985
## 2244                                    Cabo Verde    CV   CPV 1984
## 2245                                    Cabo Verde    CV   CPV 1983
## 2246                                    Cabo Verde    CV   CPV 1982
## 2247                                    Cabo Verde    CV   CPV 1981
## 2248                                    Cabo Verde    CV   CPV 1980
## 2249                                    Cabo Verde    CV   CPV 1979
## 2250                                    Cabo Verde    CV   CPV 1978
## 2251                                    Cabo Verde    CV   CPV 1977
## 2252                                    Cabo Verde    CV   CPV 1976
## 2253                                    Cabo Verde    CV   CPV 1975
## 2254                                    Cabo Verde    CV   CPV 1974
## 2255                                    Cabo Verde    CV   CPV 1973
## 2256                                    Cabo Verde    CV   CPV 1972
## 2257                                    Cabo Verde    CV   CPV 1971
## 2258                                    Cabo Verde    CV   CPV 1970
## 2259                                    Cabo Verde    CV   CPV 1969
## 2260                                    Cabo Verde    CV   CPV 1968
## 2261                                    Cabo Verde    CV   CPV 1967
## 2262                                    Cabo Verde    CV   CPV 1966
## 2263                                    Cabo Verde    CV   CPV 1965
## 2264                                    Cabo Verde    CV   CPV 1964
## 2265                                    Cabo Verde    CV   CPV 1963
## 2266                                    Cabo Verde    CV   CPV 1962
## 2267                                    Cabo Verde    CV   CPV 1961
## 2268                                    Cabo Verde    CV   CPV 1960
## 2269                                      Cambodia    KH   KHM 2022
## 2270                                      Cambodia    KH   KHM 2021
## 2271                                      Cambodia    KH   KHM 2020
## 2272                                      Cambodia    KH   KHM 2019
## 2273                                      Cambodia    KH   KHM 2018
## 2274                                      Cambodia    KH   KHM 2017
## 2275                                      Cambodia    KH   KHM 2016
## 2276                                      Cambodia    KH   KHM 2015
## 2277                                      Cambodia    KH   KHM 2014
## 2278                                      Cambodia    KH   KHM 2013
## 2279                                      Cambodia    KH   KHM 2012
## 2280                                      Cambodia    KH   KHM 2011
## 2281                                      Cambodia    KH   KHM 2010
## 2282                                      Cambodia    KH   KHM 2009
## 2283                                      Cambodia    KH   KHM 2008
## 2284                                      Cambodia    KH   KHM 2007
## 2285                                      Cambodia    KH   KHM 2006
## 2286                                      Cambodia    KH   KHM 2005
## 2287                                      Cambodia    KH   KHM 2004
## 2288                                      Cambodia    KH   KHM 2003
## 2289                                      Cambodia    KH   KHM 2002
## 2290                                      Cambodia    KH   KHM 2001
## 2291                                      Cambodia    KH   KHM 2000
## 2292                                      Cambodia    KH   KHM 1999
## 2293                                      Cambodia    KH   KHM 1998
## 2294                                      Cambodia    KH   KHM 1997
## 2295                                      Cambodia    KH   KHM 1996
## 2296                                      Cambodia    KH   KHM 1995
## 2297                                      Cambodia    KH   KHM 1994
## 2298                                      Cambodia    KH   KHM 1993
## 2299                                      Cambodia    KH   KHM 1992
## 2300                                      Cambodia    KH   KHM 1991
## 2301                                      Cambodia    KH   KHM 1990
## 2302                                      Cambodia    KH   KHM 1989
## 2303                                      Cambodia    KH   KHM 1988
## 2304                                      Cambodia    KH   KHM 1987
## 2305                                      Cambodia    KH   KHM 1986
## 2306                                      Cambodia    KH   KHM 1985
## 2307                                      Cambodia    KH   KHM 1984
## 2308                                      Cambodia    KH   KHM 1983
## 2309                                      Cambodia    KH   KHM 1982
## 2310                                      Cambodia    KH   KHM 1981
## 2311                                      Cambodia    KH   KHM 1980
## 2312                                      Cambodia    KH   KHM 1979
## 2313                                      Cambodia    KH   KHM 1978
## 2314                                      Cambodia    KH   KHM 1977
## 2315                                      Cambodia    KH   KHM 1976
## 2316                                      Cambodia    KH   KHM 1975
## 2317                                      Cambodia    KH   KHM 1974
## 2318                                      Cambodia    KH   KHM 1973
## 2319                                      Cambodia    KH   KHM 1972
## 2320                                      Cambodia    KH   KHM 1971
## 2321                                      Cambodia    KH   KHM 1970
## 2322                                      Cambodia    KH   KHM 1969
## 2323                                      Cambodia    KH   KHM 1968
## 2324                                      Cambodia    KH   KHM 1967
## 2325                                      Cambodia    KH   KHM 1966
## 2326                                      Cambodia    KH   KHM 1965
## 2327                                      Cambodia    KH   KHM 1964
## 2328                                      Cambodia    KH   KHM 1963
## 2329                                      Cambodia    KH   KHM 1962
## 2330                                      Cambodia    KH   KHM 1961
## 2331                                      Cambodia    KH   KHM 1960
## 2332                                      Cameroon    CM   CMR 2022
## 2333                                      Cameroon    CM   CMR 2021
## 2334                                      Cameroon    CM   CMR 2020
## 2335                                      Cameroon    CM   CMR 2019
## 2336                                      Cameroon    CM   CMR 2018
## 2337                                      Cameroon    CM   CMR 2017
## 2338                                      Cameroon    CM   CMR 2016
## 2339                                      Cameroon    CM   CMR 2015
## 2340                                      Cameroon    CM   CMR 2014
## 2341                                      Cameroon    CM   CMR 2013
## 2342                                      Cameroon    CM   CMR 2012
## 2343                                      Cameroon    CM   CMR 2011
## 2344                                      Cameroon    CM   CMR 2010
## 2345                                      Cameroon    CM   CMR 2009
## 2346                                      Cameroon    CM   CMR 2008
## 2347                                      Cameroon    CM   CMR 2007
## 2348                                      Cameroon    CM   CMR 2006
## 2349                                      Cameroon    CM   CMR 2005
## 2350                                      Cameroon    CM   CMR 2004
## 2351                                      Cameroon    CM   CMR 2003
## 2352                                      Cameroon    CM   CMR 2002
## 2353                                      Cameroon    CM   CMR 2001
## 2354                                      Cameroon    CM   CMR 2000
## 2355                                      Cameroon    CM   CMR 1999
## 2356                                      Cameroon    CM   CMR 1998
## 2357                                      Cameroon    CM   CMR 1997
## 2358                                      Cameroon    CM   CMR 1996
## 2359                                      Cameroon    CM   CMR 1995
## 2360                                      Cameroon    CM   CMR 1994
## 2361                                      Cameroon    CM   CMR 1993
## 2362                                      Cameroon    CM   CMR 1992
## 2363                                      Cameroon    CM   CMR 1991
## 2364                                      Cameroon    CM   CMR 1990
## 2365                                      Cameroon    CM   CMR 1989
## 2366                                      Cameroon    CM   CMR 1988
## 2367                                      Cameroon    CM   CMR 1987
## 2368                                      Cameroon    CM   CMR 1986
## 2369                                      Cameroon    CM   CMR 1985
## 2370                                      Cameroon    CM   CMR 1984
## 2371                                      Cameroon    CM   CMR 1983
## 2372                                      Cameroon    CM   CMR 1982
## 2373                                      Cameroon    CM   CMR 1981
## 2374                                      Cameroon    CM   CMR 1980
## 2375                                      Cameroon    CM   CMR 1979
## 2376                                      Cameroon    CM   CMR 1978
## 2377                                      Cameroon    CM   CMR 1977
## 2378                                      Cameroon    CM   CMR 1976
## 2379                                      Cameroon    CM   CMR 1975
## 2380                                      Cameroon    CM   CMR 1974
## 2381                                      Cameroon    CM   CMR 1973
## 2382                                      Cameroon    CM   CMR 1972
## 2383                                      Cameroon    CM   CMR 1971
## 2384                                      Cameroon    CM   CMR 1970
## 2385                                      Cameroon    CM   CMR 1969
## 2386                                      Cameroon    CM   CMR 1968
## 2387                                      Cameroon    CM   CMR 1967
## 2388                                      Cameroon    CM   CMR 1966
## 2389                                      Cameroon    CM   CMR 1965
## 2390                                      Cameroon    CM   CMR 1964
## 2391                                      Cameroon    CM   CMR 1963
## 2392                                      Cameroon    CM   CMR 1962
## 2393                                      Cameroon    CM   CMR 1961
## 2394                                      Cameroon    CM   CMR 1960
## 2395                                        Canada    CA   CAN 2022
## 2396                                        Canada    CA   CAN 2021
## 2397                                        Canada    CA   CAN 2020
## 2398                                        Canada    CA   CAN 2019
## 2399                                        Canada    CA   CAN 2018
## 2400                                        Canada    CA   CAN 2017
## 2401                                        Canada    CA   CAN 2016
## 2402                                        Canada    CA   CAN 2015
## 2403                                        Canada    CA   CAN 2014
## 2404                                        Canada    CA   CAN 2013
## 2405                                        Canada    CA   CAN 2012
## 2406                                        Canada    CA   CAN 2011
## 2407                                        Canada    CA   CAN 2010
## 2408                                        Canada    CA   CAN 2009
## 2409                                        Canada    CA   CAN 2008
## 2410                                        Canada    CA   CAN 2007
## 2411                                        Canada    CA   CAN 2006
## 2412                                        Canada    CA   CAN 2005
## 2413                                        Canada    CA   CAN 2004
## 2414                                        Canada    CA   CAN 2003
## 2415                                        Canada    CA   CAN 2002
## 2416                                        Canada    CA   CAN 2001
## 2417                                        Canada    CA   CAN 2000
## 2418                                        Canada    CA   CAN 1999
## 2419                                        Canada    CA   CAN 1998
## 2420                                        Canada    CA   CAN 1997
## 2421                                        Canada    CA   CAN 1996
## 2422                                        Canada    CA   CAN 1995
## 2423                                        Canada    CA   CAN 1994
## 2424                                        Canada    CA   CAN 1993
## 2425                                        Canada    CA   CAN 1992
## 2426                                        Canada    CA   CAN 1991
## 2427                                        Canada    CA   CAN 1990
## 2428                                        Canada    CA   CAN 1989
## 2429                                        Canada    CA   CAN 1988
## 2430                                        Canada    CA   CAN 1987
## 2431                                        Canada    CA   CAN 1986
## 2432                                        Canada    CA   CAN 1985
## 2433                                        Canada    CA   CAN 1984
## 2434                                        Canada    CA   CAN 1983
## 2435                                        Canada    CA   CAN 1982
## 2436                                        Canada    CA   CAN 1981
## 2437                                        Canada    CA   CAN 1980
## 2438                                        Canada    CA   CAN 1979
## 2439                                        Canada    CA   CAN 1978
## 2440                                        Canada    CA   CAN 1977
## 2441                                        Canada    CA   CAN 1976
## 2442                                        Canada    CA   CAN 1975
## 2443                                        Canada    CA   CAN 1974
## 2444                                        Canada    CA   CAN 1973
## 2445                                        Canada    CA   CAN 1972
## 2446                                        Canada    CA   CAN 1971
## 2447                                        Canada    CA   CAN 1970
## 2448                                        Canada    CA   CAN 1969
## 2449                                        Canada    CA   CAN 1968
## 2450                                        Canada    CA   CAN 1967
## 2451                                        Canada    CA   CAN 1966
## 2452                                        Canada    CA   CAN 1965
## 2453                                        Canada    CA   CAN 1964
## 2454                                        Canada    CA   CAN 1963
## 2455                                        Canada    CA   CAN 1962
## 2456                                        Canada    CA   CAN 1961
## 2457                                        Canada    CA   CAN 1960
## 2458                        Caribbean small states    S3   CSS 2003
## 2459                        Caribbean small states    S3   CSS 2001
## 2460                        Caribbean small states    S3   CSS 2000
## 2461                        Caribbean small states    S3   CSS 1999
## 2462                        Caribbean small states    S3   CSS 2002
## 2463                        Caribbean small states    S3   CSS 1989
## 2464                        Caribbean small states    S3   CSS 1978
## 2465                        Caribbean small states    S3   CSS 1998
## 2466                        Caribbean small states    S3   CSS 1997
## 2467                        Caribbean small states    S3   CSS 2004
## 2468                        Caribbean small states    S3   CSS 1975
## 2469                        Caribbean small states    S3   CSS 1977
## 2470                        Caribbean small states    S3   CSS 2017
## 2471                        Caribbean small states    S3   CSS 1988
## 2472                        Caribbean small states    S3   CSS 1971
## 2473                        Caribbean small states    S3   CSS 1974
## 2474                        Caribbean small states    S3   CSS 1973
## 2475                        Caribbean small states    S3   CSS 1976
## 2476                        Caribbean small states    S3   CSS 1979
## 2477                        Caribbean small states    S3   CSS 2005
## 2478                        Caribbean small states    S3   CSS 1965
## 2479                        Caribbean small states    S3   CSS 1972
## 2480                        Caribbean small states    S3   CSS 1963
## 2481                        Caribbean small states    S3   CSS 1962
## 2482                        Caribbean small states    S3   CSS 1961
## 2483                        Caribbean small states    S3   CSS 1964
## 2484                        Caribbean small states    S3   CSS 1986
## 2485                        Caribbean small states    S3   CSS 1985
## 2486                        Caribbean small states    S3   CSS 1996
## 2487                        Caribbean small states    S3   CSS 1960
## 2488                        Caribbean small states    S3   CSS 1980
## 2489                        Caribbean small states    S3   CSS 1993
## 2490                        Caribbean small states    S3   CSS 1992
## 2491                        Caribbean small states    S3   CSS 1991
## 2492                        Caribbean small states    S3   CSS 1990
## 2493                        Caribbean small states    S3   CSS 2018
## 2494                        Caribbean small states    S3   CSS 2016
## 2495                        Caribbean small states    S3   CSS 2015
## 2496                        Caribbean small states    S3   CSS 1987
## 2497                        Caribbean small states    S3   CSS 2013
## 2498                        Caribbean small states    S3   CSS 2012
## 2499                        Caribbean small states    S3   CSS 1984
## 2500                        Caribbean small states    S3   CSS 1995
## 2501                        Caribbean small states    S3   CSS 1994
## 2502                        Caribbean small states    S3   CSS 1981
## 2503                        Caribbean small states    S3   CSS 2021
## 2504                        Caribbean small states    S3   CSS 2020
## 2505                        Caribbean small states    S3   CSS 2019
## 2506                        Caribbean small states    S3   CSS 1969
## 2507                        Caribbean small states    S3   CSS 1968
## 2508                        Caribbean small states    S3   CSS 2011
## 2509                        Caribbean small states    S3   CSS 2014
## 2510                        Caribbean small states    S3   CSS 2006
## 2511                        Caribbean small states    S3   CSS 1983
## 2512                        Caribbean small states    S3   CSS 1967
## 2513                        Caribbean small states    S3   CSS 1970
## 2514                        Caribbean small states    S3   CSS 2007
## 2515                        Caribbean small states    S3   CSS 1982
## 2516                        Caribbean small states    S3   CSS 1966
## 2517                        Caribbean small states    S3   CSS 2008
## 2518                        Caribbean small states    S3   CSS 2010
## 2519                        Caribbean small states    S3   CSS 2022
## 2520                        Caribbean small states    S3   CSS 2009
## 2521                                Cayman Islands    KY   CYM 2022
## 2522                                Cayman Islands    KY   CYM 2021
## 2523                                Cayman Islands    KY   CYM 2020
## 2524                                Cayman Islands    KY   CYM 2019
## 2525                                Cayman Islands    KY   CYM 2018
## 2526                                Cayman Islands    KY   CYM 2017
## 2527                                Cayman Islands    KY   CYM 2016
## 2528                                Cayman Islands    KY   CYM 2015
## 2529                                Cayman Islands    KY   CYM 2014
## 2530                                Cayman Islands    KY   CYM 2013
## 2531                                Cayman Islands    KY   CYM 2012
## 2532                                Cayman Islands    KY   CYM 2011
## 2533                                Cayman Islands    KY   CYM 2010
## 2534                                Cayman Islands    KY   CYM 2009
## 2535                                Cayman Islands    KY   CYM 2008
## 2536                                Cayman Islands    KY   CYM 2007
## 2537                                Cayman Islands    KY   CYM 2006
## 2538                                Cayman Islands    KY   CYM 2005
## 2539                                Cayman Islands    KY   CYM 2004
## 2540                                Cayman Islands    KY   CYM 2003
## 2541                                Cayman Islands    KY   CYM 2002
## 2542                                Cayman Islands    KY   CYM 2001
## 2543                                Cayman Islands    KY   CYM 2000
## 2544                                Cayman Islands    KY   CYM 1999
## 2545                                Cayman Islands    KY   CYM 1998
## 2546                                Cayman Islands    KY   CYM 1997
## 2547                                Cayman Islands    KY   CYM 1996
## 2548                                Cayman Islands    KY   CYM 1995
## 2549                                Cayman Islands    KY   CYM 1994
## 2550                                Cayman Islands    KY   CYM 1993
## 2551                                Cayman Islands    KY   CYM 1992
## 2552                                Cayman Islands    KY   CYM 1991
## 2553                                Cayman Islands    KY   CYM 1990
## 2554                                Cayman Islands    KY   CYM 1989
## 2555                                Cayman Islands    KY   CYM 1988
## 2556                                Cayman Islands    KY   CYM 1987
## 2557                                Cayman Islands    KY   CYM 1986
## 2558                                Cayman Islands    KY   CYM 1985
## 2559                                Cayman Islands    KY   CYM 1984
## 2560                                Cayman Islands    KY   CYM 1983
## 2561                                Cayman Islands    KY   CYM 1982
## 2562                                Cayman Islands    KY   CYM 1981
## 2563                                Cayman Islands    KY   CYM 1980
## 2564                                Cayman Islands    KY   CYM 1979
## 2565                                Cayman Islands    KY   CYM 1978
## 2566                                Cayman Islands    KY   CYM 1977
## 2567                                Cayman Islands    KY   CYM 1976
## 2568                                Cayman Islands    KY   CYM 1975
## 2569                                Cayman Islands    KY   CYM 1974
## 2570                                Cayman Islands    KY   CYM 1973
## 2571                                Cayman Islands    KY   CYM 1972
## 2572                                Cayman Islands    KY   CYM 1971
## 2573                                Cayman Islands    KY   CYM 1970
## 2574                                Cayman Islands    KY   CYM 1969
## 2575                                Cayman Islands    KY   CYM 1968
## 2576                                Cayman Islands    KY   CYM 1967
## 2577                                Cayman Islands    KY   CYM 1966
## 2578                                Cayman Islands    KY   CYM 1965
## 2579                                Cayman Islands    KY   CYM 1964
## 2580                                Cayman Islands    KY   CYM 1963
## 2581                                Cayman Islands    KY   CYM 1962
## 2582                                Cayman Islands    KY   CYM 1961
## 2583                                Cayman Islands    KY   CYM 1960
## 2584                      Central African Republic    CF   CAF 2022
## 2585                      Central African Republic    CF   CAF 2021
## 2586                      Central African Republic    CF   CAF 2020
## 2587                      Central African Republic    CF   CAF 2019
## 2588                      Central African Republic    CF   CAF 2018
## 2589                      Central African Republic    CF   CAF 2017
## 2590                      Central African Republic    CF   CAF 2016
## 2591                      Central African Republic    CF   CAF 2015
## 2592                      Central African Republic    CF   CAF 2014
## 2593                      Central African Republic    CF   CAF 2013
## 2594                      Central African Republic    CF   CAF 2012
## 2595                      Central African Republic    CF   CAF 2011
## 2596                      Central African Republic    CF   CAF 2010
## 2597                      Central African Republic    CF   CAF 2009
## 2598                      Central African Republic    CF   CAF 2008
## 2599                      Central African Republic    CF   CAF 2007
## 2600                      Central African Republic    CF   CAF 2006
## 2601                      Central African Republic    CF   CAF 2005
## 2602                      Central African Republic    CF   CAF 2004
## 2603                      Central African Republic    CF   CAF 2003
## 2604                      Central African Republic    CF   CAF 2002
## 2605                      Central African Republic    CF   CAF 2001
## 2606                      Central African Republic    CF   CAF 2000
## 2607                      Central African Republic    CF   CAF 1999
## 2608                      Central African Republic    CF   CAF 1998
## 2609                      Central African Republic    CF   CAF 1997
## 2610                      Central African Republic    CF   CAF 1996
## 2611                      Central African Republic    CF   CAF 1995
## 2612                      Central African Republic    CF   CAF 1994
## 2613                      Central African Republic    CF   CAF 1993
## 2614                      Central African Republic    CF   CAF 1992
## 2615                      Central African Republic    CF   CAF 1991
## 2616                      Central African Republic    CF   CAF 1990
## 2617                      Central African Republic    CF   CAF 1989
## 2618                      Central African Republic    CF   CAF 1988
## 2619                      Central African Republic    CF   CAF 1987
## 2620                      Central African Republic    CF   CAF 1986
## 2621                      Central African Republic    CF   CAF 1985
## 2622                      Central African Republic    CF   CAF 1984
## 2623                      Central African Republic    CF   CAF 1983
## 2624                      Central African Republic    CF   CAF 1982
## 2625                      Central African Republic    CF   CAF 1981
## 2626                      Central African Republic    CF   CAF 1980
## 2627                      Central African Republic    CF   CAF 1979
## 2628                      Central African Republic    CF   CAF 1978
## 2629                      Central African Republic    CF   CAF 1977
## 2630                      Central African Republic    CF   CAF 1976
## 2631                      Central African Republic    CF   CAF 1975
## 2632                      Central African Republic    CF   CAF 1974
## 2633                      Central African Republic    CF   CAF 1973
## 2634                      Central African Republic    CF   CAF 1972
## 2635                      Central African Republic    CF   CAF 1971
## 2636                      Central African Republic    CF   CAF 1970
## 2637                      Central African Republic    CF   CAF 1969
## 2638                      Central African Republic    CF   CAF 1968
## 2639                      Central African Republic    CF   CAF 1967
## 2640                      Central African Republic    CF   CAF 1966
## 2641                      Central African Republic    CF   CAF 1965
## 2642                      Central African Republic    CF   CAF 1964
## 2643                      Central African Republic    CF   CAF 1963
## 2644                      Central African Republic    CF   CAF 1962
## 2645                      Central African Republic    CF   CAF 1961
## 2646                      Central African Republic    CF   CAF 1960
## 2647                Central Europe and the Baltics    B8   CEB 2012
## 2648                Central Europe and the Baltics    B8   CEB 2021
## 2649                Central Europe and the Baltics    B8   CEB 2013
## 2650                Central Europe and the Baltics    B8   CEB 1988
## 2651                Central Europe and the Baltics    B8   CEB 2011
## 2652                Central Europe and the Baltics    B8   CEB 2022
## 2653                Central Europe and the Baltics    B8   CEB 1984
## 2654                Central Europe and the Baltics    B8   CEB 1987
## 2655                Central Europe and the Baltics    B8   CEB 1986
## 2656                Central Europe and the Baltics    B8   CEB 1985
## 2657                Central Europe and the Baltics    B8   CEB 1989
## 2658                Central Europe and the Baltics    B8   CEB 1983
## 2659                Central Europe and the Baltics    B8   CEB 1982
## 2660                Central Europe and the Baltics    B8   CEB 2020
## 2661                Central Europe and the Baltics    B8   CEB 1972
## 2662                Central Europe and the Baltics    B8   CEB 2014
## 2663                Central Europe and the Baltics    B8   CEB 1974
## 2664                Central Europe and the Baltics    B8   CEB 1973
## 2665                Central Europe and the Baltics    B8   CEB 2008
## 2666                Central Europe and the Baltics    B8   CEB 1971
## 2667                Central Europe and the Baltics    B8   CEB 2010
## 2668                Central Europe and the Baltics    B8   CEB 2009
## 2669                Central Europe and the Baltics    B8   CEB 2016
## 2670                Central Europe and the Baltics    B8   CEB 2015
## 2671                Central Europe and the Baltics    B8   CEB 2002
## 2672                Central Europe and the Baltics    B8   CEB 2001
## 2673                Central Europe and the Baltics    B8   CEB 2000
## 2674                Central Europe and the Baltics    B8   CEB 1999
## 2675                Central Europe and the Baltics    B8   CEB 1998
## 2676                Central Europe and the Baltics    B8   CEB 1997
## 2677                Central Europe and the Baltics    B8   CEB 1996
## 2678                Central Europe and the Baltics    B8   CEB 1995
## 2679                Central Europe and the Baltics    B8   CEB 2019
## 2680                Central Europe and the Baltics    B8   CEB 2018
## 2681                Central Europe and the Baltics    B8   CEB 2017
## 2682                Central Europe and the Baltics    B8   CEB 2004
## 2683                Central Europe and the Baltics    B8   CEB 2003
## 2684                Central Europe and the Baltics    B8   CEB 1991
## 2685                Central Europe and the Baltics    B8   CEB 1990
## 2686                Central Europe and the Baltics    B8   CEB 1975
## 2687                Central Europe and the Baltics    B8   CEB 1961
## 2688                Central Europe and the Baltics    B8   CEB 1960
## 2689                Central Europe and the Baltics    B8   CEB 1981
## 2690                Central Europe and the Baltics    B8   CEB 1970
## 2691                Central Europe and the Baltics    B8   CEB 1969
## 2692                Central Europe and the Baltics    B8   CEB 1968
## 2693                Central Europe and the Baltics    B8   CEB 1977
## 2694                Central Europe and the Baltics    B8   CEB 1980
## 2695                Central Europe and the Baltics    B8   CEB 1979
## 2696                Central Europe and the Baltics    B8   CEB 1978
## 2697                Central Europe and the Baltics    B8   CEB 1962
## 2698                Central Europe and the Baltics    B8   CEB 1976
## 2699                Central Europe and the Baltics    B8   CEB 1963
## 2700                Central Europe and the Baltics    B8   CEB 2005
## 2701                Central Europe and the Baltics    B8   CEB 1966
## 2702                Central Europe and the Baltics    B8   CEB 2007
## 2703                Central Europe and the Baltics    B8   CEB 2006
## 2704                Central Europe and the Baltics    B8   CEB 1994
## 2705                Central Europe and the Baltics    B8   CEB 1965
## 2706                Central Europe and the Baltics    B8   CEB 1964
## 2707                Central Europe and the Baltics    B8   CEB 1993
## 2708                Central Europe and the Baltics    B8   CEB 1992
## 2709                Central Europe and the Baltics    B8   CEB 1967
## 2710                                          Chad    TD   TCD 2022
## 2711                                          Chad    TD   TCD 2021
## 2712                                          Chad    TD   TCD 2020
## 2713                                          Chad    TD   TCD 2019
## 2714                                          Chad    TD   TCD 2018
## 2715                                          Chad    TD   TCD 2017
## 2716                                          Chad    TD   TCD 2016
## 2717                                          Chad    TD   TCD 2015
## 2718                                          Chad    TD   TCD 2014
## 2719                                          Chad    TD   TCD 2013
## 2720                                          Chad    TD   TCD 2012
## 2721                                          Chad    TD   TCD 2011
## 2722                                          Chad    TD   TCD 2010
## 2723                                          Chad    TD   TCD 2009
## 2724                                          Chad    TD   TCD 2008
## 2725                                          Chad    TD   TCD 2007
## 2726                                          Chad    TD   TCD 2006
## 2727                                          Chad    TD   TCD 2005
## 2728                                          Chad    TD   TCD 2004
## 2729                                          Chad    TD   TCD 2003
## 2730                                          Chad    TD   TCD 2002
## 2731                                          Chad    TD   TCD 2001
## 2732                                          Chad    TD   TCD 2000
## 2733                                          Chad    TD   TCD 1999
## 2734                                          Chad    TD   TCD 1998
## 2735                                          Chad    TD   TCD 1997
## 2736                                          Chad    TD   TCD 1996
## 2737                                          Chad    TD   TCD 1995
## 2738                                          Chad    TD   TCD 1994
## 2739                                          Chad    TD   TCD 1993
## 2740                                          Chad    TD   TCD 1992
## 2741                                          Chad    TD   TCD 1991
## 2742                                          Chad    TD   TCD 1990
## 2743                                          Chad    TD   TCD 1989
## 2744                                          Chad    TD   TCD 1988
## 2745                                          Chad    TD   TCD 1987
## 2746                                          Chad    TD   TCD 1986
## 2747                                          Chad    TD   TCD 1985
## 2748                                          Chad    TD   TCD 1984
## 2749                                          Chad    TD   TCD 1983
## 2750                                          Chad    TD   TCD 1982
## 2751                                          Chad    TD   TCD 1981
## 2752                                          Chad    TD   TCD 1980
## 2753                                          Chad    TD   TCD 1979
## 2754                                          Chad    TD   TCD 1978
## 2755                                          Chad    TD   TCD 1977
## 2756                                          Chad    TD   TCD 1976
## 2757                                          Chad    TD   TCD 1975
## 2758                                          Chad    TD   TCD 1974
## 2759                                          Chad    TD   TCD 1973
## 2760                                          Chad    TD   TCD 1972
## 2761                                          Chad    TD   TCD 1971
## 2762                                          Chad    TD   TCD 1970
## 2763                                          Chad    TD   TCD 1969
## 2764                                          Chad    TD   TCD 1968
## 2765                                          Chad    TD   TCD 1967
## 2766                                          Chad    TD   TCD 1966
## 2767                                          Chad    TD   TCD 1965
## 2768                                          Chad    TD   TCD 1964
## 2769                                          Chad    TD   TCD 1963
## 2770                                          Chad    TD   TCD 1962
## 2771                                          Chad    TD   TCD 1961
## 2772                                          Chad    TD   TCD 1960
## 2773                               Channel Islands    JG   CHI 2022
## 2774                               Channel Islands    JG   CHI 2021
## 2775                               Channel Islands    JG   CHI 2020
## 2776                               Channel Islands    JG   CHI 2019
## 2777                               Channel Islands    JG   CHI 2018
## 2778                               Channel Islands    JG   CHI 2017
## 2779                               Channel Islands    JG   CHI 2016
## 2780                               Channel Islands    JG   CHI 2015
## 2781                               Channel Islands    JG   CHI 2014
## 2782                               Channel Islands    JG   CHI 2013
## 2783                               Channel Islands    JG   CHI 2012
## 2784                               Channel Islands    JG   CHI 2011
## 2785                               Channel Islands    JG   CHI 2010
## 2786                               Channel Islands    JG   CHI 2009
## 2787                               Channel Islands    JG   CHI 2008
## 2788                               Channel Islands    JG   CHI 2007
## 2789                               Channel Islands    JG   CHI 2006
## 2790                               Channel Islands    JG   CHI 2005
## 2791                               Channel Islands    JG   CHI 2004
## 2792                               Channel Islands    JG   CHI 2003
## 2793                               Channel Islands    JG   CHI 2002
## 2794                               Channel Islands    JG   CHI 2001
## 2795                               Channel Islands    JG   CHI 2000
## 2796                               Channel Islands    JG   CHI 1999
## 2797                               Channel Islands    JG   CHI 1998
## 2798                               Channel Islands    JG   CHI 1997
## 2799                               Channel Islands    JG   CHI 1996
## 2800                               Channel Islands    JG   CHI 1995
## 2801                               Channel Islands    JG   CHI 1994
## 2802                               Channel Islands    JG   CHI 1993
## 2803                               Channel Islands    JG   CHI 1992
## 2804                               Channel Islands    JG   CHI 1991
## 2805                               Channel Islands    JG   CHI 1990
## 2806                               Channel Islands    JG   CHI 1989
## 2807                               Channel Islands    JG   CHI 1988
## 2808                               Channel Islands    JG   CHI 1987
## 2809                               Channel Islands    JG   CHI 1986
## 2810                               Channel Islands    JG   CHI 1985
## 2811                               Channel Islands    JG   CHI 1984
## 2812                               Channel Islands    JG   CHI 1983
## 2813                               Channel Islands    JG   CHI 1982
## 2814                               Channel Islands    JG   CHI 1981
## 2815                               Channel Islands    JG   CHI 1980
## 2816                               Channel Islands    JG   CHI 1979
## 2817                               Channel Islands    JG   CHI 1978
## 2818                               Channel Islands    JG   CHI 1977
## 2819                               Channel Islands    JG   CHI 1976
## 2820                               Channel Islands    JG   CHI 1975
## 2821                               Channel Islands    JG   CHI 1974
## 2822                               Channel Islands    JG   CHI 1973
## 2823                               Channel Islands    JG   CHI 1972
## 2824                               Channel Islands    JG   CHI 1971
## 2825                               Channel Islands    JG   CHI 1970
## 2826                               Channel Islands    JG   CHI 1969
## 2827                               Channel Islands    JG   CHI 1968
## 2828                               Channel Islands    JG   CHI 1967
## 2829                               Channel Islands    JG   CHI 1966
## 2830                               Channel Islands    JG   CHI 1965
## 2831                               Channel Islands    JG   CHI 1964
## 2832                               Channel Islands    JG   CHI 1963
## 2833                               Channel Islands    JG   CHI 1962
## 2834                               Channel Islands    JG   CHI 1961
## 2835                               Channel Islands    JG   CHI 1960
## 2836                                         Chile    CL   CHL 2022
## 2837                                         Chile    CL   CHL 2021
## 2838                                         Chile    CL   CHL 2020
## 2839                                         Chile    CL   CHL 2019
## 2840                                         Chile    CL   CHL 2018
## 2841                                         Chile    CL   CHL 2017
## 2842                                         Chile    CL   CHL 2016
## 2843                                         Chile    CL   CHL 2015
## 2844                                         Chile    CL   CHL 2014
## 2845                                         Chile    CL   CHL 2013
## 2846                                         Chile    CL   CHL 2012
## 2847                                         Chile    CL   CHL 2011
## 2848                                         Chile    CL   CHL 2010
## 2849                                         Chile    CL   CHL 2009
## 2850                                         Chile    CL   CHL 2008
## 2851                                         Chile    CL   CHL 2007
## 2852                                         Chile    CL   CHL 2006
## 2853                                         Chile    CL   CHL 2005
## 2854                                         Chile    CL   CHL 2004
## 2855                                         Chile    CL   CHL 2003
## 2856                                         Chile    CL   CHL 2002
## 2857                                         Chile    CL   CHL 2001
## 2858                                         Chile    CL   CHL 2000
## 2859                                         Chile    CL   CHL 1999
## 2860                                         Chile    CL   CHL 1998
## 2861                                         Chile    CL   CHL 1997
## 2862                                         Chile    CL   CHL 1996
## 2863                                         Chile    CL   CHL 1995
## 2864                                         Chile    CL   CHL 1994
## 2865                                         Chile    CL   CHL 1993
## 2866                                         Chile    CL   CHL 1992
## 2867                                         Chile    CL   CHL 1991
## 2868                                         Chile    CL   CHL 1990
## 2869                                         Chile    CL   CHL 1989
## 2870                                         Chile    CL   CHL 1988
## 2871                                         Chile    CL   CHL 1987
## 2872                                         Chile    CL   CHL 1986
## 2873                                         Chile    CL   CHL 1985
## 2874                                         Chile    CL   CHL 1984
## 2875                                         Chile    CL   CHL 1983
## 2876                                         Chile    CL   CHL 1982
## 2877                                         Chile    CL   CHL 1981
## 2878                                         Chile    CL   CHL 1980
## 2879                                         Chile    CL   CHL 1979
## 2880                                         Chile    CL   CHL 1978
## 2881                                         Chile    CL   CHL 1977
## 2882                                         Chile    CL   CHL 1976
## 2883                                         Chile    CL   CHL 1975
## 2884                                         Chile    CL   CHL 1974
## 2885                                         Chile    CL   CHL 1973
## 2886                                         Chile    CL   CHL 1972
## 2887                                         Chile    CL   CHL 1971
## 2888                                         Chile    CL   CHL 1970
## 2889                                         Chile    CL   CHL 1969
## 2890                                         Chile    CL   CHL 1968
## 2891                                         Chile    CL   CHL 1967
## 2892                                         Chile    CL   CHL 1966
## 2893                                         Chile    CL   CHL 1965
## 2894                                         Chile    CL   CHL 1964
## 2895                                         Chile    CL   CHL 1963
## 2896                                         Chile    CL   CHL 1962
## 2897                                         Chile    CL   CHL 1961
## 2898                                         Chile    CL   CHL 1960
## 2899                                         China    CN   CHN 2022
## 2900                                         China    CN   CHN 2021
## 2901                                         China    CN   CHN 2020
## 2902                                         China    CN   CHN 2019
## 2903                                         China    CN   CHN 2018
## 2904                                         China    CN   CHN 2017
## 2905                                         China    CN   CHN 2016
## 2906                                         China    CN   CHN 2015
## 2907                                         China    CN   CHN 2014
## 2908                                         China    CN   CHN 2013
## 2909                                         China    CN   CHN 2012
## 2910                                         China    CN   CHN 2011
## 2911                                         China    CN   CHN 2010
## 2912                                         China    CN   CHN 2009
## 2913                                         China    CN   CHN 2008
## 2914                                         China    CN   CHN 2007
## 2915                                         China    CN   CHN 2006
## 2916                                         China    CN   CHN 2005
## 2917                                         China    CN   CHN 2004
## 2918                                         China    CN   CHN 2003
## 2919                                         China    CN   CHN 2002
## 2920                                         China    CN   CHN 2001
## 2921                                         China    CN   CHN 2000
## 2922                                         China    CN   CHN 1999
## 2923                                         China    CN   CHN 1998
## 2924                                         China    CN   CHN 1997
## 2925                                         China    CN   CHN 1996
## 2926                                         China    CN   CHN 1995
## 2927                                         China    CN   CHN 1994
## 2928                                         China    CN   CHN 1993
## 2929                                         China    CN   CHN 1992
## 2930                                         China    CN   CHN 1991
## 2931                                         China    CN   CHN 1990
## 2932                                         China    CN   CHN 1989
## 2933                                         China    CN   CHN 1988
## 2934                                         China    CN   CHN 1987
## 2935                                         China    CN   CHN 1986
## 2936                                         China    CN   CHN 1985
## 2937                                         China    CN   CHN 1984
## 2938                                         China    CN   CHN 1983
## 2939                                         China    CN   CHN 1982
## 2940                                         China    CN   CHN 1981
## 2941                                         China    CN   CHN 1980
## 2942                                         China    CN   CHN 1979
## 2943                                         China    CN   CHN 1978
## 2944                                         China    CN   CHN 1977
## 2945                                         China    CN   CHN 1976
## 2946                                         China    CN   CHN 1975
## 2947                                         China    CN   CHN 1974
## 2948                                         China    CN   CHN 1973
## 2949                                         China    CN   CHN 1972
## 2950                                         China    CN   CHN 1971
## 2951                                         China    CN   CHN 1970
## 2952                                         China    CN   CHN 1969
## 2953                                         China    CN   CHN 1968
## 2954                                         China    CN   CHN 1967
## 2955                                         China    CN   CHN 1966
## 2956                                         China    CN   CHN 1965
## 2957                                         China    CN   CHN 1964
## 2958                                         China    CN   CHN 1963
## 2959                                         China    CN   CHN 1962
## 2960                                         China    CN   CHN 1961
## 2961                                         China    CN   CHN 1960
## 2962                                      Colombia    CO   COL 2022
## 2963                                      Colombia    CO   COL 2021
## 2964                                      Colombia    CO   COL 2020
## 2965                                      Colombia    CO   COL 2019
## 2966                                      Colombia    CO   COL 2018
## 2967                                      Colombia    CO   COL 2017
## 2968                                      Colombia    CO   COL 2016
## 2969                                      Colombia    CO   COL 2015
## 2970                                      Colombia    CO   COL 2014
## 2971                                      Colombia    CO   COL 2013
## 2972                                      Colombia    CO   COL 2012
## 2973                                      Colombia    CO   COL 2011
## 2974                                      Colombia    CO   COL 2010
## 2975                                      Colombia    CO   COL 2009
## 2976                                      Colombia    CO   COL 2008
## 2977                                      Colombia    CO   COL 2007
## 2978                                      Colombia    CO   COL 2006
## 2979                                      Colombia    CO   COL 2005
## 2980                                      Colombia    CO   COL 2004
## 2981                                      Colombia    CO   COL 2003
## 2982                                      Colombia    CO   COL 2002
## 2983                                      Colombia    CO   COL 2001
## 2984                                      Colombia    CO   COL 2000
## 2985                                      Colombia    CO   COL 1999
## 2986                                      Colombia    CO   COL 1998
## 2987                                      Colombia    CO   COL 1997
## 2988                                      Colombia    CO   COL 1996
## 2989                                      Colombia    CO   COL 1995
## 2990                                      Colombia    CO   COL 1994
## 2991                                      Colombia    CO   COL 1993
## 2992                                      Colombia    CO   COL 1992
## 2993                                      Colombia    CO   COL 1991
## 2994                                      Colombia    CO   COL 1990
## 2995                                      Colombia    CO   COL 1989
## 2996                                      Colombia    CO   COL 1988
## 2997                                      Colombia    CO   COL 1987
## 2998                                      Colombia    CO   COL 1986
## 2999                                      Colombia    CO   COL 1985
## 3000                                      Colombia    CO   COL 1984
## 3001                                      Colombia    CO   COL 1983
## 3002                                      Colombia    CO   COL 1982
## 3003                                      Colombia    CO   COL 1981
## 3004                                      Colombia    CO   COL 1980
## 3005                                      Colombia    CO   COL 1979
## 3006                                      Colombia    CO   COL 1978
## 3007                                      Colombia    CO   COL 1977
## 3008                                      Colombia    CO   COL 1976
## 3009                                      Colombia    CO   COL 1975
## 3010                                      Colombia    CO   COL 1974
## 3011                                      Colombia    CO   COL 1973
## 3012                                      Colombia    CO   COL 1972
## 3013                                      Colombia    CO   COL 1971
## 3014                                      Colombia    CO   COL 1970
## 3015                                      Colombia    CO   COL 1969
## 3016                                      Colombia    CO   COL 1968
## 3017                                      Colombia    CO   COL 1967
## 3018                                      Colombia    CO   COL 1966
## 3019                                      Colombia    CO   COL 1965
## 3020                                      Colombia    CO   COL 1964
## 3021                                      Colombia    CO   COL 1963
## 3022                                      Colombia    CO   COL 1962
## 3023                                      Colombia    CO   COL 1961
## 3024                                      Colombia    CO   COL 1960
## 3025                                       Comoros    KM   COM 2022
## 3026                                       Comoros    KM   COM 2021
## 3027                                       Comoros    KM   COM 2020
## 3028                                       Comoros    KM   COM 2019
## 3029                                       Comoros    KM   COM 2018
## 3030                                       Comoros    KM   COM 2017
## 3031                                       Comoros    KM   COM 2016
## 3032                                       Comoros    KM   COM 2015
## 3033                                       Comoros    KM   COM 2014
## 3034                                       Comoros    KM   COM 2013
## 3035                                       Comoros    KM   COM 2012
## 3036                                       Comoros    KM   COM 2011
## 3037                                       Comoros    KM   COM 2010
## 3038                                       Comoros    KM   COM 2009
## 3039                                       Comoros    KM   COM 2008
## 3040                                       Comoros    KM   COM 2007
## 3041                                       Comoros    KM   COM 2006
## 3042                                       Comoros    KM   COM 2005
## 3043                                       Comoros    KM   COM 2004
## 3044                                       Comoros    KM   COM 2003
## 3045                                       Comoros    KM   COM 2002
## 3046                                       Comoros    KM   COM 2001
## 3047                                       Comoros    KM   COM 2000
## 3048                                       Comoros    KM   COM 1999
## 3049                                       Comoros    KM   COM 1998
## 3050                                       Comoros    KM   COM 1997
## 3051                                       Comoros    KM   COM 1996
## 3052                                       Comoros    KM   COM 1995
## 3053                                       Comoros    KM   COM 1994
## 3054                                       Comoros    KM   COM 1993
## 3055                                       Comoros    KM   COM 1992
## 3056                                       Comoros    KM   COM 1991
## 3057                                       Comoros    KM   COM 1990
## 3058                                       Comoros    KM   COM 1989
## 3059                                       Comoros    KM   COM 1988
## 3060                                       Comoros    KM   COM 1987
## 3061                                       Comoros    KM   COM 1986
## 3062                                       Comoros    KM   COM 1985
## 3063                                       Comoros    KM   COM 1984
## 3064                                       Comoros    KM   COM 1983
## 3065                                       Comoros    KM   COM 1982
## 3066                                       Comoros    KM   COM 1981
## 3067                                       Comoros    KM   COM 1980
## 3068                                       Comoros    KM   COM 1979
## 3069                                       Comoros    KM   COM 1978
## 3070                                       Comoros    KM   COM 1977
## 3071                                       Comoros    KM   COM 1976
## 3072                                       Comoros    KM   COM 1975
## 3073                                       Comoros    KM   COM 1974
## 3074                                       Comoros    KM   COM 1973
## 3075                                       Comoros    KM   COM 1972
## 3076                                       Comoros    KM   COM 1971
## 3077                                       Comoros    KM   COM 1970
## 3078                                       Comoros    KM   COM 1969
## 3079                                       Comoros    KM   COM 1968
## 3080                                       Comoros    KM   COM 1967
## 3081                                       Comoros    KM   COM 1966
## 3082                                       Comoros    KM   COM 1965
## 3083                                       Comoros    KM   COM 1964
## 3084                                       Comoros    KM   COM 1963
## 3085                                       Comoros    KM   COM 1962
## 3086                                       Comoros    KM   COM 1961
## 3087                                       Comoros    KM   COM 1960
## 3088                              Congo, Dem. Rep.    CD   COD 2022
## 3089                              Congo, Dem. Rep.    CD   COD 2021
## 3090                              Congo, Dem. Rep.    CD   COD 2020
## 3091                              Congo, Dem. Rep.    CD   COD 2019
## 3092                              Congo, Dem. Rep.    CD   COD 2018
## 3093                              Congo, Dem. Rep.    CD   COD 2017
## 3094                              Congo, Dem. Rep.    CD   COD 2016
## 3095                              Congo, Dem. Rep.    CD   COD 2015
## 3096                              Congo, Dem. Rep.    CD   COD 2014
## 3097                              Congo, Dem. Rep.    CD   COD 2013
## 3098                              Congo, Dem. Rep.    CD   COD 2012
## 3099                              Congo, Dem. Rep.    CD   COD 2011
## 3100                              Congo, Dem. Rep.    CD   COD 2010
## 3101                              Congo, Dem. Rep.    CD   COD 2009
## 3102                              Congo, Dem. Rep.    CD   COD 2008
## 3103                              Congo, Dem. Rep.    CD   COD 2007
## 3104                              Congo, Dem. Rep.    CD   COD 2006
## 3105                              Congo, Dem. Rep.    CD   COD 2005
## 3106                              Congo, Dem. Rep.    CD   COD 2004
## 3107                              Congo, Dem. Rep.    CD   COD 2003
## 3108                              Congo, Dem. Rep.    CD   COD 2002
## 3109                              Congo, Dem. Rep.    CD   COD 2001
## 3110                              Congo, Dem. Rep.    CD   COD 2000
## 3111                              Congo, Dem. Rep.    CD   COD 1999
## 3112                              Congo, Dem. Rep.    CD   COD 1998
## 3113                              Congo, Dem. Rep.    CD   COD 1997
## 3114                              Congo, Dem. Rep.    CD   COD 1996
## 3115                              Congo, Dem. Rep.    CD   COD 1995
## 3116                              Congo, Dem. Rep.    CD   COD 1994
## 3117                              Congo, Dem. Rep.    CD   COD 1993
## 3118                              Congo, Dem. Rep.    CD   COD 1992
## 3119                              Congo, Dem. Rep.    CD   COD 1991
## 3120                              Congo, Dem. Rep.    CD   COD 1990
## 3121                              Congo, Dem. Rep.    CD   COD 1989
## 3122                              Congo, Dem. Rep.    CD   COD 1988
## 3123                              Congo, Dem. Rep.    CD   COD 1987
## 3124                              Congo, Dem. Rep.    CD   COD 1986
## 3125                              Congo, Dem. Rep.    CD   COD 1985
## 3126                              Congo, Dem. Rep.    CD   COD 1984
## 3127                              Congo, Dem. Rep.    CD   COD 1983
## 3128                              Congo, Dem. Rep.    CD   COD 1982
## 3129                              Congo, Dem. Rep.    CD   COD 1981
## 3130                              Congo, Dem. Rep.    CD   COD 1980
## 3131                              Congo, Dem. Rep.    CD   COD 1979
## 3132                              Congo, Dem. Rep.    CD   COD 1978
## 3133                              Congo, Dem. Rep.    CD   COD 1977
## 3134                              Congo, Dem. Rep.    CD   COD 1976
## 3135                              Congo, Dem. Rep.    CD   COD 1975
## 3136                              Congo, Dem. Rep.    CD   COD 1974
## 3137                              Congo, Dem. Rep.    CD   COD 1973
## 3138                              Congo, Dem. Rep.    CD   COD 1972
## 3139                              Congo, Dem. Rep.    CD   COD 1971
## 3140                              Congo, Dem. Rep.    CD   COD 1970
## 3141                              Congo, Dem. Rep.    CD   COD 1969
## 3142                              Congo, Dem. Rep.    CD   COD 1968
## 3143                              Congo, Dem. Rep.    CD   COD 1967
## 3144                              Congo, Dem. Rep.    CD   COD 1966
## 3145                              Congo, Dem. Rep.    CD   COD 1965
## 3146                              Congo, Dem. Rep.    CD   COD 1964
## 3147                              Congo, Dem. Rep.    CD   COD 1963
## 3148                              Congo, Dem. Rep.    CD   COD 1962
## 3149                              Congo, Dem. Rep.    CD   COD 1961
## 3150                              Congo, Dem. Rep.    CD   COD 1960
## 3151                                   Congo, Rep.    CG   COG 2022
## 3152                                   Congo, Rep.    CG   COG 2021
## 3153                                   Congo, Rep.    CG   COG 2020
## 3154                                   Congo, Rep.    CG   COG 2019
## 3155                                   Congo, Rep.    CG   COG 2018
## 3156                                   Congo, Rep.    CG   COG 2017
## 3157                                   Congo, Rep.    CG   COG 2016
## 3158                                   Congo, Rep.    CG   COG 2015
## 3159                                   Congo, Rep.    CG   COG 2014
## 3160                                   Congo, Rep.    CG   COG 2013
## 3161                                   Congo, Rep.    CG   COG 2012
## 3162                                   Congo, Rep.    CG   COG 2011
## 3163                                   Congo, Rep.    CG   COG 2010
## 3164                                   Congo, Rep.    CG   COG 2009
## 3165                                   Congo, Rep.    CG   COG 2008
## 3166                                   Congo, Rep.    CG   COG 2007
## 3167                                   Congo, Rep.    CG   COG 2006
## 3168                                   Congo, Rep.    CG   COG 2005
## 3169                                   Congo, Rep.    CG   COG 2004
## 3170                                   Congo, Rep.    CG   COG 2003
## 3171                                   Congo, Rep.    CG   COG 2002
## 3172                                   Congo, Rep.    CG   COG 2001
## 3173                                   Congo, Rep.    CG   COG 2000
## 3174                                   Congo, Rep.    CG   COG 1999
## 3175                                   Congo, Rep.    CG   COG 1998
## 3176                                   Congo, Rep.    CG   COG 1997
## 3177                                   Congo, Rep.    CG   COG 1996
## 3178                                   Congo, Rep.    CG   COG 1995
## 3179                                   Congo, Rep.    CG   COG 1994
## 3180                                   Congo, Rep.    CG   COG 1993
## 3181                                   Congo, Rep.    CG   COG 1992
## 3182                                   Congo, Rep.    CG   COG 1991
## 3183                                   Congo, Rep.    CG   COG 1990
## 3184                                   Congo, Rep.    CG   COG 1989
## 3185                                   Congo, Rep.    CG   COG 1988
## 3186                                   Congo, Rep.    CG   COG 1987
## 3187                                   Congo, Rep.    CG   COG 1986
## 3188                                   Congo, Rep.    CG   COG 1985
## 3189                                   Congo, Rep.    CG   COG 1984
## 3190                                   Congo, Rep.    CG   COG 1983
## 3191                                   Congo, Rep.    CG   COG 1982
## 3192                                   Congo, Rep.    CG   COG 1981
## 3193                                   Congo, Rep.    CG   COG 1980
## 3194                                   Congo, Rep.    CG   COG 1979
## 3195                                   Congo, Rep.    CG   COG 1978
## 3196                                   Congo, Rep.    CG   COG 1977
## 3197                                   Congo, Rep.    CG   COG 1976
## 3198                                   Congo, Rep.    CG   COG 1975
## 3199                                   Congo, Rep.    CG   COG 1974
## 3200                                   Congo, Rep.    CG   COG 1973
## 3201                                   Congo, Rep.    CG   COG 1972
## 3202                                   Congo, Rep.    CG   COG 1971
## 3203                                   Congo, Rep.    CG   COG 1970
## 3204                                   Congo, Rep.    CG   COG 1969
## 3205                                   Congo, Rep.    CG   COG 1968
## 3206                                   Congo, Rep.    CG   COG 1967
## 3207                                   Congo, Rep.    CG   COG 1966
## 3208                                   Congo, Rep.    CG   COG 1965
## 3209                                   Congo, Rep.    CG   COG 1964
## 3210                                   Congo, Rep.    CG   COG 1963
## 3211                                   Congo, Rep.    CG   COG 1962
## 3212                                   Congo, Rep.    CG   COG 1961
## 3213                                   Congo, Rep.    CG   COG 1960
## 3214                                    Costa Rica    CR   CRI 2022
## 3215                                    Costa Rica    CR   CRI 2021
## 3216                                    Costa Rica    CR   CRI 2020
## 3217                                    Costa Rica    CR   CRI 2019
## 3218                                    Costa Rica    CR   CRI 2018
## 3219                                    Costa Rica    CR   CRI 2017
## 3220                                    Costa Rica    CR   CRI 2016
## 3221                                    Costa Rica    CR   CRI 2015
## 3222                                    Costa Rica    CR   CRI 2014
## 3223                                    Costa Rica    CR   CRI 2013
## 3224                                    Costa Rica    CR   CRI 2012
## 3225                                    Costa Rica    CR   CRI 2011
## 3226                                    Costa Rica    CR   CRI 2010
## 3227                                    Costa Rica    CR   CRI 2009
## 3228                                    Costa Rica    CR   CRI 2008
## 3229                                    Costa Rica    CR   CRI 2007
## 3230                                    Costa Rica    CR   CRI 2006
## 3231                                    Costa Rica    CR   CRI 2005
## 3232                                    Costa Rica    CR   CRI 2004
## 3233                                    Costa Rica    CR   CRI 2003
## 3234                                    Costa Rica    CR   CRI 2002
## 3235                                    Costa Rica    CR   CRI 2001
## 3236                                    Costa Rica    CR   CRI 2000
## 3237                                    Costa Rica    CR   CRI 1999
## 3238                                    Costa Rica    CR   CRI 1998
## 3239                                    Costa Rica    CR   CRI 1997
## 3240                                    Costa Rica    CR   CRI 1996
## 3241                                    Costa Rica    CR   CRI 1995
## 3242                                    Costa Rica    CR   CRI 1994
## 3243                                    Costa Rica    CR   CRI 1993
## 3244                                    Costa Rica    CR   CRI 1992
## 3245                                    Costa Rica    CR   CRI 1991
## 3246                                    Costa Rica    CR   CRI 1990
## 3247                                    Costa Rica    CR   CRI 1989
## 3248                                    Costa Rica    CR   CRI 1988
## 3249                                    Costa Rica    CR   CRI 1987
## 3250                                    Costa Rica    CR   CRI 1986
## 3251                                    Costa Rica    CR   CRI 1985
## 3252                                    Costa Rica    CR   CRI 1984
## 3253                                    Costa Rica    CR   CRI 1983
## 3254                                    Costa Rica    CR   CRI 1982
## 3255                                    Costa Rica    CR   CRI 1981
## 3256                                    Costa Rica    CR   CRI 1980
## 3257                                    Costa Rica    CR   CRI 1979
## 3258                                    Costa Rica    CR   CRI 1978
## 3259                                    Costa Rica    CR   CRI 1977
## 3260                                    Costa Rica    CR   CRI 1976
## 3261                                    Costa Rica    CR   CRI 1975
## 3262                                    Costa Rica    CR   CRI 1974
## 3263                                    Costa Rica    CR   CRI 1973
## 3264                                    Costa Rica    CR   CRI 1972
## 3265                                    Costa Rica    CR   CRI 1971
## 3266                                    Costa Rica    CR   CRI 1970
## 3267                                    Costa Rica    CR   CRI 1969
## 3268                                    Costa Rica    CR   CRI 1968
## 3269                                    Costa Rica    CR   CRI 1967
## 3270                                    Costa Rica    CR   CRI 1966
## 3271                                    Costa Rica    CR   CRI 1965
## 3272                                    Costa Rica    CR   CRI 1964
## 3273                                    Costa Rica    CR   CRI 1963
## 3274                                    Costa Rica    CR   CRI 1962
## 3275                                    Costa Rica    CR   CRI 1961
## 3276                                    Costa Rica    CR   CRI 1960
## 3277                                 Cote d'Ivoire    CI   CIV 2022
## 3278                                 Cote d'Ivoire    CI   CIV 2021
## 3279                                 Cote d'Ivoire    CI   CIV 2020
## 3280                                 Cote d'Ivoire    CI   CIV 2019
## 3281                                 Cote d'Ivoire    CI   CIV 2018
## 3282                                 Cote d'Ivoire    CI   CIV 2017
## 3283                                 Cote d'Ivoire    CI   CIV 2016
## 3284                                 Cote d'Ivoire    CI   CIV 2015
## 3285                                 Cote d'Ivoire    CI   CIV 2014
## 3286                                 Cote d'Ivoire    CI   CIV 2013
## 3287                                 Cote d'Ivoire    CI   CIV 2012
## 3288                                 Cote d'Ivoire    CI   CIV 2011
## 3289                                 Cote d'Ivoire    CI   CIV 2010
## 3290                                 Cote d'Ivoire    CI   CIV 2009
## 3291                                 Cote d'Ivoire    CI   CIV 2008
## 3292                                 Cote d'Ivoire    CI   CIV 2007
## 3293                                 Cote d'Ivoire    CI   CIV 2006
## 3294                                 Cote d'Ivoire    CI   CIV 2005
## 3295                                 Cote d'Ivoire    CI   CIV 2004
## 3296                                 Cote d'Ivoire    CI   CIV 2003
## 3297                                 Cote d'Ivoire    CI   CIV 2002
## 3298                                 Cote d'Ivoire    CI   CIV 2001
## 3299                                 Cote d'Ivoire    CI   CIV 2000
## 3300                                 Cote d'Ivoire    CI   CIV 1999
## 3301                                 Cote d'Ivoire    CI   CIV 1998
## 3302                                 Cote d'Ivoire    CI   CIV 1997
## 3303                                 Cote d'Ivoire    CI   CIV 1996
## 3304                                 Cote d'Ivoire    CI   CIV 1995
## 3305                                 Cote d'Ivoire    CI   CIV 1994
## 3306                                 Cote d'Ivoire    CI   CIV 1993
## 3307                                 Cote d'Ivoire    CI   CIV 1992
## 3308                                 Cote d'Ivoire    CI   CIV 1991
## 3309                                 Cote d'Ivoire    CI   CIV 1990
## 3310                                 Cote d'Ivoire    CI   CIV 1989
## 3311                                 Cote d'Ivoire    CI   CIV 1988
## 3312                                 Cote d'Ivoire    CI   CIV 1987
## 3313                                 Cote d'Ivoire    CI   CIV 1986
## 3314                                 Cote d'Ivoire    CI   CIV 1985
## 3315                                 Cote d'Ivoire    CI   CIV 1984
## 3316                                 Cote d'Ivoire    CI   CIV 1983
## 3317                                 Cote d'Ivoire    CI   CIV 1982
## 3318                                 Cote d'Ivoire    CI   CIV 1981
## 3319                                 Cote d'Ivoire    CI   CIV 1980
## 3320                                 Cote d'Ivoire    CI   CIV 1979
## 3321                                 Cote d'Ivoire    CI   CIV 1978
## 3322                                 Cote d'Ivoire    CI   CIV 1977
## 3323                                 Cote d'Ivoire    CI   CIV 1976
## 3324                                 Cote d'Ivoire    CI   CIV 1975
## 3325                                 Cote d'Ivoire    CI   CIV 1974
## 3326                                 Cote d'Ivoire    CI   CIV 1973
## 3327                                 Cote d'Ivoire    CI   CIV 1972
## 3328                                 Cote d'Ivoire    CI   CIV 1971
## 3329                                 Cote d'Ivoire    CI   CIV 1970
## 3330                                 Cote d'Ivoire    CI   CIV 1969
## 3331                                 Cote d'Ivoire    CI   CIV 1968
## 3332                                 Cote d'Ivoire    CI   CIV 1967
## 3333                                 Cote d'Ivoire    CI   CIV 1966
## 3334                                 Cote d'Ivoire    CI   CIV 1965
## 3335                                 Cote d'Ivoire    CI   CIV 1964
## 3336                                 Cote d'Ivoire    CI   CIV 1963
## 3337                                 Cote d'Ivoire    CI   CIV 1962
## 3338                                 Cote d'Ivoire    CI   CIV 1961
## 3339                                 Cote d'Ivoire    CI   CIV 1960
## 3340                                       Croatia    HR   HRV 2022
## 3341                                       Croatia    HR   HRV 2021
## 3342                                       Croatia    HR   HRV 2020
## 3343                                       Croatia    HR   HRV 2019
## 3344                                       Croatia    HR   HRV 2018
## 3345                                       Croatia    HR   HRV 2017
## 3346                                       Croatia    HR   HRV 2016
## 3347                                       Croatia    HR   HRV 2015
## 3348                                       Croatia    HR   HRV 2014
## 3349                                       Croatia    HR   HRV 2013
## 3350                                       Croatia    HR   HRV 2012
## 3351                                       Croatia    HR   HRV 2011
## 3352                                       Croatia    HR   HRV 2010
## 3353                                       Croatia    HR   HRV 2009
## 3354                                       Croatia    HR   HRV 2008
## 3355                                       Croatia    HR   HRV 2007
## 3356                                       Croatia    HR   HRV 2006
## 3357                                       Croatia    HR   HRV 2005
## 3358                                       Croatia    HR   HRV 2004
## 3359                                       Croatia    HR   HRV 2003
## 3360                                       Croatia    HR   HRV 2002
## 3361                                       Croatia    HR   HRV 2001
## 3362                                       Croatia    HR   HRV 2000
## 3363                                       Croatia    HR   HRV 1999
## 3364                                       Croatia    HR   HRV 1998
## 3365                                       Croatia    HR   HRV 1997
## 3366                                       Croatia    HR   HRV 1996
## 3367                                       Croatia    HR   HRV 1995
## 3368                                       Croatia    HR   HRV 1994
## 3369                                       Croatia    HR   HRV 1993
## 3370                                       Croatia    HR   HRV 1992
## 3371                                       Croatia    HR   HRV 1991
## 3372                                       Croatia    HR   HRV 1990
## 3373                                       Croatia    HR   HRV 1989
## 3374                                       Croatia    HR   HRV 1988
## 3375                                       Croatia    HR   HRV 1987
## 3376                                       Croatia    HR   HRV 1986
## 3377                                       Croatia    HR   HRV 1985
## 3378                                       Croatia    HR   HRV 1984
## 3379                                       Croatia    HR   HRV 1983
## 3380                                       Croatia    HR   HRV 1982
## 3381                                       Croatia    HR   HRV 1981
## 3382                                       Croatia    HR   HRV 1980
## 3383                                       Croatia    HR   HRV 1979
## 3384                                       Croatia    HR   HRV 1978
## 3385                                       Croatia    HR   HRV 1977
## 3386                                       Croatia    HR   HRV 1976
## 3387                                       Croatia    HR   HRV 1975
## 3388                                       Croatia    HR   HRV 1974
## 3389                                       Croatia    HR   HRV 1973
## 3390                                       Croatia    HR   HRV 1972
## 3391                                       Croatia    HR   HRV 1971
## 3392                                       Croatia    HR   HRV 1970
## 3393                                       Croatia    HR   HRV 1969
## 3394                                       Croatia    HR   HRV 1968
## 3395                                       Croatia    HR   HRV 1967
## 3396                                       Croatia    HR   HRV 1966
## 3397                                       Croatia    HR   HRV 1965
## 3398                                       Croatia    HR   HRV 1964
## 3399                                       Croatia    HR   HRV 1963
## 3400                                       Croatia    HR   HRV 1962
## 3401                                       Croatia    HR   HRV 1961
## 3402                                       Croatia    HR   HRV 1960
## 3403                                          Cuba    CU   CUB 2022
## 3404                                          Cuba    CU   CUB 2021
## 3405                                          Cuba    CU   CUB 2020
## 3406                                          Cuba    CU   CUB 2019
## 3407                                          Cuba    CU   CUB 2018
## 3408                                          Cuba    CU   CUB 2017
## 3409                                          Cuba    CU   CUB 2016
## 3410                                          Cuba    CU   CUB 2015
## 3411                                          Cuba    CU   CUB 2014
## 3412                                          Cuba    CU   CUB 2013
## 3413                                          Cuba    CU   CUB 2012
## 3414                                          Cuba    CU   CUB 2011
## 3415                                          Cuba    CU   CUB 2010
## 3416                                          Cuba    CU   CUB 2009
## 3417                                          Cuba    CU   CUB 2008
## 3418                                          Cuba    CU   CUB 2007
## 3419                                          Cuba    CU   CUB 2006
## 3420                                          Cuba    CU   CUB 2005
## 3421                                          Cuba    CU   CUB 2004
## 3422                                          Cuba    CU   CUB 2003
## 3423                                          Cuba    CU   CUB 2002
## 3424                                          Cuba    CU   CUB 2001
## 3425                                          Cuba    CU   CUB 2000
## 3426                                          Cuba    CU   CUB 1999
## 3427                                          Cuba    CU   CUB 1998
## 3428                                          Cuba    CU   CUB 1997
## 3429                                          Cuba    CU   CUB 1996
## 3430                                          Cuba    CU   CUB 1995
## 3431                                          Cuba    CU   CUB 1994
## 3432                                          Cuba    CU   CUB 1993
## 3433                                          Cuba    CU   CUB 1992
## 3434                                          Cuba    CU   CUB 1991
## 3435                                          Cuba    CU   CUB 1990
## 3436                                          Cuba    CU   CUB 1989
## 3437                                          Cuba    CU   CUB 1988
## 3438                                          Cuba    CU   CUB 1987
## 3439                                          Cuba    CU   CUB 1986
## 3440                                          Cuba    CU   CUB 1985
## 3441                                          Cuba    CU   CUB 1984
## 3442                                          Cuba    CU   CUB 1983
## 3443                                          Cuba    CU   CUB 1982
## 3444                                          Cuba    CU   CUB 1981
## 3445                                          Cuba    CU   CUB 1980
## 3446                                          Cuba    CU   CUB 1979
## 3447                                          Cuba    CU   CUB 1978
## 3448                                          Cuba    CU   CUB 1977
## 3449                                          Cuba    CU   CUB 1976
## 3450                                          Cuba    CU   CUB 1975
## 3451                                          Cuba    CU   CUB 1974
## 3452                                          Cuba    CU   CUB 1973
## 3453                                          Cuba    CU   CUB 1972
## 3454                                          Cuba    CU   CUB 1971
## 3455                                          Cuba    CU   CUB 1970
## 3456                                          Cuba    CU   CUB 1969
## 3457                                          Cuba    CU   CUB 1968
## 3458                                          Cuba    CU   CUB 1967
## 3459                                          Cuba    CU   CUB 1966
## 3460                                          Cuba    CU   CUB 1965
## 3461                                          Cuba    CU   CUB 1964
## 3462                                          Cuba    CU   CUB 1963
## 3463                                          Cuba    CU   CUB 1962
## 3464                                          Cuba    CU   CUB 1961
## 3465                                          Cuba    CU   CUB 1960
## 3466                                       Curacao    CW   CUW 2022
## 3467                                       Curacao    CW   CUW 2021
## 3468                                       Curacao    CW   CUW 2020
## 3469                                       Curacao    CW   CUW 2019
## 3470                                       Curacao    CW   CUW 2018
## 3471                                       Curacao    CW   CUW 2017
## 3472                                       Curacao    CW   CUW 2016
## 3473                                       Curacao    CW   CUW 2015
## 3474                                       Curacao    CW   CUW 2014
## 3475                                       Curacao    CW   CUW 2013
## 3476                                       Curacao    CW   CUW 2012
## 3477                                       Curacao    CW   CUW 2011
## 3478                                       Curacao    CW   CUW 2010
## 3479                                       Curacao    CW   CUW 2009
## 3480                                       Curacao    CW   CUW 2008
## 3481                                       Curacao    CW   CUW 2007
## 3482                                       Curacao    CW   CUW 2006
## 3483                                       Curacao    CW   CUW 2005
## 3484                                       Curacao    CW   CUW 2004
## 3485                                       Curacao    CW   CUW 2003
## 3486                                       Curacao    CW   CUW 2002
## 3487                                       Curacao    CW   CUW 2001
## 3488                                       Curacao    CW   CUW 2000
## 3489                                       Curacao    CW   CUW 1999
## 3490                                       Curacao    CW   CUW 1998
## 3491                                       Curacao    CW   CUW 1997
## 3492                                       Curacao    CW   CUW 1996
## 3493                                       Curacao    CW   CUW 1995
## 3494                                       Curacao    CW   CUW 1994
## 3495                                       Curacao    CW   CUW 1993
## 3496                                       Curacao    CW   CUW 1992
## 3497                                       Curacao    CW   CUW 1991
## 3498                                       Curacao    CW   CUW 1990
## 3499                                       Curacao    CW   CUW 1989
## 3500                                       Curacao    CW   CUW 1988
## 3501                                       Curacao    CW   CUW 1987
## 3502                                       Curacao    CW   CUW 1986
## 3503                                       Curacao    CW   CUW 1985
## 3504                                       Curacao    CW   CUW 1984
## 3505                                       Curacao    CW   CUW 1983
## 3506                                       Curacao    CW   CUW 1982
## 3507                                       Curacao    CW   CUW 1981
## 3508                                       Curacao    CW   CUW 1980
## 3509                                       Curacao    CW   CUW 1979
## 3510                                       Curacao    CW   CUW 1978
## 3511                                       Curacao    CW   CUW 1977
## 3512                                       Curacao    CW   CUW 1976
## 3513                                       Curacao    CW   CUW 1975
## 3514                                       Curacao    CW   CUW 1974
## 3515                                       Curacao    CW   CUW 1973
## 3516                                       Curacao    CW   CUW 1972
## 3517                                       Curacao    CW   CUW 1971
## 3518                                       Curacao    CW   CUW 1970
## 3519                                       Curacao    CW   CUW 1969
## 3520                                       Curacao    CW   CUW 1968
## 3521                                       Curacao    CW   CUW 1967
## 3522                                       Curacao    CW   CUW 1966
## 3523                                       Curacao    CW   CUW 1965
## 3524                                       Curacao    CW   CUW 1964
## 3525                                       Curacao    CW   CUW 1963
## 3526                                       Curacao    CW   CUW 1962
## 3527                                       Curacao    CW   CUW 1961
## 3528                                       Curacao    CW   CUW 1960
## 3529                                        Cyprus    CY   CYP 2022
## 3530                                        Cyprus    CY   CYP 2021
## 3531                                        Cyprus    CY   CYP 2020
## 3532                                        Cyprus    CY   CYP 2019
## 3533                                        Cyprus    CY   CYP 2018
## 3534                                        Cyprus    CY   CYP 2017
## 3535                                        Cyprus    CY   CYP 2016
## 3536                                        Cyprus    CY   CYP 2015
## 3537                                        Cyprus    CY   CYP 2014
## 3538                                        Cyprus    CY   CYP 2013
## 3539                                        Cyprus    CY   CYP 2012
## 3540                                        Cyprus    CY   CYP 2011
## 3541                                        Cyprus    CY   CYP 2010
## 3542                                        Cyprus    CY   CYP 2009
## 3543                                        Cyprus    CY   CYP 2008
## 3544                                        Cyprus    CY   CYP 2007
## 3545                                        Cyprus    CY   CYP 2006
## 3546                                        Cyprus    CY   CYP 2005
## 3547                                        Cyprus    CY   CYP 2004
## 3548                                        Cyprus    CY   CYP 2003
## 3549                                        Cyprus    CY   CYP 2002
## 3550                                        Cyprus    CY   CYP 2001
## 3551                                        Cyprus    CY   CYP 2000
## 3552                                        Cyprus    CY   CYP 1999
## 3553                                        Cyprus    CY   CYP 1998
## 3554                                        Cyprus    CY   CYP 1997
## 3555                                        Cyprus    CY   CYP 1996
## 3556                                        Cyprus    CY   CYP 1995
## 3557                                        Cyprus    CY   CYP 1994
## 3558                                        Cyprus    CY   CYP 1993
## 3559                                        Cyprus    CY   CYP 1992
## 3560                                        Cyprus    CY   CYP 1991
## 3561                                        Cyprus    CY   CYP 1990
## 3562                                        Cyprus    CY   CYP 1989
## 3563                                        Cyprus    CY   CYP 1988
## 3564                                        Cyprus    CY   CYP 1987
## 3565                                        Cyprus    CY   CYP 1986
## 3566                                        Cyprus    CY   CYP 1985
## 3567                                        Cyprus    CY   CYP 1984
## 3568                                        Cyprus    CY   CYP 1983
## 3569                                        Cyprus    CY   CYP 1982
## 3570                                        Cyprus    CY   CYP 1981
## 3571                                        Cyprus    CY   CYP 1980
## 3572                                        Cyprus    CY   CYP 1979
## 3573                                        Cyprus    CY   CYP 1978
## 3574                                        Cyprus    CY   CYP 1977
## 3575                                        Cyprus    CY   CYP 1976
## 3576                                        Cyprus    CY   CYP 1975
## 3577                                        Cyprus    CY   CYP 1974
## 3578                                        Cyprus    CY   CYP 1973
## 3579                                        Cyprus    CY   CYP 1972
## 3580                                        Cyprus    CY   CYP 1971
## 3581                                        Cyprus    CY   CYP 1970
## 3582                                        Cyprus    CY   CYP 1969
## 3583                                        Cyprus    CY   CYP 1968
## 3584                                        Cyprus    CY   CYP 1967
## 3585                                        Cyprus    CY   CYP 1966
## 3586                                        Cyprus    CY   CYP 1965
## 3587                                        Cyprus    CY   CYP 1964
## 3588                                        Cyprus    CY   CYP 1963
## 3589                                        Cyprus    CY   CYP 1962
## 3590                                        Cyprus    CY   CYP 1961
## 3591                                        Cyprus    CY   CYP 1960
## 3592                                       Czechia    CZ   CZE 2022
## 3593                                       Czechia    CZ   CZE 2021
## 3594                                       Czechia    CZ   CZE 2020
## 3595                                       Czechia    CZ   CZE 2019
## 3596                                       Czechia    CZ   CZE 2018
## 3597                                       Czechia    CZ   CZE 2017
## 3598                                       Czechia    CZ   CZE 2016
## 3599                                       Czechia    CZ   CZE 2015
## 3600                                       Czechia    CZ   CZE 2014
## 3601                                       Czechia    CZ   CZE 2013
## 3602                                       Czechia    CZ   CZE 2012
## 3603                                       Czechia    CZ   CZE 2011
## 3604                                       Czechia    CZ   CZE 2010
## 3605                                       Czechia    CZ   CZE 2009
## 3606                                       Czechia    CZ   CZE 2008
## 3607                                       Czechia    CZ   CZE 2007
## 3608                                       Czechia    CZ   CZE 2006
## 3609                                       Czechia    CZ   CZE 2005
## 3610                                       Czechia    CZ   CZE 2004
## 3611                                       Czechia    CZ   CZE 2003
## 3612                                       Czechia    CZ   CZE 2002
## 3613                                       Czechia    CZ   CZE 2001
## 3614                                       Czechia    CZ   CZE 2000
## 3615                                       Czechia    CZ   CZE 1999
## 3616                                       Czechia    CZ   CZE 1998
## 3617                                       Czechia    CZ   CZE 1997
## 3618                                       Czechia    CZ   CZE 1996
## 3619                                       Czechia    CZ   CZE 1995
## 3620                                       Czechia    CZ   CZE 1994
## 3621                                       Czechia    CZ   CZE 1993
## 3622                                       Czechia    CZ   CZE 1992
## 3623                                       Czechia    CZ   CZE 1991
## 3624                                       Czechia    CZ   CZE 1990
## 3625                                       Czechia    CZ   CZE 1989
## 3626                                       Czechia    CZ   CZE 1988
## 3627                                       Czechia    CZ   CZE 1987
## 3628                                       Czechia    CZ   CZE 1986
## 3629                                       Czechia    CZ   CZE 1985
## 3630                                       Czechia    CZ   CZE 1984
## 3631                                       Czechia    CZ   CZE 1983
## 3632                                       Czechia    CZ   CZE 1982
## 3633                                       Czechia    CZ   CZE 1981
## 3634                                       Czechia    CZ   CZE 1980
## 3635                                       Czechia    CZ   CZE 1979
## 3636                                       Czechia    CZ   CZE 1978
## 3637                                       Czechia    CZ   CZE 1977
## 3638                                       Czechia    CZ   CZE 1976
## 3639                                       Czechia    CZ   CZE 1975
## 3640                                       Czechia    CZ   CZE 1974
## 3641                                       Czechia    CZ   CZE 1973
## 3642                                       Czechia    CZ   CZE 1972
## 3643                                       Czechia    CZ   CZE 1971
## 3644                                       Czechia    CZ   CZE 1970
## 3645                                       Czechia    CZ   CZE 1969
## 3646                                       Czechia    CZ   CZE 1968
## 3647                                       Czechia    CZ   CZE 1967
## 3648                                       Czechia    CZ   CZE 1966
## 3649                                       Czechia    CZ   CZE 1965
## 3650                                       Czechia    CZ   CZE 1964
## 3651                                       Czechia    CZ   CZE 1963
## 3652                                       Czechia    CZ   CZE 1962
## 3653                                       Czechia    CZ   CZE 1961
## 3654                                       Czechia    CZ   CZE 1960
## 3655                                       Denmark    DK   DNK 2022
## 3656                                       Denmark    DK   DNK 2021
## 3657                                       Denmark    DK   DNK 2020
## 3658                                       Denmark    DK   DNK 2019
## 3659                                       Denmark    DK   DNK 2018
## 3660                                       Denmark    DK   DNK 2017
## 3661                                       Denmark    DK   DNK 2016
## 3662                                       Denmark    DK   DNK 2015
## 3663                                       Denmark    DK   DNK 2014
## 3664                                       Denmark    DK   DNK 2013
## 3665                                       Denmark    DK   DNK 2012
## 3666                                       Denmark    DK   DNK 2011
## 3667                                       Denmark    DK   DNK 2010
## 3668                                       Denmark    DK   DNK 2009
## 3669                                       Denmark    DK   DNK 2008
## 3670                                       Denmark    DK   DNK 2007
## 3671                                       Denmark    DK   DNK 2006
## 3672                                       Denmark    DK   DNK 2005
## 3673                                       Denmark    DK   DNK 2004
## 3674                                       Denmark    DK   DNK 2003
## 3675                                       Denmark    DK   DNK 2002
## 3676                                       Denmark    DK   DNK 2001
## 3677                                       Denmark    DK   DNK 2000
## 3678                                       Denmark    DK   DNK 1999
## 3679                                       Denmark    DK   DNK 1998
## 3680                                       Denmark    DK   DNK 1997
## 3681                                       Denmark    DK   DNK 1996
## 3682                                       Denmark    DK   DNK 1995
## 3683                                       Denmark    DK   DNK 1994
## 3684                                       Denmark    DK   DNK 1993
## 3685                                       Denmark    DK   DNK 1992
## 3686                                       Denmark    DK   DNK 1991
## 3687                                       Denmark    DK   DNK 1990
## 3688                                       Denmark    DK   DNK 1989
## 3689                                       Denmark    DK   DNK 1988
## 3690                                       Denmark    DK   DNK 1987
## 3691                                       Denmark    DK   DNK 1986
## 3692                                       Denmark    DK   DNK 1985
## 3693                                       Denmark    DK   DNK 1984
## 3694                                       Denmark    DK   DNK 1983
## 3695                                       Denmark    DK   DNK 1982
## 3696                                       Denmark    DK   DNK 1981
## 3697                                       Denmark    DK   DNK 1980
## 3698                                       Denmark    DK   DNK 1979
## 3699                                       Denmark    DK   DNK 1978
## 3700                                       Denmark    DK   DNK 1977
## 3701                                       Denmark    DK   DNK 1976
## 3702                                       Denmark    DK   DNK 1975
## 3703                                       Denmark    DK   DNK 1974
## 3704                                       Denmark    DK   DNK 1973
## 3705                                       Denmark    DK   DNK 1972
## 3706                                       Denmark    DK   DNK 1971
## 3707                                       Denmark    DK   DNK 1970
## 3708                                       Denmark    DK   DNK 1969
## 3709                                       Denmark    DK   DNK 1968
## 3710                                       Denmark    DK   DNK 1967
## 3711                                       Denmark    DK   DNK 1966
## 3712                                       Denmark    DK   DNK 1965
## 3713                                       Denmark    DK   DNK 1964
## 3714                                       Denmark    DK   DNK 1963
## 3715                                       Denmark    DK   DNK 1962
## 3716                                       Denmark    DK   DNK 1961
## 3717                                       Denmark    DK   DNK 1960
## 3718                                      Djibouti    DJ   DJI 2022
## 3719                                      Djibouti    DJ   DJI 2021
## 3720                                      Djibouti    DJ   DJI 2020
## 3721                                      Djibouti    DJ   DJI 2019
## 3722                                      Djibouti    DJ   DJI 2018
## 3723                                      Djibouti    DJ   DJI 2017
## 3724                                      Djibouti    DJ   DJI 2016
## 3725                                      Djibouti    DJ   DJI 2015
## 3726                                      Djibouti    DJ   DJI 2014
## 3727                                      Djibouti    DJ   DJI 2013
## 3728                                      Djibouti    DJ   DJI 2012
## 3729                                      Djibouti    DJ   DJI 2011
## 3730                                      Djibouti    DJ   DJI 2010
## 3731                                      Djibouti    DJ   DJI 2009
## 3732                                      Djibouti    DJ   DJI 2008
## 3733                                      Djibouti    DJ   DJI 2007
## 3734                                      Djibouti    DJ   DJI 2006
## 3735                                      Djibouti    DJ   DJI 2005
## 3736                                      Djibouti    DJ   DJI 2004
## 3737                                      Djibouti    DJ   DJI 2003
## 3738                                      Djibouti    DJ   DJI 2002
## 3739                                      Djibouti    DJ   DJI 2001
## 3740                                      Djibouti    DJ   DJI 2000
## 3741                                      Djibouti    DJ   DJI 1999
## 3742                                      Djibouti    DJ   DJI 1998
## 3743                                      Djibouti    DJ   DJI 1997
## 3744                                      Djibouti    DJ   DJI 1996
## 3745                                      Djibouti    DJ   DJI 1995
## 3746                                      Djibouti    DJ   DJI 1994
## 3747                                      Djibouti    DJ   DJI 1993
## 3748                                      Djibouti    DJ   DJI 1992
## 3749                                      Djibouti    DJ   DJI 1991
## 3750                                      Djibouti    DJ   DJI 1990
## 3751                                      Djibouti    DJ   DJI 1989
## 3752                                      Djibouti    DJ   DJI 1988
## 3753                                      Djibouti    DJ   DJI 1987
## 3754                                      Djibouti    DJ   DJI 1986
## 3755                                      Djibouti    DJ   DJI 1985
## 3756                                      Djibouti    DJ   DJI 1984
## 3757                                      Djibouti    DJ   DJI 1983
## 3758                                      Djibouti    DJ   DJI 1982
## 3759                                      Djibouti    DJ   DJI 1981
## 3760                                      Djibouti    DJ   DJI 1980
## 3761                                      Djibouti    DJ   DJI 1979
## 3762                                      Djibouti    DJ   DJI 1978
## 3763                                      Djibouti    DJ   DJI 1977
## 3764                                      Djibouti    DJ   DJI 1976
## 3765                                      Djibouti    DJ   DJI 1975
## 3766                                      Djibouti    DJ   DJI 1974
## 3767                                      Djibouti    DJ   DJI 1973
## 3768                                      Djibouti    DJ   DJI 1972
## 3769                                      Djibouti    DJ   DJI 1971
## 3770                                      Djibouti    DJ   DJI 1970
## 3771                                      Djibouti    DJ   DJI 1969
## 3772                                      Djibouti    DJ   DJI 1968
## 3773                                      Djibouti    DJ   DJI 1967
## 3774                                      Djibouti    DJ   DJI 1966
## 3775                                      Djibouti    DJ   DJI 1965
## 3776                                      Djibouti    DJ   DJI 1964
## 3777                                      Djibouti    DJ   DJI 1963
## 3778                                      Djibouti    DJ   DJI 1962
## 3779                                      Djibouti    DJ   DJI 1961
## 3780                                      Djibouti    DJ   DJI 1960
## 3781                                      Dominica    DM   DMA 2022
## 3782                                      Dominica    DM   DMA 2021
## 3783                                      Dominica    DM   DMA 2020
## 3784                                      Dominica    DM   DMA 2019
## 3785                                      Dominica    DM   DMA 2018
## 3786                                      Dominica    DM   DMA 2017
## 3787                                      Dominica    DM   DMA 2016
## 3788                                      Dominica    DM   DMA 2015
## 3789                                      Dominica    DM   DMA 2014
## 3790                                      Dominica    DM   DMA 2013
## 3791                                      Dominica    DM   DMA 2012
## 3792                                      Dominica    DM   DMA 2011
## 3793                                      Dominica    DM   DMA 2010
## 3794                                      Dominica    DM   DMA 2009
## 3795                                      Dominica    DM   DMA 2008
## 3796                                      Dominica    DM   DMA 2007
## 3797                                      Dominica    DM   DMA 2006
## 3798                                      Dominica    DM   DMA 2005
## 3799                                      Dominica    DM   DMA 2004
## 3800                                      Dominica    DM   DMA 2003
## 3801                                      Dominica    DM   DMA 2002
## 3802                                      Dominica    DM   DMA 2001
## 3803                                      Dominica    DM   DMA 2000
## 3804                                      Dominica    DM   DMA 1999
## 3805                                      Dominica    DM   DMA 1998
## 3806                                      Dominica    DM   DMA 1997
## 3807                                      Dominica    DM   DMA 1996
## 3808                                      Dominica    DM   DMA 1995
## 3809                                      Dominica    DM   DMA 1994
## 3810                                      Dominica    DM   DMA 1993
## 3811                                      Dominica    DM   DMA 1992
## 3812                                      Dominica    DM   DMA 1991
## 3813                                      Dominica    DM   DMA 1990
## 3814                                      Dominica    DM   DMA 1989
## 3815                                      Dominica    DM   DMA 1988
## 3816                                      Dominica    DM   DMA 1987
## 3817                                      Dominica    DM   DMA 1986
## 3818                                      Dominica    DM   DMA 1985
## 3819                                      Dominica    DM   DMA 1984
## 3820                                      Dominica    DM   DMA 1983
## 3821                                      Dominica    DM   DMA 1982
## 3822                                      Dominica    DM   DMA 1981
## 3823                                      Dominica    DM   DMA 1980
## 3824                                      Dominica    DM   DMA 1979
## 3825                                      Dominica    DM   DMA 1978
## 3826                                      Dominica    DM   DMA 1977
## 3827                                      Dominica    DM   DMA 1976
## 3828                                      Dominica    DM   DMA 1975
## 3829                                      Dominica    DM   DMA 1974
## 3830                                      Dominica    DM   DMA 1973
## 3831                                      Dominica    DM   DMA 1972
## 3832                                      Dominica    DM   DMA 1971
## 3833                                      Dominica    DM   DMA 1970
## 3834                                      Dominica    DM   DMA 1969
## 3835                                      Dominica    DM   DMA 1968
## 3836                                      Dominica    DM   DMA 1967
## 3837                                      Dominica    DM   DMA 1966
## 3838                                      Dominica    DM   DMA 1965
## 3839                                      Dominica    DM   DMA 1964
## 3840                                      Dominica    DM   DMA 1963
## 3841                                      Dominica    DM   DMA 1962
## 3842                                      Dominica    DM   DMA 1961
## 3843                                      Dominica    DM   DMA 1960
## 3844                            Dominican Republic    DO   DOM 2022
## 3845                            Dominican Republic    DO   DOM 2021
## 3846                            Dominican Republic    DO   DOM 2020
## 3847                            Dominican Republic    DO   DOM 2019
## 3848                            Dominican Republic    DO   DOM 2018
## 3849                            Dominican Republic    DO   DOM 2017
## 3850                            Dominican Republic    DO   DOM 2016
## 3851                            Dominican Republic    DO   DOM 2015
## 3852                            Dominican Republic    DO   DOM 2014
## 3853                            Dominican Republic    DO   DOM 2013
## 3854                            Dominican Republic    DO   DOM 2012
## 3855                            Dominican Republic    DO   DOM 2011
## 3856                            Dominican Republic    DO   DOM 2010
## 3857                            Dominican Republic    DO   DOM 2009
## 3858                            Dominican Republic    DO   DOM 2008
## 3859                            Dominican Republic    DO   DOM 2007
## 3860                            Dominican Republic    DO   DOM 2006
## 3861                            Dominican Republic    DO   DOM 2005
## 3862                            Dominican Republic    DO   DOM 2004
## 3863                            Dominican Republic    DO   DOM 2003
## 3864                            Dominican Republic    DO   DOM 2002
## 3865                            Dominican Republic    DO   DOM 2001
## 3866                            Dominican Republic    DO   DOM 2000
## 3867                            Dominican Republic    DO   DOM 1999
## 3868                            Dominican Republic    DO   DOM 1998
## 3869                            Dominican Republic    DO   DOM 1997
## 3870                            Dominican Republic    DO   DOM 1996
## 3871                            Dominican Republic    DO   DOM 1995
## 3872                            Dominican Republic    DO   DOM 1994
## 3873                            Dominican Republic    DO   DOM 1993
## 3874                            Dominican Republic    DO   DOM 1992
## 3875                            Dominican Republic    DO   DOM 1991
## 3876                            Dominican Republic    DO   DOM 1990
## 3877                            Dominican Republic    DO   DOM 1989
## 3878                            Dominican Republic    DO   DOM 1988
## 3879                            Dominican Republic    DO   DOM 1987
## 3880                            Dominican Republic    DO   DOM 1986
## 3881                            Dominican Republic    DO   DOM 1985
## 3882                            Dominican Republic    DO   DOM 1984
## 3883                            Dominican Republic    DO   DOM 1983
## 3884                            Dominican Republic    DO   DOM 1982
## 3885                            Dominican Republic    DO   DOM 1981
## 3886                            Dominican Republic    DO   DOM 1980
## 3887                            Dominican Republic    DO   DOM 1979
## 3888                            Dominican Republic    DO   DOM 1978
## 3889                            Dominican Republic    DO   DOM 1977
## 3890                            Dominican Republic    DO   DOM 1976
## 3891                            Dominican Republic    DO   DOM 1975
## 3892                            Dominican Republic    DO   DOM 1974
## 3893                            Dominican Republic    DO   DOM 1973
## 3894                            Dominican Republic    DO   DOM 1972
## 3895                            Dominican Republic    DO   DOM 1971
## 3896                            Dominican Republic    DO   DOM 1970
## 3897                            Dominican Republic    DO   DOM 1969
## 3898                            Dominican Republic    DO   DOM 1968
## 3899                            Dominican Republic    DO   DOM 1967
## 3900                            Dominican Republic    DO   DOM 1966
## 3901                            Dominican Republic    DO   DOM 1965
## 3902                            Dominican Republic    DO   DOM 1964
## 3903                            Dominican Republic    DO   DOM 1963
## 3904                            Dominican Republic    DO   DOM 1962
## 3905                            Dominican Republic    DO   DOM 1961
## 3906                            Dominican Republic    DO   DOM 1960
## 3907                    Early-demographic dividend    V2   EAR 2009
## 3908                    Early-demographic dividend    V2   EAR 2005
## 3909                    Early-demographic dividend    V2   EAR 2007
## 3910                    Early-demographic dividend    V2   EAR 2010
## 3911                    Early-demographic dividend    V2   EAR 2004
## 3912                    Early-demographic dividend    V2   EAR 1993
## 3913                    Early-demographic dividend    V2   EAR 1981
## 3914                    Early-demographic dividend    V2   EAR 1996
## 3915                    Early-demographic dividend    V2   EAR 2008
## 3916                    Early-demographic dividend    V2   EAR 2006
## 3917                    Early-demographic dividend    V2   EAR 1977
## 3918                    Early-demographic dividend    V2   EAR 1980
## 3919                    Early-demographic dividend    V2   EAR 1979
## 3920                    Early-demographic dividend    V2   EAR 2022
## 3921                    Early-demographic dividend    V2   EAR 2012
## 3922                    Early-demographic dividend    V2   EAR 2011
## 3923                    Early-demographic dividend    V2   EAR 1971
## 3924                    Early-demographic dividend    V2   EAR 1978
## 3925                    Early-demographic dividend    V2   EAR 1969
## 3926                    Early-demographic dividend    V2   EAR 1968
## 3927                    Early-demographic dividend    V2   EAR 1967
## 3928                    Early-demographic dividend    V2   EAR 1994
## 3929                    Early-demographic dividend    V2   EAR 1965
## 3930                    Early-demographic dividend    V2   EAR 2003
## 3931                    Early-demographic dividend    V2   EAR 2002
## 3932                    Early-demographic dividend    V2   EAR 1966
## 3933                    Early-demographic dividend    V2   EAR 2000
## 3934                    Early-demographic dividend    V2   EAR 1999
## 3935                    Early-demographic dividend    V2   EAR 1998
## 3936                    Early-demographic dividend    V2   EAR 1997
## 3937                    Early-demographic dividend    V2   EAR 1970
## 3938                    Early-demographic dividend    V2   EAR 1990
## 3939                    Early-demographic dividend    V2   EAR 1995
## 3940                    Early-demographic dividend    V2   EAR 1992
## 3941                    Early-demographic dividend    V2   EAR 1991
## 3942                    Early-demographic dividend    V2   EAR 1985
## 3943                    Early-demographic dividend    V2   EAR 1989
## 3944                    Early-demographic dividend    V2   EAR 1988
## 3945                    Early-demographic dividend    V2   EAR 2001
## 3946                    Early-demographic dividend    V2   EAR 2020
## 3947                    Early-demographic dividend    V2   EAR 1984
## 3948                    Early-demographic dividend    V2   EAR 1983
## 3949                    Early-demographic dividend    V2   EAR 1982
## 3950                    Early-demographic dividend    V2   EAR 1976
## 3951                    Early-demographic dividend    V2   EAR 2019
## 3952                    Early-demographic dividend    V2   EAR 2018
## 3953                    Early-demographic dividend    V2   EAR 2021
## 3954                    Early-demographic dividend    V2   EAR 1972
## 3955                    Early-demographic dividend    V2   EAR 1975
## 3956                    Early-demographic dividend    V2   EAR 1974
## 3957                    Early-demographic dividend    V2   EAR 2017
## 3958                    Early-demographic dividend    V2   EAR 1964
## 3959                    Early-demographic dividend    V2   EAR 1963
## 3960                    Early-demographic dividend    V2   EAR 1962
## 3961                    Early-demographic dividend    V2   EAR 1973
## 3962                    Early-demographic dividend    V2   EAR 1960
## 3963                    Early-demographic dividend    V2   EAR 2013
## 3964                    Early-demographic dividend    V2   EAR 1961
## 3965                    Early-demographic dividend    V2   EAR 1986
## 3966                    Early-demographic dividend    V2   EAR 2014
## 3967                    Early-demographic dividend    V2   EAR 1987
## 3968                    Early-demographic dividend    V2   EAR 2016
## 3969                    Early-demographic dividend    V2   EAR 2015
## 3970                           East Asia & Pacific    Z4   EAS 2007
## 3971                           East Asia & Pacific    Z4   EAS 1995
## 3972                           East Asia & Pacific    Z4   EAS 1991
## 3973                           East Asia & Pacific    Z4   EAS 1994
## 3974                           East Asia & Pacific    Z4   EAS 2019
## 3975                           East Asia & Pacific    Z4   EAS 2008
## 3976                           East Asia & Pacific    Z4   EAS 2021
## 3977                           East Asia & Pacific    Z4   EAS 1990
## 3978                           East Asia & Pacific    Z4   EAS 2020
## 3979                           East Asia & Pacific    Z4   EAS 1996
## 3980                           East Asia & Pacific    Z4   EAS 1978
## 3981                           East Asia & Pacific    Z4   EAS 1981
## 3982                           East Asia & Pacific    Z4   EAS 1993
## 3983                           East Asia & Pacific    Z4   EAS 1992
## 3984                           East Asia & Pacific    Z4   EAS 2015
## 3985                           East Asia & Pacific    Z4   EAS 1977
## 3986                           East Asia & Pacific    Z4   EAS 1980
## 3987                           East Asia & Pacific    Z4   EAS 2018
## 3988                           East Asia & Pacific    Z4   EAS 2022
## 3989                           East Asia & Pacific    Z4   EAS 2010
## 3990                           East Asia & Pacific    Z4   EAS 2017
## 3991                           East Asia & Pacific    Z4   EAS 2016
## 3992                           East Asia & Pacific    Z4   EAS 1965
## 3993                           East Asia & Pacific    Z4   EAS 2006
## 3994                           East Asia & Pacific    Z4   EAS 2009
## 3995                           East Asia & Pacific    Z4   EAS 1966
## 3996                           East Asia & Pacific    Z4   EAS 2003
## 3997                           East Asia & Pacific    Z4   EAS 2002
## 3998                           East Asia & Pacific    Z4   EAS 2005
## 3999                           East Asia & Pacific    Z4   EAS 2004
## 4000                           East Asia & Pacific    Z4   EAS 2012
## 4001                           East Asia & Pacific    Z4   EAS 2011
## 4002                           East Asia & Pacific    Z4   EAS 1998
## 4003                           East Asia & Pacific    Z4   EAS 1997
## 4004                           East Asia & Pacific    Z4   EAS 1984
## 4005                           East Asia & Pacific    Z4   EAS 1983
## 4006                           East Asia & Pacific    Z4   EAS 1979
## 4007                           East Asia & Pacific    Z4   EAS 1964
## 4008                           East Asia & Pacific    Z4   EAS 1963
## 4009                           East Asia & Pacific    Z4   EAS 1976
## 4010                           East Asia & Pacific    Z4   EAS 1975
## 4011                           East Asia & Pacific    Z4   EAS 1974
## 4012                           East Asia & Pacific    Z4   EAS 1989
## 4013                           East Asia & Pacific    Z4   EAS 1988
## 4014                           East Asia & Pacific    Z4   EAS 1987
## 4015                           East Asia & Pacific    Z4   EAS 1986
## 4016                           East Asia & Pacific    Z4   EAS 1985
## 4017                           East Asia & Pacific    Z4   EAS 1969
## 4018                           East Asia & Pacific    Z4   EAS 1968
## 4019                           East Asia & Pacific    Z4   EAS 1967
## 4020                           East Asia & Pacific    Z4   EAS 1982
## 4021                           East Asia & Pacific    Z4   EAS 2014
## 4022                           East Asia & Pacific    Z4   EAS 1962
## 4023                           East Asia & Pacific    Z4   EAS 1961
## 4024                           East Asia & Pacific    Z4   EAS 1960
## 4025                           East Asia & Pacific    Z4   EAS 1970
## 4026                           East Asia & Pacific    Z4   EAS 2013
## 4027                           East Asia & Pacific    Z4   EAS 1972
## 4028                           East Asia & Pacific    Z4   EAS 1971
## 4029                           East Asia & Pacific    Z4   EAS 1999
## 4030                           East Asia & Pacific    Z4   EAS 2001
## 4031                           East Asia & Pacific    Z4   EAS 2000
## 4032                           East Asia & Pacific    Z4   EAS 1973
## 4033    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019
## 4034    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995
## 4035    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008
## 4036    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991
## 4037    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994
## 4038    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996
## 4039    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2022
## 4040    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990
## 4041    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993
## 4042    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992
## 4043    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979
## 4044    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021
## 4045    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020
## 4046    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980
## 4047    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997
## 4048    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018
## 4049    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017
## 4050    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016
## 4051    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007
## 4052    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010
## 4053    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009
## 4054    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968
## 4055    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003
## 4056    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006
## 4057    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005
## 4058    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004
## 4059    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012
## 4060    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011
## 4061    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998
## 4062    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984
## 4063    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983
## 4064    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981
## 4065    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967
## 4066    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966
## 4067    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978
## 4068    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977
## 4069    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976
## 4070    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989
## 4071    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988
## 4072    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987
## 4073    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986
## 4074    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985
## 4075    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971
## 4076    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970
## 4077    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969
## 4078    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982
## 4079    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015
## 4080    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965
## 4081    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964
## 4082    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963
## 4083    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972
## 4084    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014
## 4085    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013
## 4086    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973
## 4087    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000
## 4088    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962
## 4089    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961
## 4090    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960
## 4091    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975
## 4092    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999
## 4093    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001
## 4094    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974
## 4095    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002
## 4096   East Asia & Pacific (excluding high income)    4E   EAP 2014
## 4097   East Asia & Pacific (excluding high income)    4E   EAP 1997
## 4098   East Asia & Pacific (excluding high income)    4E   EAP 2013
## 4099   East Asia & Pacific (excluding high income)    4E   EAP 2012
## 4100   East Asia & Pacific (excluding high income)    4E   EAP 2010
## 4101   East Asia & Pacific (excluding high income)    4E   EAP 1979
## 4102   East Asia & Pacific (excluding high income)    4E   EAP 2009
## 4103   East Asia & Pacific (excluding high income)    4E   EAP 2008
## 4104   East Asia & Pacific (excluding high income)    4E   EAP 2011
## 4105   East Asia & Pacific (excluding high income)    4E   EAP 2016
## 4106   East Asia & Pacific (excluding high income)    4E   EAP 2015
## 4107   East Asia & Pacific (excluding high income)    4E   EAP 1973
## 4108   East Asia & Pacific (excluding high income)    4E   EAP 2007
## 4109   East Asia & Pacific (excluding high income)    4E   EAP 1998
## 4110   East Asia & Pacific (excluding high income)    4E   EAP 1970
## 4111   East Asia & Pacific (excluding high income)    4E   EAP 1969
## 4112   East Asia & Pacific (excluding high income)    4E   EAP 1972
## 4113   East Asia & Pacific (excluding high income)    4E   EAP 1967
## 4114   East Asia & Pacific (excluding high income)    4E   EAP 1966
## 4115   East Asia & Pacific (excluding high income)    4E   EAP 2006
## 4116   East Asia & Pacific (excluding high income)    4E   EAP 1968
## 4117   East Asia & Pacific (excluding high income)    4E   EAP 2004
## 4118   East Asia & Pacific (excluding high income)    4E   EAP 2003
## 4119   East Asia & Pacific (excluding high income)    4E   EAP 2002
## 4120   East Asia & Pacific (excluding high income)    4E   EAP 2001
## 4121   East Asia & Pacific (excluding high income)    4E   EAP 2000
## 4122   East Asia & Pacific (excluding high income)    4E   EAP 1971
## 4123   East Asia & Pacific (excluding high income)    4E   EAP 1999
## 4124   East Asia & Pacific (excluding high income)    4E   EAP 1983
## 4125   East Asia & Pacific (excluding high income)    4E   EAP 1996
## 4126   East Asia & Pacific (excluding high income)    4E   EAP 1995
## 4127   East Asia & Pacific (excluding high income)    4E   EAP 1994
## 4128   East Asia & Pacific (excluding high income)    4E   EAP 1993
## 4129   East Asia & Pacific (excluding high income)    4E   EAP 2005
## 4130   East Asia & Pacific (excluding high income)    4E   EAP 1989
## 4131   East Asia & Pacific (excluding high income)    4E   EAP 1988
## 4132   East Asia & Pacific (excluding high income)    4E   EAP 1987
## 4133   East Asia & Pacific (excluding high income)    4E   EAP 1986
## 4134   East Asia & Pacific (excluding high income)    4E   EAP 1985
## 4135   East Asia & Pacific (excluding high income)    4E   EAP 1984
## 4136   East Asia & Pacific (excluding high income)    4E   EAP 1980
## 4137   East Asia & Pacific (excluding high income)    4E   EAP 2022
## 4138   East Asia & Pacific (excluding high income)    4E   EAP 1982
## 4139   East Asia & Pacific (excluding high income)    4E   EAP 1981
## 4140   East Asia & Pacific (excluding high income)    4E   EAP 1976
## 4141   East Asia & Pacific (excluding high income)    4E   EAP 1975
## 4142   East Asia & Pacific (excluding high income)    4E   EAP 1978
## 4143   East Asia & Pacific (excluding high income)    4E   EAP 1977
## 4144   East Asia & Pacific (excluding high income)    4E   EAP 1964
## 4145   East Asia & Pacific (excluding high income)    4E   EAP 1963
## 4146   East Asia & Pacific (excluding high income)    4E   EAP 1974
## 4147   East Asia & Pacific (excluding high income)    4E   EAP 1960
## 4148   East Asia & Pacific (excluding high income)    4E   EAP 2017
## 4149   East Asia & Pacific (excluding high income)    4E   EAP 1992
## 4150   East Asia & Pacific (excluding high income)    4E   EAP 1962
## 4151   East Asia & Pacific (excluding high income)    4E   EAP 1965
## 4152   East Asia & Pacific (excluding high income)    4E   EAP 2018
## 4153   East Asia & Pacific (excluding high income)    4E   EAP 1991
## 4154   East Asia & Pacific (excluding high income)    4E   EAP 1961
## 4155   East Asia & Pacific (excluding high income)    4E   EAP 2019
## 4156   East Asia & Pacific (excluding high income)    4E   EAP 2021
## 4157   East Asia & Pacific (excluding high income)    4E   EAP 1990
## 4158   East Asia & Pacific (excluding high income)    4E   EAP 2020
## 4159                                       Ecuador    EC   ECU 2022
## 4160                                       Ecuador    EC   ECU 2021
## 4161                                       Ecuador    EC   ECU 2020
## 4162                                       Ecuador    EC   ECU 2019
## 4163                                       Ecuador    EC   ECU 2018
## 4164                                       Ecuador    EC   ECU 2017
## 4165                                       Ecuador    EC   ECU 2016
## 4166                                       Ecuador    EC   ECU 2015
## 4167                                       Ecuador    EC   ECU 2014
## 4168                                       Ecuador    EC   ECU 2013
## 4169                                       Ecuador    EC   ECU 2012
## 4170                                       Ecuador    EC   ECU 2011
## 4171                                       Ecuador    EC   ECU 2010
## 4172                                       Ecuador    EC   ECU 2009
## 4173                                       Ecuador    EC   ECU 2008
## 4174                                       Ecuador    EC   ECU 2007
## 4175                                       Ecuador    EC   ECU 2006
## 4176                                       Ecuador    EC   ECU 2005
## 4177                                       Ecuador    EC   ECU 2004
## 4178                                       Ecuador    EC   ECU 2003
## 4179                                       Ecuador    EC   ECU 2002
## 4180                                       Ecuador    EC   ECU 2001
## 4181                                       Ecuador    EC   ECU 2000
## 4182                                       Ecuador    EC   ECU 1999
## 4183                                       Ecuador    EC   ECU 1998
## 4184                                       Ecuador    EC   ECU 1997
## 4185                                       Ecuador    EC   ECU 1996
## 4186                                       Ecuador    EC   ECU 1995
## 4187                                       Ecuador    EC   ECU 1994
## 4188                                       Ecuador    EC   ECU 1993
## 4189                                       Ecuador    EC   ECU 1992
## 4190                                       Ecuador    EC   ECU 1991
## 4191                                       Ecuador    EC   ECU 1990
## 4192                                       Ecuador    EC   ECU 1989
## 4193                                       Ecuador    EC   ECU 1988
## 4194                                       Ecuador    EC   ECU 1987
## 4195                                       Ecuador    EC   ECU 1986
## 4196                                       Ecuador    EC   ECU 1985
## 4197                                       Ecuador    EC   ECU 1984
## 4198                                       Ecuador    EC   ECU 1983
## 4199                                       Ecuador    EC   ECU 1982
## 4200                                       Ecuador    EC   ECU 1981
## 4201                                       Ecuador    EC   ECU 1980
## 4202                                       Ecuador    EC   ECU 1979
## 4203                                       Ecuador    EC   ECU 1978
## 4204                                       Ecuador    EC   ECU 1977
## 4205                                       Ecuador    EC   ECU 1976
## 4206                                       Ecuador    EC   ECU 1975
## 4207                                       Ecuador    EC   ECU 1974
## 4208                                       Ecuador    EC   ECU 1973
## 4209                                       Ecuador    EC   ECU 1972
## 4210                                       Ecuador    EC   ECU 1971
## 4211                                       Ecuador    EC   ECU 1970
## 4212                                       Ecuador    EC   ECU 1969
## 4213                                       Ecuador    EC   ECU 1968
## 4214                                       Ecuador    EC   ECU 1967
## 4215                                       Ecuador    EC   ECU 1966
## 4216                                       Ecuador    EC   ECU 1965
## 4217                                       Ecuador    EC   ECU 1964
## 4218                                       Ecuador    EC   ECU 1963
## 4219                                       Ecuador    EC   ECU 1962
## 4220                                       Ecuador    EC   ECU 1961
## 4221                                       Ecuador    EC   ECU 1960
## 4222                              Egypt, Arab Rep.    EG   EGY 2022
## 4223                              Egypt, Arab Rep.    EG   EGY 2021
## 4224                              Egypt, Arab Rep.    EG   EGY 2020
## 4225                              Egypt, Arab Rep.    EG   EGY 2019
## 4226                              Egypt, Arab Rep.    EG   EGY 2018
## 4227                              Egypt, Arab Rep.    EG   EGY 2017
## 4228                              Egypt, Arab Rep.    EG   EGY 2016
## 4229                              Egypt, Arab Rep.    EG   EGY 2015
## 4230                              Egypt, Arab Rep.    EG   EGY 2014
## 4231                              Egypt, Arab Rep.    EG   EGY 2013
## 4232                              Egypt, Arab Rep.    EG   EGY 2012
## 4233                              Egypt, Arab Rep.    EG   EGY 2011
## 4234                              Egypt, Arab Rep.    EG   EGY 2010
## 4235                              Egypt, Arab Rep.    EG   EGY 2009
## 4236                              Egypt, Arab Rep.    EG   EGY 2008
## 4237                              Egypt, Arab Rep.    EG   EGY 2007
## 4238                              Egypt, Arab Rep.    EG   EGY 2006
## 4239                              Egypt, Arab Rep.    EG   EGY 2005
## 4240                              Egypt, Arab Rep.    EG   EGY 2004
## 4241                              Egypt, Arab Rep.    EG   EGY 2003
## 4242                              Egypt, Arab Rep.    EG   EGY 2002
## 4243                              Egypt, Arab Rep.    EG   EGY 2001
## 4244                              Egypt, Arab Rep.    EG   EGY 2000
## 4245                              Egypt, Arab Rep.    EG   EGY 1999
## 4246                              Egypt, Arab Rep.    EG   EGY 1998
## 4247                              Egypt, Arab Rep.    EG   EGY 1997
## 4248                              Egypt, Arab Rep.    EG   EGY 1996
## 4249                              Egypt, Arab Rep.    EG   EGY 1995
## 4250                              Egypt, Arab Rep.    EG   EGY 1994
## 4251                              Egypt, Arab Rep.    EG   EGY 1993
## 4252                              Egypt, Arab Rep.    EG   EGY 1992
## 4253                              Egypt, Arab Rep.    EG   EGY 1991
## 4254                              Egypt, Arab Rep.    EG   EGY 1990
## 4255                              Egypt, Arab Rep.    EG   EGY 1989
## 4256                              Egypt, Arab Rep.    EG   EGY 1988
## 4257                              Egypt, Arab Rep.    EG   EGY 1987
## 4258                              Egypt, Arab Rep.    EG   EGY 1986
## 4259                              Egypt, Arab Rep.    EG   EGY 1985
## 4260                              Egypt, Arab Rep.    EG   EGY 1984
## 4261                              Egypt, Arab Rep.    EG   EGY 1983
## 4262                              Egypt, Arab Rep.    EG   EGY 1982
## 4263                              Egypt, Arab Rep.    EG   EGY 1981
## 4264                              Egypt, Arab Rep.    EG   EGY 1980
## 4265                              Egypt, Arab Rep.    EG   EGY 1979
## 4266                              Egypt, Arab Rep.    EG   EGY 1978
## 4267                              Egypt, Arab Rep.    EG   EGY 1977
## 4268                              Egypt, Arab Rep.    EG   EGY 1976
## 4269                              Egypt, Arab Rep.    EG   EGY 1975
## 4270                              Egypt, Arab Rep.    EG   EGY 1974
## 4271                              Egypt, Arab Rep.    EG   EGY 1973
## 4272                              Egypt, Arab Rep.    EG   EGY 1972
## 4273                              Egypt, Arab Rep.    EG   EGY 1971
## 4274                              Egypt, Arab Rep.    EG   EGY 1970
## 4275                              Egypt, Arab Rep.    EG   EGY 1969
## 4276                              Egypt, Arab Rep.    EG   EGY 1968
## 4277                              Egypt, Arab Rep.    EG   EGY 1967
## 4278                              Egypt, Arab Rep.    EG   EGY 1966
## 4279                              Egypt, Arab Rep.    EG   EGY 1965
## 4280                              Egypt, Arab Rep.    EG   EGY 1964
## 4281                              Egypt, Arab Rep.    EG   EGY 1963
## 4282                              Egypt, Arab Rep.    EG   EGY 1962
## 4283                              Egypt, Arab Rep.    EG   EGY 1961
## 4284                              Egypt, Arab Rep.    EG   EGY 1960
## 4285                                   El Salvador    SV   SLV 2022
## 4286                                   El Salvador    SV   SLV 2021
## 4287                                   El Salvador    SV   SLV 2020
## 4288                                   El Salvador    SV   SLV 2019
## 4289                                   El Salvador    SV   SLV 2018
## 4290                                   El Salvador    SV   SLV 2017
## 4291                                   El Salvador    SV   SLV 2016
## 4292                                   El Salvador    SV   SLV 2015
## 4293                                   El Salvador    SV   SLV 2014
## 4294                                   El Salvador    SV   SLV 2013
## 4295                                   El Salvador    SV   SLV 2012
## 4296                                   El Salvador    SV   SLV 2011
## 4297                                   El Salvador    SV   SLV 2010
## 4298                                   El Salvador    SV   SLV 2009
## 4299                                   El Salvador    SV   SLV 2008
## 4300                                   El Salvador    SV   SLV 2007
## 4301                                   El Salvador    SV   SLV 2006
## 4302                                   El Salvador    SV   SLV 2005
## 4303                                   El Salvador    SV   SLV 2004
## 4304                                   El Salvador    SV   SLV 2003
## 4305                                   El Salvador    SV   SLV 2002
## 4306                                   El Salvador    SV   SLV 2001
## 4307                                   El Salvador    SV   SLV 2000
## 4308                                   El Salvador    SV   SLV 1999
## 4309                                   El Salvador    SV   SLV 1998
## 4310                                   El Salvador    SV   SLV 1997
## 4311                                   El Salvador    SV   SLV 1996
## 4312                                   El Salvador    SV   SLV 1995
## 4313                                   El Salvador    SV   SLV 1994
## 4314                                   El Salvador    SV   SLV 1993
## 4315                                   El Salvador    SV   SLV 1992
## 4316                                   El Salvador    SV   SLV 1991
## 4317                                   El Salvador    SV   SLV 1990
## 4318                                   El Salvador    SV   SLV 1989
## 4319                                   El Salvador    SV   SLV 1988
## 4320                                   El Salvador    SV   SLV 1987
## 4321                                   El Salvador    SV   SLV 1986
## 4322                                   El Salvador    SV   SLV 1985
## 4323                                   El Salvador    SV   SLV 1984
## 4324                                   El Salvador    SV   SLV 1983
## 4325                                   El Salvador    SV   SLV 1982
## 4326                                   El Salvador    SV   SLV 1981
## 4327                                   El Salvador    SV   SLV 1980
## 4328                                   El Salvador    SV   SLV 1979
## 4329                                   El Salvador    SV   SLV 1978
## 4330                                   El Salvador    SV   SLV 1977
## 4331                                   El Salvador    SV   SLV 1976
## 4332                                   El Salvador    SV   SLV 1975
## 4333                                   El Salvador    SV   SLV 1974
## 4334                                   El Salvador    SV   SLV 1973
## 4335                                   El Salvador    SV   SLV 1972
## 4336                                   El Salvador    SV   SLV 1971
## 4337                                   El Salvador    SV   SLV 1970
## 4338                                   El Salvador    SV   SLV 1969
## 4339                                   El Salvador    SV   SLV 1968
## 4340                                   El Salvador    SV   SLV 1967
## 4341                                   El Salvador    SV   SLV 1966
## 4342                                   El Salvador    SV   SLV 1965
## 4343                                   El Salvador    SV   SLV 1964
## 4344                                   El Salvador    SV   SLV 1963
## 4345                                   El Salvador    SV   SLV 1962
## 4346                                   El Salvador    SV   SLV 1961
## 4347                                   El Salvador    SV   SLV 1960
## 4348                             Equatorial Guinea    GQ   GNQ 2022
## 4349                             Equatorial Guinea    GQ   GNQ 2021
## 4350                             Equatorial Guinea    GQ   GNQ 2020
## 4351                             Equatorial Guinea    GQ   GNQ 2019
## 4352                             Equatorial Guinea    GQ   GNQ 2018
## 4353                             Equatorial Guinea    GQ   GNQ 2017
## 4354                             Equatorial Guinea    GQ   GNQ 2016
## 4355                             Equatorial Guinea    GQ   GNQ 2015
## 4356                             Equatorial Guinea    GQ   GNQ 2014
## 4357                             Equatorial Guinea    GQ   GNQ 2013
## 4358                             Equatorial Guinea    GQ   GNQ 2012
## 4359                             Equatorial Guinea    GQ   GNQ 2011
## 4360                             Equatorial Guinea    GQ   GNQ 2010
## 4361                             Equatorial Guinea    GQ   GNQ 2009
## 4362                             Equatorial Guinea    GQ   GNQ 2008
## 4363                             Equatorial Guinea    GQ   GNQ 2007
## 4364                             Equatorial Guinea    GQ   GNQ 2006
## 4365                             Equatorial Guinea    GQ   GNQ 2005
## 4366                             Equatorial Guinea    GQ   GNQ 2004
## 4367                             Equatorial Guinea    GQ   GNQ 2003
## 4368                             Equatorial Guinea    GQ   GNQ 2002
## 4369                             Equatorial Guinea    GQ   GNQ 2001
## 4370                             Equatorial Guinea    GQ   GNQ 2000
## 4371                             Equatorial Guinea    GQ   GNQ 1999
## 4372                             Equatorial Guinea    GQ   GNQ 1998
## 4373                             Equatorial Guinea    GQ   GNQ 1997
## 4374                             Equatorial Guinea    GQ   GNQ 1996
## 4375                             Equatorial Guinea    GQ   GNQ 1995
## 4376                             Equatorial Guinea    GQ   GNQ 1994
## 4377                             Equatorial Guinea    GQ   GNQ 1993
## 4378                             Equatorial Guinea    GQ   GNQ 1992
## 4379                             Equatorial Guinea    GQ   GNQ 1991
## 4380                             Equatorial Guinea    GQ   GNQ 1990
## 4381                             Equatorial Guinea    GQ   GNQ 1989
## 4382                             Equatorial Guinea    GQ   GNQ 1988
## 4383                             Equatorial Guinea    GQ   GNQ 1987
## 4384                             Equatorial Guinea    GQ   GNQ 1986
## 4385                             Equatorial Guinea    GQ   GNQ 1985
## 4386                             Equatorial Guinea    GQ   GNQ 1984
## 4387                             Equatorial Guinea    GQ   GNQ 1983
## 4388                             Equatorial Guinea    GQ   GNQ 1982
## 4389                             Equatorial Guinea    GQ   GNQ 1981
## 4390                             Equatorial Guinea    GQ   GNQ 1980
## 4391                             Equatorial Guinea    GQ   GNQ 1979
## 4392                             Equatorial Guinea    GQ   GNQ 1978
## 4393                             Equatorial Guinea    GQ   GNQ 1977
## 4394                             Equatorial Guinea    GQ   GNQ 1976
## 4395                             Equatorial Guinea    GQ   GNQ 1975
## 4396                             Equatorial Guinea    GQ   GNQ 1974
## 4397                             Equatorial Guinea    GQ   GNQ 1973
## 4398                             Equatorial Guinea    GQ   GNQ 1972
## 4399                             Equatorial Guinea    GQ   GNQ 1971
## 4400                             Equatorial Guinea    GQ   GNQ 1970
## 4401                             Equatorial Guinea    GQ   GNQ 1969
## 4402                             Equatorial Guinea    GQ   GNQ 1968
## 4403                             Equatorial Guinea    GQ   GNQ 1967
## 4404                             Equatorial Guinea    GQ   GNQ 1966
## 4405                             Equatorial Guinea    GQ   GNQ 1965
## 4406                             Equatorial Guinea    GQ   GNQ 1964
## 4407                             Equatorial Guinea    GQ   GNQ 1963
## 4408                             Equatorial Guinea    GQ   GNQ 1962
## 4409                             Equatorial Guinea    GQ   GNQ 1961
## 4410                             Equatorial Guinea    GQ   GNQ 1960
## 4411                                       Eritrea    ER   ERI 2022
## 4412                                       Eritrea    ER   ERI 2021
## 4413                                       Eritrea    ER   ERI 2020
## 4414                                       Eritrea    ER   ERI 2019
## 4415                                       Eritrea    ER   ERI 2018
## 4416                                       Eritrea    ER   ERI 2017
## 4417                                       Eritrea    ER   ERI 2016
## 4418                                       Eritrea    ER   ERI 2015
## 4419                                       Eritrea    ER   ERI 2014
## 4420                                       Eritrea    ER   ERI 2013
## 4421                                       Eritrea    ER   ERI 2012
## 4422                                       Eritrea    ER   ERI 2011
## 4423                                       Eritrea    ER   ERI 2010
## 4424                                       Eritrea    ER   ERI 2009
## 4425                                       Eritrea    ER   ERI 2008
## 4426                                       Eritrea    ER   ERI 2007
## 4427                                       Eritrea    ER   ERI 2006
## 4428                                       Eritrea    ER   ERI 2005
## 4429                                       Eritrea    ER   ERI 2004
## 4430                                       Eritrea    ER   ERI 2003
## 4431                                       Eritrea    ER   ERI 2002
## 4432                                       Eritrea    ER   ERI 2001
## 4433                                       Eritrea    ER   ERI 2000
## 4434                                       Eritrea    ER   ERI 1999
## 4435                                       Eritrea    ER   ERI 1998
## 4436                                       Eritrea    ER   ERI 1997
## 4437                                       Eritrea    ER   ERI 1996
## 4438                                       Eritrea    ER   ERI 1995
## 4439                                       Eritrea    ER   ERI 1994
## 4440                                       Eritrea    ER   ERI 1993
## 4441                                       Eritrea    ER   ERI 1992
## 4442                                       Eritrea    ER   ERI 1991
## 4443                                       Eritrea    ER   ERI 1990
## 4444                                       Eritrea    ER   ERI 1989
## 4445                                       Eritrea    ER   ERI 1988
## 4446                                       Eritrea    ER   ERI 1987
## 4447                                       Eritrea    ER   ERI 1986
## 4448                                       Eritrea    ER   ERI 1985
## 4449                                       Eritrea    ER   ERI 1984
## 4450                                       Eritrea    ER   ERI 1983
## 4451                                       Eritrea    ER   ERI 1982
## 4452                                       Eritrea    ER   ERI 1981
## 4453                                       Eritrea    ER   ERI 1980
## 4454                                       Eritrea    ER   ERI 1979
## 4455                                       Eritrea    ER   ERI 1978
## 4456                                       Eritrea    ER   ERI 1977
## 4457                                       Eritrea    ER   ERI 1976
## 4458                                       Eritrea    ER   ERI 1975
## 4459                                       Eritrea    ER   ERI 1974
## 4460                                       Eritrea    ER   ERI 1973
## 4461                                       Eritrea    ER   ERI 1972
## 4462                                       Eritrea    ER   ERI 1971
## 4463                                       Eritrea    ER   ERI 1970
## 4464                                       Eritrea    ER   ERI 1969
## 4465                                       Eritrea    ER   ERI 1968
## 4466                                       Eritrea    ER   ERI 1967
## 4467                                       Eritrea    ER   ERI 1966
## 4468                                       Eritrea    ER   ERI 1965
## 4469                                       Eritrea    ER   ERI 1964
## 4470                                       Eritrea    ER   ERI 1963
## 4471                                       Eritrea    ER   ERI 1962
## 4472                                       Eritrea    ER   ERI 1961
## 4473                                       Eritrea    ER   ERI 1960
## 4474                                       Estonia    EE   EST 2022
## 4475                                       Estonia    EE   EST 2021
## 4476                                       Estonia    EE   EST 2020
## 4477                                       Estonia    EE   EST 2019
## 4478                                       Estonia    EE   EST 2018
## 4479                                       Estonia    EE   EST 2017
## 4480                                       Estonia    EE   EST 2016
## 4481                                       Estonia    EE   EST 2015
## 4482                                       Estonia    EE   EST 2014
## 4483                                       Estonia    EE   EST 2013
## 4484                                       Estonia    EE   EST 2012
## 4485                                       Estonia    EE   EST 2011
## 4486                                       Estonia    EE   EST 2010
## 4487                                       Estonia    EE   EST 2009
## 4488                                       Estonia    EE   EST 2008
## 4489                                       Estonia    EE   EST 2007
## 4490                                       Estonia    EE   EST 2006
## 4491                                       Estonia    EE   EST 2005
## 4492                                       Estonia    EE   EST 2004
## 4493                                       Estonia    EE   EST 2003
## 4494                                       Estonia    EE   EST 2002
## 4495                                       Estonia    EE   EST 2001
## 4496                                       Estonia    EE   EST 2000
## 4497                                       Estonia    EE   EST 1999
## 4498                                       Estonia    EE   EST 1998
## 4499                                       Estonia    EE   EST 1997
## 4500                                       Estonia    EE   EST 1996
## 4501                                       Estonia    EE   EST 1995
## 4502                                       Estonia    EE   EST 1994
## 4503                                       Estonia    EE   EST 1993
## 4504                                       Estonia    EE   EST 1992
## 4505                                       Estonia    EE   EST 1991
## 4506                                       Estonia    EE   EST 1990
## 4507                                       Estonia    EE   EST 1989
## 4508                                       Estonia    EE   EST 1988
## 4509                                       Estonia    EE   EST 1987
## 4510                                       Estonia    EE   EST 1986
## 4511                                       Estonia    EE   EST 1985
## 4512                                       Estonia    EE   EST 1984
## 4513                                       Estonia    EE   EST 1983
## 4514                                       Estonia    EE   EST 1982
## 4515                                       Estonia    EE   EST 1981
## 4516                                       Estonia    EE   EST 1980
## 4517                                       Estonia    EE   EST 1979
## 4518                                       Estonia    EE   EST 1978
## 4519                                       Estonia    EE   EST 1977
## 4520                                       Estonia    EE   EST 1976
## 4521                                       Estonia    EE   EST 1975
## 4522                                       Estonia    EE   EST 1974
## 4523                                       Estonia    EE   EST 1973
## 4524                                       Estonia    EE   EST 1972
## 4525                                       Estonia    EE   EST 1971
## 4526                                       Estonia    EE   EST 1970
## 4527                                       Estonia    EE   EST 1969
## 4528                                       Estonia    EE   EST 1968
## 4529                                       Estonia    EE   EST 1967
## 4530                                       Estonia    EE   EST 1966
## 4531                                       Estonia    EE   EST 1965
## 4532                                       Estonia    EE   EST 1964
## 4533                                       Estonia    EE   EST 1963
## 4534                                       Estonia    EE   EST 1962
## 4535                                       Estonia    EE   EST 1961
## 4536                                       Estonia    EE   EST 1960
## 4537                                      Eswatini    SZ   SWZ 2022
## 4538                                      Eswatini    SZ   SWZ 2021
## 4539                                      Eswatini    SZ   SWZ 2020
## 4540                                      Eswatini    SZ   SWZ 2019
## 4541                                      Eswatini    SZ   SWZ 2018
## 4542                                      Eswatini    SZ   SWZ 2017
## 4543                                      Eswatini    SZ   SWZ 2016
## 4544                                      Eswatini    SZ   SWZ 2015
## 4545                                      Eswatini    SZ   SWZ 2014
## 4546                                      Eswatini    SZ   SWZ 2013
## 4547                                      Eswatini    SZ   SWZ 2012
## 4548                                      Eswatini    SZ   SWZ 2011
## 4549                                      Eswatini    SZ   SWZ 2010
## 4550                                      Eswatini    SZ   SWZ 2009
## 4551                                      Eswatini    SZ   SWZ 2008
## 4552                                      Eswatini    SZ   SWZ 2007
## 4553                                      Eswatini    SZ   SWZ 2006
## 4554                                      Eswatini    SZ   SWZ 2005
## 4555                                      Eswatini    SZ   SWZ 2004
## 4556                                      Eswatini    SZ   SWZ 2003
## 4557                                      Eswatini    SZ   SWZ 2002
## 4558                                      Eswatini    SZ   SWZ 2001
## 4559                                      Eswatini    SZ   SWZ 2000
## 4560                                      Eswatini    SZ   SWZ 1999
## 4561                                      Eswatini    SZ   SWZ 1998
## 4562                                      Eswatini    SZ   SWZ 1997
## 4563                                      Eswatini    SZ   SWZ 1996
## 4564                                      Eswatini    SZ   SWZ 1995
## 4565                                      Eswatini    SZ   SWZ 1994
## 4566                                      Eswatini    SZ   SWZ 1993
## 4567                                      Eswatini    SZ   SWZ 1992
## 4568                                      Eswatini    SZ   SWZ 1991
## 4569                                      Eswatini    SZ   SWZ 1990
## 4570                                      Eswatini    SZ   SWZ 1989
## 4571                                      Eswatini    SZ   SWZ 1988
## 4572                                      Eswatini    SZ   SWZ 1987
## 4573                                      Eswatini    SZ   SWZ 1986
## 4574                                      Eswatini    SZ   SWZ 1985
## 4575                                      Eswatini    SZ   SWZ 1984
## 4576                                      Eswatini    SZ   SWZ 1983
## 4577                                      Eswatini    SZ   SWZ 1982
## 4578                                      Eswatini    SZ   SWZ 1981
## 4579                                      Eswatini    SZ   SWZ 1980
## 4580                                      Eswatini    SZ   SWZ 1979
## 4581                                      Eswatini    SZ   SWZ 1978
## 4582                                      Eswatini    SZ   SWZ 1977
## 4583                                      Eswatini    SZ   SWZ 1976
## 4584                                      Eswatini    SZ   SWZ 1975
## 4585                                      Eswatini    SZ   SWZ 1974
## 4586                                      Eswatini    SZ   SWZ 1973
## 4587                                      Eswatini    SZ   SWZ 1972
## 4588                                      Eswatini    SZ   SWZ 1971
## 4589                                      Eswatini    SZ   SWZ 1970
## 4590                                      Eswatini    SZ   SWZ 1969
## 4591                                      Eswatini    SZ   SWZ 1968
## 4592                                      Eswatini    SZ   SWZ 1967
## 4593                                      Eswatini    SZ   SWZ 1966
## 4594                                      Eswatini    SZ   SWZ 1965
## 4595                                      Eswatini    SZ   SWZ 1964
## 4596                                      Eswatini    SZ   SWZ 1963
## 4597                                      Eswatini    SZ   SWZ 1962
## 4598                                      Eswatini    SZ   SWZ 1961
## 4599                                      Eswatini    SZ   SWZ 1960
## 4600                                      Ethiopia    ET   ETH 2022
## 4601                                      Ethiopia    ET   ETH 2021
## 4602                                      Ethiopia    ET   ETH 2020
## 4603                                      Ethiopia    ET   ETH 2019
## 4604                                      Ethiopia    ET   ETH 2018
## 4605                                      Ethiopia    ET   ETH 2017
## 4606                                      Ethiopia    ET   ETH 2016
## 4607                                      Ethiopia    ET   ETH 2015
## 4608                                      Ethiopia    ET   ETH 2014
## 4609                                      Ethiopia    ET   ETH 2013
## 4610                                      Ethiopia    ET   ETH 2012
## 4611                                      Ethiopia    ET   ETH 2011
## 4612                                      Ethiopia    ET   ETH 2010
## 4613                                      Ethiopia    ET   ETH 2009
## 4614                                      Ethiopia    ET   ETH 2008
## 4615                                      Ethiopia    ET   ETH 2007
## 4616                                      Ethiopia    ET   ETH 2006
## 4617                                      Ethiopia    ET   ETH 2005
## 4618                                      Ethiopia    ET   ETH 2004
## 4619                                      Ethiopia    ET   ETH 2003
## 4620                                      Ethiopia    ET   ETH 2002
## 4621                                      Ethiopia    ET   ETH 2001
## 4622                                      Ethiopia    ET   ETH 2000
## 4623                                      Ethiopia    ET   ETH 1999
## 4624                                      Ethiopia    ET   ETH 1998
## 4625                                      Ethiopia    ET   ETH 1997
## 4626                                      Ethiopia    ET   ETH 1996
## 4627                                      Ethiopia    ET   ETH 1995
## 4628                                      Ethiopia    ET   ETH 1994
## 4629                                      Ethiopia    ET   ETH 1993
## 4630                                      Ethiopia    ET   ETH 1992
## 4631                                      Ethiopia    ET   ETH 1991
## 4632                                      Ethiopia    ET   ETH 1990
## 4633                                      Ethiopia    ET   ETH 1989
## 4634                                      Ethiopia    ET   ETH 1988
## 4635                                      Ethiopia    ET   ETH 1987
## 4636                                      Ethiopia    ET   ETH 1986
## 4637                                      Ethiopia    ET   ETH 1985
## 4638                                      Ethiopia    ET   ETH 1984
## 4639                                      Ethiopia    ET   ETH 1983
## 4640                                      Ethiopia    ET   ETH 1982
## 4641                                      Ethiopia    ET   ETH 1981
## 4642                                      Ethiopia    ET   ETH 1980
## 4643                                      Ethiopia    ET   ETH 1979
## 4644                                      Ethiopia    ET   ETH 1978
## 4645                                      Ethiopia    ET   ETH 1977
## 4646                                      Ethiopia    ET   ETH 1976
## 4647                                      Ethiopia    ET   ETH 1975
## 4648                                      Ethiopia    ET   ETH 1974
## 4649                                      Ethiopia    ET   ETH 1973
## 4650                                      Ethiopia    ET   ETH 1972
## 4651                                      Ethiopia    ET   ETH 1971
## 4652                                      Ethiopia    ET   ETH 1970
## 4653                                      Ethiopia    ET   ETH 1969
## 4654                                      Ethiopia    ET   ETH 1968
## 4655                                      Ethiopia    ET   ETH 1967
## 4656                                      Ethiopia    ET   ETH 1966
## 4657                                      Ethiopia    ET   ETH 1965
## 4658                                      Ethiopia    ET   ETH 1964
## 4659                                      Ethiopia    ET   ETH 1963
## 4660                                      Ethiopia    ET   ETH 1962
## 4661                                      Ethiopia    ET   ETH 1961
## 4662                                      Ethiopia    ET   ETH 1960
## 4663                                     Euro area    XC   EMU 2016
## 4664                                     Euro area    XC   EMU 2014
## 4665                                     Euro area    XC   EMU 2017
## 4666                                     Euro area    XC   EMU 2012
## 4667                                     Euro area    XC   EMU 2015
## 4668                                     Euro area    XC   EMU 2013
## 4669                                     Euro area    XC   EMU 1980
## 4670                                     Euro area    XC   EMU 2011
## 4671                                     Euro area    XC   EMU 2018
## 4672                                     Euro area    XC   EMU 2019
## 4673                                     Euro area    XC   EMU 1976
## 4674                                     Euro area    XC   EMU 1979
## 4675                                     Euro area    XC   EMU 2003
## 4676                                     Euro area    XC   EMU 1977
## 4677                                     Euro area    XC   EMU 2010
## 4678                                     Euro area    XC   EMU 1975
## 4679                                     Euro area    XC   EMU 1964
## 4680                                     Euro area    XC   EMU 1973
## 4681                                     Euro area    XC   EMU 2006
## 4682                                     Euro area    XC   EMU 2005
## 4683                                     Euro area    XC   EMU 1974
## 4684                                     Euro area    XC   EMU 2007
## 4685                                     Euro area    XC   EMU 1965
## 4686                                     Euro area    XC   EMU 1963
## 4687                                     Euro area    XC   EMU 2004
## 4688                                     Euro area    XC   EMU 1978
## 4689                                     Euro area    XC   EMU 2000
## 4690                                     Euro area    XC   EMU 1999
## 4691                                     Euro area    XC   EMU 2002
## 4692                                     Euro area    XC   EMU 2001
## 4693                                     Euro area    XC   EMU 1995
## 4694                                     Euro area    XC   EMU 1994
## 4695                                     Euro area    XC   EMU 1993
## 4696                                     Euro area    XC   EMU 1992
## 4697                                     Euro area    XC   EMU 1991
## 4698                                     Euro area    XC   EMU 1987
## 4699                                     Euro area    XC   EMU 1990
## 4700                                     Euro area    XC   EMU 1989
## 4701                                     Euro area    XC   EMU 1988
## 4702                                     Euro area    XC   EMU 1983
## 4703                                     Euro area    XC   EMU 1986
## 4704                                     Euro area    XC   EMU 2009
## 4705                                     Euro area    XC   EMU 2008
## 4706                                     Euro area    XC   EMU 1966
## 4707                                     Euro area    XC   EMU 1982
## 4708                                     Euro area    XC   EMU 1981
## 4709                                     Euro area    XC   EMU 1967
## 4710                                     Euro area    XC   EMU 1971
## 4711                                     Euro area    XC   EMU 1962
## 4712                                     Euro area    XC   EMU 1961
## 4713                                     Euro area    XC   EMU 1972
## 4714                                     Euro area    XC   EMU 2020
## 4715                                     Euro area    XC   EMU 1970
## 4716                                     Euro area    XC   EMU 1969
## 4717                                     Euro area    XC   EMU 1968
## 4718                                     Euro area    XC   EMU 1960
## 4719                                     Euro area    XC   EMU 1998
## 4720                                     Euro area    XC   EMU 1997
## 4721                                     Euro area    XC   EMU 1996
## 4722                                     Euro area    XC   EMU 2021
## 4723                                     Euro area    XC   EMU 1985
## 4724                                     Euro area    XC   EMU 1984
## 4725                                     Euro area    XC   EMU 2022
## 4726                         Europe & Central Asia    Z7   ECS 2015
## 4727                         Europe & Central Asia    Z7   ECS 1963
## 4728                         Europe & Central Asia    Z7   ECS 1961
## 4729                         Europe & Central Asia    Z7   ECS 1960
## 4730                         Europe & Central Asia    Z7   ECS 1987
## 4731                         Europe & Central Asia    Z7   ECS 1985
## 4732                         Europe & Central Asia    Z7   ECS 1962
## 4733                         Europe & Central Asia    Z7   ECS 1988
## 4734                         Europe & Central Asia    Z7   ECS 1998
## 4735                         Europe & Central Asia    Z7   ECS 1964
## 4736                         Europe & Central Asia    Z7   ECS 1997
## 4737                         Europe & Central Asia    Z7   ECS 1996
## 4738                         Europe & Central Asia    Z7   ECS 1986
## 4739                         Europe & Central Asia    Z7   ECS 2014
## 4740                         Europe & Central Asia    Z7   ECS 2017
## 4741                         Europe & Central Asia    Z7   ECS 2016
## 4742                         Europe & Central Asia    Z7   ECS 1976
## 4743                         Europe & Central Asia    Z7   ECS 2010
## 4744                         Europe & Central Asia    Z7   ECS 2013
## 4745                         Europe & Central Asia    Z7   ECS 2012
## 4746                         Europe & Central Asia    Z7   ECS 2011
## 4747                         Europe & Central Asia    Z7   ECS 2019
## 4748                         Europe & Central Asia    Z7   ECS 2018
## 4749                         Europe & Central Asia    Z7   ECS 2003
## 4750                         Europe & Central Asia    Z7   ECS 2002
## 4751                         Europe & Central Asia    Z7   ECS 2001
## 4752                         Europe & Central Asia    Z7   ECS 2000
## 4753                         Europe & Central Asia    Z7   ECS 1999
## 4754                         Europe & Central Asia    Z7   ECS 1974
## 4755                         Europe & Central Asia    Z7   ECS 1984
## 4756                         Europe & Central Asia    Z7   ECS 1983
## 4757                         Europe & Central Asia    Z7   ECS 1982
## 4758                         Europe & Central Asia    Z7   ECS 1995
## 4759                         Europe & Central Asia    Z7   ECS 1994
## 4760                         Europe & Central Asia    Z7   ECS 1993
## 4761                         Europe & Central Asia    Z7   ECS 1992
## 4762                         Europe & Central Asia    Z7   ECS 1991
## 4763                         Europe & Central Asia    Z7   ECS 1990
## 4764                         Europe & Central Asia    Z7   ECS 1989
## 4765                         Europe & Central Asia    Z7   ECS 1977
## 4766                         Europe & Central Asia    Z7   ECS 1975
## 4767                         Europe & Central Asia    Z7   ECS 2022
## 4768                         Europe & Central Asia    Z7   ECS 1973
## 4769                         Europe & Central Asia    Z7   ECS 1972
## 4770                         Europe & Central Asia    Z7   ECS 1971
## 4771                         Europe & Central Asia    Z7   ECS 1980
## 4772                         Europe & Central Asia    Z7   ECS 2021
## 4773                         Europe & Central Asia    Z7   ECS 2020
## 4774                         Europe & Central Asia    Z7   ECS 1981
## 4775                         Europe & Central Asia    Z7   ECS 1967
## 4776                         Europe & Central Asia    Z7   ECS 1979
## 4777                         Europe & Central Asia    Z7   ECS 1978
## 4778                         Europe & Central Asia    Z7   ECS 2004
## 4779                         Europe & Central Asia    Z7   ECS 2006
## 4780                         Europe & Central Asia    Z7   ECS 1970
## 4781                         Europe & Central Asia    Z7   ECS 1969
## 4782                         Europe & Central Asia    Z7   ECS 1968
## 4783                         Europe & Central Asia    Z7   ECS 1966
## 4784                         Europe & Central Asia    Z7   ECS 1965
## 4785                         Europe & Central Asia    Z7   ECS 2005
## 4786                         Europe & Central Asia    Z7   ECS 2009
## 4787                         Europe & Central Asia    Z7   ECS 2008
## 4788                         Europe & Central Asia    Z7   ECS 2007
## 4789  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1964
## 4790  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021
## 4791  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1996
## 4792  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1963
## 4793  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1962
## 4794  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1965
## 4795  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1961
## 4796  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1995
## 4797  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1994
## 4798  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2022
## 4799  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1966
## 4800  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1981
## 4801  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1980
## 4802  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1993
## 4803  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2019
## 4804  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2018
## 4805  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2017
## 4806  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2020
## 4807  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1968
## 4808  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1967
## 4809  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2009
## 4810  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2016
## 4811  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2007
## 4812  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2006
## 4813  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2005
## 4814  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2008
## 4815  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1960
## 4816  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1990
## 4817  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1989
## 4818  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2004
## 4819  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2002
## 4820  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2001
## 4821  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2000
## 4822  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1999
## 4823  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1998
## 4824  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1997
## 4825  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1979
## 4826  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1978
## 4827  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1992
## 4828  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1991
## 4829  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1975
## 4830  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1974
## 4831  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2003
## 4832  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1988
## 4833  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1987
## 4834  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1986
## 4835  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1985
## 4836  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1984
## 4837  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1983
## 4838  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1971
## 4839  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1982
## 4840  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1977
## 4841  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1976
## 4842  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2015
## 4843  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1970
## 4844  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1973
## 4845  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1972
## 4846  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2011
## 4847  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2014
## 4848  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1969
## 4849  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2010
## 4850  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2013
## 4851  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2012
## 4852 Europe & Central Asia (excluding high income)    7E   ECA 2022
## 4853 Europe & Central Asia (excluding high income)    7E   ECA 2010
## 4854 Europe & Central Asia (excluding high income)    7E   ECA 2019
## 4855 Europe & Central Asia (excluding high income)    7E   ECA 2008
## 4856 Europe & Central Asia (excluding high income)    7E   ECA 2021
## 4857 Europe & Central Asia (excluding high income)    7E   ECA 2020
## 4858 Europe & Central Asia (excluding high income)    7E   ECA 2009
## 4859 Europe & Central Asia (excluding high income)    7E   ECA 1984
## 4860 Europe & Central Asia (excluding high income)    7E   ECA 1983
## 4861 Europe & Central Asia (excluding high income)    7E   ECA 1982
## 4862 Europe & Central Asia (excluding high income)    7E   ECA 1981
## 4863 Europe & Central Asia (excluding high income)    7E   ECA 1980
## 4864 Europe & Central Asia (excluding high income)    7E   ECA 1979
## 4865 Europe & Central Asia (excluding high income)    7E   ECA 2018
## 4866 Europe & Central Asia (excluding high income)    7E   ECA 2017
## 4867 Europe & Central Asia (excluding high income)    7E   ECA 2012
## 4868 Europe & Central Asia (excluding high income)    7E   ECA 2011
## 4869 Europe & Central Asia (excluding high income)    7E   ECA 1970
## 4870 Europe & Central Asia (excluding high income)    7E   ECA 1969
## 4871 Europe & Central Asia (excluding high income)    7E   ECA 2007
## 4872 Europe & Central Asia (excluding high income)    7E   ECA 2006
## 4873 Europe & Central Asia (excluding high income)    7E   ECA 2005
## 4874 Europe & Central Asia (excluding high income)    7E   ECA 2004
## 4875 Europe & Central Asia (excluding high income)    7E   ECA 2003
## 4876 Europe & Central Asia (excluding high income)    7E   ECA 2016
## 4877 Europe & Central Asia (excluding high income)    7E   ECA 2015
## 4878 Europe & Central Asia (excluding high income)    7E   ECA 2014
## 4879 Europe & Central Asia (excluding high income)    7E   ECA 2013
## 4880 Europe & Central Asia (excluding high income)    7E   ECA 1997
## 4881 Europe & Central Asia (excluding high income)    7E   ECA 1996
## 4882 Europe & Central Asia (excluding high income)    7E   ECA 1971
## 4883 Europe & Central Asia (excluding high income)    7E   ECA 1992
## 4884 Europe & Central Asia (excluding high income)    7E   ECA 1995
## 4885 Europe & Central Asia (excluding high income)    7E   ECA 1994
## 4886 Europe & Central Asia (excluding high income)    7E   ECA 1993
## 4887 Europe & Central Asia (excluding high income)    7E   ECA 1999
## 4888 Europe & Central Asia (excluding high income)    7E   ECA 1991
## 4889 Europe & Central Asia (excluding high income)    7E   ECA 2002
## 4890 Europe & Central Asia (excluding high income)    7E   ECA 2000
## 4891 Europe & Central Asia (excluding high income)    7E   ECA 1960
## 4892 Europe & Central Asia (excluding high income)    7E   ECA 1998
## 4893 Europe & Central Asia (excluding high income)    7E   ECA 1986
## 4894 Europe & Central Asia (excluding high income)    7E   ECA 1985
## 4895 Europe & Central Asia (excluding high income)    7E   ECA 1976
## 4896 Europe & Central Asia (excluding high income)    7E   ECA 1968
## 4897 Europe & Central Asia (excluding high income)    7E   ECA 1978
## 4898 Europe & Central Asia (excluding high income)    7E   ECA 1977
## 4899 Europe & Central Asia (excluding high income)    7E   ECA 1972
## 4900 Europe & Central Asia (excluding high income)    7E   ECA 1975
## 4901 Europe & Central Asia (excluding high income)    7E   ECA 1974
## 4902 Europe & Central Asia (excluding high income)    7E   ECA 1973
## 4903 Europe & Central Asia (excluding high income)    7E   ECA 1966
## 4904 Europe & Central Asia (excluding high income)    7E   ECA 1965
## 4905 Europe & Central Asia (excluding high income)    7E   ECA 2001
## 4906 Europe & Central Asia (excluding high income)    7E   ECA 1967
## 4907 Europe & Central Asia (excluding high income)    7E   ECA 1962
## 4908 Europe & Central Asia (excluding high income)    7E   ECA 1961
## 4909 Europe & Central Asia (excluding high income)    7E   ECA 1990
## 4910 Europe & Central Asia (excluding high income)    7E   ECA 1963
## 4911 Europe & Central Asia (excluding high income)    7E   ECA 1988
## 4912 Europe & Central Asia (excluding high income)    7E   ECA 1987
## 4913 Europe & Central Asia (excluding high income)    7E   ECA 1989
## 4914 Europe & Central Asia (excluding high income)    7E   ECA 1964
## 4915                                European Union    EU   EUU 2013
## 4916                                European Union    EU   EUU 2021
## 4917                                European Union    EU   EUU 2022
## 4918                                European Union    EU   EUU 1985
## 4919                                European Union    EU   EUU 2012
## 4920                                European Union    EU   EUU 1983
## 4921                                European Union    EU   EUU 1986
## 4922                                European Union    EU   EUU 1981
## 4923                                European Union    EU   EUU 1980
## 4924                                European Union    EU   EUU 1979
## 4925                                European Union    EU   EUU 1982
## 4926                                European Union    EU   EUU 2015
## 4927                                European Union    EU   EUU 2014
## 4928                                European Union    EU   EUU 1984
## 4929                                European Union    EU   EUU 1970
## 4930                                European Union    EU   EUU 2011
## 4931                                European Union    EU   EUU 2010
## 4932                                European Union    EU   EUU 2009
## 4933                                European Union    EU   EUU 2008
## 4934                                European Union    EU   EUU 2020
## 4935                                European Union    EU   EUU 2019
## 4936                                European Union    EU   EUU 2018
## 4937                                European Union    EU   EUU 2017
## 4938                                European Union    EU   EUU 2016
## 4939                                European Union    EU   EUU 1999
## 4940                                European Union    EU   EUU 1998
## 4941                                European Union    EU   EUU 1971
## 4942                                European Union    EU   EUU 1997
## 4943                                European Union    EU   EUU 1996
## 4944                                European Union    EU   EUU 1995
## 4945                                European Union    EU   EUU 1994
## 4946                                European Union    EU   EUU 1993
## 4947                                European Union    EU   EUU 2007
## 4948                                European Union    EU   EUU 2003
## 4949                                European Union    EU   EUU 2002
## 4950                                European Union    EU   EUU 2001
## 4951                                European Union    EU   EUU 2000
## 4952                                European Union    EU   EUU 1987
## 4953                                European Union    EU   EUU 1973
## 4954                                European Union    EU   EUU 1972
## 4955                                European Union    EU   EUU 1968
## 4956                                European Union    EU   EUU 1967
## 4957                                European Union    EU   EUU 1978
## 4958                                European Union    EU   EUU 1969
## 4959                                European Union    EU   EUU 1976
## 4960                                European Union    EU   EUU 1975
## 4961                                European Union    EU   EUU 1974
## 4962                                European Union    EU   EUU 1977
## 4963                                European Union    EU   EUU 1960
## 4964                                European Union    EU   EUU 2005
## 4965                                European Union    EU   EUU 2004
## 4966                                European Union    EU   EUU 1961
## 4967                                European Union    EU   EUU 2006
## 4968                                European Union    EU   EUU 1991
## 4969                                European Union    EU   EUU 1990
## 4970                                European Union    EU   EUU 1966
## 4971                                European Union    EU   EUU 1992
## 4972                                European Union    EU   EUU 1963
## 4973                                European Union    EU   EUU 1962
## 4974                                European Union    EU   EUU 1988
## 4975                                European Union    EU   EUU 1989
## 4976                                European Union    EU   EUU 1964
## 4977                                European Union    EU   EUU 1965
## 4978                                 Faroe Islands    FO   FRO 2022
## 4979                                 Faroe Islands    FO   FRO 2021
## 4980                                 Faroe Islands    FO   FRO 2020
## 4981                                 Faroe Islands    FO   FRO 2019
## 4982                                 Faroe Islands    FO   FRO 2018
## 4983                                 Faroe Islands    FO   FRO 2017
## 4984                                 Faroe Islands    FO   FRO 2016
## 4985                                 Faroe Islands    FO   FRO 2015
## 4986                                 Faroe Islands    FO   FRO 2014
## 4987                                 Faroe Islands    FO   FRO 2013
## 4988                                 Faroe Islands    FO   FRO 2012
## 4989                                 Faroe Islands    FO   FRO 2011
## 4990                                 Faroe Islands    FO   FRO 2010
## 4991                                 Faroe Islands    FO   FRO 2009
## 4992                                 Faroe Islands    FO   FRO 2008
## 4993                                 Faroe Islands    FO   FRO 2007
## 4994                                 Faroe Islands    FO   FRO 2006
## 4995                                 Faroe Islands    FO   FRO 2005
## 4996                                 Faroe Islands    FO   FRO 2004
## 4997                                 Faroe Islands    FO   FRO 2003
## 4998                                 Faroe Islands    FO   FRO 2002
## 4999                                 Faroe Islands    FO   FRO 2001
## 5000                                 Faroe Islands    FO   FRO 2000
## 5001                                 Faroe Islands    FO   FRO 1999
## 5002                                 Faroe Islands    FO   FRO 1998
## 5003                                 Faroe Islands    FO   FRO 1997
## 5004                                 Faroe Islands    FO   FRO 1996
## 5005                                 Faroe Islands    FO   FRO 1995
## 5006                                 Faroe Islands    FO   FRO 1994
## 5007                                 Faroe Islands    FO   FRO 1993
## 5008                                 Faroe Islands    FO   FRO 1992
## 5009                                 Faroe Islands    FO   FRO 1991
## 5010                                 Faroe Islands    FO   FRO 1990
## 5011                                 Faroe Islands    FO   FRO 1989
## 5012                                 Faroe Islands    FO   FRO 1988
## 5013                                 Faroe Islands    FO   FRO 1987
## 5014                                 Faroe Islands    FO   FRO 1986
## 5015                                 Faroe Islands    FO   FRO 1985
## 5016                                 Faroe Islands    FO   FRO 1984
## 5017                                 Faroe Islands    FO   FRO 1983
## 5018                                 Faroe Islands    FO   FRO 1982
## 5019                                 Faroe Islands    FO   FRO 1981
## 5020                                 Faroe Islands    FO   FRO 1980
## 5021                                 Faroe Islands    FO   FRO 1979
## 5022                                 Faroe Islands    FO   FRO 1978
## 5023                                 Faroe Islands    FO   FRO 1977
## 5024                                 Faroe Islands    FO   FRO 1976
## 5025                                 Faroe Islands    FO   FRO 1975
## 5026                                 Faroe Islands    FO   FRO 1974
## 5027                                 Faroe Islands    FO   FRO 1973
## 5028                                 Faroe Islands    FO   FRO 1972
## 5029                                 Faroe Islands    FO   FRO 1971
## 5030                                 Faroe Islands    FO   FRO 1970
## 5031                                 Faroe Islands    FO   FRO 1969
## 5032                                 Faroe Islands    FO   FRO 1968
## 5033                                 Faroe Islands    FO   FRO 1967
## 5034                                 Faroe Islands    FO   FRO 1966
## 5035                                 Faroe Islands    FO   FRO 1965
## 5036                                 Faroe Islands    FO   FRO 1964
## 5037                                 Faroe Islands    FO   FRO 1963
## 5038                                 Faroe Islands    FO   FRO 1962
## 5039                                 Faroe Islands    FO   FRO 1961
## 5040                                 Faroe Islands    FO   FRO 1960
## 5041                                          Fiji    FJ   FJI 2022
## 5042                                          Fiji    FJ   FJI 2021
## 5043                                          Fiji    FJ   FJI 2020
## 5044                                          Fiji    FJ   FJI 2019
## 5045                                          Fiji    FJ   FJI 2018
## 5046                                          Fiji    FJ   FJI 2017
## 5047                                          Fiji    FJ   FJI 2016
## 5048                                          Fiji    FJ   FJI 2015
## 5049                                          Fiji    FJ   FJI 2014
## 5050                                          Fiji    FJ   FJI 2013
## 5051                                          Fiji    FJ   FJI 2012
## 5052                                          Fiji    FJ   FJI 2011
## 5053                                          Fiji    FJ   FJI 2010
## 5054                                          Fiji    FJ   FJI 2009
## 5055                                          Fiji    FJ   FJI 2008
## 5056                                          Fiji    FJ   FJI 2007
## 5057                                          Fiji    FJ   FJI 2006
## 5058                                          Fiji    FJ   FJI 2005
## 5059                                          Fiji    FJ   FJI 2004
## 5060                                          Fiji    FJ   FJI 2003
## 5061                                          Fiji    FJ   FJI 2002
## 5062                                          Fiji    FJ   FJI 2001
## 5063                                          Fiji    FJ   FJI 2000
## 5064                                          Fiji    FJ   FJI 1999
## 5065                                          Fiji    FJ   FJI 1998
## 5066                                          Fiji    FJ   FJI 1997
## 5067                                          Fiji    FJ   FJI 1996
## 5068                                          Fiji    FJ   FJI 1995
## 5069                                          Fiji    FJ   FJI 1994
## 5070                                          Fiji    FJ   FJI 1993
## 5071                                          Fiji    FJ   FJI 1992
## 5072                                          Fiji    FJ   FJI 1991
## 5073                                          Fiji    FJ   FJI 1990
## 5074                                          Fiji    FJ   FJI 1989
## 5075                                          Fiji    FJ   FJI 1988
## 5076                                          Fiji    FJ   FJI 1987
## 5077                                          Fiji    FJ   FJI 1986
## 5078                                          Fiji    FJ   FJI 1985
## 5079                                          Fiji    FJ   FJI 1984
## 5080                                          Fiji    FJ   FJI 1983
## 5081                                          Fiji    FJ   FJI 1982
## 5082                                          Fiji    FJ   FJI 1981
## 5083                                          Fiji    FJ   FJI 1980
## 5084                                          Fiji    FJ   FJI 1979
## 5085                                          Fiji    FJ   FJI 1978
## 5086                                          Fiji    FJ   FJI 1977
## 5087                                          Fiji    FJ   FJI 1976
## 5088                                          Fiji    FJ   FJI 1975
## 5089                                          Fiji    FJ   FJI 1974
## 5090                                          Fiji    FJ   FJI 1973
## 5091                                          Fiji    FJ   FJI 1972
## 5092                                          Fiji    FJ   FJI 1971
## 5093                                          Fiji    FJ   FJI 1970
## 5094                                          Fiji    FJ   FJI 1969
## 5095                                          Fiji    FJ   FJI 1968
## 5096                                          Fiji    FJ   FJI 1967
## 5097                                          Fiji    FJ   FJI 1966
## 5098                                          Fiji    FJ   FJI 1965
## 5099                                          Fiji    FJ   FJI 1964
## 5100                                          Fiji    FJ   FJI 1963
## 5101                                          Fiji    FJ   FJI 1962
## 5102                                          Fiji    FJ   FJI 1961
## 5103                                          Fiji    FJ   FJI 1960
## 5104                                       Finland    FI   FIN 2022
## 5105                                       Finland    FI   FIN 2021
## 5106                                       Finland    FI   FIN 2020
## 5107                                       Finland    FI   FIN 2019
## 5108                                       Finland    FI   FIN 2018
## 5109                                       Finland    FI   FIN 2017
## 5110                                       Finland    FI   FIN 2016
## 5111                                       Finland    FI   FIN 2015
## 5112                                       Finland    FI   FIN 2014
## 5113                                       Finland    FI   FIN 2013
## 5114                                       Finland    FI   FIN 2012
## 5115                                       Finland    FI   FIN 2011
## 5116                                       Finland    FI   FIN 2010
## 5117                                       Finland    FI   FIN 2009
## 5118                                       Finland    FI   FIN 2008
## 5119                                       Finland    FI   FIN 2007
## 5120                                       Finland    FI   FIN 2006
## 5121                                       Finland    FI   FIN 2005
## 5122                                       Finland    FI   FIN 2004
## 5123                                       Finland    FI   FIN 2003
## 5124                                       Finland    FI   FIN 2002
## 5125                                       Finland    FI   FIN 2001
## 5126                                       Finland    FI   FIN 2000
## 5127                                       Finland    FI   FIN 1999
## 5128                                       Finland    FI   FIN 1998
## 5129                                       Finland    FI   FIN 1997
## 5130                                       Finland    FI   FIN 1996
## 5131                                       Finland    FI   FIN 1995
## 5132                                       Finland    FI   FIN 1994
## 5133                                       Finland    FI   FIN 1993
## 5134                                       Finland    FI   FIN 1992
## 5135                                       Finland    FI   FIN 1991
## 5136                                       Finland    FI   FIN 1990
## 5137                                       Finland    FI   FIN 1989
## 5138                                       Finland    FI   FIN 1988
## 5139                                       Finland    FI   FIN 1987
## 5140                                       Finland    FI   FIN 1986
## 5141                                       Finland    FI   FIN 1985
## 5142                                       Finland    FI   FIN 1984
## 5143                                       Finland    FI   FIN 1983
## 5144                                       Finland    FI   FIN 1982
## 5145                                       Finland    FI   FIN 1981
## 5146                                       Finland    FI   FIN 1980
## 5147                                       Finland    FI   FIN 1979
## 5148                                       Finland    FI   FIN 1978
## 5149                                       Finland    FI   FIN 1977
## 5150                                       Finland    FI   FIN 1976
## 5151                                       Finland    FI   FIN 1975
## 5152                                       Finland    FI   FIN 1974
## 5153                                       Finland    FI   FIN 1973
## 5154                                       Finland    FI   FIN 1972
## 5155                                       Finland    FI   FIN 1971
## 5156                                       Finland    FI   FIN 1970
## 5157                                       Finland    FI   FIN 1969
## 5158                                       Finland    FI   FIN 1968
## 5159                                       Finland    FI   FIN 1967
## 5160                                       Finland    FI   FIN 1966
## 5161                                       Finland    FI   FIN 1965
## 5162                                       Finland    FI   FIN 1964
## 5163                                       Finland    FI   FIN 1963
## 5164                                       Finland    FI   FIN 1962
## 5165                                       Finland    FI   FIN 1961
## 5166                                       Finland    FI   FIN 1960
## 5167      Fragile and conflict affected situations    F1   FCS 1965
## 5168      Fragile and conflict affected situations    F1   FCS 1966
## 5169      Fragile and conflict affected situations    F1   FCS 1994
## 5170      Fragile and conflict affected situations    F1   FCS 1995
## 5171      Fragile and conflict affected situations    F1   FCS 1962
## 5172      Fragile and conflict affected situations    F1   FCS 1967
## 5173      Fragile and conflict affected situations    F1   FCS 1963
## 5174      Fragile and conflict affected situations    F1   FCS 2022
## 5175      Fragile and conflict affected situations    F1   FCS 1993
## 5176      Fragile and conflict affected situations    F1   FCS 1964
## 5177      Fragile and conflict affected situations    F1   FCS 1968
## 5178      Fragile and conflict affected situations    F1   FCS 2018
## 5179      Fragile and conflict affected situations    F1   FCS 2021
## 5180      Fragile and conflict affected situations    F1   FCS 1969
## 5181      Fragile and conflict affected situations    F1   FCS 2019
## 5182      Fragile and conflict affected situations    F1   FCS 2010
## 5183      Fragile and conflict affected situations    F1   FCS 2017
## 5184      Fragile and conflict affected situations    F1   FCS 2020
## 5185      Fragile and conflict affected situations    F1   FCS 1970
## 5186      Fragile and conflict affected situations    F1   FCS 2006
## 5187      Fragile and conflict affected situations    F1   FCS 2009
## 5188      Fragile and conflict affected situations    F1   FCS 2008
## 5189      Fragile and conflict affected situations    F1   FCS 2007
## 5190      Fragile and conflict affected situations    F1   FCS 1961
## 5191      Fragile and conflict affected situations    F1   FCS 2005
## 5192      Fragile and conflict affected situations    F1   FCS 2004
## 5193      Fragile and conflict affected situations    F1   FCS 2003
## 5194      Fragile and conflict affected situations    F1   FCS 1999
## 5195      Fragile and conflict affected situations    F1   FCS 1998
## 5196      Fragile and conflict affected situations    F1   FCS 1997
## 5197      Fragile and conflict affected situations    F1   FCS 1996
## 5198      Fragile and conflict affected situations    F1   FCS 1981
## 5199      Fragile and conflict affected situations    F1   FCS 1980
## 5200      Fragile and conflict affected situations    F1   FCS 1992
## 5201      Fragile and conflict affected situations    F1   FCS 1991
## 5202      Fragile and conflict affected situations    F1   FCS 1990
## 5203      Fragile and conflict affected situations    F1   FCS 1989
## 5204      Fragile and conflict affected situations    F1   FCS 1960
## 5205      Fragile and conflict affected situations    F1   FCS 2001
## 5206      Fragile and conflict affected situations    F1   FCS 2000
## 5207      Fragile and conflict affected situations    F1   FCS 1986
## 5208      Fragile and conflict affected situations    F1   FCS 1985
## 5209      Fragile and conflict affected situations    F1   FCS 1984
## 5210      Fragile and conflict affected situations    F1   FCS 1983
## 5211      Fragile and conflict affected situations    F1   FCS 1977
## 5212      Fragile and conflict affected situations    F1   FCS 1982
## 5213      Fragile and conflict affected situations    F1   FCS 1979
## 5214      Fragile and conflict affected situations    F1   FCS 1978
## 5215      Fragile and conflict affected situations    F1   FCS 1973
## 5216      Fragile and conflict affected situations    F1   FCS 1976
## 5217      Fragile and conflict affected situations    F1   FCS 1975
## 5218      Fragile and conflict affected situations    F1   FCS 1974
## 5219      Fragile and conflict affected situations    F1   FCS 2002
## 5220      Fragile and conflict affected situations    F1   FCS 1972
## 5221      Fragile and conflict affected situations    F1   FCS 1971
## 5222      Fragile and conflict affected situations    F1   FCS 2011
## 5223      Fragile and conflict affected situations    F1   FCS 2012
## 5224      Fragile and conflict affected situations    F1   FCS 1988
## 5225      Fragile and conflict affected situations    F1   FCS 1987
## 5226      Fragile and conflict affected situations    F1   FCS 2013
## 5227      Fragile and conflict affected situations    F1   FCS 2016
## 5228      Fragile and conflict affected situations    F1   FCS 2015
## 5229      Fragile and conflict affected situations    F1   FCS 2014
## 5230                                        France    FR   FRA 2022
## 5231                                        France    FR   FRA 2021
## 5232                                        France    FR   FRA 2020
## 5233                                        France    FR   FRA 2019
## 5234                                        France    FR   FRA 2018
## 5235                                        France    FR   FRA 2017
## 5236                                        France    FR   FRA 2016
## 5237                                        France    FR   FRA 2015
## 5238                                        France    FR   FRA 2014
## 5239                                        France    FR   FRA 2013
## 5240                                        France    FR   FRA 2012
## 5241                                        France    FR   FRA 2011
## 5242                                        France    FR   FRA 2010
## 5243                                        France    FR   FRA 2009
## 5244                                        France    FR   FRA 2008
## 5245                                        France    FR   FRA 2007
## 5246                                        France    FR   FRA 2006
## 5247                                        France    FR   FRA 2005
## 5248                                        France    FR   FRA 2004
## 5249                                        France    FR   FRA 2003
## 5250                                        France    FR   FRA 2002
## 5251                                        France    FR   FRA 2001
## 5252                                        France    FR   FRA 2000
## 5253                                        France    FR   FRA 1999
## 5254                                        France    FR   FRA 1998
## 5255                                        France    FR   FRA 1997
## 5256                                        France    FR   FRA 1996
## 5257                                        France    FR   FRA 1995
## 5258                                        France    FR   FRA 1994
## 5259                                        France    FR   FRA 1993
## 5260                                        France    FR   FRA 1992
## 5261                                        France    FR   FRA 1991
## 5262                                        France    FR   FRA 1990
## 5263                                        France    FR   FRA 1989
## 5264                                        France    FR   FRA 1988
## 5265                                        France    FR   FRA 1987
## 5266                                        France    FR   FRA 1986
## 5267                                        France    FR   FRA 1985
## 5268                                        France    FR   FRA 1984
## 5269                                        France    FR   FRA 1983
## 5270                                        France    FR   FRA 1982
## 5271                                        France    FR   FRA 1981
## 5272                                        France    FR   FRA 1980
## 5273                                        France    FR   FRA 1979
## 5274                                        France    FR   FRA 1978
## 5275                                        France    FR   FRA 1977
## 5276                                        France    FR   FRA 1976
## 5277                                        France    FR   FRA 1975
## 5278                                        France    FR   FRA 1974
## 5279                                        France    FR   FRA 1973
## 5280                                        France    FR   FRA 1972
## 5281                                        France    FR   FRA 1971
## 5282                                        France    FR   FRA 1970
## 5283                                        France    FR   FRA 1969
## 5284                                        France    FR   FRA 1968
## 5285                                        France    FR   FRA 1967
## 5286                                        France    FR   FRA 1966
## 5287                                        France    FR   FRA 1965
## 5288                                        France    FR   FRA 1964
## 5289                                        France    FR   FRA 1963
## 5290                                        France    FR   FRA 1962
## 5291                                        France    FR   FRA 1961
## 5292                                        France    FR   FRA 1960
## 5293                              French Polynesia    PF   PYF 2022
## 5294                              French Polynesia    PF   PYF 2021
## 5295                              French Polynesia    PF   PYF 2020
## 5296                              French Polynesia    PF   PYF 2019
## 5297                              French Polynesia    PF   PYF 2018
## 5298                              French Polynesia    PF   PYF 2017
## 5299                              French Polynesia    PF   PYF 2016
## 5300                              French Polynesia    PF   PYF 2015
## 5301                              French Polynesia    PF   PYF 2014
## 5302                              French Polynesia    PF   PYF 2013
## 5303                              French Polynesia    PF   PYF 2012
## 5304                              French Polynesia    PF   PYF 2011
## 5305                              French Polynesia    PF   PYF 2010
## 5306                              French Polynesia    PF   PYF 2009
## 5307                              French Polynesia    PF   PYF 2008
## 5308                              French Polynesia    PF   PYF 2007
## 5309                              French Polynesia    PF   PYF 2006
## 5310                              French Polynesia    PF   PYF 2005
## 5311                              French Polynesia    PF   PYF 2004
## 5312                              French Polynesia    PF   PYF 2003
## 5313                              French Polynesia    PF   PYF 2002
## 5314                              French Polynesia    PF   PYF 2001
## 5315                              French Polynesia    PF   PYF 2000
## 5316                              French Polynesia    PF   PYF 1999
## 5317                              French Polynesia    PF   PYF 1998
## 5318                              French Polynesia    PF   PYF 1997
## 5319                              French Polynesia    PF   PYF 1996
## 5320                              French Polynesia    PF   PYF 1995
## 5321                              French Polynesia    PF   PYF 1994
## 5322                              French Polynesia    PF   PYF 1993
## 5323                              French Polynesia    PF   PYF 1992
## 5324                              French Polynesia    PF   PYF 1991
## 5325                              French Polynesia    PF   PYF 1990
## 5326                              French Polynesia    PF   PYF 1989
## 5327                              French Polynesia    PF   PYF 1988
## 5328                              French Polynesia    PF   PYF 1987
## 5329                              French Polynesia    PF   PYF 1986
## 5330                              French Polynesia    PF   PYF 1985
## 5331                              French Polynesia    PF   PYF 1984
## 5332                              French Polynesia    PF   PYF 1983
## 5333                              French Polynesia    PF   PYF 1982
## 5334                              French Polynesia    PF   PYF 1981
## 5335                              French Polynesia    PF   PYF 1980
## 5336                              French Polynesia    PF   PYF 1979
## 5337                              French Polynesia    PF   PYF 1978
## 5338                              French Polynesia    PF   PYF 1977
## 5339                              French Polynesia    PF   PYF 1976
## 5340                              French Polynesia    PF   PYF 1975
## 5341                              French Polynesia    PF   PYF 1974
## 5342                              French Polynesia    PF   PYF 1973
## 5343                              French Polynesia    PF   PYF 1972
## 5344                              French Polynesia    PF   PYF 1971
## 5345                              French Polynesia    PF   PYF 1970
## 5346                              French Polynesia    PF   PYF 1969
## 5347                              French Polynesia    PF   PYF 1968
## 5348                              French Polynesia    PF   PYF 1967
## 5349                              French Polynesia    PF   PYF 1966
## 5350                              French Polynesia    PF   PYF 1965
## 5351                              French Polynesia    PF   PYF 1964
## 5352                              French Polynesia    PF   PYF 1963
## 5353                              French Polynesia    PF   PYF 1962
## 5354                              French Polynesia    PF   PYF 1961
## 5355                              French Polynesia    PF   PYF 1960
## 5356                                         Gabon    GA   GAB 2022
## 5357                                         Gabon    GA   GAB 2021
## 5358                                         Gabon    GA   GAB 2020
## 5359                                         Gabon    GA   GAB 2019
## 5360                                         Gabon    GA   GAB 2018
## 5361                                         Gabon    GA   GAB 2017
## 5362                                         Gabon    GA   GAB 2016
## 5363                                         Gabon    GA   GAB 2015
## 5364                                         Gabon    GA   GAB 2014
## 5365                                         Gabon    GA   GAB 2013
## 5366                                         Gabon    GA   GAB 2012
## 5367                                         Gabon    GA   GAB 2011
## 5368                                         Gabon    GA   GAB 2010
## 5369                                         Gabon    GA   GAB 2009
## 5370                                         Gabon    GA   GAB 2008
## 5371                                         Gabon    GA   GAB 2007
## 5372                                         Gabon    GA   GAB 2006
## 5373                                         Gabon    GA   GAB 2005
## 5374                                         Gabon    GA   GAB 2004
## 5375                                         Gabon    GA   GAB 2003
## 5376                                         Gabon    GA   GAB 2002
## 5377                                         Gabon    GA   GAB 2001
## 5378                                         Gabon    GA   GAB 2000
## 5379                                         Gabon    GA   GAB 1999
## 5380                                         Gabon    GA   GAB 1998
## 5381                                         Gabon    GA   GAB 1997
## 5382                                         Gabon    GA   GAB 1996
## 5383                                         Gabon    GA   GAB 1995
## 5384                                         Gabon    GA   GAB 1994
## 5385                                         Gabon    GA   GAB 1993
## 5386                                         Gabon    GA   GAB 1992
## 5387                                         Gabon    GA   GAB 1991
## 5388                                         Gabon    GA   GAB 1990
## 5389                                         Gabon    GA   GAB 1989
## 5390                                         Gabon    GA   GAB 1988
## 5391                                         Gabon    GA   GAB 1987
## 5392                                         Gabon    GA   GAB 1986
## 5393                                         Gabon    GA   GAB 1985
## 5394                                         Gabon    GA   GAB 1984
## 5395                                         Gabon    GA   GAB 1983
## 5396                                         Gabon    GA   GAB 1982
## 5397                                         Gabon    GA   GAB 1981
## 5398                                         Gabon    GA   GAB 1980
## 5399                                         Gabon    GA   GAB 1979
## 5400                                         Gabon    GA   GAB 1978
## 5401                                         Gabon    GA   GAB 1977
## 5402                                         Gabon    GA   GAB 1976
## 5403                                         Gabon    GA   GAB 1975
## 5404                                         Gabon    GA   GAB 1974
## 5405                                         Gabon    GA   GAB 1973
## 5406                                         Gabon    GA   GAB 1972
## 5407                                         Gabon    GA   GAB 1971
## 5408                                         Gabon    GA   GAB 1970
## 5409                                         Gabon    GA   GAB 1969
## 5410                                         Gabon    GA   GAB 1968
## 5411                                         Gabon    GA   GAB 1967
## 5412                                         Gabon    GA   GAB 1966
## 5413                                         Gabon    GA   GAB 1965
## 5414                                         Gabon    GA   GAB 1964
## 5415                                         Gabon    GA   GAB 1963
## 5416                                         Gabon    GA   GAB 1962
## 5417                                         Gabon    GA   GAB 1961
## 5418                                         Gabon    GA   GAB 1960
## 5419                                   Gambia, The    GM   GMB 2022
## 5420                                   Gambia, The    GM   GMB 2021
## 5421                                   Gambia, The    GM   GMB 2020
## 5422                                   Gambia, The    GM   GMB 2019
## 5423                                   Gambia, The    GM   GMB 2018
## 5424                                   Gambia, The    GM   GMB 2017
## 5425                                   Gambia, The    GM   GMB 2016
## 5426                                   Gambia, The    GM   GMB 2015
## 5427                                   Gambia, The    GM   GMB 2014
## 5428                                   Gambia, The    GM   GMB 2013
## 5429                                   Gambia, The    GM   GMB 2012
## 5430                                   Gambia, The    GM   GMB 2011
## 5431                                   Gambia, The    GM   GMB 2010
## 5432                                   Gambia, The    GM   GMB 2009
## 5433                                   Gambia, The    GM   GMB 2008
## 5434                                   Gambia, The    GM   GMB 2007
## 5435                                   Gambia, The    GM   GMB 2006
## 5436                                   Gambia, The    GM   GMB 2005
## 5437                                   Gambia, The    GM   GMB 2004
## 5438                                   Gambia, The    GM   GMB 2003
## 5439                                   Gambia, The    GM   GMB 2002
## 5440                                   Gambia, The    GM   GMB 2001
## 5441                                   Gambia, The    GM   GMB 2000
## 5442                                   Gambia, The    GM   GMB 1999
## 5443                                   Gambia, The    GM   GMB 1998
## 5444                                   Gambia, The    GM   GMB 1997
## 5445                                   Gambia, The    GM   GMB 1996
## 5446                                   Gambia, The    GM   GMB 1995
## 5447                                   Gambia, The    GM   GMB 1994
## 5448                                   Gambia, The    GM   GMB 1993
## 5449                                   Gambia, The    GM   GMB 1992
## 5450                                   Gambia, The    GM   GMB 1991
## 5451                                   Gambia, The    GM   GMB 1990
## 5452                                   Gambia, The    GM   GMB 1989
## 5453                                   Gambia, The    GM   GMB 1988
## 5454                                   Gambia, The    GM   GMB 1987
## 5455                                   Gambia, The    GM   GMB 1986
## 5456                                   Gambia, The    GM   GMB 1985
## 5457                                   Gambia, The    GM   GMB 1984
## 5458                                   Gambia, The    GM   GMB 1983
## 5459                                   Gambia, The    GM   GMB 1982
## 5460                                   Gambia, The    GM   GMB 1981
## 5461                                   Gambia, The    GM   GMB 1980
## 5462                                   Gambia, The    GM   GMB 1979
## 5463                                   Gambia, The    GM   GMB 1978
## 5464                                   Gambia, The    GM   GMB 1977
## 5465                                   Gambia, The    GM   GMB 1976
## 5466                                   Gambia, The    GM   GMB 1975
## 5467                                   Gambia, The    GM   GMB 1974
## 5468                                   Gambia, The    GM   GMB 1973
## 5469                                   Gambia, The    GM   GMB 1972
## 5470                                   Gambia, The    GM   GMB 1971
## 5471                                   Gambia, The    GM   GMB 1970
## 5472                                   Gambia, The    GM   GMB 1969
## 5473                                   Gambia, The    GM   GMB 1968
## 5474                                   Gambia, The    GM   GMB 1967
## 5475                                   Gambia, The    GM   GMB 1966
## 5476                                   Gambia, The    GM   GMB 1965
## 5477                                   Gambia, The    GM   GMB 1964
## 5478                                   Gambia, The    GM   GMB 1963
## 5479                                   Gambia, The    GM   GMB 1962
## 5480                                   Gambia, The    GM   GMB 1961
## 5481                                   Gambia, The    GM   GMB 1960
## 5482                                       Georgia    GE   GEO 2022
## 5483                                       Georgia    GE   GEO 2021
## 5484                                       Georgia    GE   GEO 2020
## 5485                                       Georgia    GE   GEO 2019
## 5486                                       Georgia    GE   GEO 2018
## 5487                                       Georgia    GE   GEO 2017
## 5488                                       Georgia    GE   GEO 2016
## 5489                                       Georgia    GE   GEO 2015
## 5490                                       Georgia    GE   GEO 2014
## 5491                                       Georgia    GE   GEO 2013
## 5492                                       Georgia    GE   GEO 2012
## 5493                                       Georgia    GE   GEO 2011
## 5494                                       Georgia    GE   GEO 2010
## 5495                                       Georgia    GE   GEO 2009
## 5496                                       Georgia    GE   GEO 2008
## 5497                                       Georgia    GE   GEO 2007
## 5498                                       Georgia    GE   GEO 2006
## 5499                                       Georgia    GE   GEO 2005
## 5500                                       Georgia    GE   GEO 2004
## 5501                                       Georgia    GE   GEO 2003
## 5502                                       Georgia    GE   GEO 2002
## 5503                                       Georgia    GE   GEO 2001
## 5504                                       Georgia    GE   GEO 2000
## 5505                                       Georgia    GE   GEO 1999
## 5506                                       Georgia    GE   GEO 1998
## 5507                                       Georgia    GE   GEO 1997
## 5508                                       Georgia    GE   GEO 1996
## 5509                                       Georgia    GE   GEO 1995
## 5510                                       Georgia    GE   GEO 1994
## 5511                                       Georgia    GE   GEO 1993
## 5512                                       Georgia    GE   GEO 1992
## 5513                                       Georgia    GE   GEO 1991
## 5514                                       Georgia    GE   GEO 1990
## 5515                                       Georgia    GE   GEO 1989
## 5516                                       Georgia    GE   GEO 1988
## 5517                                       Georgia    GE   GEO 1987
## 5518                                       Georgia    GE   GEO 1986
## 5519                                       Georgia    GE   GEO 1985
## 5520                                       Georgia    GE   GEO 1984
## 5521                                       Georgia    GE   GEO 1983
## 5522                                       Georgia    GE   GEO 1982
## 5523                                       Georgia    GE   GEO 1981
## 5524                                       Georgia    GE   GEO 1980
## 5525                                       Georgia    GE   GEO 1979
## 5526                                       Georgia    GE   GEO 1978
## 5527                                       Georgia    GE   GEO 1977
## 5528                                       Georgia    GE   GEO 1976
## 5529                                       Georgia    GE   GEO 1975
## 5530                                       Georgia    GE   GEO 1974
## 5531                                       Georgia    GE   GEO 1973
## 5532                                       Georgia    GE   GEO 1972
## 5533                                       Georgia    GE   GEO 1971
## 5534                                       Georgia    GE   GEO 1970
## 5535                                       Georgia    GE   GEO 1969
## 5536                                       Georgia    GE   GEO 1968
## 5537                                       Georgia    GE   GEO 1967
## 5538                                       Georgia    GE   GEO 1966
## 5539                                       Georgia    GE   GEO 1965
## 5540                                       Georgia    GE   GEO 1964
## 5541                                       Georgia    GE   GEO 1963
## 5542                                       Georgia    GE   GEO 1962
## 5543                                       Georgia    GE   GEO 1961
## 5544                                       Georgia    GE   GEO 1960
## 5545                                       Germany    DE   DEU 2022
## 5546                                       Germany    DE   DEU 2021
## 5547                                       Germany    DE   DEU 2020
## 5548                                       Germany    DE   DEU 2019
## 5549                                       Germany    DE   DEU 2018
## 5550                                       Germany    DE   DEU 2017
## 5551                                       Germany    DE   DEU 2016
## 5552                                       Germany    DE   DEU 2015
## 5553                                       Germany    DE   DEU 2014
## 5554                                       Germany    DE   DEU 2013
## 5555                                       Germany    DE   DEU 2012
## 5556                                       Germany    DE   DEU 2011
## 5557                                       Germany    DE   DEU 2010
## 5558                                       Germany    DE   DEU 2009
## 5559                                       Germany    DE   DEU 2008
## 5560                                       Germany    DE   DEU 2007
## 5561                                       Germany    DE   DEU 2006
## 5562                                       Germany    DE   DEU 2005
## 5563                                       Germany    DE   DEU 2004
## 5564                                       Germany    DE   DEU 2003
## 5565                                       Germany    DE   DEU 2002
## 5566                                       Germany    DE   DEU 2001
## 5567                                       Germany    DE   DEU 2000
## 5568                                       Germany    DE   DEU 1999
## 5569                                       Germany    DE   DEU 1998
## 5570                                       Germany    DE   DEU 1997
## 5571                                       Germany    DE   DEU 1996
## 5572                                       Germany    DE   DEU 1995
## 5573                                       Germany    DE   DEU 1994
## 5574                                       Germany    DE   DEU 1993
## 5575                                       Germany    DE   DEU 1992
## 5576                                       Germany    DE   DEU 1991
## 5577                                       Germany    DE   DEU 1990
## 5578                                       Germany    DE   DEU 1989
## 5579                                       Germany    DE   DEU 1988
## 5580                                       Germany    DE   DEU 1987
## 5581                                       Germany    DE   DEU 1986
## 5582                                       Germany    DE   DEU 1985
## 5583                                       Germany    DE   DEU 1984
## 5584                                       Germany    DE   DEU 1983
## 5585                                       Germany    DE   DEU 1982
## 5586                                       Germany    DE   DEU 1981
## 5587                                       Germany    DE   DEU 1980
## 5588                                       Germany    DE   DEU 1979
## 5589                                       Germany    DE   DEU 1978
## 5590                                       Germany    DE   DEU 1977
## 5591                                       Germany    DE   DEU 1976
## 5592                                       Germany    DE   DEU 1975
## 5593                                       Germany    DE   DEU 1974
## 5594                                       Germany    DE   DEU 1973
## 5595                                       Germany    DE   DEU 1972
## 5596                                       Germany    DE   DEU 1971
## 5597                                       Germany    DE   DEU 1970
## 5598                                       Germany    DE   DEU 1969
## 5599                                       Germany    DE   DEU 1968
## 5600                                       Germany    DE   DEU 1967
## 5601                                       Germany    DE   DEU 1966
## 5602                                       Germany    DE   DEU 1965
## 5603                                       Germany    DE   DEU 1964
## 5604                                       Germany    DE   DEU 1963
## 5605                                       Germany    DE   DEU 1962
## 5606                                       Germany    DE   DEU 1961
## 5607                                       Germany    DE   DEU 1960
## 5608                                         Ghana    GH   GHA 2022
## 5609                                         Ghana    GH   GHA 2021
## 5610                                         Ghana    GH   GHA 2020
## 5611                                         Ghana    GH   GHA 2019
## 5612                                         Ghana    GH   GHA 2018
## 5613                                         Ghana    GH   GHA 2017
## 5614                                         Ghana    GH   GHA 2016
## 5615                                         Ghana    GH   GHA 2015
## 5616                                         Ghana    GH   GHA 2014
## 5617                                         Ghana    GH   GHA 2013
## 5618                                         Ghana    GH   GHA 2012
## 5619                                         Ghana    GH   GHA 2011
## 5620                                         Ghana    GH   GHA 2010
## 5621                                         Ghana    GH   GHA 2009
## 5622                                         Ghana    GH   GHA 2008
## 5623                                         Ghana    GH   GHA 2007
## 5624                                         Ghana    GH   GHA 2006
## 5625                                         Ghana    GH   GHA 2005
## 5626                                         Ghana    GH   GHA 2004
## 5627                                         Ghana    GH   GHA 2003
## 5628                                         Ghana    GH   GHA 2002
## 5629                                         Ghana    GH   GHA 2001
## 5630                                         Ghana    GH   GHA 2000
## 5631                                         Ghana    GH   GHA 1999
## 5632                                         Ghana    GH   GHA 1998
## 5633                                         Ghana    GH   GHA 1997
## 5634                                         Ghana    GH   GHA 1996
## 5635                                         Ghana    GH   GHA 1995
## 5636                                         Ghana    GH   GHA 1994
## 5637                                         Ghana    GH   GHA 1993
## 5638                                         Ghana    GH   GHA 1992
## 5639                                         Ghana    GH   GHA 1991
## 5640                                         Ghana    GH   GHA 1990
## 5641                                         Ghana    GH   GHA 1989
## 5642                                         Ghana    GH   GHA 1988
## 5643                                         Ghana    GH   GHA 1987
## 5644                                         Ghana    GH   GHA 1986
## 5645                                         Ghana    GH   GHA 1985
## 5646                                         Ghana    GH   GHA 1984
## 5647                                         Ghana    GH   GHA 1983
## 5648                                         Ghana    GH   GHA 1982
## 5649                                         Ghana    GH   GHA 1981
## 5650                                         Ghana    GH   GHA 1980
## 5651                                         Ghana    GH   GHA 1979
## 5652                                         Ghana    GH   GHA 1978
## 5653                                         Ghana    GH   GHA 1977
## 5654                                         Ghana    GH   GHA 1976
## 5655                                         Ghana    GH   GHA 1975
## 5656                                         Ghana    GH   GHA 1974
## 5657                                         Ghana    GH   GHA 1973
## 5658                                         Ghana    GH   GHA 1972
## 5659                                         Ghana    GH   GHA 1971
## 5660                                         Ghana    GH   GHA 1970
## 5661                                         Ghana    GH   GHA 1969
## 5662                                         Ghana    GH   GHA 1968
## 5663                                         Ghana    GH   GHA 1967
## 5664                                         Ghana    GH   GHA 1966
## 5665                                         Ghana    GH   GHA 1965
## 5666                                         Ghana    GH   GHA 1964
## 5667                                         Ghana    GH   GHA 1963
## 5668                                         Ghana    GH   GHA 1962
## 5669                                         Ghana    GH   GHA 1961
## 5670                                         Ghana    GH   GHA 1960
## 5671                                     Gibraltar    GI   GIB 2022
## 5672                                     Gibraltar    GI   GIB 2021
## 5673                                     Gibraltar    GI   GIB 2020
## 5674                                     Gibraltar    GI   GIB 2019
## 5675                                     Gibraltar    GI   GIB 2018
## 5676                                     Gibraltar    GI   GIB 2017
## 5677                                     Gibraltar    GI   GIB 2016
## 5678                                     Gibraltar    GI   GIB 2015
## 5679                                     Gibraltar    GI   GIB 2014
## 5680                                     Gibraltar    GI   GIB 2013
## 5681                                     Gibraltar    GI   GIB 2012
## 5682                                     Gibraltar    GI   GIB 2011
## 5683                                     Gibraltar    GI   GIB 2010
## 5684                                     Gibraltar    GI   GIB 2009
## 5685                                     Gibraltar    GI   GIB 2008
## 5686                                     Gibraltar    GI   GIB 2007
## 5687                                     Gibraltar    GI   GIB 2006
## 5688                                     Gibraltar    GI   GIB 2005
## 5689                                     Gibraltar    GI   GIB 2004
## 5690                                     Gibraltar    GI   GIB 2003
## 5691                                     Gibraltar    GI   GIB 2002
## 5692                                     Gibraltar    GI   GIB 2001
## 5693                                     Gibraltar    GI   GIB 2000
## 5694                                     Gibraltar    GI   GIB 1999
## 5695                                     Gibraltar    GI   GIB 1998
## 5696                                     Gibraltar    GI   GIB 1997
## 5697                                     Gibraltar    GI   GIB 1996
## 5698                                     Gibraltar    GI   GIB 1995
## 5699                                     Gibraltar    GI   GIB 1994
## 5700                                     Gibraltar    GI   GIB 1993
## 5701                                     Gibraltar    GI   GIB 1992
## 5702                                     Gibraltar    GI   GIB 1991
## 5703                                     Gibraltar    GI   GIB 1990
## 5704                                     Gibraltar    GI   GIB 1989
## 5705                                     Gibraltar    GI   GIB 1988
## 5706                                     Gibraltar    GI   GIB 1987
## 5707                                     Gibraltar    GI   GIB 1986
## 5708                                     Gibraltar    GI   GIB 1985
## 5709                                     Gibraltar    GI   GIB 1984
## 5710                                     Gibraltar    GI   GIB 1983
## 5711                                     Gibraltar    GI   GIB 1982
## 5712                                     Gibraltar    GI   GIB 1981
## 5713                                     Gibraltar    GI   GIB 1980
## 5714                                     Gibraltar    GI   GIB 1979
## 5715                                     Gibraltar    GI   GIB 1978
## 5716                                     Gibraltar    GI   GIB 1977
## 5717                                     Gibraltar    GI   GIB 1976
## 5718                                     Gibraltar    GI   GIB 1975
## 5719                                     Gibraltar    GI   GIB 1974
## 5720                                     Gibraltar    GI   GIB 1973
## 5721                                     Gibraltar    GI   GIB 1972
## 5722                                     Gibraltar    GI   GIB 1971
## 5723                                     Gibraltar    GI   GIB 1970
## 5724                                     Gibraltar    GI   GIB 1969
## 5725                                     Gibraltar    GI   GIB 1968
## 5726                                     Gibraltar    GI   GIB 1967
## 5727                                     Gibraltar    GI   GIB 1966
## 5728                                     Gibraltar    GI   GIB 1965
## 5729                                     Gibraltar    GI   GIB 1964
## 5730                                     Gibraltar    GI   GIB 1963
## 5731                                     Gibraltar    GI   GIB 1962
## 5732                                     Gibraltar    GI   GIB 1961
## 5733                                     Gibraltar    GI   GIB 1960
## 5734                                        Greece    GR   GRC 2022
## 5735                                        Greece    GR   GRC 2021
## 5736                                        Greece    GR   GRC 2020
## 5737                                        Greece    GR   GRC 2019
## 5738                                        Greece    GR   GRC 2018
## 5739                                        Greece    GR   GRC 2017
## 5740                                        Greece    GR   GRC 2016
## 5741                                        Greece    GR   GRC 2015
## 5742                                        Greece    GR   GRC 2014
## 5743                                        Greece    GR   GRC 2013
## 5744                                        Greece    GR   GRC 2012
## 5745                                        Greece    GR   GRC 2011
## 5746                                        Greece    GR   GRC 2010
## 5747                                        Greece    GR   GRC 2009
## 5748                                        Greece    GR   GRC 2008
## 5749                                        Greece    GR   GRC 2007
## 5750                                        Greece    GR   GRC 2006
## 5751                                        Greece    GR   GRC 2005
## 5752                                        Greece    GR   GRC 2004
## 5753                                        Greece    GR   GRC 2003
## 5754                                        Greece    GR   GRC 2002
## 5755                                        Greece    GR   GRC 2001
## 5756                                        Greece    GR   GRC 2000
## 5757                                        Greece    GR   GRC 1999
## 5758                                        Greece    GR   GRC 1998
## 5759                                        Greece    GR   GRC 1997
## 5760                                        Greece    GR   GRC 1996
## 5761                                        Greece    GR   GRC 1995
## 5762                                        Greece    GR   GRC 1994
## 5763                                        Greece    GR   GRC 1993
## 5764                                        Greece    GR   GRC 1992
## 5765                                        Greece    GR   GRC 1991
## 5766                                        Greece    GR   GRC 1990
## 5767                                        Greece    GR   GRC 1989
## 5768                                        Greece    GR   GRC 1988
## 5769                                        Greece    GR   GRC 1987
## 5770                                        Greece    GR   GRC 1986
## 5771                                        Greece    GR   GRC 1985
## 5772                                        Greece    GR   GRC 1984
## 5773                                        Greece    GR   GRC 1983
## 5774                                        Greece    GR   GRC 1982
## 5775                                        Greece    GR   GRC 1981
## 5776                                        Greece    GR   GRC 1980
## 5777                                        Greece    GR   GRC 1979
## 5778                                        Greece    GR   GRC 1978
## 5779                                        Greece    GR   GRC 1977
## 5780                                        Greece    GR   GRC 1976
## 5781                                        Greece    GR   GRC 1975
## 5782                                        Greece    GR   GRC 1974
## 5783                                        Greece    GR   GRC 1973
## 5784                                        Greece    GR   GRC 1972
## 5785                                        Greece    GR   GRC 1971
## 5786                                        Greece    GR   GRC 1970
## 5787                                        Greece    GR   GRC 1969
## 5788                                        Greece    GR   GRC 1968
## 5789                                        Greece    GR   GRC 1967
## 5790                                        Greece    GR   GRC 1966
## 5791                                        Greece    GR   GRC 1965
## 5792                                        Greece    GR   GRC 1964
## 5793                                        Greece    GR   GRC 1963
## 5794                                        Greece    GR   GRC 1962
## 5795                                        Greece    GR   GRC 1961
## 5796                                        Greece    GR   GRC 1960
## 5797                                     Greenland    GL   GRL 2022
## 5798                                     Greenland    GL   GRL 2021
## 5799                                     Greenland    GL   GRL 2020
## 5800                                     Greenland    GL   GRL 2019
## 5801                                     Greenland    GL   GRL 2018
## 5802                                     Greenland    GL   GRL 2017
## 5803                                     Greenland    GL   GRL 2016
## 5804                                     Greenland    GL   GRL 2015
## 5805                                     Greenland    GL   GRL 2014
## 5806                                     Greenland    GL   GRL 2013
## 5807                                     Greenland    GL   GRL 2012
## 5808                                     Greenland    GL   GRL 2011
## 5809                                     Greenland    GL   GRL 2010
## 5810                                     Greenland    GL   GRL 2009
## 5811                                     Greenland    GL   GRL 2008
## 5812                                     Greenland    GL   GRL 2007
## 5813                                     Greenland    GL   GRL 2006
## 5814                                     Greenland    GL   GRL 2005
## 5815                                     Greenland    GL   GRL 2004
## 5816                                     Greenland    GL   GRL 2003
## 5817                                     Greenland    GL   GRL 2002
## 5818                                     Greenland    GL   GRL 2001
## 5819                                     Greenland    GL   GRL 2000
## 5820                                     Greenland    GL   GRL 1999
## 5821                                     Greenland    GL   GRL 1998
## 5822                                     Greenland    GL   GRL 1997
## 5823                                     Greenland    GL   GRL 1996
## 5824                                     Greenland    GL   GRL 1995
## 5825                                     Greenland    GL   GRL 1994
## 5826                                     Greenland    GL   GRL 1993
## 5827                                     Greenland    GL   GRL 1992
## 5828                                     Greenland    GL   GRL 1991
## 5829                                     Greenland    GL   GRL 1990
## 5830                                     Greenland    GL   GRL 1989
## 5831                                     Greenland    GL   GRL 1988
## 5832                                     Greenland    GL   GRL 1987
## 5833                                     Greenland    GL   GRL 1986
## 5834                                     Greenland    GL   GRL 1985
## 5835                                     Greenland    GL   GRL 1984
## 5836                                     Greenland    GL   GRL 1983
## 5837                                     Greenland    GL   GRL 1982
## 5838                                     Greenland    GL   GRL 1981
## 5839                                     Greenland    GL   GRL 1980
## 5840                                     Greenland    GL   GRL 1979
## 5841                                     Greenland    GL   GRL 1978
## 5842                                     Greenland    GL   GRL 1977
## 5843                                     Greenland    GL   GRL 1976
## 5844                                     Greenland    GL   GRL 1975
## 5845                                     Greenland    GL   GRL 1974
## 5846                                     Greenland    GL   GRL 1973
## 5847                                     Greenland    GL   GRL 1972
## 5848                                     Greenland    GL   GRL 1971
## 5849                                     Greenland    GL   GRL 1970
## 5850                                     Greenland    GL   GRL 1969
## 5851                                     Greenland    GL   GRL 1968
## 5852                                     Greenland    GL   GRL 1967
## 5853                                     Greenland    GL   GRL 1966
## 5854                                     Greenland    GL   GRL 1965
## 5855                                     Greenland    GL   GRL 1964
## 5856                                     Greenland    GL   GRL 1963
## 5857                                     Greenland    GL   GRL 1962
## 5858                                     Greenland    GL   GRL 1961
## 5859                                     Greenland    GL   GRL 1960
## 5860                                       Grenada    GD   GRD 2022
## 5861                                       Grenada    GD   GRD 2021
## 5862                                       Grenada    GD   GRD 2020
## 5863                                       Grenada    GD   GRD 2019
## 5864                                       Grenada    GD   GRD 2018
## 5865                                       Grenada    GD   GRD 2017
## 5866                                       Grenada    GD   GRD 2016
## 5867                                       Grenada    GD   GRD 2015
## 5868                                       Grenada    GD   GRD 2014
## 5869                                       Grenada    GD   GRD 2013
## 5870                                       Grenada    GD   GRD 2012
## 5871                                       Grenada    GD   GRD 2011
## 5872                                       Grenada    GD   GRD 2010
## 5873                                       Grenada    GD   GRD 2009
## 5874                                       Grenada    GD   GRD 2008
## 5875                                       Grenada    GD   GRD 2007
## 5876                                       Grenada    GD   GRD 2006
## 5877                                       Grenada    GD   GRD 2005
## 5878                                       Grenada    GD   GRD 2004
## 5879                                       Grenada    GD   GRD 2003
## 5880                                       Grenada    GD   GRD 2002
## 5881                                       Grenada    GD   GRD 2001
## 5882                                       Grenada    GD   GRD 2000
## 5883                                       Grenada    GD   GRD 1999
## 5884                                       Grenada    GD   GRD 1998
## 5885                                       Grenada    GD   GRD 1997
## 5886                                       Grenada    GD   GRD 1996
## 5887                                       Grenada    GD   GRD 1995
## 5888                                       Grenada    GD   GRD 1994
## 5889                                       Grenada    GD   GRD 1993
## 5890                                       Grenada    GD   GRD 1992
## 5891                                       Grenada    GD   GRD 1991
## 5892                                       Grenada    GD   GRD 1990
## 5893                                       Grenada    GD   GRD 1989
## 5894                                       Grenada    GD   GRD 1988
## 5895                                       Grenada    GD   GRD 1987
## 5896                                       Grenada    GD   GRD 1986
## 5897                                       Grenada    GD   GRD 1985
## 5898                                       Grenada    GD   GRD 1984
## 5899                                       Grenada    GD   GRD 1983
## 5900                                       Grenada    GD   GRD 1982
## 5901                                       Grenada    GD   GRD 1981
## 5902                                       Grenada    GD   GRD 1980
## 5903                                       Grenada    GD   GRD 1979
## 5904                                       Grenada    GD   GRD 1978
## 5905                                       Grenada    GD   GRD 1977
## 5906                                       Grenada    GD   GRD 1976
## 5907                                       Grenada    GD   GRD 1975
## 5908                                       Grenada    GD   GRD 1974
## 5909                                       Grenada    GD   GRD 1973
## 5910                                       Grenada    GD   GRD 1972
## 5911                                       Grenada    GD   GRD 1971
## 5912                                       Grenada    GD   GRD 1970
## 5913                                       Grenada    GD   GRD 1969
## 5914                                       Grenada    GD   GRD 1968
## 5915                                       Grenada    GD   GRD 1967
## 5916                                       Grenada    GD   GRD 1966
## 5917                                       Grenada    GD   GRD 1965
## 5918                                       Grenada    GD   GRD 1964
## 5919                                       Grenada    GD   GRD 1963
## 5920                                       Grenada    GD   GRD 1962
## 5921                                       Grenada    GD   GRD 1961
## 5922                                       Grenada    GD   GRD 1960
## 5923                                          Guam    GU   GUM 2022
## 5924                                          Guam    GU   GUM 2021
## 5925                                          Guam    GU   GUM 2020
## 5926                                          Guam    GU   GUM 2019
## 5927                                          Guam    GU   GUM 2018
## 5928                                          Guam    GU   GUM 2017
## 5929                                          Guam    GU   GUM 2016
## 5930                                          Guam    GU   GUM 2015
## 5931                                          Guam    GU   GUM 2014
## 5932                                          Guam    GU   GUM 2013
## 5933                                          Guam    GU   GUM 2012
## 5934                                          Guam    GU   GUM 2011
## 5935                                          Guam    GU   GUM 2010
## 5936                                          Guam    GU   GUM 2009
## 5937                                          Guam    GU   GUM 2008
## 5938                                          Guam    GU   GUM 2007
## 5939                                          Guam    GU   GUM 2006
## 5940                                          Guam    GU   GUM 2005
## 5941                                          Guam    GU   GUM 2004
## 5942                                          Guam    GU   GUM 2003
## 5943                                          Guam    GU   GUM 2002
## 5944                                          Guam    GU   GUM 2001
## 5945                                          Guam    GU   GUM 2000
## 5946                                          Guam    GU   GUM 1999
## 5947                                          Guam    GU   GUM 1998
## 5948                                          Guam    GU   GUM 1997
## 5949                                          Guam    GU   GUM 1996
## 5950                                          Guam    GU   GUM 1995
## 5951                                          Guam    GU   GUM 1994
## 5952                                          Guam    GU   GUM 1993
## 5953                                          Guam    GU   GUM 1992
## 5954                                          Guam    GU   GUM 1991
## 5955                                          Guam    GU   GUM 1990
## 5956                                          Guam    GU   GUM 1989
## 5957                                          Guam    GU   GUM 1988
## 5958                                          Guam    GU   GUM 1987
## 5959                                          Guam    GU   GUM 1986
## 5960                                          Guam    GU   GUM 1985
## 5961                                          Guam    GU   GUM 1984
## 5962                                          Guam    GU   GUM 1983
## 5963                                          Guam    GU   GUM 1982
## 5964                                          Guam    GU   GUM 1981
## 5965                                          Guam    GU   GUM 1980
## 5966                                          Guam    GU   GUM 1979
## 5967                                          Guam    GU   GUM 1978
## 5968                                          Guam    GU   GUM 1977
## 5969                                          Guam    GU   GUM 1976
## 5970                                          Guam    GU   GUM 1975
## 5971                                          Guam    GU   GUM 1974
## 5972                                          Guam    GU   GUM 1973
## 5973                                          Guam    GU   GUM 1972
## 5974                                          Guam    GU   GUM 1971
## 5975                                          Guam    GU   GUM 1970
## 5976                                          Guam    GU   GUM 1969
## 5977                                          Guam    GU   GUM 1968
## 5978                                          Guam    GU   GUM 1967
## 5979                                          Guam    GU   GUM 1966
## 5980                                          Guam    GU   GUM 1965
## 5981                                          Guam    GU   GUM 1964
## 5982                                          Guam    GU   GUM 1963
## 5983                                          Guam    GU   GUM 1962
## 5984                                          Guam    GU   GUM 1961
## 5985                                          Guam    GU   GUM 1960
## 5986                                     Guatemala    GT   GTM 2022
## 5987                                     Guatemala    GT   GTM 2021
## 5988                                     Guatemala    GT   GTM 2020
## 5989                                     Guatemala    GT   GTM 2019
## 5990                                     Guatemala    GT   GTM 2018
## 5991                                     Guatemala    GT   GTM 2017
## 5992                                     Guatemala    GT   GTM 2016
## 5993                                     Guatemala    GT   GTM 2015
## 5994                                     Guatemala    GT   GTM 2014
## 5995                                     Guatemala    GT   GTM 2013
## 5996                                     Guatemala    GT   GTM 2012
## 5997                                     Guatemala    GT   GTM 2011
## 5998                                     Guatemala    GT   GTM 2010
## 5999                                     Guatemala    GT   GTM 2009
## 6000                                     Guatemala    GT   GTM 2008
## 6001                                     Guatemala    GT   GTM 2007
## 6002                                     Guatemala    GT   GTM 2006
## 6003                                     Guatemala    GT   GTM 2005
## 6004                                     Guatemala    GT   GTM 2004
## 6005                                     Guatemala    GT   GTM 2003
## 6006                                     Guatemala    GT   GTM 2002
## 6007                                     Guatemala    GT   GTM 2001
## 6008                                     Guatemala    GT   GTM 2000
## 6009                                     Guatemala    GT   GTM 1999
## 6010                                     Guatemala    GT   GTM 1998
## 6011                                     Guatemala    GT   GTM 1997
## 6012                                     Guatemala    GT   GTM 1996
## 6013                                     Guatemala    GT   GTM 1995
## 6014                                     Guatemala    GT   GTM 1994
## 6015                                     Guatemala    GT   GTM 1993
## 6016                                     Guatemala    GT   GTM 1992
## 6017                                     Guatemala    GT   GTM 1991
## 6018                                     Guatemala    GT   GTM 1990
## 6019                                     Guatemala    GT   GTM 1989
## 6020                                     Guatemala    GT   GTM 1988
## 6021                                     Guatemala    GT   GTM 1987
## 6022                                     Guatemala    GT   GTM 1986
## 6023                                     Guatemala    GT   GTM 1985
## 6024                                     Guatemala    GT   GTM 1984
## 6025                                     Guatemala    GT   GTM 1983
## 6026                                     Guatemala    GT   GTM 1982
## 6027                                     Guatemala    GT   GTM 1981
## 6028                                     Guatemala    GT   GTM 1980
## 6029                                     Guatemala    GT   GTM 1979
## 6030                                     Guatemala    GT   GTM 1978
## 6031                                     Guatemala    GT   GTM 1977
## 6032                                     Guatemala    GT   GTM 1976
## 6033                                     Guatemala    GT   GTM 1975
## 6034                                     Guatemala    GT   GTM 1974
## 6035                                     Guatemala    GT   GTM 1973
## 6036                                     Guatemala    GT   GTM 1972
## 6037                                     Guatemala    GT   GTM 1971
## 6038                                     Guatemala    GT   GTM 1970
## 6039                                     Guatemala    GT   GTM 1969
## 6040                                     Guatemala    GT   GTM 1968
## 6041                                     Guatemala    GT   GTM 1967
## 6042                                     Guatemala    GT   GTM 1966
## 6043                                     Guatemala    GT   GTM 1965
## 6044                                     Guatemala    GT   GTM 1964
## 6045                                     Guatemala    GT   GTM 1963
## 6046                                     Guatemala    GT   GTM 1962
## 6047                                     Guatemala    GT   GTM 1961
## 6048                                     Guatemala    GT   GTM 1960
## 6049                                        Guinea    GN   GIN 2022
## 6050                                        Guinea    GN   GIN 2021
## 6051                                        Guinea    GN   GIN 2020
## 6052                                        Guinea    GN   GIN 2019
## 6053                                        Guinea    GN   GIN 2018
## 6054                                        Guinea    GN   GIN 2017
## 6055                                        Guinea    GN   GIN 2016
## 6056                                        Guinea    GN   GIN 2015
## 6057                                        Guinea    GN   GIN 2014
## 6058                                        Guinea    GN   GIN 2013
## 6059                                        Guinea    GN   GIN 2012
## 6060                                        Guinea    GN   GIN 2011
## 6061                                        Guinea    GN   GIN 2010
## 6062                                        Guinea    GN   GIN 2009
## 6063                                        Guinea    GN   GIN 2008
## 6064                                        Guinea    GN   GIN 2007
## 6065                                        Guinea    GN   GIN 2006
## 6066                                        Guinea    GN   GIN 2005
## 6067                                        Guinea    GN   GIN 2004
## 6068                                        Guinea    GN   GIN 2003
## 6069                                        Guinea    GN   GIN 2002
## 6070                                        Guinea    GN   GIN 2001
## 6071                                        Guinea    GN   GIN 2000
## 6072                                        Guinea    GN   GIN 1999
## 6073                                        Guinea    GN   GIN 1998
## 6074                                        Guinea    GN   GIN 1997
## 6075                                        Guinea    GN   GIN 1996
## 6076                                        Guinea    GN   GIN 1995
## 6077                                        Guinea    GN   GIN 1994
## 6078                                        Guinea    GN   GIN 1993
## 6079                                        Guinea    GN   GIN 1992
## 6080                                        Guinea    GN   GIN 1991
## 6081                                        Guinea    GN   GIN 1990
## 6082                                        Guinea    GN   GIN 1989
## 6083                                        Guinea    GN   GIN 1988
## 6084                                        Guinea    GN   GIN 1987
## 6085                                        Guinea    GN   GIN 1986
## 6086                                        Guinea    GN   GIN 1985
## 6087                                        Guinea    GN   GIN 1984
## 6088                                        Guinea    GN   GIN 1983
## 6089                                        Guinea    GN   GIN 1982
## 6090                                        Guinea    GN   GIN 1981
## 6091                                        Guinea    GN   GIN 1980
## 6092                                        Guinea    GN   GIN 1979
## 6093                                        Guinea    GN   GIN 1978
## 6094                                        Guinea    GN   GIN 1977
## 6095                                        Guinea    GN   GIN 1976
## 6096                                        Guinea    GN   GIN 1975
## 6097                                        Guinea    GN   GIN 1974
## 6098                                        Guinea    GN   GIN 1973
## 6099                                        Guinea    GN   GIN 1972
## 6100                                        Guinea    GN   GIN 1971
## 6101                                        Guinea    GN   GIN 1970
## 6102                                        Guinea    GN   GIN 1969
## 6103                                        Guinea    GN   GIN 1968
## 6104                                        Guinea    GN   GIN 1967
## 6105                                        Guinea    GN   GIN 1966
## 6106                                        Guinea    GN   GIN 1965
## 6107                                        Guinea    GN   GIN 1964
## 6108                                        Guinea    GN   GIN 1963
## 6109                                        Guinea    GN   GIN 1962
## 6110                                        Guinea    GN   GIN 1961
## 6111                                        Guinea    GN   GIN 1960
## 6112                                 Guinea-Bissau    GW   GNB 2022
## 6113                                 Guinea-Bissau    GW   GNB 2021
## 6114                                 Guinea-Bissau    GW   GNB 2020
## 6115                                 Guinea-Bissau    GW   GNB 2019
## 6116                                 Guinea-Bissau    GW   GNB 2018
## 6117                                 Guinea-Bissau    GW   GNB 2017
## 6118                                 Guinea-Bissau    GW   GNB 2016
## 6119                                 Guinea-Bissau    GW   GNB 2015
## 6120                                 Guinea-Bissau    GW   GNB 2014
## 6121                                 Guinea-Bissau    GW   GNB 2013
## 6122                                 Guinea-Bissau    GW   GNB 2012
## 6123                                 Guinea-Bissau    GW   GNB 2011
## 6124                                 Guinea-Bissau    GW   GNB 2010
## 6125                                 Guinea-Bissau    GW   GNB 2009
## 6126                                 Guinea-Bissau    GW   GNB 2008
## 6127                                 Guinea-Bissau    GW   GNB 2007
## 6128                                 Guinea-Bissau    GW   GNB 2006
## 6129                                 Guinea-Bissau    GW   GNB 2005
## 6130                                 Guinea-Bissau    GW   GNB 2004
## 6131                                 Guinea-Bissau    GW   GNB 2003
## 6132                                 Guinea-Bissau    GW   GNB 2002
## 6133                                 Guinea-Bissau    GW   GNB 2001
## 6134                                 Guinea-Bissau    GW   GNB 2000
## 6135                                 Guinea-Bissau    GW   GNB 1999
## 6136                                 Guinea-Bissau    GW   GNB 1998
## 6137                                 Guinea-Bissau    GW   GNB 1997
## 6138                                 Guinea-Bissau    GW   GNB 1996
## 6139                                 Guinea-Bissau    GW   GNB 1995
## 6140                                 Guinea-Bissau    GW   GNB 1994
## 6141                                 Guinea-Bissau    GW   GNB 1993
## 6142                                 Guinea-Bissau    GW   GNB 1992
## 6143                                 Guinea-Bissau    GW   GNB 1991
## 6144                                 Guinea-Bissau    GW   GNB 1990
## 6145                                 Guinea-Bissau    GW   GNB 1989
## 6146                                 Guinea-Bissau    GW   GNB 1988
## 6147                                 Guinea-Bissau    GW   GNB 1987
## 6148                                 Guinea-Bissau    GW   GNB 1986
## 6149                                 Guinea-Bissau    GW   GNB 1985
## 6150                                 Guinea-Bissau    GW   GNB 1984
## 6151                                 Guinea-Bissau    GW   GNB 1983
## 6152                                 Guinea-Bissau    GW   GNB 1982
## 6153                                 Guinea-Bissau    GW   GNB 1981
## 6154                                 Guinea-Bissau    GW   GNB 1980
## 6155                                 Guinea-Bissau    GW   GNB 1979
## 6156                                 Guinea-Bissau    GW   GNB 1978
## 6157                                 Guinea-Bissau    GW   GNB 1977
## 6158                                 Guinea-Bissau    GW   GNB 1976
## 6159                                 Guinea-Bissau    GW   GNB 1975
## 6160                                 Guinea-Bissau    GW   GNB 1974
## 6161                                 Guinea-Bissau    GW   GNB 1973
## 6162                                 Guinea-Bissau    GW   GNB 1972
## 6163                                 Guinea-Bissau    GW   GNB 1971
## 6164                                 Guinea-Bissau    GW   GNB 1970
## 6165                                 Guinea-Bissau    GW   GNB 1969
## 6166                                 Guinea-Bissau    GW   GNB 1968
## 6167                                 Guinea-Bissau    GW   GNB 1967
## 6168                                 Guinea-Bissau    GW   GNB 1966
## 6169                                 Guinea-Bissau    GW   GNB 1965
## 6170                                 Guinea-Bissau    GW   GNB 1964
## 6171                                 Guinea-Bissau    GW   GNB 1963
## 6172                                 Guinea-Bissau    GW   GNB 1962
## 6173                                 Guinea-Bissau    GW   GNB 1961
## 6174                                 Guinea-Bissau    GW   GNB 1960
## 6175                                        Guyana    GY   GUY 2022
## 6176                                        Guyana    GY   GUY 2021
## 6177                                        Guyana    GY   GUY 2020
## 6178                                        Guyana    GY   GUY 2019
## 6179                                        Guyana    GY   GUY 2018
## 6180                                        Guyana    GY   GUY 2017
## 6181                                        Guyana    GY   GUY 2016
## 6182                                        Guyana    GY   GUY 2015
## 6183                                        Guyana    GY   GUY 2014
## 6184                                        Guyana    GY   GUY 2013
## 6185                                        Guyana    GY   GUY 2012
## 6186                                        Guyana    GY   GUY 2011
## 6187                                        Guyana    GY   GUY 2010
## 6188                                        Guyana    GY   GUY 2009
## 6189                                        Guyana    GY   GUY 2008
## 6190                                        Guyana    GY   GUY 2007
## 6191                                        Guyana    GY   GUY 2006
## 6192                                        Guyana    GY   GUY 2005
## 6193                                        Guyana    GY   GUY 2004
## 6194                                        Guyana    GY   GUY 2003
## 6195                                        Guyana    GY   GUY 2002
## 6196                                        Guyana    GY   GUY 2001
## 6197                                        Guyana    GY   GUY 2000
## 6198                                        Guyana    GY   GUY 1999
## 6199                                        Guyana    GY   GUY 1998
## 6200                                        Guyana    GY   GUY 1997
## 6201                                        Guyana    GY   GUY 1996
## 6202                                        Guyana    GY   GUY 1995
## 6203                                        Guyana    GY   GUY 1994
## 6204                                        Guyana    GY   GUY 1993
## 6205                                        Guyana    GY   GUY 1992
## 6206                                        Guyana    GY   GUY 1991
## 6207                                        Guyana    GY   GUY 1990
## 6208                                        Guyana    GY   GUY 1989
## 6209                                        Guyana    GY   GUY 1988
## 6210                                        Guyana    GY   GUY 1987
## 6211                                        Guyana    GY   GUY 1986
## 6212                                        Guyana    GY   GUY 1985
## 6213                                        Guyana    GY   GUY 1984
## 6214                                        Guyana    GY   GUY 1983
## 6215                                        Guyana    GY   GUY 1982
## 6216                                        Guyana    GY   GUY 1981
## 6217                                        Guyana    GY   GUY 1980
## 6218                                        Guyana    GY   GUY 1979
## 6219                                        Guyana    GY   GUY 1978
## 6220                                        Guyana    GY   GUY 1977
## 6221                                        Guyana    GY   GUY 1976
## 6222                                        Guyana    GY   GUY 1975
## 6223                                        Guyana    GY   GUY 1974
## 6224                                        Guyana    GY   GUY 1973
## 6225                                        Guyana    GY   GUY 1972
## 6226                                        Guyana    GY   GUY 1971
## 6227                                        Guyana    GY   GUY 1970
## 6228                                        Guyana    GY   GUY 1969
## 6229                                        Guyana    GY   GUY 1968
## 6230                                        Guyana    GY   GUY 1967
## 6231                                        Guyana    GY   GUY 1966
## 6232                                        Guyana    GY   GUY 1965
## 6233                                        Guyana    GY   GUY 1964
## 6234                                        Guyana    GY   GUY 1963
## 6235                                        Guyana    GY   GUY 1962
## 6236                                        Guyana    GY   GUY 1961
## 6237                                        Guyana    GY   GUY 1960
## 6238                                         Haiti    HT   HTI 2022
## 6239                                         Haiti    HT   HTI 2021
## 6240                                         Haiti    HT   HTI 2020
## 6241                                         Haiti    HT   HTI 2019
## 6242                                         Haiti    HT   HTI 2018
## 6243                                         Haiti    HT   HTI 2017
## 6244                                         Haiti    HT   HTI 2016
## 6245                                         Haiti    HT   HTI 2015
## 6246                                         Haiti    HT   HTI 2014
## 6247                                         Haiti    HT   HTI 2013
## 6248                                         Haiti    HT   HTI 2012
## 6249                                         Haiti    HT   HTI 2011
## 6250                                         Haiti    HT   HTI 2010
## 6251                                         Haiti    HT   HTI 2009
## 6252                                         Haiti    HT   HTI 2008
## 6253                                         Haiti    HT   HTI 2007
## 6254                                         Haiti    HT   HTI 2006
## 6255                                         Haiti    HT   HTI 2005
## 6256                                         Haiti    HT   HTI 2004
## 6257                                         Haiti    HT   HTI 2003
## 6258                                         Haiti    HT   HTI 2002
## 6259                                         Haiti    HT   HTI 2001
## 6260                                         Haiti    HT   HTI 2000
## 6261                                         Haiti    HT   HTI 1999
## 6262                                         Haiti    HT   HTI 1998
## 6263                                         Haiti    HT   HTI 1997
## 6264                                         Haiti    HT   HTI 1996
## 6265                                         Haiti    HT   HTI 1995
## 6266                                         Haiti    HT   HTI 1994
## 6267                                         Haiti    HT   HTI 1993
## 6268                                         Haiti    HT   HTI 1992
## 6269                                         Haiti    HT   HTI 1991
## 6270                                         Haiti    HT   HTI 1990
## 6271                                         Haiti    HT   HTI 1989
## 6272                                         Haiti    HT   HTI 1988
## 6273                                         Haiti    HT   HTI 1987
## 6274                                         Haiti    HT   HTI 1986
## 6275                                         Haiti    HT   HTI 1985
## 6276                                         Haiti    HT   HTI 1984
## 6277                                         Haiti    HT   HTI 1983
## 6278                                         Haiti    HT   HTI 1982
## 6279                                         Haiti    HT   HTI 1981
## 6280                                         Haiti    HT   HTI 1980
## 6281                                         Haiti    HT   HTI 1979
## 6282                                         Haiti    HT   HTI 1978
## 6283                                         Haiti    HT   HTI 1977
## 6284                                         Haiti    HT   HTI 1976
## 6285                                         Haiti    HT   HTI 1975
## 6286                                         Haiti    HT   HTI 1974
## 6287                                         Haiti    HT   HTI 1973
## 6288                                         Haiti    HT   HTI 1972
## 6289                                         Haiti    HT   HTI 1971
## 6290                                         Haiti    HT   HTI 1970
## 6291                                         Haiti    HT   HTI 1969
## 6292                                         Haiti    HT   HTI 1968
## 6293                                         Haiti    HT   HTI 1967
## 6294                                         Haiti    HT   HTI 1966
## 6295                                         Haiti    HT   HTI 1965
## 6296                                         Haiti    HT   HTI 1964
## 6297                                         Haiti    HT   HTI 1963
## 6298                                         Haiti    HT   HTI 1962
## 6299                                         Haiti    HT   HTI 1961
## 6300                                         Haiti    HT   HTI 1960
## 6301        Heavily indebted poor countries (HIPC)    XE   HPC 1977
## 6302        Heavily indebted poor countries (HIPC)    XE   HPC 1992
## 6303        Heavily indebted poor countries (HIPC)    XE   HPC 1991
## 6304        Heavily indebted poor countries (HIPC)    XE   HPC 2016
## 6305        Heavily indebted poor countries (HIPC)    XE   HPC 1989
## 6306        Heavily indebted poor countries (HIPC)    XE   HPC 1988
## 6307        Heavily indebted poor countries (HIPC)    XE   HPC 1987
## 6308        Heavily indebted poor countries (HIPC)    XE   HPC 1986
## 6309        Heavily indebted poor countries (HIPC)    XE   HPC 1985
## 6310        Heavily indebted poor countries (HIPC)    XE   HPC 1976
## 6311        Heavily indebted poor countries (HIPC)    XE   HPC 2018
## 6312        Heavily indebted poor countries (HIPC)    XE   HPC 2017
## 6313        Heavily indebted poor countries (HIPC)    XE   HPC 1990
## 6314        Heavily indebted poor countries (HIPC)    XE   HPC 2012
## 6315        Heavily indebted poor countries (HIPC)    XE   HPC 2015
## 6316        Heavily indebted poor countries (HIPC)    XE   HPC 2014
## 6317        Heavily indebted poor countries (HIPC)    XE   HPC 2013
## 6318        Heavily indebted poor countries (HIPC)    XE   HPC 2020
## 6319        Heavily indebted poor countries (HIPC)    XE   HPC 2019
## 6320        Heavily indebted poor countries (HIPC)    XE   HPC 2005
## 6321        Heavily indebted poor countries (HIPC)    XE   HPC 2004
## 6322        Heavily indebted poor countries (HIPC)    XE   HPC 1978
## 6323        Heavily indebted poor countries (HIPC)    XE   HPC 2003
## 6324        Heavily indebted poor countries (HIPC)    XE   HPC 2002
## 6325        Heavily indebted poor countries (HIPC)    XE   HPC 2001
## 6326        Heavily indebted poor countries (HIPC)    XE   HPC 2000
## 6327        Heavily indebted poor countries (HIPC)    XE   HPC 1999
## 6328        Heavily indebted poor countries (HIPC)    XE   HPC 2011
## 6329        Heavily indebted poor countries (HIPC)    XE   HPC 2022
## 6330        Heavily indebted poor countries (HIPC)    XE   HPC 2021
## 6331        Heavily indebted poor countries (HIPC)    XE   HPC 2007
## 6332        Heavily indebted poor countries (HIPC)    XE   HPC 2006
## 6333        Heavily indebted poor countries (HIPC)    XE   HPC 1993
## 6334        Heavily indebted poor countries (HIPC)    XE   HPC 1979
## 6335        Heavily indebted poor countries (HIPC)    XE   HPC 1966
## 6336        Heavily indebted poor countries (HIPC)    XE   HPC 1965
## 6337        Heavily indebted poor countries (HIPC)    XE   HPC 1964
## 6338        Heavily indebted poor countries (HIPC)    XE   HPC 1963
## 6339        Heavily indebted poor countries (HIPC)    XE   HPC 1975
## 6340        Heavily indebted poor countries (HIPC)    XE   HPC 1974
## 6341        Heavily indebted poor countries (HIPC)    XE   HPC 1973
## 6342        Heavily indebted poor countries (HIPC)    XE   HPC 1984
## 6343        Heavily indebted poor countries (HIPC)    XE   HPC 1983
## 6344        Heavily indebted poor countries (HIPC)    XE   HPC 1982
## 6345        Heavily indebted poor countries (HIPC)    XE   HPC 1981
## 6346        Heavily indebted poor countries (HIPC)    XE   HPC 1980
## 6347        Heavily indebted poor countries (HIPC)    XE   HPC 1967
## 6348        Heavily indebted poor countries (HIPC)    XE   HPC 1962
## 6349        Heavily indebted poor countries (HIPC)    XE   HPC 1961
## 6350        Heavily indebted poor countries (HIPC)    XE   HPC 1960
## 6351        Heavily indebted poor countries (HIPC)    XE   HPC 1972
## 6352        Heavily indebted poor countries (HIPC)    XE   HPC 2010
## 6353        Heavily indebted poor countries (HIPC)    XE   HPC 2009
## 6354        Heavily indebted poor countries (HIPC)    XE   HPC 2008
## 6355        Heavily indebted poor countries (HIPC)    XE   HPC 1968
## 6356        Heavily indebted poor countries (HIPC)    XE   HPC 1998
## 6357        Heavily indebted poor countries (HIPC)    XE   HPC 1997
## 6358        Heavily indebted poor countries (HIPC)    XE   HPC 1996
## 6359        Heavily indebted poor countries (HIPC)    XE   HPC 1995
## 6360        Heavily indebted poor countries (HIPC)    XE   HPC 1994
## 6361        Heavily indebted poor countries (HIPC)    XE   HPC 1969
## 6362        Heavily indebted poor countries (HIPC)    XE   HPC 1971
## 6363        Heavily indebted poor countries (HIPC)    XE   HPC 1970
## 6364                                   High income    XD       2017
## 6365                                   High income    XD       2016
## 6366                                   High income    XD       2015
## 6367                                   High income    XD       2014
## 6368                                   High income    XD       2013
## 6369                                   High income    XD       2012
## 6370                                   High income    XD       2011
## 6371                                   High income    XD       2010
## 6372                                   High income    XD       2009
## 6373                                   High income    XD       2008
## 6374                                   High income    XD       2007
## 6375                                   High income    XD       2006
## 6376                                   High income    XD       2005
## 6377                                   High income    XD       2004
## 6378                                   High income    XD       2003
## 6379                                   High income    XD       2002
## 6380                                   High income    XD       2001
## 6381                                   High income    XD       2000
## 6382                                   High income    XD       1999
## 6383                                   High income    XD       1998
## 6384                                   High income    XD       1997
## 6385                                   High income    XD       1996
## 6386                                   High income    XD       1978
## 6387                                   High income    XD       1977
## 6388                                   High income    XD       1976
## 6389                                   High income    XD       1975
## 6390                                   High income    XD       1974
## 6391                                   High income    XD       1973
## 6392                                   High income    XD       1972
## 6393                                   High income    XD       1971
## 6394                                   High income    XD       1970
## 6395                                   High income    XD       1969
## 6396                                   High income    XD       1968
## 6397                                   High income    XD       1967
## 6398                                   High income    XD       1966
## 6399                                   High income    XD       1965
## 6400                                   High income    XD       1964
## 6401                                   High income    XD       1963
## 6402                                   High income    XD       1962
## 6403                                   High income    XD       1961
## 6404                                   High income    XD       2019
## 6405                                   High income    XD       2018
## 6406                                   High income    XD       1992
## 6407                                   High income    XD       1991
## 6408                                   High income    XD       1990
## 6409                                   High income    XD       1989
## 6410                                   High income    XD       1988
## 6411                                   High income    XD       2022
## 6412                                   High income    XD       2021
## 6413                                   High income    XD       2020
## 6414                                   High income    XD       1979
## 6415                                   High income    XD       1985
## 6416                                   High income    XD       1994
## 6417                                   High income    XD       1984
## 6418                                   High income    XD       1987
## 6419                                   High income    XD       1986
## 6420                                   High income    XD       1960
## 6421                                   High income    XD       1993
## 6422                                   High income    XD       1995
## 6423                                   High income    XD       1982
## 6424                                   High income    XD       1981
## 6425                                   High income    XD       1980
## 6426                                   High income    XD       1983
## 6427                                      Honduras    HN   HND 2022
## 6428                                      Honduras    HN   HND 2021
## 6429                                      Honduras    HN   HND 2020
## 6430                                      Honduras    HN   HND 2019
## 6431                                      Honduras    HN   HND 2018
## 6432                                      Honduras    HN   HND 2017
## 6433                                      Honduras    HN   HND 2016
## 6434                                      Honduras    HN   HND 2015
## 6435                                      Honduras    HN   HND 2014
## 6436                                      Honduras    HN   HND 2013
## 6437                                      Honduras    HN   HND 2012
## 6438                                      Honduras    HN   HND 2011
## 6439                                      Honduras    HN   HND 2010
## 6440                                      Honduras    HN   HND 2009
## 6441                                      Honduras    HN   HND 2008
## 6442                                      Honduras    HN   HND 2007
## 6443                                      Honduras    HN   HND 2006
## 6444                                      Honduras    HN   HND 2005
## 6445                                      Honduras    HN   HND 2004
## 6446                                      Honduras    HN   HND 2003
## 6447                                      Honduras    HN   HND 2002
## 6448                                      Honduras    HN   HND 2001
## 6449                                      Honduras    HN   HND 2000
## 6450                                      Honduras    HN   HND 1999
## 6451                                      Honduras    HN   HND 1998
## 6452                                      Honduras    HN   HND 1997
## 6453                                      Honduras    HN   HND 1996
## 6454                                      Honduras    HN   HND 1995
## 6455                                      Honduras    HN   HND 1994
## 6456                                      Honduras    HN   HND 1993
## 6457                                      Honduras    HN   HND 1992
## 6458                                      Honduras    HN   HND 1991
## 6459                                      Honduras    HN   HND 1990
## 6460                                      Honduras    HN   HND 1989
## 6461                                      Honduras    HN   HND 1988
## 6462                                      Honduras    HN   HND 1987
## 6463                                      Honduras    HN   HND 1986
## 6464                                      Honduras    HN   HND 1985
## 6465                                      Honduras    HN   HND 1984
## 6466                                      Honduras    HN   HND 1983
## 6467                                      Honduras    HN   HND 1982
## 6468                                      Honduras    HN   HND 1981
## 6469                                      Honduras    HN   HND 1980
## 6470                                      Honduras    HN   HND 1979
## 6471                                      Honduras    HN   HND 1978
## 6472                                      Honduras    HN   HND 1977
## 6473                                      Honduras    HN   HND 1976
## 6474                                      Honduras    HN   HND 1975
## 6475                                      Honduras    HN   HND 1974
## 6476                                      Honduras    HN   HND 1973
## 6477                                      Honduras    HN   HND 1972
## 6478                                      Honduras    HN   HND 1971
## 6479                                      Honduras    HN   HND 1970
## 6480                                      Honduras    HN   HND 1969
## 6481                                      Honduras    HN   HND 1968
## 6482                                      Honduras    HN   HND 1967
## 6483                                      Honduras    HN   HND 1966
## 6484                                      Honduras    HN   HND 1965
## 6485                                      Honduras    HN   HND 1964
## 6486                                      Honduras    HN   HND 1963
## 6487                                      Honduras    HN   HND 1962
## 6488                                      Honduras    HN   HND 1961
## 6489                                      Honduras    HN   HND 1960
## 6490                          Hong Kong SAR, China    HK   HKG 2022
## 6491                          Hong Kong SAR, China    HK   HKG 2021
## 6492                          Hong Kong SAR, China    HK   HKG 2020
## 6493                          Hong Kong SAR, China    HK   HKG 2019
## 6494                          Hong Kong SAR, China    HK   HKG 2018
## 6495                          Hong Kong SAR, China    HK   HKG 2017
## 6496                          Hong Kong SAR, China    HK   HKG 2016
## 6497                          Hong Kong SAR, China    HK   HKG 2015
## 6498                          Hong Kong SAR, China    HK   HKG 2014
## 6499                          Hong Kong SAR, China    HK   HKG 2013
## 6500                          Hong Kong SAR, China    HK   HKG 2012
## 6501                          Hong Kong SAR, China    HK   HKG 2011
## 6502                          Hong Kong SAR, China    HK   HKG 2010
## 6503                          Hong Kong SAR, China    HK   HKG 2009
## 6504                          Hong Kong SAR, China    HK   HKG 2008
## 6505                          Hong Kong SAR, China    HK   HKG 2007
## 6506                          Hong Kong SAR, China    HK   HKG 2006
## 6507                          Hong Kong SAR, China    HK   HKG 2005
## 6508                          Hong Kong SAR, China    HK   HKG 2004
## 6509                          Hong Kong SAR, China    HK   HKG 2003
## 6510                          Hong Kong SAR, China    HK   HKG 2002
## 6511                          Hong Kong SAR, China    HK   HKG 2001
## 6512                          Hong Kong SAR, China    HK   HKG 2000
## 6513                          Hong Kong SAR, China    HK   HKG 1999
## 6514                          Hong Kong SAR, China    HK   HKG 1998
## 6515                          Hong Kong SAR, China    HK   HKG 1997
## 6516                          Hong Kong SAR, China    HK   HKG 1996
## 6517                          Hong Kong SAR, China    HK   HKG 1995
## 6518                          Hong Kong SAR, China    HK   HKG 1994
## 6519                          Hong Kong SAR, China    HK   HKG 1993
## 6520                          Hong Kong SAR, China    HK   HKG 1992
## 6521                          Hong Kong SAR, China    HK   HKG 1991
## 6522                          Hong Kong SAR, China    HK   HKG 1990
## 6523                          Hong Kong SAR, China    HK   HKG 1989
## 6524                          Hong Kong SAR, China    HK   HKG 1988
## 6525                          Hong Kong SAR, China    HK   HKG 1987
## 6526                          Hong Kong SAR, China    HK   HKG 1986
## 6527                          Hong Kong SAR, China    HK   HKG 1985
## 6528                          Hong Kong SAR, China    HK   HKG 1984
## 6529                          Hong Kong SAR, China    HK   HKG 1983
## 6530                          Hong Kong SAR, China    HK   HKG 1982
## 6531                          Hong Kong SAR, China    HK   HKG 1981
## 6532                          Hong Kong SAR, China    HK   HKG 1980
## 6533                          Hong Kong SAR, China    HK   HKG 1979
## 6534                          Hong Kong SAR, China    HK   HKG 1978
## 6535                          Hong Kong SAR, China    HK   HKG 1977
## 6536                          Hong Kong SAR, China    HK   HKG 1976
## 6537                          Hong Kong SAR, China    HK   HKG 1975
## 6538                          Hong Kong SAR, China    HK   HKG 1974
## 6539                          Hong Kong SAR, China    HK   HKG 1973
## 6540                          Hong Kong SAR, China    HK   HKG 1972
## 6541                          Hong Kong SAR, China    HK   HKG 1971
## 6542                          Hong Kong SAR, China    HK   HKG 1970
## 6543                          Hong Kong SAR, China    HK   HKG 1969
## 6544                          Hong Kong SAR, China    HK   HKG 1968
## 6545                          Hong Kong SAR, China    HK   HKG 1967
## 6546                          Hong Kong SAR, China    HK   HKG 1966
## 6547                          Hong Kong SAR, China    HK   HKG 1965
## 6548                          Hong Kong SAR, China    HK   HKG 1964
## 6549                          Hong Kong SAR, China    HK   HKG 1963
## 6550                          Hong Kong SAR, China    HK   HKG 1962
## 6551                          Hong Kong SAR, China    HK   HKG 1961
## 6552                          Hong Kong SAR, China    HK   HKG 1960
## 6553                                       Hungary    HU   HUN 2022
## 6554                                       Hungary    HU   HUN 2021
## 6555                                       Hungary    HU   HUN 2020
## 6556                                       Hungary    HU   HUN 2019
## 6557                                       Hungary    HU   HUN 2018
## 6558                                       Hungary    HU   HUN 2017
## 6559                                       Hungary    HU   HUN 2016
## 6560                                       Hungary    HU   HUN 2015
## 6561                                       Hungary    HU   HUN 2014
## 6562                                       Hungary    HU   HUN 2013
## 6563                                       Hungary    HU   HUN 2012
## 6564                                       Hungary    HU   HUN 2011
## 6565                                       Hungary    HU   HUN 2010
## 6566                                       Hungary    HU   HUN 2009
## 6567                                       Hungary    HU   HUN 2008
## 6568                                       Hungary    HU   HUN 2007
## 6569                                       Hungary    HU   HUN 2006
## 6570                                       Hungary    HU   HUN 2005
## 6571                                       Hungary    HU   HUN 2004
## 6572                                       Hungary    HU   HUN 2003
## 6573                                       Hungary    HU   HUN 2002
## 6574                                       Hungary    HU   HUN 2001
## 6575                                       Hungary    HU   HUN 2000
## 6576                                       Hungary    HU   HUN 1999
## 6577                                       Hungary    HU   HUN 1998
## 6578                                       Hungary    HU   HUN 1997
## 6579                                       Hungary    HU   HUN 1996
## 6580                                       Hungary    HU   HUN 1995
## 6581                                       Hungary    HU   HUN 1994
## 6582                                       Hungary    HU   HUN 1993
## 6583                                       Hungary    HU   HUN 1992
## 6584                                       Hungary    HU   HUN 1991
## 6585                                       Hungary    HU   HUN 1990
## 6586                                       Hungary    HU   HUN 1989
## 6587                                       Hungary    HU   HUN 1988
## 6588                                       Hungary    HU   HUN 1987
## 6589                                       Hungary    HU   HUN 1986
## 6590                                       Hungary    HU   HUN 1985
## 6591                                       Hungary    HU   HUN 1984
## 6592                                       Hungary    HU   HUN 1983
## 6593                                       Hungary    HU   HUN 1982
## 6594                                       Hungary    HU   HUN 1981
## 6595                                       Hungary    HU   HUN 1980
## 6596                                       Hungary    HU   HUN 1979
## 6597                                       Hungary    HU   HUN 1978
## 6598                                       Hungary    HU   HUN 1977
## 6599                                       Hungary    HU   HUN 1976
## 6600                                       Hungary    HU   HUN 1975
## 6601                                       Hungary    HU   HUN 1974
## 6602                                       Hungary    HU   HUN 1973
## 6603                                       Hungary    HU   HUN 1972
## 6604                                       Hungary    HU   HUN 1971
## 6605                                       Hungary    HU   HUN 1970
## 6606                                       Hungary    HU   HUN 1969
## 6607                                       Hungary    HU   HUN 1968
## 6608                                       Hungary    HU   HUN 1967
## 6609                                       Hungary    HU   HUN 1966
## 6610                                       Hungary    HU   HUN 1965
## 6611                                       Hungary    HU   HUN 1964
## 6612                                       Hungary    HU   HUN 1963
## 6613                                       Hungary    HU   HUN 1962
## 6614                                       Hungary    HU   HUN 1961
## 6615                                       Hungary    HU   HUN 1960
## 6616                                     IBRD only    XF   IBD 1996
## 6617                                     IBRD only    XF   IBD 1997
## 6618                                     IBRD only    XF   IBD 1984
## 6619                                     IBRD only    XF   IBD 1995
## 6620                                     IBRD only    XF   IBD 2022
## 6621                                     IBRD only    XF   IBD 1998
## 6622                                     IBRD only    XF   IBD 1993
## 6623                                     IBRD only    XF   IBD 1983
## 6624                                     IBRD only    XF   IBD 1999
## 6625                                     IBRD only    XF   IBD 1994
## 6626                                     IBRD only    XF   IBD 1961
## 6627                                     IBRD only    XF   IBD 1992
## 6628                                     IBRD only    XF   IBD 2021
## 6629                                     IBRD only    XF   IBD 2000
## 6630                                     IBRD only    XF   IBD 1982
## 6631                                     IBRD only    XF   IBD 1960
## 6632                                     IBRD only    XF   IBD 2009
## 6633                                     IBRD only    XF   IBD 1973
## 6634                                     IBRD only    XF   IBD 1991
## 6635                                     IBRD only    XF   IBD 2020
## 6636                                     IBRD only    XF   IBD 2019
## 6637                                     IBRD only    XF   IBD 2018
## 6638                                     IBRD only    XF   IBD 1987
## 6639                                     IBRD only    XF   IBD 1986
## 6640                                     IBRD only    XF   IBD 1985
## 6641                                     IBRD only    XF   IBD 1975
## 6642                                     IBRD only    XF   IBD 1974
## 6643                                     IBRD only    XF   IBD 1972
## 6644                                     IBRD only    XF   IBD 2008
## 6645                                     IBRD only    XF   IBD 2007
## 6646                                     IBRD only    XF   IBD 2006
## 6647                                     IBRD only    XF   IBD 2017
## 6648                                     IBRD only    XF   IBD 1990
## 6649                                     IBRD only    XF   IBD 1989
## 6650                                     IBRD only    XF   IBD 1988
## 6651                                     IBRD only    XF   IBD 2012
## 6652                                     IBRD only    XF   IBD 2011
## 6653                                     IBRD only    XF   IBD 2010
## 6654                                     IBRD only    XF   IBD 1971
## 6655                                     IBRD only    XF   IBD 1970
## 6656                                     IBRD only    XF   IBD 2005
## 6657                                     IBRD only    XF   IBD 2004
## 6658                                     IBRD only    XF   IBD 2003
## 6659                                     IBRD only    XF   IBD 2002
## 6660                                     IBRD only    XF   IBD 2001
## 6661                                     IBRD only    XF   IBD 1963
## 6662                                     IBRD only    XF   IBD 1962
## 6663                                     IBRD only    XF   IBD 2016
## 6664                                     IBRD only    XF   IBD 2015
## 6665                                     IBRD only    XF   IBD 1969
## 6666                                     IBRD only    XF   IBD 1981
## 6667                                     IBRD only    XF   IBD 1976
## 6668                                     IBRD only    XF   IBD 1967
## 6669                                     IBRD only    XF   IBD 2014
## 6670                                     IBRD only    XF   IBD 2013
## 6671                                     IBRD only    XF   IBD 1968
## 6672                                     IBRD only    XF   IBD 1977
## 6673                                     IBRD only    XF   IBD 1966
## 6674                                     IBRD only    XF   IBD 1965
## 6675                                     IBRD only    XF   IBD 1964
## 6676                                     IBRD only    XF   IBD 1978
## 6677                                     IBRD only    XF   IBD 1980
## 6678                                     IBRD only    XF   IBD 1979
## 6679                              IDA & IBRD total    ZT   IBT 1975
## 6680                              IDA & IBRD total    ZT   IBT 1976
## 6681                              IDA & IBRD total    ZT   IBT 2021
## 6682                              IDA & IBRD total    ZT   IBT 1978
## 6683                              IDA & IBRD total    ZT   IBT 1977
## 6684                              IDA & IBRD total    ZT   IBT 1964
## 6685                              IDA & IBRD total    ZT   IBT 2022
## 6686                              IDA & IBRD total    ZT   IBT 2020
## 6687                              IDA & IBRD total    ZT   IBT 1965
## 6688                              IDA & IBRD total    ZT   IBT 1973
## 6689                              IDA & IBRD total    ZT   IBT 2018
## 6690                              IDA & IBRD total    ZT   IBT 2008
## 6691                              IDA & IBRD total    ZT   IBT 1974
## 6692                              IDA & IBRD total    ZT   IBT 1979
## 6693                              IDA & IBRD total    ZT   IBT 1966
## 6694                              IDA & IBRD total    ZT   IBT 2017
## 6695                              IDA & IBRD total    ZT   IBT 2007
## 6696                              IDA & IBRD total    ZT   IBT 2019
## 6697                              IDA & IBRD total    ZT   IBT 2006
## 6698                              IDA & IBRD total    ZT   IBT 2009
## 6699                              IDA & IBRD total    ZT   IBT 1994
## 6700                              IDA & IBRD total    ZT   IBT 1993
## 6701                              IDA & IBRD total    ZT   IBT 1971
## 6702                              IDA & IBRD total    ZT   IBT 2005
## 6703                              IDA & IBRD total    ZT   IBT 2004
## 6704                              IDA & IBRD total    ZT   IBT 1972
## 6705                              IDA & IBRD total    ZT   IBT 1967
## 6706                              IDA & IBRD total    ZT   IBT 1980
## 6707                              IDA & IBRD total    ZT   IBT 1982
## 6708                              IDA & IBRD total    ZT   IBT 2011
## 6709                              IDA & IBRD total    ZT   IBT 2010
## 6710                              IDA & IBRD total    ZT   IBT 1995
## 6711                              IDA & IBRD total    ZT   IBT 1963
## 6712                              IDA & IBRD total    ZT   IBT 1962
## 6713                              IDA & IBRD total    ZT   IBT 1961
## 6714                              IDA & IBRD total    ZT   IBT 2003
## 6715                              IDA & IBRD total    ZT   IBT 1970
## 6716                              IDA & IBRD total    ZT   IBT 1969
## 6717                              IDA & IBRD total    ZT   IBT 1968
## 6718                              IDA & IBRD total    ZT   IBT 1981
## 6719                              IDA & IBRD total    ZT   IBT 2013
## 6720                              IDA & IBRD total    ZT   IBT 2012
## 6721                              IDA & IBRD total    ZT   IBT 1997
## 6722                              IDA & IBRD total    ZT   IBT 1996
## 6723                              IDA & IBRD total    ZT   IBT 1989
## 6724                              IDA & IBRD total    ZT   IBT 1992
## 6725                              IDA & IBRD total    ZT   IBT 1991
## 6726                              IDA & IBRD total    ZT   IBT 1990
## 6727                              IDA & IBRD total    ZT   IBT 2014
## 6728                              IDA & IBRD total    ZT   IBT 1988
## 6729                              IDA & IBRD total    ZT   IBT 2016
## 6730                              IDA & IBRD total    ZT   IBT 2015
## 6731                              IDA & IBRD total    ZT   IBT 1986
## 6732                              IDA & IBRD total    ZT   IBT 1999
## 6733                              IDA & IBRD total    ZT   IBT 1998
## 6734                              IDA & IBRD total    ZT   IBT 1987
## 6735                              IDA & IBRD total    ZT   IBT 1985
## 6736                              IDA & IBRD total    ZT   IBT 1960
## 6737                              IDA & IBRD total    ZT   IBT 1983
## 6738                              IDA & IBRD total    ZT   IBT 2002
## 6739                              IDA & IBRD total    ZT   IBT 1984
## 6740                              IDA & IBRD total    ZT   IBT 2000
## 6741                              IDA & IBRD total    ZT   IBT 2001
## 6742                                     IDA blend    XH   IDB 1999
## 6743                                     IDA blend    XH   IDB 2000
## 6744                                     IDA blend    XH   IDB 1996
## 6745                                     IDA blend    XH   IDB 1986
## 6746                                     IDA blend    XH   IDB 2001
## 6747                                     IDA blend    XH   IDB 2002
## 6748                                     IDA blend    XH   IDB 1995
## 6749                                     IDA blend    XH   IDB 1998
## 6750                                     IDA blend    XH   IDB 1997
## 6751                                     IDA blend    XH   IDB 1985
## 6752                                     IDA blend    XH   IDB 1961
## 6753                                     IDA blend    XH   IDB 1960
## 6754                                     IDA blend    XH   IDB 2012
## 6755                                     IDA blend    XH   IDB 2022
## 6756                                     IDA blend    XH   IDB 1984
## 6757                                     IDA blend    XH   IDB 1983
## 6758                                     IDA blend    XH   IDB 1994
## 6759                                     IDA blend    XH   IDB 1990
## 6760                                     IDA blend    XH   IDB 1989
## 6761                                     IDA blend    XH   IDB 1988
## 6762                                     IDA blend    XH   IDB 1987
## 6763                                     IDA blend    XH   IDB 1975
## 6764                                     IDA blend    XH   IDB 1973
## 6765                                     IDA blend    XH   IDB 2011
## 6766                                     IDA blend    XH   IDB 2010
## 6767                                     IDA blend    XH   IDB 2009
## 6768                                     IDA blend    XH   IDB 2008
## 6769                                     IDA blend    XH   IDB 1993
## 6770                                     IDA blend    XH   IDB 1992
## 6771                                     IDA blend    XH   IDB 1991
## 6772                                     IDA blend    XH   IDB 2016
## 6773                                     IDA blend    XH   IDB 2015
## 6774                                     IDA blend    XH   IDB 2014
## 6775                                     IDA blend    XH   IDB 2013
## 6776                                     IDA blend    XH   IDB 1971
## 6777                                     IDA blend    XH   IDB 1974
## 6778                                     IDA blend    XH   IDB 2007
## 6779                                     IDA blend    XH   IDB 1972
## 6780                                     IDA blend    XH   IDB 2005
## 6781                                     IDA blend    XH   IDB 1970
## 6782                                     IDA blend    XH   IDB 2003
## 6783                                     IDA blend    XH   IDB 2006
## 6784                                     IDA blend    XH   IDB 1976
## 6785                                     IDA blend    XH   IDB 2004
## 6786                                     IDA blend    XH   IDB 2019
## 6787                                     IDA blend    XH   IDB 1962
## 6788                                     IDA blend    XH   IDB 2021
## 6789                                     IDA blend    XH   IDB 2020
## 6790                                     IDA blend    XH   IDB 1967
## 6791                                     IDA blend    XH   IDB 1982
## 6792                                     IDA blend    XH   IDB 2017
## 6793                                     IDA blend    XH   IDB 1963
## 6794                                     IDA blend    XH   IDB 1977
## 6795                                     IDA blend    XH   IDB 2018
## 6796                                     IDA blend    XH   IDB 1969
## 6797                                     IDA blend    XH   IDB 1968
## 6798                                     IDA blend    XH   IDB 1978
## 6799                                     IDA blend    XH   IDB 1966
## 6800                                     IDA blend    XH   IDB 1965
## 6801                                     IDA blend    XH   IDB 1964
## 6802                                     IDA blend    XH   IDB 1981
## 6803                                     IDA blend    XH   IDB 1980
## 6804                                     IDA blend    XH   IDB 1979
## 6805                                      IDA only    XI   IDX 1979
## 6806                                      IDA only    XI   IDX 1980
## 6807                                      IDA only    XI   IDX 2021
## 6808                                      IDA only    XI   IDX 1981
## 6809                                      IDA only    XI   IDX 1968
## 6810                                      IDA only    XI   IDX 1976
## 6811                                      IDA only    XI   IDX 2022
## 6812                                      IDA only    XI   IDX 1978
## 6813                                      IDA only    XI   IDX 1977
## 6814                                      IDA only    XI   IDX 1982
## 6815                                      IDA only    XI   IDX 2018
## 6816                                      IDA only    XI   IDX 2008
## 6817                                      IDA only    XI   IDX 2020
## 6818                                      IDA only    XI   IDX 2019
## 6819                                      IDA only    XI   IDX 1969
## 6820                                      IDA only    XI   IDX 2009
## 6821                                      IDA only    XI   IDX 1995
## 6822                                      IDA only    XI   IDX 2007
## 6823                                      IDA only    XI   IDX 2006
## 6824                                      IDA only    XI   IDX 2005
## 6825                                      IDA only    XI   IDX 2017
## 6826                                      IDA only    XI   IDX 1975
## 6827                                      IDA only    XI   IDX 1983
## 6828                                      IDA only    XI   IDX 1984
## 6829                                      IDA only    XI   IDX 2011
## 6830                                      IDA only    XI   IDX 2010
## 6831                                      IDA only    XI   IDX 1996
## 6832                                      IDA only    XI   IDX 1994
## 6833                                      IDA only    XI   IDX 1967
## 6834                                      IDA only    XI   IDX 1966
## 6835                                      IDA only    XI   IDX 2004
## 6836                                      IDA only    XI   IDX 1974
## 6837                                      IDA only    XI   IDX 1973
## 6838                                      IDA only    XI   IDX 1972
## 6839                                      IDA only    XI   IDX 1971
## 6840                                      IDA only    XI   IDX 1970
## 6841                                      IDA only    XI   IDX 2012
## 6842                                      IDA only    XI   IDX 1998
## 6843                                      IDA only    XI   IDX 1997
## 6844                                      IDA only    XI   IDX 1991
## 6845                                      IDA only    XI   IDX 1990
## 6846                                      IDA only    XI   IDX 1993
## 6847                                      IDA only    XI   IDX 1992
## 6848                                      IDA only    XI   IDX 2014
## 6849                                      IDA only    XI   IDX 2013
## 6850                                      IDA only    XI   IDX 2016
## 6851                                      IDA only    XI   IDX 2015
## 6852                                      IDA only    XI   IDX 1988
## 6853                                      IDA only    XI   IDX 1987
## 6854                                      IDA only    XI   IDX 1999
## 6855                                      IDA only    XI   IDX 2000
## 6856                                      IDA only    XI   IDX 1964
## 6857                                      IDA only    XI   IDX 1963
## 6858                                      IDA only    XI   IDX 1965
## 6859                                      IDA only    XI   IDX 1989
## 6860                                      IDA only    XI   IDX 1960
## 6861                                      IDA only    XI   IDX 2001
## 6862                                      IDA only    XI   IDX 1986
## 6863                                      IDA only    XI   IDX 1985
## 6864                                      IDA only    XI   IDX 2002
## 6865                                      IDA only    XI   IDX 1962
## 6866                                      IDA only    XI   IDX 1961
## 6867                                      IDA only    XI   IDX 2003
## 6868                                     IDA total    XG   IDA 2004
## 6869                                     IDA total    XG   IDA 2005
## 6870                                     IDA total    XG   IDA 1992
## 6871                                     IDA total    XG   IDA 1991
## 6872                                     IDA total    XG   IDA 2006
## 6873                                     IDA total    XG   IDA 2001
## 6874                                     IDA total    XG   IDA 1965
## 6875                                     IDA total    XG   IDA 2003
## 6876                                     IDA total    XG   IDA 2002
## 6877                                     IDA total    XG   IDA 1966
## 6878                                     IDA total    XG   IDA 1961
## 6879                                     IDA total    XG   IDA 1964
## 6880                                     IDA total    XG   IDA 2007
## 6881                                     IDA total    XG   IDA 1962
## 6882                                     IDA total    XG   IDA 1994
## 6883                                     IDA total    XG   IDA 2000
## 6884                                     IDA total    XG   IDA 1963
## 6885                                     IDA total    XG   IDA 2008
## 6886                                     IDA total    XG   IDA 1990
## 6887                                     IDA total    XG   IDA 1993
## 6888                                     IDA total    XG   IDA 2018
## 6889                                     IDA total    XG   IDA 1979
## 6890                                     IDA total    XG   IDA 1999
## 6891                                     IDA total    XG   IDA 1989
## 6892                                     IDA total    XG   IDA 1960
## 6893                                     IDA total    XG   IDA 2014
## 6894                                     IDA total    XG   IDA 1995
## 6895                                     IDA total    XG   IDA 2020
## 6896                                     IDA total    XG   IDA 2019
## 6897                                     IDA total    XG   IDA 1981
## 6898                                     IDA total    XG   IDA 1980
## 6899                                     IDA total    XG   IDA 2017
## 6900                                     IDA total    XG   IDA 2016
## 6901                                     IDA total    XG   IDA 2015
## 6902                                     IDA total    XG   IDA 1976
## 6903                                     IDA total    XG   IDA 2013
## 6904                                     IDA total    XG   IDA 1998
## 6905                                     IDA total    XG   IDA 1997
## 6906                                     IDA total    XG   IDA 1996
## 6907                                     IDA total    XG   IDA 2021
## 6908                                     IDA total    XG   IDA 1967
## 6909                                     IDA total    XG   IDA 1968
## 6910                                     IDA total    XG   IDA 1977
## 6911                                     IDA total    XG   IDA 2010
## 6912                                     IDA total    XG   IDA 1988
## 6913                                     IDA total    XG   IDA 1978
## 6914                                     IDA total    XG   IDA 2011
## 6915                                     IDA total    XG   IDA 1973
## 6916                                     IDA total    XG   IDA 2009
## 6917                                     IDA total    XG   IDA 2012
## 6918                                     IDA total    XG   IDA 1982
## 6919                                     IDA total    XG   IDA 1969
## 6920                                     IDA total    XG   IDA 1972
## 6921                                     IDA total    XG   IDA 2022
## 6922                                     IDA total    XG   IDA 1974
## 6923                                     IDA total    XG   IDA 1984
## 6924                                     IDA total    XG   IDA 1987
## 6925                                     IDA total    XG   IDA 1975
## 6926                                     IDA total    XG   IDA 1970
## 6927                                     IDA total    XG   IDA 1983
## 6928                                     IDA total    XG   IDA 1971
## 6929                                     IDA total    XG   IDA 1985
## 6930                                     IDA total    XG   IDA 1986
## 6931                                       Iceland    IS   ISL 2022
## 6932                                       Iceland    IS   ISL 2021
## 6933                                       Iceland    IS   ISL 2020
## 6934                                       Iceland    IS   ISL 2019
## 6935                                       Iceland    IS   ISL 2018
## 6936                                       Iceland    IS   ISL 2017
## 6937                                       Iceland    IS   ISL 2016
## 6938                                       Iceland    IS   ISL 2015
## 6939                                       Iceland    IS   ISL 2014
## 6940                                       Iceland    IS   ISL 2013
## 6941                                       Iceland    IS   ISL 2012
## 6942                                       Iceland    IS   ISL 2011
## 6943                                       Iceland    IS   ISL 2010
## 6944                                       Iceland    IS   ISL 2009
## 6945                                       Iceland    IS   ISL 2008
## 6946                                       Iceland    IS   ISL 2007
## 6947                                       Iceland    IS   ISL 2006
## 6948                                       Iceland    IS   ISL 2005
## 6949                                       Iceland    IS   ISL 2004
## 6950                                       Iceland    IS   ISL 2003
## 6951                                       Iceland    IS   ISL 2002
## 6952                                       Iceland    IS   ISL 2001
## 6953                                       Iceland    IS   ISL 2000
## 6954                                       Iceland    IS   ISL 1999
## 6955                                       Iceland    IS   ISL 1998
## 6956                                       Iceland    IS   ISL 1997
## 6957                                       Iceland    IS   ISL 1996
## 6958                                       Iceland    IS   ISL 1995
## 6959                                       Iceland    IS   ISL 1994
## 6960                                       Iceland    IS   ISL 1993
## 6961                                       Iceland    IS   ISL 1992
## 6962                                       Iceland    IS   ISL 1991
## 6963                                       Iceland    IS   ISL 1990
## 6964                                       Iceland    IS   ISL 1989
## 6965                                       Iceland    IS   ISL 1988
## 6966                                       Iceland    IS   ISL 1987
## 6967                                       Iceland    IS   ISL 1986
## 6968                                       Iceland    IS   ISL 1985
## 6969                                       Iceland    IS   ISL 1984
## 6970                                       Iceland    IS   ISL 1983
## 6971                                       Iceland    IS   ISL 1982
## 6972                                       Iceland    IS   ISL 1981
## 6973                                       Iceland    IS   ISL 1980
## 6974                                       Iceland    IS   ISL 1979
## 6975                                       Iceland    IS   ISL 1978
## 6976                                       Iceland    IS   ISL 1977
## 6977                                       Iceland    IS   ISL 1976
## 6978                                       Iceland    IS   ISL 1975
## 6979                                       Iceland    IS   ISL 1974
## 6980                                       Iceland    IS   ISL 1973
## 6981                                       Iceland    IS   ISL 1972
## 6982                                       Iceland    IS   ISL 1971
## 6983                                       Iceland    IS   ISL 1970
## 6984                                       Iceland    IS   ISL 1969
## 6985                                       Iceland    IS   ISL 1968
## 6986                                       Iceland    IS   ISL 1967
## 6987                                       Iceland    IS   ISL 1966
## 6988                                       Iceland    IS   ISL 1965
## 6989                                       Iceland    IS   ISL 1964
## 6990                                       Iceland    IS   ISL 1963
## 6991                                       Iceland    IS   ISL 1962
## 6992                                       Iceland    IS   ISL 1961
## 6993                                       Iceland    IS   ISL 1960
## 6994                                         India    IN   IND 2022
## 6995                                         India    IN   IND 2021
## 6996                                         India    IN   IND 2020
## 6997                                         India    IN   IND 2019
## 6998                                         India    IN   IND 2018
## 6999                                         India    IN   IND 2017
## 7000                                         India    IN   IND 2016
## 7001                                         India    IN   IND 2015
## 7002                                         India    IN   IND 2014
## 7003                                         India    IN   IND 2013
## 7004                                         India    IN   IND 2012
## 7005                                         India    IN   IND 2011
## 7006                                         India    IN   IND 2010
## 7007                                         India    IN   IND 2009
## 7008                                         India    IN   IND 2008
## 7009                                         India    IN   IND 2007
## 7010                                         India    IN   IND 2006
## 7011                                         India    IN   IND 2005
## 7012                                         India    IN   IND 2004
## 7013                                         India    IN   IND 2003
## 7014                                         India    IN   IND 2002
## 7015                                         India    IN   IND 2001
## 7016                                         India    IN   IND 2000
## 7017                                         India    IN   IND 1999
## 7018                                         India    IN   IND 1998
## 7019                                         India    IN   IND 1997
## 7020                                         India    IN   IND 1996
## 7021                                         India    IN   IND 1995
## 7022                                         India    IN   IND 1994
## 7023                                         India    IN   IND 1993
## 7024                                         India    IN   IND 1992
## 7025                                         India    IN   IND 1991
## 7026                                         India    IN   IND 1990
## 7027                                         India    IN   IND 1989
## 7028                                         India    IN   IND 1988
## 7029                                         India    IN   IND 1987
## 7030                                         India    IN   IND 1986
## 7031                                         India    IN   IND 1985
## 7032                                         India    IN   IND 1984
## 7033                                         India    IN   IND 1983
## 7034                                         India    IN   IND 1982
## 7035                                         India    IN   IND 1981
## 7036                                         India    IN   IND 1980
## 7037                                         India    IN   IND 1979
## 7038                                         India    IN   IND 1978
## 7039                                         India    IN   IND 1977
## 7040                                         India    IN   IND 1976
## 7041                                         India    IN   IND 1975
## 7042                                         India    IN   IND 1974
## 7043                                         India    IN   IND 1973
## 7044                                         India    IN   IND 1972
## 7045                                         India    IN   IND 1971
## 7046                                         India    IN   IND 1970
## 7047                                         India    IN   IND 1969
## 7048                                         India    IN   IND 1968
## 7049                                         India    IN   IND 1967
## 7050                                         India    IN   IND 1966
## 7051                                         India    IN   IND 1965
## 7052                                         India    IN   IND 1964
## 7053                                         India    IN   IND 1963
## 7054                                         India    IN   IND 1962
## 7055                                         India    IN   IND 1961
## 7056                                         India    IN   IND 1960
## 7057                                     Indonesia    ID   IDN 2022
## 7058                                     Indonesia    ID   IDN 2021
## 7059                                     Indonesia    ID   IDN 2020
## 7060                                     Indonesia    ID   IDN 2019
## 7061                                     Indonesia    ID   IDN 2018
## 7062                                     Indonesia    ID   IDN 2017
## 7063                                     Indonesia    ID   IDN 2016
## 7064                                     Indonesia    ID   IDN 2015
## 7065                                     Indonesia    ID   IDN 2014
## 7066                                     Indonesia    ID   IDN 2013
## 7067                                     Indonesia    ID   IDN 2012
## 7068                                     Indonesia    ID   IDN 2011
## 7069                                     Indonesia    ID   IDN 2010
## 7070                                     Indonesia    ID   IDN 2009
## 7071                                     Indonesia    ID   IDN 2008
## 7072                                     Indonesia    ID   IDN 2007
## 7073                                     Indonesia    ID   IDN 2006
## 7074                                     Indonesia    ID   IDN 2005
## 7075                                     Indonesia    ID   IDN 2004
## 7076                                     Indonesia    ID   IDN 2003
## 7077                                     Indonesia    ID   IDN 2002
## 7078                                     Indonesia    ID   IDN 2001
## 7079                                     Indonesia    ID   IDN 2000
## 7080                                     Indonesia    ID   IDN 1999
## 7081                                     Indonesia    ID   IDN 1998
## 7082                                     Indonesia    ID   IDN 1997
## 7083                                     Indonesia    ID   IDN 1996
## 7084                                     Indonesia    ID   IDN 1995
## 7085                                     Indonesia    ID   IDN 1994
## 7086                                     Indonesia    ID   IDN 1993
## 7087                                     Indonesia    ID   IDN 1992
## 7088                                     Indonesia    ID   IDN 1991
## 7089                                     Indonesia    ID   IDN 1990
## 7090                                     Indonesia    ID   IDN 1989
## 7091                                     Indonesia    ID   IDN 1988
## 7092                                     Indonesia    ID   IDN 1987
## 7093                                     Indonesia    ID   IDN 1986
## 7094                                     Indonesia    ID   IDN 1985
## 7095                                     Indonesia    ID   IDN 1984
## 7096                                     Indonesia    ID   IDN 1983
## 7097                                     Indonesia    ID   IDN 1982
## 7098                                     Indonesia    ID   IDN 1981
## 7099                                     Indonesia    ID   IDN 1980
## 7100                                     Indonesia    ID   IDN 1979
## 7101                                     Indonesia    ID   IDN 1978
## 7102                                     Indonesia    ID   IDN 1977
## 7103                                     Indonesia    ID   IDN 1976
## 7104                                     Indonesia    ID   IDN 1975
## 7105                                     Indonesia    ID   IDN 1974
## 7106                                     Indonesia    ID   IDN 1973
## 7107                                     Indonesia    ID   IDN 1972
## 7108                                     Indonesia    ID   IDN 1971
## 7109                                     Indonesia    ID   IDN 1970
## 7110                                     Indonesia    ID   IDN 1969
## 7111                                     Indonesia    ID   IDN 1968
## 7112                                     Indonesia    ID   IDN 1967
## 7113                                     Indonesia    ID   IDN 1966
## 7114                                     Indonesia    ID   IDN 1965
## 7115                                     Indonesia    ID   IDN 1964
## 7116                                     Indonesia    ID   IDN 1963
## 7117                                     Indonesia    ID   IDN 1962
## 7118                                     Indonesia    ID   IDN 1961
## 7119                                     Indonesia    ID   IDN 1960
## 7120                            Iran, Islamic Rep.    IR   IRN 2022
## 7121                            Iran, Islamic Rep.    IR   IRN 2021
## 7122                            Iran, Islamic Rep.    IR   IRN 2020
## 7123                            Iran, Islamic Rep.    IR   IRN 2019
## 7124                            Iran, Islamic Rep.    IR   IRN 2018
## 7125                            Iran, Islamic Rep.    IR   IRN 2017
## 7126                            Iran, Islamic Rep.    IR   IRN 2016
## 7127                            Iran, Islamic Rep.    IR   IRN 2015
## 7128                            Iran, Islamic Rep.    IR   IRN 2014
## 7129                            Iran, Islamic Rep.    IR   IRN 2013
## 7130                            Iran, Islamic Rep.    IR   IRN 2012
## 7131                            Iran, Islamic Rep.    IR   IRN 2011
## 7132                            Iran, Islamic Rep.    IR   IRN 2010
## 7133                            Iran, Islamic Rep.    IR   IRN 2009
## 7134                            Iran, Islamic Rep.    IR   IRN 2008
## 7135                            Iran, Islamic Rep.    IR   IRN 2007
## 7136                            Iran, Islamic Rep.    IR   IRN 2006
## 7137                            Iran, Islamic Rep.    IR   IRN 2005
## 7138                            Iran, Islamic Rep.    IR   IRN 2004
## 7139                            Iran, Islamic Rep.    IR   IRN 2003
## 7140                            Iran, Islamic Rep.    IR   IRN 2002
## 7141                            Iran, Islamic Rep.    IR   IRN 2001
## 7142                            Iran, Islamic Rep.    IR   IRN 2000
## 7143                            Iran, Islamic Rep.    IR   IRN 1999
## 7144                            Iran, Islamic Rep.    IR   IRN 1998
## 7145                            Iran, Islamic Rep.    IR   IRN 1997
## 7146                            Iran, Islamic Rep.    IR   IRN 1996
## 7147                            Iran, Islamic Rep.    IR   IRN 1995
## 7148                            Iran, Islamic Rep.    IR   IRN 1994
## 7149                            Iran, Islamic Rep.    IR   IRN 1993
## 7150                            Iran, Islamic Rep.    IR   IRN 1992
## 7151                            Iran, Islamic Rep.    IR   IRN 1991
## 7152                            Iran, Islamic Rep.    IR   IRN 1990
## 7153                            Iran, Islamic Rep.    IR   IRN 1989
## 7154                            Iran, Islamic Rep.    IR   IRN 1988
## 7155                            Iran, Islamic Rep.    IR   IRN 1987
## 7156                            Iran, Islamic Rep.    IR   IRN 1986
## 7157                            Iran, Islamic Rep.    IR   IRN 1985
## 7158                            Iran, Islamic Rep.    IR   IRN 1984
## 7159                            Iran, Islamic Rep.    IR   IRN 1983
## 7160                            Iran, Islamic Rep.    IR   IRN 1982
## 7161                            Iran, Islamic Rep.    IR   IRN 1981
## 7162                            Iran, Islamic Rep.    IR   IRN 1980
## 7163                            Iran, Islamic Rep.    IR   IRN 1979
## 7164                            Iran, Islamic Rep.    IR   IRN 1978
## 7165                            Iran, Islamic Rep.    IR   IRN 1977
## 7166                            Iran, Islamic Rep.    IR   IRN 1976
## 7167                            Iran, Islamic Rep.    IR   IRN 1975
## 7168                            Iran, Islamic Rep.    IR   IRN 1974
## 7169                            Iran, Islamic Rep.    IR   IRN 1973
## 7170                            Iran, Islamic Rep.    IR   IRN 1972
## 7171                            Iran, Islamic Rep.    IR   IRN 1971
## 7172                            Iran, Islamic Rep.    IR   IRN 1970
## 7173                            Iran, Islamic Rep.    IR   IRN 1969
## 7174                            Iran, Islamic Rep.    IR   IRN 1968
## 7175                            Iran, Islamic Rep.    IR   IRN 1967
## 7176                            Iran, Islamic Rep.    IR   IRN 1966
## 7177                            Iran, Islamic Rep.    IR   IRN 1965
## 7178                            Iran, Islamic Rep.    IR   IRN 1964
## 7179                            Iran, Islamic Rep.    IR   IRN 1963
## 7180                            Iran, Islamic Rep.    IR   IRN 1962
## 7181                            Iran, Islamic Rep.    IR   IRN 1961
## 7182                            Iran, Islamic Rep.    IR   IRN 1960
## 7183                                          Iraq    IQ   IRQ 2022
## 7184                                          Iraq    IQ   IRQ 2021
## 7185                                          Iraq    IQ   IRQ 2020
## 7186                                          Iraq    IQ   IRQ 2019
## 7187                                          Iraq    IQ   IRQ 2018
## 7188                                          Iraq    IQ   IRQ 2017
## 7189                                          Iraq    IQ   IRQ 2016
## 7190                                          Iraq    IQ   IRQ 2015
## 7191                                          Iraq    IQ   IRQ 2014
## 7192                                          Iraq    IQ   IRQ 2013
## 7193                                          Iraq    IQ   IRQ 2012
## 7194                                          Iraq    IQ   IRQ 2011
## 7195                                          Iraq    IQ   IRQ 2010
## 7196                                          Iraq    IQ   IRQ 2009
## 7197                                          Iraq    IQ   IRQ 2008
## 7198                                          Iraq    IQ   IRQ 2007
## 7199                                          Iraq    IQ   IRQ 2006
## 7200                                          Iraq    IQ   IRQ 2005
## 7201                                          Iraq    IQ   IRQ 2004
## 7202                                          Iraq    IQ   IRQ 2003
## 7203                                          Iraq    IQ   IRQ 2002
## 7204                                          Iraq    IQ   IRQ 2001
## 7205                                          Iraq    IQ   IRQ 2000
## 7206                                          Iraq    IQ   IRQ 1999
## 7207                                          Iraq    IQ   IRQ 1998
## 7208                                          Iraq    IQ   IRQ 1997
## 7209                                          Iraq    IQ   IRQ 1996
## 7210                                          Iraq    IQ   IRQ 1995
## 7211                                          Iraq    IQ   IRQ 1994
## 7212                                          Iraq    IQ   IRQ 1993
## 7213                                          Iraq    IQ   IRQ 1992
## 7214                                          Iraq    IQ   IRQ 1991
## 7215                                          Iraq    IQ   IRQ 1990
## 7216                                          Iraq    IQ   IRQ 1989
## 7217                                          Iraq    IQ   IRQ 1988
## 7218                                          Iraq    IQ   IRQ 1987
## 7219                                          Iraq    IQ   IRQ 1986
## 7220                                          Iraq    IQ   IRQ 1985
## 7221                                          Iraq    IQ   IRQ 1984
## 7222                                          Iraq    IQ   IRQ 1983
## 7223                                          Iraq    IQ   IRQ 1982
## 7224                                          Iraq    IQ   IRQ 1981
## 7225                                          Iraq    IQ   IRQ 1980
## 7226                                          Iraq    IQ   IRQ 1979
## 7227                                          Iraq    IQ   IRQ 1978
## 7228                                          Iraq    IQ   IRQ 1977
## 7229                                          Iraq    IQ   IRQ 1976
## 7230                                          Iraq    IQ   IRQ 1975
## 7231                                          Iraq    IQ   IRQ 1974
## 7232                                          Iraq    IQ   IRQ 1973
## 7233                                          Iraq    IQ   IRQ 1972
## 7234                                          Iraq    IQ   IRQ 1971
## 7235                                          Iraq    IQ   IRQ 1970
## 7236                                          Iraq    IQ   IRQ 1969
## 7237                                          Iraq    IQ   IRQ 1968
## 7238                                          Iraq    IQ   IRQ 1967
## 7239                                          Iraq    IQ   IRQ 1966
## 7240                                          Iraq    IQ   IRQ 1965
## 7241                                          Iraq    IQ   IRQ 1964
## 7242                                          Iraq    IQ   IRQ 1963
## 7243                                          Iraq    IQ   IRQ 1962
## 7244                                          Iraq    IQ   IRQ 1961
## 7245                                          Iraq    IQ   IRQ 1960
## 7246                                       Ireland    IE   IRL 2022
## 7247                                       Ireland    IE   IRL 2021
## 7248                                       Ireland    IE   IRL 2020
## 7249                                       Ireland    IE   IRL 2019
## 7250                                       Ireland    IE   IRL 2018
## 7251                                       Ireland    IE   IRL 2017
## 7252                                       Ireland    IE   IRL 2016
## 7253                                       Ireland    IE   IRL 2015
## 7254                                       Ireland    IE   IRL 2014
## 7255                                       Ireland    IE   IRL 2013
## 7256                                       Ireland    IE   IRL 2012
## 7257                                       Ireland    IE   IRL 2011
## 7258                                       Ireland    IE   IRL 2010
## 7259                                       Ireland    IE   IRL 2009
## 7260                                       Ireland    IE   IRL 2008
## 7261                                       Ireland    IE   IRL 2007
## 7262                                       Ireland    IE   IRL 2006
## 7263                                       Ireland    IE   IRL 2005
## 7264                                       Ireland    IE   IRL 2004
## 7265                                       Ireland    IE   IRL 2003
## 7266                                       Ireland    IE   IRL 2002
## 7267                                       Ireland    IE   IRL 2001
## 7268                                       Ireland    IE   IRL 2000
## 7269                                       Ireland    IE   IRL 1999
## 7270                                       Ireland    IE   IRL 1998
## 7271                                       Ireland    IE   IRL 1997
## 7272                                       Ireland    IE   IRL 1996
## 7273                                       Ireland    IE   IRL 1995
## 7274                                       Ireland    IE   IRL 1994
## 7275                                       Ireland    IE   IRL 1993
## 7276                                       Ireland    IE   IRL 1992
## 7277                                       Ireland    IE   IRL 1991
## 7278                                       Ireland    IE   IRL 1990
## 7279                                       Ireland    IE   IRL 1989
## 7280                                       Ireland    IE   IRL 1988
## 7281                                       Ireland    IE   IRL 1987
## 7282                                       Ireland    IE   IRL 1986
## 7283                                       Ireland    IE   IRL 1985
## 7284                                       Ireland    IE   IRL 1984
## 7285                                       Ireland    IE   IRL 1983
## 7286                                       Ireland    IE   IRL 1982
## 7287                                       Ireland    IE   IRL 1981
## 7288                                       Ireland    IE   IRL 1980
## 7289                                       Ireland    IE   IRL 1979
## 7290                                       Ireland    IE   IRL 1978
## 7291                                       Ireland    IE   IRL 1977
## 7292                                       Ireland    IE   IRL 1976
## 7293                                       Ireland    IE   IRL 1975
## 7294                                       Ireland    IE   IRL 1974
## 7295                                       Ireland    IE   IRL 1973
## 7296                                       Ireland    IE   IRL 1972
## 7297                                       Ireland    IE   IRL 1971
## 7298                                       Ireland    IE   IRL 1970
## 7299                                       Ireland    IE   IRL 1969
## 7300                                       Ireland    IE   IRL 1968
## 7301                                       Ireland    IE   IRL 1967
## 7302                                       Ireland    IE   IRL 1966
## 7303                                       Ireland    IE   IRL 1965
## 7304                                       Ireland    IE   IRL 1964
## 7305                                       Ireland    IE   IRL 1963
## 7306                                       Ireland    IE   IRL 1962
## 7307                                       Ireland    IE   IRL 1961
## 7308                                       Ireland    IE   IRL 1960
## 7309                                   Isle of Man    IM   IMN 2022
## 7310                                   Isle of Man    IM   IMN 2021
## 7311                                   Isle of Man    IM   IMN 2020
## 7312                                   Isle of Man    IM   IMN 2019
## 7313                                   Isle of Man    IM   IMN 2018
## 7314                                   Isle of Man    IM   IMN 2017
## 7315                                   Isle of Man    IM   IMN 2016
## 7316                                   Isle of Man    IM   IMN 2015
## 7317                                   Isle of Man    IM   IMN 2014
## 7318                                   Isle of Man    IM   IMN 2013
## 7319                                   Isle of Man    IM   IMN 2012
## 7320                                   Isle of Man    IM   IMN 2011
## 7321                                   Isle of Man    IM   IMN 2010
## 7322                                   Isle of Man    IM   IMN 2009
## 7323                                   Isle of Man    IM   IMN 2008
## 7324                                   Isle of Man    IM   IMN 2007
## 7325                                   Isle of Man    IM   IMN 2006
## 7326                                   Isle of Man    IM   IMN 2005
## 7327                                   Isle of Man    IM   IMN 2004
## 7328                                   Isle of Man    IM   IMN 2003
## 7329                                   Isle of Man    IM   IMN 2002
## 7330                                   Isle of Man    IM   IMN 2001
## 7331                                   Isle of Man    IM   IMN 2000
## 7332                                   Isle of Man    IM   IMN 1999
## 7333                                   Isle of Man    IM   IMN 1998
## 7334                                   Isle of Man    IM   IMN 1997
## 7335                                   Isle of Man    IM   IMN 1996
## 7336                                   Isle of Man    IM   IMN 1995
## 7337                                   Isle of Man    IM   IMN 1994
## 7338                                   Isle of Man    IM   IMN 1993
## 7339                                   Isle of Man    IM   IMN 1992
## 7340                                   Isle of Man    IM   IMN 1991
## 7341                                   Isle of Man    IM   IMN 1990
## 7342                                   Isle of Man    IM   IMN 1989
## 7343                                   Isle of Man    IM   IMN 1988
## 7344                                   Isle of Man    IM   IMN 1987
## 7345                                   Isle of Man    IM   IMN 1986
## 7346                                   Isle of Man    IM   IMN 1985
## 7347                                   Isle of Man    IM   IMN 1984
## 7348                                   Isle of Man    IM   IMN 1983
## 7349                                   Isle of Man    IM   IMN 1982
## 7350                                   Isle of Man    IM   IMN 1981
## 7351                                   Isle of Man    IM   IMN 1980
## 7352                                   Isle of Man    IM   IMN 1979
## 7353                                   Isle of Man    IM   IMN 1978
## 7354                                   Isle of Man    IM   IMN 1977
## 7355                                   Isle of Man    IM   IMN 1976
## 7356                                   Isle of Man    IM   IMN 1975
## 7357                                   Isle of Man    IM   IMN 1974
## 7358                                   Isle of Man    IM   IMN 1973
## 7359                                   Isle of Man    IM   IMN 1972
## 7360                                   Isle of Man    IM   IMN 1971
## 7361                                   Isle of Man    IM   IMN 1970
## 7362                                   Isle of Man    IM   IMN 1969
## 7363                                   Isle of Man    IM   IMN 1968
## 7364                                   Isle of Man    IM   IMN 1967
## 7365                                   Isle of Man    IM   IMN 1966
## 7366                                   Isle of Man    IM   IMN 1965
## 7367                                   Isle of Man    IM   IMN 1964
## 7368                                   Isle of Man    IM   IMN 1963
## 7369                                   Isle of Man    IM   IMN 1962
## 7370                                   Isle of Man    IM   IMN 1961
## 7371                                   Isle of Man    IM   IMN 1960
## 7372                                        Israel    IL   ISR 2022
## 7373                                        Israel    IL   ISR 2021
## 7374                                        Israel    IL   ISR 2020
## 7375                                        Israel    IL   ISR 2019
## 7376                                        Israel    IL   ISR 2018
## 7377                                        Israel    IL   ISR 2017
## 7378                                        Israel    IL   ISR 2016
## 7379                                        Israel    IL   ISR 2015
## 7380                                        Israel    IL   ISR 2014
## 7381                                        Israel    IL   ISR 2013
## 7382                                        Israel    IL   ISR 2012
## 7383                                        Israel    IL   ISR 2011
## 7384                                        Israel    IL   ISR 2010
## 7385                                        Israel    IL   ISR 2009
## 7386                                        Israel    IL   ISR 2008
## 7387                                        Israel    IL   ISR 2007
## 7388                                        Israel    IL   ISR 2006
## 7389                                        Israel    IL   ISR 2005
## 7390                                        Israel    IL   ISR 2004
## 7391                                        Israel    IL   ISR 2003
## 7392                                        Israel    IL   ISR 2002
## 7393                                        Israel    IL   ISR 2001
## 7394                                        Israel    IL   ISR 2000
## 7395                                        Israel    IL   ISR 1999
## 7396                                        Israel    IL   ISR 1998
## 7397                                        Israel    IL   ISR 1997
## 7398                                        Israel    IL   ISR 1996
## 7399                                        Israel    IL   ISR 1995
## 7400                                        Israel    IL   ISR 1994
## 7401                                        Israel    IL   ISR 1993
## 7402                                        Israel    IL   ISR 1992
## 7403                                        Israel    IL   ISR 1991
## 7404                                        Israel    IL   ISR 1990
## 7405                                        Israel    IL   ISR 1989
## 7406                                        Israel    IL   ISR 1988
## 7407                                        Israel    IL   ISR 1987
## 7408                                        Israel    IL   ISR 1986
## 7409                                        Israel    IL   ISR 1985
## 7410                                        Israel    IL   ISR 1984
## 7411                                        Israel    IL   ISR 1983
## 7412                                        Israel    IL   ISR 1982
## 7413                                        Israel    IL   ISR 1981
## 7414                                        Israel    IL   ISR 1980
## 7415                                        Israel    IL   ISR 1979
## 7416                                        Israel    IL   ISR 1978
## 7417                                        Israel    IL   ISR 1977
## 7418                                        Israel    IL   ISR 1976
## 7419                                        Israel    IL   ISR 1975
## 7420                                        Israel    IL   ISR 1974
## 7421                                        Israel    IL   ISR 1973
## 7422                                        Israel    IL   ISR 1972
## 7423                                        Israel    IL   ISR 1971
## 7424                                        Israel    IL   ISR 1970
## 7425                                        Israel    IL   ISR 1969
## 7426                                        Israel    IL   ISR 1968
## 7427                                        Israel    IL   ISR 1967
## 7428                                        Israel    IL   ISR 1966
## 7429                                        Israel    IL   ISR 1965
## 7430                                        Israel    IL   ISR 1964
## 7431                                        Israel    IL   ISR 1963
## 7432                                        Israel    IL   ISR 1962
## 7433                                        Israel    IL   ISR 1961
## 7434                                        Israel    IL   ISR 1960
## 7435                                         Italy    IT   ITA 2022
## 7436                                         Italy    IT   ITA 2021
## 7437                                         Italy    IT   ITA 2020
## 7438                                         Italy    IT   ITA 2019
## 7439                                         Italy    IT   ITA 2018
## 7440                                         Italy    IT   ITA 2017
## 7441                                         Italy    IT   ITA 2016
## 7442                                         Italy    IT   ITA 2015
## 7443                                         Italy    IT   ITA 2014
## 7444                                         Italy    IT   ITA 2013
## 7445                                         Italy    IT   ITA 2012
## 7446                                         Italy    IT   ITA 2011
## 7447                                         Italy    IT   ITA 2010
## 7448                                         Italy    IT   ITA 2009
## 7449                                         Italy    IT   ITA 2008
## 7450                                         Italy    IT   ITA 2007
## 7451                                         Italy    IT   ITA 2006
## 7452                                         Italy    IT   ITA 2005
## 7453                                         Italy    IT   ITA 2004
## 7454                                         Italy    IT   ITA 2003
## 7455                                         Italy    IT   ITA 2002
## 7456                                         Italy    IT   ITA 2001
## 7457                                         Italy    IT   ITA 2000
## 7458                                         Italy    IT   ITA 1999
## 7459                                         Italy    IT   ITA 1998
## 7460                                         Italy    IT   ITA 1997
## 7461                                         Italy    IT   ITA 1996
## 7462                                         Italy    IT   ITA 1995
## 7463                                         Italy    IT   ITA 1994
## 7464                                         Italy    IT   ITA 1993
## 7465                                         Italy    IT   ITA 1992
## 7466                                         Italy    IT   ITA 1991
## 7467                                         Italy    IT   ITA 1990
## 7468                                         Italy    IT   ITA 1989
## 7469                                         Italy    IT   ITA 1988
## 7470                                         Italy    IT   ITA 1987
## 7471                                         Italy    IT   ITA 1986
## 7472                                         Italy    IT   ITA 1985
## 7473                                         Italy    IT   ITA 1984
## 7474                                         Italy    IT   ITA 1983
## 7475                                         Italy    IT   ITA 1982
## 7476                                         Italy    IT   ITA 1981
## 7477                                         Italy    IT   ITA 1980
## 7478                                         Italy    IT   ITA 1979
## 7479                                         Italy    IT   ITA 1978
## 7480                                         Italy    IT   ITA 1977
## 7481                                         Italy    IT   ITA 1976
## 7482                                         Italy    IT   ITA 1975
## 7483                                         Italy    IT   ITA 1974
## 7484                                         Italy    IT   ITA 1973
## 7485                                         Italy    IT   ITA 1972
## 7486                                         Italy    IT   ITA 1971
## 7487                                         Italy    IT   ITA 1970
## 7488                                         Italy    IT   ITA 1969
## 7489                                         Italy    IT   ITA 1968
## 7490                                         Italy    IT   ITA 1967
## 7491                                         Italy    IT   ITA 1966
## 7492                                         Italy    IT   ITA 1965
## 7493                                         Italy    IT   ITA 1964
## 7494                                         Italy    IT   ITA 1963
## 7495                                         Italy    IT   ITA 1962
## 7496                                         Italy    IT   ITA 1961
## 7497                                         Italy    IT   ITA 1960
## 7498                                       Jamaica    JM   JAM 2022
## 7499                                       Jamaica    JM   JAM 2021
## 7500                                       Jamaica    JM   JAM 2020
## 7501                                       Jamaica    JM   JAM 2019
## 7502                                       Jamaica    JM   JAM 2018
## 7503                                       Jamaica    JM   JAM 2017
## 7504                                       Jamaica    JM   JAM 2016
## 7505                                       Jamaica    JM   JAM 2015
## 7506                                       Jamaica    JM   JAM 2014
## 7507                                       Jamaica    JM   JAM 2013
## 7508                                       Jamaica    JM   JAM 2012
## 7509                                       Jamaica    JM   JAM 2011
## 7510                                       Jamaica    JM   JAM 2010
## 7511                                       Jamaica    JM   JAM 2009
## 7512                                       Jamaica    JM   JAM 2008
## 7513                                       Jamaica    JM   JAM 2007
## 7514                                       Jamaica    JM   JAM 2006
## 7515                                       Jamaica    JM   JAM 2005
## 7516                                       Jamaica    JM   JAM 2004
## 7517                                       Jamaica    JM   JAM 2003
## 7518                                       Jamaica    JM   JAM 2002
## 7519                                       Jamaica    JM   JAM 2001
## 7520                                       Jamaica    JM   JAM 2000
## 7521                                       Jamaica    JM   JAM 1999
## 7522                                       Jamaica    JM   JAM 1998
## 7523                                       Jamaica    JM   JAM 1997
## 7524                                       Jamaica    JM   JAM 1996
## 7525                                       Jamaica    JM   JAM 1995
## 7526                                       Jamaica    JM   JAM 1994
## 7527                                       Jamaica    JM   JAM 1993
## 7528                                       Jamaica    JM   JAM 1992
## 7529                                       Jamaica    JM   JAM 1991
## 7530                                       Jamaica    JM   JAM 1990
## 7531                                       Jamaica    JM   JAM 1989
## 7532                                       Jamaica    JM   JAM 1988
## 7533                                       Jamaica    JM   JAM 1987
## 7534                                       Jamaica    JM   JAM 1986
## 7535                                       Jamaica    JM   JAM 1985
## 7536                                       Jamaica    JM   JAM 1984
## 7537                                       Jamaica    JM   JAM 1983
## 7538                                       Jamaica    JM   JAM 1982
## 7539                                       Jamaica    JM   JAM 1981
## 7540                                       Jamaica    JM   JAM 1980
## 7541                                       Jamaica    JM   JAM 1979
## 7542                                       Jamaica    JM   JAM 1978
## 7543                                       Jamaica    JM   JAM 1977
## 7544                                       Jamaica    JM   JAM 1976
## 7545                                       Jamaica    JM   JAM 1975
## 7546                                       Jamaica    JM   JAM 1974
## 7547                                       Jamaica    JM   JAM 1973
## 7548                                       Jamaica    JM   JAM 1972
## 7549                                       Jamaica    JM   JAM 1971
## 7550                                       Jamaica    JM   JAM 1970
## 7551                                       Jamaica    JM   JAM 1969
## 7552                                       Jamaica    JM   JAM 1968
## 7553                                       Jamaica    JM   JAM 1967
## 7554                                       Jamaica    JM   JAM 1966
## 7555                                       Jamaica    JM   JAM 1965
## 7556                                       Jamaica    JM   JAM 1964
## 7557                                       Jamaica    JM   JAM 1963
## 7558                                       Jamaica    JM   JAM 1962
## 7559                                       Jamaica    JM   JAM 1961
## 7560                                       Jamaica    JM   JAM 1960
## 7561                                         Japan    JP   JPN 2022
## 7562                                         Japan    JP   JPN 2021
## 7563                                         Japan    JP   JPN 2020
## 7564                                         Japan    JP   JPN 2019
## 7565                                         Japan    JP   JPN 2018
## 7566                                         Japan    JP   JPN 2017
## 7567                                         Japan    JP   JPN 2016
## 7568                                         Japan    JP   JPN 2015
## 7569                                         Japan    JP   JPN 2014
## 7570                                         Japan    JP   JPN 2013
## 7571                                         Japan    JP   JPN 2012
## 7572                                         Japan    JP   JPN 2011
## 7573                                         Japan    JP   JPN 2010
## 7574                                         Japan    JP   JPN 2009
## 7575                                         Japan    JP   JPN 2008
## 7576                                         Japan    JP   JPN 2007
## 7577                                         Japan    JP   JPN 2006
## 7578                                         Japan    JP   JPN 2005
## 7579                                         Japan    JP   JPN 2004
## 7580                                         Japan    JP   JPN 2003
## 7581                                         Japan    JP   JPN 2002
## 7582                                         Japan    JP   JPN 2001
## 7583                                         Japan    JP   JPN 2000
## 7584                                         Japan    JP   JPN 1999
## 7585                                         Japan    JP   JPN 1998
## 7586                                         Japan    JP   JPN 1997
## 7587                                         Japan    JP   JPN 1996
## 7588                                         Japan    JP   JPN 1995
## 7589                                         Japan    JP   JPN 1994
## 7590                                         Japan    JP   JPN 1993
## 7591                                         Japan    JP   JPN 1992
## 7592                                         Japan    JP   JPN 1991
## 7593                                         Japan    JP   JPN 1990
## 7594                                         Japan    JP   JPN 1989
## 7595                                         Japan    JP   JPN 1988
## 7596                                         Japan    JP   JPN 1987
## 7597                                         Japan    JP   JPN 1986
## 7598                                         Japan    JP   JPN 1985
## 7599                                         Japan    JP   JPN 1984
## 7600                                         Japan    JP   JPN 1983
## 7601                                         Japan    JP   JPN 1982
## 7602                                         Japan    JP   JPN 1981
## 7603                                         Japan    JP   JPN 1980
## 7604                                         Japan    JP   JPN 1979
## 7605                                         Japan    JP   JPN 1978
## 7606                                         Japan    JP   JPN 1977
## 7607                                         Japan    JP   JPN 1976
## 7608                                         Japan    JP   JPN 1975
## 7609                                         Japan    JP   JPN 1974
## 7610                                         Japan    JP   JPN 1973
## 7611                                         Japan    JP   JPN 1972
## 7612                                         Japan    JP   JPN 1971
## 7613                                         Japan    JP   JPN 1970
## 7614                                         Japan    JP   JPN 1969
## 7615                                         Japan    JP   JPN 1968
## 7616                                         Japan    JP   JPN 1967
## 7617                                         Japan    JP   JPN 1966
## 7618                                         Japan    JP   JPN 1965
## 7619                                         Japan    JP   JPN 1964
## 7620                                         Japan    JP   JPN 1963
## 7621                                         Japan    JP   JPN 1962
## 7622                                         Japan    JP   JPN 1961
## 7623                                         Japan    JP   JPN 1960
## 7624                                        Jordan    JO   JOR 2022
## 7625                                        Jordan    JO   JOR 2021
## 7626                                        Jordan    JO   JOR 2020
## 7627                                        Jordan    JO   JOR 2019
## 7628                                        Jordan    JO   JOR 2018
## 7629                                        Jordan    JO   JOR 2017
## 7630                                        Jordan    JO   JOR 2016
## 7631                                        Jordan    JO   JOR 2015
## 7632                                        Jordan    JO   JOR 2014
## 7633                                        Jordan    JO   JOR 2013
## 7634                                        Jordan    JO   JOR 2012
## 7635                                        Jordan    JO   JOR 2011
## 7636                                        Jordan    JO   JOR 2010
## 7637                                        Jordan    JO   JOR 2009
## 7638                                        Jordan    JO   JOR 2008
## 7639                                        Jordan    JO   JOR 2007
## 7640                                        Jordan    JO   JOR 2006
## 7641                                        Jordan    JO   JOR 2005
## 7642                                        Jordan    JO   JOR 2004
## 7643                                        Jordan    JO   JOR 2003
## 7644                                        Jordan    JO   JOR 2002
## 7645                                        Jordan    JO   JOR 2001
## 7646                                        Jordan    JO   JOR 2000
## 7647                                        Jordan    JO   JOR 1999
## 7648                                        Jordan    JO   JOR 1998
## 7649                                        Jordan    JO   JOR 1997
## 7650                                        Jordan    JO   JOR 1996
## 7651                                        Jordan    JO   JOR 1995
## 7652                                        Jordan    JO   JOR 1994
## 7653                                        Jordan    JO   JOR 1993
## 7654                                        Jordan    JO   JOR 1992
## 7655                                        Jordan    JO   JOR 1991
## 7656                                        Jordan    JO   JOR 1990
## 7657                                        Jordan    JO   JOR 1989
## 7658                                        Jordan    JO   JOR 1988
## 7659                                        Jordan    JO   JOR 1987
## 7660                                        Jordan    JO   JOR 1986
## 7661                                        Jordan    JO   JOR 1985
## 7662                                        Jordan    JO   JOR 1984
## 7663                                        Jordan    JO   JOR 1983
## 7664                                        Jordan    JO   JOR 1982
## 7665                                        Jordan    JO   JOR 1981
## 7666                                        Jordan    JO   JOR 1980
## 7667                                        Jordan    JO   JOR 1979
## 7668                                        Jordan    JO   JOR 1978
## 7669                                        Jordan    JO   JOR 1977
## 7670                                        Jordan    JO   JOR 1976
## 7671                                        Jordan    JO   JOR 1975
## 7672                                        Jordan    JO   JOR 1974
## 7673                                        Jordan    JO   JOR 1973
## 7674                                        Jordan    JO   JOR 1972
## 7675                                        Jordan    JO   JOR 1971
## 7676                                        Jordan    JO   JOR 1970
## 7677                                        Jordan    JO   JOR 1969
## 7678                                        Jordan    JO   JOR 1968
## 7679                                        Jordan    JO   JOR 1967
## 7680                                        Jordan    JO   JOR 1966
## 7681                                        Jordan    JO   JOR 1965
## 7682                                        Jordan    JO   JOR 1964
## 7683                                        Jordan    JO   JOR 1963
## 7684                                        Jordan    JO   JOR 1962
## 7685                                        Jordan    JO   JOR 1961
## 7686                                        Jordan    JO   JOR 1960
## 7687                                    Kazakhstan    KZ   KAZ 2022
## 7688                                    Kazakhstan    KZ   KAZ 2021
## 7689                                    Kazakhstan    KZ   KAZ 2020
## 7690                                    Kazakhstan    KZ   KAZ 2019
## 7691                                    Kazakhstan    KZ   KAZ 2018
## 7692                                    Kazakhstan    KZ   KAZ 2017
##               gdp status lastupdated                     region
## 1              NA         2023-05-10                 South Asia
## 2    1.478686e+10         2023-05-10                 South Asia
## 3    2.014344e+10         2023-05-10                 South Asia
## 4    1.890449e+10         2023-05-10                 South Asia
## 5    1.841885e+10         2023-05-10                 South Asia
## 6    1.889635e+10         2023-05-10                 South Asia
## 7    1.801956e+10         2023-05-10                 South Asia
## 8    1.999816e+10         2023-05-10                 South Asia
## 9    2.055058e+10         2023-05-10                 South Asia
## 10   2.056449e+10         2023-05-10                 South Asia
## 11   2.020357e+10         2023-05-10                 South Asia
## 12   1.819041e+10         2023-05-10                 South Asia
## 13   1.563386e+10         2023-05-10                 South Asia
## 14   1.215484e+10         2023-05-10                 South Asia
## 15   1.024977e+10         2023-05-10                 South Asia
## 16   9.715762e+09         2023-05-10                 South Asia
## 17   6.971379e+09         2023-05-10                 South Asia
## 18   6.226199e+09         2023-05-10                 South Asia
## 19   5.220824e+09         2023-05-10                 South Asia
## 20   4.539501e+09         2023-05-10                 South Asia
## 21   3.854235e+09         2023-05-10                 South Asia
## 22             NA         2023-05-10                 South Asia
## 23             NA         2023-05-10                 South Asia
## 24             NA         2023-05-10                 South Asia
## 25             NA         2023-05-10                 South Asia
## 26             NA         2023-05-10                 South Asia
## 27             NA         2023-05-10                 South Asia
## 28             NA         2023-05-10                 South Asia
## 29             NA         2023-05-10                 South Asia
## 30             NA         2023-05-10                 South Asia
## 31             NA         2023-05-10                 South Asia
## 32             NA         2023-05-10                 South Asia
## 33             NA         2023-05-10                 South Asia
## 34             NA         2023-05-10                 South Asia
## 35             NA         2023-05-10                 South Asia
## 36             NA         2023-05-10                 South Asia
## 37             NA         2023-05-10                 South Asia
## 38             NA         2023-05-10                 South Asia
## 39             NA         2023-05-10                 South Asia
## 40             NA         2023-05-10                 South Asia
## 41             NA         2023-05-10                 South Asia
## 42   3.478788e+09         2023-05-10                 South Asia
## 43   3.641723e+09         2023-05-10                 South Asia
## 44   3.697940e+09         2023-05-10                 South Asia
## 45   3.300000e+09         2023-05-10                 South Asia
## 46   2.953333e+09         2023-05-10                 South Asia
## 47   2.555556e+09         2023-05-10                 South Asia
## 48   2.366667e+09         2023-05-10                 South Asia
## 49   2.155555e+09         2023-05-10                 South Asia
## 50   1.733333e+09         2023-05-10                 South Asia
## 51   1.595555e+09         2023-05-10                 South Asia
## 52   1.831109e+09         2023-05-10                 South Asia
## 53   1.748887e+09         2023-05-10                 South Asia
## 54   1.408889e+09         2023-05-10                 South Asia
## 55   1.373333e+09         2023-05-10                 South Asia
## 56   1.673333e+09         2023-05-10                 South Asia
## 57   1.400000e+09         2023-05-10                 South Asia
## 58   1.006667e+09         2023-05-10                 South Asia
## 59   8.000000e+08         2023-05-10                 South Asia
## 60   7.511112e+08         2023-05-10                 South Asia
## 61   5.466667e+08         2023-05-10                 South Asia
## 62   5.488889e+08         2023-05-10                 South Asia
## 63   5.377778e+08         2023-05-10                 South Asia
## 64   4.388531e+11         2023-05-10                 Aggregates
## 65   2.401307e+11         2023-05-10                 Aggregates
## 66   1.030482e+12         2023-05-10                 Aggregates
## 67   5.122337e+11         2023-05-10                 Aggregates
## 68   9.826771e+11         2023-05-10                 Aggregates
## 69   1.016697e+12         2023-05-10                 Aggregates
## 70   1.003403e+12         2023-05-10                 Aggregates
## 71   1.672737e+11         2023-05-10                 Aggregates
## 72   8.898593e+11         2023-05-10                 Aggregates
## 73   1.009052e+12         2023-05-10                 Aggregates
## 74   9.341791e+11         2023-05-10                 Aggregates
## 75   1.153501e+11         2023-05-10                 Aggregates
## 76   1.743947e+11         2023-05-10                 Aggregates
## 77   1.089454e+12         2023-05-10                 Aggregates
## 78   9.231439e+11         2023-05-10                 Aggregates
## 79   9.642130e+11         2023-05-10                 Aggregates
## 80   1.034204e+11         2023-05-10                 Aggregates
## 81   1.706619e+11         2023-05-10                 Aggregates
## 82   9.720022e+11         2023-05-10                 Aggregates
## 83   6.608270e+11         2023-05-10                 Aggregates
## 84   5.757224e+11         2023-05-10                 Aggregates
## 85   9.112857e+10         2023-05-10                 Aggregates
## 86   7.081192e+11         2023-05-10                 Aggregates
## 87   1.346773e+11         2023-05-10                 Aggregates
## 88   2.968348e+10         2023-05-10                 Aggregates
## 89   3.652309e+10         2023-05-10                 Aggregates
## 90   3.351603e+10         2023-05-10                 Aggregates
## 91   2.648815e+11         2023-05-10                 Aggregates
## 92   2.588300e+11         2023-05-10                 Aggregates
## 93   2.611994e+10         2023-05-10                 Aggregates
## 94   3.526741e+11         2023-05-10                 Aggregates
## 95   2.658258e+11         2023-05-10                 Aggregates
## 96   2.821974e+11         2023-05-10                 Aggregates
## 97   2.684255e+11         2023-05-10                 Aggregates
## 98   2.696487e+11         2023-05-10                 Aggregates
## 99   4.486458e+10         2023-05-10                 Aggregates
## 100  2.365373e+11         2023-05-10                 Aggregates
## 101  2.382659e+11         2023-05-10                 Aggregates
## 102  2.734149e+11         2023-05-10                 Aggregates
## 103  2.532352e+11         2023-05-10                 Aggregates
## 104  2.175482e+11         2023-05-10                 Aggregates
## 105  2.041488e+11         2023-05-10                 Aggregates
## 106  8.603612e+11         2023-05-10                 Aggregates
## 107  7.190953e+11         2023-05-10                 Aggregates
## 108            NA         2023-05-10                 Aggregates
## 109  1.363033e+11         2023-05-10                 Aggregates
## 110  1.601410e+11         2023-05-10                 Aggregates
## 111  1.749258e+11         2023-05-10                 Aggregates
## 112  9.165319e+10         2023-05-10                 Aggregates
## 113  4.183018e+10         2023-05-10                 Aggregates
## 114  3.224054e+10         2023-05-10                 Aggregates
## 115  2.180944e+10         2023-05-10                 Aggregates
## 116  4.948110e+10         2023-05-10                 Aggregates
## 117  2.821128e+10         2023-05-10                 Aggregates
## 118  2.370806e+10         2023-05-10                 Aggregates
## 119  5.351720e+10         2023-05-10                 Aggregates
## 120  2.129152e+10         2023-05-10                 Aggregates
## 121  8.606157e+10         2023-05-10                 Aggregates
## 122  6.960386e+10         2023-05-10                 Aggregates
## 123  1.525250e+11         2023-05-10                 Aggregates
## 124  2.839379e+11         2023-05-10                 Aggregates
## 125  2.621838e+11         2023-05-10                 Aggregates
## 126  1.861529e+11         2023-05-10                 Aggregates
## 127  2.083282e+10         2023-05-10                 Aggregates
## 128  1.257630e+11         2023-05-10                 Aggregates
## 129  1.404103e+11         2023-05-10                 Aggregates
## 130  1.375210e+11         2023-05-10                 Aggregates
## 131  1.270639e+11         2023-05-10                 Aggregates
## 132  1.142627e+11         2023-05-10                 Aggregates
## 133  1.381152e+11         2023-05-10                 Aggregates
## 134  1.082213e+11         2023-05-10                 Aggregates
## 135  1.301068e+11         2023-05-10                 Aggregates
## 136  9.882637e+10         2023-05-10                 Aggregates
## 137  3.127382e+10         2023-05-10                 Aggregates
## 138  2.526495e+10         2023-05-10                 Aggregates
## 139  8.628174e+10         2023-05-10                 Aggregates
## 140  4.421448e+10         2023-05-10                 Aggregates
## 141  2.350461e+10         2023-05-10                 Aggregates
## 142  1.688209e+10         2023-05-10                 Aggregates
## 143  6.905454e+11         2023-05-10                 Aggregates
## 144  7.669580e+11         2023-05-10                 Aggregates
## 145  1.583259e+10         2023-05-10                 Aggregates
## 146  1.486223e+10         2023-05-10                 Aggregates
## 147  1.488035e+10         2023-05-10                 Aggregates
## 148  1.442604e+10         2023-05-10                 Aggregates
## 149  2.044709e+11         2023-05-10                 Aggregates
## 150  1.766058e+11         2023-05-10                 Aggregates
## 151  1.467798e+11         2023-05-10                 Aggregates
## 152  1.103218e+11         2023-05-10                 Aggregates
## 153  1.074975e+11         2023-05-10                 Aggregates
## 154  6.837480e+11         2023-05-10                 Aggregates
## 155  1.165073e+11         2023-05-10                 Aggregates
## 156  8.322169e+11         2023-05-10                 Aggregates
## 157  1.871637e+11         2023-05-10                 Aggregates
## 158  2.110035e+11         2023-05-10                 Aggregates
## 159  1.120313e+11         2023-05-10                 Aggregates
## 160  1.182823e+11         2023-05-10                 Aggregates
## 161  5.144473e+10         2023-05-10                 Aggregates
## 162  1.218021e+11         2023-05-10                 Aggregates
## 163  1.017688e+11         2023-05-10                 Aggregates
## 164  1.089435e+11         2023-05-10                 Aggregates
## 165  7.947191e+11         2023-05-10                 Aggregates
## 166  7.663597e+11         2023-05-10                 Aggregates
## 167  6.804560e+11         2023-05-10                 Aggregates
## 168  8.924979e+11         2023-05-10                 Aggregates
## 169  8.862840e+10         2023-05-10                 Aggregates
## 170  7.360399e+11         2023-05-10                 Aggregates
## 171  6.531501e+10         2023-05-10                 Aggregates
## 172  5.971293e+11         2023-05-10                 Aggregates
## 173  7.847997e+11         2023-05-10                 Aggregates
## 174  1.174571e+11         2023-05-10                 Aggregates
## 175  2.534719e+11         2023-05-10                 Aggregates
## 176  6.212939e+10         2023-05-10                 Aggregates
## 177  1.194319e+10         2023-05-10                 Aggregates
## 178  1.040414e+10         2023-05-10                 Aggregates
## 179  1.383837e+10         2023-05-10                 Aggregates
## 180  1.267633e+10         2023-05-10                 Aggregates
## 181  7.119971e+10         2023-05-10                 Aggregates
## 182  5.070295e+11         2023-05-10                 Aggregates
## 183  3.100942e+11         2023-05-10                 Aggregates
## 184  3.956559e+11         2023-05-10                 Aggregates
## 185  1.112789e+10         2023-05-10                 Aggregates
## 186  8.401873e+11         2023-05-10                 Aggregates
## 187            NA         2023-05-10                 Aggregates
## 188  4.644256e+11         2023-05-10                 Aggregates
## 189  5.664795e+11         2023-05-10                 Aggregates
## 190            NA         2023-05-10      Europe & Central Asia
## 191  1.825579e+10         2023-05-10      Europe & Central Asia
## 192  1.513187e+10         2023-05-10      Europe & Central Asia
## 193  1.540183e+10         2023-05-10      Europe & Central Asia
## 194  1.515643e+10         2023-05-10      Europe & Central Asia
## 195  1.301969e+10         2023-05-10      Europe & Central Asia
## 196  1.186120e+10         2023-05-10      Europe & Central Asia
## 197  1.138685e+10         2023-05-10      Europe & Central Asia
## 198  1.322815e+10         2023-05-10      Europe & Central Asia
## 199  1.277622e+10         2023-05-10      Europe & Central Asia
## 200  1.231983e+10         2023-05-10      Europe & Central Asia
## 201  1.289076e+10         2023-05-10      Europe & Central Asia
## 202  1.192692e+10         2023-05-10      Europe & Central Asia
## 203  1.204421e+10         2023-05-10      Europe & Central Asia
## 204  1.288135e+10         2023-05-10      Europe & Central Asia
## 205  1.067732e+10         2023-05-10      Europe & Central Asia
## 206  8.896073e+09         2023-05-10      Europe & Central Asia
## 207  8.052074e+09         2023-05-10      Europe & Central Asia
## 208  7.184686e+09         2023-05-10      Europe & Central Asia
## 209  5.611496e+09         2023-05-10      Europe & Central Asia
## 210  4.348068e+09         2023-05-10      Europe & Central Asia
## 211  3.922101e+09         2023-05-10      Europe & Central Asia
## 212  3.480355e+09         2023-05-10      Europe & Central Asia
## 213  3.212122e+09         2023-05-10      Europe & Central Asia
## 214  2.545965e+09         2023-05-10      Europe & Central Asia
## 215  2.258514e+09         2023-05-10      Europe & Central Asia
## 216  3.199641e+09         2023-05-10      Europe & Central Asia
## 217  2.392765e+09         2023-05-10      Europe & Central Asia
## 218  1.880952e+09         2023-05-10      Europe & Central Asia
## 219  1.185315e+09         2023-05-10      Europe & Central Asia
## 220  6.521750e+08         2023-05-10      Europe & Central Asia
## 221  1.099559e+09         2023-05-10      Europe & Central Asia
## 222  2.028554e+09         2023-05-10      Europe & Central Asia
## 223  2.253090e+09         2023-05-10      Europe & Central Asia
## 224  2.051236e+09         2023-05-10      Europe & Central Asia
## 225  2.080796e+09         2023-05-10      Europe & Central Asia
## 226  2.097326e+09         2023-05-10      Europe & Central Asia
## 227  1.897050e+09         2023-05-10      Europe & Central Asia
## 228  1.857338e+09         2023-05-10      Europe & Central Asia
## 229            NA         2023-05-10      Europe & Central Asia
## 230            NA         2023-05-10      Europe & Central Asia
## 231            NA         2023-05-10      Europe & Central Asia
## 232            NA         2023-05-10      Europe & Central Asia
## 233            NA         2023-05-10      Europe & Central Asia
## 234            NA         2023-05-10      Europe & Central Asia
## 235            NA         2023-05-10      Europe & Central Asia
## 236            NA         2023-05-10      Europe & Central Asia
## 237            NA         2023-05-10      Europe & Central Asia
## 238            NA         2023-05-10      Europe & Central Asia
## 239            NA         2023-05-10      Europe & Central Asia
## 240            NA         2023-05-10      Europe & Central Asia
## 241            NA         2023-05-10      Europe & Central Asia
## 242            NA         2023-05-10      Europe & Central Asia
## 243            NA         2023-05-10      Europe & Central Asia
## 244            NA         2023-05-10      Europe & Central Asia
## 245            NA         2023-05-10      Europe & Central Asia
## 246            NA         2023-05-10      Europe & Central Asia
## 247            NA         2023-05-10      Europe & Central Asia
## 248            NA         2023-05-10      Europe & Central Asia
## 249            NA         2023-05-10      Europe & Central Asia
## 250            NA         2023-05-10      Europe & Central Asia
## 251            NA         2023-05-10      Europe & Central Asia
## 252            NA         2023-05-10      Europe & Central Asia
## 253            NA         2023-05-10 Middle East & North Africa
## 254  1.630444e+11         2023-05-10 Middle East & North Africa
## 255  1.450092e+11         2023-05-10 Middle East & North Africa
## 256  1.717674e+11         2023-05-10 Middle East & North Africa
## 257  1.749109e+11         2023-05-10 Middle East & North Africa
## 258  1.700970e+11         2023-05-10 Middle East & North Africa
## 259  1.600342e+11         2023-05-10 Middle East & North Africa
## 260  1.659793e+11         2023-05-10 Middle East & North Africa
## 261  2.138100e+11         2023-05-10 Middle East & North Africa
## 262  2.097550e+11         2023-05-10 Middle East & North Africa
## 263  2.090590e+11         2023-05-10 Middle East & North Africa
## 264  2.000131e+11         2023-05-10 Middle East & North Africa
## 265  1.612073e+11         2023-05-10 Middle East & North Africa
## 266  1.372110e+11         2023-05-10 Middle East & North Africa
## 267  1.710007e+11         2023-05-10 Middle East & North Africa
## 268  1.349771e+11         2023-05-10 Middle East & North Africa
## 269  1.170273e+11         2023-05-10 Middle East & North Africa
## 270  1.031982e+11         2023-05-10 Middle East & North Africa
## 271  8.533258e+10         2023-05-10 Middle East & North Africa
## 272  6.786383e+10         2023-05-10 Middle East & North Africa
## 273  5.676036e+10         2023-05-10 Middle East & North Africa
## 274  5.474471e+10         2023-05-10 Middle East & North Africa
## 275  5.479039e+10         2023-05-10 Middle East & North Africa
## 276  4.864065e+10         2023-05-10 Middle East & North Africa
## 277  4.818775e+10         2023-05-10 Middle East & North Africa
## 278  4.817761e+10         2023-05-10 Middle East & North Africa
## 279  4.694158e+10         2023-05-10 Middle East & North Africa
## 280  4.176432e+10         2023-05-10 Middle East & North Africa
## 281  4.254318e+10         2023-05-10 Middle East & North Africa
## 282  4.994560e+10         2023-05-10 Middle East & North Africa
## 283  4.800308e+10         2023-05-10 Middle East & North Africa
## 284  4.571561e+10         2023-05-10 Middle East & North Africa
## 285  6.204856e+10         2023-05-10 Middle East & North Africa
## 286  5.563441e+10         2023-05-10 Middle East & North Africa
## 287  5.908907e+10         2023-05-10 Middle East & North Africa
## 288  6.674640e+10         2023-05-10 Middle East & North Africa
## 289  6.369224e+10         2023-05-10 Middle East & North Africa
## 290  5.793787e+10         2023-05-10 Middle East & North Africa
## 291  5.369828e+10         2023-05-10 Middle East & North Africa
## 292  4.880137e+10         2023-05-10 Middle East & North Africa
## 293  4.520709e+10         2023-05-10 Middle East & North Africa
## 294  4.434867e+10         2023-05-10 Middle East & North Africa
## 295  4.234638e+10         2023-05-10 Middle East & North Africa
## 296  3.324342e+10         2023-05-10 Middle East & North Africa
## 297  2.636449e+10         2023-05-10 Middle East & North Africa
## 298  2.097190e+10         2023-05-10 Middle East & North Africa
## 299  1.772835e+10         2023-05-10 Middle East & North Africa
## 300  1.555793e+10         2023-05-10 Middle East & North Africa
## 301  1.321003e+10         2023-05-10 Middle East & North Africa
## 302  8.707848e+09         2023-05-10 Middle East & North Africa
## 303  6.766767e+09         2023-05-10 Middle East & North Africa
## 304  5.077222e+09         2023-05-10 Middle East & North Africa
## 305  4.863487e+09         2023-05-10 Middle East & North Africa
## 306  4.257219e+09         2023-05-10 Middle East & North Africa
## 307  3.852116e+09         2023-05-10 Middle East & North Africa
## 308  3.370843e+09         2023-05-10 Middle East & North Africa
## 309  3.039835e+09         2023-05-10 Middle East & North Africa
## 310  3.136259e+09         2023-05-10 Middle East & North Africa
## 311  2.909293e+09         2023-05-10 Middle East & North Africa
## 312  2.702960e+09         2023-05-10 Middle East & North Africa
## 313  2.001428e+09         2023-05-10 Middle East & North Africa
## 314  2.434727e+09         2023-05-10 Middle East & North Africa
## 315  2.723593e+09         2023-05-10 Middle East & North Africa
## 316            NA         2023-05-10        East Asia & Pacific
## 317  7.090000e+08         2023-05-10        East Asia & Pacific
## 318  7.160000e+08         2023-05-10        East Asia & Pacific
## 319  6.470000e+08         2023-05-10        East Asia & Pacific
## 320  6.390000e+08         2023-05-10        East Asia & Pacific
## 321  6.120000e+08         2023-05-10        East Asia & Pacific
## 322  6.710000e+08         2023-05-10        East Asia & Pacific
## 323  6.730000e+08         2023-05-10        East Asia & Pacific
## 324  6.430000e+08         2023-05-10        East Asia & Pacific
## 325  6.380000e+08         2023-05-10        East Asia & Pacific
## 326  6.400000e+08         2023-05-10        East Asia & Pacific
## 327  5.700000e+08         2023-05-10        East Asia & Pacific
## 328  5.730000e+08         2023-05-10        East Asia & Pacific
## 329  6.750000e+08         2023-05-10        East Asia & Pacific
## 330  5.600000e+08         2023-05-10        East Asia & Pacific
## 331  5.180000e+08         2023-05-10        East Asia & Pacific
## 332  4.930000e+08         2023-05-10        East Asia & Pacific
## 333  5.000000e+08         2023-05-10        East Asia & Pacific
## 334  5.090000e+08         2023-05-10        East Asia & Pacific
## 335  5.240000e+08         2023-05-10        East Asia & Pacific
## 336  5.120000e+08         2023-05-10        East Asia & Pacific
## 337            NA         2023-05-10        East Asia & Pacific
## 338            NA         2023-05-10        East Asia & Pacific
## 339            NA         2023-05-10        East Asia & Pacific
## 340            NA         2023-05-10        East Asia & Pacific
## 341            NA         2023-05-10        East Asia & Pacific
## 342            NA         2023-05-10        East Asia & Pacific
## 343            NA         2023-05-10        East Asia & Pacific
## 344            NA         2023-05-10        East Asia & Pacific
## 345            NA         2023-05-10        East Asia & Pacific
## 346            NA         2023-05-10        East Asia & Pacific
## 347            NA         2023-05-10        East Asia & Pacific
## 348            NA         2023-05-10        East Asia & Pacific
## 349            NA         2023-05-10        East Asia & Pacific
## 350            NA         2023-05-10        East Asia & Pacific
## 351            NA         2023-05-10        East Asia & Pacific
## 352            NA         2023-05-10        East Asia & Pacific
## 353            NA         2023-05-10        East Asia & Pacific
## 354            NA         2023-05-10        East Asia & Pacific
## 355            NA         2023-05-10        East Asia & Pacific
## 356            NA         2023-05-10        East Asia & Pacific
## 357            NA         2023-05-10        East Asia & Pacific
## 358            NA         2023-05-10        East Asia & Pacific
## 359            NA         2023-05-10        East Asia & Pacific
## 360            NA         2023-05-10        East Asia & Pacific
## 361            NA         2023-05-10        East Asia & Pacific
## 362            NA         2023-05-10        East Asia & Pacific
## 363            NA         2023-05-10        East Asia & Pacific
## 364            NA         2023-05-10        East Asia & Pacific
## 365            NA         2023-05-10        East Asia & Pacific
## 366            NA         2023-05-10        East Asia & Pacific
## 367            NA         2023-05-10        East Asia & Pacific
## 368            NA         2023-05-10        East Asia & Pacific
## 369            NA         2023-05-10        East Asia & Pacific
## 370            NA         2023-05-10        East Asia & Pacific
## 371            NA         2023-05-10        East Asia & Pacific
## 372            NA         2023-05-10        East Asia & Pacific
## 373            NA         2023-05-10        East Asia & Pacific
## 374            NA         2023-05-10        East Asia & Pacific
## 375            NA         2023-05-10        East Asia & Pacific
## 376            NA         2023-05-10        East Asia & Pacific
## 377            NA         2023-05-10        East Asia & Pacific
## 378            NA         2023-05-10        East Asia & Pacific
## 379            NA         2023-05-10      Europe & Central Asia
## 380  3.330282e+09         2023-05-10      Europe & Central Asia
## 381  2.891022e+09         2023-05-10      Europe & Central Asia
## 382  3.155065e+09         2023-05-10      Europe & Central Asia
## 383  3.218316e+09         2023-05-10      Europe & Central Asia
## 384  3.000181e+09         2023-05-10      Europe & Central Asia
## 385  2.896679e+09         2023-05-10      Europe & Central Asia
## 386  2.789870e+09         2023-05-10      Europe & Central Asia
## 387  3.271808e+09         2023-05-10      Europe & Central Asia
## 388  3.193704e+09         2023-05-10      Europe & Central Asia
## 389  3.188809e+09         2023-05-10      Europe & Central Asia
## 390  3.629204e+09         2023-05-10      Europe & Central Asia
## 391  3.449967e+09         2023-05-10      Europe & Central Asia
## 392  3.674410e+09         2023-05-10      Europe & Central Asia
## 393  4.085631e+09         2023-05-10      Europe & Central Asia
## 394  3.952601e+09         2023-05-10      Europe & Central Asia
## 395  3.456442e+09         2023-05-10      Europe & Central Asia
## 396  3.159905e+09         2023-05-10      Europe & Central Asia
## 397  2.894922e+09         2023-05-10      Europe & Central Asia
## 398  2.361727e+09         2023-05-10      Europe & Central Asia
## 399  1.755910e+09         2023-05-10      Europe & Central Asia
## 400  1.546926e+09         2023-05-10      Europe & Central Asia
## 401  1.429049e+09         2023-05-10      Europe & Central Asia
## 402  1.239876e+09         2023-05-10      Europe & Central Asia
## 403  1.211932e+09         2023-05-10      Europe & Central Asia
## 404  1.180597e+09         2023-05-10      Europe & Central Asia
## 405  1.223945e+09         2023-05-10      Europe & Central Asia
## 406  1.178739e+09         2023-05-10      Europe & Central Asia
## 407  1.017549e+09         2023-05-10      Europe & Central Asia
## 408  1.007026e+09         2023-05-10      Europe & Central Asia
## 409  1.210014e+09         2023-05-10      Europe & Central Asia
## 410  1.106929e+09         2023-05-10      Europe & Central Asia
## 411  1.029048e+09         2023-05-10      Europe & Central Asia
## 412  7.954493e+08         2023-05-10      Europe & Central Asia
## 413  7.214259e+08         2023-05-10      Europe & Central Asia
## 414  6.113164e+08         2023-05-10      Europe & Central Asia
## 415  4.820006e+08         2023-05-10      Europe & Central Asia
## 416  3.467380e+08         2023-05-10      Europe & Central Asia
## 417  3.300707e+08         2023-05-10      Europe & Central Asia
## 418  3.278618e+08         2023-05-10      Europe & Central Asia
## 419  3.758960e+08         2023-05-10      Europe & Central Asia
## 420  3.889587e+08         2023-05-10      Europe & Central Asia
## 421  4.464161e+08         2023-05-10      Europe & Central Asia
## 422  4.115783e+08         2023-05-10      Europe & Central Asia
## 423  3.080089e+08         2023-05-10      Europe & Central Asia
## 424  2.540202e+08         2023-05-10      Europe & Central Asia
## 425  2.272810e+08         2023-05-10      Europe & Central Asia
## 426  2.201272e+08         2023-05-10      Europe & Central Asia
## 427  1.865587e+08         2023-05-10      Europe & Central Asia
## 428  1.508201e+08         2023-05-10      Europe & Central Asia
## 429  1.134082e+08         2023-05-10      Europe & Central Asia
## 430  8.940982e+07         2023-05-10      Europe & Central Asia
## 431  7.861921e+07         2023-05-10      Europe & Central Asia
## 432            NA         2023-05-10      Europe & Central Asia
## 433            NA         2023-05-10      Europe & Central Asia
## 434            NA         2023-05-10      Europe & Central Asia
## 435            NA         2023-05-10      Europe & Central Asia
## 436            NA         2023-05-10      Europe & Central Asia
## 437            NA         2023-05-10      Europe & Central Asia
## 438            NA         2023-05-10      Europe & Central Asia
## 439            NA         2023-05-10      Europe & Central Asia
## 440            NA         2023-05-10      Europe & Central Asia
## 441            NA         2023-05-10      Europe & Central Asia
## 442            NA         2023-05-10         Sub-Saharan Africa
## 443  6.740429e+10         2023-05-10         Sub-Saharan Africa
## 444  5.361907e+10         2023-05-10         Sub-Saharan Africa
## 445  6.930911e+10         2023-05-10         Sub-Saharan Africa
## 446  7.779294e+10         2023-05-10         Sub-Saharan Africa
## 447  6.897277e+10         2023-05-10         Sub-Saharan Africa
## 448  4.984049e+10         2023-05-10         Sub-Saharan Africa
## 449  8.721930e+10         2023-05-10         Sub-Saharan Africa
## 450  1.372444e+11         2023-05-10         Sub-Saharan Africa
## 451  1.334016e+11         2023-05-10         Sub-Saharan Africa
## 452  1.249982e+11         2023-05-10         Sub-Saharan Africa
## 453  1.094366e+11         2023-05-10         Sub-Saharan Africa
## 454  8.169953e+10         2023-05-10         Sub-Saharan Africa
## 455  7.030717e+10         2023-05-10         Sub-Saharan Africa
## 456  8.853861e+10         2023-05-10         Sub-Saharan Africa
## 457  6.526645e+10         2023-05-10         Sub-Saharan Africa
## 458  5.238101e+10         2023-05-10         Sub-Saharan Africa
## 459  3.697092e+10         2023-05-10         Sub-Saharan Africa
## 460  2.355205e+10         2023-05-10         Sub-Saharan Africa
## 461  1.781270e+10         2023-05-10         Sub-Saharan Africa
## 462  1.528559e+10         2023-05-10         Sub-Saharan Africa
## 463  8.936064e+09         2023-05-10         Sub-Saharan Africa
## 464  9.129595e+09         2023-05-10         Sub-Saharan Africa
## 465  6.152923e+09         2023-05-10         Sub-Saharan Africa
## 466  6.506230e+09         2023-05-10         Sub-Saharan Africa
## 467  7.648377e+09         2023-05-10         Sub-Saharan Africa
## 468  7.526447e+09         2023-05-10         Sub-Saharan Africa
## 469  5.538749e+09         2023-05-10         Sub-Saharan Africa
## 470  4.438321e+09         2023-05-10         Sub-Saharan Africa
## 471  5.768720e+09         2023-05-10         Sub-Saharan Africa
## 472  8.307811e+09         2023-05-10         Sub-Saharan Africa
## 473  1.060378e+10         2023-05-10         Sub-Saharan Africa
## 474  1.122876e+10         2023-05-10         Sub-Saharan Africa
## 475  1.020110e+10         2023-05-10         Sub-Saharan Africa
## 476  8.769251e+09         2023-05-10         Sub-Saharan Africa
## 477  8.083872e+09         2023-05-10         Sub-Saharan Africa
## 478  7.072063e+09         2023-05-10         Sub-Saharan Africa
## 479  7.553560e+09         2023-05-10         Sub-Saharan Africa
## 480  6.131475e+09         2023-05-10         Sub-Saharan Africa
## 481  5.784342e+09         2023-05-10         Sub-Saharan Africa
## 482  5.550483e+09         2023-05-10         Sub-Saharan Africa
## 483  5.550483e+09         2023-05-10         Sub-Saharan Africa
## 484  5.930503e+09         2023-05-10         Sub-Saharan Africa
## 485            NA         2023-05-10         Sub-Saharan Africa
## 486            NA         2023-05-10         Sub-Saharan Africa
## 487            NA         2023-05-10         Sub-Saharan Africa
## 488            NA         2023-05-10         Sub-Saharan Africa
## 489            NA         2023-05-10         Sub-Saharan Africa
## 490            NA         2023-05-10         Sub-Saharan Africa
## 491            NA         2023-05-10         Sub-Saharan Africa
## 492            NA         2023-05-10         Sub-Saharan Africa
## 493            NA         2023-05-10         Sub-Saharan Africa
## 494            NA         2023-05-10         Sub-Saharan Africa
## 495            NA         2023-05-10         Sub-Saharan Africa
## 496            NA         2023-05-10         Sub-Saharan Africa
## 497            NA         2023-05-10         Sub-Saharan Africa
## 498            NA         2023-05-10         Sub-Saharan Africa
## 499            NA         2023-05-10         Sub-Saharan Africa
## 500            NA         2023-05-10         Sub-Saharan Africa
## 501            NA         2023-05-10         Sub-Saharan Africa
## 502            NA         2023-05-10         Sub-Saharan Africa
## 503            NA         2023-05-10         Sub-Saharan Africa
## 504            NA         2023-05-10         Sub-Saharan Africa
## 505            NA         2023-05-10  Latin America & Caribbean
## 506  1.471126e+09         2023-05-10  Latin America & Caribbean
## 507  1.370281e+09         2023-05-10  Latin America & Caribbean
## 508  1.687533e+09         2023-05-10  Latin America & Caribbean
## 509  1.605944e+09         2023-05-10  Latin America & Caribbean
## 510  1.467978e+09         2023-05-10  Latin America & Caribbean
## 511  1.436585e+09         2023-05-10  Latin America & Caribbean
## 512  1.336693e+09         2023-05-10  Latin America & Caribbean
## 513  1.249733e+09         2023-05-10  Latin America & Caribbean
## 514  1.181448e+09         2023-05-10  Latin America & Caribbean
## 515  1.199948e+09         2023-05-10  Latin America & Caribbean
## 516  1.137637e+09         2023-05-10  Latin America & Caribbean
## 517  1.148700e+09         2023-05-10  Latin America & Caribbean
## 518  1.228330e+09         2023-05-10  Latin America & Caribbean
## 519  1.370070e+09         2023-05-10  Latin America & Caribbean
## 520  1.312759e+09         2023-05-10  Latin America & Caribbean
## 521  1.157663e+09         2023-05-10  Latin America & Caribbean
## 522  1.022963e+09         2023-05-10  Latin America & Caribbean
## 523  9.197296e+08         2023-05-10  Latin America & Caribbean
## 524  8.563963e+08         2023-05-10  Latin America & Caribbean
## 525  8.143815e+08         2023-05-10  Latin America & Caribbean
## 526  8.004815e+08         2023-05-10  Latin America & Caribbean
## 527  8.263704e+08         2023-05-10  Latin America & Caribbean
## 528  7.662000e+08         2023-05-10  Latin America & Caribbean
## 529  7.278593e+08         2023-05-10  Latin America & Caribbean
## 530  6.806185e+08         2023-05-10  Latin America & Caribbean
## 531  6.337296e+08         2023-05-10  Latin America & Caribbean
## 532  5.772815e+08         2023-05-10  Latin America & Caribbean
## 533  5.894296e+08         2023-05-10  Latin America & Caribbean
## 534  5.351741e+08         2023-05-10  Latin America & Caribbean
## 535  4.992815e+08         2023-05-10  Latin America & Caribbean
## 536  4.817074e+08         2023-05-10  Latin America & Caribbean
## 537  4.594704e+08         2023-05-10  Latin America & Caribbean
## 538  4.387948e+08         2023-05-10  Latin America & Caribbean
## 539  3.986377e+08         2023-05-10  Latin America & Caribbean
## 540  3.371749e+08         2023-05-10  Latin America & Caribbean
## 541  2.904401e+08         2023-05-10  Latin America & Caribbean
## 542  2.409239e+08         2023-05-10  Latin America & Caribbean
## 543  2.083728e+08         2023-05-10  Latin America & Caribbean
## 544  1.821441e+08         2023-05-10  Latin America & Caribbean
## 545  1.643693e+08         2023-05-10  Latin America & Caribbean
## 546  1.478417e+08         2023-05-10  Latin America & Caribbean
## 547  1.314310e+08         2023-05-10  Latin America & Caribbean
## 548  1.090800e+08         2023-05-10  Latin America & Caribbean
## 549  8.787934e+07         2023-05-10  Latin America & Caribbean
## 550  7.749675e+07         2023-05-10  Latin America & Caribbean
## 551            NA         2023-05-10  Latin America & Caribbean
## 552            NA         2023-05-10  Latin America & Caribbean
## 553            NA         2023-05-10  Latin America & Caribbean
## 554            NA         2023-05-10  Latin America & Caribbean
## 555            NA         2023-05-10  Latin America & Caribbean
## 556            NA         2023-05-10  Latin America & Caribbean
## 557            NA         2023-05-10  Latin America & Caribbean
## 558            NA         2023-05-10  Latin America & Caribbean
## 559            NA         2023-05-10  Latin America & Caribbean
## 560            NA         2023-05-10  Latin America & Caribbean
## 561            NA         2023-05-10  Latin America & Caribbean
## 562            NA         2023-05-10  Latin America & Caribbean
## 563            NA         2023-05-10  Latin America & Caribbean
## 564            NA         2023-05-10  Latin America & Caribbean
## 565            NA         2023-05-10  Latin America & Caribbean
## 566            NA         2023-05-10  Latin America & Caribbean
## 567            NA         2023-05-10  Latin America & Caribbean
## 568  2.800428e+12         2023-05-10                 Aggregates
## 569  1.790036e+12         2023-05-10                 Aggregates
## 570  2.818359e+12         2023-05-10                 Aggregates
## 571  2.516485e+12         2023-05-10                 Aggregates
## 572  2.538925e+12         2023-05-10                 Aggregates
## 573  2.491175e+12         2023-05-10                 Aggregates
## 574  2.862987e+12         2023-05-10                 Aggregates
## 575  4.441305e+11         2023-05-10                 Aggregates
## 576  1.297893e+12         2023-05-10                 Aggregates
## 577  2.598094e+12         2023-05-10                 Aggregates
## 578  3.386247e+11         2023-05-10                 Aggregates
## 579  2.491100e+11         2023-05-10                 Aggregates
## 580  4.740232e+11         2023-05-10                 Aggregates
## 581  4.598097e+11         2023-05-10                 Aggregates
## 582  2.895458e+12         2023-05-10                 Aggregates
## 583  4.184619e+11         2023-05-10                 Aggregates
## 584  2.269777e+11         2023-05-10                 Aggregates
## 585  1.965586e+11         2023-05-10                 Aggregates
## 586            NA         2023-05-10                 Aggregates
## 587            NA         2023-05-10                 Aggregates
## 588  2.253731e+12         2023-05-10                 Aggregates
## 589  3.501973e+10         2023-05-10                 Aggregates
## 590  1.538290e+12         2023-05-10                 Aggregates
## 591  8.031228e+11         2023-05-10                 Aggregates
## 592            NA         2023-05-10                 Aggregates
## 593  1.056247e+12         2023-05-10                 Aggregates
## 594  8.878525e+11         2023-05-10                 Aggregates
## 595  2.327000e+12         2023-05-10                 Aggregates
## 596  1.978797e+12         2023-05-10                 Aggregates
## 597  6.141926e+11         2023-05-10                 Aggregates
## 598  5.560580e+11         2023-05-10                 Aggregates
## 599  5.077666e+11         2023-05-10                 Aggregates
## 600  4.827667e+11         2023-05-10                 Aggregates
## 601  4.738129e+11         2023-05-10                 Aggregates
## 602  4.715240e+11         2023-05-10                 Aggregates
## 603  6.440664e+11         2023-05-10                 Aggregates
## 604  4.558230e+11         2023-05-10                 Aggregates
## 605  2.843529e+12         2023-05-10                 Aggregates
## 606  2.787171e+12         2023-05-10                 Aggregates
## 607  2.541860e+12         2023-05-10                 Aggregates
## 608  6.444943e+11         2023-05-10                 Aggregates
## 609  6.623172e+11         2023-05-10                 Aggregates
## 610  4.258983e+11         2023-05-10                 Aggregates
## 611  4.314983e+10         2023-05-10                 Aggregates
## 612  3.816299e+10         2023-05-10                 Aggregates
## 613            NA         2023-05-10                 Aggregates
## 614            NA         2023-05-10                 Aggregates
## 615  1.579092e+11         2023-05-10                 Aggregates
## 616            NA         2023-05-10                 Aggregates
## 617            NA         2023-05-10                 Aggregates
## 618  5.938129e+10         2023-05-10                 Aggregates
## 619  4.984148e+10         2023-05-10                 Aggregates
## 620  1.428157e+11         2023-05-10                 Aggregates
## 621  7.532979e+10         2023-05-10                 Aggregates
## 622  7.128368e+11         2023-05-10                 Aggregates
## 623  4.069842e+11         2023-05-10                 Aggregates
## 624  7.985054e+11         2023-05-10                 Aggregates
## 625  8.160193e+11         2023-05-10                 Aggregates
## 626  4.249004e+11         2023-05-10                 Aggregates
## 627  4.406062e+11         2023-05-10                 Aggregates
## 628  4.194994e+11         2023-05-10                 Aggregates
## 629            NA         2023-05-10                 Aggregates
## 630            NA         2023-05-10                 Aggregates
## 631            NA         2023-05-10  Latin America & Caribbean
## 632  4.872273e+11         2023-05-10  Latin America & Caribbean
## 633  3.855402e+11         2023-05-10  Latin America & Caribbean
## 634  4.477546e+11         2023-05-10  Latin America & Caribbean
## 635  5.248197e+11         2023-05-10  Latin America & Caribbean
## 636  6.436287e+11         2023-05-10  Latin America & Caribbean
## 637  5.575314e+11         2023-05-10  Latin America & Caribbean
## 638  5.947493e+11         2023-05-10  Latin America & Caribbean
## 639  5.263197e+11         2023-05-10  Latin America & Caribbean
## 640  5.520251e+11         2023-05-10  Latin America & Caribbean
## 641  5.459824e+11         2023-05-10  Latin America & Caribbean
## 642  5.301633e+11         2023-05-10  Latin America & Caribbean
## 643  4.236274e+11         2023-05-10  Latin America & Caribbean
## 644  3.329765e+11         2023-05-10  Latin America & Caribbean
## 645  3.615580e+11         2023-05-10  Latin America & Caribbean
## 646  2.875305e+11         2023-05-10  Latin America & Caribbean
## 647  2.325573e+11         2023-05-10  Latin America & Caribbean
## 648  1.987371e+11         2023-05-10  Latin America & Caribbean
## 649  1.646579e+11         2023-05-10  Latin America & Caribbean
## 650  1.275870e+11         2023-05-10  Latin America & Caribbean
## 651  9.772400e+10         2023-05-10  Latin America & Caribbean
## 652  2.686968e+11         2023-05-10  Latin America & Caribbean
## 653  2.842038e+11         2023-05-10  Latin America & Caribbean
## 654  2.835230e+11         2023-05-10  Latin America & Caribbean
## 655  2.989482e+11         2023-05-10  Latin America & Caribbean
## 656  2.928590e+11         2023-05-10  Latin America & Caribbean
## 657  2.721498e+11         2023-05-10  Latin America & Caribbean
## 658  2.580318e+11         2023-05-10  Latin America & Caribbean
## 659  2.574400e+11         2023-05-10  Latin America & Caribbean
## 660  2.367417e+11         2023-05-10  Latin America & Caribbean
## 661  2.287886e+11         2023-05-10  Latin America & Caribbean
## 662  1.897200e+11         2023-05-10  Latin America & Caribbean
## 663  1.413524e+11         2023-05-10  Latin America & Caribbean
## 664  7.663690e+10         2023-05-10  Latin America & Caribbean
## 665  1.262068e+11         2023-05-10  Latin America & Caribbean
## 666  1.111062e+11         2023-05-10  Latin America & Caribbean
## 667  1.109344e+11         2023-05-10  Latin America & Caribbean
## 668  8.841667e+10         2023-05-10  Latin America & Caribbean
## 669  7.909200e+10         2023-05-10  Latin America & Caribbean
## 670  1.039791e+11         2023-05-10  Latin America & Caribbean
## 671  8.430749e+10         2023-05-10  Latin America & Caribbean
## 672  7.867684e+10         2023-05-10  Latin America & Caribbean
## 673  7.696192e+10         2023-05-10  Latin America & Caribbean
## 674  6.925233e+10         2023-05-10  Latin America & Caribbean
## 675  5.808287e+10         2023-05-10  Latin America & Caribbean
## 676  5.678100e+10         2023-05-10  Latin America & Caribbean
## 677  5.116950e+10         2023-05-10  Latin America & Caribbean
## 678  5.243865e+10         2023-05-10  Latin America & Caribbean
## 679  7.243678e+10         2023-05-10  Latin America & Caribbean
## 680  5.254400e+10         2023-05-10  Latin America & Caribbean
## 681  3.473300e+10         2023-05-10  Latin America & Caribbean
## 682  3.329320e+10         2023-05-10  Latin America & Caribbean
## 683  3.158421e+10         2023-05-10  Latin America & Caribbean
## 684  3.125628e+10         2023-05-10  Latin America & Caribbean
## 685  2.643686e+10         2023-05-10  Latin America & Caribbean
## 686  2.425667e+10         2023-05-10  Latin America & Caribbean
## 687  2.863047e+10         2023-05-10  Latin America & Caribbean
## 688  2.834471e+10         2023-05-10  Latin America & Caribbean
## 689  2.560525e+10         2023-05-10  Latin America & Caribbean
## 690  1.827212e+10         2023-05-10  Latin America & Caribbean
## 691  2.445060e+10         2023-05-10  Latin America & Caribbean
## 692            NA         2023-05-10  Latin America & Caribbean
## 693            NA         2023-05-10  Latin America & Caribbean
## 694            NA         2023-05-10      Europe & Central Asia
## 695  1.386141e+10         2023-05-10      Europe & Central Asia
## 696  1.264170e+10         2023-05-10      Europe & Central Asia
## 697  1.361929e+10         2023-05-10      Europe & Central Asia
## 698  1.245794e+10         2023-05-10      Europe & Central Asia
## 699  1.152746e+10         2023-05-10      Europe & Central Asia
## 700  1.054614e+10         2023-05-10      Europe & Central Asia
## 701  1.055334e+10         2023-05-10      Europe & Central Asia
## 702  1.160951e+10         2023-05-10      Europe & Central Asia
## 703  1.112147e+10         2023-05-10      Europe & Central Asia
## 704  1.061932e+10         2023-05-10      Europe & Central Asia
## 705  1.014211e+10         2023-05-10      Europe & Central Asia
## 706  9.260285e+09         2023-05-10      Europe & Central Asia
## 707  8.647937e+09         2023-05-10      Europe & Central Asia
## 708  1.166204e+10         2023-05-10      Europe & Central Asia
## 709  9.206302e+09         2023-05-10      Europe & Central Asia
## 710  6.384452e+09         2023-05-10      Europe & Central Asia
## 711  4.900470e+09         2023-05-10      Europe & Central Asia
## 712  3.576615e+09         2023-05-10      Europe & Central Asia
## 713  2.807061e+09         2023-05-10      Europe & Central Asia
## 714  2.376335e+09         2023-05-10      Europe & Central Asia
## 715  2.118468e+09         2023-05-10      Europe & Central Asia
## 716  1.911564e+09         2023-05-10      Europe & Central Asia
## 717  1.845482e+09         2023-05-10      Europe & Central Asia
## 718  1.893726e+09         2023-05-10      Europe & Central Asia
## 719  1.639492e+09         2023-05-10      Europe & Central Asia
## 720  1.596969e+09         2023-05-10      Europe & Central Asia
## 721  1.468317e+09         2023-05-10      Europe & Central Asia
## 722  1.315159e+09         2023-05-10      Europe & Central Asia
## 723  1.201313e+09         2023-05-10      Europe & Central Asia
## 724  1.272835e+09         2023-05-10      Europe & Central Asia
## 725  2.069870e+09         2023-05-10      Europe & Central Asia
## 726  2.256839e+09         2023-05-10      Europe & Central Asia
## 727            NA         2023-05-10      Europe & Central Asia
## 728            NA         2023-05-10      Europe & Central Asia
## 729            NA         2023-05-10      Europe & Central Asia
## 730            NA         2023-05-10      Europe & Central Asia
## 731            NA         2023-05-10      Europe & Central Asia
## 732            NA         2023-05-10      Europe & Central Asia
## 733            NA         2023-05-10      Europe & Central Asia
## 734            NA         2023-05-10      Europe & Central Asia
## 735            NA         2023-05-10      Europe & Central Asia
## 736            NA         2023-05-10      Europe & Central Asia
## 737            NA         2023-05-10      Europe & Central Asia
## 738            NA         2023-05-10      Europe & Central Asia
## 739            NA         2023-05-10      Europe & Central Asia
## 740            NA         2023-05-10      Europe & Central Asia
## 741            NA         2023-05-10      Europe & Central Asia
## 742            NA         2023-05-10      Europe & Central Asia
## 743            NA         2023-05-10      Europe & Central Asia
## 744            NA         2023-05-10      Europe & Central Asia
## 745            NA         2023-05-10      Europe & Central Asia
## 746            NA         2023-05-10      Europe & Central Asia
## 747            NA         2023-05-10      Europe & Central Asia
## 748            NA         2023-05-10      Europe & Central Asia
## 749            NA         2023-05-10      Europe & Central Asia
## 750            NA         2023-05-10      Europe & Central Asia
## 751            NA         2023-05-10      Europe & Central Asia
## 752            NA         2023-05-10      Europe & Central Asia
## 753            NA         2023-05-10      Europe & Central Asia
## 754            NA         2023-05-10      Europe & Central Asia
## 755            NA         2023-05-10      Europe & Central Asia
## 756            NA         2023-05-10      Europe & Central Asia
## 757            NA         2023-05-10  Latin America & Caribbean
## 758  3.126019e+09         2023-05-10  Latin America & Caribbean
## 759  2.610039e+09         2023-05-10  Latin America & Caribbean
## 760  3.368970e+09         2023-05-10  Latin America & Caribbean
## 761  3.202235e+09         2023-05-10  Latin America & Caribbean
## 762  3.092179e+09         2023-05-10  Latin America & Caribbean
## 763  2.983799e+09         2023-05-10  Latin America & Caribbean
## 764  2.963128e+09         2023-05-10  Latin America & Caribbean
## 765  2.791061e+09         2023-05-10  Latin America & Caribbean
## 766  2.727933e+09         2023-05-10  Latin America & Caribbean
## 767  2.615084e+09         2023-05-10  Latin America & Caribbean
## 768  2.637989e+09         2023-05-10  Latin America & Caribbean
## 769  2.453631e+09         2023-05-10  Latin America & Caribbean
## 770  2.553631e+09         2023-05-10  Latin America & Caribbean
## 771  2.843017e+09         2023-05-10  Latin America & Caribbean
## 772  2.677654e+09         2023-05-10  Latin America & Caribbean
## 773  2.469832e+09         2023-05-10  Latin America & Caribbean
## 774  2.359777e+09         2023-05-10  Latin America & Caribbean
## 775  2.254749e+09         2023-05-10  Latin America & Caribbean
## 776  2.044134e+09         2023-05-10  Latin America & Caribbean
## 777  1.962011e+09         2023-05-10  Latin America & Caribbean
## 778  1.896648e+09         2023-05-10  Latin America & Caribbean
## 779  1.873184e+09         2023-05-10  Latin America & Caribbean
## 780  1.722905e+09         2023-05-10  Latin America & Caribbean
## 781  1.665363e+09         2023-05-10  Latin America & Caribbean
## 782  1.531844e+09         2023-05-10  Latin America & Caribbean
## 783  1.379888e+09         2023-05-10  Latin America & Caribbean
## 784  1.320670e+09         2023-05-10  Latin America & Caribbean
## 785  1.245810e+09         2023-05-10  Latin America & Caribbean
## 786  1.083240e+09         2023-05-10  Latin America & Caribbean
## 787  9.586592e+08         2023-05-10  Latin America & Caribbean
## 788  8.720670e+08         2023-05-10  Latin America & Caribbean
## 789  7.648045e+08         2023-05-10  Latin America & Caribbean
## 790  6.955307e+08         2023-05-10  Latin America & Caribbean
## 791  5.966480e+08         2023-05-10  Latin America & Caribbean
## 792  4.877095e+08         2023-05-10  Latin America & Caribbean
## 793  4.055866e+08         2023-05-10  Latin America & Caribbean
## 794            NA         2023-05-10  Latin America & Caribbean
## 795            NA         2023-05-10  Latin America & Caribbean
## 796            NA         2023-05-10  Latin America & Caribbean
## 797            NA         2023-05-10  Latin America & Caribbean
## 798            NA         2023-05-10  Latin America & Caribbean
## 799            NA         2023-05-10  Latin America & Caribbean
## 800            NA         2023-05-10  Latin America & Caribbean
## 801            NA         2023-05-10  Latin America & Caribbean
## 802            NA         2023-05-10  Latin America & Caribbean
## 803            NA         2023-05-10  Latin America & Caribbean
## 804            NA         2023-05-10  Latin America & Caribbean
## 805            NA         2023-05-10  Latin America & Caribbean
## 806            NA         2023-05-10  Latin America & Caribbean
## 807            NA         2023-05-10  Latin America & Caribbean
## 808            NA         2023-05-10  Latin America & Caribbean
## 809            NA         2023-05-10  Latin America & Caribbean
## 810            NA         2023-05-10  Latin America & Caribbean
## 811            NA         2023-05-10  Latin America & Caribbean
## 812            NA         2023-05-10  Latin America & Caribbean
## 813            NA         2023-05-10  Latin America & Caribbean
## 814            NA         2023-05-10  Latin America & Caribbean
## 815            NA         2023-05-10  Latin America & Caribbean
## 816            NA         2023-05-10  Latin America & Caribbean
## 817            NA         2023-05-10  Latin America & Caribbean
## 818            NA         2023-05-10  Latin America & Caribbean
## 819            NA         2023-05-10  Latin America & Caribbean
## 820            NA         2023-05-10        East Asia & Pacific
## 821  1.552667e+12         2023-05-10        East Asia & Pacific
## 822  1.326901e+12         2023-05-10        East Asia & Pacific
## 823  1.392228e+12         2023-05-10        East Asia & Pacific
## 824  1.428289e+12         2023-05-10        East Asia & Pacific
## 825  1.326516e+12         2023-05-10        East Asia & Pacific
## 826  1.206535e+12         2023-05-10        East Asia & Pacific
## 827  1.350616e+12         2023-05-10        East Asia & Pacific
## 828  1.467545e+12         2023-05-10        East Asia & Pacific
## 829  1.576380e+12         2023-05-10        East Asia & Pacific
## 830  1.546892e+12         2023-05-10        East Asia & Pacific
## 831  1.398406e+12         2023-05-10        East Asia & Pacific
## 832  1.148610e+12         2023-05-10        East Asia & Pacific
## 833  9.286269e+11         2023-05-10        East Asia & Pacific
## 834  1.055643e+12         2023-05-10        East Asia & Pacific
## 835  8.544273e+11         2023-05-10        East Asia & Pacific
## 836  7.479066e+11         2023-05-10        East Asia & Pacific
## 837  6.953285e+11         2023-05-10        East Asia & Pacific
## 838  6.143264e+11         2023-05-10        East Asia & Pacific
## 839  4.674980e+11         2023-05-10        East Asia & Pacific
## 840  3.955808e+11         2023-05-10        East Asia & Pacific
## 841  3.793582e+11         2023-05-10        East Asia & Pacific
## 842  4.158513e+11         2023-05-10        East Asia & Pacific
## 843  3.893896e+11         2023-05-10        East Asia & Pacific
## 844  3.996609e+11         2023-05-10        East Asia & Pacific
## 845  4.356143e+11         2023-05-10        East Asia & Pacific
## 846  4.013111e+11         2023-05-10        East Asia & Pacific
## 847  3.681408e+11         2023-05-10        East Asia & Pacific
## 848  3.228094e+11         2023-05-10        East Asia & Pacific
## 849  3.121381e+11         2023-05-10        East Asia & Pacific
## 850  3.255318e+11         2023-05-10        East Asia & Pacific
## 851  3.259870e+11         2023-05-10        East Asia & Pacific
## 852  3.114336e+11         2023-05-10        East Asia & Pacific
## 853  2.998779e+11         2023-05-10        East Asia & Pacific
## 854  2.361540e+11         2023-05-10        East Asia & Pacific
## 855  1.894878e+11         2023-05-10        East Asia & Pacific
## 856  1.824720e+11         2023-05-10        East Asia & Pacific
## 857  1.806336e+11         2023-05-10        East Asia & Pacific
## 858  1.935193e+11         2023-05-10        East Asia & Pacific
## 859  1.772672e+11         2023-05-10        East Asia & Pacific
## 860  1.940373e+11         2023-05-10        East Asia & Pacific
## 861  1.768919e+11         2023-05-10        East Asia & Pacific
## 862  1.499844e+11         2023-05-10        East Asia & Pacific
## 863  1.348983e+11         2023-05-10        East Asia & Pacific
## 864  1.184954e+11         2023-05-10        East Asia & Pacific
## 865  1.103510e+11         2023-05-10        East Asia & Pacific
## 866  1.050662e+11         2023-05-10        East Asia & Pacific
## 867  9.730438e+10         2023-05-10        East Asia & Pacific
## 868  8.896389e+10         2023-05-10        East Asia & Pacific
## 869  6.383216e+10         2023-05-10        East Asia & Pacific
## 870  5.204206e+10         2023-05-10        East Asia & Pacific
## 871  4.521447e+10         2023-05-10        East Asia & Pacific
## 872  4.133162e+10         2023-05-10        East Asia & Pacific
## 873  3.668160e+10         2023-05-10        East Asia & Pacific
## 874  3.271251e+10         2023-05-10        East Asia & Pacific
## 875  3.044126e+10         2023-05-10        East Asia & Pacific
## 876  2.730653e+10         2023-05-10        East Asia & Pacific
## 877  2.597491e+10         2023-05-10        East Asia & Pacific
## 878  2.379998e+10         2023-05-10        East Asia & Pacific
## 879  2.153881e+10         2023-05-10        East Asia & Pacific
## 880  1.992160e+10         2023-05-10        East Asia & Pacific
## 881  1.968194e+10         2023-05-10        East Asia & Pacific
## 882  1.860567e+10         2023-05-10        East Asia & Pacific
## 883            NA         2023-05-10      Europe & Central Asia
## 884  4.803684e+11         2023-05-10      Europe & Central Asia
## 885  4.352252e+11         2023-05-10      Europe & Central Asia
## 886  4.446212e+11         2023-05-10      Europe & Central Asia
## 887  4.549912e+11         2023-05-10      Europe & Central Asia
## 888  4.172612e+11         2023-05-10      Europe & Central Asia
## 889  3.958374e+11         2023-05-10      Europe & Central Asia
## 890  3.819711e+11         2023-05-10      Europe & Central Asia
## 891  4.425848e+11         2023-05-10      Europe & Central Asia
## 892  4.301910e+11         2023-05-10      Europe & Central Asia
## 893  4.094018e+11         2023-05-10      Europe & Central Asia
## 894  4.316852e+11         2023-05-10      Europe & Central Asia
## 895  3.922751e+11         2023-05-10      Europe & Central Asia
## 896  4.017587e+11         2023-05-10      Europe & Central Asia
## 897  4.320519e+11         2023-05-10      Europe & Central Asia
## 898  3.891856e+11         2023-05-10      Europe & Central Asia
## 899  3.362801e+11         2023-05-10      Europe & Central Asia
## 900  3.160923e+11         2023-05-10      Europe & Central Asia
## 901  3.014576e+11         2023-05-10      Europe & Central Asia
## 902  2.622736e+11         2023-05-10      Europe & Central Asia
## 903  2.143949e+11         2023-05-10      Europe & Central Asia
## 904  1.975088e+11         2023-05-10      Europe & Central Asia
## 905  1.972896e+11         2023-05-10      Europe & Central Asia
## 906  2.172591e+11         2023-05-10      Europe & Central Asia
## 907  2.182599e+11         2023-05-10      Europe & Central Asia
## 908  2.127903e+11         2023-05-10      Europe & Central Asia
## 909  2.372509e+11         2023-05-10      Europe & Central Asia
## 910  2.410383e+11         2023-05-10      Europe & Central Asia
## 911  2.035352e+11         2023-05-10      Europe & Central Asia
## 912  1.903797e+11         2023-05-10      Europe & Central Asia
## 913  1.950781e+11         2023-05-10      Europe & Central Asia
## 914  1.737942e+11         2023-05-10      Europe & Central Asia
## 915  1.664634e+11         2023-05-10      Europe & Central Asia
## 916  1.331058e+11         2023-05-10      Europe & Central Asia
## 917  1.333394e+11         2023-05-10      Europe & Central Asia
## 918  1.241684e+11         2023-05-10      Europe & Central Asia
## 919  9.903616e+10         2023-05-10      Europe & Central Asia
## 920  6.938677e+10         2023-05-10      Europe & Central Asia
## 921  6.798534e+10         2023-05-10      Europe & Central Asia
## 922  7.212102e+10         2023-05-10      Europe & Central Asia
## 923  7.127529e+10         2023-05-10      Europe & Central Asia
## 924  7.103423e+10         2023-05-10      Europe & Central Asia
## 925  8.205891e+10         2023-05-10      Europe & Central Asia
## 926  7.393730e+10         2023-05-10      Europe & Central Asia
## 927  6.205226e+10         2023-05-10      Europe & Central Asia
## 928  5.154576e+10         2023-05-10      Europe & Central Asia
## 929  4.295998e+10         2023-05-10      Europe & Central Asia
## 930  4.005921e+10         2023-05-10      Europe & Central Asia
## 931  3.518930e+10         2023-05-10      Europe & Central Asia
## 932  2.951547e+10         2023-05-10      Europe & Central Asia
## 933  2.205961e+10         2023-05-10      Europe & Central Asia
## 934  1.785849e+10         2023-05-10      Europe & Central Asia
## 935  1.537301e+10         2023-05-10      Europe & Central Asia
## 936  1.358280e+10         2023-05-10      Europe & Central Asia
## 937  1.244063e+10         2023-05-10      Europe & Central Asia
## 938  1.157943e+10         2023-05-10      Europe & Central Asia
## 939  1.088768e+10         2023-05-10      Europe & Central Asia
## 940  9.994071e+09         2023-05-10      Europe & Central Asia
## 941  9.169984e+09         2023-05-10      Europe & Central Asia
## 942  8.374175e+09         2023-05-10      Europe & Central Asia
## 943  7.756110e+09         2023-05-10      Europe & Central Asia
## 944  7.311750e+09         2023-05-10      Europe & Central Asia
## 945  6.592694e+09         2023-05-10      Europe & Central Asia
## 946            NA         2023-05-10      Europe & Central Asia
## 947  5.462218e+10         2023-05-10      Europe & Central Asia
## 948  4.269300e+10         2023-05-10      Europe & Central Asia
## 949  4.817424e+10         2023-05-10      Europe & Central Asia
## 950  4.711294e+10         2023-05-10      Europe & Central Asia
## 951  4.086556e+10         2023-05-10      Europe & Central Asia
## 952  3.786752e+10         2023-05-10      Europe & Central Asia
## 953  5.307437e+10         2023-05-10      Europe & Central Asia
## 954  7.524429e+10         2023-05-10      Europe & Central Asia
## 955  7.416444e+10         2023-05-10      Europe & Central Asia
## 956  6.968394e+10         2023-05-10      Europe & Central Asia
## 957  6.595163e+10         2023-05-10      Europe & Central Asia
## 958  5.290929e+10         2023-05-10      Europe & Central Asia
## 959  4.429149e+10         2023-05-10      Europe & Central Asia
## 960  4.885248e+10         2023-05-10      Europe & Central Asia
## 961  3.305034e+10         2023-05-10      Europe & Central Asia
## 962  2.098299e+10         2023-05-10      Europe & Central Asia
## 963  1.324572e+10         2023-05-10      Europe & Central Asia
## 964  8.680370e+09         2023-05-10      Europe & Central Asia
## 965  7.276754e+09         2023-05-10      Europe & Central Asia
## 966  6.235857e+09         2023-05-10      Europe & Central Asia
## 967  5.707720e+09         2023-05-10      Europe & Central Asia
## 968  5.272798e+09         2023-05-10      Europe & Central Asia
## 969  4.581432e+09         2023-05-10      Europe & Central Asia
## 970  4.446369e+09         2023-05-10      Europe & Central Asia
## 971  3.962238e+09         2023-05-10      Europe & Central Asia
## 972  3.176334e+09         2023-05-10      Europe & Central Asia
## 973  2.417356e+09         2023-05-10      Europe & Central Asia
## 974  1.193312e+09         2023-05-10      Europe & Central Asia
## 975  1.570000e+09         2023-05-10      Europe & Central Asia
## 976  4.463056e+08         2023-05-10      Europe & Central Asia
## 977  8.792366e+09         2023-05-10      Europe & Central Asia
## 978  8.858006e+09         2023-05-10      Europe & Central Asia
## 979            NA         2023-05-10      Europe & Central Asia
## 980            NA         2023-05-10      Europe & Central Asia
## 981            NA         2023-05-10      Europe & Central Asia
## 982            NA         2023-05-10      Europe & Central Asia
## 983            NA         2023-05-10      Europe & Central Asia
## 984            NA         2023-05-10      Europe & Central Asia
## 985            NA         2023-05-10      Europe & Central Asia
## 986            NA         2023-05-10      Europe & Central Asia
## 987            NA         2023-05-10      Europe & Central Asia
## 988            NA         2023-05-10      Europe & Central Asia
## 989            NA         2023-05-10      Europe & Central Asia
## 990            NA         2023-05-10      Europe & Central Asia
## 991            NA         2023-05-10      Europe & Central Asia
## 992            NA         2023-05-10      Europe & Central Asia
## 993            NA         2023-05-10      Europe & Central Asia
## 994            NA         2023-05-10      Europe & Central Asia
## 995            NA         2023-05-10      Europe & Central Asia
## 996            NA         2023-05-10      Europe & Central Asia
## 997            NA         2023-05-10      Europe & Central Asia
## 998            NA         2023-05-10      Europe & Central Asia
## 999            NA         2023-05-10      Europe & Central Asia
## 1000           NA         2023-05-10      Europe & Central Asia
## 1001           NA         2023-05-10      Europe & Central Asia
## 1002           NA         2023-05-10      Europe & Central Asia
## 1003           NA         2023-05-10      Europe & Central Asia
## 1004           NA         2023-05-10      Europe & Central Asia
## 1005           NA         2023-05-10      Europe & Central Asia
## 1006           NA         2023-05-10      Europe & Central Asia
## 1007           NA         2023-05-10      Europe & Central Asia
## 1008           NA         2023-05-10      Europe & Central Asia
## 1009           NA         2023-05-10  Latin America & Caribbean
## 1010 1.120860e+10         2023-05-10  Latin America & Caribbean
## 1011 9.699500e+09         2023-05-10  Latin America & Caribbean
## 1012 1.319280e+10         2023-05-10  Latin America & Caribbean
## 1013 1.275580e+10         2023-05-10  Latin America & Caribbean
## 1014 1.235760e+10         2023-05-10  Latin America & Caribbean
## 1015 1.183460e+10         2023-05-10  Latin America & Caribbean
## 1016 1.186190e+10         2023-05-10  Latin America & Caribbean
## 1017 1.117610e+10         2023-05-10  Latin America & Caribbean
## 1018 1.056280e+10         2023-05-10  Latin America & Caribbean
## 1019 1.072050e+10         2023-05-10  Latin America & Caribbean
## 1020 1.007045e+10         2023-05-10  Latin America & Caribbean
## 1021 1.009576e+10         2023-05-10  Latin America & Caribbean
## 1022 9.981960e+09         2023-05-10  Latin America & Caribbean
## 1023 1.052600e+10         2023-05-10  Latin America & Caribbean
## 1024 1.061834e+10         2023-05-10  Latin America & Caribbean
## 1025 1.016725e+10         2023-05-10  Latin America & Caribbean
## 1026 9.836200e+09         2023-05-10  Latin America & Caribbean
## 1027 9.055290e+09         2023-05-10  Latin America & Caribbean
## 1028 8.870090e+09         2023-05-10  Latin America & Caribbean
## 1029 8.881160e+09         2023-05-10  Latin America & Caribbean
## 1030 8.317830e+09         2023-05-10  Latin America & Caribbean
## 1031 8.076470e+09         2023-05-10  Latin America & Caribbean
## 1032 7.683870e+09         2023-05-10  Latin America & Caribbean
## 1033 6.833220e+09         2023-05-10  Latin America & Caribbean
## 1034 6.332360e+09         2023-05-10  Latin America & Caribbean
## 1035 3.609000e+09         2023-05-10  Latin America & Caribbean
## 1036 3.429000e+09         2023-05-10  Latin America & Caribbean
## 1037 3.259000e+09         2023-05-10  Latin America & Caribbean
## 1038 3.092000e+09         2023-05-10  Latin America & Caribbean
## 1039 3.109000e+09         2023-05-10  Latin America & Caribbean
## 1040 3.111160e+09         2023-05-10  Latin America & Caribbean
## 1041 3.166000e+09         2023-05-10  Latin America & Caribbean
## 1042 3.062000e+09         2023-05-10  Latin America & Caribbean
## 1043 2.817900e+09         2023-05-10  Latin America & Caribbean
## 1044 2.714000e+09         2023-05-10  Latin America & Caribbean
## 1045 2.472500e+09         2023-05-10  Latin America & Caribbean
## 1046 2.320700e+09         2023-05-10  Latin America & Caribbean
## 1047 2.041100e+09         2023-05-10  Latin America & Caribbean
## 1048 1.732800e+09         2023-05-10  Latin America & Caribbean
## 1049 1.578300e+09         2023-05-10  Latin America & Caribbean
## 1050 1.426500e+09         2023-05-10  Latin America & Caribbean
## 1051 1.335300e+09         2023-05-10  Latin America & Caribbean
## 1052 1.139800e+09         2023-05-10  Latin America & Caribbean
## 1053 8.324000e+08         2023-05-10  Latin America & Caribbean
## 1054 7.130000e+08         2023-05-10  Latin America & Caribbean
## 1055 6.421000e+08         2023-05-10  Latin America & Caribbean
## 1056 5.962000e+08         2023-05-10  Latin America & Caribbean
## 1057 6.324000e+08         2023-05-10  Latin America & Caribbean
## 1058 6.709000e+08         2023-05-10  Latin America & Caribbean
## 1059 5.909000e+08         2023-05-10  Latin America & Caribbean
## 1060 5.734000e+08         2023-05-10  Latin America & Caribbean
## 1061 5.384232e+08         2023-05-10  Latin America & Caribbean
## 1062 5.281373e+08         2023-05-10  Latin America & Caribbean
## 1063 4.449020e+08         2023-05-10  Latin America & Caribbean
## 1064 3.901961e+08         2023-05-10  Latin America & Caribbean
## 1065 3.400000e+08         2023-05-10  Latin America & Caribbean
## 1066 3.003922e+08         2023-05-10  Latin America & Caribbean
## 1067 2.666667e+08         2023-05-10  Latin America & Caribbean
## 1068 2.377451e+08         2023-05-10  Latin America & Caribbean
## 1069 2.122549e+08         2023-05-10  Latin America & Caribbean
## 1070 1.900980e+08         2023-05-10  Latin America & Caribbean
## 1071 1.698039e+08         2023-05-10  Latin America & Caribbean
## 1072           NA         2023-05-10 Middle East & North Africa
## 1073 3.886866e+10         2023-05-10 Middle East & North Africa
## 1074 3.472336e+10         2023-05-10 Middle East & North Africa
## 1075 3.865332e+10         2023-05-10 Middle East & North Africa
## 1076 3.780201e+10         2023-05-10 Middle East & North Africa
## 1077 3.547378e+10         2023-05-10 Middle East & North Africa
## 1078 3.223497e+10         2023-05-10 Middle East & North Africa
## 1079 3.105064e+10         2023-05-10 Middle East & North Africa
## 1080 3.338771e+10         2023-05-10 Middle East & North Africa
## 1081 3.253947e+10         2023-05-10 Middle East & North Africa
## 1082 3.074931e+10         2023-05-10 Middle East & North Africa
## 1083 2.877660e+10         2023-05-10 Middle East & North Africa
## 1084 2.571327e+10         2023-05-10 Middle East & North Africa
## 1085 2.293822e+10         2023-05-10 Middle East & North Africa
## 1086 2.571090e+10         2023-05-10 Middle East & North Africa
## 1087 2.173000e+10         2023-05-10 Middle East & North Africa
## 1088 1.850476e+10         2023-05-10 Middle East & North Africa
## 1089 1.596872e+10         2023-05-10 Middle East & North Africa
## 1090 1.315016e+10         2023-05-10 Middle East & North Africa
## 1091 1.107481e+10         2023-05-10 Middle East & North Africa
## 1092 9.593511e+09         2023-05-10 Middle East & North Africa
## 1093 8.976197e+09         2023-05-10 Middle East & North Africa
## 1094 9.062899e+09         2023-05-10 Middle East & North Africa
## 1095 6.621010e+09         2023-05-10 Middle East & North Africa
## 1096 6.183777e+09         2023-05-10 Middle East & North Africa
## 1097 6.349202e+09         2023-05-10 Middle East & North Africa
## 1098 6.101861e+09         2023-05-10 Middle East & North Africa
## 1099 5.849468e+09         2023-05-10 Middle East & North Africa
## 1100 5.567553e+09         2023-05-10 Middle East & North Africa
## 1101 5.200266e+09         2023-05-10 Middle East & North Africa
## 1102 4.751064e+09         2023-05-10 Middle East & North Africa
## 1103 4.616223e+09         2023-05-10 Middle East & North Africa
## 1104 4.229787e+09         2023-05-10 Middle East & North Africa
## 1105 3.863564e+09         2023-05-10 Middle East & North Africa
## 1106 3.702394e+09         2023-05-10 Middle East & North Africa
## 1107 3.392021e+09         2023-05-10 Middle East & North Africa
## 1108 3.052394e+09         2023-05-10 Middle East & North Africa
## 1109 3.651862e+09         2023-05-10 Middle East & North Africa
## 1110 3.905585e+09         2023-05-10 Middle East & North Africa
## 1111 3.735106e+09         2023-05-10 Middle East & North Africa
## 1112 3.645745e+09         2023-05-10 Middle East & North Africa
## 1113 3.467819e+09         2023-05-10 Middle East & North Africa
## 1114 3.072698e+09         2023-05-10 Middle East & North Africa
## 1115           NA         2023-05-10 Middle East & North Africa
## 1116           NA         2023-05-10 Middle East & North Africa
## 1117           NA         2023-05-10 Middle East & North Africa
## 1118           NA         2023-05-10 Middle East & North Africa
## 1119           NA         2023-05-10 Middle East & North Africa
## 1120           NA         2023-05-10 Middle East & North Africa
## 1121           NA         2023-05-10 Middle East & North Africa
## 1122           NA         2023-05-10 Middle East & North Africa
## 1123           NA         2023-05-10 Middle East & North Africa
## 1124           NA         2023-05-10 Middle East & North Africa
## 1125           NA         2023-05-10 Middle East & North Africa
## 1126           NA         2023-05-10 Middle East & North Africa
## 1127           NA         2023-05-10 Middle East & North Africa
## 1128           NA         2023-05-10 Middle East & North Africa
## 1129           NA         2023-05-10 Middle East & North Africa
## 1130           NA         2023-05-10 Middle East & North Africa
## 1131           NA         2023-05-10 Middle East & North Africa
## 1132           NA         2023-05-10 Middle East & North Africa
## 1133           NA         2023-05-10 Middle East & North Africa
## 1134           NA         2023-05-10 Middle East & North Africa
## 1135           NA         2023-05-10                 South Asia
## 1136 4.162649e+11         2023-05-10                 South Asia
## 1137 3.739021e+11         2023-05-10                 South Asia
## 1138 3.512385e+11         2023-05-10                 South Asia
## 1139 3.213790e+11         2023-05-10                 South Asia
## 1140 2.937546e+11         2023-05-10                 South Asia
## 1141 2.652362e+11         2023-05-10                 South Asia
## 1142 1.950787e+11         2023-05-10                 South Asia
## 1143 1.728855e+11         2023-05-10                 South Asia
## 1144 1.499905e+11         2023-05-10                 South Asia
## 1145 1.333557e+11         2023-05-10                 South Asia
## 1146 1.286379e+11         2023-05-10                 South Asia
## 1147 1.152791e+11         2023-05-10                 South Asia
## 1148 1.024778e+11         2023-05-10                 South Asia
## 1149 9.163128e+10         2023-05-10                 South Asia
## 1150 7.961189e+10         2023-05-10                 South Asia
## 1151 7.181908e+10         2023-05-10                 South Asia
## 1152 6.944294e+10         2023-05-10                 South Asia
## 1153 6.510854e+10         2023-05-10                 South Asia
## 1154 6.015893e+10         2023-05-10                 South Asia
## 1155 5.472408e+10         2023-05-10                 South Asia
## 1156 5.399129e+10         2023-05-10                 South Asia
## 1157 5.336979e+10         2023-05-10                 South Asia
## 1158 5.127057e+10         2023-05-10                 South Asia
## 1159 4.998456e+10         2023-05-10                 South Asia
## 1160 4.824431e+10         2023-05-10                 South Asia
## 1161 4.643848e+10         2023-05-10                 South Asia
## 1162 3.793975e+10         2023-05-10                 South Asia
## 1163 3.376866e+10         2023-05-10                 South Asia
## 1164 3.316652e+10         2023-05-10                 South Asia
## 1165 3.170887e+10         2023-05-10                 South Asia
## 1166 3.095748e+10         2023-05-10                 South Asia
## 1167 3.159834e+10         2023-05-10                 South Asia
## 1168 2.878171e+10         2023-05-10                 South Asia
## 1169 2.657901e+10         2023-05-10                 South Asia
## 1170 2.429803e+10         2023-05-10                 South Asia
## 1171 2.177403e+10         2023-05-10                 South Asia
## 1172 2.227842e+10         2023-05-10                 South Asia
## 1173 1.892084e+10         2023-05-10                 South Asia
## 1174 1.760905e+10         2023-05-10                 South Asia
## 1175 1.852540e+10         2023-05-10                 South Asia
## 1176 2.024969e+10         2023-05-10                 South Asia
## 1177 1.813805e+10         2023-05-10                 South Asia
## 1178 1.556548e+10         2023-05-10                 South Asia
## 1179 1.328177e+10         2023-05-10                 South Asia
## 1180 9.651149e+09         2023-05-10                 South Asia
## 1181 1.011711e+10         2023-05-10                 South Asia
## 1182 1.944835e+10         2023-05-10                 South Asia
## 1183 1.251246e+10         2023-05-10                 South Asia
## 1184 8.086726e+09         2023-05-10                 South Asia
## 1185 6.288246e+09         2023-05-10                 South Asia
## 1186 8.751843e+09         2023-05-10                 South Asia
## 1187 8.992722e+09         2023-05-10                 South Asia
## 1188 8.471006e+09         2023-05-10                 South Asia
## 1189 7.483685e+09         2023-05-10                 South Asia
## 1190 7.253575e+09         2023-05-10                 South Asia
## 1191 6.439688e+09         2023-05-10                 South Asia
## 1192 5.906637e+09         2023-05-10                 South Asia
## 1193 5.386055e+09         2023-05-10                 South Asia
## 1194 5.319458e+09         2023-05-10                 South Asia
## 1195 5.081413e+09         2023-05-10                 South Asia
## 1196 4.817580e+09         2023-05-10                 South Asia
## 1197 4.274894e+09         2023-05-10                 South Asia
## 1198           NA         2023-05-10  Latin America & Caribbean
## 1199 4.843800e+09         2023-05-10  Latin America & Caribbean
## 1200 4.671800e+09         2023-05-10  Latin America & Caribbean
## 1201 5.324250e+09         2023-05-10  Latin America & Caribbean
## 1202 5.097283e+09         2023-05-10  Latin America & Caribbean
## 1203 4.981589e+09         2023-05-10  Latin America & Caribbean
## 1204 4.832812e+09         2023-05-10  Latin America & Caribbean
## 1205 4.724691e+09         2023-05-10  Latin America & Caribbean
## 1206 4.696344e+09         2023-05-10  Latin America & Caribbean
## 1207 4.677248e+09         2023-05-10  Latin America & Caribbean
## 1208 4.610096e+09         2023-05-10  Latin America & Caribbean
## 1209 4.657699e+09         2023-05-10  Latin America & Caribbean
## 1210 4.529928e+09         2023-05-10  Latin America & Caribbean
## 1211 4.465657e+09         2023-05-10  Latin America & Caribbean
## 1212 4.784925e+09         2023-05-10  Latin America & Caribbean
## 1213 4.674007e+09         2023-05-10  Latin America & Caribbean
## 1214 4.217451e+09         2023-05-10  Latin America & Caribbean
## 1215 3.819500e+09         2023-05-10  Latin America & Caribbean
## 1216 3.444500e+09         2023-05-10  Latin America & Caribbean
## 1217 3.209500e+09         2023-05-10  Latin America & Caribbean
## 1218 3.106500e+09         2023-05-10  Latin America & Caribbean
## 1219 3.054500e+09         2023-05-10  Latin America & Caribbean
## 1220 3.059500e+09         2023-05-10  Latin America & Caribbean
## 1221 2.951822e+09         2023-05-10  Latin America & Caribbean
## 1222 2.817083e+09         2023-05-10  Latin America & Caribbean
## 1223 2.498384e+09         2023-05-10  Latin America & Caribbean
## 1224 2.363645e+09         2023-05-10  Latin America & Caribbean
## 1225 2.216974e+09         2023-05-10  Latin America & Caribbean
## 1226 2.151345e+09         2023-05-10  Latin America & Caribbean
## 1227 2.063342e+09         2023-05-10  Latin America & Caribbean
## 1228 1.957000e+09         2023-05-10  Latin America & Caribbean
## 1229 2.020584e+09         2023-05-10  Latin America & Caribbean
## 1230 2.012131e+09         2023-05-10  Latin America & Caribbean
## 1231 2.006165e+09         2023-05-10  Latin America & Caribbean
## 1232 1.812758e+09         2023-05-10  Latin America & Caribbean
## 1233 1.704370e+09         2023-05-10  Latin America & Caribbean
## 1234 1.547755e+09         2023-05-10  Latin America & Caribbean
## 1235 1.409536e+09         2023-05-10  Latin America & Caribbean
## 1236 1.346890e+09         2023-05-10  Latin America & Caribbean
## 1237 1.236017e+09         2023-05-10  Latin America & Caribbean
## 1238 1.163924e+09         2023-05-10  Latin America & Caribbean
## 1239 1.114205e+09         2023-05-10  Latin America & Caribbean
## 1240 1.012281e+09         2023-05-10  Latin America & Caribbean
## 1241 6.703625e+08         2023-05-10  Latin America & Caribbean
## 1242 5.528837e+08         2023-05-10  Latin America & Caribbean
## 1243 4.950977e+08         2023-05-10  Latin America & Caribbean
## 1244 4.359113e+08         2023-05-10  Latin America & Caribbean
## 1245 4.021786e+08         2023-05-10  Latin America & Caribbean
## 1246 3.118093e+08         2023-05-10  Latin America & Caribbean
## 1247           NA         2023-05-10  Latin America & Caribbean
## 1248           NA         2023-05-10  Latin America & Caribbean
## 1249           NA         2023-05-10  Latin America & Caribbean
## 1250           NA         2023-05-10  Latin America & Caribbean
## 1251           NA         2023-05-10  Latin America & Caribbean
## 1252           NA         2023-05-10  Latin America & Caribbean
## 1253           NA         2023-05-10  Latin America & Caribbean
## 1254           NA         2023-05-10  Latin America & Caribbean
## 1255           NA         2023-05-10  Latin America & Caribbean
## 1256           NA         2023-05-10  Latin America & Caribbean
## 1257           NA         2023-05-10  Latin America & Caribbean
## 1258           NA         2023-05-10  Latin America & Caribbean
## 1259           NA         2023-05-10  Latin America & Caribbean
## 1260           NA         2023-05-10  Latin America & Caribbean
## 1261           NA         2023-05-10      Europe & Central Asia
## 1262 6.820538e+10         2023-05-10      Europe & Central Asia
## 1263 6.137113e+10         2023-05-10      Europe & Central Asia
## 1264 6.440965e+10         2023-05-10      Europe & Central Asia
## 1265 6.003126e+10         2023-05-10      Europe & Central Asia
## 1266 5.472660e+10         2023-05-10      Europe & Central Asia
## 1267 4.772266e+10         2023-05-10      Europe & Central Asia
## 1268 5.645473e+10         2023-05-10      Europe & Central Asia
## 1269 7.881384e+10         2023-05-10      Europe & Central Asia
## 1270 7.552798e+10         2023-05-10      Europe & Central Asia
## 1271 6.568510e+10         2023-05-10      Europe & Central Asia
## 1272 6.175779e+10         2023-05-10      Europe & Central Asia
## 1273 5.722249e+10         2023-05-10      Europe & Central Asia
## 1274 5.087408e+10         2023-05-10      Europe & Central Asia
## 1275 6.076348e+10         2023-05-10      Europe & Central Asia
## 1276 4.527740e+10         2023-05-10      Europe & Central Asia
## 1277 3.695431e+10         2023-05-10      Europe & Central Asia
## 1278 3.020757e+10         2023-05-10      Europe & Central Asia
## 1279 2.314435e+10         2023-05-10      Europe & Central Asia
## 1280 1.782779e+10         2023-05-10      Europe & Central Asia
## 1281 1.459425e+10         2023-05-10      Europe & Central Asia
## 1282 1.235482e+10         2023-05-10      Europe & Central Asia
## 1283 1.273686e+10         2023-05-10      Europe & Central Asia
## 1284 1.213849e+10         2023-05-10      Europe & Central Asia
## 1285 1.522201e+10         2023-05-10      Europe & Central Asia
## 1286 1.412841e+10         2023-05-10      Europe & Central Asia
## 1287 1.475685e+10         2023-05-10      Europe & Central Asia
## 1288 1.397268e+10         2023-05-10      Europe & Central Asia
## 1289 1.493202e+10         2023-05-10      Europe & Central Asia
## 1290 1.628099e+10         2023-05-10      Europe & Central Asia
## 1291 1.703704e+10         2023-05-10      Europe & Central Asia
## 1292 1.800000e+10         2023-05-10      Europe & Central Asia
## 1293 2.165000e+10         2023-05-10      Europe & Central Asia
## 1294           NA         2023-05-10      Europe & Central Asia
## 1295           NA         2023-05-10      Europe & Central Asia
## 1296           NA         2023-05-10      Europe & Central Asia
## 1297           NA         2023-05-10      Europe & Central Asia
## 1298           NA         2023-05-10      Europe & Central Asia
## 1299           NA         2023-05-10      Europe & Central Asia
## 1300           NA         2023-05-10      Europe & Central Asia
## 1301           NA         2023-05-10      Europe & Central Asia
## 1302           NA         2023-05-10      Europe & Central Asia
## 1303           NA         2023-05-10      Europe & Central Asia
## 1304           NA         2023-05-10      Europe & Central Asia
## 1305           NA         2023-05-10      Europe & Central Asia
## 1306           NA         2023-05-10      Europe & Central Asia
## 1307           NA         2023-05-10      Europe & Central Asia
## 1308           NA         2023-05-10      Europe & Central Asia
## 1309           NA         2023-05-10      Europe & Central Asia
## 1310           NA         2023-05-10      Europe & Central Asia
## 1311           NA         2023-05-10      Europe & Central Asia
## 1312           NA         2023-05-10      Europe & Central Asia
## 1313           NA         2023-05-10      Europe & Central Asia
## 1314           NA         2023-05-10      Europe & Central Asia
## 1315           NA         2023-05-10      Europe & Central Asia
## 1316           NA         2023-05-10      Europe & Central Asia
## 1317           NA         2023-05-10      Europe & Central Asia
## 1318           NA         2023-05-10      Europe & Central Asia
## 1319           NA         2023-05-10      Europe & Central Asia
## 1320           NA         2023-05-10      Europe & Central Asia
## 1321           NA         2023-05-10      Europe & Central Asia
## 1322           NA         2023-05-10      Europe & Central Asia
## 1323           NA         2023-05-10      Europe & Central Asia
## 1324           NA         2023-05-10      Europe & Central Asia
## 1325 5.941042e+11         2023-05-10      Europe & Central Asia
## 1326 5.252118e+11         2023-05-10      Europe & Central Asia
## 1327 5.358309e+11         2023-05-10      Europe & Central Asia
## 1328 5.432991e+11         2023-05-10      Europe & Central Asia
## 1329 5.027647e+11         2023-05-10      Europe & Central Asia
## 1330 4.760628e+11         2023-05-10      Europe & Central Asia
## 1331 4.623356e+11         2023-05-10      Europe & Central Asia
## 1332 5.353902e+11         2023-05-10      Europe & Central Asia
## 1333 5.217910e+11         2023-05-10      Europe & Central Asia
## 1334 4.961529e+11         2023-05-10      Europe & Central Asia
## 1335 5.233304e+11         2023-05-10      Europe & Central Asia
## 1336 4.814209e+11         2023-05-10      Europe & Central Asia
## 1337 4.832542e+11         2023-05-10      Europe & Central Asia
## 1338 5.173281e+11         2023-05-10      Europe & Central Asia
## 1339 4.709222e+11         2023-05-10      Europe & Central Asia
## 1340 4.082598e+11         2023-05-10      Europe & Central Asia
## 1341 3.857148e+11         2023-05-10      Europe & Central Asia
## 1342 3.692147e+11         2023-05-10      Europe & Central Asia
## 1343 3.180825e+11         2023-05-10      Europe & Central Asia
## 1344 2.583836e+11         2023-05-10      Europe & Central Asia
## 1345 2.367461e+11         2023-05-10      Europe & Central Asia
## 1346 2.367925e+11         2023-05-10      Europe & Central Asia
## 1347 2.582457e+11         2023-05-10      Europe & Central Asia
## 1348 2.585283e+11         2023-05-10      Europe & Central Asia
## 1349 2.527081e+11         2023-05-10      Europe & Central Asia
## 1350 2.792014e+11         2023-05-10      Europe & Central Asia
## 1351 2.880256e+11         2023-05-10      Europe & Central Asia
## 1352 2.448841e+11         2023-05-10      Europe & Central Asia
## 1353 2.247218e+11         2023-05-10      Europe & Central Asia
## 1354 2.347817e+11         2023-05-10      Europe & Central Asia
## 1355 2.105110e+11         2023-05-10      Europe & Central Asia
## 1356 2.053317e+11         2023-05-10      Europe & Central Asia
## 1357 1.642211e+11         2023-05-10      Europe & Central Asia
## 1358 1.622991e+11         2023-05-10      Europe & Central Asia
## 1359 1.493944e+11         2023-05-10      Europe & Central Asia
## 1360 1.200188e+11         2023-05-10      Europe & Central Asia
## 1361 8.626826e+10         2023-05-10      Europe & Central Asia
## 1362 8.334953e+10         2023-05-10      Europe & Central Asia
## 1363 8.718424e+10         2023-05-10      Europe & Central Asia
## 1364 9.209593e+10         2023-05-10      Europe & Central Asia
## 1365 1.047300e+11         2023-05-10      Europe & Central Asia
## 1366 1.268293e+11         2023-05-10      Europe & Central Asia
## 1367 1.163155e+11         2023-05-10      Europe & Central Asia
## 1368 1.012465e+11         2023-05-10      Europe & Central Asia
## 1369 8.283991e+10         2023-05-10      Europe & Central Asia
## 1370 7.111388e+10         2023-05-10      Europe & Central Asia
## 1371 6.567819e+10         2023-05-10      Europe & Central Asia
## 1372 5.603308e+10         2023-05-10      Europe & Central Asia
## 1373 4.774380e+10         2023-05-10      Europe & Central Asia
## 1374 3.720942e+10         2023-05-10      Europe & Central Asia
## 1375 2.982166e+10         2023-05-10      Europe & Central Asia
## 1376 2.670620e+10         2023-05-10      Europe & Central Asia
## 1377 2.371074e+10         2023-05-10      Europe & Central Asia
## 1378 2.137635e+10         2023-05-10      Europe & Central Asia
## 1379 1.999204e+10         2023-05-10      Europe & Central Asia
## 1380 1.865188e+10         2023-05-10      Europe & Central Asia
## 1381 1.737146e+10         2023-05-10      Europe & Central Asia
## 1382 1.596011e+10         2023-05-10      Europe & Central Asia
## 1383 1.426002e+10         2023-05-10      Europe & Central Asia
## 1384 1.326402e+10         2023-05-10      Europe & Central Asia
## 1385 1.240015e+10         2023-05-10      Europe & Central Asia
## 1386 1.165872e+10         2023-05-10      Europe & Central Asia
## 1387           NA         2023-05-10  Latin America & Caribbean
## 1388 2.491500e+09         2023-05-10  Latin America & Caribbean
## 1389 2.080000e+09         2023-05-10  Latin America & Caribbean
## 1390 2.416500e+09         2023-05-10  Latin America & Caribbean
## 1391 2.315000e+09         2023-05-10  Latin America & Caribbean
## 1392 2.286000e+09         2023-05-10  Latin America & Caribbean
## 1393 2.258500e+09         2023-05-10  Latin America & Caribbean
## 1394 2.210500e+09         2023-05-10  Latin America & Caribbean
## 1395 2.138000e+09         2023-05-10  Latin America & Caribbean
## 1396 2.029500e+09         2023-05-10  Latin America & Caribbean
## 1397 1.903000e+09         2023-05-10  Latin America & Caribbean
## 1398 1.819500e+09         2023-05-10  Latin America & Caribbean
## 1399 1.738500e+09         2023-05-10  Latin America & Caribbean
## 1400 1.680500e+09         2023-05-10  Latin America & Caribbean
## 1401 1.729000e+09         2023-05-10  Latin America & Caribbean
## 1402 1.696000e+09         2023-05-10  Latin America & Caribbean
## 1403 1.581000e+09         2023-05-10  Latin America & Caribbean
## 1404 1.461500e+09         2023-05-10  Latin America & Caribbean
## 1405 1.389500e+09         2023-05-10  Latin America & Caribbean
## 1406 1.298000e+09         2023-05-10  Latin America & Caribbean
## 1407 1.233000e+09         2023-05-10  Latin America & Caribbean
## 1408 1.163000e+09         2023-05-10  Latin America & Caribbean
## 1409 1.116000e+09         2023-05-10  Latin America & Caribbean
## 1410 9.750000e+08         2023-05-10  Latin America & Caribbean
## 1411 9.140000e+08         2023-05-10  Latin America & Caribbean
## 1412 8.680000e+08         2023-05-10  Latin America & Caribbean
## 1413 8.515000e+08         2023-05-10  Latin America & Caribbean
## 1414 8.185000e+08         2023-05-10  Latin America & Caribbean
## 1415 7.715000e+08         2023-05-10  Latin America & Caribbean
## 1416 7.510000e+08         2023-05-10  Latin America & Caribbean
## 1417 6.935000e+08         2023-05-10  Latin America & Caribbean
## 1418 5.990000e+08         2023-05-10  Latin America & Caribbean
## 1419 5.495000e+08         2023-05-10  Latin America & Caribbean
## 1420 3.691339e+08         2023-05-10  Latin America & Caribbean
## 1421 3.200934e+08         2023-05-10  Latin America & Caribbean
## 1422 2.810826e+08         2023-05-10  Latin America & Caribbean
## 1423 2.316383e+08         2023-05-10  Latin America & Caribbean
## 1424 2.126437e+08         2023-05-10  Latin America & Caribbean
## 1425 2.143819e+08         2023-05-10  Latin America & Caribbean
## 1426 1.921032e+08         2023-05-10  Latin America & Caribbean
## 1427 1.822063e+08         2023-05-10  Latin America & Caribbean
## 1428 1.960899e+08         2023-05-10  Latin America & Caribbean
## 1429 1.979382e+08         2023-05-10  Latin America & Caribbean
## 1430 1.518000e+08         2023-05-10  Latin America & Caribbean
## 1431 1.363000e+08         2023-05-10  Latin America & Caribbean
## 1432 1.176500e+08         2023-05-10  Latin America & Caribbean
## 1433 9.690583e+07         2023-05-10  Latin America & Caribbean
## 1434 1.180663e+08         2023-05-10  Latin America & Caribbean
## 1435 1.032164e+08         2023-05-10  Latin America & Caribbean
## 1436 7.834356e+07         2023-05-10  Latin America & Caribbean
## 1437 6.606250e+07         2023-05-10  Latin America & Caribbean
## 1438 5.920732e+07         2023-05-10  Latin America & Caribbean
## 1439 5.323353e+07         2023-05-10  Latin America & Caribbean
## 1440 4.730539e+07         2023-05-10  Latin America & Caribbean
## 1441 4.491018e+07         2023-05-10  Latin America & Caribbean
## 1442 4.737931e+07         2023-05-10  Latin America & Caribbean
## 1443 4.440559e+07         2023-05-10  Latin America & Caribbean
## 1444 4.006993e+07         2023-05-10  Latin America & Caribbean
## 1445 3.619383e+07         2023-05-10  Latin America & Caribbean
## 1446 3.374941e+07         2023-05-10  Latin America & Caribbean
## 1447 3.185692e+07         2023-05-10  Latin America & Caribbean
## 1448 2.996437e+07         2023-05-10  Latin America & Caribbean
## 1449 2.807189e+07         2023-05-10  Latin America & Caribbean
## 1450           NA         2023-05-10         Sub-Saharan Africa
## 1451 1.714492e+10         2023-05-10         Sub-Saharan Africa
## 1452 1.565155e+10         2023-05-10         Sub-Saharan Africa
## 1453 1.439169e+10         2023-05-10         Sub-Saharan Africa
## 1454 1.426241e+10         2023-05-10         Sub-Saharan Africa
## 1455 1.270166e+10         2023-05-10         Sub-Saharan Africa
## 1456 1.182107e+10         2023-05-10         Sub-Saharan Africa
## 1457 1.138816e+10         2023-05-10         Sub-Saharan Africa
## 1458 1.328453e+10         2023-05-10         Sub-Saharan Africa
## 1459 1.251785e+10         2023-05-10         Sub-Saharan Africa
## 1460 1.114136e+10         2023-05-10         Sub-Saharan Africa
## 1461 1.069332e+10         2023-05-10         Sub-Saharan Africa
## 1462 9.535345e+09         2023-05-10         Sub-Saharan Africa
## 1463 9.738627e+09         2023-05-10         Sub-Saharan Africa
## 1464 9.787735e+09         2023-05-10         Sub-Saharan Africa
## 1465 8.169049e+09         2023-05-10         Sub-Saharan Africa
## 1466 7.034112e+09         2023-05-10         Sub-Saharan Africa
## 1467 6.567654e+09         2023-05-10         Sub-Saharan Africa
## 1468 6.190271e+09         2023-05-10         Sub-Saharan Africa
## 1469 5.349258e+09         2023-05-10         Sub-Saharan Africa
## 1470 4.194343e+09         2023-05-10         Sub-Saharan Africa
## 1471 3.666223e+09         2023-05-10         Sub-Saharan Africa
## 1472 3.519991e+09         2023-05-10         Sub-Saharan Africa
## 1473 3.677394e+09         2023-05-10         Sub-Saharan Africa
## 1474 2.455093e+09         2023-05-10         Sub-Saharan Africa
## 1475 2.268302e+09         2023-05-10         Sub-Saharan Africa
## 1476 2.361117e+09         2023-05-10         Sub-Saharan Africa
## 1477 2.169627e+09         2023-05-10         Sub-Saharan Africa
## 1478 1.598076e+09         2023-05-10         Sub-Saharan Africa
## 1479 2.274558e+09         2023-05-10         Sub-Saharan Africa
## 1480 1.695315e+09         2023-05-10         Sub-Saharan Africa
## 1481 1.986438e+09         2023-05-10         Sub-Saharan Africa
## 1482 1.959965e+09         2023-05-10         Sub-Saharan Africa
## 1483 1.502294e+09         2023-05-10         Sub-Saharan Africa
## 1484 1.620246e+09         2023-05-10         Sub-Saharan Africa
## 1485 1.562412e+09         2023-05-10         Sub-Saharan Africa
## 1486 1.336102e+09         2023-05-10         Sub-Saharan Africa
## 1487 1.045713e+09         2023-05-10         Sub-Saharan Africa
## 1488 1.051134e+09         2023-05-10         Sub-Saharan Africa
## 1489 1.095348e+09         2023-05-10         Sub-Saharan Africa
## 1490 1.267778e+09         2023-05-10         Sub-Saharan Africa
## 1491 1.291120e+09         2023-05-10         Sub-Saharan Africa
## 1492 1.405252e+09         2023-05-10         Sub-Saharan Africa
## 1493 1.186231e+09         2023-05-10         Sub-Saharan Africa
## 1494 9.288433e+08         2023-05-10         Sub-Saharan Africa
## 1495 7.500497e+08         2023-05-10         Sub-Saharan Africa
## 1496 6.984082e+08         2023-05-10         Sub-Saharan Africa
## 1497 6.768701e+08         2023-05-10         Sub-Saharan Africa
## 1498 5.546548e+08         2023-05-10         Sub-Saharan Africa
## 1499 5.043760e+08         2023-05-10         Sub-Saharan Africa
## 1500 4.103319e+08         2023-05-10         Sub-Saharan Africa
## 1501 3.350730e+08         2023-05-10         Sub-Saharan Africa
## 1502 3.336278e+08         2023-05-10         Sub-Saharan Africa
## 1503 3.307482e+08         2023-05-10         Sub-Saharan Africa
## 1504 3.263231e+08         2023-05-10         Sub-Saharan Africa
## 1505 3.062220e+08         2023-05-10         Sub-Saharan Africa
## 1506 3.029253e+08         2023-05-10         Sub-Saharan Africa
## 1507 2.899087e+08         2023-05-10         Sub-Saharan Africa
## 1508 2.698190e+08         2023-05-10         Sub-Saharan Africa
## 1509 2.539276e+08         2023-05-10         Sub-Saharan Africa
## 1510 2.364349e+08         2023-05-10         Sub-Saharan Africa
## 1511 2.356682e+08         2023-05-10         Sub-Saharan Africa
## 1512 2.261956e+08         2023-05-10         Sub-Saharan Africa
## 1513           NA         2023-05-10              North America
## 1514 7.286607e+09         2023-05-10              North America
## 1515 6.887147e+09         2023-05-10              North America
## 1516 7.423465e+09         2023-05-10              North America
## 1517 7.225977e+09         2023-05-10              North America
## 1518 7.142316e+09         2023-05-10              North America
## 1519 6.899911e+09         2023-05-10              North America
## 1520 6.654541e+09         2023-05-10              North America
## 1521 6.413988e+09         2023-05-10              North America
## 1522 6.465756e+09         2023-05-10              North America
## 1523 6.378188e+09         2023-05-10              North America
## 1524 6.312691e+09         2023-05-10              North America
## 1525 6.634526e+09         2023-05-10              North America
## 1526 6.656000e+09         2023-05-10              North America
## 1527 6.980000e+09         2023-05-10              North America
## 1528 6.767000e+09         2023-05-10              North America
## 1529 6.144000e+09         2023-05-10              North America
## 1530 4.868136e+09         2023-05-10              North America
## 1531 4.484703e+09         2023-05-10              North America
## 1532 4.186525e+09         2023-05-10              North America
## 1533 3.937228e+09         2023-05-10              North America
## 1534 3.680483e+09         2023-05-10              North America
## 1535 3.480219e+09         2023-05-10              North America
## 1536 3.324433e+09         2023-05-10              North America
## 1537 3.130748e+09         2023-05-10              North America
## 1538 2.932827e+09         2023-05-10              North America
## 1539 2.695390e+09         2023-05-10              North America
## 1540 2.030750e+09         2023-05-10              North America
## 1541 1.867160e+09         2023-05-10              North America
## 1542 1.820360e+09         2023-05-10              North America
## 1543 1.679900e+09         2023-05-10              North America
## 1544 1.634900e+09         2023-05-10              North America
## 1545 1.592400e+09         2023-05-10              North America
## 1546 1.501500e+09         2023-05-10              North America
## 1547 1.415100e+09         2023-05-10              North America
## 1548 1.296500e+09         2023-05-10              North America
## 1549 1.173500e+09         2023-05-10              North America
## 1550 1.039500e+09         2023-05-10              North America
## 1551 9.857000e+08         2023-05-10              North America
## 1552 8.894000e+08         2023-05-10              North America
## 1553 7.855000e+08         2023-05-10              North America
## 1554 7.391000e+08         2023-05-10              North America
## 1555 6.133000e+08         2023-05-10              North America
## 1556 5.172000e+08         2023-05-10              North America
## 1557 4.758000e+08         2023-05-10              North America
## 1558 4.470000e+08         2023-05-10              North America
## 1559 3.863000e+08         2023-05-10              North America
## 1560 3.450000e+08         2023-05-10              North America
## 1561 3.126000e+08         2023-05-10              North America
## 1562 2.695000e+08         2023-05-10              North America
## 1563 2.354000e+08         2023-05-10              North America
## 1564 2.111000e+08         2023-05-10              North America
## 1565 1.863000e+08         2023-05-10              North America
## 1566 1.649000e+08         2023-05-10              North America
## 1567 1.500000e+08         2023-05-10              North America
## 1568 1.551030e+08         2023-05-10              North America
## 1569 1.341734e+08         2023-05-10              North America
## 1570 1.143390e+08         2023-05-10              North America
## 1571 1.075667e+08         2023-05-10              North America
## 1572 9.636665e+07         2023-05-10              North America
## 1573 9.414999e+07         2023-05-10              North America
## 1574 8.924999e+07         2023-05-10              North America
## 1575 8.446665e+07         2023-05-10              North America
## 1576           NA         2023-05-10                 South Asia
## 1577 2.539553e+09         2023-05-10                 South Asia
## 1578 2.325184e+09         2023-05-10                 South Asia
## 1579 2.535657e+09         2023-05-10                 South Asia
## 1580 2.446866e+09         2023-05-10                 South Asia
## 1581 2.450365e+09         2023-05-10                 South Asia
## 1582 2.158972e+09         2023-05-10                 South Asia
## 1583 2.003598e+09         2023-05-10                 South Asia
## 1584 1.907091e+09         2023-05-10                 South Asia
## 1585 1.756216e+09         2023-05-10                 South Asia
## 1586 1.781281e+09         2023-05-10                 South Asia
## 1587 1.777101e+09         2023-05-10                 South Asia
## 1588 1.547991e+09         2023-05-10                 South Asia
## 1589 1.234014e+09         2023-05-10                 South Asia
## 1590 1.227809e+09         2023-05-10                 South Asia
## 1591 1.168309e+09         2023-05-10                 South Asia
## 1592 8.749899e+08         2023-05-10                 South Asia
## 1593 7.969381e+08         2023-05-10                 South Asia
## 1594 6.825239e+08         2023-05-10                 South Asia
## 1595 6.040420e+08         2023-05-10                 South Asia
## 1596 5.208496e+08         2023-05-10                 South Asia
## 1597 4.614445e+08         2023-05-10                 South Asia
## 1598 4.244641e+08         2023-05-10                 South Asia
## 1599 3.992688e+08         2023-05-10                 South Asia
## 1600 3.634528e+08         2023-05-10                 South Asia
## 1601 3.522610e+08         2023-05-10                 South Asia
## 1602 3.034355e+08         2023-05-10                 South Asia
## 1603 2.904648e+08         2023-05-10                 South Asia
## 1604 2.589856e+08         2023-05-10                 South Asia
## 1605 2.259981e+08         2023-05-10                 South Asia
## 1606 2.402158e+08         2023-05-10                 South Asia
## 1607 2.403200e+08         2023-05-10                 South Asia
## 1608 2.876582e+08         2023-05-10                 South Asia
## 1609 2.647252e+08         2023-05-10                 South Asia
## 1610 2.722410e+08         2023-05-10                 South Asia
## 1611 2.427709e+08         2023-05-10                 South Asia
## 1612 1.912307e+08         2023-05-10                 South Asia
## 1613 1.632723e+08         2023-05-10                 South Asia
## 1614 1.604600e+08         2023-05-10                 South Asia
## 1615 1.566872e+08         2023-05-10                 South Asia
## 1616 1.413665e+08         2023-05-10                 South Asia
## 1617 1.391504e+08         2023-05-10                 South Asia
## 1618 1.287174e+08         2023-05-10                 South Asia
## 1619           NA         2023-05-10                 South Asia
## 1620           NA         2023-05-10                 South Asia
## 1621           NA         2023-05-10                 South Asia
## 1622           NA         2023-05-10                 South Asia
## 1623           NA         2023-05-10                 South Asia
## 1624           NA         2023-05-10                 South Asia
## 1625           NA         2023-05-10                 South Asia
## 1626           NA         2023-05-10                 South Asia
## 1627           NA         2023-05-10                 South Asia
## 1628           NA         2023-05-10                 South Asia
## 1629           NA         2023-05-10                 South Asia
## 1630           NA         2023-05-10                 South Asia
## 1631           NA         2023-05-10                 South Asia
## 1632           NA         2023-05-10                 South Asia
## 1633           NA         2023-05-10                 South Asia
## 1634           NA         2023-05-10                 South Asia
## 1635           NA         2023-05-10                 South Asia
## 1636           NA         2023-05-10                 South Asia
## 1637           NA         2023-05-10                 South Asia
## 1638           NA         2023-05-10                 South Asia
## 1639           NA         2023-05-10  Latin America & Caribbean
## 1640 4.040821e+10         2023-05-10  Latin America & Caribbean
## 1641 3.662984e+10         2023-05-10  Latin America & Caribbean
## 1642 4.089532e+10         2023-05-10  Latin America & Caribbean
## 1643 4.028765e+10         2023-05-10  Latin America & Caribbean
## 1644 3.750864e+10         2023-05-10  Latin America & Caribbean
## 1645 3.394113e+10         2023-05-10  Latin America & Caribbean
## 1646 3.300020e+10         2023-05-10  Latin America & Caribbean
## 1647 3.299619e+10         2023-05-10  Latin America & Caribbean
## 1648 3.065934e+10         2023-05-10  Latin America & Caribbean
## 1649 2.708450e+10         2023-05-10  Latin America & Caribbean
## 1650 2.396303e+10         2023-05-10  Latin America & Caribbean
## 1651 1.964963e+10         2023-05-10  Latin America & Caribbean
## 1652 1.733999e+10         2023-05-10  Latin America & Caribbean
## 1653 1.667432e+10         2023-05-10  Latin America & Caribbean
## 1654 1.312018e+10         2023-05-10  Latin America & Caribbean
## 1655 1.145187e+10         2023-05-10  Latin America & Caribbean
## 1656 9.549078e+09         2023-05-10  Latin America & Caribbean
## 1657 8.773452e+09         2023-05-10  Latin America & Caribbean
## 1658 8.082365e+09         2023-05-10  Latin America & Caribbean
## 1659 7.905485e+09         2023-05-10  Latin America & Caribbean
## 1660 8.141538e+09         2023-05-10  Latin America & Caribbean
## 1661 8.397913e+09         2023-05-10  Latin America & Caribbean
## 1662 8.285076e+09         2023-05-10  Latin America & Caribbean
## 1663 8.497546e+09         2023-05-10  Latin America & Caribbean
## 1664 7.925673e+09         2023-05-10  Latin America & Caribbean
## 1665 7.396967e+09         2023-05-10  Latin America & Caribbean
## 1666 6.715220e+09         2023-05-10  Latin America & Caribbean
## 1667 5.981245e+09         2023-05-10  Latin America & Caribbean
## 1668 5.734677e+09         2023-05-10  Latin America & Caribbean
## 1669 5.643893e+09         2023-05-10  Latin America & Caribbean
## 1670 5.343274e+09         2023-05-10  Latin America & Caribbean
## 1671 4.867583e+09         2023-05-10  Latin America & Caribbean
## 1672 4.715979e+09         2023-05-10  Latin America & Caribbean
## 1673 4.597616e+09         2023-05-10  Latin America & Caribbean
## 1674 4.347956e+09         2023-05-10  Latin America & Caribbean
## 1675 3.959379e+09         2023-05-10  Latin America & Caribbean
## 1676 5.377277e+09         2023-05-10  Latin America & Caribbean
## 1677 6.169482e+09         2023-05-10  Latin America & Caribbean
## 1678 5.422656e+09         2023-05-10  Latin America & Caribbean
## 1679 5.594118e+09         2023-05-10  Latin America & Caribbean
## 1680 5.891607e+09         2023-05-10  Latin America & Caribbean
## 1681 4.537488e+09         2023-05-10  Latin America & Caribbean
## 1682 4.421344e+09         2023-05-10  Latin America & Caribbean
## 1683 3.758221e+09         2023-05-10  Latin America & Caribbean
## 1684 3.227436e+09         2023-05-10  Latin America & Caribbean
## 1685 2.731984e+09         2023-05-10  Latin America & Caribbean
## 1686 2.404698e+09         2023-05-10  Latin America & Caribbean
## 1687 2.100250e+09         2023-05-10  Latin America & Caribbean
## 1688 1.262969e+09         2023-05-10  Latin America & Caribbean
## 1689 1.257616e+09         2023-05-10  Latin America & Caribbean
## 1690 1.095623e+09         2023-05-10  Latin America & Caribbean
## 1691 1.017003e+09         2023-05-10  Latin America & Caribbean
## 1692 9.296296e+08         2023-05-10  Latin America & Caribbean
## 1693 8.579125e+08         2023-05-10  Latin America & Caribbean
## 1694 7.558081e+08         2023-05-10  Latin America & Caribbean
## 1695 6.691919e+08         2023-05-10  Latin America & Caribbean
## 1696 6.043771e+08         2023-05-10  Latin America & Caribbean
## 1697 5.394915e+08         2023-05-10  Latin America & Caribbean
## 1698 4.788060e+08         2023-05-10  Latin America & Caribbean
## 1699 4.446652e+08         2023-05-10  Latin America & Caribbean
## 1700 4.066846e+08         2023-05-10  Latin America & Caribbean
## 1701 3.738794e+08         2023-05-10  Latin America & Caribbean
## 1702           NA         2023-05-10      Europe & Central Asia
## 1703 2.336536e+10         2023-05-10      Europe & Central Asia
## 1704 1.995047e+10         2023-05-10      Europe & Central Asia
## 1705 2.020248e+10         2023-05-10      Europe & Central Asia
## 1706 2.018351e+10         2023-05-10      Europe & Central Asia
## 1707 1.808012e+10         2023-05-10      Europe & Central Asia
## 1708 1.691333e+10         2023-05-10      Europe & Central Asia
## 1709 1.621154e+10         2023-05-10      Europe & Central Asia
## 1710 1.855834e+10         2023-05-10      Europe & Central Asia
## 1711 1.817850e+10         2023-05-10      Europe & Central Asia
## 1712 1.722685e+10         2023-05-10      Europe & Central Asia
## 1713 1.864472e+10         2023-05-10      Europe & Central Asia
## 1714 1.717678e+10         2023-05-10      Europe & Central Asia
## 1715 1.761384e+10         2023-05-10      Europe & Central Asia
## 1716 1.911274e+10         2023-05-10      Europe & Central Asia
## 1717 1.577877e+10         2023-05-10      Europe & Central Asia
## 1718 1.286461e+10         2023-05-10      Europe & Central Asia
## 1719 1.122295e+10         2023-05-10      Europe & Central Asia
## 1720 1.015755e+10         2023-05-10      Europe & Central Asia
## 1721 8.498561e+09         2023-05-10      Europe & Central Asia
## 1722 6.728771e+09         2023-05-10      Europe & Central Asia
## 1723 5.800775e+09         2023-05-10      Europe & Central Asia
## 1724 5.567406e+09         2023-05-10      Europe & Central Asia
## 1725 4.685733e+09         2023-05-10      Europe & Central Asia
## 1726 4.116699e+09         2023-05-10      Europe & Central Asia
## 1727 3.671817e+09         2023-05-10      Europe & Central Asia
## 1728 2.786045e+09         2023-05-10      Europe & Central Asia
## 1729 1.866573e+09         2023-05-10      Europe & Central Asia
## 1730 1.255802e+09         2023-05-10      Europe & Central Asia
## 1731           NA         2023-05-10      Europe & Central Asia
## 1732           NA         2023-05-10      Europe & Central Asia
## 1733           NA         2023-05-10      Europe & Central Asia
## 1734           NA         2023-05-10      Europe & Central Asia
## 1735           NA         2023-05-10      Europe & Central Asia
## 1736           NA         2023-05-10      Europe & Central Asia
## 1737           NA         2023-05-10      Europe & Central Asia
## 1738           NA         2023-05-10      Europe & Central Asia
## 1739           NA         2023-05-10      Europe & Central Asia
## 1740           NA         2023-05-10      Europe & Central Asia
## 1741           NA         2023-05-10      Europe & Central Asia
## 1742           NA         2023-05-10      Europe & Central Asia
## 1743           NA         2023-05-10      Europe & Central Asia
## 1744           NA         2023-05-10      Europe & Central Asia
## 1745           NA         2023-05-10      Europe & Central Asia
## 1746           NA         2023-05-10      Europe & Central Asia
## 1747           NA         2023-05-10      Europe & Central Asia
## 1748           NA         2023-05-10      Europe & Central Asia
## 1749           NA         2023-05-10      Europe & Central Asia
## 1750           NA         2023-05-10      Europe & Central Asia
## 1751           NA         2023-05-10      Europe & Central Asia
## 1752           NA         2023-05-10      Europe & Central Asia
## 1753           NA         2023-05-10      Europe & Central Asia
## 1754           NA         2023-05-10      Europe & Central Asia
## 1755           NA         2023-05-10      Europe & Central Asia
## 1756           NA         2023-05-10      Europe & Central Asia
## 1757           NA         2023-05-10      Europe & Central Asia
## 1758           NA         2023-05-10      Europe & Central Asia
## 1759           NA         2023-05-10      Europe & Central Asia
## 1760           NA         2023-05-10      Europe & Central Asia
## 1761           NA         2023-05-10      Europe & Central Asia
## 1762           NA         2023-05-10      Europe & Central Asia
## 1763           NA         2023-05-10      Europe & Central Asia
## 1764           NA         2023-05-10      Europe & Central Asia
## 1765           NA         2023-05-10         Sub-Saharan Africa
## 1766 1.761479e+10         2023-05-10         Sub-Saharan Africa
## 1767 1.493007e+10         2023-05-10         Sub-Saharan Africa
## 1768 1.669593e+10         2023-05-10         Sub-Saharan Africa
## 1769 1.703190e+10         2023-05-10         Sub-Saharan Africa
## 1770 1.610518e+10         2023-05-10         Sub-Saharan Africa
## 1771 1.508258e+10         2023-05-10         Sub-Saharan Africa
## 1772 1.353074e+10         2023-05-10         Sub-Saharan Africa
## 1773 1.547006e+10         2023-05-10         Sub-Saharan Africa
## 1774 1.427175e+10         2023-05-10         Sub-Saharan Africa
## 1775 1.390751e+10         2023-05-10         Sub-Saharan Africa
## 1776 1.511072e+10         2023-05-10         Sub-Saharan Africa
## 1777 1.263732e+10         2023-05-10         Sub-Saharan Africa
## 1778 1.011852e+10         2023-05-10         Sub-Saharan Africa
## 1779 1.073076e+10         2023-05-10         Sub-Saharan Africa
## 1780 1.056727e+10         2023-05-10         Sub-Saharan Africa
## 1781 9.919158e+09         2023-05-10         Sub-Saharan Africa
## 1782 9.918907e+09         2023-05-10         Sub-Saharan Africa
## 1783 8.957468e+09         2023-05-10         Sub-Saharan Africa
## 1784 7.511582e+09         2023-05-10         Sub-Saharan Africa
## 1785 5.438857e+09         2023-05-10         Sub-Saharan Africa
## 1786 5.489608e+09         2023-05-10         Sub-Saharan Africa
## 1787 5.788330e+09         2023-05-10         Sub-Saharan Africa
## 1788 5.484257e+09         2023-05-10         Sub-Saharan Africa
## 1789 4.790459e+09         2023-05-10         Sub-Saharan Africa
## 1790 5.020215e+09         2023-05-10         Sub-Saharan Africa
## 1791 4.847753e+09         2023-05-10         Sub-Saharan Africa
## 1792 4.730611e+09         2023-05-10         Sub-Saharan Africa
## 1793 4.259331e+09         2023-05-10         Sub-Saharan Africa
## 1794 4.160086e+09         2023-05-10         Sub-Saharan Africa
## 1795 4.146514e+09         2023-05-10         Sub-Saharan Africa
## 1796 3.942793e+09         2023-05-10         Sub-Saharan Africa
## 1797 3.790567e+09         2023-05-10         Sub-Saharan Africa
## 1798 3.083801e+09         2023-05-10         Sub-Saharan Africa
## 1799 2.644537e+09         2023-05-10         Sub-Saharan Africa
## 1800 1.965275e+09         2023-05-10         Sub-Saharan Africa
## 1801 1.392635e+09         2023-05-10         Sub-Saharan Africa
## 1802 1.114764e+09         2023-05-10         Sub-Saharan Africa
## 1803 1.240796e+09         2023-05-10         Sub-Saharan Africa
## 1804 1.172258e+09         2023-05-10         Sub-Saharan Africa
## 1805 1.014907e+09         2023-05-10         Sub-Saharan Africa
## 1806 1.073862e+09         2023-05-10         Sub-Saharan Africa
## 1807 1.060924e+09         2023-05-10         Sub-Saharan Africa
## 1808 8.198773e+08         2023-05-10         Sub-Saharan Africa
## 1809 5.903767e+08         2023-05-10         Sub-Saharan Africa
## 1810 4.516033e+08         2023-05-10         Sub-Saharan Africa
## 1811 3.720101e+08         2023-05-10         Sub-Saharan Africa
## 1812 3.551724e+08         2023-05-10         Sub-Saharan Africa
## 1813 3.060338e+08         2023-05-10         Sub-Saharan Africa
## 1814 2.441291e+08         2023-05-10         Sub-Saharan Africa
## 1815 1.644669e+08         2023-05-10         Sub-Saharan Africa
## 1816 1.274565e+08         2023-05-10         Sub-Saharan Africa
## 1817 9.624511e+07         2023-05-10         Sub-Saharan Africa
## 1818 7.735691e+07         2023-05-10         Sub-Saharan Africa
## 1819 6.624826e+07         2023-05-10         Sub-Saharan Africa
## 1820 5.864644e+07         2023-05-10         Sub-Saharan Africa
## 1821 5.146444e+07         2023-05-10         Sub-Saharan Africa
## 1822 4.579087e+07         2023-05-10         Sub-Saharan Africa
## 1823 4.161397e+07         2023-05-10         Sub-Saharan Africa
## 1824 3.809115e+07         2023-05-10         Sub-Saharan Africa
## 1825 3.564321e+07         2023-05-10         Sub-Saharan Africa
## 1826 3.290234e+07         2023-05-10         Sub-Saharan Africa
## 1827 3.041231e+07         2023-05-10         Sub-Saharan Africa
## 1828           NA         2023-05-10  Latin America & Caribbean
## 1829 1.608981e+12         2023-05-10  Latin America & Caribbean
## 1830 1.448560e+12         2023-05-10  Latin America & Caribbean
## 1831 1.873274e+12         2023-05-10  Latin America & Caribbean
## 1832 1.916947e+12         2023-05-10  Latin America & Caribbean
## 1833 2.063508e+12         2023-05-10  Latin America & Caribbean
## 1834 1.795700e+12         2023-05-10  Latin America & Caribbean
## 1835 1.802214e+12         2023-05-10  Latin America & Caribbean
## 1836 2.455994e+12         2023-05-10  Latin America & Caribbean
## 1837 2.472807e+12         2023-05-10  Latin America & Caribbean
## 1838 2.465189e+12         2023-05-10  Latin America & Caribbean
## 1839 2.616202e+12         2023-05-10  Latin America & Caribbean
## 1840 2.208872e+12         2023-05-10  Latin America & Caribbean
## 1841 1.667020e+12         2023-05-10  Latin America & Caribbean
## 1842 1.695825e+12         2023-05-10  Latin America & Caribbean
## 1843 1.397084e+12         2023-05-10  Latin America & Caribbean
## 1844 1.107640e+12         2023-05-10  Latin America & Caribbean
## 1845 8.916302e+11         2023-05-10  Latin America & Caribbean
## 1846 6.692938e+11         2023-05-10  Latin America & Caribbean
## 1847 5.582292e+11         2023-05-10  Latin America & Caribbean
## 1848 5.097888e+11         2023-05-10  Latin America & Caribbean
## 1849 5.599913e+11         2023-05-10  Latin America & Caribbean
## 1850 6.554482e+11         2023-05-10  Latin America & Caribbean
## 1851 5.996421e+11         2023-05-10  Latin America & Caribbean
## 1852 8.637110e+11         2023-05-10  Latin America & Caribbean
## 1853 8.832065e+11         2023-05-10  Latin America & Caribbean
## 1854 8.504264e+11         2023-05-10  Latin America & Caribbean
## 1855 7.693333e+11         2023-05-10  Latin America & Caribbean
## 1856 5.253699e+11         2023-05-10  Latin America & Caribbean
## 1857 3.682958e+11         2023-05-10  Latin America & Caribbean
## 1858 3.281880e+11         2023-05-10  Latin America & Caribbean
## 1859 3.426092e+11         2023-05-10  Latin America & Caribbean
## 1860 3.907256e+11         2023-05-10  Latin America & Caribbean
## 1861 3.470281e+11         2023-05-10  Latin America & Caribbean
## 1862 2.588161e+11         2023-05-10  Latin America & Caribbean
## 1863 2.375180e+11         2023-05-10  Latin America & Caribbean
## 1864 2.158786e+11         2023-05-10  Latin America & Caribbean
## 1865 1.761237e+11         2023-05-10  Latin America & Caribbean
## 1866 1.883400e+11         2023-05-10  Latin America & Caribbean
## 1867 1.896565e+11         2023-05-10  Latin America & Caribbean
## 1868 2.713141e+11         2023-05-10  Latin America & Caribbean
## 1869 2.580152e+11         2023-05-10  Latin America & Caribbean
## 1870 2.373935e+11         2023-05-10  Latin America & Caribbean
## 1871 2.213382e+11         2023-05-10  Latin America & Caribbean
## 1872 2.002786e+11         2023-05-10  Latin America & Caribbean
## 1873 1.763441e+11         2023-05-10  Latin America & Caribbean
## 1874 1.531689e+11         2023-05-10  Latin America & Caribbean
## 1875 1.292036e+11         2023-05-10  Latin America & Caribbean
## 1876 1.097945e+11         2023-05-10  Latin America & Caribbean
## 1877 8.359228e+10         2023-05-10  Latin America & Caribbean
## 1878 5.843486e+10         2023-05-10  Latin America & Caribbean
## 1879 4.886983e+10         2023-05-10  Latin America & Caribbean
## 1880 4.232766e+10         2023-05-10  Latin America & Caribbean
## 1881 3.717164e+10         2023-05-10  Latin America & Caribbean
## 1882 3.393046e+10         2023-05-10  Latin America & Caribbean
## 1883 3.108639e+10         2023-05-10  Latin America & Caribbean
## 1884 2.828332e+10         2023-05-10  Latin America & Caribbean
## 1885 2.246552e+10         2023-05-10  Latin America & Caribbean
## 1886 2.096373e+10         2023-05-10  Latin America & Caribbean
## 1887 2.328771e+10         2023-05-10  Latin America & Caribbean
## 1888 1.923175e+10         2023-05-10  Latin America & Caribbean
## 1889 1.727594e+10         2023-05-10  Latin America & Caribbean
## 1890 1.703047e+10         2023-05-10  Latin America & Caribbean
## 1891           NA         2023-05-10  Latin America & Caribbean
## 1892           NA         2023-05-10  Latin America & Caribbean
## 1893           NA         2023-05-10  Latin America & Caribbean
## 1894           NA         2023-05-10  Latin America & Caribbean
## 1895           NA         2023-05-10  Latin America & Caribbean
## 1896           NA         2023-05-10  Latin America & Caribbean
## 1897           NA         2023-05-10  Latin America & Caribbean
## 1898           NA         2023-05-10  Latin America & Caribbean
## 1899           NA         2023-05-10  Latin America & Caribbean
## 1900           NA         2023-05-10  Latin America & Caribbean
## 1901           NA         2023-05-10  Latin America & Caribbean
## 1902           NA         2023-05-10  Latin America & Caribbean
## 1903           NA         2023-05-10  Latin America & Caribbean
## 1904           NA         2023-05-10  Latin America & Caribbean
## 1905           NA         2023-05-10  Latin America & Caribbean
## 1906           NA         2023-05-10  Latin America & Caribbean
## 1907           NA         2023-05-10  Latin America & Caribbean
## 1908           NA         2023-05-10  Latin America & Caribbean
## 1909           NA         2023-05-10  Latin America & Caribbean
## 1910           NA         2023-05-10  Latin America & Caribbean
## 1911           NA         2023-05-10  Latin America & Caribbean
## 1912           NA         2023-05-10  Latin America & Caribbean
## 1913           NA         2023-05-10  Latin America & Caribbean
## 1914           NA         2023-05-10  Latin America & Caribbean
## 1915           NA         2023-05-10  Latin America & Caribbean
## 1916           NA         2023-05-10  Latin America & Caribbean
## 1917           NA         2023-05-10  Latin America & Caribbean
## 1918           NA         2023-05-10  Latin America & Caribbean
## 1919           NA         2023-05-10  Latin America & Caribbean
## 1920           NA         2023-05-10  Latin America & Caribbean
## 1921           NA         2023-05-10  Latin America & Caribbean
## 1922           NA         2023-05-10  Latin America & Caribbean
## 1923           NA         2023-05-10  Latin America & Caribbean
## 1924           NA         2023-05-10  Latin America & Caribbean
## 1925           NA         2023-05-10  Latin America & Caribbean
## 1926           NA         2023-05-10  Latin America & Caribbean
## 1927           NA         2023-05-10  Latin America & Caribbean
## 1928           NA         2023-05-10  Latin America & Caribbean
## 1929           NA         2023-05-10  Latin America & Caribbean
## 1930           NA         2023-05-10  Latin America & Caribbean
## 1931           NA         2023-05-10  Latin America & Caribbean
## 1932           NA         2023-05-10  Latin America & Caribbean
## 1933           NA         2023-05-10  Latin America & Caribbean
## 1934           NA         2023-05-10  Latin America & Caribbean
## 1935           NA         2023-05-10  Latin America & Caribbean
## 1936           NA         2023-05-10  Latin America & Caribbean
## 1937           NA         2023-05-10  Latin America & Caribbean
## 1938           NA         2023-05-10  Latin America & Caribbean
## 1939           NA         2023-05-10  Latin America & Caribbean
## 1940           NA         2023-05-10  Latin America & Caribbean
## 1941           NA         2023-05-10  Latin America & Caribbean
## 1942           NA         2023-05-10  Latin America & Caribbean
## 1943           NA         2023-05-10  Latin America & Caribbean
## 1944           NA         2023-05-10  Latin America & Caribbean
## 1945           NA         2023-05-10  Latin America & Caribbean
## 1946           NA         2023-05-10  Latin America & Caribbean
## 1947           NA         2023-05-10  Latin America & Caribbean
## 1948           NA         2023-05-10  Latin America & Caribbean
## 1949           NA         2023-05-10  Latin America & Caribbean
## 1950           NA         2023-05-10  Latin America & Caribbean
## 1951           NA         2023-05-10  Latin America & Caribbean
## 1952           NA         2023-05-10  Latin America & Caribbean
## 1953           NA         2023-05-10  Latin America & Caribbean
## 1954           NA         2023-05-10        East Asia & Pacific
## 1955 1.400657e+10         2023-05-10        East Asia & Pacific
## 1956 1.200583e+10         2023-05-10        East Asia & Pacific
## 1957 1.346942e+10         2023-05-10        East Asia & Pacific
## 1958 1.356735e+10         2023-05-10        East Asia & Pacific
## 1959 1.212810e+10         2023-05-10        East Asia & Pacific
## 1960 1.140085e+10         2023-05-10        East Asia & Pacific
## 1961 1.293039e+10         2023-05-10        East Asia & Pacific
## 1962 1.709834e+10         2023-05-10        East Asia & Pacific
## 1963 1.809383e+10         2023-05-10        East Asia & Pacific
## 1964 1.904794e+10         2023-05-10        East Asia & Pacific
## 1965 1.852532e+10         2023-05-10        East Asia & Pacific
## 1966 1.370737e+10         2023-05-10        East Asia & Pacific
## 1967 1.073237e+10         2023-05-10        East Asia & Pacific
## 1968 1.439310e+10         2023-05-10        East Asia & Pacific
## 1969 1.224769e+10         2023-05-10        East Asia & Pacific
## 1970 1.147070e+10         2023-05-10        East Asia & Pacific
## 1971 9.531403e+09         2023-05-10        East Asia & Pacific
## 1972 7.872333e+09         2023-05-10        East Asia & Pacific
## 1973 6.557333e+09         2023-05-10        East Asia & Pacific
## 1974 5.843329e+09         2023-05-10        East Asia & Pacific
## 1975 5.601091e+09         2023-05-10        East Asia & Pacific
## 1976 6.001153e+09         2023-05-10        East Asia & Pacific
## 1977 4.600000e+09         2023-05-10        East Asia & Pacific
## 1978 4.051147e+09         2023-05-10        East Asia & Pacific
## 1979 5.197333e+09         2023-05-10        East Asia & Pacific
## 1980 5.115603e+09         2023-05-10        East Asia & Pacific
## 1981 4.734020e+09         2023-05-10        East Asia & Pacific
## 1982 4.087338e+09         2023-05-10        East Asia & Pacific
## 1983 4.105706e+09         2023-05-10        East Asia & Pacific
## 1984 4.183548e+09         2023-05-10        East Asia & Pacific
## 1985 3.701667e+09         2023-05-10        East Asia & Pacific
## 1986 3.520552e+09         2023-05-10        East Asia & Pacific
## 1987 2.985468e+09         2023-05-10        East Asia & Pacific
## 1988 2.690718e+09         2023-05-10        East Asia & Pacific
## 1989 2.754463e+09         2023-05-10        East Asia & Pacific
## 1990 2.358593e+09         2023-05-10        East Asia & Pacific
## 1991 3.523613e+09         2023-05-10        East Asia & Pacific
## 1992 3.782523e+09         2023-05-10        East Asia & Pacific
## 1993 3.844723e+09         2023-05-10        East Asia & Pacific
## 1994 4.264252e+09         2023-05-10        East Asia & Pacific
## 1995 4.366214e+09         2023-05-10        East Asia & Pacific
## 1996 4.928825e+09         2023-05-10        East Asia & Pacific
## 1997 2.803780e+09         2023-05-10        East Asia & Pacific
## 1998 1.941601e+09         2023-05-10        East Asia & Pacific
## 1999 1.732721e+09         2023-05-10        East Asia & Pacific
## 2000 1.423061e+09         2023-05-10        East Asia & Pacific
## 2001 1.168304e+09         2023-05-10        East Asia & Pacific
## 2002 1.073577e+09         2023-05-10        East Asia & Pacific
## 2003 4.330920e+08         2023-05-10        East Asia & Pacific
## 2004 2.708186e+08         2023-05-10        East Asia & Pacific
## 2005 1.975232e+08         2023-05-10        East Asia & Pacific
## 2006 1.790801e+08         2023-05-10        East Asia & Pacific
## 2007 1.612113e+08         2023-05-10        East Asia & Pacific
## 2008 1.608193e+08         2023-05-10        East Asia & Pacific
## 2009 1.390304e+08         2023-05-10        East Asia & Pacific
## 2010 1.327584e+08         2023-05-10        East Asia & Pacific
## 2011 1.140402e+08         2023-05-10        East Asia & Pacific
## 2012           NA         2023-05-10        East Asia & Pacific
## 2013           NA         2023-05-10        East Asia & Pacific
## 2014           NA         2023-05-10        East Asia & Pacific
## 2015           NA         2023-05-10        East Asia & Pacific
## 2016           NA         2023-05-10        East Asia & Pacific
## 2017           NA         2023-05-10      Europe & Central Asia
## 2018 8.405631e+10         2023-05-10      Europe & Central Asia
## 2019 7.024028e+10         2023-05-10      Europe & Central Asia
## 2020 6.891588e+10         2023-05-10      Europe & Central Asia
## 2021 6.636354e+10         2023-05-10      Europe & Central Asia
## 2022 5.919945e+10         2023-05-10      Europe & Central Asia
## 2023 5.395390e+10         2023-05-10      Europe & Central Asia
## 2024 5.078200e+10         2023-05-10      Europe & Central Asia
## 2025 5.708201e+10         2023-05-10      Europe & Central Asia
## 2026 5.581014e+10         2023-05-10      Europe & Central Asia
## 2027 5.430086e+10         2023-05-10      Europe & Central Asia
## 2028 5.767824e+10         2023-05-10      Europe & Central Asia
## 2029 5.068206e+10         2023-05-10      Europe & Central Asia
## 2030 5.202351e+10         2023-05-10      Europe & Central Asia
## 2031 5.448138e+10         2023-05-10      Europe & Central Asia
## 2032 4.443281e+10         2023-05-10      Europe & Central Asia
## 2033 3.437981e+10         2023-05-10      Europe & Central Asia
## 2034 2.986928e+10         2023-05-10      Europe & Central Asia
## 2035 2.615789e+10         2023-05-10      Europe & Central Asia
## 2036 2.114498e+10         2023-05-10      Europe & Central Asia
## 2037 1.640285e+10         2023-05-10      Europe & Central Asia
## 2038 1.418350e+10         2023-05-10      Europe & Central Asia
## 2039 1.324583e+10         2023-05-10      Europe & Central Asia
## 2040 1.362733e+10         2023-05-10      Europe & Central Asia
## 2041 1.503070e+10         2023-05-10      Europe & Central Asia
## 2042 1.131599e+10         2023-05-10      Europe & Central Asia
## 2043 1.229420e+10         2023-05-10      Europe & Central Asia
## 2044 1.898329e+10         2023-05-10      Europe & Central Asia
## 2045 9.697417e+09         2023-05-10      Europe & Central Asia
## 2046 1.082971e+10         2023-05-10      Europe & Central Asia
## 2047 1.035052e+10         2023-05-10      Europe & Central Asia
## 2048 1.094355e+10         2023-05-10      Europe & Central Asia
## 2049 2.063209e+10         2023-05-10      Europe & Central Asia
## 2050 2.198844e+10         2023-05-10      Europe & Central Asia
## 2051 2.255594e+10         2023-05-10      Europe & Central Asia
## 2052 2.810100e+10         2023-05-10      Europe & Central Asia
## 2053 2.024929e+10         2023-05-10      Europe & Central Asia
## 2054 1.715542e+10         2023-05-10      Europe & Central Asia
## 2055 1.759494e+10         2023-05-10      Europe & Central Asia
## 2056 1.656367e+10         2023-05-10      Europe & Central Asia
## 2057 1.934200e+10         2023-05-10      Europe & Central Asia
## 2058 1.987000e+10         2023-05-10      Europe & Central Asia
## 2059 1.983923e+10         2023-05-10      Europe & Central Asia
## 2060           NA         2023-05-10      Europe & Central Asia
## 2061           NA         2023-05-10      Europe & Central Asia
## 2062           NA         2023-05-10      Europe & Central Asia
## 2063           NA         2023-05-10      Europe & Central Asia
## 2064           NA         2023-05-10      Europe & Central Asia
## 2065           NA         2023-05-10      Europe & Central Asia
## 2066           NA         2023-05-10      Europe & Central Asia
## 2067           NA         2023-05-10      Europe & Central Asia
## 2068           NA         2023-05-10      Europe & Central Asia
## 2069           NA         2023-05-10      Europe & Central Asia
## 2070           NA         2023-05-10      Europe & Central Asia
## 2071           NA         2023-05-10      Europe & Central Asia
## 2072           NA         2023-05-10      Europe & Central Asia
## 2073           NA         2023-05-10      Europe & Central Asia
## 2074           NA         2023-05-10      Europe & Central Asia
## 2075           NA         2023-05-10      Europe & Central Asia
## 2076           NA         2023-05-10      Europe & Central Asia
## 2077           NA         2023-05-10      Europe & Central Asia
## 2078           NA         2023-05-10      Europe & Central Asia
## 2079           NA         2023-05-10      Europe & Central Asia
## 2080           NA         2023-05-10         Sub-Saharan Africa
## 2081 1.973762e+10         2023-05-10         Sub-Saharan Africa
## 2082 1.793361e+10         2023-05-10         Sub-Saharan Africa
## 2083 1.617816e+10         2023-05-10         Sub-Saharan Africa
## 2084 1.589007e+10         2023-05-10         Sub-Saharan Africa
## 2085 1.410696e+10         2023-05-10         Sub-Saharan Africa
## 2086 1.283336e+10         2023-05-10         Sub-Saharan Africa
## 2087 1.183216e+10         2023-05-10         Sub-Saharan Africa
## 2088 1.394302e+10         2023-05-10         Sub-Saharan Africa
## 2089 1.344430e+10         2023-05-10         Sub-Saharan Africa
## 2090 1.256102e+10         2023-05-10         Sub-Saharan Africa
## 2091 1.208030e+10         2023-05-10         Sub-Saharan Africa
## 2092 1.010962e+10         2023-05-10         Sub-Saharan Africa
## 2093 9.450697e+09         2023-05-10         Sub-Saharan Africa
## 2094 9.451436e+09         2023-05-10         Sub-Saharan Africa
## 2095 7.625723e+09         2023-05-10         Sub-Saharan Africa
## 2096 6.547420e+09         2023-05-10         Sub-Saharan Africa
## 2097 6.146353e+09         2023-05-10         Sub-Saharan Africa
## 2098 5.451689e+09         2023-05-10         Sub-Saharan Africa
## 2099 4.740768e+09         2023-05-10         Sub-Saharan Africa
## 2100 3.622350e+09         2023-05-10         Sub-Saharan Africa
## 2101 3.190371e+09         2023-05-10         Sub-Saharan Africa
## 2102 2.968370e+09         2023-05-10         Sub-Saharan Africa
## 2103 3.389567e+09         2023-05-10         Sub-Saharan Africa
## 2104 2.804902e+09         2023-05-10         Sub-Saharan Africa
## 2105 2.447669e+09         2023-05-10         Sub-Saharan Africa
## 2106 2.586551e+09         2023-05-10         Sub-Saharan Africa
## 2107 2.379518e+09         2023-05-10         Sub-Saharan Africa
## 2108 1.895291e+09         2023-05-10         Sub-Saharan Africa
## 2109 3.199536e+09         2023-05-10         Sub-Saharan Africa
## 2110 3.356693e+09         2023-05-10         Sub-Saharan Africa
## 2111 3.135046e+09         2023-05-10         Sub-Saharan Africa
## 2112 3.101301e+09         2023-05-10         Sub-Saharan Africa
## 2113 2.615588e+09         2023-05-10         Sub-Saharan Africa
## 2114 2.616041e+09         2023-05-10         Sub-Saharan Africa
## 2115 2.369835e+09         2023-05-10         Sub-Saharan Africa
## 2116 2.036303e+09         2023-05-10         Sub-Saharan Africa
## 2117 1.552493e+09         2023-05-10         Sub-Saharan Africa
## 2118 1.459880e+09         2023-05-10         Sub-Saharan Africa
## 2119 1.600279e+09         2023-05-10         Sub-Saharan Africa
## 2120 1.754450e+09         2023-05-10         Sub-Saharan Africa
## 2121 1.775842e+09         2023-05-10         Sub-Saharan Africa
## 2122 1.928719e+09         2023-05-10         Sub-Saharan Africa
## 2123 1.748481e+09         2023-05-10         Sub-Saharan Africa
## 2124 1.475583e+09         2023-05-10         Sub-Saharan Africa
## 2125 1.131225e+09         2023-05-10         Sub-Saharan Africa
## 2126 9.765472e+08         2023-05-10         Sub-Saharan Africa
## 2127 9.399727e+08         2023-05-10         Sub-Saharan Africa
## 2128 7.511333e+08         2023-05-10         Sub-Saharan Africa
## 2129 6.747735e+08         2023-05-10         Sub-Saharan Africa
## 2130 5.785956e+08         2023-05-10         Sub-Saharan Africa
## 2131 4.824111e+08         2023-05-10         Sub-Saharan Africa
## 2132 4.584043e+08         2023-05-10         Sub-Saharan Africa
## 2133 4.782986e+08         2023-05-10         Sub-Saharan Africa
## 2134 4.604427e+08         2023-05-10         Sub-Saharan Africa
## 2135 4.507540e+08         2023-05-10         Sub-Saharan Africa
## 2136 4.338898e+08         2023-05-10         Sub-Saharan Africa
## 2137 4.229168e+08         2023-05-10         Sub-Saharan Africa
## 2138 4.103216e+08         2023-05-10         Sub-Saharan Africa
## 2139 3.940406e+08         2023-05-10         Sub-Saharan Africa
## 2140 3.795670e+08         2023-05-10         Sub-Saharan Africa
## 2141 3.502472e+08         2023-05-10         Sub-Saharan Africa
## 2142 3.304428e+08         2023-05-10         Sub-Saharan Africa
## 2143           NA         2023-05-10         Sub-Saharan Africa
## 2144 2.779813e+09         2023-05-10         Sub-Saharan Africa
## 2145 2.649672e+09         2023-05-10         Sub-Saharan Africa
## 2146 2.576519e+09         2023-05-10         Sub-Saharan Africa
## 2147 2.660124e+09         2023-05-10         Sub-Saharan Africa
## 2148 2.712324e+09         2023-05-10         Sub-Saharan Africa
## 2149 2.639321e+09         2023-05-10         Sub-Saharan Africa
## 2150 3.104004e+09         2023-05-10         Sub-Saharan Africa
## 2151 2.705783e+09         2023-05-10         Sub-Saharan Africa
## 2152 2.451607e+09         2023-05-10         Sub-Saharan Africa
## 2153 2.333341e+09         2023-05-10         Sub-Saharan Africa
## 2154 2.235821e+09         2023-05-10         Sub-Saharan Africa
## 2155 2.032135e+09         2023-05-10         Sub-Saharan Africa
## 2156 1.781455e+09         2023-05-10         Sub-Saharan Africa
## 2157 1.611836e+09         2023-05-10         Sub-Saharan Africa
## 2158 1.356199e+09         2023-05-10         Sub-Saharan Africa
## 2159 1.273375e+09         2023-05-10         Sub-Saharan Africa
## 2160 1.117113e+09         2023-05-10         Sub-Saharan Africa
## 2161 9.152573e+08         2023-05-10         Sub-Saharan Africa
## 2162 7.846544e+08         2023-05-10         Sub-Saharan Africa
## 2163 8.253945e+08         2023-05-10         Sub-Saharan Africa
## 2164 8.767947e+08         2023-05-10         Sub-Saharan Africa
## 2165 8.704861e+08         2023-05-10         Sub-Saharan Africa
## 2166 8.080772e+08         2023-05-10         Sub-Saharan Africa
## 2167 8.937708e+08         2023-05-10         Sub-Saharan Africa
## 2168 9.728963e+08         2023-05-10         Sub-Saharan Africa
## 2169 8.690339e+08         2023-05-10         Sub-Saharan Africa
## 2170 1.000428e+09         2023-05-10         Sub-Saharan Africa
## 2171 9.250306e+08         2023-05-10         Sub-Saharan Africa
## 2172 9.386326e+08         2023-05-10         Sub-Saharan Africa
## 2173 1.083038e+09         2023-05-10         Sub-Saharan Africa
## 2174 1.167398e+09         2023-05-10         Sub-Saharan Africa
## 2175 1.132101e+09         2023-05-10         Sub-Saharan Africa
## 2176 1.113924e+09         2023-05-10         Sub-Saharan Africa
## 2177 1.082403e+09         2023-05-10         Sub-Saharan Africa
## 2178 1.131466e+09         2023-05-10         Sub-Saharan Africa
## 2179 1.201725e+09         2023-05-10         Sub-Saharan Africa
## 2180 1.149979e+09         2023-05-10         Sub-Saharan Africa
## 2181 9.871439e+08         2023-05-10         Sub-Saharan Africa
## 2182 1.082926e+09         2023-05-10         Sub-Saharan Africa
## 2183 1.013222e+09         2023-05-10         Sub-Saharan Africa
## 2184 9.690467e+08         2023-05-10         Sub-Saharan Africa
## 2185 9.197267e+08         2023-05-10         Sub-Saharan Africa
## 2186 7.824967e+08         2023-05-10         Sub-Saharan Africa
## 2187 6.102256e+08         2023-05-10         Sub-Saharan Africa
## 2188 5.475356e+08         2023-05-10         Sub-Saharan Africa
## 2189 4.484128e+08         2023-05-10         Sub-Saharan Africa
## 2190 4.209867e+08         2023-05-10         Sub-Saharan Africa
## 2191 3.452635e+08         2023-05-10         Sub-Saharan Africa
## 2192 3.043398e+08         2023-05-10         Sub-Saharan Africa
## 2193 2.468046e+08         2023-05-10         Sub-Saharan Africa
## 2194 2.528423e+08         2023-05-10         Sub-Saharan Africa
## 2195 2.427326e+08         2023-05-10         Sub-Saharan Africa
## 2196 1.902057e+08         2023-05-10         Sub-Saharan Africa
## 2197 1.832000e+08         2023-05-10         Sub-Saharan Africa
## 2198 1.782971e+08         2023-05-10         Sub-Saharan Africa
## 2199 1.654446e+08         2023-05-10         Sub-Saharan Africa
## 2200 1.589950e+08         2023-05-10         Sub-Saharan Africa
## 2201 2.607500e+08         2023-05-10         Sub-Saharan Africa
## 2202 2.327500e+08         2023-05-10         Sub-Saharan Africa
## 2203 2.135000e+08         2023-05-10         Sub-Saharan Africa
## 2204 2.030000e+08         2023-05-10         Sub-Saharan Africa
## 2205 1.960000e+08         2023-05-10         Sub-Saharan Africa
## 2206           NA         2023-05-10         Sub-Saharan Africa
## 2207 1.936174e+09         2023-05-10         Sub-Saharan Africa
## 2208 1.703699e+09         2023-05-10         Sub-Saharan Africa
## 2209 1.981846e+09         2023-05-10         Sub-Saharan Africa
## 2210 1.966501e+09         2023-05-10         Sub-Saharan Africa
## 2211 1.769787e+09         2023-05-10         Sub-Saharan Africa
## 2212 1.663009e+09         2023-05-10         Sub-Saharan Africa
## 2213 1.596800e+09         2023-05-10         Sub-Saharan Africa
## 2214 1.859899e+09         2023-05-10         Sub-Saharan Africa
## 2215 1.850470e+09         2023-05-10         Sub-Saharan Africa
## 2216 1.741810e+09         2023-05-10         Sub-Saharan Africa
## 2217 1.865916e+09         2023-05-10         Sub-Saharan Africa
## 2218 1.663913e+09         2023-05-10         Sub-Saharan Africa
## 2219 1.697737e+09         2023-05-10         Sub-Saharan Africa
## 2220 1.787968e+09         2023-05-10         Sub-Saharan Africa
## 2221 1.513040e+09         2023-05-10         Sub-Saharan Africa
## 2222 1.107571e+09         2023-05-10         Sub-Saharan Africa
## 2223 9.722413e+08         2023-05-10         Sub-Saharan Africa
## 2224 9.249403e+08         2023-05-10         Sub-Saharan Africa
## 2225 8.132605e+08         2023-05-10         Sub-Saharan Africa
## 2226 6.205076e+08         2023-05-10         Sub-Saharan Africa
## 2227 5.630906e+08         2023-05-10         Sub-Saharan Africa
## 2228 5.392273e+08         2023-05-10         Sub-Saharan Africa
## 2229 5.924167e+08         2023-05-10         Sub-Saharan Africa
## 2230 5.219106e+08         2023-05-10         Sub-Saharan Africa
## 2231 4.906087e+08         2023-05-10         Sub-Saharan Africa
## 2232 5.019791e+08         2023-05-10         Sub-Saharan Africa
## 2233 4.871490e+08         2023-05-10         Sub-Saharan Africa
## 2234 4.065807e+08         2023-05-10         Sub-Saharan Africa
## 2235 4.904174e+08         2023-05-10         Sub-Saharan Africa
## 2236 3.571610e+08         2023-05-10         Sub-Saharan Africa
## 2237 3.198271e+08         2023-05-10         Sub-Saharan Africa
## 2238 3.068911e+08         2023-05-10         Sub-Saharan Africa
## 2239 2.674485e+08         2023-05-10         Sub-Saharan Africa
## 2240 2.643081e+08         2023-05-10         Sub-Saharan Africa
## 2241 2.352532e+08         2023-05-10         Sub-Saharan Africa
## 2242 1.906512e+08         2023-05-10         Sub-Saharan Africa
## 2243 1.377282e+08         2023-05-10         Sub-Saharan Africa
## 2244 1.320191e+08         2023-05-10         Sub-Saharan Africa
## 2245 1.384762e+08         2023-05-10         Sub-Saharan Africa
## 2246 1.406308e+08         2023-05-10         Sub-Saharan Africa
## 2247 1.394681e+08         2023-05-10         Sub-Saharan Africa
## 2248 1.422469e+08         2023-05-10         Sub-Saharan Africa
## 2249           NA         2023-05-10         Sub-Saharan Africa
## 2250           NA         2023-05-10         Sub-Saharan Africa
## 2251           NA         2023-05-10         Sub-Saharan Africa
## 2252           NA         2023-05-10         Sub-Saharan Africa
## 2253           NA         2023-05-10         Sub-Saharan Africa
## 2254           NA         2023-05-10         Sub-Saharan Africa
## 2255           NA         2023-05-10         Sub-Saharan Africa
## 2256           NA         2023-05-10         Sub-Saharan Africa
## 2257           NA         2023-05-10         Sub-Saharan Africa
## 2258           NA         2023-05-10         Sub-Saharan Africa
## 2259           NA         2023-05-10         Sub-Saharan Africa
## 2260           NA         2023-05-10         Sub-Saharan Africa
## 2261           NA         2023-05-10         Sub-Saharan Africa
## 2262           NA         2023-05-10         Sub-Saharan Africa
## 2263           NA         2023-05-10         Sub-Saharan Africa
## 2264           NA         2023-05-10         Sub-Saharan Africa
## 2265           NA         2023-05-10         Sub-Saharan Africa
## 2266           NA         2023-05-10         Sub-Saharan Africa
## 2267           NA         2023-05-10         Sub-Saharan Africa
## 2268           NA         2023-05-10         Sub-Saharan Africa
## 2269           NA         2023-05-10        East Asia & Pacific
## 2270 2.696106e+10         2023-05-10        East Asia & Pacific
## 2271 2.587280e+10         2023-05-10        East Asia & Pacific
## 2272 2.708939e+10         2023-05-10        East Asia & Pacific
## 2273 2.457175e+10         2023-05-10        East Asia & Pacific
## 2274 2.217720e+10         2023-05-10        East Asia & Pacific
## 2275 2.001675e+10         2023-05-10        East Asia & Pacific
## 2276 1.804995e+10         2023-05-10        East Asia & Pacific
## 2277 1.670261e+10         2023-05-10        East Asia & Pacific
## 2278 1.522799e+10         2023-05-10        East Asia & Pacific
## 2279 1.405444e+10         2023-05-10        East Asia & Pacific
## 2280 1.282954e+10         2023-05-10        East Asia & Pacific
## 2281 1.124228e+10         2023-05-10        East Asia & Pacific
## 2282 1.040185e+10         2023-05-10        East Asia & Pacific
## 2283 1.035191e+10         2023-05-10        East Asia & Pacific
## 2284 8.639236e+09         2023-05-10        East Asia & Pacific
## 2285 7.274596e+09         2023-05-10        East Asia & Pacific
## 2286 6.293046e+09         2023-05-10        East Asia & Pacific
## 2287 5.337833e+09         2023-05-10        East Asia & Pacific
## 2288 4.658247e+09         2023-05-10        East Asia & Pacific
## 2289 4.284028e+09         2023-05-10        East Asia & Pacific
## 2290 3.984001e+09         2023-05-10        East Asia & Pacific
## 2291 3.654032e+09         2023-05-10        East Asia & Pacific
## 2292 3.517242e+09         2023-05-10        East Asia & Pacific
## 2293 3.120426e+09         2023-05-10        East Asia & Pacific
## 2294 3.443413e+09         2023-05-10        East Asia & Pacific
## 2295 3.506696e+09         2023-05-10        East Asia & Pacific
## 2296 3.441206e+09         2023-05-10        East Asia & Pacific
## 2297 2.791435e+09         2023-05-10        East Asia & Pacific
## 2298 2.533728e+09         2023-05-10        East Asia & Pacific
## 2299           NA         2023-05-10        East Asia & Pacific
## 2300           NA         2023-05-10        East Asia & Pacific
## 2301           NA         2023-05-10        East Asia & Pacific
## 2302           NA         2023-05-10        East Asia & Pacific
## 2303           NA         2023-05-10        East Asia & Pacific
## 2304           NA         2023-05-10        East Asia & Pacific
## 2305           NA         2023-05-10        East Asia & Pacific
## 2306           NA         2023-05-10        East Asia & Pacific
## 2307           NA         2023-05-10        East Asia & Pacific
## 2308           NA         2023-05-10        East Asia & Pacific
## 2309           NA         2023-05-10        East Asia & Pacific
## 2310           NA         2023-05-10        East Asia & Pacific
## 2311           NA         2023-05-10        East Asia & Pacific
## 2312           NA         2023-05-10        East Asia & Pacific
## 2313           NA         2023-05-10        East Asia & Pacific
## 2314           NA         2023-05-10        East Asia & Pacific
## 2315           NA         2023-05-10        East Asia & Pacific
## 2316           NA         2023-05-10        East Asia & Pacific
## 2317 5.884439e+08         2023-05-10        East Asia & Pacific
## 2318 7.028992e+08         2023-05-10        East Asia & Pacific
## 2319 5.055494e+08         2023-05-10        East Asia & Pacific
## 2320 9.699114e+08         2023-05-10        East Asia & Pacific
## 2321 7.184012e+08         2023-05-10        East Asia & Pacific
## 2322 9.788732e+08         2023-05-10        East Asia & Pacific
## 2323 1.065714e+09         2023-05-10        East Asia & Pacific
## 2324 9.628571e+08         2023-05-10        East Asia & Pacific
## 2325 9.142857e+08         2023-05-10        East Asia & Pacific
## 2326 8.685714e+08         2023-05-10        East Asia & Pacific
## 2327 7.828571e+08         2023-05-10        East Asia & Pacific
## 2328 7.285714e+08         2023-05-10        East Asia & Pacific
## 2329 6.600000e+08         2023-05-10        East Asia & Pacific
## 2330 6.428571e+08         2023-05-10        East Asia & Pacific
## 2331 6.371429e+08         2023-05-10        East Asia & Pacific
## 2332           NA         2023-05-10         Sub-Saharan Africa
## 2333 4.533828e+10         2023-05-10         Sub-Saharan Africa
## 2334 4.077324e+10         2023-05-10         Sub-Saharan Africa
## 2335 3.967098e+10         2023-05-10         Sub-Saharan Africa
## 2336 3.997384e+10         2023-05-10         Sub-Saharan Africa
## 2337 3.609855e+10         2023-05-10         Sub-Saharan Africa
## 2338 3.381434e+10         2023-05-10         Sub-Saharan Africa
## 2339 3.221023e+10         2023-05-10         Sub-Saharan Africa
## 2340 3.638655e+10         2023-05-10         Sub-Saharan Africa
## 2341 3.372862e+10         2023-05-10         Sub-Saharan Africa
## 2342 3.015506e+10         2023-05-10         Sub-Saharan Africa
## 2343 3.063091e+10         2023-05-10         Sub-Saharan Africa
## 2344 2.750750e+10         2023-05-10         Sub-Saharan Africa
## 2345 2.793297e+10         2023-05-10         Sub-Saharan Africa
## 2346 2.771514e+10         2023-05-10         Sub-Saharan Africa
## 2347 2.392825e+10         2023-05-10         Sub-Saharan Africa
## 2348 2.091051e+10         2023-05-10         Sub-Saharan Africa
## 2349 1.950985e+10         2023-05-10         Sub-Saharan Africa
## 2350 1.882622e+10         2023-05-10         Sub-Saharan Africa
## 2351 1.597032e+10         2023-05-10         Sub-Saharan Africa
## 2352 1.241725e+10         2023-05-10         Sub-Saharan Africa
## 2353 1.095349e+10         2023-05-10         Sub-Saharan Africa
## 2354 1.056658e+10         2023-05-10         Sub-Saharan Africa
## 2355 1.156583e+10         2023-05-10         Sub-Saharan Africa
## 2356 1.129814e+10         2023-05-10         Sub-Saharan Africa
## 2357 1.078946e+10         2023-05-10         Sub-Saharan Africa
## 2358 1.109354e+10         2023-05-10         Sub-Saharan Africa
## 2359 1.086477e+10         2023-05-10         Sub-Saharan Africa
## 2360 8.902446e+09         2023-05-10         Sub-Saharan Africa
## 2361 1.618181e+10         2023-05-10         Sub-Saharan Africa
## 2362 1.207178e+10         2023-05-10         Sub-Saharan Africa
## 2363 1.184019e+10         2023-05-10         Sub-Saharan Africa
## 2364 1.231448e+10         2023-05-10         Sub-Saharan Africa
## 2365 1.101257e+10         2023-05-10         Sub-Saharan Africa
## 2366 1.223606e+10         2023-05-10         Sub-Saharan Africa
## 2367 1.304966e+10         2023-05-10         Sub-Saharan Africa
## 2368 1.185706e+10         2023-05-10         Sub-Saharan Africa
## 2369 8.544810e+09         2023-05-10         Sub-Saharan Africa
## 2370 7.311937e+09         2023-05-10         Sub-Saharan Africa
## 2371 6.870201e+09         2023-05-10         Sub-Saharan Africa
## 2372 6.611255e+09         2023-05-10         Sub-Saharan Africa
## 2373 6.610937e+09         2023-05-10         Sub-Saharan Africa
## 2374 6.674568e+09         2023-05-10         Sub-Saharan Africa
## 2375 5.919004e+09         2023-05-10         Sub-Saharan Africa
## 2376 4.662852e+09         2023-05-10         Sub-Saharan Africa
## 2377 3.394664e+09         2023-05-10         Sub-Saharan Africa
## 2378 2.898090e+09         2023-05-10         Sub-Saharan Africa
## 2379 2.857037e+09         2023-05-10         Sub-Saharan Africa
## 2380 2.157415e+09         2023-05-10         Sub-Saharan Africa
## 2381 1.901393e+09         2023-05-10         Sub-Saharan Africa
## 2382 1.498252e+09         2023-05-10         Sub-Saharan Africa
## 2383 1.236941e+09         2023-05-10         Sub-Saharan Africa
## 2384 1.151217e+09         2023-05-10         Sub-Saharan Africa
## 2385 1.100551e+09         2023-05-10         Sub-Saharan Africa
## 2386 1.046191e+09         2023-05-10         Sub-Saharan Africa
## 2387 9.361754e+08         2023-05-10         Sub-Saharan Africa
## 2388 8.511127e+08         2023-05-10         Sub-Saharan Africa
## 2389 8.140834e+08         2023-05-10         Sub-Saharan Africa
## 2390 7.766501e+08         2023-05-10         Sub-Saharan Africa
## 2391 7.183207e+08         2023-05-10         Sub-Saharan Africa
## 2392 6.942477e+08         2023-05-10         Sub-Saharan Africa
## 2393 6.527776e+08         2023-05-10         Sub-Saharan Africa
## 2394 6.142061e+08         2023-05-10         Sub-Saharan Africa
## 2395           NA         2023-05-10              North America
## 2396 1.988336e+12         2023-05-10              North America
## 2397 1.645423e+12         2023-05-10              North America
## 2398 1.742015e+12         2023-05-10              North America
## 2399 1.725329e+12         2023-05-10              North America
## 2400 1.649266e+12         2023-05-10              North America
## 2401 1.527995e+12         2023-05-10              North America
## 2402 1.556509e+12         2023-05-10              North America
## 2403 1.805750e+12         2023-05-10              North America
## 2404 1.846597e+12         2023-05-10              North America
## 2405 1.828366e+12         2023-05-10              North America
## 2406 1.793327e+12         2023-05-10              North America
## 2407 1.617343e+12         2023-05-10              North America
## 2408 1.374625e+12         2023-05-10              North America
## 2409 1.552990e+12         2023-05-10              North America
## 2410 1.468820e+12         2023-05-10              North America
## 2411 1.319265e+12         2023-05-10              North America
## 2412 1.173109e+12         2023-05-10              North America
## 2413 1.026690e+12         2023-05-10              North America
## 2414 8.955406e+11         2023-05-10              North America
## 2415 7.606493e+11         2023-05-10              North America
## 2416 7.389818e+11         2023-05-10              North America
## 2417 7.447734e+11         2023-05-10              North America
## 2418 6.784122e+11         2023-05-10              North America
## 2419 6.340000e+11         2023-05-10              North America
## 2420 6.549870e+11         2023-05-10              North America
## 2421 6.285464e+11         2023-05-10              North America
## 2422 6.040316e+11         2023-05-10              North America
## 2423 5.781393e+11         2023-05-10              North America
## 2424 5.771708e+11         2023-05-10              North America
## 2425 5.923877e+11         2023-05-10              North America
## 2426 6.103282e+11         2023-05-10              North America
## 2427 5.939296e+11         2023-05-10              North America
## 2428 5.650557e+11         2023-05-10              North America
## 2429 5.073544e+11         2023-05-10              North America
## 2430 4.313167e+11         2023-05-10              North America
## 2431 3.774379e+11         2023-05-10              North America
## 2432 3.647565e+11         2023-05-10              North America
## 2433 3.553726e+11         2023-05-10              North America
## 2434 3.405477e+11         2023-05-10              North America
## 2435 3.135065e+11         2023-05-10              North America
## 2436 3.062149e+11         2023-05-10              North America
## 2437 2.738538e+11         2023-05-10              North America
## 2438 2.430721e+11         2023-05-10              North America
## 2439 2.186329e+11         2023-05-10              North America
## 2440 2.116122e+11         2023-05-10              North America
## 2441 2.065756e+11         2023-05-10              North America
## 2442 1.738340e+11         2023-05-10              North America
## 2443 1.604087e+11         2023-05-10              North America
## 2444 1.313219e+11         2023-05-10              North America
## 2445 1.130828e+11         2023-05-10              North America
## 2446 9.927196e+10         2023-05-10              North America
## 2447 8.789610e+10         2023-05-10              North America
## 2448 7.914841e+10         2023-05-10              North America
## 2449 7.182981e+10         2023-05-10              North America
## 2450 6.566866e+10         2023-05-10              North America
## 2451 6.108838e+10         2023-05-10              North America
## 2452 5.451518e+10         2023-05-10              North America
## 2453 4.937752e+10         2023-05-10              North America
## 2454 4.502999e+10         2023-05-10              North America
## 2455 4.222745e+10         2023-05-10              North America
## 2456 4.093495e+10         2023-05-10              North America
## 2457 4.046172e+10         2023-05-10              North America
## 2458 3.988763e+10         2023-05-10                 Aggregates
## 2459 3.557581e+10         2023-05-10                 Aggregates
## 2460 3.453383e+10         2023-05-10                 Aggregates
## 2461 3.218692e+10         2023-05-10                 Aggregates
## 2462 3.732441e+10         2023-05-10                 Aggregates
## 2463 1.687290e+10         2023-05-10                 Aggregates
## 2464 9.433651e+09         2023-05-10                 Aggregates
## 2465 3.035403e+10         2023-05-10                 Aggregates
## 2466 2.841623e+10         2023-05-10                 Aggregates
## 2467 4.362565e+10         2023-05-10                 Aggregates
## 2468 7.706761e+09         2023-05-10                 Aggregates
## 2469 9.210483e+09         2023-05-10                 Aggregates
## 2470 7.359018e+10         2023-05-10                 Aggregates
## 2471 1.645986e+10         2023-05-10                 Aggregates
## 2472 4.017607e+09         2023-05-10                 Aggregates
## 2473 6.595605e+09         2023-05-10                 Aggregates
## 2474 5.076286e+09         2023-05-10                 Aggregates
## 2475 7.932123e+09         2023-05-10                 Aggregates
## 2476 1.083542e+10         2023-05-10                 Aggregates
## 2477 4.930710e+10         2023-05-10                 Aggregates
## 2478 2.660946e+09         2023-05-10                 Aggregates
## 2479 4.639299e+09         2023-05-10                 Aggregates
## 2480 2.290314e+09         2023-05-10                 Aggregates
## 2481 2.153896e+09         2023-05-10                 Aggregates
## 2482 2.038302e+09         2023-05-10                 Aggregates
## 2483 2.470265e+09         2023-05-10                 Aggregates
## 2484 1.444128e+10         2023-05-10                 Aggregates
## 2485 1.581475e+10         2023-05-10                 Aggregates
## 2486 2.429163e+10         2023-05-10                 Aggregates
## 2487 1.880306e+09         2023-05-10                 Aggregates
## 2488 1.349527e+10         2023-05-10                 Aggregates
## 2489 1.922415e+10         2023-05-10                 Aggregates
## 2490 1.775035e+10         2023-05-10                 Aggregates
## 2491 1.803278e+10         2023-05-10                 Aggregates
## 2492 1.814909e+10         2023-05-10                 Aggregates
## 2493 7.635061e+10         2023-05-10                 Aggregates
## 2494 7.106169e+10         2023-05-10                 Aggregates
## 2495 7.566929e+10         2023-05-10                 Aggregates
## 2496 1.552175e+10         2023-05-10                 Aggregates
## 2497 7.523210e+10         2023-05-10                 Aggregates
## 2498 7.385272e+10         2023-05-10                 Aggregates
## 2499 1.598283e+10         2023-05-10                 Aggregates
## 2500 2.227086e+10         2023-05-10                 Aggregates
## 2501 2.020520e+10         2023-05-10                 Aggregates
## 2502 1.489032e+10         2023-05-10                 Aggregates
## 2503 7.529530e+10         2023-05-10                 Aggregates
## 2504 6.589681e+10         2023-05-10                 Aggregates
## 2505 7.742842e+10         2023-05-10                 Aggregates
## 2506 3.359707e+09         2023-05-10                 Aggregates
## 2507 3.083591e+09         2023-05-10                 Aggregates
## 2508 7.008317e+10         2023-05-10                 Aggregates
## 2509 7.692176e+10         2023-05-10                 Aggregates
## 2510 5.607428e+10         2023-05-10                 Aggregates
## 2511 1.673558e+10         2023-05-10                 Aggregates
## 2512 3.102515e+09         2023-05-10                 Aggregates
## 2513 3.695258e+09         2023-05-10                 Aggregates
## 2514 6.232893e+10         2023-05-10                 Aggregates
## 2515 1.651783e+10         2023-05-10                 Aggregates
## 2516 2.888648e+09         2023-05-10                 Aggregates
## 2517 7.078139e+10         2023-05-10                 Aggregates
## 2518 6.494347e+10         2023-05-10                 Aggregates
## 2519           NA         2023-05-10                 Aggregates
## 2520 5.984058e+10         2023-05-10                 Aggregates
## 2521           NA         2023-05-10  Latin America & Caribbean
## 2522 5.898450e+09         2023-05-10  Latin America & Caribbean
## 2523 5.608989e+09         2023-05-10  Latin America & Caribbean
## 2524 5.943589e+09         2023-05-10  Latin America & Caribbean
## 2525 5.530378e+09         2023-05-10  Latin America & Caribbean
## 2526 5.166467e+09         2023-05-10  Latin America & Caribbean
## 2527 4.909499e+09         2023-05-10  Latin America & Caribbean
## 2528 4.708337e+09         2023-05-10  Latin America & Caribbean
## 2529 4.563018e+09         2023-05-10  Latin America & Caribbean
## 2530 4.405955e+09         2023-05-10  Latin America & Caribbean
## 2531 4.291159e+09         2023-05-10  Latin America & Caribbean
## 2532 4.186224e+09         2023-05-10  Latin America & Caribbean
## 2533 4.156991e+09         2023-05-10  Latin America & Caribbean
## 2534 4.281869e+09         2023-05-10  Latin America & Caribbean
## 2535 4.586114e+09         2023-05-10  Latin America & Caribbean
## 2536 4.466439e+09         2023-05-10  Latin America & Caribbean
## 2537 4.200439e+09         2023-05-10  Latin America & Caribbean
## 2538           NA         2023-05-10  Latin America & Caribbean
## 2539           NA         2023-05-10  Latin America & Caribbean
## 2540           NA         2023-05-10  Latin America & Caribbean
## 2541           NA         2023-05-10  Latin America & Caribbean
## 2542           NA         2023-05-10  Latin America & Caribbean
## 2543           NA         2023-05-10  Latin America & Caribbean
## 2544           NA         2023-05-10  Latin America & Caribbean
## 2545           NA         2023-05-10  Latin America & Caribbean
## 2546           NA         2023-05-10  Latin America & Caribbean
## 2547           NA         2023-05-10  Latin America & Caribbean
## 2548           NA         2023-05-10  Latin America & Caribbean
## 2549           NA         2023-05-10  Latin America & Caribbean
## 2550           NA         2023-05-10  Latin America & Caribbean
## 2551           NA         2023-05-10  Latin America & Caribbean
## 2552           NA         2023-05-10  Latin America & Caribbean
## 2553           NA         2023-05-10  Latin America & Caribbean
## 2554           NA         2023-05-10  Latin America & Caribbean
## 2555           NA         2023-05-10  Latin America & Caribbean
## 2556           NA         2023-05-10  Latin America & Caribbean
## 2557           NA         2023-05-10  Latin America & Caribbean
## 2558           NA         2023-05-10  Latin America & Caribbean
## 2559           NA         2023-05-10  Latin America & Caribbean
## 2560           NA         2023-05-10  Latin America & Caribbean
## 2561           NA         2023-05-10  Latin America & Caribbean
## 2562           NA         2023-05-10  Latin America & Caribbean
## 2563           NA         2023-05-10  Latin America & Caribbean
## 2564           NA         2023-05-10  Latin America & Caribbean
## 2565           NA         2023-05-10  Latin America & Caribbean
## 2566           NA         2023-05-10  Latin America & Caribbean
## 2567           NA         2023-05-10  Latin America & Caribbean
## 2568           NA         2023-05-10  Latin America & Caribbean
## 2569           NA         2023-05-10  Latin America & Caribbean
## 2570           NA         2023-05-10  Latin America & Caribbean
## 2571           NA         2023-05-10  Latin America & Caribbean
## 2572           NA         2023-05-10  Latin America & Caribbean
## 2573           NA         2023-05-10  Latin America & Caribbean
## 2574           NA         2023-05-10  Latin America & Caribbean
## 2575           NA         2023-05-10  Latin America & Caribbean
## 2576           NA         2023-05-10  Latin America & Caribbean
## 2577           NA         2023-05-10  Latin America & Caribbean
## 2578           NA         2023-05-10  Latin America & Caribbean
## 2579           NA         2023-05-10  Latin America & Caribbean
## 2580           NA         2023-05-10  Latin America & Caribbean
## 2581           NA         2023-05-10  Latin America & Caribbean
## 2582           NA         2023-05-10  Latin America & Caribbean
## 2583           NA         2023-05-10  Latin America & Caribbean
## 2584           NA         2023-05-10         Sub-Saharan Africa
## 2585 2.516498e+09         2023-05-10         Sub-Saharan Africa
## 2586 2.326721e+09         2023-05-10         Sub-Saharan Africa
## 2587 2.221301e+09         2023-05-10         Sub-Saharan Africa
## 2588 2.220979e+09         2023-05-10         Sub-Saharan Africa
## 2589 2.072350e+09         2023-05-10         Sub-Saharan Africa
## 2590 1.825018e+09         2023-05-10         Sub-Saharan Africa
## 2591 1.695826e+09         2023-05-10         Sub-Saharan Africa
## 2592 1.894814e+09         2023-05-10         Sub-Saharan Africa
## 2593 1.691544e+09         2023-05-10         Sub-Saharan Africa
## 2594 2.510127e+09         2023-05-10         Sub-Saharan Africa
## 2595 2.437983e+09         2023-05-10         Sub-Saharan Africa
## 2596 2.142591e+09         2023-05-10         Sub-Saharan Africa
## 2597 2.067382e+09         2023-05-10         Sub-Saharan Africa
## 2598 1.993408e+09         2023-05-10         Sub-Saharan Africa
## 2599 1.699811e+09         2023-05-10         Sub-Saharan Africa
## 2600 1.461860e+09         2023-05-10         Sub-Saharan Africa
## 2601 1.337894e+09         2023-05-10         Sub-Saharan Africa
## 2602 1.272361e+09         2023-05-10         Sub-Saharan Africa
## 2603 1.142316e+09         2023-05-10         Sub-Saharan Africa
## 2604 9.960682e+08         2023-05-10         Sub-Saharan Africa
## 2605 9.326486e+08         2023-05-10         Sub-Saharan Africa
## 2606 9.167773e+08         2023-05-10         Sub-Saharan Africa
## 2607 9.994775e+08         2023-05-10         Sub-Saharan Africa
## 2608 9.673383e+08         2023-05-10         Sub-Saharan Africa
## 2609 9.377415e+08         2023-05-10         Sub-Saharan Africa
## 2610 1.007791e+09         2023-05-10         Sub-Saharan Africa
## 2611 1.115390e+09         2023-05-10         Sub-Saharan Africa
## 2612 8.511744e+08         2023-05-10         Sub-Saharan Africa
## 2613 1.278781e+09         2023-05-10         Sub-Saharan Africa
## 2614 1.411918e+09         2023-05-10         Sub-Saharan Africa
## 2615 1.377375e+09         2023-05-10         Sub-Saharan Africa
## 2616 1.440711e+09         2023-05-10         Sub-Saharan Africa
## 2617 1.233930e+09         2023-05-10         Sub-Saharan Africa
## 2618 1.264899e+09         2023-05-10         Sub-Saharan Africa
## 2619 1.200992e+09         2023-05-10         Sub-Saharan Africa
## 2620 1.122265e+09         2023-05-10         Sub-Saharan Africa
## 2621 8.648498e+08         2023-05-10         Sub-Saharan Africa
## 2622 6.378206e+08         2023-05-10         Sub-Saharan Africa
## 2623 6.586794e+08         2023-05-10         Sub-Saharan Africa
## 2624 7.483123e+08         2023-05-10         Sub-Saharan Africa
## 2625 6.948035e+08         2023-05-10         Sub-Saharan Africa
## 2626 7.970480e+08         2023-05-10         Sub-Saharan Africa
## 2627 7.007649e+08         2023-05-10         Sub-Saharan Africa
## 2628 6.105785e+08         2023-05-10         Sub-Saharan Africa
## 2629 5.072981e+08         2023-05-10         Sub-Saharan Africa
## 2630 4.511524e+08         2023-05-10         Sub-Saharan Africa
## 2631 3.786600e+08         2023-05-10         Sub-Saharan Africa
## 2632 2.813987e+08         2023-05-10         Sub-Saharan Africa
## 2633 2.711831e+08         2023-05-10         Sub-Saharan Africa
## 2634 2.303179e+08         2023-05-10         Sub-Saharan Africa
## 2635 2.014508e+08         2023-05-10         Sub-Saharan Africa
## 2636 1.891066e+08         2023-05-10         Sub-Saharan Africa
## 2637 1.880392e+08         2023-05-10         Sub-Saharan Africa
## 2638 1.917674e+08         2023-05-10         Sub-Saharan Africa
## 2639 1.638205e+08         2023-05-10         Sub-Saharan Africa
## 2640 1.579300e+08         2023-05-10         Sub-Saharan Africa
## 2641 1.505748e+08         2023-05-10         Sub-Saharan Africa
## 2642 1.420251e+08         2023-05-10         Sub-Saharan Africa
## 2643 1.293791e+08         2023-05-10         Sub-Saharan Africa
## 2644 1.244827e+08         2023-05-10         Sub-Saharan Africa
## 2645 1.231346e+08         2023-05-10         Sub-Saharan Africa
## 2646 1.121556e+08         2023-05-10         Sub-Saharan Africa
## 2647 1.359030e+12         2023-05-10                 Aggregates
## 2648 1.901935e+12         2023-05-10                 Aggregates
## 2649 1.416962e+12         2023-05-10                 Aggregates
## 2650           NA         2023-05-10                 Aggregates
## 2651 1.455318e+12         2023-05-10                 Aggregates
## 2652           NA         2023-05-10                 Aggregates
## 2653           NA         2023-05-10                 Aggregates
## 2654           NA         2023-05-10                 Aggregates
## 2655           NA         2023-05-10                 Aggregates
## 2656           NA         2023-05-10                 Aggregates
## 2657           NA         2023-05-10                 Aggregates
## 2658           NA         2023-05-10                 Aggregates
## 2659           NA         2023-05-10                 Aggregates
## 2660 1.664903e+12         2023-05-10                 Aggregates
## 2661           NA         2023-05-10                 Aggregates
## 2662 1.462687e+12         2023-05-10                 Aggregates
## 2663           NA         2023-05-10                 Aggregates
## 2664           NA         2023-05-10                 Aggregates
## 2665 1.533142e+12         2023-05-10                 Aggregates
## 2666           NA         2023-05-10                 Aggregates
## 2667 1.318305e+12         2023-05-10                 Aggregates
## 2668 1.291092e+12         2023-05-10                 Aggregates
## 2669 1.316466e+12         2023-05-10                 Aggregates
## 2670 1.292823e+12         2023-05-10                 Aggregates
## 2671 5.284037e+11         2023-05-10                 Aggregates
## 2672 4.688109e+11         2023-05-10                 Aggregates
## 2673 4.282754e+11         2023-05-10                 Aggregates
## 2674 4.349239e+11         2023-05-10                 Aggregates
## 2675 4.487391e+11         2023-05-10                 Aggregates
## 2676 4.100256e+11         2023-05-10                 Aggregates
## 2677 4.160520e+11         2023-05-10                 Aggregates
## 2678 3.932796e+11         2023-05-10                 Aggregates
## 2679 1.675084e+12         2023-05-10                 Aggregates
## 2680 1.649466e+12         2023-05-10                 Aggregates
## 2681 1.461463e+12         2023-05-10                 Aggregates
## 2682 7.632508e+11         2023-05-10                 Aggregates
## 2683 6.341596e+11         2023-05-10                 Aggregates
## 2684 2.426833e+11         2023-05-10                 Aggregates
## 2685 2.562881e+11         2023-05-10                 Aggregates
## 2686           NA         2023-05-10                 Aggregates
## 2687           NA         2023-05-10                 Aggregates
## 2688           NA         2023-05-10                 Aggregates
## 2689           NA         2023-05-10                 Aggregates
## 2690           NA         2023-05-10                 Aggregates
## 2691           NA         2023-05-10                 Aggregates
## 2692           NA         2023-05-10                 Aggregates
## 2693           NA         2023-05-10                 Aggregates
## 2694           NA         2023-05-10                 Aggregates
## 2695           NA         2023-05-10                 Aggregates
## 2696           NA         2023-05-10                 Aggregates
## 2697           NA         2023-05-10                 Aggregates
## 2698           NA         2023-05-10                 Aggregates
## 2699           NA         2023-05-10                 Aggregates
## 2700 8.868792e+11         2023-05-10                 Aggregates
## 2701           NA         2023-05-10                 Aggregates
## 2702 1.266892e+12         2023-05-10                 Aggregates
## 2703 1.002944e+12         2023-05-10                 Aggregates
## 2704 3.108890e+11         2023-05-10                 Aggregates
## 2705           NA         2023-05-10                 Aggregates
## 2706           NA         2023-05-10                 Aggregates
## 2707 2.740647e+11         2023-05-10                 Aggregates
## 2708 2.599188e+11         2023-05-10                 Aggregates
## 2709           NA         2023-05-10                 Aggregates
## 2710           NA         2023-05-10         Sub-Saharan Africa
## 2711 1.177998e+10         2023-05-10         Sub-Saharan Africa
## 2712 1.071540e+10         2023-05-10         Sub-Saharan Africa
## 2713 1.131495e+10         2023-05-10         Sub-Saharan Africa
## 2714 1.123917e+10         2023-05-10         Sub-Saharan Africa
## 2715 1.000040e+10         2023-05-10         Sub-Saharan Africa
## 2716 1.009778e+10         2023-05-10         Sub-Saharan Africa
## 2717 1.095039e+10         2023-05-10         Sub-Saharan Africa
## 2718 1.394077e+10         2023-05-10         Sub-Saharan Africa
## 2719 1.295354e+10         2023-05-10         Sub-Saharan Africa
## 2720 1.236736e+10         2023-05-10         Sub-Saharan Africa
## 2721 1.217231e+10         2023-05-10         Sub-Saharan Africa
## 2722 1.066810e+10         2023-05-10         Sub-Saharan Africa
## 2723 9.290729e+09         2023-05-10         Sub-Saharan Africa
## 2724 1.039383e+10         2023-05-10         Sub-Saharan Africa
## 2725 8.650138e+09         2023-05-10         Sub-Saharan Africa
## 2726 7.428702e+09         2023-05-10         Sub-Saharan Africa
## 2727 6.649307e+09         2023-05-10         Sub-Saharan Africa
## 2728 4.422856e+09         2023-05-10         Sub-Saharan Africa
## 2729 2.742815e+09         2023-05-10         Sub-Saharan Africa
## 2730 1.997006e+09         2023-05-10         Sub-Saharan Africa
## 2731 1.710843e+09         2023-05-10         Sub-Saharan Africa
## 2732 1.388507e+09         2023-05-10         Sub-Saharan Africa
## 2733 1.534674e+09         2023-05-10         Sub-Saharan Africa
## 2734 1.744794e+09         2023-05-10         Sub-Saharan Africa
## 2735 1.544690e+09         2023-05-10         Sub-Saharan Africa
## 2736 1.607345e+09         2023-05-10         Sub-Saharan Africa
## 2737 1.445920e+09         2023-05-10         Sub-Saharan Africa
## 2738 1.179838e+09         2023-05-10         Sub-Saharan Africa
## 2739 1.463251e+09         2023-05-10         Sub-Saharan Africa
## 2740 1.881848e+09         2023-05-10         Sub-Saharan Africa
## 2741 1.877138e+09         2023-05-10         Sub-Saharan Africa
## 2742 1.738606e+09         2023-05-10         Sub-Saharan Africa
## 2743 1.433686e+09         2023-05-10         Sub-Saharan Africa
## 2744 1.482597e+09         2023-05-10         Sub-Saharan Africa
## 2745 1.163427e+09         2023-05-10         Sub-Saharan Africa
## 2746 1.067828e+09         2023-05-10         Sub-Saharan Africa
## 2747 1.033070e+09         2023-05-10         Sub-Saharan Africa
## 2748 9.191037e+08         2023-05-10         Sub-Saharan Africa
## 2749 8.324158e+08         2023-05-10         Sub-Saharan Africa
## 2750 8.343699e+08         2023-05-10         Sub-Saharan Africa
## 2751 8.769376e+08         2023-05-10         Sub-Saharan Africa
## 2752 1.033002e+09         2023-05-10         Sub-Saharan Africa
## 2753 1.004316e+09         2023-05-10         Sub-Saharan Africa
## 2754 1.113920e+09         2023-05-10         Sub-Saharan Africa
## 2755 9.353605e+08         2023-05-10         Sub-Saharan Africa
## 2756 8.660450e+08         2023-05-10         Sub-Saharan Africa
## 2757 8.646021e+08         2023-05-10         Sub-Saharan Africa
## 2758 6.525328e+08         2023-05-10         Sub-Saharan Africa
## 2759 6.471995e+08         2023-05-10         Sub-Saharan Africa
## 2760 5.854275e+08         2023-05-10         Sub-Saharan Africa
## 2761 5.018667e+08         2023-05-10         Sub-Saharan Africa
## 2762 4.692667e+08         2023-05-10         Sub-Saharan Africa
## 2763 4.716356e+08         2023-05-10         Sub-Saharan Africa
## 2764 4.539801e+08         2023-05-10         Sub-Saharan Africa
## 2765 4.498263e+08         2023-05-10         Sub-Saharan Africa
## 2766 4.327949e+08         2023-05-10         Sub-Saharan Africa
## 2767 4.169263e+08         2023-05-10         Sub-Saharan Africa
## 2768 3.922475e+08         2023-05-10         Sub-Saharan Africa
## 2769 3.717670e+08         2023-05-10         Sub-Saharan Africa
## 2770 3.576357e+08         2023-05-10         Sub-Saharan Africa
## 2771 3.339753e+08         2023-05-10         Sub-Saharan Africa
## 2772 3.135827e+08         2023-05-10         Sub-Saharan Africa
## 2773           NA         2023-05-10      Europe & Central Asia
## 2774           NA         2023-05-10      Europe & Central Asia
## 2775           NA         2023-05-10      Europe & Central Asia
## 2776           NA         2023-05-10      Europe & Central Asia
## 2777           NA         2023-05-10      Europe & Central Asia
## 2778           NA         2023-05-10      Europe & Central Asia
## 2779           NA         2023-05-10      Europe & Central Asia
## 2780           NA         2023-05-10      Europe & Central Asia
## 2781           NA         2023-05-10      Europe & Central Asia
## 2782           NA         2023-05-10      Europe & Central Asia
## 2783           NA         2023-05-10      Europe & Central Asia
## 2784           NA         2023-05-10      Europe & Central Asia
## 2785           NA         2023-05-10      Europe & Central Asia
## 2786           NA         2023-05-10      Europe & Central Asia
## 2787           NA         2023-05-10      Europe & Central Asia
## 2788 1.151526e+10         2023-05-10      Europe & Central Asia
## 2789 9.676410e+09         2023-05-10      Europe & Central Asia
## 2790 8.827299e+09         2023-05-10      Europe & Central Asia
## 2791 8.553957e+09         2023-05-10      Europe & Central Asia
## 2792 7.332574e+09         2023-05-10      Europe & Central Asia
## 2793 6.663436e+09         2023-05-10      Europe & Central Asia
## 2794 6.233310e+09         2023-05-10      Europe & Central Asia
## 2795 6.439403e+09         2023-05-10      Europe & Central Asia
## 2796 6.263178e+09         2023-05-10      Europe & Central Asia
## 2797 5.945445e+09         2023-05-10      Europe & Central Asia
## 2798           NA         2023-05-10      Europe & Central Asia
## 2799           NA         2023-05-10      Europe & Central Asia
## 2800           NA         2023-05-10      Europe & Central Asia
## 2801           NA         2023-05-10      Europe & Central Asia
## 2802           NA         2023-05-10      Europe & Central Asia
## 2803           NA         2023-05-10      Europe & Central Asia
## 2804           NA         2023-05-10      Europe & Central Asia
## 2805           NA         2023-05-10      Europe & Central Asia
## 2806           NA         2023-05-10      Europe & Central Asia
## 2807           NA         2023-05-10      Europe & Central Asia
## 2808           NA         2023-05-10      Europe & Central Asia
## 2809           NA         2023-05-10      Europe & Central Asia
## 2810           NA         2023-05-10      Europe & Central Asia
## 2811           NA         2023-05-10      Europe & Central Asia
## 2812           NA         2023-05-10      Europe & Central Asia
## 2813           NA         2023-05-10      Europe & Central Asia
## 2814           NA         2023-05-10      Europe & Central Asia
## 2815           NA         2023-05-10      Europe & Central Asia
## 2816           NA         2023-05-10      Europe & Central Asia
## 2817           NA         2023-05-10      Europe & Central Asia
## 2818           NA         2023-05-10      Europe & Central Asia
## 2819           NA         2023-05-10      Europe & Central Asia
## 2820           NA         2023-05-10      Europe & Central Asia
## 2821           NA         2023-05-10      Europe & Central Asia
## 2822           NA         2023-05-10      Europe & Central Asia
## 2823           NA         2023-05-10      Europe & Central Asia
## 2824           NA         2023-05-10      Europe & Central Asia
## 2825           NA         2023-05-10      Europe & Central Asia
## 2826           NA         2023-05-10      Europe & Central Asia
## 2827           NA         2023-05-10      Europe & Central Asia
## 2828           NA         2023-05-10      Europe & Central Asia
## 2829           NA         2023-05-10      Europe & Central Asia
## 2830           NA         2023-05-10      Europe & Central Asia
## 2831           NA         2023-05-10      Europe & Central Asia
## 2832           NA         2023-05-10      Europe & Central Asia
## 2833           NA         2023-05-10      Europe & Central Asia
## 2834           NA         2023-05-10      Europe & Central Asia
## 2835           NA         2023-05-10      Europe & Central Asia
## 2836           NA         2023-05-10  Latin America & Caribbean
## 2837 3.170585e+11         2023-05-10  Latin America & Caribbean
## 2838 2.527272e+11         2023-05-10  Latin America & Caribbean
## 2839 2.785847e+11         2023-05-10  Latin America & Caribbean
## 2840 2.954027e+11         2023-05-10  Latin America & Caribbean
## 2841 2.763649e+11         2023-05-10  Latin America & Caribbean
## 2842 2.492987e+11         2023-05-10  Latin America & Caribbean
## 2843 2.424966e+11         2023-05-10  Latin America & Caribbean
## 2844 2.594052e+11         2023-05-10  Latin America & Caribbean
## 2845 2.772395e+11         2023-05-10  Latin America & Caribbean
## 2846 2.671759e+11         2023-05-10  Latin America & Caribbean
## 2847 2.512249e+11         2023-05-10  Latin America & Caribbean
## 2848 2.171054e+11         2023-05-10  Latin America & Caribbean
## 2849 1.714126e+11         2023-05-10  Latin America & Caribbean
## 2850 1.796634e+11         2023-05-10  Latin America & Caribbean
## 2851 1.725659e+11         2023-05-10  Latin America & Caribbean
## 2852 1.538401e+11         2023-05-10  Latin America & Caribbean
## 2853 1.223150e+11         2023-05-10  Latin America & Caribbean
## 2854 9.907923e+10         2023-05-10  Latin America & Caribbean
## 2855 7.650758e+10         2023-05-10  Latin America & Caribbean
## 2856 7.029489e+10         2023-05-10  Latin America & Caribbean
## 2857 7.151708e+10         2023-05-10  Latin America & Caribbean
## 2858 7.824988e+10         2023-05-10  Latin America & Caribbean
## 2859 7.559610e+10         2023-05-10  Latin America & Caribbean
## 2860 8.199530e+10         2023-05-10  Latin America & Caribbean
## 2861 8.572890e+10         2023-05-10  Latin America & Caribbean
## 2862 7.857439e+10         2023-05-10  Latin America & Caribbean
## 2863 7.344706e+10         2023-05-10  Latin America & Caribbean
## 2864 5.700843e+10         2023-05-10  Latin America & Caribbean
## 2865 4.929777e+10         2023-05-10  Latin America & Caribbean
## 2866 4.596433e+10         2023-05-10  Latin America & Caribbean
## 2867 3.783479e+10         2023-05-10  Latin America & Caribbean
## 2868 3.311389e+10         2023-05-10  Latin America & Caribbean
## 2869 2.988569e+10         2023-05-10  Latin America & Caribbean
## 2870 2.604023e+10         2023-05-10  Latin America & Caribbean
## 2871 2.225541e+10         2023-05-10  Latin America & Caribbean
## 2872 1.889105e+10         2023-05-10  Latin America & Caribbean
## 2873 1.770289e+10         2023-05-10  Latin America & Caribbean
## 2874 1.962253e+10         2023-05-10  Latin America & Caribbean
## 2875 2.035596e+10         2023-05-10  Latin America & Caribbean
## 2876 2.532589e+10         2023-05-10  Latin America & Caribbean
## 2877 3.450988e+10         2023-05-10  Latin America & Caribbean
## 2878 2.903671e+10         2023-05-10  Latin America & Caribbean
## 2879 2.180370e+10         2023-05-10  Latin America & Caribbean
## 2880 1.598993e+10         2023-05-10  Latin America & Caribbean
## 2881 1.396289e+10         2023-05-10  Latin America & Caribbean
## 2882 1.034193e+10         2023-05-10  Latin America & Caribbean
## 2883 7.622217e+09         2023-05-10  Latin America & Caribbean
## 2884 1.621040e+10         2023-05-10  Latin America & Caribbean
## 2885 1.683626e+10         2023-05-10  Latin America & Caribbean
## 2886 1.185382e+10         2023-05-10  Latin America & Caribbean
## 2887 1.088411e+10         2023-05-10  Latin America & Caribbean
## 2888 9.126310e+09         2023-05-10  Latin America & Caribbean
## 2889 8.377093e+09         2023-05-10  Latin America & Caribbean
## 2890 7.167087e+09         2023-05-10  Latin America & Caribbean
## 2891 7.013196e+09         2023-05-10  Latin America & Caribbean
## 2892 7.072641e+09         2023-05-10  Latin America & Caribbean
## 2893 6.026594e+09         2023-05-10  Latin America & Caribbean
## 2894 5.982348e+09         2023-05-10  Latin America & Caribbean
## 2895 5.668188e+09         2023-05-10  Latin America & Caribbean
## 2896 5.416273e+09         2023-05-10  Latin America & Caribbean
## 2897 4.609727e+09         2023-05-10  Latin America & Caribbean
## 2898 4.110000e+09         2023-05-10  Latin America & Caribbean
## 2899           NA         2023-05-10        East Asia & Pacific
## 2900 1.773406e+13         2023-05-10        East Asia & Pacific
## 2901 1.468767e+13         2023-05-10        East Asia & Pacific
## 2902 1.427994e+13         2023-05-10        East Asia & Pacific
## 2903 1.389482e+13         2023-05-10        East Asia & Pacific
## 2904 1.231041e+13         2023-05-10        East Asia & Pacific
## 2905 1.123328e+13         2023-05-10        East Asia & Pacific
## 2906 1.106155e+13         2023-05-10        East Asia & Pacific
## 2907 1.047568e+13         2023-05-10        East Asia & Pacific
## 2908 9.570406e+12         2023-05-10        East Asia & Pacific
## 2909 8.532230e+12         2023-05-10        East Asia & Pacific
## 2910 7.551500e+12         2023-05-10        East Asia & Pacific
## 2911 6.087164e+12         2023-05-10        East Asia & Pacific
## 2912 5.101703e+12         2023-05-10        East Asia & Pacific
## 2913 4.594307e+12         2023-05-10        East Asia & Pacific
## 2914 3.550343e+12         2023-05-10        East Asia & Pacific
## 2915 2.752132e+12         2023-05-10        East Asia & Pacific
## 2916 2.285966e+12         2023-05-10        East Asia & Pacific
## 2917 1.955347e+12         2023-05-10        East Asia & Pacific
## 2918 1.660288e+12         2023-05-10        East Asia & Pacific
## 2919 1.470550e+12         2023-05-10        East Asia & Pacific
## 2920 1.339396e+12         2023-05-10        East Asia & Pacific
## 2921 1.211347e+12         2023-05-10        East Asia & Pacific
## 2922 1.093997e+12         2023-05-10        East Asia & Pacific
## 2923 1.029043e+12         2023-05-10        East Asia & Pacific
## 2924 9.616040e+11         2023-05-10        East Asia & Pacific
## 2925 8.637467e+11         2023-05-10        East Asia & Pacific
## 2926 7.345479e+11         2023-05-10        East Asia & Pacific
## 2927 5.643247e+11         2023-05-10        East Asia & Pacific
## 2928 4.447313e+11         2023-05-10        East Asia & Pacific
## 2929 4.269157e+11         2023-05-10        East Asia & Pacific
## 2930 3.833733e+11         2023-05-10        East Asia & Pacific
## 2931 3.608579e+11         2023-05-10        East Asia & Pacific
## 2932 3.477681e+11         2023-05-10        East Asia & Pacific
## 2933 3.123536e+11         2023-05-10        East Asia & Pacific
## 2934 2.729730e+11         2023-05-10        East Asia & Pacific
## 2935 3.007581e+11         2023-05-10        East Asia & Pacific
## 2936 3.094880e+11         2023-05-10        East Asia & Pacific
## 2937 2.599465e+11         2023-05-10        East Asia & Pacific
## 2938 2.306867e+11         2023-05-10        East Asia & Pacific
## 2939 2.050897e+11         2023-05-10        East Asia & Pacific
## 2940 1.958664e+11         2023-05-10        East Asia & Pacific
## 2941 1.911492e+11         2023-05-10        East Asia & Pacific
## 2942 1.782806e+11         2023-05-10        East Asia & Pacific
## 2943 1.495408e+11         2023-05-10        East Asia & Pacific
## 2944 1.749381e+11         2023-05-10        East Asia & Pacific
## 2945 1.539405e+11         2023-05-10        East Asia & Pacific
## 2946 1.634316e+11         2023-05-10        East Asia & Pacific
## 2947 1.441821e+11         2023-05-10        East Asia & Pacific
## 2948 1.385443e+11         2023-05-10        East Asia & Pacific
## 2949 1.136876e+11         2023-05-10        East Asia & Pacific
## 2950 9.980096e+10         2023-05-10        East Asia & Pacific
## 2951 9.260297e+10         2023-05-10        East Asia & Pacific
## 2952 7.970591e+10         2023-05-10        East Asia & Pacific
## 2953 7.084654e+10         2023-05-10        East Asia & Pacific
## 2954 7.288163e+10         2023-05-10        East Asia & Pacific
## 2955 7.672029e+10         2023-05-10        East Asia & Pacific
## 2956 7.043627e+10         2023-05-10        East Asia & Pacific
## 2957 5.970834e+10         2023-05-10        East Asia & Pacific
## 2958 5.070680e+10         2023-05-10        East Asia & Pacific
## 2959 4.720936e+10         2023-05-10        East Asia & Pacific
## 2960 5.005687e+10         2023-05-10        East Asia & Pacific
## 2961 5.971647e+10         2023-05-10        East Asia & Pacific
## 2962           NA         2023-05-10  Latin America & Caribbean
## 2963 3.144641e+11         2023-05-10  Latin America & Caribbean
## 2964 2.703000e+11         2023-05-10  Latin America & Caribbean
## 2965 3.231095e+11         2023-05-10  Latin America & Caribbean
## 2966 3.341982e+11         2023-05-10  Latin America & Caribbean
## 2967 3.118837e+11         2023-05-10  Latin America & Caribbean
## 2968 2.828250e+11         2023-05-10  Latin America & Caribbean
## 2969 2.934818e+11         2023-05-10  Latin America & Caribbean
## 2970 3.811121e+11         2023-05-10  Latin America & Caribbean
## 2971 3.821161e+11         2023-05-10  Latin America & Caribbean
## 2972 3.709213e+11         2023-05-10  Latin America & Caribbean
## 2973 3.349439e+11         2023-05-10  Latin America & Caribbean
## 2974 2.865631e+11         2023-05-10  Latin America & Caribbean
## 2975 2.323978e+11         2023-05-10  Latin America & Caribbean
## 2976 2.421869e+11         2023-05-10  Latin America & Caribbean
## 2977 2.061818e+11         2023-05-10  Latin America & Caribbean
## 2978 1.616186e+11         2023-05-10  Latin America & Caribbean
## 2979 1.456192e+11         2023-05-10  Latin America & Caribbean
## 2980 1.170815e+11         2023-05-10  Latin America & Caribbean
## 2981 9.464138e+10         2023-05-10  Latin America & Caribbean
## 2982 9.796300e+10         2023-05-10  Latin America & Caribbean
## 2983 9.821175e+10         2023-05-10  Latin America & Caribbean
## 2984 9.988658e+10         2023-05-10  Latin America & Caribbean
## 2985 8.618616e+10         2023-05-10  Latin America & Caribbean
## 2986 9.844374e+10         2023-05-10  Latin America & Caribbean
## 2987 1.066595e+11         2023-05-10  Latin America & Caribbean
## 2988 9.716011e+10         2023-05-10  Latin America & Caribbean
## 2989 9.250728e+10         2023-05-10  Latin America & Caribbean
## 2990 8.170350e+10         2023-05-10  Latin America & Caribbean
## 2991 6.644680e+10         2023-05-10  Latin America & Caribbean
## 2992 5.841899e+10         2023-05-10  Latin America & Caribbean
## 2993 4.917557e+10         2023-05-10  Latin America & Caribbean
## 2994 4.784409e+10         2023-05-10  Latin America & Caribbean
## 2995 3.954008e+10         2023-05-10  Latin America & Caribbean
## 2996 3.921255e+10         2023-05-10  Latin America & Caribbean
## 2997 3.637331e+10         2023-05-10  Latin America & Caribbean
## 2998 3.494249e+10         2023-05-10  Latin America & Caribbean
## 2999 3.489441e+10         2023-05-10  Latin America & Caribbean
## 3000 3.825312e+10         2023-05-10  Latin America & Caribbean
## 3001 3.872982e+10         2023-05-10  Latin America & Caribbean
## 3002 3.896804e+10         2023-05-10  Latin America & Caribbean
## 3003 3.638837e+10         2023-05-10  Latin America & Caribbean
## 3004 3.340074e+10         2023-05-10  Latin America & Caribbean
## 3005 2.794041e+10         2023-05-10  Latin America & Caribbean
## 3006 2.326351e+10         2023-05-10  Latin America & Caribbean
## 3007 1.947096e+10         2023-05-10  Latin America & Caribbean
## 3008 1.534140e+10         2023-05-10  Latin America & Caribbean
## 3009 1.309863e+10         2023-05-10  Latin America & Caribbean
## 3010 1.237003e+10         2023-05-10  Latin America & Caribbean
## 3011 1.031576e+10         2023-05-10  Latin America & Caribbean
## 3012 8.671359e+09         2023-05-10  Latin America & Caribbean
## 3013 7.820381e+09         2023-05-10  Latin America & Caribbean
## 3014 7.198360e+09         2023-05-10  Latin America & Caribbean
## 3015 6.450175e+09         2023-05-10  Latin America & Caribbean
## 3016 5.960213e+09         2023-05-10  Latin America & Caribbean
## 3017 5.825170e+09         2023-05-10  Latin America & Caribbean
## 3018 5.428519e+09         2023-05-10  Latin America & Caribbean
## 3019 5.760762e+09         2023-05-10  Latin America & Caribbean
## 3020 5.973367e+09         2023-05-10  Latin America & Caribbean
## 3021 4.836167e+09         2023-05-10  Latin America & Caribbean
## 3022 4.955544e+09         2023-05-10  Latin America & Caribbean
## 3023 4.540448e+09         2023-05-10  Latin America & Caribbean
## 3024 4.031153e+09         2023-05-10  Latin America & Caribbean
## 3025           NA         2023-05-10         Sub-Saharan Africa
## 3026 1.296090e+09         2023-05-10         Sub-Saharan Africa
## 3027 1.225039e+09         2023-05-10         Sub-Saharan Africa
## 3028 1.195020e+09         2023-05-10         Sub-Saharan Africa
## 3029 1.188798e+09         2023-05-10         Sub-Saharan Africa
## 3030 1.077440e+09         2023-05-10         Sub-Saharan Africa
## 3031 1.012836e+09         2023-05-10         Sub-Saharan Africa
## 3032 9.660295e+08         2023-05-10         Sub-Saharan Africa
## 3033 1.149588e+09         2023-05-10         Sub-Saharan Africa
## 3034 1.116224e+09         2023-05-10         Sub-Saharan Africa
## 3035 1.015843e+09         2023-05-10         Sub-Saharan Africa
## 3036 1.023086e+09         2023-05-10         Sub-Saharan Africa
## 3037 9.079787e+08         2023-05-10         Sub-Saharan Africa
## 3038 9.053411e+08         2023-05-10         Sub-Saharan Africa
## 3039 9.156592e+08         2023-05-10         Sub-Saharan Africa
## 3040 7.956731e+08         2023-05-10         Sub-Saharan Africa
## 3041 6.984318e+08         2023-05-10         Sub-Saharan Africa
## 3042 6.538451e+08         2023-05-10         Sub-Saharan Africa
## 3043 6.337061e+08         2023-05-10         Sub-Saharan Africa
## 3044 5.468852e+08         2023-05-10         Sub-Saharan Africa
## 3045 4.259647e+08         2023-05-10         Sub-Saharan Africa
## 3046 3.785120e+08         2023-05-10         Sub-Saharan Africa
## 3047 3.511366e+08         2023-05-10         Sub-Saharan Africa
## 3048 3.824550e+08         2023-05-10         Sub-Saharan Africa
## 3049 3.701068e+08         2023-05-10         Sub-Saharan Africa
## 3050 3.644456e+08         2023-05-10         Sub-Saharan Africa
## 3051 3.960538e+08         2023-05-10         Sub-Saharan Africa
## 3052 3.984618e+08         2023-05-10         Sub-Saharan Africa
## 3053 3.191892e+08         2023-05-10         Sub-Saharan Africa
## 3054 4.528814e+08         2023-05-10         Sub-Saharan Africa
## 3055 4.573886e+08         2023-05-10         Sub-Saharan Africa
## 3056 4.241088e+08         2023-05-10         Sub-Saharan Africa
## 3057 4.296221e+08         2023-05-10         Sub-Saharan Africa
## 3058 3.414768e+08         2023-05-10         Sub-Saharan Africa
## 3059 3.565000e+08         2023-05-10         Sub-Saharan Africa
## 3060 3.375259e+08         2023-05-10         Sub-Saharan Africa
## 3061 2.791977e+08         2023-05-10         Sub-Saharan Africa
## 3062 1.967261e+08         2023-05-10         Sub-Saharan Africa
## 3063 1.846972e+08         2023-05-10         Sub-Saharan Africa
## 3064 1.916220e+08         2023-05-10         Sub-Saharan Africa
## 3065 1.840090e+08         2023-05-10         Sub-Saharan Africa
## 3066 1.963500e+08         2023-05-10         Sub-Saharan Africa
## 3067 2.122182e+08         2023-05-10         Sub-Saharan Africa
## 3068           NA         2023-05-10         Sub-Saharan Africa
## 3069           NA         2023-05-10         Sub-Saharan Africa
## 3070           NA         2023-05-10         Sub-Saharan Africa
## 3071           NA         2023-05-10         Sub-Saharan Africa
## 3072           NA         2023-05-10         Sub-Saharan Africa
## 3073           NA         2023-05-10         Sub-Saharan Africa
## 3074           NA         2023-05-10         Sub-Saharan Africa
## 3075           NA         2023-05-10         Sub-Saharan Africa
## 3076           NA         2023-05-10         Sub-Saharan Africa
## 3077           NA         2023-05-10         Sub-Saharan Africa
## 3078           NA         2023-05-10         Sub-Saharan Africa
## 3079           NA         2023-05-10         Sub-Saharan Africa
## 3080           NA         2023-05-10         Sub-Saharan Africa
## 3081           NA         2023-05-10         Sub-Saharan Africa
## 3082           NA         2023-05-10         Sub-Saharan Africa
## 3083           NA         2023-05-10         Sub-Saharan Africa
## 3084           NA         2023-05-10         Sub-Saharan Africa
## 3085           NA         2023-05-10         Sub-Saharan Africa
## 3086           NA         2023-05-10         Sub-Saharan Africa
## 3087           NA         2023-05-10         Sub-Saharan Africa
## 3088           NA         2023-05-10         Sub-Saharan Africa
## 3089 5.535097e+10         2023-05-10         Sub-Saharan Africa
## 3090 4.871696e+10         2023-05-10         Sub-Saharan Africa
## 3091 5.177583e+10         2023-05-10         Sub-Saharan Africa
## 3092 4.756821e+10         2023-05-10         Sub-Saharan Africa
## 3093 3.801927e+10         2023-05-10         Sub-Saharan Africa
## 3094 3.713480e+10         2023-05-10         Sub-Saharan Africa
## 3095 3.791770e+10         2023-05-10         Sub-Saharan Africa
## 3096 3.590904e+10         2023-05-10         Sub-Saharan Africa
## 3097 3.267975e+10         2023-05-10         Sub-Saharan Africa
## 3098 2.930624e+10         2023-05-10         Sub-Saharan Africa
## 3099 2.583975e+10         2023-05-10         Sub-Saharan Africa
## 3100 2.156572e+10         2023-05-10         Sub-Saharan Africa
## 3101 1.864837e+10         2023-05-10         Sub-Saharan Africa
## 3102 1.978852e+10         2023-05-10         Sub-Saharan Africa
## 3103 1.673707e+10         2023-05-10         Sub-Saharan Africa
## 3104 1.445190e+10         2023-05-10         Sub-Saharan Africa
## 3105 1.196448e+10         2023-05-10         Sub-Saharan Africa
## 3106 1.029748e+10         2023-05-10         Sub-Saharan Africa
## 3107 8.937567e+09         2023-05-10         Sub-Saharan Africa
## 3108 8.728039e+09         2023-05-10         Sub-Saharan Africa
## 3109 7.438189e+09         2023-05-10         Sub-Saharan Africa
## 3110 1.908805e+10         2023-05-10         Sub-Saharan Africa
## 3111 4.711259e+09         2023-05-10         Sub-Saharan Africa
## 3112 6.217806e+09         2023-05-10         Sub-Saharan Africa
## 3113 6.090841e+09         2023-05-10         Sub-Saharan Africa
## 3114 5.771455e+09         2023-05-10         Sub-Saharan Africa
## 3115 5.643439e+09         2023-05-10         Sub-Saharan Africa
## 3116 5.820382e+09         2023-05-10         Sub-Saharan Africa
## 3117 1.070625e+10         2023-05-10         Sub-Saharan Africa
## 3118 8.227201e+09         2023-05-10         Sub-Saharan Africa
## 3119 9.633911e+09         2023-05-10         Sub-Saharan Africa
## 3120 9.349765e+09         2023-05-10         Sub-Saharan Africa
## 3121 9.021863e+09         2023-05-10         Sub-Saharan Africa
## 3122 8.861300e+09         2023-05-10         Sub-Saharan Africa
## 3123 7.661625e+09         2023-05-10         Sub-Saharan Africa
## 3124 8.095367e+09         2023-05-10         Sub-Saharan Africa
## 3125 7.195043e+09         2023-05-10         Sub-Saharan Africa
## 3126 7.857729e+09         2023-05-10         Sub-Saharan Africa
## 3127 1.100671e+10         2023-05-10         Sub-Saharan Africa
## 3128 1.365167e+10         2023-05-10         Sub-Saharan Africa
## 3129 1.253782e+10         2023-05-10         Sub-Saharan Africa
## 3130 1.439493e+10         2023-05-10         Sub-Saharan Africa
## 3131 1.506842e+10         2023-05-10         Sub-Saharan Africa
## 3132 1.537261e+10         2023-05-10         Sub-Saharan Africa
## 3133 1.234442e+10         2023-05-10         Sub-Saharan Africa
## 3134 9.648583e+09         2023-05-10         Sub-Saharan Africa
## 3135 1.023734e+10         2023-05-10         Sub-Saharan Africa
## 3136 9.596960e+09         2023-05-10         Sub-Saharan Africa
## 3137 7.870239e+09         2023-05-10         Sub-Saharan Africa
## 3138 6.173713e+09         2023-05-10         Sub-Saharan Africa
## 3139 5.594770e+09         2023-05-10         Sub-Saharan Africa
## 3140 4.877685e+09         2023-05-10         Sub-Saharan Africa
## 3141 5.032435e+09         2023-05-10         Sub-Saharan Africa
## 3142 3.909781e+09         2023-05-10         Sub-Saharan Africa
## 3143 3.384063e+09         2023-05-10         Sub-Saharan Africa
## 3144 4.532660e+09         2023-05-10         Sub-Saharan Africa
## 3145 4.043902e+09         2023-05-10         Sub-Saharan Africa
## 3146 2.881545e+09         2023-05-10         Sub-Saharan Africa
## 3147 6.213186e+09         2023-05-10         Sub-Saharan Africa
## 3148 3.779841e+09         2023-05-10         Sub-Saharan Africa
## 3149 3.086747e+09         2023-05-10         Sub-Saharan Africa
## 3150 3.359404e+09         2023-05-10         Sub-Saharan Africa
## 3151           NA         2023-05-10         Sub-Saharan Africa
## 3152 1.336623e+10         2023-05-10         Sub-Saharan Africa
## 3153 1.048315e+10         2023-05-10         Sub-Saharan Africa
## 3154 1.275034e+10         2023-05-10         Sub-Saharan Africa
## 3155 1.367004e+10         2023-05-10         Sub-Saharan Africa
## 3156 1.109482e+10         2023-05-10         Sub-Saharan Africa
## 3157 1.021934e+10         2023-05-10         Sub-Saharan Africa
## 3158 1.189026e+10         2023-05-10         Sub-Saharan Africa
## 3159 1.791291e+10         2023-05-10         Sub-Saharan Africa
## 3160 1.795872e+10         2023-05-10         Sub-Saharan Africa
## 3161 1.769291e+10         2023-05-10         Sub-Saharan Africa
## 3162 1.565538e+10         2023-05-10         Sub-Saharan Africa
## 3163 1.314840e+10         2023-05-10         Sub-Saharan Africa
## 3164 9.723300e+09         2023-05-10         Sub-Saharan Africa
## 3165 1.164986e+10         2023-05-10         Sub-Saharan Africa
## 3166 8.782704e+09         2023-05-10         Sub-Saharan Africa
## 3167 8.072305e+09         2023-05-10         Sub-Saharan Africa
## 3168 6.650001e+09         2023-05-10         Sub-Saharan Africa
## 3169 4.656975e+09         2023-05-10         Sub-Saharan Africa
## 3170 3.503723e+09         2023-05-10         Sub-Saharan Africa
## 3171 3.034251e+09         2023-05-10         Sub-Saharan Africa
## 3172 2.796705e+09         2023-05-10         Sub-Saharan Africa
## 3173 3.227928e+09         2023-05-10         Sub-Saharan Africa
## 3174 2.354773e+09         2023-05-10         Sub-Saharan Africa
## 3175 1.949481e+09         2023-05-10         Sub-Saharan Africa
## 3176 2.322719e+09         2023-05-10         Sub-Saharan Africa
## 3177 2.540698e+09         2023-05-10         Sub-Saharan Africa
## 3178 2.116004e+09         2023-05-10         Sub-Saharan Africa
## 3179 1.769365e+09         2023-05-10         Sub-Saharan Africa
## 3180 2.684324e+09         2023-05-10         Sub-Saharan Africa
## 3181 2.933223e+09         2023-05-10         Sub-Saharan Africa
## 3182 2.724854e+09         2023-05-10         Sub-Saharan Africa
## 3183 2.798746e+09         2023-05-10         Sub-Saharan Africa
## 3184 2.389593e+09         2023-05-10         Sub-Saharan Africa
## 3185 2.212536e+09         2023-05-10         Sub-Saharan Africa
## 3186 2.297754e+09         2023-05-10         Sub-Saharan Africa
## 3187 1.849268e+09         2023-05-10         Sub-Saharan Africa
## 3188 2.160873e+09         2023-05-10         Sub-Saharan Africa
## 3189 2.193581e+09         2023-05-10         Sub-Saharan Africa
## 3190 2.097274e+09         2023-05-10         Sub-Saharan Africa
## 3191 2.160641e+09         2023-05-10         Sub-Saharan Africa
## 3192 1.993512e+09         2023-05-10         Sub-Saharan Africa
## 3193 1.705797e+09         2023-05-10         Sub-Saharan Africa
## 3194 1.198750e+09         2023-05-10         Sub-Saharan Africa
## 3195 8.787718e+08         2023-05-10         Sub-Saharan Africa
## 3196 7.652240e+08         2023-05-10         Sub-Saharan Africa
## 3197 7.545496e+08         2023-05-10         Sub-Saharan Africa
## 3198 7.671027e+08         2023-05-10         Sub-Saharan Africa
## 3199 5.853646e+08         2023-05-10         Sub-Saharan Africa
## 3200 5.419734e+08         2023-05-10         Sub-Saharan Africa
## 3201 4.106693e+08         2023-05-10         Sub-Saharan Africa
## 3202 3.221280e+08         2023-05-10         Sub-Saharan Africa
## 3203 2.749607e+08         2023-05-10         Sub-Saharan Africa
## 3204 2.650400e+08         2023-05-10         Sub-Saharan Africa
## 3205 2.512475e+08         2023-05-10         Sub-Saharan Africa
## 3206 2.373974e+08         2023-05-10         Sub-Saharan Africa
## 3207 2.206136e+08         2023-05-10         Sub-Saharan Africa
## 3208 1.983181e+08         2023-05-10         Sub-Saharan Africa
## 3209 1.856937e+08         2023-05-10         Sub-Saharan Africa
## 3210 1.722334e+08         2023-05-10         Sub-Saharan Africa
## 3211 1.665212e+08         2023-05-10         Sub-Saharan Africa
## 3212 1.516757e+08         2023-05-10         Sub-Saharan Africa
## 3213 1.317319e+08         2023-05-10         Sub-Saharan Africa
## 3214           NA         2023-05-10  Latin America & Caribbean
## 3215 6.428244e+10         2023-05-10  Latin America & Caribbean
## 3216 6.215800e+10         2023-05-10  Latin America & Caribbean
## 3217 6.441767e+10         2023-05-10  Latin America & Caribbean
## 3218 6.242017e+10         2023-05-10  Latin America & Caribbean
## 3219 6.051604e+10         2023-05-10  Latin America & Caribbean
## 3220 5.884702e+10         2023-05-10  Latin America & Caribbean
## 3221 5.644192e+10         2023-05-10  Latin America & Caribbean
## 3222 5.201641e+10         2023-05-10  Latin America & Caribbean
## 3223 5.094967e+10         2023-05-10  Latin America & Caribbean
## 3224 4.723165e+10         2023-05-10  Latin America & Caribbean
## 3225 4.276262e+10         2023-05-10  Latin America & Caribbean
## 3226 3.765861e+10         2023-05-10  Latin America & Caribbean
## 3227 3.074571e+10         2023-05-10  Latin America & Caribbean
## 3228 3.080174e+10         2023-05-10  Latin America & Caribbean
## 3229 2.688470e+10         2023-05-10  Latin America & Caribbean
## 3230 2.271554e+10         2023-05-10  Latin America & Caribbean
## 3231 2.004064e+10         2023-05-10  Latin America & Caribbean
## 3232 1.861059e+10         2023-05-10  Latin America & Caribbean
## 3233 1.727176e+10         2023-05-10  Latin America & Caribbean
## 3234 1.657882e+10         2023-05-10  Latin America & Caribbean
## 3235 1.597617e+10         2023-05-10  Latin America & Caribbean
## 3236 1.501363e+10         2023-05-10  Latin America & Caribbean
## 3237 1.425487e+10         2023-05-10  Latin America & Caribbean
## 3238 1.368426e+10         2023-05-10  Latin America & Caribbean
## 3239 1.261460e+10         2023-05-10  Latin America & Caribbean
## 3240 1.167842e+10         2023-05-10  Latin America & Caribbean
## 3241 1.157859e+10         2023-05-10  Latin America & Caribbean
## 3242 1.048678e+10         2023-05-10  Latin America & Caribbean
## 3243 9.582866e+09         2023-05-10  Latin America & Caribbean
## 3244 8.564044e+09         2023-05-10  Latin America & Caribbean
## 3245 7.196276e+09         2023-05-10  Latin America & Caribbean
## 3246 5.711688e+09         2023-05-10  Latin America & Caribbean
## 3247 5.251026e+09         2023-05-10  Latin America & Caribbean
## 3248 4.614630e+09         2023-05-10  Latin America & Caribbean
## 3249 4.532952e+09         2023-05-10  Latin America & Caribbean
## 3250 4.418984e+09         2023-05-10  Latin America & Caribbean
## 3251 3.919204e+09         2023-05-10  Latin America & Caribbean
## 3252 3.660476e+09         2023-05-10  Latin America & Caribbean
## 3253 3.146770e+09         2023-05-10  Latin America & Caribbean
## 3254 2.606621e+09         2023-05-10  Latin America & Caribbean
## 3255 2.623807e+09         2023-05-10  Latin America & Caribbean
## 3256 4.831447e+09         2023-05-10  Latin America & Caribbean
## 3257 4.035519e+09         2023-05-10  Latin America & Caribbean
## 3258 3.523209e+09         2023-05-10  Latin America & Caribbean
## 3259 3.072427e+09         2023-05-10  Latin America & Caribbean
## 3260 2.412555e+09         2023-05-10  Latin America & Caribbean
## 3261 1.960863e+09         2023-05-10  Latin America & Caribbean
## 3262 1.666545e+09         2023-05-10  Latin America & Caribbean
## 3263 1.528916e+09         2023-05-10  Latin America & Caribbean
## 3264 1.238252e+09         2023-05-10  Latin America & Caribbean
## 3265 1.077153e+09         2023-05-10  Latin America & Caribbean
## 3266 9.848302e+08         2023-05-10  Latin America & Caribbean
## 3267 8.536302e+08         2023-05-10  Latin America & Caribbean
## 3268 7.738415e+08         2023-05-10  Latin America & Caribbean
## 3269 6.994566e+08         2023-05-10  Latin America & Caribbean
## 3270 6.473056e+08         2023-05-10  Latin America & Caribbean
## 3271 5.929812e+08         2023-05-10  Latin America & Caribbean
## 3272 5.425784e+08         2023-05-10  Latin America & Caribbean
## 3273 5.119021e+08         2023-05-10  Latin America & Caribbean
## 3274 4.791808e+08         2023-05-10  Latin America & Caribbean
## 3275 4.903252e+08         2023-05-10  Latin America & Caribbean
## 3276 5.075138e+08         2023-05-10  Latin America & Caribbean
## 3277           NA         2023-05-10         Sub-Saharan Africa
## 3278 7.004319e+10         2023-05-10         Sub-Saharan Africa
## 3279 6.134858e+10         2023-05-10         Sub-Saharan Africa
## 3280 5.853942e+10         2023-05-10         Sub-Saharan Africa
## 3281 5.801147e+10         2023-05-10         Sub-Saharan Africa
## 3282 5.158816e+10         2023-05-10         Sub-Saharan Africa
## 3283 4.796423e+10         2023-05-10         Sub-Saharan Africa
## 3284 4.581464e+10         2023-05-10         Sub-Saharan Africa
## 3285 4.884301e+10         2023-05-10         Sub-Saharan Africa
## 3286 4.276024e+10         2023-05-10         Sub-Saharan Africa
## 3287 3.630231e+10         2023-05-10         Sub-Saharan Africa
## 3288 3.669371e+10         2023-05-10         Sub-Saharan Africa
## 3289 3.493631e+10         2023-05-10         Sub-Saharan Africa
## 3290 3.388681e+10         2023-05-10         Sub-Saharan Africa
## 3291 3.407824e+10         2023-05-10         Sub-Saharan Africa
## 3292 2.876009e+10         2023-05-10         Sub-Saharan Africa
## 3293 2.528141e+10         2023-05-10         Sub-Saharan Africa
## 3294 2.403692e+10         2023-05-10         Sub-Saharan Africa
## 3295 2.351058e+10         2023-05-10         Sub-Saharan Africa
## 3296 2.125176e+10         2023-05-10         Sub-Saharan Africa
## 3297 1.805438e+10         2023-05-10         Sub-Saharan Africa
## 3298 1.681054e+10         2023-05-10         Sub-Saharan Africa
## 3299 1.657753e+10         2023-05-10         Sub-Saharan Africa
## 3300 1.887099e+10         2023-05-10         Sub-Saharan Africa
## 3301 1.961965e+10         2023-05-10         Sub-Saharan Africa
## 3302 1.804756e+10         2023-05-10         Sub-Saharan Africa
## 3303 1.807115e+10         2023-05-10         Sub-Saharan Africa
## 3304 1.100015e+10         2023-05-10         Sub-Saharan Africa
## 3305 8.313557e+09         2023-05-10         Sub-Saharan Africa
## 3306 1.104576e+10         2023-05-10         Sub-Saharan Africa
## 3307 1.115297e+10         2023-05-10         Sub-Saharan Africa
## 3308 1.049263e+10         2023-05-10         Sub-Saharan Africa
## 3309 1.079585e+10         2023-05-10         Sub-Saharan Africa
## 3310 9.757411e+09         2023-05-10         Sub-Saharan Africa
## 3311 1.025517e+10         2023-05-10         Sub-Saharan Africa
## 3312 1.008765e+10         2023-05-10         Sub-Saharan Africa
## 3313 9.158302e+09         2023-05-10         Sub-Saharan Africa
## 3314 6.977650e+09         2023-05-10         Sub-Saharan Africa
## 3315 6.841639e+09         2023-05-10         Sub-Saharan Africa
## 3316 6.838185e+09         2023-05-10         Sub-Saharan Africa
## 3317 7.567110e+09         2023-05-10         Sub-Saharan Africa
## 3318 8.432588e+09         2023-05-10         Sub-Saharan Africa
## 3319 1.017562e+10         2023-05-10         Sub-Saharan Africa
## 3320 9.142936e+09         2023-05-10         Sub-Saharan Africa
## 3321 7.900525e+09         2023-05-10         Sub-Saharan Africa
## 3322 6.265068e+09         2023-05-10         Sub-Saharan Africa
## 3323 4.662054e+09         2023-05-10         Sub-Saharan Africa
## 3324 3.893839e+09         2023-05-10         Sub-Saharan Africa
## 3325 3.070152e+09         2023-05-10         Sub-Saharan Africa
## 3326 2.508421e+09         2023-05-10         Sub-Saharan Africa
## 3327 1.849401e+09         2023-05-10         Sub-Saharan Africa
## 3328 1.584128e+09         2023-05-10         Sub-Saharan Africa
## 3329 1.455483e+09         2023-05-10         Sub-Saharan Africa
## 3330 1.361360e+09         2023-05-10         Sub-Saharan Africa
## 3331 1.281281e+09         2023-05-10         Sub-Saharan Africa
## 3332 1.082923e+09         2023-05-10         Sub-Saharan Africa
## 3333 1.024103e+09         2023-05-10         Sub-Saharan Africa
## 3334 9.197714e+08         2023-05-10         Sub-Saharan Africa
## 3335 9.210633e+08         2023-05-10         Sub-Saharan Africa
## 3336 7.610470e+08         2023-05-10         Sub-Saharan Africa
## 3337 6.452843e+08         2023-05-10         Sub-Saharan Africa
## 3338 6.182456e+08         2023-05-10         Sub-Saharan Africa
## 3339 5.462036e+08         2023-05-10         Sub-Saharan Africa
## 3340           NA         2023-05-10      Europe & Central Asia
## 3341 6.895508e+10         2023-05-10      Europe & Central Asia
## 3342 5.747201e+10         2023-05-10      Europe & Central Asia
## 3343 6.232798e+10         2023-05-10      Europe & Central Asia
## 3344 6.231684e+10         2023-05-10      Europe & Central Asia
## 3345 5.632384e+10         2023-05-10      Europe & Central Asia
## 3346 5.239749e+10         2023-05-10      Europe & Central Asia
## 3347 5.024278e+10         2023-05-10      Europe & Central Asia
## 3348 5.842398e+10         2023-05-10      Europe & Central Asia
## 3349 5.903207e+10         2023-05-10      Europe & Central Asia
## 3350 5.736936e+10         2023-05-10      Europe & Central Asia
## 3351 6.340829e+10         2023-05-10      Europe & Central Asia
## 3352 6.067209e+10         2023-05-10      Europe & Central Asia
## 3353 6.332439e+10         2023-05-10      Europe & Central Asia
## 3354 7.094330e+10         2023-05-10      Europe & Central Asia
## 3355 6.064194e+10         2023-05-10      Europe & Central Asia
## 3356 5.091502e+10         2023-05-10      Europe & Central Asia
## 3357 4.583510e+10         2023-05-10      Europe & Central Asia
## 3358 4.201346e+10         2023-05-10      Europe & Central Asia
## 3359 3.502290e+10         2023-05-10      Europe & Central Asia
## 3360 2.708526e+10         2023-05-10      Europe & Central Asia
## 3361 2.325957e+10         2023-05-10      Europe & Central Asia
## 3362 2.180786e+10         2023-05-10      Europe & Central Asia
## 3363 2.362895e+10         2023-05-10      Europe & Central Asia
## 3364 2.573213e+10         2023-05-10      Europe & Central Asia
## 3365 2.402965e+10         2023-05-10      Europe & Central Asia
## 3366 2.400483e+10         2023-05-10      Europe & Central Asia
## 3367 2.264372e+10         2023-05-10      Europe & Central Asia
## 3368           NA         2023-05-10      Europe & Central Asia
## 3369           NA         2023-05-10      Europe & Central Asia
## 3370           NA         2023-05-10      Europe & Central Asia
## 3371           NA         2023-05-10      Europe & Central Asia
## 3372           NA         2023-05-10      Europe & Central Asia
## 3373           NA         2023-05-10      Europe & Central Asia
## 3374           NA         2023-05-10      Europe & Central Asia
## 3375           NA         2023-05-10      Europe & Central Asia
## 3376           NA         2023-05-10      Europe & Central Asia
## 3377           NA         2023-05-10      Europe & Central Asia
## 3378           NA         2023-05-10      Europe & Central Asia
## 3379           NA         2023-05-10      Europe & Central Asia
## 3380           NA         2023-05-10      Europe & Central Asia
## 3381           NA         2023-05-10      Europe & Central Asia
## 3382           NA         2023-05-10      Europe & Central Asia
## 3383           NA         2023-05-10      Europe & Central Asia
## 3384           NA         2023-05-10      Europe & Central Asia
## 3385           NA         2023-05-10      Europe & Central Asia
## 3386           NA         2023-05-10      Europe & Central Asia
## 3387           NA         2023-05-10      Europe & Central Asia
## 3388           NA         2023-05-10      Europe & Central Asia
## 3389           NA         2023-05-10      Europe & Central Asia
## 3390           NA         2023-05-10      Europe & Central Asia
## 3391           NA         2023-05-10      Europe & Central Asia
## 3392           NA         2023-05-10      Europe & Central Asia
## 3393           NA         2023-05-10      Europe & Central Asia
## 3394           NA         2023-05-10      Europe & Central Asia
## 3395           NA         2023-05-10      Europe & Central Asia
## 3396           NA         2023-05-10      Europe & Central Asia
## 3397           NA         2023-05-10      Europe & Central Asia
## 3398           NA         2023-05-10      Europe & Central Asia
## 3399           NA         2023-05-10      Europe & Central Asia
## 3400           NA         2023-05-10      Europe & Central Asia
## 3401           NA         2023-05-10      Europe & Central Asia
## 3402           NA         2023-05-10      Europe & Central Asia
## 3403           NA         2023-05-10  Latin America & Caribbean
## 3404           NA         2023-05-10  Latin America & Caribbean
## 3405 1.073520e+11         2023-05-10  Latin America & Caribbean
## 3406 1.034280e+11         2023-05-10  Latin America & Caribbean
## 3407 1.000500e+11         2023-05-10  Latin America & Caribbean
## 3408 9.685100e+10         2023-05-10  Latin America & Caribbean
## 3409 9.137000e+10         2023-05-10  Latin America & Caribbean
## 3410 8.713300e+10         2023-05-10  Latin America & Caribbean
## 3411 8.065600e+10         2023-05-10  Latin America & Caribbean
## 3412 7.714800e+10         2023-05-10  Latin America & Caribbean
## 3413 7.314100e+10         2023-05-10  Latin America & Caribbean
## 3414 6.899000e+10         2023-05-10  Latin America & Caribbean
## 3415 5.956296e+10         2023-05-10  Latin America & Caribbean
## 3416 5.748148e+10         2023-05-10  Latin America & Caribbean
## 3417 5.630213e+10         2023-05-10  Latin America & Caribbean
## 3418 5.426287e+10         2023-05-10  Latin America & Caribbean
## 3419 4.883593e+10         2023-05-10  Latin America & Caribbean
## 3420 4.264384e+10         2023-05-10  Latin America & Caribbean
## 3421 3.820300e+10         2023-05-10  Latin America & Caribbean
## 3422 3.590120e+10         2023-05-10  Latin America & Caribbean
## 3423 3.359050e+10         2023-05-10  Latin America & Caribbean
## 3424 3.168240e+10         2023-05-10  Latin America & Caribbean
## 3425 3.056540e+10         2023-05-10  Latin America & Caribbean
## 3426 2.836462e+10         2023-05-10  Latin America & Caribbean
## 3427 2.573633e+10         2023-05-10  Latin America & Caribbean
## 3428 2.536591e+10         2023-05-10  Latin America & Caribbean
## 3429 2.501737e+10         2023-05-10  Latin America & Caribbean
## 3430 3.042980e+10         2023-05-10  Latin America & Caribbean
## 3431 2.844833e+10         2023-05-10  Latin America & Caribbean
## 3432 2.236725e+10         2023-05-10  Latin America & Caribbean
## 3433 2.208586e+10         2023-05-10  Latin America & Caribbean
## 3434 2.431656e+10         2023-05-10  Latin America & Caribbean
## 3435 2.864544e+10         2023-05-10  Latin America & Caribbean
## 3436 2.702347e+10         2023-05-10  Latin America & Caribbean
## 3437 2.745900e+10         2023-05-10  Latin America & Caribbean
## 3438 2.521394e+10         2023-05-10  Latin America & Caribbean
## 3439 2.422657e+10         2023-05-10  Latin America & Caribbean
## 3440 2.292049e+10         2023-05-10  Latin America & Caribbean
## 3441 2.403938e+10         2023-05-10  Latin America & Caribbean
## 3442 2.220494e+10         2023-05-10  Latin America & Caribbean
## 3443 2.095351e+10         2023-05-10  Latin America & Caribbean
## 3444 2.015025e+10         2023-05-10  Latin America & Caribbean
## 3445 1.991289e+10         2023-05-10  Latin America & Caribbean
## 3446 1.958444e+10         2023-05-10  Latin America & Caribbean
## 3447 1.784471e+10         2023-05-10  Latin America & Caribbean
## 3448 1.420616e+10         2023-05-10  Latin America & Caribbean
## 3449 1.378958e+10         2023-05-10  Latin America & Caribbean
## 3450 1.302742e+10         2023-05-10  Latin America & Caribbean
## 3451 1.140596e+10         2023-05-10  Latin America & Caribbean
## 3452 9.987710e+09         2023-05-10  Latin America & Caribbean
## 3453 8.135151e+09         2023-05-10  Latin America & Caribbean
## 3454 6.914658e+09         2023-05-10  Latin America & Caribbean
## 3455 5.693005e+09         2023-05-10  Latin America & Caribbean
## 3456           NA         2023-05-10  Latin America & Caribbean
## 3457           NA         2023-05-10  Latin America & Caribbean
## 3458           NA         2023-05-10  Latin America & Caribbean
## 3459           NA         2023-05-10  Latin America & Caribbean
## 3460           NA         2023-05-10  Latin America & Caribbean
## 3461           NA         2023-05-10  Latin America & Caribbean
## 3462           NA         2023-05-10  Latin America & Caribbean
## 3463           NA         2023-05-10  Latin America & Caribbean
## 3464           NA         2023-05-10  Latin America & Caribbean
## 3465           NA         2023-05-10  Latin America & Caribbean
## 3466           NA         2023-05-10  Latin America & Caribbean
## 3467 2.699612e+09         2023-05-10  Latin America & Caribbean
## 3468 2.496175e+09         2023-05-10  Latin America & Caribbean
## 3469 2.995185e+09         2023-05-10  Latin America & Caribbean
## 3470 3.020389e+09         2023-05-10  Latin America & Caribbean
## 3471 3.009497e+09         2023-05-10  Latin America & Caribbean
## 3472 3.014749e+09         2023-05-10  Latin America & Caribbean
## 3473 3.042737e+09         2023-05-10  Latin America & Caribbean
## 3474 3.048436e+09         2023-05-10  Latin America & Caribbean
## 3475 3.039944e+09         2023-05-10  Latin America & Caribbean
## 3476 3.024525e+09         2023-05-10  Latin America & Caribbean
## 3477 2.933128e+09         2023-05-10  Latin America & Caribbean
## 3478           NA         2023-05-10  Latin America & Caribbean
## 3479           NA         2023-05-10  Latin America & Caribbean
## 3480           NA         2023-05-10  Latin America & Caribbean
## 3481           NA         2023-05-10  Latin America & Caribbean
## 3482           NA         2023-05-10  Latin America & Caribbean
## 3483           NA         2023-05-10  Latin America & Caribbean
## 3484           NA         2023-05-10  Latin America & Caribbean
## 3485           NA         2023-05-10  Latin America & Caribbean
## 3486           NA         2023-05-10  Latin America & Caribbean
## 3487           NA         2023-05-10  Latin America & Caribbean
## 3488           NA         2023-05-10  Latin America & Caribbean
## 3489           NA         2023-05-10  Latin America & Caribbean
## 3490           NA         2023-05-10  Latin America & Caribbean
## 3491           NA         2023-05-10  Latin America & Caribbean
## 3492           NA         2023-05-10  Latin America & Caribbean
## 3493           NA         2023-05-10  Latin America & Caribbean
## 3494           NA         2023-05-10  Latin America & Caribbean
## 3495           NA         2023-05-10  Latin America & Caribbean
## 3496           NA         2023-05-10  Latin America & Caribbean
## 3497           NA         2023-05-10  Latin America & Caribbean
## 3498           NA         2023-05-10  Latin America & Caribbean
## 3499           NA         2023-05-10  Latin America & Caribbean
## 3500           NA         2023-05-10  Latin America & Caribbean
## 3501           NA         2023-05-10  Latin America & Caribbean
## 3502           NA         2023-05-10  Latin America & Caribbean
## 3503           NA         2023-05-10  Latin America & Caribbean
## 3504           NA         2023-05-10  Latin America & Caribbean
## 3505           NA         2023-05-10  Latin America & Caribbean
## 3506           NA         2023-05-10  Latin America & Caribbean
## 3507           NA         2023-05-10  Latin America & Caribbean
## 3508           NA         2023-05-10  Latin America & Caribbean
## 3509           NA         2023-05-10  Latin America & Caribbean
## 3510           NA         2023-05-10  Latin America & Caribbean
## 3511           NA         2023-05-10  Latin America & Caribbean
## 3512           NA         2023-05-10  Latin America & Caribbean
## 3513           NA         2023-05-10  Latin America & Caribbean
## 3514           NA         2023-05-10  Latin America & Caribbean
## 3515           NA         2023-05-10  Latin America & Caribbean
## 3516           NA         2023-05-10  Latin America & Caribbean
## 3517           NA         2023-05-10  Latin America & Caribbean
## 3518           NA         2023-05-10  Latin America & Caribbean
## 3519           NA         2023-05-10  Latin America & Caribbean
## 3520           NA         2023-05-10  Latin America & Caribbean
## 3521           NA         2023-05-10  Latin America & Caribbean
## 3522           NA         2023-05-10  Latin America & Caribbean
## 3523           NA         2023-05-10  Latin America & Caribbean
## 3524           NA         2023-05-10  Latin America & Caribbean
## 3525           NA         2023-05-10  Latin America & Caribbean
## 3526           NA         2023-05-10  Latin America & Caribbean
## 3527           NA         2023-05-10  Latin America & Caribbean
## 3528           NA         2023-05-10  Latin America & Caribbean
## 3529           NA         2023-05-10      Europe & Central Asia
## 3530 2.840787e+10         2023-05-10      Europe & Central Asia
## 3531 2.500845e+10         2023-05-10      Europe & Central Asia
## 3532 2.594450e+10         2023-05-10      Europe & Central Asia
## 3533 2.559647e+10         2023-05-10      Europe & Central Asia
## 3534 2.294673e+10         2023-05-10      Europe & Central Asia
## 3535 2.104695e+10         2023-05-10      Europe & Central Asia
## 3536 1.990919e+10         2023-05-10      Europe & Central Asia
## 3537 2.322678e+10         2023-05-10      Europe & Central Asia
## 3538 2.396114e+10         2023-05-10      Europe & Central Asia
## 3539 2.504866e+10         2023-05-10      Europe & Central Asia
## 3540 2.764209e+10         2023-05-10      Europe & Central Asia
## 3541 2.580025e+10         2023-05-10      Europe & Central Asia
## 3542 2.594539e+10         2023-05-10      Europe & Central Asia
## 3543 2.784470e+10         2023-05-10      Europe & Central Asia
## 3544 2.396876e+10         2023-05-10      Europe & Central Asia
## 3545 2.007279e+10         2023-05-10      Europe & Central Asia
## 3546 1.843341e+10         2023-05-10      Europe & Central Asia
## 3547 1.732055e+10         2023-05-10      Europe & Central Asia
## 3548 1.454733e+10         2023-05-10      Europe & Central Asia
## 3549 1.142023e+10         2023-05-10      Europe & Central Asia
## 3550 1.039790e+10         2023-05-10      Europe & Central Asia
## 3551 9.985844e+09         2023-05-10      Europe & Central Asia
## 3552 1.049791e+10         2023-05-10      Europe & Central Asia
## 3553 1.024862e+10         2023-05-10      Europe & Central Asia
## 3554 9.547819e+09         2023-05-10      Europe & Central Asia
## 3555 1.001192e+10         2023-05-10      Europe & Central Asia
## 3556 9.933133e+09         2023-05-10      Europe & Central Asia
## 3557 7.425704e+09         2023-05-10      Europe & Central Asia
## 3558 6.590291e+09         2023-05-10      Europe & Central Asia
## 3559 6.912150e+09         2023-05-10      Europe & Central Asia
## 3560 5.770197e+09         2023-05-10      Europe & Central Asia
## 3561 5.591130e+09         2023-05-10      Europe & Central Asia
## 3562 4.563483e+09         2023-05-10      Europe & Central Asia
## 3563 4.278793e+09         2023-05-10      Europe & Central Asia
## 3564 3.704814e+09         2023-05-10      Europe & Central Asia
## 3565 3.090734e+09         2023-05-10      Europe & Central Asia
## 3566 2.430412e+09         2023-05-10      Europe & Central Asia
## 3567 2.278249e+09         2023-05-10      Europe & Central Asia
## 3568 2.160364e+09         2023-05-10      Europe & Central Asia
## 3569 2.159242e+09         2023-05-10      Europe & Central Asia
## 3570 2.087496e+09         2023-05-10      Europe & Central Asia
## 3571 2.154311e+09         2023-05-10      Europe & Central Asia
## 3572 1.288715e+09         2023-05-10      Europe & Central Asia
## 3573 9.640265e+08         2023-05-10      Europe & Central Asia
## 3574 7.348880e+08         2023-05-10      Europe & Central Asia
## 3575 5.760901e+08         2023-05-10      Europe & Central Asia
## 3576 4.899148e+08         2023-05-10      Europe & Central Asia
## 3577           NA         2023-05-10      Europe & Central Asia
## 3578           NA         2023-05-10      Europe & Central Asia
## 3579           NA         2023-05-10      Europe & Central Asia
## 3580           NA         2023-05-10      Europe & Central Asia
## 3581           NA         2023-05-10      Europe & Central Asia
## 3582           NA         2023-05-10      Europe & Central Asia
## 3583           NA         2023-05-10      Europe & Central Asia
## 3584           NA         2023-05-10      Europe & Central Asia
## 3585           NA         2023-05-10      Europe & Central Asia
## 3586           NA         2023-05-10      Europe & Central Asia
## 3587           NA         2023-05-10      Europe & Central Asia
## 3588           NA         2023-05-10      Europe & Central Asia
## 3589           NA         2023-05-10      Europe & Central Asia
## 3590           NA         2023-05-10      Europe & Central Asia
## 3591           NA         2023-05-10      Europe & Central Asia
## 3592           NA         2023-05-10      Europe & Central Asia
## 3593 2.817779e+11         2023-05-10      Europe & Central Asia
## 3594 2.459746e+11         2023-05-10      Europe & Central Asia
## 3595 2.525482e+11         2023-05-10      Europe & Central Asia
## 3596 2.490005e+11         2023-05-10      Europe & Central Asia
## 3597 2.186289e+11         2023-05-10      Europe & Central Asia
## 3598 1.962721e+11         2023-05-10      Europe & Central Asia
## 3599 1.880331e+11         2023-05-10      Europe & Central Asia
## 3600 2.093588e+11         2023-05-10      Europe & Central Asia
## 3601 2.116856e+11         2023-05-10      Europe & Central Asia
## 3602 2.088577e+11         2023-05-10      Europe & Central Asia
## 3603 2.295627e+11         2023-05-10      Europe & Central Asia
## 3604 2.090699e+11         2023-05-10      Europe & Central Asia
## 3605 2.074343e+11         2023-05-10      Europe & Central Asia
## 3606 2.368165e+11         2023-05-10      Europe & Central Asia
## 3607 1.901838e+11         2023-05-10      Europe & Central Asia
## 3608 1.562641e+11         2023-05-10      Europe & Central Asia
## 3609 1.371435e+11         2023-05-10      Europe & Central Asia
## 3610 1.198144e+11         2023-05-10      Europe & Central Asia
## 3611 1.000905e+11         2023-05-10      Europe & Central Asia
## 3612 8.219600e+10         2023-05-10      Europe & Central Asia
## 3613 6.780803e+10         2023-05-10      Europe & Central Asia
## 3614 6.182817e+10         2023-05-10      Europe & Central Asia
## 3615 6.517313e+10         2023-05-10      Europe & Central Asia
## 3616 6.680743e+10         2023-05-10      Europe & Central Asia
## 3617 6.218016e+10         2023-05-10      Europe & Central Asia
## 3618 6.738779e+10         2023-05-10      Europe & Central Asia
## 3619 6.014717e+10         2023-05-10      Europe & Central Asia
## 3620 4.785020e+10         2023-05-10      Europe & Central Asia
## 3621 4.086675e+10         2023-05-10      Europe & Central Asia
## 3622 3.480501e+10         2023-05-10      Europe & Central Asia
## 3623 2.985992e+10         2023-05-10      Europe & Central Asia
## 3624 4.072895e+10         2023-05-10      Europe & Central Asia
## 3625           NA         2023-05-10      Europe & Central Asia
## 3626           NA         2023-05-10      Europe & Central Asia
## 3627           NA         2023-05-10      Europe & Central Asia
## 3628           NA         2023-05-10      Europe & Central Asia
## 3629           NA         2023-05-10      Europe & Central Asia
## 3630           NA         2023-05-10      Europe & Central Asia
## 3631           NA         2023-05-10      Europe & Central Asia
## 3632           NA         2023-05-10      Europe & Central Asia
## 3633           NA         2023-05-10      Europe & Central Asia
## 3634           NA         2023-05-10      Europe & Central Asia
## 3635           NA         2023-05-10      Europe & Central Asia
## 3636           NA         2023-05-10      Europe & Central Asia
## 3637           NA         2023-05-10      Europe & Central Asia
## 3638           NA         2023-05-10      Europe & Central Asia
## 3639           NA         2023-05-10      Europe & Central Asia
## 3640           NA         2023-05-10      Europe & Central Asia
## 3641           NA         2023-05-10      Europe & Central Asia
## 3642           NA         2023-05-10      Europe & Central Asia
## 3643           NA         2023-05-10      Europe & Central Asia
## 3644           NA         2023-05-10      Europe & Central Asia
## 3645           NA         2023-05-10      Europe & Central Asia
## 3646           NA         2023-05-10      Europe & Central Asia
## 3647           NA         2023-05-10      Europe & Central Asia
## 3648           NA         2023-05-10      Europe & Central Asia
## 3649           NA         2023-05-10      Europe & Central Asia
## 3650           NA         2023-05-10      Europe & Central Asia
## 3651           NA         2023-05-10      Europe & Central Asia
## 3652           NA         2023-05-10      Europe & Central Asia
## 3653           NA         2023-05-10      Europe & Central Asia
## 3654           NA         2023-05-10      Europe & Central Asia
## 3655           NA         2023-05-10      Europe & Central Asia
## 3656 3.983033e+11         2023-05-10      Europe & Central Asia
## 3657 3.552224e+11         2023-05-10      Europe & Central Asia
## 3658 3.464987e+11         2023-05-10      Europe & Central Asia
## 3659 3.568412e+11         2023-05-10      Europe & Central Asia
## 3660 3.321211e+11         2023-05-10      Europe & Central Asia
## 3661 3.131159e+11         2023-05-10      Europe & Central Asia
## 3662 3.026731e+11         2023-05-10      Europe & Central Asia
## 3663 3.529936e+11         2023-05-10      Europe & Central Asia
## 3664 3.435844e+11         2023-05-10      Europe & Central Asia
## 3665 3.271489e+11         2023-05-10      Europe & Central Asia
## 3666 3.440031e+11         2023-05-10      Europe & Central Asia
## 3667 3.219953e+11         2023-05-10      Europe & Central Asia
## 3668 3.212413e+11         2023-05-10      Europe & Central Asia
## 3669 3.533610e+11         2023-05-10      Europe & Central Asia
## 3670 3.194234e+11         2023-05-10      Europe & Central Asia
## 3671 2.828849e+11         2023-05-10      Europe & Central Asia
## 3672 2.644673e+11         2023-05-10      Europe & Central Asia
## 3673 2.513730e+11         2023-05-10      Europe & Central Asia
## 3674 2.180960e+11         2023-05-10      Europe & Central Asia
## 3675 1.786352e+11         2023-05-10      Europe & Central Asia
## 3676 1.647914e+11         2023-05-10      Europe & Central Asia
## 3677 1.641587e+11         2023-05-10      Europe & Central Asia
## 3678 1.779652e+11         2023-05-10      Europe & Central Asia
## 3679 1.769919e+11         2023-05-10      Europe & Central Asia
## 3680 1.735376e+11         2023-05-10      Europe & Central Asia
## 3681 1.876323e+11         2023-05-10      Europe & Central Asia
## 3682 1.850069e+11         2023-05-10      Europe & Central Asia
## 3683 1.561624e+11         2023-05-10      Europe & Central Asia
## 3684 1.431956e+11         2023-05-10      Europe & Central Asia
## 3685 1.529157e+11         2023-05-10      Europe & Central Asia
## 3686 1.392247e+11         2023-05-10      Europe & Central Asia
## 3687 1.382473e+11         2023-05-10      Europe & Central Asia
## 3688 1.124092e+11         2023-05-10      Europe & Central Asia
## 3689 1.155528e+11         2023-05-10      Europe & Central Asia
## 3690 1.094144e+11         2023-05-10      Europe & Central Asia
## 3691 8.807876e+10         2023-05-10      Europe & Central Asia
## 3692 6.265857e+10         2023-05-10      Europe & Central Asia
## 3693 5.910524e+10         2023-05-10      Europe & Central Asia
## 3694 6.064478e+10         2023-05-10      Europe & Central Asia
## 3695 6.041284e+10         2023-05-10      Europe & Central Asia
## 3696 6.187781e+10         2023-05-10      Europe & Central Asia
## 3697 7.112753e+10         2023-05-10      Europe & Central Asia
## 3698 7.036624e+10         2023-05-10      Europe & Central Asia
## 3699 6.036293e+10         2023-05-10      Europe & Central Asia
## 3700 4.978434e+10         2023-05-10      Europe & Central Asia
## 3701 4.457589e+10         2023-05-10      Europe & Central Asia
## 3702 4.047441e+10         2023-05-10      Europe & Central Asia
## 3703 3.416044e+10         2023-05-10      Europe & Central Asia
## 3704 3.073063e+10         2023-05-10      Europe & Central Asia
## 3705 2.323238e+10         2023-05-10      Europe & Central Asia
## 3706 1.908573e+10         2023-05-10      Europe & Central Asia
## 3707 1.707546e+10         2023-05-10      Europe & Central Asia
## 3708 1.541490e+10         2023-05-10      Europe & Central Asia
## 3709 1.350557e+10         2023-05-10      Europe & Central Asia
## 3710 1.305906e+10         2023-05-10      Europe & Central Asia
## 3711 1.193174e+10         2023-05-10      Europe & Central Asia
## 3712           NA         2023-05-10      Europe & Central Asia
## 3713           NA         2023-05-10      Europe & Central Asia
## 3714           NA         2023-05-10      Europe & Central Asia
## 3715           NA         2023-05-10      Europe & Central Asia
## 3716           NA         2023-05-10      Europe & Central Asia
## 3717           NA         2023-05-10      Europe & Central Asia
## 3718           NA         2023-05-10 Middle East & North Africa
## 3719 3.482987e+09         2023-05-10 Middle East & North Africa
## 3720 3.181071e+09         2023-05-10 Middle East & North Africa
## 3721 3.088854e+09         2023-05-10 Middle East & North Africa
## 3722 2.913467e+09         2023-05-10 Middle East & North Africa
## 3723 2.762581e+09         2023-05-10 Middle East & North Africa
## 3724 2.604955e+09         2023-05-10 Middle East & North Africa
## 3725 2.424392e+09         2023-05-10 Middle East & North Africa
## 3726 2.214679e+09         2023-05-10 Middle East & North Africa
## 3727 2.042817e+09         2023-05-10 Middle East & North Africa
## 3728 1.353633e+09         2023-05-10 Middle East & North Africa
## 3729 1.239145e+09         2023-05-10 Middle East & North Africa
## 3730 1.128612e+09         2023-05-10 Middle East & North Africa
## 3731 1.049111e+09         2023-05-10 Middle East & North Africa
## 3732 9.991053e+08         2023-05-10 Middle East & North Africa
## 3733 8.479189e+08         2023-05-10 Middle East & North Africa
## 3734 7.688737e+08         2023-05-10 Middle East & North Africa
## 3735 7.086332e+08         2023-05-10 Middle East & North Africa
## 3736 6.660721e+08         2023-05-10 Middle East & North Africa
## 3737 6.220447e+08         2023-05-10 Middle East & North Africa
## 3738 5.911220e+08         2023-05-10 Middle East & North Africa
## 3739 5.724174e+08         2023-05-10 Middle East & North Africa
## 3740 5.512309e+08         2023-05-10 Middle East & North Africa
## 3741 5.360801e+08         2023-05-10 Middle East & North Africa
## 3742 5.142679e+08         2023-05-10 Middle East & North Africa
## 3743 5.026755e+08         2023-05-10 Middle East & North Africa
## 3744 4.940046e+08         2023-05-10 Middle East & North Africa
## 3745 4.977240e+08         2023-05-10 Middle East & North Africa
## 3746 4.916892e+08         2023-05-10 Middle East & North Africa
## 3747 4.660485e+08         2023-05-10 Middle East & North Africa
## 3748 4.780583e+08         2023-05-10 Middle East & North Africa
## 3749 4.624220e+08         2023-05-10 Middle East & North Africa
## 3750 4.523281e+08         2023-05-10 Middle East & North Africa
## 3751 4.092201e+08         2023-05-10 Middle East & North Africa
## 3752 3.957945e+08         2023-05-10 Middle East & North Africa
## 3753 3.733717e+08         2023-05-10 Middle East & North Africa
## 3754           NA         2023-05-10 Middle East & North Africa
## 3755 3.409895e+08         2023-05-10 Middle East & North Africa
## 3756           NA         2023-05-10 Middle East & North Africa
## 3757           NA         2023-05-10 Middle East & North Africa
## 3758           NA         2023-05-10 Middle East & North Africa
## 3759           NA         2023-05-10 Middle East & North Africa
## 3760           NA         2023-05-10 Middle East & North Africa
## 3761           NA         2023-05-10 Middle East & North Africa
## 3762           NA         2023-05-10 Middle East & North Africa
## 3763           NA         2023-05-10 Middle East & North Africa
## 3764           NA         2023-05-10 Middle East & North Africa
## 3765           NA         2023-05-10 Middle East & North Africa
## 3766           NA         2023-05-10 Middle East & North Africa
## 3767           NA         2023-05-10 Middle East & North Africa
## 3768           NA         2023-05-10 Middle East & North Africa
## 3769           NA         2023-05-10 Middle East & North Africa
## 3770           NA         2023-05-10 Middle East & North Africa
## 3771           NA         2023-05-10 Middle East & North Africa
## 3772           NA         2023-05-10 Middle East & North Africa
## 3773           NA         2023-05-10 Middle East & North Africa
## 3774           NA         2023-05-10 Middle East & North Africa
## 3775           NA         2023-05-10 Middle East & North Africa
## 3776           NA         2023-05-10 Middle East & North Africa
## 3777           NA         2023-05-10 Middle East & North Africa
## 3778           NA         2023-05-10 Middle East & North Africa
## 3779           NA         2023-05-10 Middle East & North Africa
## 3780           NA         2023-05-10 Middle East & North Africa
## 3781           NA         2023-05-10  Latin America & Caribbean
## 3782 5.541815e+08         2023-05-10  Latin America & Caribbean
## 3783 5.042148e+08         2023-05-10  Latin America & Caribbean
## 3784 6.115370e+08         2023-05-10  Latin America & Caribbean
## 3785 5.547704e+08         2023-05-10  Latin America & Caribbean
## 3786 5.215519e+08         2023-05-10  Latin America & Caribbean
## 3787 5.762296e+08         2023-05-10  Latin America & Caribbean
## 3788 5.407370e+08         2023-05-10  Latin America & Caribbean
## 3789 5.202074e+08         2023-05-10  Latin America & Caribbean
## 3790 4.982963e+08         2023-05-10  Latin America & Caribbean
## 3791 4.859963e+08         2023-05-10  Latin America & Caribbean
## 3792 5.010259e+08         2023-05-10  Latin America & Caribbean
## 3793 4.938259e+08         2023-05-10  Latin America & Caribbean
## 3794 4.890741e+08         2023-05-10  Latin America & Caribbean
## 3795 4.581889e+08         2023-05-10  Latin America & Caribbean
## 3796 4.213741e+08         2023-05-10  Latin America & Caribbean
## 3797 3.902519e+08         2023-05-10  Latin America & Caribbean
## 3798 3.642556e+08         2023-05-10  Latin America & Caribbean
## 3799 3.672000e+08         2023-05-10  Latin America & Caribbean
## 3800 3.433111e+08         2023-05-10  Latin America & Caribbean
## 3801 3.331963e+08         2023-05-10  Latin America & Caribbean
## 3802 3.402037e+08         2023-05-10  Latin America & Caribbean
## 3803 3.334704e+08         2023-05-10  Latin America & Caribbean
## 3804 3.317593e+08         2023-05-10  Latin America & Caribbean
## 3805 3.224111e+08         2023-05-10  Latin America & Caribbean
## 3806 3.029889e+08         2023-05-10  Latin America & Caribbean
## 3807 2.922852e+08         2023-05-10  Latin America & Caribbean
## 3808 2.745222e+08         2023-05-10  Latin America & Caribbean
## 3809 2.643741e+08         2023-05-10  Latin America & Caribbean
## 3810 2.455259e+08         2023-05-10  Latin America & Caribbean
## 3811 2.340593e+08         2023-05-10  Latin America & Caribbean
## 3812 2.197630e+08         2023-05-10  Latin America & Caribbean
## 3813 2.014296e+08         2023-05-10  Latin America & Caribbean
## 3814 1.851372e+08         2023-05-10  Latin America & Caribbean
## 3815 1.711062e+08         2023-05-10  Latin America & Caribbean
## 3816 1.518688e+08         2023-05-10  Latin America & Caribbean
## 3817 1.351620e+08         2023-05-10  Latin America & Caribbean
## 3818 1.194919e+08         2023-05-10  Latin America & Caribbean
## 3819 1.091571e+08         2023-05-10  Latin America & Caribbean
## 3820 9.866519e+07         2023-05-10  Latin America & Caribbean
## 3821 8.952758e+07         2023-05-10  Latin America & Caribbean
## 3822 8.210739e+07         2023-05-10  Latin America & Caribbean
## 3823 7.280465e+07         2023-05-10  Latin America & Caribbean
## 3824 5.501776e+07         2023-05-10  Latin America & Caribbean
## 3825 5.713022e+07         2023-05-10  Latin America & Caribbean
## 3826 4.587295e+07         2023-05-10  Latin America & Caribbean
## 3827           NA         2023-05-10  Latin America & Caribbean
## 3828           NA         2023-05-10  Latin America & Caribbean
## 3829           NA         2023-05-10  Latin America & Caribbean
## 3830           NA         2023-05-10  Latin America & Caribbean
## 3831           NA         2023-05-10  Latin America & Caribbean
## 3832           NA         2023-05-10  Latin America & Caribbean
## 3833           NA         2023-05-10  Latin America & Caribbean
## 3834           NA         2023-05-10  Latin America & Caribbean
## 3835           NA         2023-05-10  Latin America & Caribbean
## 3836           NA         2023-05-10  Latin America & Caribbean
## 3837           NA         2023-05-10  Latin America & Caribbean
## 3838           NA         2023-05-10  Latin America & Caribbean
## 3839           NA         2023-05-10  Latin America & Caribbean
## 3840           NA         2023-05-10  Latin America & Caribbean
## 3841           NA         2023-05-10  Latin America & Caribbean
## 3842           NA         2023-05-10  Latin America & Caribbean
## 3843           NA         2023-05-10  Latin America & Caribbean
## 3844           NA         2023-05-10  Latin America & Caribbean
## 3845 9.424345e+10         2023-05-10  Latin America & Caribbean
## 3846 7.884470e+10         2023-05-10  Latin America & Caribbean
## 3847 8.894130e+10         2023-05-10  Latin America & Caribbean
## 3848 8.555538e+10         2023-05-10  Latin America & Caribbean
## 3849 7.999798e+10         2023-05-10  Latin America & Caribbean
## 3850 7.570472e+10         2023-05-10  Latin America & Caribbean
## 3851 7.116483e+10         2023-05-10  Latin America & Caribbean
## 3852 6.717991e+10         2023-05-10  Latin America & Caribbean
## 3853 6.268216e+10         2023-05-10  Latin America & Caribbean
## 3854 6.068154e+10         2023-05-10  Latin America & Caribbean
## 3855 5.802975e+10         2023-05-10  Latin America & Caribbean
## 3856 5.386018e+10         2023-05-10  Latin America & Caribbean
## 3857 4.826103e+10         2023-05-10  Latin America & Caribbean
## 3858 4.812255e+10         2023-05-10  Latin America & Caribbean
## 3859 4.396542e+10         2023-05-10  Latin America & Caribbean
## 3860 3.787987e+10         2023-05-10  Latin America & Caribbean
## 3861 3.577757e+10         2023-05-10  Latin America & Caribbean
## 3862 2.232240e+10         2023-05-10  Latin America & Caribbean
## 3863 2.140317e+10         2023-05-10  Latin America & Caribbean
## 3864 2.713751e+10         2023-05-10  Latin America & Caribbean
## 3865 2.560177e+10         2023-05-10  Latin America & Caribbean
## 3866 2.430572e+10         2023-05-10  Latin America & Caribbean
## 3867 2.213662e+10         2023-05-10  Latin America & Caribbean
## 3868 2.167223e+10         2023-05-10  Latin America & Caribbean
## 3869 2.001748e+10         2023-05-10  Latin America & Caribbean
## 3870 1.824169e+10         2023-05-10  Latin America & Caribbean
## 3871 1.663737e+10         2023-05-10  Latin America & Caribbean
## 3872 1.464471e+10         2023-05-10  Latin America & Caribbean
## 3873 1.308104e+10         2023-05-10  Latin America & Caribbean
## 3874 1.160538e+10         2023-05-10  Latin America & Caribbean
## 3875 9.824498e+09         2023-05-10  Latin America & Caribbean
## 3876 7.073676e+09         2023-05-10  Latin America & Caribbean
## 3877 6.686593e+09         2023-05-10  Latin America & Caribbean
## 3878 5.374315e+09         2023-05-10  Latin America & Caribbean
## 3879 5.826987e+09         2023-05-10  Latin America & Caribbean
## 3880 6.122198e+09         2023-05-10  Latin America & Caribbean
## 3881 5.044593e+09         2023-05-10  Latin America & Caribbean
## 3882 1.159400e+10         2023-05-10  Latin America & Caribbean
## 3883 9.220600e+09         2023-05-10  Latin America & Caribbean
## 3884 8.267400e+09         2023-05-10  Latin America & Caribbean
## 3885 7.561300e+09         2023-05-10  Latin America & Caribbean
## 3886 6.761300e+09         2023-05-10  Latin America & Caribbean
## 3887 5.498800e+09         2023-05-10  Latin America & Caribbean
## 3888 4.734400e+09         2023-05-10  Latin America & Caribbean
## 3889 4.587100e+09         2023-05-10  Latin America & Caribbean
## 3890 3.951500e+09         2023-05-10  Latin America & Caribbean
## 3891 3.599200e+09         2023-05-10  Latin America & Caribbean
## 3892 2.925700e+09         2023-05-10  Latin America & Caribbean
## 3893 2.344800e+09         2023-05-10  Latin America & Caribbean
## 3894 1.987400e+09         2023-05-10  Latin America & Caribbean
## 3895 1.666500e+09         2023-05-10  Latin America & Caribbean
## 3896 1.485500e+09         2023-05-10  Latin America & Caribbean
## 3897 1.230500e+09         2023-05-10  Latin America & Caribbean
## 3898 1.079100e+09         2023-05-10  Latin America & Caribbean
## 3899 1.034800e+09         2023-05-10  Latin America & Caribbean
## 3900 9.839000e+08         2023-05-10  Latin America & Caribbean
## 3901 8.881000e+08         2023-05-10  Latin America & Caribbean
## 3902 1.025600e+09         2023-05-10  Latin America & Caribbean
## 3903 9.407999e+08         2023-05-10  Latin America & Caribbean
## 3904 8.241000e+08         2023-05-10  Latin America & Caribbean
## 3905 6.541002e+08         2023-05-10  Latin America & Caribbean
## 3906 6.723997e+08         2023-05-10  Latin America & Caribbean
## 3907 7.262191e+12         2023-05-10                 Aggregates
## 3908 4.932003e+12         2023-05-10                 Aggregates
## 3909 6.672114e+12         2023-05-10                 Aggregates
## 3910 8.804981e+12         2023-05-10                 Aggregates
## 3911 4.229725e+12         2023-05-10                 Aggregates
## 3912 2.375983e+12         2023-05-10                 Aggregates
## 3913 1.491257e+12         2023-05-10                 Aggregates
## 3914 2.792367e+12         2023-05-10                 Aggregates
## 3915 7.524110e+12         2023-05-10                 Aggregates
## 3916 5.639084e+12         2023-05-10                 Aggregates
## 3917 7.948760e+11         2023-05-10                 Aggregates
## 3918 1.334651e+12         2023-05-10                 Aggregates
## 3919 1.072707e+12         2023-05-10                 Aggregates
## 3920           NA         2023-05-10                 Aggregates
## 3921 1.015631e+13         2023-05-10                 Aggregates
## 3922 9.718645e+12         2023-05-10                 Aggregates
## 3923 3.101801e+11         2023-05-10                 Aggregates
## 3924 8.824410e+11         2023-05-10                 Aggregates
## 3925 2.708357e+11         2023-05-10                 Aggregates
## 3926 2.427236e+11         2023-05-10                 Aggregates
## 3927 2.240331e+11         2023-05-10                 Aggregates
## 3928 2.497989e+12         2023-05-10                 Aggregates
## 3929 2.158836e+11         2023-05-10                 Aggregates
## 3930 3.632857e+12         2023-05-10                 Aggregates
## 3931 3.264190e+12         2023-05-10                 Aggregates
## 3932 2.131702e+11         2023-05-10                 Aggregates
## 3933 3.386374e+12         2023-05-10                 Aggregates
## 3934 3.112672e+12         2023-05-10                 Aggregates
## 3935 2.942819e+12         2023-05-10                 Aggregates
## 3936 2.984858e+12         2023-05-10                 Aggregates
## 3937 2.865162e+11         2023-05-10                 Aggregates
## 3938 1.860045e+12         2023-05-10                 Aggregates
## 3939 2.561134e+12         2023-05-10                 Aggregates
## 3940 2.162736e+12         2023-05-10                 Aggregates
## 3941 1.966540e+12         2023-05-10                 Aggregates
## 3942 1.457343e+12         2023-05-10                 Aggregates
## 3943 1.584646e+12         2023-05-10                 Aggregates
## 3944 1.554594e+12         2023-05-10                 Aggregates
## 3945 3.356995e+12         2023-05-10                 Aggregates
## 3946 1.085137e+13         2023-05-10                 Aggregates
## 3947 1.418373e+12         2023-05-10                 Aggregates
## 3948 1.429346e+12         2023-05-10                 Aggregates
## 3949 1.419017e+12         2023-05-10                 Aggregates
## 3950 7.113722e+11         2023-05-10                 Aggregates
## 3951 1.163800e+13         2023-05-10                 Aggregates
## 3952 1.142192e+13         2023-05-10                 Aggregates
## 3953 1.263730e+13         2023-05-10                 Aggregates
## 3954 3.390947e+11         2023-05-10                 Aggregates
## 3955 6.515882e+11         2023-05-10                 Aggregates
## 3956 6.061663e+11         2023-05-10                 Aggregates
## 3957 1.129505e+13         2023-05-10                 Aggregates
## 3958 1.993081e+11         2023-05-10                 Aggregates
## 3959 1.740027e+11         2023-05-10                 Aggregates
## 3960 1.640166e+11         2023-05-10                 Aggregates
## 3961 4.333221e+11         2023-05-10                 Aggregates
## 3962 1.582070e+11         2023-05-10                 Aggregates
## 3963 1.029765e+13         2023-05-10                 Aggregates
## 3964 1.591787e+11         2023-05-10                 Aggregates
## 3965 1.469791e+12         2023-05-10                 Aggregates
## 3966 1.065144e+13         2023-05-10                 Aggregates
## 3967 1.480761e+12         2023-05-10                 Aggregates
## 3968 1.045822e+13         2023-05-10                 Aggregates
## 3969 1.013174e+13         2023-05-10                 Aggregates
## 3970 1.232599e+13         2023-05-10                 Aggregates
## 3971 8.407333e+12         2023-05-10                 Aggregates
## 3972 5.349242e+12         2023-05-10                 Aggregates
## 3973 7.403861e+12         2023-05-10                 Aggregates
## 3974 2.702830e+13         2023-05-10                 Aggregates
## 3975 1.421078e+13         2023-05-10                 Aggregates
## 3976 3.091169e+13         2023-05-10                 Aggregates
## 3977 4.738187e+12         2023-05-10                 Aggregates
## 3978 2.712731e+13         2023-05-10                 Aggregates
## 3979 8.101130e+12         2023-05-10                 Aggregates
## 3980 1.546796e+12         2023-05-10                 Aggregates
## 3981 2.001892e+12         2023-05-10                 Aggregates
## 3982 6.536237e+12         2023-05-10                 Aggregates
## 3983 5.844851e+12         2023-05-10                 Aggregates
## 3984 2.199721e+13         2023-05-10                 Aggregates
## 3985 1.225992e+12         2023-05-10                 Aggregates
## 3986 1.815968e+12         2023-05-10                 Aggregates
## 3987 2.648226e+13         2023-05-10                 Aggregates
## 3988           NA         2023-05-10                 Aggregates
## 3989 1.706638e+13         2023-05-10                 Aggregates
## 3990 2.432488e+13         2023-05-10                 Aggregates
## 3991 2.277204e+13         2023-05-10                 Aggregates
## 3992 2.256206e+11         2023-05-10                 Aggregates
## 3993 1.103167e+13         2023-05-10                 Aggregates
## 3994 1.462305e+13         2023-05-10                 Aggregates
## 3995 2.521056e+11         2023-05-10                 Aggregates
## 3996 8.699260e+12         2023-05-10                 Aggregates
## 3997 7.911873e+12         2023-05-10                 Aggregates
## 3998 1.040956e+13         2023-05-10                 Aggregates
## 3999 9.756924e+12         2023-05-10                 Aggregates
## 4000 2.117219e+13         2023-05-10                 Aggregates
## 4001 1.979064e+13         2023-05-10                 Aggregates
## 4002 6.929773e+12         2023-05-10                 Aggregates
## 4003 7.744678e+12         2023-05-10                 Aggregates
## 4004 2.235985e+12         2023-05-10                 Aggregates
## 4005 2.087908e+12         2023-05-10                 Aggregates
## 4006 1.679994e+12         2023-05-10                 Aggregates
## 4007 2.027139e+11         2023-05-10                 Aggregates
## 4008 1.767294e+11         2023-05-10                 Aggregates
## 4009 1.028853e+12         2023-05-10                 Aggregates
## 4010 9.358211e+11         2023-05-10                 Aggregates
## 4011 8.547060e+11         2023-05-10                 Aggregates
## 4012 4.536215e+12         2023-05-10                 Aggregates
## 4013 4.354921e+12         2023-05-10                 Aggregates
## 4014 3.619763e+12         2023-05-10                 Aggregates
## 4015 3.082610e+12         2023-05-10                 Aggregates
## 4016 2.359536e+12         2023-05-10                 Aggregates
## 4017 3.468603e+11         2023-05-10                 Aggregates
## 4018 3.012029e+11         2023-05-10                 Aggregates
## 4019 2.731818e+11         2023-05-10                 Aggregates
## 4020 1.962329e+12         2023-05-10                 Aggregates
## 4021 2.208621e+13         2023-05-10                 Aggregates
## 4022 1.583876e+11         2023-05-10                 Aggregates
## 4023 1.551708e+11         2023-05-10                 Aggregates
## 4024 1.546349e+11         2023-05-10                 Aggregates
## 4025 4.088965e+11         2023-05-10                 Aggregates
## 4026 2.141074e+13         2023-05-10                 Aggregates
## 4027 5.630094e+11         2023-05-10                 Aggregates
## 4028 4.537250e+11         2023-05-10                 Aggregates
## 4029 7.740374e+12         2023-05-10                 Aggregates
## 4030 7.788976e+12         2023-05-10                 Aggregates
## 4031 8.374986e+12         2023-05-10                 Aggregates
## 4032 7.418910e+11         2023-05-10                 Aggregates
## 4033 1.718573e+13         2023-05-10                 Aggregates
## 4034 1.320148e+12         2023-05-10                 Aggregates
## 4035 5.970934e+12         2023-05-10                 Aggregates
## 4036 7.227566e+11         2023-05-10                 Aggregates
## 4037 1.069989e+12         2023-05-10                 Aggregates
## 4038 1.516193e+12         2023-05-10                 Aggregates
## 4039           NA         2023-05-10                 Aggregates
## 4040 6.663662e+11         2023-05-10                 Aggregates
## 4041 8.891862e+11         2023-05-10                 Aggregates
## 4042 8.100516e+11         2023-05-10                 Aggregates
## 4043 3.271433e+11         2023-05-10                 Aggregates
## 4044 2.072517e+13         2023-05-10                 Aggregates
## 4045 1.746437e+13         2023-05-10                 Aggregates
## 4046 3.775617e+11         2023-05-10                 Aggregates
## 4047 1.569692e+12         2023-05-10                 Aggregates
## 4048 1.661905e+13         2023-05-10                 Aggregates
## 4049 1.485810e+13         2023-05-10                 Aggregates
## 4050 1.359482e+13         2023-05-10                 Aggregates
## 4051 4.721478e+12         2023-05-10                 Aggregates
## 4052 7.879076e+12         2023-05-10                 Aggregates
## 4053 6.475891e+12         2023-05-10                 Aggregates
## 4054 1.021256e+11         2023-05-10                 Aggregates
## 4055 2.308416e+12         2023-05-10                 Aggregates
## 4056 3.735662e+12         2023-05-10                 Aggregates
## 4057 3.102608e+12         2023-05-10                 Aggregates
## 4058 2.678573e+12         2023-05-10                 Aggregates
## 4059 1.074512e+13         2023-05-10                 Aggregates
## 4060 9.632925e+12         2023-05-10                 Aggregates
## 4061 1.429637e+12         2023-05-10                 Aggregates
## 4062 4.803006e+11         2023-05-10                 Aggregates
## 4063 4.432827e+11         2023-05-10                 Aggregates
## 4064 4.030469e+11         2023-05-10                 Aggregates
## 4065 1.008553e+11         2023-05-10                 Aggregates
## 4066 1.039214e+11         2023-05-10                 Aggregates
## 4067 2.823989e+11         2023-05-10                 Aggregates
## 4068 2.912145e+11         2023-05-10                 Aggregates
## 4069 2.523129e+11         2023-05-10                 Aggregates
## 4070 6.215968e+11         2023-05-10                 Aggregates
## 4071 5.747644e+11         2023-05-10                 Aggregates
## 4072 5.182908e+11         2023-05-10                 Aggregates
## 4073 5.243713e+11         2023-05-10                 Aggregates
## 4074 5.256685e+11         2023-05-10                 Aggregates
## 4075 1.368592e+11         2023-05-10                 Aggregates
## 4076 1.272961e+11         2023-05-10                 Aggregates
## 4077 1.146237e+11         2023-05-10                 Aggregates
## 4078 4.231564e+11         2023-05-10                 Aggregates
## 4079 1.331028e+13         2023-05-10                 Aggregates
## 4080 9.503788e+10         2023-05-10                 Aggregates
## 4081 8.164022e+10         2023-05-10                 Aggregates
## 4082 7.073772e+10         2023-05-10                 Aggregates
## 4083 1.552128e+11         2023-05-10                 Aggregates
## 4084 1.278223e+13         2023-05-10                 Aggregates
## 4085 1.185570e+13         2023-05-10                 Aggregates
## 4086 1.952911e+11         2023-05-10                 Aggregates
## 4087 1.732073e+12         2023-05-10                 Aggregates
## 4088 6.529853e+10         2023-05-10                 Aggregates
## 4089 7.150702e+10         2023-05-10                 Aggregates
## 4090 8.122499e+10         2023-05-10                 Aggregates
## 4091 2.482924e+11         2023-05-10                 Aggregates
## 4092 1.573330e+12         2023-05-10                 Aggregates
## 4093 1.844705e+12         2023-05-10                 Aggregates
## 4094 2.209224e+11         2023-05-10                 Aggregates
## 4095 2.041292e+12         2023-05-10                 Aggregates
## 4096 1.279883e+13         2023-05-10                 Aggregates
## 4097 1.572049e+12         2023-05-10                 Aggregates
## 4098 1.187114e+13         2023-05-10                 Aggregates
## 4099 1.075917e+13         2023-05-10                 Aggregates
## 4100 7.889502e+12         2023-05-10                 Aggregates
## 4101 3.276345e+11         2023-05-10                 Aggregates
## 4102 6.484665e+12         2023-05-10                 Aggregates
## 4103 5.978961e+12         2023-05-10                 Aggregates
## 4104 9.645534e+12         2023-05-10                 Aggregates
## 4105 1.361247e+13         2023-05-10                 Aggregates
## 4106 1.332759e+13         2023-05-10                 Aggregates
## 4107 1.955844e+11         2023-05-10                 Aggregates
## 4108 4.727901e+12         2023-05-10                 Aggregates
## 4109 1.431784e+12         2023-05-10                 Aggregates
## 4110 1.274873e+11         2023-05-10                 Aggregates
## 4111 1.147958e+11         2023-05-10                 Aggregates
## 4112 1.554459e+11         2023-05-10                 Aggregates
## 4113 1.010068e+11         2023-05-10                 Aggregates
## 4114 1.040775e+11         2023-05-10                 Aggregates
## 4115 3.740827e+12         2023-05-10                 Aggregates
## 4116 1.022790e+11         2023-05-10                 Aggregates
## 4117 2.682432e+12         2023-05-10                 Aggregates
## 4118 2.311828e+12         2023-05-10                 Aggregates
## 4119 2.044358e+12         2023-05-10                 Aggregates
## 4120 1.847475e+12         2023-05-10                 Aggregates
## 4121 1.734674e+12         2023-05-10                 Aggregates
## 4122 1.370647e+11         2023-05-10                 Aggregates
## 4123 1.575693e+12         2023-05-10                 Aggregates
## 4124 4.439483e+11         2023-05-10                 Aggregates
## 4125 1.518470e+12         2023-05-10                 Aggregates
## 4126 1.322130e+12         2023-05-10                 Aggregates
## 4127 1.071596e+12         2023-05-10                 Aggregates
## 4128 8.905214e+11         2023-05-10                 Aggregates
## 4129 3.106989e+12         2023-05-10                 Aggregates
## 4130 6.225302e+11         2023-05-10                 Aggregates
## 4131 5.756275e+11         2023-05-10                 Aggregates
## 4132 5.190690e+11         2023-05-10                 Aggregates
## 4133 5.251587e+11         2023-05-10                 Aggregates
## 4134 5.264578e+11         2023-05-10                 Aggregates
## 4135 4.810219e+11         2023-05-10                 Aggregates
## 4136 3.781287e+11         2023-05-10                 Aggregates
## 4137           NA         2023-05-10                 Aggregates
## 4138 4.237918e+11         2023-05-10                 Aggregates
## 4139 4.036521e+11         2023-05-10                 Aggregates
## 4140 2.526918e+11         2023-05-10                 Aggregates
## 4141 2.486653e+11         2023-05-10                 Aggregates
## 4142 2.828230e+11         2023-05-10                 Aggregates
## 4143 2.916518e+11         2023-05-10                 Aggregates
## 4144 8.176281e+10         2023-05-10                 Aggregates
## 4145 7.084394e+10         2023-05-10                 Aggregates
## 4146 2.212542e+11         2023-05-10                 Aggregates
## 4147 8.134696e+10         2023-05-10                 Aggregates
## 4148 1.487728e+13         2023-05-10                 Aggregates
## 4149 8.112680e+11         2023-05-10                 Aggregates
## 4150 6.539659e+10         2023-05-10                 Aggregates
## 4151 9.518059e+10         2023-05-10                 Aggregates
## 4152 1.664044e+13         2023-05-10                 Aggregates
## 4153 7.238419e+11         2023-05-10                 Aggregates
## 4154 7.161440e+10         2023-05-10                 Aggregates
## 4155 1.720786e+13         2023-05-10                 Aggregates
## 4156 2.075179e+13         2023-05-10                 Aggregates
## 4157 6.673669e+11         2023-05-10                 Aggregates
## 4158 1.748692e+13         2023-05-10                 Aggregates
## 4159           NA         2023-05-10  Latin America & Caribbean
## 4160 1.061659e+11         2023-05-10  Latin America & Caribbean
## 4161 9.929112e+10         2023-05-10  Latin America & Caribbean
## 4162 1.081080e+11         2023-05-10  Latin America & Caribbean
## 4163 1.075620e+11         2023-05-10  Latin America & Caribbean
## 4164 1.042959e+11         2023-05-10  Latin America & Caribbean
## 4165 9.993770e+10         2023-05-10  Latin America & Caribbean
## 4166 9.929038e+10         2023-05-10  Latin America & Caribbean
## 4167 1.017263e+11         2023-05-10  Latin America & Caribbean
## 4168 9.512966e+10         2023-05-10  Latin America & Caribbean
## 4169 8.792454e+10         2023-05-10  Latin America & Caribbean
## 4170 7.927666e+10         2023-05-10  Latin America & Caribbean
## 4171 6.955537e+10         2023-05-10  Latin America & Caribbean
## 4172 6.251969e+10         2023-05-10  Latin America & Caribbean
## 4173 6.176264e+10         2023-05-10  Latin America & Caribbean
## 4174 5.100778e+10         2023-05-10  Latin America & Caribbean
## 4175 4.680204e+10         2023-05-10  Latin America & Caribbean
## 4176 4.150708e+10         2023-05-10  Latin America & Caribbean
## 4177 3.659166e+10         2023-05-10  Latin America & Caribbean
## 4178 3.243286e+10         2023-05-10  Latin America & Caribbean
## 4179 2.854894e+10         2023-05-10  Latin America & Caribbean
## 4180 2.446832e+10         2023-05-10  Latin America & Caribbean
## 4181 1.832776e+10         2023-05-10  Latin America & Caribbean
## 4182 1.964527e+10         2023-05-10  Latin America & Caribbean
## 4183 2.798190e+10         2023-05-10  Latin America & Caribbean
## 4184 2.816205e+10         2023-05-10  Latin America & Caribbean
## 4185 2.522639e+10         2023-05-10  Latin America & Caribbean
## 4186 2.443288e+10         2023-05-10  Latin America & Caribbean
## 4187 2.270867e+10         2023-05-10  Latin America & Caribbean
## 4188 1.893872e+10         2023-05-10  Latin America & Caribbean
## 4189 1.809424e+10         2023-05-10  Latin America & Caribbean
## 4190 1.698854e+10         2023-05-10  Latin America & Caribbean
## 4191 1.523928e+10         2023-05-10  Latin America & Caribbean
## 4192 1.389083e+10         2023-05-10  Latin America & Caribbean
## 4193 1.305189e+10         2023-05-10  Latin America & Caribbean
## 4194 1.394543e+10         2023-05-10  Latin America & Caribbean
## 4195 1.531414e+10         2023-05-10  Latin America & Caribbean
## 4196 1.714909e+10         2023-05-10  Latin America & Caribbean
## 4197 1.691252e+10         2023-05-10  Latin America & Caribbean
## 4198 1.715248e+10         2023-05-10  Latin America & Caribbean
## 4199 1.992985e+10         2023-05-10  Latin America & Caribbean
## 4200 2.181077e+10         2023-05-10  Latin America & Caribbean
## 4201 1.788151e+10         2023-05-10  Latin America & Caribbean
## 4202 1.417517e+10         2023-05-10  Latin America & Caribbean
## 4203 1.192250e+10         2023-05-10  Latin America & Caribbean
## 4204 1.102635e+10         2023-05-10  Latin America & Caribbean
## 4205 9.091924e+09         2023-05-10  Latin America & Caribbean
## 4206 7.731677e+09         2023-05-10  Latin America & Caribbean
## 4207 6.599259e+09         2023-05-10  Latin America & Caribbean
## 4208 3.891756e+09         2023-05-10  Latin America & Caribbean
## 4209 3.185987e+09         2023-05-10  Latin America & Caribbean
## 4210 2.754220e+09         2023-05-10  Latin America & Caribbean
## 4211 2.862504e+09         2023-05-10  Latin America & Caribbean
## 4212 3.112167e+09         2023-05-10  Latin America & Caribbean
## 4213 2.582181e+09         2023-05-10  Latin America & Caribbean
## 4214 2.553596e+09         2023-05-10  Latin America & Caribbean
## 4215 2.429310e+09         2023-05-10  Latin America & Caribbean
## 4216 2.387048e+09         2023-05-10  Latin America & Caribbean
## 4217 2.244147e+09         2023-05-10  Latin America & Caribbean
## 4218 1.824344e+09         2023-05-10  Latin America & Caribbean
## 4219 1.518208e+09         2023-05-10  Latin America & Caribbean
## 4220 1.753850e+09         2023-05-10  Latin America & Caribbean
## 4221 2.069465e+09         2023-05-10  Latin America & Caribbean
## 4222           NA         2023-05-10 Middle East & North Africa
## 4223 4.041428e+11         2023-05-10 Middle East & North Africa
## 4224 3.652527e+11         2023-05-10 Middle East & North Africa
## 4225 3.030809e+11         2023-05-10 Middle East & North Africa
## 4226 2.497130e+11         2023-05-10 Middle East & North Africa
## 4227 2.357337e+11         2023-05-10 Middle East & North Africa
## 4228 3.324417e+11         2023-05-10 Middle East & North Africa
## 4229 3.293666e+11         2023-05-10 Middle East & North Africa
## 4230 3.055954e+11         2023-05-10 Middle East & North Africa
## 4231 2.884341e+11         2023-05-10 Middle East & North Africa
## 4232 2.791167e+11         2023-05-10 Middle East & North Africa
## 4233 2.359897e+11         2023-05-10 Middle East & North Africa
## 4234 2.189837e+11         2023-05-10 Middle East & North Africa
## 4235 1.891470e+11         2023-05-10 Middle East & North Africa
## 4236 1.628182e+11         2023-05-10 Middle East & North Africa
## 4237 1.304378e+11         2023-05-10 Middle East & North Africa
## 4238 1.074261e+11         2023-05-10 Middle East & North Africa
## 4239 8.960067e+10         2023-05-10 Middle East & North Africa
## 4240 7.878247e+10         2023-05-10 Middle East & North Africa
## 4241 8.028846e+10         2023-05-10 Middle East & North Africa
## 4242 8.514607e+10         2023-05-10 Middle East & North Africa
## 4243 9.668464e+10         2023-05-10 Middle East & North Africa
## 4244 9.983854e+10         2023-05-10 Middle East & North Africa
## 4245 9.071070e+10         2023-05-10 Middle East & North Africa
## 4246 8.482881e+10         2023-05-10 Middle East & North Africa
## 4247 7.843658e+10         2023-05-10 Middle East & North Africa
## 4248 6.762972e+10         2023-05-10 Middle East & North Africa
## 4249 6.015925e+10         2023-05-10 Middle East & North Africa
## 4250 5.189798e+10         2023-05-10 Middle East & North Africa
## 4251 4.657863e+10         2023-05-10 Middle East & North Africa
## 4252 4.185599e+10         2023-05-10 Middle East & North Africa
## 4253 3.738784e+10         2023-05-10 Middle East & North Africa
## 4254 4.297891e+10         2023-05-10 Middle East & North Africa
## 4255 3.975630e+10         2023-05-10 Middle East & North Africa
## 4256 3.498012e+10         2023-05-10 Middle East & North Africa
## 4257 4.045562e+10         2023-05-10 Middle East & North Africa
## 4258 4.125351e+10         2023-05-10 Middle East & North Africa
## 4259 3.905350e+10         2023-05-10 Middle East & North Africa
## 4260 3.397119e+10         2023-05-10 Middle East & North Africa
## 4261 3.096624e+10         2023-05-10 Middle East & North Africa
## 4262 2.765517e+10         2023-05-10 Middle East & North Africa
## 4263 2.213608e+10         2023-05-10 Middle East & North Africa
## 4264 2.166991e+10         2023-05-10 Middle East & North Africa
## 4265 1.802057e+10         2023-05-10 Middle East & North Africa
## 4266 1.481170e+10         2023-05-10 Middle East & North Africa
## 4267 1.440081e+10         2023-05-10 Middle East & North Africa
## 4268 1.331599e+10         2023-05-10 Middle East & North Africa
## 4269 1.163218e+10         2023-05-10 Middle East & North Africa
## 4270 9.228963e+09         2023-05-10 Middle East & North Africa
## 4271 1.009853e+10         2023-05-10 Middle East & North Africa
## 4272 9.299638e+09         2023-05-10 Middle East & North Africa
## 4273 8.609283e+09         2023-05-10 Middle East & North Africa
## 4274 8.042200e+09         2023-05-10 Middle East & North Africa
## 4275 6.524455e+09         2023-05-10 Middle East & North Africa
## 4276 5.932243e+09         2023-05-10 Middle East & North Africa
## 4277 5.605484e+09         2023-05-10 Middle East & North Africa
## 4278 5.278006e+09         2023-05-10 Middle East & North Africa
## 4279 4.948668e+09         2023-05-10 Middle East & North Africa
## 4280           NA         2023-05-10 Middle East & North Africa
## 4281           NA         2023-05-10 Middle East & North Africa
## 4282           NA         2023-05-10 Middle East & North Africa
## 4283           NA         2023-05-10 Middle East & North Africa
## 4284           NA         2023-05-10 Middle East & North Africa
## 4285           NA         2023-05-10  Latin America & Caribbean
## 4286 2.873694e+10         2023-05-10  Latin America & Caribbean
## 4287 2.456302e+10         2023-05-10  Latin America & Caribbean
## 4288 2.688114e+10         2023-05-10  Latin America & Caribbean
## 4289 2.602085e+10         2023-05-10  Latin America & Caribbean
## 4290 2.497919e+10         2023-05-10  Latin America & Caribbean
## 4291 2.419143e+10         2023-05-10  Latin America & Caribbean
## 4292 2.343824e+10         2023-05-10  Latin America & Caribbean
## 4293 2.259347e+10         2023-05-10  Latin America & Caribbean
## 4294 2.199096e+10         2023-05-10  Latin America & Caribbean
## 4295 2.138615e+10         2023-05-10  Latin America & Caribbean
## 4296 2.028378e+10         2023-05-10  Latin America & Caribbean
## 4297 1.844792e+10         2023-05-10  Latin America & Caribbean
## 4298 1.760162e+10         2023-05-10  Latin America & Caribbean
## 4299 1.798689e+10         2023-05-10  Latin America & Caribbean
## 4300 1.701175e+10         2023-05-10  Latin America & Caribbean
## 4301 1.599989e+10         2023-05-10  Latin America & Caribbean
## 4302 1.469800e+10         2023-05-10  Latin America & Caribbean
## 4303 1.372481e+10         2023-05-10  Latin America & Caribbean
## 4304 1.324389e+10         2023-05-10  Latin America & Caribbean
## 4305 1.266419e+10         2023-05-10  Latin America & Caribbean
## 4306 1.228253e+10         2023-05-10  Latin America & Caribbean
## 4307 1.178493e+10         2023-05-10  Latin America & Caribbean
## 4308 1.128420e+10         2023-05-10  Latin America & Caribbean
## 4309 1.093667e+10         2023-05-10  Latin America & Caribbean
## 4310 1.022171e+10         2023-05-10  Latin America & Caribbean
## 4311 9.586328e+09         2023-05-10  Latin America & Caribbean
## 4312 8.921947e+09         2023-05-10  Latin America & Caribbean
## 4313 7.679384e+09         2023-05-10  Latin America & Caribbean
## 4314 6.680269e+09         2023-05-10  Latin America & Caribbean
## 4315 5.813399e+09         2023-05-10  Latin America & Caribbean
## 4316 5.252342e+09         2023-05-10  Latin America & Caribbean
## 4317 4.817542e+09         2023-05-10  Latin America & Caribbean
## 4318 4.372215e+09         2023-05-10  Latin America & Caribbean
## 4319 4.189880e+09         2023-05-10  Latin America & Caribbean
## 4320 3.958046e+09         2023-05-10  Latin America & Caribbean
## 4321 3.771663e+09         2023-05-10  Latin America & Caribbean
## 4322 3.800369e+09         2023-05-10  Latin America & Caribbean
## 4323 3.661683e+09         2023-05-10  Latin America & Caribbean
## 4324 3.506348e+09         2023-05-10  Latin America & Caribbean
## 4325 3.399189e+09         2023-05-10  Latin America & Caribbean
## 4326 3.437200e+09         2023-05-10  Latin America & Caribbean
## 4327 3.573960e+09         2023-05-10  Latin America & Caribbean
## 4328 3.463640e+09         2023-05-10  Latin America & Caribbean
## 4329 3.127960e+09         2023-05-10  Latin America & Caribbean
## 4330 2.941640e+09         2023-05-10  Latin America & Caribbean
## 4331 2.328280e+09         2023-05-10  Latin America & Caribbean
## 4332 1.884120e+09         2023-05-10  Latin America & Caribbean
## 4333 1.665880e+09         2023-05-10  Latin America & Caribbean
## 4334 1.442320e+09         2023-05-10  Latin America & Caribbean
## 4335 1.263720e+09         2023-05-10  Latin America & Caribbean
## 4336 1.186120e+09         2023-05-10  Latin America & Caribbean
## 4337 1.132920e+09         2023-05-10  Latin America & Caribbean
## 4338 1.049400e+09         2023-05-10  Latin America & Caribbean
## 4339 1.009760e+09         2023-05-10  Latin America & Caribbean
## 4340 9.762000e+08         2023-05-10  Latin America & Caribbean
## 4341 9.295200e+08         2023-05-10  Latin America & Caribbean
## 4342 8.777200e+08         2023-05-10  Latin America & Caribbean
## 4343           NA         2023-05-10  Latin America & Caribbean
## 4344           NA         2023-05-10  Latin America & Caribbean
## 4345           NA         2023-05-10  Latin America & Caribbean
## 4346           NA         2023-05-10  Latin America & Caribbean
## 4347           NA         2023-05-10  Latin America & Caribbean
## 4348           NA         2023-05-10         Sub-Saharan Africa
## 4349 1.226939e+10         2023-05-10         Sub-Saharan Africa
## 4350 1.009916e+10         2023-05-10         Sub-Saharan Africa
## 4351 1.136413e+10         2023-05-10         Sub-Saharan Africa
## 4352 1.309701e+10         2023-05-10         Sub-Saharan Africa
## 4353 1.220091e+10         2023-05-10         Sub-Saharan Africa
## 4354 1.124081e+10         2023-05-10         Sub-Saharan Africa
## 4355 1.318550e+10         2023-05-10         Sub-Saharan Africa
## 4356 2.176545e+10         2023-05-10         Sub-Saharan Africa
## 4357 2.194884e+10         2023-05-10         Sub-Saharan Africa
## 4358 2.238835e+10         2023-05-10         Sub-Saharan Africa
## 4359 2.135734e+10         2023-05-10         Sub-Saharan Africa
## 4360 1.631444e+10         2023-05-10         Sub-Saharan Africa
## 4361 1.502780e+10         2023-05-10         Sub-Saharan Africa
## 4362 1.974989e+10         2023-05-10         Sub-Saharan Africa
## 4363 1.307172e+10         2023-05-10         Sub-Saharan Africa
## 4364 1.008653e+10         2023-05-10         Sub-Saharan Africa
## 4365 8.217369e+09         2023-05-10         Sub-Saharan Africa
## 4366 4.410764e+09         2023-05-10         Sub-Saharan Africa
## 4367 2.484746e+09         2023-05-10         Sub-Saharan Africa
## 4368 1.806743e+09         2023-05-10         Sub-Saharan Africa
## 4369 1.461139e+09         2023-05-10         Sub-Saharan Africa
## 4370 1.045998e+09         2023-05-10         Sub-Saharan Africa
## 4371 6.211179e+08         2023-05-10         Sub-Saharan Africa
## 4372 3.706876e+08         2023-05-10         Sub-Saharan Africa
## 4373 4.423378e+08         2023-05-10         Sub-Saharan Africa
## 4374 2.324630e+08         2023-05-10         Sub-Saharan Africa
## 4375 1.418534e+08         2023-05-10         Sub-Saharan Africa
## 4376 1.008070e+08         2023-05-10         Sub-Saharan Africa
## 4377 1.360479e+08         2023-05-10         Sub-Saharan Africa
## 4378 1.347072e+08         2023-05-10         Sub-Saharan Africa
## 4379 1.109060e+08         2023-05-10         Sub-Saharan Africa
## 4380 1.121194e+08         2023-05-10         Sub-Saharan Africa
## 4381 8.826597e+07         2023-05-10         Sub-Saharan Africa
## 4382 1.005347e+08         2023-05-10         Sub-Saharan Africa
## 4383 9.334585e+07         2023-05-10         Sub-Saharan Africa
## 4384 7.640740e+07         2023-05-10         Sub-Saharan Africa
## 4385 6.211856e+07         2023-05-10         Sub-Saharan Africa
## 4386 5.032091e+07         2023-05-10         Sub-Saharan Africa
## 4387 4.444246e+07         2023-05-10         Sub-Saharan Africa
## 4388 4.429465e+07         2023-05-10         Sub-Saharan Africa
## 4389 3.673142e+07         2023-05-10         Sub-Saharan Africa
## 4390 5.064288e+07         2023-05-10         Sub-Saharan Africa
## 4391           NA         2023-05-10         Sub-Saharan Africa
## 4392           NA         2023-05-10         Sub-Saharan Africa
## 4393 1.039875e+08         2023-05-10         Sub-Saharan Africa
## 4394 1.036530e+08         2023-05-10         Sub-Saharan Africa
## 4395 1.042956e+08         2023-05-10         Sub-Saharan Africa
## 4396 9.415986e+07         2023-05-10         Sub-Saharan Africa
## 4397 8.120323e+07         2023-05-10         Sub-Saharan Africa
## 4398 6.542920e+07         2023-05-10         Sub-Saharan Africa
## 4399 6.494695e+07         2023-05-10         Sub-Saharan Africa
## 4400 6.633143e+07         2023-05-10         Sub-Saharan Africa
## 4401 6.722571e+07         2023-05-10         Sub-Saharan Africa
## 4402 6.751429e+07         2023-05-10         Sub-Saharan Africa
## 4403 7.231745e+07         2023-05-10         Sub-Saharan Africa
## 4404 6.911000e+07         2023-05-10         Sub-Saharan Africa
## 4405 6.474833e+07         2023-05-10         Sub-Saharan Africa
## 4406 1.271247e+07         2023-05-10         Sub-Saharan Africa
## 4407 1.084010e+07         2023-05-10         Sub-Saharan Africa
## 4408 9.122751e+06         2023-05-10         Sub-Saharan Africa
## 4409           NA         2023-05-10         Sub-Saharan Africa
## 4410           NA         2023-05-10         Sub-Saharan Africa
## 4411           NA         2023-05-10         Sub-Saharan Africa
## 4412           NA         2023-05-10         Sub-Saharan Africa
## 4413           NA         2023-05-10         Sub-Saharan Africa
## 4414           NA         2023-05-10         Sub-Saharan Africa
## 4415           NA         2023-05-10         Sub-Saharan Africa
## 4416           NA         2023-05-10         Sub-Saharan Africa
## 4417           NA         2023-05-10         Sub-Saharan Africa
## 4418           NA         2023-05-10         Sub-Saharan Africa
## 4419           NA         2023-05-10         Sub-Saharan Africa
## 4420           NA         2023-05-10         Sub-Saharan Africa
## 4421           NA         2023-05-10         Sub-Saharan Africa
## 4422 2.065002e+09         2023-05-10         Sub-Saharan Africa
## 4423 1.589515e+09         2023-05-10         Sub-Saharan Africa
## 4424 1.856696e+09         2023-05-10         Sub-Saharan Africa
## 4425 1.380189e+09         2023-05-10         Sub-Saharan Africa
## 4426 1.317974e+09         2023-05-10         Sub-Saharan Africa
## 4427 1.211162e+09         2023-05-10         Sub-Saharan Africa
## 4428 1.098426e+09         2023-05-10         Sub-Saharan Africa
## 4429 1.109054e+09         2023-05-10         Sub-Saharan Africa
## 4430 8.702477e+08         2023-05-10         Sub-Saharan Africa
## 4431 7.293214e+08         2023-05-10         Sub-Saharan Africa
## 4432 7.523685e+08         2023-05-10         Sub-Saharan Africa
## 4433 7.063708e+08         2023-05-10         Sub-Saharan Africa
## 4434 6.889213e+08         2023-05-10         Sub-Saharan Africa
## 4435 7.455262e+08         2023-05-10         Sub-Saharan Africa
## 4436 6.864901e+08         2023-05-10         Sub-Saharan Africa
## 4437 6.935360e+08         2023-05-10         Sub-Saharan Africa
## 4438 5.780156e+08         2023-05-10         Sub-Saharan Africa
## 4439 5.316883e+08         2023-05-10         Sub-Saharan Africa
## 4440 4.678727e+08         2023-05-10         Sub-Saharan Africa
## 4441 4.771017e+08         2023-05-10         Sub-Saharan Africa
## 4442           NA         2023-05-10         Sub-Saharan Africa
## 4443           NA         2023-05-10         Sub-Saharan Africa
## 4444           NA         2023-05-10         Sub-Saharan Africa
## 4445           NA         2023-05-10         Sub-Saharan Africa
## 4446           NA         2023-05-10         Sub-Saharan Africa
## 4447           NA         2023-05-10         Sub-Saharan Africa
## 4448           NA         2023-05-10         Sub-Saharan Africa
## 4449           NA         2023-05-10         Sub-Saharan Africa
## 4450           NA         2023-05-10         Sub-Saharan Africa
## 4451           NA         2023-05-10         Sub-Saharan Africa
## 4452           NA         2023-05-10         Sub-Saharan Africa
## 4453           NA         2023-05-10         Sub-Saharan Africa
## 4454           NA         2023-05-10         Sub-Saharan Africa
## 4455           NA         2023-05-10         Sub-Saharan Africa
## 4456           NA         2023-05-10         Sub-Saharan Africa
## 4457           NA         2023-05-10         Sub-Saharan Africa
## 4458           NA         2023-05-10         Sub-Saharan Africa
## 4459           NA         2023-05-10         Sub-Saharan Africa
## 4460           NA         2023-05-10         Sub-Saharan Africa
## 4461           NA         2023-05-10         Sub-Saharan Africa
## 4462           NA         2023-05-10         Sub-Saharan Africa
## 4463           NA         2023-05-10         Sub-Saharan Africa
## 4464           NA         2023-05-10         Sub-Saharan Africa
## 4465           NA         2023-05-10         Sub-Saharan Africa
## 4466           NA         2023-05-10         Sub-Saharan Africa
## 4467           NA         2023-05-10         Sub-Saharan Africa
## 4468           NA         2023-05-10         Sub-Saharan Africa
## 4469           NA         2023-05-10         Sub-Saharan Africa
## 4470           NA         2023-05-10         Sub-Saharan Africa
## 4471           NA         2023-05-10         Sub-Saharan Africa
## 4472           NA         2023-05-10         Sub-Saharan Africa
## 4473           NA         2023-05-10         Sub-Saharan Africa
## 4474           NA         2023-05-10      Europe & Central Asia
## 4475 3.719117e+10         2023-05-10      Europe & Central Asia
## 4476 3.137040e+10         2023-05-10      Europe & Central Asia
## 4477 3.108190e+10         2023-05-10      Europe & Central Asia
## 4478 3.062472e+10         2023-05-10      Europe & Central Asia
## 4479 2.692439e+10         2023-05-10      Europe & Central Asia
## 4480 2.407283e+10         2023-05-10      Europe & Central Asia
## 4481 2.289076e+10         2023-05-10      Europe & Central Asia
## 4482 2.663408e+10         2023-05-10      Europe & Central Asia
## 4483 2.511575e+10         2023-05-10      Europe & Central Asia
## 4484 2.301915e+10         2023-05-10      Europe & Central Asia
## 4485 2.321399e+10         2023-05-10      Europe & Central Asia
## 4486 1.952348e+10         2023-05-10      Europe & Central Asia
## 4487 1.963303e+10         2023-05-10      Europe & Central Asia
## 4488 2.434168e+10         2023-05-10      Europe & Central Asia
## 4489 2.244913e+10         2023-05-10      Europe & Central Asia
## 4490 1.702287e+10         2023-05-10      Europe & Central Asia
## 4491 1.410679e+10         2023-05-10      Europe & Central Asia
## 4492 1.214591e+10         2023-05-10      Europe & Central Asia
## 4493 9.874013e+09         2023-05-10      Europe & Central Asia
## 4494 7.367976e+09         2023-05-10      Europe & Central Asia
## 4495 6.254650e+09         2023-05-10      Europe & Central Asia
## 4496 5.686580e+09         2023-05-10      Europe & Central Asia
## 4497 5.756912e+09         2023-05-10      Europe & Central Asia
## 4498 5.674081e+09         2023-05-10      Europe & Central Asia
## 4499 5.154421e+09         2023-05-10      Europe & Central Asia
## 4500 4.786019e+09         2023-05-10      Europe & Central Asia
## 4501 4.502971e+09         2023-05-10      Europe & Central Asia
## 4502           NA         2023-05-10      Europe & Central Asia
## 4503           NA         2023-05-10      Europe & Central Asia
## 4504           NA         2023-05-10      Europe & Central Asia
## 4505           NA         2023-05-10      Europe & Central Asia
## 4506           NA         2023-05-10      Europe & Central Asia
## 4507           NA         2023-05-10      Europe & Central Asia
## 4508           NA         2023-05-10      Europe & Central Asia
## 4509           NA         2023-05-10      Europe & Central Asia
## 4510           NA         2023-05-10      Europe & Central Asia
## 4511           NA         2023-05-10      Europe & Central Asia
## 4512           NA         2023-05-10      Europe & Central Asia
## 4513           NA         2023-05-10      Europe & Central Asia
## 4514           NA         2023-05-10      Europe & Central Asia
## 4515           NA         2023-05-10      Europe & Central Asia
## 4516           NA         2023-05-10      Europe & Central Asia
## 4517           NA         2023-05-10      Europe & Central Asia
## 4518           NA         2023-05-10      Europe & Central Asia
## 4519           NA         2023-05-10      Europe & Central Asia
## 4520           NA         2023-05-10      Europe & Central Asia
## 4521           NA         2023-05-10      Europe & Central Asia
## 4522           NA         2023-05-10      Europe & Central Asia
## 4523           NA         2023-05-10      Europe & Central Asia
## 4524           NA         2023-05-10      Europe & Central Asia
## 4525           NA         2023-05-10      Europe & Central Asia
## 4526           NA         2023-05-10      Europe & Central Asia
## 4527           NA         2023-05-10      Europe & Central Asia
## 4528           NA         2023-05-10      Europe & Central Asia
## 4529           NA         2023-05-10      Europe & Central Asia
## 4530           NA         2023-05-10      Europe & Central Asia
## 4531           NA         2023-05-10      Europe & Central Asia
## 4532           NA         2023-05-10      Europe & Central Asia
## 4533           NA         2023-05-10      Europe & Central Asia
## 4534           NA         2023-05-10      Europe & Central Asia
## 4535           NA         2023-05-10      Europe & Central Asia
## 4536           NA         2023-05-10      Europe & Central Asia
## 4537           NA         2023-05-10         Sub-Saharan Africa
## 4538 4.743335e+09         2023-05-10         Sub-Saharan Africa
## 4539 3.982226e+09         2023-05-10         Sub-Saharan Africa
## 4540 4.495264e+09         2023-05-10         Sub-Saharan Africa
## 4541 4.665237e+09         2023-05-10         Sub-Saharan Africa
## 4542 4.402969e+09         2023-05-10         Sub-Saharan Africa
## 4543 3.816022e+09         2023-05-10         Sub-Saharan Africa
## 4544 4.063246e+09         2023-05-10         Sub-Saharan Africa
## 4545 4.422968e+09         2023-05-10         Sub-Saharan Africa
## 4546 4.597532e+09         2023-05-10         Sub-Saharan Africa
## 4547 4.886533e+09         2023-05-10         Sub-Saharan Africa
## 4548 4.820500e+09         2023-05-10         Sub-Saharan Africa
## 4549 4.438778e+09         2023-05-10         Sub-Saharan Africa
## 4550 3.580417e+09         2023-05-10         Sub-Saharan Africa
## 4551 3.294093e+09         2023-05-10         Sub-Saharan Africa
## 4552 3.469364e+09         2023-05-10         Sub-Saharan Africa
## 4553 3.291354e+09         2023-05-10         Sub-Saharan Africa
## 4554 3.178126e+09         2023-05-10         Sub-Saharan Africa
## 4555 2.770083e+09         2023-05-10         Sub-Saharan Africa
## 4556 2.197613e+09         2023-05-10         Sub-Saharan Africa
## 4557 1.432228e+09         2023-05-10         Sub-Saharan Africa
## 4558 1.542477e+09         2023-05-10         Sub-Saharan Africa
## 4559 1.738101e+09         2023-05-10         Sub-Saharan Africa
## 4560 1.547884e+09         2023-05-10         Sub-Saharan Africa
## 4561 1.576904e+09         2023-05-10         Sub-Saharan Africa
## 4562 1.716700e+09         2023-05-10         Sub-Saharan Africa
## 4563 1.602760e+09         2023-05-10         Sub-Saharan Africa
## 4564 1.698982e+09         2023-05-10         Sub-Saharan Africa
## 4565 1.419293e+09         2023-05-10         Sub-Saharan Africa
## 4566 1.357207e+09         2023-05-10         Sub-Saharan Africa
## 4567 1.284766e+09         2023-05-10         Sub-Saharan Africa
## 4568 1.156142e+09         2023-05-10         Sub-Saharan Africa
## 4569 1.114703e+09         2023-05-10         Sub-Saharan Africa
## 4570 6.969154e+08         2023-05-10         Sub-Saharan Africa
## 4571 6.920167e+08         2023-05-10         Sub-Saharan Africa
## 4572 5.841356e+08         2023-05-10         Sub-Saharan Africa
## 4573 4.491466e+08         2023-05-10         Sub-Saharan Africa
## 4574 3.600754e+08         2023-05-10         Sub-Saharan Africa
## 4575 4.944757e+08         2023-05-10         Sub-Saharan Africa
## 4576 5.553361e+08         2023-05-10         Sub-Saharan Africa
## 4577 5.375760e+08         2023-05-10         Sub-Saharan Africa
## 4578 5.707612e+08         2023-05-10         Sub-Saharan Africa
## 4579 5.420005e+08         2023-05-10         Sub-Saharan Africa
## 4580 4.120931e+08         2023-05-10         Sub-Saharan Africa
## 4581 3.406164e+08         2023-05-10         Sub-Saharan Africa
## 4582 3.040478e+08         2023-05-10         Sub-Saharan Africa
## 4583 2.725391e+08         2023-05-10         Sub-Saharan Africa
## 4584 2.883029e+08         2023-05-10         Sub-Saharan Africa
## 4585 2.643120e+08         2023-05-10         Sub-Saharan Africa
## 4586 2.219020e+08         2023-05-10         Sub-Saharan Africa
## 4587 1.467413e+08         2023-05-10         Sub-Saharan Africa
## 4588 1.364653e+08         2023-05-10         Sub-Saharan Africa
## 4589 1.121378e+08         2023-05-10         Sub-Saharan Africa
## 4590 1.054179e+08         2023-05-10         Sub-Saharan Africa
## 4591 7.979840e+07         2023-05-10         Sub-Saharan Africa
## 4592 7.475850e+07         2023-05-10         Sub-Saharan Africa
## 4593 7.685846e+07         2023-05-10         Sub-Saharan Africa
## 4594 7.027859e+07         2023-05-10         Sub-Saharan Africa
## 4595 6.497928e+07         2023-05-10         Sub-Saharan Africa
## 4596 5.412838e+07         2023-05-10         Sub-Saharan Africa
## 4597 4.592706e+07         2023-05-10         Sub-Saharan Africa
## 4598 4.302520e+07         2023-05-10         Sub-Saharan Africa
## 4599 3.507616e+07         2023-05-10         Sub-Saharan Africa
## 4600           NA         2023-05-10         Sub-Saharan Africa
## 4601 1.112711e+11         2023-05-10         Sub-Saharan Africa
## 4602 1.076577e+11         2023-05-10         Sub-Saharan Africa
## 4603 9.591259e+10         2023-05-10         Sub-Saharan Africa
## 4604 8.426935e+10         2023-05-10         Sub-Saharan Africa
## 4605 8.177079e+10         2023-05-10         Sub-Saharan Africa
## 4606 7.429662e+10         2023-05-10         Sub-Saharan Africa
## 4607 6.458933e+10         2023-05-10         Sub-Saharan Africa
## 4608 5.561223e+10         2023-05-10         Sub-Saharan Africa
## 4609 4.764821e+10         2023-05-10         Sub-Saharan Africa
## 4610 4.331072e+10         2023-05-10         Sub-Saharan Africa
## 4611 3.195276e+10         2023-05-10         Sub-Saharan Africa
## 4612 2.993379e+10         2023-05-10         Sub-Saharan Africa
## 4613 3.243739e+10         2023-05-10         Sub-Saharan Africa
## 4614 2.706691e+10         2023-05-10         Sub-Saharan Africa
## 4615 1.970762e+10         2023-05-10         Sub-Saharan Africa
## 4616 1.528086e+10         2023-05-10         Sub-Saharan Africa
## 4617 1.240114e+10         2023-05-10         Sub-Saharan Africa
## 4618 1.013119e+10         2023-05-10         Sub-Saharan Africa
## 4619 8.623691e+09         2023-05-10         Sub-Saharan Africa
## 4620 7.850809e+09         2023-05-10         Sub-Saharan Africa
## 4621 8.231326e+09         2023-05-10         Sub-Saharan Africa
## 4622 8.242392e+09         2023-05-10         Sub-Saharan Africa
## 4623 7.700833e+09         2023-05-10         Sub-Saharan Africa
## 4624 7.818225e+09         2023-05-10         Sub-Saharan Africa
## 4625 8.589211e+09         2023-05-10         Sub-Saharan Africa
## 4626 8.547940e+09         2023-05-10         Sub-Saharan Africa
## 4627 7.663985e+09         2023-05-10         Sub-Saharan Africa
## 4628 6.927951e+09         2023-05-10         Sub-Saharan Africa
## 4629 8.830713e+09         2023-05-10         Sub-Saharan Africa
## 4630 1.049299e+10         2023-05-10         Sub-Saharan Africa
## 4631 1.346387e+10         2023-05-10         Sub-Saharan Africa
## 4632 1.217517e+10         2023-05-10         Sub-Saharan Africa
## 4633 1.147658e+10         2023-05-10         Sub-Saharan Africa
## 4634 1.090894e+10         2023-05-10         Sub-Saharan Africa
## 4635 1.052734e+10         2023-05-10         Sub-Saharan Africa
## 4636 9.848601e+09         2023-05-10         Sub-Saharan Africa
## 4637 9.480840e+09         2023-05-10         Sub-Saharan Africa
## 4638 8.096302e+09         2023-05-10         Sub-Saharan Africa
## 4639 8.567891e+09         2023-05-10         Sub-Saharan Africa
## 4640 7.707678e+09         2023-05-10         Sub-Saharan Africa
## 4641 7.324903e+09         2023-05-10         Sub-Saharan Africa
## 4642           NA         2023-05-10         Sub-Saharan Africa
## 4643           NA         2023-05-10         Sub-Saharan Africa
## 4644           NA         2023-05-10         Sub-Saharan Africa
## 4645           NA         2023-05-10         Sub-Saharan Africa
## 4646           NA         2023-05-10         Sub-Saharan Africa
## 4647           NA         2023-05-10         Sub-Saharan Africa
## 4648           NA         2023-05-10         Sub-Saharan Africa
## 4649           NA         2023-05-10         Sub-Saharan Africa
## 4650           NA         2023-05-10         Sub-Saharan Africa
## 4651           NA         2023-05-10         Sub-Saharan Africa
## 4652           NA         2023-05-10         Sub-Saharan Africa
## 4653           NA         2023-05-10         Sub-Saharan Africa
## 4654           NA         2023-05-10         Sub-Saharan Africa
## 4655           NA         2023-05-10         Sub-Saharan Africa
## 4656           NA         2023-05-10         Sub-Saharan Africa
## 4657           NA         2023-05-10         Sub-Saharan Africa
## 4658           NA         2023-05-10         Sub-Saharan Africa
## 4659           NA         2023-05-10         Sub-Saharan Africa
## 4660           NA         2023-05-10         Sub-Saharan Africa
## 4661           NA         2023-05-10         Sub-Saharan Africa
## 4662           NA         2023-05-10         Sub-Saharan Africa
## 4663 1.197370e+13         2023-05-10                 Aggregates
## 4664 1.351007e+13         2023-05-10                 Aggregates
## 4665 1.267972e+13         2023-05-10                 Aggregates
## 4666 1.263878e+13         2023-05-10                 Aggregates
## 4667 1.167551e+13         2023-05-10                 Aggregates
## 4668 1.319630e+13         2023-05-10                 Aggregates
## 4669 2.962181e+12         2023-05-10                 Aggregates
## 4670 1.363789e+13         2023-05-10                 Aggregates
## 4671 1.369819e+13         2023-05-10                 Aggregates
## 4672 1.341817e+13         2023-05-10                 Aggregates
## 4673 1.567496e+12         2023-05-10                 Aggregates
## 4674 2.644834e+12         2023-05-10                 Aggregates
## 4675 8.862331e+12         2023-05-10                 Aggregates
## 4676 1.782978e+12         2023-05-10                 Aggregates
## 4677 1.264175e+13         2023-05-10                 Aggregates
## 4678 1.501999e+12         2023-05-10                 Aggregates
## 4679 3.730242e+11         2023-05-10                 Aggregates
## 4680 1.142237e+12         2023-05-10                 Aggregates
## 4681 1.118404e+13         2023-05-10                 Aggregates
## 4682 1.052353e+13         2023-05-10                 Aggregates
## 4683 1.295370e+12         2023-05-10                 Aggregates
## 4684 1.287911e+13         2023-05-10                 Aggregates
## 4685 4.077406e+11         2023-05-10                 Aggregates
## 4686 3.353418e+11         2023-05-10                 Aggregates
## 4687 1.016040e+13         2023-05-10                 Aggregates
## 4688 2.183344e+12         2023-05-10                 Aggregates
## 4689 6.495755e+12         2023-05-10                 Aggregates
## 4690 7.116213e+12         2023-05-10                 Aggregates
## 4691 7.200157e+12         2023-05-10                 Aggregates
## 4692 6.596587e+12         2023-05-10                 Aggregates
## 4693 7.515453e+12         2023-05-10                 Aggregates
## 4694 6.515618e+12         2023-05-10                 Aggregates
## 4695 6.172472e+12         2023-05-10                 Aggregates
## 4696 6.745618e+12         2023-05-10                 Aggregates
## 4697 6.114123e+12         2023-05-10                 Aggregates
## 4698 4.159431e+12         2023-05-10                 Aggregates
## 4699 5.880688e+12         2023-05-10                 Aggregates
## 4700 4.672689e+12         2023-05-10                 Aggregates
## 4701 4.574521e+12         2023-05-10                 Aggregates
## 4702 2.431611e+12         2023-05-10                 Aggregates
## 4703 3.362907e+12         2023-05-10                 Aggregates
## 4704 1.293851e+13         2023-05-10                 Aggregates
## 4705 1.415826e+13         2023-05-10                 Aggregates
## 4706 4.448828e+11         2023-05-10                 Aggregates
## 4707 2.492495e+12         2023-05-10                 Aggregates
## 4708 2.574375e+12         2023-05-10                 Aggregates
## 4709 4.834186e+11         2023-05-10                 Aggregates
## 4710 7.283507e+11         2023-05-10                 Aggregates
## 4711 2.988191e+11         2023-05-10                 Aggregates
## 4712 2.689652e+11         2023-05-10                 Aggregates
## 4713 8.798665e+11         2023-05-10                 Aggregates
## 4714 1.308548e+13         2023-05-10                 Aggregates
## 4715 6.426182e+11         2023-05-10                 Aggregates
## 4716 5.793329e+11         2023-05-10                 Aggregates
## 4717 5.189917e+11         2023-05-10                 Aggregates
## 4718 2.448330e+11         2023-05-10                 Aggregates
## 4719 7.149215e+12         2023-05-10                 Aggregates
## 4720 6.952190e+12         2023-05-10                 Aggregates
## 4721 7.604358e+12         2023-05-10                 Aggregates
## 4722 1.456328e+13         2023-05-10                 Aggregates
## 4723 2.396185e+12         2023-05-10                 Aggregates
## 4724 2.332403e+12         2023-05-10                 Aggregates
## 4725           NA         2023-05-10                 Aggregates
## 4726 2.048415e+13         2023-05-10                 Aggregates
## 4727           NA         2023-05-10                 Aggregates
## 4728           NA         2023-05-10                 Aggregates
## 4729           NA         2023-05-10                 Aggregates
## 4730 6.421091e+12         2023-05-10                 Aggregates
## 4731 3.807090e+12         2023-05-10                 Aggregates
## 4732           NA         2023-05-10                 Aggregates
## 4733 7.147465e+12         2023-05-10                 Aggregates
## 4734 1.079585e+13         2023-05-10                 Aggregates
## 4735           NA         2023-05-10                 Aggregates
## 4736 1.052289e+13         2023-05-10                 Aggregates
## 4737 1.109598e+13         2023-05-10                 Aggregates
## 4738 5.196365e+12         2023-05-10                 Aggregates
## 4739 2.377971e+13         2023-05-10                 Aggregates
## 4740 2.165394e+13         2023-05-10                 Aggregates
## 4741 2.041863e+13         2023-05-10                 Aggregates
## 4742 2.400109e+12         2023-05-10                 Aggregates
## 4743 2.102173e+13         2023-05-10                 Aggregates
## 4744 2.345250e+13         2023-05-10                 Aggregates
## 4745 2.244977e+13         2023-05-10                 Aggregates
## 4746 2.330552e+13         2023-05-10                 Aggregates
## 4747 2.290998e+13         2023-05-10                 Aggregates
## 4748 2.319356e+13         2023-05-10                 Aggregates
## 4749 1.353603e+13         2023-05-10                 Aggregates
## 4750 1.113443e+13         2023-05-10                 Aggregates
## 4751 1.016710e+13         2023-05-10                 Aggregates
## 4752 1.006598e+13         2023-05-10                 Aggregates
## 4753 1.067763e+13         2023-05-10                 Aggregates
## 4754 1.976678e+12         2023-05-10                 Aggregates
## 4755 3.678858e+12         2023-05-10                 Aggregates
## 4756 3.827612e+12         2023-05-10                 Aggregates
## 4757 3.945553e+12         2023-05-10                 Aggregates
## 4758 1.087131e+13         2023-05-10                 Aggregates
## 4759 9.412850e+12         2023-05-10                 Aggregates
## 4760 9.002567e+12         2023-05-10                 Aggregates
## 4761 9.800978e+12         2023-05-10                 Aggregates
## 4762 9.141276e+12         2023-05-10                 Aggregates
## 4763 8.860593e+12         2023-05-10                 Aggregates
## 4764 7.242781e+12         2023-05-10                 Aggregates
## 4765 2.720248e+12         2023-05-10                 Aggregates
## 4766 2.309246e+12         2023-05-10                 Aggregates
## 4767           NA         2023-05-10                 Aggregates
## 4768 1.749160e+12         2023-05-10                 Aggregates
## 4769 1.377130e+12         2023-05-10                 Aggregates
## 4770 1.149406e+12         2023-05-10                 Aggregates
## 4771 4.600279e+12         2023-05-10                 Aggregates
## 4772 2.508283e+13         2023-05-10                 Aggregates
## 4773 2.213998e+13         2023-05-10                 Aggregates
## 4774 4.094298e+12         2023-05-10                 Aggregates
## 4775 7.963079e+11         2023-05-10                 Aggregates
## 4776 4.061374e+12         2023-05-10                 Aggregates
## 4777 3.319980e+12         2023-05-10                 Aggregates
## 4778 1.577645e+13         2023-05-10                 Aggregates
## 4779 1.816915e+13         2023-05-10                 Aggregates
## 4780 1.019162e+12         2023-05-10                 Aggregates
## 4781 9.213398e+11         2023-05-10                 Aggregates
## 4782 8.329884e+11         2023-05-10                 Aggregates
## 4783 7.394190e+11         2023-05-10                 Aggregates
## 4784           NA         2023-05-10                 Aggregates
## 4785 1.678223e+13         2023-05-10                 Aggregates
## 4786 2.054920e+13         2023-05-10                 Aggregates
## 4787 2.336517e+13         2023-05-10                 Aggregates
## 4788 2.122964e+13         2023-05-10                 Aggregates
## 4789           NA         2023-05-10                 Aggregates
## 4790 4.550386e+12         2023-05-10                 Aggregates
## 4791 9.504878e+11         2023-05-10                 Aggregates
## 4792           NA         2023-05-10                 Aggregates
## 4793           NA         2023-05-10                 Aggregates
## 4794           NA         2023-05-10                 Aggregates
## 4795           NA         2023-05-10                 Aggregates
## 4796 9.240318e+11         2023-05-10                 Aggregates
## 4797 8.347114e+11         2023-05-10                 Aggregates
## 4798           NA         2023-05-10                 Aggregates
## 4799           NA         2023-05-10                 Aggregates
## 4800           NA         2023-05-10                 Aggregates
## 4801           NA         2023-05-10                 Aggregates
## 4802 9.281349e+11         2023-05-10                 Aggregates
## 4803 4.158042e+12         2023-05-10                 Aggregates
## 4804 4.076953e+12         2023-05-10                 Aggregates
## 4805 3.909310e+12         2023-05-10                 Aggregates
## 4806 3.891717e+12         2023-05-10                 Aggregates
## 4807           NA         2023-05-10                 Aggregates
## 4808           NA         2023-05-10                 Aggregates
## 4809 3.114958e+12         2023-05-10                 Aggregates
## 4810 3.485437e+12         2023-05-10                 Aggregates
## 4811 3.173751e+12         2023-05-10                 Aggregates
## 4812 2.467644e+12         2023-05-10                 Aggregates
## 4813 2.040091e+12         2023-05-10                 Aggregates
## 4814 3.929284e+12         2023-05-10                 Aggregates
## 4815           NA         2023-05-10                 Aggregates
## 4816 1.020040e+12         2023-05-10                 Aggregates
## 4817 9.598433e+11         2023-05-10                 Aggregates
## 4818 1.628187e+12         2023-05-10                 Aggregates
## 4819 1.023033e+12         2023-05-10                 Aggregates
## 4820 9.097348e+11         2023-05-10                 Aggregates
## 4821 8.942293e+11         2023-05-10                 Aggregates
## 4822 8.215232e+11         2023-05-10                 Aggregates
## 4823 9.476987e+11         2023-05-10                 Aggregates
## 4824 9.803050e+11         2023-05-10                 Aggregates
## 4825           NA         2023-05-10                 Aggregates
## 4826           NA         2023-05-10                 Aggregates
## 4827 9.391624e+11         2023-05-10                 Aggregates
## 4828 1.006638e+12         2023-05-10                 Aggregates
## 4829           NA         2023-05-10                 Aggregates
## 4830           NA         2023-05-10                 Aggregates
## 4831 1.257961e+12         2023-05-10                 Aggregates
## 4832 9.886615e+11         2023-05-10                 Aggregates
## 4833           NA         2023-05-10                 Aggregates
## 4834           NA         2023-05-10                 Aggregates
## 4835           NA         2023-05-10                 Aggregates
## 4836           NA         2023-05-10                 Aggregates
## 4837           NA         2023-05-10                 Aggregates
## 4838           NA         2023-05-10                 Aggregates
## 4839           NA         2023-05-10                 Aggregates
## 4840           NA         2023-05-10                 Aggregates
## 4841           NA         2023-05-10                 Aggregates
## 4842 3.626632e+12         2023-05-10                 Aggregates
## 4843           NA         2023-05-10                 Aggregates
## 4844           NA         2023-05-10                 Aggregates
## 4845           NA         2023-05-10                 Aggregates
## 4846 4.450412e+12         2023-05-10                 Aggregates
## 4847 4.643054e+12         2023-05-10                 Aggregates
## 4848           NA         2023-05-10                 Aggregates
## 4849 3.659461e+12         2023-05-10                 Aggregates
## 4850 4.914816e+12         2023-05-10                 Aggregates
## 4851 4.646441e+12         2023-05-10                 Aggregates
## 4852           NA         2023-05-10                 Aggregates
## 4853 2.953063e+12         2023-05-10                 Aggregates
## 4854 3.248640e+12         2023-05-10                 Aggregates
## 4855 3.110418e+12         2023-05-10                 Aggregates
## 4856 3.517373e+12         2023-05-10                 Aggregates
## 4857 2.982627e+12         2023-05-10                 Aggregates
## 4858 2.437793e+12         2023-05-10                 Aggregates
## 4859           NA         2023-05-10                 Aggregates
## 4860           NA         2023-05-10                 Aggregates
## 4861           NA         2023-05-10                 Aggregates
## 4862           NA         2023-05-10                 Aggregates
## 4863           NA         2023-05-10                 Aggregates
## 4864           NA         2023-05-10                 Aggregates
## 4865 3.182536e+12         2023-05-10                 Aggregates
## 4866 3.118194e+12         2023-05-10                 Aggregates
## 4867 3.914702e+12         2023-05-10                 Aggregates
## 4868 3.670007e+12         2023-05-10                 Aggregates
## 4869           NA         2023-05-10                 Aggregates
## 4870           NA         2023-05-10                 Aggregates
## 4871 2.509490e+12         2023-05-10                 Aggregates
## 4872 1.950079e+12         2023-05-10                 Aggregates
## 4873 1.589617e+12         2023-05-10                 Aggregates
## 4874 1.256036e+12         2023-05-10                 Aggregates
## 4875 9.472237e+11         2023-05-10                 Aggregates
## 4876 2.777730e+12         2023-05-10                 Aggregates
## 4877 2.921396e+12         2023-05-10                 Aggregates
## 4878 3.845830e+12         2023-05-10                 Aggregates
## 4879 4.150229e+12         2023-05-10                 Aggregates
## 4880 7.613698e+11         2023-05-10                 Aggregates
## 4881 7.293511e+11         2023-05-10                 Aggregates
## 4882           NA         2023-05-10                 Aggregates
## 4883 7.986868e+11         2023-05-10                 Aggregates
## 4884 7.216983e+11         2023-05-10                 Aggregates
## 4885 6.740525e+11         2023-05-10                 Aggregates
## 4886 7.848181e+11         2023-05-10                 Aggregates
## 4887 5.917875e+11         2023-05-10                 Aggregates
## 4888 8.700416e+11         2023-05-10                 Aggregates
## 4889 7.507115e+11         2023-05-10                 Aggregates
## 4890 6.628738e+11         2023-05-10                 Aggregates
## 4891           NA         2023-05-10                 Aggregates
## 4892 7.055167e+11         2023-05-10                 Aggregates
## 4893           NA         2023-05-10                 Aggregates
## 4894           NA         2023-05-10                 Aggregates
## 4895           NA         2023-05-10                 Aggregates
## 4896           NA         2023-05-10                 Aggregates
## 4897           NA         2023-05-10                 Aggregates
## 4898           NA         2023-05-10                 Aggregates
## 4899           NA         2023-05-10                 Aggregates
## 4900           NA         2023-05-10                 Aggregates
## 4901           NA         2023-05-10                 Aggregates
## 4902           NA         2023-05-10                 Aggregates
## 4903           NA         2023-05-10                 Aggregates
## 4904           NA         2023-05-10                 Aggregates
## 4905 6.550665e+11         2023-05-10                 Aggregates
## 4906           NA         2023-05-10                 Aggregates
## 4907           NA         2023-05-10                 Aggregates
## 4908           NA         2023-05-10                 Aggregates
## 4909 8.930262e+11         2023-05-10                 Aggregates
## 4910           NA         2023-05-10                 Aggregates
## 4911 8.620813e+11         2023-05-10                 Aggregates
## 4912           NA         2023-05-10                 Aggregates
## 4913 8.340879e+11         2023-05-10                 Aggregates
## 4914           NA         2023-05-10                 Aggregates
## 4915 1.529449e+13         2023-05-10                 Aggregates
## 4916 1.717742e+13         2023-05-10                 Aggregates
## 4917           NA         2023-05-10                 Aggregates
## 4918 2.677638e+12         2023-05-10                 Aggregates
## 4919 1.464212e+13         2023-05-10                 Aggregates
## 4920 2.702046e+12         2023-05-10                 Aggregates
## 4921 3.744010e+12         2023-05-10                 Aggregates
## 4922 2.879959e+12         2023-05-10                 Aggregates
## 4923 3.303153e+12         2023-05-10                 Aggregates
## 4924 2.952813e+12         2023-05-10                 Aggregates
## 4925 2.777353e+12         2023-05-10                 Aggregates
## 4926 1.355251e+13         2023-05-10                 Aggregates
## 4927 1.564973e+13         2023-05-10                 Aggregates
## 4928 2.603373e+12         2023-05-10                 Aggregates
## 4929 7.259249e+11         2023-05-10                 Aggregates
## 4930 1.576558e+13         2023-05-10                 Aggregates
## 4931 1.455788e+13         2023-05-10                 Aggregates
## 4932 1.476398e+13         2023-05-10                 Aggregates
## 4933 1.629781e+13         2023-05-10                 Aggregates
## 4934 1.536944e+13         2023-05-10                 Aggregates
## 4935 1.569340e+13         2023-05-10                 Aggregates
## 4936 1.598083e+13         2023-05-10                 Aggregates
## 4937 1.476492e+13         2023-05-10                 Aggregates
## 4938 1.388901e+13         2023-05-10                 Aggregates
## 4939 7.925737e+12         2023-05-10                 Aggregates
## 4940 7.969673e+12         2023-05-10                 Aggregates
## 4941 8.208059e+11         2023-05-10                 Aggregates
## 4942 7.733629e+12         2023-05-10                 Aggregates
## 4943 8.431211e+12         2023-05-10                 Aggregates
## 4944 8.295694e+12         2023-05-10                 Aggregates
## 4945 7.161811e+12         2023-05-10                 Aggregates
## 4946 6.761057e+12         2023-05-10                 Aggregates
## 4947 1.472885e+13         2023-05-10                 Aggregates
## 4948 9.931941e+12         2023-05-10                 Aggregates
## 4949 8.084072e+12         2023-05-10                 Aggregates
## 4950 7.394076e+12         2023-05-10                 Aggregates
## 4951 7.276322e+12         2023-05-10                 Aggregates
## 4952 4.631211e+12         2023-05-10                 Aggregates
## 4953 1.282009e+12         2023-05-10                 Aggregates
## 4954 9.904202e+11         2023-05-10                 Aggregates
## 4955           NA         2023-05-10                 Aggregates
## 4956           NA         2023-05-10                 Aggregates
## 4957 2.442675e+12         2023-05-10                 Aggregates
## 4958           NA         2023-05-10                 Aggregates
## 4959 1.770039e+12         2023-05-10                 Aggregates
## 4960 1.690861e+12         2023-05-10                 Aggregates
## 4961 1.451738e+12         2023-05-10                 Aggregates
## 4962 2.004883e+12         2023-05-10                 Aggregates
## 4963           NA         2023-05-10                 Aggregates
## 4964 1.191087e+13         2023-05-10                 Aggregates
## 4965 1.141908e+13         2023-05-10                 Aggregates
## 4966           NA         2023-05-10                 Aggregates
## 4967 1.271394e+13         2023-05-10                 Aggregates
## 4968 6.735958e+12         2023-05-10                 Aggregates
## 4969 6.498416e+12         2023-05-10                 Aggregates
## 4970           NA         2023-05-10                 Aggregates
## 4971 7.406227e+12         2023-05-10                 Aggregates
## 4972           NA         2023-05-10                 Aggregates
## 4973           NA         2023-05-10                 Aggregates
## 4974 5.084244e+12         2023-05-10                 Aggregates
## 4975 5.193624e+12         2023-05-10                 Aggregates
## 4976           NA         2023-05-10                 Aggregates
## 4977           NA         2023-05-10                 Aggregates
## 4978           NA         2023-05-10      Europe & Central Asia
## 4979 3.649886e+09         2023-05-10      Europe & Central Asia
## 4980 3.248697e+09         2023-05-10      Europe & Central Asia
## 4981 3.275707e+09         2023-05-10      Europe & Central Asia
## 4982 3.188611e+09         2023-05-10      Europe & Central Asia
## 4983 2.980054e+09         2023-05-10      Europe & Central Asia
## 4984 2.813286e+09         2023-05-10      Europe & Central Asia
## 4985 2.573909e+09         2023-05-10      Europe & Central Asia
## 4986 2.913996e+09         2023-05-10      Europe & Central Asia
## 4987 2.690116e+09         2023-05-10      Europe & Central Asia
## 4988 2.427190e+09         2023-05-10      Europe & Central Asia
## 4989 2.505746e+09         2023-05-10      Europe & Central Asia
## 4990 2.331786e+09         2023-05-10      Europe & Central Asia
## 4991 2.296051e+09         2023-05-10      Europe & Central Asia
## 4992 2.489888e+09         2023-05-10      Europe & Central Asia
## 4993 2.339016e+09         2023-05-10      Europe & Central Asia
## 4994 2.017673e+09         2023-05-10      Europe & Central Asia
## 4995 1.759743e+09         2023-05-10      Europe & Central Asia
## 4996 1.724758e+09         2023-05-10      Europe & Central Asia
## 4997 1.501935e+09         2023-05-10      Europe & Central Asia
## 4998 1.275096e+09         2023-05-10      Europe & Central Asia
## 4999 1.160271e+09         2023-05-10      Europe & Central Asia
## 5000 1.067115e+09         2023-05-10      Europe & Central Asia
## 5001 1.127691e+09         2023-05-10      Europe & Central Asia
## 5002 1.104749e+09         2023-05-10      Europe & Central Asia
## 5003           NA         2023-05-10      Europe & Central Asia
## 5004           NA         2023-05-10      Europe & Central Asia
## 5005           NA         2023-05-10      Europe & Central Asia
## 5006           NA         2023-05-10      Europe & Central Asia
## 5007           NA         2023-05-10      Europe & Central Asia
## 5008           NA         2023-05-10      Europe & Central Asia
## 5009           NA         2023-05-10      Europe & Central Asia
## 5010           NA         2023-05-10      Europe & Central Asia
## 5011           NA         2023-05-10      Europe & Central Asia
## 5012           NA         2023-05-10      Europe & Central Asia
## 5013           NA         2023-05-10      Europe & Central Asia
## 5014           NA         2023-05-10      Europe & Central Asia
## 5015           NA         2023-05-10      Europe & Central Asia
## 5016           NA         2023-05-10      Europe & Central Asia
## 5017           NA         2023-05-10      Europe & Central Asia
## 5018           NA         2023-05-10      Europe & Central Asia
## 5019           NA         2023-05-10      Europe & Central Asia
## 5020           NA         2023-05-10      Europe & Central Asia
## 5021           NA         2023-05-10      Europe & Central Asia
## 5022           NA         2023-05-10      Europe & Central Asia
## 5023           NA         2023-05-10      Europe & Central Asia
## 5024           NA         2023-05-10      Europe & Central Asia
## 5025           NA         2023-05-10      Europe & Central Asia
## 5026           NA         2023-05-10      Europe & Central Asia
## 5027           NA         2023-05-10      Europe & Central Asia
## 5028           NA         2023-05-10      Europe & Central Asia
## 5029           NA         2023-05-10      Europe & Central Asia
## 5030           NA         2023-05-10      Europe & Central Asia
## 5031           NA         2023-05-10      Europe & Central Asia
## 5032           NA         2023-05-10      Europe & Central Asia
## 5033           NA         2023-05-10      Europe & Central Asia
## 5034           NA         2023-05-10      Europe & Central Asia
## 5035           NA         2023-05-10      Europe & Central Asia
## 5036           NA         2023-05-10      Europe & Central Asia
## 5037           NA         2023-05-10      Europe & Central Asia
## 5038           NA         2023-05-10      Europe & Central Asia
## 5039           NA         2023-05-10      Europe & Central Asia
## 5040           NA         2023-05-10      Europe & Central Asia
## 5041           NA         2023-05-10        East Asia & Pacific
## 5042 4.296305e+09         2023-05-10        East Asia & Pacific
## 5043 4.477040e+09         2023-05-10        East Asia & Pacific
## 5044 5.481675e+09         2023-05-10        East Asia & Pacific
## 5045 5.581372e+09         2023-05-10        East Asia & Pacific
## 5046 5.353404e+09         2023-05-10        East Asia & Pacific
## 5047 4.930204e+09         2023-05-10        East Asia & Pacific
## 5048 4.682547e+09         2023-05-10        East Asia & Pacific
## 5049 4.857221e+09         2023-05-10        East Asia & Pacific
## 5050 4.189916e+09         2023-05-10        East Asia & Pacific
## 5051 3.972013e+09         2023-05-10        East Asia & Pacific
## 5052 3.779378e+09         2023-05-10        East Asia & Pacific
## 5053 3.140181e+09         2023-05-10        East Asia & Pacific
## 5054 2.870625e+09         2023-05-10        East Asia & Pacific
## 5055 3.523186e+09         2023-05-10        East Asia & Pacific
## 5056 3.378315e+09         2023-05-10        East Asia & Pacific
## 5057 3.076305e+09         2023-05-10        East Asia & Pacific
## 5058 2.980485e+09         2023-05-10        East Asia & Pacific
## 5059 2.708078e+09         2023-05-10        East Asia & Pacific
## 5060 2.300454e+09         2023-05-10        East Asia & Pacific
## 5061 1.833280e+09         2023-05-10        East Asia & Pacific
## 5062 1.652464e+09         2023-05-10        East Asia & Pacific
## 5063 1.678239e+09         2023-05-10        East Asia & Pacific
## 5064 1.936485e+09         2023-05-10        East Asia & Pacific
## 5065 1.653161e+09         2023-05-10        East Asia & Pacific
## 5066 2.090185e+09         2023-05-10        East Asia & Pacific
## 5067 2.128697e+09         2023-05-10        East Asia & Pacific
## 5068 1.970348e+09         2023-05-10        East Asia & Pacific
## 5069 1.825763e+09         2023-05-10        East Asia & Pacific
## 5070 1.636075e+09         2023-05-10        East Asia & Pacific
## 5071 1.532402e+09         2023-05-10        East Asia & Pacific
## 5072 1.383844e+09         2023-05-10        East Asia & Pacific
## 5073 1.337025e+09         2023-05-10        East Asia & Pacific
## 5074 1.182687e+09         2023-05-10        East Asia & Pacific
## 5075 1.109977e+09         2023-05-10        East Asia & Pacific
## 5076 1.177908e+09         2023-05-10        East Asia & Pacific
## 5077 1.290229e+09         2023-05-10        East Asia & Pacific
## 5078 1.141123e+09         2023-05-10        East Asia & Pacific
## 5079 1.177997e+09         2023-05-10        East Asia & Pacific
## 5080 1.123107e+09         2023-05-10        East Asia & Pacific
## 5081 1.194123e+09         2023-05-10        East Asia & Pacific
## 5082 1.235666e+09         2023-05-10        East Asia & Pacific
## 5083 1.202567e+09         2023-05-10        East Asia & Pacific
## 5084 1.019744e+09         2023-05-10        East Asia & Pacific
## 5085 8.292395e+08         2023-05-10        East Asia & Pacific
## 5086 7.195331e+08         2023-05-10        East Asia & Pacific
## 5087 6.945524e+08         2023-05-10        East Asia & Pacific
## 5088 6.842683e+08         2023-05-10        East Asia & Pacific
## 5089 5.585899e+08         2023-05-10        East Asia & Pacific
## 5090 4.259634e+08         2023-05-10        East Asia & Pacific
## 5091 3.166505e+08         2023-05-10        East Asia & Pacific
## 5092 2.477493e+08         2023-05-10        East Asia & Pacific
## 5093 2.198785e+08         2023-05-10        East Asia & Pacific
## 5094 1.821821e+08         2023-05-10        East Asia & Pacific
## 5095 1.669529e+08         2023-05-10        East Asia & Pacific
## 5096 1.626259e+08         2023-05-10        East Asia & Pacific
## 5097 1.506039e+08         2023-05-10        East Asia & Pacific
## 5098 1.470848e+08         2023-05-10        East Asia & Pacific
## 5099 1.400327e+08         2023-05-10        East Asia & Pacific
## 5100 1.294547e+08         2023-05-10        East Asia & Pacific
## 5101 1.229064e+08         2023-05-10        East Asia & Pacific
## 5102 1.169878e+08         2023-05-10        East Asia & Pacific
## 5103 1.123284e+08         2023-05-10        East Asia & Pacific
## 5104           NA         2023-05-10      Europe & Central Asia
## 5105 2.973019e+11         2023-05-10      Europe & Central Asia
## 5106 2.718918e+11         2023-05-10      Europe & Central Asia
## 5107 2.685149e+11         2023-05-10      Europe & Central Asia
## 5108 2.757080e+11         2023-05-10      Europe & Central Asia
## 5109 2.556480e+11         2023-05-10      Europe & Central Asia
## 5110 2.407714e+11         2023-05-10      Europe & Central Asia
## 5111 2.345344e+11         2023-05-10      Europe & Central Asia
## 5112 2.748628e+11         2023-05-10      Europe & Central Asia
## 5113 2.713624e+11         2023-05-10      Europe & Central Asia
## 5114 2.582901e+11         2023-05-10      Europe & Central Asia
## 5115 2.756044e+11         2023-05-10      Europe & Central Asia
## 5116 2.494243e+11         2023-05-10      Europe & Central Asia
## 5117 2.534975e+11         2023-05-10      Europe & Central Asia
## 5118 2.857163e+11         2023-05-10      Europe & Central Asia
## 5119 2.563781e+11         2023-05-10      Europe & Central Asia
## 5120 2.170893e+11         2023-05-10      Europe & Central Asia
## 5121 2.048855e+11         2023-05-10      Europe & Central Asia
## 5122 1.974794e+11         2023-05-10      Europe & Central Asia
## 5123 1.716525e+11         2023-05-10      Europe & Central Asia
## 5124 1.404045e+11         2023-05-10      Europe & Central Asia
## 5125 1.295331e+11         2023-05-10      Europe & Central Asia
## 5126 1.260195e+11         2023-05-10      Europe & Central Asia
## 5127 1.352641e+11         2023-05-10      Europe & Central Asia
## 5128 1.340387e+11         2023-05-10      Europe & Central Asia
## 5129 1.269122e+11         2023-05-10      Europe & Central Asia
## 5130 1.321292e+11         2023-05-10      Europe & Central Asia
## 5131 1.341898e+11         2023-05-10      Europe & Central Asia
## 5132 1.032999e+11         2023-05-10      Europe & Central Asia
## 5133 8.921411e+10         2023-05-10      Europe & Central Asia
## 5134 1.125325e+11         2023-05-10      Europe & Central Asia
## 5135 1.277739e+11         2023-05-10      Europe & Central Asia
## 5136 1.414383e+11         2023-05-10      Europe & Central Asia
## 5137 1.190121e+11         2023-05-10      Europe & Central Asia
## 5138 1.090590e+11         2023-05-10      Europe & Central Asia
## 5139 9.159475e+10         2023-05-10      Europe & Central Asia
## 5140 7.353155e+10         2023-05-10      Europe & Central Asia
## 5141 5.587586e+10         2023-05-10      Europe & Central Asia
## 5142 5.288880e+10         2023-05-10      Europe & Central Asia
## 5143 5.097353e+10         2023-05-10      Europe & Central Asia
## 5144 5.279758e+10         2023-05-10      Europe & Central Asia
## 5145 5.244833e+10         2023-05-10      Europe & Central Asia
## 5146 5.364520e+10         2023-05-10      Europe & Central Asia
## 5147 4.446526e+10         2023-05-10      Europe & Central Asia
## 5148 3.625616e+10         2023-05-10      Europe & Central Asia
## 5149 3.349980e+10         2023-05-10      Europe & Central Asia
## 5150 3.184951e+10         2023-05-10      Europe & Central Asia
## 5151 2.947262e+10         2023-05-10      Europe & Central Asia
## 5152 2.484882e+10         2023-05-10      Europe & Central Asia
## 5153 1.947236e+10         2023-05-10      Europe & Central Asia
## 5154 1.474319e+10         2023-05-10      Europe & Central Asia
## 5155 1.252741e+10         2023-05-10      Europe & Central Asia
## 5156 1.135752e+10         2023-05-10      Europe & Central Asia
## 5157 1.007077e+10         2023-05-10      Europe & Central Asia
## 5158 8.823034e+09         2023-05-10      Europe & Central Asia
## 5159 9.368954e+09         2023-05-10      Europe & Central Asia
## 5160 9.208525e+09         2023-05-10      Europe & Central Asia
## 5161 8.589340e+09         2023-05-10      Europe & Central Asia
## 5162 7.766655e+09         2023-05-10      Europe & Central Asia
## 5163 6.885920e+09         2023-05-10      Europe & Central Asia
## 5164 6.340581e+09         2023-05-10      Europe & Central Asia
## 5165 5.921659e+09         2023-05-10      Europe & Central Asia
## 5166 5.224102e+09         2023-05-10      Europe & Central Asia
## 5167           NA         2023-05-10                 Aggregates
## 5168           NA         2023-05-10                 Aggregates
## 5169 3.142572e+11         2023-05-10                 Aggregates
## 5170 3.618756e+11         2023-05-10                 Aggregates
## 5171           NA         2023-05-10                 Aggregates
## 5172           NA         2023-05-10                 Aggregates
## 5173           NA         2023-05-10                 Aggregates
## 5174           NA         2023-05-10                 Aggregates
## 5175 3.263581e+11         2023-05-10                 Aggregates
## 5176           NA         2023-05-10                 Aggregates
## 5177 4.793579e+10         2023-05-10                 Aggregates
## 5178 1.739933e+12         2023-05-10                 Aggregates
## 5179 1.799023e+12         2023-05-10                 Aggregates
## 5180 5.344607e+10         2023-05-10                 Aggregates
## 5181 1.804386e+12         2023-05-10                 Aggregates
## 5182 1.788992e+12         2023-05-10                 Aggregates
## 5183 1.654052e+12         2023-05-10                 Aggregates
## 5184 1.680894e+12         2023-05-10                 Aggregates
## 5185 6.523120e+10         2023-05-10                 Aggregates
## 5186 1.060202e+12         2023-05-10                 Aggregates
## 5187 1.511933e+12         2023-05-10                 Aggregates
## 5188 1.635873e+12         2023-05-10                 Aggregates
## 5189 1.291542e+12         2023-05-10                 Aggregates
## 5190           NA         2023-05-10                 Aggregates
## 5191 8.561075e+11         2023-05-10                 Aggregates
## 5192 6.809038e+11         2023-05-10                 Aggregates
## 5193 5.396356e+11         2023-05-10                 Aggregates
## 5194 4.522323e+11         2023-05-10                 Aggregates
## 5195 4.196367e+11         2023-05-10                 Aggregates
## 5196 4.238771e+11         2023-05-10                 Aggregates
## 5197 3.740401e+11         2023-05-10                 Aggregates
## 5198 4.859069e+11         2023-05-10                 Aggregates
## 5199 3.491501e+11         2023-05-10                 Aggregates
## 5200 3.476427e+11         2023-05-10                 Aggregates
## 5201 3.812621e+11         2023-05-10                 Aggregates
## 5202 5.513112e+11         2023-05-10                 Aggregates
## 5203 3.812040e+11         2023-05-10                 Aggregates
## 5204           NA         2023-05-10                 Aggregates
## 5205 5.233888e+11         2023-05-10                 Aggregates
## 5206 5.257508e+11         2023-05-10                 Aggregates
## 5207 3.553067e+11         2023-05-10                 Aggregates
## 5208 3.663731e+11         2023-05-10                 Aggregates
## 5209 3.587886e+11         2023-05-10                 Aggregates
## 5210 3.968591e+11         2023-05-10                 Aggregates
## 5211 2.006557e+11         2023-05-10                 Aggregates
## 5212 4.653842e+11         2023-05-10                 Aggregates
## 5213 2.791500e+11         2023-05-10                 Aggregates
## 5214 2.209553e+11         2023-05-10                 Aggregates
## 5215 9.280898e+10         2023-05-10                 Aggregates
## 5216 1.823309e+11         2023-05-10                 Aggregates
## 5217 1.548576e+11         2023-05-10                 Aggregates
## 5218 1.378818e+11         2023-05-10                 Aggregates
## 5219 5.147974e+11         2023-05-10                 Aggregates
## 5220 7.571746e+10         2023-05-10                 Aggregates
## 5221 6.616730e+10         2023-05-10                 Aggregates
## 5222 1.682465e+12         2023-05-10                 Aggregates
## 5223 1.885131e+12         2023-05-10                 Aggregates
## 5224 3.837796e+11         2023-05-10                 Aggregates
## 5225 3.662403e+11         2023-05-10                 Aggregates
## 5226 1.956635e+12         2023-05-10                 Aggregates
## 5227 1.562857e+12         2023-05-10                 Aggregates
## 5228 1.656900e+12         2023-05-10                 Aggregates
## 5229 2.076425e+12         2023-05-10                 Aggregates
## 5230           NA         2023-05-10      Europe & Central Asia
## 5231 2.957880e+12         2023-05-10      Europe & Central Asia
## 5232 2.639009e+12         2023-05-10      Europe & Central Asia
## 5233 2.728870e+12         2023-05-10      Europe & Central Asia
## 5234 2.790957e+12         2023-05-10      Europe & Central Asia
## 5235 2.595151e+12         2023-05-10      Europe & Central Asia
## 5236 2.472964e+12         2023-05-10      Europe & Central Asia
## 5237 2.439189e+12         2023-05-10      Europe & Central Asia
## 5238 2.855964e+12         2023-05-10      Europe & Central Asia
## 5239 2.811877e+12         2023-05-10      Europe & Central Asia
## 5240 2.683672e+12         2023-05-10      Europe & Central Asia
## 5241 2.865158e+12         2023-05-10      Europe & Central Asia
## 5242 2.645188e+12         2023-05-10      Europe & Central Asia
## 5243 2.700887e+12         2023-05-10      Europe & Central Asia
## 5244 2.930304e+12         2023-05-10      Europe & Central Asia
## 5245 2.660591e+12         2023-05-10      Europe & Central Asia
## 5246 2.320536e+12         2023-05-10      Europe & Central Asia
## 5247 2.196945e+12         2023-05-10      Europe & Central Asia
## 5248 2.119633e+12         2023-05-10      Europe & Central Asia
## 5249 1.844545e+12         2023-05-10      Europe & Central Asia
## 5250 1.501409e+12         2023-05-10      Europe & Central Asia
## 5251 1.377657e+12         2023-05-10      Europe & Central Asia
## 5252 1.365640e+12         2023-05-10      Europe & Central Asia
## 5253 1.493152e+12         2023-05-10      Europe & Central Asia
## 5254 1.503109e+12         2023-05-10      Europe & Central Asia
## 5255 1.452885e+12         2023-05-10      Europe & Central Asia
## 5256 1.605675e+12         2023-05-10      Europe & Central Asia
## 5257 1.601095e+12         2023-05-10      Europe & Central Asia
## 5258 1.393983e+12         2023-05-10      Europe & Central Asia
## 5259 1.322816e+12         2023-05-10      Europe & Central Asia
## 5260 1.401466e+12         2023-05-10      Europe & Central Asia
## 5261 1.269277e+12         2023-05-10      Europe & Central Asia
## 5262 1.269180e+12         2023-05-10      Europe & Central Asia
## 5263 1.025212e+12         2023-05-10      Europe & Central Asia
## 5264 1.018847e+12         2023-05-10      Europe & Central Asia
## 5265 9.341733e+11         2023-05-10      Europe & Central Asia
## 5266 7.714708e+11         2023-05-10      Europe & Central Asia
## 5267 5.531384e+11         2023-05-10      Europe & Central Asia
## 5268 5.306838e+11         2023-05-10      Europe & Central Asia
## 5269 5.598692e+11         2023-05-10      Europe & Central Asia
## 5270 5.848777e+11         2023-05-10      Europe & Central Asia
## 5271 6.155522e+11         2023-05-10      Europe & Central Asia
## 5272 7.012884e+11         2023-05-10      Europe & Central Asia
## 5273 6.139531e+11         2023-05-10      Europe & Central Asia
## 5274 5.067078e+11         2023-05-10      Europe & Central Asia
## 5275 4.102795e+11         2023-05-10      Europe & Central Asia
## 5276 3.723190e+11         2023-05-10      Europe & Central Asia
## 5277 3.608322e+11         2023-05-10      Europe & Central Asia
## 5278 2.855524e+11         2023-05-10      Europe & Central Asia
## 5279 2.644299e+11         2023-05-10      Europe & Central Asia
## 5280 2.034941e+11         2023-05-10      Europe & Central Asia
## 5281 1.659666e+11         2023-05-10      Europe & Central Asia
## 5282 1.484564e+11         2023-05-10      Europe & Central Asia
## 5283 1.419031e+11         2023-05-10      Europe & Central Asia
## 5284 1.297854e+11         2023-05-10      Europe & Central Asia
## 5285 1.189730e+11         2023-05-10      Europe & Central Asia
## 5286 1.100459e+11         2023-05-10      Europe & Central Asia
## 5287 1.015372e+11         2023-05-10      Europe & Central Asia
## 5288 9.400785e+10         2023-05-10      Europe & Central Asia
## 5289 8.475920e+10         2023-05-10      Europe & Central Asia
## 5290 7.560753e+10         2023-05-10      Europe & Central Asia
## 5291 6.746164e+10         2023-05-10      Europe & Central Asia
## 5292 6.222548e+10         2023-05-10      Europe & Central Asia
## 5293           NA         2023-05-10        East Asia & Pacific
## 5294 6.054677e+09         2023-05-10        East Asia & Pacific
## 5295 5.709422e+09         2023-05-10        East Asia & Pacific
## 5296 6.001385e+09         2023-05-10        East Asia & Pacific
## 5297 6.135118e+09         2023-05-10        East Asia & Pacific
## 5298 5.833351e+09         2023-05-10        East Asia & Pacific
## 5299 5.497037e+09         2023-05-10        East Asia & Pacific
## 5300 5.325848e+09         2023-05-10        East Asia & Pacific
## 5301 6.151999e+09         2023-05-10        East Asia & Pacific
## 5302 6.031829e+09         2023-05-10        East Asia & Pacific
## 5303 5.692859e+09         2023-05-10        East Asia & Pacific
## 5304 6.203937e+09         2023-05-10        East Asia & Pacific
## 5305 6.086643e+09         2023-05-10        East Asia & Pacific
## 5306 6.584557e+09         2023-05-10        East Asia & Pacific
## 5307 7.136744e+09         2023-05-10        East Asia & Pacific
## 5308 6.631160e+09         2023-05-10        East Asia & Pacific
## 5309 5.877996e+09         2023-05-10        East Asia & Pacific
## 5310 5.705055e+09         2023-05-10        East Asia & Pacific
## 5311 5.564112e+09         2023-05-10        East Asia & Pacific
## 5312 4.927783e+09         2023-05-10        East Asia & Pacific
## 5313 3.965406e+09         2023-05-10        East Asia & Pacific
## 5314 3.573808e+09         2023-05-10        East Asia & Pacific
## 5315 3.599847e+09         2023-05-10        East Asia & Pacific
## 5316 3.911602e+09         2023-05-10        East Asia & Pacific
## 5317 3.903187e+09         2023-05-10        East Asia & Pacific
## 5318 3.762858e+09         2023-05-10        East Asia & Pacific
## 5319 4.166073e+09         2023-05-10        East Asia & Pacific
## 5320 4.186996e+09         2023-05-10        East Asia & Pacific
## 5321 3.676123e+09         2023-05-10        East Asia & Pacific
## 5322 3.544609e+09         2023-05-10        East Asia & Pacific
## 5323 3.713786e+09         2023-05-10        East Asia & Pacific
## 5324 3.410080e+09         2023-05-10        East Asia & Pacific
## 5325 3.320160e+09         2023-05-10        East Asia & Pacific
## 5326 2.731683e+09         2023-05-10        East Asia & Pacific
## 5327 2.723496e+09         2023-05-10        East Asia & Pacific
## 5328 2.677977e+09         2023-05-10        East Asia & Pacific
## 5329 2.212028e+09         2023-05-10        East Asia & Pacific
## 5330 1.448281e+09         2023-05-10        East Asia & Pacific
## 5331 1.325515e+09         2023-05-10        East Asia & Pacific
## 5332 1.284181e+09         2023-05-10        East Asia & Pacific
## 5333 1.235898e+09         2023-05-10        East Asia & Pacific
## 5334 1.234743e+09         2023-05-10        East Asia & Pacific
## 5335 1.320416e+09         2023-05-10        East Asia & Pacific
## 5336 1.215032e+09         2023-05-10        East Asia & Pacific
## 5337 1.005570e+09         2023-05-10        East Asia & Pacific
## 5338 7.931964e+08         2023-05-10        East Asia & Pacific
## 5339 7.322889e+08         2023-05-10        East Asia & Pacific
## 5340 6.903234e+08         2023-05-10        East Asia & Pacific
## 5341 5.553408e+08         2023-05-10        East Asia & Pacific
## 5342 4.312529e+08         2023-05-10        East Asia & Pacific
## 5343 3.264336e+08         2023-05-10        East Asia & Pacific
## 5344 2.968655e+08         2023-05-10        East Asia & Pacific
## 5345 2.540360e+08         2023-05-10        East Asia & Pacific
## 5346 2.429438e+08         2023-05-10        East Asia & Pacific
## 5347 2.595901e+08         2023-05-10        East Asia & Pacific
## 5348 2.209844e+08         2023-05-10        East Asia & Pacific
## 5349 2.156595e+08         2023-05-10        East Asia & Pacific
## 5350 1.765346e+08         2023-05-10        East Asia & Pacific
## 5351           NA         2023-05-10        East Asia & Pacific
## 5352           NA         2023-05-10        East Asia & Pacific
## 5353           NA         2023-05-10        East Asia & Pacific
## 5354           NA         2023-05-10        East Asia & Pacific
## 5355           NA         2023-05-10        East Asia & Pacific
## 5356           NA         2023-05-10         Sub-Saharan Africa
## 5357 2.021684e+10         2023-05-10         Sub-Saharan Africa
## 5358 1.531458e+10         2023-05-10         Sub-Saharan Africa
## 5359 1.687441e+10         2023-05-10         Sub-Saharan Africa
## 5360 1.686733e+10         2023-05-10         Sub-Saharan Africa
## 5361 1.492949e+10         2023-05-10         Sub-Saharan Africa
## 5362 1.402389e+10         2023-05-10         Sub-Saharan Africa
## 5363 1.438311e+10         2023-05-10         Sub-Saharan Africa
## 5364 1.820397e+10         2023-05-10         Sub-Saharan Africa
## 5365 1.759575e+10         2023-05-10         Sub-Saharan Africa
## 5366 1.717047e+10         2023-05-10         Sub-Saharan Africa
## 5367 1.821031e+10         2023-05-10         Sub-Saharan Africa
## 5368 1.437259e+10         2023-05-10         Sub-Saharan Africa
## 5369 1.211370e+10         2023-05-10         Sub-Saharan Africa
## 5370 1.557135e+10         2023-05-10         Sub-Saharan Africa
## 5371 1.245541e+10         2023-05-10         Sub-Saharan Africa
## 5372 1.032760e+10         2023-05-10         Sub-Saharan Africa
## 5373 9.582783e+09         2023-05-10         Sub-Saharan Africa
## 5374 7.770219e+09         2023-05-10         Sub-Saharan Africa
## 5375 6.511904e+09         2023-05-10         Sub-Saharan Africa
## 5376 5.335451e+09         2023-05-10         Sub-Saharan Africa
## 5377 5.023265e+09         2023-05-10         Sub-Saharan Africa
## 5378 5.080483e+09         2023-05-10         Sub-Saharan Africa
## 5379 4.662992e+09         2023-05-10         Sub-Saharan Africa
## 5380 4.483417e+09         2023-05-10         Sub-Saharan Africa
## 5381 5.326817e+09         2023-05-10         Sub-Saharan Africa
## 5382 5.694040e+09         2023-05-10         Sub-Saharan Africa
## 5383 4.958846e+09         2023-05-10         Sub-Saharan Africa
## 5384 4.190819e+09         2023-05-10         Sub-Saharan Africa
## 5385 4.378645e+09         2023-05-10         Sub-Saharan Africa
## 5386 5.592391e+09         2023-05-10         Sub-Saharan Africa
## 5387 5.402920e+09         2023-05-10         Sub-Saharan Africa
## 5388 5.952294e+09         2023-05-10         Sub-Saharan Africa
## 5389 4.186411e+09         2023-05-10         Sub-Saharan Africa
## 5390 3.834503e+09         2023-05-10         Sub-Saharan Africa
## 5391 3.281797e+09         2023-05-10         Sub-Saharan Africa
## 5392 3.403638e+09         2023-05-10         Sub-Saharan Africa
## 5393 3.339915e+09         2023-05-10         Sub-Saharan Africa
## 5394 3.561452e+09         2023-05-10         Sub-Saharan Africa
## 5395 3.391276e+09         2023-05-10         Sub-Saharan Africa
## 5396 3.618008e+09         2023-05-10         Sub-Saharan Africa
## 5397 3.862269e+09         2023-05-10         Sub-Saharan Africa
## 5398 4.279638e+09         2023-05-10         Sub-Saharan Africa
## 5399 3.030251e+09         2023-05-10         Sub-Saharan Africa
## 5400 2.389479e+09         2023-05-10         Sub-Saharan Africa
## 5401 2.809349e+09         2023-05-10         Sub-Saharan Africa
## 5402 3.009410e+09         2023-05-10         Sub-Saharan Africa
## 5403 2.157593e+09         2023-05-10         Sub-Saharan Africa
## 5404 1.544216e+09         2023-05-10         Sub-Saharan Africa
## 5405 7.227807e+08         2023-05-10         Sub-Saharan Africa
## 5406 4.305084e+08         2023-05-10         Sub-Saharan Africa
## 5407 3.816871e+08         2023-05-10         Sub-Saharan Africa
## 5408 3.238025e+08         2023-05-10         Sub-Saharan Africa
## 5409 3.181247e+08         2023-05-10         Sub-Saharan Africa
## 5410 2.944686e+08         2023-05-10         Sub-Saharan Africa
## 5411 2.715437e+08         2023-05-10         Sub-Saharan Africa
## 5412 2.458498e+08         2023-05-10         Sub-Saharan Africa
## 5413 2.264743e+08         2023-05-10         Sub-Saharan Africa
## 5414 2.156799e+08         2023-05-10         Sub-Saharan Africa
## 5415 1.544802e+08         2023-05-10         Sub-Saharan Africa
## 5416 1.827965e+08         2023-05-10         Sub-Saharan Africa
## 5417 1.676379e+08         2023-05-10         Sub-Saharan Africa
## 5418 1.414690e+08         2023-05-10         Sub-Saharan Africa
## 5419           NA         2023-05-10         Sub-Saharan Africa
## 5420 2.038417e+09         2023-05-10         Sub-Saharan Africa
## 5421 1.812169e+09         2023-05-10         Sub-Saharan Africa
## 5422 1.813608e+09         2023-05-10         Sub-Saharan Africa
## 5423 1.670671e+09         2023-05-10         Sub-Saharan Africa
## 5424 1.504910e+09         2023-05-10         Sub-Saharan Africa
## 5425 1.484580e+09         2023-05-10         Sub-Saharan Africa
## 5426 1.378177e+09         2023-05-10         Sub-Saharan Africa
## 5427 1.229461e+09         2023-05-10         Sub-Saharan Africa
## 5428 1.375609e+09         2023-05-10         Sub-Saharan Africa
## 5429 1.415006e+09         2023-05-10         Sub-Saharan Africa
## 5430 1.409695e+09         2023-05-10         Sub-Saharan Africa
## 5431 1.543292e+09         2023-05-10         Sub-Saharan Africa
## 5432 1.450140e+09         2023-05-10         Sub-Saharan Africa
## 5433 1.561763e+09         2023-05-10         Sub-Saharan Africa
## 5434 1.279705e+09         2023-05-10         Sub-Saharan Africa
## 5435 1.054113e+09         2023-05-10         Sub-Saharan Africa
## 5436 1.027702e+09         2023-05-10         Sub-Saharan Africa
## 5437 9.619001e+08         2023-05-10         Sub-Saharan Africa
## 5438 4.870388e+08         2023-05-10         Sub-Saharan Africa
## 5439 5.782360e+08         2023-05-10         Sub-Saharan Africa
## 5440 6.874088e+08         2023-05-10         Sub-Saharan Africa
## 5441 7.829154e+08         2023-05-10         Sub-Saharan Africa
## 5442 8.147235e+08         2023-05-10         Sub-Saharan Africa
## 5443 8.402853e+08         2023-05-10         Sub-Saharan Africa
## 5444 8.036307e+08         2023-05-10         Sub-Saharan Africa
## 5445 8.482371e+08         2023-05-10         Sub-Saharan Africa
## 5446 7.859970e+08         2023-05-10         Sub-Saharan Africa
## 5447 7.464917e+08         2023-05-10         Sub-Saharan Africa
## 5448 7.550425e+08         2023-05-10         Sub-Saharan Africa
## 5449 7.142555e+08         2023-05-10         Sub-Saharan Africa
## 5450 6.903143e+08         2023-05-10         Sub-Saharan Africa
## 5451 3.170834e+08         2023-05-10         Sub-Saharan Africa
## 5452 2.841197e+08         2023-05-10         Sub-Saharan Africa
## 5453 2.666731e+08         2023-05-10         Sub-Saharan Africa
## 5454 2.206265e+08         2023-05-10         Sub-Saharan Africa
## 5455 1.856462e+08         2023-05-10         Sub-Saharan Africa
## 5456 2.257249e+08         2023-05-10         Sub-Saharan Africa
## 5457 1.773388e+08         2023-05-10         Sub-Saharan Africa
## 5458 2.134466e+08         2023-05-10         Sub-Saharan Africa
## 5459 2.160515e+08         2023-05-10         Sub-Saharan Africa
## 5460 2.187644e+08         2023-05-10         Sub-Saharan Africa
## 5461 2.410807e+08         2023-05-10         Sub-Saharan Africa
## 5462 2.071144e+08         2023-05-10         Sub-Saharan Africa
## 5463 1.718368e+08         2023-05-10         Sub-Saharan Africa
## 5464 1.380942e+08         2023-05-10         Sub-Saharan Africa
## 5465 1.121895e+08         2023-05-10         Sub-Saharan Africa
## 5466 1.151825e+08         2023-05-10         Sub-Saharan Africa
## 5467 9.579753e+07         2023-05-10         Sub-Saharan Africa
## 5468 7.518797e+07         2023-05-10         Sub-Saharan Africa
## 5469 5.916154e+07         2023-05-10         Sub-Saharan Africa
## 5470 5.572861e+07         2023-05-10         Sub-Saharan Africa
## 5471 5.229684e+07         2023-05-10         Sub-Saharan Africa
## 5472 4.516872e+07         2023-05-10         Sub-Saharan Africa
## 5473 4.116066e+07         2023-05-10         Sub-Saharan Africa
## 5474 4.669536e+07         2023-05-10         Sub-Saharan Africa
## 5475 4.421235e+07         2023-05-10         Sub-Saharan Africa
## 5476           NA         2023-05-10         Sub-Saharan Africa
## 5477           NA         2023-05-10         Sub-Saharan Africa
## 5478           NA         2023-05-10         Sub-Saharan Africa
## 5479           NA         2023-05-10         Sub-Saharan Africa
## 5480           NA         2023-05-10         Sub-Saharan Africa
## 5481           NA         2023-05-10         Sub-Saharan Africa
## 5482           NA         2023-05-10      Europe & Central Asia
## 5483 1.862937e+10         2023-05-10      Europe & Central Asia
## 5484 1.584292e+10         2023-05-10      Europe & Central Asia
## 5485 1.747044e+10         2023-05-10      Europe & Central Asia
## 5486 1.759692e+10         2023-05-10      Europe & Central Asia
## 5487 1.624292e+10         2023-05-10      Europe & Central Asia
## 5488 1.514176e+10         2023-05-10      Europe & Central Asia
## 5489 1.495395e+10         2023-05-10      Europe & Central Asia
## 5490 1.762700e+10         2023-05-10      Europe & Central Asia
## 5491 1.718955e+10         2023-05-10      Europe & Central Asia
## 5492 1.648840e+10         2023-05-10      Europe & Central Asia
## 5493 1.510744e+10         2023-05-10      Europe & Central Asia
## 5494 1.224351e+10         2023-05-10      Europe & Central Asia
## 5495 1.076684e+10         2023-05-10      Europe & Central Asia
## 5496 1.279508e+10         2023-05-10      Europe & Central Asia
## 5497 1.017288e+10         2023-05-10      Europe & Central Asia
## 5498 7.745394e+09         2023-05-10      Europe & Central Asia
## 5499 6.410824e+09         2023-05-10      Europe & Central Asia
## 5500 5.125365e+09         2023-05-10      Europe & Central Asia
## 5501 3.991285e+09         2023-05-10      Europe & Central Asia
## 5502 3.395728e+09         2023-05-10      Europe & Central Asia
## 5503 3.219489e+09         2023-05-10      Europe & Central Asia
## 5504 3.057475e+09         2023-05-10      Europe & Central Asia
## 5505 2.800049e+09         2023-05-10      Europe & Central Asia
## 5506 3.613542e+09         2023-05-10      Europe & Central Asia
## 5507 3.510520e+09         2023-05-10      Europe & Central Asia
## 5508 3.095048e+09         2023-05-10      Europe & Central Asia
## 5509 2.693768e+09         2023-05-10      Europe & Central Asia
## 5510 2.514071e+09         2023-05-10      Europe & Central Asia
## 5511 2.701181e+09         2023-05-10      Europe & Central Asia
## 5512 3.690329e+09         2023-05-10      Europe & Central Asia
## 5513 6.357616e+09         2023-05-10      Europe & Central Asia
## 5514 7.753502e+09         2023-05-10      Europe & Central Asia
## 5515           NA         2023-05-10      Europe & Central Asia
## 5516           NA         2023-05-10      Europe & Central Asia
## 5517           NA         2023-05-10      Europe & Central Asia
## 5518           NA         2023-05-10      Europe & Central Asia
## 5519           NA         2023-05-10      Europe & Central Asia
## 5520           NA         2023-05-10      Europe & Central Asia
## 5521           NA         2023-05-10      Europe & Central Asia
## 5522           NA         2023-05-10      Europe & Central Asia
## 5523           NA         2023-05-10      Europe & Central Asia
## 5524           NA         2023-05-10      Europe & Central Asia
## 5525           NA         2023-05-10      Europe & Central Asia
## 5526           NA         2023-05-10      Europe & Central Asia
## 5527           NA         2023-05-10      Europe & Central Asia
## 5528           NA         2023-05-10      Europe & Central Asia
## 5529           NA         2023-05-10      Europe & Central Asia
## 5530           NA         2023-05-10      Europe & Central Asia
## 5531           NA         2023-05-10      Europe & Central Asia
## 5532           NA         2023-05-10      Europe & Central Asia
## 5533           NA         2023-05-10      Europe & Central Asia
## 5534           NA         2023-05-10      Europe & Central Asia
## 5535           NA         2023-05-10      Europe & Central Asia
## 5536           NA         2023-05-10      Europe & Central Asia
## 5537           NA         2023-05-10      Europe & Central Asia
## 5538           NA         2023-05-10      Europe & Central Asia
## 5539           NA         2023-05-10      Europe & Central Asia
## 5540           NA         2023-05-10      Europe & Central Asia
## 5541           NA         2023-05-10      Europe & Central Asia
## 5542           NA         2023-05-10      Europe & Central Asia
## 5543           NA         2023-05-10      Europe & Central Asia
## 5544           NA         2023-05-10      Europe & Central Asia
## 5545           NA         2023-05-10      Europe & Central Asia
## 5546 4.259935e+12         2023-05-10      Europe & Central Asia
## 5547 3.889669e+12         2023-05-10      Europe & Central Asia
## 5548 3.888226e+12         2023-05-10      Europe & Central Asia
## 5549 3.974443e+12         2023-05-10      Europe & Central Asia
## 5550 3.690849e+12         2023-05-10      Europe & Central Asia
## 5551 3.469853e+12         2023-05-10      Europe & Central Asia
## 5552 3.357586e+12         2023-05-10      Europe & Central Asia
## 5553 3.889093e+12         2023-05-10      Europe & Central Asia
## 5554 3.733805e+12         2023-05-10      Europe & Central Asia
## 5555 3.527143e+12         2023-05-10      Europe & Central Asia
## 5556 3.749315e+12         2023-05-10      Europe & Central Asia
## 5557 3.399668e+12         2023-05-10      Europe & Central Asia
## 5558 3.411261e+12         2023-05-10      Europe & Central Asia
## 5559 3.745264e+12         2023-05-10      Europe & Central Asia
## 5560 3.425578e+12         2023-05-10      Europe & Central Asia
## 5561 2.994704e+12         2023-05-10      Europe & Central Asia
## 5562 2.846864e+12         2023-05-10      Europe & Central Asia
## 5563 2.814354e+12         2023-05-10      Europe & Central Asia
## 5564 2.501640e+12         2023-05-10      Europe & Central Asia
## 5565 2.078485e+12         2023-05-10      Europe & Central Asia
## 5566 1.945791e+12         2023-05-10      Europe & Central Asia
## 5567 1.947982e+12         2023-05-10      Europe & Central Asia
## 5568 2.194945e+12         2023-05-10      Europe & Central Asia
## 5569 2.238991e+12         2023-05-10      Europe & Central Asia
## 5570 2.211990e+12         2023-05-10      Europe & Central Asia
## 5571 2.497245e+12         2023-05-10      Europe & Central Asia
## 5572 2.585792e+12         2023-05-10      Europe & Central Asia
## 5573 2.205074e+12         2023-05-10      Europe & Central Asia
## 5574 2.071324e+12         2023-05-10      Europe & Central Asia
## 5575 2.131572e+12         2023-05-10      Europe & Central Asia
## 5576 1.868945e+12         2023-05-10      Europe & Central Asia
## 5577 1.771671e+12         2023-05-10      Europe & Central Asia
## 5578 1.398967e+12         2023-05-10      Europe & Central Asia
## 5579 1.401233e+12         2023-05-10      Europe & Central Asia
## 5580 1.298176e+12         2023-05-10      Europe & Central Asia
## 5581 1.046259e+12         2023-05-10      Europe & Central Asia
## 5582 7.325349e+11         2023-05-10      Europe & Central Asia
## 5583 7.251111e+11         2023-05-10      Europe & Central Asia
## 5584 7.706843e+11         2023-05-10      Europe & Central Asia
## 5585 7.765764e+11         2023-05-10      Europe & Central Asia
## 5586 8.004721e+11         2023-05-10      Europe & Central Asia
## 5587 9.502909e+11         2023-05-10      Europe & Central Asia
## 5588 8.813452e+11         2023-05-10      Europe & Central Asia
## 5589 7.404700e+11         2023-05-10      Europe & Central Asia
## 5590 6.004982e+11         2023-05-10      Europe & Central Asia
## 5591 5.197545e+11         2023-05-10      Europe & Central Asia
## 5592 4.906365e+11         2023-05-10      Europe & Central Asia
## 5593 4.453035e+11         2023-05-10      Europe & Central Asia
## 5594 3.983740e+11         2023-05-10      Europe & Central Asia
## 5595 2.998015e+11         2023-05-10      Europe & Central Asia
## 5596 2.499851e+11         2023-05-10      Europe & Central Asia
## 5597 2.158384e+11         2023-05-10      Europe & Central Asia
## 5598           NA         2023-05-10      Europe & Central Asia
## 5599           NA         2023-05-10      Europe & Central Asia
## 5600           NA         2023-05-10      Europe & Central Asia
## 5601           NA         2023-05-10      Europe & Central Asia
## 5602           NA         2023-05-10      Europe & Central Asia
## 5603           NA         2023-05-10      Europe & Central Asia
## 5604           NA         2023-05-10      Europe & Central Asia
## 5605           NA         2023-05-10      Europe & Central Asia
## 5606           NA         2023-05-10      Europe & Central Asia
## 5607           NA         2023-05-10      Europe & Central Asia
## 5608           NA         2023-05-10         Sub-Saharan Africa
## 5609 7.759428e+10         2023-05-10         Sub-Saharan Africa
## 5610 7.004320e+10         2023-05-10         Sub-Saharan Africa
## 5611 6.833754e+10         2023-05-10         Sub-Saharan Africa
## 5612 6.729928e+10         2023-05-10         Sub-Saharan Africa
## 5613 6.040638e+10         2023-05-10         Sub-Saharan Africa
## 5614 5.616517e+10         2023-05-10         Sub-Saharan Africa
## 5615 4.940657e+10         2023-05-10         Sub-Saharan Africa
## 5616 5.478285e+10         2023-05-10         Sub-Saharan Africa
## 5617 6.282304e+10         2023-05-10         Sub-Saharan Africa
## 5618 4.127095e+10         2023-05-10         Sub-Saharan Africa
## 5619 3.933731e+10         2023-05-10         Sub-Saharan Africa
## 5620 3.219727e+10         2023-05-10         Sub-Saharan Africa
## 5621 2.604811e+10         2023-05-10         Sub-Saharan Africa
## 5622 2.867870e+10         2023-05-10         Sub-Saharan Africa
## 5623 2.482784e+10         2023-05-10         Sub-Saharan Africa
## 5624 2.044089e+10         2023-05-10         Sub-Saharan Africa
## 5625 1.074468e+10         2023-05-10         Sub-Saharan Africa
## 5626 8.881369e+09         2023-05-10         Sub-Saharan Africa
## 5627 7.632407e+09         2023-05-10         Sub-Saharan Africa
## 5628 6.166330e+09         2023-05-10         Sub-Saharan Africa
## 5629 5.314910e+09         2023-05-10         Sub-Saharan Africa
## 5630 4.983024e+09         2023-05-10         Sub-Saharan Africa
## 5631 7.719355e+09         2023-05-10         Sub-Saharan Africa
## 5632 7.480969e+09         2023-05-10         Sub-Saharan Africa
## 5633 6.891309e+09         2023-05-10         Sub-Saharan Africa
## 5634 6.934985e+09         2023-05-10         Sub-Saharan Africa
## 5635 6.465138e+09         2023-05-10         Sub-Saharan Africa
## 5636 5.444561e+09         2023-05-10         Sub-Saharan Africa
## 5637 5.966256e+09         2023-05-10         Sub-Saharan Africa
## 5638 6.413902e+09         2023-05-10         Sub-Saharan Africa
## 5639 6.596546e+09         2023-05-10         Sub-Saharan Africa
## 5640 5.889175e+09         2023-05-10         Sub-Saharan Africa
## 5641 5.251764e+09         2023-05-10         Sub-Saharan Africa
## 5642 5.197841e+09         2023-05-10         Sub-Saharan Africa
## 5643 5.074830e+09         2023-05-10         Sub-Saharan Africa
## 5644 5.727603e+09         2023-05-10         Sub-Saharan Africa
## 5645 4.504342e+09         2023-05-10         Sub-Saharan Africa
## 5646 4.412280e+09         2023-05-10         Sub-Saharan Africa
## 5647 4.057275e+09         2023-05-10         Sub-Saharan Africa
## 5648 4.035994e+09         2023-05-10         Sub-Saharan Africa
## 5649 4.222442e+09         2023-05-10         Sub-Saharan Africa
## 5650 4.445228e+09         2023-05-10         Sub-Saharan Africa
## 5651 4.020228e+09         2023-05-10         Sub-Saharan Africa
## 5652 3.662478e+09         2023-05-10         Sub-Saharan Africa
## 5653 3.189429e+09         2023-05-10         Sub-Saharan Africa
## 5654 2.765254e+09         2023-05-10         Sub-Saharan Africa
## 5655 2.810106e+09         2023-05-10         Sub-Saharan Africa
## 5656 2.894410e+09         2023-05-10         Sub-Saharan Africa
## 5657 2.465493e+09         2023-05-10         Sub-Saharan Africa
## 5658 2.112293e+09         2023-05-10         Sub-Saharan Africa
## 5659 2.417108e+09         2023-05-10         Sub-Saharan Africa
## 5660 2.215029e+09         2023-05-10         Sub-Saharan Africa
## 5661 1.962051e+09         2023-05-10         Sub-Saharan Africa
## 5662 1.666910e+09         2023-05-10         Sub-Saharan Africa
## 5663 1.746806e+09         2023-05-10         Sub-Saharan Africa
## 5664 2.126050e+09         2023-05-10         Sub-Saharan Africa
## 5665 2.053221e+09         2023-05-10         Sub-Saharan Africa
## 5666 1.731092e+09         2023-05-10         Sub-Saharan Africa
## 5667 1.540616e+09         2023-05-10         Sub-Saharan Africa
## 5668 1.382353e+09         2023-05-10         Sub-Saharan Africa
## 5669 1.302521e+09         2023-05-10         Sub-Saharan Africa
## 5670 1.217087e+09         2023-05-10         Sub-Saharan Africa
## 5671           NA         2023-05-10      Europe & Central Asia
## 5672           NA         2023-05-10      Europe & Central Asia
## 5673           NA         2023-05-10      Europe & Central Asia
## 5674           NA         2023-05-10      Europe & Central Asia
## 5675           NA         2023-05-10      Europe & Central Asia
## 5676           NA         2023-05-10      Europe & Central Asia
## 5677           NA         2023-05-10      Europe & Central Asia
## 5678           NA         2023-05-10      Europe & Central Asia
## 5679           NA         2023-05-10      Europe & Central Asia
## 5680           NA         2023-05-10      Europe & Central Asia
## 5681           NA         2023-05-10      Europe & Central Asia
## 5682           NA         2023-05-10      Europe & Central Asia
## 5683           NA         2023-05-10      Europe & Central Asia
## 5684           NA         2023-05-10      Europe & Central Asia
## 5685           NA         2023-05-10      Europe & Central Asia
## 5686           NA         2023-05-10      Europe & Central Asia
## 5687           NA         2023-05-10      Europe & Central Asia
## 5688           NA         2023-05-10      Europe & Central Asia
## 5689           NA         2023-05-10      Europe & Central Asia
## 5690           NA         2023-05-10      Europe & Central Asia
## 5691           NA         2023-05-10      Europe & Central Asia
## 5692           NA         2023-05-10      Europe & Central Asia
## 5693           NA         2023-05-10      Europe & Central Asia
## 5694           NA         2023-05-10      Europe & Central Asia
## 5695           NA         2023-05-10      Europe & Central Asia
## 5696           NA         2023-05-10      Europe & Central Asia
## 5697           NA         2023-05-10      Europe & Central Asia
## 5698           NA         2023-05-10      Europe & Central Asia
## 5699           NA         2023-05-10      Europe & Central Asia
## 5700           NA         2023-05-10      Europe & Central Asia
## 5701           NA         2023-05-10      Europe & Central Asia
## 5702           NA         2023-05-10      Europe & Central Asia
## 5703           NA         2023-05-10      Europe & Central Asia
## 5704           NA         2023-05-10      Europe & Central Asia
## 5705           NA         2023-05-10      Europe & Central Asia
## 5706           NA         2023-05-10      Europe & Central Asia
## 5707           NA         2023-05-10      Europe & Central Asia
## 5708           NA         2023-05-10      Europe & Central Asia
## 5709           NA         2023-05-10      Europe & Central Asia
## 5710           NA         2023-05-10      Europe & Central Asia
## 5711           NA         2023-05-10      Europe & Central Asia
## 5712           NA         2023-05-10      Europe & Central Asia
## 5713           NA         2023-05-10      Europe & Central Asia
## 5714           NA         2023-05-10      Europe & Central Asia
## 5715           NA         2023-05-10      Europe & Central Asia
## 5716           NA         2023-05-10      Europe & Central Asia
## 5717           NA         2023-05-10      Europe & Central Asia
## 5718           NA         2023-05-10      Europe & Central Asia
## 5719           NA         2023-05-10      Europe & Central Asia
## 5720           NA         2023-05-10      Europe & Central Asia
## 5721           NA         2023-05-10      Europe & Central Asia
## 5722           NA         2023-05-10      Europe & Central Asia
## 5723           NA         2023-05-10      Europe & Central Asia
## 5724           NA         2023-05-10      Europe & Central Asia
## 5725           NA         2023-05-10      Europe & Central Asia
## 5726           NA         2023-05-10      Europe & Central Asia
## 5727           NA         2023-05-10      Europe & Central Asia
## 5728           NA         2023-05-10      Europe & Central Asia
## 5729           NA         2023-05-10      Europe & Central Asia
## 5730           NA         2023-05-10      Europe & Central Asia
## 5731           NA         2023-05-10      Europe & Central Asia
## 5732           NA         2023-05-10      Europe & Central Asia
## 5733           NA         2023-05-10      Europe & Central Asia
## 5734           NA         2023-05-10      Europe & Central Asia
## 5735 2.148739e+11         2023-05-10      Europe & Central Asia
## 5736 1.889260e+11         2023-05-10      Europe & Central Asia
## 5737 2.052570e+11         2023-05-10      Europe & Central Asia
## 5738 2.120494e+11         2023-05-10      Europe & Central Asia
## 5739 1.998444e+11         2023-05-10      Europe & Central Asia
## 5740 1.931481e+11         2023-05-10      Europe & Central Asia
## 5741 1.956835e+11         2023-05-10      Europe & Central Asia
## 5742 2.354581e+11         2023-05-10      Europe & Central Asia
## 5743 2.389077e+11         2023-05-10      Europe & Central Asia
## 5744 2.420293e+11         2023-05-10      Europe & Central Asia
## 5745 2.829959e+11         2023-05-10      Europe & Central Asia
## 5746 2.971250e+11         2023-05-10      Europe & Central Asia
## 5747 3.313085e+11         2023-05-10      Europe & Central Asia
## 5748 3.559087e+11         2023-05-10      Europe & Central Asia
## 5749 3.189028e+11         2023-05-10      Europe & Central Asia
## 5750 2.735467e+11         2023-05-10      Europe & Central Asia
## 5751 2.478754e+11         2023-05-10      Europe & Central Asia
## 5752 2.409636e+11         2023-05-10      Europe & Central Asia
## 5753 2.023701e+11         2023-05-10      Europe & Central Asia
## 5754 1.545642e+11         2023-05-10      Europe & Central Asia
## 5755 1.363093e+11         2023-05-10      Europe & Central Asia
## 5756 1.304578e+11         2023-05-10      Europe & Central Asia
## 5757 1.425889e+11         2023-05-10      Europe & Central Asia
## 5758 1.444282e+11         2023-05-10      Europe & Central Asia
## 5759 1.431576e+11         2023-05-10      Europe & Central Asia
## 5760 1.458616e+11         2023-05-10      Europe & Central Asia
## 5761 1.368784e+11         2023-05-10      Europe & Central Asia
## 5762 1.166018e+11         2023-05-10      Europe & Central Asia
## 5763 1.088091e+11         2023-05-10      Europe & Central Asia
## 5764 1.162247e+11         2023-05-10      Europe & Central Asia
## 5765 1.051432e+11         2023-05-10      Europe & Central Asia
## 5766 9.789109e+10         2023-05-10      Europe & Central Asia
## 5767 7.916904e+10         2023-05-10      Europe & Central Asia
## 5768 7.626128e+10         2023-05-10      Europe & Central Asia
## 5769 6.565275e+10         2023-05-10      Europe & Central Asia
## 5770 5.637959e+10         2023-05-10      Europe & Central Asia
## 5771 4.782085e+10         2023-05-10      Europe & Central Asia
## 5772 4.802002e+10         2023-05-10      Europe & Central Asia
## 5773 4.942887e+10         2023-05-10      Europe & Central Asia
## 5774 5.461799e+10         2023-05-10      Europe & Central Asia
## 5775 5.234651e+10         2023-05-10      Europe & Central Asia
## 5776 5.682966e+10         2023-05-10      Europe & Central Asia
## 5777 5.448188e+10         2023-05-10      Europe & Central Asia
## 5778 4.427020e+10         2023-05-10      Europe & Central Asia
## 5779 3.617623e+10         2023-05-10      Europe & Central Asia
## 5780 3.115284e+10         2023-05-10      Europe & Central Asia
## 5781 2.852588e+10         2023-05-10      Europe & Central Asia
## 5782 2.535131e+10         2023-05-10      Europe & Central Asia
## 5783 2.234785e+10         2023-05-10      Europe & Central Asia
## 5784 1.688551e+10         2023-05-10      Europe & Central Asia
## 5785 1.459175e+10         2023-05-10      Europe & Central Asia
## 5786 1.313986e+10         2023-05-10      Europe & Central Asia
## 5787 1.161566e+10         2023-05-10      Europe & Central Asia
## 5788 1.009068e+10         2023-05-10      Europe & Central Asia
## 5789 9.275601e+09         2023-05-10      Europe & Central Asia
## 5790 8.591518e+09         2023-05-10      Europe & Central Asia
## 5791 7.689154e+09         2023-05-10      Europe & Central Asia
## 5792 6.669673e+09         2023-05-10      Europe & Central Asia
## 5793 5.895278e+09         2023-05-10      Europe & Central Asia
## 5794 5.213048e+09         2023-05-10      Europe & Central Asia
## 5795 4.961400e+09         2023-05-10      Europe & Central Asia
## 5796 4.335186e+09         2023-05-10      Europe & Central Asia
## 5797           NA         2023-05-10      Europe & Central Asia
## 5798           NA         2023-05-10      Europe & Central Asia
## 5799 3.076015e+09         2023-05-10      Europe & Central Asia
## 5800 2.994332e+09         2023-05-10      Europe & Central Asia
## 5801 3.055791e+09         2023-05-10      Europe & Central Asia
## 5802 2.851611e+09         2023-05-10      Europe & Central Asia
## 5803 2.707147e+09         2023-05-10      Europe & Central Asia
## 5804 2.499116e+09         2023-05-10      Europe & Central Asia
## 5805 2.842049e+09         2023-05-10      Europe & Central Asia
## 5806 2.684953e+09         2023-05-10      Europe & Central Asia
## 5807 2.609668e+09         2023-05-10      Europe & Central Asia
## 5808 2.684467e+09         2023-05-10      Europe & Central Asia
## 5809 2.503156e+09         2023-05-10      Europe & Central Asia
## 5810 2.529948e+09         2023-05-10      Europe & Central Asia
## 5811 2.499108e+09         2023-05-10      Europe & Central Asia
## 5812 2.249812e+09         2023-05-10      Europe & Central Asia
## 5813 2.013099e+09         2023-05-10      Europe & Central Asia
## 5814 1.849806e+09         2023-05-10      Europe & Central Asia
## 5815 1.822487e+09         2023-05-10      Europe & Central Asia
## 5816 1.558753e+09         2023-05-10      Europe & Central Asia
## 5817 1.169139e+09         2023-05-10      Europe & Central Asia
## 5818 1.086173e+09         2023-05-10      Europe & Central Asia
## 5819 1.068031e+09         2023-05-10      Europe & Central Asia
## 5820 1.131562e+09         2023-05-10      Europe & Central Asia
## 5821 1.149863e+09         2023-05-10      Europe & Central Asia
## 5822 1.072148e+09         2023-05-10      Europe & Central Asia
## 5823 1.197510e+09         2023-05-10      Europe & Central Asia
## 5824 1.208946e+09         2023-05-10      Europe & Central Asia
## 5825 1.005880e+09         2023-05-10      Europe & Central Asia
## 5826 9.272197e+08         2023-05-10      Europe & Central Asia
## 5827 1.037922e+09         2023-05-10      Europe & Central Asia
## 5828 1.016493e+09         2023-05-10      Europe & Central Asia
## 5829 1.018970e+09         2023-05-10      Europe & Central Asia
## 5830 9.297967e+08         2023-05-10      Europe & Central Asia
## 5831 8.986110e+08         2023-05-10      Europe & Central Asia
## 5832 7.873924e+08         2023-05-10      Europe & Central Asia
## 5833 6.030157e+08         2023-05-10      Europe & Central Asia
## 5834 4.128761e+08         2023-05-10      Europe & Central Asia
## 5835 3.793716e+08         2023-05-10      Europe & Central Asia
## 5836 4.161837e+08         2023-05-10      Europe & Central Asia
## 5837 4.024051e+08         2023-05-10      Europe & Central Asia
## 5838 4.357470e+08         2023-05-10      Europe & Central Asia
## 5839 4.760553e+08         2023-05-10      Europe & Central Asia
## 5840 4.206425e+08         2023-05-10      Europe & Central Asia
## 5841 3.559890e+08         2023-05-10      Europe & Central Asia
## 5842 2.822694e+08         2023-05-10      Europe & Central Asia
## 5843 2.407804e+08         2023-05-10      Europe & Central Asia
## 5844 2.111943e+08         2023-05-10      Europe & Central Asia
## 5845 1.699189e+08         2023-05-10      Europe & Central Asia
## 5846 1.401537e+08         2023-05-10      Europe & Central Asia
## 5847 1.061012e+08         2023-05-10      Europe & Central Asia
## 5848 8.857095e+07         2023-05-10      Europe & Central Asia
## 5849 6.952003e+07         2023-05-10      Europe & Central Asia
## 5850           NA         2023-05-10      Europe & Central Asia
## 5851           NA         2023-05-10      Europe & Central Asia
## 5852           NA         2023-05-10      Europe & Central Asia
## 5853           NA         2023-05-10      Europe & Central Asia
## 5854           NA         2023-05-10      Europe & Central Asia
## 5855           NA         2023-05-10      Europe & Central Asia
## 5856           NA         2023-05-10      Europe & Central Asia
## 5857           NA         2023-05-10      Europe & Central Asia
## 5858           NA         2023-05-10      Europe & Central Asia
## 5859           NA         2023-05-10      Europe & Central Asia
## 5860           NA         2023-05-10  Latin America & Caribbean
## 5861 1.122807e+09         2023-05-10  Latin America & Caribbean
## 5862 1.043415e+09         2023-05-10  Latin America & Caribbean
## 5863 1.213485e+09         2023-05-10  Latin America & Caribbean
## 5864 1.166511e+09         2023-05-10  Latin America & Caribbean
## 5865 1.125681e+09         2023-05-10  Latin America & Caribbean
## 5866 1.061641e+09         2023-05-10  Latin America & Caribbean
## 5867 9.970074e+08         2023-05-10  Latin America & Caribbean
## 5868 9.115000e+08         2023-05-10  Latin America & Caribbean
## 5869 8.426201e+08         2023-05-10  Latin America & Caribbean
## 5870 7.998823e+08         2023-05-10  Latin America & Caribbean
## 5871 7.786559e+08         2023-05-10  Latin America & Caribbean
## 5872 7.710133e+08         2023-05-10  Latin America & Caribbean
## 5873 7.712756e+08         2023-05-10  Latin America & Caribbean
## 5874 8.259760e+08         2023-05-10  Latin America & Caribbean
## 5875 7.586836e+08         2023-05-10  Latin America & Caribbean
## 5876 6.987007e+08         2023-05-10  Latin America & Caribbean
## 5877 6.955556e+08         2023-05-10  Latin America & Caribbean
## 5878 5.991186e+08         2023-05-10  Latin America & Caribbean
## 5879 5.910184e+08         2023-05-10  Latin America & Caribbean
## 5880 5.403369e+08         2023-05-10  Latin America & Caribbean
## 5881 5.204442e+08         2023-05-10  Latin America & Caribbean
## 5882 5.200444e+08         2023-05-10  Latin America & Caribbean
## 5883 4.820094e+08         2023-05-10  Latin America & Caribbean
## 5884 4.459036e+08         2023-05-10  Latin America & Caribbean
## 5885 3.921906e+08         2023-05-10  Latin America & Caribbean
## 5886 3.669114e+08         2023-05-10  Latin America & Caribbean
## 5887 3.421725e+08         2023-05-10  Latin America & Caribbean
## 5888 3.251118e+08         2023-05-10  Latin America & Caribbean
## 5889 3.098122e+08         2023-05-10  Latin America & Caribbean
## 5890 3.101604e+08         2023-05-10  Latin America & Caribbean
## 5891 3.007579e+08         2023-05-10  Latin America & Caribbean
## 5892 2.780988e+08         2023-05-10  Latin America & Caribbean
## 5893 2.673276e+08         2023-05-10  Latin America & Caribbean
## 5894 2.363575e+08         2023-05-10  Latin America & Caribbean
## 5895 2.150096e+08         2023-05-10  Latin America & Caribbean
## 5896 1.875895e+08         2023-05-10  Latin America & Caribbean
## 5897 1.677285e+08         2023-05-10  Latin America & Caribbean
## 5898 1.455333e+08         2023-05-10  Latin America & Caribbean
## 5899 1.318036e+08         2023-05-10  Latin America & Caribbean
## 5900 1.254356e+08         2023-05-10  Latin America & Caribbean
## 5901 1.156519e+08         2023-05-10  Latin America & Caribbean
## 5902 1.109005e+08         2023-05-10  Latin America & Caribbean
## 5903 1.022444e+08         2023-05-10  Latin America & Caribbean
## 5904 8.832239e+07         2023-05-10  Latin America & Caribbean
## 5905 7.149450e+07         2023-05-10  Latin America & Caribbean
## 5906           NA         2023-05-10  Latin America & Caribbean
## 5907           NA         2023-05-10  Latin America & Caribbean
## 5908           NA         2023-05-10  Latin America & Caribbean
## 5909           NA         2023-05-10  Latin America & Caribbean
## 5910           NA         2023-05-10  Latin America & Caribbean
## 5911           NA         2023-05-10  Latin America & Caribbean
## 5912           NA         2023-05-10  Latin America & Caribbean
## 5913           NA         2023-05-10  Latin America & Caribbean
## 5914           NA         2023-05-10  Latin America & Caribbean
## 5915           NA         2023-05-10  Latin America & Caribbean
## 5916           NA         2023-05-10  Latin America & Caribbean
## 5917           NA         2023-05-10  Latin America & Caribbean
## 5918           NA         2023-05-10  Latin America & Caribbean
## 5919           NA         2023-05-10  Latin America & Caribbean
## 5920           NA         2023-05-10  Latin America & Caribbean
## 5921           NA         2023-05-10  Latin America & Caribbean
## 5922           NA         2023-05-10  Latin America & Caribbean
## 5923           NA         2023-05-10        East Asia & Pacific
## 5924 6.123000e+09         2023-05-10        East Asia & Pacific
## 5925 5.886000e+09         2023-05-10        East Asia & Pacific
## 5926 6.366000e+09         2023-05-10        East Asia & Pacific
## 5927 6.056000e+09         2023-05-10        East Asia & Pacific
## 5928 6.013000e+09         2023-05-10        East Asia & Pacific
## 5929 5.901000e+09         2023-05-10        East Asia & Pacific
## 5930 5.799000e+09         2023-05-10        East Asia & Pacific
## 5931 5.610000e+09         2023-05-10        East Asia & Pacific
## 5932 5.399000e+09         2023-05-10        East Asia & Pacific
## 5933 5.265000e+09         2023-05-10        East Asia & Pacific
## 5934 4.984000e+09         2023-05-10        East Asia & Pacific
## 5935 4.949000e+09         2023-05-10        East Asia & Pacific
## 5936 4.828000e+09         2023-05-10        East Asia & Pacific
## 5937 4.658000e+09         2023-05-10        East Asia & Pacific
## 5938 4.397000e+09         2023-05-10        East Asia & Pacific
## 5939 4.238000e+09         2023-05-10        East Asia & Pacific
## 5940 4.213000e+09         2023-05-10        East Asia & Pacific
## 5941 3.869000e+09         2023-05-10        East Asia & Pacific
## 5942 3.569000e+09         2023-05-10        East Asia & Pacific
## 5943 3.394000e+09         2023-05-10        East Asia & Pacific
## 5944           NA         2023-05-10        East Asia & Pacific
## 5945           NA         2023-05-10        East Asia & Pacific
## 5946           NA         2023-05-10        East Asia & Pacific
## 5947           NA         2023-05-10        East Asia & Pacific
## 5948           NA         2023-05-10        East Asia & Pacific
## 5949           NA         2023-05-10        East Asia & Pacific
## 5950           NA         2023-05-10        East Asia & Pacific
## 5951           NA         2023-05-10        East Asia & Pacific
## 5952           NA         2023-05-10        East Asia & Pacific
## 5953           NA         2023-05-10        East Asia & Pacific
## 5954           NA         2023-05-10        East Asia & Pacific
## 5955           NA         2023-05-10        East Asia & Pacific
## 5956           NA         2023-05-10        East Asia & Pacific
## 5957           NA         2023-05-10        East Asia & Pacific
## 5958           NA         2023-05-10        East Asia & Pacific
## 5959           NA         2023-05-10        East Asia & Pacific
## 5960           NA         2023-05-10        East Asia & Pacific
## 5961           NA         2023-05-10        East Asia & Pacific
## 5962           NA         2023-05-10        East Asia & Pacific
## 5963           NA         2023-05-10        East Asia & Pacific
## 5964           NA         2023-05-10        East Asia & Pacific
## 5965           NA         2023-05-10        East Asia & Pacific
## 5966           NA         2023-05-10        East Asia & Pacific
## 5967           NA         2023-05-10        East Asia & Pacific
## 5968           NA         2023-05-10        East Asia & Pacific
## 5969           NA         2023-05-10        East Asia & Pacific
## 5970           NA         2023-05-10        East Asia & Pacific
## 5971           NA         2023-05-10        East Asia & Pacific
## 5972           NA         2023-05-10        East Asia & Pacific
## 5973           NA         2023-05-10        East Asia & Pacific
## 5974           NA         2023-05-10        East Asia & Pacific
## 5975           NA         2023-05-10        East Asia & Pacific
## 5976           NA         2023-05-10        East Asia & Pacific
## 5977           NA         2023-05-10        East Asia & Pacific
## 5978           NA         2023-05-10        East Asia & Pacific
## 5979           NA         2023-05-10        East Asia & Pacific
## 5980           NA         2023-05-10        East Asia & Pacific
## 5981           NA         2023-05-10        East Asia & Pacific
## 5982           NA         2023-05-10        East Asia & Pacific
## 5983           NA         2023-05-10        East Asia & Pacific
## 5984           NA         2023-05-10        East Asia & Pacific
## 5985           NA         2023-05-10        East Asia & Pacific
## 5986           NA         2023-05-10  Latin America & Caribbean
## 5987 8.598575e+10         2023-05-10  Latin America & Caribbean
## 5988 7.762549e+10         2023-05-10  Latin America & Caribbean
## 5989 7.717042e+10         2023-05-10  Latin America & Caribbean
## 5990 7.332802e+10         2023-05-10  Latin America & Caribbean
## 5991 7.165413e+10         2023-05-10  Latin America & Caribbean
## 5992 6.605373e+10         2023-05-10  Latin America & Caribbean
## 5993 6.218619e+10         2023-05-10  Latin America & Caribbean
## 5994 5.785240e+10         2023-05-10  Latin America & Caribbean
## 5995 5.299654e+10         2023-05-10  Latin America & Caribbean
## 5996 4.959396e+10         2023-05-10  Latin America & Caribbean
## 5997 4.687611e+10         2023-05-10  Latin America & Caribbean
## 5998 4.067643e+10         2023-05-10  Latin America & Caribbean
## 5999 3.712594e+10         2023-05-10  Latin America & Caribbean
## 6000 3.850386e+10         2023-05-10  Latin America & Caribbean
## 6001 3.356787e+10         2023-05-10  Latin America & Caribbean
## 6002 2.974437e+10         2023-05-10  Latin America & Caribbean
## 6003 2.678354e+10         2023-05-10  Latin America & Caribbean
## 6004 2.357729e+10         2023-05-10  Latin America & Caribbean
## 6005 2.157635e+10         2023-05-10  Latin America & Caribbean
## 6006 2.044421e+10         2023-05-10  Latin America & Caribbean
## 6007 1.840520e+10         2023-05-10  Latin America & Caribbean
## 6008 1.928883e+10         2023-05-10  Latin America & Caribbean
## 6009 1.831841e+10         2023-05-10  Latin America & Caribbean
## 6010 1.939549e+10         2023-05-10  Latin America & Caribbean
## 6011 1.779003e+10         2023-05-10  Latin America & Caribbean
## 6012 1.567484e+10         2023-05-10  Latin America & Caribbean
## 6013 1.465540e+10         2023-05-10  Latin America & Caribbean
## 6014 1.298324e+10         2023-05-10  Latin America & Caribbean
## 6015 1.139994e+10         2023-05-10  Latin America & Caribbean
## 6016 1.044084e+10         2023-05-10  Latin America & Caribbean
## 6017 9.406098e+09         2023-05-10  Latin America & Caribbean
## 6018 7.650125e+09         2023-05-10  Latin America & Caribbean
## 6019 8.410724e+09         2023-05-10  Latin America & Caribbean
## 6020 7.841603e+09         2023-05-10  Latin America & Caribbean
## 6021 7.084400e+09         2023-05-10  Latin America & Caribbean
## 6022 7.231964e+09         2023-05-10  Latin America & Caribbean
## 6023 9.721652e+09         2023-05-10  Latin America & Caribbean
## 6024 9.470000e+09         2023-05-10  Latin America & Caribbean
## 6025 9.050000e+09         2023-05-10  Latin America & Caribbean
## 6026 8.717000e+09         2023-05-10  Latin America & Caribbean
## 6027 8.607500e+09         2023-05-10  Latin America & Caribbean
## 6028 7.878700e+09         2023-05-10  Latin America & Caribbean
## 6029 6.902600e+09         2023-05-10  Latin America & Caribbean
## 6030 6.070600e+09         2023-05-10  Latin America & Caribbean
## 6031 5.480500e+09         2023-05-10  Latin America & Caribbean
## 6032 4.365300e+09         2023-05-10  Latin America & Caribbean
## 6033 3.645900e+09         2023-05-10  Latin America & Caribbean
## 6034 3.161500e+09         2023-05-10  Latin America & Caribbean
## 6035 2.569200e+09         2023-05-10  Latin America & Caribbean
## 6036 2.101300e+09         2023-05-10  Latin America & Caribbean
## 6037 1.984800e+09         2023-05-10  Latin America & Caribbean
## 6038 1.904000e+09         2023-05-10  Latin America & Caribbean
## 6039 1.715400e+09         2023-05-10  Latin America & Caribbean
## 6040 1.610500e+09         2023-05-10  Latin America & Caribbean
## 6041 1.453500e+09         2023-05-10  Latin America & Caribbean
## 6042 1.390700e+09         2023-05-10  Latin America & Caribbean
## 6043 1.331400e+09         2023-05-10  Latin America & Caribbean
## 6044 1.299100e+09         2023-05-10  Latin America & Caribbean
## 6045 1.262800e+09         2023-05-10  Latin America & Caribbean
## 6046 1.143600e+09         2023-05-10  Latin America & Caribbean
## 6047 1.076700e+09         2023-05-10  Latin America & Caribbean
## 6048 1.043600e+09         2023-05-10  Latin America & Caribbean
## 6049           NA         2023-05-10         Sub-Saharan Africa
## 6050 1.609182e+10         2023-05-10         Sub-Saharan Africa
## 6051 1.417784e+10         2023-05-10         Sub-Saharan Africa
## 6052 1.344286e+10         2023-05-10         Sub-Saharan Africa
## 6053 1.185703e+10         2023-05-10         Sub-Saharan Africa
## 6054 1.032467e+10         2023-05-10         Sub-Saharan Africa
## 6055 8.595956e+09         2023-05-10         Sub-Saharan Africa
## 6056 8.794202e+09         2023-05-10         Sub-Saharan Africa
## 6057 8.778474e+09         2023-05-10         Sub-Saharan Africa
## 6058 8.376614e+09         2023-05-10         Sub-Saharan Africa
## 6059 7.638045e+09         2023-05-10         Sub-Saharan Africa
## 6060 6.785137e+09         2023-05-10         Sub-Saharan Africa
## 6061 6.853468e+09         2023-05-10         Sub-Saharan Africa
## 6062 6.716905e+09         2023-05-10         Sub-Saharan Africa
## 6063 6.964179e+09         2023-05-10         Sub-Saharan Africa
## 6064 6.281918e+09         2023-05-10         Sub-Saharan Africa
## 6065 4.220019e+09         2023-05-10         Sub-Saharan Africa
## 6066 2.937072e+09         2023-05-10         Sub-Saharan Africa
## 6067 3.635458e+09         2023-05-10         Sub-Saharan Africa
## 6068 3.446442e+09         2023-05-10         Sub-Saharan Africa
## 6069 2.950199e+09         2023-05-10         Sub-Saharan Africa
## 6070 2.829436e+09         2023-05-10         Sub-Saharan Africa
## 6071 2.995361e+09         2023-05-10         Sub-Saharan Africa
## 6072 3.461283e+09         2023-05-10         Sub-Saharan Africa
## 6073 3.588375e+09         2023-05-10         Sub-Saharan Africa
## 6074 3.783700e+09         2023-05-10         Sub-Saharan Africa
## 6075 3.868968e+09         2023-05-10         Sub-Saharan Africa
## 6076 3.693711e+09         2023-05-10         Sub-Saharan Africa
## 6077 3.383093e+09         2023-05-10         Sub-Saharan Africa
## 6078 3.279097e+09         2023-05-10         Sub-Saharan Africa
## 6079 3.284621e+09         2023-05-10         Sub-Saharan Africa
## 6080 3.015058e+09         2023-05-10         Sub-Saharan Africa
## 6081 2.666751e+09         2023-05-10         Sub-Saharan Africa
## 6082 2.432029e+09         2023-05-10         Sub-Saharan Africa
## 6083 2.384296e+09         2023-05-10         Sub-Saharan Africa
## 6084 2.041538e+09         2023-05-10         Sub-Saharan Africa
## 6085 1.995187e+09         2023-05-10         Sub-Saharan Africa
## 6086           NA         2023-05-10         Sub-Saharan Africa
## 6087           NA         2023-05-10         Sub-Saharan Africa
## 6088           NA         2023-05-10         Sub-Saharan Africa
## 6089           NA         2023-05-10         Sub-Saharan Africa
## 6090           NA         2023-05-10         Sub-Saharan Africa
## 6091           NA         2023-05-10         Sub-Saharan Africa
## 6092           NA         2023-05-10         Sub-Saharan Africa
## 6093           NA         2023-05-10         Sub-Saharan Africa
## 6094           NA         2023-05-10         Sub-Saharan Africa
## 6095           NA         2023-05-10         Sub-Saharan Africa
## 6096           NA         2023-05-10         Sub-Saharan Africa
## 6097           NA         2023-05-10         Sub-Saharan Africa
## 6098           NA         2023-05-10         Sub-Saharan Africa
## 6099           NA         2023-05-10         Sub-Saharan Africa
## 6100           NA         2023-05-10         Sub-Saharan Africa
## 6101           NA         2023-05-10         Sub-Saharan Africa
## 6102           NA         2023-05-10         Sub-Saharan Africa
## 6103           NA         2023-05-10         Sub-Saharan Africa
## 6104           NA         2023-05-10         Sub-Saharan Africa
## 6105           NA         2023-05-10         Sub-Saharan Africa
## 6106           NA         2023-05-10         Sub-Saharan Africa
## 6107           NA         2023-05-10         Sub-Saharan Africa
## 6108           NA         2023-05-10         Sub-Saharan Africa
## 6109           NA         2023-05-10         Sub-Saharan Africa
## 6110           NA         2023-05-10         Sub-Saharan Africa
## 6111           NA         2023-05-10         Sub-Saharan Africa
## 6112           NA         2023-05-10         Sub-Saharan Africa
## 6113 1.638518e+09         2023-05-10         Sub-Saharan Africa
## 6114 1.431758e+09         2023-05-10         Sub-Saharan Africa
## 6115 1.439638e+09         2023-05-10         Sub-Saharan Africa
## 6116 1.504630e+09         2023-05-10         Sub-Saharan Africa
## 6117 1.350177e+09         2023-05-10         Sub-Saharan Africa
## 6118 1.179005e+09         2023-05-10         Sub-Saharan Africa
## 6119 1.048230e+09         2023-05-10         Sub-Saharan Africa
## 6120 1.054916e+09         2023-05-10         Sub-Saharan Africa
## 6121 1.046087e+09         2023-05-10         Sub-Saharan Africa
## 6122 9.892712e+08         2023-05-10         Sub-Saharan Africa
## 6123 1.099819e+09         2023-05-10         Sub-Saharan Africa
## 6124 8.498784e+08         2023-05-10         Sub-Saharan Africa
## 6125 8.301265e+08         2023-05-10         Sub-Saharan Africa
## 6126 8.681547e+08         2023-05-10         Sub-Saharan Africa
## 6127 6.969108e+08         2023-05-10         Sub-Saharan Africa
## 6128 5.923657e+08         2023-05-10         Sub-Saharan Africa
## 6129 5.870291e+08         2023-05-10         Sub-Saharan Africa
## 6130 5.320629e+08         2023-05-10         Sub-Saharan Africa
## 6131 4.774586e+08         2023-05-10         Sub-Saharan Africa
## 6132 4.178067e+08         2023-05-10         Sub-Saharan Africa
## 6133 3.926214e+08         2023-05-10         Sub-Saharan Africa
## 6134 3.710955e+08         2023-05-10         Sub-Saharan Africa
## 6135 2.244467e+08         2023-05-10         Sub-Saharan Africa
## 6136 2.064575e+08         2023-05-10         Sub-Saharan Africa
## 6137 2.685510e+08         2023-05-10         Sub-Saharan Africa
## 6138 2.704198e+08         2023-05-10         Sub-Saharan Africa
## 6139 2.539669e+08         2023-05-10         Sub-Saharan Africa
## 6140 2.356200e+08         2023-05-10         Sub-Saharan Africa
## 6141 2.368808e+08         2023-05-10         Sub-Saharan Africa
## 6142 2.263134e+08         2023-05-10         Sub-Saharan Africa
## 6143 2.571504e+08         2023-05-10         Sub-Saharan Africa
## 6144 2.439620e+08         2023-05-10         Sub-Saharan Africa
## 6145 2.131430e+08         2023-05-10         Sub-Saharan Africa
## 6146 1.644581e+08         2023-05-10         Sub-Saharan Africa
## 6147 1.738364e+08         2023-05-10         Sub-Saharan Africa
## 6148 1.302250e+08         2023-05-10         Sub-Saharan Africa
## 6149 1.438563e+08         2023-05-10         Sub-Saharan Africa
## 6150 1.384789e+08         2023-05-10         Sub-Saharan Africa
## 6151 1.635775e+08         2023-05-10         Sub-Saharan Africa
## 6152 1.655236e+08         2023-05-10         Sub-Saharan Africa
## 6153 1.547320e+08         2023-05-10         Sub-Saharan Africa
## 6154 1.106538e+08         2023-05-10         Sub-Saharan Africa
## 6155 1.185379e+08         2023-05-10         Sub-Saharan Africa
## 6156 1.226669e+08         2023-05-10         Sub-Saharan Africa
## 6157 1.149712e+08         2023-05-10         Sub-Saharan Africa
## 6158 1.123865e+08         2023-05-10         Sub-Saharan Africa
## 6159 1.089857e+08         2023-05-10         Sub-Saharan Africa
## 6160 9.877533e+07         2023-05-10         Sub-Saharan Africa
## 6161 8.937424e+07         2023-05-10         Sub-Saharan Africa
## 6162 8.770283e+07         2023-05-10         Sub-Saharan Africa
## 6163 7.854006e+07         2023-05-10         Sub-Saharan Africa
## 6164 7.873359e+07         2023-05-10         Sub-Saharan Africa
## 6165           NA         2023-05-10         Sub-Saharan Africa
## 6166           NA         2023-05-10         Sub-Saharan Africa
## 6167           NA         2023-05-10         Sub-Saharan Africa
## 6168           NA         2023-05-10         Sub-Saharan Africa
## 6169           NA         2023-05-10         Sub-Saharan Africa
## 6170           NA         2023-05-10         Sub-Saharan Africa
## 6171           NA         2023-05-10         Sub-Saharan Africa
## 6172           NA         2023-05-10         Sub-Saharan Africa
## 6173           NA         2023-05-10         Sub-Saharan Africa
## 6174           NA         2023-05-10         Sub-Saharan Africa
## 6175           NA         2023-05-10  Latin America & Caribbean
## 6176 8.044499e+09         2023-05-10  Latin America & Caribbean
## 6177 5.471257e+09         2023-05-10  Latin America & Caribbean
## 6178 5.173760e+09         2023-05-10  Latin America & Caribbean
## 6179 4.787636e+09         2023-05-10  Latin America & Caribbean
## 6180 4.748174e+09         2023-05-10  Latin America & Caribbean
## 6181 4.482697e+09         2023-05-10  Latin America & Caribbean
## 6182 4.279840e+09         2023-05-10  Latin America & Caribbean
## 6183 4.127659e+09         2023-05-10  Latin America & Caribbean
## 6184 4.167800e+09         2023-05-10  Latin America & Caribbean
## 6185 4.063089e+09         2023-05-10  Latin America & Caribbean
## 6186 3.691384e+09         2023-05-10  Latin America & Caribbean
## 6187 3.432913e+09         2023-05-10  Latin America & Caribbean
## 6188 3.165663e+09         2023-05-10  Latin America & Caribbean
## 6189 3.025188e+09         2023-05-10  Latin America & Caribbean
## 6190 2.730971e+09         2023-05-10  Latin America & Caribbean
## 6191 2.379818e+09         2023-05-10  Latin America & Caribbean
## 6192 8.248806e+08         2023-05-10  Latin America & Caribbean
## 6193 7.878144e+08         2023-05-10  Latin America & Caribbean
## 6194 7.430641e+08         2023-05-10  Latin America & Caribbean
## 6195 7.261314e+08         2023-05-10  Latin America & Caribbean
## 6196 7.121676e+08         2023-05-10  Latin America & Caribbean
## 6197 7.126679e+08         2023-05-10  Latin America & Caribbean
## 6198 6.947550e+08         2023-05-10  Latin America & Caribbean
## 6199 7.175307e+08         2023-05-10  Latin America & Caribbean
## 6200 7.491380e+08         2023-05-10  Latin America & Caribbean
## 6201 7.054060e+08         2023-05-10  Latin America & Caribbean
## 6202 6.216268e+08         2023-05-10  Latin America & Caribbean
## 6203 5.408749e+08         2023-05-10  Latin America & Caribbean
## 6204 4.541014e+08         2023-05-10  Latin America & Caribbean
## 6205 3.735731e+08         2023-05-10  Latin America & Caribbean
## 6206 3.485331e+08         2023-05-10  Latin America & Caribbean
## 6207 3.965823e+08         2023-05-10  Latin America & Caribbean
## 6208 3.797794e+08         2023-05-10  Latin America & Caribbean
## 6209 4.138000e+08         2023-05-10  Latin America & Caribbean
## 6210 3.545918e+08         2023-05-10  Latin America & Caribbean
## 6211 5.046511e+08         2023-05-10  Latin America & Caribbean
## 6212 4.534884e+08         2023-05-10  Latin America & Caribbean
## 6213 4.376316e+08         2023-05-10  Latin America & Caribbean
## 6214 4.893333e+08         2023-05-10  Latin America & Caribbean
## 6215 4.820000e+08         2023-05-10  Latin America & Caribbean
## 6216 5.703571e+08         2023-05-10  Latin America & Caribbean
## 6217 6.032000e+08         2023-05-10  Latin America & Caribbean
## 6218 5.304400e+08         2023-05-10  Latin America & Caribbean
## 6219 5.070800e+08         2023-05-10  Latin America & Caribbean
## 6220 4.498800e+08         2023-05-10  Latin America & Caribbean
## 6221 4.544400e+08         2023-05-10  Latin America & Caribbean
## 6222 4.947917e+08         2023-05-10  Latin America & Caribbean
## 6223 4.339545e+08         2023-05-10  Latin America & Caribbean
## 6224 3.070476e+08         2023-05-10  Latin America & Caribbean
## 6225 2.853810e+08         2023-05-10  Latin America & Caribbean
## 6226 2.820500e+08         2023-05-10  Latin America & Caribbean
## 6227 2.678000e+08         2023-05-10  Latin America & Caribbean
## 6228 2.493000e+08         2023-05-10  Latin America & Caribbean
## 6229 2.297500e+08         2023-05-10  Latin America & Caribbean
## 6230 2.501765e+08         2023-05-10  Latin America & Caribbean
## 6231 2.287059e+08         2023-05-10  Latin America & Caribbean
## 6232 2.132353e+08         2023-05-10  Latin America & Caribbean
## 6233 1.947734e+08         2023-05-10  Latin America & Caribbean
## 6234 1.757569e+08         2023-05-10  Latin America & Caribbean
## 6235 1.949484e+08         2023-05-10  Latin America & Caribbean
## 6236 1.858485e+08         2023-05-10  Latin America & Caribbean
## 6237 1.702152e+08         2023-05-10  Latin America & Caribbean
## 6238           NA         2023-05-10  Latin America & Caribbean
## 6239 2.094439e+10         2023-05-10  Latin America & Caribbean
## 6240 1.450822e+10         2023-05-10  Latin America & Caribbean
## 6241 1.478584e+10         2023-05-10  Latin America & Caribbean
## 6242 1.645503e+10         2023-05-10  Latin America & Caribbean
## 6243 1.503556e+10         2023-05-10  Latin America & Caribbean
## 6244 1.398769e+10         2023-05-10  Latin America & Caribbean
## 6245 1.483315e+10         2023-05-10  Latin America & Caribbean
## 6246 1.513926e+10         2023-05-10  Latin America & Caribbean
## 6247 1.490247e+10         2023-05-10  Latin America & Caribbean
## 6248 1.370893e+10         2023-05-10  Latin America & Caribbean
## 6249 1.300875e+10         2023-05-10  Latin America & Caribbean
## 6250 1.185932e+10         2023-05-10  Latin America & Caribbean
## 6251 1.159701e+10         2023-05-10  Latin America & Caribbean
## 6252 1.048523e+10         2023-05-10  Latin America & Caribbean
## 6253 9.522763e+09         2023-05-10  Latin America & Caribbean
## 6254 7.518108e+09         2023-05-10  Latin America & Caribbean
## 6255 7.184065e+09         2023-05-10  Latin America & Caribbean
## 6256 6.036960e+09         2023-05-10  Latin America & Caribbean
## 6257 4.826828e+09         2023-05-10  Latin America & Caribbean
## 6258 6.058134e+09         2023-05-10  Latin America & Caribbean
## 6259 6.331962e+09         2023-05-10  Latin America & Caribbean
## 6260 6.813578e+09         2023-05-10  Latin America & Caribbean
## 6261 4.153736e+09         2023-05-10  Latin America & Caribbean
## 6262 3.723909e+09         2023-05-10  Latin America & Caribbean
## 6263 3.338939e+09         2023-05-10  Latin America & Caribbean
## 6264 2.907515e+09         2023-05-10  Latin America & Caribbean
## 6265 2.813313e+09         2023-05-10  Latin America & Caribbean
## 6266 2.167564e+09         2023-05-10  Latin America & Caribbean
## 6267 1.878249e+09         2023-05-10  Latin America & Caribbean
## 6268 2.257122e+09         2023-05-10  Latin America & Caribbean
## 6269 3.473541e+09         2023-05-10  Latin America & Caribbean
## 6270 3.096290e+09         2023-05-10  Latin America & Caribbean
## 6271 2.736244e+09         2023-05-10  Latin America & Caribbean
## 6272 2.613927e+09         2023-05-10  Latin America & Caribbean
## 6273 2.047200e+09         2023-05-10  Latin America & Caribbean
## 6274 2.318000e+09         2023-05-10  Latin America & Caribbean
## 6275 2.009400e+09         2023-05-10  Latin America & Caribbean
## 6276 1.816200e+09         2023-05-10  Latin America & Caribbean
## 6277 1.623600e+09         2023-05-10  Latin America & Caribbean
## 6278 1.474200e+09         2023-05-10  Latin America & Caribbean
## 6279 1.479400e+09         2023-05-10  Latin America & Caribbean
## 6280 1.383800e+09         2023-05-10  Latin America & Caribbean
## 6281 1.080600e+09         2023-05-10  Latin America & Caribbean
## 6282 9.742000e+08         2023-05-10  Latin America & Caribbean
## 6283 9.470000e+08         2023-05-10  Latin America & Caribbean
## 6284 8.790000e+08         2023-05-10  Latin America & Caribbean
## 6285 6.814000e+08         2023-05-10  Latin America & Caribbean
## 6286 5.654000e+08         2023-05-10  Latin America & Caribbean
## 6287 4.668000e+08         2023-05-10  Latin America & Caribbean
## 6288 3.720000e+08         2023-05-10  Latin America & Caribbean
## 6289 3.628000e+08         2023-05-10  Latin America & Caribbean
## 6290 3.312000e+08         2023-05-10  Latin America & Caribbean
## 6291 3.918204e+08         2023-05-10  Latin America & Caribbean
## 6292 3.679688e+08         2023-05-10  Latin America & Caribbean
## 6293 3.691242e+08         2023-05-10  Latin America & Caribbean
## 6294 3.689486e+08         2023-05-10  Latin America & Caribbean
## 6295 3.532518e+08         2023-05-10  Latin America & Caribbean
## 6296 3.252812e+08         2023-05-10  Latin America & Caribbean
## 6297 2.948834e+08         2023-05-10  Latin America & Caribbean
## 6298 2.818968e+08         2023-05-10  Latin America & Caribbean
## 6299 2.710660e+08         2023-05-10  Latin America & Caribbean
## 6300 2.731872e+08         2023-05-10  Latin America & Caribbean
## 6301 7.897185e+10         2023-05-10                 Aggregates
## 6302 1.315544e+11         2023-05-10                 Aggregates
## 6303 1.746330e+11         2023-05-10                 Aggregates
## 6304 7.283127e+11         2023-05-10                 Aggregates
## 6305 1.393324e+11         2023-05-10                 Aggregates
## 6306 1.364826e+11         2023-05-10                 Aggregates
## 6307 1.294710e+11         2023-05-10                 Aggregates
## 6308 1.176341e+11         2023-05-10                 Aggregates
## 6309 1.023878e+11         2023-05-10                 Aggregates
## 6310 6.717259e+10         2023-05-10                 Aggregates
## 6311 7.706731e+11         2023-05-10                 Aggregates
## 6312 8.084194e+11         2023-05-10                 Aggregates
## 6313 1.610428e+11         2023-05-10                 Aggregates
## 6314 6.042707e+11         2023-05-10                 Aggregates
## 6315 6.930827e+11         2023-05-10                 Aggregates
## 6316 7.148584e+11         2023-05-10                 Aggregates
## 6317 6.726394e+11         2023-05-10                 Aggregates
## 6318 8.032365e+11         2023-05-10                 Aggregates
## 6319 7.975718e+11         2023-05-10                 Aggregates
## 6320 2.767497e+11         2023-05-10                 Aggregates
## 6321 2.408146e+11         2023-05-10                 Aggregates
## 6322 9.122715e+10         2023-05-10                 Aggregates
## 6323 2.089426e+11         2023-05-10                 Aggregates
## 6324 1.843481e+11         2023-05-10                 Aggregates
## 6325 1.712463e+11         2023-05-10                 Aggregates
## 6326 1.761539e+11         2023-05-10                 Aggregates
## 6327 1.623764e+11         2023-05-10                 Aggregates
## 6328 5.830816e+11         2023-05-10                 Aggregates
## 6329           NA         2023-05-10                 Aggregates
## 6330 8.919015e+11         2023-05-10                 Aggregates
## 6331 3.912173e+11         2023-05-10                 Aggregates
## 6332 3.263080e+11         2023-05-10                 Aggregates
## 6333 1.365102e+11         2023-05-10                 Aggregates
## 6334 1.019786e+11         2023-05-10                 Aggregates
## 6335 2.652709e+10         2023-05-10                 Aggregates
## 6336 2.435999e+10         2023-05-10                 Aggregates
## 6337 2.085741e+10         2023-05-10                 Aggregates
## 6338 2.334738e+10         2023-05-10                 Aggregates
## 6339 6.326648e+10         2023-05-10                 Aggregates
## 6340 5.537780e+10         2023-05-10                 Aggregates
## 6341 4.542843e+10         2023-05-10                 Aggregates
## 6342 1.029355e+11         2023-05-10                 Aggregates
## 6343 1.022343e+11         2023-05-10                 Aggregates
## 6344 1.066937e+11         2023-05-10                 Aggregates
## 6345 1.073928e+11         2023-05-10                 Aggregates
## 6346 1.103620e+11         2023-05-10                 Aggregates
## 6347 2.598490e+10         2023-05-10                 Aggregates
## 6348 1.935111e+10         2023-05-10                 Aggregates
## 6349 1.778051e+10         2023-05-10                 Aggregates
## 6350 1.733156e+10         2023-05-10                 Aggregates
## 6351 3.755925e+10         2023-05-10                 Aggregates
## 6352 5.196949e+11         2023-05-10                 Aggregates
## 6353 4.703178e+11         2023-05-10                 Aggregates
## 6354 4.654798e+11         2023-05-10                 Aggregates
## 6355 2.749745e+10         2023-05-10                 Aggregates
## 6356 1.616102e+11         2023-05-10                 Aggregates
## 6357 1.527341e+11         2023-05-10                 Aggregates
## 6358 1.466675e+11         2023-05-10                 Aggregates
## 6359 1.352988e+11         2023-05-10                 Aggregates
## 6360 1.159105e+11         2023-05-10                 Aggregates
## 6361 3.055494e+10         2023-05-10                 Aggregates
## 6362 3.448505e+10         2023-05-10                 Aggregates
## 6363 3.202661e+10         2023-05-10                 Aggregates
## 6364 5.153813e+13         2023-05-10                       <NA>
## 6365 4.927973e+13         2023-05-10                       <NA>
## 6366 4.824643e+13         2023-05-10                       <NA>
## 6367 5.111059e+13         2023-05-10                       <NA>
## 6368 5.003467e+13         2023-05-10                       <NA>
## 6369 4.942940e+13         2023-05-10                       <NA>
## 6370 4.939815e+13         2023-05-10                       <NA>
## 6371 4.575389e+13         2023-05-10                       <NA>
## 6372 4.366413e+13         2023-05-10                       <NA>
## 6373 4.661926e+13         2023-05-10                       <NA>
## 6374 4.375200e+13         2023-05-10                       <NA>
## 6375 3.995935e+13         2023-05-10                       <NA>
## 6376 3.782945e+13         2023-05-10                       <NA>
## 6377 3.576958e+13         2023-05-10                       <NA>
## 6378 3.212331e+13         2023-05-10                       <NA>
## 6379 2.865965e+13         2023-05-10                       <NA>
## 6380 2.748771e+13         2023-05-10                       <NA>
## 6381 2.776235e+13         2023-05-10                       <NA>
## 6382 2.719324e+13         2023-05-10                       <NA>
## 6383 2.588709e+13         2023-05-10                       <NA>
## 6384 2.579044e+13         2023-05-10                       <NA>
## 6385 2.623714e+13         2023-05-10                       <NA>
## 6386 6.939058e+12         2023-05-10                       <NA>
## 6387 5.790906e+12         2023-05-10                       <NA>
## 6388 5.113634e+12         2023-05-10                       <NA>
## 6389 4.692779e+12         2023-05-10                       <NA>
## 6390 4.205658e+12         2023-05-10                       <NA>
## 6391 3.730069e+12         2023-05-10                       <NA>
## 6392 3.082808e+12         2023-05-10                       <NA>
## 6393 2.657638e+12         2023-05-10                       <NA>
## 6394 2.393887e+12         2023-05-10                       <NA>
## 6395 2.191150e+12         2023-05-10                       <NA>
## 6396 1.991581e+12         2023-05-10                       <NA>
## 6397 1.836531e+12         2023-05-10                       <NA>
## 6398 1.711720e+12         2023-05-10                       <NA>
## 6399 1.560360e+12         2023-05-10                       <NA>
## 6400 1.436852e+12         2023-05-10                       <NA>
## 6401 1.316378e+12         2023-05-10                       <NA>
## 6402 1.221985e+12         2023-05-10                       <NA>
## 6403 1.132019e+12         2023-05-10                       <NA>
## 6404 5.527293e+13         2023-05-10                       <NA>
## 6405 5.479916e+13         2023-05-10                       <NA>
## 6406 2.159232e+13         2023-05-10                       <NA>
## 6407 2.007417e+13         2023-05-10                       <NA>
## 6408 1.898270e+13         2023-05-10                       <NA>
## 6409 1.689760e+13         2023-05-10                       <NA>
## 6410 1.614890e+13         2023-05-10                       <NA>
## 6411           NA         2023-05-10                       <NA>
## 6412 5.982967e+13         2023-05-10                       <NA>
## 6413 5.387455e+13         2023-05-10                       <NA>
## 6414 8.023022e+12         2023-05-10                       <NA>
## 6415 1.019230e+13         2023-05-10                       <NA>
## 6416 2.342283e+13         2023-05-10                       <NA>
## 6417 9.706804e+12         2023-05-10                       <NA>
## 6418 1.434343e+13         2023-05-10                       <NA>
## 6419 1.237561e+13         2023-05-10                       <NA>
## 6420 1.069412e+12         2023-05-10                       <NA>
## 6421 2.175897e+13         2023-05-10                       <NA>
## 6422 2.601329e+13         2023-05-10                       <NA>
## 6423 9.012587e+12         2023-05-10                       <NA>
## 6424 9.097109e+12         2023-05-10                       <NA>
## 6425 8.961142e+12         2023-05-10                       <NA>
## 6426 9.305580e+12         2023-05-10                       <NA>
## 6427           NA         2023-05-10  Latin America & Caribbean
## 6428 2.848867e+10         2023-05-10  Latin America & Caribbean
## 6429 2.382784e+10         2023-05-10  Latin America & Caribbean
## 6430 2.508998e+10         2023-05-10  Latin America & Caribbean
## 6431 2.406778e+10         2023-05-10  Latin America & Caribbean
## 6432 2.313623e+10         2023-05-10  Latin America & Caribbean
## 6433 2.171762e+10         2023-05-10  Latin America & Caribbean
## 6434 2.097977e+10         2023-05-10  Latin America & Caribbean
## 6435 1.975649e+10         2023-05-10  Latin America & Caribbean
## 6436 1.849971e+10         2023-05-10  Latin America & Caribbean
## 6437 1.852860e+10         2023-05-10  Latin America & Caribbean
## 6438 1.771032e+10         2023-05-10  Latin America & Caribbean
## 6439 1.583934e+10         2023-05-10  Latin America & Caribbean
## 6440 1.458750e+10         2023-05-10  Latin America & Caribbean
## 6441 1.388170e+10         2023-05-10  Latin America & Caribbean
## 6442 1.236126e+10         2023-05-10  Latin America & Caribbean
## 6443 1.091748e+10         2023-05-10  Latin America & Caribbean
## 6444 9.757034e+09         2023-05-10  Latin America & Caribbean
## 6445 8.869311e+09         2023-05-10  Latin America & Caribbean
## 6446 8.230388e+09         2023-05-10  Latin America & Caribbean
## 6447 7.858235e+09         2023-05-10  Latin America & Caribbean
## 6448 7.651175e+09         2023-05-10  Latin America & Caribbean
## 6449 7.186650e+09         2023-05-10  Latin America & Caribbean
## 6450 6.414521e+09         2023-05-10  Latin America & Caribbean
## 6451 6.366340e+09         2023-05-10  Latin America & Caribbean
## 6452 5.737100e+09         2023-05-10  Latin America & Caribbean
## 6453 5.215029e+09         2023-05-10  Latin America & Caribbean
## 6454 5.347445e+09         2023-05-10  Latin America & Caribbean
## 6455 4.642281e+09         2023-05-10  Latin America & Caribbean
## 6456 4.926729e+09         2023-05-10  Latin America & Caribbean
## 6457 4.943700e+09         2023-05-10  Latin America & Caribbean
## 6458 4.648668e+09         2023-05-10  Latin America & Caribbean
## 6459 4.923010e+09         2023-05-10  Latin America & Caribbean
## 6460 5.432345e+09         2023-05-10  Latin America & Caribbean
## 6461 5.902717e+09         2023-05-10  Latin America & Caribbean
## 6462 6.190521e+09         2023-05-10  Latin America & Caribbean
## 6463 5.677829e+09         2023-05-10  Latin America & Caribbean
## 6464 5.278121e+09         2023-05-10  Latin America & Caribbean
## 6465 4.915312e+09         2023-05-10  Latin America & Caribbean
## 6466 4.476697e+09         2023-05-10  Latin America & Caribbean
## 6467 4.266504e+09         2023-05-10  Latin America & Caribbean
## 6468 4.043895e+09         2023-05-10  Latin America & Caribbean
## 6469 3.968160e+09         2023-05-10  Latin America & Caribbean
## 6470 3.544282e+09         2023-05-10  Latin America & Caribbean
## 6471 3.097242e+09         2023-05-10  Latin America & Caribbean
## 6472 1.669500e+09         2023-05-10  Latin America & Caribbean
## 6473 1.348000e+09         2023-05-10  Latin America & Caribbean
## 6474 1.124000e+09         2023-05-10  Latin America & Caribbean
## 6475 1.034500e+09         2023-05-10  Latin America & Caribbean
## 6476 9.125000e+08         2023-05-10  Latin America & Caribbean
## 6477 8.030000e+08         2023-05-10  Latin America & Caribbean
## 6478 7.310000e+08         2023-05-10  Latin America & Caribbean
## 6479 7.230000e+08         2023-05-10  Latin America & Caribbean
## 6480 6.680000e+08         2023-05-10  Latin America & Caribbean
## 6481 6.468000e+08         2023-05-10  Latin America & Caribbean
## 6482 5.981000e+08         2023-05-10  Latin America & Caribbean
## 6483 5.499500e+08         2023-05-10  Latin America & Caribbean
## 6484 5.086500e+08         2023-05-10  Latin America & Caribbean
## 6485 4.570000e+08         2023-05-10  Latin America & Caribbean
## 6486 4.102000e+08         2023-05-10  Latin America & Caribbean
## 6487 3.877500e+08         2023-05-10  Latin America & Caribbean
## 6488 3.562000e+08         2023-05-10  Latin America & Caribbean
## 6489 3.356500e+08         2023-05-10  Latin America & Caribbean
## 6490           NA         2023-05-10        East Asia & Pacific
## 6491 3.691764e+11         2023-05-10        East Asia & Pacific
## 6492 3.449322e+11         2023-05-10        East Asia & Pacific
## 6493 3.630525e+11         2023-05-10        East Asia & Pacific
## 6494 3.617311e+11         2023-05-10        East Asia & Pacific
## 6495 3.412733e+11         2023-05-10        East Asia & Pacific
## 6496 3.208583e+11         2023-05-10        East Asia & Pacific
## 6497 3.093836e+11         2023-05-10        East Asia & Pacific
## 6498 2.914594e+11         2023-05-10        East Asia & Pacific
## 6499 2.756969e+11         2023-05-10        East Asia & Pacific
## 6500 2.626294e+11         2023-05-10        East Asia & Pacific
## 6501 2.485136e+11         2023-05-10        East Asia & Pacific
## 6502 2.286377e+11         2023-05-10        East Asia & Pacific
## 6503 2.140464e+11         2023-05-10        East Asia & Pacific
## 6504 2.192797e+11         2023-05-10        East Asia & Pacific
## 6505 2.115974e+11         2023-05-10        East Asia & Pacific
## 6506 1.935363e+11         2023-05-10        East Asia & Pacific
## 6507 1.815701e+11         2023-05-10        East Asia & Pacific
## 6508 1.690998e+11         2023-05-10        East Asia & Pacific
## 6509 1.613845e+11         2023-05-10        East Asia & Pacific
## 6510 1.663492e+11         2023-05-10        East Asia & Pacific
## 6511 1.694032e+11         2023-05-10        East Asia & Pacific
## 6512 1.716682e+11         2023-05-10        East Asia & Pacific
## 6513 1.657681e+11         2023-05-10        East Asia & Pacific
## 6514 1.688862e+11         2023-05-10        East Asia & Pacific
## 6515 1.773528e+11         2023-05-10        East Asia & Pacific
## 6516 1.597172e+11         2023-05-10        East Asia & Pacific
## 6517 1.446529e+11         2023-05-10        East Asia & Pacific
## 6518 1.358121e+11         2023-05-10        East Asia & Pacific
## 6519 1.203539e+11         2023-05-10        East Asia & Pacific
## 6520 1.042723e+11         2023-05-10        East Asia & Pacific
## 6521 8.895962e+10         2023-05-10        East Asia & Pacific
## 6522 7.692829e+10         2023-05-10        East Asia & Pacific
## 6523 6.879037e+10         2023-05-10        East Asia & Pacific
## 6524 5.970740e+10         2023-05-10        East Asia & Pacific
## 6525 5.062257e+10         2023-05-10        East Asia & Pacific
## 6526 4.107557e+10         2023-05-10        East Asia & Pacific
## 6527 3.569954e+10         2023-05-10        East Asia & Pacific
## 6528 3.351138e+10         2023-05-10        East Asia & Pacific
## 6529 2.990709e+10         2023-05-10        East Asia & Pacific
## 6530 3.229131e+10         2023-05-10        East Asia & Pacific
## 6531 3.105541e+10         2023-05-10        East Asia & Pacific
## 6532 2.886176e+10         2023-05-10        East Asia & Pacific
## 6533 2.252604e+10         2023-05-10        East Asia & Pacific
## 6534 1.831501e+10         2023-05-10        East Asia & Pacific
## 6535 1.571943e+10         2023-05-10        East Asia & Pacific
## 6536 1.287637e+10         2023-05-10        East Asia & Pacific
## 6537 1.004802e+10         2023-05-10        East Asia & Pacific
## 6538 9.388664e+09         2023-05-10        East Asia & Pacific
## 6539 8.030118e+09         2023-05-10        East Asia & Pacific
## 6540 5.710107e+09         2023-05-10        East Asia & Pacific
## 6541 4.476002e+09         2023-05-10        East Asia & Pacific
## 6542 3.800767e+09         2023-05-10        East Asia & Pacific
## 6543 3.189740e+09         2023-05-10        East Asia & Pacific
## 6544 2.716964e+09         2023-05-10        East Asia & Pacific
## 6545 2.692475e+09         2023-05-10        East Asia & Pacific
## 6546 2.489845e+09         2023-05-10        East Asia & Pacific
## 6547 2.435079e+09         2023-05-10        East Asia & Pacific
## 6548 2.206466e+09         2023-05-10        East Asia & Pacific
## 6549 1.935298e+09         2023-05-10        East Asia & Pacific
## 6550 1.612346e+09         2023-05-10        East Asia & Pacific
## 6551 1.383682e+09         2023-05-10        East Asia & Pacific
## 6552 1.320797e+09         2023-05-10        East Asia & Pacific
## 6553           NA         2023-05-10      Europe & Central Asia
## 6554 1.818480e+11         2023-05-10      Europe & Central Asia
## 6555 1.571820e+11         2023-05-10      Europe & Central Asia
## 6556 1.639886e+11         2023-05-10      Europe & Central Asia
## 6557 1.605646e+11         2023-05-10      Europe & Central Asia
## 6558 1.431122e+11         2023-05-10      Europe & Central Asia
## 6559 1.286098e+11         2023-05-10      Europe & Central Asia
## 6560 1.251742e+11         2023-05-10      Europe & Central Asia
## 6561 1.410338e+11         2023-05-10      Europe & Central Asia
## 6562 1.356843e+11         2023-05-10      Europe & Central Asia
## 6563 1.288143e+11         2023-05-10      Europe & Central Asia
## 6564 1.419423e+11         2023-05-10      Europe & Central Asia
## 6565 1.321753e+11         2023-05-10      Europe & Central Asia
## 6566 1.310693e+11         2023-05-10      Europe & Central Asia
## 6567 1.583256e+11         2023-05-10      Europe & Central Asia
## 6568 1.401867e+11         2023-05-10      Europe & Central Asia
## 6569 1.157156e+11         2023-05-10      Europe & Central Asia
## 6570 1.132112e+11         2023-05-10      Europe & Central Asia
## 6571 1.041208e+11         2023-05-10      Europe & Central Asia
## 6572 8.528506e+10         2023-05-10      Europe & Central Asia
## 6573 6.760892e+10         2023-05-10      Europe & Central Asia
## 6574 5.374999e+10         2023-05-10      Europe & Central Asia
## 6575 4.721841e+10         2023-05-10      Europe & Central Asia
## 6576 4.907338e+10         2023-05-10      Europe & Central Asia
## 6577 4.870679e+10         2023-05-10      Europe & Central Asia
## 6578 4.729695e+10         2023-05-10      Europe & Central Asia
## 6579 4.665876e+10         2023-05-10      Europe & Central Asia
## 6580 4.642568e+10         2023-05-10      Europe & Central Asia
## 6581 4.316668e+10         2023-05-10      Europe & Central Asia
## 6582 4.012492e+10         2023-05-10      Europe & Central Asia
## 6583 3.873059e+10         2023-05-10      Europe & Central Asia
## 6584 3.475357e+10         2023-05-10      Europe & Central Asia
## 6585           NA         2023-05-10      Europe & Central Asia
## 6586           NA         2023-05-10      Europe & Central Asia
## 6587           NA         2023-05-10      Europe & Central Asia
## 6588           NA         2023-05-10      Europe & Central Asia
## 6589           NA         2023-05-10      Europe & Central Asia
## 6590           NA         2023-05-10      Europe & Central Asia
## 6591           NA         2023-05-10      Europe & Central Asia
## 6592           NA         2023-05-10      Europe & Central Asia
## 6593           NA         2023-05-10      Europe & Central Asia
## 6594           NA         2023-05-10      Europe & Central Asia
## 6595           NA         2023-05-10      Europe & Central Asia
## 6596           NA         2023-05-10      Europe & Central Asia
## 6597           NA         2023-05-10      Europe & Central Asia
## 6598           NA         2023-05-10      Europe & Central Asia
## 6599           NA         2023-05-10      Europe & Central Asia
## 6600           NA         2023-05-10      Europe & Central Asia
## 6601           NA         2023-05-10      Europe & Central Asia
## 6602           NA         2023-05-10      Europe & Central Asia
## 6603           NA         2023-05-10      Europe & Central Asia
## 6604           NA         2023-05-10      Europe & Central Asia
## 6605           NA         2023-05-10      Europe & Central Asia
## 6606           NA         2023-05-10      Europe & Central Asia
## 6607           NA         2023-05-10      Europe & Central Asia
## 6608           NA         2023-05-10      Europe & Central Asia
## 6609           NA         2023-05-10      Europe & Central Asia
## 6610           NA         2023-05-10      Europe & Central Asia
## 6611           NA         2023-05-10      Europe & Central Asia
## 6612           NA         2023-05-10      Europe & Central Asia
## 6613           NA         2023-05-10      Europe & Central Asia
## 6614           NA         2023-05-10      Europe & Central Asia
## 6615           NA         2023-05-10      Europe & Central Asia
## 6616 5.348582e+12         2023-05-10                 Aggregates
## 6617 5.671264e+12         2023-05-10                 Aggregates
## 6618 2.510549e+12         2023-05-10                 Aggregates
## 6619 4.897209e+12         2023-05-10                 Aggregates
## 6620           NA         2023-05-10                 Aggregates
## 6621 5.505121e+12         2023-05-10                 Aggregates
## 6622 3.901572e+12         2023-05-10                 Aggregates
## 6623 2.467726e+12         2023-05-10                 Aggregates
## 6624 5.361137e+12         2023-05-10                 Aggregates
## 6625 4.312606e+12         2023-05-10                 Aggregates
## 6626 3.113895e+11         2023-05-10                 Aggregates
## 6627 3.631314e+12         2023-05-10                 Aggregates
## 6628 3.542267e+13         2023-05-10                 Aggregates
## 6629 5.834940e+12         2023-05-10                 Aggregates
## 6630 2.506732e+12         2023-05-10                 Aggregates
## 6631 3.255399e+11         2023-05-10                 Aggregates
## 6632 1.647989e+13         2023-05-10                 Aggregates
## 6633 9.204244e+11         2023-05-10                 Aggregates
## 6634 3.451859e+12         2023-05-10                 Aggregates
## 6635 2.998364e+13         2023-05-10                 Aggregates
## 6636 3.116165e+13         2023-05-10                 Aggregates
## 6637 3.050871e+13         2023-05-10                 Aggregates
## 6638 2.773655e+12         2023-05-10                 Aggregates
## 6639 2.714754e+12         2023-05-10                 Aggregates
## 6640 2.614024e+12         2023-05-10                 Aggregates
## 6641 1.252846e+12         2023-05-10                 Aggregates
## 6642 1.159891e+12         2023-05-10                 Aggregates
## 6643 7.104941e+11         2023-05-10                 Aggregates
## 6644 1.699241e+13         2023-05-10                 Aggregates
## 6645 1.415916e+13         2023-05-10                 Aggregates
## 6646 1.139768e+13         2023-05-10                 Aggregates
## 6647 2.867562e+13         2023-05-10                 Aggregates
## 6648 3.564058e+12         2023-05-10                 Aggregates
## 6649 3.097994e+12         2023-05-10                 Aggregates
## 6650 2.987574e+12         2023-05-10                 Aggregates
## 6651 2.521988e+13         2023-05-10                 Aggregates
## 6652 2.372914e+13         2023-05-10                 Aggregates
## 6653 2.004097e+13         2023-05-10                 Aggregates
## 6654 6.314028e+11         2023-05-10                 Aggregates
## 6655 5.782202e+11         2023-05-10                 Aggregates
## 6656 9.610045e+12         2023-05-10                 Aggregates
## 6657 8.037145e+12         2023-05-10                 Aggregates
## 6658 6.741689e+12         2023-05-10                 Aggregates
## 6659 5.996716e+12         2023-05-10                 Aggregates
## 6660 5.907464e+12         2023-05-10                 Aggregates
## 6661 3.428540e+11         2023-05-10                 Aggregates
## 6662 3.192014e+11         2023-05-10                 Aggregates
## 6663 2.597182e+13         2023-05-10                 Aggregates
## 6664 2.576904e+13         2023-05-10                 Aggregates
## 6665 5.319099e+11         2023-05-10                 Aggregates
## 6666 2.532497e+12         2023-05-10                 Aggregates
## 6667 1.357122e+12         2023-05-10                 Aggregates
## 6668 4.510912e+11         2023-05-10                 Aggregates
## 6669 2.751441e+13         2023-05-10                 Aggregates
## 6670 2.660796e+13         2023-05-10                 Aggregates
## 6671 4.764632e+11         2023-05-10                 Aggregates
## 6672 1.537317e+12         2023-05-10                 Aggregates
## 6673 4.393680e+11         2023-05-10                 Aggregates
## 6674 4.255783e+11         2023-05-10                 Aggregates
## 6675 3.880877e+11         2023-05-10                 Aggregates
## 6676 1.659092e+12         2023-05-10                 Aggregates
## 6677 2.347359e+12         2023-05-10                 Aggregates
## 6678 1.983106e+12         2023-05-10                 Aggregates
## 6679 1.410696e+12         2023-05-10                 Aggregates
## 6680 1.519934e+12         2023-05-10                 Aggregates
## 6681 3.806285e+13         2023-05-10                 Aggregates
## 6682 1.858917e+12         2023-05-10                 Aggregates
## 6683 1.714429e+12         2023-05-10                 Aggregates
## 6684 4.361605e+11         2023-05-10                 Aggregates
## 6685           NA         2023-05-10                 Aggregates
## 6686 3.240440e+13         2023-05-10                 Aggregates
## 6687 4.802004e+11         2023-05-10                 Aggregates
## 6688 1.016187e+12         2023-05-10                 Aggregates
## 6689 3.289174e+13         2023-05-10                 Aggregates
## 6690 1.850953e+13         2023-05-10                 Aggregates
## 6691 1.290303e+12         2023-05-10                 Aggregates
## 6692 2.215740e+12         2023-05-10                 Aggregates
## 6693 4.989883e+11         2023-05-10                 Aggregates
## 6694 3.097303e+13         2023-05-10                 Aggregates
## 6695 1.543017e+13         2023-05-10                 Aggregates
## 6696 3.360018e+13         2023-05-10                 Aggregates
## 6697 1.248366e+13         2023-05-10                 Aggregates
## 6698 1.799076e+13         2023-05-10                 Aggregates
## 6699 4.664046e+12         2023-05-10                 Aggregates
## 6700 4.252990e+12         2023-05-10                 Aggregates
## 6701 7.137000e+11         2023-05-10                 Aggregates
## 6702 1.051878e+13         2023-05-10                 Aggregates
## 6703 8.813665e+12         2023-05-10                 Aggregates
## 6704 7.955981e+11         2023-05-10                 Aggregates
## 6705 5.111362e+11         2023-05-10                 Aggregates
## 6706 2.624778e+12         2023-05-10                 Aggregates
## 6707 2.900741e+12         2023-05-10                 Aggregates
## 6708 2.550582e+13         2023-05-10                 Aggregates
## 6709 2.178644e+13         2023-05-10                 Aggregates
## 6710 5.302240e+12         2023-05-10                 Aggregates
## 6711 3.932373e+11         2023-05-10                 Aggregates
## 6712 3.641689e+11         2023-05-10                 Aggregates
## 6713 3.526747e+11         2023-05-10                 Aggregates
## 6714 7.403034e+12         2023-05-10                 Aggregates
## 6715 6.611332e+11         2023-05-10                 Aggregates
## 6716 6.026781e+11         2023-05-10                 Aggregates
## 6717 5.395112e+11         2023-05-10                 Aggregates
## 6718 2.952559e+12         2023-05-10                 Aggregates
## 6719 2.864082e+13         2023-05-10                 Aggregates
## 6720 2.708995e+13         2023-05-10                 Aggregates
## 6721 6.145158e+12         2023-05-10                 Aggregates
## 6722 5.803276e+12         2023-05-10                 Aggregates
## 6723 3.429186e+12         2023-05-10                 Aggregates
## 6724 3.991777e+12         2023-05-10                 Aggregates
## 6725 3.846851e+12         2023-05-10                 Aggregates
## 6726 3.941425e+12         2023-05-10                 Aggregates
## 6727 2.970678e+13         2023-05-10                 Aggregates
## 6728 3.313999e+12         2023-05-10                 Aggregates
## 6729 2.816665e+13         2023-05-10                 Aggregates
## 6730 2.791104e+13         2023-05-10                 Aggregates
## 6731 3.021070e+12         2023-05-10                 Aggregates
## 6732 5.858602e+12         2023-05-10                 Aggregates
## 6733 5.988549e+12         2023-05-10                 Aggregates
## 6734 3.106547e+12         2023-05-10                 Aggregates
## 6735 2.917807e+12         2023-05-10                 Aggregates
## 6736 3.635480e+11         2023-05-10                 Aggregates
## 6737 2.793080e+12         2023-05-10                 Aggregates
## 6738 6.590213e+12         2023-05-10                 Aggregates
## 6739 2.808933e+12         2023-05-10                 Aggregates
## 6740 6.386334e+12         2023-05-10                 Aggregates
## 6741 6.460238e+12         2023-05-10                 Aggregates
## 6742 1.815542e+11         2023-05-10                 Aggregates
## 6743 2.067368e+11         2023-05-10                 Aggregates
## 6744 1.724498e+11         2023-05-10                 Aggregates
## 6745 1.310181e+11         2023-05-10                 Aggregates
## 6746 2.051860e+11         2023-05-10                 Aggregates
## 6747 2.277723e+11         2023-05-10                 Aggregates
## 6748 1.562540e+11         2023-05-10                 Aggregates
## 6749 1.738211e+11         2023-05-10                 Aggregates
## 6750 1.760722e+11         2023-05-10                 Aggregates
## 6751 1.453172e+11         2023-05-10                 Aggregates
## 6752 1.291017e+10         2023-05-10                 Aggregates
## 6753 1.206362e+10         2023-05-10                 Aggregates
## 6754 9.090224e+11         2023-05-10                 Aggregates
## 6755           NA         2023-05-10                 Aggregates
## 6756 1.446565e+11         2023-05-10                 Aggregates
## 6757 1.685647e+11         2023-05-10                 Aggregates
## 6758 1.333007e+11         2023-05-10                 Aggregates
## 6759 1.462992e+11         2023-05-10                 Aggregates
## 6760 1.326454e+11         2023-05-10                 Aggregates
## 6761 1.376205e+11         2023-05-10                 Aggregates
## 6762 1.340412e+11         2023-05-10                 Aggregates
## 6763 5.797130e+10         2023-05-10                 Aggregates
## 6764 3.496022e+10         2023-05-10                 Aggregates
## 6765 8.237336e+11         2023-05-10                 Aggregates
## 6766 7.154337e+11         2023-05-10                 Aggregates
## 6767 6.068111e+11         2023-05-10                 Aggregates
## 6768 6.398644e+11         2023-05-10                 Aggregates
## 6769 1.327060e+11         2023-05-10                 Aggregates
## 6770 1.476123e+11         2023-05-10                 Aggregates
## 6771 1.469203e+11         2023-05-10                 Aggregates
## 6772 9.771352e+11         2023-05-10                 Aggregates
## 6773 1.017692e+12         2023-05-10                 Aggregates
## 6774 1.076798e+12         2023-05-10                 Aggregates
## 6775 9.894334e+11         2023-05-10                 Aggregates
## 6776 2.918519e+10         2023-05-10                 Aggregates
## 6777 5.039643e+10         2023-05-10                 Aggregates
## 6778 5.411281e+11         2023-05-10                 Aggregates
## 6779 3.277061e+10         2023-05-10                 Aggregates
## 6780 3.727425e+11         2023-05-10                 Aggregates
## 6781 3.142447e+10         2023-05-10                 Aggregates
## 6782 2.563115e+11         2023-05-10                 Aggregates
## 6783 4.692955e+11         2023-05-10                 Aggregates
## 6784 6.995945e+10         2023-05-10                 Aggregates
## 6785 3.115224e+11         2023-05-10                 Aggregates
## 6786 1.042643e+12         2023-05-10                 Aggregates
## 6787 1.380605e+10         2023-05-10                 Aggregates
## 6788 1.096478e+12         2023-05-10                 Aggregates
## 6789 1.002075e+12         2023-05-10                 Aggregates
## 6790 1.893035e+10         2023-05-10                 Aggregates
## 6791 2.221345e+11         2023-05-10                 Aggregates
## 6792 9.597998e+11         2023-05-10                 Aggregates
## 6793 1.461189e+10         2023-05-10                 Aggregates
## 6794 7.375644e+10         2023-05-10                 Aggregates
## 6795 1.048387e+12         2023-05-10                 Aggregates
## 6796 2.286064e+10         2023-05-10                 Aggregates
## 6797 1.998231e+10         2023-05-10                 Aggregates
## 6798 8.018338e+10         2023-05-10                 Aggregates
## 6799 1.883357e+10         2023-05-10                 Aggregates
## 6800 1.731412e+10         2023-05-10                 Aggregates
## 6801 1.594549e+10         2023-05-10                 Aggregates
## 6802 2.430406e+11         2023-05-10                 Aggregates
## 6803 1.262630e+11         2023-05-10                 Aggregates
## 6804 9.842681e+10         2023-05-10                 Aggregates
## 6805 1.339576e+11         2023-05-10                 Aggregates
## 6806 1.494935e+11         2023-05-10                 Aggregates
## 6807 1.544392e+12         2023-05-10                 Aggregates
## 6808 1.525628e+11         2023-05-10                 Aggregates
## 6809 4.272339e+10         2023-05-10                 Aggregates
## 6810 9.204472e+10         2023-05-10                 Aggregates
## 6811           NA         2023-05-10                 Aggregates
## 6812 1.192222e+11         2023-05-10                 Aggregates
## 6813 1.037667e+11         2023-05-10                 Aggregates
## 6814 1.515791e+11         2023-05-10                 Aggregates
## 6815 1.334908e+12         2023-05-10                 Aggregates
## 6816 8.781070e+11         2023-05-10                 Aggregates
## 6817 1.421149e+12         2023-05-10                 Aggregates
## 6818 1.397069e+12         2023-05-10                 Aggregates
## 6819 4.742564e+10         2023-05-10                 Aggregates
## 6820 9.050960e+11         2023-05-10                 Aggregates
## 6821 2.483145e+11         2023-05-10                 Aggregates
## 6822 7.305474e+11         2023-05-10                 Aggregates
## 6823 6.179409e+11         2023-05-10                 Aggregates
## 6824 5.374962e+11         2023-05-10                 Aggregates
## 6825 1.338336e+12         2023-05-10                 Aggregates
## 6826 9.923466e+10         2023-05-10                 Aggregates
## 6827 1.478000e+11         2023-05-10                 Aggregates
## 6828 1.503744e+11         2023-05-10                 Aggregates
## 6829 9.530653e+11         2023-05-10                 Aggregates
## 6830 1.031027e+12         2023-05-10                 Aggregates
## 6831 2.821505e+11         2023-05-10                 Aggregates
## 6832 2.177380e+11         2023-05-10                 Aggregates
## 6833 4.075267e+10         2023-05-10                 Aggregates
## 6834 4.026075e+10         2023-05-10                 Aggregates
## 6835 4.666945e+11         2023-05-10                 Aggregates
## 6836 8.125056e+10         2023-05-10                 Aggregates
## 6837 6.310237e+10         2023-05-10                 Aggregates
## 6838 5.236352e+10         2023-05-10                 Aggregates
## 6839 5.247232e+10         2023-05-10                 Aggregates
## 6840 4.963819e+10         2023-05-10                 Aggregates
## 6841 9.608578e+11         2023-05-10                 Aggregates
## 6842 3.102611e+11         2023-05-10                 Aggregates
## 6843 2.976695e+11         2023-05-10                 Aggregates
## 6844 2.490688e+11         2023-05-10                 Aggregates
## 6845 2.311306e+11         2023-05-10                 Aggregates
## 6846 2.189024e+11         2023-05-10                 Aggregates
## 6847 2.126677e+11         2023-05-10                 Aggregates
## 6848 1.115598e+12         2023-05-10                 Aggregates
## 6849 1.043391e+12         2023-05-10                 Aggregates
## 6850 1.217295e+12         2023-05-10                 Aggregates
## 6851 1.123192e+12         2023-05-10                 Aggregates
## 6852 1.893172e+11         2023-05-10                 Aggregates
## 6853 1.964031e+11         2023-05-10                 Aggregates
## 6854 3.171076e+11         2023-05-10                 Aggregates
## 6855 3.459880e+11         2023-05-10                 Aggregates
## 6856 3.228242e+10         2023-05-10                 Aggregates
## 6857 3.487571e+10         2023-05-10                 Aggregates
## 6858 3.725406e+10         2023-05-10                 Aggregates
## 6859 1.987285e+11         2023-05-10                 Aggregates
## 6860 2.710974e+10         2023-05-10                 Aggregates
## 6861 3.488940e+11         2023-05-10                 Aggregates
## 6862 1.753357e+11         2023-05-10                 Aggregates
## 6863 1.561632e+11         2023-05-10                 Aggregates
## 6864 3.674854e+11         2023-05-10                 Aggregates
## 6865 3.053919e+10         2023-05-10                 Aggregates
## 6866 2.836964e+10         2023-05-10                 Aggregates
## 6867 4.068527e+11         2023-05-10                 Aggregates
## 6868 7.775236e+11         2023-05-10                 Aggregates
## 6869 9.096540e+11         2023-05-10                 Aggregates
## 6870 3.603135e+11         2023-05-10                 Aggregates
## 6871 3.952044e+11         2023-05-10                 Aggregates
## 6872 1.087188e+12         2023-05-10                 Aggregates
## 6873 5.530633e+11         2023-05-10                 Aggregates
## 6874 5.354932e+10         2023-05-10                 Aggregates
## 6875 6.623261e+11         2023-05-10                 Aggregates
## 6876 5.944436e+11         2023-05-10                 Aggregates
## 6877 5.800080e+10         2023-05-10                 Aggregates
## 6878 4.048686e+10         2023-05-10                 Aggregates
## 6879 4.740349e+10         2023-05-10                 Aggregates
## 6880 1.271409e+12         2023-05-10                 Aggregates
## 6881 4.348599e+10         2023-05-10                 Aggregates
## 6882 3.505223e+11         2023-05-10                 Aggregates
## 6883 5.517888e+11         2023-05-10                 Aggregates
## 6884 4.843466e+10         2023-05-10                 Aggregates
## 6885 1.517489e+12         2023-05-10                 Aggregates
## 6886 3.771163e+11         2023-05-10                 Aggregates
## 6887 3.510595e+11         2023-05-10                 Aggregates
## 6888 2.382176e+12         2023-05-10                 Aggregates
## 6889 2.307648e+11         2023-05-10                 Aggregates
## 6890 4.976239e+11         2023-05-10                 Aggregates
## 6891 3.311858e+11         2023-05-10                 Aggregates
## 6892 3.839227e+10         2023-05-10                 Aggregates
## 6893 2.192414e+12         2023-05-10                 Aggregates
## 6894 4.040757e+11         2023-05-10                 Aggregates
## 6895 2.420222e+12         2023-05-10                 Aggregates
## 6896 2.437674e+12         2023-05-10                 Aggregates
## 6897 4.014302e+11         2023-05-10                 Aggregates
## 6898 2.749145e+11         2023-05-10                 Aggregates
## 6899 2.296411e+12         2023-05-10                 Aggregates
## 6900 2.193549e+12         2023-05-10                 Aggregates
## 6901 2.140838e+12         2023-05-10                 Aggregates
## 6902 1.610250e+11         2023-05-10                 Aggregates
## 6903 2.032824e+12         2023-05-10                 Aggregates
## 6904 4.829800e+11         2023-05-10                 Aggregates
## 6905 4.728956e+11         2023-05-10                 Aggregates
## 6906 4.539247e+11         2023-05-10                 Aggregates
## 6907 2.637762e+12         2023-05-10                 Aggregates
## 6908 5.856799e+10         2023-05-10                 Aggregates
## 6909 6.154422e+10         2023-05-10                 Aggregates
## 6910 1.761207e+11         2023-05-10                 Aggregates
## 6911 1.745821e+12         2023-05-10                 Aggregates
## 6912 3.268923e+11         2023-05-10                 Aggregates
## 6913 1.975233e+11         2023-05-10                 Aggregates
## 6914 1.776541e+12         2023-05-10                 Aggregates
## 6915 9.665488e+10         2023-05-10                 Aggregates
## 6916 1.511302e+12         2023-05-10                 Aggregates
## 6917 1.869873e+12         2023-05-10                 Aggregates
## 6918 3.785987e+11         2023-05-10                 Aggregates
## 6919 6.903415e+10         2023-05-10                 Aggregates
## 6920 8.416554e+10         2023-05-10                 Aggregates
## 6921           NA         2023-05-10                 Aggregates
## 6922 1.301200e+11         2023-05-10                 Aggregates
## 6923 2.963664e+11         2023-05-10                 Aggregates
## 6924 3.301370e+11         2023-05-10                 Aggregates
## 6925 1.551310e+11         2023-05-10                 Aggregates
## 6926 8.016647e+10         2023-05-10                 Aggregates
## 6927 3.189008e+11         2023-05-10                 Aggregates
## 6928 8.049300e+10         2023-05-10                 Aggregates
## 6929 3.026748e+11         2023-05-10                 Aggregates
## 6930 3.064330e+11         2023-05-10                 Aggregates
## 6931           NA         2023-05-10      Europe & Central Asia
## 6932 2.560242e+10         2023-05-10      Europe & Central Asia
## 6933 2.169467e+10         2023-05-10      Europe & Central Asia
## 6934 2.482610e+10         2023-05-10      Europe & Central Asia
## 6935 2.626413e+10         2023-05-10      Europe & Central Asia
## 6936 2.472829e+10         2023-05-10      Europe & Central Asia
## 6937 2.079317e+10         2023-05-10      Europe & Central Asia
## 6938 1.751721e+10         2023-05-10      Europe & Central Asia
## 6939 1.786766e+10         2023-05-10      Europe & Central Asia
## 6940 1.612506e+10         2023-05-10      Europe & Central Asia
## 6941 1.475151e+10         2023-05-10      Europe & Central Asia
## 6942 1.522162e+10         2023-05-10      Europe & Central Asia
## 6943 1.375116e+10         2023-05-10      Europe & Central Asia
## 6944 1.315441e+10         2023-05-10      Europe & Central Asia
## 6945 1.807462e+10         2023-05-10      Europe & Central Asia
## 6946 2.165251e+10         2023-05-10      Europe & Central Asia
## 6947 1.746532e+10         2023-05-10      Europe & Central Asia
## 6948 1.685296e+10         2023-05-10      Europe & Central Asia
## 6949 1.382530e+10         2023-05-10      Europe & Central Asia
## 6950 1.142933e+10         2023-05-10      Europe & Central Asia
## 6951 9.318395e+09         2023-05-10      Europe & Central Asia
## 6952 8.234847e+09         2023-05-10      Europe & Central Asia
## 6953 9.025660e+09         2023-05-10      Europe & Central Asia
## 6954 8.982048e+09         2023-05-10      Europe & Central Asia
## 6955 8.503693e+09         2023-05-10      Europe & Central Asia
## 6956 7.569673e+09         2023-05-10      Europe & Central Asia
## 6957 7.426082e+09         2023-05-10      Europe & Central Asia
## 6958 7.123633e+09         2023-05-10      Europe & Central Asia
## 6959 6.389460e+09         2023-05-10      Europe & Central Asia
## 6960 6.218582e+09         2023-05-10      Europe & Central Asia
## 6961 7.080982e+09         2023-05-10      Europe & Central Asia
## 6962 6.909730e+09         2023-05-10      Europe & Central Asia
## 6963 6.468736e+09         2023-05-10      Europe & Central Asia
## 6964 5.672569e+09         2023-05-10      Europe & Central Asia
## 6965 6.106636e+09         2023-05-10      Europe & Central Asia
## 6966 5.520318e+09         2023-05-10      Europe & Central Asia
## 6967 3.989623e+09         2023-05-10      Europe & Central Asia
## 6968 2.984052e+09         2023-05-10      Europe & Central Asia
## 6969 2.864441e+09         2023-05-10      Europe & Central Asia
## 6970 2.765950e+09         2023-05-10      Europe & Central Asia
## 6971 3.206627e+09         2023-05-10      Europe & Central Asia
## 6972 3.492997e+09         2023-05-10      Europe & Central Asia
## 6973 3.381419e+09         2023-05-10      Europe & Central Asia
## 6974 2.853435e+09         2023-05-10      Europe & Central Asia
## 6975 2.511826e+09         2023-05-10      Europe & Central Asia
## 6976 2.208509e+09         2023-05-10      Europe & Central Asia
## 6977 1.669488e+09         2023-05-10      Europe & Central Asia
## 6978 1.406875e+09         2023-05-10      Europe & Central Asia
## 6979 1.515191e+09         2023-05-10      Europe & Central Asia
## 6980 1.154440e+09         2023-05-10      Europe & Central Asia
## 6981 8.396522e+08         2023-05-10      Europe & Central Asia
## 6982 6.702511e+08         2023-05-10      Europe & Central Asia
## 6983 5.267045e+08         2023-05-10      Europe & Central Asia
## 6984 4.147093e+08         2023-05-10      Europe & Central Asia
## 6985 4.743995e+08         2023-05-10      Europe & Central Asia
## 6986 6.212260e+08         2023-05-10      Europe & Central Asia
## 6987 6.288933e+08         2023-05-10      Europe & Central Asia
## 6988 5.236949e+08         2023-05-10      Europe & Central Asia
## 6989 4.342679e+08         2023-05-10      Europe & Central Asia
## 6990 3.400617e+08         2023-05-10      Europe & Central Asia
## 6991 2.849165e+08         2023-05-10      Europe & Central Asia
## 6992 2.538857e+08         2023-05-10      Europe & Central Asia
## 6993 2.484341e+08         2023-05-10      Europe & Central Asia
## 6994           NA         2023-05-10                 South Asia
## 6995 3.176295e+12         2023-05-10                 South Asia
## 6996 2.667688e+12         2023-05-10                 South Asia
## 6997 2.831552e+12         2023-05-10                 South Asia
## 6998 2.702930e+12         2023-05-10                 South Asia
## 6999 2.651473e+12         2023-05-10                 South Asia
## 7000 2.294798e+12         2023-05-10                 South Asia
## 7001 2.103588e+12         2023-05-10                 South Asia
## 7002 2.039127e+12         2023-05-10                 South Asia
## 7003 1.856722e+12         2023-05-10                 South Asia
## 7004 1.827638e+12         2023-05-10                 South Asia
## 7005 1.823050e+12         2023-05-10                 South Asia
## 7006 1.675615e+12         2023-05-10                 South Asia
## 7007 1.341887e+12         2023-05-10                 South Asia
## 7008 1.198896e+12         2023-05-10                 South Asia
## 7009 1.216735e+12         2023-05-10                 South Asia
## 7010 9.402599e+11         2023-05-10                 South Asia
## 7011 8.203816e+11         2023-05-10                 South Asia
## 7012 7.091485e+11         2023-05-10                 South Asia
## 7013 6.076993e+11         2023-05-10                 South Asia
## 7014 5.149379e+11         2023-05-10                 South Asia
## 7015 4.854410e+11         2023-05-10                 South Asia
## 7016 4.683949e+11         2023-05-10                 South Asia
## 7017 4.588204e+11         2023-05-10                 South Asia
## 7018 4.213515e+11         2023-05-10                 South Asia
## 7019 4.158678e+11         2023-05-10                 South Asia
## 7020 3.928971e+11         2023-05-10                 South Asia
## 7021 3.602820e+11         2023-05-10                 South Asia
## 7022 3.272756e+11         2023-05-10                 South Asia
## 7023 2.792960e+11         2023-05-10                 South Asia
## 7024 2.882084e+11         2023-05-10                 South Asia
## 7025 2.701053e+11         2023-05-10                 South Asia
## 7026 3.209790e+11         2023-05-10                 South Asia
## 7027 2.960424e+11         2023-05-10                 South Asia
## 7028 2.965890e+11         2023-05-10                 South Asia
## 7029 2.790336e+11         2023-05-10                 South Asia
## 7030 2.489860e+11         2023-05-10                 South Asia
## 7031 2.325119e+11         2023-05-10                 South Asia
## 7032 2.121582e+11         2023-05-10                 South Asia
## 7033 2.182623e+11         2023-05-10                 South Asia
## 7034 2.007151e+11         2023-05-10                 South Asia
## 7035 1.934906e+11         2023-05-10                 South Asia
## 7036 1.863253e+11         2023-05-10                 South Asia
## 7037 1.529917e+11         2023-05-10                 South Asia
## 7038 1.373003e+11         2023-05-10                 South Asia
## 7039 1.214873e+11         2023-05-10                 South Asia
## 7040 1.027172e+11         2023-05-10                 South Asia
## 7041 9.847280e+10         2023-05-10                 South Asia
## 7042 9.952590e+10         2023-05-10                 South Asia
## 7043 8.551527e+10         2023-05-10                 South Asia
## 7044 7.146319e+10         2023-05-10                 South Asia
## 7045 6.735099e+10         2023-05-10                 South Asia
## 7046 6.242248e+10         2023-05-10                 South Asia
## 7047 5.844800e+10         2023-05-10                 South Asia
## 7048 5.308546e+10         2023-05-10                 South Asia
## 7049 5.013494e+10         2023-05-10                 South Asia
## 7050 4.586546e+10         2023-05-10                 South Asia
## 7051 5.955485e+10         2023-05-10                 South Asia
## 7052 5.648029e+10         2023-05-10                 South Asia
## 7053 4.842192e+10         2023-05-10                 South Asia
## 7054 4.216148e+10         2023-05-10                 South Asia
## 7055 3.923244e+10         2023-05-10                 South Asia
## 7056 3.702988e+10         2023-05-10                 South Asia
## 7057           NA         2023-05-10        East Asia & Pacific
## 7058 1.186093e+12         2023-05-10        East Asia & Pacific
## 7059 1.058689e+12         2023-05-10        East Asia & Pacific
## 7060 1.119100e+12         2023-05-10        East Asia & Pacific
## 7061 1.042272e+12         2023-05-10        East Asia & Pacific
## 7062 1.015619e+12         2023-05-10        East Asia & Pacific
## 7063 9.318774e+11         2023-05-10        East Asia & Pacific
## 7064 8.608542e+11         2023-05-10        East Asia & Pacific
## 7065 8.908148e+11         2023-05-10        East Asia & Pacific
## 7066 9.125241e+11         2023-05-10        East Asia & Pacific
## 7067 9.178699e+11         2023-05-10        East Asia & Pacific
## 7068 8.929691e+11         2023-05-10        East Asia & Pacific
## 7069 7.550942e+11         2023-05-10        East Asia & Pacific
## 7070 5.395801e+11         2023-05-10        East Asia & Pacific
## 7071 5.102286e+11         2023-05-10        East Asia & Pacific
## 7072 4.322167e+11         2023-05-10        East Asia & Pacific
## 7073 3.645705e+11         2023-05-10        East Asia & Pacific
## 7074 2.858686e+11         2023-05-10        East Asia & Pacific
## 7075 2.568369e+11         2023-05-10        East Asia & Pacific
## 7076 2.347725e+11         2023-05-10        East Asia & Pacific
## 7077 1.956606e+11         2023-05-10        East Asia & Pacific
## 7078 1.604469e+11         2023-05-10        East Asia & Pacific
## 7079 1.650210e+11         2023-05-10        East Asia & Pacific
## 7080 1.400014e+11         2023-05-10        East Asia & Pacific
## 7081 9.544555e+10         2023-05-10        East Asia & Pacific
## 7082 2.157490e+11         2023-05-10        East Asia & Pacific
## 7083 2.273697e+11         2023-05-10        East Asia & Pacific
## 7084 2.021320e+11         2023-05-10        East Asia & Pacific
## 7085 1.768921e+11         2023-05-10        East Asia & Pacific
## 7086 1.580067e+11         2023-05-10        East Asia & Pacific
## 7087 1.280270e+11         2023-05-10        East Asia & Pacific
## 7088 1.166220e+11         2023-05-10        East Asia & Pacific
## 7089 1.061407e+11         2023-05-10        East Asia & Pacific
## 7090 9.445143e+10         2023-05-10        East Asia & Pacific
## 7091 8.430017e+10         2023-05-10        East Asia & Pacific
## 7092 7.592962e+10         2023-05-10        East Asia & Pacific
## 7093 7.995407e+10         2023-05-10        East Asia & Pacific
## 7094 8.528949e+10         2023-05-10        East Asia & Pacific
## 7095 8.485370e+10         2023-05-10        East Asia & Pacific
## 7096 8.105228e+10         2023-05-10        East Asia & Pacific
## 7097 9.015845e+10         2023-05-10        East Asia & Pacific
## 7098 8.551823e+10         2023-05-10        East Asia & Pacific
## 7099 7.248234e+10         2023-05-10        East Asia & Pacific
## 7100 5.140019e+10         2023-05-10        East Asia & Pacific
## 7101 5.145572e+10         2023-05-10        East Asia & Pacific
## 7102 4.580892e+10         2023-05-10        East Asia & Pacific
## 7103 3.726916e+10         2023-05-10        East Asia & Pacific
## 7104 3.046386e+10         2023-05-10        East Asia & Pacific
## 7105 2.580241e+10         2023-05-10        East Asia & Pacific
## 7106 1.627325e+10         2023-05-10        East Asia & Pacific
## 7107 1.099759e+10         2023-05-10        East Asia & Pacific
## 7108 9.333536e+09         2023-05-10        East Asia & Pacific
## 7109 9.150685e+09         2023-05-10        East Asia & Pacific
## 7110 8.337423e+09         2023-05-10        East Asia & Pacific
## 7111 7.076465e+09         2023-05-10        East Asia & Pacific
## 7112 5.667757e+09         2023-05-10        East Asia & Pacific
## 7113           NA         2023-05-10        East Asia & Pacific
## 7114           NA         2023-05-10        East Asia & Pacific
## 7115           NA         2023-05-10        East Asia & Pacific
## 7116           NA         2023-05-10        East Asia & Pacific
## 7117           NA         2023-05-10        East Asia & Pacific
## 7118           NA         2023-05-10        East Asia & Pacific
## 7119           NA         2023-05-10        East Asia & Pacific
## 7120           NA         2023-05-10 Middle East & North Africa
## 7121 3.597132e+11         2023-05-10 Middle East & North Africa
## 7122 2.397356e+11         2023-05-10 Middle East & North Africa
## 7123 2.837467e+11         2023-05-10 Middle East & North Africa
## 7124 3.316820e+11         2023-05-10 Middle East & North Africa
## 7125 4.866301e+11         2023-05-10 Middle East & North Africa
## 7126 4.579546e+11         2023-05-10 Middle East & North Africa
## 7127 4.082129e+11         2023-05-10 Middle East & North Africa
## 7128 4.603828e+11         2023-05-10 Middle East & North Africa
## 7129 4.927756e+11         2023-05-10 Middle East & North Africa
## 7130 6.440355e+11         2023-05-10 Middle East & North Africa
## 7131 6.261331e+11         2023-05-10 Middle East & North Africa
## 7132 4.868076e+11         2023-05-10 Middle East & North Africa
## 7133 4.163970e+11         2023-05-10 Middle East & North Africa
## 7134 4.123362e+11         2023-05-10 Middle East & North Africa
## 7135 3.498816e+11         2023-05-10 Middle East & North Africa
## 7136 2.662989e+11         2023-05-10 Middle East & North Africa
## 7137 2.264521e+11         2023-05-10 Middle East & North Africa
## 7138 1.900434e+11         2023-05-10 Middle East & North Africa
## 7139 1.535448e+11         2023-05-10 Middle East & North Africa
## 7140 1.286269e+11         2023-05-10 Middle East & North Africa
## 7141 1.268788e+11         2023-05-10 Middle East & North Africa
## 7142 1.095917e+11         2023-05-10 Middle East & North Africa
## 7143 1.138485e+11         2023-05-10 Middle East & North Africa
## 7144 1.102769e+11         2023-05-10 Middle East & North Africa
## 7145 1.139192e+11         2023-05-10 Middle East & North Africa
## 7146 1.204039e+11         2023-05-10 Middle East & North Africa
## 7147 9.641923e+10         2023-05-10 Middle East & North Africa
## 7148 7.184146e+10         2023-05-10 Middle East & North Africa
## 7149 6.374362e+10         2023-05-10 Middle East & North Africa
## 7150           NA         2023-05-10 Middle East & North Africa
## 7151           NA         2023-05-10 Middle East & North Africa
## 7152 1.248133e+11         2023-05-10 Middle East & North Africa
## 7153 1.204964e+11         2023-05-10 Middle East & North Africa
## 7154 1.230579e+11         2023-05-10 Middle East & North Africa
## 7155 1.340100e+11         2023-05-10 Middle East & North Africa
## 7156 2.090946e+11         2023-05-10 Middle East & North Africa
## 7157 1.801836e+11         2023-05-10 Middle East & North Africa
## 7158 1.622767e+11         2023-05-10 Middle East & North Africa
## 7159 1.563652e+11         2023-05-10 Middle East & North Africa
## 7160 1.259488e+11         2023-05-10 Middle East & North Africa
## 7161 1.004993e+11         2023-05-10 Middle East & North Africa
## 7162 9.436228e+10         2023-05-10 Middle East & North Africa
## 7163 9.039188e+10         2023-05-10 Middle East & North Africa
## 7164 7.799432e+10         2023-05-10 Middle East & North Africa
## 7165 8.060012e+10         2023-05-10 Middle East & North Africa
## 7166 6.805530e+10         2023-05-10 Middle East & North Africa
## 7167 5.177622e+10         2023-05-10 Middle East & North Africa
## 7168 4.620909e+10         2023-05-10 Middle East & North Africa
## 7169 2.708170e+10         2023-05-10 Middle East & North Africa
## 7170 1.715346e+10         2023-05-10 Middle East & North Africa
## 7171 1.373180e+10         2023-05-10 Middle East & North Africa
## 7172 1.097625e+10         2023-05-10 Middle East & North Africa
## 7173 9.743090e+09         2023-05-10 Middle East & North Africa
## 7174 8.623173e+09         2023-05-10 Middle East & North Africa
## 7175 7.555384e+09         2023-05-10 Middle East & North Africa
## 7176 6.789939e+09         2023-05-10 Middle East & North Africa
## 7177 6.197320e+09         2023-05-10 Middle East & North Africa
## 7178 5.379846e+09         2023-05-10 Middle East & North Africa
## 7179 4.928628e+09         2023-05-10 Middle East & North Africa
## 7180 4.693566e+09         2023-05-10 Middle East & North Africa
## 7181 4.426949e+09         2023-05-10 Middle East & North Africa
## 7182 4.199134e+09         2023-05-10 Middle East & North Africa
## 7183           NA         2023-05-10 Middle East & North Africa
## 7184 2.078893e+11         2023-05-10 Middle East & North Africa
## 7185 1.843698e+11         2023-05-10 Middle East & North Africa
## 7186 2.336361e+11         2023-05-10 Middle East & North Africa
## 7187 2.273675e+11         2023-05-10 Middle East & North Africa
## 7188 1.872177e+11         2023-05-10 Middle East & North Africa
## 7189 1.666025e+11         2023-05-10 Middle East & North Africa
## 7190 1.667741e+11         2023-05-10 Middle East & North Africa
## 7191 2.284157e+11         2023-05-10 Middle East & North Africa
## 7192 2.346377e+11         2023-05-10 Middle East & North Africa
## 7193 2.180025e+11         2023-05-10 Middle East & North Africa
## 7194 1.857497e+11         2023-05-10 Middle East & North Africa
## 7195 1.385167e+11         2023-05-10 Middle East & North Africa
## 7196 1.116576e+11         2023-05-10 Middle East & North Africa
## 7197 1.316144e+11         2023-05-10 Middle East & North Africa
## 7198 8.883706e+10         2023-05-10 Middle East & North Africa
## 7199 6.514015e+10         2023-05-10 Middle East & North Africa
## 7200 4.995489e+10         2023-05-10 Middle East & North Africa
## 7201 3.662790e+10         2023-05-10 Middle East & North Africa
## 7202 2.192157e+10         2023-05-10 Middle East & North Africa
## 7203 3.292845e+10         2023-05-10 Middle East & North Africa
## 7204 3.617643e+10         2023-05-10 Middle East & North Africa
## 7205 4.836425e+10         2023-05-10 Middle East & North Africa
## 7206 3.688160e+10         2023-05-10 Middle East & North Africa
## 7207 2.061741e+10         2023-05-10 Middle East & North Africa
## 7208 2.076486e+10         2023-05-10 Middle East & North Africa
## 7209 1.043370e+10         2023-05-10 Middle East & North Africa
## 7210 1.289403e+10         2023-05-10 Middle East & North Africa
## 7211 3.991349e+09         2023-05-10 Middle East & North Africa
## 7212 1.031945e+09         2023-05-10 Middle East & North Africa
## 7213 5.536720e+08         2023-05-10 Middle East & North Africa
## 7214 4.077963e+08         2023-05-10 Middle East & North Africa
## 7215 1.804081e+11         2023-05-10 Middle East & North Africa
## 7216 6.583194e+10         2023-05-10 Middle East & North Africa
## 7217 6.268452e+10         2023-05-10 Middle East & North Africa
## 7218 5.677419e+10         2023-05-10 Middle East & North Africa
## 7219 4.726452e+10         2023-05-10 Middle East & North Africa
## 7220 4.842516e+10         2023-05-10 Middle East & North Africa
## 7221 4.693839e+10         2023-05-10 Middle East & North Africa
## 7222 4.071290e+10         2023-05-10 Middle East & North Africa
## 7223 4.238233e+10         2023-05-10 Middle East & North Africa
## 7224 3.782300e+10         2023-05-10 Middle East & North Africa
## 7225 5.256900e+10         2023-05-10 Middle East & North Africa
## 7226 3.781646e+10         2023-05-10 Middle East & North Africa
## 7227 2.376228e+10         2023-05-10 Middle East & North Africa
## 7228 1.983813e+10         2023-05-10 Middle East & North Africa
## 7229 1.775483e+10         2023-05-10 Middle East & North Africa
## 7230 1.345852e+10         2023-05-10 Middle East & North Africa
## 7231 1.151676e+10         2023-05-10 Middle East & North Africa
## 7232 5.134368e+09         2023-05-10 Middle East & North Africa
## 7233 4.113848e+09         2023-05-10 Middle East & North Africa
## 7234 3.865347e+09         2023-05-10 Middle East & North Africa
## 7235 3.281714e+09         2023-05-10 Middle East & North Africa
## 7236 3.008121e+09         2023-05-10 Middle East & North Africa
## 7237 2.896948e+09         2023-05-10 Middle East & North Africa
## 7238           NA         2023-05-10 Middle East & North Africa
## 7239           NA         2023-05-10 Middle East & North Africa
## 7240           NA         2023-05-10 Middle East & North Africa
## 7241 2.340521e+09         2023-05-10 Middle East & North Africa
## 7242 1.978438e+09         2023-05-10 Middle East & North Africa
## 7243 1.954635e+09         2023-05-10 Middle East & North Africa
## 7244 1.831700e+09         2023-05-10 Middle East & North Africa
## 7245 1.684122e+09         2023-05-10 Middle East & North Africa
## 7246           NA         2023-05-10      Europe & Central Asia
## 7247 5.041826e+11         2023-05-10      Europe & Central Asia
## 7248 4.258523e+11         2023-05-10      Europe & Central Asia
## 7249 3.993217e+11         2023-05-10      Europe & Central Asia
## 7250 3.857367e+11         2023-05-10      Europe & Central Asia
## 7251 3.363775e+11         2023-05-10      Europe & Central Asia
## 7252 2.990911e+11         2023-05-10      Europe & Central Asia
## 7253 2.917752e+11         2023-05-10      Europe & Central Asia
## 7254 2.591709e+11         2023-05-10      Europe & Central Asia
## 7255 2.383409e+11         2023-05-10      Europe & Central Asia
## 7256 2.256287e+11         2023-05-10      Europe & Central Asia
## 7257 2.390031e+11         2023-05-10      Europe & Central Asia
## 7258 2.219136e+11         2023-05-10      Europe & Central Asia
## 7259 2.364431e+11         2023-05-10      Europe & Central Asia
## 7260 2.754475e+11         2023-05-10      Europe & Central Asia
## 7261 2.700793e+11         2023-05-10      Europe & Central Asia
## 7262 2.321806e+11         2023-05-10      Europe & Central Asia
## 7263 2.118770e+11         2023-05-10      Europe & Central Asia
## 7264 1.943721e+11         2023-05-10      Europe & Central Asia
## 7265 1.646708e+11         2023-05-10      Europe & Central Asia
## 7266 1.285960e+11         2023-05-10      Europe & Central Asia
## 7267 1.093467e+11         2023-05-10      Europe & Central Asia
## 7268 1.002076e+11         2023-05-10      Europe & Central Asia
## 7269 9.889396e+10         2023-05-10      Europe & Central Asia
## 7270 9.019941e+10         2023-05-10      Europe & Central Asia
## 7271 8.285665e+10         2023-05-10      Europe & Central Asia
## 7272 7.579079e+10         2023-05-10      Europe & Central Asia
## 7273 6.913982e+10         2023-05-10      Europe & Central Asia
## 7274 5.709766e+10         2023-05-10      Europe & Central Asia
## 7275 5.241748e+10         2023-05-10      Europe & Central Asia
## 7276 5.591854e+10         2023-05-10      Europe & Central Asia
## 7277 4.978750e+10         2023-05-10      Europe & Central Asia
## 7278 4.930563e+10         2023-05-10      Europe & Central Asia
## 7279 3.923839e+10         2023-05-10      Europe & Central Asia
## 7280 3.777290e+10         2023-05-10      Europe & Central Asia
## 7281 3.392052e+10         2023-05-10      Europe & Central Asia
## 7282 2.871457e+10         2023-05-10      Europe & Central Asia
## 7283 2.127001e+10         2023-05-10      Europe & Central Asia
## 7284 2.010665e+10         2023-05-10      Europe & Central Asia
## 7285 2.076605e+10         2023-05-10      Europe & Central Asia
## 7286 2.147475e+10         2023-05-10      Europe & Central Asia
## 7287 2.067019e+10         2023-05-10      Europe & Central Asia
## 7288 2.174786e+10         2023-05-10      Europe & Central Asia
## 7289 1.831933e+10         2023-05-10      Europe & Central Asia
## 7290 1.464800e+10         2023-05-10      Europe & Central Asia
## 7291 1.124834e+10         2023-05-10      Europe & Central Asia
## 7292 9.453756e+09         2023-05-10      Europe & Central Asia
## 7293 9.483808e+09         2023-05-10      Europe & Central Asia
## 7294 7.896861e+09         2023-05-10      Europe & Central Asia
## 7295 7.481173e+09         2023-05-10      Europe & Central Asia
## 7296 6.318061e+09         2023-05-10      Europe & Central Asia
## 7297 5.098250e+09         2023-05-10      Europe & Central Asia
## 7298 4.395995e+09         2023-05-10      Europe & Central Asia
## 7299 3.787077e+09         2023-05-10      Europe & Central Asia
## 7300 3.278584e+09         2023-05-10      Europe & Central Asia
## 7301 3.343637e+09         2023-05-10      Europe & Central Asia
## 7302 3.104034e+09         2023-05-10      Europe & Central Asia
## 7303 2.945704e+09         2023-05-10      Europe & Central Asia
## 7304 2.766609e+09         2023-05-10      Europe & Central Asia
## 7305 2.430844e+09         2023-05-10      Europe & Central Asia
## 7306 2.260350e+09         2023-05-10      Europe & Central Asia
## 7307 2.088012e+09         2023-05-10      Europe & Central Asia
## 7308 1.939330e+09         2023-05-10      Europe & Central Asia
## 7309           NA         2023-05-10      Europe & Central Asia
## 7310           NA         2023-05-10      Europe & Central Asia
## 7311           NA         2023-05-10      Europe & Central Asia
## 7312 7.315388e+09         2023-05-10      Europe & Central Asia
## 7313 7.491969e+09         2023-05-10      Europe & Central Asia
## 7314 6.979582e+09         2023-05-10      Europe & Central Asia
## 7315 6.846692e+09         2023-05-10      Europe & Central Asia
## 7316 7.085288e+09         2023-05-10      Europe & Central Asia
## 7317 7.708835e+09         2023-05-10      Europe & Central Asia
## 7318 7.000749e+09         2023-05-10      Europe & Central Asia
## 7319 6.690725e+09         2023-05-10      Europe & Central Asia
## 7320 6.566098e+09         2023-05-10      Europe & Central Asia
## 7321 5.920178e+09         2023-05-10      Europe & Central Asia
## 7322 5.487084e+09         2023-05-10      Europe & Central Asia
## 7323 5.928421e+09         2023-05-10      Europe & Central Asia
## 7324 4.466100e+09         2023-05-10      Europe & Central Asia
## 7325 3.422651e+09         2023-05-10      Europe & Central Asia
## 7326 3.032400e+09         2023-05-10      Europe & Central Asia
## 7327 2.822358e+09         2023-05-10      Europe & Central Asia
## 7328 2.328658e+09         2023-05-10      Europe & Central Asia
## 7329 1.947333e+09         2023-05-10      Europe & Central Asia
## 7330 1.659131e+09         2023-05-10      Europe & Central Asia
## 7331 1.563668e+09         2023-05-10      Europe & Central Asia
## 7332 1.567403e+09         2023-05-10      Europe & Central Asia
## 7333 1.382605e+09         2023-05-10      Europe & Central Asia
## 7334 1.180968e+09         2023-05-10      Europe & Central Asia
## 7335 1.023006e+09         2023-05-10      Europe & Central Asia
## 7336 9.147629e+08         2023-05-10      Europe & Central Asia
## 7337           NA         2023-05-10      Europe & Central Asia
## 7338           NA         2023-05-10      Europe & Central Asia
## 7339           NA         2023-05-10      Europe & Central Asia
## 7340           NA         2023-05-10      Europe & Central Asia
## 7341           NA         2023-05-10      Europe & Central Asia
## 7342           NA         2023-05-10      Europe & Central Asia
## 7343           NA         2023-05-10      Europe & Central Asia
## 7344           NA         2023-05-10      Europe & Central Asia
## 7345           NA         2023-05-10      Europe & Central Asia
## 7346           NA         2023-05-10      Europe & Central Asia
## 7347           NA         2023-05-10      Europe & Central Asia
## 7348           NA         2023-05-10      Europe & Central Asia
## 7349           NA         2023-05-10      Europe & Central Asia
## 7350           NA         2023-05-10      Europe & Central Asia
## 7351           NA         2023-05-10      Europe & Central Asia
## 7352           NA         2023-05-10      Europe & Central Asia
## 7353           NA         2023-05-10      Europe & Central Asia
## 7354           NA         2023-05-10      Europe & Central Asia
## 7355           NA         2023-05-10      Europe & Central Asia
## 7356           NA         2023-05-10      Europe & Central Asia
## 7357           NA         2023-05-10      Europe & Central Asia
## 7358           NA         2023-05-10      Europe & Central Asia
## 7359           NA         2023-05-10      Europe & Central Asia
## 7360           NA         2023-05-10      Europe & Central Asia
## 7361           NA         2023-05-10      Europe & Central Asia
## 7362           NA         2023-05-10      Europe & Central Asia
## 7363           NA         2023-05-10      Europe & Central Asia
## 7364           NA         2023-05-10      Europe & Central Asia
## 7365           NA         2023-05-10      Europe & Central Asia
## 7366           NA         2023-05-10      Europe & Central Asia
## 7367           NA         2023-05-10      Europe & Central Asia
## 7368           NA         2023-05-10      Europe & Central Asia
## 7369           NA         2023-05-10      Europe & Central Asia
## 7370           NA         2023-05-10      Europe & Central Asia
## 7371           NA         2023-05-10      Europe & Central Asia
## 7372           NA         2023-05-10 Middle East & North Africa
## 7373 4.885265e+11         2023-05-10 Middle East & North Africa
## 7374 4.132677e+11         2023-05-10 Middle East & North Africa
## 7375 4.024705e+11         2023-05-10 Middle East & North Africa
## 7376 3.766915e+11         2023-05-10 Middle East & North Africa
## 7377 3.582454e+11         2023-05-10 Middle East & North Africa
## 7378 3.221028e+11         2023-05-10 Middle East & North Africa
## 7379 3.034143e+11         2023-05-10 Middle East & North Africa
## 7380 3.143301e+11         2023-05-10 Middle East & North Africa
## 7381 2.977328e+11         2023-05-10 Middle East & North Africa
## 7382 2.622823e+11         2023-05-10 Middle East & North Africa
## 7383 2.667919e+11         2023-05-10 Middle East & North Africa
## 7384 2.383641e+11         2023-05-10 Middle East & North Africa
## 7385 2.119700e+11         2023-05-10 Middle East & North Africa
## 7386 2.205311e+11         2023-05-10 Middle East & North Africa
## 7387 1.840521e+11         2023-05-10 Middle East & North Africa
## 7388 1.586705e+11         2023-05-10 Middle East & North Africa
## 7389 1.470840e+11         2023-05-10 Middle East & North Africa
## 7390 1.399731e+11         2023-05-10 Middle East & North Africa
## 7391 1.312999e+11         2023-05-10 Middle East & North Africa
## 7392 1.250606e+11         2023-05-10 Middle East & North Africa
## 7393 1.346358e+11         2023-05-10 Middle East & North Africa
## 7394 1.360358e+11         2023-05-10 Middle East & North Africa
## 7395 1.209229e+11         2023-05-10 Middle East & North Africa
## 7396 1.200567e+11         2023-05-10 Middle East & North Africa
## 7397 1.188594e+11         2023-05-10 Middle East & North Africa
## 7398 1.145059e+11         2023-05-10 Middle East & North Africa
## 7399 1.048930e+11         2023-05-10 Middle East & North Africa
## 7400           NA         2023-05-10 Middle East & North Africa
## 7401           NA         2023-05-10 Middle East & North Africa
## 7402           NA         2023-05-10 Middle East & North Africa
## 7403           NA         2023-05-10 Middle East & North Africa
## 7404           NA         2023-05-10 Middle East & North Africa
## 7405           NA         2023-05-10 Middle East & North Africa
## 7406           NA         2023-05-10 Middle East & North Africa
## 7407           NA         2023-05-10 Middle East & North Africa
## 7408           NA         2023-05-10 Middle East & North Africa
## 7409           NA         2023-05-10 Middle East & North Africa
## 7410           NA         2023-05-10 Middle East & North Africa
## 7411           NA         2023-05-10 Middle East & North Africa
## 7412           NA         2023-05-10 Middle East & North Africa
## 7413           NA         2023-05-10 Middle East & North Africa
## 7414           NA         2023-05-10 Middle East & North Africa
## 7415           NA         2023-05-10 Middle East & North Africa
## 7416           NA         2023-05-10 Middle East & North Africa
## 7417           NA         2023-05-10 Middle East & North Africa
## 7418           NA         2023-05-10 Middle East & North Africa
## 7419           NA         2023-05-10 Middle East & North Africa
## 7420           NA         2023-05-10 Middle East & North Africa
## 7421           NA         2023-05-10 Middle East & North Africa
## 7422           NA         2023-05-10 Middle East & North Africa
## 7423           NA         2023-05-10 Middle East & North Africa
## 7424           NA         2023-05-10 Middle East & North Africa
## 7425 5.329333e+09         2023-05-10 Middle East & North Africa
## 7426 4.619000e+09         2023-05-10 Middle East & North Africa
## 7427 4.030000e+09         2023-05-10 Middle East & North Africa
## 7428 3.980000e+09         2023-05-10 Middle East & North Africa
## 7429 3.663333e+09         2023-05-10 Middle East & North Africa
## 7430 3.405333e+09         2023-05-10 Middle East & North Africa
## 7431 2.992333e+09         2023-05-10 Middle East & North Africa
## 7432 2.510000e+09         2023-05-10 Middle East & North Africa
## 7433 3.138500e+09         2023-05-10 Middle East & North Africa
## 7434 2.598500e+09         2023-05-10 Middle East & North Africa
## 7435           NA         2023-05-10      Europe & Central Asia
## 7436 2.107703e+12         2023-05-10      Europe & Central Asia
## 7437 1.896755e+12         2023-05-10      Europe & Central Asia
## 7438 2.011302e+12         2023-05-10      Europe & Central Asia
## 7439 2.091932e+12         2023-05-10      Europe & Central Asia
## 7440 1.961796e+12         2023-05-10      Europe & Central Asia
## 7441 1.877072e+12         2023-05-10      Europe & Central Asia
## 7442 1.836638e+12         2023-05-10      Europe & Central Asia
## 7443 2.162010e+12         2023-05-10      Europe & Central Asia
## 7444 2.141924e+12         2023-05-10      Europe & Central Asia
## 7445 2.086958e+12         2023-05-10      Europe & Central Asia
## 7446 2.294994e+12         2023-05-10      Europe & Central Asia
## 7447 2.136100e+12         2023-05-10      Europe & Central Asia
## 7448 2.199929e+12         2023-05-10      Europe & Central Asia
## 7449 2.408655e+12         2023-05-10      Europe & Central Asia
## 7450 2.213102e+12         2023-05-10      Europe & Central Asia
## 7451 1.949552e+12         2023-05-10      Europe & Central Asia
## 7452 1.858217e+12         2023-05-10      Europe & Central Asia
## 7453 1.806543e+12         2023-05-10      Europe & Central Asia
## 7454 1.577622e+12         2023-05-10      Europe & Central Asia
## 7455 1.276769e+12         2023-05-10      Europe & Central Asia
## 7456 1.168023e+12         2023-05-10      Europe & Central Asia
## 7457 1.146677e+12         2023-05-10      Europe & Central Asia
## 7458 1.252447e+12         2023-05-10      Europe & Central Asia
## 7459 1.270053e+12         2023-05-10      Europe & Central Asia
## 7460 1.241880e+12         2023-05-10      Europe & Central Asia
## 7461 1.312427e+12         2023-05-10      Europe & Central Asia
## 7462 1.174662e+12         2023-05-10      Europe & Central Asia
## 7463 1.099217e+12         2023-05-10      Europe & Central Asia
## 7464 1.064958e+12         2023-05-10      Europe & Central Asia
## 7465 1.320162e+12         2023-05-10      Europe & Central Asia
## 7466 1.246220e+12         2023-05-10      Europe & Central Asia
## 7467 1.181223e+12         2023-05-10      Europe & Central Asia
## 7468 9.286613e+11         2023-05-10      Europe & Central Asia
## 7469 8.916090e+11         2023-05-10      Europe & Central Asia
## 7470 8.057131e+11         2023-05-10      Europe & Central Asia
## 7471 6.403864e+11         2023-05-10      Europe & Central Asia
## 7472 4.522175e+11         2023-05-10      Europe & Central Asia
## 7473 4.378877e+11         2023-05-10      Europe & Central Asia
## 7474 4.430424e+11         2023-05-10      Europe & Central Asia
## 7475 4.272726e+11         2023-05-10      Europe & Central Asia
## 7476 4.307029e+11         2023-05-10      Europe & Central Asia
## 7477 4.772568e+11         2023-05-10      Europe & Central Asia
## 7478 3.936772e+11         2023-05-10      Europe & Central Asia
## 7479 3.150583e+11         2023-05-10      Europe & Central Asia
## 7480 2.575963e+11         2023-05-10      Europe & Central Asia
## 7481 2.247173e+11         2023-05-10      Europe & Central Asia
## 7482 2.276959e+11         2023-05-10      Europe & Central Asia
## 7483 1.995645e+11         2023-05-10      Europe & Central Asia
## 7484 1.754921e+11         2023-05-10      Europe & Central Asia
## 7485 1.452600e+11         2023-05-10      Europe & Central Asia
## 7486 1.246724e+11         2023-05-10      Europe & Central Asia
## 7487 1.133953e+11         2023-05-10      Europe & Central Asia
## 7488 9.708508e+10         2023-05-10      Europe & Central Asia
## 7489 8.794223e+10         2023-05-10      Europe & Central Asia
## 7490 8.113312e+10         2023-05-10      Europe & Central Asia
## 7491 7.365487e+10         2023-05-10      Europe & Central Asia
## 7492 6.797815e+10         2023-05-10      Europe & Central Asia
## 7493 6.317542e+10         2023-05-10      Europe & Central Asia
## 7494 5.771074e+10         2023-05-10      Europe & Central Asia
## 7495 5.038389e+10         2023-05-10      Europe & Central Asia
## 7496 4.484276e+10         2023-05-10      Europe & Central Asia
## 7497 4.038529e+10         2023-05-10      Europe & Central Asia
## 7498           NA         2023-05-10  Latin America & Caribbean
## 7499 1.465759e+10         2023-05-10  Latin America & Caribbean
## 7500 1.381243e+10         2023-05-10  Latin America & Caribbean
## 7501 1.583077e+10         2023-05-10  Latin America & Caribbean
## 7502 1.573079e+10         2023-05-10  Latin America & Caribbean
## 7503 1.480899e+10         2023-05-10  Latin America & Caribbean
## 7504 1.407711e+10         2023-05-10  Latin America & Caribbean
## 7505 1.418894e+10         2023-05-10  Latin America & Caribbean
## 7506 1.389923e+10         2023-05-10  Latin America & Caribbean
## 7507 1.426420e+10         2023-05-10  Latin America & Caribbean
## 7508 1.480709e+10         2023-05-10  Latin America & Caribbean
## 7509 1.444466e+10         2023-05-10  Latin America & Caribbean
## 7510 1.322056e+10         2023-05-10  Latin America & Caribbean
## 7511 1.212046e+10         2023-05-10  Latin America & Caribbean
## 7512 1.370940e+10         2023-05-10  Latin America & Caribbean
## 7513 1.279959e+10         2023-05-10  Latin America & Caribbean
## 7514 1.193017e+10         2023-05-10  Latin America & Caribbean
## 7515 1.124387e+10         2023-05-10  Latin America & Caribbean
## 7516 1.017466e+10         2023-05-10  Latin America & Caribbean
## 7517 9.430231e+09         2023-05-10  Latin America & Caribbean
## 7518 9.719018e+09         2023-05-10  Latin America & Caribbean
## 7519 9.194718e+09         2023-05-10  Latin America & Caribbean
## 7520 9.005064e+09         2023-05-10  Latin America & Caribbean
## 7521 8.887062e+09         2023-05-10  Latin America & Caribbean
## 7522 8.787196e+09         2023-05-10  Latin America & Caribbean
## 7523 8.400034e+09         2023-05-10  Latin America & Caribbean
## 7524 7.393884e+09         2023-05-10  Latin America & Caribbean
## 7525 6.577524e+09         2023-05-10  Latin America & Caribbean
## 7526 5.452564e+09         2023-05-10  Latin America & Caribbean
## 7527 5.440065e+09         2023-05-10  Latin America & Caribbean
## 7528 3.535460e+09         2023-05-10  Latin America & Caribbean
## 7529 4.106199e+09         2023-05-10  Latin America & Caribbean
## 7530 4.592224e+09         2023-05-10  Latin America & Caribbean
## 7531 4.404970e+09         2023-05-10  Latin America & Caribbean
## 7532 3.828311e+09         2023-05-10  Latin America & Caribbean
## 7533 3.286988e+09         2023-05-10  Latin America & Caribbean
## 7534 2.754566e+09         2023-05-10  Latin America & Caribbean
## 7535 2.100223e+09         2023-05-10  Latin America & Caribbean
## 7536 2.373567e+09         2023-05-10  Latin America & Caribbean
## 7537 3.619294e+09         2023-05-10  Latin America & Caribbean
## 7538 3.293533e+09         2023-05-10  Latin America & Caribbean
## 7539 2.979061e+09         2023-05-10  Latin America & Caribbean
## 7540 2.679409e+09         2023-05-10  Latin America & Caribbean
## 7541 2.425034e+09         2023-05-10  Latin America & Caribbean
## 7542 2.644449e+09         2023-05-10  Latin America & Caribbean
## 7543 3.249697e+09         2023-05-10  Latin America & Caribbean
## 7544 2.966010e+09         2023-05-10  Latin America & Caribbean
## 7545 2.860411e+09         2023-05-10  Latin America & Caribbean
## 7546 2.375096e+09         2023-05-10  Latin America & Caribbean
## 7547 1.905918e+09         2023-05-10  Latin America & Caribbean
## 7548 1.875049e+09         2023-05-10  Latin America & Caribbean
## 7549 1.539866e+09         2023-05-10  Latin America & Caribbean
## 7550 1.404776e+09         2023-05-10  Latin America & Caribbean
## 7551 1.191288e+09         2023-05-10  Latin America & Caribbean
## 7552 1.083883e+09         2023-05-10  Latin America & Caribbean
## 7553 1.148025e+09         2023-05-10  Latin America & Caribbean
## 7554 1.096738e+09         2023-05-10  Latin America & Caribbean
## 7555 9.721406e+08         2023-05-10  Latin America & Caribbean
## 7556 8.979314e+08         2023-05-10  Latin America & Caribbean
## 7557 8.266905e+08         2023-05-10  Latin America & Caribbean
## 7558 7.777124e+08         2023-05-10  Latin America & Caribbean
## 7559 7.480288e+08         2023-05-10  Latin America & Caribbean
## 7560 6.990507e+08         2023-05-10  Latin America & Caribbean
## 7561           NA         2023-05-10        East Asia & Pacific
## 7562 4.940878e+12         2023-05-10        East Asia & Pacific
## 7563 5.040108e+12         2023-05-10        East Asia & Pacific
## 7564 5.123318e+12         2023-05-10        East Asia & Pacific
## 7565 5.037835e+12         2023-05-10        East Asia & Pacific
## 7566 4.930837e+12         2023-05-10        East Asia & Pacific
## 7567 5.003678e+12         2023-05-10        East Asia & Pacific
## 7568 4.444931e+12         2023-05-10        East Asia & Pacific
## 7569 4.896994e+12         2023-05-10        East Asia & Pacific
## 7570 5.212328e+12         2023-05-10        East Asia & Pacific
## 7571 6.272363e+12         2023-05-10        East Asia & Pacific
## 7572 6.233147e+12         2023-05-10        East Asia & Pacific
## 7573 5.759072e+12         2023-05-10        East Asia & Pacific
## 7574 5.289493e+12         2023-05-10        East Asia & Pacific
## 7575 5.106679e+12         2023-05-10        East Asia & Pacific
## 7576 4.579751e+12         2023-05-10        East Asia & Pacific
## 7577 4.601663e+12         2023-05-10        East Asia & Pacific
## 7578 4.831467e+12         2023-05-10        East Asia & Pacific
## 7579 4.893116e+12         2023-05-10        East Asia & Pacific
## 7580 4.519562e+12         2023-05-10        East Asia & Pacific
## 7581 4.182846e+12         2023-05-10        East Asia & Pacific
## 7582 4.374712e+12         2023-05-10        East Asia & Pacific
## 7583 4.968359e+12         2023-05-10        East Asia & Pacific
## 7584 4.635982e+12         2023-05-10        East Asia & Pacific
## 7585 4.098363e+12         2023-05-10        East Asia & Pacific
## 7586 4.492449e+12         2023-05-10        East Asia & Pacific
## 7587 4.923392e+12         2023-05-10        East Asia & Pacific
## 7588 5.545564e+12         2023-05-10        East Asia & Pacific
## 7589 4.998798e+12         2023-05-10        East Asia & Pacific
## 7590 4.454144e+12         2023-05-10        East Asia & Pacific
## 7591 3.908809e+12         2023-05-10        East Asia & Pacific
## 7592 3.584420e+12         2023-05-10        East Asia & Pacific
## 7593 3.132818e+12         2023-05-10        East Asia & Pacific
## 7594 3.054914e+12         2023-05-10        East Asia & Pacific
## 7595 3.071683e+12         2023-05-10        East Asia & Pacific
## 7596 2.532809e+12         2023-05-10        East Asia & Pacific
## 7597 2.078953e+12         2023-05-10        East Asia & Pacific
## 7598 1.398893e+12         2023-05-10        East Asia & Pacific
## 7599 1.318382e+12         2023-05-10        East Asia & Pacific
## 7600 1.243324e+12         2023-05-10        East Asia & Pacific
## 7601 1.134518e+12         2023-05-10        East Asia & Pacific
## 7602 1.218989e+12         2023-05-10        East Asia & Pacific
## 7603 1.105386e+12         2023-05-10        East Asia & Pacific
## 7604 1.055012e+12         2023-05-10        East Asia & Pacific
## 7605 1.013612e+12         2023-05-10        East Asia & Pacific
## 7606 7.214118e+11         2023-05-10        East Asia & Pacific
## 7607 5.861619e+11         2023-05-10        East Asia & Pacific
## 7608 5.215419e+11         2023-05-10        East Asia & Pacific
## 7609 4.796260e+11         2023-05-10        East Asia & Pacific
## 7610 4.320827e+11         2023-05-10        East Asia & Pacific
## 7611 3.180313e+11         2023-05-10        East Asia & Pacific
## 7612 2.401518e+11         2023-05-10        East Asia & Pacific
## 7613 2.126092e+11         2023-05-10        East Asia & Pacific
## 7614 1.722042e+11         2023-05-10        East Asia & Pacific
## 7615 1.466011e+11         2023-05-10        East Asia & Pacific
## 7616 1.237819e+11         2023-05-10        East Asia & Pacific
## 7617 1.056281e+11         2023-05-10        East Asia & Pacific
## 7618 9.095028e+10         2023-05-10        East Asia & Pacific
## 7619 8.174901e+10         2023-05-10        East Asia & Pacific
## 7620 6.949813e+10         2023-05-10        East Asia & Pacific
## 7621 6.072302e+10         2023-05-10        East Asia & Pacific
## 7622 5.350862e+10         2023-05-10        East Asia & Pacific
## 7623 4.430734e+10         2023-05-10        East Asia & Pacific
## 7624           NA         2023-05-10 Middle East & North Africa
## 7625 4.574427e+10         2023-05-10 Middle East & North Africa
## 7626 4.418230e+10         2023-05-10 Middle East & North Africa
## 7627 4.499399e+10         2023-05-10 Middle East & North Africa
## 7628 4.337086e+10         2023-05-10 Middle East & North Africa
## 7629 4.160844e+10         2023-05-10 Middle East & North Africa
## 7630 3.989255e+10         2023-05-10 Middle East & North Africa
## 7631 3.858702e+10         2023-05-10 Middle East & North Africa
## 7632 3.684764e+10         2023-05-10 Middle East & North Africa
## 7633 3.445444e+10         2023-05-10 Middle East & North Africa
## 7634 3.163456e+10         2023-05-10 Middle East & North Africa
## 7635 2.952415e+10         2023-05-10 Middle East & North Africa
## 7636 2.713380e+10         2023-05-10 Middle East & North Africa
## 7637 2.453788e+10         2023-05-10 Middle East & North Africa
## 7638 2.265766e+10         2023-05-10 Middle East & North Africa
## 7639 1.711044e+10         2023-05-10 Middle East & North Africa
## 7640 1.505698e+10         2023-05-10 Middle East & North Africa
## 7641 1.258900e+10         2023-05-10 Middle East & North Africa
## 7642 1.141171e+10         2023-05-10 Middle East & North Africa
## 7643 1.019563e+10         2023-05-10 Middle East & North Africa
## 7644 9.582511e+09         2023-05-10 Middle East & North Africa
## 7645 8.975599e+09         2023-05-10 Middle East & North Africa
## 7646 8.460790e+09         2023-05-10 Middle East & North Africa
## 7647 8.149929e+09         2023-05-10 Middle East & North Africa
## 7648 7.912271e+09         2023-05-10 Middle East & North Africa
## 7649 7.245839e+09         2023-05-10 Middle East & North Africa
## 7650 6.927504e+09         2023-05-10 Middle East & North Africa
## 7651 6.727597e+09         2023-05-10 Middle East & North Africa
## 7652 6.236296e+09         2023-05-10 Middle East & North Africa
## 7653 5.606004e+09         2023-05-10 Middle East & North Africa
## 7654 5.310974e+09         2023-05-10 Middle East & North Africa
## 7655 4.344250e+09         2023-05-10 Middle East & North Africa
## 7656 4.160163e+09         2023-05-10 Middle East & North Africa
## 7657 4.221197e+09         2023-05-10 Middle East & North Africa
## 7658 6.277318e+09         2023-05-10 Middle East & North Africa
## 7659 6.755391e+09         2023-05-10 Middle East & North Africa
## 7660 6.401429e+09         2023-05-10 Middle East & North Africa
## 7661 4.993918e+09         2023-05-10 Middle East & North Africa
## 7662 4.966710e+09         2023-05-10 Middle East & North Africa
## 7663 4.920408e+09         2023-05-10 Middle East & North Africa
## 7664 4.681135e+09         2023-05-10 Middle East & North Africa
## 7665 4.384383e+09         2023-05-10 Middle East & North Africa
## 7666 3.910373e+09         2023-05-10 Middle East & North Africa
## 7667 3.271728e+09         2023-05-10 Middle East & North Africa
## 7668 2.602421e+09         2023-05-10 Middle East & North Africa
## 7669 2.096568e+09         2023-05-10 Middle East & North Africa
## 7670 1.708434e+09         2023-05-10 Middle East & North Africa
## 7671 1.363039e+09         2023-05-10 Middle East & North Africa
## 7672 1.197454e+09         2023-05-10 Middle East & North Africa
## 7673 9.437005e+08         2023-05-10 Middle East & North Africa
## 7674 7.885746e+08         2023-05-10 Middle East & North Africa
## 7675 6.782414e+08         2023-05-10 Middle East & North Africa
## 7676 6.395968e+08         2023-05-10 Middle East & North Africa
## 7677 6.989639e+08         2023-05-10 Middle East & North Africa
## 7678 5.611873e+08         2023-05-10 Middle East & North Africa
## 7679 6.317558e+08         2023-05-10 Middle East & North Africa
## 7680 6.580790e+08         2023-05-10 Middle East & North Africa
## 7681 5.998320e+08         2023-05-10 Middle East & North Africa
## 7682           NA         2023-05-10 Middle East & North Africa
## 7683           NA         2023-05-10 Middle East & North Africa
## 7684           NA         2023-05-10 Middle East & North Africa
## 7685           NA         2023-05-10 Middle East & North Africa
## 7686           NA         2023-05-10 Middle East & North Africa
## 7687           NA         2023-05-10      Europe & Central Asia
## 7688 1.971123e+11         2023-05-10      Europe & Central Asia
## 7689 1.710824e+11         2023-05-10      Europe & Central Asia
## 7690 1.816672e+11         2023-05-10      Europe & Central Asia
## 7691 1.793400e+11         2023-05-10      Europe & Central Asia
## 7692 1.668058e+11         2023-05-10      Europe & Central Asia
##                  capital  longitude  latitude              income
## 1                  Kabul    69.1761   34.5228          Low income
## 2                  Kabul    69.1761   34.5228          Low income
## 3                  Kabul    69.1761   34.5228          Low income
## 4                  Kabul    69.1761   34.5228          Low income
## 5                  Kabul    69.1761   34.5228          Low income
## 6                  Kabul    69.1761   34.5228          Low income
## 7                  Kabul    69.1761   34.5228          Low income
## 8                  Kabul    69.1761   34.5228          Low income
## 9                  Kabul    69.1761   34.5228          Low income
## 10                 Kabul    69.1761   34.5228          Low income
## 11                 Kabul    69.1761   34.5228          Low income
## 12                 Kabul    69.1761   34.5228          Low income
## 13                 Kabul    69.1761   34.5228          Low income
## 14                 Kabul    69.1761   34.5228          Low income
## 15                 Kabul    69.1761   34.5228          Low income
## 16                 Kabul    69.1761   34.5228          Low income
## 17                 Kabul    69.1761   34.5228          Low income
## 18                 Kabul    69.1761   34.5228          Low income
## 19                 Kabul    69.1761   34.5228          Low income
## 20                 Kabul    69.1761   34.5228          Low income
## 21                 Kabul    69.1761   34.5228          Low income
## 22                 Kabul    69.1761   34.5228          Low income
## 23                 Kabul    69.1761   34.5228          Low income
## 24                 Kabul    69.1761   34.5228          Low income
## 25                 Kabul    69.1761   34.5228          Low income
## 26                 Kabul    69.1761   34.5228          Low income
## 27                 Kabul    69.1761   34.5228          Low income
## 28                 Kabul    69.1761   34.5228          Low income
## 29                 Kabul    69.1761   34.5228          Low income
## 30                 Kabul    69.1761   34.5228          Low income
## 31                 Kabul    69.1761   34.5228          Low income
## 32                 Kabul    69.1761   34.5228          Low income
## 33                 Kabul    69.1761   34.5228          Low income
## 34                 Kabul    69.1761   34.5228          Low income
## 35                 Kabul    69.1761   34.5228          Low income
## 36                 Kabul    69.1761   34.5228          Low income
## 37                 Kabul    69.1761   34.5228          Low income
## 38                 Kabul    69.1761   34.5228          Low income
## 39                 Kabul    69.1761   34.5228          Low income
## 40                 Kabul    69.1761   34.5228          Low income
## 41                 Kabul    69.1761   34.5228          Low income
## 42                 Kabul    69.1761   34.5228          Low income
## 43                 Kabul    69.1761   34.5228          Low income
## 44                 Kabul    69.1761   34.5228          Low income
## 45                 Kabul    69.1761   34.5228          Low income
## 46                 Kabul    69.1761   34.5228          Low income
## 47                 Kabul    69.1761   34.5228          Low income
## 48                 Kabul    69.1761   34.5228          Low income
## 49                 Kabul    69.1761   34.5228          Low income
## 50                 Kabul    69.1761   34.5228          Low income
## 51                 Kabul    69.1761   34.5228          Low income
## 52                 Kabul    69.1761   34.5228          Low income
## 53                 Kabul    69.1761   34.5228          Low income
## 54                 Kabul    69.1761   34.5228          Low income
## 55                 Kabul    69.1761   34.5228          Low income
## 56                 Kabul    69.1761   34.5228          Low income
## 57                 Kabul    69.1761   34.5228          Low income
## 58                 Kabul    69.1761   34.5228          Low income
## 59                 Kabul    69.1761   34.5228          Low income
## 60                 Kabul    69.1761   34.5228          Low income
## 61                 Kabul    69.1761   34.5228          Low income
## 62                 Kabul    69.1761   34.5228          Low income
## 63                 Kabul    69.1761   34.5228          Low income
## 64                                                     Aggregates
## 65                                                     Aggregates
## 66                                                     Aggregates
## 67                                                     Aggregates
## 68                                                     Aggregates
## 69                                                     Aggregates
## 70                                                     Aggregates
## 71                                                     Aggregates
## 72                                                     Aggregates
## 73                                                     Aggregates
## 74                                                     Aggregates
## 75                                                     Aggregates
## 76                                                     Aggregates
## 77                                                     Aggregates
## 78                                                     Aggregates
## 79                                                     Aggregates
## 80                                                     Aggregates
## 81                                                     Aggregates
## 82                                                     Aggregates
## 83                                                     Aggregates
## 84                                                     Aggregates
## 85                                                     Aggregates
## 86                                                     Aggregates
## 87                                                     Aggregates
## 88                                                     Aggregates
## 89                                                     Aggregates
## 90                                                     Aggregates
## 91                                                     Aggregates
## 92                                                     Aggregates
## 93                                                     Aggregates
## 94                                                     Aggregates
## 95                                                     Aggregates
## 96                                                     Aggregates
## 97                                                     Aggregates
## 98                                                     Aggregates
## 99                                                     Aggregates
## 100                                                    Aggregates
## 101                                                    Aggregates
## 102                                                    Aggregates
## 103                                                    Aggregates
## 104                                                    Aggregates
## 105                                                    Aggregates
## 106                                                    Aggregates
## 107                                                    Aggregates
## 108                                                    Aggregates
## 109                                                    Aggregates
## 110                                                    Aggregates
## 111                                                    Aggregates
## 112                                                    Aggregates
## 113                                                    Aggregates
## 114                                                    Aggregates
## 115                                                    Aggregates
## 116                                                    Aggregates
## 117                                                    Aggregates
## 118                                                    Aggregates
## 119                                                    Aggregates
## 120                                                    Aggregates
## 121                                                    Aggregates
## 122                                                    Aggregates
## 123                                                    Aggregates
## 124                                                    Aggregates
## 125                                                    Aggregates
## 126                                                    Aggregates
## 127                                                    Aggregates
## 128                                                    Aggregates
## 129                                                    Aggregates
## 130                                                    Aggregates
## 131                                                    Aggregates
## 132                                                    Aggregates
## 133                                                    Aggregates
## 134                                                    Aggregates
## 135                                                    Aggregates
## 136                                                    Aggregates
## 137                                                    Aggregates
## 138                                                    Aggregates
## 139                                                    Aggregates
## 140                                                    Aggregates
## 141                                                    Aggregates
## 142                                                    Aggregates
## 143                                                    Aggregates
## 144                                                    Aggregates
## 145                                                    Aggregates
## 146                                                    Aggregates
## 147                                                    Aggregates
## 148                                                    Aggregates
## 149                                                    Aggregates
## 150                                                    Aggregates
## 151                                                    Aggregates
## 152                                                    Aggregates
## 153                                                    Aggregates
## 154                                                    Aggregates
## 155                                                    Aggregates
## 156                                                    Aggregates
## 157                                                    Aggregates
## 158                                                    Aggregates
## 159                                                    Aggregates
## 160                                                    Aggregates
## 161                                                    Aggregates
## 162                                                    Aggregates
## 163                                                    Aggregates
## 164                                                    Aggregates
## 165                                                    Aggregates
## 166                                                    Aggregates
## 167                                                    Aggregates
## 168                                                    Aggregates
## 169                                                    Aggregates
## 170                                                    Aggregates
## 171                                                    Aggregates
## 172                                                    Aggregates
## 173                                                    Aggregates
## 174                                                    Aggregates
## 175                                                    Aggregates
## 176                                                    Aggregates
## 177                                                    Aggregates
## 178                                                    Aggregates
## 179                                                    Aggregates
## 180                                                    Aggregates
## 181                                                    Aggregates
## 182                                                    Aggregates
## 183                                                    Aggregates
## 184                                                    Aggregates
## 185                                                    Aggregates
## 186                                                    Aggregates
## 187                                                    Aggregates
## 188                                                    Aggregates
## 189                                                    Aggregates
## 190               Tirane    19.8172   41.3317 Upper middle income
## 191               Tirane    19.8172   41.3317 Upper middle income
## 192               Tirane    19.8172   41.3317 Upper middle income
## 193               Tirane    19.8172   41.3317 Upper middle income
## 194               Tirane    19.8172   41.3317 Upper middle income
## 195               Tirane    19.8172   41.3317 Upper middle income
## 196               Tirane    19.8172   41.3317 Upper middle income
## 197               Tirane    19.8172   41.3317 Upper middle income
## 198               Tirane    19.8172   41.3317 Upper middle income
## 199               Tirane    19.8172   41.3317 Upper middle income
## 200               Tirane    19.8172   41.3317 Upper middle income
## 201               Tirane    19.8172   41.3317 Upper middle income
## 202               Tirane    19.8172   41.3317 Upper middle income
## 203               Tirane    19.8172   41.3317 Upper middle income
## 204               Tirane    19.8172   41.3317 Upper middle income
## 205               Tirane    19.8172   41.3317 Upper middle income
## 206               Tirane    19.8172   41.3317 Upper middle income
## 207               Tirane    19.8172   41.3317 Upper middle income
## 208               Tirane    19.8172   41.3317 Upper middle income
## 209               Tirane    19.8172   41.3317 Upper middle income
## 210               Tirane    19.8172   41.3317 Upper middle income
## 211               Tirane    19.8172   41.3317 Upper middle income
## 212               Tirane    19.8172   41.3317 Upper middle income
## 213               Tirane    19.8172   41.3317 Upper middle income
## 214               Tirane    19.8172   41.3317 Upper middle income
## 215               Tirane    19.8172   41.3317 Upper middle income
## 216               Tirane    19.8172   41.3317 Upper middle income
## 217               Tirane    19.8172   41.3317 Upper middle income
## 218               Tirane    19.8172   41.3317 Upper middle income
## 219               Tirane    19.8172   41.3317 Upper middle income
## 220               Tirane    19.8172   41.3317 Upper middle income
## 221               Tirane    19.8172   41.3317 Upper middle income
## 222               Tirane    19.8172   41.3317 Upper middle income
## 223               Tirane    19.8172   41.3317 Upper middle income
## 224               Tirane    19.8172   41.3317 Upper middle income
## 225               Tirane    19.8172   41.3317 Upper middle income
## 226               Tirane    19.8172   41.3317 Upper middle income
## 227               Tirane    19.8172   41.3317 Upper middle income
## 228               Tirane    19.8172   41.3317 Upper middle income
## 229               Tirane    19.8172   41.3317 Upper middle income
## 230               Tirane    19.8172   41.3317 Upper middle income
## 231               Tirane    19.8172   41.3317 Upper middle income
## 232               Tirane    19.8172   41.3317 Upper middle income
## 233               Tirane    19.8172   41.3317 Upper middle income
## 234               Tirane    19.8172   41.3317 Upper middle income
## 235               Tirane    19.8172   41.3317 Upper middle income
## 236               Tirane    19.8172   41.3317 Upper middle income
## 237               Tirane    19.8172   41.3317 Upper middle income
## 238               Tirane    19.8172   41.3317 Upper middle income
## 239               Tirane    19.8172   41.3317 Upper middle income
## 240               Tirane    19.8172   41.3317 Upper middle income
## 241               Tirane    19.8172   41.3317 Upper middle income
## 242               Tirane    19.8172   41.3317 Upper middle income
## 243               Tirane    19.8172   41.3317 Upper middle income
## 244               Tirane    19.8172   41.3317 Upper middle income
## 245               Tirane    19.8172   41.3317 Upper middle income
## 246               Tirane    19.8172   41.3317 Upper middle income
## 247               Tirane    19.8172   41.3317 Upper middle income
## 248               Tirane    19.8172   41.3317 Upper middle income
## 249               Tirane    19.8172   41.3317 Upper middle income
## 250               Tirane    19.8172   41.3317 Upper middle income
## 251               Tirane    19.8172   41.3317 Upper middle income
## 252               Tirane    19.8172   41.3317 Upper middle income
## 253              Algiers    3.05097   36.7397 Lower middle income
## 254              Algiers    3.05097   36.7397 Lower middle income
## 255              Algiers    3.05097   36.7397 Lower middle income
## 256              Algiers    3.05097   36.7397 Lower middle income
## 257              Algiers    3.05097   36.7397 Lower middle income
## 258              Algiers    3.05097   36.7397 Lower middle income
## 259              Algiers    3.05097   36.7397 Lower middle income
## 260              Algiers    3.05097   36.7397 Lower middle income
## 261              Algiers    3.05097   36.7397 Lower middle income
## 262              Algiers    3.05097   36.7397 Lower middle income
## 263              Algiers    3.05097   36.7397 Lower middle income
## 264              Algiers    3.05097   36.7397 Lower middle income
## 265              Algiers    3.05097   36.7397 Lower middle income
## 266              Algiers    3.05097   36.7397 Lower middle income
## 267              Algiers    3.05097   36.7397 Lower middle income
## 268              Algiers    3.05097   36.7397 Lower middle income
## 269              Algiers    3.05097   36.7397 Lower middle income
## 270              Algiers    3.05097   36.7397 Lower middle income
## 271              Algiers    3.05097   36.7397 Lower middle income
## 272              Algiers    3.05097   36.7397 Lower middle income
## 273              Algiers    3.05097   36.7397 Lower middle income
## 274              Algiers    3.05097   36.7397 Lower middle income
## 275              Algiers    3.05097   36.7397 Lower middle income
## 276              Algiers    3.05097   36.7397 Lower middle income
## 277              Algiers    3.05097   36.7397 Lower middle income
## 278              Algiers    3.05097   36.7397 Lower middle income
## 279              Algiers    3.05097   36.7397 Lower middle income
## 280              Algiers    3.05097   36.7397 Lower middle income
## 281              Algiers    3.05097   36.7397 Lower middle income
## 282              Algiers    3.05097   36.7397 Lower middle income
## 283              Algiers    3.05097   36.7397 Lower middle income
## 284              Algiers    3.05097   36.7397 Lower middle income
## 285              Algiers    3.05097   36.7397 Lower middle income
## 286              Algiers    3.05097   36.7397 Lower middle income
## 287              Algiers    3.05097   36.7397 Lower middle income
## 288              Algiers    3.05097   36.7397 Lower middle income
## 289              Algiers    3.05097   36.7397 Lower middle income
## 290              Algiers    3.05097   36.7397 Lower middle income
## 291              Algiers    3.05097   36.7397 Lower middle income
## 292              Algiers    3.05097   36.7397 Lower middle income
## 293              Algiers    3.05097   36.7397 Lower middle income
## 294              Algiers    3.05097   36.7397 Lower middle income
## 295              Algiers    3.05097   36.7397 Lower middle income
## 296              Algiers    3.05097   36.7397 Lower middle income
## 297              Algiers    3.05097   36.7397 Lower middle income
## 298              Algiers    3.05097   36.7397 Lower middle income
## 299              Algiers    3.05097   36.7397 Lower middle income
## 300              Algiers    3.05097   36.7397 Lower middle income
## 301              Algiers    3.05097   36.7397 Lower middle income
## 302              Algiers    3.05097   36.7397 Lower middle income
## 303              Algiers    3.05097   36.7397 Lower middle income
## 304              Algiers    3.05097   36.7397 Lower middle income
## 305              Algiers    3.05097   36.7397 Lower middle income
## 306              Algiers    3.05097   36.7397 Lower middle income
## 307              Algiers    3.05097   36.7397 Lower middle income
## 308              Algiers    3.05097   36.7397 Lower middle income
## 309              Algiers    3.05097   36.7397 Lower middle income
## 310              Algiers    3.05097   36.7397 Lower middle income
## 311              Algiers    3.05097   36.7397 Lower middle income
## 312              Algiers    3.05097   36.7397 Lower middle income
## 313              Algiers    3.05097   36.7397 Lower middle income
## 314              Algiers    3.05097   36.7397 Lower middle income
## 315              Algiers    3.05097   36.7397 Lower middle income
## 316            Pago Pago   -170.691  -14.2846 Upper middle income
## 317            Pago Pago   -170.691  -14.2846 Upper middle income
## 318            Pago Pago   -170.691  -14.2846 Upper middle income
## 319            Pago Pago   -170.691  -14.2846 Upper middle income
## 320            Pago Pago   -170.691  -14.2846 Upper middle income
## 321            Pago Pago   -170.691  -14.2846 Upper middle income
## 322            Pago Pago   -170.691  -14.2846 Upper middle income
## 323            Pago Pago   -170.691  -14.2846 Upper middle income
## 324            Pago Pago   -170.691  -14.2846 Upper middle income
## 325            Pago Pago   -170.691  -14.2846 Upper middle income
## 326            Pago Pago   -170.691  -14.2846 Upper middle income
## 327            Pago Pago   -170.691  -14.2846 Upper middle income
## 328            Pago Pago   -170.691  -14.2846 Upper middle income
## 329            Pago Pago   -170.691  -14.2846 Upper middle income
## 330            Pago Pago   -170.691  -14.2846 Upper middle income
## 331            Pago Pago   -170.691  -14.2846 Upper middle income
## 332            Pago Pago   -170.691  -14.2846 Upper middle income
## 333            Pago Pago   -170.691  -14.2846 Upper middle income
## 334            Pago Pago   -170.691  -14.2846 Upper middle income
## 335            Pago Pago   -170.691  -14.2846 Upper middle income
## 336            Pago Pago   -170.691  -14.2846 Upper middle income
## 337            Pago Pago   -170.691  -14.2846 Upper middle income
## 338            Pago Pago   -170.691  -14.2846 Upper middle income
## 339            Pago Pago   -170.691  -14.2846 Upper middle income
## 340            Pago Pago   -170.691  -14.2846 Upper middle income
## 341            Pago Pago   -170.691  -14.2846 Upper middle income
## 342            Pago Pago   -170.691  -14.2846 Upper middle income
## 343            Pago Pago   -170.691  -14.2846 Upper middle income
## 344            Pago Pago   -170.691  -14.2846 Upper middle income
## 345            Pago Pago   -170.691  -14.2846 Upper middle income
## 346            Pago Pago   -170.691  -14.2846 Upper middle income
## 347            Pago Pago   -170.691  -14.2846 Upper middle income
## 348            Pago Pago   -170.691  -14.2846 Upper middle income
## 349            Pago Pago   -170.691  -14.2846 Upper middle income
## 350            Pago Pago   -170.691  -14.2846 Upper middle income
## 351            Pago Pago   -170.691  -14.2846 Upper middle income
## 352            Pago Pago   -170.691  -14.2846 Upper middle income
## 353            Pago Pago   -170.691  -14.2846 Upper middle income
## 354            Pago Pago   -170.691  -14.2846 Upper middle income
## 355            Pago Pago   -170.691  -14.2846 Upper middle income
## 356            Pago Pago   -170.691  -14.2846 Upper middle income
## 357            Pago Pago   -170.691  -14.2846 Upper middle income
## 358            Pago Pago   -170.691  -14.2846 Upper middle income
## 359            Pago Pago   -170.691  -14.2846 Upper middle income
## 360            Pago Pago   -170.691  -14.2846 Upper middle income
## 361            Pago Pago   -170.691  -14.2846 Upper middle income
## 362            Pago Pago   -170.691  -14.2846 Upper middle income
## 363            Pago Pago   -170.691  -14.2846 Upper middle income
## 364            Pago Pago   -170.691  -14.2846 Upper middle income
## 365            Pago Pago   -170.691  -14.2846 Upper middle income
## 366            Pago Pago   -170.691  -14.2846 Upper middle income
## 367            Pago Pago   -170.691  -14.2846 Upper middle income
## 368            Pago Pago   -170.691  -14.2846 Upper middle income
## 369            Pago Pago   -170.691  -14.2846 Upper middle income
## 370            Pago Pago   -170.691  -14.2846 Upper middle income
## 371            Pago Pago   -170.691  -14.2846 Upper middle income
## 372            Pago Pago   -170.691  -14.2846 Upper middle income
## 373            Pago Pago   -170.691  -14.2846 Upper middle income
## 374            Pago Pago   -170.691  -14.2846 Upper middle income
## 375            Pago Pago   -170.691  -14.2846 Upper middle income
## 376            Pago Pago   -170.691  -14.2846 Upper middle income
## 377            Pago Pago   -170.691  -14.2846 Upper middle income
## 378            Pago Pago   -170.691  -14.2846 Upper middle income
## 379     Andorra la Vella     1.5218   42.5075         High income
## 380     Andorra la Vella     1.5218   42.5075         High income
## 381     Andorra la Vella     1.5218   42.5075         High income
## 382     Andorra la Vella     1.5218   42.5075         High income
## 383     Andorra la Vella     1.5218   42.5075         High income
## 384     Andorra la Vella     1.5218   42.5075         High income
## 385     Andorra la Vella     1.5218   42.5075         High income
## 386     Andorra la Vella     1.5218   42.5075         High income
## 387     Andorra la Vella     1.5218   42.5075         High income
## 388     Andorra la Vella     1.5218   42.5075         High income
## 389     Andorra la Vella     1.5218   42.5075         High income
## 390     Andorra la Vella     1.5218   42.5075         High income
## 391     Andorra la Vella     1.5218   42.5075         High income
## 392     Andorra la Vella     1.5218   42.5075         High income
## 393     Andorra la Vella     1.5218   42.5075         High income
## 394     Andorra la Vella     1.5218   42.5075         High income
## 395     Andorra la Vella     1.5218   42.5075         High income
## 396     Andorra la Vella     1.5218   42.5075         High income
## 397     Andorra la Vella     1.5218   42.5075         High income
## 398     Andorra la Vella     1.5218   42.5075         High income
## 399     Andorra la Vella     1.5218   42.5075         High income
## 400     Andorra la Vella     1.5218   42.5075         High income
## 401     Andorra la Vella     1.5218   42.5075         High income
## 402     Andorra la Vella     1.5218   42.5075         High income
## 403     Andorra la Vella     1.5218   42.5075         High income
## 404     Andorra la Vella     1.5218   42.5075         High income
## 405     Andorra la Vella     1.5218   42.5075         High income
## 406     Andorra la Vella     1.5218   42.5075         High income
## 407     Andorra la Vella     1.5218   42.5075         High income
## 408     Andorra la Vella     1.5218   42.5075         High income
## 409     Andorra la Vella     1.5218   42.5075         High income
## 410     Andorra la Vella     1.5218   42.5075         High income
## 411     Andorra la Vella     1.5218   42.5075         High income
## 412     Andorra la Vella     1.5218   42.5075         High income
## 413     Andorra la Vella     1.5218   42.5075         High income
## 414     Andorra la Vella     1.5218   42.5075         High income
## 415     Andorra la Vella     1.5218   42.5075         High income
## 416     Andorra la Vella     1.5218   42.5075         High income
## 417     Andorra la Vella     1.5218   42.5075         High income
## 418     Andorra la Vella     1.5218   42.5075         High income
## 419     Andorra la Vella     1.5218   42.5075         High income
## 420     Andorra la Vella     1.5218   42.5075         High income
## 421     Andorra la Vella     1.5218   42.5075         High income
## 422     Andorra la Vella     1.5218   42.5075         High income
## 423     Andorra la Vella     1.5218   42.5075         High income
## 424     Andorra la Vella     1.5218   42.5075         High income
## 425     Andorra la Vella     1.5218   42.5075         High income
## 426     Andorra la Vella     1.5218   42.5075         High income
## 427     Andorra la Vella     1.5218   42.5075         High income
## 428     Andorra la Vella     1.5218   42.5075         High income
## 429     Andorra la Vella     1.5218   42.5075         High income
## 430     Andorra la Vella     1.5218   42.5075         High income
## 431     Andorra la Vella     1.5218   42.5075         High income
## 432     Andorra la Vella     1.5218   42.5075         High income
## 433     Andorra la Vella     1.5218   42.5075         High income
## 434     Andorra la Vella     1.5218   42.5075         High income
## 435     Andorra la Vella     1.5218   42.5075         High income
## 436     Andorra la Vella     1.5218   42.5075         High income
## 437     Andorra la Vella     1.5218   42.5075         High income
## 438     Andorra la Vella     1.5218   42.5075         High income
## 439     Andorra la Vella     1.5218   42.5075         High income
## 440     Andorra la Vella     1.5218   42.5075         High income
## 441     Andorra la Vella     1.5218   42.5075         High income
## 442               Luanda     13.242  -8.81155 Lower middle income
## 443               Luanda     13.242  -8.81155 Lower middle income
## 444               Luanda     13.242  -8.81155 Lower middle income
## 445               Luanda     13.242  -8.81155 Lower middle income
## 446               Luanda     13.242  -8.81155 Lower middle income
## 447               Luanda     13.242  -8.81155 Lower middle income
## 448               Luanda     13.242  -8.81155 Lower middle income
## 449               Luanda     13.242  -8.81155 Lower middle income
## 450               Luanda     13.242  -8.81155 Lower middle income
## 451               Luanda     13.242  -8.81155 Lower middle income
## 452               Luanda     13.242  -8.81155 Lower middle income
## 453               Luanda     13.242  -8.81155 Lower middle income
## 454               Luanda     13.242  -8.81155 Lower middle income
## 455               Luanda     13.242  -8.81155 Lower middle income
## 456               Luanda     13.242  -8.81155 Lower middle income
## 457               Luanda     13.242  -8.81155 Lower middle income
## 458               Luanda     13.242  -8.81155 Lower middle income
## 459               Luanda     13.242  -8.81155 Lower middle income
## 460               Luanda     13.242  -8.81155 Lower middle income
## 461               Luanda     13.242  -8.81155 Lower middle income
## 462               Luanda     13.242  -8.81155 Lower middle income
## 463               Luanda     13.242  -8.81155 Lower middle income
## 464               Luanda     13.242  -8.81155 Lower middle income
## 465               Luanda     13.242  -8.81155 Lower middle income
## 466               Luanda     13.242  -8.81155 Lower middle income
## 467               Luanda     13.242  -8.81155 Lower middle income
## 468               Luanda     13.242  -8.81155 Lower middle income
## 469               Luanda     13.242  -8.81155 Lower middle income
## 470               Luanda     13.242  -8.81155 Lower middle income
## 471               Luanda     13.242  -8.81155 Lower middle income
## 472               Luanda     13.242  -8.81155 Lower middle income
## 473               Luanda     13.242  -8.81155 Lower middle income
## 474               Luanda     13.242  -8.81155 Lower middle income
## 475               Luanda     13.242  -8.81155 Lower middle income
## 476               Luanda     13.242  -8.81155 Lower middle income
## 477               Luanda     13.242  -8.81155 Lower middle income
## 478               Luanda     13.242  -8.81155 Lower middle income
## 479               Luanda     13.242  -8.81155 Lower middle income
## 480               Luanda     13.242  -8.81155 Lower middle income
## 481               Luanda     13.242  -8.81155 Lower middle income
## 482               Luanda     13.242  -8.81155 Lower middle income
## 483               Luanda     13.242  -8.81155 Lower middle income
## 484               Luanda     13.242  -8.81155 Lower middle income
## 485               Luanda     13.242  -8.81155 Lower middle income
## 486               Luanda     13.242  -8.81155 Lower middle income
## 487               Luanda     13.242  -8.81155 Lower middle income
## 488               Luanda     13.242  -8.81155 Lower middle income
## 489               Luanda     13.242  -8.81155 Lower middle income
## 490               Luanda     13.242  -8.81155 Lower middle income
## 491               Luanda     13.242  -8.81155 Lower middle income
## 492               Luanda     13.242  -8.81155 Lower middle income
## 493               Luanda     13.242  -8.81155 Lower middle income
## 494               Luanda     13.242  -8.81155 Lower middle income
## 495               Luanda     13.242  -8.81155 Lower middle income
## 496               Luanda     13.242  -8.81155 Lower middle income
## 497               Luanda     13.242  -8.81155 Lower middle income
## 498               Luanda     13.242  -8.81155 Lower middle income
## 499               Luanda     13.242  -8.81155 Lower middle income
## 500               Luanda     13.242  -8.81155 Lower middle income
## 501               Luanda     13.242  -8.81155 Lower middle income
## 502               Luanda     13.242  -8.81155 Lower middle income
## 503               Luanda     13.242  -8.81155 Lower middle income
## 504               Luanda     13.242  -8.81155 Lower middle income
## 505         Saint John's   -61.8456   17.1175         High income
## 506         Saint John's   -61.8456   17.1175         High income
## 507         Saint John's   -61.8456   17.1175         High income
## 508         Saint John's   -61.8456   17.1175         High income
## 509         Saint John's   -61.8456   17.1175         High income
## 510         Saint John's   -61.8456   17.1175         High income
## 511         Saint John's   -61.8456   17.1175         High income
## 512         Saint John's   -61.8456   17.1175         High income
## 513         Saint John's   -61.8456   17.1175         High income
## 514         Saint John's   -61.8456   17.1175         High income
## 515         Saint John's   -61.8456   17.1175         High income
## 516         Saint John's   -61.8456   17.1175         High income
## 517         Saint John's   -61.8456   17.1175         High income
## 518         Saint John's   -61.8456   17.1175         High income
## 519         Saint John's   -61.8456   17.1175         High income
## 520         Saint John's   -61.8456   17.1175         High income
## 521         Saint John's   -61.8456   17.1175         High income
## 522         Saint John's   -61.8456   17.1175         High income
## 523         Saint John's   -61.8456   17.1175         High income
## 524         Saint John's   -61.8456   17.1175         High income
## 525         Saint John's   -61.8456   17.1175         High income
## 526         Saint John's   -61.8456   17.1175         High income
## 527         Saint John's   -61.8456   17.1175         High income
## 528         Saint John's   -61.8456   17.1175         High income
## 529         Saint John's   -61.8456   17.1175         High income
## 530         Saint John's   -61.8456   17.1175         High income
## 531         Saint John's   -61.8456   17.1175         High income
## 532         Saint John's   -61.8456   17.1175         High income
## 533         Saint John's   -61.8456   17.1175         High income
## 534         Saint John's   -61.8456   17.1175         High income
## 535         Saint John's   -61.8456   17.1175         High income
## 536         Saint John's   -61.8456   17.1175         High income
## 537         Saint John's   -61.8456   17.1175         High income
## 538         Saint John's   -61.8456   17.1175         High income
## 539         Saint John's   -61.8456   17.1175         High income
## 540         Saint John's   -61.8456   17.1175         High income
## 541         Saint John's   -61.8456   17.1175         High income
## 542         Saint John's   -61.8456   17.1175         High income
## 543         Saint John's   -61.8456   17.1175         High income
## 544         Saint John's   -61.8456   17.1175         High income
## 545         Saint John's   -61.8456   17.1175         High income
## 546         Saint John's   -61.8456   17.1175         High income
## 547         Saint John's   -61.8456   17.1175         High income
## 548         Saint John's   -61.8456   17.1175         High income
## 549         Saint John's   -61.8456   17.1175         High income
## 550         Saint John's   -61.8456   17.1175         High income
## 551         Saint John's   -61.8456   17.1175         High income
## 552         Saint John's   -61.8456   17.1175         High income
## 553         Saint John's   -61.8456   17.1175         High income
## 554         Saint John's   -61.8456   17.1175         High income
## 555         Saint John's   -61.8456   17.1175         High income
## 556         Saint John's   -61.8456   17.1175         High income
## 557         Saint John's   -61.8456   17.1175         High income
## 558         Saint John's   -61.8456   17.1175         High income
## 559         Saint John's   -61.8456   17.1175         High income
## 560         Saint John's   -61.8456   17.1175         High income
## 561         Saint John's   -61.8456   17.1175         High income
## 562         Saint John's   -61.8456   17.1175         High income
## 563         Saint John's   -61.8456   17.1175         High income
## 564         Saint John's   -61.8456   17.1175         High income
## 565         Saint John's   -61.8456   17.1175         High income
## 566         Saint John's   -61.8456   17.1175         High income
## 567         Saint John's   -61.8456   17.1175         High income
## 568                                                    Aggregates
## 569                                                    Aggregates
## 570                                                    Aggregates
## 571                                                    Aggregates
## 572                                                    Aggregates
## 573                                                    Aggregates
## 574                                                    Aggregates
## 575                                                    Aggregates
## 576                                                    Aggregates
## 577                                                    Aggregates
## 578                                                    Aggregates
## 579                                                    Aggregates
## 580                                                    Aggregates
## 581                                                    Aggregates
## 582                                                    Aggregates
## 583                                                    Aggregates
## 584                                                    Aggregates
## 585                                                    Aggregates
## 586                                                    Aggregates
## 587                                                    Aggregates
## 588                                                    Aggregates
## 589                                                    Aggregates
## 590                                                    Aggregates
## 591                                                    Aggregates
## 592                                                    Aggregates
## 593                                                    Aggregates
## 594                                                    Aggregates
## 595                                                    Aggregates
## 596                                                    Aggregates
## 597                                                    Aggregates
## 598                                                    Aggregates
## 599                                                    Aggregates
## 600                                                    Aggregates
## 601                                                    Aggregates
## 602                                                    Aggregates
## 603                                                    Aggregates
## 604                                                    Aggregates
## 605                                                    Aggregates
## 606                                                    Aggregates
## 607                                                    Aggregates
## 608                                                    Aggregates
## 609                                                    Aggregates
## 610                                                    Aggregates
## 611                                                    Aggregates
## 612                                                    Aggregates
## 613                                                    Aggregates
## 614                                                    Aggregates
## 615                                                    Aggregates
## 616                                                    Aggregates
## 617                                                    Aggregates
## 618                                                    Aggregates
## 619                                                    Aggregates
## 620                                                    Aggregates
## 621                                                    Aggregates
## 622                                                    Aggregates
## 623                                                    Aggregates
## 624                                                    Aggregates
## 625                                                    Aggregates
## 626                                                    Aggregates
## 627                                                    Aggregates
## 628                                                    Aggregates
## 629                                                    Aggregates
## 630                                                    Aggregates
## 631         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 632         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 633         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 634         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 635         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 636         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 637         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 638         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 639         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 640         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 641         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 642         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 643         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 644         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 645         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 646         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 647         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 648         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 649         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 650         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 651         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 652         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 653         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 654         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 655         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 656         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 657         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 658         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 659         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 660         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 661         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 662         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 663         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 664         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 665         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 666         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 667         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 668         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 669         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 670         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 671         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 672         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 673         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 674         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 675         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 676         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 677         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 678         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 679         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 680         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 681         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 682         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 683         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 684         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 685         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 686         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 687         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 688         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 689         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 690         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 691         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 692         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 693         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 694              Yerevan     44.509   40.1596 Upper middle income
## 695              Yerevan     44.509   40.1596 Upper middle income
## 696              Yerevan     44.509   40.1596 Upper middle income
## 697              Yerevan     44.509   40.1596 Upper middle income
## 698              Yerevan     44.509   40.1596 Upper middle income
## 699              Yerevan     44.509   40.1596 Upper middle income
## 700              Yerevan     44.509   40.1596 Upper middle income
## 701              Yerevan     44.509   40.1596 Upper middle income
## 702              Yerevan     44.509   40.1596 Upper middle income
## 703              Yerevan     44.509   40.1596 Upper middle income
## 704              Yerevan     44.509   40.1596 Upper middle income
## 705              Yerevan     44.509   40.1596 Upper middle income
## 706              Yerevan     44.509   40.1596 Upper middle income
## 707              Yerevan     44.509   40.1596 Upper middle income
## 708              Yerevan     44.509   40.1596 Upper middle income
## 709              Yerevan     44.509   40.1596 Upper middle income
## 710              Yerevan     44.509   40.1596 Upper middle income
## 711              Yerevan     44.509   40.1596 Upper middle income
## 712              Yerevan     44.509   40.1596 Upper middle income
## 713              Yerevan     44.509   40.1596 Upper middle income
## 714              Yerevan     44.509   40.1596 Upper middle income
## 715              Yerevan     44.509   40.1596 Upper middle income
## 716              Yerevan     44.509   40.1596 Upper middle income
## 717              Yerevan     44.509   40.1596 Upper middle income
## 718              Yerevan     44.509   40.1596 Upper middle income
## 719              Yerevan     44.509   40.1596 Upper middle income
## 720              Yerevan     44.509   40.1596 Upper middle income
## 721              Yerevan     44.509   40.1596 Upper middle income
## 722              Yerevan     44.509   40.1596 Upper middle income
## 723              Yerevan     44.509   40.1596 Upper middle income
## 724              Yerevan     44.509   40.1596 Upper middle income
## 725              Yerevan     44.509   40.1596 Upper middle income
## 726              Yerevan     44.509   40.1596 Upper middle income
## 727              Yerevan     44.509   40.1596 Upper middle income
## 728              Yerevan     44.509   40.1596 Upper middle income
## 729              Yerevan     44.509   40.1596 Upper middle income
## 730              Yerevan     44.509   40.1596 Upper middle income
## 731              Yerevan     44.509   40.1596 Upper middle income
## 732              Yerevan     44.509   40.1596 Upper middle income
## 733              Yerevan     44.509   40.1596 Upper middle income
## 734              Yerevan     44.509   40.1596 Upper middle income
## 735              Yerevan     44.509   40.1596 Upper middle income
## 736              Yerevan     44.509   40.1596 Upper middle income
## 737              Yerevan     44.509   40.1596 Upper middle income
## 738              Yerevan     44.509   40.1596 Upper middle income
## 739              Yerevan     44.509   40.1596 Upper middle income
## 740              Yerevan     44.509   40.1596 Upper middle income
## 741              Yerevan     44.509   40.1596 Upper middle income
## 742              Yerevan     44.509   40.1596 Upper middle income
## 743              Yerevan     44.509   40.1596 Upper middle income
## 744              Yerevan     44.509   40.1596 Upper middle income
## 745              Yerevan     44.509   40.1596 Upper middle income
## 746              Yerevan     44.509   40.1596 Upper middle income
## 747              Yerevan     44.509   40.1596 Upper middle income
## 748              Yerevan     44.509   40.1596 Upper middle income
## 749              Yerevan     44.509   40.1596 Upper middle income
## 750              Yerevan     44.509   40.1596 Upper middle income
## 751              Yerevan     44.509   40.1596 Upper middle income
## 752              Yerevan     44.509   40.1596 Upper middle income
## 753              Yerevan     44.509   40.1596 Upper middle income
## 754              Yerevan     44.509   40.1596 Upper middle income
## 755              Yerevan     44.509   40.1596 Upper middle income
## 756              Yerevan     44.509   40.1596 Upper middle income
## 757           Oranjestad   -70.0167   12.5167         High income
## 758           Oranjestad   -70.0167   12.5167         High income
## 759           Oranjestad   -70.0167   12.5167         High income
## 760           Oranjestad   -70.0167   12.5167         High income
## 761           Oranjestad   -70.0167   12.5167         High income
## 762           Oranjestad   -70.0167   12.5167         High income
## 763           Oranjestad   -70.0167   12.5167         High income
## 764           Oranjestad   -70.0167   12.5167         High income
## 765           Oranjestad   -70.0167   12.5167         High income
## 766           Oranjestad   -70.0167   12.5167         High income
## 767           Oranjestad   -70.0167   12.5167         High income
## 768           Oranjestad   -70.0167   12.5167         High income
## 769           Oranjestad   -70.0167   12.5167         High income
## 770           Oranjestad   -70.0167   12.5167         High income
## 771           Oranjestad   -70.0167   12.5167         High income
## 772           Oranjestad   -70.0167   12.5167         High income
## 773           Oranjestad   -70.0167   12.5167         High income
## 774           Oranjestad   -70.0167   12.5167         High income
## 775           Oranjestad   -70.0167   12.5167         High income
## 776           Oranjestad   -70.0167   12.5167         High income
## 777           Oranjestad   -70.0167   12.5167         High income
## 778           Oranjestad   -70.0167   12.5167         High income
## 779           Oranjestad   -70.0167   12.5167         High income
## 780           Oranjestad   -70.0167   12.5167         High income
## 781           Oranjestad   -70.0167   12.5167         High income
## 782           Oranjestad   -70.0167   12.5167         High income
## 783           Oranjestad   -70.0167   12.5167         High income
## 784           Oranjestad   -70.0167   12.5167         High income
## 785           Oranjestad   -70.0167   12.5167         High income
## 786           Oranjestad   -70.0167   12.5167         High income
## 787           Oranjestad   -70.0167   12.5167         High income
## 788           Oranjestad   -70.0167   12.5167         High income
## 789           Oranjestad   -70.0167   12.5167         High income
## 790           Oranjestad   -70.0167   12.5167         High income
## 791           Oranjestad   -70.0167   12.5167         High income
## 792           Oranjestad   -70.0167   12.5167         High income
## 793           Oranjestad   -70.0167   12.5167         High income
## 794           Oranjestad   -70.0167   12.5167         High income
## 795           Oranjestad   -70.0167   12.5167         High income
## 796           Oranjestad   -70.0167   12.5167         High income
## 797           Oranjestad   -70.0167   12.5167         High income
## 798           Oranjestad   -70.0167   12.5167         High income
## 799           Oranjestad   -70.0167   12.5167         High income
## 800           Oranjestad   -70.0167   12.5167         High income
## 801           Oranjestad   -70.0167   12.5167         High income
## 802           Oranjestad   -70.0167   12.5167         High income
## 803           Oranjestad   -70.0167   12.5167         High income
## 804           Oranjestad   -70.0167   12.5167         High income
## 805           Oranjestad   -70.0167   12.5167         High income
## 806           Oranjestad   -70.0167   12.5167         High income
## 807           Oranjestad   -70.0167   12.5167         High income
## 808           Oranjestad   -70.0167   12.5167         High income
## 809           Oranjestad   -70.0167   12.5167         High income
## 810           Oranjestad   -70.0167   12.5167         High income
## 811           Oranjestad   -70.0167   12.5167         High income
## 812           Oranjestad   -70.0167   12.5167         High income
## 813           Oranjestad   -70.0167   12.5167         High income
## 814           Oranjestad   -70.0167   12.5167         High income
## 815           Oranjestad   -70.0167   12.5167         High income
## 816           Oranjestad   -70.0167   12.5167         High income
## 817           Oranjestad   -70.0167   12.5167         High income
## 818           Oranjestad   -70.0167   12.5167         High income
## 819           Oranjestad   -70.0167   12.5167         High income
## 820             Canberra    149.129   -35.282         High income
## 821             Canberra    149.129   -35.282         High income
## 822             Canberra    149.129   -35.282         High income
## 823             Canberra    149.129   -35.282         High income
## 824             Canberra    149.129   -35.282         High income
## 825             Canberra    149.129   -35.282         High income
## 826             Canberra    149.129   -35.282         High income
## 827             Canberra    149.129   -35.282         High income
## 828             Canberra    149.129   -35.282         High income
## 829             Canberra    149.129   -35.282         High income
## 830             Canberra    149.129   -35.282         High income
## 831             Canberra    149.129   -35.282         High income
## 832             Canberra    149.129   -35.282         High income
## 833             Canberra    149.129   -35.282         High income
## 834             Canberra    149.129   -35.282         High income
## 835             Canberra    149.129   -35.282         High income
## 836             Canberra    149.129   -35.282         High income
## 837             Canberra    149.129   -35.282         High income
## 838             Canberra    149.129   -35.282         High income
## 839             Canberra    149.129   -35.282         High income
## 840             Canberra    149.129   -35.282         High income
## 841             Canberra    149.129   -35.282         High income
## 842             Canberra    149.129   -35.282         High income
## 843             Canberra    149.129   -35.282         High income
## 844             Canberra    149.129   -35.282         High income
## 845             Canberra    149.129   -35.282         High income
## 846             Canberra    149.129   -35.282         High income
## 847             Canberra    149.129   -35.282         High income
## 848             Canberra    149.129   -35.282         High income
## 849             Canberra    149.129   -35.282         High income
## 850             Canberra    149.129   -35.282         High income
## 851             Canberra    149.129   -35.282         High income
## 852             Canberra    149.129   -35.282         High income
## 853             Canberra    149.129   -35.282         High income
## 854             Canberra    149.129   -35.282         High income
## 855             Canberra    149.129   -35.282         High income
## 856             Canberra    149.129   -35.282         High income
## 857             Canberra    149.129   -35.282         High income
## 858             Canberra    149.129   -35.282         High income
## 859             Canberra    149.129   -35.282         High income
## 860             Canberra    149.129   -35.282         High income
## 861             Canberra    149.129   -35.282         High income
## 862             Canberra    149.129   -35.282         High income
## 863             Canberra    149.129   -35.282         High income
## 864             Canberra    149.129   -35.282         High income
## 865             Canberra    149.129   -35.282         High income
## 866             Canberra    149.129   -35.282         High income
## 867             Canberra    149.129   -35.282         High income
## 868             Canberra    149.129   -35.282         High income
## 869             Canberra    149.129   -35.282         High income
## 870             Canberra    149.129   -35.282         High income
## 871             Canberra    149.129   -35.282         High income
## 872             Canberra    149.129   -35.282         High income
## 873             Canberra    149.129   -35.282         High income
## 874             Canberra    149.129   -35.282         High income
## 875             Canberra    149.129   -35.282         High income
## 876             Canberra    149.129   -35.282         High income
## 877             Canberra    149.129   -35.282         High income
## 878             Canberra    149.129   -35.282         High income
## 879             Canberra    149.129   -35.282         High income
## 880             Canberra    149.129   -35.282         High income
## 881             Canberra    149.129   -35.282         High income
## 882             Canberra    149.129   -35.282         High income
## 883               Vienna    16.3798   48.2201         High income
## 884               Vienna    16.3798   48.2201         High income
## 885               Vienna    16.3798   48.2201         High income
## 886               Vienna    16.3798   48.2201         High income
## 887               Vienna    16.3798   48.2201         High income
## 888               Vienna    16.3798   48.2201         High income
## 889               Vienna    16.3798   48.2201         High income
## 890               Vienna    16.3798   48.2201         High income
## 891               Vienna    16.3798   48.2201         High income
## 892               Vienna    16.3798   48.2201         High income
## 893               Vienna    16.3798   48.2201         High income
## 894               Vienna    16.3798   48.2201         High income
## 895               Vienna    16.3798   48.2201         High income
## 896               Vienna    16.3798   48.2201         High income
## 897               Vienna    16.3798   48.2201         High income
## 898               Vienna    16.3798   48.2201         High income
## 899               Vienna    16.3798   48.2201         High income
## 900               Vienna    16.3798   48.2201         High income
## 901               Vienna    16.3798   48.2201         High income
## 902               Vienna    16.3798   48.2201         High income
## 903               Vienna    16.3798   48.2201         High income
## 904               Vienna    16.3798   48.2201         High income
## 905               Vienna    16.3798   48.2201         High income
## 906               Vienna    16.3798   48.2201         High income
## 907               Vienna    16.3798   48.2201         High income
## 908               Vienna    16.3798   48.2201         High income
## 909               Vienna    16.3798   48.2201         High income
## 910               Vienna    16.3798   48.2201         High income
## 911               Vienna    16.3798   48.2201         High income
## 912               Vienna    16.3798   48.2201         High income
## 913               Vienna    16.3798   48.2201         High income
## 914               Vienna    16.3798   48.2201         High income
## 915               Vienna    16.3798   48.2201         High income
## 916               Vienna    16.3798   48.2201         High income
## 917               Vienna    16.3798   48.2201         High income
## 918               Vienna    16.3798   48.2201         High income
## 919               Vienna    16.3798   48.2201         High income
## 920               Vienna    16.3798   48.2201         High income
## 921               Vienna    16.3798   48.2201         High income
## 922               Vienna    16.3798   48.2201         High income
## 923               Vienna    16.3798   48.2201         High income
## 924               Vienna    16.3798   48.2201         High income
## 925               Vienna    16.3798   48.2201         High income
## 926               Vienna    16.3798   48.2201         High income
## 927               Vienna    16.3798   48.2201         High income
## 928               Vienna    16.3798   48.2201         High income
## 929               Vienna    16.3798   48.2201         High income
## 930               Vienna    16.3798   48.2201         High income
## 931               Vienna    16.3798   48.2201         High income
## 932               Vienna    16.3798   48.2201         High income
## 933               Vienna    16.3798   48.2201         High income
## 934               Vienna    16.3798   48.2201         High income
## 935               Vienna    16.3798   48.2201         High income
## 936               Vienna    16.3798   48.2201         High income
## 937               Vienna    16.3798   48.2201         High income
## 938               Vienna    16.3798   48.2201         High income
## 939               Vienna    16.3798   48.2201         High income
## 940               Vienna    16.3798   48.2201         High income
## 941               Vienna    16.3798   48.2201         High income
## 942               Vienna    16.3798   48.2201         High income
## 943               Vienna    16.3798   48.2201         High income
## 944               Vienna    16.3798   48.2201         High income
## 945               Vienna    16.3798   48.2201         High income
## 946                 Baku    49.8932   40.3834 Upper middle income
## 947                 Baku    49.8932   40.3834 Upper middle income
## 948                 Baku    49.8932   40.3834 Upper middle income
## 949                 Baku    49.8932   40.3834 Upper middle income
## 950                 Baku    49.8932   40.3834 Upper middle income
## 951                 Baku    49.8932   40.3834 Upper middle income
## 952                 Baku    49.8932   40.3834 Upper middle income
## 953                 Baku    49.8932   40.3834 Upper middle income
## 954                 Baku    49.8932   40.3834 Upper middle income
## 955                 Baku    49.8932   40.3834 Upper middle income
## 956                 Baku    49.8932   40.3834 Upper middle income
## 957                 Baku    49.8932   40.3834 Upper middle income
## 958                 Baku    49.8932   40.3834 Upper middle income
## 959                 Baku    49.8932   40.3834 Upper middle income
## 960                 Baku    49.8932   40.3834 Upper middle income
## 961                 Baku    49.8932   40.3834 Upper middle income
## 962                 Baku    49.8932   40.3834 Upper middle income
## 963                 Baku    49.8932   40.3834 Upper middle income
## 964                 Baku    49.8932   40.3834 Upper middle income
## 965                 Baku    49.8932   40.3834 Upper middle income
## 966                 Baku    49.8932   40.3834 Upper middle income
## 967                 Baku    49.8932   40.3834 Upper middle income
## 968                 Baku    49.8932   40.3834 Upper middle income
## 969                 Baku    49.8932   40.3834 Upper middle income
## 970                 Baku    49.8932   40.3834 Upper middle income
## 971                 Baku    49.8932   40.3834 Upper middle income
## 972                 Baku    49.8932   40.3834 Upper middle income
## 973                 Baku    49.8932   40.3834 Upper middle income
## 974                 Baku    49.8932   40.3834 Upper middle income
## 975                 Baku    49.8932   40.3834 Upper middle income
## 976                 Baku    49.8932   40.3834 Upper middle income
## 977                 Baku    49.8932   40.3834 Upper middle income
## 978                 Baku    49.8932   40.3834 Upper middle income
## 979                 Baku    49.8932   40.3834 Upper middle income
## 980                 Baku    49.8932   40.3834 Upper middle income
## 981                 Baku    49.8932   40.3834 Upper middle income
## 982                 Baku    49.8932   40.3834 Upper middle income
## 983                 Baku    49.8932   40.3834 Upper middle income
## 984                 Baku    49.8932   40.3834 Upper middle income
## 985                 Baku    49.8932   40.3834 Upper middle income
## 986                 Baku    49.8932   40.3834 Upper middle income
## 987                 Baku    49.8932   40.3834 Upper middle income
## 988                 Baku    49.8932   40.3834 Upper middle income
## 989                 Baku    49.8932   40.3834 Upper middle income
## 990                 Baku    49.8932   40.3834 Upper middle income
## 991                 Baku    49.8932   40.3834 Upper middle income
## 992                 Baku    49.8932   40.3834 Upper middle income
## 993                 Baku    49.8932   40.3834 Upper middle income
## 994                 Baku    49.8932   40.3834 Upper middle income
## 995                 Baku    49.8932   40.3834 Upper middle income
## 996                 Baku    49.8932   40.3834 Upper middle income
## 997                 Baku    49.8932   40.3834 Upper middle income
## 998                 Baku    49.8932   40.3834 Upper middle income
## 999                 Baku    49.8932   40.3834 Upper middle income
## 1000                Baku    49.8932   40.3834 Upper middle income
## 1001                Baku    49.8932   40.3834 Upper middle income
## 1002                Baku    49.8932   40.3834 Upper middle income
## 1003                Baku    49.8932   40.3834 Upper middle income
## 1004                Baku    49.8932   40.3834 Upper middle income
## 1005                Baku    49.8932   40.3834 Upper middle income
## 1006                Baku    49.8932   40.3834 Upper middle income
## 1007                Baku    49.8932   40.3834 Upper middle income
## 1008                Baku    49.8932   40.3834 Upper middle income
## 1009              Nassau    -77.339   25.0661         High income
## 1010              Nassau    -77.339   25.0661         High income
## 1011              Nassau    -77.339   25.0661         High income
## 1012              Nassau    -77.339   25.0661         High income
## 1013              Nassau    -77.339   25.0661         High income
## 1014              Nassau    -77.339   25.0661         High income
## 1015              Nassau    -77.339   25.0661         High income
## 1016              Nassau    -77.339   25.0661         High income
## 1017              Nassau    -77.339   25.0661         High income
## 1018              Nassau    -77.339   25.0661         High income
## 1019              Nassau    -77.339   25.0661         High income
## 1020              Nassau    -77.339   25.0661         High income
## 1021              Nassau    -77.339   25.0661         High income
## 1022              Nassau    -77.339   25.0661         High income
## 1023              Nassau    -77.339   25.0661         High income
## 1024              Nassau    -77.339   25.0661         High income
## 1025              Nassau    -77.339   25.0661         High income
## 1026              Nassau    -77.339   25.0661         High income
## 1027              Nassau    -77.339   25.0661         High income
## 1028              Nassau    -77.339   25.0661         High income
## 1029              Nassau    -77.339   25.0661         High income
## 1030              Nassau    -77.339   25.0661         High income
## 1031              Nassau    -77.339   25.0661         High income
## 1032              Nassau    -77.339   25.0661         High income
## 1033              Nassau    -77.339   25.0661         High income
## 1034              Nassau    -77.339   25.0661         High income
## 1035              Nassau    -77.339   25.0661         High income
## 1036              Nassau    -77.339   25.0661         High income
## 1037              Nassau    -77.339   25.0661         High income
## 1038              Nassau    -77.339   25.0661         High income
## 1039              Nassau    -77.339   25.0661         High income
## 1040              Nassau    -77.339   25.0661         High income
## 1041              Nassau    -77.339   25.0661         High income
## 1042              Nassau    -77.339   25.0661         High income
## 1043              Nassau    -77.339   25.0661         High income
## 1044              Nassau    -77.339   25.0661         High income
## 1045              Nassau    -77.339   25.0661         High income
## 1046              Nassau    -77.339   25.0661         High income
## 1047              Nassau    -77.339   25.0661         High income
## 1048              Nassau    -77.339   25.0661         High income
## 1049              Nassau    -77.339   25.0661         High income
## 1050              Nassau    -77.339   25.0661         High income
## 1051              Nassau    -77.339   25.0661         High income
## 1052              Nassau    -77.339   25.0661         High income
## 1053              Nassau    -77.339   25.0661         High income
## 1054              Nassau    -77.339   25.0661         High income
## 1055              Nassau    -77.339   25.0661         High income
## 1056              Nassau    -77.339   25.0661         High income
## 1057              Nassau    -77.339   25.0661         High income
## 1058              Nassau    -77.339   25.0661         High income
## 1059              Nassau    -77.339   25.0661         High income
## 1060              Nassau    -77.339   25.0661         High income
## 1061              Nassau    -77.339   25.0661         High income
## 1062              Nassau    -77.339   25.0661         High income
## 1063              Nassau    -77.339   25.0661         High income
## 1064              Nassau    -77.339   25.0661         High income
## 1065              Nassau    -77.339   25.0661         High income
## 1066              Nassau    -77.339   25.0661         High income
## 1067              Nassau    -77.339   25.0661         High income
## 1068              Nassau    -77.339   25.0661         High income
## 1069              Nassau    -77.339   25.0661         High income
## 1070              Nassau    -77.339   25.0661         High income
## 1071              Nassau    -77.339   25.0661         High income
## 1072              Manama    50.5354   26.1921         High income
## 1073              Manama    50.5354   26.1921         High income
## 1074              Manama    50.5354   26.1921         High income
## 1075              Manama    50.5354   26.1921         High income
## 1076              Manama    50.5354   26.1921         High income
## 1077              Manama    50.5354   26.1921         High income
## 1078              Manama    50.5354   26.1921         High income
## 1079              Manama    50.5354   26.1921         High income
## 1080              Manama    50.5354   26.1921         High income
## 1081              Manama    50.5354   26.1921         High income
## 1082              Manama    50.5354   26.1921         High income
## 1083              Manama    50.5354   26.1921         High income
## 1084              Manama    50.5354   26.1921         High income
## 1085              Manama    50.5354   26.1921         High income
## 1086              Manama    50.5354   26.1921         High income
## 1087              Manama    50.5354   26.1921         High income
## 1088              Manama    50.5354   26.1921         High income
## 1089              Manama    50.5354   26.1921         High income
## 1090              Manama    50.5354   26.1921         High income
## 1091              Manama    50.5354   26.1921         High income
## 1092              Manama    50.5354   26.1921         High income
## 1093              Manama    50.5354   26.1921         High income
## 1094              Manama    50.5354   26.1921         High income
## 1095              Manama    50.5354   26.1921         High income
## 1096              Manama    50.5354   26.1921         High income
## 1097              Manama    50.5354   26.1921         High income
## 1098              Manama    50.5354   26.1921         High income
## 1099              Manama    50.5354   26.1921         High income
## 1100              Manama    50.5354   26.1921         High income
## 1101              Manama    50.5354   26.1921         High income
## 1102              Manama    50.5354   26.1921         High income
## 1103              Manama    50.5354   26.1921         High income
## 1104              Manama    50.5354   26.1921         High income
## 1105              Manama    50.5354   26.1921         High income
## 1106              Manama    50.5354   26.1921         High income
## 1107              Manama    50.5354   26.1921         High income
## 1108              Manama    50.5354   26.1921         High income
## 1109              Manama    50.5354   26.1921         High income
## 1110              Manama    50.5354   26.1921         High income
## 1111              Manama    50.5354   26.1921         High income
## 1112              Manama    50.5354   26.1921         High income
## 1113              Manama    50.5354   26.1921         High income
## 1114              Manama    50.5354   26.1921         High income
## 1115              Manama    50.5354   26.1921         High income
## 1116              Manama    50.5354   26.1921         High income
## 1117              Manama    50.5354   26.1921         High income
## 1118              Manama    50.5354   26.1921         High income
## 1119              Manama    50.5354   26.1921         High income
## 1120              Manama    50.5354   26.1921         High income
## 1121              Manama    50.5354   26.1921         High income
## 1122              Manama    50.5354   26.1921         High income
## 1123              Manama    50.5354   26.1921         High income
## 1124              Manama    50.5354   26.1921         High income
## 1125              Manama    50.5354   26.1921         High income
## 1126              Manama    50.5354   26.1921         High income
## 1127              Manama    50.5354   26.1921         High income
## 1128              Manama    50.5354   26.1921         High income
## 1129              Manama    50.5354   26.1921         High income
## 1130              Manama    50.5354   26.1921         High income
## 1131              Manama    50.5354   26.1921         High income
## 1132              Manama    50.5354   26.1921         High income
## 1133              Manama    50.5354   26.1921         High income
## 1134              Manama    50.5354   26.1921         High income
## 1135               Dhaka    90.4113   23.7055 Lower middle income
## 1136               Dhaka    90.4113   23.7055 Lower middle income
## 1137               Dhaka    90.4113   23.7055 Lower middle income
## 1138               Dhaka    90.4113   23.7055 Lower middle income
## 1139               Dhaka    90.4113   23.7055 Lower middle income
## 1140               Dhaka    90.4113   23.7055 Lower middle income
## 1141               Dhaka    90.4113   23.7055 Lower middle income
## 1142               Dhaka    90.4113   23.7055 Lower middle income
## 1143               Dhaka    90.4113   23.7055 Lower middle income
## 1144               Dhaka    90.4113   23.7055 Lower middle income
## 1145               Dhaka    90.4113   23.7055 Lower middle income
## 1146               Dhaka    90.4113   23.7055 Lower middle income
## 1147               Dhaka    90.4113   23.7055 Lower middle income
## 1148               Dhaka    90.4113   23.7055 Lower middle income
## 1149               Dhaka    90.4113   23.7055 Lower middle income
## 1150               Dhaka    90.4113   23.7055 Lower middle income
## 1151               Dhaka    90.4113   23.7055 Lower middle income
## 1152               Dhaka    90.4113   23.7055 Lower middle income
## 1153               Dhaka    90.4113   23.7055 Lower middle income
## 1154               Dhaka    90.4113   23.7055 Lower middle income
## 1155               Dhaka    90.4113   23.7055 Lower middle income
## 1156               Dhaka    90.4113   23.7055 Lower middle income
## 1157               Dhaka    90.4113   23.7055 Lower middle income
## 1158               Dhaka    90.4113   23.7055 Lower middle income
## 1159               Dhaka    90.4113   23.7055 Lower middle income
## 1160               Dhaka    90.4113   23.7055 Lower middle income
## 1161               Dhaka    90.4113   23.7055 Lower middle income
## 1162               Dhaka    90.4113   23.7055 Lower middle income
## 1163               Dhaka    90.4113   23.7055 Lower middle income
## 1164               Dhaka    90.4113   23.7055 Lower middle income
## 1165               Dhaka    90.4113   23.7055 Lower middle income
## 1166               Dhaka    90.4113   23.7055 Lower middle income
## 1167               Dhaka    90.4113   23.7055 Lower middle income
## 1168               Dhaka    90.4113   23.7055 Lower middle income
## 1169               Dhaka    90.4113   23.7055 Lower middle income
## 1170               Dhaka    90.4113   23.7055 Lower middle income
## 1171               Dhaka    90.4113   23.7055 Lower middle income
## 1172               Dhaka    90.4113   23.7055 Lower middle income
## 1173               Dhaka    90.4113   23.7055 Lower middle income
## 1174               Dhaka    90.4113   23.7055 Lower middle income
## 1175               Dhaka    90.4113   23.7055 Lower middle income
## 1176               Dhaka    90.4113   23.7055 Lower middle income
## 1177               Dhaka    90.4113   23.7055 Lower middle income
## 1178               Dhaka    90.4113   23.7055 Lower middle income
## 1179               Dhaka    90.4113   23.7055 Lower middle income
## 1180               Dhaka    90.4113   23.7055 Lower middle income
## 1181               Dhaka    90.4113   23.7055 Lower middle income
## 1182               Dhaka    90.4113   23.7055 Lower middle income
## 1183               Dhaka    90.4113   23.7055 Lower middle income
## 1184               Dhaka    90.4113   23.7055 Lower middle income
## 1185               Dhaka    90.4113   23.7055 Lower middle income
## 1186               Dhaka    90.4113   23.7055 Lower middle income
## 1187               Dhaka    90.4113   23.7055 Lower middle income
## 1188               Dhaka    90.4113   23.7055 Lower middle income
## 1189               Dhaka    90.4113   23.7055 Lower middle income
## 1190               Dhaka    90.4113   23.7055 Lower middle income
## 1191               Dhaka    90.4113   23.7055 Lower middle income
## 1192               Dhaka    90.4113   23.7055 Lower middle income
## 1193               Dhaka    90.4113   23.7055 Lower middle income
## 1194               Dhaka    90.4113   23.7055 Lower middle income
## 1195               Dhaka    90.4113   23.7055 Lower middle income
## 1196               Dhaka    90.4113   23.7055 Lower middle income
## 1197               Dhaka    90.4113   23.7055 Lower middle income
## 1198          Bridgetown   -59.6105   13.0935         High income
## 1199          Bridgetown   -59.6105   13.0935         High income
## 1200          Bridgetown   -59.6105   13.0935         High income
## 1201          Bridgetown   -59.6105   13.0935         High income
## 1202          Bridgetown   -59.6105   13.0935         High income
## 1203          Bridgetown   -59.6105   13.0935         High income
## 1204          Bridgetown   -59.6105   13.0935         High income
## 1205          Bridgetown   -59.6105   13.0935         High income
## 1206          Bridgetown   -59.6105   13.0935         High income
## 1207          Bridgetown   -59.6105   13.0935         High income
## 1208          Bridgetown   -59.6105   13.0935         High income
## 1209          Bridgetown   -59.6105   13.0935         High income
## 1210          Bridgetown   -59.6105   13.0935         High income
## 1211          Bridgetown   -59.6105   13.0935         High income
## 1212          Bridgetown   -59.6105   13.0935         High income
## 1213          Bridgetown   -59.6105   13.0935         High income
## 1214          Bridgetown   -59.6105   13.0935         High income
## 1215          Bridgetown   -59.6105   13.0935         High income
## 1216          Bridgetown   -59.6105   13.0935         High income
## 1217          Bridgetown   -59.6105   13.0935         High income
## 1218          Bridgetown   -59.6105   13.0935         High income
## 1219          Bridgetown   -59.6105   13.0935         High income
## 1220          Bridgetown   -59.6105   13.0935         High income
## 1221          Bridgetown   -59.6105   13.0935         High income
## 1222          Bridgetown   -59.6105   13.0935         High income
## 1223          Bridgetown   -59.6105   13.0935         High income
## 1224          Bridgetown   -59.6105   13.0935         High income
## 1225          Bridgetown   -59.6105   13.0935         High income
## 1226          Bridgetown   -59.6105   13.0935         High income
## 1227          Bridgetown   -59.6105   13.0935         High income
## 1228          Bridgetown   -59.6105   13.0935         High income
## 1229          Bridgetown   -59.6105   13.0935         High income
## 1230          Bridgetown   -59.6105   13.0935         High income
## 1231          Bridgetown   -59.6105   13.0935         High income
## 1232          Bridgetown   -59.6105   13.0935         High income
## 1233          Bridgetown   -59.6105   13.0935         High income
## 1234          Bridgetown   -59.6105   13.0935         High income
## 1235          Bridgetown   -59.6105   13.0935         High income
## 1236          Bridgetown   -59.6105   13.0935         High income
## 1237          Bridgetown   -59.6105   13.0935         High income
## 1238          Bridgetown   -59.6105   13.0935         High income
## 1239          Bridgetown   -59.6105   13.0935         High income
## 1240          Bridgetown   -59.6105   13.0935         High income
## 1241          Bridgetown   -59.6105   13.0935         High income
## 1242          Bridgetown   -59.6105   13.0935         High income
## 1243          Bridgetown   -59.6105   13.0935         High income
## 1244          Bridgetown   -59.6105   13.0935         High income
## 1245          Bridgetown   -59.6105   13.0935         High income
## 1246          Bridgetown   -59.6105   13.0935         High income
## 1247          Bridgetown   -59.6105   13.0935         High income
## 1248          Bridgetown   -59.6105   13.0935         High income
## 1249          Bridgetown   -59.6105   13.0935         High income
## 1250          Bridgetown   -59.6105   13.0935         High income
## 1251          Bridgetown   -59.6105   13.0935         High income
## 1252          Bridgetown   -59.6105   13.0935         High income
## 1253          Bridgetown   -59.6105   13.0935         High income
## 1254          Bridgetown   -59.6105   13.0935         High income
## 1255          Bridgetown   -59.6105   13.0935         High income
## 1256          Bridgetown   -59.6105   13.0935         High income
## 1257          Bridgetown   -59.6105   13.0935         High income
## 1258          Bridgetown   -59.6105   13.0935         High income
## 1259          Bridgetown   -59.6105   13.0935         High income
## 1260          Bridgetown   -59.6105   13.0935         High income
## 1261               Minsk    27.5766   53.9678 Upper middle income
## 1262               Minsk    27.5766   53.9678 Upper middle income
## 1263               Minsk    27.5766   53.9678 Upper middle income
## 1264               Minsk    27.5766   53.9678 Upper middle income
## 1265               Minsk    27.5766   53.9678 Upper middle income
## 1266               Minsk    27.5766   53.9678 Upper middle income
## 1267               Minsk    27.5766   53.9678 Upper middle income
## 1268               Minsk    27.5766   53.9678 Upper middle income
## 1269               Minsk    27.5766   53.9678 Upper middle income
## 1270               Minsk    27.5766   53.9678 Upper middle income
## 1271               Minsk    27.5766   53.9678 Upper middle income
## 1272               Minsk    27.5766   53.9678 Upper middle income
## 1273               Minsk    27.5766   53.9678 Upper middle income
## 1274               Minsk    27.5766   53.9678 Upper middle income
## 1275               Minsk    27.5766   53.9678 Upper middle income
## 1276               Minsk    27.5766   53.9678 Upper middle income
## 1277               Minsk    27.5766   53.9678 Upper middle income
## 1278               Minsk    27.5766   53.9678 Upper middle income
## 1279               Minsk    27.5766   53.9678 Upper middle income
## 1280               Minsk    27.5766   53.9678 Upper middle income
## 1281               Minsk    27.5766   53.9678 Upper middle income
## 1282               Minsk    27.5766   53.9678 Upper middle income
## 1283               Minsk    27.5766   53.9678 Upper middle income
## 1284               Minsk    27.5766   53.9678 Upper middle income
## 1285               Minsk    27.5766   53.9678 Upper middle income
## 1286               Minsk    27.5766   53.9678 Upper middle income
## 1287               Minsk    27.5766   53.9678 Upper middle income
## 1288               Minsk    27.5766   53.9678 Upper middle income
## 1289               Minsk    27.5766   53.9678 Upper middle income
## 1290               Minsk    27.5766   53.9678 Upper middle income
## 1291               Minsk    27.5766   53.9678 Upper middle income
## 1292               Minsk    27.5766   53.9678 Upper middle income
## 1293               Minsk    27.5766   53.9678 Upper middle income
## 1294               Minsk    27.5766   53.9678 Upper middle income
## 1295               Minsk    27.5766   53.9678 Upper middle income
## 1296               Minsk    27.5766   53.9678 Upper middle income
## 1297               Minsk    27.5766   53.9678 Upper middle income
## 1298               Minsk    27.5766   53.9678 Upper middle income
## 1299               Minsk    27.5766   53.9678 Upper middle income
## 1300               Minsk    27.5766   53.9678 Upper middle income
## 1301               Minsk    27.5766   53.9678 Upper middle income
## 1302               Minsk    27.5766   53.9678 Upper middle income
## 1303               Minsk    27.5766   53.9678 Upper middle income
## 1304               Minsk    27.5766   53.9678 Upper middle income
## 1305               Minsk    27.5766   53.9678 Upper middle income
## 1306               Minsk    27.5766   53.9678 Upper middle income
## 1307               Minsk    27.5766   53.9678 Upper middle income
## 1308               Minsk    27.5766   53.9678 Upper middle income
## 1309               Minsk    27.5766   53.9678 Upper middle income
## 1310               Minsk    27.5766   53.9678 Upper middle income
## 1311               Minsk    27.5766   53.9678 Upper middle income
## 1312               Minsk    27.5766   53.9678 Upper middle income
## 1313               Minsk    27.5766   53.9678 Upper middle income
## 1314               Minsk    27.5766   53.9678 Upper middle income
## 1315               Minsk    27.5766   53.9678 Upper middle income
## 1316               Minsk    27.5766   53.9678 Upper middle income
## 1317               Minsk    27.5766   53.9678 Upper middle income
## 1318               Minsk    27.5766   53.9678 Upper middle income
## 1319               Minsk    27.5766   53.9678 Upper middle income
## 1320               Minsk    27.5766   53.9678 Upper middle income
## 1321               Minsk    27.5766   53.9678 Upper middle income
## 1322               Minsk    27.5766   53.9678 Upper middle income
## 1323               Minsk    27.5766   53.9678 Upper middle income
## 1324            Brussels    4.36761   50.8371         High income
## 1325            Brussels    4.36761   50.8371         High income
## 1326            Brussels    4.36761   50.8371         High income
## 1327            Brussels    4.36761   50.8371         High income
## 1328            Brussels    4.36761   50.8371         High income
## 1329            Brussels    4.36761   50.8371         High income
## 1330            Brussels    4.36761   50.8371         High income
## 1331            Brussels    4.36761   50.8371         High income
## 1332            Brussels    4.36761   50.8371         High income
## 1333            Brussels    4.36761   50.8371         High income
## 1334            Brussels    4.36761   50.8371         High income
## 1335            Brussels    4.36761   50.8371         High income
## 1336            Brussels    4.36761   50.8371         High income
## 1337            Brussels    4.36761   50.8371         High income
## 1338            Brussels    4.36761   50.8371         High income
## 1339            Brussels    4.36761   50.8371         High income
## 1340            Brussels    4.36761   50.8371         High income
## 1341            Brussels    4.36761   50.8371         High income
## 1342            Brussels    4.36761   50.8371         High income
## 1343            Brussels    4.36761   50.8371         High income
## 1344            Brussels    4.36761   50.8371         High income
## 1345            Brussels    4.36761   50.8371         High income
## 1346            Brussels    4.36761   50.8371         High income
## 1347            Brussels    4.36761   50.8371         High income
## 1348            Brussels    4.36761   50.8371         High income
## 1349            Brussels    4.36761   50.8371         High income
## 1350            Brussels    4.36761   50.8371         High income
## 1351            Brussels    4.36761   50.8371         High income
## 1352            Brussels    4.36761   50.8371         High income
## 1353            Brussels    4.36761   50.8371         High income
## 1354            Brussels    4.36761   50.8371         High income
## 1355            Brussels    4.36761   50.8371         High income
## 1356            Brussels    4.36761   50.8371         High income
## 1357            Brussels    4.36761   50.8371         High income
## 1358            Brussels    4.36761   50.8371         High income
## 1359            Brussels    4.36761   50.8371         High income
## 1360            Brussels    4.36761   50.8371         High income
## 1361            Brussels    4.36761   50.8371         High income
## 1362            Brussels    4.36761   50.8371         High income
## 1363            Brussels    4.36761   50.8371         High income
## 1364            Brussels    4.36761   50.8371         High income
## 1365            Brussels    4.36761   50.8371         High income
## 1366            Brussels    4.36761   50.8371         High income
## 1367            Brussels    4.36761   50.8371         High income
## 1368            Brussels    4.36761   50.8371         High income
## 1369            Brussels    4.36761   50.8371         High income
## 1370            Brussels    4.36761   50.8371         High income
## 1371            Brussels    4.36761   50.8371         High income
## 1372            Brussels    4.36761   50.8371         High income
## 1373            Brussels    4.36761   50.8371         High income
## 1374            Brussels    4.36761   50.8371         High income
## 1375            Brussels    4.36761   50.8371         High income
## 1376            Brussels    4.36761   50.8371         High income
## 1377            Brussels    4.36761   50.8371         High income
## 1378            Brussels    4.36761   50.8371         High income
## 1379            Brussels    4.36761   50.8371         High income
## 1380            Brussels    4.36761   50.8371         High income
## 1381            Brussels    4.36761   50.8371         High income
## 1382            Brussels    4.36761   50.8371         High income
## 1383            Brussels    4.36761   50.8371         High income
## 1384            Brussels    4.36761   50.8371         High income
## 1385            Brussels    4.36761   50.8371         High income
## 1386            Brussels    4.36761   50.8371         High income
## 1387            Belmopan   -88.7713   17.2534 Upper middle income
## 1388            Belmopan   -88.7713   17.2534 Upper middle income
## 1389            Belmopan   -88.7713   17.2534 Upper middle income
## 1390            Belmopan   -88.7713   17.2534 Upper middle income
## 1391            Belmopan   -88.7713   17.2534 Upper middle income
## 1392            Belmopan   -88.7713   17.2534 Upper middle income
## 1393            Belmopan   -88.7713   17.2534 Upper middle income
## 1394            Belmopan   -88.7713   17.2534 Upper middle income
## 1395            Belmopan   -88.7713   17.2534 Upper middle income
## 1396            Belmopan   -88.7713   17.2534 Upper middle income
## 1397            Belmopan   -88.7713   17.2534 Upper middle income
## 1398            Belmopan   -88.7713   17.2534 Upper middle income
## 1399            Belmopan   -88.7713   17.2534 Upper middle income
## 1400            Belmopan   -88.7713   17.2534 Upper middle income
## 1401            Belmopan   -88.7713   17.2534 Upper middle income
## 1402            Belmopan   -88.7713   17.2534 Upper middle income
## 1403            Belmopan   -88.7713   17.2534 Upper middle income
## 1404            Belmopan   -88.7713   17.2534 Upper middle income
## 1405            Belmopan   -88.7713   17.2534 Upper middle income
## 1406            Belmopan   -88.7713   17.2534 Upper middle income
## 1407            Belmopan   -88.7713   17.2534 Upper middle income
## 1408            Belmopan   -88.7713   17.2534 Upper middle income
## 1409            Belmopan   -88.7713   17.2534 Upper middle income
## 1410            Belmopan   -88.7713   17.2534 Upper middle income
## 1411            Belmopan   -88.7713   17.2534 Upper middle income
## 1412            Belmopan   -88.7713   17.2534 Upper middle income
## 1413            Belmopan   -88.7713   17.2534 Upper middle income
## 1414            Belmopan   -88.7713   17.2534 Upper middle income
## 1415            Belmopan   -88.7713   17.2534 Upper middle income
## 1416            Belmopan   -88.7713   17.2534 Upper middle income
## 1417            Belmopan   -88.7713   17.2534 Upper middle income
## 1418            Belmopan   -88.7713   17.2534 Upper middle income
## 1419            Belmopan   -88.7713   17.2534 Upper middle income
## 1420            Belmopan   -88.7713   17.2534 Upper middle income
## 1421            Belmopan   -88.7713   17.2534 Upper middle income
## 1422            Belmopan   -88.7713   17.2534 Upper middle income
## 1423            Belmopan   -88.7713   17.2534 Upper middle income
## 1424            Belmopan   -88.7713   17.2534 Upper middle income
## 1425            Belmopan   -88.7713   17.2534 Upper middle income
## 1426            Belmopan   -88.7713   17.2534 Upper middle income
## 1427            Belmopan   -88.7713   17.2534 Upper middle income
## 1428            Belmopan   -88.7713   17.2534 Upper middle income
## 1429            Belmopan   -88.7713   17.2534 Upper middle income
## 1430            Belmopan   -88.7713   17.2534 Upper middle income
## 1431            Belmopan   -88.7713   17.2534 Upper middle income
## 1432            Belmopan   -88.7713   17.2534 Upper middle income
## 1433            Belmopan   -88.7713   17.2534 Upper middle income
## 1434            Belmopan   -88.7713   17.2534 Upper middle income
## 1435            Belmopan   -88.7713   17.2534 Upper middle income
## 1436            Belmopan   -88.7713   17.2534 Upper middle income
## 1437            Belmopan   -88.7713   17.2534 Upper middle income
## 1438            Belmopan   -88.7713   17.2534 Upper middle income
## 1439            Belmopan   -88.7713   17.2534 Upper middle income
## 1440            Belmopan   -88.7713   17.2534 Upper middle income
## 1441            Belmopan   -88.7713   17.2534 Upper middle income
## 1442            Belmopan   -88.7713   17.2534 Upper middle income
## 1443            Belmopan   -88.7713   17.2534 Upper middle income
## 1444            Belmopan   -88.7713   17.2534 Upper middle income
## 1445            Belmopan   -88.7713   17.2534 Upper middle income
## 1446            Belmopan   -88.7713   17.2534 Upper middle income
## 1447            Belmopan   -88.7713   17.2534 Upper middle income
## 1448            Belmopan   -88.7713   17.2534 Upper middle income
## 1449            Belmopan   -88.7713   17.2534 Upper middle income
## 1450          Porto-Novo     2.6323    6.4779 Lower middle income
## 1451          Porto-Novo     2.6323    6.4779 Lower middle income
## 1452          Porto-Novo     2.6323    6.4779 Lower middle income
## 1453          Porto-Novo     2.6323    6.4779 Lower middle income
## 1454          Porto-Novo     2.6323    6.4779 Lower middle income
## 1455          Porto-Novo     2.6323    6.4779 Lower middle income
## 1456          Porto-Novo     2.6323    6.4779 Lower middle income
## 1457          Porto-Novo     2.6323    6.4779 Lower middle income
## 1458          Porto-Novo     2.6323    6.4779 Lower middle income
## 1459          Porto-Novo     2.6323    6.4779 Lower middle income
## 1460          Porto-Novo     2.6323    6.4779 Lower middle income
## 1461          Porto-Novo     2.6323    6.4779 Lower middle income
## 1462          Porto-Novo     2.6323    6.4779 Lower middle income
## 1463          Porto-Novo     2.6323    6.4779 Lower middle income
## 1464          Porto-Novo     2.6323    6.4779 Lower middle income
## 1465          Porto-Novo     2.6323    6.4779 Lower middle income
## 1466          Porto-Novo     2.6323    6.4779 Lower middle income
## 1467          Porto-Novo     2.6323    6.4779 Lower middle income
## 1468          Porto-Novo     2.6323    6.4779 Lower middle income
## 1469          Porto-Novo     2.6323    6.4779 Lower middle income
## 1470          Porto-Novo     2.6323    6.4779 Lower middle income
## 1471          Porto-Novo     2.6323    6.4779 Lower middle income
## 1472          Porto-Novo     2.6323    6.4779 Lower middle income
## 1473          Porto-Novo     2.6323    6.4779 Lower middle income
## 1474          Porto-Novo     2.6323    6.4779 Lower middle income
## 1475          Porto-Novo     2.6323    6.4779 Lower middle income
## 1476          Porto-Novo     2.6323    6.4779 Lower middle income
## 1477          Porto-Novo     2.6323    6.4779 Lower middle income
## 1478          Porto-Novo     2.6323    6.4779 Lower middle income
## 1479          Porto-Novo     2.6323    6.4779 Lower middle income
## 1480          Porto-Novo     2.6323    6.4779 Lower middle income
## 1481          Porto-Novo     2.6323    6.4779 Lower middle income
## 1482          Porto-Novo     2.6323    6.4779 Lower middle income
## 1483          Porto-Novo     2.6323    6.4779 Lower middle income
## 1484          Porto-Novo     2.6323    6.4779 Lower middle income
## 1485          Porto-Novo     2.6323    6.4779 Lower middle income
## 1486          Porto-Novo     2.6323    6.4779 Lower middle income
## 1487          Porto-Novo     2.6323    6.4779 Lower middle income
## 1488          Porto-Novo     2.6323    6.4779 Lower middle income
## 1489          Porto-Novo     2.6323    6.4779 Lower middle income
## 1490          Porto-Novo     2.6323    6.4779 Lower middle income
## 1491          Porto-Novo     2.6323    6.4779 Lower middle income
## 1492          Porto-Novo     2.6323    6.4779 Lower middle income
## 1493          Porto-Novo     2.6323    6.4779 Lower middle income
## 1494          Porto-Novo     2.6323    6.4779 Lower middle income
## 1495          Porto-Novo     2.6323    6.4779 Lower middle income
## 1496          Porto-Novo     2.6323    6.4779 Lower middle income
## 1497          Porto-Novo     2.6323    6.4779 Lower middle income
## 1498          Porto-Novo     2.6323    6.4779 Lower middle income
## 1499          Porto-Novo     2.6323    6.4779 Lower middle income
## 1500          Porto-Novo     2.6323    6.4779 Lower middle income
## 1501          Porto-Novo     2.6323    6.4779 Lower middle income
## 1502          Porto-Novo     2.6323    6.4779 Lower middle income
## 1503          Porto-Novo     2.6323    6.4779 Lower middle income
## 1504          Porto-Novo     2.6323    6.4779 Lower middle income
## 1505          Porto-Novo     2.6323    6.4779 Lower middle income
## 1506          Porto-Novo     2.6323    6.4779 Lower middle income
## 1507          Porto-Novo     2.6323    6.4779 Lower middle income
## 1508          Porto-Novo     2.6323    6.4779 Lower middle income
## 1509          Porto-Novo     2.6323    6.4779 Lower middle income
## 1510          Porto-Novo     2.6323    6.4779 Lower middle income
## 1511          Porto-Novo     2.6323    6.4779 Lower middle income
## 1512          Porto-Novo     2.6323    6.4779 Lower middle income
## 1513            Hamilton    -64.706   32.3293         High income
## 1514            Hamilton    -64.706   32.3293         High income
## 1515            Hamilton    -64.706   32.3293         High income
## 1516            Hamilton    -64.706   32.3293         High income
## 1517            Hamilton    -64.706   32.3293         High income
## 1518            Hamilton    -64.706   32.3293         High income
## 1519            Hamilton    -64.706   32.3293         High income
## 1520            Hamilton    -64.706   32.3293         High income
## 1521            Hamilton    -64.706   32.3293         High income
## 1522            Hamilton    -64.706   32.3293         High income
## 1523            Hamilton    -64.706   32.3293         High income
## 1524            Hamilton    -64.706   32.3293         High income
## 1525            Hamilton    -64.706   32.3293         High income
## 1526            Hamilton    -64.706   32.3293         High income
## 1527            Hamilton    -64.706   32.3293         High income
## 1528            Hamilton    -64.706   32.3293         High income
## 1529            Hamilton    -64.706   32.3293         High income
## 1530            Hamilton    -64.706   32.3293         High income
## 1531            Hamilton    -64.706   32.3293         High income
## 1532            Hamilton    -64.706   32.3293         High income
## 1533            Hamilton    -64.706   32.3293         High income
## 1534            Hamilton    -64.706   32.3293         High income
## 1535            Hamilton    -64.706   32.3293         High income
## 1536            Hamilton    -64.706   32.3293         High income
## 1537            Hamilton    -64.706   32.3293         High income
## 1538            Hamilton    -64.706   32.3293         High income
## 1539            Hamilton    -64.706   32.3293         High income
## 1540            Hamilton    -64.706   32.3293         High income
## 1541            Hamilton    -64.706   32.3293         High income
## 1542            Hamilton    -64.706   32.3293         High income
## 1543            Hamilton    -64.706   32.3293         High income
## 1544            Hamilton    -64.706   32.3293         High income
## 1545            Hamilton    -64.706   32.3293         High income
## 1546            Hamilton    -64.706   32.3293         High income
## 1547            Hamilton    -64.706   32.3293         High income
## 1548            Hamilton    -64.706   32.3293         High income
## 1549            Hamilton    -64.706   32.3293         High income
## 1550            Hamilton    -64.706   32.3293         High income
## 1551            Hamilton    -64.706   32.3293         High income
## 1552            Hamilton    -64.706   32.3293         High income
## 1553            Hamilton    -64.706   32.3293         High income
## 1554            Hamilton    -64.706   32.3293         High income
## 1555            Hamilton    -64.706   32.3293         High income
## 1556            Hamilton    -64.706   32.3293         High income
## 1557            Hamilton    -64.706   32.3293         High income
## 1558            Hamilton    -64.706   32.3293         High income
## 1559            Hamilton    -64.706   32.3293         High income
## 1560            Hamilton    -64.706   32.3293         High income
## 1561            Hamilton    -64.706   32.3293         High income
## 1562            Hamilton    -64.706   32.3293         High income
## 1563            Hamilton    -64.706   32.3293         High income
## 1564            Hamilton    -64.706   32.3293         High income
## 1565            Hamilton    -64.706   32.3293         High income
## 1566            Hamilton    -64.706   32.3293         High income
## 1567            Hamilton    -64.706   32.3293         High income
## 1568            Hamilton    -64.706   32.3293         High income
## 1569            Hamilton    -64.706   32.3293         High income
## 1570            Hamilton    -64.706   32.3293         High income
## 1571            Hamilton    -64.706   32.3293         High income
## 1572            Hamilton    -64.706   32.3293         High income
## 1573            Hamilton    -64.706   32.3293         High income
## 1574            Hamilton    -64.706   32.3293         High income
## 1575            Hamilton    -64.706   32.3293         High income
## 1576             Thimphu    89.6177   27.5768 Lower middle income
## 1577             Thimphu    89.6177   27.5768 Lower middle income
## 1578             Thimphu    89.6177   27.5768 Lower middle income
## 1579             Thimphu    89.6177   27.5768 Lower middle income
## 1580             Thimphu    89.6177   27.5768 Lower middle income
## 1581             Thimphu    89.6177   27.5768 Lower middle income
## 1582             Thimphu    89.6177   27.5768 Lower middle income
## 1583             Thimphu    89.6177   27.5768 Lower middle income
## 1584             Thimphu    89.6177   27.5768 Lower middle income
## 1585             Thimphu    89.6177   27.5768 Lower middle income
## 1586             Thimphu    89.6177   27.5768 Lower middle income
## 1587             Thimphu    89.6177   27.5768 Lower middle income
## 1588             Thimphu    89.6177   27.5768 Lower middle income
## 1589             Thimphu    89.6177   27.5768 Lower middle income
## 1590             Thimphu    89.6177   27.5768 Lower middle income
## 1591             Thimphu    89.6177   27.5768 Lower middle income
## 1592             Thimphu    89.6177   27.5768 Lower middle income
## 1593             Thimphu    89.6177   27.5768 Lower middle income
## 1594             Thimphu    89.6177   27.5768 Lower middle income
## 1595             Thimphu    89.6177   27.5768 Lower middle income
## 1596             Thimphu    89.6177   27.5768 Lower middle income
## 1597             Thimphu    89.6177   27.5768 Lower middle income
## 1598             Thimphu    89.6177   27.5768 Lower middle income
## 1599             Thimphu    89.6177   27.5768 Lower middle income
## 1600             Thimphu    89.6177   27.5768 Lower middle income
## 1601             Thimphu    89.6177   27.5768 Lower middle income
## 1602             Thimphu    89.6177   27.5768 Lower middle income
## 1603             Thimphu    89.6177   27.5768 Lower middle income
## 1604             Thimphu    89.6177   27.5768 Lower middle income
## 1605             Thimphu    89.6177   27.5768 Lower middle income
## 1606             Thimphu    89.6177   27.5768 Lower middle income
## 1607             Thimphu    89.6177   27.5768 Lower middle income
## 1608             Thimphu    89.6177   27.5768 Lower middle income
## 1609             Thimphu    89.6177   27.5768 Lower middle income
## 1610             Thimphu    89.6177   27.5768 Lower middle income
## 1611             Thimphu    89.6177   27.5768 Lower middle income
## 1612             Thimphu    89.6177   27.5768 Lower middle income
## 1613             Thimphu    89.6177   27.5768 Lower middle income
## 1614             Thimphu    89.6177   27.5768 Lower middle income
## 1615             Thimphu    89.6177   27.5768 Lower middle income
## 1616             Thimphu    89.6177   27.5768 Lower middle income
## 1617             Thimphu    89.6177   27.5768 Lower middle income
## 1618             Thimphu    89.6177   27.5768 Lower middle income
## 1619             Thimphu    89.6177   27.5768 Lower middle income
## 1620             Thimphu    89.6177   27.5768 Lower middle income
## 1621             Thimphu    89.6177   27.5768 Lower middle income
## 1622             Thimphu    89.6177   27.5768 Lower middle income
## 1623             Thimphu    89.6177   27.5768 Lower middle income
## 1624             Thimphu    89.6177   27.5768 Lower middle income
## 1625             Thimphu    89.6177   27.5768 Lower middle income
## 1626             Thimphu    89.6177   27.5768 Lower middle income
## 1627             Thimphu    89.6177   27.5768 Lower middle income
## 1628             Thimphu    89.6177   27.5768 Lower middle income
## 1629             Thimphu    89.6177   27.5768 Lower middle income
## 1630             Thimphu    89.6177   27.5768 Lower middle income
## 1631             Thimphu    89.6177   27.5768 Lower middle income
## 1632             Thimphu    89.6177   27.5768 Lower middle income
## 1633             Thimphu    89.6177   27.5768 Lower middle income
## 1634             Thimphu    89.6177   27.5768 Lower middle income
## 1635             Thimphu    89.6177   27.5768 Lower middle income
## 1636             Thimphu    89.6177   27.5768 Lower middle income
## 1637             Thimphu    89.6177   27.5768 Lower middle income
## 1638             Thimphu    89.6177   27.5768 Lower middle income
## 1639              La Paz   -66.1936  -13.9908 Lower middle income
## 1640              La Paz   -66.1936  -13.9908 Lower middle income
## 1641              La Paz   -66.1936  -13.9908 Lower middle income
## 1642              La Paz   -66.1936  -13.9908 Lower middle income
## 1643              La Paz   -66.1936  -13.9908 Lower middle income
## 1644              La Paz   -66.1936  -13.9908 Lower middle income
## 1645              La Paz   -66.1936  -13.9908 Lower middle income
## 1646              La Paz   -66.1936  -13.9908 Lower middle income
## 1647              La Paz   -66.1936  -13.9908 Lower middle income
## 1648              La Paz   -66.1936  -13.9908 Lower middle income
## 1649              La Paz   -66.1936  -13.9908 Lower middle income
## 1650              La Paz   -66.1936  -13.9908 Lower middle income
## 1651              La Paz   -66.1936  -13.9908 Lower middle income
## 1652              La Paz   -66.1936  -13.9908 Lower middle income
## 1653              La Paz   -66.1936  -13.9908 Lower middle income
## 1654              La Paz   -66.1936  -13.9908 Lower middle income
## 1655              La Paz   -66.1936  -13.9908 Lower middle income
## 1656              La Paz   -66.1936  -13.9908 Lower middle income
## 1657              La Paz   -66.1936  -13.9908 Lower middle income
## 1658              La Paz   -66.1936  -13.9908 Lower middle income
## 1659              La Paz   -66.1936  -13.9908 Lower middle income
## 1660              La Paz   -66.1936  -13.9908 Lower middle income
## 1661              La Paz   -66.1936  -13.9908 Lower middle income
## 1662              La Paz   -66.1936  -13.9908 Lower middle income
## 1663              La Paz   -66.1936  -13.9908 Lower middle income
## 1664              La Paz   -66.1936  -13.9908 Lower middle income
## 1665              La Paz   -66.1936  -13.9908 Lower middle income
## 1666              La Paz   -66.1936  -13.9908 Lower middle income
## 1667              La Paz   -66.1936  -13.9908 Lower middle income
## 1668              La Paz   -66.1936  -13.9908 Lower middle income
## 1669              La Paz   -66.1936  -13.9908 Lower middle income
## 1670              La Paz   -66.1936  -13.9908 Lower middle income
## 1671              La Paz   -66.1936  -13.9908 Lower middle income
## 1672              La Paz   -66.1936  -13.9908 Lower middle income
## 1673              La Paz   -66.1936  -13.9908 Lower middle income
## 1674              La Paz   -66.1936  -13.9908 Lower middle income
## 1675              La Paz   -66.1936  -13.9908 Lower middle income
## 1676              La Paz   -66.1936  -13.9908 Lower middle income
## 1677              La Paz   -66.1936  -13.9908 Lower middle income
## 1678              La Paz   -66.1936  -13.9908 Lower middle income
## 1679              La Paz   -66.1936  -13.9908 Lower middle income
## 1680              La Paz   -66.1936  -13.9908 Lower middle income
## 1681              La Paz   -66.1936  -13.9908 Lower middle income
## 1682              La Paz   -66.1936  -13.9908 Lower middle income
## 1683              La Paz   -66.1936  -13.9908 Lower middle income
## 1684              La Paz   -66.1936  -13.9908 Lower middle income
## 1685              La Paz   -66.1936  -13.9908 Lower middle income
## 1686              La Paz   -66.1936  -13.9908 Lower middle income
## 1687              La Paz   -66.1936  -13.9908 Lower middle income
## 1688              La Paz   -66.1936  -13.9908 Lower middle income
## 1689              La Paz   -66.1936  -13.9908 Lower middle income
## 1690              La Paz   -66.1936  -13.9908 Lower middle income
## 1691              La Paz   -66.1936  -13.9908 Lower middle income
## 1692              La Paz   -66.1936  -13.9908 Lower middle income
## 1693              La Paz   -66.1936  -13.9908 Lower middle income
## 1694              La Paz   -66.1936  -13.9908 Lower middle income
## 1695              La Paz   -66.1936  -13.9908 Lower middle income
## 1696              La Paz   -66.1936  -13.9908 Lower middle income
## 1697              La Paz   -66.1936  -13.9908 Lower middle income
## 1698              La Paz   -66.1936  -13.9908 Lower middle income
## 1699              La Paz   -66.1936  -13.9908 Lower middle income
## 1700              La Paz   -66.1936  -13.9908 Lower middle income
## 1701              La Paz   -66.1936  -13.9908 Lower middle income
## 1702            Sarajevo    18.4214   43.8607 Upper middle income
## 1703            Sarajevo    18.4214   43.8607 Upper middle income
## 1704            Sarajevo    18.4214   43.8607 Upper middle income
## 1705            Sarajevo    18.4214   43.8607 Upper middle income
## 1706            Sarajevo    18.4214   43.8607 Upper middle income
## 1707            Sarajevo    18.4214   43.8607 Upper middle income
## 1708            Sarajevo    18.4214   43.8607 Upper middle income
## 1709            Sarajevo    18.4214   43.8607 Upper middle income
## 1710            Sarajevo    18.4214   43.8607 Upper middle income
## 1711            Sarajevo    18.4214   43.8607 Upper middle income
## 1712            Sarajevo    18.4214   43.8607 Upper middle income
## 1713            Sarajevo    18.4214   43.8607 Upper middle income
## 1714            Sarajevo    18.4214   43.8607 Upper middle income
## 1715            Sarajevo    18.4214   43.8607 Upper middle income
## 1716            Sarajevo    18.4214   43.8607 Upper middle income
## 1717            Sarajevo    18.4214   43.8607 Upper middle income
## 1718            Sarajevo    18.4214   43.8607 Upper middle income
## 1719            Sarajevo    18.4214   43.8607 Upper middle income
## 1720            Sarajevo    18.4214   43.8607 Upper middle income
## 1721            Sarajevo    18.4214   43.8607 Upper middle income
## 1722            Sarajevo    18.4214   43.8607 Upper middle income
## 1723            Sarajevo    18.4214   43.8607 Upper middle income
## 1724            Sarajevo    18.4214   43.8607 Upper middle income
## 1725            Sarajevo    18.4214   43.8607 Upper middle income
## 1726            Sarajevo    18.4214   43.8607 Upper middle income
## 1727            Sarajevo    18.4214   43.8607 Upper middle income
## 1728            Sarajevo    18.4214   43.8607 Upper middle income
## 1729            Sarajevo    18.4214   43.8607 Upper middle income
## 1730            Sarajevo    18.4214   43.8607 Upper middle income
## 1731            Sarajevo    18.4214   43.8607 Upper middle income
## 1732            Sarajevo    18.4214   43.8607 Upper middle income
## 1733            Sarajevo    18.4214   43.8607 Upper middle income
## 1734            Sarajevo    18.4214   43.8607 Upper middle income
## 1735            Sarajevo    18.4214   43.8607 Upper middle income
## 1736            Sarajevo    18.4214   43.8607 Upper middle income
## 1737            Sarajevo    18.4214   43.8607 Upper middle income
## 1738            Sarajevo    18.4214   43.8607 Upper middle income
## 1739            Sarajevo    18.4214   43.8607 Upper middle income
## 1740            Sarajevo    18.4214   43.8607 Upper middle income
## 1741            Sarajevo    18.4214   43.8607 Upper middle income
## 1742            Sarajevo    18.4214   43.8607 Upper middle income
## 1743            Sarajevo    18.4214   43.8607 Upper middle income
## 1744            Sarajevo    18.4214   43.8607 Upper middle income
## 1745            Sarajevo    18.4214   43.8607 Upper middle income
## 1746            Sarajevo    18.4214   43.8607 Upper middle income
## 1747            Sarajevo    18.4214   43.8607 Upper middle income
## 1748            Sarajevo    18.4214   43.8607 Upper middle income
## 1749            Sarajevo    18.4214   43.8607 Upper middle income
## 1750            Sarajevo    18.4214   43.8607 Upper middle income
## 1751            Sarajevo    18.4214   43.8607 Upper middle income
## 1752            Sarajevo    18.4214   43.8607 Upper middle income
## 1753            Sarajevo    18.4214   43.8607 Upper middle income
## 1754            Sarajevo    18.4214   43.8607 Upper middle income
## 1755            Sarajevo    18.4214   43.8607 Upper middle income
## 1756            Sarajevo    18.4214   43.8607 Upper middle income
## 1757            Sarajevo    18.4214   43.8607 Upper middle income
## 1758            Sarajevo    18.4214   43.8607 Upper middle income
## 1759            Sarajevo    18.4214   43.8607 Upper middle income
## 1760            Sarajevo    18.4214   43.8607 Upper middle income
## 1761            Sarajevo    18.4214   43.8607 Upper middle income
## 1762            Sarajevo    18.4214   43.8607 Upper middle income
## 1763            Sarajevo    18.4214   43.8607 Upper middle income
## 1764            Sarajevo    18.4214   43.8607 Upper middle income
## 1765            Gaborone    25.9201  -24.6544 Upper middle income
## 1766            Gaborone    25.9201  -24.6544 Upper middle income
## 1767            Gaborone    25.9201  -24.6544 Upper middle income
## 1768            Gaborone    25.9201  -24.6544 Upper middle income
## 1769            Gaborone    25.9201  -24.6544 Upper middle income
## 1770            Gaborone    25.9201  -24.6544 Upper middle income
## 1771            Gaborone    25.9201  -24.6544 Upper middle income
## 1772            Gaborone    25.9201  -24.6544 Upper middle income
## 1773            Gaborone    25.9201  -24.6544 Upper middle income
## 1774            Gaborone    25.9201  -24.6544 Upper middle income
## 1775            Gaborone    25.9201  -24.6544 Upper middle income
## 1776            Gaborone    25.9201  -24.6544 Upper middle income
## 1777            Gaborone    25.9201  -24.6544 Upper middle income
## 1778            Gaborone    25.9201  -24.6544 Upper middle income
## 1779            Gaborone    25.9201  -24.6544 Upper middle income
## 1780            Gaborone    25.9201  -24.6544 Upper middle income
## 1781            Gaborone    25.9201  -24.6544 Upper middle income
## 1782            Gaborone    25.9201  -24.6544 Upper middle income
## 1783            Gaborone    25.9201  -24.6544 Upper middle income
## 1784            Gaborone    25.9201  -24.6544 Upper middle income
## 1785            Gaborone    25.9201  -24.6544 Upper middle income
## 1786            Gaborone    25.9201  -24.6544 Upper middle income
## 1787            Gaborone    25.9201  -24.6544 Upper middle income
## 1788            Gaborone    25.9201  -24.6544 Upper middle income
## 1789            Gaborone    25.9201  -24.6544 Upper middle income
## 1790            Gaborone    25.9201  -24.6544 Upper middle income
## 1791            Gaborone    25.9201  -24.6544 Upper middle income
## 1792            Gaborone    25.9201  -24.6544 Upper middle income
## 1793            Gaborone    25.9201  -24.6544 Upper middle income
## 1794            Gaborone    25.9201  -24.6544 Upper middle income
## 1795            Gaborone    25.9201  -24.6544 Upper middle income
## 1796            Gaborone    25.9201  -24.6544 Upper middle income
## 1797            Gaborone    25.9201  -24.6544 Upper middle income
## 1798            Gaborone    25.9201  -24.6544 Upper middle income
## 1799            Gaborone    25.9201  -24.6544 Upper middle income
## 1800            Gaborone    25.9201  -24.6544 Upper middle income
## 1801            Gaborone    25.9201  -24.6544 Upper middle income
## 1802            Gaborone    25.9201  -24.6544 Upper middle income
## 1803            Gaborone    25.9201  -24.6544 Upper middle income
## 1804            Gaborone    25.9201  -24.6544 Upper middle income
## 1805            Gaborone    25.9201  -24.6544 Upper middle income
## 1806            Gaborone    25.9201  -24.6544 Upper middle income
## 1807            Gaborone    25.9201  -24.6544 Upper middle income
## 1808            Gaborone    25.9201  -24.6544 Upper middle income
## 1809            Gaborone    25.9201  -24.6544 Upper middle income
## 1810            Gaborone    25.9201  -24.6544 Upper middle income
## 1811            Gaborone    25.9201  -24.6544 Upper middle income
## 1812            Gaborone    25.9201  -24.6544 Upper middle income
## 1813            Gaborone    25.9201  -24.6544 Upper middle income
## 1814            Gaborone    25.9201  -24.6544 Upper middle income
## 1815            Gaborone    25.9201  -24.6544 Upper middle income
## 1816            Gaborone    25.9201  -24.6544 Upper middle income
## 1817            Gaborone    25.9201  -24.6544 Upper middle income
## 1818            Gaborone    25.9201  -24.6544 Upper middle income
## 1819            Gaborone    25.9201  -24.6544 Upper middle income
## 1820            Gaborone    25.9201  -24.6544 Upper middle income
## 1821            Gaborone    25.9201  -24.6544 Upper middle income
## 1822            Gaborone    25.9201  -24.6544 Upper middle income
## 1823            Gaborone    25.9201  -24.6544 Upper middle income
## 1824            Gaborone    25.9201  -24.6544 Upper middle income
## 1825            Gaborone    25.9201  -24.6544 Upper middle income
## 1826            Gaborone    25.9201  -24.6544 Upper middle income
## 1827            Gaborone    25.9201  -24.6544 Upper middle income
## 1828            Brasilia   -47.9292  -15.7801 Upper middle income
## 1829            Brasilia   -47.9292  -15.7801 Upper middle income
## 1830            Brasilia   -47.9292  -15.7801 Upper middle income
## 1831            Brasilia   -47.9292  -15.7801 Upper middle income
## 1832            Brasilia   -47.9292  -15.7801 Upper middle income
## 1833            Brasilia   -47.9292  -15.7801 Upper middle income
## 1834            Brasilia   -47.9292  -15.7801 Upper middle income
## 1835            Brasilia   -47.9292  -15.7801 Upper middle income
## 1836            Brasilia   -47.9292  -15.7801 Upper middle income
## 1837            Brasilia   -47.9292  -15.7801 Upper middle income
## 1838            Brasilia   -47.9292  -15.7801 Upper middle income
## 1839            Brasilia   -47.9292  -15.7801 Upper middle income
## 1840            Brasilia   -47.9292  -15.7801 Upper middle income
## 1841            Brasilia   -47.9292  -15.7801 Upper middle income
## 1842            Brasilia   -47.9292  -15.7801 Upper middle income
## 1843            Brasilia   -47.9292  -15.7801 Upper middle income
## 1844            Brasilia   -47.9292  -15.7801 Upper middle income
## 1845            Brasilia   -47.9292  -15.7801 Upper middle income
## 1846            Brasilia   -47.9292  -15.7801 Upper middle income
## 1847            Brasilia   -47.9292  -15.7801 Upper middle income
## 1848            Brasilia   -47.9292  -15.7801 Upper middle income
## 1849            Brasilia   -47.9292  -15.7801 Upper middle income
## 1850            Brasilia   -47.9292  -15.7801 Upper middle income
## 1851            Brasilia   -47.9292  -15.7801 Upper middle income
## 1852            Brasilia   -47.9292  -15.7801 Upper middle income
## 1853            Brasilia   -47.9292  -15.7801 Upper middle income
## 1854            Brasilia   -47.9292  -15.7801 Upper middle income
## 1855            Brasilia   -47.9292  -15.7801 Upper middle income
## 1856            Brasilia   -47.9292  -15.7801 Upper middle income
## 1857            Brasilia   -47.9292  -15.7801 Upper middle income
## 1858            Brasilia   -47.9292  -15.7801 Upper middle income
## 1859            Brasilia   -47.9292  -15.7801 Upper middle income
## 1860            Brasilia   -47.9292  -15.7801 Upper middle income
## 1861            Brasilia   -47.9292  -15.7801 Upper middle income
## 1862            Brasilia   -47.9292  -15.7801 Upper middle income
## 1863            Brasilia   -47.9292  -15.7801 Upper middle income
## 1864            Brasilia   -47.9292  -15.7801 Upper middle income
## 1865            Brasilia   -47.9292  -15.7801 Upper middle income
## 1866            Brasilia   -47.9292  -15.7801 Upper middle income
## 1867            Brasilia   -47.9292  -15.7801 Upper middle income
## 1868            Brasilia   -47.9292  -15.7801 Upper middle income
## 1869            Brasilia   -47.9292  -15.7801 Upper middle income
## 1870            Brasilia   -47.9292  -15.7801 Upper middle income
## 1871            Brasilia   -47.9292  -15.7801 Upper middle income
## 1872            Brasilia   -47.9292  -15.7801 Upper middle income
## 1873            Brasilia   -47.9292  -15.7801 Upper middle income
## 1874            Brasilia   -47.9292  -15.7801 Upper middle income
## 1875            Brasilia   -47.9292  -15.7801 Upper middle income
## 1876            Brasilia   -47.9292  -15.7801 Upper middle income
## 1877            Brasilia   -47.9292  -15.7801 Upper middle income
## 1878            Brasilia   -47.9292  -15.7801 Upper middle income
## 1879            Brasilia   -47.9292  -15.7801 Upper middle income
## 1880            Brasilia   -47.9292  -15.7801 Upper middle income
## 1881            Brasilia   -47.9292  -15.7801 Upper middle income
## 1882            Brasilia   -47.9292  -15.7801 Upper middle income
## 1883            Brasilia   -47.9292  -15.7801 Upper middle income
## 1884            Brasilia   -47.9292  -15.7801 Upper middle income
## 1885            Brasilia   -47.9292  -15.7801 Upper middle income
## 1886            Brasilia   -47.9292  -15.7801 Upper middle income
## 1887            Brasilia   -47.9292  -15.7801 Upper middle income
## 1888            Brasilia   -47.9292  -15.7801 Upper middle income
## 1889            Brasilia   -47.9292  -15.7801 Upper middle income
## 1890            Brasilia   -47.9292  -15.7801 Upper middle income
## 1891           Road Town -64.623056 18.431389         High income
## 1892           Road Town -64.623056 18.431389         High income
## 1893           Road Town -64.623056 18.431389         High income
## 1894           Road Town -64.623056 18.431389         High income
## 1895           Road Town -64.623056 18.431389         High income
## 1896           Road Town -64.623056 18.431389         High income
## 1897           Road Town -64.623056 18.431389         High income
## 1898           Road Town -64.623056 18.431389         High income
## 1899           Road Town -64.623056 18.431389         High income
## 1900           Road Town -64.623056 18.431389         High income
## 1901           Road Town -64.623056 18.431389         High income
## 1902           Road Town -64.623056 18.431389         High income
## 1903           Road Town -64.623056 18.431389         High income
## 1904           Road Town -64.623056 18.431389         High income
## 1905           Road Town -64.623056 18.431389         High income
## 1906           Road Town -64.623056 18.431389         High income
## 1907           Road Town -64.623056 18.431389         High income
## 1908           Road Town -64.623056 18.431389         High income
## 1909           Road Town -64.623056 18.431389         High income
## 1910           Road Town -64.623056 18.431389         High income
## 1911           Road Town -64.623056 18.431389         High income
## 1912           Road Town -64.623056 18.431389         High income
## 1913           Road Town -64.623056 18.431389         High income
## 1914           Road Town -64.623056 18.431389         High income
## 1915           Road Town -64.623056 18.431389         High income
## 1916           Road Town -64.623056 18.431389         High income
## 1917           Road Town -64.623056 18.431389         High income
## 1918           Road Town -64.623056 18.431389         High income
## 1919           Road Town -64.623056 18.431389         High income
## 1920           Road Town -64.623056 18.431389         High income
## 1921           Road Town -64.623056 18.431389         High income
## 1922           Road Town -64.623056 18.431389         High income
## 1923           Road Town -64.623056 18.431389         High income
## 1924           Road Town -64.623056 18.431389         High income
## 1925           Road Town -64.623056 18.431389         High income
## 1926           Road Town -64.623056 18.431389         High income
## 1927           Road Town -64.623056 18.431389         High income
## 1928           Road Town -64.623056 18.431389         High income
## 1929           Road Town -64.623056 18.431389         High income
## 1930           Road Town -64.623056 18.431389         High income
## 1931           Road Town -64.623056 18.431389         High income
## 1932           Road Town -64.623056 18.431389         High income
## 1933           Road Town -64.623056 18.431389         High income
## 1934           Road Town -64.623056 18.431389         High income
## 1935           Road Town -64.623056 18.431389         High income
## 1936           Road Town -64.623056 18.431389         High income
## 1937           Road Town -64.623056 18.431389         High income
## 1938           Road Town -64.623056 18.431389         High income
## 1939           Road Town -64.623056 18.431389         High income
## 1940           Road Town -64.623056 18.431389         High income
## 1941           Road Town -64.623056 18.431389         High income
## 1942           Road Town -64.623056 18.431389         High income
## 1943           Road Town -64.623056 18.431389         High income
## 1944           Road Town -64.623056 18.431389         High income
## 1945           Road Town -64.623056 18.431389         High income
## 1946           Road Town -64.623056 18.431389         High income
## 1947           Road Town -64.623056 18.431389         High income
## 1948           Road Town -64.623056 18.431389         High income
## 1949           Road Town -64.623056 18.431389         High income
## 1950           Road Town -64.623056 18.431389         High income
## 1951           Road Town -64.623056 18.431389         High income
## 1952           Road Town -64.623056 18.431389         High income
## 1953           Road Town -64.623056 18.431389         High income
## 1954 Bandar Seri Begawan    114.946   4.94199         High income
## 1955 Bandar Seri Begawan    114.946   4.94199         High income
## 1956 Bandar Seri Begawan    114.946   4.94199         High income
## 1957 Bandar Seri Begawan    114.946   4.94199         High income
## 1958 Bandar Seri Begawan    114.946   4.94199         High income
## 1959 Bandar Seri Begawan    114.946   4.94199         High income
## 1960 Bandar Seri Begawan    114.946   4.94199         High income
## 1961 Bandar Seri Begawan    114.946   4.94199         High income
## 1962 Bandar Seri Begawan    114.946   4.94199         High income
## 1963 Bandar Seri Begawan    114.946   4.94199         High income
## 1964 Bandar Seri Begawan    114.946   4.94199         High income
## 1965 Bandar Seri Begawan    114.946   4.94199         High income
## 1966 Bandar Seri Begawan    114.946   4.94199         High income
## 1967 Bandar Seri Begawan    114.946   4.94199         High income
## 1968 Bandar Seri Begawan    114.946   4.94199         High income
## 1969 Bandar Seri Begawan    114.946   4.94199         High income
## 1970 Bandar Seri Begawan    114.946   4.94199         High income
## 1971 Bandar Seri Begawan    114.946   4.94199         High income
## 1972 Bandar Seri Begawan    114.946   4.94199         High income
## 1973 Bandar Seri Begawan    114.946   4.94199         High income
## 1974 Bandar Seri Begawan    114.946   4.94199         High income
## 1975 Bandar Seri Begawan    114.946   4.94199         High income
## 1976 Bandar Seri Begawan    114.946   4.94199         High income
## 1977 Bandar Seri Begawan    114.946   4.94199         High income
## 1978 Bandar Seri Begawan    114.946   4.94199         High income
## 1979 Bandar Seri Begawan    114.946   4.94199         High income
## 1980 Bandar Seri Begawan    114.946   4.94199         High income
## 1981 Bandar Seri Begawan    114.946   4.94199         High income
## 1982 Bandar Seri Begawan    114.946   4.94199         High income
## 1983 Bandar Seri Begawan    114.946   4.94199         High income
## 1984 Bandar Seri Begawan    114.946   4.94199         High income
## 1985 Bandar Seri Begawan    114.946   4.94199         High income
## 1986 Bandar Seri Begawan    114.946   4.94199         High income
## 1987 Bandar Seri Begawan    114.946   4.94199         High income
## 1988 Bandar Seri Begawan    114.946   4.94199         High income
## 1989 Bandar Seri Begawan    114.946   4.94199         High income
## 1990 Bandar Seri Begawan    114.946   4.94199         High income
## 1991 Bandar Seri Begawan    114.946   4.94199         High income
## 1992 Bandar Seri Begawan    114.946   4.94199         High income
## 1993 Bandar Seri Begawan    114.946   4.94199         High income
## 1994 Bandar Seri Begawan    114.946   4.94199         High income
## 1995 Bandar Seri Begawan    114.946   4.94199         High income
## 1996 Bandar Seri Begawan    114.946   4.94199         High income
## 1997 Bandar Seri Begawan    114.946   4.94199         High income
## 1998 Bandar Seri Begawan    114.946   4.94199         High income
## 1999 Bandar Seri Begawan    114.946   4.94199         High income
## 2000 Bandar Seri Begawan    114.946   4.94199         High income
## 2001 Bandar Seri Begawan    114.946   4.94199         High income
## 2002 Bandar Seri Begawan    114.946   4.94199         High income
## 2003 Bandar Seri Begawan    114.946   4.94199         High income
## 2004 Bandar Seri Begawan    114.946   4.94199         High income
## 2005 Bandar Seri Begawan    114.946   4.94199         High income
## 2006 Bandar Seri Begawan    114.946   4.94199         High income
## 2007 Bandar Seri Begawan    114.946   4.94199         High income
## 2008 Bandar Seri Begawan    114.946   4.94199         High income
## 2009 Bandar Seri Begawan    114.946   4.94199         High income
## 2010 Bandar Seri Begawan    114.946   4.94199         High income
## 2011 Bandar Seri Begawan    114.946   4.94199         High income
## 2012 Bandar Seri Begawan    114.946   4.94199         High income
## 2013 Bandar Seri Begawan    114.946   4.94199         High income
## 2014 Bandar Seri Begawan    114.946   4.94199         High income
## 2015 Bandar Seri Begawan    114.946   4.94199         High income
## 2016 Bandar Seri Begawan    114.946   4.94199         High income
## 2017               Sofia    23.3238   42.7105 Upper middle income
## 2018               Sofia    23.3238   42.7105 Upper middle income
## 2019               Sofia    23.3238   42.7105 Upper middle income
## 2020               Sofia    23.3238   42.7105 Upper middle income
## 2021               Sofia    23.3238   42.7105 Upper middle income
## 2022               Sofia    23.3238   42.7105 Upper middle income
## 2023               Sofia    23.3238   42.7105 Upper middle income
## 2024               Sofia    23.3238   42.7105 Upper middle income
## 2025               Sofia    23.3238   42.7105 Upper middle income
## 2026               Sofia    23.3238   42.7105 Upper middle income
## 2027               Sofia    23.3238   42.7105 Upper middle income
## 2028               Sofia    23.3238   42.7105 Upper middle income
## 2029               Sofia    23.3238   42.7105 Upper middle income
## 2030               Sofia    23.3238   42.7105 Upper middle income
## 2031               Sofia    23.3238   42.7105 Upper middle income
## 2032               Sofia    23.3238   42.7105 Upper middle income
## 2033               Sofia    23.3238   42.7105 Upper middle income
## 2034               Sofia    23.3238   42.7105 Upper middle income
## 2035               Sofia    23.3238   42.7105 Upper middle income
## 2036               Sofia    23.3238   42.7105 Upper middle income
## 2037               Sofia    23.3238   42.7105 Upper middle income
## 2038               Sofia    23.3238   42.7105 Upper middle income
## 2039               Sofia    23.3238   42.7105 Upper middle income
## 2040               Sofia    23.3238   42.7105 Upper middle income
## 2041               Sofia    23.3238   42.7105 Upper middle income
## 2042               Sofia    23.3238   42.7105 Upper middle income
## 2043               Sofia    23.3238   42.7105 Upper middle income
## 2044               Sofia    23.3238   42.7105 Upper middle income
## 2045               Sofia    23.3238   42.7105 Upper middle income
## 2046               Sofia    23.3238   42.7105 Upper middle income
## 2047               Sofia    23.3238   42.7105 Upper middle income
## 2048               Sofia    23.3238   42.7105 Upper middle income
## 2049               Sofia    23.3238   42.7105 Upper middle income
## 2050               Sofia    23.3238   42.7105 Upper middle income
## 2051               Sofia    23.3238   42.7105 Upper middle income
## 2052               Sofia    23.3238   42.7105 Upper middle income
## 2053               Sofia    23.3238   42.7105 Upper middle income
## 2054               Sofia    23.3238   42.7105 Upper middle income
## 2055               Sofia    23.3238   42.7105 Upper middle income
## 2056               Sofia    23.3238   42.7105 Upper middle income
## 2057               Sofia    23.3238   42.7105 Upper middle income
## 2058               Sofia    23.3238   42.7105 Upper middle income
## 2059               Sofia    23.3238   42.7105 Upper middle income
## 2060               Sofia    23.3238   42.7105 Upper middle income
## 2061               Sofia    23.3238   42.7105 Upper middle income
## 2062               Sofia    23.3238   42.7105 Upper middle income
## 2063               Sofia    23.3238   42.7105 Upper middle income
## 2064               Sofia    23.3238   42.7105 Upper middle income
## 2065               Sofia    23.3238   42.7105 Upper middle income
## 2066               Sofia    23.3238   42.7105 Upper middle income
## 2067               Sofia    23.3238   42.7105 Upper middle income
## 2068               Sofia    23.3238   42.7105 Upper middle income
## 2069               Sofia    23.3238   42.7105 Upper middle income
## 2070               Sofia    23.3238   42.7105 Upper middle income
## 2071               Sofia    23.3238   42.7105 Upper middle income
## 2072               Sofia    23.3238   42.7105 Upper middle income
## 2073               Sofia    23.3238   42.7105 Upper middle income
## 2074               Sofia    23.3238   42.7105 Upper middle income
## 2075               Sofia    23.3238   42.7105 Upper middle income
## 2076               Sofia    23.3238   42.7105 Upper middle income
## 2077               Sofia    23.3238   42.7105 Upper middle income
## 2078               Sofia    23.3238   42.7105 Upper middle income
## 2079               Sofia    23.3238   42.7105 Upper middle income
## 2080         Ouagadougou   -1.53395   12.3605          Low income
## 2081         Ouagadougou   -1.53395   12.3605          Low income
## 2082         Ouagadougou   -1.53395   12.3605          Low income
## 2083         Ouagadougou   -1.53395   12.3605          Low income
## 2084         Ouagadougou   -1.53395   12.3605          Low income
## 2085         Ouagadougou   -1.53395   12.3605          Low income
## 2086         Ouagadougou   -1.53395   12.3605          Low income
## 2087         Ouagadougou   -1.53395   12.3605          Low income
## 2088         Ouagadougou   -1.53395   12.3605          Low income
## 2089         Ouagadougou   -1.53395   12.3605          Low income
## 2090         Ouagadougou   -1.53395   12.3605          Low income
## 2091         Ouagadougou   -1.53395   12.3605          Low income
## 2092         Ouagadougou   -1.53395   12.3605          Low income
## 2093         Ouagadougou   -1.53395   12.3605          Low income
## 2094         Ouagadougou   -1.53395   12.3605          Low income
## 2095         Ouagadougou   -1.53395   12.3605          Low income
## 2096         Ouagadougou   -1.53395   12.3605          Low income
## 2097         Ouagadougou   -1.53395   12.3605          Low income
## 2098         Ouagadougou   -1.53395   12.3605          Low income
## 2099         Ouagadougou   -1.53395   12.3605          Low income
## 2100         Ouagadougou   -1.53395   12.3605          Low income
## 2101         Ouagadougou   -1.53395   12.3605          Low income
## 2102         Ouagadougou   -1.53395   12.3605          Low income
## 2103         Ouagadougou   -1.53395   12.3605          Low income
## 2104         Ouagadougou   -1.53395   12.3605          Low income
## 2105         Ouagadougou   -1.53395   12.3605          Low income
## 2106         Ouagadougou   -1.53395   12.3605          Low income
## 2107         Ouagadougou   -1.53395   12.3605          Low income
## 2108         Ouagadougou   -1.53395   12.3605          Low income
## 2109         Ouagadougou   -1.53395   12.3605          Low income
## 2110         Ouagadougou   -1.53395   12.3605          Low income
## 2111         Ouagadougou   -1.53395   12.3605          Low income
## 2112         Ouagadougou   -1.53395   12.3605          Low income
## 2113         Ouagadougou   -1.53395   12.3605          Low income
## 2114         Ouagadougou   -1.53395   12.3605          Low income
## 2115         Ouagadougou   -1.53395   12.3605          Low income
## 2116         Ouagadougou   -1.53395   12.3605          Low income
## 2117         Ouagadougou   -1.53395   12.3605          Low income
## 2118         Ouagadougou   -1.53395   12.3605          Low income
## 2119         Ouagadougou   -1.53395   12.3605          Low income
## 2120         Ouagadougou   -1.53395   12.3605          Low income
## 2121         Ouagadougou   -1.53395   12.3605          Low income
## 2122         Ouagadougou   -1.53395   12.3605          Low income
## 2123         Ouagadougou   -1.53395   12.3605          Low income
## 2124         Ouagadougou   -1.53395   12.3605          Low income
## 2125         Ouagadougou   -1.53395   12.3605          Low income
## 2126         Ouagadougou   -1.53395   12.3605          Low income
## 2127         Ouagadougou   -1.53395   12.3605          Low income
## 2128         Ouagadougou   -1.53395   12.3605          Low income
## 2129         Ouagadougou   -1.53395   12.3605          Low income
## 2130         Ouagadougou   -1.53395   12.3605          Low income
## 2131         Ouagadougou   -1.53395   12.3605          Low income
## 2132         Ouagadougou   -1.53395   12.3605          Low income
## 2133         Ouagadougou   -1.53395   12.3605          Low income
## 2134         Ouagadougou   -1.53395   12.3605          Low income
## 2135         Ouagadougou   -1.53395   12.3605          Low income
## 2136         Ouagadougou   -1.53395   12.3605          Low income
## 2137         Ouagadougou   -1.53395   12.3605          Low income
## 2138         Ouagadougou   -1.53395   12.3605          Low income
## 2139         Ouagadougou   -1.53395   12.3605          Low income
## 2140         Ouagadougou   -1.53395   12.3605          Low income
## 2141         Ouagadougou   -1.53395   12.3605          Low income
## 2142         Ouagadougou   -1.53395   12.3605          Low income
## 2143           Bujumbura    29.3639   -3.3784          Low income
## 2144           Bujumbura    29.3639   -3.3784          Low income
## 2145           Bujumbura    29.3639   -3.3784          Low income
## 2146           Bujumbura    29.3639   -3.3784          Low income
## 2147           Bujumbura    29.3639   -3.3784          Low income
## 2148           Bujumbura    29.3639   -3.3784          Low income
## 2149           Bujumbura    29.3639   -3.3784          Low income
## 2150           Bujumbura    29.3639   -3.3784          Low income
## 2151           Bujumbura    29.3639   -3.3784          Low income
## 2152           Bujumbura    29.3639   -3.3784          Low income
## 2153           Bujumbura    29.3639   -3.3784          Low income
## 2154           Bujumbura    29.3639   -3.3784          Low income
## 2155           Bujumbura    29.3639   -3.3784          Low income
## 2156           Bujumbura    29.3639   -3.3784          Low income
## 2157           Bujumbura    29.3639   -3.3784          Low income
## 2158           Bujumbura    29.3639   -3.3784          Low income
## 2159           Bujumbura    29.3639   -3.3784          Low income
## 2160           Bujumbura    29.3639   -3.3784          Low income
## 2161           Bujumbura    29.3639   -3.3784          Low income
## 2162           Bujumbura    29.3639   -3.3784          Low income
## 2163           Bujumbura    29.3639   -3.3784          Low income
## 2164           Bujumbura    29.3639   -3.3784          Low income
## 2165           Bujumbura    29.3639   -3.3784          Low income
## 2166           Bujumbura    29.3639   -3.3784          Low income
## 2167           Bujumbura    29.3639   -3.3784          Low income
## 2168           Bujumbura    29.3639   -3.3784          Low income
## 2169           Bujumbura    29.3639   -3.3784          Low income
## 2170           Bujumbura    29.3639   -3.3784          Low income
## 2171           Bujumbura    29.3639   -3.3784          Low income
## 2172           Bujumbura    29.3639   -3.3784          Low income
## 2173           Bujumbura    29.3639   -3.3784          Low income
## 2174           Bujumbura    29.3639   -3.3784          Low income
## 2175           Bujumbura    29.3639   -3.3784          Low income
## 2176           Bujumbura    29.3639   -3.3784          Low income
## 2177           Bujumbura    29.3639   -3.3784          Low income
## 2178           Bujumbura    29.3639   -3.3784          Low income
## 2179           Bujumbura    29.3639   -3.3784          Low income
## 2180           Bujumbura    29.3639   -3.3784          Low income
## 2181           Bujumbura    29.3639   -3.3784          Low income
## 2182           Bujumbura    29.3639   -3.3784          Low income
## 2183           Bujumbura    29.3639   -3.3784          Low income
## 2184           Bujumbura    29.3639   -3.3784          Low income
## 2185           Bujumbura    29.3639   -3.3784          Low income
## 2186           Bujumbura    29.3639   -3.3784          Low income
## 2187           Bujumbura    29.3639   -3.3784          Low income
## 2188           Bujumbura    29.3639   -3.3784          Low income
## 2189           Bujumbura    29.3639   -3.3784          Low income
## 2190           Bujumbura    29.3639   -3.3784          Low income
## 2191           Bujumbura    29.3639   -3.3784          Low income
## 2192           Bujumbura    29.3639   -3.3784          Low income
## 2193           Bujumbura    29.3639   -3.3784          Low income
## 2194           Bujumbura    29.3639   -3.3784          Low income
## 2195           Bujumbura    29.3639   -3.3784          Low income
## 2196           Bujumbura    29.3639   -3.3784          Low income
## 2197           Bujumbura    29.3639   -3.3784          Low income
## 2198           Bujumbura    29.3639   -3.3784          Low income
## 2199           Bujumbura    29.3639   -3.3784          Low income
## 2200           Bujumbura    29.3639   -3.3784          Low income
## 2201           Bujumbura    29.3639   -3.3784          Low income
## 2202           Bujumbura    29.3639   -3.3784          Low income
## 2203           Bujumbura    29.3639   -3.3784          Low income
## 2204           Bujumbura    29.3639   -3.3784          Low income
## 2205           Bujumbura    29.3639   -3.3784          Low income
## 2206               Praia   -23.5087   14.9218 Lower middle income
## 2207               Praia   -23.5087   14.9218 Lower middle income
## 2208               Praia   -23.5087   14.9218 Lower middle income
## 2209               Praia   -23.5087   14.9218 Lower middle income
## 2210               Praia   -23.5087   14.9218 Lower middle income
## 2211               Praia   -23.5087   14.9218 Lower middle income
## 2212               Praia   -23.5087   14.9218 Lower middle income
## 2213               Praia   -23.5087   14.9218 Lower middle income
## 2214               Praia   -23.5087   14.9218 Lower middle income
## 2215               Praia   -23.5087   14.9218 Lower middle income
## 2216               Praia   -23.5087   14.9218 Lower middle income
## 2217               Praia   -23.5087   14.9218 Lower middle income
## 2218               Praia   -23.5087   14.9218 Lower middle income
## 2219               Praia   -23.5087   14.9218 Lower middle income
## 2220               Praia   -23.5087   14.9218 Lower middle income
## 2221               Praia   -23.5087   14.9218 Lower middle income
## 2222               Praia   -23.5087   14.9218 Lower middle income
## 2223               Praia   -23.5087   14.9218 Lower middle income
## 2224               Praia   -23.5087   14.9218 Lower middle income
## 2225               Praia   -23.5087   14.9218 Lower middle income
## 2226               Praia   -23.5087   14.9218 Lower middle income
## 2227               Praia   -23.5087   14.9218 Lower middle income
## 2228               Praia   -23.5087   14.9218 Lower middle income
## 2229               Praia   -23.5087   14.9218 Lower middle income
## 2230               Praia   -23.5087   14.9218 Lower middle income
## 2231               Praia   -23.5087   14.9218 Lower middle income
## 2232               Praia   -23.5087   14.9218 Lower middle income
## 2233               Praia   -23.5087   14.9218 Lower middle income
## 2234               Praia   -23.5087   14.9218 Lower middle income
## 2235               Praia   -23.5087   14.9218 Lower middle income
## 2236               Praia   -23.5087   14.9218 Lower middle income
## 2237               Praia   -23.5087   14.9218 Lower middle income
## 2238               Praia   -23.5087   14.9218 Lower middle income
## 2239               Praia   -23.5087   14.9218 Lower middle income
## 2240               Praia   -23.5087   14.9218 Lower middle income
## 2241               Praia   -23.5087   14.9218 Lower middle income
## 2242               Praia   -23.5087   14.9218 Lower middle income
## 2243               Praia   -23.5087   14.9218 Lower middle income
## 2244               Praia   -23.5087   14.9218 Lower middle income
## 2245               Praia   -23.5087   14.9218 Lower middle income
## 2246               Praia   -23.5087   14.9218 Lower middle income
## 2247               Praia   -23.5087   14.9218 Lower middle income
## 2248               Praia   -23.5087   14.9218 Lower middle income
## 2249               Praia   -23.5087   14.9218 Lower middle income
## 2250               Praia   -23.5087   14.9218 Lower middle income
## 2251               Praia   -23.5087   14.9218 Lower middle income
## 2252               Praia   -23.5087   14.9218 Lower middle income
## 2253               Praia   -23.5087   14.9218 Lower middle income
## 2254               Praia   -23.5087   14.9218 Lower middle income
## 2255               Praia   -23.5087   14.9218 Lower middle income
## 2256               Praia   -23.5087   14.9218 Lower middle income
## 2257               Praia   -23.5087   14.9218 Lower middle income
## 2258               Praia   -23.5087   14.9218 Lower middle income
## 2259               Praia   -23.5087   14.9218 Lower middle income
## 2260               Praia   -23.5087   14.9218 Lower middle income
## 2261               Praia   -23.5087   14.9218 Lower middle income
## 2262               Praia   -23.5087   14.9218 Lower middle income
## 2263               Praia   -23.5087   14.9218 Lower middle income
## 2264               Praia   -23.5087   14.9218 Lower middle income
## 2265               Praia   -23.5087   14.9218 Lower middle income
## 2266               Praia   -23.5087   14.9218 Lower middle income
## 2267               Praia   -23.5087   14.9218 Lower middle income
## 2268               Praia   -23.5087   14.9218 Lower middle income
## 2269          Phnom Penh    104.874   11.5556 Lower middle income
## 2270          Phnom Penh    104.874   11.5556 Lower middle income
## 2271          Phnom Penh    104.874   11.5556 Lower middle income
## 2272          Phnom Penh    104.874   11.5556 Lower middle income
## 2273          Phnom Penh    104.874   11.5556 Lower middle income
## 2274          Phnom Penh    104.874   11.5556 Lower middle income
## 2275          Phnom Penh    104.874   11.5556 Lower middle income
## 2276          Phnom Penh    104.874   11.5556 Lower middle income
## 2277          Phnom Penh    104.874   11.5556 Lower middle income
## 2278          Phnom Penh    104.874   11.5556 Lower middle income
## 2279          Phnom Penh    104.874   11.5556 Lower middle income
## 2280          Phnom Penh    104.874   11.5556 Lower middle income
## 2281          Phnom Penh    104.874   11.5556 Lower middle income
## 2282          Phnom Penh    104.874   11.5556 Lower middle income
## 2283          Phnom Penh    104.874   11.5556 Lower middle income
## 2284          Phnom Penh    104.874   11.5556 Lower middle income
## 2285          Phnom Penh    104.874   11.5556 Lower middle income
## 2286          Phnom Penh    104.874   11.5556 Lower middle income
## 2287          Phnom Penh    104.874   11.5556 Lower middle income
## 2288          Phnom Penh    104.874   11.5556 Lower middle income
## 2289          Phnom Penh    104.874   11.5556 Lower middle income
## 2290          Phnom Penh    104.874   11.5556 Lower middle income
## 2291          Phnom Penh    104.874   11.5556 Lower middle income
## 2292          Phnom Penh    104.874   11.5556 Lower middle income
## 2293          Phnom Penh    104.874   11.5556 Lower middle income
## 2294          Phnom Penh    104.874   11.5556 Lower middle income
## 2295          Phnom Penh    104.874   11.5556 Lower middle income
## 2296          Phnom Penh    104.874   11.5556 Lower middle income
## 2297          Phnom Penh    104.874   11.5556 Lower middle income
## 2298          Phnom Penh    104.874   11.5556 Lower middle income
## 2299          Phnom Penh    104.874   11.5556 Lower middle income
## 2300          Phnom Penh    104.874   11.5556 Lower middle income
## 2301          Phnom Penh    104.874   11.5556 Lower middle income
## 2302          Phnom Penh    104.874   11.5556 Lower middle income
## 2303          Phnom Penh    104.874   11.5556 Lower middle income
## 2304          Phnom Penh    104.874   11.5556 Lower middle income
## 2305          Phnom Penh    104.874   11.5556 Lower middle income
## 2306          Phnom Penh    104.874   11.5556 Lower middle income
## 2307          Phnom Penh    104.874   11.5556 Lower middle income
## 2308          Phnom Penh    104.874   11.5556 Lower middle income
## 2309          Phnom Penh    104.874   11.5556 Lower middle income
## 2310          Phnom Penh    104.874   11.5556 Lower middle income
## 2311          Phnom Penh    104.874   11.5556 Lower middle income
## 2312          Phnom Penh    104.874   11.5556 Lower middle income
## 2313          Phnom Penh    104.874   11.5556 Lower middle income
## 2314          Phnom Penh    104.874   11.5556 Lower middle income
## 2315          Phnom Penh    104.874   11.5556 Lower middle income
## 2316          Phnom Penh    104.874   11.5556 Lower middle income
## 2317          Phnom Penh    104.874   11.5556 Lower middle income
## 2318          Phnom Penh    104.874   11.5556 Lower middle income
## 2319          Phnom Penh    104.874   11.5556 Lower middle income
## 2320          Phnom Penh    104.874   11.5556 Lower middle income
## 2321          Phnom Penh    104.874   11.5556 Lower middle income
## 2322          Phnom Penh    104.874   11.5556 Lower middle income
## 2323          Phnom Penh    104.874   11.5556 Lower middle income
## 2324          Phnom Penh    104.874   11.5556 Lower middle income
## 2325          Phnom Penh    104.874   11.5556 Lower middle income
## 2326          Phnom Penh    104.874   11.5556 Lower middle income
## 2327          Phnom Penh    104.874   11.5556 Lower middle income
## 2328          Phnom Penh    104.874   11.5556 Lower middle income
## 2329          Phnom Penh    104.874   11.5556 Lower middle income
## 2330          Phnom Penh    104.874   11.5556 Lower middle income
## 2331          Phnom Penh    104.874   11.5556 Lower middle income
## 2332             Yaounde    11.5174    3.8721 Lower middle income
## 2333             Yaounde    11.5174    3.8721 Lower middle income
## 2334             Yaounde    11.5174    3.8721 Lower middle income
## 2335             Yaounde    11.5174    3.8721 Lower middle income
## 2336             Yaounde    11.5174    3.8721 Lower middle income
## 2337             Yaounde    11.5174    3.8721 Lower middle income
## 2338             Yaounde    11.5174    3.8721 Lower middle income
## 2339             Yaounde    11.5174    3.8721 Lower middle income
## 2340             Yaounde    11.5174    3.8721 Lower middle income
## 2341             Yaounde    11.5174    3.8721 Lower middle income
## 2342             Yaounde    11.5174    3.8721 Lower middle income
## 2343             Yaounde    11.5174    3.8721 Lower middle income
## 2344             Yaounde    11.5174    3.8721 Lower middle income
## 2345             Yaounde    11.5174    3.8721 Lower middle income
## 2346             Yaounde    11.5174    3.8721 Lower middle income
## 2347             Yaounde    11.5174    3.8721 Lower middle income
## 2348             Yaounde    11.5174    3.8721 Lower middle income
## 2349             Yaounde    11.5174    3.8721 Lower middle income
## 2350             Yaounde    11.5174    3.8721 Lower middle income
## 2351             Yaounde    11.5174    3.8721 Lower middle income
## 2352             Yaounde    11.5174    3.8721 Lower middle income
## 2353             Yaounde    11.5174    3.8721 Lower middle income
## 2354             Yaounde    11.5174    3.8721 Lower middle income
## 2355             Yaounde    11.5174    3.8721 Lower middle income
## 2356             Yaounde    11.5174    3.8721 Lower middle income
## 2357             Yaounde    11.5174    3.8721 Lower middle income
## 2358             Yaounde    11.5174    3.8721 Lower middle income
## 2359             Yaounde    11.5174    3.8721 Lower middle income
## 2360             Yaounde    11.5174    3.8721 Lower middle income
## 2361             Yaounde    11.5174    3.8721 Lower middle income
## 2362             Yaounde    11.5174    3.8721 Lower middle income
## 2363             Yaounde    11.5174    3.8721 Lower middle income
## 2364             Yaounde    11.5174    3.8721 Lower middle income
## 2365             Yaounde    11.5174    3.8721 Lower middle income
## 2366             Yaounde    11.5174    3.8721 Lower middle income
## 2367             Yaounde    11.5174    3.8721 Lower middle income
## 2368             Yaounde    11.5174    3.8721 Lower middle income
## 2369             Yaounde    11.5174    3.8721 Lower middle income
## 2370             Yaounde    11.5174    3.8721 Lower middle income
## 2371             Yaounde    11.5174    3.8721 Lower middle income
## 2372             Yaounde    11.5174    3.8721 Lower middle income
## 2373             Yaounde    11.5174    3.8721 Lower middle income
## 2374             Yaounde    11.5174    3.8721 Lower middle income
## 2375             Yaounde    11.5174    3.8721 Lower middle income
## 2376             Yaounde    11.5174    3.8721 Lower middle income
## 2377             Yaounde    11.5174    3.8721 Lower middle income
## 2378             Yaounde    11.5174    3.8721 Lower middle income
## 2379             Yaounde    11.5174    3.8721 Lower middle income
## 2380             Yaounde    11.5174    3.8721 Lower middle income
## 2381             Yaounde    11.5174    3.8721 Lower middle income
## 2382             Yaounde    11.5174    3.8721 Lower middle income
## 2383             Yaounde    11.5174    3.8721 Lower middle income
## 2384             Yaounde    11.5174    3.8721 Lower middle income
## 2385             Yaounde    11.5174    3.8721 Lower middle income
## 2386             Yaounde    11.5174    3.8721 Lower middle income
## 2387             Yaounde    11.5174    3.8721 Lower middle income
## 2388             Yaounde    11.5174    3.8721 Lower middle income
## 2389             Yaounde    11.5174    3.8721 Lower middle income
## 2390             Yaounde    11.5174    3.8721 Lower middle income
## 2391             Yaounde    11.5174    3.8721 Lower middle income
## 2392             Yaounde    11.5174    3.8721 Lower middle income
## 2393             Yaounde    11.5174    3.8721 Lower middle income
## 2394             Yaounde    11.5174    3.8721 Lower middle income
## 2395              Ottawa   -75.6919   45.4215         High income
## 2396              Ottawa   -75.6919   45.4215         High income
## 2397              Ottawa   -75.6919   45.4215         High income
## 2398              Ottawa   -75.6919   45.4215         High income
## 2399              Ottawa   -75.6919   45.4215         High income
## 2400              Ottawa   -75.6919   45.4215         High income
## 2401              Ottawa   -75.6919   45.4215         High income
## 2402              Ottawa   -75.6919   45.4215         High income
## 2403              Ottawa   -75.6919   45.4215         High income
## 2404              Ottawa   -75.6919   45.4215         High income
## 2405              Ottawa   -75.6919   45.4215         High income
## 2406              Ottawa   -75.6919   45.4215         High income
## 2407              Ottawa   -75.6919   45.4215         High income
## 2408              Ottawa   -75.6919   45.4215         High income
## 2409              Ottawa   -75.6919   45.4215         High income
## 2410              Ottawa   -75.6919   45.4215         High income
## 2411              Ottawa   -75.6919   45.4215         High income
## 2412              Ottawa   -75.6919   45.4215         High income
## 2413              Ottawa   -75.6919   45.4215         High income
## 2414              Ottawa   -75.6919   45.4215         High income
## 2415              Ottawa   -75.6919   45.4215         High income
## 2416              Ottawa   -75.6919   45.4215         High income
## 2417              Ottawa   -75.6919   45.4215         High income
## 2418              Ottawa   -75.6919   45.4215         High income
## 2419              Ottawa   -75.6919   45.4215         High income
## 2420              Ottawa   -75.6919   45.4215         High income
## 2421              Ottawa   -75.6919   45.4215         High income
## 2422              Ottawa   -75.6919   45.4215         High income
## 2423              Ottawa   -75.6919   45.4215         High income
## 2424              Ottawa   -75.6919   45.4215         High income
## 2425              Ottawa   -75.6919   45.4215         High income
## 2426              Ottawa   -75.6919   45.4215         High income
## 2427              Ottawa   -75.6919   45.4215         High income
## 2428              Ottawa   -75.6919   45.4215         High income
## 2429              Ottawa   -75.6919   45.4215         High income
## 2430              Ottawa   -75.6919   45.4215         High income
## 2431              Ottawa   -75.6919   45.4215         High income
## 2432              Ottawa   -75.6919   45.4215         High income
## 2433              Ottawa   -75.6919   45.4215         High income
## 2434              Ottawa   -75.6919   45.4215         High income
## 2435              Ottawa   -75.6919   45.4215         High income
## 2436              Ottawa   -75.6919   45.4215         High income
## 2437              Ottawa   -75.6919   45.4215         High income
## 2438              Ottawa   -75.6919   45.4215         High income
## 2439              Ottawa   -75.6919   45.4215         High income
## 2440              Ottawa   -75.6919   45.4215         High income
## 2441              Ottawa   -75.6919   45.4215         High income
## 2442              Ottawa   -75.6919   45.4215         High income
## 2443              Ottawa   -75.6919   45.4215         High income
## 2444              Ottawa   -75.6919   45.4215         High income
## 2445              Ottawa   -75.6919   45.4215         High income
## 2446              Ottawa   -75.6919   45.4215         High income
## 2447              Ottawa   -75.6919   45.4215         High income
## 2448              Ottawa   -75.6919   45.4215         High income
## 2449              Ottawa   -75.6919   45.4215         High income
## 2450              Ottawa   -75.6919   45.4215         High income
## 2451              Ottawa   -75.6919   45.4215         High income
## 2452              Ottawa   -75.6919   45.4215         High income
## 2453              Ottawa   -75.6919   45.4215         High income
## 2454              Ottawa   -75.6919   45.4215         High income
## 2455              Ottawa   -75.6919   45.4215         High income
## 2456              Ottawa   -75.6919   45.4215         High income
## 2457              Ottawa   -75.6919   45.4215         High income
## 2458                                                   Aggregates
## 2459                                                   Aggregates
## 2460                                                   Aggregates
## 2461                                                   Aggregates
## 2462                                                   Aggregates
## 2463                                                   Aggregates
## 2464                                                   Aggregates
## 2465                                                   Aggregates
## 2466                                                   Aggregates
## 2467                                                   Aggregates
## 2468                                                   Aggregates
## 2469                                                   Aggregates
## 2470                                                   Aggregates
## 2471                                                   Aggregates
## 2472                                                   Aggregates
## 2473                                                   Aggregates
## 2474                                                   Aggregates
## 2475                                                   Aggregates
## 2476                                                   Aggregates
## 2477                                                   Aggregates
## 2478                                                   Aggregates
## 2479                                                   Aggregates
## 2480                                                   Aggregates
## 2481                                                   Aggregates
## 2482                                                   Aggregates
## 2483                                                   Aggregates
## 2484                                                   Aggregates
## 2485                                                   Aggregates
## 2486                                                   Aggregates
## 2487                                                   Aggregates
## 2488                                                   Aggregates
## 2489                                                   Aggregates
## 2490                                                   Aggregates
## 2491                                                   Aggregates
## 2492                                                   Aggregates
## 2493                                                   Aggregates
## 2494                                                   Aggregates
## 2495                                                   Aggregates
## 2496                                                   Aggregates
## 2497                                                   Aggregates
## 2498                                                   Aggregates
## 2499                                                   Aggregates
## 2500                                                   Aggregates
## 2501                                                   Aggregates
## 2502                                                   Aggregates
## 2503                                                   Aggregates
## 2504                                                   Aggregates
## 2505                                                   Aggregates
## 2506                                                   Aggregates
## 2507                                                   Aggregates
## 2508                                                   Aggregates
## 2509                                                   Aggregates
## 2510                                                   Aggregates
## 2511                                                   Aggregates
## 2512                                                   Aggregates
## 2513                                                   Aggregates
## 2514                                                   Aggregates
## 2515                                                   Aggregates
## 2516                                                   Aggregates
## 2517                                                   Aggregates
## 2518                                                   Aggregates
## 2519                                                   Aggregates
## 2520                                                   Aggregates
## 2521         George Town   -81.3857   19.3022         High income
## 2522         George Town   -81.3857   19.3022         High income
## 2523         George Town   -81.3857   19.3022         High income
## 2524         George Town   -81.3857   19.3022         High income
## 2525         George Town   -81.3857   19.3022         High income
## 2526         George Town   -81.3857   19.3022         High income
## 2527         George Town   -81.3857   19.3022         High income
## 2528         George Town   -81.3857   19.3022         High income
## 2529         George Town   -81.3857   19.3022         High income
## 2530         George Town   -81.3857   19.3022         High income
## 2531         George Town   -81.3857   19.3022         High income
## 2532         George Town   -81.3857   19.3022         High income
## 2533         George Town   -81.3857   19.3022         High income
## 2534         George Town   -81.3857   19.3022         High income
## 2535         George Town   -81.3857   19.3022         High income
## 2536         George Town   -81.3857   19.3022         High income
## 2537         George Town   -81.3857   19.3022         High income
## 2538         George Town   -81.3857   19.3022         High income
## 2539         George Town   -81.3857   19.3022         High income
## 2540         George Town   -81.3857   19.3022         High income
## 2541         George Town   -81.3857   19.3022         High income
## 2542         George Town   -81.3857   19.3022         High income
## 2543         George Town   -81.3857   19.3022         High income
## 2544         George Town   -81.3857   19.3022         High income
## 2545         George Town   -81.3857   19.3022         High income
## 2546         George Town   -81.3857   19.3022         High income
## 2547         George Town   -81.3857   19.3022         High income
## 2548         George Town   -81.3857   19.3022         High income
## 2549         George Town   -81.3857   19.3022         High income
## 2550         George Town   -81.3857   19.3022         High income
## 2551         George Town   -81.3857   19.3022         High income
## 2552         George Town   -81.3857   19.3022         High income
## 2553         George Town   -81.3857   19.3022         High income
## 2554         George Town   -81.3857   19.3022         High income
## 2555         George Town   -81.3857   19.3022         High income
## 2556         George Town   -81.3857   19.3022         High income
## 2557         George Town   -81.3857   19.3022         High income
## 2558         George Town   -81.3857   19.3022         High income
## 2559         George Town   -81.3857   19.3022         High income
## 2560         George Town   -81.3857   19.3022         High income
## 2561         George Town   -81.3857   19.3022         High income
## 2562         George Town   -81.3857   19.3022         High income
## 2563         George Town   -81.3857   19.3022         High income
## 2564         George Town   -81.3857   19.3022         High income
## 2565         George Town   -81.3857   19.3022         High income
## 2566         George Town   -81.3857   19.3022         High income
## 2567         George Town   -81.3857   19.3022         High income
## 2568         George Town   -81.3857   19.3022         High income
## 2569         George Town   -81.3857   19.3022         High income
## 2570         George Town   -81.3857   19.3022         High income
## 2571         George Town   -81.3857   19.3022         High income
## 2572         George Town   -81.3857   19.3022         High income
## 2573         George Town   -81.3857   19.3022         High income
## 2574         George Town   -81.3857   19.3022         High income
## 2575         George Town   -81.3857   19.3022         High income
## 2576         George Town   -81.3857   19.3022         High income
## 2577         George Town   -81.3857   19.3022         High income
## 2578         George Town   -81.3857   19.3022         High income
## 2579         George Town   -81.3857   19.3022         High income
## 2580         George Town   -81.3857   19.3022         High income
## 2581         George Town   -81.3857   19.3022         High income
## 2582         George Town   -81.3857   19.3022         High income
## 2583         George Town   -81.3857   19.3022         High income
## 2584              Bangui    21.6407   5.63056          Low income
## 2585              Bangui    21.6407   5.63056          Low income
## 2586              Bangui    21.6407   5.63056          Low income
## 2587              Bangui    21.6407   5.63056          Low income
## 2588              Bangui    21.6407   5.63056          Low income
## 2589              Bangui    21.6407   5.63056          Low income
## 2590              Bangui    21.6407   5.63056          Low income
## 2591              Bangui    21.6407   5.63056          Low income
## 2592              Bangui    21.6407   5.63056          Low income
## 2593              Bangui    21.6407   5.63056          Low income
## 2594              Bangui    21.6407   5.63056          Low income
## 2595              Bangui    21.6407   5.63056          Low income
## 2596              Bangui    21.6407   5.63056          Low income
## 2597              Bangui    21.6407   5.63056          Low income
## 2598              Bangui    21.6407   5.63056          Low income
## 2599              Bangui    21.6407   5.63056          Low income
## 2600              Bangui    21.6407   5.63056          Low income
## 2601              Bangui    21.6407   5.63056          Low income
## 2602              Bangui    21.6407   5.63056          Low income
## 2603              Bangui    21.6407   5.63056          Low income
## 2604              Bangui    21.6407   5.63056          Low income
## 2605              Bangui    21.6407   5.63056          Low income
## 2606              Bangui    21.6407   5.63056          Low income
## 2607              Bangui    21.6407   5.63056          Low income
## 2608              Bangui    21.6407   5.63056          Low income
## 2609              Bangui    21.6407   5.63056          Low income
## 2610              Bangui    21.6407   5.63056          Low income
## 2611              Bangui    21.6407   5.63056          Low income
## 2612              Bangui    21.6407   5.63056          Low income
## 2613              Bangui    21.6407   5.63056          Low income
## 2614              Bangui    21.6407   5.63056          Low income
## 2615              Bangui    21.6407   5.63056          Low income
## 2616              Bangui    21.6407   5.63056          Low income
## 2617              Bangui    21.6407   5.63056          Low income
## 2618              Bangui    21.6407   5.63056          Low income
## 2619              Bangui    21.6407   5.63056          Low income
## 2620              Bangui    21.6407   5.63056          Low income
## 2621              Bangui    21.6407   5.63056          Low income
## 2622              Bangui    21.6407   5.63056          Low income
## 2623              Bangui    21.6407   5.63056          Low income
## 2624              Bangui    21.6407   5.63056          Low income
## 2625              Bangui    21.6407   5.63056          Low income
## 2626              Bangui    21.6407   5.63056          Low income
## 2627              Bangui    21.6407   5.63056          Low income
## 2628              Bangui    21.6407   5.63056          Low income
## 2629              Bangui    21.6407   5.63056          Low income
## 2630              Bangui    21.6407   5.63056          Low income
## 2631              Bangui    21.6407   5.63056          Low income
## 2632              Bangui    21.6407   5.63056          Low income
## 2633              Bangui    21.6407   5.63056          Low income
## 2634              Bangui    21.6407   5.63056          Low income
## 2635              Bangui    21.6407   5.63056          Low income
## 2636              Bangui    21.6407   5.63056          Low income
## 2637              Bangui    21.6407   5.63056          Low income
## 2638              Bangui    21.6407   5.63056          Low income
## 2639              Bangui    21.6407   5.63056          Low income
## 2640              Bangui    21.6407   5.63056          Low income
## 2641              Bangui    21.6407   5.63056          Low income
## 2642              Bangui    21.6407   5.63056          Low income
## 2643              Bangui    21.6407   5.63056          Low income
## 2644              Bangui    21.6407   5.63056          Low income
## 2645              Bangui    21.6407   5.63056          Low income
## 2646              Bangui    21.6407   5.63056          Low income
## 2647                                                   Aggregates
## 2648                                                   Aggregates
## 2649                                                   Aggregates
## 2650                                                   Aggregates
## 2651                                                   Aggregates
## 2652                                                   Aggregates
## 2653                                                   Aggregates
## 2654                                                   Aggregates
## 2655                                                   Aggregates
## 2656                                                   Aggregates
## 2657                                                   Aggregates
## 2658                                                   Aggregates
## 2659                                                   Aggregates
## 2660                                                   Aggregates
## 2661                                                   Aggregates
## 2662                                                   Aggregates
## 2663                                                   Aggregates
## 2664                                                   Aggregates
## 2665                                                   Aggregates
## 2666                                                   Aggregates
## 2667                                                   Aggregates
## 2668                                                   Aggregates
## 2669                                                   Aggregates
## 2670                                                   Aggregates
## 2671                                                   Aggregates
## 2672                                                   Aggregates
## 2673                                                   Aggregates
## 2674                                                   Aggregates
## 2675                                                   Aggregates
## 2676                                                   Aggregates
## 2677                                                   Aggregates
## 2678                                                   Aggregates
## 2679                                                   Aggregates
## 2680                                                   Aggregates
## 2681                                                   Aggregates
## 2682                                                   Aggregates
## 2683                                                   Aggregates
## 2684                                                   Aggregates
## 2685                                                   Aggregates
## 2686                                                   Aggregates
## 2687                                                   Aggregates
## 2688                                                   Aggregates
## 2689                                                   Aggregates
## 2690                                                   Aggregates
## 2691                                                   Aggregates
## 2692                                                   Aggregates
## 2693                                                   Aggregates
## 2694                                                   Aggregates
## 2695                                                   Aggregates
## 2696                                                   Aggregates
## 2697                                                   Aggregates
## 2698                                                   Aggregates
## 2699                                                   Aggregates
## 2700                                                   Aggregates
## 2701                                                   Aggregates
## 2702                                                   Aggregates
## 2703                                                   Aggregates
## 2704                                                   Aggregates
## 2705                                                   Aggregates
## 2706                                                   Aggregates
## 2707                                                   Aggregates
## 2708                                                   Aggregates
## 2709                                                   Aggregates
## 2710           N'Djamena    15.0445   12.1048          Low income
## 2711           N'Djamena    15.0445   12.1048          Low income
## 2712           N'Djamena    15.0445   12.1048          Low income
## 2713           N'Djamena    15.0445   12.1048          Low income
## 2714           N'Djamena    15.0445   12.1048          Low income
## 2715           N'Djamena    15.0445   12.1048          Low income
## 2716           N'Djamena    15.0445   12.1048          Low income
## 2717           N'Djamena    15.0445   12.1048          Low income
## 2718           N'Djamena    15.0445   12.1048          Low income
## 2719           N'Djamena    15.0445   12.1048          Low income
## 2720           N'Djamena    15.0445   12.1048          Low income
## 2721           N'Djamena    15.0445   12.1048          Low income
## 2722           N'Djamena    15.0445   12.1048          Low income
## 2723           N'Djamena    15.0445   12.1048          Low income
## 2724           N'Djamena    15.0445   12.1048          Low income
## 2725           N'Djamena    15.0445   12.1048          Low income
## 2726           N'Djamena    15.0445   12.1048          Low income
## 2727           N'Djamena    15.0445   12.1048          Low income
## 2728           N'Djamena    15.0445   12.1048          Low income
## 2729           N'Djamena    15.0445   12.1048          Low income
## 2730           N'Djamena    15.0445   12.1048          Low income
## 2731           N'Djamena    15.0445   12.1048          Low income
## 2732           N'Djamena    15.0445   12.1048          Low income
## 2733           N'Djamena    15.0445   12.1048          Low income
## 2734           N'Djamena    15.0445   12.1048          Low income
## 2735           N'Djamena    15.0445   12.1048          Low income
## 2736           N'Djamena    15.0445   12.1048          Low income
## 2737           N'Djamena    15.0445   12.1048          Low income
## 2738           N'Djamena    15.0445   12.1048          Low income
## 2739           N'Djamena    15.0445   12.1048          Low income
## 2740           N'Djamena    15.0445   12.1048          Low income
## 2741           N'Djamena    15.0445   12.1048          Low income
## 2742           N'Djamena    15.0445   12.1048          Low income
## 2743           N'Djamena    15.0445   12.1048          Low income
## 2744           N'Djamena    15.0445   12.1048          Low income
## 2745           N'Djamena    15.0445   12.1048          Low income
## 2746           N'Djamena    15.0445   12.1048          Low income
## 2747           N'Djamena    15.0445   12.1048          Low income
## 2748           N'Djamena    15.0445   12.1048          Low income
## 2749           N'Djamena    15.0445   12.1048          Low income
## 2750           N'Djamena    15.0445   12.1048          Low income
## 2751           N'Djamena    15.0445   12.1048          Low income
## 2752           N'Djamena    15.0445   12.1048          Low income
## 2753           N'Djamena    15.0445   12.1048          Low income
## 2754           N'Djamena    15.0445   12.1048          Low income
## 2755           N'Djamena    15.0445   12.1048          Low income
## 2756           N'Djamena    15.0445   12.1048          Low income
## 2757           N'Djamena    15.0445   12.1048          Low income
## 2758           N'Djamena    15.0445   12.1048          Low income
## 2759           N'Djamena    15.0445   12.1048          Low income
## 2760           N'Djamena    15.0445   12.1048          Low income
## 2761           N'Djamena    15.0445   12.1048          Low income
## 2762           N'Djamena    15.0445   12.1048          Low income
## 2763           N'Djamena    15.0445   12.1048          Low income
## 2764           N'Djamena    15.0445   12.1048          Low income
## 2765           N'Djamena    15.0445   12.1048          Low income
## 2766           N'Djamena    15.0445   12.1048          Low income
## 2767           N'Djamena    15.0445   12.1048          Low income
## 2768           N'Djamena    15.0445   12.1048          Low income
## 2769           N'Djamena    15.0445   12.1048          Low income
## 2770           N'Djamena    15.0445   12.1048          Low income
## 2771           N'Djamena    15.0445   12.1048          Low income
## 2772           N'Djamena    15.0445   12.1048          Low income
## 2773                                                  High income
## 2774                                                  High income
## 2775                                                  High income
## 2776                                                  High income
## 2777                                                  High income
## 2778                                                  High income
## 2779                                                  High income
## 2780                                                  High income
## 2781                                                  High income
## 2782                                                  High income
## 2783                                                  High income
## 2784                                                  High income
## 2785                                                  High income
## 2786                                                  High income
## 2787                                                  High income
## 2788                                                  High income
## 2789                                                  High income
## 2790                                                  High income
## 2791                                                  High income
## 2792                                                  High income
## 2793                                                  High income
## 2794                                                  High income
## 2795                                                  High income
## 2796                                                  High income
## 2797                                                  High income
## 2798                                                  High income
## 2799                                                  High income
## 2800                                                  High income
## 2801                                                  High income
## 2802                                                  High income
## 2803                                                  High income
## 2804                                                  High income
## 2805                                                  High income
## 2806                                                  High income
## 2807                                                  High income
## 2808                                                  High income
## 2809                                                  High income
## 2810                                                  High income
## 2811                                                  High income
## 2812                                                  High income
## 2813                                                  High income
## 2814                                                  High income
## 2815                                                  High income
## 2816                                                  High income
## 2817                                                  High income
## 2818                                                  High income
## 2819                                                  High income
## 2820                                                  High income
## 2821                                                  High income
## 2822                                                  High income
## 2823                                                  High income
## 2824                                                  High income
## 2825                                                  High income
## 2826                                                  High income
## 2827                                                  High income
## 2828                                                  High income
## 2829                                                  High income
## 2830                                                  High income
## 2831                                                  High income
## 2832                                                  High income
## 2833                                                  High income
## 2834                                                  High income
## 2835                                                  High income
## 2836            Santiago   -70.6475   -33.475         High income
## 2837            Santiago   -70.6475   -33.475         High income
## 2838            Santiago   -70.6475   -33.475         High income
## 2839            Santiago   -70.6475   -33.475         High income
## 2840            Santiago   -70.6475   -33.475         High income
## 2841            Santiago   -70.6475   -33.475         High income
## 2842            Santiago   -70.6475   -33.475         High income
## 2843            Santiago   -70.6475   -33.475         High income
## 2844            Santiago   -70.6475   -33.475         High income
## 2845            Santiago   -70.6475   -33.475         High income
## 2846            Santiago   -70.6475   -33.475         High income
## 2847            Santiago   -70.6475   -33.475         High income
## 2848            Santiago   -70.6475   -33.475         High income
## 2849            Santiago   -70.6475   -33.475         High income
## 2850            Santiago   -70.6475   -33.475         High income
## 2851            Santiago   -70.6475   -33.475         High income
## 2852            Santiago   -70.6475   -33.475         High income
## 2853            Santiago   -70.6475   -33.475         High income
## 2854            Santiago   -70.6475   -33.475         High income
## 2855            Santiago   -70.6475   -33.475         High income
## 2856            Santiago   -70.6475   -33.475         High income
## 2857            Santiago   -70.6475   -33.475         High income
## 2858            Santiago   -70.6475   -33.475         High income
## 2859            Santiago   -70.6475   -33.475         High income
## 2860            Santiago   -70.6475   -33.475         High income
## 2861            Santiago   -70.6475   -33.475         High income
## 2862            Santiago   -70.6475   -33.475         High income
## 2863            Santiago   -70.6475   -33.475         High income
## 2864            Santiago   -70.6475   -33.475         High income
## 2865            Santiago   -70.6475   -33.475         High income
## 2866            Santiago   -70.6475   -33.475         High income
## 2867            Santiago   -70.6475   -33.475         High income
## 2868            Santiago   -70.6475   -33.475         High income
## 2869            Santiago   -70.6475   -33.475         High income
## 2870            Santiago   -70.6475   -33.475         High income
## 2871            Santiago   -70.6475   -33.475         High income
## 2872            Santiago   -70.6475   -33.475         High income
## 2873            Santiago   -70.6475   -33.475         High income
## 2874            Santiago   -70.6475   -33.475         High income
## 2875            Santiago   -70.6475   -33.475         High income
## 2876            Santiago   -70.6475   -33.475         High income
## 2877            Santiago   -70.6475   -33.475         High income
## 2878            Santiago   -70.6475   -33.475         High income
## 2879            Santiago   -70.6475   -33.475         High income
## 2880            Santiago   -70.6475   -33.475         High income
## 2881            Santiago   -70.6475   -33.475         High income
## 2882            Santiago   -70.6475   -33.475         High income
## 2883            Santiago   -70.6475   -33.475         High income
## 2884            Santiago   -70.6475   -33.475         High income
## 2885            Santiago   -70.6475   -33.475         High income
## 2886            Santiago   -70.6475   -33.475         High income
## 2887            Santiago   -70.6475   -33.475         High income
## 2888            Santiago   -70.6475   -33.475         High income
## 2889            Santiago   -70.6475   -33.475         High income
## 2890            Santiago   -70.6475   -33.475         High income
## 2891            Santiago   -70.6475   -33.475         High income
## 2892            Santiago   -70.6475   -33.475         High income
## 2893            Santiago   -70.6475   -33.475         High income
## 2894            Santiago   -70.6475   -33.475         High income
## 2895            Santiago   -70.6475   -33.475         High income
## 2896            Santiago   -70.6475   -33.475         High income
## 2897            Santiago   -70.6475   -33.475         High income
## 2898            Santiago   -70.6475   -33.475         High income
## 2899             Beijing    116.286   40.0495 Upper middle income
## 2900             Beijing    116.286   40.0495 Upper middle income
## 2901             Beijing    116.286   40.0495 Upper middle income
## 2902             Beijing    116.286   40.0495 Upper middle income
## 2903             Beijing    116.286   40.0495 Upper middle income
## 2904             Beijing    116.286   40.0495 Upper middle income
## 2905             Beijing    116.286   40.0495 Upper middle income
## 2906             Beijing    116.286   40.0495 Upper middle income
## 2907             Beijing    116.286   40.0495 Upper middle income
## 2908             Beijing    116.286   40.0495 Upper middle income
## 2909             Beijing    116.286   40.0495 Upper middle income
## 2910             Beijing    116.286   40.0495 Upper middle income
## 2911             Beijing    116.286   40.0495 Upper middle income
## 2912             Beijing    116.286   40.0495 Upper middle income
## 2913             Beijing    116.286   40.0495 Upper middle income
## 2914             Beijing    116.286   40.0495 Upper middle income
## 2915             Beijing    116.286   40.0495 Upper middle income
## 2916             Beijing    116.286   40.0495 Upper middle income
## 2917             Beijing    116.286   40.0495 Upper middle income
## 2918             Beijing    116.286   40.0495 Upper middle income
## 2919             Beijing    116.286   40.0495 Upper middle income
## 2920             Beijing    116.286   40.0495 Upper middle income
## 2921             Beijing    116.286   40.0495 Upper middle income
## 2922             Beijing    116.286   40.0495 Upper middle income
## 2923             Beijing    116.286   40.0495 Upper middle income
## 2924             Beijing    116.286   40.0495 Upper middle income
## 2925             Beijing    116.286   40.0495 Upper middle income
## 2926             Beijing    116.286   40.0495 Upper middle income
## 2927             Beijing    116.286   40.0495 Upper middle income
## 2928             Beijing    116.286   40.0495 Upper middle income
## 2929             Beijing    116.286   40.0495 Upper middle income
## 2930             Beijing    116.286   40.0495 Upper middle income
## 2931             Beijing    116.286   40.0495 Upper middle income
## 2932             Beijing    116.286   40.0495 Upper middle income
## 2933             Beijing    116.286   40.0495 Upper middle income
## 2934             Beijing    116.286   40.0495 Upper middle income
## 2935             Beijing    116.286   40.0495 Upper middle income
## 2936             Beijing    116.286   40.0495 Upper middle income
## 2937             Beijing    116.286   40.0495 Upper middle income
## 2938             Beijing    116.286   40.0495 Upper middle income
## 2939             Beijing    116.286   40.0495 Upper middle income
## 2940             Beijing    116.286   40.0495 Upper middle income
## 2941             Beijing    116.286   40.0495 Upper middle income
## 2942             Beijing    116.286   40.0495 Upper middle income
## 2943             Beijing    116.286   40.0495 Upper middle income
## 2944             Beijing    116.286   40.0495 Upper middle income
## 2945             Beijing    116.286   40.0495 Upper middle income
## 2946             Beijing    116.286   40.0495 Upper middle income
## 2947             Beijing    116.286   40.0495 Upper middle income
## 2948             Beijing    116.286   40.0495 Upper middle income
## 2949             Beijing    116.286   40.0495 Upper middle income
## 2950             Beijing    116.286   40.0495 Upper middle income
## 2951             Beijing    116.286   40.0495 Upper middle income
## 2952             Beijing    116.286   40.0495 Upper middle income
## 2953             Beijing    116.286   40.0495 Upper middle income
## 2954             Beijing    116.286   40.0495 Upper middle income
## 2955             Beijing    116.286   40.0495 Upper middle income
## 2956             Beijing    116.286   40.0495 Upper middle income
## 2957             Beijing    116.286   40.0495 Upper middle income
## 2958             Beijing    116.286   40.0495 Upper middle income
## 2959             Beijing    116.286   40.0495 Upper middle income
## 2960             Beijing    116.286   40.0495 Upper middle income
## 2961             Beijing    116.286   40.0495 Upper middle income
## 2962              Bogota    -74.082   4.60987 Upper middle income
## 2963              Bogota    -74.082   4.60987 Upper middle income
## 2964              Bogota    -74.082   4.60987 Upper middle income
## 2965              Bogota    -74.082   4.60987 Upper middle income
## 2966              Bogota    -74.082   4.60987 Upper middle income
## 2967              Bogota    -74.082   4.60987 Upper middle income
## 2968              Bogota    -74.082   4.60987 Upper middle income
## 2969              Bogota    -74.082   4.60987 Upper middle income
## 2970              Bogota    -74.082   4.60987 Upper middle income
## 2971              Bogota    -74.082   4.60987 Upper middle income
## 2972              Bogota    -74.082   4.60987 Upper middle income
## 2973              Bogota    -74.082   4.60987 Upper middle income
## 2974              Bogota    -74.082   4.60987 Upper middle income
## 2975              Bogota    -74.082   4.60987 Upper middle income
## 2976              Bogota    -74.082   4.60987 Upper middle income
## 2977              Bogota    -74.082   4.60987 Upper middle income
## 2978              Bogota    -74.082   4.60987 Upper middle income
## 2979              Bogota    -74.082   4.60987 Upper middle income
## 2980              Bogota    -74.082   4.60987 Upper middle income
## 2981              Bogota    -74.082   4.60987 Upper middle income
## 2982              Bogota    -74.082   4.60987 Upper middle income
## 2983              Bogota    -74.082   4.60987 Upper middle income
## 2984              Bogota    -74.082   4.60987 Upper middle income
## 2985              Bogota    -74.082   4.60987 Upper middle income
## 2986              Bogota    -74.082   4.60987 Upper middle income
## 2987              Bogota    -74.082   4.60987 Upper middle income
## 2988              Bogota    -74.082   4.60987 Upper middle income
## 2989              Bogota    -74.082   4.60987 Upper middle income
## 2990              Bogota    -74.082   4.60987 Upper middle income
## 2991              Bogota    -74.082   4.60987 Upper middle income
## 2992              Bogota    -74.082   4.60987 Upper middle income
## 2993              Bogota    -74.082   4.60987 Upper middle income
## 2994              Bogota    -74.082   4.60987 Upper middle income
## 2995              Bogota    -74.082   4.60987 Upper middle income
## 2996              Bogota    -74.082   4.60987 Upper middle income
## 2997              Bogota    -74.082   4.60987 Upper middle income
## 2998              Bogota    -74.082   4.60987 Upper middle income
## 2999              Bogota    -74.082   4.60987 Upper middle income
## 3000              Bogota    -74.082   4.60987 Upper middle income
## 3001              Bogota    -74.082   4.60987 Upper middle income
## 3002              Bogota    -74.082   4.60987 Upper middle income
## 3003              Bogota    -74.082   4.60987 Upper middle income
## 3004              Bogota    -74.082   4.60987 Upper middle income
## 3005              Bogota    -74.082   4.60987 Upper middle income
## 3006              Bogota    -74.082   4.60987 Upper middle income
## 3007              Bogota    -74.082   4.60987 Upper middle income
## 3008              Bogota    -74.082   4.60987 Upper middle income
## 3009              Bogota    -74.082   4.60987 Upper middle income
## 3010              Bogota    -74.082   4.60987 Upper middle income
## 3011              Bogota    -74.082   4.60987 Upper middle income
## 3012              Bogota    -74.082   4.60987 Upper middle income
## 3013              Bogota    -74.082   4.60987 Upper middle income
## 3014              Bogota    -74.082   4.60987 Upper middle income
## 3015              Bogota    -74.082   4.60987 Upper middle income
## 3016              Bogota    -74.082   4.60987 Upper middle income
## 3017              Bogota    -74.082   4.60987 Upper middle income
## 3018              Bogota    -74.082   4.60987 Upper middle income
## 3019              Bogota    -74.082   4.60987 Upper middle income
## 3020              Bogota    -74.082   4.60987 Upper middle income
## 3021              Bogota    -74.082   4.60987 Upper middle income
## 3022              Bogota    -74.082   4.60987 Upper middle income
## 3023              Bogota    -74.082   4.60987 Upper middle income
## 3024              Bogota    -74.082   4.60987 Upper middle income
## 3025              Moroni    43.2418  -11.6986 Lower middle income
## 3026              Moroni    43.2418  -11.6986 Lower middle income
## 3027              Moroni    43.2418  -11.6986 Lower middle income
## 3028              Moroni    43.2418  -11.6986 Lower middle income
## 3029              Moroni    43.2418  -11.6986 Lower middle income
## 3030              Moroni    43.2418  -11.6986 Lower middle income
## 3031              Moroni    43.2418  -11.6986 Lower middle income
## 3032              Moroni    43.2418  -11.6986 Lower middle income
## 3033              Moroni    43.2418  -11.6986 Lower middle income
## 3034              Moroni    43.2418  -11.6986 Lower middle income
## 3035              Moroni    43.2418  -11.6986 Lower middle income
## 3036              Moroni    43.2418  -11.6986 Lower middle income
## 3037              Moroni    43.2418  -11.6986 Lower middle income
## 3038              Moroni    43.2418  -11.6986 Lower middle income
## 3039              Moroni    43.2418  -11.6986 Lower middle income
## 3040              Moroni    43.2418  -11.6986 Lower middle income
## 3041              Moroni    43.2418  -11.6986 Lower middle income
## 3042              Moroni    43.2418  -11.6986 Lower middle income
## 3043              Moroni    43.2418  -11.6986 Lower middle income
## 3044              Moroni    43.2418  -11.6986 Lower middle income
## 3045              Moroni    43.2418  -11.6986 Lower middle income
## 3046              Moroni    43.2418  -11.6986 Lower middle income
## 3047              Moroni    43.2418  -11.6986 Lower middle income
## 3048              Moroni    43.2418  -11.6986 Lower middle income
## 3049              Moroni    43.2418  -11.6986 Lower middle income
## 3050              Moroni    43.2418  -11.6986 Lower middle income
## 3051              Moroni    43.2418  -11.6986 Lower middle income
## 3052              Moroni    43.2418  -11.6986 Lower middle income
## 3053              Moroni    43.2418  -11.6986 Lower middle income
## 3054              Moroni    43.2418  -11.6986 Lower middle income
## 3055              Moroni    43.2418  -11.6986 Lower middle income
## 3056              Moroni    43.2418  -11.6986 Lower middle income
## 3057              Moroni    43.2418  -11.6986 Lower middle income
## 3058              Moroni    43.2418  -11.6986 Lower middle income
## 3059              Moroni    43.2418  -11.6986 Lower middle income
## 3060              Moroni    43.2418  -11.6986 Lower middle income
## 3061              Moroni    43.2418  -11.6986 Lower middle income
## 3062              Moroni    43.2418  -11.6986 Lower middle income
## 3063              Moroni    43.2418  -11.6986 Lower middle income
## 3064              Moroni    43.2418  -11.6986 Lower middle income
## 3065              Moroni    43.2418  -11.6986 Lower middle income
## 3066              Moroni    43.2418  -11.6986 Lower middle income
## 3067              Moroni    43.2418  -11.6986 Lower middle income
## 3068              Moroni    43.2418  -11.6986 Lower middle income
## 3069              Moroni    43.2418  -11.6986 Lower middle income
## 3070              Moroni    43.2418  -11.6986 Lower middle income
## 3071              Moroni    43.2418  -11.6986 Lower middle income
## 3072              Moroni    43.2418  -11.6986 Lower middle income
## 3073              Moroni    43.2418  -11.6986 Lower middle income
## 3074              Moroni    43.2418  -11.6986 Lower middle income
## 3075              Moroni    43.2418  -11.6986 Lower middle income
## 3076              Moroni    43.2418  -11.6986 Lower middle income
## 3077              Moroni    43.2418  -11.6986 Lower middle income
## 3078              Moroni    43.2418  -11.6986 Lower middle income
## 3079              Moroni    43.2418  -11.6986 Lower middle income
## 3080              Moroni    43.2418  -11.6986 Lower middle income
## 3081              Moroni    43.2418  -11.6986 Lower middle income
## 3082              Moroni    43.2418  -11.6986 Lower middle income
## 3083              Moroni    43.2418  -11.6986 Lower middle income
## 3084              Moroni    43.2418  -11.6986 Lower middle income
## 3085              Moroni    43.2418  -11.6986 Lower middle income
## 3086              Moroni    43.2418  -11.6986 Lower middle income
## 3087              Moroni    43.2418  -11.6986 Lower middle income
## 3088            Kinshasa    15.3222    -4.325          Low income
## 3089            Kinshasa    15.3222    -4.325          Low income
## 3090            Kinshasa    15.3222    -4.325          Low income
## 3091            Kinshasa    15.3222    -4.325          Low income
## 3092            Kinshasa    15.3222    -4.325          Low income
## 3093            Kinshasa    15.3222    -4.325          Low income
## 3094            Kinshasa    15.3222    -4.325          Low income
## 3095            Kinshasa    15.3222    -4.325          Low income
## 3096            Kinshasa    15.3222    -4.325          Low income
## 3097            Kinshasa    15.3222    -4.325          Low income
## 3098            Kinshasa    15.3222    -4.325          Low income
## 3099            Kinshasa    15.3222    -4.325          Low income
## 3100            Kinshasa    15.3222    -4.325          Low income
## 3101            Kinshasa    15.3222    -4.325          Low income
## 3102            Kinshasa    15.3222    -4.325          Low income
## 3103            Kinshasa    15.3222    -4.325          Low income
## 3104            Kinshasa    15.3222    -4.325          Low income
## 3105            Kinshasa    15.3222    -4.325          Low income
## 3106            Kinshasa    15.3222    -4.325          Low income
## 3107            Kinshasa    15.3222    -4.325          Low income
## 3108            Kinshasa    15.3222    -4.325          Low income
## 3109            Kinshasa    15.3222    -4.325          Low income
## 3110            Kinshasa    15.3222    -4.325          Low income
## 3111            Kinshasa    15.3222    -4.325          Low income
## 3112            Kinshasa    15.3222    -4.325          Low income
## 3113            Kinshasa    15.3222    -4.325          Low income
## 3114            Kinshasa    15.3222    -4.325          Low income
## 3115            Kinshasa    15.3222    -4.325          Low income
## 3116            Kinshasa    15.3222    -4.325          Low income
## 3117            Kinshasa    15.3222    -4.325          Low income
## 3118            Kinshasa    15.3222    -4.325          Low income
## 3119            Kinshasa    15.3222    -4.325          Low income
## 3120            Kinshasa    15.3222    -4.325          Low income
## 3121            Kinshasa    15.3222    -4.325          Low income
## 3122            Kinshasa    15.3222    -4.325          Low income
## 3123            Kinshasa    15.3222    -4.325          Low income
## 3124            Kinshasa    15.3222    -4.325          Low income
## 3125            Kinshasa    15.3222    -4.325          Low income
## 3126            Kinshasa    15.3222    -4.325          Low income
## 3127            Kinshasa    15.3222    -4.325          Low income
## 3128            Kinshasa    15.3222    -4.325          Low income
## 3129            Kinshasa    15.3222    -4.325          Low income
## 3130            Kinshasa    15.3222    -4.325          Low income
## 3131            Kinshasa    15.3222    -4.325          Low income
## 3132            Kinshasa    15.3222    -4.325          Low income
## 3133            Kinshasa    15.3222    -4.325          Low income
## 3134            Kinshasa    15.3222    -4.325          Low income
## 3135            Kinshasa    15.3222    -4.325          Low income
## 3136            Kinshasa    15.3222    -4.325          Low income
## 3137            Kinshasa    15.3222    -4.325          Low income
## 3138            Kinshasa    15.3222    -4.325          Low income
## 3139            Kinshasa    15.3222    -4.325          Low income
## 3140            Kinshasa    15.3222    -4.325          Low income
## 3141            Kinshasa    15.3222    -4.325          Low income
## 3142            Kinshasa    15.3222    -4.325          Low income
## 3143            Kinshasa    15.3222    -4.325          Low income
## 3144            Kinshasa    15.3222    -4.325          Low income
## 3145            Kinshasa    15.3222    -4.325          Low income
## 3146            Kinshasa    15.3222    -4.325          Low income
## 3147            Kinshasa    15.3222    -4.325          Low income
## 3148            Kinshasa    15.3222    -4.325          Low income
## 3149            Kinshasa    15.3222    -4.325          Low income
## 3150            Kinshasa    15.3222    -4.325          Low income
## 3151         Brazzaville    15.2662   -4.2767 Lower middle income
## 3152         Brazzaville    15.2662   -4.2767 Lower middle income
## 3153         Brazzaville    15.2662   -4.2767 Lower middle income
## 3154         Brazzaville    15.2662   -4.2767 Lower middle income
## 3155         Brazzaville    15.2662   -4.2767 Lower middle income
## 3156         Brazzaville    15.2662   -4.2767 Lower middle income
## 3157         Brazzaville    15.2662   -4.2767 Lower middle income
## 3158         Brazzaville    15.2662   -4.2767 Lower middle income
## 3159         Brazzaville    15.2662   -4.2767 Lower middle income
## 3160         Brazzaville    15.2662   -4.2767 Lower middle income
## 3161         Brazzaville    15.2662   -4.2767 Lower middle income
## 3162         Brazzaville    15.2662   -4.2767 Lower middle income
## 3163         Brazzaville    15.2662   -4.2767 Lower middle income
## 3164         Brazzaville    15.2662   -4.2767 Lower middle income
## 3165         Brazzaville    15.2662   -4.2767 Lower middle income
## 3166         Brazzaville    15.2662   -4.2767 Lower middle income
## 3167         Brazzaville    15.2662   -4.2767 Lower middle income
## 3168         Brazzaville    15.2662   -4.2767 Lower middle income
## 3169         Brazzaville    15.2662   -4.2767 Lower middle income
## 3170         Brazzaville    15.2662   -4.2767 Lower middle income
## 3171         Brazzaville    15.2662   -4.2767 Lower middle income
## 3172         Brazzaville    15.2662   -4.2767 Lower middle income
## 3173         Brazzaville    15.2662   -4.2767 Lower middle income
## 3174         Brazzaville    15.2662   -4.2767 Lower middle income
## 3175         Brazzaville    15.2662   -4.2767 Lower middle income
## 3176         Brazzaville    15.2662   -4.2767 Lower middle income
## 3177         Brazzaville    15.2662   -4.2767 Lower middle income
## 3178         Brazzaville    15.2662   -4.2767 Lower middle income
## 3179         Brazzaville    15.2662   -4.2767 Lower middle income
## 3180         Brazzaville    15.2662   -4.2767 Lower middle income
## 3181         Brazzaville    15.2662   -4.2767 Lower middle income
## 3182         Brazzaville    15.2662   -4.2767 Lower middle income
## 3183         Brazzaville    15.2662   -4.2767 Lower middle income
## 3184         Brazzaville    15.2662   -4.2767 Lower middle income
## 3185         Brazzaville    15.2662   -4.2767 Lower middle income
## 3186         Brazzaville    15.2662   -4.2767 Lower middle income
## 3187         Brazzaville    15.2662   -4.2767 Lower middle income
## 3188         Brazzaville    15.2662   -4.2767 Lower middle income
## 3189         Brazzaville    15.2662   -4.2767 Lower middle income
## 3190         Brazzaville    15.2662   -4.2767 Lower middle income
## 3191         Brazzaville    15.2662   -4.2767 Lower middle income
## 3192         Brazzaville    15.2662   -4.2767 Lower middle income
## 3193         Brazzaville    15.2662   -4.2767 Lower middle income
## 3194         Brazzaville    15.2662   -4.2767 Lower middle income
## 3195         Brazzaville    15.2662   -4.2767 Lower middle income
## 3196         Brazzaville    15.2662   -4.2767 Lower middle income
## 3197         Brazzaville    15.2662   -4.2767 Lower middle income
## 3198         Brazzaville    15.2662   -4.2767 Lower middle income
## 3199         Brazzaville    15.2662   -4.2767 Lower middle income
## 3200         Brazzaville    15.2662   -4.2767 Lower middle income
## 3201         Brazzaville    15.2662   -4.2767 Lower middle income
## 3202         Brazzaville    15.2662   -4.2767 Lower middle income
## 3203         Brazzaville    15.2662   -4.2767 Lower middle income
## 3204         Brazzaville    15.2662   -4.2767 Lower middle income
## 3205         Brazzaville    15.2662   -4.2767 Lower middle income
## 3206         Brazzaville    15.2662   -4.2767 Lower middle income
## 3207         Brazzaville    15.2662   -4.2767 Lower middle income
## 3208         Brazzaville    15.2662   -4.2767 Lower middle income
## 3209         Brazzaville    15.2662   -4.2767 Lower middle income
## 3210         Brazzaville    15.2662   -4.2767 Lower middle income
## 3211         Brazzaville    15.2662   -4.2767 Lower middle income
## 3212         Brazzaville    15.2662   -4.2767 Lower middle income
## 3213         Brazzaville    15.2662   -4.2767 Lower middle income
## 3214            San Jose   -84.0089   9.63701 Upper middle income
## 3215            San Jose   -84.0089   9.63701 Upper middle income
## 3216            San Jose   -84.0089   9.63701 Upper middle income
## 3217            San Jose   -84.0089   9.63701 Upper middle income
## 3218            San Jose   -84.0089   9.63701 Upper middle income
## 3219            San Jose   -84.0089   9.63701 Upper middle income
## 3220            San Jose   -84.0089   9.63701 Upper middle income
## 3221            San Jose   -84.0089   9.63701 Upper middle income
## 3222            San Jose   -84.0089   9.63701 Upper middle income
## 3223            San Jose   -84.0089   9.63701 Upper middle income
## 3224            San Jose   -84.0089   9.63701 Upper middle income
## 3225            San Jose   -84.0089   9.63701 Upper middle income
## 3226            San Jose   -84.0089   9.63701 Upper middle income
## 3227            San Jose   -84.0089   9.63701 Upper middle income
## 3228            San Jose   -84.0089   9.63701 Upper middle income
## 3229            San Jose   -84.0089   9.63701 Upper middle income
## 3230            San Jose   -84.0089   9.63701 Upper middle income
## 3231            San Jose   -84.0089   9.63701 Upper middle income
## 3232            San Jose   -84.0089   9.63701 Upper middle income
## 3233            San Jose   -84.0089   9.63701 Upper middle income
## 3234            San Jose   -84.0089   9.63701 Upper middle income
## 3235            San Jose   -84.0089   9.63701 Upper middle income
## 3236            San Jose   -84.0089   9.63701 Upper middle income
## 3237            San Jose   -84.0089   9.63701 Upper middle income
## 3238            San Jose   -84.0089   9.63701 Upper middle income
## 3239            San Jose   -84.0089   9.63701 Upper middle income
## 3240            San Jose   -84.0089   9.63701 Upper middle income
## 3241            San Jose   -84.0089   9.63701 Upper middle income
## 3242            San Jose   -84.0089   9.63701 Upper middle income
## 3243            San Jose   -84.0089   9.63701 Upper middle income
## 3244            San Jose   -84.0089   9.63701 Upper middle income
## 3245            San Jose   -84.0089   9.63701 Upper middle income
## 3246            San Jose   -84.0089   9.63701 Upper middle income
## 3247            San Jose   -84.0089   9.63701 Upper middle income
## 3248            San Jose   -84.0089   9.63701 Upper middle income
## 3249            San Jose   -84.0089   9.63701 Upper middle income
## 3250            San Jose   -84.0089   9.63701 Upper middle income
## 3251            San Jose   -84.0089   9.63701 Upper middle income
## 3252            San Jose   -84.0089   9.63701 Upper middle income
## 3253            San Jose   -84.0089   9.63701 Upper middle income
## 3254            San Jose   -84.0089   9.63701 Upper middle income
## 3255            San Jose   -84.0089   9.63701 Upper middle income
## 3256            San Jose   -84.0089   9.63701 Upper middle income
## 3257            San Jose   -84.0089   9.63701 Upper middle income
## 3258            San Jose   -84.0089   9.63701 Upper middle income
## 3259            San Jose   -84.0089   9.63701 Upper middle income
## 3260            San Jose   -84.0089   9.63701 Upper middle income
## 3261            San Jose   -84.0089   9.63701 Upper middle income
## 3262            San Jose   -84.0089   9.63701 Upper middle income
## 3263            San Jose   -84.0089   9.63701 Upper middle income
## 3264            San Jose   -84.0089   9.63701 Upper middle income
## 3265            San Jose   -84.0089   9.63701 Upper middle income
## 3266            San Jose   -84.0089   9.63701 Upper middle income
## 3267            San Jose   -84.0089   9.63701 Upper middle income
## 3268            San Jose   -84.0089   9.63701 Upper middle income
## 3269            San Jose   -84.0089   9.63701 Upper middle income
## 3270            San Jose   -84.0089   9.63701 Upper middle income
## 3271            San Jose   -84.0089   9.63701 Upper middle income
## 3272            San Jose   -84.0089   9.63701 Upper middle income
## 3273            San Jose   -84.0089   9.63701 Upper middle income
## 3274            San Jose   -84.0089   9.63701 Upper middle income
## 3275            San Jose   -84.0089   9.63701 Upper middle income
## 3276            San Jose   -84.0089   9.63701 Upper middle income
## 3277        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3278        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3279        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3280        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3281        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3282        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3283        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3284        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3285        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3286        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3287        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3288        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3289        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3290        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3291        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3292        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3293        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3294        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3295        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3296        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3297        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3298        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3299        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3300        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3301        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3302        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3303        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3304        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3305        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3306        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3307        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3308        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3309        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3310        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3311        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3312        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3313        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3314        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3315        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3316        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3317        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3318        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3319        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3320        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3321        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3322        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3323        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3324        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3325        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3326        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3327        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3328        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3329        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3330        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3331        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3332        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3333        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3334        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3335        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3336        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3337        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3338        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3339        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3340              Zagreb    15.9614   45.8069         High income
## 3341              Zagreb    15.9614   45.8069         High income
## 3342              Zagreb    15.9614   45.8069         High income
## 3343              Zagreb    15.9614   45.8069         High income
## 3344              Zagreb    15.9614   45.8069         High income
## 3345              Zagreb    15.9614   45.8069         High income
## 3346              Zagreb    15.9614   45.8069         High income
## 3347              Zagreb    15.9614   45.8069         High income
## 3348              Zagreb    15.9614   45.8069         High income
## 3349              Zagreb    15.9614   45.8069         High income
## 3350              Zagreb    15.9614   45.8069         High income
## 3351              Zagreb    15.9614   45.8069         High income
## 3352              Zagreb    15.9614   45.8069         High income
## 3353              Zagreb    15.9614   45.8069         High income
## 3354              Zagreb    15.9614   45.8069         High income
## 3355              Zagreb    15.9614   45.8069         High income
## 3356              Zagreb    15.9614   45.8069         High income
## 3357              Zagreb    15.9614   45.8069         High income
## 3358              Zagreb    15.9614   45.8069         High income
## 3359              Zagreb    15.9614   45.8069         High income
## 3360              Zagreb    15.9614   45.8069         High income
## 3361              Zagreb    15.9614   45.8069         High income
## 3362              Zagreb    15.9614   45.8069         High income
## 3363              Zagreb    15.9614   45.8069         High income
## 3364              Zagreb    15.9614   45.8069         High income
## 3365              Zagreb    15.9614   45.8069         High income
## 3366              Zagreb    15.9614   45.8069         High income
## 3367              Zagreb    15.9614   45.8069         High income
## 3368              Zagreb    15.9614   45.8069         High income
## 3369              Zagreb    15.9614   45.8069         High income
## 3370              Zagreb    15.9614   45.8069         High income
## 3371              Zagreb    15.9614   45.8069         High income
## 3372              Zagreb    15.9614   45.8069         High income
## 3373              Zagreb    15.9614   45.8069         High income
## 3374              Zagreb    15.9614   45.8069         High income
## 3375              Zagreb    15.9614   45.8069         High income
## 3376              Zagreb    15.9614   45.8069         High income
## 3377              Zagreb    15.9614   45.8069         High income
## 3378              Zagreb    15.9614   45.8069         High income
## 3379              Zagreb    15.9614   45.8069         High income
## 3380              Zagreb    15.9614   45.8069         High income
## 3381              Zagreb    15.9614   45.8069         High income
## 3382              Zagreb    15.9614   45.8069         High income
## 3383              Zagreb    15.9614   45.8069         High income
## 3384              Zagreb    15.9614   45.8069         High income
## 3385              Zagreb    15.9614   45.8069         High income
## 3386              Zagreb    15.9614   45.8069         High income
## 3387              Zagreb    15.9614   45.8069         High income
## 3388              Zagreb    15.9614   45.8069         High income
## 3389              Zagreb    15.9614   45.8069         High income
## 3390              Zagreb    15.9614   45.8069         High income
## 3391              Zagreb    15.9614   45.8069         High income
## 3392              Zagreb    15.9614   45.8069         High income
## 3393              Zagreb    15.9614   45.8069         High income
## 3394              Zagreb    15.9614   45.8069         High income
## 3395              Zagreb    15.9614   45.8069         High income
## 3396              Zagreb    15.9614   45.8069         High income
## 3397              Zagreb    15.9614   45.8069         High income
## 3398              Zagreb    15.9614   45.8069         High income
## 3399              Zagreb    15.9614   45.8069         High income
## 3400              Zagreb    15.9614   45.8069         High income
## 3401              Zagreb    15.9614   45.8069         High income
## 3402              Zagreb    15.9614   45.8069         High income
## 3403              Havana   -82.3667   23.1333 Upper middle income
## 3404              Havana   -82.3667   23.1333 Upper middle income
## 3405              Havana   -82.3667   23.1333 Upper middle income
## 3406              Havana   -82.3667   23.1333 Upper middle income
## 3407              Havana   -82.3667   23.1333 Upper middle income
## 3408              Havana   -82.3667   23.1333 Upper middle income
## 3409              Havana   -82.3667   23.1333 Upper middle income
## 3410              Havana   -82.3667   23.1333 Upper middle income
## 3411              Havana   -82.3667   23.1333 Upper middle income
## 3412              Havana   -82.3667   23.1333 Upper middle income
## 3413              Havana   -82.3667   23.1333 Upper middle income
## 3414              Havana   -82.3667   23.1333 Upper middle income
## 3415              Havana   -82.3667   23.1333 Upper middle income
## 3416              Havana   -82.3667   23.1333 Upper middle income
## 3417              Havana   -82.3667   23.1333 Upper middle income
## 3418              Havana   -82.3667   23.1333 Upper middle income
## 3419              Havana   -82.3667   23.1333 Upper middle income
## 3420              Havana   -82.3667   23.1333 Upper middle income
## 3421              Havana   -82.3667   23.1333 Upper middle income
## 3422              Havana   -82.3667   23.1333 Upper middle income
## 3423              Havana   -82.3667   23.1333 Upper middle income
## 3424              Havana   -82.3667   23.1333 Upper middle income
## 3425              Havana   -82.3667   23.1333 Upper middle income
## 3426              Havana   -82.3667   23.1333 Upper middle income
## 3427              Havana   -82.3667   23.1333 Upper middle income
## 3428              Havana   -82.3667   23.1333 Upper middle income
## 3429              Havana   -82.3667   23.1333 Upper middle income
## 3430              Havana   -82.3667   23.1333 Upper middle income
## 3431              Havana   -82.3667   23.1333 Upper middle income
## 3432              Havana   -82.3667   23.1333 Upper middle income
## 3433              Havana   -82.3667   23.1333 Upper middle income
## 3434              Havana   -82.3667   23.1333 Upper middle income
## 3435              Havana   -82.3667   23.1333 Upper middle income
## 3436              Havana   -82.3667   23.1333 Upper middle income
## 3437              Havana   -82.3667   23.1333 Upper middle income
## 3438              Havana   -82.3667   23.1333 Upper middle income
## 3439              Havana   -82.3667   23.1333 Upper middle income
## 3440              Havana   -82.3667   23.1333 Upper middle income
## 3441              Havana   -82.3667   23.1333 Upper middle income
## 3442              Havana   -82.3667   23.1333 Upper middle income
## 3443              Havana   -82.3667   23.1333 Upper middle income
## 3444              Havana   -82.3667   23.1333 Upper middle income
## 3445              Havana   -82.3667   23.1333 Upper middle income
## 3446              Havana   -82.3667   23.1333 Upper middle income
## 3447              Havana   -82.3667   23.1333 Upper middle income
## 3448              Havana   -82.3667   23.1333 Upper middle income
## 3449              Havana   -82.3667   23.1333 Upper middle income
## 3450              Havana   -82.3667   23.1333 Upper middle income
## 3451              Havana   -82.3667   23.1333 Upper middle income
## 3452              Havana   -82.3667   23.1333 Upper middle income
## 3453              Havana   -82.3667   23.1333 Upper middle income
## 3454              Havana   -82.3667   23.1333 Upper middle income
## 3455              Havana   -82.3667   23.1333 Upper middle income
## 3456              Havana   -82.3667   23.1333 Upper middle income
## 3457              Havana   -82.3667   23.1333 Upper middle income
## 3458              Havana   -82.3667   23.1333 Upper middle income
## 3459              Havana   -82.3667   23.1333 Upper middle income
## 3460              Havana   -82.3667   23.1333 Upper middle income
## 3461              Havana   -82.3667   23.1333 Upper middle income
## 3462              Havana   -82.3667   23.1333 Upper middle income
## 3463              Havana   -82.3667   23.1333 Upper middle income
## 3464              Havana   -82.3667   23.1333 Upper middle income
## 3465              Havana   -82.3667   23.1333 Upper middle income
## 3466          Willemstad                              High income
## 3467          Willemstad                              High income
## 3468          Willemstad                              High income
## 3469          Willemstad                              High income
## 3470          Willemstad                              High income
## 3471          Willemstad                              High income
## 3472          Willemstad                              High income
## 3473          Willemstad                              High income
## 3474          Willemstad                              High income
## 3475          Willemstad                              High income
## 3476          Willemstad                              High income
## 3477          Willemstad                              High income
## 3478          Willemstad                              High income
## 3479          Willemstad                              High income
## 3480          Willemstad                              High income
## 3481          Willemstad                              High income
## 3482          Willemstad                              High income
## 3483          Willemstad                              High income
## 3484          Willemstad                              High income
## 3485          Willemstad                              High income
## 3486          Willemstad                              High income
## 3487          Willemstad                              High income
## 3488          Willemstad                              High income
## 3489          Willemstad                              High income
## 3490          Willemstad                              High income
## 3491          Willemstad                              High income
## 3492          Willemstad                              High income
## 3493          Willemstad                              High income
## 3494          Willemstad                              High income
## 3495          Willemstad                              High income
## 3496          Willemstad                              High income
## 3497          Willemstad                              High income
## 3498          Willemstad                              High income
## 3499          Willemstad                              High income
## 3500          Willemstad                              High income
## 3501          Willemstad                              High income
## 3502          Willemstad                              High income
## 3503          Willemstad                              High income
## 3504          Willemstad                              High income
## 3505          Willemstad                              High income
## 3506          Willemstad                              High income
## 3507          Willemstad                              High income
## 3508          Willemstad                              High income
## 3509          Willemstad                              High income
## 3510          Willemstad                              High income
## 3511          Willemstad                              High income
## 3512          Willemstad                              High income
## 3513          Willemstad                              High income
## 3514          Willemstad                              High income
## 3515          Willemstad                              High income
## 3516          Willemstad                              High income
## 3517          Willemstad                              High income
## 3518          Willemstad                              High income
## 3519          Willemstad                              High income
## 3520          Willemstad                              High income
## 3521          Willemstad                              High income
## 3522          Willemstad                              High income
## 3523          Willemstad                              High income
## 3524          Willemstad                              High income
## 3525          Willemstad                              High income
## 3526          Willemstad                              High income
## 3527          Willemstad                              High income
## 3528          Willemstad                              High income
## 3529             Nicosia    33.3736   35.1676         High income
## 3530             Nicosia    33.3736   35.1676         High income
## 3531             Nicosia    33.3736   35.1676         High income
## 3532             Nicosia    33.3736   35.1676         High income
## 3533             Nicosia    33.3736   35.1676         High income
## 3534             Nicosia    33.3736   35.1676         High income
## 3535             Nicosia    33.3736   35.1676         High income
## 3536             Nicosia    33.3736   35.1676         High income
## 3537             Nicosia    33.3736   35.1676         High income
## 3538             Nicosia    33.3736   35.1676         High income
## 3539             Nicosia    33.3736   35.1676         High income
## 3540             Nicosia    33.3736   35.1676         High income
## 3541             Nicosia    33.3736   35.1676         High income
## 3542             Nicosia    33.3736   35.1676         High income
## 3543             Nicosia    33.3736   35.1676         High income
## 3544             Nicosia    33.3736   35.1676         High income
## 3545             Nicosia    33.3736   35.1676         High income
## 3546             Nicosia    33.3736   35.1676         High income
## 3547             Nicosia    33.3736   35.1676         High income
## 3548             Nicosia    33.3736   35.1676         High income
## 3549             Nicosia    33.3736   35.1676         High income
## 3550             Nicosia    33.3736   35.1676         High income
## 3551             Nicosia    33.3736   35.1676         High income
## 3552             Nicosia    33.3736   35.1676         High income
## 3553             Nicosia    33.3736   35.1676         High income
## 3554             Nicosia    33.3736   35.1676         High income
## 3555             Nicosia    33.3736   35.1676         High income
## 3556             Nicosia    33.3736   35.1676         High income
## 3557             Nicosia    33.3736   35.1676         High income
## 3558             Nicosia    33.3736   35.1676         High income
## 3559             Nicosia    33.3736   35.1676         High income
## 3560             Nicosia    33.3736   35.1676         High income
## 3561             Nicosia    33.3736   35.1676         High income
## 3562             Nicosia    33.3736   35.1676         High income
## 3563             Nicosia    33.3736   35.1676         High income
## 3564             Nicosia    33.3736   35.1676         High income
## 3565             Nicosia    33.3736   35.1676         High income
## 3566             Nicosia    33.3736   35.1676         High income
## 3567             Nicosia    33.3736   35.1676         High income
## 3568             Nicosia    33.3736   35.1676         High income
## 3569             Nicosia    33.3736   35.1676         High income
## 3570             Nicosia    33.3736   35.1676         High income
## 3571             Nicosia    33.3736   35.1676         High income
## 3572             Nicosia    33.3736   35.1676         High income
## 3573             Nicosia    33.3736   35.1676         High income
## 3574             Nicosia    33.3736   35.1676         High income
## 3575             Nicosia    33.3736   35.1676         High income
## 3576             Nicosia    33.3736   35.1676         High income
## 3577             Nicosia    33.3736   35.1676         High income
## 3578             Nicosia    33.3736   35.1676         High income
## 3579             Nicosia    33.3736   35.1676         High income
## 3580             Nicosia    33.3736   35.1676         High income
## 3581             Nicosia    33.3736   35.1676         High income
## 3582             Nicosia    33.3736   35.1676         High income
## 3583             Nicosia    33.3736   35.1676         High income
## 3584             Nicosia    33.3736   35.1676         High income
## 3585             Nicosia    33.3736   35.1676         High income
## 3586             Nicosia    33.3736   35.1676         High income
## 3587             Nicosia    33.3736   35.1676         High income
## 3588             Nicosia    33.3736   35.1676         High income
## 3589             Nicosia    33.3736   35.1676         High income
## 3590             Nicosia    33.3736   35.1676         High income
## 3591             Nicosia    33.3736   35.1676         High income
## 3592              Prague    14.4205   50.0878         High income
## 3593              Prague    14.4205   50.0878         High income
## 3594              Prague    14.4205   50.0878         High income
## 3595              Prague    14.4205   50.0878         High income
## 3596              Prague    14.4205   50.0878         High income
## 3597              Prague    14.4205   50.0878         High income
## 3598              Prague    14.4205   50.0878         High income
## 3599              Prague    14.4205   50.0878         High income
## 3600              Prague    14.4205   50.0878         High income
## 3601              Prague    14.4205   50.0878         High income
## 3602              Prague    14.4205   50.0878         High income
## 3603              Prague    14.4205   50.0878         High income
## 3604              Prague    14.4205   50.0878         High income
## 3605              Prague    14.4205   50.0878         High income
## 3606              Prague    14.4205   50.0878         High income
## 3607              Prague    14.4205   50.0878         High income
## 3608              Prague    14.4205   50.0878         High income
## 3609              Prague    14.4205   50.0878         High income
## 3610              Prague    14.4205   50.0878         High income
## 3611              Prague    14.4205   50.0878         High income
## 3612              Prague    14.4205   50.0878         High income
## 3613              Prague    14.4205   50.0878         High income
## 3614              Prague    14.4205   50.0878         High income
## 3615              Prague    14.4205   50.0878         High income
## 3616              Prague    14.4205   50.0878         High income
## 3617              Prague    14.4205   50.0878         High income
## 3618              Prague    14.4205   50.0878         High income
## 3619              Prague    14.4205   50.0878         High income
## 3620              Prague    14.4205   50.0878         High income
## 3621              Prague    14.4205   50.0878         High income
## 3622              Prague    14.4205   50.0878         High income
## 3623              Prague    14.4205   50.0878         High income
## 3624              Prague    14.4205   50.0878         High income
## 3625              Prague    14.4205   50.0878         High income
## 3626              Prague    14.4205   50.0878         High income
## 3627              Prague    14.4205   50.0878         High income
## 3628              Prague    14.4205   50.0878         High income
## 3629              Prague    14.4205   50.0878         High income
## 3630              Prague    14.4205   50.0878         High income
## 3631              Prague    14.4205   50.0878         High income
## 3632              Prague    14.4205   50.0878         High income
## 3633              Prague    14.4205   50.0878         High income
## 3634              Prague    14.4205   50.0878         High income
## 3635              Prague    14.4205   50.0878         High income
## 3636              Prague    14.4205   50.0878         High income
## 3637              Prague    14.4205   50.0878         High income
## 3638              Prague    14.4205   50.0878         High income
## 3639              Prague    14.4205   50.0878         High income
## 3640              Prague    14.4205   50.0878         High income
## 3641              Prague    14.4205   50.0878         High income
## 3642              Prague    14.4205   50.0878         High income
## 3643              Prague    14.4205   50.0878         High income
## 3644              Prague    14.4205   50.0878         High income
## 3645              Prague    14.4205   50.0878         High income
## 3646              Prague    14.4205   50.0878         High income
## 3647              Prague    14.4205   50.0878         High income
## 3648              Prague    14.4205   50.0878         High income
## 3649              Prague    14.4205   50.0878         High income
## 3650              Prague    14.4205   50.0878         High income
## 3651              Prague    14.4205   50.0878         High income
## 3652              Prague    14.4205   50.0878         High income
## 3653              Prague    14.4205   50.0878         High income
## 3654              Prague    14.4205   50.0878         High income
## 3655          Copenhagen    12.5681   55.6763         High income
## 3656          Copenhagen    12.5681   55.6763         High income
## 3657          Copenhagen    12.5681   55.6763         High income
## 3658          Copenhagen    12.5681   55.6763         High income
## 3659          Copenhagen    12.5681   55.6763         High income
## 3660          Copenhagen    12.5681   55.6763         High income
## 3661          Copenhagen    12.5681   55.6763         High income
## 3662          Copenhagen    12.5681   55.6763         High income
## 3663          Copenhagen    12.5681   55.6763         High income
## 3664          Copenhagen    12.5681   55.6763         High income
## 3665          Copenhagen    12.5681   55.6763         High income
## 3666          Copenhagen    12.5681   55.6763         High income
## 3667          Copenhagen    12.5681   55.6763         High income
## 3668          Copenhagen    12.5681   55.6763         High income
## 3669          Copenhagen    12.5681   55.6763         High income
## 3670          Copenhagen    12.5681   55.6763         High income
## 3671          Copenhagen    12.5681   55.6763         High income
## 3672          Copenhagen    12.5681   55.6763         High income
## 3673          Copenhagen    12.5681   55.6763         High income
## 3674          Copenhagen    12.5681   55.6763         High income
## 3675          Copenhagen    12.5681   55.6763         High income
## 3676          Copenhagen    12.5681   55.6763         High income
## 3677          Copenhagen    12.5681   55.6763         High income
## 3678          Copenhagen    12.5681   55.6763         High income
## 3679          Copenhagen    12.5681   55.6763         High income
## 3680          Copenhagen    12.5681   55.6763         High income
## 3681          Copenhagen    12.5681   55.6763         High income
## 3682          Copenhagen    12.5681   55.6763         High income
## 3683          Copenhagen    12.5681   55.6763         High income
## 3684          Copenhagen    12.5681   55.6763         High income
## 3685          Copenhagen    12.5681   55.6763         High income
## 3686          Copenhagen    12.5681   55.6763         High income
## 3687          Copenhagen    12.5681   55.6763         High income
## 3688          Copenhagen    12.5681   55.6763         High income
## 3689          Copenhagen    12.5681   55.6763         High income
## 3690          Copenhagen    12.5681   55.6763         High income
## 3691          Copenhagen    12.5681   55.6763         High income
## 3692          Copenhagen    12.5681   55.6763         High income
## 3693          Copenhagen    12.5681   55.6763         High income
## 3694          Copenhagen    12.5681   55.6763         High income
## 3695          Copenhagen    12.5681   55.6763         High income
## 3696          Copenhagen    12.5681   55.6763         High income
## 3697          Copenhagen    12.5681   55.6763         High income
## 3698          Copenhagen    12.5681   55.6763         High income
## 3699          Copenhagen    12.5681   55.6763         High income
## 3700          Copenhagen    12.5681   55.6763         High income
## 3701          Copenhagen    12.5681   55.6763         High income
## 3702          Copenhagen    12.5681   55.6763         High income
## 3703          Copenhagen    12.5681   55.6763         High income
## 3704          Copenhagen    12.5681   55.6763         High income
## 3705          Copenhagen    12.5681   55.6763         High income
## 3706          Copenhagen    12.5681   55.6763         High income
## 3707          Copenhagen    12.5681   55.6763         High income
## 3708          Copenhagen    12.5681   55.6763         High income
## 3709          Copenhagen    12.5681   55.6763         High income
## 3710          Copenhagen    12.5681   55.6763         High income
## 3711          Copenhagen    12.5681   55.6763         High income
## 3712          Copenhagen    12.5681   55.6763         High income
## 3713          Copenhagen    12.5681   55.6763         High income
## 3714          Copenhagen    12.5681   55.6763         High income
## 3715          Copenhagen    12.5681   55.6763         High income
## 3716          Copenhagen    12.5681   55.6763         High income
## 3717          Copenhagen    12.5681   55.6763         High income
## 3718            Djibouti    43.1425   11.5806 Lower middle income
## 3719            Djibouti    43.1425   11.5806 Lower middle income
## 3720            Djibouti    43.1425   11.5806 Lower middle income
## 3721            Djibouti    43.1425   11.5806 Lower middle income
## 3722            Djibouti    43.1425   11.5806 Lower middle income
## 3723            Djibouti    43.1425   11.5806 Lower middle income
## 3724            Djibouti    43.1425   11.5806 Lower middle income
## 3725            Djibouti    43.1425   11.5806 Lower middle income
## 3726            Djibouti    43.1425   11.5806 Lower middle income
## 3727            Djibouti    43.1425   11.5806 Lower middle income
## 3728            Djibouti    43.1425   11.5806 Lower middle income
## 3729            Djibouti    43.1425   11.5806 Lower middle income
## 3730            Djibouti    43.1425   11.5806 Lower middle income
## 3731            Djibouti    43.1425   11.5806 Lower middle income
## 3732            Djibouti    43.1425   11.5806 Lower middle income
## 3733            Djibouti    43.1425   11.5806 Lower middle income
## 3734            Djibouti    43.1425   11.5806 Lower middle income
## 3735            Djibouti    43.1425   11.5806 Lower middle income
## 3736            Djibouti    43.1425   11.5806 Lower middle income
## 3737            Djibouti    43.1425   11.5806 Lower middle income
## 3738            Djibouti    43.1425   11.5806 Lower middle income
## 3739            Djibouti    43.1425   11.5806 Lower middle income
## 3740            Djibouti    43.1425   11.5806 Lower middle income
## 3741            Djibouti    43.1425   11.5806 Lower middle income
## 3742            Djibouti    43.1425   11.5806 Lower middle income
## 3743            Djibouti    43.1425   11.5806 Lower middle income
## 3744            Djibouti    43.1425   11.5806 Lower middle income
## 3745            Djibouti    43.1425   11.5806 Lower middle income
## 3746            Djibouti    43.1425   11.5806 Lower middle income
## 3747            Djibouti    43.1425   11.5806 Lower middle income
## 3748            Djibouti    43.1425   11.5806 Lower middle income
## 3749            Djibouti    43.1425   11.5806 Lower middle income
## 3750            Djibouti    43.1425   11.5806 Lower middle income
## 3751            Djibouti    43.1425   11.5806 Lower middle income
## 3752            Djibouti    43.1425   11.5806 Lower middle income
## 3753            Djibouti    43.1425   11.5806 Lower middle income
## 3754            Djibouti    43.1425   11.5806 Lower middle income
## 3755            Djibouti    43.1425   11.5806 Lower middle income
## 3756            Djibouti    43.1425   11.5806 Lower middle income
## 3757            Djibouti    43.1425   11.5806 Lower middle income
## 3758            Djibouti    43.1425   11.5806 Lower middle income
## 3759            Djibouti    43.1425   11.5806 Lower middle income
## 3760            Djibouti    43.1425   11.5806 Lower middle income
## 3761            Djibouti    43.1425   11.5806 Lower middle income
## 3762            Djibouti    43.1425   11.5806 Lower middle income
## 3763            Djibouti    43.1425   11.5806 Lower middle income
## 3764            Djibouti    43.1425   11.5806 Lower middle income
## 3765            Djibouti    43.1425   11.5806 Lower middle income
## 3766            Djibouti    43.1425   11.5806 Lower middle income
## 3767            Djibouti    43.1425   11.5806 Lower middle income
## 3768            Djibouti    43.1425   11.5806 Lower middle income
## 3769            Djibouti    43.1425   11.5806 Lower middle income
## 3770            Djibouti    43.1425   11.5806 Lower middle income
## 3771            Djibouti    43.1425   11.5806 Lower middle income
## 3772            Djibouti    43.1425   11.5806 Lower middle income
## 3773            Djibouti    43.1425   11.5806 Lower middle income
## 3774            Djibouti    43.1425   11.5806 Lower middle income
## 3775            Djibouti    43.1425   11.5806 Lower middle income
## 3776            Djibouti    43.1425   11.5806 Lower middle income
## 3777            Djibouti    43.1425   11.5806 Lower middle income
## 3778            Djibouti    43.1425   11.5806 Lower middle income
## 3779            Djibouti    43.1425   11.5806 Lower middle income
## 3780            Djibouti    43.1425   11.5806 Lower middle income
## 3781              Roseau     -61.39   15.2976 Upper middle income
## 3782              Roseau     -61.39   15.2976 Upper middle income
## 3783              Roseau     -61.39   15.2976 Upper middle income
## 3784              Roseau     -61.39   15.2976 Upper middle income
## 3785              Roseau     -61.39   15.2976 Upper middle income
## 3786              Roseau     -61.39   15.2976 Upper middle income
## 3787              Roseau     -61.39   15.2976 Upper middle income
## 3788              Roseau     -61.39   15.2976 Upper middle income
## 3789              Roseau     -61.39   15.2976 Upper middle income
## 3790              Roseau     -61.39   15.2976 Upper middle income
## 3791              Roseau     -61.39   15.2976 Upper middle income
## 3792              Roseau     -61.39   15.2976 Upper middle income
## 3793              Roseau     -61.39   15.2976 Upper middle income
## 3794              Roseau     -61.39   15.2976 Upper middle income
## 3795              Roseau     -61.39   15.2976 Upper middle income
## 3796              Roseau     -61.39   15.2976 Upper middle income
## 3797              Roseau     -61.39   15.2976 Upper middle income
## 3798              Roseau     -61.39   15.2976 Upper middle income
## 3799              Roseau     -61.39   15.2976 Upper middle income
## 3800              Roseau     -61.39   15.2976 Upper middle income
## 3801              Roseau     -61.39   15.2976 Upper middle income
## 3802              Roseau     -61.39   15.2976 Upper middle income
## 3803              Roseau     -61.39   15.2976 Upper middle income
## 3804              Roseau     -61.39   15.2976 Upper middle income
## 3805              Roseau     -61.39   15.2976 Upper middle income
## 3806              Roseau     -61.39   15.2976 Upper middle income
## 3807              Roseau     -61.39   15.2976 Upper middle income
## 3808              Roseau     -61.39   15.2976 Upper middle income
## 3809              Roseau     -61.39   15.2976 Upper middle income
## 3810              Roseau     -61.39   15.2976 Upper middle income
## 3811              Roseau     -61.39   15.2976 Upper middle income
## 3812              Roseau     -61.39   15.2976 Upper middle income
## 3813              Roseau     -61.39   15.2976 Upper middle income
## 3814              Roseau     -61.39   15.2976 Upper middle income
## 3815              Roseau     -61.39   15.2976 Upper middle income
## 3816              Roseau     -61.39   15.2976 Upper middle income
## 3817              Roseau     -61.39   15.2976 Upper middle income
## 3818              Roseau     -61.39   15.2976 Upper middle income
## 3819              Roseau     -61.39   15.2976 Upper middle income
## 3820              Roseau     -61.39   15.2976 Upper middle income
## 3821              Roseau     -61.39   15.2976 Upper middle income
## 3822              Roseau     -61.39   15.2976 Upper middle income
## 3823              Roseau     -61.39   15.2976 Upper middle income
## 3824              Roseau     -61.39   15.2976 Upper middle income
## 3825              Roseau     -61.39   15.2976 Upper middle income
## 3826              Roseau     -61.39   15.2976 Upper middle income
## 3827              Roseau     -61.39   15.2976 Upper middle income
## 3828              Roseau     -61.39   15.2976 Upper middle income
## 3829              Roseau     -61.39   15.2976 Upper middle income
## 3830              Roseau     -61.39   15.2976 Upper middle income
## 3831              Roseau     -61.39   15.2976 Upper middle income
## 3832              Roseau     -61.39   15.2976 Upper middle income
## 3833              Roseau     -61.39   15.2976 Upper middle income
## 3834              Roseau     -61.39   15.2976 Upper middle income
## 3835              Roseau     -61.39   15.2976 Upper middle income
## 3836              Roseau     -61.39   15.2976 Upper middle income
## 3837              Roseau     -61.39   15.2976 Upper middle income
## 3838              Roseau     -61.39   15.2976 Upper middle income
## 3839              Roseau     -61.39   15.2976 Upper middle income
## 3840              Roseau     -61.39   15.2976 Upper middle income
## 3841              Roseau     -61.39   15.2976 Upper middle income
## 3842              Roseau     -61.39   15.2976 Upper middle income
## 3843              Roseau     -61.39   15.2976 Upper middle income
## 3844       Santo Domingo   -69.8908    18.479 Upper middle income
## 3845       Santo Domingo   -69.8908    18.479 Upper middle income
## 3846       Santo Domingo   -69.8908    18.479 Upper middle income
## 3847       Santo Domingo   -69.8908    18.479 Upper middle income
## 3848       Santo Domingo   -69.8908    18.479 Upper middle income
## 3849       Santo Domingo   -69.8908    18.479 Upper middle income
## 3850       Santo Domingo   -69.8908    18.479 Upper middle income
## 3851       Santo Domingo   -69.8908    18.479 Upper middle income
## 3852       Santo Domingo   -69.8908    18.479 Upper middle income
## 3853       Santo Domingo   -69.8908    18.479 Upper middle income
## 3854       Santo Domingo   -69.8908    18.479 Upper middle income
## 3855       Santo Domingo   -69.8908    18.479 Upper middle income
## 3856       Santo Domingo   -69.8908    18.479 Upper middle income
## 3857       Santo Domingo   -69.8908    18.479 Upper middle income
## 3858       Santo Domingo   -69.8908    18.479 Upper middle income
## 3859       Santo Domingo   -69.8908    18.479 Upper middle income
## 3860       Santo Domingo   -69.8908    18.479 Upper middle income
## 3861       Santo Domingo   -69.8908    18.479 Upper middle income
## 3862       Santo Domingo   -69.8908    18.479 Upper middle income
## 3863       Santo Domingo   -69.8908    18.479 Upper middle income
## 3864       Santo Domingo   -69.8908    18.479 Upper middle income
## 3865       Santo Domingo   -69.8908    18.479 Upper middle income
## 3866       Santo Domingo   -69.8908    18.479 Upper middle income
## 3867       Santo Domingo   -69.8908    18.479 Upper middle income
## 3868       Santo Domingo   -69.8908    18.479 Upper middle income
## 3869       Santo Domingo   -69.8908    18.479 Upper middle income
## 3870       Santo Domingo   -69.8908    18.479 Upper middle income
## 3871       Santo Domingo   -69.8908    18.479 Upper middle income
## 3872       Santo Domingo   -69.8908    18.479 Upper middle income
## 3873       Santo Domingo   -69.8908    18.479 Upper middle income
## 3874       Santo Domingo   -69.8908    18.479 Upper middle income
## 3875       Santo Domingo   -69.8908    18.479 Upper middle income
## 3876       Santo Domingo   -69.8908    18.479 Upper middle income
## 3877       Santo Domingo   -69.8908    18.479 Upper middle income
## 3878       Santo Domingo   -69.8908    18.479 Upper middle income
## 3879       Santo Domingo   -69.8908    18.479 Upper middle income
## 3880       Santo Domingo   -69.8908    18.479 Upper middle income
## 3881       Santo Domingo   -69.8908    18.479 Upper middle income
## 3882       Santo Domingo   -69.8908    18.479 Upper middle income
## 3883       Santo Domingo   -69.8908    18.479 Upper middle income
## 3884       Santo Domingo   -69.8908    18.479 Upper middle income
## 3885       Santo Domingo   -69.8908    18.479 Upper middle income
## 3886       Santo Domingo   -69.8908    18.479 Upper middle income
## 3887       Santo Domingo   -69.8908    18.479 Upper middle income
## 3888       Santo Domingo   -69.8908    18.479 Upper middle income
## 3889       Santo Domingo   -69.8908    18.479 Upper middle income
## 3890       Santo Domingo   -69.8908    18.479 Upper middle income
## 3891       Santo Domingo   -69.8908    18.479 Upper middle income
## 3892       Santo Domingo   -69.8908    18.479 Upper middle income
## 3893       Santo Domingo   -69.8908    18.479 Upper middle income
## 3894       Santo Domingo   -69.8908    18.479 Upper middle income
## 3895       Santo Domingo   -69.8908    18.479 Upper middle income
## 3896       Santo Domingo   -69.8908    18.479 Upper middle income
## 3897       Santo Domingo   -69.8908    18.479 Upper middle income
## 3898       Santo Domingo   -69.8908    18.479 Upper middle income
## 3899       Santo Domingo   -69.8908    18.479 Upper middle income
## 3900       Santo Domingo   -69.8908    18.479 Upper middle income
## 3901       Santo Domingo   -69.8908    18.479 Upper middle income
## 3902       Santo Domingo   -69.8908    18.479 Upper middle income
## 3903       Santo Domingo   -69.8908    18.479 Upper middle income
## 3904       Santo Domingo   -69.8908    18.479 Upper middle income
## 3905       Santo Domingo   -69.8908    18.479 Upper middle income
## 3906       Santo Domingo   -69.8908    18.479 Upper middle income
## 3907                                                   Aggregates
## 3908                                                   Aggregates
## 3909                                                   Aggregates
## 3910                                                   Aggregates
## 3911                                                   Aggregates
## 3912                                                   Aggregates
## 3913                                                   Aggregates
## 3914                                                   Aggregates
## 3915                                                   Aggregates
## 3916                                                   Aggregates
## 3917                                                   Aggregates
## 3918                                                   Aggregates
## 3919                                                   Aggregates
## 3920                                                   Aggregates
## 3921                                                   Aggregates
## 3922                                                   Aggregates
## 3923                                                   Aggregates
## 3924                                                   Aggregates
## 3925                                                   Aggregates
## 3926                                                   Aggregates
## 3927                                                   Aggregates
## 3928                                                   Aggregates
## 3929                                                   Aggregates
## 3930                                                   Aggregates
## 3931                                                   Aggregates
## 3932                                                   Aggregates
## 3933                                                   Aggregates
## 3934                                                   Aggregates
## 3935                                                   Aggregates
## 3936                                                   Aggregates
## 3937                                                   Aggregates
## 3938                                                   Aggregates
## 3939                                                   Aggregates
## 3940                                                   Aggregates
## 3941                                                   Aggregates
## 3942                                                   Aggregates
## 3943                                                   Aggregates
## 3944                                                   Aggregates
## 3945                                                   Aggregates
## 3946                                                   Aggregates
## 3947                                                   Aggregates
## 3948                                                   Aggregates
## 3949                                                   Aggregates
## 3950                                                   Aggregates
## 3951                                                   Aggregates
## 3952                                                   Aggregates
## 3953                                                   Aggregates
## 3954                                                   Aggregates
## 3955                                                   Aggregates
## 3956                                                   Aggregates
## 3957                                                   Aggregates
## 3958                                                   Aggregates
## 3959                                                   Aggregates
## 3960                                                   Aggregates
## 3961                                                   Aggregates
## 3962                                                   Aggregates
## 3963                                                   Aggregates
## 3964                                                   Aggregates
## 3965                                                   Aggregates
## 3966                                                   Aggregates
## 3967                                                   Aggregates
## 3968                                                   Aggregates
## 3969                                                   Aggregates
## 3970                                                   Aggregates
## 3971                                                   Aggregates
## 3972                                                   Aggregates
## 3973                                                   Aggregates
## 3974                                                   Aggregates
## 3975                                                   Aggregates
## 3976                                                   Aggregates
## 3977                                                   Aggregates
## 3978                                                   Aggregates
## 3979                                                   Aggregates
## 3980                                                   Aggregates
## 3981                                                   Aggregates
## 3982                                                   Aggregates
## 3983                                                   Aggregates
## 3984                                                   Aggregates
## 3985                                                   Aggregates
## 3986                                                   Aggregates
## 3987                                                   Aggregates
## 3988                                                   Aggregates
## 3989                                                   Aggregates
## 3990                                                   Aggregates
## 3991                                                   Aggregates
## 3992                                                   Aggregates
## 3993                                                   Aggregates
## 3994                                                   Aggregates
## 3995                                                   Aggregates
## 3996                                                   Aggregates
## 3997                                                   Aggregates
## 3998                                                   Aggregates
## 3999                                                   Aggregates
## 4000                                                   Aggregates
## 4001                                                   Aggregates
## 4002                                                   Aggregates
## 4003                                                   Aggregates
## 4004                                                   Aggregates
## 4005                                                   Aggregates
## 4006                                                   Aggregates
## 4007                                                   Aggregates
## 4008                                                   Aggregates
## 4009                                                   Aggregates
## 4010                                                   Aggregates
## 4011                                                   Aggregates
## 4012                                                   Aggregates
## 4013                                                   Aggregates
## 4014                                                   Aggregates
## 4015                                                   Aggregates
## 4016                                                   Aggregates
## 4017                                                   Aggregates
## 4018                                                   Aggregates
## 4019                                                   Aggregates
## 4020                                                   Aggregates
## 4021                                                   Aggregates
## 4022                                                   Aggregates
## 4023                                                   Aggregates
## 4024                                                   Aggregates
## 4025                                                   Aggregates
## 4026                                                   Aggregates
## 4027                                                   Aggregates
## 4028                                                   Aggregates
## 4029                                                   Aggregates
## 4030                                                   Aggregates
## 4031                                                   Aggregates
## 4032                                                   Aggregates
## 4033                                                   Aggregates
## 4034                                                   Aggregates
## 4035                                                   Aggregates
## 4036                                                   Aggregates
## 4037                                                   Aggregates
## 4038                                                   Aggregates
## 4039                                                   Aggregates
## 4040                                                   Aggregates
## 4041                                                   Aggregates
## 4042                                                   Aggregates
## 4043                                                   Aggregates
## 4044                                                   Aggregates
## 4045                                                   Aggregates
## 4046                                                   Aggregates
## 4047                                                   Aggregates
## 4048                                                   Aggregates
## 4049                                                   Aggregates
## 4050                                                   Aggregates
## 4051                                                   Aggregates
## 4052                                                   Aggregates
## 4053                                                   Aggregates
## 4054                                                   Aggregates
## 4055                                                   Aggregates
## 4056                                                   Aggregates
## 4057                                                   Aggregates
## 4058                                                   Aggregates
## 4059                                                   Aggregates
## 4060                                                   Aggregates
## 4061                                                   Aggregates
## 4062                                                   Aggregates
## 4063                                                   Aggregates
## 4064                                                   Aggregates
## 4065                                                   Aggregates
## 4066                                                   Aggregates
## 4067                                                   Aggregates
## 4068                                                   Aggregates
## 4069                                                   Aggregates
## 4070                                                   Aggregates
## 4071                                                   Aggregates
## 4072                                                   Aggregates
## 4073                                                   Aggregates
## 4074                                                   Aggregates
## 4075                                                   Aggregates
## 4076                                                   Aggregates
## 4077                                                   Aggregates
## 4078                                                   Aggregates
## 4079                                                   Aggregates
## 4080                                                   Aggregates
## 4081                                                   Aggregates
## 4082                                                   Aggregates
## 4083                                                   Aggregates
## 4084                                                   Aggregates
## 4085                                                   Aggregates
## 4086                                                   Aggregates
## 4087                                                   Aggregates
## 4088                                                   Aggregates
## 4089                                                   Aggregates
## 4090                                                   Aggregates
## 4091                                                   Aggregates
## 4092                                                   Aggregates
## 4093                                                   Aggregates
## 4094                                                   Aggregates
## 4095                                                   Aggregates
## 4096                                                   Aggregates
## 4097                                                   Aggregates
## 4098                                                   Aggregates
## 4099                                                   Aggregates
## 4100                                                   Aggregates
## 4101                                                   Aggregates
## 4102                                                   Aggregates
## 4103                                                   Aggregates
## 4104                                                   Aggregates
## 4105                                                   Aggregates
## 4106                                                   Aggregates
## 4107                                                   Aggregates
## 4108                                                   Aggregates
## 4109                                                   Aggregates
## 4110                                                   Aggregates
## 4111                                                   Aggregates
## 4112                                                   Aggregates
## 4113                                                   Aggregates
## 4114                                                   Aggregates
## 4115                                                   Aggregates
## 4116                                                   Aggregates
## 4117                                                   Aggregates
## 4118                                                   Aggregates
## 4119                                                   Aggregates
## 4120                                                   Aggregates
## 4121                                                   Aggregates
## 4122                                                   Aggregates
## 4123                                                   Aggregates
## 4124                                                   Aggregates
## 4125                                                   Aggregates
## 4126                                                   Aggregates
## 4127                                                   Aggregates
## 4128                                                   Aggregates
## 4129                                                   Aggregates
## 4130                                                   Aggregates
## 4131                                                   Aggregates
## 4132                                                   Aggregates
## 4133                                                   Aggregates
## 4134                                                   Aggregates
## 4135                                                   Aggregates
## 4136                                                   Aggregates
## 4137                                                   Aggregates
## 4138                                                   Aggregates
## 4139                                                   Aggregates
## 4140                                                   Aggregates
## 4141                                                   Aggregates
## 4142                                                   Aggregates
## 4143                                                   Aggregates
## 4144                                                   Aggregates
## 4145                                                   Aggregates
## 4146                                                   Aggregates
## 4147                                                   Aggregates
## 4148                                                   Aggregates
## 4149                                                   Aggregates
## 4150                                                   Aggregates
## 4151                                                   Aggregates
## 4152                                                   Aggregates
## 4153                                                   Aggregates
## 4154                                                   Aggregates
## 4155                                                   Aggregates
## 4156                                                   Aggregates
## 4157                                                   Aggregates
## 4158                                                   Aggregates
## 4159               Quito   -78.5243 -0.229498 Upper middle income
## 4160               Quito   -78.5243 -0.229498 Upper middle income
## 4161               Quito   -78.5243 -0.229498 Upper middle income
## 4162               Quito   -78.5243 -0.229498 Upper middle income
## 4163               Quito   -78.5243 -0.229498 Upper middle income
## 4164               Quito   -78.5243 -0.229498 Upper middle income
## 4165               Quito   -78.5243 -0.229498 Upper middle income
## 4166               Quito   -78.5243 -0.229498 Upper middle income
## 4167               Quito   -78.5243 -0.229498 Upper middle income
## 4168               Quito   -78.5243 -0.229498 Upper middle income
## 4169               Quito   -78.5243 -0.229498 Upper middle income
## 4170               Quito   -78.5243 -0.229498 Upper middle income
## 4171               Quito   -78.5243 -0.229498 Upper middle income
## 4172               Quito   -78.5243 -0.229498 Upper middle income
## 4173               Quito   -78.5243 -0.229498 Upper middle income
## 4174               Quito   -78.5243 -0.229498 Upper middle income
## 4175               Quito   -78.5243 -0.229498 Upper middle income
## 4176               Quito   -78.5243 -0.229498 Upper middle income
## 4177               Quito   -78.5243 -0.229498 Upper middle income
## 4178               Quito   -78.5243 -0.229498 Upper middle income
## 4179               Quito   -78.5243 -0.229498 Upper middle income
## 4180               Quito   -78.5243 -0.229498 Upper middle income
## 4181               Quito   -78.5243 -0.229498 Upper middle income
## 4182               Quito   -78.5243 -0.229498 Upper middle income
## 4183               Quito   -78.5243 -0.229498 Upper middle income
## 4184               Quito   -78.5243 -0.229498 Upper middle income
## 4185               Quito   -78.5243 -0.229498 Upper middle income
## 4186               Quito   -78.5243 -0.229498 Upper middle income
## 4187               Quito   -78.5243 -0.229498 Upper middle income
## 4188               Quito   -78.5243 -0.229498 Upper middle income
## 4189               Quito   -78.5243 -0.229498 Upper middle income
## 4190               Quito   -78.5243 -0.229498 Upper middle income
## 4191               Quito   -78.5243 -0.229498 Upper middle income
## 4192               Quito   -78.5243 -0.229498 Upper middle income
## 4193               Quito   -78.5243 -0.229498 Upper middle income
## 4194               Quito   -78.5243 -0.229498 Upper middle income
## 4195               Quito   -78.5243 -0.229498 Upper middle income
## 4196               Quito   -78.5243 -0.229498 Upper middle income
## 4197               Quito   -78.5243 -0.229498 Upper middle income
## 4198               Quito   -78.5243 -0.229498 Upper middle income
## 4199               Quito   -78.5243 -0.229498 Upper middle income
## 4200               Quito   -78.5243 -0.229498 Upper middle income
## 4201               Quito   -78.5243 -0.229498 Upper middle income
## 4202               Quito   -78.5243 -0.229498 Upper middle income
## 4203               Quito   -78.5243 -0.229498 Upper middle income
## 4204               Quito   -78.5243 -0.229498 Upper middle income
## 4205               Quito   -78.5243 -0.229498 Upper middle income
## 4206               Quito   -78.5243 -0.229498 Upper middle income
## 4207               Quito   -78.5243 -0.229498 Upper middle income
## 4208               Quito   -78.5243 -0.229498 Upper middle income
## 4209               Quito   -78.5243 -0.229498 Upper middle income
## 4210               Quito   -78.5243 -0.229498 Upper middle income
## 4211               Quito   -78.5243 -0.229498 Upper middle income
## 4212               Quito   -78.5243 -0.229498 Upper middle income
## 4213               Quito   -78.5243 -0.229498 Upper middle income
## 4214               Quito   -78.5243 -0.229498 Upper middle income
## 4215               Quito   -78.5243 -0.229498 Upper middle income
## 4216               Quito   -78.5243 -0.229498 Upper middle income
## 4217               Quito   -78.5243 -0.229498 Upper middle income
## 4218               Quito   -78.5243 -0.229498 Upper middle income
## 4219               Quito   -78.5243 -0.229498 Upper middle income
## 4220               Quito   -78.5243 -0.229498 Upper middle income
## 4221               Quito   -78.5243 -0.229498 Upper middle income
## 4222               Cairo    31.2461   30.0982 Lower middle income
## 4223               Cairo    31.2461   30.0982 Lower middle income
## 4224               Cairo    31.2461   30.0982 Lower middle income
## 4225               Cairo    31.2461   30.0982 Lower middle income
## 4226               Cairo    31.2461   30.0982 Lower middle income
## 4227               Cairo    31.2461   30.0982 Lower middle income
## 4228               Cairo    31.2461   30.0982 Lower middle income
## 4229               Cairo    31.2461   30.0982 Lower middle income
## 4230               Cairo    31.2461   30.0982 Lower middle income
## 4231               Cairo    31.2461   30.0982 Lower middle income
## 4232               Cairo    31.2461   30.0982 Lower middle income
## 4233               Cairo    31.2461   30.0982 Lower middle income
## 4234               Cairo    31.2461   30.0982 Lower middle income
## 4235               Cairo    31.2461   30.0982 Lower middle income
## 4236               Cairo    31.2461   30.0982 Lower middle income
## 4237               Cairo    31.2461   30.0982 Lower middle income
## 4238               Cairo    31.2461   30.0982 Lower middle income
## 4239               Cairo    31.2461   30.0982 Lower middle income
## 4240               Cairo    31.2461   30.0982 Lower middle income
## 4241               Cairo    31.2461   30.0982 Lower middle income
## 4242               Cairo    31.2461   30.0982 Lower middle income
## 4243               Cairo    31.2461   30.0982 Lower middle income
## 4244               Cairo    31.2461   30.0982 Lower middle income
## 4245               Cairo    31.2461   30.0982 Lower middle income
## 4246               Cairo    31.2461   30.0982 Lower middle income
## 4247               Cairo    31.2461   30.0982 Lower middle income
## 4248               Cairo    31.2461   30.0982 Lower middle income
## 4249               Cairo    31.2461   30.0982 Lower middle income
## 4250               Cairo    31.2461   30.0982 Lower middle income
## 4251               Cairo    31.2461   30.0982 Lower middle income
## 4252               Cairo    31.2461   30.0982 Lower middle income
## 4253               Cairo    31.2461   30.0982 Lower middle income
## 4254               Cairo    31.2461   30.0982 Lower middle income
## 4255               Cairo    31.2461   30.0982 Lower middle income
## 4256               Cairo    31.2461   30.0982 Lower middle income
## 4257               Cairo    31.2461   30.0982 Lower middle income
## 4258               Cairo    31.2461   30.0982 Lower middle income
## 4259               Cairo    31.2461   30.0982 Lower middle income
## 4260               Cairo    31.2461   30.0982 Lower middle income
## 4261               Cairo    31.2461   30.0982 Lower middle income
## 4262               Cairo    31.2461   30.0982 Lower middle income
## 4263               Cairo    31.2461   30.0982 Lower middle income
## 4264               Cairo    31.2461   30.0982 Lower middle income
## 4265               Cairo    31.2461   30.0982 Lower middle income
## 4266               Cairo    31.2461   30.0982 Lower middle income
## 4267               Cairo    31.2461   30.0982 Lower middle income
## 4268               Cairo    31.2461   30.0982 Lower middle income
## 4269               Cairo    31.2461   30.0982 Lower middle income
## 4270               Cairo    31.2461   30.0982 Lower middle income
## 4271               Cairo    31.2461   30.0982 Lower middle income
## 4272               Cairo    31.2461   30.0982 Lower middle income
## 4273               Cairo    31.2461   30.0982 Lower middle income
## 4274               Cairo    31.2461   30.0982 Lower middle income
## 4275               Cairo    31.2461   30.0982 Lower middle income
## 4276               Cairo    31.2461   30.0982 Lower middle income
## 4277               Cairo    31.2461   30.0982 Lower middle income
## 4278               Cairo    31.2461   30.0982 Lower middle income
## 4279               Cairo    31.2461   30.0982 Lower middle income
## 4280               Cairo    31.2461   30.0982 Lower middle income
## 4281               Cairo    31.2461   30.0982 Lower middle income
## 4282               Cairo    31.2461   30.0982 Lower middle income
## 4283               Cairo    31.2461   30.0982 Lower middle income
## 4284               Cairo    31.2461   30.0982 Lower middle income
## 4285        San Salvador   -89.2073   13.7034 Lower middle income
## 4286        San Salvador   -89.2073   13.7034 Lower middle income
## 4287        San Salvador   -89.2073   13.7034 Lower middle income
## 4288        San Salvador   -89.2073   13.7034 Lower middle income
## 4289        San Salvador   -89.2073   13.7034 Lower middle income
## 4290        San Salvador   -89.2073   13.7034 Lower middle income
## 4291        San Salvador   -89.2073   13.7034 Lower middle income
## 4292        San Salvador   -89.2073   13.7034 Lower middle income
## 4293        San Salvador   -89.2073   13.7034 Lower middle income
## 4294        San Salvador   -89.2073   13.7034 Lower middle income
## 4295        San Salvador   -89.2073   13.7034 Lower middle income
## 4296        San Salvador   -89.2073   13.7034 Lower middle income
## 4297        San Salvador   -89.2073   13.7034 Lower middle income
## 4298        San Salvador   -89.2073   13.7034 Lower middle income
## 4299        San Salvador   -89.2073   13.7034 Lower middle income
## 4300        San Salvador   -89.2073   13.7034 Lower middle income
## 4301        San Salvador   -89.2073   13.7034 Lower middle income
## 4302        San Salvador   -89.2073   13.7034 Lower middle income
## 4303        San Salvador   -89.2073   13.7034 Lower middle income
## 4304        San Salvador   -89.2073   13.7034 Lower middle income
## 4305        San Salvador   -89.2073   13.7034 Lower middle income
## 4306        San Salvador   -89.2073   13.7034 Lower middle income
## 4307        San Salvador   -89.2073   13.7034 Lower middle income
## 4308        San Salvador   -89.2073   13.7034 Lower middle income
## 4309        San Salvador   -89.2073   13.7034 Lower middle income
## 4310        San Salvador   -89.2073   13.7034 Lower middle income
## 4311        San Salvador   -89.2073   13.7034 Lower middle income
## 4312        San Salvador   -89.2073   13.7034 Lower middle income
## 4313        San Salvador   -89.2073   13.7034 Lower middle income
## 4314        San Salvador   -89.2073   13.7034 Lower middle income
## 4315        San Salvador   -89.2073   13.7034 Lower middle income
## 4316        San Salvador   -89.2073   13.7034 Lower middle income
## 4317        San Salvador   -89.2073   13.7034 Lower middle income
## 4318        San Salvador   -89.2073   13.7034 Lower middle income
## 4319        San Salvador   -89.2073   13.7034 Lower middle income
## 4320        San Salvador   -89.2073   13.7034 Lower middle income
## 4321        San Salvador   -89.2073   13.7034 Lower middle income
## 4322        San Salvador   -89.2073   13.7034 Lower middle income
## 4323        San Salvador   -89.2073   13.7034 Lower middle income
## 4324        San Salvador   -89.2073   13.7034 Lower middle income
## 4325        San Salvador   -89.2073   13.7034 Lower middle income
## 4326        San Salvador   -89.2073   13.7034 Lower middle income
## 4327        San Salvador   -89.2073   13.7034 Lower middle income
## 4328        San Salvador   -89.2073   13.7034 Lower middle income
## 4329        San Salvador   -89.2073   13.7034 Lower middle income
## 4330        San Salvador   -89.2073   13.7034 Lower middle income
## 4331        San Salvador   -89.2073   13.7034 Lower middle income
## 4332        San Salvador   -89.2073   13.7034 Lower middle income
## 4333        San Salvador   -89.2073   13.7034 Lower middle income
## 4334        San Salvador   -89.2073   13.7034 Lower middle income
## 4335        San Salvador   -89.2073   13.7034 Lower middle income
## 4336        San Salvador   -89.2073   13.7034 Lower middle income
## 4337        San Salvador   -89.2073   13.7034 Lower middle income
## 4338        San Salvador   -89.2073   13.7034 Lower middle income
## 4339        San Salvador   -89.2073   13.7034 Lower middle income
## 4340        San Salvador   -89.2073   13.7034 Lower middle income
## 4341        San Salvador   -89.2073   13.7034 Lower middle income
## 4342        San Salvador   -89.2073   13.7034 Lower middle income
## 4343        San Salvador   -89.2073   13.7034 Lower middle income
## 4344        San Salvador   -89.2073   13.7034 Lower middle income
## 4345        San Salvador   -89.2073   13.7034 Lower middle income
## 4346        San Salvador   -89.2073   13.7034 Lower middle income
## 4347        San Salvador   -89.2073   13.7034 Lower middle income
## 4348              Malabo     8.7741    3.7523 Upper middle income
## 4349              Malabo     8.7741    3.7523 Upper middle income
## 4350              Malabo     8.7741    3.7523 Upper middle income
## 4351              Malabo     8.7741    3.7523 Upper middle income
## 4352              Malabo     8.7741    3.7523 Upper middle income
## 4353              Malabo     8.7741    3.7523 Upper middle income
## 4354              Malabo     8.7741    3.7523 Upper middle income
## 4355              Malabo     8.7741    3.7523 Upper middle income
## 4356              Malabo     8.7741    3.7523 Upper middle income
## 4357              Malabo     8.7741    3.7523 Upper middle income
## 4358              Malabo     8.7741    3.7523 Upper middle income
## 4359              Malabo     8.7741    3.7523 Upper middle income
## 4360              Malabo     8.7741    3.7523 Upper middle income
## 4361              Malabo     8.7741    3.7523 Upper middle income
## 4362              Malabo     8.7741    3.7523 Upper middle income
## 4363              Malabo     8.7741    3.7523 Upper middle income
## 4364              Malabo     8.7741    3.7523 Upper middle income
## 4365              Malabo     8.7741    3.7523 Upper middle income
## 4366              Malabo     8.7741    3.7523 Upper middle income
## 4367              Malabo     8.7741    3.7523 Upper middle income
## 4368              Malabo     8.7741    3.7523 Upper middle income
## 4369              Malabo     8.7741    3.7523 Upper middle income
## 4370              Malabo     8.7741    3.7523 Upper middle income
## 4371              Malabo     8.7741    3.7523 Upper middle income
## 4372              Malabo     8.7741    3.7523 Upper middle income
## 4373              Malabo     8.7741    3.7523 Upper middle income
## 4374              Malabo     8.7741    3.7523 Upper middle income
## 4375              Malabo     8.7741    3.7523 Upper middle income
## 4376              Malabo     8.7741    3.7523 Upper middle income
## 4377              Malabo     8.7741    3.7523 Upper middle income
## 4378              Malabo     8.7741    3.7523 Upper middle income
## 4379              Malabo     8.7741    3.7523 Upper middle income
## 4380              Malabo     8.7741    3.7523 Upper middle income
## 4381              Malabo     8.7741    3.7523 Upper middle income
## 4382              Malabo     8.7741    3.7523 Upper middle income
## 4383              Malabo     8.7741    3.7523 Upper middle income
## 4384              Malabo     8.7741    3.7523 Upper middle income
## 4385              Malabo     8.7741    3.7523 Upper middle income
## 4386              Malabo     8.7741    3.7523 Upper middle income
## 4387              Malabo     8.7741    3.7523 Upper middle income
## 4388              Malabo     8.7741    3.7523 Upper middle income
## 4389              Malabo     8.7741    3.7523 Upper middle income
## 4390              Malabo     8.7741    3.7523 Upper middle income
## 4391              Malabo     8.7741    3.7523 Upper middle income
## 4392              Malabo     8.7741    3.7523 Upper middle income
## 4393              Malabo     8.7741    3.7523 Upper middle income
## 4394              Malabo     8.7741    3.7523 Upper middle income
## 4395              Malabo     8.7741    3.7523 Upper middle income
## 4396              Malabo     8.7741    3.7523 Upper middle income
## 4397              Malabo     8.7741    3.7523 Upper middle income
## 4398              Malabo     8.7741    3.7523 Upper middle income
## 4399              Malabo     8.7741    3.7523 Upper middle income
## 4400              Malabo     8.7741    3.7523 Upper middle income
## 4401              Malabo     8.7741    3.7523 Upper middle income
## 4402              Malabo     8.7741    3.7523 Upper middle income
## 4403              Malabo     8.7741    3.7523 Upper middle income
## 4404              Malabo     8.7741    3.7523 Upper middle income
## 4405              Malabo     8.7741    3.7523 Upper middle income
## 4406              Malabo     8.7741    3.7523 Upper middle income
## 4407              Malabo     8.7741    3.7523 Upper middle income
## 4408              Malabo     8.7741    3.7523 Upper middle income
## 4409              Malabo     8.7741    3.7523 Upper middle income
## 4410              Malabo     8.7741    3.7523 Upper middle income
## 4411              Asmara    38.9183   15.3315          Low income
## 4412              Asmara    38.9183   15.3315          Low income
## 4413              Asmara    38.9183   15.3315          Low income
## 4414              Asmara    38.9183   15.3315          Low income
## 4415              Asmara    38.9183   15.3315          Low income
## 4416              Asmara    38.9183   15.3315          Low income
## 4417              Asmara    38.9183   15.3315          Low income
## 4418              Asmara    38.9183   15.3315          Low income
## 4419              Asmara    38.9183   15.3315          Low income
## 4420              Asmara    38.9183   15.3315          Low income
## 4421              Asmara    38.9183   15.3315          Low income
## 4422              Asmara    38.9183   15.3315          Low income
## 4423              Asmara    38.9183   15.3315          Low income
## 4424              Asmara    38.9183   15.3315          Low income
## 4425              Asmara    38.9183   15.3315          Low income
## 4426              Asmara    38.9183   15.3315          Low income
## 4427              Asmara    38.9183   15.3315          Low income
## 4428              Asmara    38.9183   15.3315          Low income
## 4429              Asmara    38.9183   15.3315          Low income
## 4430              Asmara    38.9183   15.3315          Low income
## 4431              Asmara    38.9183   15.3315          Low income
## 4432              Asmara    38.9183   15.3315          Low income
## 4433              Asmara    38.9183   15.3315          Low income
## 4434              Asmara    38.9183   15.3315          Low income
## 4435              Asmara    38.9183   15.3315          Low income
## 4436              Asmara    38.9183   15.3315          Low income
## 4437              Asmara    38.9183   15.3315          Low income
## 4438              Asmara    38.9183   15.3315          Low income
## 4439              Asmara    38.9183   15.3315          Low income
## 4440              Asmara    38.9183   15.3315          Low income
## 4441              Asmara    38.9183   15.3315          Low income
## 4442              Asmara    38.9183   15.3315          Low income
## 4443              Asmara    38.9183   15.3315          Low income
## 4444              Asmara    38.9183   15.3315          Low income
## 4445              Asmara    38.9183   15.3315          Low income
## 4446              Asmara    38.9183   15.3315          Low income
## 4447              Asmara    38.9183   15.3315          Low income
## 4448              Asmara    38.9183   15.3315          Low income
## 4449              Asmara    38.9183   15.3315          Low income
## 4450              Asmara    38.9183   15.3315          Low income
## 4451              Asmara    38.9183   15.3315          Low income
## 4452              Asmara    38.9183   15.3315          Low income
## 4453              Asmara    38.9183   15.3315          Low income
## 4454              Asmara    38.9183   15.3315          Low income
## 4455              Asmara    38.9183   15.3315          Low income
## 4456              Asmara    38.9183   15.3315          Low income
## 4457              Asmara    38.9183   15.3315          Low income
## 4458              Asmara    38.9183   15.3315          Low income
## 4459              Asmara    38.9183   15.3315          Low income
## 4460              Asmara    38.9183   15.3315          Low income
## 4461              Asmara    38.9183   15.3315          Low income
## 4462              Asmara    38.9183   15.3315          Low income
## 4463              Asmara    38.9183   15.3315          Low income
## 4464              Asmara    38.9183   15.3315          Low income
## 4465              Asmara    38.9183   15.3315          Low income
## 4466              Asmara    38.9183   15.3315          Low income
## 4467              Asmara    38.9183   15.3315          Low income
## 4468              Asmara    38.9183   15.3315          Low income
## 4469              Asmara    38.9183   15.3315          Low income
## 4470              Asmara    38.9183   15.3315          Low income
## 4471              Asmara    38.9183   15.3315          Low income
## 4472              Asmara    38.9183   15.3315          Low income
## 4473              Asmara    38.9183   15.3315          Low income
## 4474             Tallinn    24.7586   59.4392         High income
## 4475             Tallinn    24.7586   59.4392         High income
## 4476             Tallinn    24.7586   59.4392         High income
## 4477             Tallinn    24.7586   59.4392         High income
## 4478             Tallinn    24.7586   59.4392         High income
## 4479             Tallinn    24.7586   59.4392         High income
## 4480             Tallinn    24.7586   59.4392         High income
## 4481             Tallinn    24.7586   59.4392         High income
## 4482             Tallinn    24.7586   59.4392         High income
## 4483             Tallinn    24.7586   59.4392         High income
## 4484             Tallinn    24.7586   59.4392         High income
## 4485             Tallinn    24.7586   59.4392         High income
## 4486             Tallinn    24.7586   59.4392         High income
## 4487             Tallinn    24.7586   59.4392         High income
## 4488             Tallinn    24.7586   59.4392         High income
## 4489             Tallinn    24.7586   59.4392         High income
## 4490             Tallinn    24.7586   59.4392         High income
## 4491             Tallinn    24.7586   59.4392         High income
## 4492             Tallinn    24.7586   59.4392         High income
## 4493             Tallinn    24.7586   59.4392         High income
## 4494             Tallinn    24.7586   59.4392         High income
## 4495             Tallinn    24.7586   59.4392         High income
## 4496             Tallinn    24.7586   59.4392         High income
## 4497             Tallinn    24.7586   59.4392         High income
## 4498             Tallinn    24.7586   59.4392         High income
## 4499             Tallinn    24.7586   59.4392         High income
## 4500             Tallinn    24.7586   59.4392         High income
## 4501             Tallinn    24.7586   59.4392         High income
## 4502             Tallinn    24.7586   59.4392         High income
## 4503             Tallinn    24.7586   59.4392         High income
## 4504             Tallinn    24.7586   59.4392         High income
## 4505             Tallinn    24.7586   59.4392         High income
## 4506             Tallinn    24.7586   59.4392         High income
## 4507             Tallinn    24.7586   59.4392         High income
## 4508             Tallinn    24.7586   59.4392         High income
## 4509             Tallinn    24.7586   59.4392         High income
## 4510             Tallinn    24.7586   59.4392         High income
## 4511             Tallinn    24.7586   59.4392         High income
## 4512             Tallinn    24.7586   59.4392         High income
## 4513             Tallinn    24.7586   59.4392         High income
## 4514             Tallinn    24.7586   59.4392         High income
## 4515             Tallinn    24.7586   59.4392         High income
## 4516             Tallinn    24.7586   59.4392         High income
## 4517             Tallinn    24.7586   59.4392         High income
## 4518             Tallinn    24.7586   59.4392         High income
## 4519             Tallinn    24.7586   59.4392         High income
## 4520             Tallinn    24.7586   59.4392         High income
## 4521             Tallinn    24.7586   59.4392         High income
## 4522             Tallinn    24.7586   59.4392         High income
## 4523             Tallinn    24.7586   59.4392         High income
## 4524             Tallinn    24.7586   59.4392         High income
## 4525             Tallinn    24.7586   59.4392         High income
## 4526             Tallinn    24.7586   59.4392         High income
## 4527             Tallinn    24.7586   59.4392         High income
## 4528             Tallinn    24.7586   59.4392         High income
## 4529             Tallinn    24.7586   59.4392         High income
## 4530             Tallinn    24.7586   59.4392         High income
## 4531             Tallinn    24.7586   59.4392         High income
## 4532             Tallinn    24.7586   59.4392         High income
## 4533             Tallinn    24.7586   59.4392         High income
## 4534             Tallinn    24.7586   59.4392         High income
## 4535             Tallinn    24.7586   59.4392         High income
## 4536             Tallinn    24.7586   59.4392         High income
## 4537             Mbabane    31.4659  -26.5225 Lower middle income
## 4538             Mbabane    31.4659  -26.5225 Lower middle income
## 4539             Mbabane    31.4659  -26.5225 Lower middle income
## 4540             Mbabane    31.4659  -26.5225 Lower middle income
## 4541             Mbabane    31.4659  -26.5225 Lower middle income
## 4542             Mbabane    31.4659  -26.5225 Lower middle income
## 4543             Mbabane    31.4659  -26.5225 Lower middle income
## 4544             Mbabane    31.4659  -26.5225 Lower middle income
## 4545             Mbabane    31.4659  -26.5225 Lower middle income
## 4546             Mbabane    31.4659  -26.5225 Lower middle income
## 4547             Mbabane    31.4659  -26.5225 Lower middle income
## 4548             Mbabane    31.4659  -26.5225 Lower middle income
## 4549             Mbabane    31.4659  -26.5225 Lower middle income
## 4550             Mbabane    31.4659  -26.5225 Lower middle income
## 4551             Mbabane    31.4659  -26.5225 Lower middle income
## 4552             Mbabane    31.4659  -26.5225 Lower middle income
## 4553             Mbabane    31.4659  -26.5225 Lower middle income
## 4554             Mbabane    31.4659  -26.5225 Lower middle income
## 4555             Mbabane    31.4659  -26.5225 Lower middle income
## 4556             Mbabane    31.4659  -26.5225 Lower middle income
## 4557             Mbabane    31.4659  -26.5225 Lower middle income
## 4558             Mbabane    31.4659  -26.5225 Lower middle income
## 4559             Mbabane    31.4659  -26.5225 Lower middle income
## 4560             Mbabane    31.4659  -26.5225 Lower middle income
## 4561             Mbabane    31.4659  -26.5225 Lower middle income
## 4562             Mbabane    31.4659  -26.5225 Lower middle income
## 4563             Mbabane    31.4659  -26.5225 Lower middle income
## 4564             Mbabane    31.4659  -26.5225 Lower middle income
## 4565             Mbabane    31.4659  -26.5225 Lower middle income
## 4566             Mbabane    31.4659  -26.5225 Lower middle income
## 4567             Mbabane    31.4659  -26.5225 Lower middle income
## 4568             Mbabane    31.4659  -26.5225 Lower middle income
## 4569             Mbabane    31.4659  -26.5225 Lower middle income
## 4570             Mbabane    31.4659  -26.5225 Lower middle income
## 4571             Mbabane    31.4659  -26.5225 Lower middle income
## 4572             Mbabane    31.4659  -26.5225 Lower middle income
## 4573             Mbabane    31.4659  -26.5225 Lower middle income
## 4574             Mbabane    31.4659  -26.5225 Lower middle income
## 4575             Mbabane    31.4659  -26.5225 Lower middle income
## 4576             Mbabane    31.4659  -26.5225 Lower middle income
## 4577             Mbabane    31.4659  -26.5225 Lower middle income
## 4578             Mbabane    31.4659  -26.5225 Lower middle income
## 4579             Mbabane    31.4659  -26.5225 Lower middle income
## 4580             Mbabane    31.4659  -26.5225 Lower middle income
## 4581             Mbabane    31.4659  -26.5225 Lower middle income
## 4582             Mbabane    31.4659  -26.5225 Lower middle income
## 4583             Mbabane    31.4659  -26.5225 Lower middle income
## 4584             Mbabane    31.4659  -26.5225 Lower middle income
## 4585             Mbabane    31.4659  -26.5225 Lower middle income
## 4586             Mbabane    31.4659  -26.5225 Lower middle income
## 4587             Mbabane    31.4659  -26.5225 Lower middle income
## 4588             Mbabane    31.4659  -26.5225 Lower middle income
## 4589             Mbabane    31.4659  -26.5225 Lower middle income
## 4590             Mbabane    31.4659  -26.5225 Lower middle income
## 4591             Mbabane    31.4659  -26.5225 Lower middle income
## 4592             Mbabane    31.4659  -26.5225 Lower middle income
## 4593             Mbabane    31.4659  -26.5225 Lower middle income
## 4594             Mbabane    31.4659  -26.5225 Lower middle income
## 4595             Mbabane    31.4659  -26.5225 Lower middle income
## 4596             Mbabane    31.4659  -26.5225 Lower middle income
## 4597             Mbabane    31.4659  -26.5225 Lower middle income
## 4598             Mbabane    31.4659  -26.5225 Lower middle income
## 4599             Mbabane    31.4659  -26.5225 Lower middle income
## 4600         Addis Ababa    38.7468   9.02274          Low income
## 4601         Addis Ababa    38.7468   9.02274          Low income
## 4602         Addis Ababa    38.7468   9.02274          Low income
## 4603         Addis Ababa    38.7468   9.02274          Low income
## 4604         Addis Ababa    38.7468   9.02274          Low income
## 4605         Addis Ababa    38.7468   9.02274          Low income
## 4606         Addis Ababa    38.7468   9.02274          Low income
## 4607         Addis Ababa    38.7468   9.02274          Low income
## 4608         Addis Ababa    38.7468   9.02274          Low income
## 4609         Addis Ababa    38.7468   9.02274          Low income
## 4610         Addis Ababa    38.7468   9.02274          Low income
## 4611         Addis Ababa    38.7468   9.02274          Low income
## 4612         Addis Ababa    38.7468   9.02274          Low income
## 4613         Addis Ababa    38.7468   9.02274          Low income
## 4614         Addis Ababa    38.7468   9.02274          Low income
## 4615         Addis Ababa    38.7468   9.02274          Low income
## 4616         Addis Ababa    38.7468   9.02274          Low income
## 4617         Addis Ababa    38.7468   9.02274          Low income
## 4618         Addis Ababa    38.7468   9.02274          Low income
## 4619         Addis Ababa    38.7468   9.02274          Low income
## 4620         Addis Ababa    38.7468   9.02274          Low income
## 4621         Addis Ababa    38.7468   9.02274          Low income
## 4622         Addis Ababa    38.7468   9.02274          Low income
## 4623         Addis Ababa    38.7468   9.02274          Low income
## 4624         Addis Ababa    38.7468   9.02274          Low income
## 4625         Addis Ababa    38.7468   9.02274          Low income
## 4626         Addis Ababa    38.7468   9.02274          Low income
## 4627         Addis Ababa    38.7468   9.02274          Low income
## 4628         Addis Ababa    38.7468   9.02274          Low income
## 4629         Addis Ababa    38.7468   9.02274          Low income
## 4630         Addis Ababa    38.7468   9.02274          Low income
## 4631         Addis Ababa    38.7468   9.02274          Low income
## 4632         Addis Ababa    38.7468   9.02274          Low income
## 4633         Addis Ababa    38.7468   9.02274          Low income
## 4634         Addis Ababa    38.7468   9.02274          Low income
## 4635         Addis Ababa    38.7468   9.02274          Low income
## 4636         Addis Ababa    38.7468   9.02274          Low income
## 4637         Addis Ababa    38.7468   9.02274          Low income
## 4638         Addis Ababa    38.7468   9.02274          Low income
## 4639         Addis Ababa    38.7468   9.02274          Low income
## 4640         Addis Ababa    38.7468   9.02274          Low income
## 4641         Addis Ababa    38.7468   9.02274          Low income
## 4642         Addis Ababa    38.7468   9.02274          Low income
## 4643         Addis Ababa    38.7468   9.02274          Low income
## 4644         Addis Ababa    38.7468   9.02274          Low income
## 4645         Addis Ababa    38.7468   9.02274          Low income
## 4646         Addis Ababa    38.7468   9.02274          Low income
## 4647         Addis Ababa    38.7468   9.02274          Low income
## 4648         Addis Ababa    38.7468   9.02274          Low income
## 4649         Addis Ababa    38.7468   9.02274          Low income
## 4650         Addis Ababa    38.7468   9.02274          Low income
## 4651         Addis Ababa    38.7468   9.02274          Low income
## 4652         Addis Ababa    38.7468   9.02274          Low income
## 4653         Addis Ababa    38.7468   9.02274          Low income
## 4654         Addis Ababa    38.7468   9.02274          Low income
## 4655         Addis Ababa    38.7468   9.02274          Low income
## 4656         Addis Ababa    38.7468   9.02274          Low income
## 4657         Addis Ababa    38.7468   9.02274          Low income
## 4658         Addis Ababa    38.7468   9.02274          Low income
## 4659         Addis Ababa    38.7468   9.02274          Low income
## 4660         Addis Ababa    38.7468   9.02274          Low income
## 4661         Addis Ababa    38.7468   9.02274          Low income
## 4662         Addis Ababa    38.7468   9.02274          Low income
## 4663                                                   Aggregates
## 4664                                                   Aggregates
## 4665                                                   Aggregates
## 4666                                                   Aggregates
## 4667                                                   Aggregates
## 4668                                                   Aggregates
## 4669                                                   Aggregates
## 4670                                                   Aggregates
## 4671                                                   Aggregates
## 4672                                                   Aggregates
## 4673                                                   Aggregates
## 4674                                                   Aggregates
## 4675                                                   Aggregates
## 4676                                                   Aggregates
## 4677                                                   Aggregates
## 4678                                                   Aggregates
## 4679                                                   Aggregates
## 4680                                                   Aggregates
## 4681                                                   Aggregates
## 4682                                                   Aggregates
## 4683                                                   Aggregates
## 4684                                                   Aggregates
## 4685                                                   Aggregates
## 4686                                                   Aggregates
## 4687                                                   Aggregates
## 4688                                                   Aggregates
## 4689                                                   Aggregates
## 4690                                                   Aggregates
## 4691                                                   Aggregates
## 4692                                                   Aggregates
## 4693                                                   Aggregates
## 4694                                                   Aggregates
## 4695                                                   Aggregates
## 4696                                                   Aggregates
## 4697                                                   Aggregates
## 4698                                                   Aggregates
## 4699                                                   Aggregates
## 4700                                                   Aggregates
## 4701                                                   Aggregates
## 4702                                                   Aggregates
## 4703                                                   Aggregates
## 4704                                                   Aggregates
## 4705                                                   Aggregates
## 4706                                                   Aggregates
## 4707                                                   Aggregates
## 4708                                                   Aggregates
## 4709                                                   Aggregates
## 4710                                                   Aggregates
## 4711                                                   Aggregates
## 4712                                                   Aggregates
## 4713                                                   Aggregates
## 4714                                                   Aggregates
## 4715                                                   Aggregates
## 4716                                                   Aggregates
## 4717                                                   Aggregates
## 4718                                                   Aggregates
## 4719                                                   Aggregates
## 4720                                                   Aggregates
## 4721                                                   Aggregates
## 4722                                                   Aggregates
## 4723                                                   Aggregates
## 4724                                                   Aggregates
## 4725                                                   Aggregates
## 4726                                                   Aggregates
## 4727                                                   Aggregates
## 4728                                                   Aggregates
## 4729                                                   Aggregates
## 4730                                                   Aggregates
## 4731                                                   Aggregates
## 4732                                                   Aggregates
## 4733                                                   Aggregates
## 4734                                                   Aggregates
## 4735                                                   Aggregates
## 4736                                                   Aggregates
## 4737                                                   Aggregates
## 4738                                                   Aggregates
## 4739                                                   Aggregates
## 4740                                                   Aggregates
## 4741                                                   Aggregates
## 4742                                                   Aggregates
## 4743                                                   Aggregates
## 4744                                                   Aggregates
## 4745                                                   Aggregates
## 4746                                                   Aggregates
## 4747                                                   Aggregates
## 4748                                                   Aggregates
## 4749                                                   Aggregates
## 4750                                                   Aggregates
## 4751                                                   Aggregates
## 4752                                                   Aggregates
## 4753                                                   Aggregates
## 4754                                                   Aggregates
## 4755                                                   Aggregates
## 4756                                                   Aggregates
## 4757                                                   Aggregates
## 4758                                                   Aggregates
## 4759                                                   Aggregates
## 4760                                                   Aggregates
## 4761                                                   Aggregates
## 4762                                                   Aggregates
## 4763                                                   Aggregates
## 4764                                                   Aggregates
## 4765                                                   Aggregates
## 4766                                                   Aggregates
## 4767                                                   Aggregates
## 4768                                                   Aggregates
## 4769                                                   Aggregates
## 4770                                                   Aggregates
## 4771                                                   Aggregates
## 4772                                                   Aggregates
## 4773                                                   Aggregates
## 4774                                                   Aggregates
## 4775                                                   Aggregates
## 4776                                                   Aggregates
## 4777                                                   Aggregates
## 4778                                                   Aggregates
## 4779                                                   Aggregates
## 4780                                                   Aggregates
## 4781                                                   Aggregates
## 4782                                                   Aggregates
## 4783                                                   Aggregates
## 4784                                                   Aggregates
## 4785                                                   Aggregates
## 4786                                                   Aggregates
## 4787                                                   Aggregates
## 4788                                                   Aggregates
## 4789                                                   Aggregates
## 4790                                                   Aggregates
## 4791                                                   Aggregates
## 4792                                                   Aggregates
## 4793                                                   Aggregates
## 4794                                                   Aggregates
## 4795                                                   Aggregates
## 4796                                                   Aggregates
## 4797                                                   Aggregates
## 4798                                                   Aggregates
## 4799                                                   Aggregates
## 4800                                                   Aggregates
## 4801                                                   Aggregates
## 4802                                                   Aggregates
## 4803                                                   Aggregates
## 4804                                                   Aggregates
## 4805                                                   Aggregates
## 4806                                                   Aggregates
## 4807                                                   Aggregates
## 4808                                                   Aggregates
## 4809                                                   Aggregates
## 4810                                                   Aggregates
## 4811                                                   Aggregates
## 4812                                                   Aggregates
## 4813                                                   Aggregates
## 4814                                                   Aggregates
## 4815                                                   Aggregates
## 4816                                                   Aggregates
## 4817                                                   Aggregates
## 4818                                                   Aggregates
## 4819                                                   Aggregates
## 4820                                                   Aggregates
## 4821                                                   Aggregates
## 4822                                                   Aggregates
## 4823                                                   Aggregates
## 4824                                                   Aggregates
## 4825                                                   Aggregates
## 4826                                                   Aggregates
## 4827                                                   Aggregates
## 4828                                                   Aggregates
## 4829                                                   Aggregates
## 4830                                                   Aggregates
## 4831                                                   Aggregates
## 4832                                                   Aggregates
## 4833                                                   Aggregates
## 4834                                                   Aggregates
## 4835                                                   Aggregates
## 4836                                                   Aggregates
## 4837                                                   Aggregates
## 4838                                                   Aggregates
## 4839                                                   Aggregates
## 4840                                                   Aggregates
## 4841                                                   Aggregates
## 4842                                                   Aggregates
## 4843                                                   Aggregates
## 4844                                                   Aggregates
## 4845                                                   Aggregates
## 4846                                                   Aggregates
## 4847                                                   Aggregates
## 4848                                                   Aggregates
## 4849                                                   Aggregates
## 4850                                                   Aggregates
## 4851                                                   Aggregates
## 4852                                                   Aggregates
## 4853                                                   Aggregates
## 4854                                                   Aggregates
## 4855                                                   Aggregates
## 4856                                                   Aggregates
## 4857                                                   Aggregates
## 4858                                                   Aggregates
## 4859                                                   Aggregates
## 4860                                                   Aggregates
## 4861                                                   Aggregates
## 4862                                                   Aggregates
## 4863                                                   Aggregates
## 4864                                                   Aggregates
## 4865                                                   Aggregates
## 4866                                                   Aggregates
## 4867                                                   Aggregates
## 4868                                                   Aggregates
## 4869                                                   Aggregates
## 4870                                                   Aggregates
## 4871                                                   Aggregates
## 4872                                                   Aggregates
## 4873                                                   Aggregates
## 4874                                                   Aggregates
## 4875                                                   Aggregates
## 4876                                                   Aggregates
## 4877                                                   Aggregates
## 4878                                                   Aggregates
## 4879                                                   Aggregates
## 4880                                                   Aggregates
## 4881                                                   Aggregates
## 4882                                                   Aggregates
## 4883                                                   Aggregates
## 4884                                                   Aggregates
## 4885                                                   Aggregates
## 4886                                                   Aggregates
## 4887                                                   Aggregates
## 4888                                                   Aggregates
## 4889                                                   Aggregates
## 4890                                                   Aggregates
## 4891                                                   Aggregates
## 4892                                                   Aggregates
## 4893                                                   Aggregates
## 4894                                                   Aggregates
## 4895                                                   Aggregates
## 4896                                                   Aggregates
## 4897                                                   Aggregates
## 4898                                                   Aggregates
## 4899                                                   Aggregates
## 4900                                                   Aggregates
## 4901                                                   Aggregates
## 4902                                                   Aggregates
## 4903                                                   Aggregates
## 4904                                                   Aggregates
## 4905                                                   Aggregates
## 4906                                                   Aggregates
## 4907                                                   Aggregates
## 4908                                                   Aggregates
## 4909                                                   Aggregates
## 4910                                                   Aggregates
## 4911                                                   Aggregates
## 4912                                                   Aggregates
## 4913                                                   Aggregates
## 4914                                                   Aggregates
## 4915                                                   Aggregates
## 4916                                                   Aggregates
## 4917                                                   Aggregates
## 4918                                                   Aggregates
## 4919                                                   Aggregates
## 4920                                                   Aggregates
## 4921                                                   Aggregates
## 4922                                                   Aggregates
## 4923                                                   Aggregates
## 4924                                                   Aggregates
## 4925                                                   Aggregates
## 4926                                                   Aggregates
## 4927                                                   Aggregates
## 4928                                                   Aggregates
## 4929                                                   Aggregates
## 4930                                                   Aggregates
## 4931                                                   Aggregates
## 4932                                                   Aggregates
## 4933                                                   Aggregates
## 4934                                                   Aggregates
## 4935                                                   Aggregates
## 4936                                                   Aggregates
## 4937                                                   Aggregates
## 4938                                                   Aggregates
## 4939                                                   Aggregates
## 4940                                                   Aggregates
## 4941                                                   Aggregates
## 4942                                                   Aggregates
## 4943                                                   Aggregates
## 4944                                                   Aggregates
## 4945                                                   Aggregates
## 4946                                                   Aggregates
## 4947                                                   Aggregates
## 4948                                                   Aggregates
## 4949                                                   Aggregates
## 4950                                                   Aggregates
## 4951                                                   Aggregates
## 4952                                                   Aggregates
## 4953                                                   Aggregates
## 4954                                                   Aggregates
## 4955                                                   Aggregates
## 4956                                                   Aggregates
## 4957                                                   Aggregates
## 4958                                                   Aggregates
## 4959                                                   Aggregates
## 4960                                                   Aggregates
## 4961                                                   Aggregates
## 4962                                                   Aggregates
## 4963                                                   Aggregates
## 4964                                                   Aggregates
## 4965                                                   Aggregates
## 4966                                                   Aggregates
## 4967                                                   Aggregates
## 4968                                                   Aggregates
## 4969                                                   Aggregates
## 4970                                                   Aggregates
## 4971                                                   Aggregates
## 4972                                                   Aggregates
## 4973                                                   Aggregates
## 4974                                                   Aggregates
## 4975                                                   Aggregates
## 4976                                                   Aggregates
## 4977                                                   Aggregates
## 4978            Torshavn   -6.91181   61.8926         High income
## 4979            Torshavn   -6.91181   61.8926         High income
## 4980            Torshavn   -6.91181   61.8926         High income
## 4981            Torshavn   -6.91181   61.8926         High income
## 4982            Torshavn   -6.91181   61.8926         High income
## 4983            Torshavn   -6.91181   61.8926         High income
## 4984            Torshavn   -6.91181   61.8926         High income
## 4985            Torshavn   -6.91181   61.8926         High income
## 4986            Torshavn   -6.91181   61.8926         High income
## 4987            Torshavn   -6.91181   61.8926         High income
## 4988            Torshavn   -6.91181   61.8926         High income
## 4989            Torshavn   -6.91181   61.8926         High income
## 4990            Torshavn   -6.91181   61.8926         High income
## 4991            Torshavn   -6.91181   61.8926         High income
## 4992            Torshavn   -6.91181   61.8926         High income
## 4993            Torshavn   -6.91181   61.8926         High income
## 4994            Torshavn   -6.91181   61.8926         High income
## 4995            Torshavn   -6.91181   61.8926         High income
## 4996            Torshavn   -6.91181   61.8926         High income
## 4997            Torshavn   -6.91181   61.8926         High income
## 4998            Torshavn   -6.91181   61.8926         High income
## 4999            Torshavn   -6.91181   61.8926         High income
## 5000            Torshavn   -6.91181   61.8926         High income
## 5001            Torshavn   -6.91181   61.8926         High income
## 5002            Torshavn   -6.91181   61.8926         High income
## 5003            Torshavn   -6.91181   61.8926         High income
## 5004            Torshavn   -6.91181   61.8926         High income
## 5005            Torshavn   -6.91181   61.8926         High income
## 5006            Torshavn   -6.91181   61.8926         High income
## 5007            Torshavn   -6.91181   61.8926         High income
## 5008            Torshavn   -6.91181   61.8926         High income
## 5009            Torshavn   -6.91181   61.8926         High income
## 5010            Torshavn   -6.91181   61.8926         High income
## 5011            Torshavn   -6.91181   61.8926         High income
## 5012            Torshavn   -6.91181   61.8926         High income
## 5013            Torshavn   -6.91181   61.8926         High income
## 5014            Torshavn   -6.91181   61.8926         High income
## 5015            Torshavn   -6.91181   61.8926         High income
## 5016            Torshavn   -6.91181   61.8926         High income
## 5017            Torshavn   -6.91181   61.8926         High income
## 5018            Torshavn   -6.91181   61.8926         High income
## 5019            Torshavn   -6.91181   61.8926         High income
## 5020            Torshavn   -6.91181   61.8926         High income
## 5021            Torshavn   -6.91181   61.8926         High income
## 5022            Torshavn   -6.91181   61.8926         High income
## 5023            Torshavn   -6.91181   61.8926         High income
## 5024            Torshavn   -6.91181   61.8926         High income
## 5025            Torshavn   -6.91181   61.8926         High income
## 5026            Torshavn   -6.91181   61.8926         High income
## 5027            Torshavn   -6.91181   61.8926         High income
## 5028            Torshavn   -6.91181   61.8926         High income
## 5029            Torshavn   -6.91181   61.8926         High income
## 5030            Torshavn   -6.91181   61.8926         High income
## 5031            Torshavn   -6.91181   61.8926         High income
## 5032            Torshavn   -6.91181   61.8926         High income
## 5033            Torshavn   -6.91181   61.8926         High income
## 5034            Torshavn   -6.91181   61.8926         High income
## 5035            Torshavn   -6.91181   61.8926         High income
## 5036            Torshavn   -6.91181   61.8926         High income
## 5037            Torshavn   -6.91181   61.8926         High income
## 5038            Torshavn   -6.91181   61.8926         High income
## 5039            Torshavn   -6.91181   61.8926         High income
## 5040            Torshavn   -6.91181   61.8926         High income
## 5041                Suva    178.399  -18.1149 Upper middle income
## 5042                Suva    178.399  -18.1149 Upper middle income
## 5043                Suva    178.399  -18.1149 Upper middle income
## 5044                Suva    178.399  -18.1149 Upper middle income
## 5045                Suva    178.399  -18.1149 Upper middle income
## 5046                Suva    178.399  -18.1149 Upper middle income
## 5047                Suva    178.399  -18.1149 Upper middle income
## 5048                Suva    178.399  -18.1149 Upper middle income
## 5049                Suva    178.399  -18.1149 Upper middle income
## 5050                Suva    178.399  -18.1149 Upper middle income
## 5051                Suva    178.399  -18.1149 Upper middle income
## 5052                Suva    178.399  -18.1149 Upper middle income
## 5053                Suva    178.399  -18.1149 Upper middle income
## 5054                Suva    178.399  -18.1149 Upper middle income
## 5055                Suva    178.399  -18.1149 Upper middle income
## 5056                Suva    178.399  -18.1149 Upper middle income
## 5057                Suva    178.399  -18.1149 Upper middle income
## 5058                Suva    178.399  -18.1149 Upper middle income
## 5059                Suva    178.399  -18.1149 Upper middle income
## 5060                Suva    178.399  -18.1149 Upper middle income
## 5061                Suva    178.399  -18.1149 Upper middle income
## 5062                Suva    178.399  -18.1149 Upper middle income
## 5063                Suva    178.399  -18.1149 Upper middle income
## 5064                Suva    178.399  -18.1149 Upper middle income
## 5065                Suva    178.399  -18.1149 Upper middle income
## 5066                Suva    178.399  -18.1149 Upper middle income
## 5067                Suva    178.399  -18.1149 Upper middle income
## 5068                Suva    178.399  -18.1149 Upper middle income
## 5069                Suva    178.399  -18.1149 Upper middle income
## 5070                Suva    178.399  -18.1149 Upper middle income
## 5071                Suva    178.399  -18.1149 Upper middle income
## 5072                Suva    178.399  -18.1149 Upper middle income
## 5073                Suva    178.399  -18.1149 Upper middle income
## 5074                Suva    178.399  -18.1149 Upper middle income
## 5075                Suva    178.399  -18.1149 Upper middle income
## 5076                Suva    178.399  -18.1149 Upper middle income
## 5077                Suva    178.399  -18.1149 Upper middle income
## 5078                Suva    178.399  -18.1149 Upper middle income
## 5079                Suva    178.399  -18.1149 Upper middle income
## 5080                Suva    178.399  -18.1149 Upper middle income
## 5081                Suva    178.399  -18.1149 Upper middle income
## 5082                Suva    178.399  -18.1149 Upper middle income
## 5083                Suva    178.399  -18.1149 Upper middle income
## 5084                Suva    178.399  -18.1149 Upper middle income
## 5085                Suva    178.399  -18.1149 Upper middle income
## 5086                Suva    178.399  -18.1149 Upper middle income
## 5087                Suva    178.399  -18.1149 Upper middle income
## 5088                Suva    178.399  -18.1149 Upper middle income
## 5089                Suva    178.399  -18.1149 Upper middle income
## 5090                Suva    178.399  -18.1149 Upper middle income
## 5091                Suva    178.399  -18.1149 Upper middle income
## 5092                Suva    178.399  -18.1149 Upper middle income
## 5093                Suva    178.399  -18.1149 Upper middle income
## 5094                Suva    178.399  -18.1149 Upper middle income
## 5095                Suva    178.399  -18.1149 Upper middle income
## 5096                Suva    178.399  -18.1149 Upper middle income
## 5097                Suva    178.399  -18.1149 Upper middle income
## 5098                Suva    178.399  -18.1149 Upper middle income
## 5099                Suva    178.399  -18.1149 Upper middle income
## 5100                Suva    178.399  -18.1149 Upper middle income
## 5101                Suva    178.399  -18.1149 Upper middle income
## 5102                Suva    178.399  -18.1149 Upper middle income
## 5103                Suva    178.399  -18.1149 Upper middle income
## 5104            Helsinki    24.9525   60.1608         High income
## 5105            Helsinki    24.9525   60.1608         High income
## 5106            Helsinki    24.9525   60.1608         High income
## 5107            Helsinki    24.9525   60.1608         High income
## 5108            Helsinki    24.9525   60.1608         High income
## 5109            Helsinki    24.9525   60.1608         High income
## 5110            Helsinki    24.9525   60.1608         High income
## 5111            Helsinki    24.9525   60.1608         High income
## 5112            Helsinki    24.9525   60.1608         High income
## 5113            Helsinki    24.9525   60.1608         High income
## 5114            Helsinki    24.9525   60.1608         High income
## 5115            Helsinki    24.9525   60.1608         High income
## 5116            Helsinki    24.9525   60.1608         High income
## 5117            Helsinki    24.9525   60.1608         High income
## 5118            Helsinki    24.9525   60.1608         High income
## 5119            Helsinki    24.9525   60.1608         High income
## 5120            Helsinki    24.9525   60.1608         High income
## 5121            Helsinki    24.9525   60.1608         High income
## 5122            Helsinki    24.9525   60.1608         High income
## 5123            Helsinki    24.9525   60.1608         High income
## 5124            Helsinki    24.9525   60.1608         High income
## 5125            Helsinki    24.9525   60.1608         High income
## 5126            Helsinki    24.9525   60.1608         High income
## 5127            Helsinki    24.9525   60.1608         High income
## 5128            Helsinki    24.9525   60.1608         High income
## 5129            Helsinki    24.9525   60.1608         High income
## 5130            Helsinki    24.9525   60.1608         High income
## 5131            Helsinki    24.9525   60.1608         High income
## 5132            Helsinki    24.9525   60.1608         High income
## 5133            Helsinki    24.9525   60.1608         High income
## 5134            Helsinki    24.9525   60.1608         High income
## 5135            Helsinki    24.9525   60.1608         High income
## 5136            Helsinki    24.9525   60.1608         High income
## 5137            Helsinki    24.9525   60.1608         High income
## 5138            Helsinki    24.9525   60.1608         High income
## 5139            Helsinki    24.9525   60.1608         High income
## 5140            Helsinki    24.9525   60.1608         High income
## 5141            Helsinki    24.9525   60.1608         High income
## 5142            Helsinki    24.9525   60.1608         High income
## 5143            Helsinki    24.9525   60.1608         High income
## 5144            Helsinki    24.9525   60.1608         High income
## 5145            Helsinki    24.9525   60.1608         High income
## 5146            Helsinki    24.9525   60.1608         High income
## 5147            Helsinki    24.9525   60.1608         High income
## 5148            Helsinki    24.9525   60.1608         High income
## 5149            Helsinki    24.9525   60.1608         High income
## 5150            Helsinki    24.9525   60.1608         High income
## 5151            Helsinki    24.9525   60.1608         High income
## 5152            Helsinki    24.9525   60.1608         High income
## 5153            Helsinki    24.9525   60.1608         High income
## 5154            Helsinki    24.9525   60.1608         High income
## 5155            Helsinki    24.9525   60.1608         High income
## 5156            Helsinki    24.9525   60.1608         High income
## 5157            Helsinki    24.9525   60.1608         High income
## 5158            Helsinki    24.9525   60.1608         High income
## 5159            Helsinki    24.9525   60.1608         High income
## 5160            Helsinki    24.9525   60.1608         High income
## 5161            Helsinki    24.9525   60.1608         High income
## 5162            Helsinki    24.9525   60.1608         High income
## 5163            Helsinki    24.9525   60.1608         High income
## 5164            Helsinki    24.9525   60.1608         High income
## 5165            Helsinki    24.9525   60.1608         High income
## 5166            Helsinki    24.9525   60.1608         High income
## 5167                                                   Aggregates
## 5168                                                   Aggregates
## 5169                                                   Aggregates
## 5170                                                   Aggregates
## 5171                                                   Aggregates
## 5172                                                   Aggregates
## 5173                                                   Aggregates
## 5174                                                   Aggregates
## 5175                                                   Aggregates
## 5176                                                   Aggregates
## 5177                                                   Aggregates
## 5178                                                   Aggregates
## 5179                                                   Aggregates
## 5180                                                   Aggregates
## 5181                                                   Aggregates
## 5182                                                   Aggregates
## 5183                                                   Aggregates
## 5184                                                   Aggregates
## 5185                                                   Aggregates
## 5186                                                   Aggregates
## 5187                                                   Aggregates
## 5188                                                   Aggregates
## 5189                                                   Aggregates
## 5190                                                   Aggregates
## 5191                                                   Aggregates
## 5192                                                   Aggregates
## 5193                                                   Aggregates
## 5194                                                   Aggregates
## 5195                                                   Aggregates
## 5196                                                   Aggregates
## 5197                                                   Aggregates
## 5198                                                   Aggregates
## 5199                                                   Aggregates
## 5200                                                   Aggregates
## 5201                                                   Aggregates
## 5202                                                   Aggregates
## 5203                                                   Aggregates
## 5204                                                   Aggregates
## 5205                                                   Aggregates
## 5206                                                   Aggregates
## 5207                                                   Aggregates
## 5208                                                   Aggregates
## 5209                                                   Aggregates
## 5210                                                   Aggregates
## 5211                                                   Aggregates
## 5212                                                   Aggregates
## 5213                                                   Aggregates
## 5214                                                   Aggregates
## 5215                                                   Aggregates
## 5216                                                   Aggregates
## 5217                                                   Aggregates
## 5218                                                   Aggregates
## 5219                                                   Aggregates
## 5220                                                   Aggregates
## 5221                                                   Aggregates
## 5222                                                   Aggregates
## 5223                                                   Aggregates
## 5224                                                   Aggregates
## 5225                                                   Aggregates
## 5226                                                   Aggregates
## 5227                                                   Aggregates
## 5228                                                   Aggregates
## 5229                                                   Aggregates
## 5230               Paris    2.35097   48.8566         High income
## 5231               Paris    2.35097   48.8566         High income
## 5232               Paris    2.35097   48.8566         High income
## 5233               Paris    2.35097   48.8566         High income
## 5234               Paris    2.35097   48.8566         High income
## 5235               Paris    2.35097   48.8566         High income
## 5236               Paris    2.35097   48.8566         High income
## 5237               Paris    2.35097   48.8566         High income
## 5238               Paris    2.35097   48.8566         High income
## 5239               Paris    2.35097   48.8566         High income
## 5240               Paris    2.35097   48.8566         High income
## 5241               Paris    2.35097   48.8566         High income
## 5242               Paris    2.35097   48.8566         High income
## 5243               Paris    2.35097   48.8566         High income
## 5244               Paris    2.35097   48.8566         High income
## 5245               Paris    2.35097   48.8566         High income
## 5246               Paris    2.35097   48.8566         High income
## 5247               Paris    2.35097   48.8566         High income
## 5248               Paris    2.35097   48.8566         High income
## 5249               Paris    2.35097   48.8566         High income
## 5250               Paris    2.35097   48.8566         High income
## 5251               Paris    2.35097   48.8566         High income
## 5252               Paris    2.35097   48.8566         High income
## 5253               Paris    2.35097   48.8566         High income
## 5254               Paris    2.35097   48.8566         High income
## 5255               Paris    2.35097   48.8566         High income
## 5256               Paris    2.35097   48.8566         High income
## 5257               Paris    2.35097   48.8566         High income
## 5258               Paris    2.35097   48.8566         High income
## 5259               Paris    2.35097   48.8566         High income
## 5260               Paris    2.35097   48.8566         High income
## 5261               Paris    2.35097   48.8566         High income
## 5262               Paris    2.35097   48.8566         High income
## 5263               Paris    2.35097   48.8566         High income
## 5264               Paris    2.35097   48.8566         High income
## 5265               Paris    2.35097   48.8566         High income
## 5266               Paris    2.35097   48.8566         High income
## 5267               Paris    2.35097   48.8566         High income
## 5268               Paris    2.35097   48.8566         High income
## 5269               Paris    2.35097   48.8566         High income
## 5270               Paris    2.35097   48.8566         High income
## 5271               Paris    2.35097   48.8566         High income
## 5272               Paris    2.35097   48.8566         High income
## 5273               Paris    2.35097   48.8566         High income
## 5274               Paris    2.35097   48.8566         High income
## 5275               Paris    2.35097   48.8566         High income
## 5276               Paris    2.35097   48.8566         High income
## 5277               Paris    2.35097   48.8566         High income
## 5278               Paris    2.35097   48.8566         High income
## 5279               Paris    2.35097   48.8566         High income
## 5280               Paris    2.35097   48.8566         High income
## 5281               Paris    2.35097   48.8566         High income
## 5282               Paris    2.35097   48.8566         High income
## 5283               Paris    2.35097   48.8566         High income
## 5284               Paris    2.35097   48.8566         High income
## 5285               Paris    2.35097   48.8566         High income
## 5286               Paris    2.35097   48.8566         High income
## 5287               Paris    2.35097   48.8566         High income
## 5288               Paris    2.35097   48.8566         High income
## 5289               Paris    2.35097   48.8566         High income
## 5290               Paris    2.35097   48.8566         High income
## 5291               Paris    2.35097   48.8566         High income
## 5292               Paris    2.35097   48.8566         High income
## 5293             Papeete    -149.57   -17.535         High income
## 5294             Papeete    -149.57   -17.535         High income
## 5295             Papeete    -149.57   -17.535         High income
## 5296             Papeete    -149.57   -17.535         High income
## 5297             Papeete    -149.57   -17.535         High income
## 5298             Papeete    -149.57   -17.535         High income
## 5299             Papeete    -149.57   -17.535         High income
## 5300             Papeete    -149.57   -17.535         High income
## 5301             Papeete    -149.57   -17.535         High income
## 5302             Papeete    -149.57   -17.535         High income
## 5303             Papeete    -149.57   -17.535         High income
## 5304             Papeete    -149.57   -17.535         High income
## 5305             Papeete    -149.57   -17.535         High income
## 5306             Papeete    -149.57   -17.535         High income
## 5307             Papeete    -149.57   -17.535         High income
## 5308             Papeete    -149.57   -17.535         High income
## 5309             Papeete    -149.57   -17.535         High income
## 5310             Papeete    -149.57   -17.535         High income
## 5311             Papeete    -149.57   -17.535         High income
## 5312             Papeete    -149.57   -17.535         High income
## 5313             Papeete    -149.57   -17.535         High income
## 5314             Papeete    -149.57   -17.535         High income
## 5315             Papeete    -149.57   -17.535         High income
## 5316             Papeete    -149.57   -17.535         High income
## 5317             Papeete    -149.57   -17.535         High income
## 5318             Papeete    -149.57   -17.535         High income
## 5319             Papeete    -149.57   -17.535         High income
## 5320             Papeete    -149.57   -17.535         High income
## 5321             Papeete    -149.57   -17.535         High income
## 5322             Papeete    -149.57   -17.535         High income
## 5323             Papeete    -149.57   -17.535         High income
## 5324             Papeete    -149.57   -17.535         High income
## 5325             Papeete    -149.57   -17.535         High income
## 5326             Papeete    -149.57   -17.535         High income
## 5327             Papeete    -149.57   -17.535         High income
## 5328             Papeete    -149.57   -17.535         High income
## 5329             Papeete    -149.57   -17.535         High income
## 5330             Papeete    -149.57   -17.535         High income
## 5331             Papeete    -149.57   -17.535         High income
## 5332             Papeete    -149.57   -17.535         High income
## 5333             Papeete    -149.57   -17.535         High income
## 5334             Papeete    -149.57   -17.535         High income
## 5335             Papeete    -149.57   -17.535         High income
## 5336             Papeete    -149.57   -17.535         High income
## 5337             Papeete    -149.57   -17.535         High income
## 5338             Papeete    -149.57   -17.535         High income
## 5339             Papeete    -149.57   -17.535         High income
## 5340             Papeete    -149.57   -17.535         High income
## 5341             Papeete    -149.57   -17.535         High income
## 5342             Papeete    -149.57   -17.535         High income
## 5343             Papeete    -149.57   -17.535         High income
## 5344             Papeete    -149.57   -17.535         High income
## 5345             Papeete    -149.57   -17.535         High income
## 5346             Papeete    -149.57   -17.535         High income
## 5347             Papeete    -149.57   -17.535         High income
## 5348             Papeete    -149.57   -17.535         High income
## 5349             Papeete    -149.57   -17.535         High income
## 5350             Papeete    -149.57   -17.535         High income
## 5351             Papeete    -149.57   -17.535         High income
## 5352             Papeete    -149.57   -17.535         High income
## 5353             Papeete    -149.57   -17.535         High income
## 5354             Papeete    -149.57   -17.535         High income
## 5355             Papeete    -149.57   -17.535         High income
## 5356          Libreville    9.45162   0.38832 Upper middle income
## 5357          Libreville    9.45162   0.38832 Upper middle income
## 5358          Libreville    9.45162   0.38832 Upper middle income
## 5359          Libreville    9.45162   0.38832 Upper middle income
## 5360          Libreville    9.45162   0.38832 Upper middle income
## 5361          Libreville    9.45162   0.38832 Upper middle income
## 5362          Libreville    9.45162   0.38832 Upper middle income
## 5363          Libreville    9.45162   0.38832 Upper middle income
## 5364          Libreville    9.45162   0.38832 Upper middle income
## 5365          Libreville    9.45162   0.38832 Upper middle income
## 5366          Libreville    9.45162   0.38832 Upper middle income
## 5367          Libreville    9.45162   0.38832 Upper middle income
## 5368          Libreville    9.45162   0.38832 Upper middle income
## 5369          Libreville    9.45162   0.38832 Upper middle income
## 5370          Libreville    9.45162   0.38832 Upper middle income
## 5371          Libreville    9.45162   0.38832 Upper middle income
## 5372          Libreville    9.45162   0.38832 Upper middle income
## 5373          Libreville    9.45162   0.38832 Upper middle income
## 5374          Libreville    9.45162   0.38832 Upper middle income
## 5375          Libreville    9.45162   0.38832 Upper middle income
## 5376          Libreville    9.45162   0.38832 Upper middle income
## 5377          Libreville    9.45162   0.38832 Upper middle income
## 5378          Libreville    9.45162   0.38832 Upper middle income
## 5379          Libreville    9.45162   0.38832 Upper middle income
## 5380          Libreville    9.45162   0.38832 Upper middle income
## 5381          Libreville    9.45162   0.38832 Upper middle income
## 5382          Libreville    9.45162   0.38832 Upper middle income
## 5383          Libreville    9.45162   0.38832 Upper middle income
## 5384          Libreville    9.45162   0.38832 Upper middle income
## 5385          Libreville    9.45162   0.38832 Upper middle income
## 5386          Libreville    9.45162   0.38832 Upper middle income
## 5387          Libreville    9.45162   0.38832 Upper middle income
## 5388          Libreville    9.45162   0.38832 Upper middle income
## 5389          Libreville    9.45162   0.38832 Upper middle income
## 5390          Libreville    9.45162   0.38832 Upper middle income
## 5391          Libreville    9.45162   0.38832 Upper middle income
## 5392          Libreville    9.45162   0.38832 Upper middle income
## 5393          Libreville    9.45162   0.38832 Upper middle income
## 5394          Libreville    9.45162   0.38832 Upper middle income
## 5395          Libreville    9.45162   0.38832 Upper middle income
## 5396          Libreville    9.45162   0.38832 Upper middle income
## 5397          Libreville    9.45162   0.38832 Upper middle income
## 5398          Libreville    9.45162   0.38832 Upper middle income
## 5399          Libreville    9.45162   0.38832 Upper middle income
## 5400          Libreville    9.45162   0.38832 Upper middle income
## 5401          Libreville    9.45162   0.38832 Upper middle income
## 5402          Libreville    9.45162   0.38832 Upper middle income
## 5403          Libreville    9.45162   0.38832 Upper middle income
## 5404          Libreville    9.45162   0.38832 Upper middle income
## 5405          Libreville    9.45162   0.38832 Upper middle income
## 5406          Libreville    9.45162   0.38832 Upper middle income
## 5407          Libreville    9.45162   0.38832 Upper middle income
## 5408          Libreville    9.45162   0.38832 Upper middle income
## 5409          Libreville    9.45162   0.38832 Upper middle income
## 5410          Libreville    9.45162   0.38832 Upper middle income
## 5411          Libreville    9.45162   0.38832 Upper middle income
## 5412          Libreville    9.45162   0.38832 Upper middle income
## 5413          Libreville    9.45162   0.38832 Upper middle income
## 5414          Libreville    9.45162   0.38832 Upper middle income
## 5415          Libreville    9.45162   0.38832 Upper middle income
## 5416          Libreville    9.45162   0.38832 Upper middle income
## 5417          Libreville    9.45162   0.38832 Upper middle income
## 5418          Libreville    9.45162   0.38832 Upper middle income
## 5419              Banjul   -16.5885   13.4495          Low income
## 5420              Banjul   -16.5885   13.4495          Low income
## 5421              Banjul   -16.5885   13.4495          Low income
## 5422              Banjul   -16.5885   13.4495          Low income
## 5423              Banjul   -16.5885   13.4495          Low income
## 5424              Banjul   -16.5885   13.4495          Low income
## 5425              Banjul   -16.5885   13.4495          Low income
## 5426              Banjul   -16.5885   13.4495          Low income
## 5427              Banjul   -16.5885   13.4495          Low income
## 5428              Banjul   -16.5885   13.4495          Low income
## 5429              Banjul   -16.5885   13.4495          Low income
## 5430              Banjul   -16.5885   13.4495          Low income
## 5431              Banjul   -16.5885   13.4495          Low income
## 5432              Banjul   -16.5885   13.4495          Low income
## 5433              Banjul   -16.5885   13.4495          Low income
## 5434              Banjul   -16.5885   13.4495          Low income
## 5435              Banjul   -16.5885   13.4495          Low income
## 5436              Banjul   -16.5885   13.4495          Low income
## 5437              Banjul   -16.5885   13.4495          Low income
## 5438              Banjul   -16.5885   13.4495          Low income
## 5439              Banjul   -16.5885   13.4495          Low income
## 5440              Banjul   -16.5885   13.4495          Low income
## 5441              Banjul   -16.5885   13.4495          Low income
## 5442              Banjul   -16.5885   13.4495          Low income
## 5443              Banjul   -16.5885   13.4495          Low income
## 5444              Banjul   -16.5885   13.4495          Low income
## 5445              Banjul   -16.5885   13.4495          Low income
## 5446              Banjul   -16.5885   13.4495          Low income
## 5447              Banjul   -16.5885   13.4495          Low income
## 5448              Banjul   -16.5885   13.4495          Low income
## 5449              Banjul   -16.5885   13.4495          Low income
## 5450              Banjul   -16.5885   13.4495          Low income
## 5451              Banjul   -16.5885   13.4495          Low income
## 5452              Banjul   -16.5885   13.4495          Low income
## 5453              Banjul   -16.5885   13.4495          Low income
## 5454              Banjul   -16.5885   13.4495          Low income
## 5455              Banjul   -16.5885   13.4495          Low income
## 5456              Banjul   -16.5885   13.4495          Low income
## 5457              Banjul   -16.5885   13.4495          Low income
## 5458              Banjul   -16.5885   13.4495          Low income
## 5459              Banjul   -16.5885   13.4495          Low income
## 5460              Banjul   -16.5885   13.4495          Low income
## 5461              Banjul   -16.5885   13.4495          Low income
## 5462              Banjul   -16.5885   13.4495          Low income
## 5463              Banjul   -16.5885   13.4495          Low income
## 5464              Banjul   -16.5885   13.4495          Low income
## 5465              Banjul   -16.5885   13.4495          Low income
## 5466              Banjul   -16.5885   13.4495          Low income
## 5467              Banjul   -16.5885   13.4495          Low income
## 5468              Banjul   -16.5885   13.4495          Low income
## 5469              Banjul   -16.5885   13.4495          Low income
## 5470              Banjul   -16.5885   13.4495          Low income
## 5471              Banjul   -16.5885   13.4495          Low income
## 5472              Banjul   -16.5885   13.4495          Low income
## 5473              Banjul   -16.5885   13.4495          Low income
## 5474              Banjul   -16.5885   13.4495          Low income
## 5475              Banjul   -16.5885   13.4495          Low income
## 5476              Banjul   -16.5885   13.4495          Low income
## 5477              Banjul   -16.5885   13.4495          Low income
## 5478              Banjul   -16.5885   13.4495          Low income
## 5479              Banjul   -16.5885   13.4495          Low income
## 5480              Banjul   -16.5885   13.4495          Low income
## 5481              Banjul   -16.5885   13.4495          Low income
## 5482             Tbilisi     44.793     41.71 Upper middle income
## 5483             Tbilisi     44.793     41.71 Upper middle income
## 5484             Tbilisi     44.793     41.71 Upper middle income
## 5485             Tbilisi     44.793     41.71 Upper middle income
## 5486             Tbilisi     44.793     41.71 Upper middle income
## 5487             Tbilisi     44.793     41.71 Upper middle income
## 5488             Tbilisi     44.793     41.71 Upper middle income
## 5489             Tbilisi     44.793     41.71 Upper middle income
## 5490             Tbilisi     44.793     41.71 Upper middle income
## 5491             Tbilisi     44.793     41.71 Upper middle income
## 5492             Tbilisi     44.793     41.71 Upper middle income
## 5493             Tbilisi     44.793     41.71 Upper middle income
## 5494             Tbilisi     44.793     41.71 Upper middle income
## 5495             Tbilisi     44.793     41.71 Upper middle income
## 5496             Tbilisi     44.793     41.71 Upper middle income
## 5497             Tbilisi     44.793     41.71 Upper middle income
## 5498             Tbilisi     44.793     41.71 Upper middle income
## 5499             Tbilisi     44.793     41.71 Upper middle income
## 5500             Tbilisi     44.793     41.71 Upper middle income
## 5501             Tbilisi     44.793     41.71 Upper middle income
## 5502             Tbilisi     44.793     41.71 Upper middle income
## 5503             Tbilisi     44.793     41.71 Upper middle income
## 5504             Tbilisi     44.793     41.71 Upper middle income
## 5505             Tbilisi     44.793     41.71 Upper middle income
## 5506             Tbilisi     44.793     41.71 Upper middle income
## 5507             Tbilisi     44.793     41.71 Upper middle income
## 5508             Tbilisi     44.793     41.71 Upper middle income
## 5509             Tbilisi     44.793     41.71 Upper middle income
## 5510             Tbilisi     44.793     41.71 Upper middle income
## 5511             Tbilisi     44.793     41.71 Upper middle income
## 5512             Tbilisi     44.793     41.71 Upper middle income
## 5513             Tbilisi     44.793     41.71 Upper middle income
## 5514             Tbilisi     44.793     41.71 Upper middle income
## 5515             Tbilisi     44.793     41.71 Upper middle income
## 5516             Tbilisi     44.793     41.71 Upper middle income
## 5517             Tbilisi     44.793     41.71 Upper middle income
## 5518             Tbilisi     44.793     41.71 Upper middle income
## 5519             Tbilisi     44.793     41.71 Upper middle income
## 5520             Tbilisi     44.793     41.71 Upper middle income
## 5521             Tbilisi     44.793     41.71 Upper middle income
## 5522             Tbilisi     44.793     41.71 Upper middle income
## 5523             Tbilisi     44.793     41.71 Upper middle income
## 5524             Tbilisi     44.793     41.71 Upper middle income
## 5525             Tbilisi     44.793     41.71 Upper middle income
## 5526             Tbilisi     44.793     41.71 Upper middle income
## 5527             Tbilisi     44.793     41.71 Upper middle income
## 5528             Tbilisi     44.793     41.71 Upper middle income
## 5529             Tbilisi     44.793     41.71 Upper middle income
## 5530             Tbilisi     44.793     41.71 Upper middle income
## 5531             Tbilisi     44.793     41.71 Upper middle income
## 5532             Tbilisi     44.793     41.71 Upper middle income
## 5533             Tbilisi     44.793     41.71 Upper middle income
## 5534             Tbilisi     44.793     41.71 Upper middle income
## 5535             Tbilisi     44.793     41.71 Upper middle income
## 5536             Tbilisi     44.793     41.71 Upper middle income
## 5537             Tbilisi     44.793     41.71 Upper middle income
## 5538             Tbilisi     44.793     41.71 Upper middle income
## 5539             Tbilisi     44.793     41.71 Upper middle income
## 5540             Tbilisi     44.793     41.71 Upper middle income
## 5541             Tbilisi     44.793     41.71 Upper middle income
## 5542             Tbilisi     44.793     41.71 Upper middle income
## 5543             Tbilisi     44.793     41.71 Upper middle income
## 5544             Tbilisi     44.793     41.71 Upper middle income
## 5545              Berlin    13.4115   52.5235         High income
## 5546              Berlin    13.4115   52.5235         High income
## 5547              Berlin    13.4115   52.5235         High income
## 5548              Berlin    13.4115   52.5235         High income
## 5549              Berlin    13.4115   52.5235         High income
## 5550              Berlin    13.4115   52.5235         High income
## 5551              Berlin    13.4115   52.5235         High income
## 5552              Berlin    13.4115   52.5235         High income
## 5553              Berlin    13.4115   52.5235         High income
## 5554              Berlin    13.4115   52.5235         High income
## 5555              Berlin    13.4115   52.5235         High income
## 5556              Berlin    13.4115   52.5235         High income
## 5557              Berlin    13.4115   52.5235         High income
## 5558              Berlin    13.4115   52.5235         High income
## 5559              Berlin    13.4115   52.5235         High income
## 5560              Berlin    13.4115   52.5235         High income
## 5561              Berlin    13.4115   52.5235         High income
## 5562              Berlin    13.4115   52.5235         High income
## 5563              Berlin    13.4115   52.5235         High income
## 5564              Berlin    13.4115   52.5235         High income
## 5565              Berlin    13.4115   52.5235         High income
## 5566              Berlin    13.4115   52.5235         High income
## 5567              Berlin    13.4115   52.5235         High income
## 5568              Berlin    13.4115   52.5235         High income
## 5569              Berlin    13.4115   52.5235         High income
## 5570              Berlin    13.4115   52.5235         High income
## 5571              Berlin    13.4115   52.5235         High income
## 5572              Berlin    13.4115   52.5235         High income
## 5573              Berlin    13.4115   52.5235         High income
## 5574              Berlin    13.4115   52.5235         High income
## 5575              Berlin    13.4115   52.5235         High income
## 5576              Berlin    13.4115   52.5235         High income
## 5577              Berlin    13.4115   52.5235         High income
## 5578              Berlin    13.4115   52.5235         High income
## 5579              Berlin    13.4115   52.5235         High income
## 5580              Berlin    13.4115   52.5235         High income
## 5581              Berlin    13.4115   52.5235         High income
## 5582              Berlin    13.4115   52.5235         High income
## 5583              Berlin    13.4115   52.5235         High income
## 5584              Berlin    13.4115   52.5235         High income
## 5585              Berlin    13.4115   52.5235         High income
## 5586              Berlin    13.4115   52.5235         High income
## 5587              Berlin    13.4115   52.5235         High income
## 5588              Berlin    13.4115   52.5235         High income
## 5589              Berlin    13.4115   52.5235         High income
## 5590              Berlin    13.4115   52.5235         High income
## 5591              Berlin    13.4115   52.5235         High income
## 5592              Berlin    13.4115   52.5235         High income
## 5593              Berlin    13.4115   52.5235         High income
## 5594              Berlin    13.4115   52.5235         High income
## 5595              Berlin    13.4115   52.5235         High income
## 5596              Berlin    13.4115   52.5235         High income
## 5597              Berlin    13.4115   52.5235         High income
## 5598              Berlin    13.4115   52.5235         High income
## 5599              Berlin    13.4115   52.5235         High income
## 5600              Berlin    13.4115   52.5235         High income
## 5601              Berlin    13.4115   52.5235         High income
## 5602              Berlin    13.4115   52.5235         High income
## 5603              Berlin    13.4115   52.5235         High income
## 5604              Berlin    13.4115   52.5235         High income
## 5605              Berlin    13.4115   52.5235         High income
## 5606              Berlin    13.4115   52.5235         High income
## 5607              Berlin    13.4115   52.5235         High income
## 5608               Accra   -0.20795   5.57045 Lower middle income
## 5609               Accra   -0.20795   5.57045 Lower middle income
## 5610               Accra   -0.20795   5.57045 Lower middle income
## 5611               Accra   -0.20795   5.57045 Lower middle income
## 5612               Accra   -0.20795   5.57045 Lower middle income
## 5613               Accra   -0.20795   5.57045 Lower middle income
## 5614               Accra   -0.20795   5.57045 Lower middle income
## 5615               Accra   -0.20795   5.57045 Lower middle income
## 5616               Accra   -0.20795   5.57045 Lower middle income
## 5617               Accra   -0.20795   5.57045 Lower middle income
## 5618               Accra   -0.20795   5.57045 Lower middle income
## 5619               Accra   -0.20795   5.57045 Lower middle income
## 5620               Accra   -0.20795   5.57045 Lower middle income
## 5621               Accra   -0.20795   5.57045 Lower middle income
## 5622               Accra   -0.20795   5.57045 Lower middle income
## 5623               Accra   -0.20795   5.57045 Lower middle income
## 5624               Accra   -0.20795   5.57045 Lower middle income
## 5625               Accra   -0.20795   5.57045 Lower middle income
## 5626               Accra   -0.20795   5.57045 Lower middle income
## 5627               Accra   -0.20795   5.57045 Lower middle income
## 5628               Accra   -0.20795   5.57045 Lower middle income
## 5629               Accra   -0.20795   5.57045 Lower middle income
## 5630               Accra   -0.20795   5.57045 Lower middle income
## 5631               Accra   -0.20795   5.57045 Lower middle income
## 5632               Accra   -0.20795   5.57045 Lower middle income
## 5633               Accra   -0.20795   5.57045 Lower middle income
## 5634               Accra   -0.20795   5.57045 Lower middle income
## 5635               Accra   -0.20795   5.57045 Lower middle income
## 5636               Accra   -0.20795   5.57045 Lower middle income
## 5637               Accra   -0.20795   5.57045 Lower middle income
## 5638               Accra   -0.20795   5.57045 Lower middle income
## 5639               Accra   -0.20795   5.57045 Lower middle income
## 5640               Accra   -0.20795   5.57045 Lower middle income
## 5641               Accra   -0.20795   5.57045 Lower middle income
## 5642               Accra   -0.20795   5.57045 Lower middle income
## 5643               Accra   -0.20795   5.57045 Lower middle income
## 5644               Accra   -0.20795   5.57045 Lower middle income
## 5645               Accra   -0.20795   5.57045 Lower middle income
## 5646               Accra   -0.20795   5.57045 Lower middle income
## 5647               Accra   -0.20795   5.57045 Lower middle income
## 5648               Accra   -0.20795   5.57045 Lower middle income
## 5649               Accra   -0.20795   5.57045 Lower middle income
## 5650               Accra   -0.20795   5.57045 Lower middle income
## 5651               Accra   -0.20795   5.57045 Lower middle income
## 5652               Accra   -0.20795   5.57045 Lower middle income
## 5653               Accra   -0.20795   5.57045 Lower middle income
## 5654               Accra   -0.20795   5.57045 Lower middle income
## 5655               Accra   -0.20795   5.57045 Lower middle income
## 5656               Accra   -0.20795   5.57045 Lower middle income
## 5657               Accra   -0.20795   5.57045 Lower middle income
## 5658               Accra   -0.20795   5.57045 Lower middle income
## 5659               Accra   -0.20795   5.57045 Lower middle income
## 5660               Accra   -0.20795   5.57045 Lower middle income
## 5661               Accra   -0.20795   5.57045 Lower middle income
## 5662               Accra   -0.20795   5.57045 Lower middle income
## 5663               Accra   -0.20795   5.57045 Lower middle income
## 5664               Accra   -0.20795   5.57045 Lower middle income
## 5665               Accra   -0.20795   5.57045 Lower middle income
## 5666               Accra   -0.20795   5.57045 Lower middle income
## 5667               Accra   -0.20795   5.57045 Lower middle income
## 5668               Accra   -0.20795   5.57045 Lower middle income
## 5669               Accra   -0.20795   5.57045 Lower middle income
## 5670               Accra   -0.20795   5.57045 Lower middle income
## 5671                                                  High income
## 5672                                                  High income
## 5673                                                  High income
## 5674                                                  High income
## 5675                                                  High income
## 5676                                                  High income
## 5677                                                  High income
## 5678                                                  High income
## 5679                                                  High income
## 5680                                                  High income
## 5681                                                  High income
## 5682                                                  High income
## 5683                                                  High income
## 5684                                                  High income
## 5685                                                  High income
## 5686                                                  High income
## 5687                                                  High income
## 5688                                                  High income
## 5689                                                  High income
## 5690                                                  High income
## 5691                                                  High income
## 5692                                                  High income
## 5693                                                  High income
## 5694                                                  High income
## 5695                                                  High income
## 5696                                                  High income
## 5697                                                  High income
## 5698                                                  High income
## 5699                                                  High income
## 5700                                                  High income
## 5701                                                  High income
## 5702                                                  High income
## 5703                                                  High income
## 5704                                                  High income
## 5705                                                  High income
## 5706                                                  High income
## 5707                                                  High income
## 5708                                                  High income
## 5709                                                  High income
## 5710                                                  High income
## 5711                                                  High income
## 5712                                                  High income
## 5713                                                  High income
## 5714                                                  High income
## 5715                                                  High income
## 5716                                                  High income
## 5717                                                  High income
## 5718                                                  High income
## 5719                                                  High income
## 5720                                                  High income
## 5721                                                  High income
## 5722                                                  High income
## 5723                                                  High income
## 5724                                                  High income
## 5725                                                  High income
## 5726                                                  High income
## 5727                                                  High income
## 5728                                                  High income
## 5729                                                  High income
## 5730                                                  High income
## 5731                                                  High income
## 5732                                                  High income
## 5733                                                  High income
## 5734              Athens    23.7166   37.9792         High income
## 5735              Athens    23.7166   37.9792         High income
## 5736              Athens    23.7166   37.9792         High income
## 5737              Athens    23.7166   37.9792         High income
## 5738              Athens    23.7166   37.9792         High income
## 5739              Athens    23.7166   37.9792         High income
## 5740              Athens    23.7166   37.9792         High income
## 5741              Athens    23.7166   37.9792         High income
## 5742              Athens    23.7166   37.9792         High income
## 5743              Athens    23.7166   37.9792         High income
## 5744              Athens    23.7166   37.9792         High income
## 5745              Athens    23.7166   37.9792         High income
## 5746              Athens    23.7166   37.9792         High income
## 5747              Athens    23.7166   37.9792         High income
## 5748              Athens    23.7166   37.9792         High income
## 5749              Athens    23.7166   37.9792         High income
## 5750              Athens    23.7166   37.9792         High income
## 5751              Athens    23.7166   37.9792         High income
## 5752              Athens    23.7166   37.9792         High income
## 5753              Athens    23.7166   37.9792         High income
## 5754              Athens    23.7166   37.9792         High income
## 5755              Athens    23.7166   37.9792         High income
## 5756              Athens    23.7166   37.9792         High income
## 5757              Athens    23.7166   37.9792         High income
## 5758              Athens    23.7166   37.9792         High income
## 5759              Athens    23.7166   37.9792         High income
## 5760              Athens    23.7166   37.9792         High income
## 5761              Athens    23.7166   37.9792         High income
## 5762              Athens    23.7166   37.9792         High income
## 5763              Athens    23.7166   37.9792         High income
## 5764              Athens    23.7166   37.9792         High income
## 5765              Athens    23.7166   37.9792         High income
## 5766              Athens    23.7166   37.9792         High income
## 5767              Athens    23.7166   37.9792         High income
## 5768              Athens    23.7166   37.9792         High income
## 5769              Athens    23.7166   37.9792         High income
## 5770              Athens    23.7166   37.9792         High income
## 5771              Athens    23.7166   37.9792         High income
## 5772              Athens    23.7166   37.9792         High income
## 5773              Athens    23.7166   37.9792         High income
## 5774              Athens    23.7166   37.9792         High income
## 5775              Athens    23.7166   37.9792         High income
## 5776              Athens    23.7166   37.9792         High income
## 5777              Athens    23.7166   37.9792         High income
## 5778              Athens    23.7166   37.9792         High income
## 5779              Athens    23.7166   37.9792         High income
## 5780              Athens    23.7166   37.9792         High income
## 5781              Athens    23.7166   37.9792         High income
## 5782              Athens    23.7166   37.9792         High income
## 5783              Athens    23.7166   37.9792         High income
## 5784              Athens    23.7166   37.9792         High income
## 5785              Athens    23.7166   37.9792         High income
## 5786              Athens    23.7166   37.9792         High income
## 5787              Athens    23.7166   37.9792         High income
## 5788              Athens    23.7166   37.9792         High income
## 5789              Athens    23.7166   37.9792         High income
## 5790              Athens    23.7166   37.9792         High income
## 5791              Athens    23.7166   37.9792         High income
## 5792              Athens    23.7166   37.9792         High income
## 5793              Athens    23.7166   37.9792         High income
## 5794              Athens    23.7166   37.9792         High income
## 5795              Athens    23.7166   37.9792         High income
## 5796              Athens    23.7166   37.9792         High income
## 5797                Nuuk   -51.7214   64.1836         High income
## 5798                Nuuk   -51.7214   64.1836         High income
## 5799                Nuuk   -51.7214   64.1836         High income
## 5800                Nuuk   -51.7214   64.1836         High income
## 5801                Nuuk   -51.7214   64.1836         High income
## 5802                Nuuk   -51.7214   64.1836         High income
## 5803                Nuuk   -51.7214   64.1836         High income
## 5804                Nuuk   -51.7214   64.1836         High income
## 5805                Nuuk   -51.7214   64.1836         High income
## 5806                Nuuk   -51.7214   64.1836         High income
## 5807                Nuuk   -51.7214   64.1836         High income
## 5808                Nuuk   -51.7214   64.1836         High income
## 5809                Nuuk   -51.7214   64.1836         High income
## 5810                Nuuk   -51.7214   64.1836         High income
## 5811                Nuuk   -51.7214   64.1836         High income
## 5812                Nuuk   -51.7214   64.1836         High income
## 5813                Nuuk   -51.7214   64.1836         High income
## 5814                Nuuk   -51.7214   64.1836         High income
## 5815                Nuuk   -51.7214   64.1836         High income
## 5816                Nuuk   -51.7214   64.1836         High income
## 5817                Nuuk   -51.7214   64.1836         High income
## 5818                Nuuk   -51.7214   64.1836         High income
## 5819                Nuuk   -51.7214   64.1836         High income
## 5820                Nuuk   -51.7214   64.1836         High income
## 5821                Nuuk   -51.7214   64.1836         High income
## 5822                Nuuk   -51.7214   64.1836         High income
## 5823                Nuuk   -51.7214   64.1836         High income
## 5824                Nuuk   -51.7214   64.1836         High income
## 5825                Nuuk   -51.7214   64.1836         High income
## 5826                Nuuk   -51.7214   64.1836         High income
## 5827                Nuuk   -51.7214   64.1836         High income
## 5828                Nuuk   -51.7214   64.1836         High income
## 5829                Nuuk   -51.7214   64.1836         High income
## 5830                Nuuk   -51.7214   64.1836         High income
## 5831                Nuuk   -51.7214   64.1836         High income
## 5832                Nuuk   -51.7214   64.1836         High income
## 5833                Nuuk   -51.7214   64.1836         High income
## 5834                Nuuk   -51.7214   64.1836         High income
## 5835                Nuuk   -51.7214   64.1836         High income
## 5836                Nuuk   -51.7214   64.1836         High income
## 5837                Nuuk   -51.7214   64.1836         High income
## 5838                Nuuk   -51.7214   64.1836         High income
## 5839                Nuuk   -51.7214   64.1836         High income
## 5840                Nuuk   -51.7214   64.1836         High income
## 5841                Nuuk   -51.7214   64.1836         High income
## 5842                Nuuk   -51.7214   64.1836         High income
## 5843                Nuuk   -51.7214   64.1836         High income
## 5844                Nuuk   -51.7214   64.1836         High income
## 5845                Nuuk   -51.7214   64.1836         High income
## 5846                Nuuk   -51.7214   64.1836         High income
## 5847                Nuuk   -51.7214   64.1836         High income
## 5848                Nuuk   -51.7214   64.1836         High income
## 5849                Nuuk   -51.7214   64.1836         High income
## 5850                Nuuk   -51.7214   64.1836         High income
## 5851                Nuuk   -51.7214   64.1836         High income
## 5852                Nuuk   -51.7214   64.1836         High income
## 5853                Nuuk   -51.7214   64.1836         High income
## 5854                Nuuk   -51.7214   64.1836         High income
## 5855                Nuuk   -51.7214   64.1836         High income
## 5856                Nuuk   -51.7214   64.1836         High income
## 5857                Nuuk   -51.7214   64.1836         High income
## 5858                Nuuk   -51.7214   64.1836         High income
## 5859                Nuuk   -51.7214   64.1836         High income
## 5860      Saint George's   -61.7449   12.0653 Upper middle income
## 5861      Saint George's   -61.7449   12.0653 Upper middle income
## 5862      Saint George's   -61.7449   12.0653 Upper middle income
## 5863      Saint George's   -61.7449   12.0653 Upper middle income
## 5864      Saint George's   -61.7449   12.0653 Upper middle income
## 5865      Saint George's   -61.7449   12.0653 Upper middle income
## 5866      Saint George's   -61.7449   12.0653 Upper middle income
## 5867      Saint George's   -61.7449   12.0653 Upper middle income
## 5868      Saint George's   -61.7449   12.0653 Upper middle income
## 5869      Saint George's   -61.7449   12.0653 Upper middle income
## 5870      Saint George's   -61.7449   12.0653 Upper middle income
## 5871      Saint George's   -61.7449   12.0653 Upper middle income
## 5872      Saint George's   -61.7449   12.0653 Upper middle income
## 5873      Saint George's   -61.7449   12.0653 Upper middle income
## 5874      Saint George's   -61.7449   12.0653 Upper middle income
## 5875      Saint George's   -61.7449   12.0653 Upper middle income
## 5876      Saint George's   -61.7449   12.0653 Upper middle income
## 5877      Saint George's   -61.7449   12.0653 Upper middle income
## 5878      Saint George's   -61.7449   12.0653 Upper middle income
## 5879      Saint George's   -61.7449   12.0653 Upper middle income
## 5880      Saint George's   -61.7449   12.0653 Upper middle income
## 5881      Saint George's   -61.7449   12.0653 Upper middle income
## 5882      Saint George's   -61.7449   12.0653 Upper middle income
## 5883      Saint George's   -61.7449   12.0653 Upper middle income
## 5884      Saint George's   -61.7449   12.0653 Upper middle income
## 5885      Saint George's   -61.7449   12.0653 Upper middle income
## 5886      Saint George's   -61.7449   12.0653 Upper middle income
## 5887      Saint George's   -61.7449   12.0653 Upper middle income
## 5888      Saint George's   -61.7449   12.0653 Upper middle income
## 5889      Saint George's   -61.7449   12.0653 Upper middle income
## 5890      Saint George's   -61.7449   12.0653 Upper middle income
## 5891      Saint George's   -61.7449   12.0653 Upper middle income
## 5892      Saint George's   -61.7449   12.0653 Upper middle income
## 5893      Saint George's   -61.7449   12.0653 Upper middle income
## 5894      Saint George's   -61.7449   12.0653 Upper middle income
## 5895      Saint George's   -61.7449   12.0653 Upper middle income
## 5896      Saint George's   -61.7449   12.0653 Upper middle income
## 5897      Saint George's   -61.7449   12.0653 Upper middle income
## 5898      Saint George's   -61.7449   12.0653 Upper middle income
## 5899      Saint George's   -61.7449   12.0653 Upper middle income
## 5900      Saint George's   -61.7449   12.0653 Upper middle income
## 5901      Saint George's   -61.7449   12.0653 Upper middle income
## 5902      Saint George's   -61.7449   12.0653 Upper middle income
## 5903      Saint George's   -61.7449   12.0653 Upper middle income
## 5904      Saint George's   -61.7449   12.0653 Upper middle income
## 5905      Saint George's   -61.7449   12.0653 Upper middle income
## 5906      Saint George's   -61.7449   12.0653 Upper middle income
## 5907      Saint George's   -61.7449   12.0653 Upper middle income
## 5908      Saint George's   -61.7449   12.0653 Upper middle income
## 5909      Saint George's   -61.7449   12.0653 Upper middle income
## 5910      Saint George's   -61.7449   12.0653 Upper middle income
## 5911      Saint George's   -61.7449   12.0653 Upper middle income
## 5912      Saint George's   -61.7449   12.0653 Upper middle income
## 5913      Saint George's   -61.7449   12.0653 Upper middle income
## 5914      Saint George's   -61.7449   12.0653 Upper middle income
## 5915      Saint George's   -61.7449   12.0653 Upper middle income
## 5916      Saint George's   -61.7449   12.0653 Upper middle income
## 5917      Saint George's   -61.7449   12.0653 Upper middle income
## 5918      Saint George's   -61.7449   12.0653 Upper middle income
## 5919      Saint George's   -61.7449   12.0653 Upper middle income
## 5920      Saint George's   -61.7449   12.0653 Upper middle income
## 5921      Saint George's   -61.7449   12.0653 Upper middle income
## 5922      Saint George's   -61.7449   12.0653 Upper middle income
## 5923               Agana    144.794   13.4443         High income
## 5924               Agana    144.794   13.4443         High income
## 5925               Agana    144.794   13.4443         High income
## 5926               Agana    144.794   13.4443         High income
## 5927               Agana    144.794   13.4443         High income
## 5928               Agana    144.794   13.4443         High income
## 5929               Agana    144.794   13.4443         High income
## 5930               Agana    144.794   13.4443         High income
## 5931               Agana    144.794   13.4443         High income
## 5932               Agana    144.794   13.4443         High income
## 5933               Agana    144.794   13.4443         High income
## 5934               Agana    144.794   13.4443         High income
## 5935               Agana    144.794   13.4443         High income
## 5936               Agana    144.794   13.4443         High income
## 5937               Agana    144.794   13.4443         High income
## 5938               Agana    144.794   13.4443         High income
## 5939               Agana    144.794   13.4443         High income
## 5940               Agana    144.794   13.4443         High income
## 5941               Agana    144.794   13.4443         High income
## 5942               Agana    144.794   13.4443         High income
## 5943               Agana    144.794   13.4443         High income
## 5944               Agana    144.794   13.4443         High income
## 5945               Agana    144.794   13.4443         High income
## 5946               Agana    144.794   13.4443         High income
## 5947               Agana    144.794   13.4443         High income
## 5948               Agana    144.794   13.4443         High income
## 5949               Agana    144.794   13.4443         High income
## 5950               Agana    144.794   13.4443         High income
## 5951               Agana    144.794   13.4443         High income
## 5952               Agana    144.794   13.4443         High income
## 5953               Agana    144.794   13.4443         High income
## 5954               Agana    144.794   13.4443         High income
## 5955               Agana    144.794   13.4443         High income
## 5956               Agana    144.794   13.4443         High income
## 5957               Agana    144.794   13.4443         High income
## 5958               Agana    144.794   13.4443         High income
## 5959               Agana    144.794   13.4443         High income
## 5960               Agana    144.794   13.4443         High income
## 5961               Agana    144.794   13.4443         High income
## 5962               Agana    144.794   13.4443         High income
## 5963               Agana    144.794   13.4443         High income
## 5964               Agana    144.794   13.4443         High income
## 5965               Agana    144.794   13.4443         High income
## 5966               Agana    144.794   13.4443         High income
## 5967               Agana    144.794   13.4443         High income
## 5968               Agana    144.794   13.4443         High income
## 5969               Agana    144.794   13.4443         High income
## 5970               Agana    144.794   13.4443         High income
## 5971               Agana    144.794   13.4443         High income
## 5972               Agana    144.794   13.4443         High income
## 5973               Agana    144.794   13.4443         High income
## 5974               Agana    144.794   13.4443         High income
## 5975               Agana    144.794   13.4443         High income
## 5976               Agana    144.794   13.4443         High income
## 5977               Agana    144.794   13.4443         High income
## 5978               Agana    144.794   13.4443         High income
## 5979               Agana    144.794   13.4443         High income
## 5980               Agana    144.794   13.4443         High income
## 5981               Agana    144.794   13.4443         High income
## 5982               Agana    144.794   13.4443         High income
## 5983               Agana    144.794   13.4443         High income
## 5984               Agana    144.794   13.4443         High income
## 5985               Agana    144.794   13.4443         High income
## 5986      Guatemala City   -90.5328   14.6248 Upper middle income
## 5987      Guatemala City   -90.5328   14.6248 Upper middle income
## 5988      Guatemala City   -90.5328   14.6248 Upper middle income
## 5989      Guatemala City   -90.5328   14.6248 Upper middle income
## 5990      Guatemala City   -90.5328   14.6248 Upper middle income
## 5991      Guatemala City   -90.5328   14.6248 Upper middle income
## 5992      Guatemala City   -90.5328   14.6248 Upper middle income
## 5993      Guatemala City   -90.5328   14.6248 Upper middle income
## 5994      Guatemala City   -90.5328   14.6248 Upper middle income
## 5995      Guatemala City   -90.5328   14.6248 Upper middle income
## 5996      Guatemala City   -90.5328   14.6248 Upper middle income
## 5997      Guatemala City   -90.5328   14.6248 Upper middle income
## 5998      Guatemala City   -90.5328   14.6248 Upper middle income
## 5999      Guatemala City   -90.5328   14.6248 Upper middle income
## 6000      Guatemala City   -90.5328   14.6248 Upper middle income
## 6001      Guatemala City   -90.5328   14.6248 Upper middle income
## 6002      Guatemala City   -90.5328   14.6248 Upper middle income
## 6003      Guatemala City   -90.5328   14.6248 Upper middle income
## 6004      Guatemala City   -90.5328   14.6248 Upper middle income
## 6005      Guatemala City   -90.5328   14.6248 Upper middle income
## 6006      Guatemala City   -90.5328   14.6248 Upper middle income
## 6007      Guatemala City   -90.5328   14.6248 Upper middle income
## 6008      Guatemala City   -90.5328   14.6248 Upper middle income
## 6009      Guatemala City   -90.5328   14.6248 Upper middle income
## 6010      Guatemala City   -90.5328   14.6248 Upper middle income
## 6011      Guatemala City   -90.5328   14.6248 Upper middle income
## 6012      Guatemala City   -90.5328   14.6248 Upper middle income
## 6013      Guatemala City   -90.5328   14.6248 Upper middle income
## 6014      Guatemala City   -90.5328   14.6248 Upper middle income
## 6015      Guatemala City   -90.5328   14.6248 Upper middle income
## 6016      Guatemala City   -90.5328   14.6248 Upper middle income
## 6017      Guatemala City   -90.5328   14.6248 Upper middle income
## 6018      Guatemala City   -90.5328   14.6248 Upper middle income
## 6019      Guatemala City   -90.5328   14.6248 Upper middle income
## 6020      Guatemala City   -90.5328   14.6248 Upper middle income
## 6021      Guatemala City   -90.5328   14.6248 Upper middle income
## 6022      Guatemala City   -90.5328   14.6248 Upper middle income
## 6023      Guatemala City   -90.5328   14.6248 Upper middle income
## 6024      Guatemala City   -90.5328   14.6248 Upper middle income
## 6025      Guatemala City   -90.5328   14.6248 Upper middle income
## 6026      Guatemala City   -90.5328   14.6248 Upper middle income
## 6027      Guatemala City   -90.5328   14.6248 Upper middle income
## 6028      Guatemala City   -90.5328   14.6248 Upper middle income
## 6029      Guatemala City   -90.5328   14.6248 Upper middle income
## 6030      Guatemala City   -90.5328   14.6248 Upper middle income
## 6031      Guatemala City   -90.5328   14.6248 Upper middle income
## 6032      Guatemala City   -90.5328   14.6248 Upper middle income
## 6033      Guatemala City   -90.5328   14.6248 Upper middle income
## 6034      Guatemala City   -90.5328   14.6248 Upper middle income
## 6035      Guatemala City   -90.5328   14.6248 Upper middle income
## 6036      Guatemala City   -90.5328   14.6248 Upper middle income
## 6037      Guatemala City   -90.5328   14.6248 Upper middle income
## 6038      Guatemala City   -90.5328   14.6248 Upper middle income
## 6039      Guatemala City   -90.5328   14.6248 Upper middle income
## 6040      Guatemala City   -90.5328   14.6248 Upper middle income
## 6041      Guatemala City   -90.5328   14.6248 Upper middle income
## 6042      Guatemala City   -90.5328   14.6248 Upper middle income
## 6043      Guatemala City   -90.5328   14.6248 Upper middle income
## 6044      Guatemala City   -90.5328   14.6248 Upper middle income
## 6045      Guatemala City   -90.5328   14.6248 Upper middle income
## 6046      Guatemala City   -90.5328   14.6248 Upper middle income
## 6047      Guatemala City   -90.5328   14.6248 Upper middle income
## 6048      Guatemala City   -90.5328   14.6248 Upper middle income
## 6049             Conakry      -13.7   9.51667          Low income
## 6050             Conakry      -13.7   9.51667          Low income
## 6051             Conakry      -13.7   9.51667          Low income
## 6052             Conakry      -13.7   9.51667          Low income
## 6053             Conakry      -13.7   9.51667          Low income
## 6054             Conakry      -13.7   9.51667          Low income
## 6055             Conakry      -13.7   9.51667          Low income
## 6056             Conakry      -13.7   9.51667          Low income
## 6057             Conakry      -13.7   9.51667          Low income
## 6058             Conakry      -13.7   9.51667          Low income
## 6059             Conakry      -13.7   9.51667          Low income
## 6060             Conakry      -13.7   9.51667          Low income
## 6061             Conakry      -13.7   9.51667          Low income
## 6062             Conakry      -13.7   9.51667          Low income
## 6063             Conakry      -13.7   9.51667          Low income
## 6064             Conakry      -13.7   9.51667          Low income
## 6065             Conakry      -13.7   9.51667          Low income
## 6066             Conakry      -13.7   9.51667          Low income
## 6067             Conakry      -13.7   9.51667          Low income
## 6068             Conakry      -13.7   9.51667          Low income
## 6069             Conakry      -13.7   9.51667          Low income
## 6070             Conakry      -13.7   9.51667          Low income
## 6071             Conakry      -13.7   9.51667          Low income
## 6072             Conakry      -13.7   9.51667          Low income
## 6073             Conakry      -13.7   9.51667          Low income
## 6074             Conakry      -13.7   9.51667          Low income
## 6075             Conakry      -13.7   9.51667          Low income
## 6076             Conakry      -13.7   9.51667          Low income
## 6077             Conakry      -13.7   9.51667          Low income
## 6078             Conakry      -13.7   9.51667          Low income
## 6079             Conakry      -13.7   9.51667          Low income
## 6080             Conakry      -13.7   9.51667          Low income
## 6081             Conakry      -13.7   9.51667          Low income
## 6082             Conakry      -13.7   9.51667          Low income
## 6083             Conakry      -13.7   9.51667          Low income
## 6084             Conakry      -13.7   9.51667          Low income
## 6085             Conakry      -13.7   9.51667          Low income
## 6086             Conakry      -13.7   9.51667          Low income
## 6087             Conakry      -13.7   9.51667          Low income
## 6088             Conakry      -13.7   9.51667          Low income
## 6089             Conakry      -13.7   9.51667          Low income
## 6090             Conakry      -13.7   9.51667          Low income
## 6091             Conakry      -13.7   9.51667          Low income
## 6092             Conakry      -13.7   9.51667          Low income
## 6093             Conakry      -13.7   9.51667          Low income
## 6094             Conakry      -13.7   9.51667          Low income
## 6095             Conakry      -13.7   9.51667          Low income
## 6096             Conakry      -13.7   9.51667          Low income
## 6097             Conakry      -13.7   9.51667          Low income
## 6098             Conakry      -13.7   9.51667          Low income
## 6099             Conakry      -13.7   9.51667          Low income
## 6100             Conakry      -13.7   9.51667          Low income
## 6101             Conakry      -13.7   9.51667          Low income
## 6102             Conakry      -13.7   9.51667          Low income
## 6103             Conakry      -13.7   9.51667          Low income
## 6104             Conakry      -13.7   9.51667          Low income
## 6105             Conakry      -13.7   9.51667          Low income
## 6106             Conakry      -13.7   9.51667          Low income
## 6107             Conakry      -13.7   9.51667          Low income
## 6108             Conakry      -13.7   9.51667          Low income
## 6109             Conakry      -13.7   9.51667          Low income
## 6110             Conakry      -13.7   9.51667          Low income
## 6111             Conakry      -13.7   9.51667          Low income
## 6112              Bissau   -15.1804   11.8037          Low income
## 6113              Bissau   -15.1804   11.8037          Low income
## 6114              Bissau   -15.1804   11.8037          Low income
## 6115              Bissau   -15.1804   11.8037          Low income
## 6116              Bissau   -15.1804   11.8037          Low income
## 6117              Bissau   -15.1804   11.8037          Low income
## 6118              Bissau   -15.1804   11.8037          Low income
## 6119              Bissau   -15.1804   11.8037          Low income
## 6120              Bissau   -15.1804   11.8037          Low income
## 6121              Bissau   -15.1804   11.8037          Low income
## 6122              Bissau   -15.1804   11.8037          Low income
## 6123              Bissau   -15.1804   11.8037          Low income
## 6124              Bissau   -15.1804   11.8037          Low income
## 6125              Bissau   -15.1804   11.8037          Low income
## 6126              Bissau   -15.1804   11.8037          Low income
## 6127              Bissau   -15.1804   11.8037          Low income
## 6128              Bissau   -15.1804   11.8037          Low income
## 6129              Bissau   -15.1804   11.8037          Low income
## 6130              Bissau   -15.1804   11.8037          Low income
## 6131              Bissau   -15.1804   11.8037          Low income
## 6132              Bissau   -15.1804   11.8037          Low income
## 6133              Bissau   -15.1804   11.8037          Low income
## 6134              Bissau   -15.1804   11.8037          Low income
## 6135              Bissau   -15.1804   11.8037          Low income
## 6136              Bissau   -15.1804   11.8037          Low income
## 6137              Bissau   -15.1804   11.8037          Low income
## 6138              Bissau   -15.1804   11.8037          Low income
## 6139              Bissau   -15.1804   11.8037          Low income
## 6140              Bissau   -15.1804   11.8037          Low income
## 6141              Bissau   -15.1804   11.8037          Low income
## 6142              Bissau   -15.1804   11.8037          Low income
## 6143              Bissau   -15.1804   11.8037          Low income
## 6144              Bissau   -15.1804   11.8037          Low income
## 6145              Bissau   -15.1804   11.8037          Low income
## 6146              Bissau   -15.1804   11.8037          Low income
## 6147              Bissau   -15.1804   11.8037          Low income
## 6148              Bissau   -15.1804   11.8037          Low income
## 6149              Bissau   -15.1804   11.8037          Low income
## 6150              Bissau   -15.1804   11.8037          Low income
## 6151              Bissau   -15.1804   11.8037          Low income
## 6152              Bissau   -15.1804   11.8037          Low income
## 6153              Bissau   -15.1804   11.8037          Low income
## 6154              Bissau   -15.1804   11.8037          Low income
## 6155              Bissau   -15.1804   11.8037          Low income
## 6156              Bissau   -15.1804   11.8037          Low income
## 6157              Bissau   -15.1804   11.8037          Low income
## 6158              Bissau   -15.1804   11.8037          Low income
## 6159              Bissau   -15.1804   11.8037          Low income
## 6160              Bissau   -15.1804   11.8037          Low income
## 6161              Bissau   -15.1804   11.8037          Low income
## 6162              Bissau   -15.1804   11.8037          Low income
## 6163              Bissau   -15.1804   11.8037          Low income
## 6164              Bissau   -15.1804   11.8037          Low income
## 6165              Bissau   -15.1804   11.8037          Low income
## 6166              Bissau   -15.1804   11.8037          Low income
## 6167              Bissau   -15.1804   11.8037          Low income
## 6168              Bissau   -15.1804   11.8037          Low income
## 6169              Bissau   -15.1804   11.8037          Low income
## 6170              Bissau   -15.1804   11.8037          Low income
## 6171              Bissau   -15.1804   11.8037          Low income
## 6172              Bissau   -15.1804   11.8037          Low income
## 6173              Bissau   -15.1804   11.8037          Low income
## 6174              Bissau   -15.1804   11.8037          Low income
## 6175          Georgetown   -58.1548   6.80461 Upper middle income
## 6176          Georgetown   -58.1548   6.80461 Upper middle income
## 6177          Georgetown   -58.1548   6.80461 Upper middle income
## 6178          Georgetown   -58.1548   6.80461 Upper middle income
## 6179          Georgetown   -58.1548   6.80461 Upper middle income
## 6180          Georgetown   -58.1548   6.80461 Upper middle income
## 6181          Georgetown   -58.1548   6.80461 Upper middle income
## 6182          Georgetown   -58.1548   6.80461 Upper middle income
## 6183          Georgetown   -58.1548   6.80461 Upper middle income
## 6184          Georgetown   -58.1548   6.80461 Upper middle income
## 6185          Georgetown   -58.1548   6.80461 Upper middle income
## 6186          Georgetown   -58.1548   6.80461 Upper middle income
## 6187          Georgetown   -58.1548   6.80461 Upper middle income
## 6188          Georgetown   -58.1548   6.80461 Upper middle income
## 6189          Georgetown   -58.1548   6.80461 Upper middle income
## 6190          Georgetown   -58.1548   6.80461 Upper middle income
## 6191          Georgetown   -58.1548   6.80461 Upper middle income
## 6192          Georgetown   -58.1548   6.80461 Upper middle income
## 6193          Georgetown   -58.1548   6.80461 Upper middle income
## 6194          Georgetown   -58.1548   6.80461 Upper middle income
## 6195          Georgetown   -58.1548   6.80461 Upper middle income
## 6196          Georgetown   -58.1548   6.80461 Upper middle income
## 6197          Georgetown   -58.1548   6.80461 Upper middle income
## 6198          Georgetown   -58.1548   6.80461 Upper middle income
## 6199          Georgetown   -58.1548   6.80461 Upper middle income
## 6200          Georgetown   -58.1548   6.80461 Upper middle income
## 6201          Georgetown   -58.1548   6.80461 Upper middle income
## 6202          Georgetown   -58.1548   6.80461 Upper middle income
## 6203          Georgetown   -58.1548   6.80461 Upper middle income
## 6204          Georgetown   -58.1548   6.80461 Upper middle income
## 6205          Georgetown   -58.1548   6.80461 Upper middle income
## 6206          Georgetown   -58.1548   6.80461 Upper middle income
## 6207          Georgetown   -58.1548   6.80461 Upper middle income
## 6208          Georgetown   -58.1548   6.80461 Upper middle income
## 6209          Georgetown   -58.1548   6.80461 Upper middle income
## 6210          Georgetown   -58.1548   6.80461 Upper middle income
## 6211          Georgetown   -58.1548   6.80461 Upper middle income
## 6212          Georgetown   -58.1548   6.80461 Upper middle income
## 6213          Georgetown   -58.1548   6.80461 Upper middle income
## 6214          Georgetown   -58.1548   6.80461 Upper middle income
## 6215          Georgetown   -58.1548   6.80461 Upper middle income
## 6216          Georgetown   -58.1548   6.80461 Upper middle income
## 6217          Georgetown   -58.1548   6.80461 Upper middle income
## 6218          Georgetown   -58.1548   6.80461 Upper middle income
## 6219          Georgetown   -58.1548   6.80461 Upper middle income
## 6220          Georgetown   -58.1548   6.80461 Upper middle income
## 6221          Georgetown   -58.1548   6.80461 Upper middle income
## 6222          Georgetown   -58.1548   6.80461 Upper middle income
## 6223          Georgetown   -58.1548   6.80461 Upper middle income
## 6224          Georgetown   -58.1548   6.80461 Upper middle income
## 6225          Georgetown   -58.1548   6.80461 Upper middle income
## 6226          Georgetown   -58.1548   6.80461 Upper middle income
## 6227          Georgetown   -58.1548   6.80461 Upper middle income
## 6228          Georgetown   -58.1548   6.80461 Upper middle income
## 6229          Georgetown   -58.1548   6.80461 Upper middle income
## 6230          Georgetown   -58.1548   6.80461 Upper middle income
## 6231          Georgetown   -58.1548   6.80461 Upper middle income
## 6232          Georgetown   -58.1548   6.80461 Upper middle income
## 6233          Georgetown   -58.1548   6.80461 Upper middle income
## 6234          Georgetown   -58.1548   6.80461 Upper middle income
## 6235          Georgetown   -58.1548   6.80461 Upper middle income
## 6236          Georgetown   -58.1548   6.80461 Upper middle income
## 6237          Georgetown   -58.1548   6.80461 Upper middle income
## 6238      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6239      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6240      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6241      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6242      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6243      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6244      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6245      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6246      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6247      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6248      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6249      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6250      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6251      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6252      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6253      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6254      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6255      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6256      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6257      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6258      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6259      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6260      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6261      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6262      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6263      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6264      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6265      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6266      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6267      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6268      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6269      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6270      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6271      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6272      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6273      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6274      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6275      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6276      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6277      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6278      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6279      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6280      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6281      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6282      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6283      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6284      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6285      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6286      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6287      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6288      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6289      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6290      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6291      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6292      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6293      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6294      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6295      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6296      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6297      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6298      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6299      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6300      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6301                                                   Aggregates
## 6302                                                   Aggregates
## 6303                                                   Aggregates
## 6304                                                   Aggregates
## 6305                                                   Aggregates
## 6306                                                   Aggregates
## 6307                                                   Aggregates
## 6308                                                   Aggregates
## 6309                                                   Aggregates
## 6310                                                   Aggregates
## 6311                                                   Aggregates
## 6312                                                   Aggregates
## 6313                                                   Aggregates
## 6314                                                   Aggregates
## 6315                                                   Aggregates
## 6316                                                   Aggregates
## 6317                                                   Aggregates
## 6318                                                   Aggregates
## 6319                                                   Aggregates
## 6320                                                   Aggregates
## 6321                                                   Aggregates
## 6322                                                   Aggregates
## 6323                                                   Aggregates
## 6324                                                   Aggregates
## 6325                                                   Aggregates
## 6326                                                   Aggregates
## 6327                                                   Aggregates
## 6328                                                   Aggregates
## 6329                                                   Aggregates
## 6330                                                   Aggregates
## 6331                                                   Aggregates
## 6332                                                   Aggregates
## 6333                                                   Aggregates
## 6334                                                   Aggregates
## 6335                                                   Aggregates
## 6336                                                   Aggregates
## 6337                                                   Aggregates
## 6338                                                   Aggregates
## 6339                                                   Aggregates
## 6340                                                   Aggregates
## 6341                                                   Aggregates
## 6342                                                   Aggregates
## 6343                                                   Aggregates
## 6344                                                   Aggregates
## 6345                                                   Aggregates
## 6346                                                   Aggregates
## 6347                                                   Aggregates
## 6348                                                   Aggregates
## 6349                                                   Aggregates
## 6350                                                   Aggregates
## 6351                                                   Aggregates
## 6352                                                   Aggregates
## 6353                                                   Aggregates
## 6354                                                   Aggregates
## 6355                                                   Aggregates
## 6356                                                   Aggregates
## 6357                                                   Aggregates
## 6358                                                   Aggregates
## 6359                                                   Aggregates
## 6360                                                   Aggregates
## 6361                                                   Aggregates
## 6362                                                   Aggregates
## 6363                                                   Aggregates
## 6364                <NA>       <NA>      <NA>                <NA>
## 6365                <NA>       <NA>      <NA>                <NA>
## 6366                <NA>       <NA>      <NA>                <NA>
## 6367                <NA>       <NA>      <NA>                <NA>
## 6368                <NA>       <NA>      <NA>                <NA>
## 6369                <NA>       <NA>      <NA>                <NA>
## 6370                <NA>       <NA>      <NA>                <NA>
## 6371                <NA>       <NA>      <NA>                <NA>
## 6372                <NA>       <NA>      <NA>                <NA>
## 6373                <NA>       <NA>      <NA>                <NA>
## 6374                <NA>       <NA>      <NA>                <NA>
## 6375                <NA>       <NA>      <NA>                <NA>
## 6376                <NA>       <NA>      <NA>                <NA>
## 6377                <NA>       <NA>      <NA>                <NA>
## 6378                <NA>       <NA>      <NA>                <NA>
## 6379                <NA>       <NA>      <NA>                <NA>
## 6380                <NA>       <NA>      <NA>                <NA>
## 6381                <NA>       <NA>      <NA>                <NA>
## 6382                <NA>       <NA>      <NA>                <NA>
## 6383                <NA>       <NA>      <NA>                <NA>
## 6384                <NA>       <NA>      <NA>                <NA>
## 6385                <NA>       <NA>      <NA>                <NA>
## 6386                <NA>       <NA>      <NA>                <NA>
## 6387                <NA>       <NA>      <NA>                <NA>
## 6388                <NA>       <NA>      <NA>                <NA>
## 6389                <NA>       <NA>      <NA>                <NA>
## 6390                <NA>       <NA>      <NA>                <NA>
## 6391                <NA>       <NA>      <NA>                <NA>
## 6392                <NA>       <NA>      <NA>                <NA>
## 6393                <NA>       <NA>      <NA>                <NA>
## 6394                <NA>       <NA>      <NA>                <NA>
## 6395                <NA>       <NA>      <NA>                <NA>
## 6396                <NA>       <NA>      <NA>                <NA>
## 6397                <NA>       <NA>      <NA>                <NA>
## 6398                <NA>       <NA>      <NA>                <NA>
## 6399                <NA>       <NA>      <NA>                <NA>
## 6400                <NA>       <NA>      <NA>                <NA>
## 6401                <NA>       <NA>      <NA>                <NA>
## 6402                <NA>       <NA>      <NA>                <NA>
## 6403                <NA>       <NA>      <NA>                <NA>
## 6404                <NA>       <NA>      <NA>                <NA>
## 6405                <NA>       <NA>      <NA>                <NA>
## 6406                <NA>       <NA>      <NA>                <NA>
## 6407                <NA>       <NA>      <NA>                <NA>
## 6408                <NA>       <NA>      <NA>                <NA>
## 6409                <NA>       <NA>      <NA>                <NA>
## 6410                <NA>       <NA>      <NA>                <NA>
## 6411                <NA>       <NA>      <NA>                <NA>
## 6412                <NA>       <NA>      <NA>                <NA>
## 6413                <NA>       <NA>      <NA>                <NA>
## 6414                <NA>       <NA>      <NA>                <NA>
## 6415                <NA>       <NA>      <NA>                <NA>
## 6416                <NA>       <NA>      <NA>                <NA>
## 6417                <NA>       <NA>      <NA>                <NA>
## 6418                <NA>       <NA>      <NA>                <NA>
## 6419                <NA>       <NA>      <NA>                <NA>
## 6420                <NA>       <NA>      <NA>                <NA>
## 6421                <NA>       <NA>      <NA>                <NA>
## 6422                <NA>       <NA>      <NA>                <NA>
## 6423                <NA>       <NA>      <NA>                <NA>
## 6424                <NA>       <NA>      <NA>                <NA>
## 6425                <NA>       <NA>      <NA>                <NA>
## 6426                <NA>       <NA>      <NA>                <NA>
## 6427         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6428         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6429         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6430         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6431         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6432         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6433         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6434         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6435         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6436         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6437         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6438         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6439         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6440         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6441         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6442         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6443         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6444         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6445         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6446         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6447         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6448         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6449         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6450         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6451         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6452         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6453         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6454         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6455         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6456         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6457         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6458         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6459         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6460         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6461         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6462         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6463         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6464         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6465         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6466         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6467         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6468         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6469         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6470         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6471         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6472         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6473         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6474         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6475         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6476         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6477         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6478         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6479         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6480         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6481         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6482         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6483         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6484         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6485         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6486         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6487         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6488         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6489         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6490                        114.109   22.3964         High income
## 6491                        114.109   22.3964         High income
## 6492                        114.109   22.3964         High income
## 6493                        114.109   22.3964         High income
## 6494                        114.109   22.3964         High income
## 6495                        114.109   22.3964         High income
## 6496                        114.109   22.3964         High income
## 6497                        114.109   22.3964         High income
## 6498                        114.109   22.3964         High income
## 6499                        114.109   22.3964         High income
## 6500                        114.109   22.3964         High income
## 6501                        114.109   22.3964         High income
## 6502                        114.109   22.3964         High income
## 6503                        114.109   22.3964         High income
## 6504                        114.109   22.3964         High income
## 6505                        114.109   22.3964         High income
## 6506                        114.109   22.3964         High income
## 6507                        114.109   22.3964         High income
## 6508                        114.109   22.3964         High income
## 6509                        114.109   22.3964         High income
## 6510                        114.109   22.3964         High income
## 6511                        114.109   22.3964         High income
## 6512                        114.109   22.3964         High income
## 6513                        114.109   22.3964         High income
## 6514                        114.109   22.3964         High income
## 6515                        114.109   22.3964         High income
## 6516                        114.109   22.3964         High income
## 6517                        114.109   22.3964         High income
## 6518                        114.109   22.3964         High income
## 6519                        114.109   22.3964         High income
## 6520                        114.109   22.3964         High income
## 6521                        114.109   22.3964         High income
## 6522                        114.109   22.3964         High income
## 6523                        114.109   22.3964         High income
## 6524                        114.109   22.3964         High income
## 6525                        114.109   22.3964         High income
## 6526                        114.109   22.3964         High income
## 6527                        114.109   22.3964         High income
## 6528                        114.109   22.3964         High income
## 6529                        114.109   22.3964         High income
## 6530                        114.109   22.3964         High income
## 6531                        114.109   22.3964         High income
## 6532                        114.109   22.3964         High income
## 6533                        114.109   22.3964         High income
## 6534                        114.109   22.3964         High income
## 6535                        114.109   22.3964         High income
## 6536                        114.109   22.3964         High income
## 6537                        114.109   22.3964         High income
## 6538                        114.109   22.3964         High income
## 6539                        114.109   22.3964         High income
## 6540                        114.109   22.3964         High income
## 6541                        114.109   22.3964         High income
## 6542                        114.109   22.3964         High income
## 6543                        114.109   22.3964         High income
## 6544                        114.109   22.3964         High income
## 6545                        114.109   22.3964         High income
## 6546                        114.109   22.3964         High income
## 6547                        114.109   22.3964         High income
## 6548                        114.109   22.3964         High income
## 6549                        114.109   22.3964         High income
## 6550                        114.109   22.3964         High income
## 6551                        114.109   22.3964         High income
## 6552                        114.109   22.3964         High income
## 6553            Budapest    19.0408   47.4984         High income
## 6554            Budapest    19.0408   47.4984         High income
## 6555            Budapest    19.0408   47.4984         High income
## 6556            Budapest    19.0408   47.4984         High income
## 6557            Budapest    19.0408   47.4984         High income
## 6558            Budapest    19.0408   47.4984         High income
## 6559            Budapest    19.0408   47.4984         High income
## 6560            Budapest    19.0408   47.4984         High income
## 6561            Budapest    19.0408   47.4984         High income
## 6562            Budapest    19.0408   47.4984         High income
## 6563            Budapest    19.0408   47.4984         High income
## 6564            Budapest    19.0408   47.4984         High income
## 6565            Budapest    19.0408   47.4984         High income
## 6566            Budapest    19.0408   47.4984         High income
## 6567            Budapest    19.0408   47.4984         High income
## 6568            Budapest    19.0408   47.4984         High income
## 6569            Budapest    19.0408   47.4984         High income
## 6570            Budapest    19.0408   47.4984         High income
## 6571            Budapest    19.0408   47.4984         High income
## 6572            Budapest    19.0408   47.4984         High income
## 6573            Budapest    19.0408   47.4984         High income
## 6574            Budapest    19.0408   47.4984         High income
## 6575            Budapest    19.0408   47.4984         High income
## 6576            Budapest    19.0408   47.4984         High income
## 6577            Budapest    19.0408   47.4984         High income
## 6578            Budapest    19.0408   47.4984         High income
## 6579            Budapest    19.0408   47.4984         High income
## 6580            Budapest    19.0408   47.4984         High income
## 6581            Budapest    19.0408   47.4984         High income
## 6582            Budapest    19.0408   47.4984         High income
## 6583            Budapest    19.0408   47.4984         High income
## 6584            Budapest    19.0408   47.4984         High income
## 6585            Budapest    19.0408   47.4984         High income
## 6586            Budapest    19.0408   47.4984         High income
## 6587            Budapest    19.0408   47.4984         High income
## 6588            Budapest    19.0408   47.4984         High income
## 6589            Budapest    19.0408   47.4984         High income
## 6590            Budapest    19.0408   47.4984         High income
## 6591            Budapest    19.0408   47.4984         High income
## 6592            Budapest    19.0408   47.4984         High income
## 6593            Budapest    19.0408   47.4984         High income
## 6594            Budapest    19.0408   47.4984         High income
## 6595            Budapest    19.0408   47.4984         High income
## 6596            Budapest    19.0408   47.4984         High income
## 6597            Budapest    19.0408   47.4984         High income
## 6598            Budapest    19.0408   47.4984         High income
## 6599            Budapest    19.0408   47.4984         High income
## 6600            Budapest    19.0408   47.4984         High income
## 6601            Budapest    19.0408   47.4984         High income
## 6602            Budapest    19.0408   47.4984         High income
## 6603            Budapest    19.0408   47.4984         High income
## 6604            Budapest    19.0408   47.4984         High income
## 6605            Budapest    19.0408   47.4984         High income
## 6606            Budapest    19.0408   47.4984         High income
## 6607            Budapest    19.0408   47.4984         High income
## 6608            Budapest    19.0408   47.4984         High income
## 6609            Budapest    19.0408   47.4984         High income
## 6610            Budapest    19.0408   47.4984         High income
## 6611            Budapest    19.0408   47.4984         High income
## 6612            Budapest    19.0408   47.4984         High income
## 6613            Budapest    19.0408   47.4984         High income
## 6614            Budapest    19.0408   47.4984         High income
## 6615            Budapest    19.0408   47.4984         High income
## 6616                                                   Aggregates
## 6617                                                   Aggregates
## 6618                                                   Aggregates
## 6619                                                   Aggregates
## 6620                                                   Aggregates
## 6621                                                   Aggregates
## 6622                                                   Aggregates
## 6623                                                   Aggregates
## 6624                                                   Aggregates
## 6625                                                   Aggregates
## 6626                                                   Aggregates
## 6627                                                   Aggregates
## 6628                                                   Aggregates
## 6629                                                   Aggregates
## 6630                                                   Aggregates
## 6631                                                   Aggregates
## 6632                                                   Aggregates
## 6633                                                   Aggregates
## 6634                                                   Aggregates
## 6635                                                   Aggregates
## 6636                                                   Aggregates
## 6637                                                   Aggregates
## 6638                                                   Aggregates
## 6639                                                   Aggregates
## 6640                                                   Aggregates
## 6641                                                   Aggregates
## 6642                                                   Aggregates
## 6643                                                   Aggregates
## 6644                                                   Aggregates
## 6645                                                   Aggregates
## 6646                                                   Aggregates
## 6647                                                   Aggregates
## 6648                                                   Aggregates
## 6649                                                   Aggregates
## 6650                                                   Aggregates
## 6651                                                   Aggregates
## 6652                                                   Aggregates
## 6653                                                   Aggregates
## 6654                                                   Aggregates
## 6655                                                   Aggregates
## 6656                                                   Aggregates
## 6657                                                   Aggregates
## 6658                                                   Aggregates
## 6659                                                   Aggregates
## 6660                                                   Aggregates
## 6661                                                   Aggregates
## 6662                                                   Aggregates
## 6663                                                   Aggregates
## 6664                                                   Aggregates
## 6665                                                   Aggregates
## 6666                                                   Aggregates
## 6667                                                   Aggregates
## 6668                                                   Aggregates
## 6669                                                   Aggregates
## 6670                                                   Aggregates
## 6671                                                   Aggregates
## 6672                                                   Aggregates
## 6673                                                   Aggregates
## 6674                                                   Aggregates
## 6675                                                   Aggregates
## 6676                                                   Aggregates
## 6677                                                   Aggregates
## 6678                                                   Aggregates
## 6679                                                   Aggregates
## 6680                                                   Aggregates
## 6681                                                   Aggregates
## 6682                                                   Aggregates
## 6683                                                   Aggregates
## 6684                                                   Aggregates
## 6685                                                   Aggregates
## 6686                                                   Aggregates
## 6687                                                   Aggregates
## 6688                                                   Aggregates
## 6689                                                   Aggregates
## 6690                                                   Aggregates
## 6691                                                   Aggregates
## 6692                                                   Aggregates
## 6693                                                   Aggregates
## 6694                                                   Aggregates
## 6695                                                   Aggregates
## 6696                                                   Aggregates
## 6697                                                   Aggregates
## 6698                                                   Aggregates
## 6699                                                   Aggregates
## 6700                                                   Aggregates
## 6701                                                   Aggregates
## 6702                                                   Aggregates
## 6703                                                   Aggregates
## 6704                                                   Aggregates
## 6705                                                   Aggregates
## 6706                                                   Aggregates
## 6707                                                   Aggregates
## 6708                                                   Aggregates
## 6709                                                   Aggregates
## 6710                                                   Aggregates
## 6711                                                   Aggregates
## 6712                                                   Aggregates
## 6713                                                   Aggregates
## 6714                                                   Aggregates
## 6715                                                   Aggregates
## 6716                                                   Aggregates
## 6717                                                   Aggregates
## 6718                                                   Aggregates
## 6719                                                   Aggregates
## 6720                                                   Aggregates
## 6721                                                   Aggregates
## 6722                                                   Aggregates
## 6723                                                   Aggregates
## 6724                                                   Aggregates
## 6725                                                   Aggregates
## 6726                                                   Aggregates
## 6727                                                   Aggregates
## 6728                                                   Aggregates
## 6729                                                   Aggregates
## 6730                                                   Aggregates
## 6731                                                   Aggregates
## 6732                                                   Aggregates
## 6733                                                   Aggregates
## 6734                                                   Aggregates
## 6735                                                   Aggregates
## 6736                                                   Aggregates
## 6737                                                   Aggregates
## 6738                                                   Aggregates
## 6739                                                   Aggregates
## 6740                                                   Aggregates
## 6741                                                   Aggregates
## 6742                                                   Aggregates
## 6743                                                   Aggregates
## 6744                                                   Aggregates
## 6745                                                   Aggregates
## 6746                                                   Aggregates
## 6747                                                   Aggregates
## 6748                                                   Aggregates
## 6749                                                   Aggregates
## 6750                                                   Aggregates
## 6751                                                   Aggregates
## 6752                                                   Aggregates
## 6753                                                   Aggregates
## 6754                                                   Aggregates
## 6755                                                   Aggregates
## 6756                                                   Aggregates
## 6757                                                   Aggregates
## 6758                                                   Aggregates
## 6759                                                   Aggregates
## 6760                                                   Aggregates
## 6761                                                   Aggregates
## 6762                                                   Aggregates
## 6763                                                   Aggregates
## 6764                                                   Aggregates
## 6765                                                   Aggregates
## 6766                                                   Aggregates
## 6767                                                   Aggregates
## 6768                                                   Aggregates
## 6769                                                   Aggregates
## 6770                                                   Aggregates
## 6771                                                   Aggregates
## 6772                                                   Aggregates
## 6773                                                   Aggregates
## 6774                                                   Aggregates
## 6775                                                   Aggregates
## 6776                                                   Aggregates
## 6777                                                   Aggregates
## 6778                                                   Aggregates
## 6779                                                   Aggregates
## 6780                                                   Aggregates
## 6781                                                   Aggregates
## 6782                                                   Aggregates
## 6783                                                   Aggregates
## 6784                                                   Aggregates
## 6785                                                   Aggregates
## 6786                                                   Aggregates
## 6787                                                   Aggregates
## 6788                                                   Aggregates
## 6789                                                   Aggregates
## 6790                                                   Aggregates
## 6791                                                   Aggregates
## 6792                                                   Aggregates
## 6793                                                   Aggregates
## 6794                                                   Aggregates
## 6795                                                   Aggregates
## 6796                                                   Aggregates
## 6797                                                   Aggregates
## 6798                                                   Aggregates
## 6799                                                   Aggregates
## 6800                                                   Aggregates
## 6801                                                   Aggregates
## 6802                                                   Aggregates
## 6803                                                   Aggregates
## 6804                                                   Aggregates
## 6805                                                   Aggregates
## 6806                                                   Aggregates
## 6807                                                   Aggregates
## 6808                                                   Aggregates
## 6809                                                   Aggregates
## 6810                                                   Aggregates
## 6811                                                   Aggregates
## 6812                                                   Aggregates
## 6813                                                   Aggregates
## 6814                                                   Aggregates
## 6815                                                   Aggregates
## 6816                                                   Aggregates
## 6817                                                   Aggregates
## 6818                                                   Aggregates
## 6819                                                   Aggregates
## 6820                                                   Aggregates
## 6821                                                   Aggregates
## 6822                                                   Aggregates
## 6823                                                   Aggregates
## 6824                                                   Aggregates
## 6825                                                   Aggregates
## 6826                                                   Aggregates
## 6827                                                   Aggregates
## 6828                                                   Aggregates
## 6829                                                   Aggregates
## 6830                                                   Aggregates
## 6831                                                   Aggregates
## 6832                                                   Aggregates
## 6833                                                   Aggregates
## 6834                                                   Aggregates
## 6835                                                   Aggregates
## 6836                                                   Aggregates
## 6837                                                   Aggregates
## 6838                                                   Aggregates
## 6839                                                   Aggregates
## 6840                                                   Aggregates
## 6841                                                   Aggregates
## 6842                                                   Aggregates
## 6843                                                   Aggregates
## 6844                                                   Aggregates
## 6845                                                   Aggregates
## 6846                                                   Aggregates
## 6847                                                   Aggregates
## 6848                                                   Aggregates
## 6849                                                   Aggregates
## 6850                                                   Aggregates
## 6851                                                   Aggregates
## 6852                                                   Aggregates
## 6853                                                   Aggregates
## 6854                                                   Aggregates
## 6855                                                   Aggregates
## 6856                                                   Aggregates
## 6857                                                   Aggregates
## 6858                                                   Aggregates
## 6859                                                   Aggregates
## 6860                                                   Aggregates
## 6861                                                   Aggregates
## 6862                                                   Aggregates
## 6863                                                   Aggregates
## 6864                                                   Aggregates
## 6865                                                   Aggregates
## 6866                                                   Aggregates
## 6867                                                   Aggregates
## 6868                                                   Aggregates
## 6869                                                   Aggregates
## 6870                                                   Aggregates
## 6871                                                   Aggregates
## 6872                                                   Aggregates
## 6873                                                   Aggregates
## 6874                                                   Aggregates
## 6875                                                   Aggregates
## 6876                                                   Aggregates
## 6877                                                   Aggregates
## 6878                                                   Aggregates
## 6879                                                   Aggregates
## 6880                                                   Aggregates
## 6881                                                   Aggregates
## 6882                                                   Aggregates
## 6883                                                   Aggregates
## 6884                                                   Aggregates
## 6885                                                   Aggregates
## 6886                                                   Aggregates
## 6887                                                   Aggregates
## 6888                                                   Aggregates
## 6889                                                   Aggregates
## 6890                                                   Aggregates
## 6891                                                   Aggregates
## 6892                                                   Aggregates
## 6893                                                   Aggregates
## 6894                                                   Aggregates
## 6895                                                   Aggregates
## 6896                                                   Aggregates
## 6897                                                   Aggregates
## 6898                                                   Aggregates
## 6899                                                   Aggregates
## 6900                                                   Aggregates
## 6901                                                   Aggregates
## 6902                                                   Aggregates
## 6903                                                   Aggregates
## 6904                                                   Aggregates
## 6905                                                   Aggregates
## 6906                                                   Aggregates
## 6907                                                   Aggregates
## 6908                                                   Aggregates
## 6909                                                   Aggregates
## 6910                                                   Aggregates
## 6911                                                   Aggregates
## 6912                                                   Aggregates
## 6913                                                   Aggregates
## 6914                                                   Aggregates
## 6915                                                   Aggregates
## 6916                                                   Aggregates
## 6917                                                   Aggregates
## 6918                                                   Aggregates
## 6919                                                   Aggregates
## 6920                                                   Aggregates
## 6921                                                   Aggregates
## 6922                                                   Aggregates
## 6923                                                   Aggregates
## 6924                                                   Aggregates
## 6925                                                   Aggregates
## 6926                                                   Aggregates
## 6927                                                   Aggregates
## 6928                                                   Aggregates
## 6929                                                   Aggregates
## 6930                                                   Aggregates
## 6931           Reykjavik   -21.8952   64.1353         High income
## 6932           Reykjavik   -21.8952   64.1353         High income
## 6933           Reykjavik   -21.8952   64.1353         High income
## 6934           Reykjavik   -21.8952   64.1353         High income
## 6935           Reykjavik   -21.8952   64.1353         High income
## 6936           Reykjavik   -21.8952   64.1353         High income
## 6937           Reykjavik   -21.8952   64.1353         High income
## 6938           Reykjavik   -21.8952   64.1353         High income
## 6939           Reykjavik   -21.8952   64.1353         High income
## 6940           Reykjavik   -21.8952   64.1353         High income
## 6941           Reykjavik   -21.8952   64.1353         High income
## 6942           Reykjavik   -21.8952   64.1353         High income
## 6943           Reykjavik   -21.8952   64.1353         High income
## 6944           Reykjavik   -21.8952   64.1353         High income
## 6945           Reykjavik   -21.8952   64.1353         High income
## 6946           Reykjavik   -21.8952   64.1353         High income
## 6947           Reykjavik   -21.8952   64.1353         High income
## 6948           Reykjavik   -21.8952   64.1353         High income
## 6949           Reykjavik   -21.8952   64.1353         High income
## 6950           Reykjavik   -21.8952   64.1353         High income
## 6951           Reykjavik   -21.8952   64.1353         High income
## 6952           Reykjavik   -21.8952   64.1353         High income
## 6953           Reykjavik   -21.8952   64.1353         High income
## 6954           Reykjavik   -21.8952   64.1353         High income
## 6955           Reykjavik   -21.8952   64.1353         High income
## 6956           Reykjavik   -21.8952   64.1353         High income
## 6957           Reykjavik   -21.8952   64.1353         High income
## 6958           Reykjavik   -21.8952   64.1353         High income
## 6959           Reykjavik   -21.8952   64.1353         High income
## 6960           Reykjavik   -21.8952   64.1353         High income
## 6961           Reykjavik   -21.8952   64.1353         High income
## 6962           Reykjavik   -21.8952   64.1353         High income
## 6963           Reykjavik   -21.8952   64.1353         High income
## 6964           Reykjavik   -21.8952   64.1353         High income
## 6965           Reykjavik   -21.8952   64.1353         High income
## 6966           Reykjavik   -21.8952   64.1353         High income
## 6967           Reykjavik   -21.8952   64.1353         High income
## 6968           Reykjavik   -21.8952   64.1353         High income
## 6969           Reykjavik   -21.8952   64.1353         High income
## 6970           Reykjavik   -21.8952   64.1353         High income
## 6971           Reykjavik   -21.8952   64.1353         High income
## 6972           Reykjavik   -21.8952   64.1353         High income
## 6973           Reykjavik   -21.8952   64.1353         High income
## 6974           Reykjavik   -21.8952   64.1353         High income
## 6975           Reykjavik   -21.8952   64.1353         High income
## 6976           Reykjavik   -21.8952   64.1353         High income
## 6977           Reykjavik   -21.8952   64.1353         High income
## 6978           Reykjavik   -21.8952   64.1353         High income
## 6979           Reykjavik   -21.8952   64.1353         High income
## 6980           Reykjavik   -21.8952   64.1353         High income
## 6981           Reykjavik   -21.8952   64.1353         High income
## 6982           Reykjavik   -21.8952   64.1353         High income
## 6983           Reykjavik   -21.8952   64.1353         High income
## 6984           Reykjavik   -21.8952   64.1353         High income
## 6985           Reykjavik   -21.8952   64.1353         High income
## 6986           Reykjavik   -21.8952   64.1353         High income
## 6987           Reykjavik   -21.8952   64.1353         High income
## 6988           Reykjavik   -21.8952   64.1353         High income
## 6989           Reykjavik   -21.8952   64.1353         High income
## 6990           Reykjavik   -21.8952   64.1353         High income
## 6991           Reykjavik   -21.8952   64.1353         High income
## 6992           Reykjavik   -21.8952   64.1353         High income
## 6993           Reykjavik   -21.8952   64.1353         High income
## 6994           New Delhi     77.225   28.6353 Lower middle income
## 6995           New Delhi     77.225   28.6353 Lower middle income
## 6996           New Delhi     77.225   28.6353 Lower middle income
## 6997           New Delhi     77.225   28.6353 Lower middle income
## 6998           New Delhi     77.225   28.6353 Lower middle income
## 6999           New Delhi     77.225   28.6353 Lower middle income
## 7000           New Delhi     77.225   28.6353 Lower middle income
## 7001           New Delhi     77.225   28.6353 Lower middle income
## 7002           New Delhi     77.225   28.6353 Lower middle income
## 7003           New Delhi     77.225   28.6353 Lower middle income
## 7004           New Delhi     77.225   28.6353 Lower middle income
## 7005           New Delhi     77.225   28.6353 Lower middle income
## 7006           New Delhi     77.225   28.6353 Lower middle income
## 7007           New Delhi     77.225   28.6353 Lower middle income
## 7008           New Delhi     77.225   28.6353 Lower middle income
## 7009           New Delhi     77.225   28.6353 Lower middle income
## 7010           New Delhi     77.225   28.6353 Lower middle income
## 7011           New Delhi     77.225   28.6353 Lower middle income
## 7012           New Delhi     77.225   28.6353 Lower middle income
## 7013           New Delhi     77.225   28.6353 Lower middle income
## 7014           New Delhi     77.225   28.6353 Lower middle income
## 7015           New Delhi     77.225   28.6353 Lower middle income
## 7016           New Delhi     77.225   28.6353 Lower middle income
## 7017           New Delhi     77.225   28.6353 Lower middle income
## 7018           New Delhi     77.225   28.6353 Lower middle income
## 7019           New Delhi     77.225   28.6353 Lower middle income
## 7020           New Delhi     77.225   28.6353 Lower middle income
## 7021           New Delhi     77.225   28.6353 Lower middle income
## 7022           New Delhi     77.225   28.6353 Lower middle income
## 7023           New Delhi     77.225   28.6353 Lower middle income
## 7024           New Delhi     77.225   28.6353 Lower middle income
## 7025           New Delhi     77.225   28.6353 Lower middle income
## 7026           New Delhi     77.225   28.6353 Lower middle income
## 7027           New Delhi     77.225   28.6353 Lower middle income
## 7028           New Delhi     77.225   28.6353 Lower middle income
## 7029           New Delhi     77.225   28.6353 Lower middle income
## 7030           New Delhi     77.225   28.6353 Lower middle income
## 7031           New Delhi     77.225   28.6353 Lower middle income
## 7032           New Delhi     77.225   28.6353 Lower middle income
## 7033           New Delhi     77.225   28.6353 Lower middle income
## 7034           New Delhi     77.225   28.6353 Lower middle income
## 7035           New Delhi     77.225   28.6353 Lower middle income
## 7036           New Delhi     77.225   28.6353 Lower middle income
## 7037           New Delhi     77.225   28.6353 Lower middle income
## 7038           New Delhi     77.225   28.6353 Lower middle income
## 7039           New Delhi     77.225   28.6353 Lower middle income
## 7040           New Delhi     77.225   28.6353 Lower middle income
## 7041           New Delhi     77.225   28.6353 Lower middle income
## 7042           New Delhi     77.225   28.6353 Lower middle income
## 7043           New Delhi     77.225   28.6353 Lower middle income
## 7044           New Delhi     77.225   28.6353 Lower middle income
## 7045           New Delhi     77.225   28.6353 Lower middle income
## 7046           New Delhi     77.225   28.6353 Lower middle income
## 7047           New Delhi     77.225   28.6353 Lower middle income
## 7048           New Delhi     77.225   28.6353 Lower middle income
## 7049           New Delhi     77.225   28.6353 Lower middle income
## 7050           New Delhi     77.225   28.6353 Lower middle income
## 7051           New Delhi     77.225   28.6353 Lower middle income
## 7052           New Delhi     77.225   28.6353 Lower middle income
## 7053           New Delhi     77.225   28.6353 Lower middle income
## 7054           New Delhi     77.225   28.6353 Lower middle income
## 7055           New Delhi     77.225   28.6353 Lower middle income
## 7056           New Delhi     77.225   28.6353 Lower middle income
## 7057             Jakarta     106.83  -6.19752 Lower middle income
## 7058             Jakarta     106.83  -6.19752 Lower middle income
## 7059             Jakarta     106.83  -6.19752 Lower middle income
## 7060             Jakarta     106.83  -6.19752 Lower middle income
## 7061             Jakarta     106.83  -6.19752 Lower middle income
## 7062             Jakarta     106.83  -6.19752 Lower middle income
## 7063             Jakarta     106.83  -6.19752 Lower middle income
## 7064             Jakarta     106.83  -6.19752 Lower middle income
## 7065             Jakarta     106.83  -6.19752 Lower middle income
## 7066             Jakarta     106.83  -6.19752 Lower middle income
## 7067             Jakarta     106.83  -6.19752 Lower middle income
## 7068             Jakarta     106.83  -6.19752 Lower middle income
## 7069             Jakarta     106.83  -6.19752 Lower middle income
## 7070             Jakarta     106.83  -6.19752 Lower middle income
## 7071             Jakarta     106.83  -6.19752 Lower middle income
## 7072             Jakarta     106.83  -6.19752 Lower middle income
## 7073             Jakarta     106.83  -6.19752 Lower middle income
## 7074             Jakarta     106.83  -6.19752 Lower middle income
## 7075             Jakarta     106.83  -6.19752 Lower middle income
## 7076             Jakarta     106.83  -6.19752 Lower middle income
## 7077             Jakarta     106.83  -6.19752 Lower middle income
## 7078             Jakarta     106.83  -6.19752 Lower middle income
## 7079             Jakarta     106.83  -6.19752 Lower middle income
## 7080             Jakarta     106.83  -6.19752 Lower middle income
## 7081             Jakarta     106.83  -6.19752 Lower middle income
## 7082             Jakarta     106.83  -6.19752 Lower middle income
## 7083             Jakarta     106.83  -6.19752 Lower middle income
## 7084             Jakarta     106.83  -6.19752 Lower middle income
## 7085             Jakarta     106.83  -6.19752 Lower middle income
## 7086             Jakarta     106.83  -6.19752 Lower middle income
## 7087             Jakarta     106.83  -6.19752 Lower middle income
## 7088             Jakarta     106.83  -6.19752 Lower middle income
## 7089             Jakarta     106.83  -6.19752 Lower middle income
## 7090             Jakarta     106.83  -6.19752 Lower middle income
## 7091             Jakarta     106.83  -6.19752 Lower middle income
## 7092             Jakarta     106.83  -6.19752 Lower middle income
## 7093             Jakarta     106.83  -6.19752 Lower middle income
## 7094             Jakarta     106.83  -6.19752 Lower middle income
## 7095             Jakarta     106.83  -6.19752 Lower middle income
## 7096             Jakarta     106.83  -6.19752 Lower middle income
## 7097             Jakarta     106.83  -6.19752 Lower middle income
## 7098             Jakarta     106.83  -6.19752 Lower middle income
## 7099             Jakarta     106.83  -6.19752 Lower middle income
## 7100             Jakarta     106.83  -6.19752 Lower middle income
## 7101             Jakarta     106.83  -6.19752 Lower middle income
## 7102             Jakarta     106.83  -6.19752 Lower middle income
## 7103             Jakarta     106.83  -6.19752 Lower middle income
## 7104             Jakarta     106.83  -6.19752 Lower middle income
## 7105             Jakarta     106.83  -6.19752 Lower middle income
## 7106             Jakarta     106.83  -6.19752 Lower middle income
## 7107             Jakarta     106.83  -6.19752 Lower middle income
## 7108             Jakarta     106.83  -6.19752 Lower middle income
## 7109             Jakarta     106.83  -6.19752 Lower middle income
## 7110             Jakarta     106.83  -6.19752 Lower middle income
## 7111             Jakarta     106.83  -6.19752 Lower middle income
## 7112             Jakarta     106.83  -6.19752 Lower middle income
## 7113             Jakarta     106.83  -6.19752 Lower middle income
## 7114             Jakarta     106.83  -6.19752 Lower middle income
## 7115             Jakarta     106.83  -6.19752 Lower middle income
## 7116             Jakarta     106.83  -6.19752 Lower middle income
## 7117             Jakarta     106.83  -6.19752 Lower middle income
## 7118             Jakarta     106.83  -6.19752 Lower middle income
## 7119             Jakarta     106.83  -6.19752 Lower middle income
## 7120              Tehran    51.4447   35.6878 Lower middle income
## 7121              Tehran    51.4447   35.6878 Lower middle income
## 7122              Tehran    51.4447   35.6878 Lower middle income
## 7123              Tehran    51.4447   35.6878 Lower middle income
## 7124              Tehran    51.4447   35.6878 Lower middle income
## 7125              Tehran    51.4447   35.6878 Lower middle income
## 7126              Tehran    51.4447   35.6878 Lower middle income
## 7127              Tehran    51.4447   35.6878 Lower middle income
## 7128              Tehran    51.4447   35.6878 Lower middle income
## 7129              Tehran    51.4447   35.6878 Lower middle income
## 7130              Tehran    51.4447   35.6878 Lower middle income
## 7131              Tehran    51.4447   35.6878 Lower middle income
## 7132              Tehran    51.4447   35.6878 Lower middle income
## 7133              Tehran    51.4447   35.6878 Lower middle income
## 7134              Tehran    51.4447   35.6878 Lower middle income
## 7135              Tehran    51.4447   35.6878 Lower middle income
## 7136              Tehran    51.4447   35.6878 Lower middle income
## 7137              Tehran    51.4447   35.6878 Lower middle income
## 7138              Tehran    51.4447   35.6878 Lower middle income
## 7139              Tehran    51.4447   35.6878 Lower middle income
## 7140              Tehran    51.4447   35.6878 Lower middle income
## 7141              Tehran    51.4447   35.6878 Lower middle income
## 7142              Tehran    51.4447   35.6878 Lower middle income
## 7143              Tehran    51.4447   35.6878 Lower middle income
## 7144              Tehran    51.4447   35.6878 Lower middle income
## 7145              Tehran    51.4447   35.6878 Lower middle income
## 7146              Tehran    51.4447   35.6878 Lower middle income
## 7147              Tehran    51.4447   35.6878 Lower middle income
## 7148              Tehran    51.4447   35.6878 Lower middle income
## 7149              Tehran    51.4447   35.6878 Lower middle income
## 7150              Tehran    51.4447   35.6878 Lower middle income
## 7151              Tehran    51.4447   35.6878 Lower middle income
## 7152              Tehran    51.4447   35.6878 Lower middle income
## 7153              Tehran    51.4447   35.6878 Lower middle income
## 7154              Tehran    51.4447   35.6878 Lower middle income
## 7155              Tehran    51.4447   35.6878 Lower middle income
## 7156              Tehran    51.4447   35.6878 Lower middle income
## 7157              Tehran    51.4447   35.6878 Lower middle income
## 7158              Tehran    51.4447   35.6878 Lower middle income
## 7159              Tehran    51.4447   35.6878 Lower middle income
## 7160              Tehran    51.4447   35.6878 Lower middle income
## 7161              Tehran    51.4447   35.6878 Lower middle income
## 7162              Tehran    51.4447   35.6878 Lower middle income
## 7163              Tehran    51.4447   35.6878 Lower middle income
## 7164              Tehran    51.4447   35.6878 Lower middle income
## 7165              Tehran    51.4447   35.6878 Lower middle income
## 7166              Tehran    51.4447   35.6878 Lower middle income
## 7167              Tehran    51.4447   35.6878 Lower middle income
## 7168              Tehran    51.4447   35.6878 Lower middle income
## 7169              Tehran    51.4447   35.6878 Lower middle income
## 7170              Tehran    51.4447   35.6878 Lower middle income
## 7171              Tehran    51.4447   35.6878 Lower middle income
## 7172              Tehran    51.4447   35.6878 Lower middle income
## 7173              Tehran    51.4447   35.6878 Lower middle income
## 7174              Tehran    51.4447   35.6878 Lower middle income
## 7175              Tehran    51.4447   35.6878 Lower middle income
## 7176              Tehran    51.4447   35.6878 Lower middle income
## 7177              Tehran    51.4447   35.6878 Lower middle income
## 7178              Tehran    51.4447   35.6878 Lower middle income
## 7179              Tehran    51.4447   35.6878 Lower middle income
## 7180              Tehran    51.4447   35.6878 Lower middle income
## 7181              Tehran    51.4447   35.6878 Lower middle income
## 7182              Tehran    51.4447   35.6878 Lower middle income
## 7183             Baghdad     44.394   33.3302 Upper middle income
## 7184             Baghdad     44.394   33.3302 Upper middle income
## 7185             Baghdad     44.394   33.3302 Upper middle income
## 7186             Baghdad     44.394   33.3302 Upper middle income
## 7187             Baghdad     44.394   33.3302 Upper middle income
## 7188             Baghdad     44.394   33.3302 Upper middle income
## 7189             Baghdad     44.394   33.3302 Upper middle income
## 7190             Baghdad     44.394   33.3302 Upper middle income
## 7191             Baghdad     44.394   33.3302 Upper middle income
## 7192             Baghdad     44.394   33.3302 Upper middle income
## 7193             Baghdad     44.394   33.3302 Upper middle income
## 7194             Baghdad     44.394   33.3302 Upper middle income
## 7195             Baghdad     44.394   33.3302 Upper middle income
## 7196             Baghdad     44.394   33.3302 Upper middle income
## 7197             Baghdad     44.394   33.3302 Upper middle income
## 7198             Baghdad     44.394   33.3302 Upper middle income
## 7199             Baghdad     44.394   33.3302 Upper middle income
## 7200             Baghdad     44.394   33.3302 Upper middle income
## 7201             Baghdad     44.394   33.3302 Upper middle income
## 7202             Baghdad     44.394   33.3302 Upper middle income
## 7203             Baghdad     44.394   33.3302 Upper middle income
## 7204             Baghdad     44.394   33.3302 Upper middle income
## 7205             Baghdad     44.394   33.3302 Upper middle income
## 7206             Baghdad     44.394   33.3302 Upper middle income
## 7207             Baghdad     44.394   33.3302 Upper middle income
## 7208             Baghdad     44.394   33.3302 Upper middle income
## 7209             Baghdad     44.394   33.3302 Upper middle income
## 7210             Baghdad     44.394   33.3302 Upper middle income
## 7211             Baghdad     44.394   33.3302 Upper middle income
## 7212             Baghdad     44.394   33.3302 Upper middle income
## 7213             Baghdad     44.394   33.3302 Upper middle income
## 7214             Baghdad     44.394   33.3302 Upper middle income
## 7215             Baghdad     44.394   33.3302 Upper middle income
## 7216             Baghdad     44.394   33.3302 Upper middle income
## 7217             Baghdad     44.394   33.3302 Upper middle income
## 7218             Baghdad     44.394   33.3302 Upper middle income
## 7219             Baghdad     44.394   33.3302 Upper middle income
## 7220             Baghdad     44.394   33.3302 Upper middle income
## 7221             Baghdad     44.394   33.3302 Upper middle income
## 7222             Baghdad     44.394   33.3302 Upper middle income
## 7223             Baghdad     44.394   33.3302 Upper middle income
## 7224             Baghdad     44.394   33.3302 Upper middle income
## 7225             Baghdad     44.394   33.3302 Upper middle income
## 7226             Baghdad     44.394   33.3302 Upper middle income
## 7227             Baghdad     44.394   33.3302 Upper middle income
## 7228             Baghdad     44.394   33.3302 Upper middle income
## 7229             Baghdad     44.394   33.3302 Upper middle income
## 7230             Baghdad     44.394   33.3302 Upper middle income
## 7231             Baghdad     44.394   33.3302 Upper middle income
## 7232             Baghdad     44.394   33.3302 Upper middle income
## 7233             Baghdad     44.394   33.3302 Upper middle income
## 7234             Baghdad     44.394   33.3302 Upper middle income
## 7235             Baghdad     44.394   33.3302 Upper middle income
## 7236             Baghdad     44.394   33.3302 Upper middle income
## 7237             Baghdad     44.394   33.3302 Upper middle income
## 7238             Baghdad     44.394   33.3302 Upper middle income
## 7239             Baghdad     44.394   33.3302 Upper middle income
## 7240             Baghdad     44.394   33.3302 Upper middle income
## 7241             Baghdad     44.394   33.3302 Upper middle income
## 7242             Baghdad     44.394   33.3302 Upper middle income
## 7243             Baghdad     44.394   33.3302 Upper middle income
## 7244             Baghdad     44.394   33.3302 Upper middle income
## 7245             Baghdad     44.394   33.3302 Upper middle income
## 7246              Dublin   -6.26749   53.3441         High income
## 7247              Dublin   -6.26749   53.3441         High income
## 7248              Dublin   -6.26749   53.3441         High income
## 7249              Dublin   -6.26749   53.3441         High income
## 7250              Dublin   -6.26749   53.3441         High income
## 7251              Dublin   -6.26749   53.3441         High income
## 7252              Dublin   -6.26749   53.3441         High income
## 7253              Dublin   -6.26749   53.3441         High income
## 7254              Dublin   -6.26749   53.3441         High income
## 7255              Dublin   -6.26749   53.3441         High income
## 7256              Dublin   -6.26749   53.3441         High income
## 7257              Dublin   -6.26749   53.3441         High income
## 7258              Dublin   -6.26749   53.3441         High income
## 7259              Dublin   -6.26749   53.3441         High income
## 7260              Dublin   -6.26749   53.3441         High income
## 7261              Dublin   -6.26749   53.3441         High income
## 7262              Dublin   -6.26749   53.3441         High income
## 7263              Dublin   -6.26749   53.3441         High income
## 7264              Dublin   -6.26749   53.3441         High income
## 7265              Dublin   -6.26749   53.3441         High income
## 7266              Dublin   -6.26749   53.3441         High income
## 7267              Dublin   -6.26749   53.3441         High income
## 7268              Dublin   -6.26749   53.3441         High income
## 7269              Dublin   -6.26749   53.3441         High income
## 7270              Dublin   -6.26749   53.3441         High income
## 7271              Dublin   -6.26749   53.3441         High income
## 7272              Dublin   -6.26749   53.3441         High income
## 7273              Dublin   -6.26749   53.3441         High income
## 7274              Dublin   -6.26749   53.3441         High income
## 7275              Dublin   -6.26749   53.3441         High income
## 7276              Dublin   -6.26749   53.3441         High income
## 7277              Dublin   -6.26749   53.3441         High income
## 7278              Dublin   -6.26749   53.3441         High income
## 7279              Dublin   -6.26749   53.3441         High income
## 7280              Dublin   -6.26749   53.3441         High income
## 7281              Dublin   -6.26749   53.3441         High income
## 7282              Dublin   -6.26749   53.3441         High income
## 7283              Dublin   -6.26749   53.3441         High income
## 7284              Dublin   -6.26749   53.3441         High income
## 7285              Dublin   -6.26749   53.3441         High income
## 7286              Dublin   -6.26749   53.3441         High income
## 7287              Dublin   -6.26749   53.3441         High income
## 7288              Dublin   -6.26749   53.3441         High income
## 7289              Dublin   -6.26749   53.3441         High income
## 7290              Dublin   -6.26749   53.3441         High income
## 7291              Dublin   -6.26749   53.3441         High income
## 7292              Dublin   -6.26749   53.3441         High income
## 7293              Dublin   -6.26749   53.3441         High income
## 7294              Dublin   -6.26749   53.3441         High income
## 7295              Dublin   -6.26749   53.3441         High income
## 7296              Dublin   -6.26749   53.3441         High income
## 7297              Dublin   -6.26749   53.3441         High income
## 7298              Dublin   -6.26749   53.3441         High income
## 7299              Dublin   -6.26749   53.3441         High income
## 7300              Dublin   -6.26749   53.3441         High income
## 7301              Dublin   -6.26749   53.3441         High income
## 7302              Dublin   -6.26749   53.3441         High income
## 7303              Dublin   -6.26749   53.3441         High income
## 7304              Dublin   -6.26749   53.3441         High income
## 7305              Dublin   -6.26749   53.3441         High income
## 7306              Dublin   -6.26749   53.3441         High income
## 7307              Dublin   -6.26749   53.3441         High income
## 7308              Dublin   -6.26749   53.3441         High income
## 7309             Douglas   -4.47928   54.1509         High income
## 7310             Douglas   -4.47928   54.1509         High income
## 7311             Douglas   -4.47928   54.1509         High income
## 7312             Douglas   -4.47928   54.1509         High income
## 7313             Douglas   -4.47928   54.1509         High income
## 7314             Douglas   -4.47928   54.1509         High income
## 7315             Douglas   -4.47928   54.1509         High income
## 7316             Douglas   -4.47928   54.1509         High income
## 7317             Douglas   -4.47928   54.1509         High income
## 7318             Douglas   -4.47928   54.1509         High income
## 7319             Douglas   -4.47928   54.1509         High income
## 7320             Douglas   -4.47928   54.1509         High income
## 7321             Douglas   -4.47928   54.1509         High income
## 7322             Douglas   -4.47928   54.1509         High income
## 7323             Douglas   -4.47928   54.1509         High income
## 7324             Douglas   -4.47928   54.1509         High income
## 7325             Douglas   -4.47928   54.1509         High income
## 7326             Douglas   -4.47928   54.1509         High income
## 7327             Douglas   -4.47928   54.1509         High income
## 7328             Douglas   -4.47928   54.1509         High income
## 7329             Douglas   -4.47928   54.1509         High income
## 7330             Douglas   -4.47928   54.1509         High income
## 7331             Douglas   -4.47928   54.1509         High income
## 7332             Douglas   -4.47928   54.1509         High income
## 7333             Douglas   -4.47928   54.1509         High income
## 7334             Douglas   -4.47928   54.1509         High income
## 7335             Douglas   -4.47928   54.1509         High income
## 7336             Douglas   -4.47928   54.1509         High income
## 7337             Douglas   -4.47928   54.1509         High income
## 7338             Douglas   -4.47928   54.1509         High income
## 7339             Douglas   -4.47928   54.1509         High income
## 7340             Douglas   -4.47928   54.1509         High income
## 7341             Douglas   -4.47928   54.1509         High income
## 7342             Douglas   -4.47928   54.1509         High income
## 7343             Douglas   -4.47928   54.1509         High income
## 7344             Douglas   -4.47928   54.1509         High income
## 7345             Douglas   -4.47928   54.1509         High income
## 7346             Douglas   -4.47928   54.1509         High income
## 7347             Douglas   -4.47928   54.1509         High income
## 7348             Douglas   -4.47928   54.1509         High income
## 7349             Douglas   -4.47928   54.1509         High income
## 7350             Douglas   -4.47928   54.1509         High income
## 7351             Douglas   -4.47928   54.1509         High income
## 7352             Douglas   -4.47928   54.1509         High income
## 7353             Douglas   -4.47928   54.1509         High income
## 7354             Douglas   -4.47928   54.1509         High income
## 7355             Douglas   -4.47928   54.1509         High income
## 7356             Douglas   -4.47928   54.1509         High income
## 7357             Douglas   -4.47928   54.1509         High income
## 7358             Douglas   -4.47928   54.1509         High income
## 7359             Douglas   -4.47928   54.1509         High income
## 7360             Douglas   -4.47928   54.1509         High income
## 7361             Douglas   -4.47928   54.1509         High income
## 7362             Douglas   -4.47928   54.1509         High income
## 7363             Douglas   -4.47928   54.1509         High income
## 7364             Douglas   -4.47928   54.1509         High income
## 7365             Douglas   -4.47928   54.1509         High income
## 7366             Douglas   -4.47928   54.1509         High income
## 7367             Douglas   -4.47928   54.1509         High income
## 7368             Douglas   -4.47928   54.1509         High income
## 7369             Douglas   -4.47928   54.1509         High income
## 7370             Douglas   -4.47928   54.1509         High income
## 7371             Douglas   -4.47928   54.1509         High income
## 7372                        35.2035   31.7717         High income
## 7373                        35.2035   31.7717         High income
## 7374                        35.2035   31.7717         High income
## 7375                        35.2035   31.7717         High income
## 7376                        35.2035   31.7717         High income
## 7377                        35.2035   31.7717         High income
## 7378                        35.2035   31.7717         High income
## 7379                        35.2035   31.7717         High income
## 7380                        35.2035   31.7717         High income
## 7381                        35.2035   31.7717         High income
## 7382                        35.2035   31.7717         High income
## 7383                        35.2035   31.7717         High income
## 7384                        35.2035   31.7717         High income
## 7385                        35.2035   31.7717         High income
## 7386                        35.2035   31.7717         High income
## 7387                        35.2035   31.7717         High income
## 7388                        35.2035   31.7717         High income
## 7389                        35.2035   31.7717         High income
## 7390                        35.2035   31.7717         High income
## 7391                        35.2035   31.7717         High income
## 7392                        35.2035   31.7717         High income
## 7393                        35.2035   31.7717         High income
## 7394                        35.2035   31.7717         High income
## 7395                        35.2035   31.7717         High income
## 7396                        35.2035   31.7717         High income
## 7397                        35.2035   31.7717         High income
## 7398                        35.2035   31.7717         High income
## 7399                        35.2035   31.7717         High income
## 7400                        35.2035   31.7717         High income
## 7401                        35.2035   31.7717         High income
## 7402                        35.2035   31.7717         High income
## 7403                        35.2035   31.7717         High income
## 7404                        35.2035   31.7717         High income
## 7405                        35.2035   31.7717         High income
## 7406                        35.2035   31.7717         High income
## 7407                        35.2035   31.7717         High income
## 7408                        35.2035   31.7717         High income
## 7409                        35.2035   31.7717         High income
## 7410                        35.2035   31.7717         High income
## 7411                        35.2035   31.7717         High income
## 7412                        35.2035   31.7717         High income
## 7413                        35.2035   31.7717         High income
## 7414                        35.2035   31.7717         High income
## 7415                        35.2035   31.7717         High income
## 7416                        35.2035   31.7717         High income
## 7417                        35.2035   31.7717         High income
## 7418                        35.2035   31.7717         High income
## 7419                        35.2035   31.7717         High income
## 7420                        35.2035   31.7717         High income
## 7421                        35.2035   31.7717         High income
## 7422                        35.2035   31.7717         High income
## 7423                        35.2035   31.7717         High income
## 7424                        35.2035   31.7717         High income
## 7425                        35.2035   31.7717         High income
## 7426                        35.2035   31.7717         High income
## 7427                        35.2035   31.7717         High income
## 7428                        35.2035   31.7717         High income
## 7429                        35.2035   31.7717         High income
## 7430                        35.2035   31.7717         High income
## 7431                        35.2035   31.7717         High income
## 7432                        35.2035   31.7717         High income
## 7433                        35.2035   31.7717         High income
## 7434                        35.2035   31.7717         High income
## 7435                Rome    12.4823   41.8955         High income
## 7436                Rome    12.4823   41.8955         High income
## 7437                Rome    12.4823   41.8955         High income
## 7438                Rome    12.4823   41.8955         High income
## 7439                Rome    12.4823   41.8955         High income
## 7440                Rome    12.4823   41.8955         High income
## 7441                Rome    12.4823   41.8955         High income
## 7442                Rome    12.4823   41.8955         High income
## 7443                Rome    12.4823   41.8955         High income
## 7444                Rome    12.4823   41.8955         High income
## 7445                Rome    12.4823   41.8955         High income
## 7446                Rome    12.4823   41.8955         High income
## 7447                Rome    12.4823   41.8955         High income
## 7448                Rome    12.4823   41.8955         High income
## 7449                Rome    12.4823   41.8955         High income
## 7450                Rome    12.4823   41.8955         High income
## 7451                Rome    12.4823   41.8955         High income
## 7452                Rome    12.4823   41.8955         High income
## 7453                Rome    12.4823   41.8955         High income
## 7454                Rome    12.4823   41.8955         High income
## 7455                Rome    12.4823   41.8955         High income
## 7456                Rome    12.4823   41.8955         High income
## 7457                Rome    12.4823   41.8955         High income
## 7458                Rome    12.4823   41.8955         High income
## 7459                Rome    12.4823   41.8955         High income
## 7460                Rome    12.4823   41.8955         High income
## 7461                Rome    12.4823   41.8955         High income
## 7462                Rome    12.4823   41.8955         High income
## 7463                Rome    12.4823   41.8955         High income
## 7464                Rome    12.4823   41.8955         High income
## 7465                Rome    12.4823   41.8955         High income
## 7466                Rome    12.4823   41.8955         High income
## 7467                Rome    12.4823   41.8955         High income
## 7468                Rome    12.4823   41.8955         High income
## 7469                Rome    12.4823   41.8955         High income
## 7470                Rome    12.4823   41.8955         High income
## 7471                Rome    12.4823   41.8955         High income
## 7472                Rome    12.4823   41.8955         High income
## 7473                Rome    12.4823   41.8955         High income
## 7474                Rome    12.4823   41.8955         High income
## 7475                Rome    12.4823   41.8955         High income
## 7476                Rome    12.4823   41.8955         High income
## 7477                Rome    12.4823   41.8955         High income
## 7478                Rome    12.4823   41.8955         High income
## 7479                Rome    12.4823   41.8955         High income
## 7480                Rome    12.4823   41.8955         High income
## 7481                Rome    12.4823   41.8955         High income
## 7482                Rome    12.4823   41.8955         High income
## 7483                Rome    12.4823   41.8955         High income
## 7484                Rome    12.4823   41.8955         High income
## 7485                Rome    12.4823   41.8955         High income
## 7486                Rome    12.4823   41.8955         High income
## 7487                Rome    12.4823   41.8955         High income
## 7488                Rome    12.4823   41.8955         High income
## 7489                Rome    12.4823   41.8955         High income
## 7490                Rome    12.4823   41.8955         High income
## 7491                Rome    12.4823   41.8955         High income
## 7492                Rome    12.4823   41.8955         High income
## 7493                Rome    12.4823   41.8955         High income
## 7494                Rome    12.4823   41.8955         High income
## 7495                Rome    12.4823   41.8955         High income
## 7496                Rome    12.4823   41.8955         High income
## 7497                Rome    12.4823   41.8955         High income
## 7498            Kingston    -76.792   17.9927 Upper middle income
## 7499            Kingston    -76.792   17.9927 Upper middle income
## 7500            Kingston    -76.792   17.9927 Upper middle income
## 7501            Kingston    -76.792   17.9927 Upper middle income
## 7502            Kingston    -76.792   17.9927 Upper middle income
## 7503            Kingston    -76.792   17.9927 Upper middle income
## 7504            Kingston    -76.792   17.9927 Upper middle income
## 7505            Kingston    -76.792   17.9927 Upper middle income
## 7506            Kingston    -76.792   17.9927 Upper middle income
## 7507            Kingston    -76.792   17.9927 Upper middle income
## 7508            Kingston    -76.792   17.9927 Upper middle income
## 7509            Kingston    -76.792   17.9927 Upper middle income
## 7510            Kingston    -76.792   17.9927 Upper middle income
## 7511            Kingston    -76.792   17.9927 Upper middle income
## 7512            Kingston    -76.792   17.9927 Upper middle income
## 7513            Kingston    -76.792   17.9927 Upper middle income
## 7514            Kingston    -76.792   17.9927 Upper middle income
## 7515            Kingston    -76.792   17.9927 Upper middle income
## 7516            Kingston    -76.792   17.9927 Upper middle income
## 7517            Kingston    -76.792   17.9927 Upper middle income
## 7518            Kingston    -76.792   17.9927 Upper middle income
## 7519            Kingston    -76.792   17.9927 Upper middle income
## 7520            Kingston    -76.792   17.9927 Upper middle income
## 7521            Kingston    -76.792   17.9927 Upper middle income
## 7522            Kingston    -76.792   17.9927 Upper middle income
## 7523            Kingston    -76.792   17.9927 Upper middle income
## 7524            Kingston    -76.792   17.9927 Upper middle income
## 7525            Kingston    -76.792   17.9927 Upper middle income
## 7526            Kingston    -76.792   17.9927 Upper middle income
## 7527            Kingston    -76.792   17.9927 Upper middle income
## 7528            Kingston    -76.792   17.9927 Upper middle income
## 7529            Kingston    -76.792   17.9927 Upper middle income
## 7530            Kingston    -76.792   17.9927 Upper middle income
## 7531            Kingston    -76.792   17.9927 Upper middle income
## 7532            Kingston    -76.792   17.9927 Upper middle income
## 7533            Kingston    -76.792   17.9927 Upper middle income
## 7534            Kingston    -76.792   17.9927 Upper middle income
## 7535            Kingston    -76.792   17.9927 Upper middle income
## 7536            Kingston    -76.792   17.9927 Upper middle income
## 7537            Kingston    -76.792   17.9927 Upper middle income
## 7538            Kingston    -76.792   17.9927 Upper middle income
## 7539            Kingston    -76.792   17.9927 Upper middle income
## 7540            Kingston    -76.792   17.9927 Upper middle income
## 7541            Kingston    -76.792   17.9927 Upper middle income
## 7542            Kingston    -76.792   17.9927 Upper middle income
## 7543            Kingston    -76.792   17.9927 Upper middle income
## 7544            Kingston    -76.792   17.9927 Upper middle income
## 7545            Kingston    -76.792   17.9927 Upper middle income
## 7546            Kingston    -76.792   17.9927 Upper middle income
## 7547            Kingston    -76.792   17.9927 Upper middle income
## 7548            Kingston    -76.792   17.9927 Upper middle income
## 7549            Kingston    -76.792   17.9927 Upper middle income
## 7550            Kingston    -76.792   17.9927 Upper middle income
## 7551            Kingston    -76.792   17.9927 Upper middle income
## 7552            Kingston    -76.792   17.9927 Upper middle income
## 7553            Kingston    -76.792   17.9927 Upper middle income
## 7554            Kingston    -76.792   17.9927 Upper middle income
## 7555            Kingston    -76.792   17.9927 Upper middle income
## 7556            Kingston    -76.792   17.9927 Upper middle income
## 7557            Kingston    -76.792   17.9927 Upper middle income
## 7558            Kingston    -76.792   17.9927 Upper middle income
## 7559            Kingston    -76.792   17.9927 Upper middle income
## 7560            Kingston    -76.792   17.9927 Upper middle income
## 7561               Tokyo     139.77     35.67         High income
## 7562               Tokyo     139.77     35.67         High income
## 7563               Tokyo     139.77     35.67         High income
## 7564               Tokyo     139.77     35.67         High income
## 7565               Tokyo     139.77     35.67         High income
## 7566               Tokyo     139.77     35.67         High income
## 7567               Tokyo     139.77     35.67         High income
## 7568               Tokyo     139.77     35.67         High income
## 7569               Tokyo     139.77     35.67         High income
## 7570               Tokyo     139.77     35.67         High income
## 7571               Tokyo     139.77     35.67         High income
## 7572               Tokyo     139.77     35.67         High income
## 7573               Tokyo     139.77     35.67         High income
## 7574               Tokyo     139.77     35.67         High income
## 7575               Tokyo     139.77     35.67         High income
## 7576               Tokyo     139.77     35.67         High income
## 7577               Tokyo     139.77     35.67         High income
## 7578               Tokyo     139.77     35.67         High income
## 7579               Tokyo     139.77     35.67         High income
## 7580               Tokyo     139.77     35.67         High income
## 7581               Tokyo     139.77     35.67         High income
## 7582               Tokyo     139.77     35.67         High income
## 7583               Tokyo     139.77     35.67         High income
## 7584               Tokyo     139.77     35.67         High income
## 7585               Tokyo     139.77     35.67         High income
## 7586               Tokyo     139.77     35.67         High income
## 7587               Tokyo     139.77     35.67         High income
## 7588               Tokyo     139.77     35.67         High income
## 7589               Tokyo     139.77     35.67         High income
## 7590               Tokyo     139.77     35.67         High income
## 7591               Tokyo     139.77     35.67         High income
## 7592               Tokyo     139.77     35.67         High income
## 7593               Tokyo     139.77     35.67         High income
## 7594               Tokyo     139.77     35.67         High income
## 7595               Tokyo     139.77     35.67         High income
## 7596               Tokyo     139.77     35.67         High income
## 7597               Tokyo     139.77     35.67         High income
## 7598               Tokyo     139.77     35.67         High income
## 7599               Tokyo     139.77     35.67         High income
## 7600               Tokyo     139.77     35.67         High income
## 7601               Tokyo     139.77     35.67         High income
## 7602               Tokyo     139.77     35.67         High income
## 7603               Tokyo     139.77     35.67         High income
## 7604               Tokyo     139.77     35.67         High income
## 7605               Tokyo     139.77     35.67         High income
## 7606               Tokyo     139.77     35.67         High income
## 7607               Tokyo     139.77     35.67         High income
## 7608               Tokyo     139.77     35.67         High income
## 7609               Tokyo     139.77     35.67         High income
## 7610               Tokyo     139.77     35.67         High income
## 7611               Tokyo     139.77     35.67         High income
## 7612               Tokyo     139.77     35.67         High income
## 7613               Tokyo     139.77     35.67         High income
## 7614               Tokyo     139.77     35.67         High income
## 7615               Tokyo     139.77     35.67         High income
## 7616               Tokyo     139.77     35.67         High income
## 7617               Tokyo     139.77     35.67         High income
## 7618               Tokyo     139.77     35.67         High income
## 7619               Tokyo     139.77     35.67         High income
## 7620               Tokyo     139.77     35.67         High income
## 7621               Tokyo     139.77     35.67         High income
## 7622               Tokyo     139.77     35.67         High income
## 7623               Tokyo     139.77     35.67         High income
## 7624               Amman    35.9263   31.9497 Upper middle income
## 7625               Amman    35.9263   31.9497 Upper middle income
## 7626               Amman    35.9263   31.9497 Upper middle income
## 7627               Amman    35.9263   31.9497 Upper middle income
## 7628               Amman    35.9263   31.9497 Upper middle income
## 7629               Amman    35.9263   31.9497 Upper middle income
## 7630               Amman    35.9263   31.9497 Upper middle income
## 7631               Amman    35.9263   31.9497 Upper middle income
## 7632               Amman    35.9263   31.9497 Upper middle income
## 7633               Amman    35.9263   31.9497 Upper middle income
## 7634               Amman    35.9263   31.9497 Upper middle income
## 7635               Amman    35.9263   31.9497 Upper middle income
## 7636               Amman    35.9263   31.9497 Upper middle income
## 7637               Amman    35.9263   31.9497 Upper middle income
## 7638               Amman    35.9263   31.9497 Upper middle income
## 7639               Amman    35.9263   31.9497 Upper middle income
## 7640               Amman    35.9263   31.9497 Upper middle income
## 7641               Amman    35.9263   31.9497 Upper middle income
## 7642               Amman    35.9263   31.9497 Upper middle income
## 7643               Amman    35.9263   31.9497 Upper middle income
## 7644               Amman    35.9263   31.9497 Upper middle income
## 7645               Amman    35.9263   31.9497 Upper middle income
## 7646               Amman    35.9263   31.9497 Upper middle income
## 7647               Amman    35.9263   31.9497 Upper middle income
## 7648               Amman    35.9263   31.9497 Upper middle income
## 7649               Amman    35.9263   31.9497 Upper middle income
## 7650               Amman    35.9263   31.9497 Upper middle income
## 7651               Amman    35.9263   31.9497 Upper middle income
## 7652               Amman    35.9263   31.9497 Upper middle income
## 7653               Amman    35.9263   31.9497 Upper middle income
## 7654               Amman    35.9263   31.9497 Upper middle income
## 7655               Amman    35.9263   31.9497 Upper middle income
## 7656               Amman    35.9263   31.9497 Upper middle income
## 7657               Amman    35.9263   31.9497 Upper middle income
## 7658               Amman    35.9263   31.9497 Upper middle income
## 7659               Amman    35.9263   31.9497 Upper middle income
## 7660               Amman    35.9263   31.9497 Upper middle income
## 7661               Amman    35.9263   31.9497 Upper middle income
## 7662               Amman    35.9263   31.9497 Upper middle income
## 7663               Amman    35.9263   31.9497 Upper middle income
## 7664               Amman    35.9263   31.9497 Upper middle income
## 7665               Amman    35.9263   31.9497 Upper middle income
## 7666               Amman    35.9263   31.9497 Upper middle income
## 7667               Amman    35.9263   31.9497 Upper middle income
## 7668               Amman    35.9263   31.9497 Upper middle income
## 7669               Amman    35.9263   31.9497 Upper middle income
## 7670               Amman    35.9263   31.9497 Upper middle income
## 7671               Amman    35.9263   31.9497 Upper middle income
## 7672               Amman    35.9263   31.9497 Upper middle income
## 7673               Amman    35.9263   31.9497 Upper middle income
## 7674               Amman    35.9263   31.9497 Upper middle income
## 7675               Amman    35.9263   31.9497 Upper middle income
## 7676               Amman    35.9263   31.9497 Upper middle income
## 7677               Amman    35.9263   31.9497 Upper middle income
## 7678               Amman    35.9263   31.9497 Upper middle income
## 7679               Amman    35.9263   31.9497 Upper middle income
## 7680               Amman    35.9263   31.9497 Upper middle income
## 7681               Amman    35.9263   31.9497 Upper middle income
## 7682               Amman    35.9263   31.9497 Upper middle income
## 7683               Amman    35.9263   31.9497 Upper middle income
## 7684               Amman    35.9263   31.9497 Upper middle income
## 7685               Amman    35.9263   31.9497 Upper middle income
## 7686               Amman    35.9263   31.9497 Upper middle income
## 7687              Astana    71.4382   51.1879 Upper middle income
## 7688              Astana    71.4382   51.1879 Upper middle income
## 7689              Astana    71.4382   51.1879 Upper middle income
## 7690              Astana    71.4382   51.1879 Upper middle income
## 7691              Astana    71.4382   51.1879 Upper middle income
## 7692              Astana    71.4382   51.1879 Upper middle income
##             lending
## 1               IDA
## 2               IDA
## 3               IDA
## 4               IDA
## 5               IDA
## 6               IDA
## 7               IDA
## 8               IDA
## 9               IDA
## 10              IDA
## 11              IDA
## 12              IDA
## 13              IDA
## 14              IDA
## 15              IDA
## 16              IDA
## 17              IDA
## 18              IDA
## 19              IDA
## 20              IDA
## 21              IDA
## 22              IDA
## 23              IDA
## 24              IDA
## 25              IDA
## 26              IDA
## 27              IDA
## 28              IDA
## 29              IDA
## 30              IDA
## 31              IDA
## 32              IDA
## 33              IDA
## 34              IDA
## 35              IDA
## 36              IDA
## 37              IDA
## 38              IDA
## 39              IDA
## 40              IDA
## 41              IDA
## 42              IDA
## 43              IDA
## 44              IDA
## 45              IDA
## 46              IDA
## 47              IDA
## 48              IDA
## 49              IDA
## 50              IDA
## 51              IDA
## 52              IDA
## 53              IDA
## 54              IDA
## 55              IDA
## 56              IDA
## 57              IDA
## 58              IDA
## 59              IDA
## 60              IDA
## 61              IDA
## 62              IDA
## 63              IDA
## 64       Aggregates
## 65       Aggregates
## 66       Aggregates
## 67       Aggregates
## 68       Aggregates
## 69       Aggregates
## 70       Aggregates
## 71       Aggregates
## 72       Aggregates
## 73       Aggregates
## 74       Aggregates
## 75       Aggregates
## 76       Aggregates
## 77       Aggregates
## 78       Aggregates
## 79       Aggregates
## 80       Aggregates
## 81       Aggregates
## 82       Aggregates
## 83       Aggregates
## 84       Aggregates
## 85       Aggregates
## 86       Aggregates
## 87       Aggregates
## 88       Aggregates
## 89       Aggregates
## 90       Aggregates
## 91       Aggregates
## 92       Aggregates
## 93       Aggregates
## 94       Aggregates
## 95       Aggregates
## 96       Aggregates
## 97       Aggregates
## 98       Aggregates
## 99       Aggregates
## 100      Aggregates
## 101      Aggregates
## 102      Aggregates
## 103      Aggregates
## 104      Aggregates
## 105      Aggregates
## 106      Aggregates
## 107      Aggregates
## 108      Aggregates
## 109      Aggregates
## 110      Aggregates
## 111      Aggregates
## 112      Aggregates
## 113      Aggregates
## 114      Aggregates
## 115      Aggregates
## 116      Aggregates
## 117      Aggregates
## 118      Aggregates
## 119      Aggregates
## 120      Aggregates
## 121      Aggregates
## 122      Aggregates
## 123      Aggregates
## 124      Aggregates
## 125      Aggregates
## 126      Aggregates
## 127      Aggregates
## 128      Aggregates
## 129      Aggregates
## 130      Aggregates
## 131      Aggregates
## 132      Aggregates
## 133      Aggregates
## 134      Aggregates
## 135      Aggregates
## 136      Aggregates
## 137      Aggregates
## 138      Aggregates
## 139      Aggregates
## 140      Aggregates
## 141      Aggregates
## 142      Aggregates
## 143      Aggregates
## 144      Aggregates
## 145      Aggregates
## 146      Aggregates
## 147      Aggregates
## 148      Aggregates
## 149      Aggregates
## 150      Aggregates
## 151      Aggregates
## 152      Aggregates
## 153      Aggregates
## 154      Aggregates
## 155      Aggregates
## 156      Aggregates
## 157      Aggregates
## 158      Aggregates
## 159      Aggregates
## 160      Aggregates
## 161      Aggregates
## 162      Aggregates
## 163      Aggregates
## 164      Aggregates
## 165      Aggregates
## 166      Aggregates
## 167      Aggregates
## 168      Aggregates
## 169      Aggregates
## 170      Aggregates
## 171      Aggregates
## 172      Aggregates
## 173      Aggregates
## 174      Aggregates
## 175      Aggregates
## 176      Aggregates
## 177      Aggregates
## 178      Aggregates
## 179      Aggregates
## 180      Aggregates
## 181      Aggregates
## 182      Aggregates
## 183      Aggregates
## 184      Aggregates
## 185      Aggregates
## 186      Aggregates
## 187      Aggregates
## 188      Aggregates
## 189      Aggregates
## 190            IBRD
## 191            IBRD
## 192            IBRD
## 193            IBRD
## 194            IBRD
## 195            IBRD
## 196            IBRD
## 197            IBRD
## 198            IBRD
## 199            IBRD
## 200            IBRD
## 201            IBRD
## 202            IBRD
## 203            IBRD
## 204            IBRD
## 205            IBRD
## 206            IBRD
## 207            IBRD
## 208            IBRD
## 209            IBRD
## 210            IBRD
## 211            IBRD
## 212            IBRD
## 213            IBRD
## 214            IBRD
## 215            IBRD
## 216            IBRD
## 217            IBRD
## 218            IBRD
## 219            IBRD
## 220            IBRD
## 221            IBRD
## 222            IBRD
## 223            IBRD
## 224            IBRD
## 225            IBRD
## 226            IBRD
## 227            IBRD
## 228            IBRD
## 229            IBRD
## 230            IBRD
## 231            IBRD
## 232            IBRD
## 233            IBRD
## 234            IBRD
## 235            IBRD
## 236            IBRD
## 237            IBRD
## 238            IBRD
## 239            IBRD
## 240            IBRD
## 241            IBRD
## 242            IBRD
## 243            IBRD
## 244            IBRD
## 245            IBRD
## 246            IBRD
## 247            IBRD
## 248            IBRD
## 249            IBRD
## 250            IBRD
## 251            IBRD
## 252            IBRD
## 253            IBRD
## 254            IBRD
## 255            IBRD
## 256            IBRD
## 257            IBRD
## 258            IBRD
## 259            IBRD
## 260            IBRD
## 261            IBRD
## 262            IBRD
## 263            IBRD
## 264            IBRD
## 265            IBRD
## 266            IBRD
## 267            IBRD
## 268            IBRD
## 269            IBRD
## 270            IBRD
## 271            IBRD
## 272            IBRD
## 273            IBRD
## 274            IBRD
## 275            IBRD
## 276            IBRD
## 277            IBRD
## 278            IBRD
## 279            IBRD
## 280            IBRD
## 281            IBRD
## 282            IBRD
## 283            IBRD
## 284            IBRD
## 285            IBRD
## 286            IBRD
## 287            IBRD
## 288            IBRD
## 289            IBRD
## 290            IBRD
## 291            IBRD
## 292            IBRD
## 293            IBRD
## 294            IBRD
## 295            IBRD
## 296            IBRD
## 297            IBRD
## 298            IBRD
## 299            IBRD
## 300            IBRD
## 301            IBRD
## 302            IBRD
## 303            IBRD
## 304            IBRD
## 305            IBRD
## 306            IBRD
## 307            IBRD
## 308            IBRD
## 309            IBRD
## 310            IBRD
## 311            IBRD
## 312            IBRD
## 313            IBRD
## 314            IBRD
## 315            IBRD
## 316  Not classified
## 317  Not classified
## 318  Not classified
## 319  Not classified
## 320  Not classified
## 321  Not classified
## 322  Not classified
## 323  Not classified
## 324  Not classified
## 325  Not classified
## 326  Not classified
## 327  Not classified
## 328  Not classified
## 329  Not classified
## 330  Not classified
## 331  Not classified
## 332  Not classified
## 333  Not classified
## 334  Not classified
## 335  Not classified
## 336  Not classified
## 337  Not classified
## 338  Not classified
## 339  Not classified
## 340  Not classified
## 341  Not classified
## 342  Not classified
## 343  Not classified
## 344  Not classified
## 345  Not classified
## 346  Not classified
## 347  Not classified
## 348  Not classified
## 349  Not classified
## 350  Not classified
## 351  Not classified
## 352  Not classified
## 353  Not classified
## 354  Not classified
## 355  Not classified
## 356  Not classified
## 357  Not classified
## 358  Not classified
## 359  Not classified
## 360  Not classified
## 361  Not classified
## 362  Not classified
## 363  Not classified
## 364  Not classified
## 365  Not classified
## 366  Not classified
## 367  Not classified
## 368  Not classified
## 369  Not classified
## 370  Not classified
## 371  Not classified
## 372  Not classified
## 373  Not classified
## 374  Not classified
## 375  Not classified
## 376  Not classified
## 377  Not classified
## 378  Not classified
## 379  Not classified
## 380  Not classified
## 381  Not classified
## 382  Not classified
## 383  Not classified
## 384  Not classified
## 385  Not classified
## 386  Not classified
## 387  Not classified
## 388  Not classified
## 389  Not classified
## 390  Not classified
## 391  Not classified
## 392  Not classified
## 393  Not classified
## 394  Not classified
## 395  Not classified
## 396  Not classified
## 397  Not classified
## 398  Not classified
## 399  Not classified
## 400  Not classified
## 401  Not classified
## 402  Not classified
## 403  Not classified
## 404  Not classified
## 405  Not classified
## 406  Not classified
## 407  Not classified
## 408  Not classified
## 409  Not classified
## 410  Not classified
## 411  Not classified
## 412  Not classified
## 413  Not classified
## 414  Not classified
## 415  Not classified
## 416  Not classified
## 417  Not classified
## 418  Not classified
## 419  Not classified
## 420  Not classified
## 421  Not classified
## 422  Not classified
## 423  Not classified
## 424  Not classified
## 425  Not classified
## 426  Not classified
## 427  Not classified
## 428  Not classified
## 429  Not classified
## 430  Not classified
## 431  Not classified
## 432  Not classified
## 433  Not classified
## 434  Not classified
## 435  Not classified
## 436  Not classified
## 437  Not classified
## 438  Not classified
## 439  Not classified
## 440  Not classified
## 441  Not classified
## 442            IBRD
## 443            IBRD
## 444            IBRD
## 445            IBRD
## 446            IBRD
## 447            IBRD
## 448            IBRD
## 449            IBRD
## 450            IBRD
## 451            IBRD
## 452            IBRD
## 453            IBRD
## 454            IBRD
## 455            IBRD
## 456            IBRD
## 457            IBRD
## 458            IBRD
## 459            IBRD
## 460            IBRD
## 461            IBRD
## 462            IBRD
## 463            IBRD
## 464            IBRD
## 465            IBRD
## 466            IBRD
## 467            IBRD
## 468            IBRD
## 469            IBRD
## 470            IBRD
## 471            IBRD
## 472            IBRD
## 473            IBRD
## 474            IBRD
## 475            IBRD
## 476            IBRD
## 477            IBRD
## 478            IBRD
## 479            IBRD
## 480            IBRD
## 481            IBRD
## 482            IBRD
## 483            IBRD
## 484            IBRD
## 485            IBRD
## 486            IBRD
## 487            IBRD
## 488            IBRD
## 489            IBRD
## 490            IBRD
## 491            IBRD
## 492            IBRD
## 493            IBRD
## 494            IBRD
## 495            IBRD
## 496            IBRD
## 497            IBRD
## 498            IBRD
## 499            IBRD
## 500            IBRD
## 501            IBRD
## 502            IBRD
## 503            IBRD
## 504            IBRD
## 505            IBRD
## 506            IBRD
## 507            IBRD
## 508            IBRD
## 509            IBRD
## 510            IBRD
## 511            IBRD
## 512            IBRD
## 513            IBRD
## 514            IBRD
## 515            IBRD
## 516            IBRD
## 517            IBRD
## 518            IBRD
## 519            IBRD
## 520            IBRD
## 521            IBRD
## 522            IBRD
## 523            IBRD
## 524            IBRD
## 525            IBRD
## 526            IBRD
## 527            IBRD
## 528            IBRD
## 529            IBRD
## 530            IBRD
## 531            IBRD
## 532            IBRD
## 533            IBRD
## 534            IBRD
## 535            IBRD
## 536            IBRD
## 537            IBRD
## 538            IBRD
## 539            IBRD
## 540            IBRD
## 541            IBRD
## 542            IBRD
## 543            IBRD
## 544            IBRD
## 545            IBRD
## 546            IBRD
## 547            IBRD
## 548            IBRD
## 549            IBRD
## 550            IBRD
## 551            IBRD
## 552            IBRD
## 553            IBRD
## 554            IBRD
## 555            IBRD
## 556            IBRD
## 557            IBRD
## 558            IBRD
## 559            IBRD
## 560            IBRD
## 561            IBRD
## 562            IBRD
## 563            IBRD
## 564            IBRD
## 565            IBRD
## 566            IBRD
## 567            IBRD
## 568      Aggregates
## 569      Aggregates
## 570      Aggregates
## 571      Aggregates
## 572      Aggregates
## 573      Aggregates
## 574      Aggregates
## 575      Aggregates
## 576      Aggregates
## 577      Aggregates
## 578      Aggregates
## 579      Aggregates
## 580      Aggregates
## 581      Aggregates
## 582      Aggregates
## 583      Aggregates
## 584      Aggregates
## 585      Aggregates
## 586      Aggregates
## 587      Aggregates
## 588      Aggregates
## 589      Aggregates
## 590      Aggregates
## 591      Aggregates
## 592      Aggregates
## 593      Aggregates
## 594      Aggregates
## 595      Aggregates
## 596      Aggregates
## 597      Aggregates
## 598      Aggregates
## 599      Aggregates
## 600      Aggregates
## 601      Aggregates
## 602      Aggregates
## 603      Aggregates
## 604      Aggregates
## 605      Aggregates
## 606      Aggregates
## 607      Aggregates
## 608      Aggregates
## 609      Aggregates
## 610      Aggregates
## 611      Aggregates
## 612      Aggregates
## 613      Aggregates
## 614      Aggregates
## 615      Aggregates
## 616      Aggregates
## 617      Aggregates
## 618      Aggregates
## 619      Aggregates
## 620      Aggregates
## 621      Aggregates
## 622      Aggregates
## 623      Aggregates
## 624      Aggregates
## 625      Aggregates
## 626      Aggregates
## 627      Aggregates
## 628      Aggregates
## 629      Aggregates
## 630      Aggregates
## 631            IBRD
## 632            IBRD
## 633            IBRD
## 634            IBRD
## 635            IBRD
## 636            IBRD
## 637            IBRD
## 638            IBRD
## 639            IBRD
## 640            IBRD
## 641            IBRD
## 642            IBRD
## 643            IBRD
## 644            IBRD
## 645            IBRD
## 646            IBRD
## 647            IBRD
## 648            IBRD
## 649            IBRD
## 650            IBRD
## 651            IBRD
## 652            IBRD
## 653            IBRD
## 654            IBRD
## 655            IBRD
## 656            IBRD
## 657            IBRD
## 658            IBRD
## 659            IBRD
## 660            IBRD
## 661            IBRD
## 662            IBRD
## 663            IBRD
## 664            IBRD
## 665            IBRD
## 666            IBRD
## 667            IBRD
## 668            IBRD
## 669            IBRD
## 670            IBRD
## 671            IBRD
## 672            IBRD
## 673            IBRD
## 674            IBRD
## 675            IBRD
## 676            IBRD
## 677            IBRD
## 678            IBRD
## 679            IBRD
## 680            IBRD
## 681            IBRD
## 682            IBRD
## 683            IBRD
## 684            IBRD
## 685            IBRD
## 686            IBRD
## 687            IBRD
## 688            IBRD
## 689            IBRD
## 690            IBRD
## 691            IBRD
## 692            IBRD
## 693            IBRD
## 694            IBRD
## 695            IBRD
## 696            IBRD
## 697            IBRD
## 698            IBRD
## 699            IBRD
## 700            IBRD
## 701            IBRD
## 702            IBRD
## 703            IBRD
## 704            IBRD
## 705            IBRD
## 706            IBRD
## 707            IBRD
## 708            IBRD
## 709            IBRD
## 710            IBRD
## 711            IBRD
## 712            IBRD
## 713            IBRD
## 714            IBRD
## 715            IBRD
## 716            IBRD
## 717            IBRD
## 718            IBRD
## 719            IBRD
## 720            IBRD
## 721            IBRD
## 722            IBRD
## 723            IBRD
## 724            IBRD
## 725            IBRD
## 726            IBRD
## 727            IBRD
## 728            IBRD
## 729            IBRD
## 730            IBRD
## 731            IBRD
## 732            IBRD
## 733            IBRD
## 734            IBRD
## 735            IBRD
## 736            IBRD
## 737            IBRD
## 738            IBRD
## 739            IBRD
## 740            IBRD
## 741            IBRD
## 742            IBRD
## 743            IBRD
## 744            IBRD
## 745            IBRD
## 746            IBRD
## 747            IBRD
## 748            IBRD
## 749            IBRD
## 750            IBRD
## 751            IBRD
## 752            IBRD
## 753            IBRD
## 754            IBRD
## 755            IBRD
## 756            IBRD
## 757  Not classified
## 758  Not classified
## 759  Not classified
## 760  Not classified
## 761  Not classified
## 762  Not classified
## 763  Not classified
## 764  Not classified
## 765  Not classified
## 766  Not classified
## 767  Not classified
## 768  Not classified
## 769  Not classified
## 770  Not classified
## 771  Not classified
## 772  Not classified
## 773  Not classified
## 774  Not classified
## 775  Not classified
## 776  Not classified
## 777  Not classified
## 778  Not classified
## 779  Not classified
## 780  Not classified
## 781  Not classified
## 782  Not classified
## 783  Not classified
## 784  Not classified
## 785  Not classified
## 786  Not classified
## 787  Not classified
## 788  Not classified
## 789  Not classified
## 790  Not classified
## 791  Not classified
## 792  Not classified
## 793  Not classified
## 794  Not classified
## 795  Not classified
## 796  Not classified
## 797  Not classified
## 798  Not classified
## 799  Not classified
## 800  Not classified
## 801  Not classified
## 802  Not classified
## 803  Not classified
## 804  Not classified
## 805  Not classified
## 806  Not classified
## 807  Not classified
## 808  Not classified
## 809  Not classified
## 810  Not classified
## 811  Not classified
## 812  Not classified
## 813  Not classified
## 814  Not classified
## 815  Not classified
## 816  Not classified
## 817  Not classified
## 818  Not classified
## 819  Not classified
## 820  Not classified
## 821  Not classified
## 822  Not classified
## 823  Not classified
## 824  Not classified
## 825  Not classified
## 826  Not classified
## 827  Not classified
## 828  Not classified
## 829  Not classified
## 830  Not classified
## 831  Not classified
## 832  Not classified
## 833  Not classified
## 834  Not classified
## 835  Not classified
## 836  Not classified
## 837  Not classified
## 838  Not classified
## 839  Not classified
## 840  Not classified
## 841  Not classified
## 842  Not classified
## 843  Not classified
## 844  Not classified
## 845  Not classified
## 846  Not classified
## 847  Not classified
## 848  Not classified
## 849  Not classified
## 850  Not classified
## 851  Not classified
## 852  Not classified
## 853  Not classified
## 854  Not classified
## 855  Not classified
## 856  Not classified
## 857  Not classified
## 858  Not classified
## 859  Not classified
## 860  Not classified
## 861  Not classified
## 862  Not classified
## 863  Not classified
## 864  Not classified
## 865  Not classified
## 866  Not classified
## 867  Not classified
## 868  Not classified
## 869  Not classified
## 870  Not classified
## 871  Not classified
## 872  Not classified
## 873  Not classified
## 874  Not classified
## 875  Not classified
## 876  Not classified
## 877  Not classified
## 878  Not classified
## 879  Not classified
## 880  Not classified
## 881  Not classified
## 882  Not classified
## 883  Not classified
## 884  Not classified
## 885  Not classified
## 886  Not classified
## 887  Not classified
## 888  Not classified
## 889  Not classified
## 890  Not classified
## 891  Not classified
## 892  Not classified
## 893  Not classified
## 894  Not classified
## 895  Not classified
## 896  Not classified
## 897  Not classified
## 898  Not classified
## 899  Not classified
## 900  Not classified
## 901  Not classified
## 902  Not classified
## 903  Not classified
## 904  Not classified
## 905  Not classified
## 906  Not classified
## 907  Not classified
## 908  Not classified
## 909  Not classified
## 910  Not classified
## 911  Not classified
## 912  Not classified
## 913  Not classified
## 914  Not classified
## 915  Not classified
## 916  Not classified
## 917  Not classified
## 918  Not classified
## 919  Not classified
## 920  Not classified
## 921  Not classified
## 922  Not classified
## 923  Not classified
## 924  Not classified
## 925  Not classified
## 926  Not classified
## 927  Not classified
## 928  Not classified
## 929  Not classified
## 930  Not classified
## 931  Not classified
## 932  Not classified
## 933  Not classified
## 934  Not classified
## 935  Not classified
## 936  Not classified
## 937  Not classified
## 938  Not classified
## 939  Not classified
## 940  Not classified
## 941  Not classified
## 942  Not classified
## 943  Not classified
## 944  Not classified
## 945  Not classified
## 946            IBRD
## 947            IBRD
## 948            IBRD
## 949            IBRD
## 950            IBRD
## 951            IBRD
## 952            IBRD
## 953            IBRD
## 954            IBRD
## 955            IBRD
## 956            IBRD
## 957            IBRD
## 958            IBRD
## 959            IBRD
## 960            IBRD
## 961            IBRD
## 962            IBRD
## 963            IBRD
## 964            IBRD
## 965            IBRD
## 966            IBRD
## 967            IBRD
## 968            IBRD
## 969            IBRD
## 970            IBRD
## 971            IBRD
## 972            IBRD
## 973            IBRD
## 974            IBRD
## 975            IBRD
## 976            IBRD
## 977            IBRD
## 978            IBRD
## 979            IBRD
## 980            IBRD
## 981            IBRD
## 982            IBRD
## 983            IBRD
## 984            IBRD
## 985            IBRD
## 986            IBRD
## 987            IBRD
## 988            IBRD
## 989            IBRD
## 990            IBRD
## 991            IBRD
## 992            IBRD
## 993            IBRD
## 994            IBRD
## 995            IBRD
## 996            IBRD
## 997            IBRD
## 998            IBRD
## 999            IBRD
## 1000           IBRD
## 1001           IBRD
## 1002           IBRD
## 1003           IBRD
## 1004           IBRD
## 1005           IBRD
## 1006           IBRD
## 1007           IBRD
## 1008           IBRD
## 1009 Not classified
## 1010 Not classified
## 1011 Not classified
## 1012 Not classified
## 1013 Not classified
## 1014 Not classified
## 1015 Not classified
## 1016 Not classified
## 1017 Not classified
## 1018 Not classified
## 1019 Not classified
## 1020 Not classified
## 1021 Not classified
## 1022 Not classified
## 1023 Not classified
## 1024 Not classified
## 1025 Not classified
## 1026 Not classified
## 1027 Not classified
## 1028 Not classified
## 1029 Not classified
## 1030 Not classified
## 1031 Not classified
## 1032 Not classified
## 1033 Not classified
## 1034 Not classified
## 1035 Not classified
## 1036 Not classified
## 1037 Not classified
## 1038 Not classified
## 1039 Not classified
## 1040 Not classified
## 1041 Not classified
## 1042 Not classified
## 1043 Not classified
## 1044 Not classified
## 1045 Not classified
## 1046 Not classified
## 1047 Not classified
## 1048 Not classified
## 1049 Not classified
## 1050 Not classified
## 1051 Not classified
## 1052 Not classified
## 1053 Not classified
## 1054 Not classified
## 1055 Not classified
## 1056 Not classified
## 1057 Not classified
## 1058 Not classified
## 1059 Not classified
## 1060 Not classified
## 1061 Not classified
## 1062 Not classified
## 1063 Not classified
## 1064 Not classified
## 1065 Not classified
## 1066 Not classified
## 1067 Not classified
## 1068 Not classified
## 1069 Not classified
## 1070 Not classified
## 1071 Not classified
## 1072 Not classified
## 1073 Not classified
## 1074 Not classified
## 1075 Not classified
## 1076 Not classified
## 1077 Not classified
## 1078 Not classified
## 1079 Not classified
## 1080 Not classified
## 1081 Not classified
## 1082 Not classified
## 1083 Not classified
## 1084 Not classified
## 1085 Not classified
## 1086 Not classified
## 1087 Not classified
## 1088 Not classified
## 1089 Not classified
## 1090 Not classified
## 1091 Not classified
## 1092 Not classified
## 1093 Not classified
## 1094 Not classified
## 1095 Not classified
## 1096 Not classified
## 1097 Not classified
## 1098 Not classified
## 1099 Not classified
## 1100 Not classified
## 1101 Not classified
## 1102 Not classified
## 1103 Not classified
## 1104 Not classified
## 1105 Not classified
## 1106 Not classified
## 1107 Not classified
## 1108 Not classified
## 1109 Not classified
## 1110 Not classified
## 1111 Not classified
## 1112 Not classified
## 1113 Not classified
## 1114 Not classified
## 1115 Not classified
## 1116 Not classified
## 1117 Not classified
## 1118 Not classified
## 1119 Not classified
## 1120 Not classified
## 1121 Not classified
## 1122 Not classified
## 1123 Not classified
## 1124 Not classified
## 1125 Not classified
## 1126 Not classified
## 1127 Not classified
## 1128 Not classified
## 1129 Not classified
## 1130 Not classified
## 1131 Not classified
## 1132 Not classified
## 1133 Not classified
## 1134 Not classified
## 1135            IDA
## 1136            IDA
## 1137            IDA
## 1138            IDA
## 1139            IDA
## 1140            IDA
## 1141            IDA
## 1142            IDA
## 1143            IDA
## 1144            IDA
## 1145            IDA
## 1146            IDA
## 1147            IDA
## 1148            IDA
## 1149            IDA
## 1150            IDA
## 1151            IDA
## 1152            IDA
## 1153            IDA
## 1154            IDA
## 1155            IDA
## 1156            IDA
## 1157            IDA
## 1158            IDA
## 1159            IDA
## 1160            IDA
## 1161            IDA
## 1162            IDA
## 1163            IDA
## 1164            IDA
## 1165            IDA
## 1166            IDA
## 1167            IDA
## 1168            IDA
## 1169            IDA
## 1170            IDA
## 1171            IDA
## 1172            IDA
## 1173            IDA
## 1174            IDA
## 1175            IDA
## 1176            IDA
## 1177            IDA
## 1178            IDA
## 1179            IDA
## 1180            IDA
## 1181            IDA
## 1182            IDA
## 1183            IDA
## 1184            IDA
## 1185            IDA
## 1186            IDA
## 1187            IDA
## 1188            IDA
## 1189            IDA
## 1190            IDA
## 1191            IDA
## 1192            IDA
## 1193            IDA
## 1194            IDA
## 1195            IDA
## 1196            IDA
## 1197            IDA
## 1198 Not classified
## 1199 Not classified
## 1200 Not classified
## 1201 Not classified
## 1202 Not classified
## 1203 Not classified
## 1204 Not classified
## 1205 Not classified
## 1206 Not classified
## 1207 Not classified
## 1208 Not classified
## 1209 Not classified
## 1210 Not classified
## 1211 Not classified
## 1212 Not classified
## 1213 Not classified
## 1214 Not classified
## 1215 Not classified
## 1216 Not classified
## 1217 Not classified
## 1218 Not classified
## 1219 Not classified
## 1220 Not classified
## 1221 Not classified
## 1222 Not classified
## 1223 Not classified
## 1224 Not classified
## 1225 Not classified
## 1226 Not classified
## 1227 Not classified
## 1228 Not classified
## 1229 Not classified
## 1230 Not classified
## 1231 Not classified
## 1232 Not classified
## 1233 Not classified
## 1234 Not classified
## 1235 Not classified
## 1236 Not classified
## 1237 Not classified
## 1238 Not classified
## 1239 Not classified
## 1240 Not classified
## 1241 Not classified
## 1242 Not classified
## 1243 Not classified
## 1244 Not classified
## 1245 Not classified
## 1246 Not classified
## 1247 Not classified
## 1248 Not classified
## 1249 Not classified
## 1250 Not classified
## 1251 Not classified
## 1252 Not classified
## 1253 Not classified
## 1254 Not classified
## 1255 Not classified
## 1256 Not classified
## 1257 Not classified
## 1258 Not classified
## 1259 Not classified
## 1260 Not classified
## 1261           IBRD
## 1262           IBRD
## 1263           IBRD
## 1264           IBRD
## 1265           IBRD
## 1266           IBRD
## 1267           IBRD
## 1268           IBRD
## 1269           IBRD
## 1270           IBRD
## 1271           IBRD
## 1272           IBRD
## 1273           IBRD
## 1274           IBRD
## 1275           IBRD
## 1276           IBRD
## 1277           IBRD
## 1278           IBRD
## 1279           IBRD
## 1280           IBRD
## 1281           IBRD
## 1282           IBRD
## 1283           IBRD
## 1284           IBRD
## 1285           IBRD
## 1286           IBRD
## 1287           IBRD
## 1288           IBRD
## 1289           IBRD
## 1290           IBRD
## 1291           IBRD
## 1292           IBRD
## 1293           IBRD
## 1294           IBRD
## 1295           IBRD
## 1296           IBRD
## 1297           IBRD
## 1298           IBRD
## 1299           IBRD
## 1300           IBRD
## 1301           IBRD
## 1302           IBRD
## 1303           IBRD
## 1304           IBRD
## 1305           IBRD
## 1306           IBRD
## 1307           IBRD
## 1308           IBRD
## 1309           IBRD
## 1310           IBRD
## 1311           IBRD
## 1312           IBRD
## 1313           IBRD
## 1314           IBRD
## 1315           IBRD
## 1316           IBRD
## 1317           IBRD
## 1318           IBRD
## 1319           IBRD
## 1320           IBRD
## 1321           IBRD
## 1322           IBRD
## 1323           IBRD
## 1324 Not classified
## 1325 Not classified
## 1326 Not classified
## 1327 Not classified
## 1328 Not classified
## 1329 Not classified
## 1330 Not classified
## 1331 Not classified
## 1332 Not classified
## 1333 Not classified
## 1334 Not classified
## 1335 Not classified
## 1336 Not classified
## 1337 Not classified
## 1338 Not classified
## 1339 Not classified
## 1340 Not classified
## 1341 Not classified
## 1342 Not classified
## 1343 Not classified
## 1344 Not classified
## 1345 Not classified
## 1346 Not classified
## 1347 Not classified
## 1348 Not classified
## 1349 Not classified
## 1350 Not classified
## 1351 Not classified
## 1352 Not classified
## 1353 Not classified
## 1354 Not classified
## 1355 Not classified
## 1356 Not classified
## 1357 Not classified
## 1358 Not classified
## 1359 Not classified
## 1360 Not classified
## 1361 Not classified
## 1362 Not classified
## 1363 Not classified
## 1364 Not classified
## 1365 Not classified
## 1366 Not classified
## 1367 Not classified
## 1368 Not classified
## 1369 Not classified
## 1370 Not classified
## 1371 Not classified
## 1372 Not classified
## 1373 Not classified
## 1374 Not classified
## 1375 Not classified
## 1376 Not classified
## 1377 Not classified
## 1378 Not classified
## 1379 Not classified
## 1380 Not classified
## 1381 Not classified
## 1382 Not classified
## 1383 Not classified
## 1384 Not classified
## 1385 Not classified
## 1386 Not classified
## 1387           IBRD
## 1388           IBRD
## 1389           IBRD
## 1390           IBRD
## 1391           IBRD
## 1392           IBRD
## 1393           IBRD
## 1394           IBRD
## 1395           IBRD
## 1396           IBRD
## 1397           IBRD
## 1398           IBRD
## 1399           IBRD
## 1400           IBRD
## 1401           IBRD
## 1402           IBRD
## 1403           IBRD
## 1404           IBRD
## 1405           IBRD
## 1406           IBRD
## 1407           IBRD
## 1408           IBRD
## 1409           IBRD
## 1410           IBRD
## 1411           IBRD
## 1412           IBRD
## 1413           IBRD
## 1414           IBRD
## 1415           IBRD
## 1416           IBRD
## 1417           IBRD
## 1418           IBRD
## 1419           IBRD
## 1420           IBRD
## 1421           IBRD
## 1422           IBRD
## 1423           IBRD
## 1424           IBRD
## 1425           IBRD
## 1426           IBRD
## 1427           IBRD
## 1428           IBRD
## 1429           IBRD
## 1430           IBRD
## 1431           IBRD
## 1432           IBRD
## 1433           IBRD
## 1434           IBRD
## 1435           IBRD
## 1436           IBRD
## 1437           IBRD
## 1438           IBRD
## 1439           IBRD
## 1440           IBRD
## 1441           IBRD
## 1442           IBRD
## 1443           IBRD
## 1444           IBRD
## 1445           IBRD
## 1446           IBRD
## 1447           IBRD
## 1448           IBRD
## 1449           IBRD
## 1450            IDA
## 1451            IDA
## 1452            IDA
## 1453            IDA
## 1454            IDA
## 1455            IDA
## 1456            IDA
## 1457            IDA
## 1458            IDA
## 1459            IDA
## 1460            IDA
## 1461            IDA
## 1462            IDA
## 1463            IDA
## 1464            IDA
## 1465            IDA
## 1466            IDA
## 1467            IDA
## 1468            IDA
## 1469            IDA
## 1470            IDA
## 1471            IDA
## 1472            IDA
## 1473            IDA
## 1474            IDA
## 1475            IDA
## 1476            IDA
## 1477            IDA
## 1478            IDA
## 1479            IDA
## 1480            IDA
## 1481            IDA
## 1482            IDA
## 1483            IDA
## 1484            IDA
## 1485            IDA
## 1486            IDA
## 1487            IDA
## 1488            IDA
## 1489            IDA
## 1490            IDA
## 1491            IDA
## 1492            IDA
## 1493            IDA
## 1494            IDA
## 1495            IDA
## 1496            IDA
## 1497            IDA
## 1498            IDA
## 1499            IDA
## 1500            IDA
## 1501            IDA
## 1502            IDA
## 1503            IDA
## 1504            IDA
## 1505            IDA
## 1506            IDA
## 1507            IDA
## 1508            IDA
## 1509            IDA
## 1510            IDA
## 1511            IDA
## 1512            IDA
## 1513 Not classified
## 1514 Not classified
## 1515 Not classified
## 1516 Not classified
## 1517 Not classified
## 1518 Not classified
## 1519 Not classified
## 1520 Not classified
## 1521 Not classified
## 1522 Not classified
## 1523 Not classified
## 1524 Not classified
## 1525 Not classified
## 1526 Not classified
## 1527 Not classified
## 1528 Not classified
## 1529 Not classified
## 1530 Not classified
## 1531 Not classified
## 1532 Not classified
## 1533 Not classified
## 1534 Not classified
## 1535 Not classified
## 1536 Not classified
## 1537 Not classified
## 1538 Not classified
## 1539 Not classified
## 1540 Not classified
## 1541 Not classified
## 1542 Not classified
## 1543 Not classified
## 1544 Not classified
## 1545 Not classified
## 1546 Not classified
## 1547 Not classified
## 1548 Not classified
## 1549 Not classified
## 1550 Not classified
## 1551 Not classified
## 1552 Not classified
## 1553 Not classified
## 1554 Not classified
## 1555 Not classified
## 1556 Not classified
## 1557 Not classified
## 1558 Not classified
## 1559 Not classified
## 1560 Not classified
## 1561 Not classified
## 1562 Not classified
## 1563 Not classified
## 1564 Not classified
## 1565 Not classified
## 1566 Not classified
## 1567 Not classified
## 1568 Not classified
## 1569 Not classified
## 1570 Not classified
## 1571 Not classified
## 1572 Not classified
## 1573 Not classified
## 1574 Not classified
## 1575 Not classified
## 1576            IDA
## 1577            IDA
## 1578            IDA
## 1579            IDA
## 1580            IDA
## 1581            IDA
## 1582            IDA
## 1583            IDA
## 1584            IDA
## 1585            IDA
## 1586            IDA
## 1587            IDA
## 1588            IDA
## 1589            IDA
## 1590            IDA
## 1591            IDA
## 1592            IDA
## 1593            IDA
## 1594            IDA
## 1595            IDA
## 1596            IDA
## 1597            IDA
## 1598            IDA
## 1599            IDA
## 1600            IDA
## 1601            IDA
## 1602            IDA
## 1603            IDA
## 1604            IDA
## 1605            IDA
## 1606            IDA
## 1607            IDA
## 1608            IDA
## 1609            IDA
## 1610            IDA
## 1611            IDA
## 1612            IDA
## 1613            IDA
## 1614            IDA
## 1615            IDA
## 1616            IDA
## 1617            IDA
## 1618            IDA
## 1619            IDA
## 1620            IDA
## 1621            IDA
## 1622            IDA
## 1623            IDA
## 1624            IDA
## 1625            IDA
## 1626            IDA
## 1627            IDA
## 1628            IDA
## 1629            IDA
## 1630            IDA
## 1631            IDA
## 1632            IDA
## 1633            IDA
## 1634            IDA
## 1635            IDA
## 1636            IDA
## 1637            IDA
## 1638            IDA
## 1639           IBRD
## 1640           IBRD
## 1641           IBRD
## 1642           IBRD
## 1643           IBRD
## 1644           IBRD
## 1645           IBRD
## 1646           IBRD
## 1647           IBRD
## 1648           IBRD
## 1649           IBRD
## 1650           IBRD
## 1651           IBRD
## 1652           IBRD
## 1653           IBRD
## 1654           IBRD
## 1655           IBRD
## 1656           IBRD
## 1657           IBRD
## 1658           IBRD
## 1659           IBRD
## 1660           IBRD
## 1661           IBRD
## 1662           IBRD
## 1663           IBRD
## 1664           IBRD
## 1665           IBRD
## 1666           IBRD
## 1667           IBRD
## 1668           IBRD
## 1669           IBRD
## 1670           IBRD
## 1671           IBRD
## 1672           IBRD
## 1673           IBRD
## 1674           IBRD
## 1675           IBRD
## 1676           IBRD
## 1677           IBRD
## 1678           IBRD
## 1679           IBRD
## 1680           IBRD
## 1681           IBRD
## 1682           IBRD
## 1683           IBRD
## 1684           IBRD
## 1685           IBRD
## 1686           IBRD
## 1687           IBRD
## 1688           IBRD
## 1689           IBRD
## 1690           IBRD
## 1691           IBRD
## 1692           IBRD
## 1693           IBRD
## 1694           IBRD
## 1695           IBRD
## 1696           IBRD
## 1697           IBRD
## 1698           IBRD
## 1699           IBRD
## 1700           IBRD
## 1701           IBRD
## 1702           IBRD
## 1703           IBRD
## 1704           IBRD
## 1705           IBRD
## 1706           IBRD
## 1707           IBRD
## 1708           IBRD
## 1709           IBRD
## 1710           IBRD
## 1711           IBRD
## 1712           IBRD
## 1713           IBRD
## 1714           IBRD
## 1715           IBRD
## 1716           IBRD
## 1717           IBRD
## 1718           IBRD
## 1719           IBRD
## 1720           IBRD
## 1721           IBRD
## 1722           IBRD
## 1723           IBRD
## 1724           IBRD
## 1725           IBRD
## 1726           IBRD
## 1727           IBRD
## 1728           IBRD
## 1729           IBRD
## 1730           IBRD
## 1731           IBRD
## 1732           IBRD
## 1733           IBRD
## 1734           IBRD
## 1735           IBRD
## 1736           IBRD
## 1737           IBRD
## 1738           IBRD
## 1739           IBRD
## 1740           IBRD
## 1741           IBRD
## 1742           IBRD
## 1743           IBRD
## 1744           IBRD
## 1745           IBRD
## 1746           IBRD
## 1747           IBRD
## 1748           IBRD
## 1749           IBRD
## 1750           IBRD
## 1751           IBRD
## 1752           IBRD
## 1753           IBRD
## 1754           IBRD
## 1755           IBRD
## 1756           IBRD
## 1757           IBRD
## 1758           IBRD
## 1759           IBRD
## 1760           IBRD
## 1761           IBRD
## 1762           IBRD
## 1763           IBRD
## 1764           IBRD
## 1765           IBRD
## 1766           IBRD
## 1767           IBRD
## 1768           IBRD
## 1769           IBRD
## 1770           IBRD
## 1771           IBRD
## 1772           IBRD
## 1773           IBRD
## 1774           IBRD
## 1775           IBRD
## 1776           IBRD
## 1777           IBRD
## 1778           IBRD
## 1779           IBRD
## 1780           IBRD
## 1781           IBRD
## 1782           IBRD
## 1783           IBRD
## 1784           IBRD
## 1785           IBRD
## 1786           IBRD
## 1787           IBRD
## 1788           IBRD
## 1789           IBRD
## 1790           IBRD
## 1791           IBRD
## 1792           IBRD
## 1793           IBRD
## 1794           IBRD
## 1795           IBRD
## 1796           IBRD
## 1797           IBRD
## 1798           IBRD
## 1799           IBRD
## 1800           IBRD
## 1801           IBRD
## 1802           IBRD
## 1803           IBRD
## 1804           IBRD
## 1805           IBRD
## 1806           IBRD
## 1807           IBRD
## 1808           IBRD
## 1809           IBRD
## 1810           IBRD
## 1811           IBRD
## 1812           IBRD
## 1813           IBRD
## 1814           IBRD
## 1815           IBRD
## 1816           IBRD
## 1817           IBRD
## 1818           IBRD
## 1819           IBRD
## 1820           IBRD
## 1821           IBRD
## 1822           IBRD
## 1823           IBRD
## 1824           IBRD
## 1825           IBRD
## 1826           IBRD
## 1827           IBRD
## 1828           IBRD
## 1829           IBRD
## 1830           IBRD
## 1831           IBRD
## 1832           IBRD
## 1833           IBRD
## 1834           IBRD
## 1835           IBRD
## 1836           IBRD
## 1837           IBRD
## 1838           IBRD
## 1839           IBRD
## 1840           IBRD
## 1841           IBRD
## 1842           IBRD
## 1843           IBRD
## 1844           IBRD
## 1845           IBRD
## 1846           IBRD
## 1847           IBRD
## 1848           IBRD
## 1849           IBRD
## 1850           IBRD
## 1851           IBRD
## 1852           IBRD
## 1853           IBRD
## 1854           IBRD
## 1855           IBRD
## 1856           IBRD
## 1857           IBRD
## 1858           IBRD
## 1859           IBRD
## 1860           IBRD
## 1861           IBRD
## 1862           IBRD
## 1863           IBRD
## 1864           IBRD
## 1865           IBRD
## 1866           IBRD
## 1867           IBRD
## 1868           IBRD
## 1869           IBRD
## 1870           IBRD
## 1871           IBRD
## 1872           IBRD
## 1873           IBRD
## 1874           IBRD
## 1875           IBRD
## 1876           IBRD
## 1877           IBRD
## 1878           IBRD
## 1879           IBRD
## 1880           IBRD
## 1881           IBRD
## 1882           IBRD
## 1883           IBRD
## 1884           IBRD
## 1885           IBRD
## 1886           IBRD
## 1887           IBRD
## 1888           IBRD
## 1889           IBRD
## 1890           IBRD
## 1891 Not classified
## 1892 Not classified
## 1893 Not classified
## 1894 Not classified
## 1895 Not classified
## 1896 Not classified
## 1897 Not classified
## 1898 Not classified
## 1899 Not classified
## 1900 Not classified
## 1901 Not classified
## 1902 Not classified
## 1903 Not classified
## 1904 Not classified
## 1905 Not classified
## 1906 Not classified
## 1907 Not classified
## 1908 Not classified
## 1909 Not classified
## 1910 Not classified
## 1911 Not classified
## 1912 Not classified
## 1913 Not classified
## 1914 Not classified
## 1915 Not classified
## 1916 Not classified
## 1917 Not classified
## 1918 Not classified
## 1919 Not classified
## 1920 Not classified
## 1921 Not classified
## 1922 Not classified
## 1923 Not classified
## 1924 Not classified
## 1925 Not classified
## 1926 Not classified
## 1927 Not classified
## 1928 Not classified
## 1929 Not classified
## 1930 Not classified
## 1931 Not classified
## 1932 Not classified
## 1933 Not classified
## 1934 Not classified
## 1935 Not classified
## 1936 Not classified
## 1937 Not classified
## 1938 Not classified
## 1939 Not classified
## 1940 Not classified
## 1941 Not classified
## 1942 Not classified
## 1943 Not classified
## 1944 Not classified
## 1945 Not classified
## 1946 Not classified
## 1947 Not classified
## 1948 Not classified
## 1949 Not classified
## 1950 Not classified
## 1951 Not classified
## 1952 Not classified
## 1953 Not classified
## 1954 Not classified
## 1955 Not classified
## 1956 Not classified
## 1957 Not classified
## 1958 Not classified
## 1959 Not classified
## 1960 Not classified
## 1961 Not classified
## 1962 Not classified
## 1963 Not classified
## 1964 Not classified
## 1965 Not classified
## 1966 Not classified
## 1967 Not classified
## 1968 Not classified
## 1969 Not classified
## 1970 Not classified
## 1971 Not classified
## 1972 Not classified
## 1973 Not classified
## 1974 Not classified
## 1975 Not classified
## 1976 Not classified
## 1977 Not classified
## 1978 Not classified
## 1979 Not classified
## 1980 Not classified
## 1981 Not classified
## 1982 Not classified
## 1983 Not classified
## 1984 Not classified
## 1985 Not classified
## 1986 Not classified
## 1987 Not classified
## 1988 Not classified
## 1989 Not classified
## 1990 Not classified
## 1991 Not classified
## 1992 Not classified
## 1993 Not classified
## 1994 Not classified
## 1995 Not classified
## 1996 Not classified
## 1997 Not classified
## 1998 Not classified
## 1999 Not classified
## 2000 Not classified
## 2001 Not classified
## 2002 Not classified
## 2003 Not classified
## 2004 Not classified
## 2005 Not classified
## 2006 Not classified
## 2007 Not classified
## 2008 Not classified
## 2009 Not classified
## 2010 Not classified
## 2011 Not classified
## 2012 Not classified
## 2013 Not classified
## 2014 Not classified
## 2015 Not classified
## 2016 Not classified
## 2017           IBRD
## 2018           IBRD
## 2019           IBRD
## 2020           IBRD
## 2021           IBRD
## 2022           IBRD
## 2023           IBRD
## 2024           IBRD
## 2025           IBRD
## 2026           IBRD
## 2027           IBRD
## 2028           IBRD
## 2029           IBRD
## 2030           IBRD
## 2031           IBRD
## 2032           IBRD
## 2033           IBRD
## 2034           IBRD
## 2035           IBRD
## 2036           IBRD
## 2037           IBRD
## 2038           IBRD
## 2039           IBRD
## 2040           IBRD
## 2041           IBRD
## 2042           IBRD
## 2043           IBRD
## 2044           IBRD
## 2045           IBRD
## 2046           IBRD
## 2047           IBRD
## 2048           IBRD
## 2049           IBRD
## 2050           IBRD
## 2051           IBRD
## 2052           IBRD
## 2053           IBRD
## 2054           IBRD
## 2055           IBRD
## 2056           IBRD
## 2057           IBRD
## 2058           IBRD
## 2059           IBRD
## 2060           IBRD
## 2061           IBRD
## 2062           IBRD
## 2063           IBRD
## 2064           IBRD
## 2065           IBRD
## 2066           IBRD
## 2067           IBRD
## 2068           IBRD
## 2069           IBRD
## 2070           IBRD
## 2071           IBRD
## 2072           IBRD
## 2073           IBRD
## 2074           IBRD
## 2075           IBRD
## 2076           IBRD
## 2077           IBRD
## 2078           IBRD
## 2079           IBRD
## 2080            IDA
## 2081            IDA
## 2082            IDA
## 2083            IDA
## 2084            IDA
## 2085            IDA
## 2086            IDA
## 2087            IDA
## 2088            IDA
## 2089            IDA
## 2090            IDA
## 2091            IDA
## 2092            IDA
## 2093            IDA
## 2094            IDA
## 2095            IDA
## 2096            IDA
## 2097            IDA
## 2098            IDA
## 2099            IDA
## 2100            IDA
## 2101            IDA
## 2102            IDA
## 2103            IDA
## 2104            IDA
## 2105            IDA
## 2106            IDA
## 2107            IDA
## 2108            IDA
## 2109            IDA
## 2110            IDA
## 2111            IDA
## 2112            IDA
## 2113            IDA
## 2114            IDA
## 2115            IDA
## 2116            IDA
## 2117            IDA
## 2118            IDA
## 2119            IDA
## 2120            IDA
## 2121            IDA
## 2122            IDA
## 2123            IDA
## 2124            IDA
## 2125            IDA
## 2126            IDA
## 2127            IDA
## 2128            IDA
## 2129            IDA
## 2130            IDA
## 2131            IDA
## 2132            IDA
## 2133            IDA
## 2134            IDA
## 2135            IDA
## 2136            IDA
## 2137            IDA
## 2138            IDA
## 2139            IDA
## 2140            IDA
## 2141            IDA
## 2142            IDA
## 2143            IDA
## 2144            IDA
## 2145            IDA
## 2146            IDA
## 2147            IDA
## 2148            IDA
## 2149            IDA
## 2150            IDA
## 2151            IDA
## 2152            IDA
## 2153            IDA
## 2154            IDA
## 2155            IDA
## 2156            IDA
## 2157            IDA
## 2158            IDA
## 2159            IDA
## 2160            IDA
## 2161            IDA
## 2162            IDA
## 2163            IDA
## 2164            IDA
## 2165            IDA
## 2166            IDA
## 2167            IDA
## 2168            IDA
## 2169            IDA
## 2170            IDA
## 2171            IDA
## 2172            IDA
## 2173            IDA
## 2174            IDA
## 2175            IDA
## 2176            IDA
## 2177            IDA
## 2178            IDA
## 2179            IDA
## 2180            IDA
## 2181            IDA
## 2182            IDA
## 2183            IDA
## 2184            IDA
## 2185            IDA
## 2186            IDA
## 2187            IDA
## 2188            IDA
## 2189            IDA
## 2190            IDA
## 2191            IDA
## 2192            IDA
## 2193            IDA
## 2194            IDA
## 2195            IDA
## 2196            IDA
## 2197            IDA
## 2198            IDA
## 2199            IDA
## 2200            IDA
## 2201            IDA
## 2202            IDA
## 2203            IDA
## 2204            IDA
## 2205            IDA
## 2206          Blend
## 2207          Blend
## 2208          Blend
## 2209          Blend
## 2210          Blend
## 2211          Blend
## 2212          Blend
## 2213          Blend
## 2214          Blend
## 2215          Blend
## 2216          Blend
## 2217          Blend
## 2218          Blend
## 2219          Blend
## 2220          Blend
## 2221          Blend
## 2222          Blend
## 2223          Blend
## 2224          Blend
## 2225          Blend
## 2226          Blend
## 2227          Blend
## 2228          Blend
## 2229          Blend
## 2230          Blend
## 2231          Blend
## 2232          Blend
## 2233          Blend
## 2234          Blend
## 2235          Blend
## 2236          Blend
## 2237          Blend
## 2238          Blend
## 2239          Blend
## 2240          Blend
## 2241          Blend
## 2242          Blend
## 2243          Blend
## 2244          Blend
## 2245          Blend
## 2246          Blend
## 2247          Blend
## 2248          Blend
## 2249          Blend
## 2250          Blend
## 2251          Blend
## 2252          Blend
## 2253          Blend
## 2254          Blend
## 2255          Blend
## 2256          Blend
## 2257          Blend
## 2258          Blend
## 2259          Blend
## 2260          Blend
## 2261          Blend
## 2262          Blend
## 2263          Blend
## 2264          Blend
## 2265          Blend
## 2266          Blend
## 2267          Blend
## 2268          Blend
## 2269            IDA
## 2270            IDA
## 2271            IDA
## 2272            IDA
## 2273            IDA
## 2274            IDA
## 2275            IDA
## 2276            IDA
## 2277            IDA
## 2278            IDA
## 2279            IDA
## 2280            IDA
## 2281            IDA
## 2282            IDA
## 2283            IDA
## 2284            IDA
## 2285            IDA
## 2286            IDA
## 2287            IDA
## 2288            IDA
## 2289            IDA
## 2290            IDA
## 2291            IDA
## 2292            IDA
## 2293            IDA
## 2294            IDA
## 2295            IDA
## 2296            IDA
## 2297            IDA
## 2298            IDA
## 2299            IDA
## 2300            IDA
## 2301            IDA
## 2302            IDA
## 2303            IDA
## 2304            IDA
## 2305            IDA
## 2306            IDA
## 2307            IDA
## 2308            IDA
## 2309            IDA
## 2310            IDA
## 2311            IDA
## 2312            IDA
## 2313            IDA
## 2314            IDA
## 2315            IDA
## 2316            IDA
## 2317            IDA
## 2318            IDA
## 2319            IDA
## 2320            IDA
## 2321            IDA
## 2322            IDA
## 2323            IDA
## 2324            IDA
## 2325            IDA
## 2326            IDA
## 2327            IDA
## 2328            IDA
## 2329            IDA
## 2330            IDA
## 2331            IDA
## 2332          Blend
## 2333          Blend
## 2334          Blend
## 2335          Blend
## 2336          Blend
## 2337          Blend
## 2338          Blend
## 2339          Blend
## 2340          Blend
## 2341          Blend
## 2342          Blend
## 2343          Blend
## 2344          Blend
## 2345          Blend
## 2346          Blend
## 2347          Blend
## 2348          Blend
## 2349          Blend
## 2350          Blend
## 2351          Blend
## 2352          Blend
## 2353          Blend
## 2354          Blend
## 2355          Blend
## 2356          Blend
## 2357          Blend
## 2358          Blend
## 2359          Blend
## 2360          Blend
## 2361          Blend
## 2362          Blend
## 2363          Blend
## 2364          Blend
## 2365          Blend
## 2366          Blend
## 2367          Blend
## 2368          Blend
## 2369          Blend
## 2370          Blend
## 2371          Blend
## 2372          Blend
## 2373          Blend
## 2374          Blend
## 2375          Blend
## 2376          Blend
## 2377          Blend
## 2378          Blend
## 2379          Blend
## 2380          Blend
## 2381          Blend
## 2382          Blend
## 2383          Blend
## 2384          Blend
## 2385          Blend
## 2386          Blend
## 2387          Blend
## 2388          Blend
## 2389          Blend
## 2390          Blend
## 2391          Blend
## 2392          Blend
## 2393          Blend
## 2394          Blend
## 2395 Not classified
## 2396 Not classified
## 2397 Not classified
## 2398 Not classified
## 2399 Not classified
## 2400 Not classified
## 2401 Not classified
## 2402 Not classified
## 2403 Not classified
## 2404 Not classified
## 2405 Not classified
## 2406 Not classified
## 2407 Not classified
## 2408 Not classified
## 2409 Not classified
## 2410 Not classified
## 2411 Not classified
## 2412 Not classified
## 2413 Not classified
## 2414 Not classified
## 2415 Not classified
## 2416 Not classified
## 2417 Not classified
## 2418 Not classified
## 2419 Not classified
## 2420 Not classified
## 2421 Not classified
## 2422 Not classified
## 2423 Not classified
## 2424 Not classified
## 2425 Not classified
## 2426 Not classified
## 2427 Not classified
## 2428 Not classified
## 2429 Not classified
## 2430 Not classified
## 2431 Not classified
## 2432 Not classified
## 2433 Not classified
## 2434 Not classified
## 2435 Not classified
## 2436 Not classified
## 2437 Not classified
## 2438 Not classified
## 2439 Not classified
## 2440 Not classified
## 2441 Not classified
## 2442 Not classified
## 2443 Not classified
## 2444 Not classified
## 2445 Not classified
## 2446 Not classified
## 2447 Not classified
## 2448 Not classified
## 2449 Not classified
## 2450 Not classified
## 2451 Not classified
## 2452 Not classified
## 2453 Not classified
## 2454 Not classified
## 2455 Not classified
## 2456 Not classified
## 2457 Not classified
## 2458     Aggregates
## 2459     Aggregates
## 2460     Aggregates
## 2461     Aggregates
## 2462     Aggregates
## 2463     Aggregates
## 2464     Aggregates
## 2465     Aggregates
## 2466     Aggregates
## 2467     Aggregates
## 2468     Aggregates
## 2469     Aggregates
## 2470     Aggregates
## 2471     Aggregates
## 2472     Aggregates
## 2473     Aggregates
## 2474     Aggregates
## 2475     Aggregates
## 2476     Aggregates
## 2477     Aggregates
## 2478     Aggregates
## 2479     Aggregates
## 2480     Aggregates
## 2481     Aggregates
## 2482     Aggregates
## 2483     Aggregates
## 2484     Aggregates
## 2485     Aggregates
## 2486     Aggregates
## 2487     Aggregates
## 2488     Aggregates
## 2489     Aggregates
## 2490     Aggregates
## 2491     Aggregates
## 2492     Aggregates
## 2493     Aggregates
## 2494     Aggregates
## 2495     Aggregates
## 2496     Aggregates
## 2497     Aggregates
## 2498     Aggregates
## 2499     Aggregates
## 2500     Aggregates
## 2501     Aggregates
## 2502     Aggregates
## 2503     Aggregates
## 2504     Aggregates
## 2505     Aggregates
## 2506     Aggregates
## 2507     Aggregates
## 2508     Aggregates
## 2509     Aggregates
## 2510     Aggregates
## 2511     Aggregates
## 2512     Aggregates
## 2513     Aggregates
## 2514     Aggregates
## 2515     Aggregates
## 2516     Aggregates
## 2517     Aggregates
## 2518     Aggregates
## 2519     Aggregates
## 2520     Aggregates
## 2521 Not classified
## 2522 Not classified
## 2523 Not classified
## 2524 Not classified
## 2525 Not classified
## 2526 Not classified
## 2527 Not classified
## 2528 Not classified
## 2529 Not classified
## 2530 Not classified
## 2531 Not classified
## 2532 Not classified
## 2533 Not classified
## 2534 Not classified
## 2535 Not classified
## 2536 Not classified
## 2537 Not classified
## 2538 Not classified
## 2539 Not classified
## 2540 Not classified
## 2541 Not classified
## 2542 Not classified
## 2543 Not classified
## 2544 Not classified
## 2545 Not classified
## 2546 Not classified
## 2547 Not classified
## 2548 Not classified
## 2549 Not classified
## 2550 Not classified
## 2551 Not classified
## 2552 Not classified
## 2553 Not classified
## 2554 Not classified
## 2555 Not classified
## 2556 Not classified
## 2557 Not classified
## 2558 Not classified
## 2559 Not classified
## 2560 Not classified
## 2561 Not classified
## 2562 Not classified
## 2563 Not classified
## 2564 Not classified
## 2565 Not classified
## 2566 Not classified
## 2567 Not classified
## 2568 Not classified
## 2569 Not classified
## 2570 Not classified
## 2571 Not classified
## 2572 Not classified
## 2573 Not classified
## 2574 Not classified
## 2575 Not classified
## 2576 Not classified
## 2577 Not classified
## 2578 Not classified
## 2579 Not classified
## 2580 Not classified
## 2581 Not classified
## 2582 Not classified
## 2583 Not classified
## 2584            IDA
## 2585            IDA
## 2586            IDA
## 2587            IDA
## 2588            IDA
## 2589            IDA
## 2590            IDA
## 2591            IDA
## 2592            IDA
## 2593            IDA
## 2594            IDA
## 2595            IDA
## 2596            IDA
## 2597            IDA
## 2598            IDA
## 2599            IDA
## 2600            IDA
## 2601            IDA
## 2602            IDA
## 2603            IDA
## 2604            IDA
## 2605            IDA
## 2606            IDA
## 2607            IDA
## 2608            IDA
## 2609            IDA
## 2610            IDA
## 2611            IDA
## 2612            IDA
## 2613            IDA
## 2614            IDA
## 2615            IDA
## 2616            IDA
## 2617            IDA
## 2618            IDA
## 2619            IDA
## 2620            IDA
## 2621            IDA
## 2622            IDA
## 2623            IDA
## 2624            IDA
## 2625            IDA
## 2626            IDA
## 2627            IDA
## 2628            IDA
## 2629            IDA
## 2630            IDA
## 2631            IDA
## 2632            IDA
## 2633            IDA
## 2634            IDA
## 2635            IDA
## 2636            IDA
## 2637            IDA
## 2638            IDA
## 2639            IDA
## 2640            IDA
## 2641            IDA
## 2642            IDA
## 2643            IDA
## 2644            IDA
## 2645            IDA
## 2646            IDA
## 2647     Aggregates
## 2648     Aggregates
## 2649     Aggregates
## 2650     Aggregates
## 2651     Aggregates
## 2652     Aggregates
## 2653     Aggregates
## 2654     Aggregates
## 2655     Aggregates
## 2656     Aggregates
## 2657     Aggregates
## 2658     Aggregates
## 2659     Aggregates
## 2660     Aggregates
## 2661     Aggregates
## 2662     Aggregates
## 2663     Aggregates
## 2664     Aggregates
## 2665     Aggregates
## 2666     Aggregates
## 2667     Aggregates
## 2668     Aggregates
## 2669     Aggregates
## 2670     Aggregates
## 2671     Aggregates
## 2672     Aggregates
## 2673     Aggregates
## 2674     Aggregates
## 2675     Aggregates
## 2676     Aggregates
## 2677     Aggregates
## 2678     Aggregates
## 2679     Aggregates
## 2680     Aggregates
## 2681     Aggregates
## 2682     Aggregates
## 2683     Aggregates
## 2684     Aggregates
## 2685     Aggregates
## 2686     Aggregates
## 2687     Aggregates
## 2688     Aggregates
## 2689     Aggregates
## 2690     Aggregates
## 2691     Aggregates
## 2692     Aggregates
## 2693     Aggregates
## 2694     Aggregates
## 2695     Aggregates
## 2696     Aggregates
## 2697     Aggregates
## 2698     Aggregates
## 2699     Aggregates
## 2700     Aggregates
## 2701     Aggregates
## 2702     Aggregates
## 2703     Aggregates
## 2704     Aggregates
## 2705     Aggregates
## 2706     Aggregates
## 2707     Aggregates
## 2708     Aggregates
## 2709     Aggregates
## 2710            IDA
## 2711            IDA
## 2712            IDA
## 2713            IDA
## 2714            IDA
## 2715            IDA
## 2716            IDA
## 2717            IDA
## 2718            IDA
## 2719            IDA
## 2720            IDA
## 2721            IDA
## 2722            IDA
## 2723            IDA
## 2724            IDA
## 2725            IDA
## 2726            IDA
## 2727            IDA
## 2728            IDA
## 2729            IDA
## 2730            IDA
## 2731            IDA
## 2732            IDA
## 2733            IDA
## 2734            IDA
## 2735            IDA
## 2736            IDA
## 2737            IDA
## 2738            IDA
## 2739            IDA
## 2740            IDA
## 2741            IDA
## 2742            IDA
## 2743            IDA
## 2744            IDA
## 2745            IDA
## 2746            IDA
## 2747            IDA
## 2748            IDA
## 2749            IDA
## 2750            IDA
## 2751            IDA
## 2752            IDA
## 2753            IDA
## 2754            IDA
## 2755            IDA
## 2756            IDA
## 2757            IDA
## 2758            IDA
## 2759            IDA
## 2760            IDA
## 2761            IDA
## 2762            IDA
## 2763            IDA
## 2764            IDA
## 2765            IDA
## 2766            IDA
## 2767            IDA
## 2768            IDA
## 2769            IDA
## 2770            IDA
## 2771            IDA
## 2772            IDA
## 2773 Not classified
## 2774 Not classified
## 2775 Not classified
## 2776 Not classified
## 2777 Not classified
## 2778 Not classified
## 2779 Not classified
## 2780 Not classified
## 2781 Not classified
## 2782 Not classified
## 2783 Not classified
## 2784 Not classified
## 2785 Not classified
## 2786 Not classified
## 2787 Not classified
## 2788 Not classified
## 2789 Not classified
## 2790 Not classified
## 2791 Not classified
## 2792 Not classified
## 2793 Not classified
## 2794 Not classified
## 2795 Not classified
## 2796 Not classified
## 2797 Not classified
## 2798 Not classified
## 2799 Not classified
## 2800 Not classified
## 2801 Not classified
## 2802 Not classified
## 2803 Not classified
## 2804 Not classified
## 2805 Not classified
## 2806 Not classified
## 2807 Not classified
## 2808 Not classified
## 2809 Not classified
## 2810 Not classified
## 2811 Not classified
## 2812 Not classified
## 2813 Not classified
## 2814 Not classified
## 2815 Not classified
## 2816 Not classified
## 2817 Not classified
## 2818 Not classified
## 2819 Not classified
## 2820 Not classified
## 2821 Not classified
## 2822 Not classified
## 2823 Not classified
## 2824 Not classified
## 2825 Not classified
## 2826 Not classified
## 2827 Not classified
## 2828 Not classified
## 2829 Not classified
## 2830 Not classified
## 2831 Not classified
## 2832 Not classified
## 2833 Not classified
## 2834 Not classified
## 2835 Not classified
## 2836           IBRD
## 2837           IBRD
## 2838           IBRD
## 2839           IBRD
## 2840           IBRD
## 2841           IBRD
## 2842           IBRD
## 2843           IBRD
## 2844           IBRD
## 2845           IBRD
## 2846           IBRD
## 2847           IBRD
## 2848           IBRD
## 2849           IBRD
## 2850           IBRD
## 2851           IBRD
## 2852           IBRD
## 2853           IBRD
## 2854           IBRD
## 2855           IBRD
## 2856           IBRD
## 2857           IBRD
## 2858           IBRD
## 2859           IBRD
## 2860           IBRD
## 2861           IBRD
## 2862           IBRD
## 2863           IBRD
## 2864           IBRD
## 2865           IBRD
## 2866           IBRD
## 2867           IBRD
## 2868           IBRD
## 2869           IBRD
## 2870           IBRD
## 2871           IBRD
## 2872           IBRD
## 2873           IBRD
## 2874           IBRD
## 2875           IBRD
## 2876           IBRD
## 2877           IBRD
## 2878           IBRD
## 2879           IBRD
## 2880           IBRD
## 2881           IBRD
## 2882           IBRD
## 2883           IBRD
## 2884           IBRD
## 2885           IBRD
## 2886           IBRD
## 2887           IBRD
## 2888           IBRD
## 2889           IBRD
## 2890           IBRD
## 2891           IBRD
## 2892           IBRD
## 2893           IBRD
## 2894           IBRD
## 2895           IBRD
## 2896           IBRD
## 2897           IBRD
## 2898           IBRD
## 2899           IBRD
## 2900           IBRD
## 2901           IBRD
## 2902           IBRD
## 2903           IBRD
## 2904           IBRD
## 2905           IBRD
## 2906           IBRD
## 2907           IBRD
## 2908           IBRD
## 2909           IBRD
## 2910           IBRD
## 2911           IBRD
## 2912           IBRD
## 2913           IBRD
## 2914           IBRD
## 2915           IBRD
## 2916           IBRD
## 2917           IBRD
## 2918           IBRD
## 2919           IBRD
## 2920           IBRD
## 2921           IBRD
## 2922           IBRD
## 2923           IBRD
## 2924           IBRD
## 2925           IBRD
## 2926           IBRD
## 2927           IBRD
## 2928           IBRD
## 2929           IBRD
## 2930           IBRD
## 2931           IBRD
## 2932           IBRD
## 2933           IBRD
## 2934           IBRD
## 2935           IBRD
## 2936           IBRD
## 2937           IBRD
## 2938           IBRD
## 2939           IBRD
## 2940           IBRD
## 2941           IBRD
## 2942           IBRD
## 2943           IBRD
## 2944           IBRD
## 2945           IBRD
## 2946           IBRD
## 2947           IBRD
## 2948           IBRD
## 2949           IBRD
## 2950           IBRD
## 2951           IBRD
## 2952           IBRD
## 2953           IBRD
## 2954           IBRD
## 2955           IBRD
## 2956           IBRD
## 2957           IBRD
## 2958           IBRD
## 2959           IBRD
## 2960           IBRD
## 2961           IBRD
## 2962           IBRD
## 2963           IBRD
## 2964           IBRD
## 2965           IBRD
## 2966           IBRD
## 2967           IBRD
## 2968           IBRD
## 2969           IBRD
## 2970           IBRD
## 2971           IBRD
## 2972           IBRD
## 2973           IBRD
## 2974           IBRD
## 2975           IBRD
## 2976           IBRD
## 2977           IBRD
## 2978           IBRD
## 2979           IBRD
## 2980           IBRD
## 2981           IBRD
## 2982           IBRD
## 2983           IBRD
## 2984           IBRD
## 2985           IBRD
## 2986           IBRD
## 2987           IBRD
## 2988           IBRD
## 2989           IBRD
## 2990           IBRD
## 2991           IBRD
## 2992           IBRD
## 2993           IBRD
## 2994           IBRD
## 2995           IBRD
## 2996           IBRD
## 2997           IBRD
## 2998           IBRD
## 2999           IBRD
## 3000           IBRD
## 3001           IBRD
## 3002           IBRD
## 3003           IBRD
## 3004           IBRD
## 3005           IBRD
## 3006           IBRD
## 3007           IBRD
## 3008           IBRD
## 3009           IBRD
## 3010           IBRD
## 3011           IBRD
## 3012           IBRD
## 3013           IBRD
## 3014           IBRD
## 3015           IBRD
## 3016           IBRD
## 3017           IBRD
## 3018           IBRD
## 3019           IBRD
## 3020           IBRD
## 3021           IBRD
## 3022           IBRD
## 3023           IBRD
## 3024           IBRD
## 3025            IDA
## 3026            IDA
## 3027            IDA
## 3028            IDA
## 3029            IDA
## 3030            IDA
## 3031            IDA
## 3032            IDA
## 3033            IDA
## 3034            IDA
## 3035            IDA
## 3036            IDA
## 3037            IDA
## 3038            IDA
## 3039            IDA
## 3040            IDA
## 3041            IDA
## 3042            IDA
## 3043            IDA
## 3044            IDA
## 3045            IDA
## 3046            IDA
## 3047            IDA
## 3048            IDA
## 3049            IDA
## 3050            IDA
## 3051            IDA
## 3052            IDA
## 3053            IDA
## 3054            IDA
## 3055            IDA
## 3056            IDA
## 3057            IDA
## 3058            IDA
## 3059            IDA
## 3060            IDA
## 3061            IDA
## 3062            IDA
## 3063            IDA
## 3064            IDA
## 3065            IDA
## 3066            IDA
## 3067            IDA
## 3068            IDA
## 3069            IDA
## 3070            IDA
## 3071            IDA
## 3072            IDA
## 3073            IDA
## 3074            IDA
## 3075            IDA
## 3076            IDA
## 3077            IDA
## 3078            IDA
## 3079            IDA
## 3080            IDA
## 3081            IDA
## 3082            IDA
## 3083            IDA
## 3084            IDA
## 3085            IDA
## 3086            IDA
## 3087            IDA
## 3088            IDA
## 3089            IDA
## 3090            IDA
## 3091            IDA
## 3092            IDA
## 3093            IDA
## 3094            IDA
## 3095            IDA
## 3096            IDA
## 3097            IDA
## 3098            IDA
## 3099            IDA
## 3100            IDA
## 3101            IDA
## 3102            IDA
## 3103            IDA
## 3104            IDA
## 3105            IDA
## 3106            IDA
## 3107            IDA
## 3108            IDA
## 3109            IDA
## 3110            IDA
## 3111            IDA
## 3112            IDA
## 3113            IDA
## 3114            IDA
## 3115            IDA
## 3116            IDA
## 3117            IDA
## 3118            IDA
## 3119            IDA
## 3120            IDA
## 3121            IDA
## 3122            IDA
## 3123            IDA
## 3124            IDA
## 3125            IDA
## 3126            IDA
## 3127            IDA
## 3128            IDA
## 3129            IDA
## 3130            IDA
## 3131            IDA
## 3132            IDA
## 3133            IDA
## 3134            IDA
## 3135            IDA
## 3136            IDA
## 3137            IDA
## 3138            IDA
## 3139            IDA
## 3140            IDA
## 3141            IDA
## 3142            IDA
## 3143            IDA
## 3144            IDA
## 3145            IDA
## 3146            IDA
## 3147            IDA
## 3148            IDA
## 3149            IDA
## 3150            IDA
## 3151          Blend
## 3152          Blend
## 3153          Blend
## 3154          Blend
## 3155          Blend
## 3156          Blend
## 3157          Blend
## 3158          Blend
## 3159          Blend
## 3160          Blend
## 3161          Blend
## 3162          Blend
## 3163          Blend
## 3164          Blend
## 3165          Blend
## 3166          Blend
## 3167          Blend
## 3168          Blend
## 3169          Blend
## 3170          Blend
## 3171          Blend
## 3172          Blend
## 3173          Blend
## 3174          Blend
## 3175          Blend
## 3176          Blend
## 3177          Blend
## 3178          Blend
## 3179          Blend
## 3180          Blend
## 3181          Blend
## 3182          Blend
## 3183          Blend
## 3184          Blend
## 3185          Blend
## 3186          Blend
## 3187          Blend
## 3188          Blend
## 3189          Blend
## 3190          Blend
## 3191          Blend
## 3192          Blend
## 3193          Blend
## 3194          Blend
## 3195          Blend
## 3196          Blend
## 3197          Blend
## 3198          Blend
## 3199          Blend
## 3200          Blend
## 3201          Blend
## 3202          Blend
## 3203          Blend
## 3204          Blend
## 3205          Blend
## 3206          Blend
## 3207          Blend
## 3208          Blend
## 3209          Blend
## 3210          Blend
## 3211          Blend
## 3212          Blend
## 3213          Blend
## 3214           IBRD
## 3215           IBRD
## 3216           IBRD
## 3217           IBRD
## 3218           IBRD
## 3219           IBRD
## 3220           IBRD
## 3221           IBRD
## 3222           IBRD
## 3223           IBRD
## 3224           IBRD
## 3225           IBRD
## 3226           IBRD
## 3227           IBRD
## 3228           IBRD
## 3229           IBRD
## 3230           IBRD
## 3231           IBRD
## 3232           IBRD
## 3233           IBRD
## 3234           IBRD
## 3235           IBRD
## 3236           IBRD
## 3237           IBRD
## 3238           IBRD
## 3239           IBRD
## 3240           IBRD
## 3241           IBRD
## 3242           IBRD
## 3243           IBRD
## 3244           IBRD
## 3245           IBRD
## 3246           IBRD
## 3247           IBRD
## 3248           IBRD
## 3249           IBRD
## 3250           IBRD
## 3251           IBRD
## 3252           IBRD
## 3253           IBRD
## 3254           IBRD
## 3255           IBRD
## 3256           IBRD
## 3257           IBRD
## 3258           IBRD
## 3259           IBRD
## 3260           IBRD
## 3261           IBRD
## 3262           IBRD
## 3263           IBRD
## 3264           IBRD
## 3265           IBRD
## 3266           IBRD
## 3267           IBRD
## 3268           IBRD
## 3269           IBRD
## 3270           IBRD
## 3271           IBRD
## 3272           IBRD
## 3273           IBRD
## 3274           IBRD
## 3275           IBRD
## 3276           IBRD
## 3277            IDA
## 3278            IDA
## 3279            IDA
## 3280            IDA
## 3281            IDA
## 3282            IDA
## 3283            IDA
## 3284            IDA
## 3285            IDA
## 3286            IDA
## 3287            IDA
## 3288            IDA
## 3289            IDA
## 3290            IDA
## 3291            IDA
## 3292            IDA
## 3293            IDA
## 3294            IDA
## 3295            IDA
## 3296            IDA
## 3297            IDA
## 3298            IDA
## 3299            IDA
## 3300            IDA
## 3301            IDA
## 3302            IDA
## 3303            IDA
## 3304            IDA
## 3305            IDA
## 3306            IDA
## 3307            IDA
## 3308            IDA
## 3309            IDA
## 3310            IDA
## 3311            IDA
## 3312            IDA
## 3313            IDA
## 3314            IDA
## 3315            IDA
## 3316            IDA
## 3317            IDA
## 3318            IDA
## 3319            IDA
## 3320            IDA
## 3321            IDA
## 3322            IDA
## 3323            IDA
## 3324            IDA
## 3325            IDA
## 3326            IDA
## 3327            IDA
## 3328            IDA
## 3329            IDA
## 3330            IDA
## 3331            IDA
## 3332            IDA
## 3333            IDA
## 3334            IDA
## 3335            IDA
## 3336            IDA
## 3337            IDA
## 3338            IDA
## 3339            IDA
## 3340           IBRD
## 3341           IBRD
## 3342           IBRD
## 3343           IBRD
## 3344           IBRD
## 3345           IBRD
## 3346           IBRD
## 3347           IBRD
## 3348           IBRD
## 3349           IBRD
## 3350           IBRD
## 3351           IBRD
## 3352           IBRD
## 3353           IBRD
## 3354           IBRD
## 3355           IBRD
## 3356           IBRD
## 3357           IBRD
## 3358           IBRD
## 3359           IBRD
## 3360           IBRD
## 3361           IBRD
## 3362           IBRD
## 3363           IBRD
## 3364           IBRD
## 3365           IBRD
## 3366           IBRD
## 3367           IBRD
## 3368           IBRD
## 3369           IBRD
## 3370           IBRD
## 3371           IBRD
## 3372           IBRD
## 3373           IBRD
## 3374           IBRD
## 3375           IBRD
## 3376           IBRD
## 3377           IBRD
## 3378           IBRD
## 3379           IBRD
## 3380           IBRD
## 3381           IBRD
## 3382           IBRD
## 3383           IBRD
## 3384           IBRD
## 3385           IBRD
## 3386           IBRD
## 3387           IBRD
## 3388           IBRD
## 3389           IBRD
## 3390           IBRD
## 3391           IBRD
## 3392           IBRD
## 3393           IBRD
## 3394           IBRD
## 3395           IBRD
## 3396           IBRD
## 3397           IBRD
## 3398           IBRD
## 3399           IBRD
## 3400           IBRD
## 3401           IBRD
## 3402           IBRD
## 3403 Not classified
## 3404 Not classified
## 3405 Not classified
## 3406 Not classified
## 3407 Not classified
## 3408 Not classified
## 3409 Not classified
## 3410 Not classified
## 3411 Not classified
## 3412 Not classified
## 3413 Not classified
## 3414 Not classified
## 3415 Not classified
## 3416 Not classified
## 3417 Not classified
## 3418 Not classified
## 3419 Not classified
## 3420 Not classified
## 3421 Not classified
## 3422 Not classified
## 3423 Not classified
## 3424 Not classified
## 3425 Not classified
## 3426 Not classified
## 3427 Not classified
## 3428 Not classified
## 3429 Not classified
## 3430 Not classified
## 3431 Not classified
## 3432 Not classified
## 3433 Not classified
## 3434 Not classified
## 3435 Not classified
## 3436 Not classified
## 3437 Not classified
## 3438 Not classified
## 3439 Not classified
## 3440 Not classified
## 3441 Not classified
## 3442 Not classified
## 3443 Not classified
## 3444 Not classified
## 3445 Not classified
## 3446 Not classified
## 3447 Not classified
## 3448 Not classified
## 3449 Not classified
## 3450 Not classified
## 3451 Not classified
## 3452 Not classified
## 3453 Not classified
## 3454 Not classified
## 3455 Not classified
## 3456 Not classified
## 3457 Not classified
## 3458 Not classified
## 3459 Not classified
## 3460 Not classified
## 3461 Not classified
## 3462 Not classified
## 3463 Not classified
## 3464 Not classified
## 3465 Not classified
## 3466 Not classified
## 3467 Not classified
## 3468 Not classified
## 3469 Not classified
## 3470 Not classified
## 3471 Not classified
## 3472 Not classified
## 3473 Not classified
## 3474 Not classified
## 3475 Not classified
## 3476 Not classified
## 3477 Not classified
## 3478 Not classified
## 3479 Not classified
## 3480 Not classified
## 3481 Not classified
## 3482 Not classified
## 3483 Not classified
## 3484 Not classified
## 3485 Not classified
## 3486 Not classified
## 3487 Not classified
## 3488 Not classified
## 3489 Not classified
## 3490 Not classified
## 3491 Not classified
## 3492 Not classified
## 3493 Not classified
## 3494 Not classified
## 3495 Not classified
## 3496 Not classified
## 3497 Not classified
## 3498 Not classified
## 3499 Not classified
## 3500 Not classified
## 3501 Not classified
## 3502 Not classified
## 3503 Not classified
## 3504 Not classified
## 3505 Not classified
## 3506 Not classified
## 3507 Not classified
## 3508 Not classified
## 3509 Not classified
## 3510 Not classified
## 3511 Not classified
## 3512 Not classified
## 3513 Not classified
## 3514 Not classified
## 3515 Not classified
## 3516 Not classified
## 3517 Not classified
## 3518 Not classified
## 3519 Not classified
## 3520 Not classified
## 3521 Not classified
## 3522 Not classified
## 3523 Not classified
## 3524 Not classified
## 3525 Not classified
## 3526 Not classified
## 3527 Not classified
## 3528 Not classified
## 3529 Not classified
## 3530 Not classified
## 3531 Not classified
## 3532 Not classified
## 3533 Not classified
## 3534 Not classified
## 3535 Not classified
## 3536 Not classified
## 3537 Not classified
## 3538 Not classified
## 3539 Not classified
## 3540 Not classified
## 3541 Not classified
## 3542 Not classified
## 3543 Not classified
## 3544 Not classified
## 3545 Not classified
## 3546 Not classified
## 3547 Not classified
## 3548 Not classified
## 3549 Not classified
## 3550 Not classified
## 3551 Not classified
## 3552 Not classified
## 3553 Not classified
## 3554 Not classified
## 3555 Not classified
## 3556 Not classified
## 3557 Not classified
## 3558 Not classified
## 3559 Not classified
## 3560 Not classified
## 3561 Not classified
## 3562 Not classified
## 3563 Not classified
## 3564 Not classified
## 3565 Not classified
## 3566 Not classified
## 3567 Not classified
## 3568 Not classified
## 3569 Not classified
## 3570 Not classified
## 3571 Not classified
## 3572 Not classified
## 3573 Not classified
## 3574 Not classified
## 3575 Not classified
## 3576 Not classified
## 3577 Not classified
## 3578 Not classified
## 3579 Not classified
## 3580 Not classified
## 3581 Not classified
## 3582 Not classified
## 3583 Not classified
## 3584 Not classified
## 3585 Not classified
## 3586 Not classified
## 3587 Not classified
## 3588 Not classified
## 3589 Not classified
## 3590 Not classified
## 3591 Not classified
## 3592 Not classified
## 3593 Not classified
## 3594 Not classified
## 3595 Not classified
## 3596 Not classified
## 3597 Not classified
## 3598 Not classified
## 3599 Not classified
## 3600 Not classified
## 3601 Not classified
## 3602 Not classified
## 3603 Not classified
## 3604 Not classified
## 3605 Not classified
## 3606 Not classified
## 3607 Not classified
## 3608 Not classified
## 3609 Not classified
## 3610 Not classified
## 3611 Not classified
## 3612 Not classified
## 3613 Not classified
## 3614 Not classified
## 3615 Not classified
## 3616 Not classified
## 3617 Not classified
## 3618 Not classified
## 3619 Not classified
## 3620 Not classified
## 3621 Not classified
## 3622 Not classified
## 3623 Not classified
## 3624 Not classified
## 3625 Not classified
## 3626 Not classified
## 3627 Not classified
## 3628 Not classified
## 3629 Not classified
## 3630 Not classified
## 3631 Not classified
## 3632 Not classified
## 3633 Not classified
## 3634 Not classified
## 3635 Not classified
## 3636 Not classified
## 3637 Not classified
## 3638 Not classified
## 3639 Not classified
## 3640 Not classified
## 3641 Not classified
## 3642 Not classified
## 3643 Not classified
## 3644 Not classified
## 3645 Not classified
## 3646 Not classified
## 3647 Not classified
## 3648 Not classified
## 3649 Not classified
## 3650 Not classified
## 3651 Not classified
## 3652 Not classified
## 3653 Not classified
## 3654 Not classified
## 3655 Not classified
## 3656 Not classified
## 3657 Not classified
## 3658 Not classified
## 3659 Not classified
## 3660 Not classified
## 3661 Not classified
## 3662 Not classified
## 3663 Not classified
## 3664 Not classified
## 3665 Not classified
## 3666 Not classified
## 3667 Not classified
## 3668 Not classified
## 3669 Not classified
## 3670 Not classified
## 3671 Not classified
## 3672 Not classified
## 3673 Not classified
## 3674 Not classified
## 3675 Not classified
## 3676 Not classified
## 3677 Not classified
## 3678 Not classified
## 3679 Not classified
## 3680 Not classified
## 3681 Not classified
## 3682 Not classified
## 3683 Not classified
## 3684 Not classified
## 3685 Not classified
## 3686 Not classified
## 3687 Not classified
## 3688 Not classified
## 3689 Not classified
## 3690 Not classified
## 3691 Not classified
## 3692 Not classified
## 3693 Not classified
## 3694 Not classified
## 3695 Not classified
## 3696 Not classified
## 3697 Not classified
## 3698 Not classified
## 3699 Not classified
## 3700 Not classified
## 3701 Not classified
## 3702 Not classified
## 3703 Not classified
## 3704 Not classified
## 3705 Not classified
## 3706 Not classified
## 3707 Not classified
## 3708 Not classified
## 3709 Not classified
## 3710 Not classified
## 3711 Not classified
## 3712 Not classified
## 3713 Not classified
## 3714 Not classified
## 3715 Not classified
## 3716 Not classified
## 3717 Not classified
## 3718            IDA
## 3719            IDA
## 3720            IDA
## 3721            IDA
## 3722            IDA
## 3723            IDA
## 3724            IDA
## 3725            IDA
## 3726            IDA
## 3727            IDA
## 3728            IDA
## 3729            IDA
## 3730            IDA
## 3731            IDA
## 3732            IDA
## 3733            IDA
## 3734            IDA
## 3735            IDA
## 3736            IDA
## 3737            IDA
## 3738            IDA
## 3739            IDA
## 3740            IDA
## 3741            IDA
## 3742            IDA
## 3743            IDA
## 3744            IDA
## 3745            IDA
## 3746            IDA
## 3747            IDA
## 3748            IDA
## 3749            IDA
## 3750            IDA
## 3751            IDA
## 3752            IDA
## 3753            IDA
## 3754            IDA
## 3755            IDA
## 3756            IDA
## 3757            IDA
## 3758            IDA
## 3759            IDA
## 3760            IDA
## 3761            IDA
## 3762            IDA
## 3763            IDA
## 3764            IDA
## 3765            IDA
## 3766            IDA
## 3767            IDA
## 3768            IDA
## 3769            IDA
## 3770            IDA
## 3771            IDA
## 3772            IDA
## 3773            IDA
## 3774            IDA
## 3775            IDA
## 3776            IDA
## 3777            IDA
## 3778            IDA
## 3779            IDA
## 3780            IDA
## 3781          Blend
## 3782          Blend
## 3783          Blend
## 3784          Blend
## 3785          Blend
## 3786          Blend
## 3787          Blend
## 3788          Blend
## 3789          Blend
## 3790          Blend
## 3791          Blend
## 3792          Blend
## 3793          Blend
## 3794          Blend
## 3795          Blend
## 3796          Blend
## 3797          Blend
## 3798          Blend
## 3799          Blend
## 3800          Blend
## 3801          Blend
## 3802          Blend
## 3803          Blend
## 3804          Blend
## 3805          Blend
## 3806          Blend
## 3807          Blend
## 3808          Blend
## 3809          Blend
## 3810          Blend
## 3811          Blend
## 3812          Blend
## 3813          Blend
## 3814          Blend
## 3815          Blend
## 3816          Blend
## 3817          Blend
## 3818          Blend
## 3819          Blend
## 3820          Blend
## 3821          Blend
## 3822          Blend
## 3823          Blend
## 3824          Blend
## 3825          Blend
## 3826          Blend
## 3827          Blend
## 3828          Blend
## 3829          Blend
## 3830          Blend
## 3831          Blend
## 3832          Blend
## 3833          Blend
## 3834          Blend
## 3835          Blend
## 3836          Blend
## 3837          Blend
## 3838          Blend
## 3839          Blend
## 3840          Blend
## 3841          Blend
## 3842          Blend
## 3843          Blend
## 3844           IBRD
## 3845           IBRD
## 3846           IBRD
## 3847           IBRD
## 3848           IBRD
## 3849           IBRD
## 3850           IBRD
## 3851           IBRD
## 3852           IBRD
## 3853           IBRD
## 3854           IBRD
## 3855           IBRD
## 3856           IBRD
## 3857           IBRD
## 3858           IBRD
## 3859           IBRD
## 3860           IBRD
## 3861           IBRD
## 3862           IBRD
## 3863           IBRD
## 3864           IBRD
## 3865           IBRD
## 3866           IBRD
## 3867           IBRD
## 3868           IBRD
## 3869           IBRD
## 3870           IBRD
## 3871           IBRD
## 3872           IBRD
## 3873           IBRD
## 3874           IBRD
## 3875           IBRD
## 3876           IBRD
## 3877           IBRD
## 3878           IBRD
## 3879           IBRD
## 3880           IBRD
## 3881           IBRD
## 3882           IBRD
## 3883           IBRD
## 3884           IBRD
## 3885           IBRD
## 3886           IBRD
## 3887           IBRD
## 3888           IBRD
## 3889           IBRD
## 3890           IBRD
## 3891           IBRD
## 3892           IBRD
## 3893           IBRD
## 3894           IBRD
## 3895           IBRD
## 3896           IBRD
## 3897           IBRD
## 3898           IBRD
## 3899           IBRD
## 3900           IBRD
## 3901           IBRD
## 3902           IBRD
## 3903           IBRD
## 3904           IBRD
## 3905           IBRD
## 3906           IBRD
## 3907     Aggregates
## 3908     Aggregates
## 3909     Aggregates
## 3910     Aggregates
## 3911     Aggregates
## 3912     Aggregates
## 3913     Aggregates
## 3914     Aggregates
## 3915     Aggregates
## 3916     Aggregates
## 3917     Aggregates
## 3918     Aggregates
## 3919     Aggregates
## 3920     Aggregates
## 3921     Aggregates
## 3922     Aggregates
## 3923     Aggregates
## 3924     Aggregates
## 3925     Aggregates
## 3926     Aggregates
## 3927     Aggregates
## 3928     Aggregates
## 3929     Aggregates
## 3930     Aggregates
## 3931     Aggregates
## 3932     Aggregates
## 3933     Aggregates
## 3934     Aggregates
## 3935     Aggregates
## 3936     Aggregates
## 3937     Aggregates
## 3938     Aggregates
## 3939     Aggregates
## 3940     Aggregates
## 3941     Aggregates
## 3942     Aggregates
## 3943     Aggregates
## 3944     Aggregates
## 3945     Aggregates
## 3946     Aggregates
## 3947     Aggregates
## 3948     Aggregates
## 3949     Aggregates
## 3950     Aggregates
## 3951     Aggregates
## 3952     Aggregates
## 3953     Aggregates
## 3954     Aggregates
## 3955     Aggregates
## 3956     Aggregates
## 3957     Aggregates
## 3958     Aggregates
## 3959     Aggregates
## 3960     Aggregates
## 3961     Aggregates
## 3962     Aggregates
## 3963     Aggregates
## 3964     Aggregates
## 3965     Aggregates
## 3966     Aggregates
## 3967     Aggregates
## 3968     Aggregates
## 3969     Aggregates
## 3970     Aggregates
## 3971     Aggregates
## 3972     Aggregates
## 3973     Aggregates
## 3974     Aggregates
## 3975     Aggregates
## 3976     Aggregates
## 3977     Aggregates
## 3978     Aggregates
## 3979     Aggregates
## 3980     Aggregates
## 3981     Aggregates
## 3982     Aggregates
## 3983     Aggregates
## 3984     Aggregates
## 3985     Aggregates
## 3986     Aggregates
## 3987     Aggregates
## 3988     Aggregates
## 3989     Aggregates
## 3990     Aggregates
## 3991     Aggregates
## 3992     Aggregates
## 3993     Aggregates
## 3994     Aggregates
## 3995     Aggregates
## 3996     Aggregates
## 3997     Aggregates
## 3998     Aggregates
## 3999     Aggregates
## 4000     Aggregates
## 4001     Aggregates
## 4002     Aggregates
## 4003     Aggregates
## 4004     Aggregates
## 4005     Aggregates
## 4006     Aggregates
## 4007     Aggregates
## 4008     Aggregates
## 4009     Aggregates
## 4010     Aggregates
## 4011     Aggregates
## 4012     Aggregates
## 4013     Aggregates
## 4014     Aggregates
## 4015     Aggregates
## 4016     Aggregates
## 4017     Aggregates
## 4018     Aggregates
## 4019     Aggregates
## 4020     Aggregates
## 4021     Aggregates
## 4022     Aggregates
## 4023     Aggregates
## 4024     Aggregates
## 4025     Aggregates
## 4026     Aggregates
## 4027     Aggregates
## 4028     Aggregates
## 4029     Aggregates
## 4030     Aggregates
## 4031     Aggregates
## 4032     Aggregates
## 4033     Aggregates
## 4034     Aggregates
## 4035     Aggregates
## 4036     Aggregates
## 4037     Aggregates
## 4038     Aggregates
## 4039     Aggregates
## 4040     Aggregates
## 4041     Aggregates
## 4042     Aggregates
## 4043     Aggregates
## 4044     Aggregates
## 4045     Aggregates
## 4046     Aggregates
## 4047     Aggregates
## 4048     Aggregates
## 4049     Aggregates
## 4050     Aggregates
## 4051     Aggregates
## 4052     Aggregates
## 4053     Aggregates
## 4054     Aggregates
## 4055     Aggregates
## 4056     Aggregates
## 4057     Aggregates
## 4058     Aggregates
## 4059     Aggregates
## 4060     Aggregates
## 4061     Aggregates
## 4062     Aggregates
## 4063     Aggregates
## 4064     Aggregates
## 4065     Aggregates
## 4066     Aggregates
## 4067     Aggregates
## 4068     Aggregates
## 4069     Aggregates
## 4070     Aggregates
## 4071     Aggregates
## 4072     Aggregates
## 4073     Aggregates
## 4074     Aggregates
## 4075     Aggregates
## 4076     Aggregates
## 4077     Aggregates
## 4078     Aggregates
## 4079     Aggregates
## 4080     Aggregates
## 4081     Aggregates
## 4082     Aggregates
## 4083     Aggregates
## 4084     Aggregates
## 4085     Aggregates
## 4086     Aggregates
## 4087     Aggregates
## 4088     Aggregates
## 4089     Aggregates
## 4090     Aggregates
## 4091     Aggregates
## 4092     Aggregates
## 4093     Aggregates
## 4094     Aggregates
## 4095     Aggregates
## 4096     Aggregates
## 4097     Aggregates
## 4098     Aggregates
## 4099     Aggregates
## 4100     Aggregates
## 4101     Aggregates
## 4102     Aggregates
## 4103     Aggregates
## 4104     Aggregates
## 4105     Aggregates
## 4106     Aggregates
## 4107     Aggregates
## 4108     Aggregates
## 4109     Aggregates
## 4110     Aggregates
## 4111     Aggregates
## 4112     Aggregates
## 4113     Aggregates
## 4114     Aggregates
## 4115     Aggregates
## 4116     Aggregates
## 4117     Aggregates
## 4118     Aggregates
## 4119     Aggregates
## 4120     Aggregates
## 4121     Aggregates
## 4122     Aggregates
## 4123     Aggregates
## 4124     Aggregates
## 4125     Aggregates
## 4126     Aggregates
## 4127     Aggregates
## 4128     Aggregates
## 4129     Aggregates
## 4130     Aggregates
## 4131     Aggregates
## 4132     Aggregates
## 4133     Aggregates
## 4134     Aggregates
## 4135     Aggregates
## 4136     Aggregates
## 4137     Aggregates
## 4138     Aggregates
## 4139     Aggregates
## 4140     Aggregates
## 4141     Aggregates
## 4142     Aggregates
## 4143     Aggregates
## 4144     Aggregates
## 4145     Aggregates
## 4146     Aggregates
## 4147     Aggregates
## 4148     Aggregates
## 4149     Aggregates
## 4150     Aggregates
## 4151     Aggregates
## 4152     Aggregates
## 4153     Aggregates
## 4154     Aggregates
## 4155     Aggregates
## 4156     Aggregates
## 4157     Aggregates
## 4158     Aggregates
## 4159           IBRD
## 4160           IBRD
## 4161           IBRD
## 4162           IBRD
## 4163           IBRD
## 4164           IBRD
## 4165           IBRD
## 4166           IBRD
## 4167           IBRD
## 4168           IBRD
## 4169           IBRD
## 4170           IBRD
## 4171           IBRD
## 4172           IBRD
## 4173           IBRD
## 4174           IBRD
## 4175           IBRD
## 4176           IBRD
## 4177           IBRD
## 4178           IBRD
## 4179           IBRD
## 4180           IBRD
## 4181           IBRD
## 4182           IBRD
## 4183           IBRD
## 4184           IBRD
## 4185           IBRD
## 4186           IBRD
## 4187           IBRD
## 4188           IBRD
## 4189           IBRD
## 4190           IBRD
## 4191           IBRD
## 4192           IBRD
## 4193           IBRD
## 4194           IBRD
## 4195           IBRD
## 4196           IBRD
## 4197           IBRD
## 4198           IBRD
## 4199           IBRD
## 4200           IBRD
## 4201           IBRD
## 4202           IBRD
## 4203           IBRD
## 4204           IBRD
## 4205           IBRD
## 4206           IBRD
## 4207           IBRD
## 4208           IBRD
## 4209           IBRD
## 4210           IBRD
## 4211           IBRD
## 4212           IBRD
## 4213           IBRD
## 4214           IBRD
## 4215           IBRD
## 4216           IBRD
## 4217           IBRD
## 4218           IBRD
## 4219           IBRD
## 4220           IBRD
## 4221           IBRD
## 4222           IBRD
## 4223           IBRD
## 4224           IBRD
## 4225           IBRD
## 4226           IBRD
## 4227           IBRD
## 4228           IBRD
## 4229           IBRD
## 4230           IBRD
## 4231           IBRD
## 4232           IBRD
## 4233           IBRD
## 4234           IBRD
## 4235           IBRD
## 4236           IBRD
## 4237           IBRD
## 4238           IBRD
## 4239           IBRD
## 4240           IBRD
## 4241           IBRD
## 4242           IBRD
## 4243           IBRD
## 4244           IBRD
## 4245           IBRD
## 4246           IBRD
## 4247           IBRD
## 4248           IBRD
## 4249           IBRD
## 4250           IBRD
## 4251           IBRD
## 4252           IBRD
## 4253           IBRD
## 4254           IBRD
## 4255           IBRD
## 4256           IBRD
## 4257           IBRD
## 4258           IBRD
## 4259           IBRD
## 4260           IBRD
## 4261           IBRD
## 4262           IBRD
## 4263           IBRD
## 4264           IBRD
## 4265           IBRD
## 4266           IBRD
## 4267           IBRD
## 4268           IBRD
## 4269           IBRD
## 4270           IBRD
## 4271           IBRD
## 4272           IBRD
## 4273           IBRD
## 4274           IBRD
## 4275           IBRD
## 4276           IBRD
## 4277           IBRD
## 4278           IBRD
## 4279           IBRD
## 4280           IBRD
## 4281           IBRD
## 4282           IBRD
## 4283           IBRD
## 4284           IBRD
## 4285           IBRD
## 4286           IBRD
## 4287           IBRD
## 4288           IBRD
## 4289           IBRD
## 4290           IBRD
## 4291           IBRD
## 4292           IBRD
## 4293           IBRD
## 4294           IBRD
## 4295           IBRD
## 4296           IBRD
## 4297           IBRD
## 4298           IBRD
## 4299           IBRD
## 4300           IBRD
## 4301           IBRD
## 4302           IBRD
## 4303           IBRD
## 4304           IBRD
## 4305           IBRD
## 4306           IBRD
## 4307           IBRD
## 4308           IBRD
## 4309           IBRD
## 4310           IBRD
## 4311           IBRD
## 4312           IBRD
## 4313           IBRD
## 4314           IBRD
## 4315           IBRD
## 4316           IBRD
## 4317           IBRD
## 4318           IBRD
## 4319           IBRD
## 4320           IBRD
## 4321           IBRD
## 4322           IBRD
## 4323           IBRD
## 4324           IBRD
## 4325           IBRD
## 4326           IBRD
## 4327           IBRD
## 4328           IBRD
## 4329           IBRD
## 4330           IBRD
## 4331           IBRD
## 4332           IBRD
## 4333           IBRD
## 4334           IBRD
## 4335           IBRD
## 4336           IBRD
## 4337           IBRD
## 4338           IBRD
## 4339           IBRD
## 4340           IBRD
## 4341           IBRD
## 4342           IBRD
## 4343           IBRD
## 4344           IBRD
## 4345           IBRD
## 4346           IBRD
## 4347           IBRD
## 4348           IBRD
## 4349           IBRD
## 4350           IBRD
## 4351           IBRD
## 4352           IBRD
## 4353           IBRD
## 4354           IBRD
## 4355           IBRD
## 4356           IBRD
## 4357           IBRD
## 4358           IBRD
## 4359           IBRD
## 4360           IBRD
## 4361           IBRD
## 4362           IBRD
## 4363           IBRD
## 4364           IBRD
## 4365           IBRD
## 4366           IBRD
## 4367           IBRD
## 4368           IBRD
## 4369           IBRD
## 4370           IBRD
## 4371           IBRD
## 4372           IBRD
## 4373           IBRD
## 4374           IBRD
## 4375           IBRD
## 4376           IBRD
## 4377           IBRD
## 4378           IBRD
## 4379           IBRD
## 4380           IBRD
## 4381           IBRD
## 4382           IBRD
## 4383           IBRD
## 4384           IBRD
## 4385           IBRD
## 4386           IBRD
## 4387           IBRD
## 4388           IBRD
## 4389           IBRD
## 4390           IBRD
## 4391           IBRD
## 4392           IBRD
## 4393           IBRD
## 4394           IBRD
## 4395           IBRD
## 4396           IBRD
## 4397           IBRD
## 4398           IBRD
## 4399           IBRD
## 4400           IBRD
## 4401           IBRD
## 4402           IBRD
## 4403           IBRD
## 4404           IBRD
## 4405           IBRD
## 4406           IBRD
## 4407           IBRD
## 4408           IBRD
## 4409           IBRD
## 4410           IBRD
## 4411            IDA
## 4412            IDA
## 4413            IDA
## 4414            IDA
## 4415            IDA
## 4416            IDA
## 4417            IDA
## 4418            IDA
## 4419            IDA
## 4420            IDA
## 4421            IDA
## 4422            IDA
## 4423            IDA
## 4424            IDA
## 4425            IDA
## 4426            IDA
## 4427            IDA
## 4428            IDA
## 4429            IDA
## 4430            IDA
## 4431            IDA
## 4432            IDA
## 4433            IDA
## 4434            IDA
## 4435            IDA
## 4436            IDA
## 4437            IDA
## 4438            IDA
## 4439            IDA
## 4440            IDA
## 4441            IDA
## 4442            IDA
## 4443            IDA
## 4444            IDA
## 4445            IDA
## 4446            IDA
## 4447            IDA
## 4448            IDA
## 4449            IDA
## 4450            IDA
## 4451            IDA
## 4452            IDA
## 4453            IDA
## 4454            IDA
## 4455            IDA
## 4456            IDA
## 4457            IDA
## 4458            IDA
## 4459            IDA
## 4460            IDA
## 4461            IDA
## 4462            IDA
## 4463            IDA
## 4464            IDA
## 4465            IDA
## 4466            IDA
## 4467            IDA
## 4468            IDA
## 4469            IDA
## 4470            IDA
## 4471            IDA
## 4472            IDA
## 4473            IDA
## 4474 Not classified
## 4475 Not classified
## 4476 Not classified
## 4477 Not classified
## 4478 Not classified
## 4479 Not classified
## 4480 Not classified
## 4481 Not classified
## 4482 Not classified
## 4483 Not classified
## 4484 Not classified
## 4485 Not classified
## 4486 Not classified
## 4487 Not classified
## 4488 Not classified
## 4489 Not classified
## 4490 Not classified
## 4491 Not classified
## 4492 Not classified
## 4493 Not classified
## 4494 Not classified
## 4495 Not classified
## 4496 Not classified
## 4497 Not classified
## 4498 Not classified
## 4499 Not classified
## 4500 Not classified
## 4501 Not classified
## 4502 Not classified
## 4503 Not classified
## 4504 Not classified
## 4505 Not classified
## 4506 Not classified
## 4507 Not classified
## 4508 Not classified
## 4509 Not classified
## 4510 Not classified
## 4511 Not classified
## 4512 Not classified
## 4513 Not classified
## 4514 Not classified
## 4515 Not classified
## 4516 Not classified
## 4517 Not classified
## 4518 Not classified
## 4519 Not classified
## 4520 Not classified
## 4521 Not classified
## 4522 Not classified
## 4523 Not classified
## 4524 Not classified
## 4525 Not classified
## 4526 Not classified
## 4527 Not classified
## 4528 Not classified
## 4529 Not classified
## 4530 Not classified
## 4531 Not classified
## 4532 Not classified
## 4533 Not classified
## 4534 Not classified
## 4535 Not classified
## 4536 Not classified
## 4537           IBRD
## 4538           IBRD
## 4539           IBRD
## 4540           IBRD
## 4541           IBRD
## 4542           IBRD
## 4543           IBRD
## 4544           IBRD
## 4545           IBRD
## 4546           IBRD
## 4547           IBRD
## 4548           IBRD
## 4549           IBRD
## 4550           IBRD
## 4551           IBRD
## 4552           IBRD
## 4553           IBRD
## 4554           IBRD
## 4555           IBRD
## 4556           IBRD
## 4557           IBRD
## 4558           IBRD
## 4559           IBRD
## 4560           IBRD
## 4561           IBRD
## 4562           IBRD
## 4563           IBRD
## 4564           IBRD
## 4565           IBRD
## 4566           IBRD
## 4567           IBRD
## 4568           IBRD
## 4569           IBRD
## 4570           IBRD
## 4571           IBRD
## 4572           IBRD
## 4573           IBRD
## 4574           IBRD
## 4575           IBRD
## 4576           IBRD
## 4577           IBRD
## 4578           IBRD
## 4579           IBRD
## 4580           IBRD
## 4581           IBRD
## 4582           IBRD
## 4583           IBRD
## 4584           IBRD
## 4585           IBRD
## 4586           IBRD
## 4587           IBRD
## 4588           IBRD
## 4589           IBRD
## 4590           IBRD
## 4591           IBRD
## 4592           IBRD
## 4593           IBRD
## 4594           IBRD
## 4595           IBRD
## 4596           IBRD
## 4597           IBRD
## 4598           IBRD
## 4599           IBRD
## 4600            IDA
## 4601            IDA
## 4602            IDA
## 4603            IDA
## 4604            IDA
## 4605            IDA
## 4606            IDA
## 4607            IDA
## 4608            IDA
## 4609            IDA
## 4610            IDA
## 4611            IDA
## 4612            IDA
## 4613            IDA
## 4614            IDA
## 4615            IDA
## 4616            IDA
## 4617            IDA
## 4618            IDA
## 4619            IDA
## 4620            IDA
## 4621            IDA
## 4622            IDA
## 4623            IDA
## 4624            IDA
## 4625            IDA
## 4626            IDA
## 4627            IDA
## 4628            IDA
## 4629            IDA
## 4630            IDA
## 4631            IDA
## 4632            IDA
## 4633            IDA
## 4634            IDA
## 4635            IDA
## 4636            IDA
## 4637            IDA
## 4638            IDA
## 4639            IDA
## 4640            IDA
## 4641            IDA
## 4642            IDA
## 4643            IDA
## 4644            IDA
## 4645            IDA
## 4646            IDA
## 4647            IDA
## 4648            IDA
## 4649            IDA
## 4650            IDA
## 4651            IDA
## 4652            IDA
## 4653            IDA
## 4654            IDA
## 4655            IDA
## 4656            IDA
## 4657            IDA
## 4658            IDA
## 4659            IDA
## 4660            IDA
## 4661            IDA
## 4662            IDA
## 4663     Aggregates
## 4664     Aggregates
## 4665     Aggregates
## 4666     Aggregates
## 4667     Aggregates
## 4668     Aggregates
## 4669     Aggregates
## 4670     Aggregates
## 4671     Aggregates
## 4672     Aggregates
## 4673     Aggregates
## 4674     Aggregates
## 4675     Aggregates
## 4676     Aggregates
## 4677     Aggregates
## 4678     Aggregates
## 4679     Aggregates
## 4680     Aggregates
## 4681     Aggregates
## 4682     Aggregates
## 4683     Aggregates
## 4684     Aggregates
## 4685     Aggregates
## 4686     Aggregates
## 4687     Aggregates
## 4688     Aggregates
## 4689     Aggregates
## 4690     Aggregates
## 4691     Aggregates
## 4692     Aggregates
## 4693     Aggregates
## 4694     Aggregates
## 4695     Aggregates
## 4696     Aggregates
## 4697     Aggregates
## 4698     Aggregates
## 4699     Aggregates
## 4700     Aggregates
## 4701     Aggregates
## 4702     Aggregates
## 4703     Aggregates
## 4704     Aggregates
## 4705     Aggregates
## 4706     Aggregates
## 4707     Aggregates
## 4708     Aggregates
## 4709     Aggregates
## 4710     Aggregates
## 4711     Aggregates
## 4712     Aggregates
## 4713     Aggregates
## 4714     Aggregates
## 4715     Aggregates
## 4716     Aggregates
## 4717     Aggregates
## 4718     Aggregates
## 4719     Aggregates
## 4720     Aggregates
## 4721     Aggregates
## 4722     Aggregates
## 4723     Aggregates
## 4724     Aggregates
## 4725     Aggregates
## 4726     Aggregates
## 4727     Aggregates
## 4728     Aggregates
## 4729     Aggregates
## 4730     Aggregates
## 4731     Aggregates
## 4732     Aggregates
## 4733     Aggregates
## 4734     Aggregates
## 4735     Aggregates
## 4736     Aggregates
## 4737     Aggregates
## 4738     Aggregates
## 4739     Aggregates
## 4740     Aggregates
## 4741     Aggregates
## 4742     Aggregates
## 4743     Aggregates
## 4744     Aggregates
## 4745     Aggregates
## 4746     Aggregates
## 4747     Aggregates
## 4748     Aggregates
## 4749     Aggregates
## 4750     Aggregates
## 4751     Aggregates
## 4752     Aggregates
## 4753     Aggregates
## 4754     Aggregates
## 4755     Aggregates
## 4756     Aggregates
## 4757     Aggregates
## 4758     Aggregates
## 4759     Aggregates
## 4760     Aggregates
## 4761     Aggregates
## 4762     Aggregates
## 4763     Aggregates
## 4764     Aggregates
## 4765     Aggregates
## 4766     Aggregates
## 4767     Aggregates
## 4768     Aggregates
## 4769     Aggregates
## 4770     Aggregates
## 4771     Aggregates
## 4772     Aggregates
## 4773     Aggregates
## 4774     Aggregates
## 4775     Aggregates
## 4776     Aggregates
## 4777     Aggregates
## 4778     Aggregates
## 4779     Aggregates
## 4780     Aggregates
## 4781     Aggregates
## 4782     Aggregates
## 4783     Aggregates
## 4784     Aggregates
## 4785     Aggregates
## 4786     Aggregates
## 4787     Aggregates
## 4788     Aggregates
## 4789     Aggregates
## 4790     Aggregates
## 4791     Aggregates
## 4792     Aggregates
## 4793     Aggregates
## 4794     Aggregates
## 4795     Aggregates
## 4796     Aggregates
## 4797     Aggregates
## 4798     Aggregates
## 4799     Aggregates
## 4800     Aggregates
## 4801     Aggregates
## 4802     Aggregates
## 4803     Aggregates
## 4804     Aggregates
## 4805     Aggregates
## 4806     Aggregates
## 4807     Aggregates
## 4808     Aggregates
## 4809     Aggregates
## 4810     Aggregates
## 4811     Aggregates
## 4812     Aggregates
## 4813     Aggregates
## 4814     Aggregates
## 4815     Aggregates
## 4816     Aggregates
## 4817     Aggregates
## 4818     Aggregates
## 4819     Aggregates
## 4820     Aggregates
## 4821     Aggregates
## 4822     Aggregates
## 4823     Aggregates
## 4824     Aggregates
## 4825     Aggregates
## 4826     Aggregates
## 4827     Aggregates
## 4828     Aggregates
## 4829     Aggregates
## 4830     Aggregates
## 4831     Aggregates
## 4832     Aggregates
## 4833     Aggregates
## 4834     Aggregates
## 4835     Aggregates
## 4836     Aggregates
## 4837     Aggregates
## 4838     Aggregates
## 4839     Aggregates
## 4840     Aggregates
## 4841     Aggregates
## 4842     Aggregates
## 4843     Aggregates
## 4844     Aggregates
## 4845     Aggregates
## 4846     Aggregates
## 4847     Aggregates
## 4848     Aggregates
## 4849     Aggregates
## 4850     Aggregates
## 4851     Aggregates
## 4852     Aggregates
## 4853     Aggregates
## 4854     Aggregates
## 4855     Aggregates
## 4856     Aggregates
## 4857     Aggregates
## 4858     Aggregates
## 4859     Aggregates
## 4860     Aggregates
## 4861     Aggregates
## 4862     Aggregates
## 4863     Aggregates
## 4864     Aggregates
## 4865     Aggregates
## 4866     Aggregates
## 4867     Aggregates
## 4868     Aggregates
## 4869     Aggregates
## 4870     Aggregates
## 4871     Aggregates
## 4872     Aggregates
## 4873     Aggregates
## 4874     Aggregates
## 4875     Aggregates
## 4876     Aggregates
## 4877     Aggregates
## 4878     Aggregates
## 4879     Aggregates
## 4880     Aggregates
## 4881     Aggregates
## 4882     Aggregates
## 4883     Aggregates
## 4884     Aggregates
## 4885     Aggregates
## 4886     Aggregates
## 4887     Aggregates
## 4888     Aggregates
## 4889     Aggregates
## 4890     Aggregates
## 4891     Aggregates
## 4892     Aggregates
## 4893     Aggregates
## 4894     Aggregates
## 4895     Aggregates
## 4896     Aggregates
## 4897     Aggregates
## 4898     Aggregates
## 4899     Aggregates
## 4900     Aggregates
## 4901     Aggregates
## 4902     Aggregates
## 4903     Aggregates
## 4904     Aggregates
## 4905     Aggregates
## 4906     Aggregates
## 4907     Aggregates
## 4908     Aggregates
## 4909     Aggregates
## 4910     Aggregates
## 4911     Aggregates
## 4912     Aggregates
## 4913     Aggregates
## 4914     Aggregates
## 4915     Aggregates
## 4916     Aggregates
## 4917     Aggregates
## 4918     Aggregates
## 4919     Aggregates
## 4920     Aggregates
## 4921     Aggregates
## 4922     Aggregates
## 4923     Aggregates
## 4924     Aggregates
## 4925     Aggregates
## 4926     Aggregates
## 4927     Aggregates
## 4928     Aggregates
## 4929     Aggregates
## 4930     Aggregates
## 4931     Aggregates
## 4932     Aggregates
## 4933     Aggregates
## 4934     Aggregates
## 4935     Aggregates
## 4936     Aggregates
## 4937     Aggregates
## 4938     Aggregates
## 4939     Aggregates
## 4940     Aggregates
## 4941     Aggregates
## 4942     Aggregates
## 4943     Aggregates
## 4944     Aggregates
## 4945     Aggregates
## 4946     Aggregates
## 4947     Aggregates
## 4948     Aggregates
## 4949     Aggregates
## 4950     Aggregates
## 4951     Aggregates
## 4952     Aggregates
## 4953     Aggregates
## 4954     Aggregates
## 4955     Aggregates
## 4956     Aggregates
## 4957     Aggregates
## 4958     Aggregates
## 4959     Aggregates
## 4960     Aggregates
## 4961     Aggregates
## 4962     Aggregates
## 4963     Aggregates
## 4964     Aggregates
## 4965     Aggregates
## 4966     Aggregates
## 4967     Aggregates
## 4968     Aggregates
## 4969     Aggregates
## 4970     Aggregates
## 4971     Aggregates
## 4972     Aggregates
## 4973     Aggregates
## 4974     Aggregates
## 4975     Aggregates
## 4976     Aggregates
## 4977     Aggregates
## 4978 Not classified
## 4979 Not classified
## 4980 Not classified
## 4981 Not classified
## 4982 Not classified
## 4983 Not classified
## 4984 Not classified
## 4985 Not classified
## 4986 Not classified
## 4987 Not classified
## 4988 Not classified
## 4989 Not classified
## 4990 Not classified
## 4991 Not classified
## 4992 Not classified
## 4993 Not classified
## 4994 Not classified
## 4995 Not classified
## 4996 Not classified
## 4997 Not classified
## 4998 Not classified
## 4999 Not classified
## 5000 Not classified
## 5001 Not classified
## 5002 Not classified
## 5003 Not classified
## 5004 Not classified
## 5005 Not classified
## 5006 Not classified
## 5007 Not classified
## 5008 Not classified
## 5009 Not classified
## 5010 Not classified
## 5011 Not classified
## 5012 Not classified
## 5013 Not classified
## 5014 Not classified
## 5015 Not classified
## 5016 Not classified
## 5017 Not classified
## 5018 Not classified
## 5019 Not classified
## 5020 Not classified
## 5021 Not classified
## 5022 Not classified
## 5023 Not classified
## 5024 Not classified
## 5025 Not classified
## 5026 Not classified
## 5027 Not classified
## 5028 Not classified
## 5029 Not classified
## 5030 Not classified
## 5031 Not classified
## 5032 Not classified
## 5033 Not classified
## 5034 Not classified
## 5035 Not classified
## 5036 Not classified
## 5037 Not classified
## 5038 Not classified
## 5039 Not classified
## 5040 Not classified
## 5041          Blend
## 5042          Blend
## 5043          Blend
## 5044          Blend
## 5045          Blend
## 5046          Blend
## 5047          Blend
## 5048          Blend
## 5049          Blend
## 5050          Blend
## 5051          Blend
## 5052          Blend
## 5053          Blend
## 5054          Blend
## 5055          Blend
## 5056          Blend
## 5057          Blend
## 5058          Blend
## 5059          Blend
## 5060          Blend
## 5061          Blend
## 5062          Blend
## 5063          Blend
## 5064          Blend
## 5065          Blend
## 5066          Blend
## 5067          Blend
## 5068          Blend
## 5069          Blend
## 5070          Blend
## 5071          Blend
## 5072          Blend
## 5073          Blend
## 5074          Blend
## 5075          Blend
## 5076          Blend
## 5077          Blend
## 5078          Blend
## 5079          Blend
## 5080          Blend
## 5081          Blend
## 5082          Blend
## 5083          Blend
## 5084          Blend
## 5085          Blend
## 5086          Blend
## 5087          Blend
## 5088          Blend
## 5089          Blend
## 5090          Blend
## 5091          Blend
## 5092          Blend
## 5093          Blend
## 5094          Blend
## 5095          Blend
## 5096          Blend
## 5097          Blend
## 5098          Blend
## 5099          Blend
## 5100          Blend
## 5101          Blend
## 5102          Blend
## 5103          Blend
## 5104 Not classified
## 5105 Not classified
## 5106 Not classified
## 5107 Not classified
## 5108 Not classified
## 5109 Not classified
## 5110 Not classified
## 5111 Not classified
## 5112 Not classified
## 5113 Not classified
## 5114 Not classified
## 5115 Not classified
## 5116 Not classified
## 5117 Not classified
## 5118 Not classified
## 5119 Not classified
## 5120 Not classified
## 5121 Not classified
## 5122 Not classified
## 5123 Not classified
## 5124 Not classified
## 5125 Not classified
## 5126 Not classified
## 5127 Not classified
## 5128 Not classified
## 5129 Not classified
## 5130 Not classified
## 5131 Not classified
## 5132 Not classified
## 5133 Not classified
## 5134 Not classified
## 5135 Not classified
## 5136 Not classified
## 5137 Not classified
## 5138 Not classified
## 5139 Not classified
## 5140 Not classified
## 5141 Not classified
## 5142 Not classified
## 5143 Not classified
## 5144 Not classified
## 5145 Not classified
## 5146 Not classified
## 5147 Not classified
## 5148 Not classified
## 5149 Not classified
## 5150 Not classified
## 5151 Not classified
## 5152 Not classified
## 5153 Not classified
## 5154 Not classified
## 5155 Not classified
## 5156 Not classified
## 5157 Not classified
## 5158 Not classified
## 5159 Not classified
## 5160 Not classified
## 5161 Not classified
## 5162 Not classified
## 5163 Not classified
## 5164 Not classified
## 5165 Not classified
## 5166 Not classified
## 5167     Aggregates
## 5168     Aggregates
## 5169     Aggregates
## 5170     Aggregates
## 5171     Aggregates
## 5172     Aggregates
## 5173     Aggregates
## 5174     Aggregates
## 5175     Aggregates
## 5176     Aggregates
## 5177     Aggregates
## 5178     Aggregates
## 5179     Aggregates
## 5180     Aggregates
## 5181     Aggregates
## 5182     Aggregates
## 5183     Aggregates
## 5184     Aggregates
## 5185     Aggregates
## 5186     Aggregates
## 5187     Aggregates
## 5188     Aggregates
## 5189     Aggregates
## 5190     Aggregates
## 5191     Aggregates
## 5192     Aggregates
## 5193     Aggregates
## 5194     Aggregates
## 5195     Aggregates
## 5196     Aggregates
## 5197     Aggregates
## 5198     Aggregates
## 5199     Aggregates
## 5200     Aggregates
## 5201     Aggregates
## 5202     Aggregates
## 5203     Aggregates
## 5204     Aggregates
## 5205     Aggregates
## 5206     Aggregates
## 5207     Aggregates
## 5208     Aggregates
## 5209     Aggregates
## 5210     Aggregates
## 5211     Aggregates
## 5212     Aggregates
## 5213     Aggregates
## 5214     Aggregates
## 5215     Aggregates
## 5216     Aggregates
## 5217     Aggregates
## 5218     Aggregates
## 5219     Aggregates
## 5220     Aggregates
## 5221     Aggregates
## 5222     Aggregates
## 5223     Aggregates
## 5224     Aggregates
## 5225     Aggregates
## 5226     Aggregates
## 5227     Aggregates
## 5228     Aggregates
## 5229     Aggregates
## 5230 Not classified
## 5231 Not classified
## 5232 Not classified
## 5233 Not classified
## 5234 Not classified
## 5235 Not classified
## 5236 Not classified
## 5237 Not classified
## 5238 Not classified
## 5239 Not classified
## 5240 Not classified
## 5241 Not classified
## 5242 Not classified
## 5243 Not classified
## 5244 Not classified
## 5245 Not classified
## 5246 Not classified
## 5247 Not classified
## 5248 Not classified
## 5249 Not classified
## 5250 Not classified
## 5251 Not classified
## 5252 Not classified
## 5253 Not classified
## 5254 Not classified
## 5255 Not classified
## 5256 Not classified
## 5257 Not classified
## 5258 Not classified
## 5259 Not classified
## 5260 Not classified
## 5261 Not classified
## 5262 Not classified
## 5263 Not classified
## 5264 Not classified
## 5265 Not classified
## 5266 Not classified
## 5267 Not classified
## 5268 Not classified
## 5269 Not classified
## 5270 Not classified
## 5271 Not classified
## 5272 Not classified
## 5273 Not classified
## 5274 Not classified
## 5275 Not classified
## 5276 Not classified
## 5277 Not classified
## 5278 Not classified
## 5279 Not classified
## 5280 Not classified
## 5281 Not classified
## 5282 Not classified
## 5283 Not classified
## 5284 Not classified
## 5285 Not classified
## 5286 Not classified
## 5287 Not classified
## 5288 Not classified
## 5289 Not classified
## 5290 Not classified
## 5291 Not classified
## 5292 Not classified
## 5293 Not classified
## 5294 Not classified
## 5295 Not classified
## 5296 Not classified
## 5297 Not classified
## 5298 Not classified
## 5299 Not classified
## 5300 Not classified
## 5301 Not classified
## 5302 Not classified
## 5303 Not classified
## 5304 Not classified
## 5305 Not classified
## 5306 Not classified
## 5307 Not classified
## 5308 Not classified
## 5309 Not classified
## 5310 Not classified
## 5311 Not classified
## 5312 Not classified
## 5313 Not classified
## 5314 Not classified
## 5315 Not classified
## 5316 Not classified
## 5317 Not classified
## 5318 Not classified
## 5319 Not classified
## 5320 Not classified
## 5321 Not classified
## 5322 Not classified
## 5323 Not classified
## 5324 Not classified
## 5325 Not classified
## 5326 Not classified
## 5327 Not classified
## 5328 Not classified
## 5329 Not classified
## 5330 Not classified
## 5331 Not classified
## 5332 Not classified
## 5333 Not classified
## 5334 Not classified
## 5335 Not classified
## 5336 Not classified
## 5337 Not classified
## 5338 Not classified
## 5339 Not classified
## 5340 Not classified
## 5341 Not classified
## 5342 Not classified
## 5343 Not classified
## 5344 Not classified
## 5345 Not classified
## 5346 Not classified
## 5347 Not classified
## 5348 Not classified
## 5349 Not classified
## 5350 Not classified
## 5351 Not classified
## 5352 Not classified
## 5353 Not classified
## 5354 Not classified
## 5355 Not classified
## 5356           IBRD
## 5357           IBRD
## 5358           IBRD
## 5359           IBRD
## 5360           IBRD
## 5361           IBRD
## 5362           IBRD
## 5363           IBRD
## 5364           IBRD
## 5365           IBRD
## 5366           IBRD
## 5367           IBRD
## 5368           IBRD
## 5369           IBRD
## 5370           IBRD
## 5371           IBRD
## 5372           IBRD
## 5373           IBRD
## 5374           IBRD
## 5375           IBRD
## 5376           IBRD
## 5377           IBRD
## 5378           IBRD
## 5379           IBRD
## 5380           IBRD
## 5381           IBRD
## 5382           IBRD
## 5383           IBRD
## 5384           IBRD
## 5385           IBRD
## 5386           IBRD
## 5387           IBRD
## 5388           IBRD
## 5389           IBRD
## 5390           IBRD
## 5391           IBRD
## 5392           IBRD
## 5393           IBRD
## 5394           IBRD
## 5395           IBRD
## 5396           IBRD
## 5397           IBRD
## 5398           IBRD
## 5399           IBRD
## 5400           IBRD
## 5401           IBRD
## 5402           IBRD
## 5403           IBRD
## 5404           IBRD
## 5405           IBRD
## 5406           IBRD
## 5407           IBRD
## 5408           IBRD
## 5409           IBRD
## 5410           IBRD
## 5411           IBRD
## 5412           IBRD
## 5413           IBRD
## 5414           IBRD
## 5415           IBRD
## 5416           IBRD
## 5417           IBRD
## 5418           IBRD
## 5419            IDA
## 5420            IDA
## 5421            IDA
## 5422            IDA
## 5423            IDA
## 5424            IDA
## 5425            IDA
## 5426            IDA
## 5427            IDA
## 5428            IDA
## 5429            IDA
## 5430            IDA
## 5431            IDA
## 5432            IDA
## 5433            IDA
## 5434            IDA
## 5435            IDA
## 5436            IDA
## 5437            IDA
## 5438            IDA
## 5439            IDA
## 5440            IDA
## 5441            IDA
## 5442            IDA
## 5443            IDA
## 5444            IDA
## 5445            IDA
## 5446            IDA
## 5447            IDA
## 5448            IDA
## 5449            IDA
## 5450            IDA
## 5451            IDA
## 5452            IDA
## 5453            IDA
## 5454            IDA
## 5455            IDA
## 5456            IDA
## 5457            IDA
## 5458            IDA
## 5459            IDA
## 5460            IDA
## 5461            IDA
## 5462            IDA
## 5463            IDA
## 5464            IDA
## 5465            IDA
## 5466            IDA
## 5467            IDA
## 5468            IDA
## 5469            IDA
## 5470            IDA
## 5471            IDA
## 5472            IDA
## 5473            IDA
## 5474            IDA
## 5475            IDA
## 5476            IDA
## 5477            IDA
## 5478            IDA
## 5479            IDA
## 5480            IDA
## 5481            IDA
## 5482           IBRD
## 5483           IBRD
## 5484           IBRD
## 5485           IBRD
## 5486           IBRD
## 5487           IBRD
## 5488           IBRD
## 5489           IBRD
## 5490           IBRD
## 5491           IBRD
## 5492           IBRD
## 5493           IBRD
## 5494           IBRD
## 5495           IBRD
## 5496           IBRD
## 5497           IBRD
## 5498           IBRD
## 5499           IBRD
## 5500           IBRD
## 5501           IBRD
## 5502           IBRD
## 5503           IBRD
## 5504           IBRD
## 5505           IBRD
## 5506           IBRD
## 5507           IBRD
## 5508           IBRD
## 5509           IBRD
## 5510           IBRD
## 5511           IBRD
## 5512           IBRD
## 5513           IBRD
## 5514           IBRD
## 5515           IBRD
## 5516           IBRD
## 5517           IBRD
## 5518           IBRD
## 5519           IBRD
## 5520           IBRD
## 5521           IBRD
## 5522           IBRD
## 5523           IBRD
## 5524           IBRD
## 5525           IBRD
## 5526           IBRD
## 5527           IBRD
## 5528           IBRD
## 5529           IBRD
## 5530           IBRD
## 5531           IBRD
## 5532           IBRD
## 5533           IBRD
## 5534           IBRD
## 5535           IBRD
## 5536           IBRD
## 5537           IBRD
## 5538           IBRD
## 5539           IBRD
## 5540           IBRD
## 5541           IBRD
## 5542           IBRD
## 5543           IBRD
## 5544           IBRD
## 5545 Not classified
## 5546 Not classified
## 5547 Not classified
## 5548 Not classified
## 5549 Not classified
## 5550 Not classified
## 5551 Not classified
## 5552 Not classified
## 5553 Not classified
## 5554 Not classified
## 5555 Not classified
## 5556 Not classified
## 5557 Not classified
## 5558 Not classified
## 5559 Not classified
## 5560 Not classified
## 5561 Not classified
## 5562 Not classified
## 5563 Not classified
## 5564 Not classified
## 5565 Not classified
## 5566 Not classified
## 5567 Not classified
## 5568 Not classified
## 5569 Not classified
## 5570 Not classified
## 5571 Not classified
## 5572 Not classified
## 5573 Not classified
## 5574 Not classified
## 5575 Not classified
## 5576 Not classified
## 5577 Not classified
## 5578 Not classified
## 5579 Not classified
## 5580 Not classified
## 5581 Not classified
## 5582 Not classified
## 5583 Not classified
## 5584 Not classified
## 5585 Not classified
## 5586 Not classified
## 5587 Not classified
## 5588 Not classified
## 5589 Not classified
## 5590 Not classified
## 5591 Not classified
## 5592 Not classified
## 5593 Not classified
## 5594 Not classified
## 5595 Not classified
## 5596 Not classified
## 5597 Not classified
## 5598 Not classified
## 5599 Not classified
## 5600 Not classified
## 5601 Not classified
## 5602 Not classified
## 5603 Not classified
## 5604 Not classified
## 5605 Not classified
## 5606 Not classified
## 5607 Not classified
## 5608            IDA
## 5609            IDA
## 5610            IDA
## 5611            IDA
## 5612            IDA
## 5613            IDA
## 5614            IDA
## 5615            IDA
## 5616            IDA
## 5617            IDA
## 5618            IDA
## 5619            IDA
## 5620            IDA
## 5621            IDA
## 5622            IDA
## 5623            IDA
## 5624            IDA
## 5625            IDA
## 5626            IDA
## 5627            IDA
## 5628            IDA
## 5629            IDA
## 5630            IDA
## 5631            IDA
## 5632            IDA
## 5633            IDA
## 5634            IDA
## 5635            IDA
## 5636            IDA
## 5637            IDA
## 5638            IDA
## 5639            IDA
## 5640            IDA
## 5641            IDA
## 5642            IDA
## 5643            IDA
## 5644            IDA
## 5645            IDA
## 5646            IDA
## 5647            IDA
## 5648            IDA
## 5649            IDA
## 5650            IDA
## 5651            IDA
## 5652            IDA
## 5653            IDA
## 5654            IDA
## 5655            IDA
## 5656            IDA
## 5657            IDA
## 5658            IDA
## 5659            IDA
## 5660            IDA
## 5661            IDA
## 5662            IDA
## 5663            IDA
## 5664            IDA
## 5665            IDA
## 5666            IDA
## 5667            IDA
## 5668            IDA
## 5669            IDA
## 5670            IDA
## 5671 Not classified
## 5672 Not classified
## 5673 Not classified
## 5674 Not classified
## 5675 Not classified
## 5676 Not classified
## 5677 Not classified
## 5678 Not classified
## 5679 Not classified
## 5680 Not classified
## 5681 Not classified
## 5682 Not classified
## 5683 Not classified
## 5684 Not classified
## 5685 Not classified
## 5686 Not classified
## 5687 Not classified
## 5688 Not classified
## 5689 Not classified
## 5690 Not classified
## 5691 Not classified
## 5692 Not classified
## 5693 Not classified
## 5694 Not classified
## 5695 Not classified
## 5696 Not classified
## 5697 Not classified
## 5698 Not classified
## 5699 Not classified
## 5700 Not classified
## 5701 Not classified
## 5702 Not classified
## 5703 Not classified
## 5704 Not classified
## 5705 Not classified
## 5706 Not classified
## 5707 Not classified
## 5708 Not classified
## 5709 Not classified
## 5710 Not classified
## 5711 Not classified
## 5712 Not classified
## 5713 Not classified
## 5714 Not classified
## 5715 Not classified
## 5716 Not classified
## 5717 Not classified
## 5718 Not classified
## 5719 Not classified
## 5720 Not classified
## 5721 Not classified
## 5722 Not classified
## 5723 Not classified
## 5724 Not classified
## 5725 Not classified
## 5726 Not classified
## 5727 Not classified
## 5728 Not classified
## 5729 Not classified
## 5730 Not classified
## 5731 Not classified
## 5732 Not classified
## 5733 Not classified
## 5734 Not classified
## 5735 Not classified
## 5736 Not classified
## 5737 Not classified
## 5738 Not classified
## 5739 Not classified
## 5740 Not classified
## 5741 Not classified
## 5742 Not classified
## 5743 Not classified
## 5744 Not classified
## 5745 Not classified
## 5746 Not classified
## 5747 Not classified
## 5748 Not classified
## 5749 Not classified
## 5750 Not classified
## 5751 Not classified
## 5752 Not classified
## 5753 Not classified
## 5754 Not classified
## 5755 Not classified
## 5756 Not classified
## 5757 Not classified
## 5758 Not classified
## 5759 Not classified
## 5760 Not classified
## 5761 Not classified
## 5762 Not classified
## 5763 Not classified
## 5764 Not classified
## 5765 Not classified
## 5766 Not classified
## 5767 Not classified
## 5768 Not classified
## 5769 Not classified
## 5770 Not classified
## 5771 Not classified
## 5772 Not classified
## 5773 Not classified
## 5774 Not classified
## 5775 Not classified
## 5776 Not classified
## 5777 Not classified
## 5778 Not classified
## 5779 Not classified
## 5780 Not classified
## 5781 Not classified
## 5782 Not classified
## 5783 Not classified
## 5784 Not classified
## 5785 Not classified
## 5786 Not classified
## 5787 Not classified
## 5788 Not classified
## 5789 Not classified
## 5790 Not classified
## 5791 Not classified
## 5792 Not classified
## 5793 Not classified
## 5794 Not classified
## 5795 Not classified
## 5796 Not classified
## 5797 Not classified
## 5798 Not classified
## 5799 Not classified
## 5800 Not classified
## 5801 Not classified
## 5802 Not classified
## 5803 Not classified
## 5804 Not classified
## 5805 Not classified
## 5806 Not classified
## 5807 Not classified
## 5808 Not classified
## 5809 Not classified
## 5810 Not classified
## 5811 Not classified
## 5812 Not classified
## 5813 Not classified
## 5814 Not classified
## 5815 Not classified
## 5816 Not classified
## 5817 Not classified
## 5818 Not classified
## 5819 Not classified
## 5820 Not classified
## 5821 Not classified
## 5822 Not classified
## 5823 Not classified
## 5824 Not classified
## 5825 Not classified
## 5826 Not classified
## 5827 Not classified
## 5828 Not classified
## 5829 Not classified
## 5830 Not classified
## 5831 Not classified
## 5832 Not classified
## 5833 Not classified
## 5834 Not classified
## 5835 Not classified
## 5836 Not classified
## 5837 Not classified
## 5838 Not classified
## 5839 Not classified
## 5840 Not classified
## 5841 Not classified
## 5842 Not classified
## 5843 Not classified
## 5844 Not classified
## 5845 Not classified
## 5846 Not classified
## 5847 Not classified
## 5848 Not classified
## 5849 Not classified
## 5850 Not classified
## 5851 Not classified
## 5852 Not classified
## 5853 Not classified
## 5854 Not classified
## 5855 Not classified
## 5856 Not classified
## 5857 Not classified
## 5858 Not classified
## 5859 Not classified
## 5860          Blend
## 5861          Blend
## 5862          Blend
## 5863          Blend
## 5864          Blend
## 5865          Blend
## 5866          Blend
## 5867          Blend
## 5868          Blend
## 5869          Blend
## 5870          Blend
## 5871          Blend
## 5872          Blend
## 5873          Blend
## 5874          Blend
## 5875          Blend
## 5876          Blend
## 5877          Blend
## 5878          Blend
## 5879          Blend
## 5880          Blend
## 5881          Blend
## 5882          Blend
## 5883          Blend
## 5884          Blend
## 5885          Blend
## 5886          Blend
## 5887          Blend
## 5888          Blend
## 5889          Blend
## 5890          Blend
## 5891          Blend
## 5892          Blend
## 5893          Blend
## 5894          Blend
## 5895          Blend
## 5896          Blend
## 5897          Blend
## 5898          Blend
## 5899          Blend
## 5900          Blend
## 5901          Blend
## 5902          Blend
## 5903          Blend
## 5904          Blend
## 5905          Blend
## 5906          Blend
## 5907          Blend
## 5908          Blend
## 5909          Blend
## 5910          Blend
## 5911          Blend
## 5912          Blend
## 5913          Blend
## 5914          Blend
## 5915          Blend
## 5916          Blend
## 5917          Blend
## 5918          Blend
## 5919          Blend
## 5920          Blend
## 5921          Blend
## 5922          Blend
## 5923 Not classified
## 5924 Not classified
## 5925 Not classified
## 5926 Not classified
## 5927 Not classified
## 5928 Not classified
## 5929 Not classified
## 5930 Not classified
## 5931 Not classified
## 5932 Not classified
## 5933 Not classified
## 5934 Not classified
## 5935 Not classified
## 5936 Not classified
## 5937 Not classified
## 5938 Not classified
## 5939 Not classified
## 5940 Not classified
## 5941 Not classified
## 5942 Not classified
## 5943 Not classified
## 5944 Not classified
## 5945 Not classified
## 5946 Not classified
## 5947 Not classified
## 5948 Not classified
## 5949 Not classified
## 5950 Not classified
## 5951 Not classified
## 5952 Not classified
## 5953 Not classified
## 5954 Not classified
## 5955 Not classified
## 5956 Not classified
## 5957 Not classified
## 5958 Not classified
## 5959 Not classified
## 5960 Not classified
## 5961 Not classified
## 5962 Not classified
## 5963 Not classified
## 5964 Not classified
## 5965 Not classified
## 5966 Not classified
## 5967 Not classified
## 5968 Not classified
## 5969 Not classified
## 5970 Not classified
## 5971 Not classified
## 5972 Not classified
## 5973 Not classified
## 5974 Not classified
## 5975 Not classified
## 5976 Not classified
## 5977 Not classified
## 5978 Not classified
## 5979 Not classified
## 5980 Not classified
## 5981 Not classified
## 5982 Not classified
## 5983 Not classified
## 5984 Not classified
## 5985 Not classified
## 5986           IBRD
## 5987           IBRD
## 5988           IBRD
## 5989           IBRD
## 5990           IBRD
## 5991           IBRD
## 5992           IBRD
## 5993           IBRD
## 5994           IBRD
## 5995           IBRD
## 5996           IBRD
## 5997           IBRD
## 5998           IBRD
## 5999           IBRD
## 6000           IBRD
## 6001           IBRD
## 6002           IBRD
## 6003           IBRD
## 6004           IBRD
## 6005           IBRD
## 6006           IBRD
## 6007           IBRD
## 6008           IBRD
## 6009           IBRD
## 6010           IBRD
## 6011           IBRD
## 6012           IBRD
## 6013           IBRD
## 6014           IBRD
## 6015           IBRD
## 6016           IBRD
## 6017           IBRD
## 6018           IBRD
## 6019           IBRD
## 6020           IBRD
## 6021           IBRD
## 6022           IBRD
## 6023           IBRD
## 6024           IBRD
## 6025           IBRD
## 6026           IBRD
## 6027           IBRD
## 6028           IBRD
## 6029           IBRD
## 6030           IBRD
## 6031           IBRD
## 6032           IBRD
## 6033           IBRD
## 6034           IBRD
## 6035           IBRD
## 6036           IBRD
## 6037           IBRD
## 6038           IBRD
## 6039           IBRD
## 6040           IBRD
## 6041           IBRD
## 6042           IBRD
## 6043           IBRD
## 6044           IBRD
## 6045           IBRD
## 6046           IBRD
## 6047           IBRD
## 6048           IBRD
## 6049            IDA
## 6050            IDA
## 6051            IDA
## 6052            IDA
## 6053            IDA
## 6054            IDA
## 6055            IDA
## 6056            IDA
## 6057            IDA
## 6058            IDA
## 6059            IDA
## 6060            IDA
## 6061            IDA
## 6062            IDA
## 6063            IDA
## 6064            IDA
## 6065            IDA
## 6066            IDA
## 6067            IDA
## 6068            IDA
## 6069            IDA
## 6070            IDA
## 6071            IDA
## 6072            IDA
## 6073            IDA
## 6074            IDA
## 6075            IDA
## 6076            IDA
## 6077            IDA
## 6078            IDA
## 6079            IDA
## 6080            IDA
## 6081            IDA
## 6082            IDA
## 6083            IDA
## 6084            IDA
## 6085            IDA
## 6086            IDA
## 6087            IDA
## 6088            IDA
## 6089            IDA
## 6090            IDA
## 6091            IDA
## 6092            IDA
## 6093            IDA
## 6094            IDA
## 6095            IDA
## 6096            IDA
## 6097            IDA
## 6098            IDA
## 6099            IDA
## 6100            IDA
## 6101            IDA
## 6102            IDA
## 6103            IDA
## 6104            IDA
## 6105            IDA
## 6106            IDA
## 6107            IDA
## 6108            IDA
## 6109            IDA
## 6110            IDA
## 6111            IDA
## 6112            IDA
## 6113            IDA
## 6114            IDA
## 6115            IDA
## 6116            IDA
## 6117            IDA
## 6118            IDA
## 6119            IDA
## 6120            IDA
## 6121            IDA
## 6122            IDA
## 6123            IDA
## 6124            IDA
## 6125            IDA
## 6126            IDA
## 6127            IDA
## 6128            IDA
## 6129            IDA
## 6130            IDA
## 6131            IDA
## 6132            IDA
## 6133            IDA
## 6134            IDA
## 6135            IDA
## 6136            IDA
## 6137            IDA
## 6138            IDA
## 6139            IDA
## 6140            IDA
## 6141            IDA
## 6142            IDA
## 6143            IDA
## 6144            IDA
## 6145            IDA
## 6146            IDA
## 6147            IDA
## 6148            IDA
## 6149            IDA
## 6150            IDA
## 6151            IDA
## 6152            IDA
## 6153            IDA
## 6154            IDA
## 6155            IDA
## 6156            IDA
## 6157            IDA
## 6158            IDA
## 6159            IDA
## 6160            IDA
## 6161            IDA
## 6162            IDA
## 6163            IDA
## 6164            IDA
## 6165            IDA
## 6166            IDA
## 6167            IDA
## 6168            IDA
## 6169            IDA
## 6170            IDA
## 6171            IDA
## 6172            IDA
## 6173            IDA
## 6174            IDA
## 6175            IDA
## 6176            IDA
## 6177            IDA
## 6178            IDA
## 6179            IDA
## 6180            IDA
## 6181            IDA
## 6182            IDA
## 6183            IDA
## 6184            IDA
## 6185            IDA
## 6186            IDA
## 6187            IDA
## 6188            IDA
## 6189            IDA
## 6190            IDA
## 6191            IDA
## 6192            IDA
## 6193            IDA
## 6194            IDA
## 6195            IDA
## 6196            IDA
## 6197            IDA
## 6198            IDA
## 6199            IDA
## 6200            IDA
## 6201            IDA
## 6202            IDA
## 6203            IDA
## 6204            IDA
## 6205            IDA
## 6206            IDA
## 6207            IDA
## 6208            IDA
## 6209            IDA
## 6210            IDA
## 6211            IDA
## 6212            IDA
## 6213            IDA
## 6214            IDA
## 6215            IDA
## 6216            IDA
## 6217            IDA
## 6218            IDA
## 6219            IDA
## 6220            IDA
## 6221            IDA
## 6222            IDA
## 6223            IDA
## 6224            IDA
## 6225            IDA
## 6226            IDA
## 6227            IDA
## 6228            IDA
## 6229            IDA
## 6230            IDA
## 6231            IDA
## 6232            IDA
## 6233            IDA
## 6234            IDA
## 6235            IDA
## 6236            IDA
## 6237            IDA
## 6238            IDA
## 6239            IDA
## 6240            IDA
## 6241            IDA
## 6242            IDA
## 6243            IDA
## 6244            IDA
## 6245            IDA
## 6246            IDA
## 6247            IDA
## 6248            IDA
## 6249            IDA
## 6250            IDA
## 6251            IDA
## 6252            IDA
## 6253            IDA
## 6254            IDA
## 6255            IDA
## 6256            IDA
## 6257            IDA
## 6258            IDA
## 6259            IDA
## 6260            IDA
## 6261            IDA
## 6262            IDA
## 6263            IDA
## 6264            IDA
## 6265            IDA
## 6266            IDA
## 6267            IDA
## 6268            IDA
## 6269            IDA
## 6270            IDA
## 6271            IDA
## 6272            IDA
## 6273            IDA
## 6274            IDA
## 6275            IDA
## 6276            IDA
## 6277            IDA
## 6278            IDA
## 6279            IDA
## 6280            IDA
## 6281            IDA
## 6282            IDA
## 6283            IDA
## 6284            IDA
## 6285            IDA
## 6286            IDA
## 6287            IDA
## 6288            IDA
## 6289            IDA
## 6290            IDA
## 6291            IDA
## 6292            IDA
## 6293            IDA
## 6294            IDA
## 6295            IDA
## 6296            IDA
## 6297            IDA
## 6298            IDA
## 6299            IDA
## 6300            IDA
## 6301     Aggregates
## 6302     Aggregates
## 6303     Aggregates
## 6304     Aggregates
## 6305     Aggregates
## 6306     Aggregates
## 6307     Aggregates
## 6308     Aggregates
## 6309     Aggregates
## 6310     Aggregates
## 6311     Aggregates
## 6312     Aggregates
## 6313     Aggregates
## 6314     Aggregates
## 6315     Aggregates
## 6316     Aggregates
## 6317     Aggregates
## 6318     Aggregates
## 6319     Aggregates
## 6320     Aggregates
## 6321     Aggregates
## 6322     Aggregates
## 6323     Aggregates
## 6324     Aggregates
## 6325     Aggregates
## 6326     Aggregates
## 6327     Aggregates
## 6328     Aggregates
## 6329     Aggregates
## 6330     Aggregates
## 6331     Aggregates
## 6332     Aggregates
## 6333     Aggregates
## 6334     Aggregates
## 6335     Aggregates
## 6336     Aggregates
## 6337     Aggregates
## 6338     Aggregates
## 6339     Aggregates
## 6340     Aggregates
## 6341     Aggregates
## 6342     Aggregates
## 6343     Aggregates
## 6344     Aggregates
## 6345     Aggregates
## 6346     Aggregates
## 6347     Aggregates
## 6348     Aggregates
## 6349     Aggregates
## 6350     Aggregates
## 6351     Aggregates
## 6352     Aggregates
## 6353     Aggregates
## 6354     Aggregates
## 6355     Aggregates
## 6356     Aggregates
## 6357     Aggregates
## 6358     Aggregates
## 6359     Aggregates
## 6360     Aggregates
## 6361     Aggregates
## 6362     Aggregates
## 6363     Aggregates
## 6364           <NA>
## 6365           <NA>
## 6366           <NA>
## 6367           <NA>
## 6368           <NA>
## 6369           <NA>
## 6370           <NA>
## 6371           <NA>
## 6372           <NA>
## 6373           <NA>
## 6374           <NA>
## 6375           <NA>
## 6376           <NA>
## 6377           <NA>
## 6378           <NA>
## 6379           <NA>
## 6380           <NA>
## 6381           <NA>
## 6382           <NA>
## 6383           <NA>
## 6384           <NA>
## 6385           <NA>
## 6386           <NA>
## 6387           <NA>
## 6388           <NA>
## 6389           <NA>
## 6390           <NA>
## 6391           <NA>
## 6392           <NA>
## 6393           <NA>
## 6394           <NA>
## 6395           <NA>
## 6396           <NA>
## 6397           <NA>
## 6398           <NA>
## 6399           <NA>
## 6400           <NA>
## 6401           <NA>
## 6402           <NA>
## 6403           <NA>
## 6404           <NA>
## 6405           <NA>
## 6406           <NA>
## 6407           <NA>
## 6408           <NA>
## 6409           <NA>
## 6410           <NA>
## 6411           <NA>
## 6412           <NA>
## 6413           <NA>
## 6414           <NA>
## 6415           <NA>
## 6416           <NA>
## 6417           <NA>
## 6418           <NA>
## 6419           <NA>
## 6420           <NA>
## 6421           <NA>
## 6422           <NA>
## 6423           <NA>
## 6424           <NA>
## 6425           <NA>
## 6426           <NA>
## 6427            IDA
## 6428            IDA
## 6429            IDA
## 6430            IDA
## 6431            IDA
## 6432            IDA
## 6433            IDA
## 6434            IDA
## 6435            IDA
## 6436            IDA
## 6437            IDA
## 6438            IDA
## 6439            IDA
## 6440            IDA
## 6441            IDA
## 6442            IDA
## 6443            IDA
## 6444            IDA
## 6445            IDA
## 6446            IDA
## 6447            IDA
## 6448            IDA
## 6449            IDA
## 6450            IDA
## 6451            IDA
## 6452            IDA
## 6453            IDA
## 6454            IDA
## 6455            IDA
## 6456            IDA
## 6457            IDA
## 6458            IDA
## 6459            IDA
## 6460            IDA
## 6461            IDA
## 6462            IDA
## 6463            IDA
## 6464            IDA
## 6465            IDA
## 6466            IDA
## 6467            IDA
## 6468            IDA
## 6469            IDA
## 6470            IDA
## 6471            IDA
## 6472            IDA
## 6473            IDA
## 6474            IDA
## 6475            IDA
## 6476            IDA
## 6477            IDA
## 6478            IDA
## 6479            IDA
## 6480            IDA
## 6481            IDA
## 6482            IDA
## 6483            IDA
## 6484            IDA
## 6485            IDA
## 6486            IDA
## 6487            IDA
## 6488            IDA
## 6489            IDA
## 6490 Not classified
## 6491 Not classified
## 6492 Not classified
## 6493 Not classified
## 6494 Not classified
## 6495 Not classified
## 6496 Not classified
## 6497 Not classified
## 6498 Not classified
## 6499 Not classified
## 6500 Not classified
## 6501 Not classified
## 6502 Not classified
## 6503 Not classified
## 6504 Not classified
## 6505 Not classified
## 6506 Not classified
## 6507 Not classified
## 6508 Not classified
## 6509 Not classified
## 6510 Not classified
## 6511 Not classified
## 6512 Not classified
## 6513 Not classified
## 6514 Not classified
## 6515 Not classified
## 6516 Not classified
## 6517 Not classified
## 6518 Not classified
## 6519 Not classified
## 6520 Not classified
## 6521 Not classified
## 6522 Not classified
## 6523 Not classified
## 6524 Not classified
## 6525 Not classified
## 6526 Not classified
## 6527 Not classified
## 6528 Not classified
## 6529 Not classified
## 6530 Not classified
## 6531 Not classified
## 6532 Not classified
## 6533 Not classified
## 6534 Not classified
## 6535 Not classified
## 6536 Not classified
## 6537 Not classified
## 6538 Not classified
## 6539 Not classified
## 6540 Not classified
## 6541 Not classified
## 6542 Not classified
## 6543 Not classified
## 6544 Not classified
## 6545 Not classified
## 6546 Not classified
## 6547 Not classified
## 6548 Not classified
## 6549 Not classified
## 6550 Not classified
## 6551 Not classified
## 6552 Not classified
## 6553 Not classified
## 6554 Not classified
## 6555 Not classified
## 6556 Not classified
## 6557 Not classified
## 6558 Not classified
## 6559 Not classified
## 6560 Not classified
## 6561 Not classified
## 6562 Not classified
## 6563 Not classified
## 6564 Not classified
## 6565 Not classified
## 6566 Not classified
## 6567 Not classified
## 6568 Not classified
## 6569 Not classified
## 6570 Not classified
## 6571 Not classified
## 6572 Not classified
## 6573 Not classified
## 6574 Not classified
## 6575 Not classified
## 6576 Not classified
## 6577 Not classified
## 6578 Not classified
## 6579 Not classified
## 6580 Not classified
## 6581 Not classified
## 6582 Not classified
## 6583 Not classified
## 6584 Not classified
## 6585 Not classified
## 6586 Not classified
## 6587 Not classified
## 6588 Not classified
## 6589 Not classified
## 6590 Not classified
## 6591 Not classified
## 6592 Not classified
## 6593 Not classified
## 6594 Not classified
## 6595 Not classified
## 6596 Not classified
## 6597 Not classified
## 6598 Not classified
## 6599 Not classified
## 6600 Not classified
## 6601 Not classified
## 6602 Not classified
## 6603 Not classified
## 6604 Not classified
## 6605 Not classified
## 6606 Not classified
## 6607 Not classified
## 6608 Not classified
## 6609 Not classified
## 6610 Not classified
## 6611 Not classified
## 6612 Not classified
## 6613 Not classified
## 6614 Not classified
## 6615 Not classified
## 6616     Aggregates
## 6617     Aggregates
## 6618     Aggregates
## 6619     Aggregates
## 6620     Aggregates
## 6621     Aggregates
## 6622     Aggregates
## 6623     Aggregates
## 6624     Aggregates
## 6625     Aggregates
## 6626     Aggregates
## 6627     Aggregates
## 6628     Aggregates
## 6629     Aggregates
## 6630     Aggregates
## 6631     Aggregates
## 6632     Aggregates
## 6633     Aggregates
## 6634     Aggregates
## 6635     Aggregates
## 6636     Aggregates
## 6637     Aggregates
## 6638     Aggregates
## 6639     Aggregates
## 6640     Aggregates
## 6641     Aggregates
## 6642     Aggregates
## 6643     Aggregates
## 6644     Aggregates
## 6645     Aggregates
## 6646     Aggregates
## 6647     Aggregates
## 6648     Aggregates
## 6649     Aggregates
## 6650     Aggregates
## 6651     Aggregates
## 6652     Aggregates
## 6653     Aggregates
## 6654     Aggregates
## 6655     Aggregates
## 6656     Aggregates
## 6657     Aggregates
## 6658     Aggregates
## 6659     Aggregates
## 6660     Aggregates
## 6661     Aggregates
## 6662     Aggregates
## 6663     Aggregates
## 6664     Aggregates
## 6665     Aggregates
## 6666     Aggregates
## 6667     Aggregates
## 6668     Aggregates
## 6669     Aggregates
## 6670     Aggregates
## 6671     Aggregates
## 6672     Aggregates
## 6673     Aggregates
## 6674     Aggregates
## 6675     Aggregates
## 6676     Aggregates
## 6677     Aggregates
## 6678     Aggregates
## 6679     Aggregates
## 6680     Aggregates
## 6681     Aggregates
## 6682     Aggregates
## 6683     Aggregates
## 6684     Aggregates
## 6685     Aggregates
## 6686     Aggregates
## 6687     Aggregates
## 6688     Aggregates
## 6689     Aggregates
## 6690     Aggregates
## 6691     Aggregates
## 6692     Aggregates
## 6693     Aggregates
## 6694     Aggregates
## 6695     Aggregates
## 6696     Aggregates
## 6697     Aggregates
## 6698     Aggregates
## 6699     Aggregates
## 6700     Aggregates
## 6701     Aggregates
## 6702     Aggregates
## 6703     Aggregates
## 6704     Aggregates
## 6705     Aggregates
## 6706     Aggregates
## 6707     Aggregates
## 6708     Aggregates
## 6709     Aggregates
## 6710     Aggregates
## 6711     Aggregates
## 6712     Aggregates
## 6713     Aggregates
## 6714     Aggregates
## 6715     Aggregates
## 6716     Aggregates
## 6717     Aggregates
## 6718     Aggregates
## 6719     Aggregates
## 6720     Aggregates
## 6721     Aggregates
## 6722     Aggregates
## 6723     Aggregates
## 6724     Aggregates
## 6725     Aggregates
## 6726     Aggregates
## 6727     Aggregates
## 6728     Aggregates
## 6729     Aggregates
## 6730     Aggregates
## 6731     Aggregates
## 6732     Aggregates
## 6733     Aggregates
## 6734     Aggregates
## 6735     Aggregates
## 6736     Aggregates
## 6737     Aggregates
## 6738     Aggregates
## 6739     Aggregates
## 6740     Aggregates
## 6741     Aggregates
## 6742     Aggregates
## 6743     Aggregates
## 6744     Aggregates
## 6745     Aggregates
## 6746     Aggregates
## 6747     Aggregates
## 6748     Aggregates
## 6749     Aggregates
## 6750     Aggregates
## 6751     Aggregates
## 6752     Aggregates
## 6753     Aggregates
## 6754     Aggregates
## 6755     Aggregates
## 6756     Aggregates
## 6757     Aggregates
## 6758     Aggregates
## 6759     Aggregates
## 6760     Aggregates
## 6761     Aggregates
## 6762     Aggregates
## 6763     Aggregates
## 6764     Aggregates
## 6765     Aggregates
## 6766     Aggregates
## 6767     Aggregates
## 6768     Aggregates
## 6769     Aggregates
## 6770     Aggregates
## 6771     Aggregates
## 6772     Aggregates
## 6773     Aggregates
## 6774     Aggregates
## 6775     Aggregates
## 6776     Aggregates
## 6777     Aggregates
## 6778     Aggregates
## 6779     Aggregates
## 6780     Aggregates
## 6781     Aggregates
## 6782     Aggregates
## 6783     Aggregates
## 6784     Aggregates
## 6785     Aggregates
## 6786     Aggregates
## 6787     Aggregates
## 6788     Aggregates
## 6789     Aggregates
## 6790     Aggregates
## 6791     Aggregates
## 6792     Aggregates
## 6793     Aggregates
## 6794     Aggregates
## 6795     Aggregates
## 6796     Aggregates
## 6797     Aggregates
## 6798     Aggregates
## 6799     Aggregates
## 6800     Aggregates
## 6801     Aggregates
## 6802     Aggregates
## 6803     Aggregates
## 6804     Aggregates
## 6805     Aggregates
## 6806     Aggregates
## 6807     Aggregates
## 6808     Aggregates
## 6809     Aggregates
## 6810     Aggregates
## 6811     Aggregates
## 6812     Aggregates
## 6813     Aggregates
## 6814     Aggregates
## 6815     Aggregates
## 6816     Aggregates
## 6817     Aggregates
## 6818     Aggregates
## 6819     Aggregates
## 6820     Aggregates
## 6821     Aggregates
## 6822     Aggregates
## 6823     Aggregates
## 6824     Aggregates
## 6825     Aggregates
## 6826     Aggregates
## 6827     Aggregates
## 6828     Aggregates
## 6829     Aggregates
## 6830     Aggregates
## 6831     Aggregates
## 6832     Aggregates
## 6833     Aggregates
## 6834     Aggregates
## 6835     Aggregates
## 6836     Aggregates
## 6837     Aggregates
## 6838     Aggregates
## 6839     Aggregates
## 6840     Aggregates
## 6841     Aggregates
## 6842     Aggregates
## 6843     Aggregates
## 6844     Aggregates
## 6845     Aggregates
## 6846     Aggregates
## 6847     Aggregates
## 6848     Aggregates
## 6849     Aggregates
## 6850     Aggregates
## 6851     Aggregates
## 6852     Aggregates
## 6853     Aggregates
## 6854     Aggregates
## 6855     Aggregates
## 6856     Aggregates
## 6857     Aggregates
## 6858     Aggregates
## 6859     Aggregates
## 6860     Aggregates
## 6861     Aggregates
## 6862     Aggregates
## 6863     Aggregates
## 6864     Aggregates
## 6865     Aggregates
## 6866     Aggregates
## 6867     Aggregates
## 6868     Aggregates
## 6869     Aggregates
## 6870     Aggregates
## 6871     Aggregates
## 6872     Aggregates
## 6873     Aggregates
## 6874     Aggregates
## 6875     Aggregates
## 6876     Aggregates
## 6877     Aggregates
## 6878     Aggregates
## 6879     Aggregates
## 6880     Aggregates
## 6881     Aggregates
## 6882     Aggregates
## 6883     Aggregates
## 6884     Aggregates
## 6885     Aggregates
## 6886     Aggregates
## 6887     Aggregates
## 6888     Aggregates
## 6889     Aggregates
## 6890     Aggregates
## 6891     Aggregates
## 6892     Aggregates
## 6893     Aggregates
## 6894     Aggregates
## 6895     Aggregates
## 6896     Aggregates
## 6897     Aggregates
## 6898     Aggregates
## 6899     Aggregates
## 6900     Aggregates
## 6901     Aggregates
## 6902     Aggregates
## 6903     Aggregates
## 6904     Aggregates
## 6905     Aggregates
## 6906     Aggregates
## 6907     Aggregates
## 6908     Aggregates
## 6909     Aggregates
## 6910     Aggregates
## 6911     Aggregates
## 6912     Aggregates
## 6913     Aggregates
## 6914     Aggregates
## 6915     Aggregates
## 6916     Aggregates
## 6917     Aggregates
## 6918     Aggregates
## 6919     Aggregates
## 6920     Aggregates
## 6921     Aggregates
## 6922     Aggregates
## 6923     Aggregates
## 6924     Aggregates
## 6925     Aggregates
## 6926     Aggregates
## 6927     Aggregates
## 6928     Aggregates
## 6929     Aggregates
## 6930     Aggregates
## 6931 Not classified
## 6932 Not classified
## 6933 Not classified
## 6934 Not classified
## 6935 Not classified
## 6936 Not classified
## 6937 Not classified
## 6938 Not classified
## 6939 Not classified
## 6940 Not classified
## 6941 Not classified
## 6942 Not classified
## 6943 Not classified
## 6944 Not classified
## 6945 Not classified
## 6946 Not classified
## 6947 Not classified
## 6948 Not classified
## 6949 Not classified
## 6950 Not classified
## 6951 Not classified
## 6952 Not classified
## 6953 Not classified
## 6954 Not classified
## 6955 Not classified
## 6956 Not classified
## 6957 Not classified
## 6958 Not classified
## 6959 Not classified
## 6960 Not classified
## 6961 Not classified
## 6962 Not classified
## 6963 Not classified
## 6964 Not classified
## 6965 Not classified
## 6966 Not classified
## 6967 Not classified
## 6968 Not classified
## 6969 Not classified
## 6970 Not classified
## 6971 Not classified
## 6972 Not classified
## 6973 Not classified
## 6974 Not classified
## 6975 Not classified
## 6976 Not classified
## 6977 Not classified
## 6978 Not classified
## 6979 Not classified
## 6980 Not classified
## 6981 Not classified
## 6982 Not classified
## 6983 Not classified
## 6984 Not classified
## 6985 Not classified
## 6986 Not classified
## 6987 Not classified
## 6988 Not classified
## 6989 Not classified
## 6990 Not classified
## 6991 Not classified
## 6992 Not classified
## 6993 Not classified
## 6994           IBRD
## 6995           IBRD
## 6996           IBRD
## 6997           IBRD
## 6998           IBRD
## 6999           IBRD
## 7000           IBRD
## 7001           IBRD
## 7002           IBRD
## 7003           IBRD
## 7004           IBRD
## 7005           IBRD
## 7006           IBRD
## 7007           IBRD
## 7008           IBRD
## 7009           IBRD
## 7010           IBRD
## 7011           IBRD
## 7012           IBRD
## 7013           IBRD
## 7014           IBRD
## 7015           IBRD
## 7016           IBRD
## 7017           IBRD
## 7018           IBRD
## 7019           IBRD
## 7020           IBRD
## 7021           IBRD
## 7022           IBRD
## 7023           IBRD
## 7024           IBRD
## 7025           IBRD
## 7026           IBRD
## 7027           IBRD
## 7028           IBRD
## 7029           IBRD
## 7030           IBRD
## 7031           IBRD
## 7032           IBRD
## 7033           IBRD
## 7034           IBRD
## 7035           IBRD
## 7036           IBRD
## 7037           IBRD
## 7038           IBRD
## 7039           IBRD
## 7040           IBRD
## 7041           IBRD
## 7042           IBRD
## 7043           IBRD
## 7044           IBRD
## 7045           IBRD
## 7046           IBRD
## 7047           IBRD
## 7048           IBRD
## 7049           IBRD
## 7050           IBRD
## 7051           IBRD
## 7052           IBRD
## 7053           IBRD
## 7054           IBRD
## 7055           IBRD
## 7056           IBRD
## 7057           IBRD
## 7058           IBRD
## 7059           IBRD
## 7060           IBRD
## 7061           IBRD
## 7062           IBRD
## 7063           IBRD
## 7064           IBRD
## 7065           IBRD
## 7066           IBRD
## 7067           IBRD
## 7068           IBRD
## 7069           IBRD
## 7070           IBRD
## 7071           IBRD
## 7072           IBRD
## 7073           IBRD
## 7074           IBRD
## 7075           IBRD
## 7076           IBRD
## 7077           IBRD
## 7078           IBRD
## 7079           IBRD
## 7080           IBRD
## 7081           IBRD
## 7082           IBRD
## 7083           IBRD
## 7084           IBRD
## 7085           IBRD
## 7086           IBRD
## 7087           IBRD
## 7088           IBRD
## 7089           IBRD
## 7090           IBRD
## 7091           IBRD
## 7092           IBRD
## 7093           IBRD
## 7094           IBRD
## 7095           IBRD
## 7096           IBRD
## 7097           IBRD
## 7098           IBRD
## 7099           IBRD
## 7100           IBRD
## 7101           IBRD
## 7102           IBRD
## 7103           IBRD
## 7104           IBRD
## 7105           IBRD
## 7106           IBRD
## 7107           IBRD
## 7108           IBRD
## 7109           IBRD
## 7110           IBRD
## 7111           IBRD
## 7112           IBRD
## 7113           IBRD
## 7114           IBRD
## 7115           IBRD
## 7116           IBRD
## 7117           IBRD
## 7118           IBRD
## 7119           IBRD
## 7120           IBRD
## 7121           IBRD
## 7122           IBRD
## 7123           IBRD
## 7124           IBRD
## 7125           IBRD
## 7126           IBRD
## 7127           IBRD
## 7128           IBRD
## 7129           IBRD
## 7130           IBRD
## 7131           IBRD
## 7132           IBRD
## 7133           IBRD
## 7134           IBRD
## 7135           IBRD
## 7136           IBRD
## 7137           IBRD
## 7138           IBRD
## 7139           IBRD
## 7140           IBRD
## 7141           IBRD
## 7142           IBRD
## 7143           IBRD
## 7144           IBRD
## 7145           IBRD
## 7146           IBRD
## 7147           IBRD
## 7148           IBRD
## 7149           IBRD
## 7150           IBRD
## 7151           IBRD
## 7152           IBRD
## 7153           IBRD
## 7154           IBRD
## 7155           IBRD
## 7156           IBRD
## 7157           IBRD
## 7158           IBRD
## 7159           IBRD
## 7160           IBRD
## 7161           IBRD
## 7162           IBRD
## 7163           IBRD
## 7164           IBRD
## 7165           IBRD
## 7166           IBRD
## 7167           IBRD
## 7168           IBRD
## 7169           IBRD
## 7170           IBRD
## 7171           IBRD
## 7172           IBRD
## 7173           IBRD
## 7174           IBRD
## 7175           IBRD
## 7176           IBRD
## 7177           IBRD
## 7178           IBRD
## 7179           IBRD
## 7180           IBRD
## 7181           IBRD
## 7182           IBRD
## 7183           IBRD
## 7184           IBRD
## 7185           IBRD
## 7186           IBRD
## 7187           IBRD
## 7188           IBRD
## 7189           IBRD
## 7190           IBRD
## 7191           IBRD
## 7192           IBRD
## 7193           IBRD
## 7194           IBRD
## 7195           IBRD
## 7196           IBRD
## 7197           IBRD
## 7198           IBRD
## 7199           IBRD
## 7200           IBRD
## 7201           IBRD
## 7202           IBRD
## 7203           IBRD
## 7204           IBRD
## 7205           IBRD
## 7206           IBRD
## 7207           IBRD
## 7208           IBRD
## 7209           IBRD
## 7210           IBRD
## 7211           IBRD
## 7212           IBRD
## 7213           IBRD
## 7214           IBRD
## 7215           IBRD
## 7216           IBRD
## 7217           IBRD
## 7218           IBRD
## 7219           IBRD
## 7220           IBRD
## 7221           IBRD
## 7222           IBRD
## 7223           IBRD
## 7224           IBRD
## 7225           IBRD
## 7226           IBRD
## 7227           IBRD
## 7228           IBRD
## 7229           IBRD
## 7230           IBRD
## 7231           IBRD
## 7232           IBRD
## 7233           IBRD
## 7234           IBRD
## 7235           IBRD
## 7236           IBRD
## 7237           IBRD
## 7238           IBRD
## 7239           IBRD
## 7240           IBRD
## 7241           IBRD
## 7242           IBRD
## 7243           IBRD
## 7244           IBRD
## 7245           IBRD
## 7246 Not classified
## 7247 Not classified
## 7248 Not classified
## 7249 Not classified
## 7250 Not classified
## 7251 Not classified
## 7252 Not classified
## 7253 Not classified
## 7254 Not classified
## 7255 Not classified
## 7256 Not classified
## 7257 Not classified
## 7258 Not classified
## 7259 Not classified
## 7260 Not classified
## 7261 Not classified
## 7262 Not classified
## 7263 Not classified
## 7264 Not classified
## 7265 Not classified
## 7266 Not classified
## 7267 Not classified
## 7268 Not classified
## 7269 Not classified
## 7270 Not classified
## 7271 Not classified
## 7272 Not classified
## 7273 Not classified
## 7274 Not classified
## 7275 Not classified
## 7276 Not classified
## 7277 Not classified
## 7278 Not classified
## 7279 Not classified
## 7280 Not classified
## 7281 Not classified
## 7282 Not classified
## 7283 Not classified
## 7284 Not classified
## 7285 Not classified
## 7286 Not classified
## 7287 Not classified
## 7288 Not classified
## 7289 Not classified
## 7290 Not classified
## 7291 Not classified
## 7292 Not classified
## 7293 Not classified
## 7294 Not classified
## 7295 Not classified
## 7296 Not classified
## 7297 Not classified
## 7298 Not classified
## 7299 Not classified
## 7300 Not classified
## 7301 Not classified
## 7302 Not classified
## 7303 Not classified
## 7304 Not classified
## 7305 Not classified
## 7306 Not classified
## 7307 Not classified
## 7308 Not classified
## 7309 Not classified
## 7310 Not classified
## 7311 Not classified
## 7312 Not classified
## 7313 Not classified
## 7314 Not classified
## 7315 Not classified
## 7316 Not classified
## 7317 Not classified
## 7318 Not classified
## 7319 Not classified
## 7320 Not classified
## 7321 Not classified
## 7322 Not classified
## 7323 Not classified
## 7324 Not classified
## 7325 Not classified
## 7326 Not classified
## 7327 Not classified
## 7328 Not classified
## 7329 Not classified
## 7330 Not classified
## 7331 Not classified
## 7332 Not classified
## 7333 Not classified
## 7334 Not classified
## 7335 Not classified
## 7336 Not classified
## 7337 Not classified
## 7338 Not classified
## 7339 Not classified
## 7340 Not classified
## 7341 Not classified
## 7342 Not classified
## 7343 Not classified
## 7344 Not classified
## 7345 Not classified
## 7346 Not classified
## 7347 Not classified
## 7348 Not classified
## 7349 Not classified
## 7350 Not classified
## 7351 Not classified
## 7352 Not classified
## 7353 Not classified
## 7354 Not classified
## 7355 Not classified
## 7356 Not classified
## 7357 Not classified
## 7358 Not classified
## 7359 Not classified
## 7360 Not classified
## 7361 Not classified
## 7362 Not classified
## 7363 Not classified
## 7364 Not classified
## 7365 Not classified
## 7366 Not classified
## 7367 Not classified
## 7368 Not classified
## 7369 Not classified
## 7370 Not classified
## 7371 Not classified
## 7372 Not classified
## 7373 Not classified
## 7374 Not classified
## 7375 Not classified
## 7376 Not classified
## 7377 Not classified
## 7378 Not classified
## 7379 Not classified
## 7380 Not classified
## 7381 Not classified
## 7382 Not classified
## 7383 Not classified
## 7384 Not classified
## 7385 Not classified
## 7386 Not classified
## 7387 Not classified
## 7388 Not classified
## 7389 Not classified
## 7390 Not classified
## 7391 Not classified
## 7392 Not classified
## 7393 Not classified
## 7394 Not classified
## 7395 Not classified
## 7396 Not classified
## 7397 Not classified
## 7398 Not classified
## 7399 Not classified
## 7400 Not classified
## 7401 Not classified
## 7402 Not classified
## 7403 Not classified
## 7404 Not classified
## 7405 Not classified
## 7406 Not classified
## 7407 Not classified
## 7408 Not classified
## 7409 Not classified
## 7410 Not classified
## 7411 Not classified
## 7412 Not classified
## 7413 Not classified
## 7414 Not classified
## 7415 Not classified
## 7416 Not classified
## 7417 Not classified
## 7418 Not classified
## 7419 Not classified
## 7420 Not classified
## 7421 Not classified
## 7422 Not classified
## 7423 Not classified
## 7424 Not classified
## 7425 Not classified
## 7426 Not classified
## 7427 Not classified
## 7428 Not classified
## 7429 Not classified
## 7430 Not classified
## 7431 Not classified
## 7432 Not classified
## 7433 Not classified
## 7434 Not classified
## 7435 Not classified
## 7436 Not classified
## 7437 Not classified
## 7438 Not classified
## 7439 Not classified
## 7440 Not classified
## 7441 Not classified
## 7442 Not classified
## 7443 Not classified
## 7444 Not classified
## 7445 Not classified
## 7446 Not classified
## 7447 Not classified
## 7448 Not classified
## 7449 Not classified
## 7450 Not classified
## 7451 Not classified
## 7452 Not classified
## 7453 Not classified
## 7454 Not classified
## 7455 Not classified
## 7456 Not classified
## 7457 Not classified
## 7458 Not classified
## 7459 Not classified
## 7460 Not classified
## 7461 Not classified
## 7462 Not classified
## 7463 Not classified
## 7464 Not classified
## 7465 Not classified
## 7466 Not classified
## 7467 Not classified
## 7468 Not classified
## 7469 Not classified
## 7470 Not classified
## 7471 Not classified
## 7472 Not classified
## 7473 Not classified
## 7474 Not classified
## 7475 Not classified
## 7476 Not classified
## 7477 Not classified
## 7478 Not classified
## 7479 Not classified
## 7480 Not classified
## 7481 Not classified
## 7482 Not classified
## 7483 Not classified
## 7484 Not classified
## 7485 Not classified
## 7486 Not classified
## 7487 Not classified
## 7488 Not classified
## 7489 Not classified
## 7490 Not classified
## 7491 Not classified
## 7492 Not classified
## 7493 Not classified
## 7494 Not classified
## 7495 Not classified
## 7496 Not classified
## 7497 Not classified
## 7498           IBRD
## 7499           IBRD
## 7500           IBRD
## 7501           IBRD
## 7502           IBRD
## 7503           IBRD
## 7504           IBRD
## 7505           IBRD
## 7506           IBRD
## 7507           IBRD
## 7508           IBRD
## 7509           IBRD
## 7510           IBRD
## 7511           IBRD
## 7512           IBRD
## 7513           IBRD
## 7514           IBRD
## 7515           IBRD
## 7516           IBRD
## 7517           IBRD
## 7518           IBRD
## 7519           IBRD
## 7520           IBRD
## 7521           IBRD
## 7522           IBRD
## 7523           IBRD
## 7524           IBRD
## 7525           IBRD
## 7526           IBRD
## 7527           IBRD
## 7528           IBRD
## 7529           IBRD
## 7530           IBRD
## 7531           IBRD
## 7532           IBRD
## 7533           IBRD
## 7534           IBRD
## 7535           IBRD
## 7536           IBRD
## 7537           IBRD
## 7538           IBRD
## 7539           IBRD
## 7540           IBRD
## 7541           IBRD
## 7542           IBRD
## 7543           IBRD
## 7544           IBRD
## 7545           IBRD
## 7546           IBRD
## 7547           IBRD
## 7548           IBRD
## 7549           IBRD
## 7550           IBRD
## 7551           IBRD
## 7552           IBRD
## 7553           IBRD
## 7554           IBRD
## 7555           IBRD
## 7556           IBRD
## 7557           IBRD
## 7558           IBRD
## 7559           IBRD
## 7560           IBRD
## 7561 Not classified
## 7562 Not classified
## 7563 Not classified
## 7564 Not classified
## 7565 Not classified
## 7566 Not classified
## 7567 Not classified
## 7568 Not classified
## 7569 Not classified
## 7570 Not classified
## 7571 Not classified
## 7572 Not classified
## 7573 Not classified
## 7574 Not classified
## 7575 Not classified
## 7576 Not classified
## 7577 Not classified
## 7578 Not classified
## 7579 Not classified
## 7580 Not classified
## 7581 Not classified
## 7582 Not classified
## 7583 Not classified
## 7584 Not classified
## 7585 Not classified
## 7586 Not classified
## 7587 Not classified
## 7588 Not classified
## 7589 Not classified
## 7590 Not classified
## 7591 Not classified
## 7592 Not classified
## 7593 Not classified
## 7594 Not classified
## 7595 Not classified
## 7596 Not classified
## 7597 Not classified
## 7598 Not classified
## 7599 Not classified
## 7600 Not classified
## 7601 Not classified
## 7602 Not classified
## 7603 Not classified
## 7604 Not classified
## 7605 Not classified
## 7606 Not classified
## 7607 Not classified
## 7608 Not classified
## 7609 Not classified
## 7610 Not classified
## 7611 Not classified
## 7612 Not classified
## 7613 Not classified
## 7614 Not classified
## 7615 Not classified
## 7616 Not classified
## 7617 Not classified
## 7618 Not classified
## 7619 Not classified
## 7620 Not classified
## 7621 Not classified
## 7622 Not classified
## 7623 Not classified
## 7624           IBRD
## 7625           IBRD
## 7626           IBRD
## 7627           IBRD
## 7628           IBRD
## 7629           IBRD
## 7630           IBRD
## 7631           IBRD
## 7632           IBRD
## 7633           IBRD
## 7634           IBRD
## 7635           IBRD
## 7636           IBRD
## 7637           IBRD
## 7638           IBRD
## 7639           IBRD
## 7640           IBRD
## 7641           IBRD
## 7642           IBRD
## 7643           IBRD
## 7644           IBRD
## 7645           IBRD
## 7646           IBRD
## 7647           IBRD
## 7648           IBRD
## 7649           IBRD
## 7650           IBRD
## 7651           IBRD
## 7652           IBRD
## 7653           IBRD
## 7654           IBRD
## 7655           IBRD
## 7656           IBRD
## 7657           IBRD
## 7658           IBRD
## 7659           IBRD
## 7660           IBRD
## 7661           IBRD
## 7662           IBRD
## 7663           IBRD
## 7664           IBRD
## 7665           IBRD
## 7666           IBRD
## 7667           IBRD
## 7668           IBRD
## 7669           IBRD
## 7670           IBRD
## 7671           IBRD
## 7672           IBRD
## 7673           IBRD
## 7674           IBRD
## 7675           IBRD
## 7676           IBRD
## 7677           IBRD
## 7678           IBRD
## 7679           IBRD
## 7680           IBRD
## 7681           IBRD
## 7682           IBRD
## 7683           IBRD
## 7684           IBRD
## 7685           IBRD
## 7686           IBRD
## 7687           IBRD
## 7688           IBRD
## 7689           IBRD
## 7690           IBRD
## 7691           IBRD
## 7692           IBRD
##  [ reached 'max' / getOption("max.print") -- omitted 9066 rows ]

ダウンロード例 1-4

df_gdp4 <- WDI(country = c("CN","GB","JP","IN","US","DE"), indicator = c(gdp = "NY.GDP.MKTP.CD"), extra=TRUE, cache=wdi_cache)
df_gdp4
##            country iso2c iso3c year          gdp status lastupdated
## 1            China    CN   CHN 2022           NA         2023-05-10
## 2            China    CN   CHN 2021 1.773406e+13         2023-05-10
## 3            China    CN   CHN 2020 1.468767e+13         2023-05-10
## 4            China    CN   CHN 2019 1.427994e+13         2023-05-10
## 5            China    CN   CHN 2018 1.389482e+13         2023-05-10
## 6            China    CN   CHN 2017 1.231041e+13         2023-05-10
## 7            China    CN   CHN 2016 1.123328e+13         2023-05-10
## 8            China    CN   CHN 2015 1.106155e+13         2023-05-10
## 9            China    CN   CHN 2014 1.047568e+13         2023-05-10
## 10           China    CN   CHN 2013 9.570406e+12         2023-05-10
## 11           China    CN   CHN 2012 8.532230e+12         2023-05-10
## 12           China    CN   CHN 2011 7.551500e+12         2023-05-10
## 13           China    CN   CHN 2010 6.087164e+12         2023-05-10
## 14           China    CN   CHN 2009 5.101703e+12         2023-05-10
## 15           China    CN   CHN 2008 4.594307e+12         2023-05-10
## 16           China    CN   CHN 2007 3.550343e+12         2023-05-10
## 17           China    CN   CHN 2006 2.752132e+12         2023-05-10
## 18           China    CN   CHN 2005 2.285966e+12         2023-05-10
## 19           China    CN   CHN 2004 1.955347e+12         2023-05-10
## 20           China    CN   CHN 2003 1.660288e+12         2023-05-10
## 21           China    CN   CHN 2002 1.470550e+12         2023-05-10
## 22           China    CN   CHN 2001 1.339396e+12         2023-05-10
## 23           China    CN   CHN 2000 1.211347e+12         2023-05-10
## 24           China    CN   CHN 1999 1.093997e+12         2023-05-10
## 25           China    CN   CHN 1998 1.029043e+12         2023-05-10
## 26           China    CN   CHN 1997 9.616040e+11         2023-05-10
## 27           China    CN   CHN 1996 8.637467e+11         2023-05-10
## 28           China    CN   CHN 1995 7.345479e+11         2023-05-10
## 29           China    CN   CHN 1994 5.643247e+11         2023-05-10
## 30           China    CN   CHN 1993 4.447313e+11         2023-05-10
## 31           China    CN   CHN 1992 4.269157e+11         2023-05-10
## 32           China    CN   CHN 1991 3.833733e+11         2023-05-10
## 33           China    CN   CHN 1990 3.608579e+11         2023-05-10
## 34           China    CN   CHN 1989 3.477681e+11         2023-05-10
## 35           China    CN   CHN 1988 3.123536e+11         2023-05-10
## 36           China    CN   CHN 1987 2.729730e+11         2023-05-10
## 37           China    CN   CHN 1986 3.007581e+11         2023-05-10
## 38           China    CN   CHN 1985 3.094880e+11         2023-05-10
## 39           China    CN   CHN 1984 2.599465e+11         2023-05-10
## 40           China    CN   CHN 1983 2.306867e+11         2023-05-10
## 41           China    CN   CHN 1982 2.050897e+11         2023-05-10
## 42           China    CN   CHN 1981 1.958664e+11         2023-05-10
## 43           China    CN   CHN 1980 1.911492e+11         2023-05-10
## 44           China    CN   CHN 1979 1.782806e+11         2023-05-10
## 45           China    CN   CHN 1978 1.495408e+11         2023-05-10
## 46           China    CN   CHN 1977 1.749381e+11         2023-05-10
## 47           China    CN   CHN 1976 1.539405e+11         2023-05-10
## 48           China    CN   CHN 1975 1.634316e+11         2023-05-10
## 49           China    CN   CHN 1974 1.441821e+11         2023-05-10
## 50           China    CN   CHN 1973 1.385443e+11         2023-05-10
## 51           China    CN   CHN 1972 1.136876e+11         2023-05-10
## 52           China    CN   CHN 1971 9.980096e+10         2023-05-10
## 53           China    CN   CHN 1970 9.260297e+10         2023-05-10
## 54           China    CN   CHN 1969 7.970591e+10         2023-05-10
## 55           China    CN   CHN 1968 7.084654e+10         2023-05-10
## 56           China    CN   CHN 1967 7.288163e+10         2023-05-10
## 57           China    CN   CHN 1966 7.672029e+10         2023-05-10
## 58           China    CN   CHN 1965 7.043627e+10         2023-05-10
## 59           China    CN   CHN 1964 5.970834e+10         2023-05-10
## 60           China    CN   CHN 1963 5.070680e+10         2023-05-10
## 61           China    CN   CHN 1962 4.720936e+10         2023-05-10
## 62           China    CN   CHN 1961 5.005687e+10         2023-05-10
## 63           China    CN   CHN 1960 5.971647e+10         2023-05-10
## 64         Germany    DE   DEU 2022           NA         2023-05-10
## 65         Germany    DE   DEU 2021 4.259935e+12         2023-05-10
## 66         Germany    DE   DEU 2020 3.889669e+12         2023-05-10
## 67         Germany    DE   DEU 2019 3.888226e+12         2023-05-10
## 68         Germany    DE   DEU 2018 3.974443e+12         2023-05-10
## 69         Germany    DE   DEU 2017 3.690849e+12         2023-05-10
## 70         Germany    DE   DEU 2016 3.469853e+12         2023-05-10
## 71         Germany    DE   DEU 2015 3.357586e+12         2023-05-10
## 72         Germany    DE   DEU 2014 3.889093e+12         2023-05-10
## 73         Germany    DE   DEU 2013 3.733805e+12         2023-05-10
## 74         Germany    DE   DEU 2012 3.527143e+12         2023-05-10
## 75         Germany    DE   DEU 2011 3.749315e+12         2023-05-10
## 76         Germany    DE   DEU 2010 3.399668e+12         2023-05-10
## 77         Germany    DE   DEU 2009 3.411261e+12         2023-05-10
## 78         Germany    DE   DEU 2008 3.745264e+12         2023-05-10
## 79         Germany    DE   DEU 2007 3.425578e+12         2023-05-10
## 80         Germany    DE   DEU 2006 2.994704e+12         2023-05-10
## 81         Germany    DE   DEU 2005 2.846864e+12         2023-05-10
## 82         Germany    DE   DEU 2004 2.814354e+12         2023-05-10
## 83         Germany    DE   DEU 2003 2.501640e+12         2023-05-10
## 84         Germany    DE   DEU 2002 2.078485e+12         2023-05-10
## 85         Germany    DE   DEU 2001 1.945791e+12         2023-05-10
## 86         Germany    DE   DEU 2000 1.947982e+12         2023-05-10
## 87         Germany    DE   DEU 1999 2.194945e+12         2023-05-10
## 88         Germany    DE   DEU 1998 2.238991e+12         2023-05-10
## 89         Germany    DE   DEU 1997 2.211990e+12         2023-05-10
## 90         Germany    DE   DEU 1996 2.497245e+12         2023-05-10
## 91         Germany    DE   DEU 1995 2.585792e+12         2023-05-10
## 92         Germany    DE   DEU 1994 2.205074e+12         2023-05-10
## 93         Germany    DE   DEU 1993 2.071324e+12         2023-05-10
## 94         Germany    DE   DEU 1992 2.131572e+12         2023-05-10
## 95         Germany    DE   DEU 1991 1.868945e+12         2023-05-10
## 96         Germany    DE   DEU 1990 1.771671e+12         2023-05-10
## 97         Germany    DE   DEU 1989 1.398967e+12         2023-05-10
## 98         Germany    DE   DEU 1988 1.401233e+12         2023-05-10
## 99         Germany    DE   DEU 1987 1.298176e+12         2023-05-10
## 100        Germany    DE   DEU 1986 1.046259e+12         2023-05-10
## 101        Germany    DE   DEU 1985 7.325349e+11         2023-05-10
## 102        Germany    DE   DEU 1984 7.251111e+11         2023-05-10
## 103        Germany    DE   DEU 1983 7.706843e+11         2023-05-10
## 104        Germany    DE   DEU 1982 7.765764e+11         2023-05-10
## 105        Germany    DE   DEU 1981 8.004721e+11         2023-05-10
## 106        Germany    DE   DEU 1980 9.502909e+11         2023-05-10
## 107        Germany    DE   DEU 1979 8.813452e+11         2023-05-10
## 108        Germany    DE   DEU 1978 7.404700e+11         2023-05-10
## 109        Germany    DE   DEU 1977 6.004982e+11         2023-05-10
## 110        Germany    DE   DEU 1976 5.197545e+11         2023-05-10
## 111        Germany    DE   DEU 1975 4.906365e+11         2023-05-10
## 112        Germany    DE   DEU 1974 4.453035e+11         2023-05-10
## 113        Germany    DE   DEU 1973 3.983740e+11         2023-05-10
## 114        Germany    DE   DEU 1972 2.998015e+11         2023-05-10
## 115        Germany    DE   DEU 1971 2.499851e+11         2023-05-10
## 116        Germany    DE   DEU 1970 2.158384e+11         2023-05-10
## 117        Germany    DE   DEU 1969           NA         2023-05-10
## 118        Germany    DE   DEU 1968           NA         2023-05-10
## 119        Germany    DE   DEU 1967           NA         2023-05-10
## 120        Germany    DE   DEU 1966           NA         2023-05-10
## 121        Germany    DE   DEU 1965           NA         2023-05-10
## 122        Germany    DE   DEU 1964           NA         2023-05-10
## 123        Germany    DE   DEU 1963           NA         2023-05-10
## 124        Germany    DE   DEU 1962           NA         2023-05-10
## 125        Germany    DE   DEU 1961           NA         2023-05-10
## 126        Germany    DE   DEU 1960           NA         2023-05-10
## 127          India    IN   IND 2022           NA         2023-05-10
## 128          India    IN   IND 2021 3.176295e+12         2023-05-10
## 129          India    IN   IND 2020 2.667688e+12         2023-05-10
## 130          India    IN   IND 2019 2.831552e+12         2023-05-10
## 131          India    IN   IND 2018 2.702930e+12         2023-05-10
## 132          India    IN   IND 2017 2.651473e+12         2023-05-10
## 133          India    IN   IND 2016 2.294798e+12         2023-05-10
## 134          India    IN   IND 2015 2.103588e+12         2023-05-10
## 135          India    IN   IND 2014 2.039127e+12         2023-05-10
## 136          India    IN   IND 2013 1.856722e+12         2023-05-10
## 137          India    IN   IND 2012 1.827638e+12         2023-05-10
## 138          India    IN   IND 2011 1.823050e+12         2023-05-10
## 139          India    IN   IND 2010 1.675615e+12         2023-05-10
## 140          India    IN   IND 2009 1.341887e+12         2023-05-10
## 141          India    IN   IND 2008 1.198896e+12         2023-05-10
## 142          India    IN   IND 2007 1.216735e+12         2023-05-10
## 143          India    IN   IND 2006 9.402599e+11         2023-05-10
## 144          India    IN   IND 2005 8.203816e+11         2023-05-10
## 145          India    IN   IND 2004 7.091485e+11         2023-05-10
## 146          India    IN   IND 2003 6.076993e+11         2023-05-10
## 147          India    IN   IND 2002 5.149379e+11         2023-05-10
## 148          India    IN   IND 2001 4.854410e+11         2023-05-10
## 149          India    IN   IND 2000 4.683949e+11         2023-05-10
## 150          India    IN   IND 1999 4.588204e+11         2023-05-10
## 151          India    IN   IND 1998 4.213515e+11         2023-05-10
## 152          India    IN   IND 1997 4.158678e+11         2023-05-10
## 153          India    IN   IND 1996 3.928971e+11         2023-05-10
## 154          India    IN   IND 1995 3.602820e+11         2023-05-10
## 155          India    IN   IND 1994 3.272756e+11         2023-05-10
## 156          India    IN   IND 1993 2.792960e+11         2023-05-10
## 157          India    IN   IND 1992 2.882084e+11         2023-05-10
## 158          India    IN   IND 1991 2.701053e+11         2023-05-10
## 159          India    IN   IND 1990 3.209790e+11         2023-05-10
## 160          India    IN   IND 1989 2.960424e+11         2023-05-10
## 161          India    IN   IND 1988 2.965890e+11         2023-05-10
## 162          India    IN   IND 1987 2.790336e+11         2023-05-10
## 163          India    IN   IND 1986 2.489860e+11         2023-05-10
## 164          India    IN   IND 1985 2.325119e+11         2023-05-10
## 165          India    IN   IND 1984 2.121582e+11         2023-05-10
## 166          India    IN   IND 1983 2.182623e+11         2023-05-10
## 167          India    IN   IND 1982 2.007151e+11         2023-05-10
## 168          India    IN   IND 1981 1.934906e+11         2023-05-10
## 169          India    IN   IND 1980 1.863253e+11         2023-05-10
## 170          India    IN   IND 1979 1.529917e+11         2023-05-10
## 171          India    IN   IND 1978 1.373003e+11         2023-05-10
## 172          India    IN   IND 1977 1.214873e+11         2023-05-10
## 173          India    IN   IND 1976 1.027172e+11         2023-05-10
## 174          India    IN   IND 1975 9.847280e+10         2023-05-10
## 175          India    IN   IND 1974 9.952590e+10         2023-05-10
## 176          India    IN   IND 1973 8.551527e+10         2023-05-10
## 177          India    IN   IND 1972 7.146319e+10         2023-05-10
## 178          India    IN   IND 1971 6.735099e+10         2023-05-10
## 179          India    IN   IND 1970 6.242248e+10         2023-05-10
## 180          India    IN   IND 1969 5.844800e+10         2023-05-10
## 181          India    IN   IND 1968 5.308546e+10         2023-05-10
## 182          India    IN   IND 1967 5.013494e+10         2023-05-10
## 183          India    IN   IND 1966 4.586546e+10         2023-05-10
## 184          India    IN   IND 1965 5.955485e+10         2023-05-10
## 185          India    IN   IND 1964 5.648029e+10         2023-05-10
## 186          India    IN   IND 1963 4.842192e+10         2023-05-10
## 187          India    IN   IND 1962 4.216148e+10         2023-05-10
## 188          India    IN   IND 1961 3.923244e+10         2023-05-10
## 189          India    IN   IND 1960 3.702988e+10         2023-05-10
## 190          Japan    JP   JPN 2022           NA         2023-05-10
## 191          Japan    JP   JPN 2021 4.940878e+12         2023-05-10
## 192          Japan    JP   JPN 2020 5.040108e+12         2023-05-10
## 193          Japan    JP   JPN 2019 5.123318e+12         2023-05-10
## 194          Japan    JP   JPN 2018 5.037835e+12         2023-05-10
## 195          Japan    JP   JPN 2017 4.930837e+12         2023-05-10
## 196          Japan    JP   JPN 2016 5.003678e+12         2023-05-10
## 197          Japan    JP   JPN 2015 4.444931e+12         2023-05-10
## 198          Japan    JP   JPN 2014 4.896994e+12         2023-05-10
## 199          Japan    JP   JPN 2013 5.212328e+12         2023-05-10
## 200          Japan    JP   JPN 2012 6.272363e+12         2023-05-10
## 201          Japan    JP   JPN 2011 6.233147e+12         2023-05-10
## 202          Japan    JP   JPN 2010 5.759072e+12         2023-05-10
## 203          Japan    JP   JPN 2009 5.289493e+12         2023-05-10
## 204          Japan    JP   JPN 2008 5.106679e+12         2023-05-10
## 205          Japan    JP   JPN 2007 4.579751e+12         2023-05-10
## 206          Japan    JP   JPN 2006 4.601663e+12         2023-05-10
## 207          Japan    JP   JPN 2005 4.831467e+12         2023-05-10
## 208          Japan    JP   JPN 2004 4.893116e+12         2023-05-10
## 209          Japan    JP   JPN 2003 4.519562e+12         2023-05-10
## 210          Japan    JP   JPN 2002 4.182846e+12         2023-05-10
## 211          Japan    JP   JPN 2001 4.374712e+12         2023-05-10
## 212          Japan    JP   JPN 2000 4.968359e+12         2023-05-10
## 213          Japan    JP   JPN 1999 4.635982e+12         2023-05-10
## 214          Japan    JP   JPN 1998 4.098363e+12         2023-05-10
## 215          Japan    JP   JPN 1997 4.492449e+12         2023-05-10
## 216          Japan    JP   JPN 1996 4.923392e+12         2023-05-10
## 217          Japan    JP   JPN 1995 5.545564e+12         2023-05-10
## 218          Japan    JP   JPN 1994 4.998798e+12         2023-05-10
## 219          Japan    JP   JPN 1993 4.454144e+12         2023-05-10
## 220          Japan    JP   JPN 1992 3.908809e+12         2023-05-10
## 221          Japan    JP   JPN 1991 3.584420e+12         2023-05-10
## 222          Japan    JP   JPN 1990 3.132818e+12         2023-05-10
## 223          Japan    JP   JPN 1989 3.054914e+12         2023-05-10
## 224          Japan    JP   JPN 1988 3.071683e+12         2023-05-10
## 225          Japan    JP   JPN 1987 2.532809e+12         2023-05-10
## 226          Japan    JP   JPN 1986 2.078953e+12         2023-05-10
## 227          Japan    JP   JPN 1985 1.398893e+12         2023-05-10
## 228          Japan    JP   JPN 1984 1.318382e+12         2023-05-10
## 229          Japan    JP   JPN 1983 1.243324e+12         2023-05-10
## 230          Japan    JP   JPN 1982 1.134518e+12         2023-05-10
## 231          Japan    JP   JPN 1981 1.218989e+12         2023-05-10
## 232          Japan    JP   JPN 1980 1.105386e+12         2023-05-10
## 233          Japan    JP   JPN 1979 1.055012e+12         2023-05-10
## 234          Japan    JP   JPN 1978 1.013612e+12         2023-05-10
## 235          Japan    JP   JPN 1977 7.214118e+11         2023-05-10
## 236          Japan    JP   JPN 1976 5.861619e+11         2023-05-10
## 237          Japan    JP   JPN 1975 5.215419e+11         2023-05-10
## 238          Japan    JP   JPN 1974 4.796260e+11         2023-05-10
## 239          Japan    JP   JPN 1973 4.320827e+11         2023-05-10
## 240          Japan    JP   JPN 1972 3.180313e+11         2023-05-10
## 241          Japan    JP   JPN 1971 2.401518e+11         2023-05-10
## 242          Japan    JP   JPN 1970 2.126092e+11         2023-05-10
## 243          Japan    JP   JPN 1969 1.722042e+11         2023-05-10
## 244          Japan    JP   JPN 1968 1.466011e+11         2023-05-10
## 245          Japan    JP   JPN 1967 1.237819e+11         2023-05-10
## 246          Japan    JP   JPN 1966 1.056281e+11         2023-05-10
## 247          Japan    JP   JPN 1965 9.095028e+10         2023-05-10
## 248          Japan    JP   JPN 1964 8.174901e+10         2023-05-10
## 249          Japan    JP   JPN 1963 6.949813e+10         2023-05-10
## 250          Japan    JP   JPN 1962 6.072302e+10         2023-05-10
## 251          Japan    JP   JPN 1961 5.350862e+10         2023-05-10
## 252          Japan    JP   JPN 1960 4.430734e+10         2023-05-10
## 253 United Kingdom    GB   GBR 2022           NA         2023-05-10
## 254 United Kingdom    GB   GBR 2021 3.131378e+12         2023-05-10
## 255 United Kingdom    GB   GBR 2020 2.704609e+12         2023-05-10
## 256 United Kingdom    GB   GBR 2019 2.857058e+12         2023-05-10
## 257 United Kingdom    GB   GBR 2018 2.878152e+12         2023-05-10
## 258 United Kingdom    GB   GBR 2017 2.683399e+12         2023-05-10
## 259 United Kingdom    GB   GBR 2016 2.699660e+12         2023-05-10
## 260 United Kingdom    GB   GBR 2015 2.934858e+12         2023-05-10
## 261 United Kingdom    GB   GBR 2014 3.065223e+12         2023-05-10
## 262 United Kingdom    GB   GBR 2013 2.786315e+12         2023-05-10
## 263 United Kingdom    GB   GBR 2012 2.706341e+12         2023-05-10
## 264 United Kingdom    GB   GBR 2011 2.666403e+12         2023-05-10
## 265 United Kingdom    GB   GBR 2010 2.491397e+12         2023-05-10
## 266 United Kingdom    GB   GBR 2009 2.417638e+12         2023-05-10
## 267 United Kingdom    GB   GBR 2008 2.931502e+12         2023-05-10
## 268 United Kingdom    GB   GBR 2007 3.092821e+12         2023-05-10
## 269 United Kingdom    GB   GBR 2006 2.709912e+12         2023-05-10
## 270 United Kingdom    GB   GBR 2005 2.544805e+12         2023-05-10
## 271 United Kingdom    GB   GBR 2004 2.422959e+12         2023-05-10
## 272 United Kingdom    GB   GBR 2003 2.056612e+12         2023-05-10
## 273 United Kingdom    GB   GBR 2002 1.785844e+12         2023-05-10
## 274 United Kingdom    GB   GBR 2001 1.648658e+12         2023-05-10
## 275 United Kingdom    GB   GBR 2000 1.666126e+12         2023-05-10
## 276 United Kingdom    GB   GBR 1999 1.689290e+12         2023-05-10
## 277 United Kingdom    GB   GBR 1998 1.655061e+12         2023-05-10
## 278 United Kingdom    GB   GBR 1997 1.561807e+12         2023-05-10
## 279 United Kingdom    GB   GBR 1996 1.421619e+12         2023-05-10
## 280 United Kingdom    GB   GBR 1995 1.346184e+12         2023-05-10
## 281 United Kingdom    GB   GBR 1994 1.140490e+12         2023-05-10
## 282 United Kingdom    GB   GBR 1993 1.061389e+12         2023-05-10
## 283 United Kingdom    GB   GBR 1992 1.179660e+12         2023-05-10
## 284 United Kingdom    GB   GBR 1991 1.142797e+12         2023-05-10
## 285 United Kingdom    GB   GBR 1990 1.093169e+12         2023-05-10
## 286 United Kingdom    GB   GBR 1989 9.268848e+11         2023-05-10
## 287 United Kingdom    GB   GBR 1988 9.101227e+11         2023-05-10
## 288 United Kingdom    GB   GBR 1987 7.451626e+11         2023-05-10
## 289 United Kingdom    GB   GBR 1986 6.014527e+11         2023-05-10
## 290 United Kingdom    GB   GBR 1985 4.892852e+11         2023-05-10
## 291 United Kingdom    GB   GBR 1984 4.614871e+11         2023-05-10
## 292 United Kingdom    GB   GBR 1983 4.896180e+11         2023-05-10
## 293 United Kingdom    GB   GBR 1982 5.150489e+11         2023-05-10
## 294 United Kingdom    GB   GBR 1981 5.407657e+11         2023-05-10
## 295 United Kingdom    GB   GBR 1980 5.649477e+11         2023-05-10
## 296 United Kingdom    GB   GBR 1979 4.389941e+11         2023-05-10
## 297 United Kingdom    GB   GBR 1978 3.358830e+11         2023-05-10
## 298 United Kingdom    GB   GBR 1977 2.630665e+11         2023-05-10
## 299 United Kingdom    GB   GBR 1976 2.326146e+11         2023-05-10
## 300 United Kingdom    GB   GBR 1975 2.417566e+11         2023-05-10
## 301 United Kingdom    GB   GBR 1974 2.061314e+11         2023-05-10
## 302 United Kingdom    GB   GBR 1973 1.925380e+11         2023-05-10
## 303 United Kingdom    GB   GBR 1972 1.699650e+11         2023-05-10
## 304 United Kingdom    GB   GBR 1971 1.481139e+11         2023-05-10
## 305 United Kingdom    GB   GBR 1970 1.306719e+11         2023-05-10
## 306 United Kingdom    GB   GBR 1969 1.164647e+11         2023-05-10
## 307 United Kingdom    GB   GBR 1968 1.077599e+11         2023-05-10
## 308 United Kingdom    GB   GBR 1967 1.131169e+11         2023-05-10
## 309 United Kingdom    GB   GBR 1966 1.085728e+11         2023-05-10
## 310 United Kingdom    GB   GBR 1965 1.018248e+11         2023-05-10
## 311 United Kingdom    GB   GBR 1964 9.440756e+10         2023-05-10
## 312 United Kingdom    GB   GBR 1963 8.656196e+10         2023-05-10
## 313 United Kingdom    GB   GBR 1962 8.124756e+10         2023-05-10
## 314 United Kingdom    GB   GBR 1961 7.774197e+10         2023-05-10
## 315 United Kingdom    GB   GBR 1960 7.323397e+10         2023-05-10
## 316  United States    US   USA 2022           NA         2023-05-10
## 317  United States    US   USA 2021 2.331508e+13         2023-05-10
## 318  United States    US   USA 2020 2.106047e+13         2023-05-10
## 319  United States    US   USA 2019 2.138098e+13         2023-05-10
## 320  United States    US   USA 2018 2.053306e+13         2023-05-10
## 321  United States    US   USA 2017 1.947734e+13         2023-05-10
## 322  United States    US   USA 2016 1.869511e+13         2023-05-10
## 323  United States    US   USA 2015 1.820602e+13         2023-05-10
## 324  United States    US   USA 2014 1.755068e+13         2023-05-10
## 325  United States    US   USA 2013 1.684319e+13         2023-05-10
## 326  United States    US   USA 2012 1.625397e+13         2023-05-10
## 327  United States    US   USA 2011 1.559973e+13         2023-05-10
## 328  United States    US   USA 2010 1.504896e+13         2023-05-10
## 329  United States    US   USA 2009 1.447806e+13         2023-05-10
## 330  United States    US   USA 2008 1.476986e+13         2023-05-10
## 331  United States    US   USA 2007 1.447423e+13         2023-05-10
## 332  United States    US   USA 2006 1.381559e+13         2023-05-10
## 333  United States    US   USA 2005 1.303920e+13         2023-05-10
## 334  United States    US   USA 2004 1.221719e+13         2023-05-10
## 335  United States    US   USA 2003 1.145644e+13         2023-05-10
## 336  United States    US   USA 2002 1.092911e+13         2023-05-10
## 337  United States    US   USA 2001 1.058193e+13         2023-05-10
## 338  United States    US   USA 2000 1.025095e+13         2023-05-10
## 339  United States    US   USA 1999 9.631174e+12         2023-05-10
## 340  United States    US   USA 1998 9.062818e+12         2023-05-10
## 341  United States    US   USA 1997 8.577554e+12         2023-05-10
## 342  United States    US   USA 1996 8.073122e+12         2023-05-10
## 343  United States    US   USA 1995 7.639749e+12         2023-05-10
## 344  United States    US   USA 1994 7.287236e+12         2023-05-10
## 345  United States    US   USA 1993 6.858559e+12         2023-05-10
## 346  United States    US   USA 1992 6.520327e+12         2023-05-10
## 347  United States    US   USA 1991 6.158129e+12         2023-05-10
## 348  United States    US   USA 1990 5.963144e+12         2023-05-10
## 349  United States    US   USA 1989 5.641580e+12         2023-05-10
## 350  United States    US   USA 1988 5.236438e+12         2023-05-10
## 351  United States    US   USA 1987 4.855215e+12         2023-05-10
## 352  United States    US   USA 1986 4.579631e+12         2023-05-10
## 353  United States    US   USA 1985 4.338979e+12         2023-05-10
## 354  United States    US   USA 1984 4.037613e+12         2023-05-10
## 355  United States    US   USA 1983 3.634038e+12         2023-05-10
## 356  United States    US   USA 1982 3.343789e+12         2023-05-10
## 357  United States    US   USA 1981 3.207041e+12         2023-05-10
## 358  United States    US   USA 1980 2.857307e+12         2023-05-10
## 359  United States    US   USA 1979 2.627333e+12         2023-05-10
## 360  United States    US   USA 1978 2.351599e+12         2023-05-10
## 361  United States    US   USA 1977 2.081826e+12         2023-05-10
## 362  United States    US   USA 1976 1.873412e+12         2023-05-10
## 363  United States    US   USA 1975 1.684904e+12         2023-05-10
## 364  United States    US   USA 1974 1.545243e+12         2023-05-10
## 365  United States    US   USA 1973 1.425376e+12         2023-05-10
## 366  United States    US   USA 1972 1.279110e+12         2023-05-10
## 367  United States    US   USA 1971 1.164850e+12         2023-05-10
## 368  United States    US   USA 1970 1.073303e+12         2023-05-10
## 369  United States    US   USA 1969 1.019900e+12         2023-05-10
## 370  United States    US   USA 1968 9.425000e+11         2023-05-10
## 371  United States    US   USA 1967 8.617000e+11         2023-05-10
## 372  United States    US   USA 1966 8.150000e+11         2023-05-10
## 373  United States    US   USA 1965 7.437000e+11         2023-05-10
## 374  United States    US   USA 1964 6.858000e+11         2023-05-10
## 375  United States    US   USA 1963 6.386000e+11         2023-05-10
## 376  United States    US   USA 1962 6.051000e+11         2023-05-10
## 377  United States    US   USA 1961 5.633000e+11         2023-05-10
## 378  United States    US   USA 1960 5.433000e+11         2023-05-10
##                    region         capital longitude latitude
## 1     East Asia & Pacific         Beijing   116.286  40.0495
## 2     East Asia & Pacific         Beijing   116.286  40.0495
## 3     East Asia & Pacific         Beijing   116.286  40.0495
## 4     East Asia & Pacific         Beijing   116.286  40.0495
## 5     East Asia & Pacific         Beijing   116.286  40.0495
## 6     East Asia & Pacific         Beijing   116.286  40.0495
## 7     East Asia & Pacific         Beijing   116.286  40.0495
## 8     East Asia & Pacific         Beijing   116.286  40.0495
## 9     East Asia & Pacific         Beijing   116.286  40.0495
## 10    East Asia & Pacific         Beijing   116.286  40.0495
## 11    East Asia & Pacific         Beijing   116.286  40.0495
## 12    East Asia & Pacific         Beijing   116.286  40.0495
## 13    East Asia & Pacific         Beijing   116.286  40.0495
## 14    East Asia & Pacific         Beijing   116.286  40.0495
## 15    East Asia & Pacific         Beijing   116.286  40.0495
## 16    East Asia & Pacific         Beijing   116.286  40.0495
## 17    East Asia & Pacific         Beijing   116.286  40.0495
## 18    East Asia & Pacific         Beijing   116.286  40.0495
## 19    East Asia & Pacific         Beijing   116.286  40.0495
## 20    East Asia & Pacific         Beijing   116.286  40.0495
## 21    East Asia & Pacific         Beijing   116.286  40.0495
## 22    East Asia & Pacific         Beijing   116.286  40.0495
## 23    East Asia & Pacific         Beijing   116.286  40.0495
## 24    East Asia & Pacific         Beijing   116.286  40.0495
## 25    East Asia & Pacific         Beijing   116.286  40.0495
## 26    East Asia & Pacific         Beijing   116.286  40.0495
## 27    East Asia & Pacific         Beijing   116.286  40.0495
## 28    East Asia & Pacific         Beijing   116.286  40.0495
## 29    East Asia & Pacific         Beijing   116.286  40.0495
## 30    East Asia & Pacific         Beijing   116.286  40.0495
## 31    East Asia & Pacific         Beijing   116.286  40.0495
## 32    East Asia & Pacific         Beijing   116.286  40.0495
## 33    East Asia & Pacific         Beijing   116.286  40.0495
## 34    East Asia & Pacific         Beijing   116.286  40.0495
## 35    East Asia & Pacific         Beijing   116.286  40.0495
## 36    East Asia & Pacific         Beijing   116.286  40.0495
## 37    East Asia & Pacific         Beijing   116.286  40.0495
## 38    East Asia & Pacific         Beijing   116.286  40.0495
## 39    East Asia & Pacific         Beijing   116.286  40.0495
## 40    East Asia & Pacific         Beijing   116.286  40.0495
## 41    East Asia & Pacific         Beijing   116.286  40.0495
## 42    East Asia & Pacific         Beijing   116.286  40.0495
## 43    East Asia & Pacific         Beijing   116.286  40.0495
## 44    East Asia & Pacific         Beijing   116.286  40.0495
## 45    East Asia & Pacific         Beijing   116.286  40.0495
## 46    East Asia & Pacific         Beijing   116.286  40.0495
## 47    East Asia & Pacific         Beijing   116.286  40.0495
## 48    East Asia & Pacific         Beijing   116.286  40.0495
## 49    East Asia & Pacific         Beijing   116.286  40.0495
## 50    East Asia & Pacific         Beijing   116.286  40.0495
## 51    East Asia & Pacific         Beijing   116.286  40.0495
## 52    East Asia & Pacific         Beijing   116.286  40.0495
## 53    East Asia & Pacific         Beijing   116.286  40.0495
## 54    East Asia & Pacific         Beijing   116.286  40.0495
## 55    East Asia & Pacific         Beijing   116.286  40.0495
## 56    East Asia & Pacific         Beijing   116.286  40.0495
## 57    East Asia & Pacific         Beijing   116.286  40.0495
## 58    East Asia & Pacific         Beijing   116.286  40.0495
## 59    East Asia & Pacific         Beijing   116.286  40.0495
## 60    East Asia & Pacific         Beijing   116.286  40.0495
## 61    East Asia & Pacific         Beijing   116.286  40.0495
## 62    East Asia & Pacific         Beijing   116.286  40.0495
## 63    East Asia & Pacific         Beijing   116.286  40.0495
## 64  Europe & Central Asia          Berlin   13.4115  52.5235
## 65  Europe & Central Asia          Berlin   13.4115  52.5235
## 66  Europe & Central Asia          Berlin   13.4115  52.5235
## 67  Europe & Central Asia          Berlin   13.4115  52.5235
## 68  Europe & Central Asia          Berlin   13.4115  52.5235
## 69  Europe & Central Asia          Berlin   13.4115  52.5235
## 70  Europe & Central Asia          Berlin   13.4115  52.5235
## 71  Europe & Central Asia          Berlin   13.4115  52.5235
## 72  Europe & Central Asia          Berlin   13.4115  52.5235
## 73  Europe & Central Asia          Berlin   13.4115  52.5235
## 74  Europe & Central Asia          Berlin   13.4115  52.5235
## 75  Europe & Central Asia          Berlin   13.4115  52.5235
## 76  Europe & Central Asia          Berlin   13.4115  52.5235
## 77  Europe & Central Asia          Berlin   13.4115  52.5235
## 78  Europe & Central Asia          Berlin   13.4115  52.5235
## 79  Europe & Central Asia          Berlin   13.4115  52.5235
## 80  Europe & Central Asia          Berlin   13.4115  52.5235
## 81  Europe & Central Asia          Berlin   13.4115  52.5235
## 82  Europe & Central Asia          Berlin   13.4115  52.5235
## 83  Europe & Central Asia          Berlin   13.4115  52.5235
## 84  Europe & Central Asia          Berlin   13.4115  52.5235
## 85  Europe & Central Asia          Berlin   13.4115  52.5235
## 86  Europe & Central Asia          Berlin   13.4115  52.5235
## 87  Europe & Central Asia          Berlin   13.4115  52.5235
## 88  Europe & Central Asia          Berlin   13.4115  52.5235
## 89  Europe & Central Asia          Berlin   13.4115  52.5235
## 90  Europe & Central Asia          Berlin   13.4115  52.5235
## 91  Europe & Central Asia          Berlin   13.4115  52.5235
## 92  Europe & Central Asia          Berlin   13.4115  52.5235
## 93  Europe & Central Asia          Berlin   13.4115  52.5235
## 94  Europe & Central Asia          Berlin   13.4115  52.5235
## 95  Europe & Central Asia          Berlin   13.4115  52.5235
## 96  Europe & Central Asia          Berlin   13.4115  52.5235
## 97  Europe & Central Asia          Berlin   13.4115  52.5235
## 98  Europe & Central Asia          Berlin   13.4115  52.5235
## 99  Europe & Central Asia          Berlin   13.4115  52.5235
## 100 Europe & Central Asia          Berlin   13.4115  52.5235
## 101 Europe & Central Asia          Berlin   13.4115  52.5235
## 102 Europe & Central Asia          Berlin   13.4115  52.5235
## 103 Europe & Central Asia          Berlin   13.4115  52.5235
## 104 Europe & Central Asia          Berlin   13.4115  52.5235
## 105 Europe & Central Asia          Berlin   13.4115  52.5235
## 106 Europe & Central Asia          Berlin   13.4115  52.5235
## 107 Europe & Central Asia          Berlin   13.4115  52.5235
## 108 Europe & Central Asia          Berlin   13.4115  52.5235
## 109 Europe & Central Asia          Berlin   13.4115  52.5235
## 110 Europe & Central Asia          Berlin   13.4115  52.5235
## 111 Europe & Central Asia          Berlin   13.4115  52.5235
## 112 Europe & Central Asia          Berlin   13.4115  52.5235
## 113 Europe & Central Asia          Berlin   13.4115  52.5235
## 114 Europe & Central Asia          Berlin   13.4115  52.5235
## 115 Europe & Central Asia          Berlin   13.4115  52.5235
## 116 Europe & Central Asia          Berlin   13.4115  52.5235
## 117 Europe & Central Asia          Berlin   13.4115  52.5235
## 118 Europe & Central Asia          Berlin   13.4115  52.5235
## 119 Europe & Central Asia          Berlin   13.4115  52.5235
## 120 Europe & Central Asia          Berlin   13.4115  52.5235
## 121 Europe & Central Asia          Berlin   13.4115  52.5235
## 122 Europe & Central Asia          Berlin   13.4115  52.5235
## 123 Europe & Central Asia          Berlin   13.4115  52.5235
## 124 Europe & Central Asia          Berlin   13.4115  52.5235
## 125 Europe & Central Asia          Berlin   13.4115  52.5235
## 126 Europe & Central Asia          Berlin   13.4115  52.5235
## 127            South Asia       New Delhi    77.225  28.6353
## 128            South Asia       New Delhi    77.225  28.6353
## 129            South Asia       New Delhi    77.225  28.6353
## 130            South Asia       New Delhi    77.225  28.6353
## 131            South Asia       New Delhi    77.225  28.6353
## 132            South Asia       New Delhi    77.225  28.6353
## 133            South Asia       New Delhi    77.225  28.6353
## 134            South Asia       New Delhi    77.225  28.6353
## 135            South Asia       New Delhi    77.225  28.6353
## 136            South Asia       New Delhi    77.225  28.6353
## 137            South Asia       New Delhi    77.225  28.6353
## 138            South Asia       New Delhi    77.225  28.6353
## 139            South Asia       New Delhi    77.225  28.6353
## 140            South Asia       New Delhi    77.225  28.6353
## 141            South Asia       New Delhi    77.225  28.6353
## 142            South Asia       New Delhi    77.225  28.6353
## 143            South Asia       New Delhi    77.225  28.6353
## 144            South Asia       New Delhi    77.225  28.6353
## 145            South Asia       New Delhi    77.225  28.6353
## 146            South Asia       New Delhi    77.225  28.6353
## 147            South Asia       New Delhi    77.225  28.6353
## 148            South Asia       New Delhi    77.225  28.6353
## 149            South Asia       New Delhi    77.225  28.6353
## 150            South Asia       New Delhi    77.225  28.6353
## 151            South Asia       New Delhi    77.225  28.6353
## 152            South Asia       New Delhi    77.225  28.6353
## 153            South Asia       New Delhi    77.225  28.6353
## 154            South Asia       New Delhi    77.225  28.6353
## 155            South Asia       New Delhi    77.225  28.6353
## 156            South Asia       New Delhi    77.225  28.6353
## 157            South Asia       New Delhi    77.225  28.6353
## 158            South Asia       New Delhi    77.225  28.6353
## 159            South Asia       New Delhi    77.225  28.6353
## 160            South Asia       New Delhi    77.225  28.6353
## 161            South Asia       New Delhi    77.225  28.6353
## 162            South Asia       New Delhi    77.225  28.6353
## 163            South Asia       New Delhi    77.225  28.6353
## 164            South Asia       New Delhi    77.225  28.6353
## 165            South Asia       New Delhi    77.225  28.6353
## 166            South Asia       New Delhi    77.225  28.6353
## 167            South Asia       New Delhi    77.225  28.6353
## 168            South Asia       New Delhi    77.225  28.6353
## 169            South Asia       New Delhi    77.225  28.6353
## 170            South Asia       New Delhi    77.225  28.6353
## 171            South Asia       New Delhi    77.225  28.6353
## 172            South Asia       New Delhi    77.225  28.6353
## 173            South Asia       New Delhi    77.225  28.6353
## 174            South Asia       New Delhi    77.225  28.6353
## 175            South Asia       New Delhi    77.225  28.6353
## 176            South Asia       New Delhi    77.225  28.6353
## 177            South Asia       New Delhi    77.225  28.6353
## 178            South Asia       New Delhi    77.225  28.6353
## 179            South Asia       New Delhi    77.225  28.6353
## 180            South Asia       New Delhi    77.225  28.6353
## 181            South Asia       New Delhi    77.225  28.6353
## 182            South Asia       New Delhi    77.225  28.6353
## 183            South Asia       New Delhi    77.225  28.6353
## 184            South Asia       New Delhi    77.225  28.6353
## 185            South Asia       New Delhi    77.225  28.6353
## 186            South Asia       New Delhi    77.225  28.6353
## 187            South Asia       New Delhi    77.225  28.6353
## 188            South Asia       New Delhi    77.225  28.6353
## 189            South Asia       New Delhi    77.225  28.6353
## 190   East Asia & Pacific           Tokyo    139.77    35.67
## 191   East Asia & Pacific           Tokyo    139.77    35.67
## 192   East Asia & Pacific           Tokyo    139.77    35.67
## 193   East Asia & Pacific           Tokyo    139.77    35.67
## 194   East Asia & Pacific           Tokyo    139.77    35.67
## 195   East Asia & Pacific           Tokyo    139.77    35.67
## 196   East Asia & Pacific           Tokyo    139.77    35.67
## 197   East Asia & Pacific           Tokyo    139.77    35.67
## 198   East Asia & Pacific           Tokyo    139.77    35.67
## 199   East Asia & Pacific           Tokyo    139.77    35.67
## 200   East Asia & Pacific           Tokyo    139.77    35.67
## 201   East Asia & Pacific           Tokyo    139.77    35.67
## 202   East Asia & Pacific           Tokyo    139.77    35.67
## 203   East Asia & Pacific           Tokyo    139.77    35.67
## 204   East Asia & Pacific           Tokyo    139.77    35.67
## 205   East Asia & Pacific           Tokyo    139.77    35.67
## 206   East Asia & Pacific           Tokyo    139.77    35.67
## 207   East Asia & Pacific           Tokyo    139.77    35.67
## 208   East Asia & Pacific           Tokyo    139.77    35.67
## 209   East Asia & Pacific           Tokyo    139.77    35.67
## 210   East Asia & Pacific           Tokyo    139.77    35.67
## 211   East Asia & Pacific           Tokyo    139.77    35.67
## 212   East Asia & Pacific           Tokyo    139.77    35.67
## 213   East Asia & Pacific           Tokyo    139.77    35.67
## 214   East Asia & Pacific           Tokyo    139.77    35.67
## 215   East Asia & Pacific           Tokyo    139.77    35.67
## 216   East Asia & Pacific           Tokyo    139.77    35.67
## 217   East Asia & Pacific           Tokyo    139.77    35.67
## 218   East Asia & Pacific           Tokyo    139.77    35.67
## 219   East Asia & Pacific           Tokyo    139.77    35.67
## 220   East Asia & Pacific           Tokyo    139.77    35.67
## 221   East Asia & Pacific           Tokyo    139.77    35.67
## 222   East Asia & Pacific           Tokyo    139.77    35.67
## 223   East Asia & Pacific           Tokyo    139.77    35.67
## 224   East Asia & Pacific           Tokyo    139.77    35.67
## 225   East Asia & Pacific           Tokyo    139.77    35.67
## 226   East Asia & Pacific           Tokyo    139.77    35.67
## 227   East Asia & Pacific           Tokyo    139.77    35.67
## 228   East Asia & Pacific           Tokyo    139.77    35.67
## 229   East Asia & Pacific           Tokyo    139.77    35.67
## 230   East Asia & Pacific           Tokyo    139.77    35.67
## 231   East Asia & Pacific           Tokyo    139.77    35.67
## 232   East Asia & Pacific           Tokyo    139.77    35.67
## 233   East Asia & Pacific           Tokyo    139.77    35.67
## 234   East Asia & Pacific           Tokyo    139.77    35.67
## 235   East Asia & Pacific           Tokyo    139.77    35.67
## 236   East Asia & Pacific           Tokyo    139.77    35.67
## 237   East Asia & Pacific           Tokyo    139.77    35.67
## 238   East Asia & Pacific           Tokyo    139.77    35.67
## 239   East Asia & Pacific           Tokyo    139.77    35.67
## 240   East Asia & Pacific           Tokyo    139.77    35.67
## 241   East Asia & Pacific           Tokyo    139.77    35.67
## 242   East Asia & Pacific           Tokyo    139.77    35.67
## 243   East Asia & Pacific           Tokyo    139.77    35.67
## 244   East Asia & Pacific           Tokyo    139.77    35.67
## 245   East Asia & Pacific           Tokyo    139.77    35.67
## 246   East Asia & Pacific           Tokyo    139.77    35.67
## 247   East Asia & Pacific           Tokyo    139.77    35.67
## 248   East Asia & Pacific           Tokyo    139.77    35.67
## 249   East Asia & Pacific           Tokyo    139.77    35.67
## 250   East Asia & Pacific           Tokyo    139.77    35.67
## 251   East Asia & Pacific           Tokyo    139.77    35.67
## 252   East Asia & Pacific           Tokyo    139.77    35.67
## 253 Europe & Central Asia          London -0.126236  51.5002
## 254 Europe & Central Asia          London -0.126236  51.5002
## 255 Europe & Central Asia          London -0.126236  51.5002
## 256 Europe & Central Asia          London -0.126236  51.5002
## 257 Europe & Central Asia          London -0.126236  51.5002
## 258 Europe & Central Asia          London -0.126236  51.5002
## 259 Europe & Central Asia          London -0.126236  51.5002
## 260 Europe & Central Asia          London -0.126236  51.5002
## 261 Europe & Central Asia          London -0.126236  51.5002
## 262 Europe & Central Asia          London -0.126236  51.5002
## 263 Europe & Central Asia          London -0.126236  51.5002
## 264 Europe & Central Asia          London -0.126236  51.5002
## 265 Europe & Central Asia          London -0.126236  51.5002
## 266 Europe & Central Asia          London -0.126236  51.5002
## 267 Europe & Central Asia          London -0.126236  51.5002
## 268 Europe & Central Asia          London -0.126236  51.5002
## 269 Europe & Central Asia          London -0.126236  51.5002
## 270 Europe & Central Asia          London -0.126236  51.5002
## 271 Europe & Central Asia          London -0.126236  51.5002
## 272 Europe & Central Asia          London -0.126236  51.5002
## 273 Europe & Central Asia          London -0.126236  51.5002
## 274 Europe & Central Asia          London -0.126236  51.5002
## 275 Europe & Central Asia          London -0.126236  51.5002
## 276 Europe & Central Asia          London -0.126236  51.5002
## 277 Europe & Central Asia          London -0.126236  51.5002
## 278 Europe & Central Asia          London -0.126236  51.5002
## 279 Europe & Central Asia          London -0.126236  51.5002
## 280 Europe & Central Asia          London -0.126236  51.5002
## 281 Europe & Central Asia          London -0.126236  51.5002
## 282 Europe & Central Asia          London -0.126236  51.5002
## 283 Europe & Central Asia          London -0.126236  51.5002
## 284 Europe & Central Asia          London -0.126236  51.5002
## 285 Europe & Central Asia          London -0.126236  51.5002
## 286 Europe & Central Asia          London -0.126236  51.5002
## 287 Europe & Central Asia          London -0.126236  51.5002
## 288 Europe & Central Asia          London -0.126236  51.5002
## 289 Europe & Central Asia          London -0.126236  51.5002
## 290 Europe & Central Asia          London -0.126236  51.5002
## 291 Europe & Central Asia          London -0.126236  51.5002
## 292 Europe & Central Asia          London -0.126236  51.5002
## 293 Europe & Central Asia          London -0.126236  51.5002
## 294 Europe & Central Asia          London -0.126236  51.5002
## 295 Europe & Central Asia          London -0.126236  51.5002
## 296 Europe & Central Asia          London -0.126236  51.5002
## 297 Europe & Central Asia          London -0.126236  51.5002
## 298 Europe & Central Asia          London -0.126236  51.5002
## 299 Europe & Central Asia          London -0.126236  51.5002
## 300 Europe & Central Asia          London -0.126236  51.5002
## 301 Europe & Central Asia          London -0.126236  51.5002
## 302 Europe & Central Asia          London -0.126236  51.5002
## 303 Europe & Central Asia          London -0.126236  51.5002
## 304 Europe & Central Asia          London -0.126236  51.5002
## 305 Europe & Central Asia          London -0.126236  51.5002
## 306 Europe & Central Asia          London -0.126236  51.5002
## 307 Europe & Central Asia          London -0.126236  51.5002
## 308 Europe & Central Asia          London -0.126236  51.5002
## 309 Europe & Central Asia          London -0.126236  51.5002
## 310 Europe & Central Asia          London -0.126236  51.5002
## 311 Europe & Central Asia          London -0.126236  51.5002
## 312 Europe & Central Asia          London -0.126236  51.5002
## 313 Europe & Central Asia          London -0.126236  51.5002
## 314 Europe & Central Asia          London -0.126236  51.5002
## 315 Europe & Central Asia          London -0.126236  51.5002
## 316         North America Washington D.C.   -77.032  38.8895
## 317         North America Washington D.C.   -77.032  38.8895
## 318         North America Washington D.C.   -77.032  38.8895
## 319         North America Washington D.C.   -77.032  38.8895
## 320         North America Washington D.C.   -77.032  38.8895
## 321         North America Washington D.C.   -77.032  38.8895
## 322         North America Washington D.C.   -77.032  38.8895
## 323         North America Washington D.C.   -77.032  38.8895
## 324         North America Washington D.C.   -77.032  38.8895
## 325         North America Washington D.C.   -77.032  38.8895
## 326         North America Washington D.C.   -77.032  38.8895
## 327         North America Washington D.C.   -77.032  38.8895
## 328         North America Washington D.C.   -77.032  38.8895
## 329         North America Washington D.C.   -77.032  38.8895
## 330         North America Washington D.C.   -77.032  38.8895
## 331         North America Washington D.C.   -77.032  38.8895
## 332         North America Washington D.C.   -77.032  38.8895
## 333         North America Washington D.C.   -77.032  38.8895
## 334         North America Washington D.C.   -77.032  38.8895
## 335         North America Washington D.C.   -77.032  38.8895
## 336         North America Washington D.C.   -77.032  38.8895
## 337         North America Washington D.C.   -77.032  38.8895
## 338         North America Washington D.C.   -77.032  38.8895
## 339         North America Washington D.C.   -77.032  38.8895
## 340         North America Washington D.C.   -77.032  38.8895
## 341         North America Washington D.C.   -77.032  38.8895
## 342         North America Washington D.C.   -77.032  38.8895
## 343         North America Washington D.C.   -77.032  38.8895
## 344         North America Washington D.C.   -77.032  38.8895
## 345         North America Washington D.C.   -77.032  38.8895
## 346         North America Washington D.C.   -77.032  38.8895
## 347         North America Washington D.C.   -77.032  38.8895
## 348         North America Washington D.C.   -77.032  38.8895
## 349         North America Washington D.C.   -77.032  38.8895
## 350         North America Washington D.C.   -77.032  38.8895
## 351         North America Washington D.C.   -77.032  38.8895
## 352         North America Washington D.C.   -77.032  38.8895
## 353         North America Washington D.C.   -77.032  38.8895
## 354         North America Washington D.C.   -77.032  38.8895
## 355         North America Washington D.C.   -77.032  38.8895
## 356         North America Washington D.C.   -77.032  38.8895
## 357         North America Washington D.C.   -77.032  38.8895
## 358         North America Washington D.C.   -77.032  38.8895
## 359         North America Washington D.C.   -77.032  38.8895
## 360         North America Washington D.C.   -77.032  38.8895
## 361         North America Washington D.C.   -77.032  38.8895
## 362         North America Washington D.C.   -77.032  38.8895
## 363         North America Washington D.C.   -77.032  38.8895
## 364         North America Washington D.C.   -77.032  38.8895
## 365         North America Washington D.C.   -77.032  38.8895
## 366         North America Washington D.C.   -77.032  38.8895
## 367         North America Washington D.C.   -77.032  38.8895
## 368         North America Washington D.C.   -77.032  38.8895
## 369         North America Washington D.C.   -77.032  38.8895
## 370         North America Washington D.C.   -77.032  38.8895
## 371         North America Washington D.C.   -77.032  38.8895
## 372         North America Washington D.C.   -77.032  38.8895
## 373         North America Washington D.C.   -77.032  38.8895
## 374         North America Washington D.C.   -77.032  38.8895
## 375         North America Washington D.C.   -77.032  38.8895
## 376         North America Washington D.C.   -77.032  38.8895
## 377         North America Washington D.C.   -77.032  38.8895
## 378         North America Washington D.C.   -77.032  38.8895
##                  income        lending
## 1   Upper middle income           IBRD
## 2   Upper middle income           IBRD
## 3   Upper middle income           IBRD
## 4   Upper middle income           IBRD
## 5   Upper middle income           IBRD
## 6   Upper middle income           IBRD
## 7   Upper middle income           IBRD
## 8   Upper middle income           IBRD
## 9   Upper middle income           IBRD
## 10  Upper middle income           IBRD
## 11  Upper middle income           IBRD
## 12  Upper middle income           IBRD
## 13  Upper middle income           IBRD
## 14  Upper middle income           IBRD
## 15  Upper middle income           IBRD
## 16  Upper middle income           IBRD
## 17  Upper middle income           IBRD
## 18  Upper middle income           IBRD
## 19  Upper middle income           IBRD
## 20  Upper middle income           IBRD
## 21  Upper middle income           IBRD
## 22  Upper middle income           IBRD
## 23  Upper middle income           IBRD
## 24  Upper middle income           IBRD
## 25  Upper middle income           IBRD
## 26  Upper middle income           IBRD
## 27  Upper middle income           IBRD
## 28  Upper middle income           IBRD
## 29  Upper middle income           IBRD
## 30  Upper middle income           IBRD
## 31  Upper middle income           IBRD
## 32  Upper middle income           IBRD
## 33  Upper middle income           IBRD
## 34  Upper middle income           IBRD
## 35  Upper middle income           IBRD
## 36  Upper middle income           IBRD
## 37  Upper middle income           IBRD
## 38  Upper middle income           IBRD
## 39  Upper middle income           IBRD
## 40  Upper middle income           IBRD
## 41  Upper middle income           IBRD
## 42  Upper middle income           IBRD
## 43  Upper middle income           IBRD
## 44  Upper middle income           IBRD
## 45  Upper middle income           IBRD
## 46  Upper middle income           IBRD
## 47  Upper middle income           IBRD
## 48  Upper middle income           IBRD
## 49  Upper middle income           IBRD
## 50  Upper middle income           IBRD
## 51  Upper middle income           IBRD
## 52  Upper middle income           IBRD
## 53  Upper middle income           IBRD
## 54  Upper middle income           IBRD
## 55  Upper middle income           IBRD
## 56  Upper middle income           IBRD
## 57  Upper middle income           IBRD
## 58  Upper middle income           IBRD
## 59  Upper middle income           IBRD
## 60  Upper middle income           IBRD
## 61  Upper middle income           IBRD
## 62  Upper middle income           IBRD
## 63  Upper middle income           IBRD
## 64          High income Not classified
## 65          High income Not classified
## 66          High income Not classified
## 67          High income Not classified
## 68          High income Not classified
## 69          High income Not classified
## 70          High income Not classified
## 71          High income Not classified
## 72          High income Not classified
## 73          High income Not classified
## 74          High income Not classified
## 75          High income Not classified
## 76          High income Not classified
## 77          High income Not classified
## 78          High income Not classified
## 79          High income Not classified
## 80          High income Not classified
## 81          High income Not classified
## 82          High income Not classified
## 83          High income Not classified
## 84          High income Not classified
## 85          High income Not classified
## 86          High income Not classified
## 87          High income Not classified
## 88          High income Not classified
## 89          High income Not classified
## 90          High income Not classified
## 91          High income Not classified
## 92          High income Not classified
## 93          High income Not classified
## 94          High income Not classified
## 95          High income Not classified
## 96          High income Not classified
## 97          High income Not classified
## 98          High income Not classified
## 99          High income Not classified
## 100         High income Not classified
## 101         High income Not classified
## 102         High income Not classified
## 103         High income Not classified
## 104         High income Not classified
## 105         High income Not classified
## 106         High income Not classified
## 107         High income Not classified
## 108         High income Not classified
## 109         High income Not classified
## 110         High income Not classified
## 111         High income Not classified
## 112         High income Not classified
## 113         High income Not classified
## 114         High income Not classified
## 115         High income Not classified
## 116         High income Not classified
## 117         High income Not classified
## 118         High income Not classified
## 119         High income Not classified
## 120         High income Not classified
## 121         High income Not classified
## 122         High income Not classified
## 123         High income Not classified
## 124         High income Not classified
## 125         High income Not classified
## 126         High income Not classified
## 127 Lower middle income           IBRD
## 128 Lower middle income           IBRD
## 129 Lower middle income           IBRD
## 130 Lower middle income           IBRD
## 131 Lower middle income           IBRD
## 132 Lower middle income           IBRD
## 133 Lower middle income           IBRD
## 134 Lower middle income           IBRD
## 135 Lower middle income           IBRD
## 136 Lower middle income           IBRD
## 137 Lower middle income           IBRD
## 138 Lower middle income           IBRD
## 139 Lower middle income           IBRD
## 140 Lower middle income           IBRD
## 141 Lower middle income           IBRD
## 142 Lower middle income           IBRD
## 143 Lower middle income           IBRD
## 144 Lower middle income           IBRD
## 145 Lower middle income           IBRD
## 146 Lower middle income           IBRD
## 147 Lower middle income           IBRD
## 148 Lower middle income           IBRD
## 149 Lower middle income           IBRD
## 150 Lower middle income           IBRD
## 151 Lower middle income           IBRD
## 152 Lower middle income           IBRD
## 153 Lower middle income           IBRD
## 154 Lower middle income           IBRD
## 155 Lower middle income           IBRD
## 156 Lower middle income           IBRD
## 157 Lower middle income           IBRD
## 158 Lower middle income           IBRD
## 159 Lower middle income           IBRD
## 160 Lower middle income           IBRD
## 161 Lower middle income           IBRD
## 162 Lower middle income           IBRD
## 163 Lower middle income           IBRD
## 164 Lower middle income           IBRD
## 165 Lower middle income           IBRD
## 166 Lower middle income           IBRD
## 167 Lower middle income           IBRD
## 168 Lower middle income           IBRD
## 169 Lower middle income           IBRD
## 170 Lower middle income           IBRD
## 171 Lower middle income           IBRD
## 172 Lower middle income           IBRD
## 173 Lower middle income           IBRD
## 174 Lower middle income           IBRD
## 175 Lower middle income           IBRD
## 176 Lower middle income           IBRD
## 177 Lower middle income           IBRD
## 178 Lower middle income           IBRD
## 179 Lower middle income           IBRD
## 180 Lower middle income           IBRD
## 181 Lower middle income           IBRD
## 182 Lower middle income           IBRD
## 183 Lower middle income           IBRD
## 184 Lower middle income           IBRD
## 185 Lower middle income           IBRD
## 186 Lower middle income           IBRD
## 187 Lower middle income           IBRD
## 188 Lower middle income           IBRD
## 189 Lower middle income           IBRD
## 190         High income Not classified
## 191         High income Not classified
## 192         High income Not classified
## 193         High income Not classified
## 194         High income Not classified
## 195         High income Not classified
## 196         High income Not classified
## 197         High income Not classified
## 198         High income Not classified
## 199         High income Not classified
## 200         High income Not classified
## 201         High income Not classified
## 202         High income Not classified
## 203         High income Not classified
## 204         High income Not classified
## 205         High income Not classified
## 206         High income Not classified
## 207         High income Not classified
## 208         High income Not classified
## 209         High income Not classified
## 210         High income Not classified
## 211         High income Not classified
## 212         High income Not classified
## 213         High income Not classified
## 214         High income Not classified
## 215         High income Not classified
## 216         High income Not classified
## 217         High income Not classified
## 218         High income Not classified
## 219         High income Not classified
## 220         High income Not classified
## 221         High income Not classified
## 222         High income Not classified
## 223         High income Not classified
## 224         High income Not classified
## 225         High income Not classified
## 226         High income Not classified
## 227         High income Not classified
## 228         High income Not classified
## 229         High income Not classified
## 230         High income Not classified
## 231         High income Not classified
## 232         High income Not classified
## 233         High income Not classified
## 234         High income Not classified
## 235         High income Not classified
## 236         High income Not classified
## 237         High income Not classified
## 238         High income Not classified
## 239         High income Not classified
## 240         High income Not classified
## 241         High income Not classified
## 242         High income Not classified
## 243         High income Not classified
## 244         High income Not classified
## 245         High income Not classified
## 246         High income Not classified
## 247         High income Not classified
## 248         High income Not classified
## 249         High income Not classified
## 250         High income Not classified
## 251         High income Not classified
## 252         High income Not classified
## 253         High income Not classified
## 254         High income Not classified
## 255         High income Not classified
## 256         High income Not classified
## 257         High income Not classified
## 258         High income Not classified
## 259         High income Not classified
## 260         High income Not classified
## 261         High income Not classified
## 262         High income Not classified
## 263         High income Not classified
## 264         High income Not classified
## 265         High income Not classified
## 266         High income Not classified
## 267         High income Not classified
## 268         High income Not classified
## 269         High income Not classified
## 270         High income Not classified
## 271         High income Not classified
## 272         High income Not classified
## 273         High income Not classified
## 274         High income Not classified
## 275         High income Not classified
## 276         High income Not classified
## 277         High income Not classified
## 278         High income Not classified
## 279         High income Not classified
## 280         High income Not classified
## 281         High income Not classified
## 282         High income Not classified
## 283         High income Not classified
## 284         High income Not classified
## 285         High income Not classified
## 286         High income Not classified
## 287         High income Not classified
## 288         High income Not classified
## 289         High income Not classified
## 290         High income Not classified
## 291         High income Not classified
## 292         High income Not classified
## 293         High income Not classified
## 294         High income Not classified
## 295         High income Not classified
## 296         High income Not classified
## 297         High income Not classified
## 298         High income Not classified
## 299         High income Not classified
## 300         High income Not classified
## 301         High income Not classified
## 302         High income Not classified
## 303         High income Not classified
## 304         High income Not classified
## 305         High income Not classified
## 306         High income Not classified
## 307         High income Not classified
## 308         High income Not classified
## 309         High income Not classified
## 310         High income Not classified
## 311         High income Not classified
## 312         High income Not classified
## 313         High income Not classified
## 314         High income Not classified
## 315         High income Not classified
## 316         High income Not classified
## 317         High income Not classified
## 318         High income Not classified
## 319         High income Not classified
## 320         High income Not classified
## 321         High income Not classified
## 322         High income Not classified
## 323         High income Not classified
## 324         High income Not classified
## 325         High income Not classified
## 326         High income Not classified
## 327         High income Not classified
## 328         High income Not classified
## 329         High income Not classified
## 330         High income Not classified
## 331         High income Not classified
## 332         High income Not classified
## 333         High income Not classified
## 334         High income Not classified
## 335         High income Not classified
## 336         High income Not classified
## 337         High income Not classified
## 338         High income Not classified
## 339         High income Not classified
## 340         High income Not classified
## 341         High income Not classified
## 342         High income Not classified
## 343         High income Not classified
## 344         High income Not classified
## 345         High income Not classified
## 346         High income Not classified
## 347         High income Not classified
## 348         High income Not classified
## 349         High income Not classified
## 350         High income Not classified
## 351         High income Not classified
## 352         High income Not classified
## 353         High income Not classified
## 354         High income Not classified
## 355         High income Not classified
## 356         High income Not classified
## 357         High income Not classified
## 358         High income Not classified
## 359         High income Not classified
## 360         High income Not classified
## 361         High income Not classified
## 362         High income Not classified
## 363         High income Not classified
## 364         High income Not classified
## 365         High income Not classified
## 366         High income Not classified
## 367         High income Not classified
## 368         High income Not classified
## 369         High income Not classified
## 370         High income Not classified
## 371         High income Not classified
## 372         High income Not classified
## 373         High income Not classified
## 374         High income Not classified
## 375         High income Not classified
## 376         High income Not classified
## 377         High income Not classified
## 378         High income Not classified

ダウンロード例 2-1

  • NY.GDP.DEFL.KD.ZG: Inflation, GDP deflator (annual %)
  • CPTOTNSXN: CPI Price, nominal
df_gdp21 <- WDI(country = "all", 
                indicator = c(gdp_deflator = "NY.GDP.DEFL.KD.ZG", 
                              cpi_price = "CPTOTNSXN"), 
                extra=TRUE, cache=wdi_cache)
df_gdp21
##                                          country iso2c iso3c year status
## 1                             Advanced Economies   AME       1987       
## 2                             Advanced Economies   AME       1988       
## 3                             Advanced Economies   AME       1989       
## 4                             Advanced Economies   AME       1990       
## 5                             Advanced Economies   AME       1991       
## 6                             Advanced Economies   AME       1992       
## 7                             Advanced Economies   AME       1993       
## 8                             Advanced Economies   AME       1994       
## 9                             Advanced Economies   AME       1995       
## 10                            Advanced Economies   AME       1996       
## 11                            Advanced Economies   AME       1997       
## 12                            Advanced Economies   AME       1998       
## 13                            Advanced Economies   AME       1999       
## 14                            Advanced Economies   AME       2000       
## 15                            Advanced Economies   AME       2001       
## 16                            Advanced Economies   AME       2002       
## 17                            Advanced Economies   AME       2003       
## 18                            Advanced Economies   AME       2004       
## 19                            Advanced Economies   AME       2005       
## 20                            Advanced Economies   AME       2006       
## 21                            Advanced Economies   AME       2007       
## 22                            Advanced Economies   AME       2008       
## 23                            Advanced Economies   AME       2009       
## 24                            Advanced Economies   AME       2010       
## 25                            Advanced Economies   AME       2011       
## 26                            Advanced Economies   AME       2012       
## 27                            Advanced Economies   AME       2013       
## 28                            Advanced Economies   AME       2014       
## 29                            Advanced Economies   AME       2015       
## 30                            Advanced Economies   AME       2016       
## 31                            Advanced Economies   AME       2017       
## 32                            Advanced Economies   AME       2018       
## 33                            Advanced Economies   AME       2019       
## 34                            Advanced Economies   AME       2020       
## 35                                   Afghanistan    AF   AFG 2001       
## 36                                   Afghanistan    AF   AFG 2005       
## 37                                   Afghanistan    AF   AFG 1965       
## 38                                   Afghanistan    AF   AFG 2000       
## 39                                   Afghanistan    AF   AFG 1986       
## 40                                   Afghanistan    AF   AFG 1973       
## 41                                   Afghanistan    AF   AFG 1985       
## 42                                   Afghanistan    AF   AFG 1971       
## 43                                   Afghanistan    AF   AFG 1999       
## 44                                   Afghanistan    AF   AFG 1998       
## 45                                   Afghanistan    AF   AFG 1988       
## 46                                   Afghanistan    AF   AFG 2004       
## 47                                   Afghanistan    AF   AFG 1964       
## 48                                   Afghanistan    AF   AFG 1967       
## 49                                   Afghanistan    AF   AFG 1993       
## 50                                   Afghanistan    AF   AFG 1984       
## 51                                   Afghanistan    AF   AFG 2021       
## 52                                   Afghanistan    AF   AFG 1987       
## 53                                   Afghanistan    AF   AFG 1994       
## 54                                   Afghanistan    AF   AFG 1969       
## 55                                   Afghanistan    AF   AFG 1990       
## 56                                   Afghanistan    AF   AFG 1962       
## 57                                   Afghanistan    AF   AFG 1989       
## 58                                   Afghanistan    AF   AFG 1961       
## 59                                   Afghanistan    AF   AFG 2015       
## 60                                   Afghanistan    AF   AFG 2010       
## 61                                   Afghanistan    AF   AFG 2007       
## 62                                   Afghanistan    AF   AFG 2006       
## 63                                   Afghanistan    AF   AFG 1983       
## 64                                   Afghanistan    AF   AFG 1991       
## 65                                   Afghanistan    AF   AFG 1972       
## 66                                   Afghanistan    AF   AFG 1975       
## 67                                   Afghanistan    AF   AFG 1982       
## 68                                   Afghanistan    AF   AFG 1997       
## 69                                   Afghanistan    AF   AFG 2002       
## 70                                   Afghanistan    AF   AFG 1960       
## 71                                   Afghanistan    AF   AFG 1979       
## 72                                   Afghanistan    AF   AFG 1968       
## 73                                   Afghanistan    AF   AFG 1981       
## 74                                   Afghanistan    AF   AFG 1966       
## 75                                   Afghanistan    AF   AFG 1992       
## 76                                   Afghanistan    AF   AFG 1996       
## 77                                   Afghanistan    AF   AFG 1978       
## 78                                   Afghanistan    AF   AFG 1974       
## 79                                   Afghanistan    AF   AFG 2012       
## 80                                   Afghanistan    AF   AFG 2014       
## 81                                   Afghanistan    AF   AFG 2003       
## 82                                   Afghanistan    AF   AFG 1980       
## 83                                   Afghanistan    AF   AFG 1963       
## 84                                   Afghanistan    AF   AFG 2016       
## 85                                   Afghanistan    AF   AFG 2017       
## 86                                   Afghanistan    AF   AFG 2009       
## 87                                   Afghanistan    AF   AFG 1976       
## 88                                   Afghanistan    AF   AFG 1977       
## 89                                   Afghanistan    AF   AFG 2018       
## 90                                   Afghanistan    AF   AFG 2013       
## 91                                   Afghanistan    AF   AFG 1970       
## 92                                   Afghanistan    AF   AFG 2020       
## 93                                   Afghanistan    AF   AFG 1995       
## 94                                   Afghanistan    AF   AFG 2011       
## 95                                   Afghanistan    AF   AFG 2022       
## 96                                   Afghanistan    AF   AFG 2008       
## 97                                   Afghanistan    AF   AFG 2019       
## 98                                   Afghanistan   AFG       1987       
## 99                                   Afghanistan   AFG       1988       
## 100                                  Afghanistan   AFG       1989       
## 101                                  Afghanistan   AFG       1990       
## 102                                  Afghanistan   AFG       1991       
## 103                                  Afghanistan   AFG       1992       
## 104                                  Afghanistan   AFG       1993       
## 105                                  Afghanistan   AFG       1994       
## 106                                  Afghanistan   AFG       1995       
## 107                                  Afghanistan   AFG       1996       
## 108                                  Afghanistan   AFG       1997       
## 109                                  Afghanistan   AFG       1998       
## 110                                  Afghanistan   AFG       1999       
## 111                                  Afghanistan   AFG       2000       
## 112                                  Afghanistan   AFG       2001       
## 113                                  Afghanistan   AFG       2002       
## 114                                  Afghanistan   AFG       2003       
## 115                                  Afghanistan   AFG       2004       
## 116                                  Afghanistan   AFG       2005       
## 117                                  Afghanistan   AFG       2006       
## 118                                  Afghanistan   AFG       2007       
## 119                                  Afghanistan   AFG       2008       
## 120                                  Afghanistan   AFG       2009       
## 121                                  Afghanistan   AFG       2010       
## 122                                  Afghanistan   AFG       2011       
## 123                                  Afghanistan   AFG       2012       
## 124                                  Afghanistan   AFG       2013       
## 125                                  Afghanistan   AFG       2014       
## 126                                  Afghanistan   AFG       2015       
## 127                                  Afghanistan   AFG       2016       
## 128                                  Afghanistan   AFG       2017       
## 129                                  Afghanistan   AFG       2018       
## 130                                  Afghanistan   AFG       2019       
## 131                                  Afghanistan   AFG       2020       
## 132                  Africa Eastern and Southern    ZH   AFE 1975       
## 133                  Africa Eastern and Southern    ZH   AFE 2014       
## 134                  Africa Eastern and Southern    ZH   AFE 1974       
## 135                  Africa Eastern and Southern    ZH   AFE 1999       
## 136                  Africa Eastern and Southern    ZH   AFE 1972       
## 137                  Africa Eastern and Southern    ZH   AFE 1994       
## 138                  Africa Eastern and Southern    ZH   AFE 2003       
## 139                  Africa Eastern and Southern    ZH   AFE 1982       
## 140                  Africa Eastern and Southern    ZH   AFE 2001       
## 141                  Africa Eastern and Southern    ZH   AFE 1983       
## 142                  Africa Eastern and Southern    ZH   AFE 1973       
## 143                  Africa Eastern and Southern    ZH   AFE 2021       
## 144                  Africa Eastern and Southern    ZH   AFE 2002       
## 145                  Africa Eastern and Southern    ZH   AFE 1992       
## 146                  Africa Eastern and Southern    ZH   AFE 1976       
## 147                  Africa Eastern and Southern    ZH   AFE 2010       
## 148                  Africa Eastern and Southern    ZH   AFE 2009       
## 149                  Africa Eastern and Southern    ZH   AFE 1978       
## 150                  Africa Eastern and Southern    ZH   AFE 1991       
## 151                  Africa Eastern and Southern    ZH   AFE 1968       
## 152                  Africa Eastern and Southern    ZH   AFE 1962       
## 153                  Africa Eastern and Southern    ZH   AFE 1971       
## 154                  Africa Eastern and Southern    ZH   AFE 2004       
## 155                  Africa Eastern and Southern    ZH   AFE 1977       
## 156                  Africa Eastern and Southern    ZH   AFE 2000       
## 157                  Africa Eastern and Southern    ZH   AFE 1993       
## 158                  Africa Eastern and Southern    ZH   AFE 2006       
## 159                  Africa Eastern and Southern    ZH   AFE 2016       
## 160                  Africa Eastern and Southern    ZH   AFE 1990       
## 161                  Africa Eastern and Southern    ZH   AFE 1988       
## 162                  Africa Eastern and Southern    ZH   AFE 2012       
## 163                  Africa Eastern and Southern    ZH   AFE 2015       
## 164                  Africa Eastern and Southern    ZH   AFE 1984       
## 165                  Africa Eastern and Southern    ZH   AFE 1985       
## 166                  Africa Eastern and Southern    ZH   AFE 2020       
## 167                  Africa Eastern and Southern    ZH   AFE 1997       
## 168                  Africa Eastern and Southern    ZH   AFE 1998       
## 169                  Africa Eastern and Southern    ZH   AFE 2022       
## 170                  Africa Eastern and Southern    ZH   AFE 1986       
## 171                  Africa Eastern and Southern    ZH   AFE 2005       
## 172                  Africa Eastern and Southern    ZH   AFE 2007       
## 173                  Africa Eastern and Southern    ZH   AFE 1987       
## 174                  Africa Eastern and Southern    ZH   AFE 1967       
## 175                  Africa Eastern and Southern    ZH   AFE 2013       
## 176                  Africa Eastern and Southern    ZH   AFE 1979       
## 177                  Africa Eastern and Southern    ZH   AFE 2008       
## 178                  Africa Eastern and Southern    ZH   AFE 1961       
## 179                  Africa Eastern and Southern    ZH   AFE 1964       
## 180                  Africa Eastern and Southern    ZH   AFE 1995       
## 181                  Africa Eastern and Southern    ZH   AFE 1965       
## 182                  Africa Eastern and Southern    ZH   AFE 2019       
## 183                  Africa Eastern and Southern    ZH   AFE 1981       
## 184                  Africa Eastern and Southern    ZH   AFE 2018       
## 185                  Africa Eastern and Southern    ZH   AFE 2011       
## 186                  Africa Eastern and Southern    ZH   AFE 2017       
## 187                  Africa Eastern and Southern    ZH   AFE 1966       
## 188                  Africa Eastern and Southern    ZH   AFE 1980       
## 189                  Africa Eastern and Southern    ZH   AFE 1969       
## 190                  Africa Eastern and Southern    ZH   AFE 1963       
## 191                  Africa Eastern and Southern    ZH   AFE 1970       
## 192                  Africa Eastern and Southern    ZH   AFE 1960       
## 193                  Africa Eastern and Southern    ZH   AFE 1989       
## 194                  Africa Eastern and Southern    ZH   AFE 1996       
## 195                   Africa Western and Central    ZI   AFW 1971       
## 196                   Africa Western and Central    ZI   AFW 1965       
## 197                   Africa Western and Central    ZI   AFW 1973       
## 198                   Africa Western and Central    ZI   AFW 1968       
## 199                   Africa Western and Central    ZI   AFW 1961       
## 200                   Africa Western and Central    ZI   AFW 2018       
## 201                   Africa Western and Central    ZI   AFW 1970       
## 202                   Africa Western and Central    ZI   AFW 1963       
## 203                   Africa Western and Central    ZI   AFW 1974       
## 204                   Africa Western and Central    ZI   AFW 1976       
## 205                   Africa Western and Central    ZI   AFW 1972       
## 206                   Africa Western and Central    ZI   AFW 1975       
## 207                   Africa Western and Central    ZI   AFW 2021       
## 208                   Africa Western and Central    ZI   AFW 2020       
## 209                   Africa Western and Central    ZI   AFW 2019       
## 210                   Africa Western and Central    ZI   AFW 2017       
## 211                   Africa Western and Central    ZI   AFW 2004       
## 212                   Africa Western and Central    ZI   AFW 1960       
## 213                   Africa Western and Central    ZI   AFW 1987       
## 214                   Africa Western and Central    ZI   AFW 1980       
## 215                   Africa Western and Central    ZI   AFW 1979       
## 216                   Africa Western and Central    ZI   AFW 1986       
## 217                   Africa Western and Central    ZI   AFW 1964       
## 218                   Africa Western and Central    ZI   AFW 2015       
## 219                   Africa Western and Central    ZI   AFW 2022       
## 220                   Africa Western and Central    ZI   AFW 2013       
## 221                   Africa Western and Central    ZI   AFW 2006       
## 222                   Africa Western and Central    ZI   AFW 1998       
## 223                   Africa Western and Central    ZI   AFW 1999       
## 224                   Africa Western and Central    ZI   AFW 2009       
## 225                   Africa Western and Central    ZI   AFW 1989       
## 226                   Africa Western and Central    ZI   AFW 2001       
## 227                   Africa Western and Central    ZI   AFW 1993       
## 228                   Africa Western and Central    ZI   AFW 1990       
## 229                   Africa Western and Central    ZI   AFW 1983       
## 230                   Africa Western and Central    ZI   AFW 1969       
## 231                   Africa Western and Central    ZI   AFW 1966       
## 232                   Africa Western and Central    ZI   AFW 2016       
## 233                   Africa Western and Central    ZI   AFW 2007       
## 234                   Africa Western and Central    ZI   AFW 2005       
## 235                   Africa Western and Central    ZI   AFW 1988       
## 236                   Africa Western and Central    ZI   AFW 2008       
## 237                   Africa Western and Central    ZI   AFW 1995       
## 238                   Africa Western and Central    ZI   AFW 2003       
## 239                   Africa Western and Central    ZI   AFW 2002       
## 240                   Africa Western and Central    ZI   AFW 1994       
## 241                   Africa Western and Central    ZI   AFW 1997       
## 242                   Africa Western and Central    ZI   AFW 1981       
## 243                   Africa Western and Central    ZI   AFW 1978       
## 244                   Africa Western and Central    ZI   AFW 1967       
## 245                   Africa Western and Central    ZI   AFW 2014       
## 246                   Africa Western and Central    ZI   AFW 1962       
## 247                   Africa Western and Central    ZI   AFW 1992       
## 248                   Africa Western and Central    ZI   AFW 2000       
## 249                   Africa Western and Central    ZI   AFW 2010       
## 250                   Africa Western and Central    ZI   AFW 1996       
## 251                   Africa Western and Central    ZI   AFW 1991       
## 252                   Africa Western and Central    ZI   AFW 1977       
## 253                   Africa Western and Central    ZI   AFW 1982       
## 254                   Africa Western and Central    ZI   AFW 1985       
## 255                   Africa Western and Central    ZI   AFW 2012       
## 256                   Africa Western and Central    ZI   AFW 2011       
## 257                   Africa Western and Central    ZI   AFW 1984       
## 258                                      Albania    AL   ALB 1961       
## 259                                      Albania    AL   ALB 1964       
## 260                                      Albania    AL   ALB 1996       
## 261                                      Albania    AL   ALB 1962       
## 262                                      Albania    AL   ALB 2003       
## 263                                      Albania    AL   ALB 1994       
## 264                                      Albania    AL   ALB 1992       
## 265                                      Albania    AL   ALB 2005       
## 266                                      Albania    AL   ALB 2006       
## 267                                      Albania    AL   ALB 2001       
## 268                                      Albania    AL   ALB 2002       
## 269                                      Albania    AL   ALB 1963       
## 270                                      Albania    AL   ALB 2008       
## 271                                      Albania    AL   ALB 1967       
## 272                                      Albania    AL   ALB 1965       
## 273                                      Albania    AL   ALB 1978       
## 274                                      Albania    AL   ALB 2004       
## 275                                      Albania    AL   ALB 1997       
## 276                                      Albania    AL   ALB 1993       
## 277                                      Albania    AL   ALB 1991       
## 278                                      Albania    AL   ALB 1986       
## 279                                      Albania    AL   ALB 1971       
## 280                                      Albania    AL   ALB 2000       
## 281                                      Albania    AL   ALB 1999       
## 282                                      Albania    AL   ALB 1995       
## 283                                      Albania    AL   ALB 1966       
## 284                                      Albania    AL   ALB 2018       
## 285                                      Albania    AL   ALB 2012       
## 286                                      Albania    AL   ALB 2007       
## 287                                      Albania    AL   ALB 2019       
## 288                                      Albania    AL   ALB 1984       
## 289                                      Albania    AL   ALB 1960       
## 290                                      Albania    AL   ALB 1973       
## 291                                      Albania    AL   ALB 1998       
## 292                                      Albania    AL   ALB 1969       
## 293                                      Albania    AL   ALB 1968       
## 294                                      Albania    AL   ALB 1970       
## 295                                      Albania    AL   ALB 2014       
## 296                                      Albania    AL   ALB 1982       
## 297                                      Albania    AL   ALB 1979       
## 298                                      Albania    AL   ALB 2013       
## 299                                      Albania    AL   ALB 1990       
## 300                                      Albania    AL   ALB 2011       
## 301                                      Albania    AL   ALB 1989       
## 302                                      Albania    AL   ALB 1974       
## 303                                      Albania    AL   ALB 2010       
## 304                                      Albania    AL   ALB 1983       
## 305                                      Albania    AL   ALB 1985       
## 306                                      Albania    AL   ALB 1972       
## 307                                      Albania    AL   ALB 2016       
## 308                                      Albania    AL   ALB 2015       
## 309                                      Albania    AL   ALB 1975       
## 310                                      Albania    AL   ALB 2017       
## 311                                      Albania    AL   ALB 1988       
## 312                                      Albania    AL   ALB 2022       
## 313                                      Albania    AL   ALB 1987       
## 314                                      Albania    AL   ALB 2021       
## 315                                      Albania    AL   ALB 1977       
## 316                                      Albania    AL   ALB 2009       
## 317                                      Albania    AL   ALB 1981       
## 318                                      Albania    AL   ALB 1980       
## 319                                      Albania    AL   ALB 1976       
## 320                                      Albania    AL   ALB 2020       
## 321                                      Albania   ALB       1987       
## 322                                      Albania   ALB       1988       
## 323                                      Albania   ALB       1989       
## 324                                      Albania   ALB       1990       
## 325                                      Albania   ALB       1991       
## 326                                      Albania   ALB       1992       
## 327                                      Albania   ALB       1993       
## 328                                      Albania   ALB       1994       
## 329                                      Albania   ALB       1995       
## 330                                      Albania   ALB       1996       
## 331                                      Albania   ALB       1997       
## 332                                      Albania   ALB       1998       
## 333                                      Albania   ALB       1999       
## 334                                      Albania   ALB       2000       
## 335                                      Albania   ALB       2001       
## 336                                      Albania   ALB       2002       
## 337                                      Albania   ALB       2003       
## 338                                      Albania   ALB       2004       
## 339                                      Albania   ALB       2005       
## 340                                      Albania   ALB       2006       
## 341                                      Albania   ALB       2007       
## 342                                      Albania   ALB       2008       
## 343                                      Albania   ALB       2009       
## 344                                      Albania   ALB       2010       
## 345                                      Albania   ALB       2011       
## 346                                      Albania   ALB       2012       
## 347                                      Albania   ALB       2013       
## 348                                      Albania   ALB       2014       
## 349                                      Albania   ALB       2015       
## 350                                      Albania   ALB       2016       
## 351                                      Albania   ALB       2017       
## 352                                      Albania   ALB       2018       
## 353                                      Albania   ALB       2019       
## 354                                      Albania   ALB       2020       
## 355                                      Algeria    DZ   DZA 1986       
## 356                                      Algeria    DZ   DZA 1962       
## 357                                      Algeria    DZ   DZA 2020       
## 358                                      Algeria    DZ   DZA 1985       
## 359                                      Algeria    DZ   DZA 1984       
## 360                                      Algeria    DZ   DZA 1979       
## 361                                      Algeria    DZ   DZA 1978       
## 362                                      Algeria    DZ   DZA 1990       
## 363                                      Algeria    DZ   DZA 2006       
## 364                                      Algeria    DZ   DZA 2003       
## 365                                      Algeria    DZ   DZA 2022       
## 366                                      Algeria    DZ   DZA 1973       
## 367                                      Algeria    DZ   DZA 2021       
## 368                                      Algeria    DZ   DZA 2008       
## 369                                      Algeria    DZ   DZA 1988       
## 370                                      Algeria    DZ   DZA 2005       
## 371                                      Algeria    DZ   DZA 1982       
## 372                                      Algeria    DZ   DZA 1980       
## 373                                      Algeria    DZ   DZA 1998       
## 374                                      Algeria    DZ   DZA 2000       
## 375                                      Algeria    DZ   DZA 1981       
## 376                                      Algeria    DZ   DZA 1996       
## 377                                      Algeria    DZ   DZA 1997       
## 378                                      Algeria    DZ   DZA 1983       
## 379                                      Algeria    DZ   DZA 1963       
## 380                                      Algeria    DZ   DZA 1971       
## 381                                      Algeria    DZ   DZA 2004       
## 382                                      Algeria    DZ   DZA 1987       
## 383                                      Algeria    DZ   DZA 2013       
## 384                                      Algeria    DZ   DZA 1994       
## 385                                      Algeria    DZ   DZA 2002       
## 386                                      Algeria    DZ   DZA 2001       
## 387                                      Algeria    DZ   DZA 1989       
## 388                                      Algeria    DZ   DZA 1977       
## 389                                      Algeria    DZ   DZA 1964       
## 390                                      Algeria    DZ   DZA 1972       
## 391                                      Algeria    DZ   DZA 1992       
## 392                                      Algeria    DZ   DZA 1974       
## 393                                      Algeria    DZ   DZA 1975       
## 394                                      Algeria    DZ   DZA 1993       
## 395                                      Algeria    DZ   DZA 2007       
## 396                                      Algeria    DZ   DZA 1991       
## 397                                      Algeria    DZ   DZA 2012       
## 398                                      Algeria    DZ   DZA 1999       
## 399                                      Algeria    DZ   DZA 1995       
## 400                                      Algeria    DZ   DZA 2009       
## 401                                      Algeria    DZ   DZA 2018       
## 402                                      Algeria    DZ   DZA 1966       
## 403                                      Algeria    DZ   DZA 1965       
## 404                                      Algeria    DZ   DZA 1969       
## 405                                      Algeria    DZ   DZA 1970       
## 406                                      Algeria    DZ   DZA 2011       
## 407                                      Algeria    DZ   DZA 1960       
## 408                                      Algeria    DZ   DZA 1961       
## 409                                      Algeria    DZ   DZA 2017       
## 410                                      Algeria    DZ   DZA 1968       
## 411                                      Algeria    DZ   DZA 2010       
## 412                                      Algeria    DZ   DZA 2016       
## 413                                      Algeria    DZ   DZA 2019       
## 414                                      Algeria    DZ   DZA 2015       
## 415                                      Algeria    DZ   DZA 1976       
## 416                                      Algeria    DZ   DZA 2014       
## 417                                      Algeria    DZ   DZA 1967       
## 418                                      Algeria   DZA       1987       
## 419                                      Algeria   DZA       1988       
## 420                                      Algeria   DZA       1989       
## 421                                      Algeria   DZA       1990       
## 422                                      Algeria   DZA       1991       
## 423                                      Algeria   DZA       1992       
## 424                                      Algeria   DZA       1993       
## 425                                      Algeria   DZA       1994       
## 426                                      Algeria   DZA       1995       
## 427                                      Algeria   DZA       1996       
## 428                                      Algeria   DZA       1997       
## 429                                      Algeria   DZA       1998       
## 430                                      Algeria   DZA       1999       
## 431                                      Algeria   DZA       2000       
## 432                                      Algeria   DZA       2001       
## 433                                      Algeria   DZA       2002       
## 434                                      Algeria   DZA       2003       
## 435                                      Algeria   DZA       2004       
## 436                                      Algeria   DZA       2005       
## 437                                      Algeria   DZA       2006       
## 438                                      Algeria   DZA       2007       
## 439                                      Algeria   DZA       2008       
## 440                                      Algeria   DZA       2009       
## 441                                      Algeria   DZA       2010       
## 442                                      Algeria   DZA       2011       
## 443                                      Algeria   DZA       2012       
## 444                                      Algeria   DZA       2013       
## 445                                      Algeria   DZA       2014       
## 446                                      Algeria   DZA       2015       
## 447                                      Algeria   DZA       2016       
## 448                                      Algeria   DZA       2017       
## 449                                      Algeria   DZA       2018       
## 450                                      Algeria   DZA       2019       
## 451                                      Algeria   DZA       2020       
## 452                               American Samoa    AS   ASM 2011       
## 453                               American Samoa    AS   ASM 2014       
## 454                               American Samoa    AS   ASM 2015       
## 455                               American Samoa    AS   ASM 2019       
## 456                               American Samoa    AS   ASM 2008       
## 457                               American Samoa    AS   ASM 1993       
## 458                               American Samoa    AS   ASM 2010       
## 459                               American Samoa    AS   ASM 1966       
## 460                               American Samoa    AS   ASM 2012       
## 461                               American Samoa    AS   ASM 1981       
## 462                               American Samoa    AS   ASM 1962       
## 463                               American Samoa    AS   ASM 1961       
## 464                               American Samoa    AS   ASM 1977       
## 465                               American Samoa    AS   ASM 1960       
## 466                               American Samoa    AS   ASM 1969       
## 467                               American Samoa    AS   ASM 1976       
## 468                               American Samoa    AS   ASM 2020       
## 469                               American Samoa    AS   ASM 2003       
## 470                               American Samoa    AS   ASM 1995       
## 471                               American Samoa    AS   ASM 1975       
## 472                               American Samoa    AS   ASM 1963       
## 473                               American Samoa    AS   ASM 1978       
## 474                               American Samoa    AS   ASM 1982       
## 475                               American Samoa    AS   ASM 2009       
## 476                               American Samoa    AS   ASM 1994       
## 477                               American Samoa    AS   ASM 1991       
## 478                               American Samoa    AS   ASM 2002       
## 479                               American Samoa    AS   ASM 2022       
## 480                               American Samoa    AS   ASM 2017       
## 481                               American Samoa    AS   ASM 1965       
## 482                               American Samoa    AS   ASM 1979       
## 483                               American Samoa    AS   ASM 1974       
## 484                               American Samoa    AS   ASM 1980       
## 485                               American Samoa    AS   ASM 2004       
## 486                               American Samoa    AS   ASM 1990       
## 487                               American Samoa    AS   ASM 2021       
## 488                               American Samoa    AS   ASM 1992       
## 489                               American Samoa    AS   ASM 1998       
## 490                               American Samoa    AS   ASM 2005       
## 491                               American Samoa    AS   ASM 1985       
## 492                               American Samoa    AS   ASM 1984       
## 493                               American Samoa    AS   ASM 1996       
## 494                               American Samoa    AS   ASM 1987       
## 495                               American Samoa    AS   ASM 2013       
## 496                               American Samoa    AS   ASM 2007       
## 497                               American Samoa    AS   ASM 2018       
## 498                               American Samoa    AS   ASM 1999       
## 499                               American Samoa    AS   ASM 1983       
## 500                               American Samoa    AS   ASM 1988       
## 501                               American Samoa    AS   ASM 1997       
## 502                               American Samoa    AS   ASM 1964       
## 503                               American Samoa    AS   ASM 2016       
## 504                               American Samoa    AS   ASM 1970       
## 505                               American Samoa    AS   ASM 1986       
## 506                               American Samoa    AS   ASM 2006       
## 507                               American Samoa    AS   ASM 1989       
## 508                               American Samoa    AS   ASM 1968       
## 509                               American Samoa    AS   ASM 1967       
## 510                               American Samoa    AS   ASM 1972       
## 511                               American Samoa    AS   ASM 2001       
## 512                               American Samoa    AS   ASM 1973       
## 513                               American Samoa    AS   ASM 1971       
## 514                               American Samoa    AS   ASM 2000       
## 515                                      Andorra    AD   AND 1977       
## 516                                      Andorra    AD   AND 1990       
## 517                                      Andorra    AD   AND 2001       
## 518                                      Andorra    AD   AND 2022       
## 519                                      Andorra    AD   AND 2021       
## 520                                      Andorra    AD   AND 1987       
## 521                                      Andorra    AD   AND 1970       
## 522                                      Andorra    AD   AND 1986       
## 523                                      Andorra    AD   AND 1976       
## 524                                      Andorra    AD   AND 1989       
## 525                                      Andorra    AD   AND 2016       
## 526                                      Andorra    AD   AND 1973       
## 527                                      Andorra    AD   AND 1968       
## 528                                      Andorra    AD   AND 1995       
## 529                                      Andorra    AD   AND 1966       
## 530                                      Andorra    AD   AND 2002       
## 531                                      Andorra    AD   AND 1962       
## 532                                      Andorra    AD   AND 1999       
## 533                                      Andorra    AD   AND 2000       
## 534                                      Andorra    AD   AND 1971       
## 535                                      Andorra    AD   AND 2019       
## 536                                      Andorra    AD   AND 1969       
## 537                                      Andorra    AD   AND 1988       
## 538                                      Andorra    AD   AND 1996       
## 539                                      Andorra    AD   AND 1961       
## 540                                      Andorra    AD   AND 1985       
## 541                                      Andorra    AD   AND 1975       
## 542                                      Andorra    AD   AND 1972       
## 543                                      Andorra    AD   AND 1967       
## 544                                      Andorra    AD   AND 1992       
## 545                                      Andorra    AD   AND 1993       
## 546                                      Andorra    AD   AND 1964       
## 547                                      Andorra    AD   AND 1974       
## 548                                      Andorra    AD   AND 1994       
## 549                                      Andorra    AD   AND 2020       
## 550                                      Andorra    AD   AND 2005       
## 551                                      Andorra    AD   AND 1963       
## 552                                      Andorra    AD   AND 1960       
## 553                                      Andorra    AD   AND 2009       
## 554                                      Andorra    AD   AND 1998       
## 555                                      Andorra    AD   AND 1991       
## 556                                      Andorra    AD   AND 2003       
## 557                                      Andorra    AD   AND 2006       
## 558                                      Andorra    AD   AND 2008       
## 559                                      Andorra    AD   AND 1983       
## 560                                      Andorra    AD   AND 2018       
## 561                                      Andorra    AD   AND 1997       
## 562                                      Andorra    AD   AND 1965       
## 563                                      Andorra    AD   AND 2010       
## 564                                      Andorra    AD   AND 2011       
## 565                                      Andorra    AD   AND 1981       
## 566                                      Andorra    AD   AND 1984       
## 567                                      Andorra    AD   AND 2007       
## 568                                      Andorra    AD   AND 2017       
## 569                                      Andorra    AD   AND 1978       
## 570                                      Andorra    AD   AND 1980       
## 571                                      Andorra    AD   AND 1982       
## 572                                      Andorra    AD   AND 2012       
## 573                                      Andorra    AD   AND 2015       
## 574                                      Andorra    AD   AND 2014       
## 575                                      Andorra    AD   AND 2004       
## 576                                      Andorra    AD   AND 2013       
## 577                                      Andorra    AD   AND 1979       
## 578                                       Angola   AGO       1987       
## 579                                       Angola   AGO       1988       
## 580                                       Angola   AGO       1989       
## 581                                       Angola   AGO       1990       
## 582                                       Angola   AGO       1991       
## 583                                       Angola   AGO       1992       
## 584                                       Angola   AGO       1993       
## 585                                       Angola   AGO       1994       
## 586                                       Angola   AGO       1995       
## 587                                       Angola   AGO       1996       
## 588                                       Angola   AGO       1997       
## 589                                       Angola   AGO       1998       
## 590                                       Angola   AGO       1999       
## 591                                       Angola   AGO       2000       
## 592                                       Angola   AGO       2001       
## 593                                       Angola   AGO       2002       
## 594                                       Angola   AGO       2003       
## 595                                       Angola   AGO       2004       
## 596                                       Angola   AGO       2005       
## 597                                       Angola   AGO       2006       
## 598                                       Angola   AGO       2007       
## 599                                       Angola   AGO       2008       
## 600                                       Angola   AGO       2009       
## 601                                       Angola   AGO       2010       
## 602                                       Angola   AGO       2011       
## 603                                       Angola   AGO       2012       
## 604                                       Angola   AGO       2013       
## 605                                       Angola   AGO       2014       
## 606                                       Angola   AGO       2015       
## 607                                       Angola   AGO       2016       
## 608                                       Angola   AGO       2017       
## 609                                       Angola   AGO       2018       
## 610                                       Angola   AGO       2019       
## 611                                       Angola   AGO       2020       
## 612                                       Angola    AO   AGO 1977       
## 613                                       Angola    AO   AGO 2012       
## 614                                       Angola    AO   AGO 1975       
## 615                                       Angola    AO   AGO 2005       
## 616                                       Angola    AO   AGO 1968       
## 617                                       Angola    AO   AGO 1966       
## 618                                       Angola    AO   AGO 2009       
## 619                                       Angola    AO   AGO 1973       
## 620                                       Angola    AO   AGO 1996       
## 621                                       Angola    AO   AGO 2014       
## 622                                       Angola    AO   AGO 1998       
## 623                                       Angola    AO   AGO 2011       
## 624                                       Angola    AO   AGO 1970       
## 625                                       Angola    AO   AGO 1976       
## 626                                       Angola    AO   AGO 1969       
## 627                                       Angola    AO   AGO 2021       
## 628                                       Angola    AO   AGO 2006       
## 629                                       Angola    AO   AGO 2019       
## 630                                       Angola    AO   AGO 1992       
## 631                                       Angola    AO   AGO 2008       
## 632                                       Angola    AO   AGO 2013       
## 633                                       Angola    AO   AGO 2015       
## 634                                       Angola    AO   AGO 1971       
## 635                                       Angola    AO   AGO 2010       
## 636                                       Angola    AO   AGO 1974       
## 637                                       Angola    AO   AGO 1961       
## 638                                       Angola    AO   AGO 2018       
## 639                                       Angola    AO   AGO 1995       
## 640                                       Angola    AO   AGO 2007       
## 641                                       Angola    AO   AGO 1983       
## 642                                       Angola    AO   AGO 2022       
## 643                                       Angola    AO   AGO 1967       
## 644                                       Angola    AO   AGO 1989       
## 645                                       Angola    AO   AGO 1997       
## 646                                       Angola    AO   AGO 2004       
## 647                                       Angola    AO   AGO 2001       
## 648                                       Angola    AO   AGO 2000       
## 649                                       Angola    AO   AGO 1972       
## 650                                       Angola    AO   AGO 1988       
## 651                                       Angola    AO   AGO 1987       
## 652                                       Angola    AO   AGO 1999       
## 653                                       Angola    AO   AGO 1982       
## 654                                       Angola    AO   AGO 1962       
## 655                                       Angola    AO   AGO 2017       
## 656                                       Angola    AO   AGO 1965       
## 657                                       Angola    AO   AGO 1991       
## 658                                       Angola    AO   AGO 1993       
## 659                                       Angola    AO   AGO 1990       
## 660                                       Angola    AO   AGO 1985       
## 661                                       Angola    AO   AGO 1986       
## 662                                       Angola    AO   AGO 1964       
## 663                                       Angola    AO   AGO 1963       
## 664                                       Angola    AO   AGO 1979       
## 665                                       Angola    AO   AGO 2002       
## 666                                       Angola    AO   AGO 2020       
## 667                                       Angola    AO   AGO 1984       
## 668                                       Angola    AO   AGO 1994       
## 669                                       Angola    AO   AGO 2003       
## 670                                       Angola    AO   AGO 1960       
## 671                                       Angola    AO   AGO 1981       
## 672                                       Angola    AO   AGO 1978       
## 673                                       Angola    AO   AGO 1980       
## 674                                       Angola    AO   AGO 2016       
## 675                          Antigua and Barbuda    AG   ATG 1990       
## 676                          Antigua and Barbuda    AG   ATG 2021       
## 677                          Antigua and Barbuda    AG   ATG 1977       
## 678                          Antigua and Barbuda    AG   ATG 1978       
## 679                          Antigua and Barbuda    AG   ATG 2011       
## 680                          Antigua and Barbuda    AG   ATG 1974       
## 681                          Antigua and Barbuda    AG   ATG 1966       
## 682                          Antigua and Barbuda    AG   ATG 2010       
## 683                          Antigua and Barbuda    AG   ATG 1976       
## 684                          Antigua and Barbuda    AG   ATG 1971       
## 685                          Antigua and Barbuda    AG   ATG 1964       
## 686                          Antigua and Barbuda    AG   ATG 2022       
## 687                          Antigua and Barbuda    AG   ATG 1967       
## 688                          Antigua and Barbuda    AG   ATG 1975       
## 689                          Antigua and Barbuda    AG   ATG 2014       
## 690                          Antigua and Barbuda    AG   ATG 1969       
## 691                          Antigua and Barbuda    AG   ATG 1980       
## 692                          Antigua and Barbuda    AG   ATG 1991       
## 693                          Antigua and Barbuda    AG   ATG 2009       
## 694                          Antigua and Barbuda    AG   ATG 2007       
## 695                          Antigua and Barbuda    AG   ATG 2006       
## 696                          Antigua and Barbuda    AG   ATG 1965       
## 697                          Antigua and Barbuda    AG   ATG 1982       
## 698                          Antigua and Barbuda    AG   ATG 1963       
## 699                          Antigua and Barbuda    AG   ATG 1960       
## 700                          Antigua and Barbuda    AG   ATG 2013       
## 701                          Antigua and Barbuda    AG   ATG 2020       
## 702                          Antigua and Barbuda    AG   ATG 1989       
## 703                          Antigua and Barbuda    AG   ATG 2005       
## 704                          Antigua and Barbuda    AG   ATG 2002       
## 705                          Antigua and Barbuda    AG   ATG 1998       
## 706                          Antigua and Barbuda    AG   ATG 1970       
## 707                          Antigua and Barbuda    AG   ATG 1985       
## 708                          Antigua and Barbuda    AG   ATG 1962       
## 709                          Antigua and Barbuda    AG   ATG 1961       
## 710                          Antigua and Barbuda    AG   ATG 1997       
## 711                          Antigua and Barbuda    AG   ATG 2015       
## 712                          Antigua and Barbuda    AG   ATG 2012       
## 713                          Antigua and Barbuda    AG   ATG 1979       
## 714                          Antigua and Barbuda    AG   ATG 2016       
## 715                          Antigua and Barbuda    AG   ATG 1973       
## 716                          Antigua and Barbuda    AG   ATG 1993       
## 717                          Antigua and Barbuda    AG   ATG 2001       
## 718                          Antigua and Barbuda    AG   ATG 1999       
## 719                          Antigua and Barbuda    AG   ATG 1996       
## 720                          Antigua and Barbuda    AG   ATG 1995       
## 721                          Antigua and Barbuda    AG   ATG 1984       
## 722                          Antigua and Barbuda    AG   ATG 1987       
## 723                          Antigua and Barbuda    AG   ATG 1988       
## 724                          Antigua and Barbuda    AG   ATG 1992       
## 725                          Antigua and Barbuda    AG   ATG 1981       
## 726                          Antigua and Barbuda    AG   ATG 2017       
## 727                          Antigua and Barbuda    AG   ATG 1972       
## 728                          Antigua and Barbuda    AG   ATG 2008       
## 729                          Antigua and Barbuda    AG   ATG 1994       
## 730                          Antigua and Barbuda    AG   ATG 2019       
## 731                          Antigua and Barbuda    AG   ATG 2000       
## 732                          Antigua and Barbuda    AG   ATG 2003       
## 733                          Antigua and Barbuda    AG   ATG 1986       
## 734                          Antigua and Barbuda    AG   ATG 1983       
## 735                          Antigua and Barbuda    AG   ATG 2018       
## 736                          Antigua and Barbuda    AG   ATG 2004       
## 737                          Antigua and Barbuda    AG   ATG 1968       
## 738                          Antigua and Barbuda   ATG       1987       
## 739                          Antigua and Barbuda   ATG       1988       
## 740                          Antigua and Barbuda   ATG       1989       
## 741                          Antigua and Barbuda   ATG       1990       
## 742                          Antigua and Barbuda   ATG       1991       
## 743                          Antigua and Barbuda   ATG       1992       
## 744                          Antigua and Barbuda   ATG       1993       
## 745                          Antigua and Barbuda   ATG       1994       
## 746                          Antigua and Barbuda   ATG       1995       
## 747                          Antigua and Barbuda   ATG       1996       
## 748                          Antigua and Barbuda   ATG       1997       
## 749                          Antigua and Barbuda   ATG       1998       
## 750                          Antigua and Barbuda   ATG       1999       
## 751                          Antigua and Barbuda   ATG       2000       
## 752                          Antigua and Barbuda   ATG       2001       
## 753                          Antigua and Barbuda   ATG       2002       
## 754                          Antigua and Barbuda   ATG       2003       
## 755                          Antigua and Barbuda   ATG       2004       
## 756                          Antigua and Barbuda   ATG       2005       
## 757                          Antigua and Barbuda   ATG       2006       
## 758                          Antigua and Barbuda   ATG       2007       
## 759                          Antigua and Barbuda   ATG       2008       
## 760                          Antigua and Barbuda   ATG       2009       
## 761                          Antigua and Barbuda   ATG       2010       
## 762                          Antigua and Barbuda   ATG       2011       
## 763                          Antigua and Barbuda   ATG       2012       
## 764                          Antigua and Barbuda   ATG       2013       
## 765                          Antigua and Barbuda   ATG       2014       
## 766                          Antigua and Barbuda   ATG       2015       
## 767                          Antigua and Barbuda   ATG       2016       
## 768                          Antigua and Barbuda   ATG       2017       
## 769                          Antigua and Barbuda   ATG       2018       
## 770                          Antigua and Barbuda   ATG       2019       
## 771                          Antigua and Barbuda   ATG       2020       
## 772                                   Arab World    1A   ARB 1974       
## 773                                   Arab World    1A   ARB 1971       
## 774                                   Arab World    1A   ARB 1977       
## 775                                   Arab World    1A   ARB 1980       
## 776                                   Arab World    1A   ARB 1985       
## 777                                   Arab World    1A   ARB 1973       
## 778                                   Arab World    1A   ARB 1972       
## 779                                   Arab World    1A   ARB 1979       
## 780                                   Arab World    1A   ARB 1960       
## 781                                   Arab World    1A   ARB 1976       
## 782                                   Arab World    1A   ARB 1996       
## 783                                   Arab World    1A   ARB 1982       
## 784                                   Arab World    1A   ARB 1978       
## 785                                   Arab World    1A   ARB 1986       
## 786                                   Arab World    1A   ARB 1975       
## 787                                   Arab World    1A   ARB 1994       
## 788                                   Arab World    1A   ARB 1995       
## 789                                   Arab World    1A   ARB 2007       
## 790                                   Arab World    1A   ARB 1963       
## 791                                   Arab World    1A   ARB 1969       
## 792                                   Arab World    1A   ARB 1991       
## 793                                   Arab World    1A   ARB 2022       
## 794                                   Arab World    1A   ARB 2002       
## 795                                   Arab World    1A   ARB 2004       
## 796                                   Arab World    1A   ARB 2001       
## 797                                   Arab World    1A   ARB 2005       
## 798                                   Arab World    1A   ARB 1984       
## 799                                   Arab World    1A   ARB 1970       
## 800                                   Arab World    1A   ARB 1999       
## 801                                   Arab World    1A   ARB 1997       
## 802                                   Arab World    1A   ARB 2019       
## 803                                   Arab World    1A   ARB 2009       
## 804                                   Arab World    1A   ARB 1992       
## 805                                   Arab World    1A   ARB 1993       
## 806                                   Arab World    1A   ARB 2014       
## 807                                   Arab World    1A   ARB 2020       
## 808                                   Arab World    1A   ARB 2003       
## 809                                   Arab World    1A   ARB 1961       
## 810                                   Arab World    1A   ARB 1990       
## 811                                   Arab World    1A   ARB 1967       
## 812                                   Arab World    1A   ARB 1981       
## 813                                   Arab World    1A   ARB 1987       
## 814                                   Arab World    1A   ARB 1964       
## 815                                   Arab World    1A   ARB 2021       
## 816                                   Arab World    1A   ARB 1968       
## 817                                   Arab World    1A   ARB 2015       
## 818                                   Arab World    1A   ARB 1962       
## 819                                   Arab World    1A   ARB 2016       
## 820                                   Arab World    1A   ARB 2010       
## 821                                   Arab World    1A   ARB 2000       
## 822                                   Arab World    1A   ARB 1998       
## 823                                   Arab World    1A   ARB 2008       
## 824                                   Arab World    1A   ARB 2012       
## 825                                   Arab World    1A   ARB 2006       
## 826                                   Arab World    1A   ARB 2011       
## 827                                   Arab World    1A   ARB 1988       
## 828                                   Arab World    1A   ARB 2017       
## 829                                   Arab World    1A   ARB 2013       
## 830                                   Arab World    1A   ARB 2018       
## 831                                   Arab World    1A   ARB 1965       
## 832                                   Arab World    1A   ARB 1989       
## 833                                   Arab World    1A   ARB 1983       
## 834                                   Arab World    1A   ARB 1966       
## 835                                    Argentina    AR   ARG 1984       
## 836                                    Argentina    AR   ARG 2007       
## 837                                    Argentina    AR   ARG 2019       
## 838                                    Argentina    AR   ARG 2017       
## 839                                    Argentina    AR   ARG 2020       
## 840                                    Argentina    AR   ARG 1999       
## 841                                    Argentina    AR   ARG 1997       
## 842                                    Argentina    AR   ARG 2008       
## 843                                    Argentina    AR   ARG 2018       
## 844                                    Argentina    AR   ARG 2016       
## 845                                    Argentina    AR   ARG 2002       
## 846                                    Argentina    AR   ARG 2001       
## 847                                    Argentina    AR   ARG 2006       
## 848                                    Argentina    AR   ARG 1993       
## 849                                    Argentina    AR   ARG 2014       
## 850                                    Argentina    AR   ARG 2013       
## 851                                    Argentina    AR   ARG 1969       
## 852                                    Argentina    AR   ARG 2010       
## 853                                    Argentina    AR   ARG 1994       
## 854                                    Argentina    AR   ARG 1992       
## 855                                    Argentina    AR   ARG 1985       
## 856                                    Argentina    AR   ARG 1983       
## 857                                    Argentina    AR   ARG 2000       
## 858                                    Argentina    AR   ARG 1998       
## 859                                    Argentina    AR   ARG 1960       
## 860                                    Argentina    AR   ARG 1971       
## 861                                    Argentina    AR   ARG 1965       
## 862                                    Argentina    AR   ARG 2011       
## 863                                    Argentina    AR   ARG 2012       
## 864                                    Argentina    AR   ARG 2015       
## 865                                    Argentina    AR   ARG 2021       
## 866                                    Argentina    AR   ARG 2009       
## 867                                    Argentina    AR   ARG 1995       
## 868                                    Argentina    AR   ARG 1996       
## 869                                    Argentina    AR   ARG 2005       
## 870                                    Argentina    AR   ARG 1981       
## 871                                    Argentina    AR   ARG 1970       
## 872                                    Argentina    AR   ARG 1976       
## 873                                    Argentina    AR   ARG 1990       
## 874                                    Argentina    AR   ARG 1968       
## 875                                    Argentina    AR   ARG 2022       
## 876                                    Argentina    AR   ARG 1962       
## 877                                    Argentina    AR   ARG 1991       
## 878                                    Argentina    AR   ARG 1972       
## 879                                    Argentina    AR   ARG 1974       
## 880                                    Argentina    AR   ARG 2004       
## 881                                    Argentina    AR   ARG 1979       
## 882                                    Argentina    AR   ARG 1977       
## 883                                    Argentina    AR   ARG 1975       
## 884                                    Argentina    AR   ARG 1961       
## 885                                    Argentina    AR   ARG 1963       
## 886                                    Argentina    AR   ARG 1982       
## 887                                    Argentina    AR   ARG 1988       
## 888                                    Argentina    AR   ARG 1964       
## 889                                    Argentina    AR   ARG 2003       
## 890                                    Argentina    AR   ARG 1967       
## 891                                    Argentina    AR   ARG 1973       
## 892                                    Argentina    AR   ARG 1987       
## 893                                    Argentina    AR   ARG 1980       
## 894                                    Argentina    AR   ARG 1978       
## 895                                    Argentina    AR   ARG 1966       
## 896                                    Argentina    AR   ARG 1989       
## 897                                    Argentina    AR   ARG 1986       
## 898                                    Argentina   ARG       1987       
## 899                                    Argentina   ARG       1988       
## 900                                    Argentina   ARG       1989       
## 901                                    Argentina   ARG       1990       
## 902                                    Argentina   ARG       1991       
## 903                                    Argentina   ARG       1992       
## 904                                    Argentina   ARG       1993       
## 905                                    Argentina   ARG       1994       
## 906                                    Argentina   ARG       1995       
## 907                                    Argentina   ARG       1996       
## 908                                    Argentina   ARG       1997       
## 909                                    Argentina   ARG       1998       
## 910                                    Argentina   ARG       1999       
## 911                                    Argentina   ARG       2000       
## 912                                    Argentina   ARG       2001       
## 913                                    Argentina   ARG       2002       
## 914                                    Argentina   ARG       2003       
## 915                                    Argentina   ARG       2004       
## 916                                    Argentina   ARG       2005       
## 917                                    Argentina   ARG       2006       
## 918                                    Argentina   ARG       2007       
## 919                                    Argentina   ARG       2008       
## 920                                    Argentina   ARG       2009       
## 921                                    Argentina   ARG       2010       
## 922                                    Argentina   ARG       2011       
## 923                                    Argentina   ARG       2012       
## 924                                    Argentina   ARG       2013       
## 925                                    Argentina   ARG       2014       
## 926                                    Argentina   ARG       2015       
## 927                                    Argentina   ARG       2016       
## 928                                    Argentina   ARG       2017       
## 929                                    Argentina   ARG       2018       
## 930                                    Argentina   ARG       2019       
## 931                                    Argentina   ARG       2020       
## 932                                      Armenia    AM   ARM 2018       
## 933                                      Armenia    AM   ARM 1982       
## 934                                      Armenia    AM   ARM 1975       
## 935                                      Armenia    AM   ARM 1974       
## 936                                      Armenia    AM   ARM 1998       
## 937                                      Armenia    AM   ARM 2016       
## 938                                      Armenia    AM   ARM 1962       
## 939                                      Armenia    AM   ARM 1968       
## 940                                      Armenia    AM   ARM 2013       
## 941                                      Armenia    AM   ARM 1980       
## 942                                      Armenia    AM   ARM 1978       
## 943                                      Armenia    AM   ARM 1971       
## 944                                      Armenia    AM   ARM 1969       
## 945                                      Armenia    AM   ARM 2019       
## 946                                      Armenia    AM   ARM 2010       
## 947                                      Armenia    AM   ARM 2014       
## 948                                      Armenia    AM   ARM 1972       
## 949                                      Armenia    AM   ARM 2012       
## 950                                      Armenia    AM   ARM 2000       
## 951                                      Armenia    AM   ARM 1973       
## 952                                      Armenia    AM   ARM 1977       
## 953                                      Armenia    AM   ARM 2008       
## 954                                      Armenia    AM   ARM 1970       
## 955                                      Armenia    AM   ARM 1997       
## 956                                      Armenia    AM   ARM 1963       
## 957                                      Armenia    AM   ARM 1965       
## 958                                      Armenia    AM   ARM 2021       
## 959                                      Armenia    AM   ARM 2011       
## 960                                      Armenia    AM   ARM 2007       
## 961                                      Armenia    AM   ARM 2005       
## 962                                      Armenia    AM   ARM 1966       
## 963                                      Armenia    AM   ARM 1994       
## 964                                      Armenia    AM   ARM 1979       
## 965                                      Armenia    AM   ARM 1967       
## 966                                      Armenia    AM   ARM 1981       
## 967                                      Armenia    AM   ARM 2017       
## 968                                      Armenia    AM   ARM 1960       
## 969                                      Armenia    AM   ARM 2020       
## 970                                      Armenia    AM   ARM 2022       
## 971                                      Armenia    AM   ARM 1985       
## 972                                      Armenia    AM   ARM 2006       
## 973                                      Armenia    AM   ARM 2001       
## 974                                      Armenia    AM   ARM 2009       
## 975                                      Armenia    AM   ARM 1995       
## 976                                      Armenia    AM   ARM 1989       
## 977                                      Armenia    AM   ARM 1999       
## 978                                      Armenia    AM   ARM 1976       
## 979                                      Armenia    AM   ARM 1961       
## 980                                      Armenia    AM   ARM 2004       
## 981                                      Armenia    AM   ARM 2015       
## 982                                      Armenia    AM   ARM 1986       
## 983                                      Armenia    AM   ARM 1996       
## 984                                      Armenia    AM   ARM 1991       
## 985                                      Armenia    AM   ARM 1984       
## 986                                      Armenia    AM   ARM 1993       
## 987                                      Armenia    AM   ARM 1964       
## 988                                      Armenia    AM   ARM 1983       
## 989                                      Armenia    AM   ARM 1990       
## 990                                      Armenia    AM   ARM 1988       
## 991                                      Armenia    AM   ARM 1992       
## 992                                      Armenia    AM   ARM 1987       
## 993                                      Armenia    AM   ARM 2002       
## 994                                      Armenia    AM   ARM 2003       
## 995                                      Armenia   ARM       1987       
## 996                                      Armenia   ARM       1988       
## 997                                      Armenia   ARM       1989       
## 998                                      Armenia   ARM       1990       
## 999                                      Armenia   ARM       1991       
## 1000                                     Armenia   ARM       1992       
## 1001                                     Armenia   ARM       1993       
## 1002                                     Armenia   ARM       1994       
## 1003                                     Armenia   ARM       1995       
## 1004                                     Armenia   ARM       1996       
## 1005                                     Armenia   ARM       1997       
## 1006                                     Armenia   ARM       1998       
## 1007                                     Armenia   ARM       1999       
## 1008                                     Armenia   ARM       2000       
## 1009                                     Armenia   ARM       2001       
## 1010                                     Armenia   ARM       2002       
## 1011                                     Armenia   ARM       2003       
## 1012                                     Armenia   ARM       2004       
## 1013                                     Armenia   ARM       2005       
## 1014                                     Armenia   ARM       2006       
## 1015                                     Armenia   ARM       2007       
## 1016                                     Armenia   ARM       2008       
## 1017                                     Armenia   ARM       2009       
## 1018                                     Armenia   ARM       2010       
## 1019                                     Armenia   ARM       2011       
## 1020                                     Armenia   ARM       2012       
## 1021                                     Armenia   ARM       2013       
## 1022                                     Armenia   ARM       2014       
## 1023                                     Armenia   ARM       2015       
## 1024                                     Armenia   ARM       2016       
## 1025                                     Armenia   ARM       2017       
## 1026                                     Armenia   ARM       2018       
## 1027                                     Armenia   ARM       2019       
## 1028                                     Armenia   ARM       2020       
## 1029                                       Aruba   ABW       1987       
## 1030                                       Aruba   ABW       1988       
## 1031                                       Aruba   ABW       1989       
## 1032                                       Aruba   ABW       1990       
## 1033                                       Aruba   ABW       1991       
## 1034                                       Aruba   ABW       1992       
## 1035                                       Aruba   ABW       1993       
## 1036                                       Aruba   ABW       1994       
## 1037                                       Aruba   ABW       1995       
## 1038                                       Aruba   ABW       1996       
## 1039                                       Aruba   ABW       1997       
## 1040                                       Aruba   ABW       1998       
## 1041                                       Aruba   ABW       1999       
## 1042                                       Aruba   ABW       2000       
## 1043                                       Aruba   ABW       2001       
## 1044                                       Aruba   ABW       2002       
## 1045                                       Aruba   ABW       2003       
## 1046                                       Aruba   ABW       2004       
## 1047                                       Aruba   ABW       2005       
## 1048                                       Aruba   ABW       2006       
## 1049                                       Aruba   ABW       2007       
## 1050                                       Aruba   ABW       2008       
## 1051                                       Aruba   ABW       2009       
## 1052                                       Aruba   ABW       2010       
## 1053                                       Aruba   ABW       2011       
## 1054                                       Aruba   ABW       2012       
## 1055                                       Aruba   ABW       2013       
## 1056                                       Aruba   ABW       2014       
## 1057                                       Aruba   ABW       2015       
## 1058                                       Aruba   ABW       2016       
## 1059                                       Aruba   ABW       2017       
## 1060                                       Aruba   ABW       2018       
## 1061                                       Aruba   ABW       2019       
## 1062                                       Aruba   ABW       2020       
## 1063                                       Aruba    AW   ABW 1972       
## 1064                                       Aruba    AW   ABW 1989       
## 1065                                       Aruba    AW   ABW 1974       
## 1066                                       Aruba    AW   ABW 1961       
## 1067                                       Aruba    AW   ABW 1960       
## 1068                                       Aruba    AW   ABW 1981       
## 1069                                       Aruba    AW   ABW 2011       
## 1070                                       Aruba    AW   ABW 2009       
## 1071                                       Aruba    AW   ABW 2007       
## 1072                                       Aruba    AW   ABW 1979       
## 1073                                       Aruba    AW   ABW 1973       
## 1074                                       Aruba    AW   ABW 1975       
## 1075                                       Aruba    AW   ABW 2000       
## 1076                                       Aruba    AW   ABW 2013       
## 1077                                       Aruba    AW   ABW 2006       
## 1078                                       Aruba    AW   ABW 2005       
## 1079                                       Aruba    AW   ABW 1964       
## 1080                                       Aruba    AW   ABW 2010       
## 1081                                       Aruba    AW   ABW 1980       
## 1082                                       Aruba    AW   ABW 2019       
## 1083                                       Aruba    AW   ABW 2017       
## 1084                                       Aruba    AW   ABW 1988       
## 1085                                       Aruba    AW   ABW 1993       
## 1086                                       Aruba    AW   ABW 1976       
## 1087                                       Aruba    AW   ABW 2004       
## 1088                                       Aruba    AW   ABW 1969       
## 1089                                       Aruba    AW   ABW 2008       
## 1090                                       Aruba    AW   ABW 2022       
## 1091                                       Aruba    AW   ABW 1992       
## 1092                                       Aruba    AW   ABW 1985       
## 1093                                       Aruba    AW   ABW 1990       
## 1094                                       Aruba    AW   ABW 2021       
## 1095                                       Aruba    AW   ABW 1982       
## 1096                                       Aruba    AW   ABW 1963       
## 1097                                       Aruba    AW   ABW 1971       
## 1098                                       Aruba    AW   ABW 1978       
## 1099                                       Aruba    AW   ABW 2003       
## 1100                                       Aruba    AW   ABW 2020       
## 1101                                       Aruba    AW   ABW 2018       
## 1102                                       Aruba    AW   ABW 1991       
## 1103                                       Aruba    AW   ABW 1984       
## 1104                                       Aruba    AW   ABW 1966       
## 1105                                       Aruba    AW   ABW 1999       
## 1106                                       Aruba    AW   ABW 1977       
## 1107                                       Aruba    AW   ABW 1965       
## 1108                                       Aruba    AW   ABW 1997       
## 1109                                       Aruba    AW   ABW 2014       
## 1110                                       Aruba    AW   ABW 1970       
## 1111                                       Aruba    AW   ABW 2015       
## 1112                                       Aruba    AW   ABW 1968       
## 1113                                       Aruba    AW   ABW 1983       
## 1114                                       Aruba    AW   ABW 1987       
## 1115                                       Aruba    AW   ABW 1998       
## 1116                                       Aruba    AW   ABW 2016       
## 1117                                       Aruba    AW   ABW 1995       
## 1118                                       Aruba    AW   ABW 1962       
## 1119                                       Aruba    AW   ABW 2002       
## 1120                                       Aruba    AW   ABW 2012       
## 1121                                       Aruba    AW   ABW 1986       
## 1122                                       Aruba    AW   ABW 1994       
## 1123                                       Aruba    AW   ABW 1996       
## 1124                                       Aruba    AW   ABW 2001       
## 1125                                       Aruba    AW   ABW 1967       
## 1126                                   Australia    AU   AUS 1970       
## 1127                                   Australia    AU   AUS 1969       
## 1128                                   Australia    AU   AUS 2006       
## 1129                                   Australia    AU   AUS 1968       
## 1130                                   Australia    AU   AUS 2000       
## 1131                                   Australia    AU   AUS 1967       
## 1132                                   Australia    AU   AUS 1965       
## 1133                                   Australia    AU   AUS 1966       
## 1134                                   Australia    AU   AUS 1993       
## 1135                                   Australia    AU   AUS 2004       
## 1136                                   Australia    AU   AUS 1975       
## 1137                                   Australia    AU   AUS 1974       
## 1138                                   Australia    AU   AUS 2009       
## 1139                                   Australia    AU   AUS 2005       
## 1140                                   Australia    AU   AUS 1972       
## 1141                                   Australia    AU   AUS 2014       
## 1142                                   Australia    AU   AUS 2010       
## 1143                                   Australia    AU   AUS 1964       
## 1144                                   Australia    AU   AUS 1999       
## 1145                                   Australia    AU   AUS 1990       
## 1146                                   Australia    AU   AUS 1992       
## 1147                                   Australia    AU   AUS 1996       
## 1148                                   Australia    AU   AUS 2007       
## 1149                                   Australia    AU   AUS 1997       
## 1150                                   Australia    AU   AUS 2015       
## 1151                                   Australia    AU   AUS 1982       
## 1152                                   Australia    AU   AUS 1962       
## 1153                                   Australia    AU   AUS 1998       
## 1154                                   Australia    AU   AUS 2002       
## 1155                                   Australia    AU   AUS 1989       
## 1156                                   Australia    AU   AUS 1988       
## 1157                                   Australia    AU   AUS 1963       
## 1158                                   Australia    AU   AUS 1961       
## 1159                                   Australia    AU   AUS 1995       
## 1160                                   Australia    AU   AUS 2022       
## 1161                                   Australia    AU   AUS 2008       
## 1162                                   Australia    AU   AUS 2020       
## 1163                                   Australia    AU   AUS 2018       
## 1164                                   Australia    AU   AUS 1986       
## 1165                                   Australia    AU   AUS 2011       
## 1166                                   Australia    AU   AUS 1979       
## 1167                                   Australia    AU   AUS 1994       
## 1168                                   Australia    AU   AUS 1976       
## 1169                                   Australia    AU   AUS 1984       
## 1170                                   Australia    AU   AUS 1987       
## 1171                                   Australia    AU   AUS 1960       
## 1172                                   Australia    AU   AUS 2013       
## 1173                                   Australia    AU   AUS 1977       
## 1174                                   Australia    AU   AUS 2021       
## 1175                                   Australia    AU   AUS 2019       
## 1176                                   Australia    AU   AUS 2001       
## 1177                                   Australia    AU   AUS 1991       
## 1178                                   Australia    AU   AUS 1985       
## 1179                                   Australia    AU   AUS 1983       
## 1180                                   Australia    AU   AUS 1971       
## 1181                                   Australia    AU   AUS 1980       
## 1182                                   Australia    AU   AUS 2016       
## 1183                                   Australia    AU   AUS 1978       
## 1184                                   Australia    AU   AUS 2012       
## 1185                                   Australia    AU   AUS 1973       
## 1186                                   Australia    AU   AUS 2017       
## 1187                                   Australia    AU   AUS 2003       
## 1188                                   Australia    AU   AUS 1981       
## 1189                                   Australia   AUS       1987       
## 1190                                   Australia   AUS       1988       
## 1191                                   Australia   AUS       1989       
## 1192                                   Australia   AUS       1990       
## 1193                                   Australia   AUS       1991       
## 1194                                   Australia   AUS       1992       
## 1195                                   Australia   AUS       1993       
## 1196                                   Australia   AUS       1994       
## 1197                                   Australia   AUS       1995       
## 1198                                   Australia   AUS       1996       
## 1199                                   Australia   AUS       1997       
## 1200                                   Australia   AUS       1998       
## 1201                                   Australia   AUS       1999       
## 1202                                   Australia   AUS       2000       
## 1203                                   Australia   AUS       2001       
## 1204                                   Australia   AUS       2002       
## 1205                                   Australia   AUS       2003       
## 1206                                   Australia   AUS       2004       
## 1207                                   Australia   AUS       2005       
## 1208                                   Australia   AUS       2006       
## 1209                                   Australia   AUS       2007       
## 1210                                   Australia   AUS       2008       
## 1211                                   Australia   AUS       2009       
## 1212                                   Australia   AUS       2010       
## 1213                                   Australia   AUS       2011       
## 1214                                   Australia   AUS       2012       
## 1215                                   Australia   AUS       2013       
## 1216                                   Australia   AUS       2014       
## 1217                                   Australia   AUS       2015       
## 1218                                   Australia   AUS       2016       
## 1219                                   Australia   AUS       2017       
## 1220                                   Australia   AUS       2018       
## 1221                                   Australia   AUS       2019       
## 1222                                   Australia   AUS       2020       
## 1223                                     Austria    AT   AUT 2011       
## 1224                                     Austria    AT   AUT 2007       
## 1225                                     Austria    AT   AUT 2016       
## 1226                                     Austria    AT   AUT 2020       
## 1227                                     Austria    AT   AUT 2017       
## 1228                                     Austria    AT   AUT 1992       
## 1229                                     Austria    AT   AUT 2015       
## 1230                                     Austria    AT   AUT 2012       
## 1231                                     Austria    AT   AUT 2019       
## 1232                                     Austria    AT   AUT 1994       
## 1233                                     Austria    AT   AUT 1989       
## 1234                                     Austria    AT   AUT 1997       
## 1235                                     Austria    AT   AUT 1975       
## 1236                                     Austria    AT   AUT 1979       
## 1237                                     Austria    AT   AUT 2006       
## 1238                                     Austria    AT   AUT 1990       
## 1239                                     Austria    AT   AUT 2002       
## 1240                                     Austria    AT   AUT 2018       
## 1241                                     Austria    AT   AUT 1995       
## 1242                                     Austria    AT   AUT 1976       
## 1243                                     Austria    AT   AUT 2005       
## 1244                                     Austria    AT   AUT 2014       
## 1245                                     Austria    AT   AUT 1977       
## 1246                                     Austria    AT   AUT 1981       
## 1247                                     Austria    AT   AUT 2003       
## 1248                                     Austria    AT   AUT 1974       
## 1249                                     Austria    AT   AUT 1991       
## 1250                                     Austria    AT   AUT 2022       
## 1251                                     Austria    AT   AUT 1962       
## 1252                                     Austria    AT   AUT 1996       
## 1253                                     Austria    AT   AUT 2013       
## 1254                                     Austria    AT   AUT 2001       
## 1255                                     Austria    AT   AUT 2004       
## 1256                                     Austria    AT   AUT 1973       
## 1257                                     Austria    AT   AUT 1963       
## 1258                                     Austria    AT   AUT 1993       
## 1259                                     Austria    AT   AUT 1999       
## 1260                                     Austria    AT   AUT 1978       
## 1261                                     Austria    AT   AUT 1988       
## 1262                                     Austria    AT   AUT 1964       
## 1263                                     Austria    AT   AUT 1961       
## 1264                                     Austria    AT   AUT 1980       
## 1265                                     Austria    AT   AUT 1971       
## 1266                                     Austria    AT   AUT 2021       
## 1267                                     Austria    AT   AUT 2010       
## 1268                                     Austria    AT   AUT 1965       
## 1269                                     Austria    AT   AUT 1960       
## 1270                                     Austria    AT   AUT 1987       
## 1271                                     Austria    AT   AUT 1982       
## 1272                                     Austria    AT   AUT 1972       
## 1273                                     Austria    AT   AUT 2000       
## 1274                                     Austria    AT   AUT 1984       
## 1275                                     Austria    AT   AUT 2009       
## 1276                                     Austria    AT   AUT 1968       
## 1277                                     Austria    AT   AUT 1986       
## 1278                                     Austria    AT   AUT 1966       
## 1279                                     Austria    AT   AUT 1985       
## 1280                                     Austria    AT   AUT 1970       
## 1281                                     Austria    AT   AUT 1998       
## 1282                                     Austria    AT   AUT 1967       
## 1283                                     Austria    AT   AUT 2008       
## 1284                                     Austria    AT   AUT 1983       
## 1285                                     Austria    AT   AUT 1969       
## 1286                                     Austria   AUT       1987       
## 1287                                     Austria   AUT       1988       
## 1288                                     Austria   AUT       1989       
## 1289                                     Austria   AUT       1990       
## 1290                                     Austria   AUT       1991       
## 1291                                     Austria   AUT       1992       
## 1292                                     Austria   AUT       1993       
## 1293                                     Austria   AUT       1994       
## 1294                                     Austria   AUT       1995       
## 1295                                     Austria   AUT       1996       
## 1296                                     Austria   AUT       1997       
## 1297                                     Austria   AUT       1998       
## 1298                                     Austria   AUT       1999       
## 1299                                     Austria   AUT       2000       
## 1300                                     Austria   AUT       2001       
## 1301                                     Austria   AUT       2002       
## 1302                                     Austria   AUT       2003       
## 1303                                     Austria   AUT       2004       
## 1304                                     Austria   AUT       2005       
## 1305                                     Austria   AUT       2006       
## 1306                                     Austria   AUT       2007       
## 1307                                     Austria   AUT       2008       
## 1308                                     Austria   AUT       2009       
## 1309                                     Austria   AUT       2010       
## 1310                                     Austria   AUT       2011       
## 1311                                     Austria   AUT       2012       
## 1312                                     Austria   AUT       2013       
## 1313                                     Austria   AUT       2014       
## 1314                                     Austria   AUT       2015       
## 1315                                     Austria   AUT       2016       
## 1316                                     Austria   AUT       2017       
## 1317                                     Austria   AUT       2018       
## 1318                                     Austria   AUT       2019       
## 1319                                     Austria   AUT       2020       
## 1320                                  Azerbaijan    AZ   AZE 2001       
## 1321                                  Azerbaijan    AZ   AZE 2000       
## 1322                                  Azerbaijan    AZ   AZE 2008       
## 1323                                  Azerbaijan    AZ   AZE 1994       
## 1324                                  Azerbaijan    AZ   AZE 1986       
## 1325                                  Azerbaijan    AZ   AZE 1987       
## 1326                                  Azerbaijan    AZ   AZE 2015       
## 1327                                  Azerbaijan    AZ   AZE 2004       
## 1328                                  Azerbaijan    AZ   AZE 2009       
## 1329                                  Azerbaijan    AZ   AZE 2012       
## 1330                                  Azerbaijan    AZ   AZE 1990       
## 1331                                  Azerbaijan    AZ   AZE 2006       
## 1332                                  Azerbaijan    AZ   AZE 2003       
## 1333                                  Azerbaijan    AZ   AZE 2005       
## 1334                                  Azerbaijan    AZ   AZE 1999       
## 1335                                  Azerbaijan    AZ   AZE 1991       
## 1336                                  Azerbaijan    AZ   AZE 2017       
## 1337                                  Azerbaijan    AZ   AZE 1988       
## 1338                                  Azerbaijan    AZ   AZE 1985       
## 1339                                  Azerbaijan    AZ   AZE 1998       
## 1340                                  Azerbaijan    AZ   AZE 2013       
## 1341                                  Azerbaijan    AZ   AZE 1964       
## 1342                                  Azerbaijan    AZ   AZE 2007       
## 1343                                  Azerbaijan    AZ   AZE 1989       
## 1344                                  Azerbaijan    AZ   AZE 1997       
## 1345                                  Azerbaijan    AZ   AZE 1995       
## 1346                                  Azerbaijan    AZ   AZE 1992       
## 1347                                  Azerbaijan    AZ   AZE 1960       
## 1348                                  Azerbaijan    AZ   AZE 2002       
## 1349                                  Azerbaijan    AZ   AZE 1968       
## 1350                                  Azerbaijan    AZ   AZE 1963       
## 1351                                  Azerbaijan    AZ   AZE 1983       
## 1352                                  Azerbaijan    AZ   AZE 1984       
## 1353                                  Azerbaijan    AZ   AZE 1966       
## 1354                                  Azerbaijan    AZ   AZE 1993       
## 1355                                  Azerbaijan    AZ   AZE 1982       
## 1356                                  Azerbaijan    AZ   AZE 1961       
## 1357                                  Azerbaijan    AZ   AZE 1974       
## 1358                                  Azerbaijan    AZ   AZE 1962       
## 1359                                  Azerbaijan    AZ   AZE 2020       
## 1360                                  Azerbaijan    AZ   AZE 1980       
## 1361                                  Azerbaijan    AZ   AZE 1973       
## 1362                                  Azerbaijan    AZ   AZE 1969       
## 1363                                  Azerbaijan    AZ   AZE 1967       
## 1364                                  Azerbaijan    AZ   AZE 1981       
## 1365                                  Azerbaijan    AZ   AZE 1979       
## 1366                                  Azerbaijan    AZ   AZE 2016       
## 1367                                  Azerbaijan    AZ   AZE 2014       
## 1368                                  Azerbaijan    AZ   AZE 2019       
## 1369                                  Azerbaijan    AZ   AZE 2021       
## 1370                                  Azerbaijan    AZ   AZE 1996       
## 1371                                  Azerbaijan    AZ   AZE 1976       
## 1372                                  Azerbaijan    AZ   AZE 1972       
## 1373                                  Azerbaijan    AZ   AZE 1965       
## 1374                                  Azerbaijan    AZ   AZE 2010       
## 1375                                  Azerbaijan    AZ   AZE 1975       
## 1376                                  Azerbaijan    AZ   AZE 1977       
## 1377                                  Azerbaijan    AZ   AZE 1971       
## 1378                                  Azerbaijan    AZ   AZE 2011       
## 1379                                  Azerbaijan    AZ   AZE 2022       
## 1380                                  Azerbaijan    AZ   AZE 1978       
## 1381                                  Azerbaijan    AZ   AZE 2018       
## 1382                                  Azerbaijan    AZ   AZE 1970       
## 1383                                  Azerbaijan   AZE       1987       
## 1384                                  Azerbaijan   AZE       1988       
## 1385                                  Azerbaijan   AZE       1989       
## 1386                                  Azerbaijan   AZE       1990       
## 1387                                  Azerbaijan   AZE       1991       
## 1388                                  Azerbaijan   AZE       1992       
## 1389                                  Azerbaijan   AZE       1993       
## 1390                                  Azerbaijan   AZE       1994       
## 1391                                  Azerbaijan   AZE       1995       
## 1392                                  Azerbaijan   AZE       1996       
## 1393                                  Azerbaijan   AZE       1997       
## 1394                                  Azerbaijan   AZE       1998       
## 1395                                  Azerbaijan   AZE       1999       
## 1396                                  Azerbaijan   AZE       2000       
## 1397                                  Azerbaijan   AZE       2001       
## 1398                                  Azerbaijan   AZE       2002       
## 1399                                  Azerbaijan   AZE       2003       
## 1400                                  Azerbaijan   AZE       2004       
## 1401                                  Azerbaijan   AZE       2005       
## 1402                                  Azerbaijan   AZE       2006       
## 1403                                  Azerbaijan   AZE       2007       
## 1404                                  Azerbaijan   AZE       2008       
## 1405                                  Azerbaijan   AZE       2009       
## 1406                                  Azerbaijan   AZE       2010       
## 1407                                  Azerbaijan   AZE       2011       
## 1408                                  Azerbaijan   AZE       2012       
## 1409                                  Azerbaijan   AZE       2013       
## 1410                                  Azerbaijan   AZE       2014       
## 1411                                  Azerbaijan   AZE       2015       
## 1412                                  Azerbaijan   AZE       2016       
## 1413                                  Azerbaijan   AZE       2017       
## 1414                                  Azerbaijan   AZE       2018       
## 1415                                  Azerbaijan   AZE       2019       
## 1416                                  Azerbaijan   AZE       2020       
## 1417                                 Bahamas The   BHS       1987       
## 1418                                 Bahamas The   BHS       1988       
## 1419                                 Bahamas The   BHS       1989       
## 1420                                 Bahamas The   BHS       1990       
## 1421                                 Bahamas The   BHS       1991       
## 1422                                 Bahamas The   BHS       1992       
## 1423                                 Bahamas The   BHS       1993       
## 1424                                 Bahamas The   BHS       1994       
## 1425                                 Bahamas The   BHS       1995       
## 1426                                 Bahamas The   BHS       1996       
## 1427                                 Bahamas The   BHS       1997       
## 1428                                 Bahamas The   BHS       1998       
## 1429                                 Bahamas The   BHS       1999       
## 1430                                 Bahamas The   BHS       2000       
## 1431                                 Bahamas The   BHS       2001       
## 1432                                 Bahamas The   BHS       2002       
## 1433                                 Bahamas The   BHS       2003       
## 1434                                 Bahamas The   BHS       2004       
## 1435                                 Bahamas The   BHS       2005       
## 1436                                 Bahamas The   BHS       2006       
## 1437                                 Bahamas The   BHS       2007       
## 1438                                 Bahamas The   BHS       2008       
## 1439                                 Bahamas The   BHS       2009       
## 1440                                 Bahamas The   BHS       2010       
## 1441                                 Bahamas The   BHS       2011       
## 1442                                 Bahamas The   BHS       2012       
## 1443                                 Bahamas The   BHS       2013       
## 1444                                 Bahamas The   BHS       2014       
## 1445                                 Bahamas The   BHS       2015       
## 1446                                 Bahamas The   BHS       2016       
## 1447                                 Bahamas The   BHS       2017       
## 1448                                 Bahamas The   BHS       2018       
## 1449                                 Bahamas The   BHS       2019       
## 1450                                 Bahamas The   BHS       2020       
## 1451                                Bahamas, The    BS   BHS 2006       
## 1452                                Bahamas, The    BS   BHS 2005       
## 1453                                Bahamas, The    BS   BHS 2002       
## 1454                                Bahamas, The    BS   BHS 2003       
## 1455                                Bahamas, The    BS   BHS 1985       
## 1456                                Bahamas, The    BS   BHS 1987       
## 1457                                Bahamas, The    BS   BHS 2001       
## 1458                                Bahamas, The    BS   BHS 1992       
## 1459                                Bahamas, The    BS   BHS 1990       
## 1460                                Bahamas, The    BS   BHS 1982       
## 1461                                Bahamas, The    BS   BHS 1984       
## 1462                                Bahamas, The    BS   BHS 1993       
## 1463                                Bahamas, The    BS   BHS 1997       
## 1464                                Bahamas, The    BS   BHS 1996       
## 1465                                Bahamas, The    BS   BHS 2007       
## 1466                                Bahamas, The    BS   BHS 2004       
## 1467                                Bahamas, The    BS   BHS 1969       
## 1468                                Bahamas, The    BS   BHS 1971       
## 1469                                Bahamas, The    BS   BHS 2000       
## 1470                                Bahamas, The    BS   BHS 1960       
## 1471                                Bahamas, The    BS   BHS 1991       
## 1472                                Bahamas, The    BS   BHS 1983       
## 1473                                Bahamas, The    BS   BHS 2012       
## 1474                                Bahamas, The    BS   BHS 1981       
## 1475                                Bahamas, The    BS   BHS 1994       
## 1476                                Bahamas, The    BS   BHS 1970       
## 1477                                Bahamas, The    BS   BHS 2022       
## 1478                                Bahamas, The    BS   BHS 1977       
## 1479                                Bahamas, The    BS   BHS 1976       
## 1480                                Bahamas, The    BS   BHS 1989       
## 1481                                Bahamas, The    BS   BHS 2013       
## 1482                                Bahamas, The    BS   BHS 2015       
## 1483                                Bahamas, The    BS   BHS 1986       
## 1484                                Bahamas, The    BS   BHS 1962       
## 1485                                Bahamas, The    BS   BHS 2021       
## 1486                                Bahamas, The    BS   BHS 1967       
## 1487                                Bahamas, The    BS   BHS 1979       
## 1488                                Bahamas, The    BS   BHS 1978       
## 1489                                Bahamas, The    BS   BHS 2017       
## 1490                                Bahamas, The    BS   BHS 1980       
## 1491                                Bahamas, The    BS   BHS 2019       
## 1492                                Bahamas, The    BS   BHS 1963       
## 1493                                Bahamas, The    BS   BHS 1961       
## 1494                                Bahamas, The    BS   BHS 1972       
## 1495                                Bahamas, The    BS   BHS 2014       
## 1496                                Bahamas, The    BS   BHS 2020       
## 1497                                Bahamas, The    BS   BHS 1968       
## 1498                                Bahamas, The    BS   BHS 1966       
## 1499                                Bahamas, The    BS   BHS 1999       
## 1500                                Bahamas, The    BS   BHS 2009       
## 1501                                Bahamas, The    BS   BHS 1995       
## 1502                                Bahamas, The    BS   BHS 1975       
## 1503                                Bahamas, The    BS   BHS 2016       
## 1504                                Bahamas, The    BS   BHS 2010       
## 1505                                Bahamas, The    BS   BHS 1988       
## 1506                                Bahamas, The    BS   BHS 2018       
## 1507                                Bahamas, The    BS   BHS 1964       
## 1508                                Bahamas, The    BS   BHS 1965       
## 1509                                Bahamas, The    BS   BHS 1998       
## 1510                                Bahamas, The    BS   BHS 2011       
## 1511                                Bahamas, The    BS   BHS 2008       
## 1512                                Bahamas, The    BS   BHS 1974       
## 1513                                Bahamas, The    BS   BHS 1973       
## 1514                                     Bahrain    BH   BHR 1994       
## 1515                                     Bahrain    BH   BHR 1972       
## 1516                                     Bahrain    BH   BHR 1988       
## 1517                                     Bahrain    BH   BHR 1993       
## 1518                                     Bahrain    BH   BHR 1968       
## 1519                                     Bahrain    BH   BHR 1974       
## 1520                                     Bahrain    BH   BHR 1971       
## 1521                                     Bahrain    BH   BHR 1991       
## 1522                                     Bahrain    BH   BHR 1987       
## 1523                                     Bahrain    BH   BHR 1973       
## 1524                                     Bahrain    BH   BHR 1992       
## 1525                                     Bahrain    BH   BHR 1977       
## 1526                                     Bahrain    BH   BHR 1999       
## 1527                                     Bahrain    BH   BHR 1963       
## 1528                                     Bahrain    BH   BHR 1969       
## 1529                                     Bahrain    BH   BHR 1985       
## 1530                                     Bahrain    BH   BHR 2007       
## 1531                                     Bahrain    BH   BHR 2008       
## 1532                                     Bahrain    BH   BHR 1998       
## 1533                                     Bahrain    BH   BHR 1970       
## 1534                                     Bahrain    BH   BHR 2019       
## 1535                                     Bahrain    BH   BHR 2012       
## 1536                                     Bahrain    BH   BHR 1962       
## 1537                                     Bahrain    BH   BHR 1961       
## 1538                                     Bahrain    BH   BHR 1989       
## 1539                                     Bahrain    BH   BHR 2018       
## 1540                                     Bahrain    BH   BHR 1964       
## 1541                                     Bahrain    BH   BHR 2004       
## 1542                                     Bahrain    BH   BHR 2022       
## 1543                                     Bahrain    BH   BHR 1995       
## 1544                                     Bahrain    BH   BHR 2003       
## 1545                                     Bahrain    BH   BHR 1965       
## 1546                                     Bahrain    BH   BHR 1986       
## 1547                                     Bahrain    BH   BHR 1984       
## 1548                                     Bahrain    BH   BHR 2009       
## 1549                                     Bahrain    BH   BHR 2001       
## 1550                                     Bahrain    BH   BHR 1960       
## 1551                                     Bahrain    BH   BHR 1990       
## 1552                                     Bahrain    BH   BHR 2010       
## 1553                                     Bahrain    BH   BHR 1983       
## 1554                                     Bahrain    BH   BHR 1997       
## 1555                                     Bahrain    BH   BHR 2020       
## 1556                                     Bahrain    BH   BHR 2021       
## 1557                                     Bahrain    BH   BHR 2006       
## 1558                                     Bahrain    BH   BHR 1966       
## 1559                                     Bahrain    BH   BHR 1978       
## 1560                                     Bahrain    BH   BHR 1976       
## 1561                                     Bahrain    BH   BHR 2014       
## 1562                                     Bahrain    BH   BHR 2000       
## 1563                                     Bahrain    BH   BHR 2005       
## 1564                                     Bahrain    BH   BHR 1975       
## 1565                                     Bahrain    BH   BHR 1982       
## 1566                                     Bahrain    BH   BHR 1967       
## 1567                                     Bahrain    BH   BHR 2015       
## 1568                                     Bahrain    BH   BHR 1981       
## 1569                                     Bahrain    BH   BHR 2017       
## 1570                                     Bahrain    BH   BHR 2002       
## 1571                                     Bahrain    BH   BHR 1996       
## 1572                                     Bahrain    BH   BHR 1979       
## 1573                                     Bahrain    BH   BHR 2011       
## 1574                                     Bahrain    BH   BHR 1980       
## 1575                                     Bahrain    BH   BHR 2013       
## 1576                                     Bahrain    BH   BHR 2016       
## 1577                                     Bahrain   BHR       1987       
## 1578                                     Bahrain   BHR       1988       
## 1579                                     Bahrain   BHR       1989       
## 1580                                     Bahrain   BHR       1990       
## 1581                                     Bahrain   BHR       1991       
## 1582                                     Bahrain   BHR       1992       
## 1583                                     Bahrain   BHR       1993       
## 1584                                     Bahrain   BHR       1994       
## 1585                                     Bahrain   BHR       1995       
## 1586                                     Bahrain   BHR       1996       
## 1587                                     Bahrain   BHR       1997       
## 1588                                     Bahrain   BHR       1998       
## 1589                                     Bahrain   BHR       1999       
## 1590                                     Bahrain   BHR       2000       
## 1591                                     Bahrain   BHR       2001       
## 1592                                     Bahrain   BHR       2002       
## 1593                                     Bahrain   BHR       2003       
## 1594                                     Bahrain   BHR       2004       
## 1595                                     Bahrain   BHR       2005       
## 1596                                     Bahrain   BHR       2006       
## 1597                                     Bahrain   BHR       2007       
## 1598                                     Bahrain   BHR       2008       
## 1599                                     Bahrain   BHR       2009       
## 1600                                     Bahrain   BHR       2010       
## 1601                                     Bahrain   BHR       2011       
## 1602                                     Bahrain   BHR       2012       
## 1603                                     Bahrain   BHR       2013       
## 1604                                     Bahrain   BHR       2014       
## 1605                                     Bahrain   BHR       2015       
## 1606                                     Bahrain   BHR       2016       
## 1607                                     Bahrain   BHR       2017       
## 1608                                     Bahrain   BHR       2018       
## 1609                                     Bahrain   BHR       2019       
## 1610                                     Bahrain   BHR       2020       
## 1611                                  Bangladesh    BD   BGD 1999       
## 1612                                  Bangladesh    BD   BGD 2007       
## 1613                                  Bangladesh    BD   BGD 2009       
## 1614                                  Bangladesh    BD   BGD 1967       
## 1615                                  Bangladesh    BD   BGD 2012       
## 1616                                  Bangladesh    BD   BGD 1975       
## 1617                                  Bangladesh    BD   BGD 1966       
## 1618                                  Bangladesh    BD   BGD 1995       
## 1619                                  Bangladesh    BD   BGD 2016       
## 1620                                  Bangladesh    BD   BGD 1997       
## 1621                                  Bangladesh    BD   BGD 2017       
## 1622                                  Bangladesh    BD   BGD 1970       
## 1623                                  Bangladesh    BD   BGD 1965       
## 1624                                  Bangladesh    BD   BGD 1968       
## 1625                                  Bangladesh    BD   BGD 2008       
## 1626                                  Bangladesh    BD   BGD 1971       
## 1627                                  Bangladesh    BD   BGD 2021       
## 1628                                  Bangladesh    BD   BGD 1976       
## 1629                                  Bangladesh    BD   BGD 1998       
## 1630                                  Bangladesh    BD   BGD 1996       
## 1631                                  Bangladesh    BD   BGD 1960       
## 1632                                  Bangladesh    BD   BGD 1964       
## 1633                                  Bangladesh    BD   BGD 1990       
## 1634                                  Bangladesh    BD   BGD 2011       
## 1635                                  Bangladesh    BD   BGD 1969       
## 1636                                  Bangladesh    BD   BGD 1963       
## 1637                                  Bangladesh    BD   BGD 2019       
## 1638                                  Bangladesh    BD   BGD 2020       
## 1639                                  Bangladesh    BD   BGD 2014       
## 1640                                  Bangladesh    BD   BGD 2004       
## 1641                                  Bangladesh    BD   BGD 1962       
## 1642                                  Bangladesh    BD   BGD 2010       
## 1643                                  Bangladesh    BD   BGD 2000       
## 1644                                  Bangladesh    BD   BGD 2013       
## 1645                                  Bangladesh    BD   BGD 1980       
## 1646                                  Bangladesh    BD   BGD 2022       
## 1647                                  Bangladesh    BD   BGD 2015       
## 1648                                  Bangladesh    BD   BGD 1972       
## 1649                                  Bangladesh    BD   BGD 1974       
## 1650                                  Bangladesh    BD   BGD 1988       
## 1651                                  Bangladesh    BD   BGD 1979       
## 1652                                  Bangladesh    BD   BGD 1994       
## 1653                                  Bangladesh    BD   BGD 1983       
## 1654                                  Bangladesh    BD   BGD 1993       
## 1655                                  Bangladesh    BD   BGD 1989       
## 1656                                  Bangladesh    BD   BGD 1973       
## 1657                                  Bangladesh    BD   BGD 1985       
## 1658                                  Bangladesh    BD   BGD 2002       
## 1659                                  Bangladesh    BD   BGD 1982       
## 1660                                  Bangladesh    BD   BGD 2001       
## 1661                                  Bangladesh    BD   BGD 1987       
## 1662                                  Bangladesh    BD   BGD 1961       
## 1663                                  Bangladesh    BD   BGD 2005       
## 1664                                  Bangladesh    BD   BGD 1991       
## 1665                                  Bangladesh    BD   BGD 1978       
## 1666                                  Bangladesh    BD   BGD 1984       
## 1667                                  Bangladesh    BD   BGD 1992       
## 1668                                  Bangladesh    BD   BGD 2006       
## 1669                                  Bangladesh    BD   BGD 1986       
## 1670                                  Bangladesh    BD   BGD 1977       
## 1671                                  Bangladesh    BD   BGD 2003       
## 1672                                  Bangladesh    BD   BGD 2018       
## 1673                                  Bangladesh    BD   BGD 1981       
## 1674                                  Bangladesh   BGD       1987       
## 1675                                  Bangladesh   BGD       1988       
## 1676                                  Bangladesh   BGD       1989       
## 1677                                  Bangladesh   BGD       1990       
## 1678                                  Bangladesh   BGD       1991       
## 1679                                  Bangladesh   BGD       1992       
## 1680                                  Bangladesh   BGD       1993       
## 1681                                  Bangladesh   BGD       1994       
## 1682                                  Bangladesh   BGD       1995       
## 1683                                  Bangladesh   BGD       1996       
## 1684                                  Bangladesh   BGD       1997       
## 1685                                  Bangladesh   BGD       1998       
## 1686                                  Bangladesh   BGD       1999       
## 1687                                  Bangladesh   BGD       2000       
## 1688                                  Bangladesh   BGD       2001       
## 1689                                  Bangladesh   BGD       2002       
## 1690                                  Bangladesh   BGD       2003       
## 1691                                  Bangladesh   BGD       2004       
## 1692                                  Bangladesh   BGD       2005       
## 1693                                  Bangladesh   BGD       2006       
## 1694                                  Bangladesh   BGD       2007       
## 1695                                  Bangladesh   BGD       2008       
## 1696                                  Bangladesh   BGD       2009       
## 1697                                  Bangladesh   BGD       2010       
## 1698                                  Bangladesh   BGD       2011       
## 1699                                  Bangladesh   BGD       2012       
## 1700                                  Bangladesh   BGD       2013       
## 1701                                  Bangladesh   BGD       2014       
## 1702                                  Bangladesh   BGD       2015       
## 1703                                  Bangladesh   BGD       2016       
## 1704                                  Bangladesh   BGD       2017       
## 1705                                  Bangladesh   BGD       2018       
## 1706                                  Bangladesh   BGD       2019       
## 1707                                  Bangladesh   BGD       2020       
## 1708                                    Barbados    BB   BRB 1974       
## 1709                                    Barbados    BB   BRB 1991       
## 1710                                    Barbados    BB   BRB 1975       
## 1711                                    Barbados    BB   BRB 2011       
## 1712                                    Barbados    BB   BRB 1990       
## 1713                                    Barbados    BB   BRB 2012       
## 1714                                    Barbados    BB   BRB 1968       
## 1715                                    Barbados    BB   BRB 1964       
## 1716                                    Barbados    BB   BRB 1967       
## 1717                                    Barbados    BB   BRB 1965       
## 1718                                    Barbados    BB   BRB 1994       
## 1719                                    Barbados    BB   BRB 2013       
## 1720                                    Barbados    BB   BRB 2008       
## 1721                                    Barbados    BB   BRB 1972       
## 1722                                    Barbados    BB   BRB 1971       
## 1723                                    Barbados    BB   BRB 1973       
## 1724                                    Barbados    BB   BRB 1962       
## 1725                                    Barbados    BB   BRB 1989       
## 1726                                    Barbados    BB   BRB 1985       
## 1727                                    Barbados    BB   BRB 2010       
## 1728                                    Barbados    BB   BRB 1988       
## 1729                                    Barbados    BB   BRB 1993       
## 1730                                    Barbados    BB   BRB 2009       
## 1731                                    Barbados    BB   BRB 2005       
## 1732                                    Barbados    BB   BRB 1970       
## 1733                                    Barbados    BB   BRB 1987       
## 1734                                    Barbados    BB   BRB 1963       
## 1735                                    Barbados    BB   BRB 1969       
## 1736                                    Barbados    BB   BRB 1986       
## 1737                                    Barbados    BB   BRB 1979       
## 1738                                    Barbados    BB   BRB 1983       
## 1739                                    Barbados    BB   BRB 1992       
## 1740                                    Barbados    BB   BRB 1960       
## 1741                                    Barbados    BB   BRB 1984       
## 1742                                    Barbados    BB   BRB 1981       
## 1743                                    Barbados    BB   BRB 1995       
## 1744                                    Barbados    BB   BRB 2002       
## 1745                                    Barbados    BB   BRB 2007       
## 1746                                    Barbados    BB   BRB 2018       
## 1747                                    Barbados    BB   BRB 1966       
## 1748                                    Barbados    BB   BRB 2022       
## 1749                                    Barbados    BB   BRB 2021       
## 1750                                    Barbados    BB   BRB 2004       
## 1751                                    Barbados    BB   BRB 1980       
## 1752                                    Barbados    BB   BRB 1961       
## 1753                                    Barbados    BB   BRB 2001       
## 1754                                    Barbados    BB   BRB 2006       
## 1755                                    Barbados    BB   BRB 1997       
## 1756                                    Barbados    BB   BRB 2003       
## 1757                                    Barbados    BB   BRB 1978       
## 1758                                    Barbados    BB   BRB 2019       
## 1759                                    Barbados    BB   BRB 2017       
## 1760                                    Barbados    BB   BRB 2016       
## 1761                                    Barbados    BB   BRB 1982       
## 1762                                    Barbados    BB   BRB 2000       
## 1763                                    Barbados    BB   BRB 1999       
## 1764                                    Barbados    BB   BRB 1977       
## 1765                                    Barbados    BB   BRB 2014       
## 1766                                    Barbados    BB   BRB 2015       
## 1767                                    Barbados    BB   BRB 1976       
## 1768                                    Barbados    BB   BRB 1996       
## 1769                                    Barbados    BB   BRB 2020       
## 1770                                    Barbados    BB   BRB 1998       
## 1771                                    Barbados   BRB       1987       
## 1772                                    Barbados   BRB       1988       
## 1773                                    Barbados   BRB       1989       
## 1774                                    Barbados   BRB       1990       
## 1775                                    Barbados   BRB       1991       
## 1776                                    Barbados   BRB       1992       
## 1777                                    Barbados   BRB       1993       
## 1778                                    Barbados   BRB       1994       
## 1779                                    Barbados   BRB       1995       
## 1780                                    Barbados   BRB       1996       
## 1781                                    Barbados   BRB       1997       
## 1782                                    Barbados   BRB       1998       
## 1783                                    Barbados   BRB       1999       
## 1784                                    Barbados   BRB       2000       
## 1785                                    Barbados   BRB       2001       
## 1786                                    Barbados   BRB       2002       
## 1787                                    Barbados   BRB       2003       
## 1788                                    Barbados   BRB       2004       
## 1789                                    Barbados   BRB       2005       
## 1790                                    Barbados   BRB       2006       
## 1791                                    Barbados   BRB       2007       
## 1792                                    Barbados   BRB       2008       
## 1793                                    Barbados   BRB       2009       
## 1794                                    Barbados   BRB       2010       
## 1795                                    Barbados   BRB       2011       
## 1796                                    Barbados   BRB       2012       
## 1797                                    Barbados   BRB       2013       
## 1798                                    Barbados   BRB       2014       
## 1799                                    Barbados   BRB       2015       
## 1800                                    Barbados   BRB       2016       
## 1801                                    Barbados   BRB       2017       
## 1802                                    Barbados   BRB       2018       
## 1803                                    Barbados   BRB       2019       
## 1804                                    Barbados   BRB       2020       
## 1805                                     Belarus   BLR       2006       
## 1806                                     Belarus   BLR       2007       
## 1807                                     Belarus   BLR       2008       
## 1808                                     Belarus   BLR       2009       
## 1809                                     Belarus   BLR       2010       
## 1810                                     Belarus   BLR       2011       
## 1811                                     Belarus   BLR       2012       
## 1812                                     Belarus   BLR       1987       
## 1813                                     Belarus   BLR       1988       
## 1814                                     Belarus   BLR       1989       
## 1815                                     Belarus   BLR       1990       
## 1816                                     Belarus   BLR       1991       
## 1817                                     Belarus   BLR       1992       
## 1818                                     Belarus   BLR       1993       
## 1819                                     Belarus   BLR       1994       
## 1820                                     Belarus   BLR       1995       
## 1821                                     Belarus   BLR       1996       
## 1822                                     Belarus   BLR       1997       
## 1823                                     Belarus   BLR       1998       
## 1824                                     Belarus   BLR       1999       
## 1825                                     Belarus   BLR       2000       
## 1826                                     Belarus   BLR       2001       
## 1827                                     Belarus   BLR       2002       
## 1828                                     Belarus   BLR       2003       
## 1829                                     Belarus   BLR       2004       
## 1830                                     Belarus   BLR       2005       
## 1831                                     Belarus   BLR       2013       
## 1832                                     Belarus   BLR       2014       
## 1833                                     Belarus   BLR       2015       
## 1834                                     Belarus   BLR       2016       
## 1835                                     Belarus   BLR       2017       
## 1836                                     Belarus   BLR       2018       
## 1837                                     Belarus   BLR       2019       
## 1838                                     Belarus   BLR       2020       
## 1839                                     Belarus    BY   BLR 1969       
## 1840                                     Belarus    BY   BLR 2000       
## 1841                                     Belarus    BY   BLR 1982       
## 1842                                     Belarus    BY   BLR 2005       
## 1843                                     Belarus    BY   BLR 1970       
## 1844                                     Belarus    BY   BLR 1996       
## 1845                                     Belarus    BY   BLR 2020       
## 1846                                     Belarus    BY   BLR 1999       
## 1847                                     Belarus    BY   BLR 2004       
## 1848                                     Belarus    BY   BLR 2012       
## 1849                                     Belarus    BY   BLR 2007       
## 1850                                     Belarus    BY   BLR 1984       
## 1851                                     Belarus    BY   BLR 2006       
## 1852                                     Belarus    BY   BLR 1998       
## 1853                                     Belarus    BY   BLR 1997       
## 1854                                     Belarus    BY   BLR 1977       
## 1855                                     Belarus    BY   BLR 1976       
## 1856                                     Belarus    BY   BLR 2008       
## 1857                                     Belarus    BY   BLR 1964       
## 1858                                     Belarus    BY   BLR 1983       
## 1859                                     Belarus    BY   BLR 1963       
## 1860                                     Belarus    BY   BLR 2013       
## 1861                                     Belarus    BY   BLR 2017       
## 1862                                     Belarus    BY   BLR 1985       
## 1863                                     Belarus    BY   BLR 1960       
## 1864                                     Belarus    BY   BLR 1995       
## 1865                                     Belarus    BY   BLR 2021       
## 1866                                     Belarus    BY   BLR 1971       
## 1867                                     Belarus    BY   BLR 1966       
## 1868                                     Belarus    BY   BLR 1972       
## 1869                                     Belarus    BY   BLR 2001       
## 1870                                     Belarus    BY   BLR 1965       
## 1871                                     Belarus    BY   BLR 1962       
## 1872                                     Belarus    BY   BLR 1981       
## 1873                                     Belarus    BY   BLR 2011       
## 1874                                     Belarus    BY   BLR 1968       
## 1875                                     Belarus    BY   BLR 1991       
## 1876                                     Belarus    BY   BLR 1987       
## 1877                                     Belarus    BY   BLR 2015       
## 1878                                     Belarus    BY   BLR 2022       
## 1879                                     Belarus    BY   BLR 2002       
## 1880                                     Belarus    BY   BLR 1986       
## 1881                                     Belarus    BY   BLR 2016       
## 1882                                     Belarus    BY   BLR 2014       
## 1883                                     Belarus    BY   BLR 1994       
## 1884                                     Belarus    BY   BLR 1980       
## 1885                                     Belarus    BY   BLR 2003       
## 1886                                     Belarus    BY   BLR 1993       
## 1887                                     Belarus    BY   BLR 1975       
## 1888                                     Belarus    BY   BLR 1992       
## 1889                                     Belarus    BY   BLR 1988       
## 1890                                     Belarus    BY   BLR 2018       
## 1891                                     Belarus    BY   BLR 1974       
## 1892                                     Belarus    BY   BLR 1961       
## 1893                                     Belarus    BY   BLR 1979       
## 1894                                     Belarus    BY   BLR 2019       
## 1895                                     Belarus    BY   BLR 2009       
## 1896                                     Belarus    BY   BLR 1990       
## 1897                                     Belarus    BY   BLR 1989       
## 1898                                     Belarus    BY   BLR 1978       
## 1899                                     Belarus    BY   BLR 1967       
## 1900                                     Belarus    BY   BLR 1973       
## 1901                                     Belarus    BY   BLR 2010       
## 1902                                     Belgium    BE   BEL 2022       
## 1903                                     Belgium    BE   BEL 2016       
## 1904                                     Belgium    BE   BEL 2020       
## 1905                                     Belgium    BE   BEL 2018       
## 1906                                     Belgium    BE   BEL 2021       
## 1907                                     Belgium    BE   BEL 1960       
## 1908                                     Belgium    BE   BEL 1969       
## 1909                                     Belgium    BE   BEL 2015       
## 1910                                     Belgium    BE   BEL 1967       
## 1911                                     Belgium    BE   BEL 2007       
## 1912                                     Belgium    BE   BEL 1962       
## 1913                                     Belgium    BE   BEL 2001       
## 1914                                     Belgium    BE   BEL 2014       
## 1915                                     Belgium    BE   BEL 1998       
## 1916                                     Belgium    BE   BEL 2011       
## 1917                                     Belgium    BE   BEL 1997       
## 1918                                     Belgium    BE   BEL 2019       
## 1919                                     Belgium    BE   BEL 1966       
## 1920                                     Belgium    BE   BEL 1964       
## 1921                                     Belgium    BE   BEL 1965       
## 1922                                     Belgium    BE   BEL 2009       
## 1923                                     Belgium    BE   BEL 2013       
## 1924                                     Belgium    BE   BEL 1968       
## 1925                                     Belgium    BE   BEL 2010       
## 1926                                     Belgium    BE   BEL 1970       
## 1927                                     Belgium    BE   BEL 1995       
## 1928                                     Belgium    BE   BEL 1996       
## 1929                                     Belgium    BE   BEL 1994       
## 1930                                     Belgium    BE   BEL 2017       
## 1931                                     Belgium    BE   BEL 1999       
## 1932                                     Belgium    BE   BEL 1961       
## 1933                                     Belgium    BE   BEL 1976       
## 1934                                     Belgium    BE   BEL 1982       
## 1935                                     Belgium    BE   BEL 2008       
## 1936                                     Belgium    BE   BEL 2006       
## 1937                                     Belgium    BE   BEL 2002       
## 1938                                     Belgium    BE   BEL 2000       
## 1939                                     Belgium    BE   BEL 1978       
## 1940                                     Belgium    BE   BEL 1984       
## 1941                                     Belgium    BE   BEL 1980       
## 1942                                     Belgium    BE   BEL 1971       
## 1943                                     Belgium    BE   BEL 1985       
## 1944                                     Belgium    BE   BEL 2012       
## 1945                                     Belgium    BE   BEL 1963       
## 1946                                     Belgium    BE   BEL 2005       
## 1947                                     Belgium    BE   BEL 1983       
## 1948                                     Belgium    BE   BEL 1986       
## 1949                                     Belgium    BE   BEL 1974       
## 1950                                     Belgium    BE   BEL 1972       
## 1951                                     Belgium    BE   BEL 2004       
## 1952                                     Belgium    BE   BEL 1988       
## 1953                                     Belgium    BE   BEL 1989       
## 1954                                     Belgium    BE   BEL 1975       
## 1955                                     Belgium    BE   BEL 1973       
## 1956                                     Belgium    BE   BEL 2003       
## 1957                                     Belgium    BE   BEL 1977       
## 1958                                     Belgium    BE   BEL 1979       
## 1959                                     Belgium    BE   BEL 1993       
## 1960                                     Belgium    BE   BEL 1991       
## 1961                                     Belgium    BE   BEL 1981       
## 1962                                     Belgium    BE   BEL 1992       
## 1963                                     Belgium    BE   BEL 1987       
## 1964                                     Belgium    BE   BEL 1990       
## 1965                                     Belgium   BEL       1987       
## 1966                                     Belgium   BEL       1988       
## 1967                                     Belgium   BEL       1989       
## 1968                                     Belgium   BEL       1990       
## 1969                                     Belgium   BEL       1991       
## 1970                                     Belgium   BEL       1992       
## 1971                                     Belgium   BEL       1993       
## 1972                                     Belgium   BEL       1994       
## 1973                                     Belgium   BEL       1995       
## 1974                                     Belgium   BEL       1996       
## 1975                                     Belgium   BEL       1997       
## 1976                                     Belgium   BEL       1998       
## 1977                                     Belgium   BEL       1999       
## 1978                                     Belgium   BEL       2000       
## 1979                                     Belgium   BEL       2001       
## 1980                                     Belgium   BEL       2002       
## 1981                                     Belgium   BEL       2003       
## 1982                                     Belgium   BEL       2004       
## 1983                                     Belgium   BEL       2005       
## 1984                                     Belgium   BEL       2006       
## 1985                                     Belgium   BEL       2007       
## 1986                                     Belgium   BEL       2008       
## 1987                                     Belgium   BEL       2009       
## 1988                                     Belgium   BEL       2010       
## 1989                                     Belgium   BEL       2011       
## 1990                                     Belgium   BEL       2012       
## 1991                                     Belgium   BEL       2013       
## 1992                                     Belgium   BEL       2014       
## 1993                                     Belgium   BEL       2015       
## 1994                                     Belgium   BEL       2016       
## 1995                                     Belgium   BEL       2017       
## 1996                                     Belgium   BEL       2018       
## 1997                                     Belgium   BEL       2019       
## 1998                                     Belgium   BEL       2020       
## 1999                                      Belize   BLZ       1987       
## 2000                                      Belize   BLZ       1988       
## 2001                                      Belize   BLZ       1989       
## 2002                                      Belize   BLZ       1990       
## 2003                                      Belize   BLZ       1991       
## 2004                                      Belize   BLZ       1992       
## 2005                                      Belize   BLZ       1993       
## 2006                                      Belize   BLZ       1994       
## 2007                                      Belize   BLZ       1995       
## 2008                                      Belize   BLZ       1996       
## 2009                                      Belize   BLZ       1997       
## 2010                                      Belize   BLZ       1998       
## 2011                                      Belize   BLZ       1999       
## 2012                                      Belize   BLZ       2000       
## 2013                                      Belize   BLZ       2001       
## 2014                                      Belize   BLZ       2002       
## 2015                                      Belize   BLZ       2003       
## 2016                                      Belize   BLZ       2004       
## 2017                                      Belize   BLZ       2005       
## 2018                                      Belize   BLZ       2006       
## 2019                                      Belize   BLZ       2007       
## 2020                                      Belize   BLZ       2008       
## 2021                                      Belize   BLZ       2009       
## 2022                                      Belize   BLZ       2010       
## 2023                                      Belize   BLZ       2011       
## 2024                                      Belize   BLZ       2012       
## 2025                                      Belize   BLZ       2013       
## 2026                                      Belize   BLZ       2014       
## 2027                                      Belize   BLZ       2015       
## 2028                                      Belize   BLZ       2016       
## 2029                                      Belize   BLZ       2017       
## 2030                                      Belize   BLZ       2018       
## 2031                                      Belize   BLZ       2019       
## 2032                                      Belize   BLZ       2020       
## 2033                                      Belize    BZ   BLZ 2022       
## 2034                                      Belize    BZ   BLZ 2007       
## 2035                                      Belize    BZ   BLZ 2001       
## 2036                                      Belize    BZ   BLZ 2019       
## 2037                                      Belize    BZ   BLZ 1998       
## 2038                                      Belize    BZ   BLZ 2000       
## 2039                                      Belize    BZ   BLZ 1962       
## 2040                                      Belize    BZ   BLZ 2003       
## 2041                                      Belize    BZ   BLZ 2004       
## 2042                                      Belize    BZ   BLZ 2002       
## 2043                                      Belize    BZ   BLZ 1976       
## 2044                                      Belize    BZ   BLZ 1995       
## 2045                                      Belize    BZ   BLZ 2021       
## 2046                                      Belize    BZ   BLZ 2020       
## 2047                                      Belize    BZ   BLZ 1997       
## 2048                                      Belize    BZ   BLZ 1961       
## 2049                                      Belize    BZ   BLZ 2017       
## 2050                                      Belize    BZ   BLZ 1999       
## 2051                                      Belize    BZ   BLZ 1975       
## 2052                                      Belize    BZ   BLZ 2012       
## 2053                                      Belize    BZ   BLZ 1996       
## 2054                                      Belize    BZ   BLZ 2015       
## 2055                                      Belize    BZ   BLZ 2010       
## 2056                                      Belize    BZ   BLZ 1963       
## 2057                                      Belize    BZ   BLZ 2016       
## 2058                                      Belize    BZ   BLZ 1964       
## 2059                                      Belize    BZ   BLZ 1972       
## 2060                                      Belize    BZ   BLZ 2008       
## 2061                                      Belize    BZ   BLZ 1965       
## 2062                                      Belize    BZ   BLZ 2018       
## 2063                                      Belize    BZ   BLZ 1974       
## 2064                                      Belize    BZ   BLZ 1973       
## 2065                                      Belize    BZ   BLZ 2009       
## 2066                                      Belize    BZ   BLZ 2013       
## 2067                                      Belize    BZ   BLZ 1960       
## 2068                                      Belize    BZ   BLZ 1988       
## 2069                                      Belize    BZ   BLZ 1968       
## 2070                                      Belize    BZ   BLZ 1967       
## 2071                                      Belize    BZ   BLZ 2011       
## 2072                                      Belize    BZ   BLZ 2014       
## 2073                                      Belize    BZ   BLZ 1986       
## 2074                                      Belize    BZ   BLZ 1985       
## 2075                                      Belize    BZ   BLZ 1969       
## 2076                                      Belize    BZ   BLZ 1966       
## 2077                                      Belize    BZ   BLZ 1971       
## 2078                                      Belize    BZ   BLZ 1970       
## 2079                                      Belize    BZ   BLZ 1994       
## 2080                                      Belize    BZ   BLZ 1989       
## 2081                                      Belize    BZ   BLZ 2006       
## 2082                                      Belize    BZ   BLZ 1987       
## 2083                                      Belize    BZ   BLZ 1983       
## 2084                                      Belize    BZ   BLZ 2005       
## 2085                                      Belize    BZ   BLZ 1990       
## 2086                                      Belize    BZ   BLZ 1977       
## 2087                                      Belize    BZ   BLZ 1993       
## 2088                                      Belize    BZ   BLZ 1978       
## 2089                                      Belize    BZ   BLZ 1982       
## 2090                                      Belize    BZ   BLZ 1981       
## 2091                                      Belize    BZ   BLZ 1984       
## 2092                                      Belize    BZ   BLZ 1992       
## 2093                                      Belize    BZ   BLZ 1979       
## 2094                                      Belize    BZ   BLZ 1991       
## 2095                                      Belize    BZ   BLZ 1980       
## 2096                                       Benin   BEN       1987       
## 2097                                       Benin   BEN       1988       
## 2098                                       Benin   BEN       1989       
## 2099                                       Benin   BEN       1990       
## 2100                                       Benin   BEN       1991       
## 2101                                       Benin   BEN       1992       
## 2102                                       Benin   BEN       1993       
## 2103                                       Benin   BEN       1994       
## 2104                                       Benin   BEN       1995       
## 2105                                       Benin   BEN       1996       
## 2106                                       Benin   BEN       1997       
## 2107                                       Benin   BEN       1998       
## 2108                                       Benin   BEN       1999       
## 2109                                       Benin   BEN       2000       
## 2110                                       Benin   BEN       2001       
## 2111                                       Benin   BEN       2002       
## 2112                                       Benin   BEN       2003       
## 2113                                       Benin   BEN       2004       
## 2114                                       Benin   BEN       2005       
## 2115                                       Benin   BEN       2006       
## 2116                                       Benin   BEN       2007       
## 2117                                       Benin   BEN       2008       
## 2118                                       Benin   BEN       2009       
## 2119                                       Benin   BEN       2010       
## 2120                                       Benin   BEN       2011       
## 2121                                       Benin   BEN       2012       
## 2122                                       Benin   BEN       2013       
## 2123                                       Benin   BEN       2014       
## 2124                                       Benin   BEN       2015       
## 2125                                       Benin   BEN       2016       
## 2126                                       Benin   BEN       2017       
## 2127                                       Benin   BEN       2018       
## 2128                                       Benin   BEN       2019       
## 2129                                       Benin   BEN       2020       
## 2130                                       Benin    BJ   BEN 1973       
## 2131                                       Benin    BJ   BEN 1990       
## 2132                                       Benin    BJ   BEN 2006       
## 2133                                       Benin    BJ   BEN 1987       
## 2134                                       Benin    BJ   BEN 1995       
## 2135                                       Benin    BJ   BEN 1974       
## 2136                                       Benin    BJ   BEN 1961       
## 2137                                       Benin    BJ   BEN 1971       
## 2138                                       Benin    BJ   BEN 1968       
## 2139                                       Benin    BJ   BEN 1986       
## 2140                                       Benin    BJ   BEN 2012       
## 2141                                       Benin    BJ   BEN 2013       
## 2142                                       Benin    BJ   BEN 1977       
## 2143                                       Benin    BJ   BEN 2009       
## 2144                                       Benin    BJ   BEN 1972       
## 2145                                       Benin    BJ   BEN 1988       
## 2146                                       Benin    BJ   BEN 2005       
## 2147                                       Benin    BJ   BEN 2003       
## 2148                                       Benin    BJ   BEN 1965       
## 2149                                       Benin    BJ   BEN 2007       
## 2150                                       Benin    BJ   BEN 1975       
## 2151                                       Benin    BJ   BEN 1963       
## 2152                                       Benin    BJ   BEN 2014       
## 2153                                       Benin    BJ   BEN 2008       
## 2154                                       Benin    BJ   BEN 2010       
## 2155                                       Benin    BJ   BEN 2022       
## 2156                                       Benin    BJ   BEN 2019       
## 2157                                       Benin    BJ   BEN 1994       
## 2158                                       Benin    BJ   BEN 1960       
## 2159                                       Benin    BJ   BEN 1996       
## 2160                                       Benin    BJ   BEN 1967       
## 2161                                       Benin    BJ   BEN 1976       
## 2162                                       Benin    BJ   BEN 2011       
## 2163                                       Benin    BJ   BEN 1970       
## 2164                                       Benin    BJ   BEN 2016       
## 2165                                       Benin    BJ   BEN 2017       
## 2166                                       Benin    BJ   BEN 2018       
## 2167                                       Benin    BJ   BEN 2015       
## 2168                                       Benin    BJ   BEN 1992       
## 2169                                       Benin    BJ   BEN 1966       
## 2170                                       Benin    BJ   BEN 1962       
## 2171                                       Benin    BJ   BEN 1985       
## 2172                                       Benin    BJ   BEN 1969       
## 2173                                       Benin    BJ   BEN 2021       
## 2174                                       Benin    BJ   BEN 1999       
## 2175                                       Benin    BJ   BEN 1964       
## 2176                                       Benin    BJ   BEN 2020       
## 2177                                       Benin    BJ   BEN 2004       
## 2178                                       Benin    BJ   BEN 1984       
## 2179                                       Benin    BJ   BEN 1998       
## 2180                                       Benin    BJ   BEN 1997       
## 2181                                       Benin    BJ   BEN 1978       
## 2182                                       Benin    BJ   BEN 1991       
## 2183                                       Benin    BJ   BEN 1989       
## 2184                                       Benin    BJ   BEN 1982       
## 2185                                       Benin    BJ   BEN 2001       
## 2186                                       Benin    BJ   BEN 1983       
## 2187                                       Benin    BJ   BEN 1979       
## 2188                                       Benin    BJ   BEN 2000       
## 2189                                       Benin    BJ   BEN 2002       
## 2190                                       Benin    BJ   BEN 1980       
## 2191                                       Benin    BJ   BEN 1993       
## 2192                                       Benin    BJ   BEN 1981       
## 2193                                     Bermuda    BM   BMU 2017       
## 2194                                     Bermuda    BM   BMU 2016       
## 2195                                     Bermuda    BM   BMU 1989       
## 2196                                     Bermuda    BM   BMU 2015       
## 2197                                     Bermuda    BM   BMU 2013       
## 2198                                     Bermuda    BM   BMU 1973       
## 2199                                     Bermuda    BM   BMU 1980       
## 2200                                     Bermuda    BM   BMU 1985       
## 2201                                     Bermuda    BM   BMU 1988       
## 2202                                     Bermuda    BM   BMU 1984       
## 2203                                     Bermuda    BM   BMU 1983       
## 2204                                     Bermuda    BM   BMU 1978       
## 2205                                     Bermuda    BM   BMU 1979       
## 2206                                     Bermuda    BM   BMU 1974       
## 2207                                     Bermuda    BM   BMU 1986       
## 2208                                     Bermuda    BM   BMU 2020       
## 2209                                     Bermuda    BM   BMU 1991       
## 2210                                     Bermuda    BM   BMU 2019       
## 2211                                     Bermuda    BM   BMU 2008       
## 2212                                     Bermuda    BM   BMU 1977       
## 2213                                     Bermuda    BM   BMU 1966       
## 2214                                     Bermuda    BM   BMU 1971       
## 2215                                     Bermuda    BM   BMU 2014       
## 2216                                     Bermuda    BM   BMU 1960       
## 2217                                     Bermuda    BM   BMU 1981       
## 2218                                     Bermuda    BM   BMU 1976       
## 2219                                     Bermuda    BM   BMU 2018       
## 2220                                     Bermuda    BM   BMU 1972       
## 2221                                     Bermuda    BM   BMU 2011       
## 2222                                     Bermuda    BM   BMU 2002       
## 2223                                     Bermuda    BM   BMU 1994       
## 2224                                     Bermuda    BM   BMU 1975       
## 2225                                     Bermuda    BM   BMU 1967       
## 2226                                     Bermuda    BM   BMU 1961       
## 2227                                     Bermuda    BM   BMU 2021       
## 2228                                     Bermuda    BM   BMU 1990       
## 2229                                     Bermuda    BM   BMU 2009       
## 2230                                     Bermuda    BM   BMU 1969       
## 2231                                     Bermuda    BM   BMU 2010       
## 2232                                     Bermuda    BM   BMU 2012       
## 2233                                     Bermuda    BM   BMU 1987       
## 2234                                     Bermuda    BM   BMU 1982       
## 2235                                     Bermuda    BM   BMU 2005       
## 2236                                     Bermuda    BM   BMU 2000       
## 2237                                     Bermuda    BM   BMU 1968       
## 2238                                     Bermuda    BM   BMU 1965       
## 2239                                     Bermuda    BM   BMU 1963       
## 2240                                     Bermuda    BM   BMU 1962       
## 2241                                     Bermuda    BM   BMU 1997       
## 2242                                     Bermuda    BM   BMU 1993       
## 2243                                     Bermuda    BM   BMU 2006       
## 2244                                     Bermuda    BM   BMU 2004       
## 2245                                     Bermuda    BM   BMU 1964       
## 2246                                     Bermuda    BM   BMU 2001       
## 2247                                     Bermuda    BM   BMU 1999       
## 2248                                     Bermuda    BM   BMU 1996       
## 2249                                     Bermuda    BM   BMU 1992       
## 2250                                     Bermuda    BM   BMU 2003       
## 2251                                     Bermuda    BM   BMU 1995       
## 2252                                     Bermuda    BM   BMU 2022       
## 2253                                     Bermuda    BM   BMU 1970       
## 2254                                     Bermuda    BM   BMU 1998       
## 2255                                     Bermuda    BM   BMU 2007       
## 2256                                     Bermuda   BMU       1987       
## 2257                                     Bermuda   BMU       1988       
## 2258                                     Bermuda   BMU       1989       
## 2259                                     Bermuda   BMU       1990       
## 2260                                     Bermuda   BMU       1991       
## 2261                                     Bermuda   BMU       1992       
## 2262                                     Bermuda   BMU       1993       
## 2263                                     Bermuda   BMU       1994       
## 2264                                     Bermuda   BMU       1995       
## 2265                                     Bermuda   BMU       1996       
## 2266                                     Bermuda   BMU       1997       
## 2267                                     Bermuda   BMU       1998       
## 2268                                     Bermuda   BMU       1999       
## 2269                                     Bermuda   BMU       2000       
## 2270                                     Bermuda   BMU       2001       
## 2271                                     Bermuda   BMU       2002       
## 2272                                     Bermuda   BMU       2003       
## 2273                                     Bermuda   BMU       2004       
## 2274                                     Bermuda   BMU       2005       
## 2275                                     Bermuda   BMU       2006       
## 2276                                     Bermuda   BMU       2007       
## 2277                                     Bermuda   BMU       2008       
## 2278                                     Bermuda   BMU       2009       
## 2279                                     Bermuda   BMU       2010       
## 2280                                     Bermuda   BMU       2011       
## 2281                                     Bermuda   BMU       2012       
## 2282                                     Bermuda   BMU       2013       
## 2283                                     Bermuda   BMU       2014       
## 2284                                     Bermuda   BMU       2015       
## 2285                                     Bermuda   BMU       2016       
## 2286                                     Bermuda   BMU       2017       
## 2287                                     Bermuda   BMU       2018       
## 2288                                     Bermuda   BMU       2019       
## 2289                                     Bermuda   BMU       2020       
## 2290                                      Bhutan    BT   BTN 2007       
## 2291                                      Bhutan    BT   BTN 2017       
## 2292                                      Bhutan    BT   BTN 2022       
## 2293                                      Bhutan    BT   BTN 2020       
## 2294                                      Bhutan    BT   BTN 2018       
## 2295                                      Bhutan    BT   BTN 2000       
## 2296                                      Bhutan    BT   BTN 2002       
## 2297                                      Bhutan    BT   BTN 2019       
## 2298                                      Bhutan    BT   BTN 2015       
## 2299                                      Bhutan    BT   BTN 2003       
## 2300                                      Bhutan    BT   BTN 2016       
## 2301                                      Bhutan    BT   BTN 2013       
## 2302                                      Bhutan    BT   BTN 2012       
## 2303                                      Bhutan    BT   BTN 1992       
## 2304                                      Bhutan    BT   BTN 1976       
## 2305                                      Bhutan    BT   BTN 1975       
## 2306                                      Bhutan    BT   BTN 1989       
## 2307                                      Bhutan    BT   BTN 2001       
## 2308                                      Bhutan    BT   BTN 2011       
## 2309                                      Bhutan    BT   BTN 2014       
## 2310                                      Bhutan    BT   BTN 2009       
## 2311                                      Bhutan    BT   BTN 2021       
## 2312                                      Bhutan    BT   BTN 2004       
## 2313                                      Bhutan    BT   BTN 1984       
## 2314                                      Bhutan    BT   BTN 1982       
## 2315                                      Bhutan    BT   BTN 2008       
## 2316                                      Bhutan    BT   BTN 1961       
## 2317                                      Bhutan    BT   BTN 2010       
## 2318                                      Bhutan    BT   BTN 1980       
## 2319                                      Bhutan    BT   BTN 1978       
## 2320                                      Bhutan    BT   BTN 2006       
## 2321                                      Bhutan    BT   BTN 2005       
## 2322                                      Bhutan    BT   BTN 1963       
## 2323                                      Bhutan    BT   BTN 1979       
## 2324                                      Bhutan    BT   BTN 1972       
## 2325                                      Bhutan    BT   BTN 1962       
## 2326                                      Bhutan    BT   BTN 1988       
## 2327                                      Bhutan    BT   BTN 1997       
## 2328                                      Bhutan    BT   BTN 1990       
## 2329                                      Bhutan    BT   BTN 1991       
## 2330                                      Bhutan    BT   BTN 1974       
## 2331                                      Bhutan    BT   BTN 1977       
## 2332                                      Bhutan    BT   BTN 1981       
## 2333                                      Bhutan    BT   BTN 1960       
## 2334                                      Bhutan    BT   BTN 1973       
## 2335                                      Bhutan    BT   BTN 1983       
## 2336                                      Bhutan    BT   BTN 1999       
## 2337                                      Bhutan    BT   BTN 1986       
## 2338                                      Bhutan    BT   BTN 1966       
## 2339                                      Bhutan    BT   BTN 1969       
## 2340                                      Bhutan    BT   BTN 1968       
## 2341                                      Bhutan    BT   BTN 1964       
## 2342                                      Bhutan    BT   BTN 1998       
## 2343                                      Bhutan    BT   BTN 1993       
## 2344                                      Bhutan    BT   BTN 1995       
## 2345                                      Bhutan    BT   BTN 1987       
## 2346                                      Bhutan    BT   BTN 1971       
## 2347                                      Bhutan    BT   BTN 1994       
## 2348                                      Bhutan    BT   BTN 1970       
## 2349                                      Bhutan    BT   BTN 1967       
## 2350                                      Bhutan    BT   BTN 1985       
## 2351                                      Bhutan    BT   BTN 1965       
## 2352                                      Bhutan    BT   BTN 1996       
## 2353                                      Bhutan   BTN       1987       
## 2354                                      Bhutan   BTN       1988       
## 2355                                      Bhutan   BTN       1989       
## 2356                                      Bhutan   BTN       1990       
## 2357                                      Bhutan   BTN       1991       
## 2358                                      Bhutan   BTN       1992       
## 2359                                      Bhutan   BTN       1993       
## 2360                                      Bhutan   BTN       1994       
## 2361                                      Bhutan   BTN       1995       
## 2362                                      Bhutan   BTN       1996       
## 2363                                      Bhutan   BTN       1997       
## 2364                                      Bhutan   BTN       1998       
## 2365                                      Bhutan   BTN       1999       
## 2366                                      Bhutan   BTN       2000       
## 2367                                      Bhutan   BTN       2001       
## 2368                                      Bhutan   BTN       2002       
## 2369                                      Bhutan   BTN       2003       
## 2370                                      Bhutan   BTN       2004       
## 2371                                      Bhutan   BTN       2005       
## 2372                                      Bhutan   BTN       2006       
## 2373                                      Bhutan   BTN       2007       
## 2374                                      Bhutan   BTN       2008       
## 2375                                      Bhutan   BTN       2009       
## 2376                                      Bhutan   BTN       2010       
## 2377                                      Bhutan   BTN       2011       
## 2378                                      Bhutan   BTN       2012       
## 2379                                      Bhutan   BTN       2013       
## 2380                                      Bhutan   BTN       2014       
## 2381                                      Bhutan   BTN       2015       
## 2382                                      Bhutan   BTN       2016       
## 2383                                      Bhutan   BTN       2017       
## 2384                                      Bhutan   BTN       2018       
## 2385                                      Bhutan   BTN       2019       
## 2386                                      Bhutan   BTN       2020       
## 2387                                     Bolivia    BO   BOL 2018       
## 2388                                     Bolivia    BO   BOL 1961       
## 2389                                     Bolivia    BO   BOL 1973       
## 2390                                     Bolivia    BO   BOL 2010       
## 2391                                     Bolivia    BO   BOL 1976       
## 2392                                     Bolivia    BO   BOL 2009       
## 2393                                     Bolivia    BO   BOL 2012       
## 2394                                     Bolivia    BO   BOL 1974       
## 2395                                     Bolivia    BO   BOL 1983       
## 2396                                     Bolivia    BO   BOL 2015       
## 2397                                     Bolivia    BO   BOL 2014       
## 2398                                     Bolivia    BO   BOL 1982       
## 2399                                     Bolivia    BO   BOL 1979       
## 2400                                     Bolivia    BO   BOL 2017       
## 2401                                     Bolivia    BO   BOL 2013       
## 2402                                     Bolivia    BO   BOL 1977       
## 2403                                     Bolivia    BO   BOL 1980       
## 2404                                     Bolivia    BO   BOL 1981       
## 2405                                     Bolivia    BO   BOL 2019       
## 2406                                     Bolivia    BO   BOL 1960       
## 2407                                     Bolivia    BO   BOL 1962       
## 2408                                     Bolivia    BO   BOL 1971       
## 2409                                     Bolivia    BO   BOL 1963       
## 2410                                     Bolivia    BO   BOL 1964       
## 2411                                     Bolivia    BO   BOL 2011       
## 2412                                     Bolivia    BO   BOL 1975       
## 2413                                     Bolivia    BO   BOL 2022       
## 2414                                     Bolivia    BO   BOL 2020       
## 2415                                     Bolivia    BO   BOL 1978       
## 2416                                     Bolivia    BO   BOL 1969       
## 2417                                     Bolivia    BO   BOL 1972       
## 2418                                     Bolivia    BO   BOL 1984       
## 2419                                     Bolivia    BO   BOL 1966       
## 2420                                     Bolivia    BO   BOL 2008       
## 2421                                     Bolivia    BO   BOL 1968       
## 2422                                     Bolivia    BO   BOL 1967       
## 2423                                     Bolivia    BO   BOL 1998       
## 2424                                     Bolivia    BO   BOL 1965       
## 2425                                     Bolivia    BO   BOL 2000       
## 2426                                     Bolivia    BO   BOL 2021       
## 2427                                     Bolivia    BO   BOL 1993       
## 2428                                     Bolivia    BO   BOL 2001       
## 2429                                     Bolivia    BO   BOL 2007       
## 2430                                     Bolivia    BO   BOL 2006       
## 2431                                     Bolivia    BO   BOL 2005       
## 2432                                     Bolivia    BO   BOL 2002       
## 2433                                     Bolivia    BO   BOL 2004       
## 2434                                     Bolivia    BO   BOL 2003       
## 2435                                     Bolivia    BO   BOL 1997       
## 2436                                     Bolivia    BO   BOL 1994       
## 2437                                     Bolivia    BO   BOL 2016       
## 2438                                     Bolivia    BO   BOL 1999       
## 2439                                     Bolivia    BO   BOL 1995       
## 2440                                     Bolivia    BO   BOL 1987       
## 2441                                     Bolivia    BO   BOL 1991       
## 2442                                     Bolivia    BO   BOL 1992       
## 2443                                     Bolivia    BO   BOL 1996       
## 2444                                     Bolivia    BO   BOL 1988       
## 2445                                     Bolivia    BO   BOL 1985       
## 2446                                     Bolivia    BO   BOL 1970       
## 2447                                     Bolivia    BO   BOL 1990       
## 2448                                     Bolivia    BO   BOL 1986       
## 2449                                     Bolivia    BO   BOL 1989       
## 2450                                     Bolivia   BOL       1987       
## 2451                                     Bolivia   BOL       1988       
## 2452                                     Bolivia   BOL       1989       
## 2453                                     Bolivia   BOL       1990       
## 2454                                     Bolivia   BOL       1991       
## 2455                                     Bolivia   BOL       1992       
## 2456                                     Bolivia   BOL       1993       
## 2457                                     Bolivia   BOL       1994       
## 2458                                     Bolivia   BOL       1995       
## 2459                                     Bolivia   BOL       1996       
## 2460                                     Bolivia   BOL       1997       
## 2461                                     Bolivia   BOL       1998       
## 2462                                     Bolivia   BOL       1999       
## 2463                                     Bolivia   BOL       2000       
## 2464                                     Bolivia   BOL       2001       
## 2465                                     Bolivia   BOL       2002       
## 2466                                     Bolivia   BOL       2003       
## 2467                                     Bolivia   BOL       2004       
## 2468                                     Bolivia   BOL       2005       
## 2469                                     Bolivia   BOL       2006       
## 2470                                     Bolivia   BOL       2007       
## 2471                                     Bolivia   BOL       2008       
## 2472                                     Bolivia   BOL       2009       
## 2473                                     Bolivia   BOL       2010       
## 2474                                     Bolivia   BOL       2011       
## 2475                                     Bolivia   BOL       2012       
## 2476                                     Bolivia   BOL       2013       
## 2477                                     Bolivia   BOL       2014       
## 2478                                     Bolivia   BOL       2015       
## 2479                                     Bolivia   BOL       2016       
## 2480                                     Bolivia   BOL       2017       
## 2481                                     Bolivia   BOL       2018       
## 2482                                     Bolivia   BOL       2019       
## 2483                                     Bolivia   BOL       2020       
## 2484                      Bosnia and Herzegovina    BA   BIH 1975       
## 2485                      Bosnia and Herzegovina    BA   BIH 2001       
## 2486                      Bosnia and Herzegovina    BA   BIH 2005       
## 2487                      Bosnia and Herzegovina    BA   BIH 1973       
## 2488                      Bosnia and Herzegovina    BA   BIH 1970       
## 2489                      Bosnia and Herzegovina    BA   BIH 1967       
## 2490                      Bosnia and Herzegovina    BA   BIH 1976       
## 2491                      Bosnia and Herzegovina    BA   BIH 2004       
## 2492                      Bosnia and Herzegovina    BA   BIH 1991       
## 2493                      Bosnia and Herzegovina    BA   BIH 1972       
## 2494                      Bosnia and Herzegovina    BA   BIH 1974       
## 2495                      Bosnia and Herzegovina    BA   BIH 1966       
## 2496                      Bosnia and Herzegovina    BA   BIH 1979       
## 2497                      Bosnia and Herzegovina    BA   BIH 2000       
## 2498                      Bosnia and Herzegovina    BA   BIH 1998       
## 2499                      Bosnia and Herzegovina    BA   BIH 1968       
## 2500                      Bosnia and Herzegovina    BA   BIH 1961       
## 2501                      Bosnia and Herzegovina    BA   BIH 1963       
## 2502                      Bosnia and Herzegovina    BA   BIH 1994       
## 2503                      Bosnia and Herzegovina    BA   BIH 1977       
## 2504                      Bosnia and Herzegovina    BA   BIH 1978       
## 2505                      Bosnia and Herzegovina    BA   BIH 1995       
## 2506                      Bosnia and Herzegovina    BA   BIH 1960       
## 2507                      Bosnia and Herzegovina    BA   BIH 1999       
## 2508                      Bosnia and Herzegovina    BA   BIH 1990       
## 2509                      Bosnia and Herzegovina    BA   BIH 1971       
## 2510                      Bosnia and Herzegovina    BA   BIH 2003       
## 2511                      Bosnia and Herzegovina    BA   BIH 1982       
## 2512                      Bosnia and Herzegovina    BA   BIH 1965       
## 2513                      Bosnia and Herzegovina    BA   BIH 1980       
## 2514                      Bosnia and Herzegovina    BA   BIH 1992       
## 2515                      Bosnia and Herzegovina    BA   BIH 1964       
## 2516                      Bosnia and Herzegovina    BA   BIH 1996       
## 2517                      Bosnia and Herzegovina    BA   BIH 1962       
## 2518                      Bosnia and Herzegovina    BA   BIH 1969       
## 2519                      Bosnia and Herzegovina    BA   BIH 1997       
## 2520                      Bosnia and Herzegovina    BA   BIH 2020       
## 2521                      Bosnia and Herzegovina    BA   BIH 1985       
## 2522                      Bosnia and Herzegovina    BA   BIH 1983       
## 2523                      Bosnia and Herzegovina    BA   BIH 2002       
## 2524                      Bosnia and Herzegovina    BA   BIH 2012       
## 2525                      Bosnia and Herzegovina    BA   BIH 1988       
## 2526                      Bosnia and Herzegovina    BA   BIH 1987       
## 2527                      Bosnia and Herzegovina    BA   BIH 2022       
## 2528                      Bosnia and Herzegovina    BA   BIH 2006       
## 2529                      Bosnia and Herzegovina    BA   BIH 2010       
## 2530                      Bosnia and Herzegovina    BA   BIH 1981       
## 2531                      Bosnia and Herzegovina    BA   BIH 2011       
## 2532                      Bosnia and Herzegovina    BA   BIH 1986       
## 2533                      Bosnia and Herzegovina    BA   BIH 1993       
## 2534                      Bosnia and Herzegovina    BA   BIH 2021       
## 2535                      Bosnia and Herzegovina    BA   BIH 1984       
## 2536                      Bosnia and Herzegovina    BA   BIH 2017       
## 2537                      Bosnia and Herzegovina    BA   BIH 2015       
## 2538                      Bosnia and Herzegovina    BA   BIH 2018       
## 2539                      Bosnia and Herzegovina    BA   BIH 2014       
## 2540                      Bosnia and Herzegovina    BA   BIH 2009       
## 2541                      Bosnia and Herzegovina    BA   BIH 2008       
## 2542                      Bosnia and Herzegovina    BA   BIH 2016       
## 2543                      Bosnia and Herzegovina    BA   BIH 1989       
## 2544                      Bosnia and Herzegovina    BA   BIH 2013       
## 2545                      Bosnia and Herzegovina    BA   BIH 2007       
## 2546                      Bosnia and Herzegovina    BA   BIH 2019       
## 2547                      Bosnia and Herzegovina   BIH       1987       
## 2548                      Bosnia and Herzegovina   BIH       1988       
## 2549                      Bosnia and Herzegovina   BIH       1989       
## 2550                      Bosnia and Herzegovina   BIH       1990       
## 2551                      Bosnia and Herzegovina   BIH       1991       
## 2552                      Bosnia and Herzegovina   BIH       1992       
## 2553                      Bosnia and Herzegovina   BIH       1993       
## 2554                      Bosnia and Herzegovina   BIH       1994       
## 2555                      Bosnia and Herzegovina   BIH       1995       
## 2556                      Bosnia and Herzegovina   BIH       1996       
## 2557                      Bosnia and Herzegovina   BIH       1997       
## 2558                      Bosnia and Herzegovina   BIH       1998       
## 2559                      Bosnia and Herzegovina   BIH       1999       
## 2560                      Bosnia and Herzegovina   BIH       2000       
## 2561                      Bosnia and Herzegovina   BIH       2001       
## 2562                      Bosnia and Herzegovina   BIH       2002       
## 2563                      Bosnia and Herzegovina   BIH       2003       
## 2564                      Bosnia and Herzegovina   BIH       2004       
## 2565                      Bosnia and Herzegovina   BIH       2005       
## 2566                      Bosnia and Herzegovina   BIH       2006       
## 2567                      Bosnia and Herzegovina   BIH       2007       
## 2568                      Bosnia and Herzegovina   BIH       2008       
## 2569                      Bosnia and Herzegovina   BIH       2009       
## 2570                      Bosnia and Herzegovina   BIH       2010       
## 2571                      Bosnia and Herzegovina   BIH       2011       
## 2572                      Bosnia and Herzegovina   BIH       2012       
## 2573                      Bosnia and Herzegovina   BIH       2013       
## 2574                      Bosnia and Herzegovina   BIH       2014       
## 2575                      Bosnia and Herzegovina   BIH       2015       
## 2576                      Bosnia and Herzegovina   BIH       2016       
## 2577                      Bosnia and Herzegovina   BIH       2017       
## 2578                      Bosnia and Herzegovina   BIH       2018       
## 2579                      Bosnia and Herzegovina   BIH       2019       
## 2580                      Bosnia and Herzegovina   BIH       2020       
## 2581                                    Botswana    BW   BWA 1992       
## 2582                                    Botswana    BW   BWA 1967       
## 2583                                    Botswana    BW   BWA 1984       
## 2584                                    Botswana    BW   BWA 1966       
## 2585                                    Botswana    BW   BWA 1995       
## 2586                                    Botswana    BW   BWA 1970       
## 2587                                    Botswana    BW   BWA 1969       
## 2588                                    Botswana    BW   BWA 1987       
## 2589                                    Botswana    BW   BWA 2013       
## 2590                                    Botswana    BW   BWA 2010       
## 2591                                    Botswana    BW   BWA 1991       
## 2592                                    Botswana    BW   BWA 1997       
## 2593                                    Botswana    BW   BWA 1983       
## 2594                                    Botswana    BW   BWA 2015       
## 2595                                    Botswana    BW   BWA 1999       
## 2596                                    Botswana    BW   BWA 1988       
## 2597                                    Botswana    BW   BWA 1986       
## 2598                                    Botswana    BW   BWA 1965       
## 2599                                    Botswana    BW   BWA 1996       
## 2600                                    Botswana    BW   BWA 2018       
## 2601                                    Botswana    BW   BWA 1990       
## 2602                                    Botswana    BW   BWA 2000       
## 2603                                    Botswana    BW   BWA 2012       
## 2604                                    Botswana    BW   BWA 1982       
## 2605                                    Botswana    BW   BWA 2009       
## 2606                                    Botswana    BW   BWA 1962       
## 2607                                    Botswana    BW   BWA 2014       
## 2608                                    Botswana    BW   BWA 2011       
## 2609                                    Botswana    BW   BWA 1964       
## 2610                                    Botswana    BW   BWA 1998       
## 2611                                    Botswana    BW   BWA 2008       
## 2612                                    Botswana    BW   BWA 1985       
## 2613                                    Botswana    BW   BWA 2005       
## 2614                                    Botswana    BW   BWA 1971       
## 2615                                    Botswana    BW   BWA 1961       
## 2616                                    Botswana    BW   BWA 1963       
## 2617                                    Botswana    BW   BWA 1989       
## 2618                                    Botswana    BW   BWA 1960       
## 2619                                    Botswana    BW   BWA 2006       
## 2620                                    Botswana    BW   BWA 2019       
## 2621                                    Botswana    BW   BWA 1968       
## 2622                                    Botswana    BW   BWA 2017       
## 2623                                    Botswana    BW   BWA 1981       
## 2624                                    Botswana    BW   BWA 2004       
## 2625                                    Botswana    BW   BWA 1974       
## 2626                                    Botswana    BW   BWA 2016       
## 2627                                    Botswana    BW   BWA 2001       
## 2628                                    Botswana    BW   BWA 1976       
## 2629                                    Botswana    BW   BWA 1993       
## 2630                                    Botswana    BW   BWA 1994       
## 2631                                    Botswana    BW   BWA 1979       
## 2632                                    Botswana    BW   BWA 2002       
## 2633                                    Botswana    BW   BWA 1972       
## 2634                                    Botswana    BW   BWA 2022       
## 2635                                    Botswana    BW   BWA 1977       
## 2636                                    Botswana    BW   BWA 1978       
## 2637                                    Botswana    BW   BWA 1973       
## 2638                                    Botswana    BW   BWA 1980       
## 2639                                    Botswana    BW   BWA 2003       
## 2640                                    Botswana    BW   BWA 2007       
## 2641                                    Botswana    BW   BWA 1975       
## 2642                                    Botswana    BW   BWA 2021       
## 2643                                    Botswana    BW   BWA 2020       
## 2644                                    Botswana   BWA       1987       
## 2645                                    Botswana   BWA       1988       
## 2646                                    Botswana   BWA       1989       
## 2647                                    Botswana   BWA       1990       
## 2648                                    Botswana   BWA       1991       
## 2649                                    Botswana   BWA       1992       
## 2650                                    Botswana   BWA       1993       
## 2651                                    Botswana   BWA       1994       
## 2652                                    Botswana   BWA       1995       
## 2653                                    Botswana   BWA       1996       
## 2654                                    Botswana   BWA       1997       
## 2655                                    Botswana   BWA       1998       
## 2656                                    Botswana   BWA       1999       
## 2657                                    Botswana   BWA       2000       
## 2658                                    Botswana   BWA       2001       
## 2659                                    Botswana   BWA       2002       
## 2660                                    Botswana   BWA       2003       
## 2661                                    Botswana   BWA       2004       
## 2662                                    Botswana   BWA       2005       
## 2663                                    Botswana   BWA       2006       
## 2664                                    Botswana   BWA       2007       
## 2665                                    Botswana   BWA       2008       
## 2666                                    Botswana   BWA       2009       
## 2667                                    Botswana   BWA       2010       
## 2668                                    Botswana   BWA       2011       
## 2669                                    Botswana   BWA       2012       
## 2670                                    Botswana   BWA       2013       
## 2671                                    Botswana   BWA       2014       
## 2672                                    Botswana   BWA       2015       
## 2673                                    Botswana   BWA       2016       
## 2674                                    Botswana   BWA       2017       
## 2675                                    Botswana   BWA       2018       
## 2676                                    Botswana   BWA       2019       
## 2677                                    Botswana   BWA       2020       
## 2678                                      Brazil    BR   BRA 1971       
## 2679                                      Brazil    BR   BRA 1969       
## 2680                                      Brazil    BR   BRA 1968       
## 2681                                      Brazil    BR   BRA 1992       
## 2682                                      Brazil    BR   BRA 1988       
## 2683                                      Brazil    BR   BRA 2002       
## 2684                                      Brazil    BR   BRA 1978       
## 2685                                      Brazil    BR   BRA 2006       
## 2686                                      Brazil    BR   BRA 1973       
## 2687                                      Brazil    BR   BRA 2020       
## 2688                                      Brazil    BR   BRA 2019       
## 2689                                      Brazil    BR   BRA 2001       
## 2690                                      Brazil    BR   BRA 2015       
## 2691                                      Brazil    BR   BRA 1993       
## 2692                                      Brazil    BR   BRA 1972       
## 2693                                      Brazil    BR   BRA 1974       
## 2694                                      Brazil    BR   BRA 2013       
## 2695                                      Brazil    BR   BRA 2009       
## 2696                                      Brazil    BR   BRA 2012       
## 2697                                      Brazil    BR   BRA 1991       
## 2698                                      Brazil    BR   BRA 2021       
## 2699                                      Brazil    BR   BRA 1975       
## 2700                                      Brazil    BR   BRA 2000       
## 2701                                      Brazil    BR   BRA 1960       
## 2702                                      Brazil    BR   BRA 1966       
## 2703                                      Brazil    BR   BRA 1989       
## 2704                                      Brazil    BR   BRA 1964       
## 2705                                      Brazil    BR   BRA 2010       
## 2706                                      Brazil    BR   BRA 1980       
## 2707                                      Brazil    BR   BRA 2011       
## 2708                                      Brazil    BR   BRA 1998       
## 2709                                      Brazil    BR   BRA 1999       
## 2710                                      Brazil    BR   BRA 1994       
## 2711                                      Brazil    BR   BRA 1987       
## 2712                                      Brazil    BR   BRA 2022       
## 2713                                      Brazil    BR   BRA 2014       
## 2714                                      Brazil    BR   BRA 1979       
## 2715                                      Brazil    BR   BRA 1962       
## 2716                                      Brazil    BR   BRA 2008       
## 2717                                      Brazil    BR   BRA 1977       
## 2718                                      Brazil    BR   BRA 2004       
## 2719                                      Brazil    BR   BRA 1961       
## 2720                                      Brazil    BR   BRA 1986       
## 2721                                      Brazil    BR   BRA 1976       
## 2722                                      Brazil    BR   BRA 1982       
## 2723                                      Brazil    BR   BRA 1997       
## 2724                                      Brazil    BR   BRA 1995       
## 2725                                      Brazil    BR   BRA 1990       
## 2726                                      Brazil    BR   BRA 2018       
## 2727                                      Brazil    BR   BRA 2003       
## 2728                                      Brazil    BR   BRA 2007       
## 2729                                      Brazil    BR   BRA 1965       
## 2730                                      Brazil    BR   BRA 1967       
## 2731                                      Brazil    BR   BRA 2016       
## 2732                                      Brazil    BR   BRA 2005       
## 2733                                      Brazil    BR   BRA 1985       
## 2734                                      Brazil    BR   BRA 1983       
## 2735                                      Brazil    BR   BRA 1981       
## 2736                                      Brazil    BR   BRA 1984       
## 2737                                      Brazil    BR   BRA 1996       
## 2738                                      Brazil    BR   BRA 1970       
## 2739                                      Brazil    BR   BRA 1963       
## 2740                                      Brazil    BR   BRA 2017       
## 2741                                      Brazil   BRA       2003       
## 2742                                      Brazil   BRA       2004       
## 2743                                      Brazil   BRA       2005       
## 2744                                      Brazil   BRA       2006       
## 2745                                      Brazil   BRA       2007       
## 2746                                      Brazil   BRA       2008       
## 2747                                      Brazil   BRA       2009       
## 2748                                      Brazil   BRA       1987       
## 2749                                      Brazil   BRA       1988       
## 2750                                      Brazil   BRA       1989       
## 2751                                      Brazil   BRA       1990       
## 2752                                      Brazil   BRA       1991       
## 2753                                      Brazil   BRA       1992       
## 2754                                      Brazil   BRA       1993       
## 2755                                      Brazil   BRA       1994       
## 2756                                      Brazil   BRA       1995       
## 2757                                      Brazil   BRA       1996       
## 2758                                      Brazil   BRA       1997       
## 2759                                      Brazil   BRA       1998       
## 2760                                      Brazil   BRA       1999       
## 2761                                      Brazil   BRA       2000       
## 2762                                      Brazil   BRA       2001       
## 2763                                      Brazil   BRA       2002       
## 2764                                      Brazil   BRA       2010       
## 2765                                      Brazil   BRA       2011       
## 2766                                      Brazil   BRA       2012       
## 2767                                      Brazil   BRA       2013       
## 2768                                      Brazil   BRA       2014       
## 2769                                      Brazil   BRA       2015       
## 2770                                      Brazil   BRA       2016       
## 2771                                      Brazil   BRA       2017       
## 2772                                      Brazil   BRA       2018       
## 2773                                      Brazil   BRA       2019       
## 2774                                      Brazil   BRA       2020       
## 2775                      British Virgin Islands    VG   VGB 2022       
## 2776                      British Virgin Islands    VG   VGB 2021       
## 2777                      British Virgin Islands    VG   VGB 1988       
## 2778                      British Virgin Islands    VG   VGB 1996       
## 2779                      British Virgin Islands    VG   VGB 2019       
## 2780                      British Virgin Islands    VG   VGB 1982       
## 2781                      British Virgin Islands    VG   VGB 1984       
## 2782                      British Virgin Islands    VG   VGB 1985       
## 2783                      British Virgin Islands    VG   VGB 1993       
## 2784                      British Virgin Islands    VG   VGB 1987       
## 2785                      British Virgin Islands    VG   VGB 1994       
## 2786                      British Virgin Islands    VG   VGB 1999       
## 2787                      British Virgin Islands    VG   VGB 1962       
## 2788                      British Virgin Islands    VG   VGB 1995       
## 2789                      British Virgin Islands    VG   VGB 1983       
## 2790                      British Virgin Islands    VG   VGB 2008       
## 2791                      British Virgin Islands    VG   VGB 1964       
## 2792                      British Virgin Islands    VG   VGB 1976       
## 2793                      British Virgin Islands    VG   VGB 1978       
## 2794                      British Virgin Islands    VG   VGB 1981       
## 2795                      British Virgin Islands    VG   VGB 1968       
## 2796                      British Virgin Islands    VG   VGB 1991       
## 2797                      British Virgin Islands    VG   VGB 2020       
## 2798                      British Virgin Islands    VG   VGB 2014       
## 2799                      British Virgin Islands    VG   VGB 1989       
## 2800                      British Virgin Islands    VG   VGB 2009       
## 2801                      British Virgin Islands    VG   VGB 2007       
## 2802                      British Virgin Islands    VG   VGB 1963       
## 2803                      British Virgin Islands    VG   VGB 1980       
## 2804                      British Virgin Islands    VG   VGB 1979       
## 2805                      British Virgin Islands    VG   VGB 1973       
## 2806                      British Virgin Islands    VG   VGB 1970       
## 2807                      British Virgin Islands    VG   VGB 1974       
## 2808                      British Virgin Islands    VG   VGB 2015       
## 2809                      British Virgin Islands    VG   VGB 1986       
## 2810                      British Virgin Islands    VG   VGB 2004       
## 2811                      British Virgin Islands    VG   VGB 2013       
## 2812                      British Virgin Islands    VG   VGB 1967       
## 2813                      British Virgin Islands    VG   VGB 2010       
## 2814                      British Virgin Islands    VG   VGB 1992       
## 2815                      British Virgin Islands    VG   VGB 1990       
## 2816                      British Virgin Islands    VG   VGB 1975       
## 2817                      British Virgin Islands    VG   VGB 1997       
## 2818                      British Virgin Islands    VG   VGB 1972       
## 2819                      British Virgin Islands    VG   VGB 1971       
## 2820                      British Virgin Islands    VG   VGB 2003       
## 2821                      British Virgin Islands    VG   VGB 2012       
## 2822                      British Virgin Islands    VG   VGB 2016       
## 2823                      British Virgin Islands    VG   VGB 2000       
## 2824                      British Virgin Islands    VG   VGB 2005       
## 2825                      British Virgin Islands    VG   VGB 1969       
## 2826                      British Virgin Islands    VG   VGB 1977       
## 2827                      British Virgin Islands    VG   VGB 1960       
## 2828                      British Virgin Islands    VG   VGB 1966       
## 2829                      British Virgin Islands    VG   VGB 2002       
## 2830                      British Virgin Islands    VG   VGB 2017       
## 2831                      British Virgin Islands    VG   VGB 2018       
## 2832                      British Virgin Islands    VG   VGB 2006       
## 2833                      British Virgin Islands    VG   VGB 2011       
## 2834                      British Virgin Islands    VG   VGB 1998       
## 2835                      British Virgin Islands    VG   VGB 1965       
## 2836                      British Virgin Islands    VG   VGB 2001       
## 2837                      British Virgin Islands    VG   VGB 1961       
## 2838                                      Brunei   BRN       1987       
## 2839                                      Brunei   BRN       1988       
## 2840                                      Brunei   BRN       1989       
## 2841                                      Brunei   BRN       1990       
## 2842                                      Brunei   BRN       1991       
## 2843                                      Brunei   BRN       1992       
## 2844                                      Brunei   BRN       1993       
## 2845                                      Brunei   BRN       1994       
## 2846                                      Brunei   BRN       1995       
## 2847                                      Brunei   BRN       1996       
## 2848                                      Brunei   BRN       1997       
## 2849                                      Brunei   BRN       1998       
## 2850                                      Brunei   BRN       1999       
## 2851                                      Brunei   BRN       2000       
## 2852                                      Brunei   BRN       2001       
## 2853                                      Brunei   BRN       2002       
## 2854                                      Brunei   BRN       2003       
## 2855                                      Brunei   BRN       2004       
## 2856                                      Brunei   BRN       2005       
## 2857                                      Brunei   BRN       2006       
## 2858                                      Brunei   BRN       2007       
## 2859                                      Brunei   BRN       2008       
## 2860                                      Brunei   BRN       2009       
## 2861                                      Brunei   BRN       2010       
## 2862                                      Brunei   BRN       2011       
## 2863                                      Brunei   BRN       2012       
## 2864                                      Brunei   BRN       2013       
## 2865                                      Brunei   BRN       2014       
## 2866                                      Brunei   BRN       2015       
## 2867                                      Brunei   BRN       2016       
## 2868                                      Brunei   BRN       2017       
## 2869                                      Brunei   BRN       2018       
## 2870                                      Brunei   BRN       2019       
## 2871                                      Brunei   BRN       2020       
## 2872                           Brunei Darussalam    BN   BRN 1971       
## 2873                           Brunei Darussalam    BN   BRN 1969       
## 2874                           Brunei Darussalam    BN   BRN 1972       
## 2875                           Brunei Darussalam    BN   BRN 2016       
## 2876                           Brunei Darussalam    BN   BRN 1999       
## 2877                           Brunei Darussalam    BN   BRN 2018       
## 2878                           Brunei Darussalam    BN   BRN 1986       
## 2879                           Brunei Darussalam    BN   BRN 2012       
## 2880                           Brunei Darussalam    BN   BRN 2011       
## 2881                           Brunei Darussalam    BN   BRN 1970       
## 2882                           Brunei Darussalam    BN   BRN 2017       
## 2883                           Brunei Darussalam    BN   BRN 2015       
## 2884                           Brunei Darussalam    BN   BRN 2000       
## 2885                           Brunei Darussalam    BN   BRN 1983       
## 2886                           Brunei Darussalam    BN   BRN 1996       
## 2887                           Brunei Darussalam    BN   BRN 1990       
## 2888                           Brunei Darussalam    BN   BRN 1982       
## 2889                           Brunei Darussalam    BN   BRN 1981       
## 2890                           Brunei Darussalam    BN   BRN 2006       
## 2891                           Brunei Darussalam    BN   BRN 2002       
## 2892                           Brunei Darussalam    BN   BRN 2001       
## 2893                           Brunei Darussalam    BN   BRN 1968       
## 2894                           Brunei Darussalam    BN   BRN 2005       
## 2895                           Brunei Darussalam    BN   BRN 1967       
## 2896                           Brunei Darussalam    BN   BRN 1991       
## 2897                           Brunei Darussalam    BN   BRN 2021       
## 2898                           Brunei Darussalam    BN   BRN 1997       
## 2899                           Brunei Darussalam    BN   BRN 2020       
## 2900                           Brunei Darussalam    BN   BRN 2004       
## 2901                           Brunei Darussalam    BN   BRN 1978       
## 2902                           Brunei Darussalam    BN   BRN 1973       
## 2903                           Brunei Darussalam    BN   BRN 2007       
## 2904                           Brunei Darussalam    BN   BRN 2008       
## 2905                           Brunei Darussalam    BN   BRN 2003       
## 2906                           Brunei Darussalam    BN   BRN 2010       
## 2907                           Brunei Darussalam    BN   BRN 2009       
## 2908                           Brunei Darussalam    BN   BRN 1988       
## 2909                           Brunei Darussalam    BN   BRN 1992       
## 2910                           Brunei Darussalam    BN   BRN 1998       
## 2911                           Brunei Darussalam    BN   BRN 2019       
## 2912                           Brunei Darussalam    BN   BRN 1977       
## 2913                           Brunei Darussalam    BN   BRN 1979       
## 2914                           Brunei Darussalam    BN   BRN 1964       
## 2915                           Brunei Darussalam    BN   BRN 1980       
## 2916                           Brunei Darussalam    BN   BRN 1995       
## 2917                           Brunei Darussalam    BN   BRN 2014       
## 2918                           Brunei Darussalam    BN   BRN 1989       
## 2919                           Brunei Darussalam    BN   BRN 1966       
## 2920                           Brunei Darussalam    BN   BRN 1975       
## 2921                           Brunei Darussalam    BN   BRN 1987       
## 2922                           Brunei Darussalam    BN   BRN 1994       
## 2923                           Brunei Darussalam    BN   BRN 2013       
## 2924                           Brunei Darussalam    BN   BRN 1976       
## 2925                           Brunei Darussalam    BN   BRN 1993       
## 2926                           Brunei Darussalam    BN   BRN 1960       
## 2927                           Brunei Darussalam    BN   BRN 1965       
## 2928                           Brunei Darussalam    BN   BRN 1974       
## 2929                           Brunei Darussalam    BN   BRN 1963       
## 2930                           Brunei Darussalam    BN   BRN 2022       
## 2931                           Brunei Darussalam    BN   BRN 1984       
## 2932                           Brunei Darussalam    BN   BRN 1985       
## 2933                           Brunei Darussalam    BN   BRN 1961       
## 2934                           Brunei Darussalam    BN   BRN 1962       
## 2935                                    Bulgaria    BG   BGR 1998       
## 2936                                    Bulgaria    BG   BGR 1977       
## 2937                                    Bulgaria    BG   BGR 1999       
## 2938                                    Bulgaria    BG   BGR 2019       
## 2939                                    Bulgaria    BG   BGR 2001       
## 2940                                    Bulgaria    BG   BGR 1973       
## 2941                                    Bulgaria    BG   BGR 2000       
## 2942                                    Bulgaria    BG   BGR 2020       
## 2943                                    Bulgaria    BG   BGR 1994       
## 2944                                    Bulgaria    BG   BGR 1980       
## 2945                                    Bulgaria    BG   BGR 2005       
## 2946                                    Bulgaria    BG   BGR 1979       
## 2947                                    Bulgaria    BG   BGR 1976       
## 2948                                    Bulgaria    BG   BGR 1993       
## 2949                                    Bulgaria    BG   BGR 1974       
## 2950                                    Bulgaria    BG   BGR 2018       
## 2951                                    Bulgaria    BG   BGR 1975       
## 2952                                    Bulgaria    BG   BGR 1978       
## 2953                                    Bulgaria    BG   BGR 1988       
## 2954                                    Bulgaria    BG   BGR 1972       
## 2955                                    Bulgaria    BG   BGR 2022       
## 2956                                    Bulgaria    BG   BGR 1997       
## 2957                                    Bulgaria    BG   BGR 1970       
## 2958                                    Bulgaria    BG   BGR 1996       
## 2959                                    Bulgaria    BG   BGR 2008       
## 2960                                    Bulgaria    BG   BGR 1971       
## 2961                                    Bulgaria    BG   BGR 1981       
## 2962                                    Bulgaria    BG   BGR 1991       
## 2963                                    Bulgaria    BG   BGR 2021       
## 2964                                    Bulgaria    BG   BGR 2002       
## 2965                                    Bulgaria    BG   BGR 1969       
## 2966                                    Bulgaria    BG   BGR 1966       
## 2967                                    Bulgaria    BG   BGR 2007       
## 2968                                    Bulgaria    BG   BGR 1968       
## 2969                                    Bulgaria    BG   BGR 2010       
## 2970                                    Bulgaria    BG   BGR 2004       
## 2971                                    Bulgaria    BG   BGR 1995       
## 2972                                    Bulgaria    BG   BGR 1961       
## 2973                                    Bulgaria    BG   BGR 2014       
## 2974                                    Bulgaria    BG   BGR 1992       
## 2975                                    Bulgaria    BG   BGR 1990       
## 2976                                    Bulgaria    BG   BGR 1986       
## 2977                                    Bulgaria    BG   BGR 1965       
## 2978                                    Bulgaria    BG   BGR 1964       
## 2979                                    Bulgaria    BG   BGR 2012       
## 2980                                    Bulgaria    BG   BGR 1967       
## 2981                                    Bulgaria    BG   BGR 1962       
## 2982                                    Bulgaria    BG   BGR 2009       
## 2983                                    Bulgaria    BG   BGR 2011       
## 2984                                    Bulgaria    BG   BGR 1960       
## 2985                                    Bulgaria    BG   BGR 1987       
## 2986                                    Bulgaria    BG   BGR 1989       
## 2987                                    Bulgaria    BG   BGR 1985       
## 2988                                    Bulgaria    BG   BGR 1983       
## 2989                                    Bulgaria    BG   BGR 1963       
## 2990                                    Bulgaria    BG   BGR 2013       
## 2991                                    Bulgaria    BG   BGR 2006       
## 2992                                    Bulgaria    BG   BGR 1982       
## 2993                                    Bulgaria    BG   BGR 2003       
## 2994                                    Bulgaria    BG   BGR 2016       
## 2995                                    Bulgaria    BG   BGR 2017       
## 2996                                    Bulgaria    BG   BGR 1984       
## 2997                                    Bulgaria    BG   BGR 2015       
## 2998                                    Bulgaria   BGR       1987       
## 2999                                    Bulgaria   BGR       1988       
## 3000                                    Bulgaria   BGR       1989       
## 3001                                    Bulgaria   BGR       1990       
## 3002                                    Bulgaria   BGR       1991       
## 3003                                    Bulgaria   BGR       1992       
## 3004                                    Bulgaria   BGR       1993       
## 3005                                    Bulgaria   BGR       1994       
## 3006                                    Bulgaria   BGR       1995       
## 3007                                    Bulgaria   BGR       1996       
## 3008                                    Bulgaria   BGR       1997       
## 3009                                    Bulgaria   BGR       1998       
## 3010                                    Bulgaria   BGR       1999       
## 3011                                    Bulgaria   BGR       2000       
## 3012                                    Bulgaria   BGR       2001       
## 3013                                    Bulgaria   BGR       2002       
## 3014                                    Bulgaria   BGR       2003       
## 3015                                    Bulgaria   BGR       2004       
## 3016                                    Bulgaria   BGR       2005       
## 3017                                    Bulgaria   BGR       2006       
## 3018                                    Bulgaria   BGR       2007       
## 3019                                    Bulgaria   BGR       2008       
## 3020                                    Bulgaria   BGR       2009       
## 3021                                    Bulgaria   BGR       2010       
## 3022                                    Bulgaria   BGR       2011       
## 3023                                    Bulgaria   BGR       2012       
## 3024                                    Bulgaria   BGR       2013       
## 3025                                    Bulgaria   BGR       2014       
## 3026                                    Bulgaria   BGR       2015       
## 3027                                    Bulgaria   BGR       2016       
## 3028                                    Bulgaria   BGR       2017       
## 3029                                    Bulgaria   BGR       2018       
## 3030                                    Bulgaria   BGR       2019       
## 3031                                    Bulgaria   BGR       2020       
## 3032                                Burkina Faso    BF   BFA 1992       
## 3033                                Burkina Faso    BF   BFA 2020       
## 3034                                Burkina Faso    BF   BFA 2011       
## 3035                                Burkina Faso    BF   BFA 1983       
## 3036                                Burkina Faso    BF   BFA 1981       
## 3037                                Burkina Faso    BF   BFA 2012       
## 3038                                Burkina Faso    BF   BFA 2022       
## 3039                                Burkina Faso    BF   BFA 1991       
## 3040                                Burkina Faso    BF   BFA 1982       
## 3041                                Burkina Faso    BF   BFA 1985       
## 3042                                Burkina Faso    BF   BFA 2007       
## 3043                                Burkina Faso    BF   BFA 1987       
## 3044                                Burkina Faso    BF   BFA 1988       
## 3045                                Burkina Faso    BF   BFA 1960       
## 3046                                Burkina Faso    BF   BFA 1978       
## 3047                                Burkina Faso    BF   BFA 1984       
## 3048                                Burkina Faso    BF   BFA 2018       
## 3049                                Burkina Faso    BF   BFA 2017       
## 3050                                Burkina Faso    BF   BFA 2013       
## 3051                                Burkina Faso    BF   BFA 2021       
## 3052                                Burkina Faso    BF   BFA 1963       
## 3053                                Burkina Faso    BF   BFA 2010       
## 3054                                Burkina Faso    BF   BFA 1990       
## 3055                                Burkina Faso    BF   BFA 2000       
## 3056                                Burkina Faso    BF   BFA 2006       
## 3057                                Burkina Faso    BF   BFA 2003       
## 3058                                Burkina Faso    BF   BFA 1986       
## 3059                                Burkina Faso    BF   BFA 2019       
## 3060                                Burkina Faso    BF   BFA 1976       
## 3061                                Burkina Faso    BF   BFA 1979       
## 3062                                Burkina Faso    BF   BFA 1980       
## 3063                                Burkina Faso    BF   BFA 1968       
## 3064                                Burkina Faso    BF   BFA 1966       
## 3065                                Burkina Faso    BF   BFA 2004       
## 3066                                Burkina Faso    BF   BFA 1989       
## 3067                                Burkina Faso    BF   BFA 2009       
## 3068                                Burkina Faso    BF   BFA 1999       
## 3069                                Burkina Faso    BF   BFA 1977       
## 3070                                Burkina Faso    BF   BFA 1967       
## 3071                                Burkina Faso    BF   BFA 2002       
## 3072                                Burkina Faso    BF   BFA 1993       
## 3073                                Burkina Faso    BF   BFA 1964       
## 3074                                Burkina Faso    BF   BFA 1998       
## 3075                                Burkina Faso    BF   BFA 1961       
## 3076                                Burkina Faso    BF   BFA 1965       
## 3077                                Burkina Faso    BF   BFA 2014       
## 3078                                Burkina Faso    BF   BFA 1973       
## 3079                                Burkina Faso    BF   BFA 2005       
## 3080                                Burkina Faso    BF   BFA 2008       
## 3081                                Burkina Faso    BF   BFA 1995       
## 3082                                Burkina Faso    BF   BFA 1972       
## 3083                                Burkina Faso    BF   BFA 1975       
## 3084                                Burkina Faso    BF   BFA 1996       
## 3085                                Burkina Faso    BF   BFA 1974       
## 3086                                Burkina Faso    BF   BFA 1969       
## 3087                                Burkina Faso    BF   BFA 1994       
## 3088                                Burkina Faso    BF   BFA 1962       
## 3089                                Burkina Faso    BF   BFA 1997       
## 3090                                Burkina Faso    BF   BFA 1970       
## 3091                                Burkina Faso    BF   BFA 2001       
## 3092                                Burkina Faso    BF   BFA 2016       
## 3093                                Burkina Faso    BF   BFA 1971       
## 3094                                Burkina Faso    BF   BFA 2015       
## 3095                                Burkina Faso   BFA       1987       
## 3096                                Burkina Faso   BFA       1988       
## 3097                                Burkina Faso   BFA       1989       
## 3098                                Burkina Faso   BFA       1990       
## 3099                                Burkina Faso   BFA       1991       
## 3100                                Burkina Faso   BFA       1992       
## 3101                                Burkina Faso   BFA       1993       
## 3102                                Burkina Faso   BFA       1994       
## 3103                                Burkina Faso   BFA       1995       
## 3104                                Burkina Faso   BFA       1996       
## 3105                                Burkina Faso   BFA       1997       
## 3106                                Burkina Faso   BFA       1998       
## 3107                                Burkina Faso   BFA       1999       
## 3108                                Burkina Faso   BFA       2000       
## 3109                                Burkina Faso   BFA       2001       
## 3110                                Burkina Faso   BFA       2002       
## 3111                                Burkina Faso   BFA       2003       
## 3112                                Burkina Faso   BFA       2004       
## 3113                                Burkina Faso   BFA       2005       
## 3114                                Burkina Faso   BFA       2006       
## 3115                                Burkina Faso   BFA       2007       
## 3116                                Burkina Faso   BFA       2008       
## 3117                                Burkina Faso   BFA       2009       
## 3118                                Burkina Faso   BFA       2010       
## 3119                                Burkina Faso   BFA       2011       
## 3120                                Burkina Faso   BFA       2012       
## 3121                                Burkina Faso   BFA       2013       
## 3122                                Burkina Faso   BFA       2014       
## 3123                                Burkina Faso   BFA       2015       
## 3124                                Burkina Faso   BFA       2016       
## 3125                                Burkina Faso   BFA       2017       
## 3126                                Burkina Faso   BFA       2018       
## 3127                                Burkina Faso   BFA       2019       
## 3128                                Burkina Faso   BFA       2020       
## 3129                                     Burundi   BDI       1987       
## 3130                                     Burundi   BDI       1988       
## 3131                                     Burundi   BDI       1989       
## 3132                                     Burundi   BDI       1990       
## 3133                                     Burundi   BDI       1991       
## 3134                                     Burundi   BDI       1992       
## 3135                                     Burundi   BDI       1993       
## 3136                                     Burundi   BDI       1994       
## 3137                                     Burundi   BDI       1995       
## 3138                                     Burundi   BDI       1996       
## 3139                                     Burundi   BDI       1997       
## 3140                                     Burundi   BDI       1998       
## 3141                                     Burundi   BDI       1999       
## 3142                                     Burundi   BDI       2000       
## 3143                                     Burundi   BDI       2001       
## 3144                                     Burundi   BDI       2002       
## 3145                                     Burundi   BDI       2003       
## 3146                                     Burundi   BDI       2004       
## 3147                                     Burundi   BDI       2005       
## 3148                                     Burundi   BDI       2006       
## 3149                                     Burundi   BDI       2007       
## 3150                                     Burundi   BDI       2008       
## 3151                                     Burundi   BDI       2009       
## 3152                                     Burundi   BDI       2010       
## 3153                                     Burundi   BDI       2011       
## 3154                                     Burundi   BDI       2012       
## 3155                                     Burundi   BDI       2013       
## 3156                                     Burundi   BDI       2014       
## 3157                                     Burundi   BDI       2015       
## 3158                                     Burundi   BDI       2016       
## 3159                                     Burundi   BDI       2017       
## 3160                                     Burundi   BDI       2018       
## 3161                                     Burundi   BDI       2019       
## 3162                                     Burundi   BDI       2020       
## 3163                                     Burundi    BI   BDI 2014       
## 3164                                     Burundi    BI   BDI 1961       
## 3165                                     Burundi    BI   BDI 2011       
## 3166                                     Burundi    BI   BDI 2013       
## 3167                                     Burundi    BI   BDI 2015       
## 3168                                     Burundi    BI   BDI 2006       
## 3169                                     Burundi    BI   BDI 1996       
## 3170                                     Burundi    BI   BDI 2017       
## 3171                                     Burundi    BI   BDI 2018       
## 3172                                     Burundi    BI   BDI 2003       
## 3173                                     Burundi    BI   BDI 1960       
## 3174                                     Burundi    BI   BDI 2009       
## 3175                                     Burundi    BI   BDI 2007       
## 3176                                     Burundi    BI   BDI 1966       
## 3177                                     Burundi    BI   BDI 1970       
## 3178                                     Burundi    BI   BDI 2012       
## 3179                                     Burundi    BI   BDI 2010       
## 3180                                     Burundi    BI   BDI 1973       
## 3181                                     Burundi    BI   BDI 2002       
## 3182                                     Burundi    BI   BDI 1992       
## 3183                                     Burundi    BI   BDI 1987       
## 3184                                     Burundi    BI   BDI 1997       
## 3185                                     Burundi    BI   BDI 2005       
## 3186                                     Burundi    BI   BDI 1993       
## 3187                                     Burundi    BI   BDI 1971       
## 3188                                     Burundi    BI   BDI 2008       
## 3189                                     Burundi    BI   BDI 1975       
## 3190                                     Burundi    BI   BDI 1995       
## 3191                                     Burundi    BI   BDI 2000       
## 3192                                     Burundi    BI   BDI 2021       
## 3193                                     Burundi    BI   BDI 1965       
## 3194                                     Burundi    BI   BDI 1978       
## 3195                                     Burundi    BI   BDI 1991       
## 3196                                     Burundi    BI   BDI 2016       
## 3197                                     Burundi    BI   BDI 1994       
## 3198                                     Burundi    BI   BDI 1989       
## 3199                                     Burundi    BI   BDI 1977       
## 3200                                     Burundi    BI   BDI 1984       
## 3201                                     Burundi    BI   BDI 1979       
## 3202                                     Burundi    BI   BDI 1968       
## 3203                                     Burundi    BI   BDI 1969       
## 3204                                     Burundi    BI   BDI 1962       
## 3205                                     Burundi    BI   BDI 1988       
## 3206                                     Burundi    BI   BDI 1990       
## 3207                                     Burundi    BI   BDI 1964       
## 3208                                     Burundi    BI   BDI 2019       
## 3209                                     Burundi    BI   BDI 1981       
## 3210                                     Burundi    BI   BDI 2004       
## 3211                                     Burundi    BI   BDI 2001       
## 3212                                     Burundi    BI   BDI 1985       
## 3213                                     Burundi    BI   BDI 2022       
## 3214                                     Burundi    BI   BDI 1976       
## 3215                                     Burundi    BI   BDI 1972       
## 3216                                     Burundi    BI   BDI 1983       
## 3217                                     Burundi    BI   BDI 1982       
## 3218                                     Burundi    BI   BDI 1967       
## 3219                                     Burundi    BI   BDI 1999       
## 3220                                     Burundi    BI   BDI 1974       
## 3221                                     Burundi    BI   BDI 1963       
## 3222                                     Burundi    BI   BDI 2020       
## 3223                                     Burundi    BI   BDI 1986       
## 3224                                     Burundi    BI   BDI 1998       
## 3225                                     Burundi    BI   BDI 1980       
## 3226                                  Cabo Verde    CV   CPV 2011       
## 3227                                  Cabo Verde    CV   CPV 2013       
## 3228                                  Cabo Verde    CV   CPV 2021       
## 3229                                  Cabo Verde    CV   CPV 2003       
## 3230                                  Cabo Verde    CV   CPV 2005       
## 3231                                  Cabo Verde    CV   CPV 2007       
## 3232                                  Cabo Verde    CV   CPV 2012       
## 3233                                  Cabo Verde    CV   CPV 2022       
## 3234                                  Cabo Verde    CV   CPV 2014       
## 3235                                  Cabo Verde    CV   CPV 2018       
## 3236                                  Cabo Verde    CV   CPV 2010       
## 3237                                  Cabo Verde    CV   CPV 1971       
## 3238                                  Cabo Verde    CV   CPV 2006       
## 3239                                  Cabo Verde    CV   CPV 2019       
## 3240                                  Cabo Verde    CV   CPV 2016       
## 3241                                  Cabo Verde    CV   CPV 2001       
## 3242                                  Cabo Verde    CV   CPV 1999       
## 3243                                  Cabo Verde    CV   CPV 2008       
## 3244                                  Cabo Verde    CV   CPV 2020       
## 3245                                  Cabo Verde    CV   CPV 1996       
## 3246                                  Cabo Verde    CV   CPV 1982       
## 3247                                  Cabo Verde    CV   CPV 1970       
## 3248                                  Cabo Verde    CV   CPV 2017       
## 3249                                  Cabo Verde    CV   CPV 1973       
## 3250                                  Cabo Verde    CV   CPV 2000       
## 3251                                  Cabo Verde    CV   CPV 1998       
## 3252                                  Cabo Verde    CV   CPV 2009       
## 3253                                  Cabo Verde    CV   CPV 1981       
## 3254                                  Cabo Verde    CV   CPV 1967       
## 3255                                  Cabo Verde    CV   CPV 2015       
## 3256                                  Cabo Verde    CV   CPV 1974       
## 3257                                  Cabo Verde    CV   CPV 1968       
## 3258                                  Cabo Verde    CV   CPV 1986       
## 3259                                  Cabo Verde    CV   CPV 1972       
## 3260                                  Cabo Verde    CV   CPV 1983       
## 3261                                  Cabo Verde    CV   CPV 1963       
## 3262                                  Cabo Verde    CV   CPV 1965       
## 3263                                  Cabo Verde    CV   CPV 1997       
## 3264                                  Cabo Verde    CV   CPV 1992       
## 3265                                  Cabo Verde    CV   CPV 1995       
## 3266                                  Cabo Verde    CV   CPV 1994       
## 3267                                  Cabo Verde    CV   CPV 1985       
## 3268                                  Cabo Verde    CV   CPV 1962       
## 3269                                  Cabo Verde    CV   CPV 2002       
## 3270                                  Cabo Verde    CV   CPV 2004       
## 3271                                  Cabo Verde    CV   CPV 1977       
## 3272                                  Cabo Verde    CV   CPV 1978       
## 3273                                  Cabo Verde    CV   CPV 1961       
## 3274                                  Cabo Verde    CV   CPV 1964       
## 3275                                  Cabo Verde    CV   CPV 1979       
## 3276                                  Cabo Verde    CV   CPV 1987       
## 3277                                  Cabo Verde    CV   CPV 1993       
## 3278                                  Cabo Verde    CV   CPV 1984       
## 3279                                  Cabo Verde    CV   CPV 1989       
## 3280                                  Cabo Verde    CV   CPV 1966       
## 3281                                  Cabo Verde    CV   CPV 1969       
## 3282                                  Cabo Verde    CV   CPV 1991       
## 3283                                  Cabo Verde    CV   CPV 1960       
## 3284                                  Cabo Verde    CV   CPV 1976       
## 3285                                  Cabo Verde    CV   CPV 1980       
## 3286                                  Cabo Verde    CV   CPV 1990       
## 3287                                  Cabo Verde    CV   CPV 1975       
## 3288                                  Cabo Verde    CV   CPV 1988       
## 3289                                    Cambodia    KH   KHM 2012       
## 3290                                    Cambodia    KH   KHM 2000       
## 3291                                    Cambodia    KH   KHM 2010       
## 3292                                    Cambodia    KH   KHM 2011       
## 3293                                    Cambodia    KH   KHM 1978       
## 3294                                    Cambodia    KH   KHM 2013       
## 3295                                    Cambodia    KH   KHM 2007       
## 3296                                    Cambodia    KH   KHM 1963       
## 3297                                    Cambodia    KH   KHM 1971       
## 3298                                    Cambodia    KH   KHM 1968       
## 3299                                    Cambodia    KH   KHM 2008       
## 3300                                    Cambodia    KH   KHM 1972       
## 3301                                    Cambodia    KH   KHM 1967       
## 3302                                    Cambodia    KH   KHM 1961       
## 3303                                    Cambodia    KH   KHM 2009       
## 3304                                    Cambodia    KH   KHM 1981       
## 3305                                    Cambodia    KH   KHM 1977       
## 3306                                    Cambodia    KH   KHM 1986       
## 3307                                    Cambodia    KH   KHM 1992       
## 3308                                    Cambodia    KH   KHM 1966       
## 3309                                    Cambodia    KH   KHM 1998       
## 3310                                    Cambodia    KH   KHM 1990       
## 3311                                    Cambodia    KH   KHM 2002       
## 3312                                    Cambodia    KH   KHM 1980       
## 3313                                    Cambodia    KH   KHM 1979       
## 3314                                    Cambodia    KH   KHM 1975       
## 3315                                    Cambodia    KH   KHM 1976       
## 3316                                    Cambodia    KH   KHM 1970       
## 3317                                    Cambodia    KH   KHM 2018       
## 3318                                    Cambodia    KH   KHM 1997       
## 3319                                    Cambodia    KH   KHM 1989       
## 3320                                    Cambodia    KH   KHM 1999       
## 3321                                    Cambodia    KH   KHM 1965       
## 3322                                    Cambodia    KH   KHM 1991       
## 3323                                    Cambodia    KH   KHM 2004       
## 3324                                    Cambodia    KH   KHM 1964       
## 3325                                    Cambodia    KH   KHM 1973       
## 3326                                    Cambodia    KH   KHM 2015       
## 3327                                    Cambodia    KH   KHM 1962       
## 3328                                    Cambodia    KH   KHM 1983       
## 3329                                    Cambodia    KH   KHM 1985       
## 3330                                    Cambodia    KH   KHM 1993       
## 3331                                    Cambodia    KH   KHM 2022       
## 3332                                    Cambodia    KH   KHM 1994       
## 3333                                    Cambodia    KH   KHM 1995       
## 3334                                    Cambodia    KH   KHM 1974       
## 3335                                    Cambodia    KH   KHM 1960       
## 3336                                    Cambodia    KH   KHM 2005       
## 3337                                    Cambodia    KH   KHM 1996       
## 3338                                    Cambodia    KH   KHM 2016       
## 3339                                    Cambodia    KH   KHM 2014       
## 3340                                    Cambodia    KH   KHM 1987       
## 3341                                    Cambodia    KH   KHM 1988       
## 3342                                    Cambodia    KH   KHM 2020       
## 3343                                    Cambodia    KH   KHM 1984       
## 3344                                    Cambodia    KH   KHM 2021       
## 3345                                    Cambodia    KH   KHM 2003       
## 3346                                    Cambodia    KH   KHM 2017       
## 3347                                    Cambodia    KH   KHM 2019       
## 3348                                    Cambodia    KH   KHM 2001       
## 3349                                    Cambodia    KH   KHM 1969       
## 3350                                    Cambodia    KH   KHM 1982       
## 3351                                    Cambodia    KH   KHM 2006       
## 3352                                    Cambodia   KHM       1987       
## 3353                                    Cambodia   KHM       1988       
## 3354                                    Cambodia   KHM       1989       
## 3355                                    Cambodia   KHM       1990       
## 3356                                    Cambodia   KHM       1991       
## 3357                                    Cambodia   KHM       1992       
## 3358                                    Cambodia   KHM       1993       
## 3359                                    Cambodia   KHM       1994       
## 3360                                    Cambodia   KHM       1995       
## 3361                                    Cambodia   KHM       1996       
## 3362                                    Cambodia   KHM       1997       
## 3363                                    Cambodia   KHM       1998       
## 3364                                    Cambodia   KHM       1999       
## 3365                                    Cambodia   KHM       2000       
## 3366                                    Cambodia   KHM       2001       
## 3367                                    Cambodia   KHM       2002       
## 3368                                    Cambodia   KHM       2003       
## 3369                                    Cambodia   KHM       2004       
## 3370                                    Cambodia   KHM       2005       
## 3371                                    Cambodia   KHM       2006       
## 3372                                    Cambodia   KHM       2007       
## 3373                                    Cambodia   KHM       2008       
## 3374                                    Cambodia   KHM       2009       
## 3375                                    Cambodia   KHM       2010       
## 3376                                    Cambodia   KHM       2011       
## 3377                                    Cambodia   KHM       2012       
## 3378                                    Cambodia   KHM       2013       
## 3379                                    Cambodia   KHM       2014       
## 3380                                    Cambodia   KHM       2015       
## 3381                                    Cambodia   KHM       2016       
## 3382                                    Cambodia   KHM       2017       
## 3383                                    Cambodia   KHM       2018       
## 3384                                    Cambodia   KHM       2019       
## 3385                                    Cambodia   KHM       2020       
## 3386                                    Cameroon    CM   CMR 1990       
## 3387                                    Cameroon    CM   CMR 1987       
## 3388                                    Cameroon    CM   CMR 1995       
## 3389                                    Cameroon    CM   CMR 1977       
## 3390                                    Cameroon    CM   CMR 2013       
## 3391                                    Cameroon    CM   CMR 1983       
## 3392                                    Cameroon    CM   CMR 1986       
## 3393                                    Cameroon    CM   CMR 1972       
## 3394                                    Cameroon    CM   CMR 1978       
## 3395                                    Cameroon    CM   CMR 1991       
## 3396                                    Cameroon    CM   CMR 1992       
## 3397                                    Cameroon    CM   CMR 1982       
## 3398                                    Cameroon    CM   CMR 1973       
## 3399                                    Cameroon    CM   CMR 2009       
## 3400                                    Cameroon    CM   CMR 1988       
## 3401                                    Cameroon    CM   CMR 1985       
## 3402                                    Cameroon    CM   CMR 2010       
## 3403                                    Cameroon    CM   CMR 1998       
## 3404                                    Cameroon    CM   CMR 1989       
## 3405                                    Cameroon    CM   CMR 1996       
## 3406                                    Cameroon    CM   CMR 1979       
## 3407                                    Cameroon    CM   CMR 1994       
## 3408                                    Cameroon    CM   CMR 1984       
## 3409                                    Cameroon    CM   CMR 1981       
## 3410                                    Cameroon    CM   CMR 1980       
## 3411                                    Cameroon    CM   CMR 2022       
## 3412                                    Cameroon    CM   CMR 2008       
## 3413                                    Cameroon    CM   CMR 2002       
## 3414                                    Cameroon    CM   CMR 2001       
## 3415                                    Cameroon    CM   CMR 2018       
## 3416                                    Cameroon    CM   CMR 1999       
## 3417                                    Cameroon    CM   CMR 2012       
## 3418                                    Cameroon    CM   CMR 2011       
## 3419                                    Cameroon    CM   CMR 1965       
## 3420                                    Cameroon    CM   CMR 2003       
## 3421                                    Cameroon    CM   CMR 1969       
## 3422                                    Cameroon    CM   CMR 1960       
## 3423                                    Cameroon    CM   CMR 1976       
## 3424                                    Cameroon    CM   CMR 2017       
## 3425                                    Cameroon    CM   CMR 1970       
## 3426                                    Cameroon    CM   CMR 2007       
## 3427                                    Cameroon    CM   CMR 2015       
## 3428                                    Cameroon    CM   CMR 1961       
## 3429                                    Cameroon    CM   CMR 2014       
## 3430                                    Cameroon    CM   CMR 1997       
## 3431                                    Cameroon    CM   CMR 1962       
## 3432                                    Cameroon    CM   CMR 2019       
## 3433                                    Cameroon    CM   CMR 1968       
## 3434                                    Cameroon    CM   CMR 1993       
## 3435                                    Cameroon    CM   CMR 1975       
## 3436                                    Cameroon    CM   CMR 1963       
## 3437                                    Cameroon    CM   CMR 2004       
## 3438                                    Cameroon    CM   CMR 1971       
## 3439                                    Cameroon    CM   CMR 2020       
## 3440                                    Cameroon    CM   CMR 2000       
## 3441                                    Cameroon    CM   CMR 2006       
## 3442                                    Cameroon    CM   CMR 2016       
## 3443                                    Cameroon    CM   CMR 1966       
## 3444                                    Cameroon    CM   CMR 1967       
## 3445                                    Cameroon    CM   CMR 1974       
## 3446                                    Cameroon    CM   CMR 2005       
## 3447                                    Cameroon    CM   CMR 1964       
## 3448                                    Cameroon    CM   CMR 2021       
## 3449                                    Cameroon   CMR       1987       
## 3450                                    Cameroon   CMR       1988       
## 3451                                    Cameroon   CMR       1989       
## 3452                                    Cameroon   CMR       1990       
## 3453                                    Cameroon   CMR       1991       
## 3454                                    Cameroon   CMR       1992       
## 3455                                    Cameroon   CMR       1993       
## 3456                                    Cameroon   CMR       1994       
## 3457                                    Cameroon   CMR       1995       
## 3458                                    Cameroon   CMR       1996       
## 3459                                    Cameroon   CMR       1997       
## 3460                                    Cameroon   CMR       1998       
## 3461                                    Cameroon   CMR       1999       
## 3462                                    Cameroon   CMR       2000       
## 3463                                    Cameroon   CMR       2001       
## 3464                                    Cameroon   CMR       2002       
## 3465                                    Cameroon   CMR       2003       
## 3466                                    Cameroon   CMR       2004       
## 3467                                    Cameroon   CMR       2005       
## 3468                                    Cameroon   CMR       2006       
## 3469                                    Cameroon   CMR       2007       
## 3470                                    Cameroon   CMR       2008       
## 3471                                    Cameroon   CMR       2009       
## 3472                                    Cameroon   CMR       2010       
## 3473                                    Cameroon   CMR       2011       
## 3474                                    Cameroon   CMR       2012       
## 3475                                    Cameroon   CMR       2013       
## 3476                                    Cameroon   CMR       2014       
## 3477                                    Cameroon   CMR       2015       
## 3478                                    Cameroon   CMR       2016       
## 3479                                    Cameroon   CMR       2017       
## 3480                                    Cameroon   CMR       2018       
## 3481                                    Cameroon   CMR       2019       
## 3482                                    Cameroon   CMR       2020       
## 3483                                      Canada    CA   CAN 1961       
## 3484                                      Canada    CA   CAN 1960       
## 3485                                      Canada    CA   CAN 2000       
## 3486                                      Canada    CA   CAN 2011       
## 3487                                      Canada    CA   CAN 2004       
## 3488                                      Canada    CA   CAN 1963       
## 3489                                      Canada    CA   CAN 1962       
## 3490                                      Canada    CA   CAN 1971       
## 3491                                      Canada    CA   CAN 2015       
## 3492                                      Canada    CA   CAN 1988       
## 3493                                      Canada    CA   CAN 2005       
## 3494                                      Canada    CA   CAN 2002       
## 3495                                      Canada    CA   CAN 1999       
## 3496                                      Canada    CA   CAN 1977       
## 3497                                      Canada    CA   CAN 1966       
## 3498                                      Canada    CA   CAN 1996       
## 3499                                      Canada    CA   CAN 1973       
## 3500                                      Canada    CA   CAN 1970       
## 3501                                      Canada    CA   CAN 1972       
## 3502                                      Canada    CA   CAN 1979       
## 3503                                      Canada    CA   CAN 1980       
## 3504                                      Canada    CA   CAN 1981       
## 3505                                      Canada    CA   CAN 2019       
## 3506                                      Canada    CA   CAN 2009       
## 3507                                      Canada    CA   CAN 2013       
## 3508                                      Canada    CA   CAN 2003       
## 3509                                      Canada    CA   CAN 1965       
## 3510                                      Canada    CA   CAN 2001       
## 3511                                      Canada    CA   CAN 1975       
## 3512                                      Canada    CA   CAN 1997       
## 3513                                      Canada    CA   CAN 1968       
## 3514                                      Canada    CA   CAN 2006       
## 3515                                      Canada    CA   CAN 2017       
## 3516                                      Canada    CA   CAN 1978       
## 3517                                      Canada    CA   CAN 2020       
## 3518                                      Canada    CA   CAN 1982       
## 3519                                      Canada    CA   CAN 1986       
## 3520                                      Canada    CA   CAN 2008       
## 3521                                      Canada    CA   CAN 2016       
## 3522                                      Canada    CA   CAN 1984       
## 3523                                      Canada    CA   CAN 2014       
## 3524                                      Canada    CA   CAN 1964       
## 3525                                      Canada    CA   CAN 1974       
## 3526                                      Canada    CA   CAN 2010       
## 3527                                      Canada    CA   CAN 1987       
## 3528                                      Canada    CA   CAN 2022       
## 3529                                      Canada    CA   CAN 2018       
## 3530                                      Canada    CA   CAN 1998       
## 3531                                      Canada    CA   CAN 2012       
## 3532                                      Canada    CA   CAN 1994       
## 3533                                      Canada    CA   CAN 1993       
## 3534                                      Canada    CA   CAN 2021       
## 3535                                      Canada    CA   CAN 2007       
## 3536                                      Canada    CA   CAN 1969       
## 3537                                      Canada    CA   CAN 1976       
## 3538                                      Canada    CA   CAN 1989       
## 3539                                      Canada    CA   CAN 1995       
## 3540                                      Canada    CA   CAN 1967       
## 3541                                      Canada    CA   CAN 1983       
## 3542                                      Canada    CA   CAN 1991       
## 3543                                      Canada    CA   CAN 1992       
## 3544                                      Canada    CA   CAN 1990       
## 3545                                      Canada    CA   CAN 1985       
## 3546                                      Canada   CAN       1987       
## 3547                                      Canada   CAN       1988       
## 3548                                      Canada   CAN       1989       
## 3549                                      Canada   CAN       1990       
## 3550                                      Canada   CAN       1991       
## 3551                                      Canada   CAN       1992       
## 3552                                      Canada   CAN       1993       
## 3553                                      Canada   CAN       1994       
## 3554                                      Canada   CAN       1995       
## 3555                                      Canada   CAN       1996       
## 3556                                      Canada   CAN       1997       
## 3557                                      Canada   CAN       1998       
## 3558                                      Canada   CAN       1999       
## 3559                                      Canada   CAN       2000       
## 3560                                      Canada   CAN       2001       
## 3561                                      Canada   CAN       2002       
## 3562                                      Canada   CAN       2003       
## 3563                                      Canada   CAN       2004       
## 3564                                      Canada   CAN       2005       
## 3565                                      Canada   CAN       2006       
## 3566                                      Canada   CAN       2007       
## 3567                                      Canada   CAN       2008       
## 3568                                      Canada   CAN       2009       
## 3569                                      Canada   CAN       2010       
## 3570                                      Canada   CAN       2011       
## 3571                                      Canada   CAN       2012       
## 3572                                      Canada   CAN       2013       
## 3573                                      Canada   CAN       2014       
## 3574                                      Canada   CAN       2015       
## 3575                                      Canada   CAN       2016       
## 3576                                      Canada   CAN       2017       
## 3577                                      Canada   CAN       2018       
## 3578                                      Canada   CAN       2019       
## 3579                                      Canada   CAN       2020       
## 3580                                  Cape Verde   CPV       1987       
## 3581                                  Cape Verde   CPV       1988       
## 3582                                  Cape Verde   CPV       1989       
## 3583                                  Cape Verde   CPV       1990       
## 3584                                  Cape Verde   CPV       1991       
## 3585                                  Cape Verde   CPV       1992       
## 3586                                  Cape Verde   CPV       1993       
## 3587                                  Cape Verde   CPV       1994       
## 3588                                  Cape Verde   CPV       1995       
## 3589                                  Cape Verde   CPV       1996       
## 3590                                  Cape Verde   CPV       1997       
## 3591                                  Cape Verde   CPV       1998       
## 3592                                  Cape Verde   CPV       1999       
## 3593                                  Cape Verde   CPV       2000       
## 3594                                  Cape Verde   CPV       2001       
## 3595                                  Cape Verde   CPV       2002       
## 3596                                  Cape Verde   CPV       2003       
## 3597                                  Cape Verde   CPV       2004       
## 3598                                  Cape Verde   CPV       2005       
## 3599                                  Cape Verde   CPV       2006       
## 3600                                  Cape Verde   CPV       2007       
## 3601                                  Cape Verde   CPV       2008       
## 3602                                  Cape Verde   CPV       2009       
## 3603                                  Cape Verde   CPV       2010       
## 3604                                  Cape Verde   CPV       2011       
## 3605                                  Cape Verde   CPV       2012       
## 3606                                  Cape Verde   CPV       2013       
## 3607                                  Cape Verde   CPV       2014       
## 3608                                  Cape Verde   CPV       2015       
## 3609                                  Cape Verde   CPV       2016       
## 3610                                  Cape Verde   CPV       2017       
## 3611                                  Cape Verde   CPV       2018       
## 3612                                  Cape Verde   CPV       2019       
## 3613                                  Cape Verde   CPV       2020       
## 3614                      Caribbean small states    S3   CSS 1966       
## 3615                      Caribbean small states    S3   CSS 1967       
## 3616                      Caribbean small states    S3   CSS 1989       
## 3617                      Caribbean small states    S3   CSS 1964       
## 3618                      Caribbean small states    S3   CSS 2003       
## 3619                      Caribbean small states    S3   CSS 2004       
## 3620                      Caribbean small states    S3   CSS 2013       
## 3621                      Caribbean small states    S3   CSS 2011       
## 3622                      Caribbean small states    S3   CSS 2001       
## 3623                      Caribbean small states    S3   CSS 2015       
## 3624                      Caribbean small states    S3   CSS 1985       
## 3625                      Caribbean small states    S3   CSS 2002       
## 3626                      Caribbean small states    S3   CSS 1996       
## 3627                      Caribbean small states    S3   CSS 1963       
## 3628                      Caribbean small states    S3   CSS 2014       
## 3629                      Caribbean small states    S3   CSS 1987       
## 3630                      Caribbean small states    S3   CSS 2019       
## 3631                      Caribbean small states    S3   CSS 1999       
## 3632                      Caribbean small states    S3   CSS 2000       
## 3633                      Caribbean small states    S3   CSS 2012       
## 3634                      Caribbean small states    S3   CSS 1984       
## 3635                      Caribbean small states    S3   CSS 1962       
## 3636                      Caribbean small states    S3   CSS 1983       
## 3637                      Caribbean small states    S3   CSS 1986       
## 3638                      Caribbean small states    S3   CSS 1992       
## 3639                      Caribbean small states    S3   CSS 2010       
## 3640                      Caribbean small states    S3   CSS 2021       
## 3641                      Caribbean small states    S3   CSS 2018       
## 3642                      Caribbean small states    S3   CSS 2017       
## 3643                      Caribbean small states    S3   CSS 2006       
## 3644                      Caribbean small states    S3   CSS 2005       
## 3645                      Caribbean small states    S3   CSS 1990       
## 3646                      Caribbean small states    S3   CSS 1991       
## 3647                      Caribbean small states    S3   CSS 1993       
## 3648                      Caribbean small states    S3   CSS 1995       
## 3649                      Caribbean small states    S3   CSS 1961       
## 3650                      Caribbean small states    S3   CSS 2016       
## 3651                      Caribbean small states    S3   CSS 2022       
## 3652                      Caribbean small states    S3   CSS 1971       
## 3653                      Caribbean small states    S3   CSS 1981       
## 3654                      Caribbean small states    S3   CSS 1965       
## 3655                      Caribbean small states    S3   CSS 1988       
## 3656                      Caribbean small states    S3   CSS 1973       
## 3657                      Caribbean small states    S3   CSS 1960       
## 3658                      Caribbean small states    S3   CSS 1998       
## 3659                      Caribbean small states    S3   CSS 2007       
## 3660                      Caribbean small states    S3   CSS 2009       
## 3661                      Caribbean small states    S3   CSS 1976       
## 3662                      Caribbean small states    S3   CSS 1970       
## 3663                      Caribbean small states    S3   CSS 2020       
## 3664                      Caribbean small states    S3   CSS 1972       
## 3665                      Caribbean small states    S3   CSS 1980       
## 3666                      Caribbean small states    S3   CSS 1968       
## 3667                      Caribbean small states    S3   CSS 1969       
## 3668                      Caribbean small states    S3   CSS 1997       
## 3669                      Caribbean small states    S3   CSS 1979       
## 3670                      Caribbean small states    S3   CSS 1974       
## 3671                      Caribbean small states    S3   CSS 1994       
## 3672                      Caribbean small states    S3   CSS 1982       
## 3673                      Caribbean small states    S3   CSS 2008       
## 3674                      Caribbean small states    S3   CSS 1978       
## 3675                      Caribbean small states    S3   CSS 1977       
## 3676                      Caribbean small states    S3   CSS 1975       
## 3677                              Cayman Islands   CYM       1987       
## 3678                              Cayman Islands   CYM       1988       
## 3679                              Cayman Islands   CYM       1989       
## 3680                              Cayman Islands   CYM       1990       
## 3681                              Cayman Islands   CYM       1991       
## 3682                              Cayman Islands   CYM       1992       
## 3683                              Cayman Islands   CYM       1993       
## 3684                              Cayman Islands   CYM       1994       
## 3685                              Cayman Islands   CYM       1995       
## 3686                              Cayman Islands   CYM       1996       
## 3687                              Cayman Islands   CYM       1997       
## 3688                              Cayman Islands   CYM       1998       
## 3689                              Cayman Islands   CYM       1999       
## 3690                              Cayman Islands   CYM       2000       
## 3691                              Cayman Islands   CYM       2001       
## 3692                              Cayman Islands   CYM       2002       
## 3693                              Cayman Islands   CYM       2003       
## 3694                              Cayman Islands   CYM       2004       
## 3695                              Cayman Islands   CYM       2005       
## 3696                              Cayman Islands   CYM       2006       
## 3697                              Cayman Islands   CYM       2007       
## 3698                              Cayman Islands   CYM       2008       
## 3699                              Cayman Islands   CYM       2009       
## 3700                              Cayman Islands   CYM       2010       
## 3701                              Cayman Islands   CYM       2011       
## 3702                              Cayman Islands   CYM       2012       
## 3703                              Cayman Islands   CYM       2013       
## 3704                              Cayman Islands   CYM       2014       
## 3705                              Cayman Islands   CYM       2015       
## 3706                              Cayman Islands   CYM       2016       
## 3707                              Cayman Islands   CYM       2017       
## 3708                              Cayman Islands   CYM       2018       
## 3709                              Cayman Islands   CYM       2019       
## 3710                              Cayman Islands   CYM       2020       
## 3711                              Cayman Islands    KY   CYM 1967       
## 3712                              Cayman Islands    KY   CYM 1962       
## 3713                              Cayman Islands    KY   CYM 1963       
## 3714                              Cayman Islands    KY   CYM 1960       
## 3715                              Cayman Islands    KY   CYM 1979       
## 3716                              Cayman Islands    KY   CYM 1977       
## 3717                              Cayman Islands    KY   CYM 1961       
## 3718                              Cayman Islands    KY   CYM 1984       
## 3719                              Cayman Islands    KY   CYM 1996       
## 3720                              Cayman Islands    KY   CYM 1983       
## 3721                              Cayman Islands    KY   CYM 1965       
## 3722                              Cayman Islands    KY   CYM 1969       
## 3723                              Cayman Islands    KY   CYM 1982       
## 3724                              Cayman Islands    KY   CYM 1980       
## 3725                              Cayman Islands    KY   CYM 2021       
## 3726                              Cayman Islands    KY   CYM 1974       
## 3727                              Cayman Islands    KY   CYM 1994       
## 3728                              Cayman Islands    KY   CYM 1978       
## 3729                              Cayman Islands    KY   CYM 1995       
## 3730                              Cayman Islands    KY   CYM 1988       
## 3731                              Cayman Islands    KY   CYM 2020       
## 3732                              Cayman Islands    KY   CYM 1992       
## 3733                              Cayman Islands    KY   CYM 1999       
## 3734                              Cayman Islands    KY   CYM 1971       
## 3735                              Cayman Islands    KY   CYM 1981       
## 3736                              Cayman Islands    KY   CYM 1987       
## 3737                              Cayman Islands    KY   CYM 2017       
## 3738                              Cayman Islands    KY   CYM 2013       
## 3739                              Cayman Islands    KY   CYM 2012       
## 3740                              Cayman Islands    KY   CYM 1986       
## 3741                              Cayman Islands    KY   CYM 1964       
## 3742                              Cayman Islands    KY   CYM 1970       
## 3743                              Cayman Islands    KY   CYM 1966       
## 3744                              Cayman Islands    KY   CYM 2004       
## 3745                              Cayman Islands    KY   CYM 1973       
## 3746                              Cayman Islands    KY   CYM 2009       
## 3747                              Cayman Islands    KY   CYM 1976       
## 3748                              Cayman Islands    KY   CYM 1990       
## 3749                              Cayman Islands    KY   CYM 2010       
## 3750                              Cayman Islands    KY   CYM 2022       
## 3751                              Cayman Islands    KY   CYM 2014       
## 3752                              Cayman Islands    KY   CYM 2011       
## 3753                              Cayman Islands    KY   CYM 1991       
## 3754                              Cayman Islands    KY   CYM 2019       
## 3755                              Cayman Islands    KY   CYM 1993       
## 3756                              Cayman Islands    KY   CYM 1989       
## 3757                              Cayman Islands    KY   CYM 1975       
## 3758                              Cayman Islands    KY   CYM 2015       
## 3759                              Cayman Islands    KY   CYM 1968       
## 3760                              Cayman Islands    KY   CYM 1972       
## 3761                              Cayman Islands    KY   CYM 2008       
## 3762                              Cayman Islands    KY   CYM 2007       
## 3763                              Cayman Islands    KY   CYM 2016       
## 3764                              Cayman Islands    KY   CYM 1985       
## 3765                              Cayman Islands    KY   CYM 1997       
## 3766                              Cayman Islands    KY   CYM 2006       
## 3767                              Cayman Islands    KY   CYM 1998       
## 3768                              Cayman Islands    KY   CYM 2018       
## 3769                              Cayman Islands    KY   CYM 2003       
## 3770                              Cayman Islands    KY   CYM 2000       
## 3771                              Cayman Islands    KY   CYM 2005       
## 3772                              Cayman Islands    KY   CYM 2001       
## 3773                              Cayman Islands    KY   CYM 2002       
## 3774                    Central African Republic   CAF       1987       
## 3775                    Central African Republic   CAF       1988       
## 3776                    Central African Republic   CAF       1989       
## 3777                    Central African Republic   CAF       1990       
## 3778                    Central African Republic   CAF       1991       
## 3779                    Central African Republic   CAF       1992       
## 3780                    Central African Republic   CAF       1993       
## 3781                    Central African Republic   CAF       1994       
## 3782                    Central African Republic   CAF       1995       
## 3783                    Central African Republic   CAF       1996       
## 3784                    Central African Republic   CAF       1997       
## 3785                    Central African Republic   CAF       1998       
## 3786                    Central African Republic   CAF       1999       
## 3787                    Central African Republic   CAF       2000       
## 3788                    Central African Republic   CAF       2001       
## 3789                    Central African Republic   CAF       2002       
## 3790                    Central African Republic   CAF       2003       
## 3791                    Central African Republic   CAF       2004       
## 3792                    Central African Republic   CAF       2005       
## 3793                    Central African Republic   CAF       2006       
## 3794                    Central African Republic   CAF       2007       
## 3795                    Central African Republic   CAF       2008       
## 3796                    Central African Republic   CAF       2009       
## 3797                    Central African Republic   CAF       2010       
## 3798                    Central African Republic   CAF       2011       
## 3799                    Central African Republic   CAF       2012       
## 3800                    Central African Republic   CAF       2013       
## 3801                    Central African Republic   CAF       2014       
## 3802                    Central African Republic   CAF       2015       
## 3803                    Central African Republic   CAF       2016       
## 3804                    Central African Republic   CAF       2017       
## 3805                    Central African Republic   CAF       2018       
## 3806                    Central African Republic   CAF       2019       
## 3807                    Central African Republic   CAF       2020       
## 3808                    Central African Republic    CF   CAF 1962       
## 3809                    Central African Republic    CF   CAF 2009       
## 3810                    Central African Republic    CF   CAF 2020       
## 3811                    Central African Republic    CF   CAF 1983       
## 3812                    Central African Republic    CF   CAF 1963       
## 3813                    Central African Republic    CF   CAF 1974       
## 3814                    Central African Republic    CF   CAF 1961       
## 3815                    Central African Republic    CF   CAF 1977       
## 3816                    Central African Republic    CF   CAF 1976       
## 3817                    Central African Republic    CF   CAF 2019       
## 3818                    Central African Republic    CF   CAF 2008       
## 3819                    Central African Republic    CF   CAF 1989       
## 3820                    Central African Republic    CF   CAF 1978       
## 3821                    Central African Republic    CF   CAF 1984       
## 3822                    Central African Republic    CF   CAF 1985       
## 3823                    Central African Republic    CF   CAF 2000       
## 3824                    Central African Republic    CF   CAF 1960       
## 3825                    Central African Republic    CF   CAF 2021       
## 3826                    Central African Republic    CF   CAF 1970       
## 3827                    Central African Republic    CF   CAF 2002       
## 3828                    Central African Republic    CF   CAF 1987       
## 3829                    Central African Republic    CF   CAF 1981       
## 3830                    Central African Republic    CF   CAF 1988       
## 3831                    Central African Republic    CF   CAF 2013       
## 3832                    Central African Republic    CF   CAF 1973       
## 3833                    Central African Republic    CF   CAF 1995       
## 3834                    Central African Republic    CF   CAF 1993       
## 3835                    Central African Republic    CF   CAF 1990       
## 3836                    Central African Republic    CF   CAF 2017       
## 3837                    Central African Republic    CF   CAF 1975       
## 3838                    Central African Republic    CF   CAF 1982       
## 3839                    Central African Republic    CF   CAF 1986       
## 3840                    Central African Republic    CF   CAF 2014       
## 3841                    Central African Republic    CF   CAF 2012       
## 3842                    Central African Republic    CF   CAF 1980       
## 3843                    Central African Republic    CF   CAF 1964       
## 3844                    Central African Republic    CF   CAF 1994       
## 3845                    Central African Republic    CF   CAF 2022       
## 3846                    Central African Republic    CF   CAF 1999       
## 3847                    Central African Republic    CF   CAF 1998       
## 3848                    Central African Republic    CF   CAF 2001       
## 3849                    Central African Republic    CF   CAF 1968       
## 3850                    Central African Republic    CF   CAF 2004       
## 3851                    Central African Republic    CF   CAF 1997       
## 3852                    Central African Republic    CF   CAF 2016       
## 3853                    Central African Republic    CF   CAF 2018       
## 3854                    Central African Republic    CF   CAF 2006       
## 3855                    Central African Republic    CF   CAF 2011       
## 3856                    Central African Republic    CF   CAF 2010       
## 3857                    Central African Republic    CF   CAF 1992       
## 3858                    Central African Republic    CF   CAF 1966       
## 3859                    Central African Republic    CF   CAF 2003       
## 3860                    Central African Republic    CF   CAF 1971       
## 3861                    Central African Republic    CF   CAF 1979       
## 3862                    Central African Republic    CF   CAF 2007       
## 3863                    Central African Republic    CF   CAF 1996       
## 3864                    Central African Republic    CF   CAF 2015       
## 3865                    Central African Republic    CF   CAF 1969       
## 3866                    Central African Republic    CF   CAF 1967       
## 3867                    Central African Republic    CF   CAF 1965       
## 3868                    Central African Republic    CF   CAF 1991       
## 3869                    Central African Republic    CF   CAF 2005       
## 3870                    Central African Republic    CF   CAF 1972       
## 3871              Central Europe and the Baltics    B8   CEB 1984       
## 3872              Central Europe and the Baltics    B8   CEB 2006       
## 3873              Central Europe and the Baltics    B8   CEB 2018       
## 3874              Central Europe and the Baltics    B8   CEB 1985       
## 3875              Central Europe and the Baltics    B8   CEB 2002       
## 3876              Central Europe and the Baltics    B8   CEB 1996       
## 3877              Central Europe and the Baltics    B8   CEB 1986       
## 3878              Central Europe and the Baltics    B8   CEB 2013       
## 3879              Central Europe and the Baltics    B8   CEB 2020       
## 3880              Central Europe and the Baltics    B8   CEB 2007       
## 3881              Central Europe and the Baltics    B8   CEB 2019       
## 3882              Central Europe and the Baltics    B8   CEB 2008       
## 3883              Central Europe and the Baltics    B8   CEB 2003       
## 3884              Central Europe and the Baltics    B8   CEB 2022       
## 3885              Central Europe and the Baltics    B8   CEB 2021       
## 3886              Central Europe and the Baltics    B8   CEB 1983       
## 3887              Central Europe and the Baltics    B8   CEB 1975       
## 3888              Central Europe and the Baltics    B8   CEB 1960       
## 3889              Central Europe and the Baltics    B8   CEB 1993       
## 3890              Central Europe and the Baltics    B8   CEB 1994       
## 3891              Central Europe and the Baltics    B8   CEB 1982       
## 3892              Central Europe and the Baltics    B8   CEB 2011       
## 3893              Central Europe and the Baltics    B8   CEB 2012       
## 3894              Central Europe and the Baltics    B8   CEB 2005       
## 3895              Central Europe and the Baltics    B8   CEB 2004       
## 3896              Central Europe and the Baltics    B8   CEB 1968       
## 3897              Central Europe and the Baltics    B8   CEB 1964       
## 3898              Central Europe and the Baltics    B8   CEB 1999       
## 3899              Central Europe and the Baltics    B8   CEB 1979       
## 3900              Central Europe and the Baltics    B8   CEB 1991       
## 3901              Central Europe and the Baltics    B8   CEB 1995       
## 3902              Central Europe and the Baltics    B8   CEB 1973       
## 3903              Central Europe and the Baltics    B8   CEB 1987       
## 3904              Central Europe and the Baltics    B8   CEB 2010       
## 3905              Central Europe and the Baltics    B8   CEB 2014       
## 3906              Central Europe and the Baltics    B8   CEB 2016       
## 3907              Central Europe and the Baltics    B8   CEB 2009       
## 3908              Central Europe and the Baltics    B8   CEB 1990       
## 3909              Central Europe and the Baltics    B8   CEB 1989       
## 3910              Central Europe and the Baltics    B8   CEB 1962       
## 3911              Central Europe and the Baltics    B8   CEB 1967       
## 3912              Central Europe and the Baltics    B8   CEB 1971       
## 3913              Central Europe and the Baltics    B8   CEB 2000       
## 3914              Central Europe and the Baltics    B8   CEB 1974       
## 3915              Central Europe and the Baltics    B8   CEB 1972       
## 3916              Central Europe and the Baltics    B8   CEB 2015       
## 3917              Central Europe and the Baltics    B8   CEB 1966       
## 3918              Central Europe and the Baltics    B8   CEB 1981       
## 3919              Central Europe and the Baltics    B8   CEB 1998       
## 3920              Central Europe and the Baltics    B8   CEB 1963       
## 3921              Central Europe and the Baltics    B8   CEB 2001       
## 3922              Central Europe and the Baltics    B8   CEB 1976       
## 3923              Central Europe and the Baltics    B8   CEB 1965       
## 3924              Central Europe and the Baltics    B8   CEB 1970       
## 3925              Central Europe and the Baltics    B8   CEB 1992       
## 3926              Central Europe and the Baltics    B8   CEB 2017       
## 3927              Central Europe and the Baltics    B8   CEB 1961       
## 3928              Central Europe and the Baltics    B8   CEB 1980       
## 3929              Central Europe and the Baltics    B8   CEB 1969       
## 3930              Central Europe and the Baltics    B8   CEB 1978       
## 3931              Central Europe and the Baltics    B8   CEB 1977       
## 3932              Central Europe and the Baltics    B8   CEB 1997       
## 3933              Central Europe and the Baltics    B8   CEB 1988       
## 3934                                        Chad   TCD       1987       
## 3935                                        Chad   TCD       1988       
## 3936                                        Chad   TCD       1989       
## 3937                                        Chad   TCD       1990       
## 3938                                        Chad   TCD       1991       
## 3939                                        Chad   TCD       1992       
## 3940                                        Chad   TCD       1993       
## 3941                                        Chad   TCD       1994       
## 3942                                        Chad   TCD       1995       
## 3943                                        Chad   TCD       1996       
## 3944                                        Chad   TCD       1997       
## 3945                                        Chad   TCD       1998       
## 3946                                        Chad   TCD       1999       
## 3947                                        Chad   TCD       2000       
## 3948                                        Chad   TCD       2001       
## 3949                                        Chad   TCD       2002       
## 3950                                        Chad   TCD       2003       
## 3951                                        Chad   TCD       2004       
## 3952                                        Chad   TCD       2005       
## 3953                                        Chad   TCD       2006       
## 3954                                        Chad   TCD       2007       
## 3955                                        Chad   TCD       2008       
## 3956                                        Chad   TCD       2009       
## 3957                                        Chad   TCD       2010       
## 3958                                        Chad   TCD       2011       
## 3959                                        Chad   TCD       2012       
## 3960                                        Chad   TCD       2013       
## 3961                                        Chad   TCD       2014       
## 3962                                        Chad   TCD       2015       
## 3963                                        Chad   TCD       2016       
## 3964                                        Chad   TCD       2017       
## 3965                                        Chad   TCD       2018       
## 3966                                        Chad   TCD       2019       
## 3967                                        Chad   TCD       2020       
## 3968                                        Chad    TD   TCD 2015       
## 3969                                        Chad    TD   TCD 1965       
## 3970                                        Chad    TD   TCD 2020       
## 3971                                        Chad    TD   TCD 1960       
## 3972                                        Chad    TD   TCD 2017       
## 3973                                        Chad    TD   TCD 1999       
## 3974                                        Chad    TD   TCD 2002       
## 3975                                        Chad    TD   TCD 2019       
## 3976                                        Chad    TD   TCD 2003       
## 3977                                        Chad    TD   TCD 1974       
## 3978                                        Chad    TD   TCD 1969       
## 3979                                        Chad    TD   TCD 1998       
## 3980                                        Chad    TD   TCD 1983       
## 3981                                        Chad    TD   TCD 1976       
## 3982                                        Chad    TD   TCD 2000       
## 3983                                        Chad    TD   TCD 1978       
## 3984                                        Chad    TD   TCD 1968       
## 3985                                        Chad    TD   TCD 2012       
## 3986                                        Chad    TD   TCD 2011       
## 3987                                        Chad    TD   TCD 2006       
## 3988                                        Chad    TD   TCD 2005       
## 3989                                        Chad    TD   TCD 2009       
## 3990                                        Chad    TD   TCD 1967       
## 3991                                        Chad    TD   TCD 1995       
## 3992                                        Chad    TD   TCD 2007       
## 3993                                        Chad    TD   TCD 1979       
## 3994                                        Chad    TD   TCD 1980       
## 3995                                        Chad    TD   TCD 1972       
## 3996                                        Chad    TD   TCD 1996       
## 3997                                        Chad    TD   TCD 2014       
## 3998                                        Chad    TD   TCD 1963       
## 3999                                        Chad    TD   TCD 1993       
## 4000                                        Chad    TD   TCD 2016       
## 4001                                        Chad    TD   TCD 1966       
## 4002                                        Chad    TD   TCD 2001       
## 4003                                        Chad    TD   TCD 2018       
## 4004                                        Chad    TD   TCD 1991       
## 4005                                        Chad    TD   TCD 2021       
## 4006                                        Chad    TD   TCD 1977       
## 4007                                        Chad    TD   TCD 2004       
## 4008                                        Chad    TD   TCD 1971       
## 4009                                        Chad    TD   TCD 1964       
## 4010                                        Chad    TD   TCD 1975       
## 4011                                        Chad    TD   TCD 1973       
## 4012                                        Chad    TD   TCD 1990       
## 4013                                        Chad    TD   TCD 1981       
## 4014                                        Chad    TD   TCD 1992       
## 4015                                        Chad    TD   TCD 1970       
## 4016                                        Chad    TD   TCD 2022       
## 4017                                        Chad    TD   TCD 1997       
## 4018                                        Chad    TD   TCD 2013       
## 4019                                        Chad    TD   TCD 1962       
## 4020                                        Chad    TD   TCD 1994       
## 4021                                        Chad    TD   TCD 1989       
## 4022                                        Chad    TD   TCD 1985       
## 4023                                        Chad    TD   TCD 1987       
## 4024                                        Chad    TD   TCD 2010       
## 4025                                        Chad    TD   TCD 2008       
## 4026                                        Chad    TD   TCD 1961       
## 4027                                        Chad    TD   TCD 1982       
## 4028                                        Chad    TD   TCD 1984       
## 4029                                        Chad    TD   TCD 1986       
## 4030                                        Chad    TD   TCD 1988       
## 4031                             Channel Islands    JG   CHI 2019       
## 4032                             Channel Islands    JG   CHI 2000       
## 4033                             Channel Islands    JG   CHI 1965       
## 4034                             Channel Islands    JG   CHI 1979       
## 4035                             Channel Islands    JG   CHI 1972       
## 4036                             Channel Islands    JG   CHI 1962       
## 4037                             Channel Islands    JG   CHI 2012       
## 4038                             Channel Islands    JG   CHI 2018       
## 4039                             Channel Islands    JG   CHI 1973       
## 4040                             Channel Islands    JG   CHI 2004       
## 4041                             Channel Islands    JG   CHI 1961       
## 4042                             Channel Islands    JG   CHI 2007       
## 4043                             Channel Islands    JG   CHI 2001       
## 4044                             Channel Islands    JG   CHI 1998       
## 4045                             Channel Islands    JG   CHI 1969       
## 4046                             Channel Islands    JG   CHI 1994       
## 4047                             Channel Islands    JG   CHI 1974       
## 4048                             Channel Islands    JG   CHI 1978       
## 4049                             Channel Islands    JG   CHI 1977       
## 4050                             Channel Islands    JG   CHI 1966       
## 4051                             Channel Islands    JG   CHI 1995       
## 4052                             Channel Islands    JG   CHI 1986       
## 4053                             Channel Islands    JG   CHI 2009       
## 4054                             Channel Islands    JG   CHI 2013       
## 4055                             Channel Islands    JG   CHI 2008       
## 4056                             Channel Islands    JG   CHI 1975       
## 4057                             Channel Islands    JG   CHI 2014       
## 4058                             Channel Islands    JG   CHI 1968       
## 4059                             Channel Islands    JG   CHI 1980       
## 4060                             Channel Islands    JG   CHI 2005       
## 4061                             Channel Islands    JG   CHI 1997       
## 4062                             Channel Islands    JG   CHI 1985       
## 4063                             Channel Islands    JG   CHI 1996       
## 4064                             Channel Islands    JG   CHI 1976       
## 4065                             Channel Islands    JG   CHI 1988       
## 4066                             Channel Islands    JG   CHI 1967       
## 4067                             Channel Islands    JG   CHI 1970       
## 4068                             Channel Islands    JG   CHI 2006       
## 4069                             Channel Islands    JG   CHI 1971       
## 4070                             Channel Islands    JG   CHI 1983       
## 4071                             Channel Islands    JG   CHI 1987       
## 4072                             Channel Islands    JG   CHI 2015       
## 4073                             Channel Islands    JG   CHI 2016       
## 4074                             Channel Islands    JG   CHI 1964       
## 4075                             Channel Islands    JG   CHI 2003       
## 4076                             Channel Islands    JG   CHI 2021       
## 4077                             Channel Islands    JG   CHI 1991       
## 4078                             Channel Islands    JG   CHI 1993       
## 4079                             Channel Islands    JG   CHI 1990       
## 4080                             Channel Islands    JG   CHI 1981       
## 4081                             Channel Islands    JG   CHI 1989       
## 4082                             Channel Islands    JG   CHI 2010       
## 4083                             Channel Islands    JG   CHI 1999       
## 4084                             Channel Islands    JG   CHI 2002       
## 4085                             Channel Islands    JG   CHI 2022       
## 4086                             Channel Islands    JG   CHI 2020       
## 4087                             Channel Islands    JG   CHI 1982       
## 4088                             Channel Islands    JG   CHI 1960       
## 4089                             Channel Islands    JG   CHI 1963       
## 4090                             Channel Islands    JG   CHI 2017       
## 4091                             Channel Islands    JG   CHI 1992       
## 4092                             Channel Islands    JG   CHI 1984       
## 4093                             Channel Islands    JG   CHI 2011       
## 4094                                       Chile   CHL       1987       
## 4095                                       Chile   CHL       1988       
## 4096                                       Chile   CHL       1989       
## 4097                                       Chile   CHL       1990       
## 4098                                       Chile   CHL       1991       
## 4099                                       Chile   CHL       1992       
## 4100                                       Chile   CHL       1993       
## 4101                                       Chile   CHL       1994       
## 4102                                       Chile   CHL       1995       
## 4103                                       Chile   CHL       1996       
## 4104                                       Chile   CHL       1997       
## 4105                                       Chile   CHL       1998       
## 4106                                       Chile   CHL       1999       
## 4107                                       Chile   CHL       2000       
## 4108                                       Chile   CHL       2001       
## 4109                                       Chile   CHL       2002       
## 4110                                       Chile   CHL       2003       
## 4111                                       Chile   CHL       2004       
## 4112                                       Chile   CHL       2005       
## 4113                                       Chile   CHL       2006       
## 4114                                       Chile   CHL       2007       
## 4115                                       Chile   CHL       2008       
## 4116                                       Chile   CHL       2009       
## 4117                                       Chile   CHL       2010       
## 4118                                       Chile   CHL       2011       
## 4119                                       Chile   CHL       2012       
## 4120                                       Chile   CHL       2013       
## 4121                                       Chile   CHL       2014       
## 4122                                       Chile   CHL       2015       
## 4123                                       Chile   CHL       2016       
## 4124                                       Chile   CHL       2017       
## 4125                                       Chile   CHL       2018       
## 4126                                       Chile   CHL       2019       
## 4127                                       Chile   CHL       2020       
## 4128                                       Chile    CL   CHL 1998       
## 4129                                       Chile    CL   CHL 1989       
## 4130                                       Chile    CL   CHL 1987       
## 4131                                       Chile    CL   CHL 1997       
## 4132                                       Chile    CL   CHL 1988       
## 4133                                       Chile    CL   CHL 2021       
## 4134                                       Chile    CL   CHL 2001       
## 4135                                       Chile    CL   CHL 2020       
## 4136                                       Chile    CL   CHL 2000       
## 4137                                       Chile    CL   CHL 1996       
## 4138                                       Chile    CL   CHL 1992       
## 4139                                       Chile    CL   CHL 2019       
## 4140                                       Chile    CL   CHL 2002       
## 4141                                       Chile    CL   CHL 2003       
## 4142                                       Chile    CL   CHL 1995       
## 4143                                       Chile    CL   CHL 1993       
## 4144                                       Chile    CL   CHL 2022       
## 4145                                       Chile    CL   CHL 1979       
## 4146                                       Chile    CL   CHL 1994       
## 4147                                       Chile    CL   CHL 1991       
## 4148                                       Chile    CL   CHL 1999       
## 4149                                       Chile    CL   CHL 2004       
## 4150                                       Chile    CL   CHL 2008       
## 4151                                       Chile    CL   CHL 1962       
## 4152                                       Chile    CL   CHL 2010       
## 4153                                       Chile    CL   CHL 1968       
## 4154                                       Chile    CL   CHL 2009       
## 4155                                       Chile    CL   CHL 1982       
## 4156                                       Chile    CL   CHL 1976       
## 4157                                       Chile    CL   CHL 2005       
## 4158                                       Chile    CL   CHL 1963       
## 4159                                       Chile    CL   CHL 2007       
## 4160                                       Chile    CL   CHL 1978       
## 4161                                       Chile    CL   CHL 1974       
## 4162                                       Chile    CL   CHL 1965       
## 4163                                       Chile    CL   CHL 1973       
## 4164                                       Chile    CL   CHL 1970       
## 4165                                       Chile    CL   CHL 1969       
## 4166                                       Chile    CL   CHL 1977       
## 4167                                       Chile    CL   CHL 1983       
## 4168                                       Chile    CL   CHL 1985       
## 4169                                       Chile    CL   CHL 1984       
## 4170                                       Chile    CL   CHL 2006       
## 4171                                       Chile    CL   CHL 1990       
## 4172                                       Chile    CL   CHL 2018       
## 4173                                       Chile    CL   CHL 1972       
## 4174                                       Chile    CL   CHL 1986       
## 4175                                       Chile    CL   CHL 1967       
## 4176                                       Chile    CL   CHL 1981       
## 4177                                       Chile    CL   CHL 1961       
## 4178                                       Chile    CL   CHL 2017       
## 4179                                       Chile    CL   CHL 1964       
## 4180                                       Chile    CL   CHL 1975       
## 4181                                       Chile    CL   CHL 1966       
## 4182                                       Chile    CL   CHL 2015       
## 4183                                       Chile    CL   CHL 1960       
## 4184                                       Chile    CL   CHL 1980       
## 4185                                       Chile    CL   CHL 2012       
## 4186                                       Chile    CL   CHL 2014       
## 4187                                       Chile    CL   CHL 1971       
## 4188                                       Chile    CL   CHL 2011       
## 4189                                       Chile    CL   CHL 2013       
## 4190                                       Chile    CL   CHL 2016       
## 4191                                       China   CHN       2008       
## 4192                                       China   CHN       2009       
## 4193                                       China   CHN       2010       
## 4194                                       China   CHN       2011       
## 4195                                       China   CHN       2012       
## 4196                                       China   CHN       2013       
## 4197                                       China   CHN       2014       
## 4198                                       China   CHN       2015       
## 4199                                       China   CHN       2016       
## 4200                                       China   CHN       2017       
## 4201                                       China   CHN       2018       
## 4202                                       China   CHN       2019       
## 4203                                       China   CHN       2020       
## 4204                                       China   CHN       1987       
## 4205                                       China   CHN       1988       
## 4206                                       China   CHN       1989       
## 4207                                       China   CHN       1990       
## 4208                                       China   CHN       1991       
## 4209                                       China   CHN       1992       
## 4210                                       China   CHN       1993       
## 4211                                       China   CHN       1994       
## 4212                                       China   CHN       1995       
## 4213                                       China   CHN       1996       
## 4214                                       China   CHN       1997       
## 4215                                       China   CHN       1998       
## 4216                                       China   CHN       1999       
## 4217                                       China   CHN       2000       
## 4218                                       China   CHN       2001       
## 4219                                       China   CHN       2002       
## 4220                                       China   CHN       2003       
## 4221                                       China   CHN       2004       
## 4222                                       China   CHN       2005       
## 4223                                       China   CHN       2006       
## 4224                                       China   CHN       2007       
## 4225                                       China    CN   CHN 2015       
## 4226                                       China    CN   CHN 2004       
## 4227                                       China    CN   CHN 2020       
## 4228                                       China    CN   CHN 2014       
## 4229                                       China    CN   CHN 2021       
## 4230                                       China    CN   CHN 2022       
## 4231                                       China    CN   CHN 1989       
## 4232                                       China    CN   CHN 2017       
## 4233                                       China    CN   CHN 2016       
## 4234                                       China    CN   CHN 2019       
## 4235                                       China    CN   CHN 2010       
## 4236                                       China    CN   CHN 1984       
## 4237                                       China    CN   CHN 1990       
## 4238                                       China    CN   CHN 1966       
## 4239                                       China    CN   CHN 2003       
## 4240                                       China    CN   CHN 1979       
## 4241                                       China    CN   CHN 2002       
## 4242                                       China    CN   CHN 2011       
## 4243                                       China    CN   CHN 2008       
## 4244                                       China    CN   CHN 1983       
## 4245                                       China    CN   CHN 1969       
## 4246                                       China    CN   CHN 1991       
## 4247                                       China    CN   CHN 1993       
## 4248                                       China    CN   CHN 2000       
## 4249                                       China    CN   CHN 1988       
## 4250                                       China    CN   CHN 2001       
## 4251                                       China    CN   CHN 1973       
## 4252                                       China    CN   CHN 1960       
## 4253                                       China    CN   CHN 1987       
## 4254                                       China    CN   CHN 2007       
## 4255                                       China    CN   CHN 2013       
## 4256                                       China    CN   CHN 2012       
## 4257                                       China    CN   CHN 1998       
## 4258                                       China    CN   CHN 1976       
## 4259                                       China    CN   CHN 1982       
## 4260                                       China    CN   CHN 1981       
## 4261                                       China    CN   CHN 1961       
## 4262                                       China    CN   CHN 1996       
## 4263                                       China    CN   CHN 1986       
## 4264                                       China    CN   CHN 1985       
## 4265                                       China    CN   CHN 2005       
## 4266                                       China    CN   CHN 1970       
## 4267                                       China    CN   CHN 1975       
## 4268                                       China    CN   CHN 2009       
## 4269                                       China    CN   CHN 1963       
## 4270                                       China    CN   CHN 1999       
## 4271                                       China    CN   CHN 1978       
## 4272                                       China    CN   CHN 1968       
## 4273                                       China    CN   CHN 2006       
## 4274                                       China    CN   CHN 1962       
## 4275                                       China    CN   CHN 1997       
## 4276                                       China    CN   CHN 1971       
## 4277                                       China    CN   CHN 1974       
## 4278                                       China    CN   CHN 1977       
## 4279                                       China    CN   CHN 1992       
## 4280                                       China    CN   CHN 2018       
## 4281                                       China    CN   CHN 1994       
## 4282                                       China    CN   CHN 1972       
## 4283                                       China    CN   CHN 1980       
## 4284                                       China    CN   CHN 1995       
## 4285                                       China    CN   CHN 1964       
## 4286                                       China    CN   CHN 1967       
## 4287                                       China    CN   CHN 1965       
## 4288                                    Colombia    CO   COL 1984       
## 4289                                    Colombia    CO   COL 1963       
## 4290                                    Colombia    CO   COL 1964       
## 4291                                    Colombia    CO   COL 1986       
## 4292                                    Colombia    CO   COL 1991       
## 4293                                    Colombia    CO   COL 1985       
## 4294                                    Colombia    CO   COL 2016       
## 4295                                    Colombia    CO   COL 1981       
## 4296                                    Colombia    CO   COL 1992       
## 4297                                    Colombia    CO   COL 2000       
## 4298                                    Colombia    CO   COL 2015       
## 4299                                    Colombia    CO   COL 2006       
## 4300                                    Colombia    CO   COL 2003       
## 4301                                    Colombia    CO   COL 1966       
## 4302                                    Colombia    CO   COL 2002       
## 4303                                    Colombia    CO   COL 1962       
## 4304                                    Colombia    CO   COL 2012       
## 4305                                    Colombia    CO   COL 2017       
## 4306                                    Colombia    CO   COL 1996       
## 4307                                    Colombia    CO   COL 1973       
## 4308                                    Colombia    CO   COL 1961       
## 4309                                    Colombia    CO   COL 1960       
## 4310                                    Colombia    CO   COL 1988       
## 4311                                    Colombia    CO   COL 1965       
## 4312                                    Colombia    CO   COL 1970       
## 4313                                    Colombia    CO   COL 1975       
## 4314                                    Colombia    CO   COL 1989       
## 4315                                    Colombia    CO   COL 1974       
## 4316                                    Colombia    CO   COL 1987       
## 4317                                    Colombia    CO   COL 2013       
## 4318                                    Colombia    CO   COL 1982       
## 4319                                    Colombia    CO   COL 2021       
## 4320                                    Colombia    CO   COL 1994       
## 4321                                    Colombia    CO   COL 1979       
## 4322                                    Colombia    CO   COL 2001       
## 4323                                    Colombia    CO   COL 1976       
## 4324                                    Colombia    CO   COL 1977       
## 4325                                    Colombia    CO   COL 1969       
## 4326                                    Colombia    CO   COL 1968       
## 4327                                    Colombia    CO   COL 1978       
## 4328                                    Colombia    CO   COL 1972       
## 4329                                    Colombia    CO   COL 1999       
## 4330                                    Colombia    CO   COL 2007       
## 4331                                    Colombia    CO   COL 1998       
## 4332                                    Colombia    CO   COL 1993       
## 4333                                    Colombia    CO   COL 2005       
## 4334                                    Colombia    CO   COL 2019       
## 4335                                    Colombia    CO   COL 1990       
## 4336                                    Colombia    CO   COL 2022       
## 4337                                    Colombia    CO   COL 1967       
## 4338                                    Colombia    CO   COL 2010       
## 4339                                    Colombia    CO   COL 1983       
## 4340                                    Colombia    CO   COL 1971       
## 4341                                    Colombia    CO   COL 2009       
## 4342                                    Colombia    CO   COL 2018       
## 4343                                    Colombia    CO   COL 2014       
## 4344                                    Colombia    CO   COL 1997       
## 4345                                    Colombia    CO   COL 1980       
## 4346                                    Colombia    CO   COL 1995       
## 4347                                    Colombia    CO   COL 2008       
## 4348                                    Colombia    CO   COL 2020       
## 4349                                    Colombia    CO   COL 2004       
## 4350                                    Colombia    CO   COL 2011       
## 4351                                    Colombia   COL       1987       
## 4352                                    Colombia   COL       1988       
## 4353                                    Colombia   COL       1989       
## 4354                                    Colombia   COL       1990       
## 4355                                    Colombia   COL       1991       
## 4356                                    Colombia   COL       1992       
## 4357                                    Colombia   COL       1993       
## 4358                                    Colombia   COL       1994       
## 4359                                    Colombia   COL       1995       
## 4360                                    Colombia   COL       1996       
## 4361                                    Colombia   COL       1997       
## 4362                                    Colombia   COL       1998       
## 4363                                    Colombia   COL       1999       
## 4364                                    Colombia   COL       2000       
## 4365                                    Colombia   COL       2001       
## 4366                                    Colombia   COL       2002       
## 4367                                    Colombia   COL       2003       
## 4368                                    Colombia   COL       2004       
## 4369                                    Colombia   COL       2005       
## 4370                                    Colombia   COL       2006       
## 4371                                    Colombia   COL       2007       
## 4372                                    Colombia   COL       2008       
## 4373                                    Colombia   COL       2009       
## 4374                                    Colombia   COL       2010       
## 4375                                    Colombia   COL       2011       
## 4376                                    Colombia   COL       2012       
## 4377                                    Colombia   COL       2013       
## 4378                                    Colombia   COL       2014       
## 4379                                    Colombia   COL       2015       
## 4380                                    Colombia   COL       2016       
## 4381                                    Colombia   COL       2017       
## 4382                                    Colombia   COL       2018       
## 4383                                    Colombia   COL       2019       
## 4384                                    Colombia   COL       2020       
## 4385                    Commodity-exporting EMDE   EDE       1987       
## 4386                    Commodity-exporting EMDE   EDE       1988       
## 4387                    Commodity-exporting EMDE   EDE       1989       
## 4388                    Commodity-exporting EMDE   EDE       1990       
## 4389                    Commodity-exporting EMDE   EDE       1991       
## 4390                    Commodity-exporting EMDE   EDE       1992       
## 4391                    Commodity-exporting EMDE   EDE       1993       
## 4392                    Commodity-exporting EMDE   EDE       1994       
## 4393                    Commodity-exporting EMDE   EDE       1995       
## 4394                    Commodity-exporting EMDE   EDE       1996       
## 4395                    Commodity-exporting EMDE   EDE       1997       
## 4396                    Commodity-exporting EMDE   EDE       1998       
## 4397                    Commodity-exporting EMDE   EDE       1999       
## 4398                    Commodity-exporting EMDE   EDE       2000       
## 4399                    Commodity-exporting EMDE   EDE       2001       
## 4400                    Commodity-exporting EMDE   EDE       2002       
## 4401                    Commodity-exporting EMDE   EDE       2003       
## 4402                    Commodity-exporting EMDE   EDE       2004       
## 4403                    Commodity-exporting EMDE   EDE       2005       
## 4404                    Commodity-exporting EMDE   EDE       2006       
## 4405                    Commodity-exporting EMDE   EDE       2007       
## 4406                    Commodity-exporting EMDE   EDE       2008       
## 4407                    Commodity-exporting EMDE   EDE       2009       
## 4408                    Commodity-exporting EMDE   EDE       2010       
## 4409                    Commodity-exporting EMDE   EDE       2011       
## 4410                    Commodity-exporting EMDE   EDE       2012       
## 4411                    Commodity-exporting EMDE   EDE       2013       
## 4412                    Commodity-exporting EMDE   EDE       2014       
## 4413                    Commodity-exporting EMDE   EDE       2015       
## 4414                    Commodity-exporting EMDE   EDE       2016       
## 4415                    Commodity-exporting EMDE   EDE       2017       
## 4416                    Commodity-exporting EMDE   EDE       2018       
## 4417                    Commodity-exporting EMDE   EDE       2019       
## 4418                    Commodity-exporting EMDE   EDE       2020       
## 4419                    Commodity-importing EMDE   EDI       1993       
## 4420                    Commodity-importing EMDE   EDI       1994       
## 4421                    Commodity-importing EMDE   EDI       1995       
## 4422                    Commodity-importing EMDE   EDI       1996       
## 4423                    Commodity-importing EMDE   EDI       1997       
## 4424                    Commodity-importing EMDE   EDI       1998       
## 4425                    Commodity-importing EMDE   EDI       1999       
## 4426                    Commodity-importing EMDE   EDI       2000       
## 4427                    Commodity-importing EMDE   EDI       2001       
## 4428                    Commodity-importing EMDE   EDI       2002       
## 4429                    Commodity-importing EMDE   EDI       2003       
## 4430                    Commodity-importing EMDE   EDI       2004       
## 4431                    Commodity-importing EMDE   EDI       2005       
## 4432                    Commodity-importing EMDE   EDI       2006       
## 4433                    Commodity-importing EMDE   EDI       1987       
## 4434                    Commodity-importing EMDE   EDI       1988       
## 4435                    Commodity-importing EMDE   EDI       1989       
## 4436                    Commodity-importing EMDE   EDI       1990       
## 4437                    Commodity-importing EMDE   EDI       1991       
## 4438                    Commodity-importing EMDE   EDI       1992       
## 4439                    Commodity-importing EMDE   EDI       2007       
## 4440                    Commodity-importing EMDE   EDI       2008       
## 4441                    Commodity-importing EMDE   EDI       2009       
## 4442                    Commodity-importing EMDE   EDI       2010       
## 4443                    Commodity-importing EMDE   EDI       2011       
## 4444                    Commodity-importing EMDE   EDI       2012       
## 4445                    Commodity-importing EMDE   EDI       2013       
## 4446                    Commodity-importing EMDE   EDI       2014       
## 4447                    Commodity-importing EMDE   EDI       2015       
## 4448                    Commodity-importing EMDE   EDI       2016       
## 4449                    Commodity-importing EMDE   EDI       2017       
## 4450                    Commodity-importing EMDE   EDI       2018       
## 4451                    Commodity-importing EMDE   EDI       2019       
## 4452                    Commodity-importing EMDE   EDI       2020       
## 4453    Commodity-importing EMDE excluding China   EDX       1987       
## 4454    Commodity-importing EMDE excluding China   EDX       1988       
## 4455    Commodity-importing EMDE excluding China   EDX       1989       
## 4456    Commodity-importing EMDE excluding China   EDX       1990       
## 4457    Commodity-importing EMDE excluding China   EDX       1991       
## 4458    Commodity-importing EMDE excluding China   EDX       1992       
## 4459    Commodity-importing EMDE excluding China   EDX       1993       
## 4460    Commodity-importing EMDE excluding China   EDX       1994       
## 4461    Commodity-importing EMDE excluding China   EDX       1995       
## 4462    Commodity-importing EMDE excluding China   EDX       1996       
## 4463    Commodity-importing EMDE excluding China   EDX       1997       
## 4464    Commodity-importing EMDE excluding China   EDX       1998       
## 4465    Commodity-importing EMDE excluding China   EDX       1999       
## 4466    Commodity-importing EMDE excluding China   EDX       2000       
## 4467    Commodity-importing EMDE excluding China   EDX       2001       
## 4468    Commodity-importing EMDE excluding China   EDX       2002       
## 4469    Commodity-importing EMDE excluding China   EDX       2013       
## 4470    Commodity-importing EMDE excluding China   EDX       2014       
## 4471    Commodity-importing EMDE excluding China   EDX       2015       
## 4472    Commodity-importing EMDE excluding China   EDX       2016       
## 4473    Commodity-importing EMDE excluding China   EDX       2017       
## 4474    Commodity-importing EMDE excluding China   EDX       2018       
## 4475    Commodity-importing EMDE excluding China   EDX       2003       
## 4476    Commodity-importing EMDE excluding China   EDX       2004       
## 4477    Commodity-importing EMDE excluding China   EDX       2005       
## 4478    Commodity-importing EMDE excluding China   EDX       2006       
## 4479    Commodity-importing EMDE excluding China   EDX       2007       
## 4480    Commodity-importing EMDE excluding China   EDX       2008       
## 4481    Commodity-importing EMDE excluding China   EDX       2009       
## 4482    Commodity-importing EMDE excluding China   EDX       2010       
## 4483    Commodity-importing EMDE excluding China   EDX       2011       
## 4484    Commodity-importing EMDE excluding China   EDX       2012       
## 4485    Commodity-importing EMDE excluding China   EDX       2019       
## 4486    Commodity-importing EMDE excluding China   EDX       2020       
## 4487                                     Comoros   COM       2003       
## 4488                                     Comoros   COM       2004       
## 4489                                     Comoros   COM       2005       
## 4490                                     Comoros   COM       2006       
## 4491                                     Comoros   COM       2007       
## 4492                                     Comoros   COM       2008       
## 4493                                     Comoros   COM       2009       
## 4494                                     Comoros   COM       2010       
## 4495                                     Comoros   COM       2011       
## 4496                                     Comoros   COM       2012       
## 4497                                     Comoros   COM       2013       
## 4498                                     Comoros   COM       2014       
## 4499                                     Comoros   COM       2015       
## 4500                                     Comoros   COM       2016       
## 4501                                     Comoros   COM       2017       
## 4502                                     Comoros   COM       2018       
## 4503                                     Comoros   COM       2019       
## 4504                                     Comoros   COM       2020       
## 4505                                     Comoros   COM       1999       
## 4506                                     Comoros   COM       2000       
## 4507                                     Comoros   COM       2001       
## 4508                                     Comoros   COM       2002       
## 4509                                     Comoros   COM       1995       
## 4510                                     Comoros   COM       1996       
## 4511                                     Comoros   COM       1997       
## 4512                                     Comoros   COM       1998       
## 4513                                     Comoros   COM       1987       
## 4514                                     Comoros   COM       1988       
## 4515                                     Comoros   COM       1989       
## 4516                                     Comoros   COM       1990       
## 4517                                     Comoros   COM       1991       
## 4518                                     Comoros   COM       1992       
## 4519                                     Comoros   COM       1993       
## 4520                                     Comoros   COM       1994       
## 4521                                     Comoros    KM   COM 1987       
## 4522                                     Comoros    KM   COM 2022       
## 4523                                     Comoros    KM   COM 1975       
## 4524                                     Comoros    KM   COM 1986       
## 4525                                     Comoros    KM   COM 1984       
## 4526                                     Comoros    KM   COM 2020       
## 4527                                     Comoros    KM   COM 1978       
## 4528                                     Comoros    KM   COM 2013       
## 4529                                     Comoros    KM   COM 1988       
## 4530                                     Comoros    KM   COM 2001       
## 4531                                     Comoros    KM   COM 1968       
## 4532                                     Comoros    KM   COM 1977       
## 4533                                     Comoros    KM   COM 2021       
## 4534                                     Comoros    KM   COM 1972       
## 4535                                     Comoros    KM   COM 1985       
## 4536                                     Comoros    KM   COM 1983       
## 4537                                     Comoros    KM   COM 2014       
## 4538                                     Comoros    KM   COM 2012       
## 4539                                     Comoros    KM   COM 1992       
## 4540                                     Comoros    KM   COM 1989       
## 4541                                     Comoros    KM   COM 2005       
## 4542                                     Comoros    KM   COM 2002       
## 4543                                     Comoros    KM   COM 2008       
## 4544                                     Comoros    KM   COM 2000       
## 4545                                     Comoros    KM   COM 1965       
## 4546                                     Comoros    KM   COM 1976       
## 4547                                     Comoros    KM   COM 1990       
## 4548                                     Comoros    KM   COM 1971       
## 4549                                     Comoros    KM   COM 2015       
## 4550                                     Comoros    KM   COM 2016       
## 4551                                     Comoros    KM   COM 2011       
## 4552                                     Comoros    KM   COM 1981       
## 4553                                     Comoros    KM   COM 1991       
## 4554                                     Comoros    KM   COM 1967       
## 4555                                     Comoros    KM   COM 2018       
## 4556                                     Comoros    KM   COM 1993       
## 4557                                     Comoros    KM   COM 1962       
## 4558                                     Comoros    KM   COM 2019       
## 4559                                     Comoros    KM   COM 1974       
## 4560                                     Comoros    KM   COM 1970       
## 4561                                     Comoros    KM   COM 2006       
## 4562                                     Comoros    KM   COM 1969       
## 4563                                     Comoros    KM   COM 1979       
## 4564                                     Comoros    KM   COM 1982       
## 4565                                     Comoros    KM   COM 1973       
## 4566                                     Comoros    KM   COM 1963       
## 4567                                     Comoros    KM   COM 1996       
## 4568                                     Comoros    KM   COM 1964       
## 4569                                     Comoros    KM   COM 1995       
## 4570                                     Comoros    KM   COM 1966       
## 4571                                     Comoros    KM   COM 2004       
## 4572                                     Comoros    KM   COM 1960       
## 4573                                     Comoros    KM   COM 1980       
## 4574                                     Comoros    KM   COM 1997       
## 4575                                     Comoros    KM   COM 1998       
## 4576                                     Comoros    KM   COM 1961       
## 4577                                     Comoros    KM   COM 2003       
## 4578                                     Comoros    KM   COM 2010       
## 4579                                     Comoros    KM   COM 2017       
## 4580                                     Comoros    KM   COM 2009       
## 4581                                     Comoros    KM   COM 1994       
## 4582                                     Comoros    KM   COM 1999       
## 4583                                     Comoros    KM   COM 2007       
## 4584                             Congo Dem. Rep.   COD       2003       
## 4585                             Congo Dem. Rep.   COD       2004       
## 4586                             Congo Dem. Rep.   COD       2005       
## 4587                             Congo Dem. Rep.   COD       2006       
## 4588                             Congo Dem. Rep.   COD       2007       
## 4589                             Congo Dem. Rep.   COD       2008       
## 4590                             Congo Dem. Rep.   COD       2009       
## 4591                             Congo Dem. Rep.   COD       2010       
## 4592                             Congo Dem. Rep.   COD       2011       
## 4593                             Congo Dem. Rep.   COD       2012       
## 4594                             Congo Dem. Rep.   COD       2013       
## 4595                             Congo Dem. Rep.   COD       2014       
## 4596                             Congo Dem. Rep.   COD       2015       
## 4597                             Congo Dem. Rep.   COD       2016       
## 4598                             Congo Dem. Rep.   COD       2017       
## 4599                             Congo Dem. Rep.   COD       2018       
## 4600                             Congo Dem. Rep.   COD       2019       
## 4601                             Congo Dem. Rep.   COD       2020       
## 4602                             Congo Dem. Rep.   COD       1987       
## 4603                             Congo Dem. Rep.   COD       1988       
## 4604                             Congo Dem. Rep.   COD       1989       
## 4605                             Congo Dem. Rep.   COD       1990       
## 4606                             Congo Dem. Rep.   COD       1991       
## 4607                             Congo Dem. Rep.   COD       1992       
## 4608                             Congo Dem. Rep.   COD       1993       
## 4609                             Congo Dem. Rep.   COD       1994       
## 4610                             Congo Dem. Rep.   COD       1995       
## 4611                             Congo Dem. Rep.   COD       1996       
## 4612                             Congo Dem. Rep.   COD       1997       
## 4613                             Congo Dem. Rep.   COD       1998       
## 4614                             Congo Dem. Rep.   COD       1999       
## 4615                             Congo Dem. Rep.   COD       2000       
## 4616                             Congo Dem. Rep.   COD       2001       
## 4617                             Congo Dem. Rep.   COD       2002       
## 4618                                  Congo Rep.   COG       1987       
## 4619                                  Congo Rep.   COG       1988       
## 4620                                  Congo Rep.   COG       1989       
## 4621                                  Congo Rep.   COG       1990       
## 4622                                  Congo Rep.   COG       1991       
## 4623                                  Congo Rep.   COG       1992       
## 4624                                  Congo Rep.   COG       1993       
## 4625                                  Congo Rep.   COG       1994       
## 4626                                  Congo Rep.   COG       1995       
## 4627                                  Congo Rep.   COG       1996       
## 4628                                  Congo Rep.   COG       1997       
## 4629                                  Congo Rep.   COG       1998       
## 4630                                  Congo Rep.   COG       1999       
## 4631                                  Congo Rep.   COG       2000       
## 4632                                  Congo Rep.   COG       2001       
## 4633                                  Congo Rep.   COG       2002       
## 4634                                  Congo Rep.   COG       2003       
## 4635                                  Congo Rep.   COG       2004       
## 4636                                  Congo Rep.   COG       2005       
## 4637                                  Congo Rep.   COG       2006       
## 4638                                  Congo Rep.   COG       2007       
## 4639                                  Congo Rep.   COG       2008       
## 4640                                  Congo Rep.   COG       2009       
## 4641                                  Congo Rep.   COG       2010       
## 4642                                  Congo Rep.   COG       2011       
## 4643                                  Congo Rep.   COG       2012       
## 4644                                  Congo Rep.   COG       2013       
## 4645                                  Congo Rep.   COG       2014       
## 4646                                  Congo Rep.   COG       2015       
## 4647                                  Congo Rep.   COG       2016       
## 4648                                  Congo Rep.   COG       2017       
## 4649                                  Congo Rep.   COG       2018       
## 4650                                  Congo Rep.   COG       2019       
## 4651                                  Congo Rep.   COG       2020       
## 4652                            Congo, Dem. Rep.    CD   COD 1988       
## 4653                            Congo, Dem. Rep.    CD   COD 2007       
## 4654                            Congo, Dem. Rep.    CD   COD 1985       
## 4655                            Congo, Dem. Rep.    CD   COD 1987       
## 4656                            Congo, Dem. Rep.    CD   COD 1980       
## 4657                            Congo, Dem. Rep.    CD   COD 1983       
## 4658                            Congo, Dem. Rep.    CD   COD 1986       
## 4659                            Congo, Dem. Rep.    CD   COD 1979       
## 4660                            Congo, Dem. Rep.    CD   COD 1991       
## 4661                            Congo, Dem. Rep.    CD   COD 1966       
## 4662                            Congo, Dem. Rep.    CD   COD 2022       
## 4663                            Congo, Dem. Rep.    CD   COD 1982       
## 4664                            Congo, Dem. Rep.    CD   COD 1981       
## 4665                            Congo, Dem. Rep.    CD   COD 2010       
## 4666                            Congo, Dem. Rep.    CD   COD 1984       
## 4667                            Congo, Dem. Rep.    CD   COD 2013       
## 4668                            Congo, Dem. Rep.    CD   COD 2001       
## 4669                            Congo, Dem. Rep.    CD   COD 2005       
## 4670                            Congo, Dem. Rep.    CD   COD 2000       
## 4671                            Congo, Dem. Rep.    CD   COD 2009       
## 4672                            Congo, Dem. Rep.    CD   COD 1978       
## 4673                            Congo, Dem. Rep.    CD   COD 2006       
## 4674                            Congo, Dem. Rep.    CD   COD 2015       
## 4675                            Congo, Dem. Rep.    CD   COD 2018       
## 4676                            Congo, Dem. Rep.    CD   COD 2012       
## 4677                            Congo, Dem. Rep.    CD   COD 1990       
## 4678                            Congo, Dem. Rep.    CD   COD 2019       
## 4679                            Congo, Dem. Rep.    CD   COD 2020       
## 4680                            Congo, Dem. Rep.    CD   COD 2017       
## 4681                            Congo, Dem. Rep.    CD   COD 1964       
## 4682                            Congo, Dem. Rep.    CD   COD 1965       
## 4683                            Congo, Dem. Rep.    CD   COD 1960       
## 4684                            Congo, Dem. Rep.    CD   COD 1973       
## 4685                            Congo, Dem. Rep.    CD   COD 2021       
## 4686                            Congo, Dem. Rep.    CD   COD 2008       
## 4687                            Congo, Dem. Rep.    CD   COD 1989       
## 4688                            Congo, Dem. Rep.    CD   COD 2014       
## 4689                            Congo, Dem. Rep.    CD   COD 1995       
## 4690                            Congo, Dem. Rep.    CD   COD 1994       
## 4691                            Congo, Dem. Rep.    CD   COD 1961       
## 4692                            Congo, Dem. Rep.    CD   COD 1962       
## 4693                            Congo, Dem. Rep.    CD   COD 1975       
## 4694                            Congo, Dem. Rep.    CD   COD 1976       
## 4695                            Congo, Dem. Rep.    CD   COD 1971       
## 4696                            Congo, Dem. Rep.    CD   COD 1977       
## 4697                            Congo, Dem. Rep.    CD   COD 2011       
## 4698                            Congo, Dem. Rep.    CD   COD 1998       
## 4699                            Congo, Dem. Rep.    CD   COD 1974       
## 4700                            Congo, Dem. Rep.    CD   COD 1963       
## 4701                            Congo, Dem. Rep.    CD   COD 1968       
## 4702                            Congo, Dem. Rep.    CD   COD 1969       
## 4703                            Congo, Dem. Rep.    CD   COD 1972       
## 4704                            Congo, Dem. Rep.    CD   COD 1970       
## 4705                            Congo, Dem. Rep.    CD   COD 1996       
## 4706                            Congo, Dem. Rep.    CD   COD 1999       
## 4707                            Congo, Dem. Rep.    CD   COD 2003       
## 4708                            Congo, Dem. Rep.    CD   COD 1967       
## 4709                            Congo, Dem. Rep.    CD   COD 2004       
## 4710                            Congo, Dem. Rep.    CD   COD 2002       
## 4711                            Congo, Dem. Rep.    CD   COD 2016       
## 4712                            Congo, Dem. Rep.    CD   COD 1992       
## 4713                            Congo, Dem. Rep.    CD   COD 1997       
## 4714                            Congo, Dem. Rep.    CD   COD 1993       
## 4715                                 Congo, Rep.    CG   COG 1982       
## 4716                                 Congo, Rep.    CG   COG 1978       
## 4717                                 Congo, Rep.    CG   COG 1977       
## 4718                                 Congo, Rep.    CG   COG 1990       
## 4719                                 Congo, Rep.    CG   COG 1983       
## 4720                                 Congo, Rep.    CG   COG 2002       
## 4721                                 Congo, Rep.    CG   COG 1996       
## 4722                                 Congo, Rep.    CG   COG 1976       
## 4723                                 Congo, Rep.    CG   COG 2015       
## 4724                                 Congo, Rep.    CG   COG 1981       
## 4725                                 Congo, Rep.    CG   COG 1984       
## 4726                                 Congo, Rep.    CG   COG 2000       
## 4727                                 Congo, Rep.    CG   COG 1960       
## 4728                                 Congo, Rep.    CG   COG 1963       
## 4729                                 Congo, Rep.    CG   COG 1985       
## 4730                                 Congo, Rep.    CG   COG 1992       
## 4731                                 Congo, Rep.    CG   COG 1980       
## 4732                                 Congo, Rep.    CG   COG 2001       
## 4733                                 Congo, Rep.    CG   COG 1989       
## 4734                                 Congo, Rep.    CG   COG 1994       
## 4735                                 Congo, Rep.    CG   COG 1987       
## 4736                                 Congo, Rep.    CG   COG 1986       
## 4737                                 Congo, Rep.    CG   COG 2019       
## 4738                                 Congo, Rep.    CG   COG 1995       
## 4739                                 Congo, Rep.    CG   COG 1993       
## 4740                                 Congo, Rep.    CG   COG 1998       
## 4741                                 Congo, Rep.    CG   COG 1975       
## 4742                                 Congo, Rep.    CG   COG 1988       
## 4743                                 Congo, Rep.    CG   COG 1966       
## 4744                                 Congo, Rep.    CG   COG 1979       
## 4745                                 Congo, Rep.    CG   COG 1967       
## 4746                                 Congo, Rep.    CG   COG 2021       
## 4747                                 Congo, Rep.    CG   COG 2012       
## 4748                                 Congo, Rep.    CG   COG 1972       
## 4749                                 Congo, Rep.    CG   COG 2020       
## 4750                                 Congo, Rep.    CG   COG 1969       
## 4751                                 Congo, Rep.    CG   COG 2022       
## 4752                                 Congo, Rep.    CG   COG 1997       
## 4753                                 Congo, Rep.    CG   COG 1991       
## 4754                                 Congo, Rep.    CG   COG 2010       
## 4755                                 Congo, Rep.    CG   COG 1999       
## 4756                                 Congo, Rep.    CG   COG 1961       
## 4757                                 Congo, Rep.    CG   COG 1971       
## 4758                                 Congo, Rep.    CG   COG 1970       
## 4759                                 Congo, Rep.    CG   COG 2016       
## 4760                                 Congo, Rep.    CG   COG 2018       
## 4761                                 Congo, Rep.    CG   COG 2017       
## 4762                                 Congo, Rep.    CG   COG 2006       
## 4763                                 Congo, Rep.    CG   COG 2005       
## 4764                                 Congo, Rep.    CG   COG 1968       
## 4765                                 Congo, Rep.    CG   COG 1965       
## 4766                                 Congo, Rep.    CG   COG 2008       
## 4767                                 Congo, Rep.    CG   COG 2007       
## 4768                                 Congo, Rep.    CG   COG 2011       
## 4769                                 Congo, Rep.    CG   COG 2004       
## 4770                                 Congo, Rep.    CG   COG 1974       
## 4771                                 Congo, Rep.    CG   COG 1962       
## 4772                                 Congo, Rep.    CG   COG 1964       
## 4773                                 Congo, Rep.    CG   COG 2014       
## 4774                                 Congo, Rep.    CG   COG 2013       
## 4775                                 Congo, Rep.    CG   COG 1973       
## 4776                                 Congo, Rep.    CG   COG 2003       
## 4777                                 Congo, Rep.    CG   COG 2009       
## 4778                                  Costa Rica    CR   CRI 1981       
## 4779                                  Costa Rica    CR   CRI 1983       
## 4780                                  Costa Rica    CR   CRI 1977       
## 4781                                  Costa Rica    CR   CRI 1997       
## 4782                                  Costa Rica    CR   CRI 2009       
## 4783                                  Costa Rica    CR   CRI 2017       
## 4784                                  Costa Rica    CR   CRI 2006       
## 4785                                  Costa Rica    CR   CRI 2002       
## 4786                                  Costa Rica    CR   CRI 1989       
## 4787                                  Costa Rica    CR   CRI 1976       
## 4788                                  Costa Rica    CR   CRI 1975       
## 4789                                  Costa Rica    CR   CRI 2018       
## 4790                                  Costa Rica    CR   CRI 2000       
## 4791                                  Costa Rica    CR   CRI 2021       
## 4792                                  Costa Rica    CR   CRI 2007       
## 4793                                  Costa Rica    CR   CRI 2019       
## 4794                                  Costa Rica    CR   CRI 1974       
## 4795                                  Costa Rica    CR   CRI 2013       
## 4796                                  Costa Rica    CR   CRI 1965       
## 4797                                  Costa Rica    CR   CRI 1973       
## 4798                                  Costa Rica    CR   CRI 1972       
## 4799                                  Costa Rica    CR   CRI 1998       
## 4800                                  Costa Rica    CR   CRI 2008       
## 4801                                  Costa Rica    CR   CRI 2011       
## 4802                                  Costa Rica    CR   CRI 1988       
## 4803                                  Costa Rica    CR   CRI 1999       
## 4804                                  Costa Rica    CR   CRI 1992       
## 4805                                  Costa Rica    CR   CRI 1962       
## 4806                                  Costa Rica    CR   CRI 2005       
## 4807                                  Costa Rica    CR   CRI 1966       
## 4808                                  Costa Rica    CR   CRI 2010       
## 4809                                  Costa Rica    CR   CRI 1971       
## 4810                                  Costa Rica    CR   CRI 1978       
## 4811                                  Costa Rica    CR   CRI 1979       
## 4812                                  Costa Rica    CR   CRI 1961       
## 4813                                  Costa Rica    CR   CRI 2014       
## 4814                                  Costa Rica    CR   CRI 1968       
## 4815                                  Costa Rica    CR   CRI 1984       
## 4816                                  Costa Rica    CR   CRI 2001       
## 4817                                  Costa Rica    CR   CRI 1987       
## 4818                                  Costa Rica    CR   CRI 1985       
## 4819                                  Costa Rica    CR   CRI 1970       
## 4820                                  Costa Rica    CR   CRI 2003       
## 4821                                  Costa Rica    CR   CRI 2020       
## 4822                                  Costa Rica    CR   CRI 1980       
## 4823                                  Costa Rica    CR   CRI 1991       
## 4824                                  Costa Rica    CR   CRI 1964       
## 4825                                  Costa Rica    CR   CRI 2004       
## 4826                                  Costa Rica    CR   CRI 1986       
## 4827                                  Costa Rica    CR   CRI 1963       
## 4828                                  Costa Rica    CR   CRI 1967       
## 4829                                  Costa Rica    CR   CRI 1960       
## 4830                                  Costa Rica    CR   CRI 1996       
## 4831                                  Costa Rica    CR   CRI 2012       
## 4832                                  Costa Rica    CR   CRI 1990       
## 4833                                  Costa Rica    CR   CRI 2022       
## 4834                                  Costa Rica    CR   CRI 2016       
## 4835                                  Costa Rica    CR   CRI 2015       
## 4836                                  Costa Rica    CR   CRI 1982       
## 4837                                  Costa Rica    CR   CRI 1995       
## 4838                                  Costa Rica    CR   CRI 1993       
## 4839                                  Costa Rica    CR   CRI 1994       
## 4840                                  Costa Rica    CR   CRI 1969       
## 4841                                  Costa Rica   CRI       1987       
## 4842                                  Costa Rica   CRI       1988       
## 4843                                  Costa Rica   CRI       1989       
## 4844                                  Costa Rica   CRI       1990       
## 4845                                  Costa Rica   CRI       1991       
## 4846                                  Costa Rica   CRI       1992       
## 4847                                  Costa Rica   CRI       1993       
## 4848                                  Costa Rica   CRI       1994       
## 4849                                  Costa Rica   CRI       1995       
## 4850                                  Costa Rica   CRI       1996       
## 4851                                  Costa Rica   CRI       1997       
## 4852                                  Costa Rica   CRI       1998       
## 4853                                  Costa Rica   CRI       1999       
## 4854                                  Costa Rica   CRI       2000       
## 4855                                  Costa Rica   CRI       2001       
## 4856                                  Costa Rica   CRI       2002       
## 4857                                  Costa Rica   CRI       2009       
## 4858                                  Costa Rica   CRI       2010       
## 4859                                  Costa Rica   CRI       2011       
## 4860                                  Costa Rica   CRI       2012       
## 4861                                  Costa Rica   CRI       2013       
## 4862                                  Costa Rica   CRI       2014       
## 4863                                  Costa Rica   CRI       2015       
## 4864                                  Costa Rica   CRI       2016       
## 4865                                  Costa Rica   CRI       2017       
## 4866                                  Costa Rica   CRI       2018       
## 4867                                  Costa Rica   CRI       2019       
## 4868                                  Costa Rica   CRI       2020       
## 4869                                  Costa Rica   CRI       2005       
## 4870                                  Costa Rica   CRI       2006       
## 4871                                  Costa Rica   CRI       2007       
## 4872                                  Costa Rica   CRI       2008       
## 4873                                  Costa Rica   CRI       2003       
## 4874                                  Costa Rica   CRI       2004       
## 4875                               Cote d'Ivoire    CI   CIV 1970       
## 4876                               Cote d'Ivoire    CI   CIV 2006       
## 4877                               Cote d'Ivoire    CI   CIV 2003       
## 4878                               Cote d'Ivoire    CI   CIV 1989       
## 4879                               Cote d'Ivoire    CI   CIV 2007       
## 4880                               Cote d'Ivoire    CI   CIV 2005       
## 4881                               Cote d'Ivoire    CI   CIV 1984       
## 4882                               Cote d'Ivoire    CI   CIV 2004       
## 4883                               Cote d'Ivoire    CI   CIV 1960       
## 4884                               Cote d'Ivoire    CI   CIV 1968       
## 4885                               Cote d'Ivoire    CI   CIV 1995       
## 4886                               Cote d'Ivoire    CI   CIV 2002       
## 4887                               Cote d'Ivoire    CI   CIV 1991       
## 4888                               Cote d'Ivoire    CI   CIV 1996       
## 4889                               Cote d'Ivoire    CI   CIV 1990       
## 4890                               Cote d'Ivoire    CI   CIV 2013       
## 4891                               Cote d'Ivoire    CI   CIV 1992       
## 4892                               Cote d'Ivoire    CI   CIV 1967       
## 4893                               Cote d'Ivoire    CI   CIV 1969       
## 4894                               Cote d'Ivoire    CI   CIV 1987       
## 4895                               Cote d'Ivoire    CI   CIV 1988       
## 4896                               Cote d'Ivoire    CI   CIV 2000       
## 4897                               Cote d'Ivoire    CI   CIV 2019       
## 4898                               Cote d'Ivoire    CI   CIV 1965       
## 4899                               Cote d'Ivoire    CI   CIV 2001       
## 4900                               Cote d'Ivoire    CI   CIV 1986       
## 4901                               Cote d'Ivoire    CI   CIV 1983       
## 4902                               Cote d'Ivoire    CI   CIV 1994       
## 4903                               Cote d'Ivoire    CI   CIV 2008       
## 4904                               Cote d'Ivoire    CI   CIV 1999       
## 4905                               Cote d'Ivoire    CI   CIV 1998       
## 4906                               Cote d'Ivoire    CI   CIV 2016       
## 4907                               Cote d'Ivoire    CI   CIV 2018       
## 4908                               Cote d'Ivoire    CI   CIV 2017       
## 4909                               Cote d'Ivoire    CI   CIV 2012       
## 4910                               Cote d'Ivoire    CI   CIV 1966       
## 4911                               Cote d'Ivoire    CI   CIV 1979       
## 4912                               Cote d'Ivoire    CI   CIV 1993       
## 4913                               Cote d'Ivoire    CI   CIV 1997       
## 4914                               Cote d'Ivoire    CI   CIV 1961       
## 4915                               Cote d'Ivoire    CI   CIV 2022       
## 4916                               Cote d'Ivoire    CI   CIV 1977       
## 4917                               Cote d'Ivoire    CI   CIV 1963       
## 4918                               Cote d'Ivoire    CI   CIV 2014       
## 4919                               Cote d'Ivoire    CI   CIV 1981       
## 4920                               Cote d'Ivoire    CI   CIV 2021       
## 4921                               Cote d'Ivoire    CI   CIV 1982       
## 4922                               Cote d'Ivoire    CI   CIV 2015       
## 4923                               Cote d'Ivoire    CI   CIV 1962       
## 4924                               Cote d'Ivoire    CI   CIV 1976       
## 4925                               Cote d'Ivoire    CI   CIV 1975       
## 4926                               Cote d'Ivoire    CI   CIV 1978       
## 4927                               Cote d'Ivoire    CI   CIV 1964       
## 4928                               Cote d'Ivoire    CI   CIV 1974       
## 4929                               Cote d'Ivoire    CI   CIV 2011       
## 4930                               Cote d'Ivoire    CI   CIV 2010       
## 4931                               Cote d'Ivoire    CI   CIV 1985       
## 4932                               Cote d'Ivoire    CI   CIV 1980       
## 4933                               Cote d'Ivoire    CI   CIV 2009       
## 4934                               Cote d'Ivoire    CI   CIV 1971       
## 4935                               Cote d'Ivoire    CI   CIV 2020       
## 4936                               Cote d'Ivoire    CI   CIV 1973       
## 4937                               Cote d'Ivoire    CI   CIV 1972       
## 4938                               Cote d'Ivoire   CIV       1993       
## 4939                               Cote d'Ivoire   CIV       1994       
## 4940                               Cote d'Ivoire   CIV       1995       
## 4941                               Cote d'Ivoire   CIV       1996       
## 4942                               Cote d'Ivoire   CIV       1997       
## 4943                               Cote d'Ivoire   CIV       1998       
## 4944                               Cote d'Ivoire   CIV       1999       
## 4945                               Cote d'Ivoire   CIV       1987       
## 4946                               Cote d'Ivoire   CIV       1988       
## 4947                               Cote d'Ivoire   CIV       1989       
## 4948                               Cote d'Ivoire   CIV       1990       
## 4949                               Cote d'Ivoire   CIV       1991       
## 4950                               Cote d'Ivoire   CIV       1992       
## 4951                               Cote d'Ivoire   CIV       2000       
## 4952                               Cote d'Ivoire   CIV       2001       
## 4953                               Cote d'Ivoire   CIV       2002       
## 4954                               Cote d'Ivoire   CIV       2003       
## 4955                               Cote d'Ivoire   CIV       2004       
## 4956                               Cote d'Ivoire   CIV       2005       
## 4957                               Cote d'Ivoire   CIV       2006       
## 4958                               Cote d'Ivoire   CIV       2007       
## 4959                               Cote d'Ivoire   CIV       2008       
## 4960                               Cote d'Ivoire   CIV       2009       
## 4961                               Cote d'Ivoire   CIV       2010       
## 4962                               Cote d'Ivoire   CIV       2011       
## 4963                               Cote d'Ivoire   CIV       2012       
## 4964                               Cote d'Ivoire   CIV       2013       
## 4965                               Cote d'Ivoire   CIV       2014       
## 4966                               Cote d'Ivoire   CIV       2015       
## 4967                               Cote d'Ivoire   CIV       2016       
## 4968                               Cote d'Ivoire   CIV       2017       
## 4969                               Cote d'Ivoire   CIV       2018       
## 4970                               Cote d'Ivoire   CIV       2019       
## 4971                               Cote d'Ivoire   CIV       2020       
## 4972                                     Croatia    HR   HRV 1985       
## 4973                                     Croatia    HR   HRV 2022       
## 4974                                     Croatia    HR   HRV 1986       
## 4975                                     Croatia    HR   HRV 1979       
## 4976                                     Croatia    HR   HRV 1971       
## 4977                                     Croatia    HR   HRV 1987       
## 4978                                     Croatia    HR   HRV 1984       
## 4979                                     Croatia    HR   HRV 2020       
## 4980                                     Croatia    HR   HRV 2019       
## 4981                                     Croatia    HR   HRV 1988       
## 4982                                     Croatia    HR   HRV 1982       
## 4983                                     Croatia    HR   HRV 1962       
## 4984                                     Croatia    HR   HRV 1976       
## 4985                                     Croatia    HR   HRV 1978       
## 4986                                     Croatia    HR   HRV 2010       
## 4987                                     Croatia    HR   HRV 2011       
## 4988                                     Croatia    HR   HRV 1980       
## 4989                                     Croatia    HR   HRV 1960       
## 4990                                     Croatia    HR   HRV 1973       
## 4991                                     Croatia    HR   HRV 1983       
## 4992                                     Croatia    HR   HRV 1997       
## 4993                                     Croatia    HR   HRV 1996       
## 4994                                     Croatia    HR   HRV 1969       
## 4995                                     Croatia    HR   HRV 1975       
## 4996                                     Croatia    HR   HRV 2021       
## 4997                                     Croatia    HR   HRV 2018       
## 4998                                     Croatia    HR   HRV 2017       
## 4999                                     Croatia    HR   HRV 1970       
## 5000                                     Croatia    HR   HRV 1967       
## 5001                                     Croatia    HR   HRV 2007       
## 5002                                     Croatia    HR   HRV 1981       
## 5003                                     Croatia    HR   HRV 1974       
## 5004                                     Croatia    HR   HRV 1972       
## 5005                                     Croatia    HR   HRV 1963       
## 5006                                     Croatia    HR   HRV 2014       
## 5007                                     Croatia    HR   HRV 1968       
## 5008                                     Croatia    HR   HRV 1965       
## 5009                                     Croatia    HR   HRV 2012       
## 5010                                     Croatia    HR   HRV 2001       
## 5011                                     Croatia    HR   HRV 1961       
## 5012                                     Croatia    HR   HRV 2006       
## 5013                                     Croatia    HR   HRV 1964       
## 5014                                     Croatia    HR   HRV 1998       
## 5015                                     Croatia    HR   HRV 2000       
## 5016                                     Croatia    HR   HRV 2016       
## 5017                                     Croatia    HR   HRV 2008       
## 5018                                     Croatia    HR   HRV 1977       
## 5019                                     Croatia    HR   HRV 1995       
## 5020                                     Croatia    HR   HRV 2005       
## 5021                                     Croatia    HR   HRV 1966       
## 5022                                     Croatia    HR   HRV 2002       
## 5023                                     Croatia    HR   HRV 1999       
## 5024                                     Croatia    HR   HRV 2013       
## 5025                                     Croatia    HR   HRV 2009       
## 5026                                     Croatia    HR   HRV 1990       
## 5027                                     Croatia    HR   HRV 2004       
## 5028                                     Croatia    HR   HRV 1993       
## 5029                                     Croatia    HR   HRV 2015       
## 5030                                     Croatia    HR   HRV 1991       
## 5031                                     Croatia    HR   HRV 1989       
## 5032                                     Croatia    HR   HRV 2003       
## 5033                                     Croatia    HR   HRV 1992       
## 5034                                     Croatia    HR   HRV 1994       
## 5035                                     Croatia   HRV       1987       
## 5036                                     Croatia   HRV       1988       
## 5037                                     Croatia   HRV       1989       
## 5038                                     Croatia   HRV       1990       
## 5039                                     Croatia   HRV       1991       
## 5040                                     Croatia   HRV       1992       
## 5041                                     Croatia   HRV       1993       
## 5042                                     Croatia   HRV       1994       
## 5043                                     Croatia   HRV       1995       
## 5044                                     Croatia   HRV       1996       
## 5045                                     Croatia   HRV       1997       
## 5046                                     Croatia   HRV       1998       
## 5047                                     Croatia   HRV       1999       
## 5048                                     Croatia   HRV       2000       
## 5049                                     Croatia   HRV       2001       
## 5050                                     Croatia   HRV       2002       
## 5051                                     Croatia   HRV       2011       
## 5052                                     Croatia   HRV       2012       
## 5053                                     Croatia   HRV       2013       
## 5054                                     Croatia   HRV       2014       
## 5055                                     Croatia   HRV       2015       
## 5056                                     Croatia   HRV       2016       
## 5057                                     Croatia   HRV       2017       
## 5058                                     Croatia   HRV       2018       
## 5059                                     Croatia   HRV       2019       
## 5060                                     Croatia   HRV       2020       
## 5061                                     Croatia   HRV       2008       
## 5062                                     Croatia   HRV       2009       
## 5063                                     Croatia   HRV       2010       
## 5064                                     Croatia   HRV       2003       
## 5065                                     Croatia   HRV       2004       
## 5066                                     Croatia   HRV       2005       
## 5067                                     Croatia   HRV       2006       
## 5068                                     Croatia   HRV       2007       
## 5069                                        Cuba    CU   CUB 1998       
## 5070                                        Cuba    CU   CUB 1961       
## 5071                                        Cuba    CU   CUB 1997       
## 5072                                        Cuba    CU   CUB 1967       
## 5073                                        Cuba    CU   CUB 2001       
## 5074                                        Cuba    CU   CUB 1975       
## 5075                                        Cuba    CU   CUB 1971       
## 5076                                        Cuba    CU   CUB 1988       
## 5077                                        Cuba    CU   CUB 2014       
## 5078                                        Cuba    CU   CUB 1999       
## 5079                                        Cuba    CU   CUB 1963       
## 5080                                        Cuba    CU   CUB 2015       
## 5081                                        Cuba    CU   CUB 2002       
## 5082                                        Cuba    CU   CUB 2003       
## 5083                                        Cuba    CU   CUB 1972       
## 5084                                        Cuba    CU   CUB 1989       
## 5085                                        Cuba    CU   CUB 1970       
## 5086                                        Cuba    CU   CUB 2013       
## 5087                                        Cuba    CU   CUB 1986       
## 5088                                        Cuba    CU   CUB 1984       
## 5089                                        Cuba    CU   CUB 1994       
## 5090                                        Cuba    CU   CUB 2012       
## 5091                                        Cuba    CU   CUB 1987       
## 5092                                        Cuba    CU   CUB 2000       
## 5093                                        Cuba    CU   CUB 1977       
## 5094                                        Cuba    CU   CUB 1976       
## 5095                                        Cuba    CU   CUB 1962       
## 5096                                        Cuba    CU   CUB 1983       
## 5097                                        Cuba    CU   CUB 1996       
## 5098                                        Cuba    CU   CUB 2007       
## 5099                                        Cuba    CU   CUB 1969       
## 5100                                        Cuba    CU   CUB 1964       
## 5101                                        Cuba    CU   CUB 1981       
## 5102                                        Cuba    CU   CUB 1960       
## 5103                                        Cuba    CU   CUB 1995       
## 5104                                        Cuba    CU   CUB 1985       
## 5105                                        Cuba    CU   CUB 2006       
## 5106                                        Cuba    CU   CUB 1993       
## 5107                                        Cuba    CU   CUB 1980       
## 5108                                        Cuba    CU   CUB 1978       
## 5109                                        Cuba    CU   CUB 1979       
## 5110                                        Cuba    CU   CUB 1990       
## 5111                                        Cuba    CU   CUB 2011       
## 5112                                        Cuba    CU   CUB 2009       
## 5113                                        Cuba    CU   CUB 1974       
## 5114                                        Cuba    CU   CUB 1982       
## 5115                                        Cuba    CU   CUB 2008       
## 5116                                        Cuba    CU   CUB 2010       
## 5117                                        Cuba    CU   CUB 1992       
## 5118                                        Cuba    CU   CUB 2005       
## 5119                                        Cuba    CU   CUB 1991       
## 5120                                        Cuba    CU   CUB 1973       
## 5121                                        Cuba    CU   CUB 1965       
## 5122                                        Cuba    CU   CUB 2016       
## 5123                                        Cuba    CU   CUB 2019       
## 5124                                        Cuba    CU   CUB 1966       
## 5125                                        Cuba    CU   CUB 2017       
## 5126                                        Cuba    CU   CUB 2018       
## 5127                                        Cuba    CU   CUB 2022       
## 5128                                        Cuba    CU   CUB 2020       
## 5129                                        Cuba    CU   CUB 2021       
## 5130                                        Cuba    CU   CUB 2004       
## 5131                                        Cuba    CU   CUB 1968       
## 5132                                        Cuba   CUB       1987       
## 5133                                        Cuba   CUB       1988       
## 5134                                        Cuba   CUB       1989       
## 5135                                        Cuba   CUB       1990       
## 5136                                        Cuba   CUB       1991       
## 5137                                        Cuba   CUB       1992       
## 5138                                        Cuba   CUB       1993       
## 5139                                        Cuba   CUB       1994       
## 5140                                        Cuba   CUB       1995       
## 5141                                        Cuba   CUB       1996       
## 5142                                        Cuba   CUB       1997       
## 5143                                        Cuba   CUB       1998       
## 5144                                        Cuba   CUB       1999       
## 5145                                        Cuba   CUB       2000       
## 5146                                        Cuba   CUB       2001       
## 5147                                        Cuba   CUB       2002       
## 5148                                        Cuba   CUB       2003       
## 5149                                        Cuba   CUB       2004       
## 5150                                        Cuba   CUB       2005       
## 5151                                        Cuba   CUB       2006       
## 5152                                        Cuba   CUB       2007       
## 5153                                        Cuba   CUB       2008       
## 5154                                        Cuba   CUB       2009       
## 5155                                        Cuba   CUB       2010       
## 5156                                        Cuba   CUB       2011       
## 5157                                        Cuba   CUB       2012       
## 5158                                        Cuba   CUB       2013       
## 5159                                        Cuba   CUB       2014       
## 5160                                        Cuba   CUB       2015       
## 5161                                        Cuba   CUB       2016       
## 5162                                        Cuba   CUB       2017       
## 5163                                        Cuba   CUB       2018       
## 5164                                        Cuba   CUB       2019       
## 5165                                        Cuba   CUB       2020       
## 5166                                     Curacao    CW   CUW 2011       
## 5167                                     Curacao    CW   CUW 1969       
## 5168                                     Curacao    CW   CUW 1968       
## 5169                                     Curacao    CW   CUW 2015       
## 5170                                     Curacao    CW   CUW 1982       
## 5171                                     Curacao    CW   CUW 2004       
## 5172                                     Curacao    CW   CUW 1975       
## 5173                                     Curacao    CW   CUW 1996       
## 5174                                     Curacao    CW   CUW 2001       
## 5175                                     Curacao    CW   CUW 1967       
## 5176                                     Curacao    CW   CUW 2003       
## 5177                                     Curacao    CW   CUW 2018       
## 5178                                     Curacao    CW   CUW 1989       
## 5179                                     Curacao    CW   CUW 2008       
## 5180                                     Curacao    CW   CUW 1973       
## 5181                                     Curacao    CW   CUW 2007       
## 5182                                     Curacao    CW   CUW 1981       
## 5183                                     Curacao    CW   CUW 1988       
## 5184                                     Curacao    CW   CUW 1980       
## 5185                                     Curacao    CW   CUW 2016       
## 5186                                     Curacao    CW   CUW 1984       
## 5187                                     Curacao    CW   CUW 2000       
## 5188                                     Curacao    CW   CUW 2002       
## 5189                                     Curacao    CW   CUW 2017       
## 5190                                     Curacao    CW   CUW 1966       
## 5191                                     Curacao    CW   CUW 1970       
## 5192                                     Curacao    CW   CUW 1983       
## 5193                                     Curacao    CW   CUW 1985       
## 5194                                     Curacao    CW   CUW 1979       
## 5195                                     Curacao    CW   CUW 1987       
## 5196                                     Curacao    CW   CUW 1961       
## 5197                                     Curacao    CW   CUW 1977       
## 5198                                     Curacao    CW   CUW 1960       
## 5199                                     Curacao    CW   CUW 2021       
## 5200                                     Curacao    CW   CUW 1974       
## 5201                                     Curacao    CW   CUW 1972       
## 5202                                     Curacao    CW   CUW 2006       
## 5203                                     Curacao    CW   CUW 1998       
## 5204                                     Curacao    CW   CUW 2019       
## 5205                                     Curacao    CW   CUW 1995       
## 5206                                     Curacao    CW   CUW 1997       
## 5207                                     Curacao    CW   CUW 1990       
## 5208                                     Curacao    CW   CUW 1971       
## 5209                                     Curacao    CW   CUW 1976       
## 5210                                     Curacao    CW   CUW 1978       
## 5211                                     Curacao    CW   CUW 1986       
## 5212                                     Curacao    CW   CUW 1999       
## 5213                                     Curacao    CW   CUW 2022       
## 5214                                     Curacao    CW   CUW 2012       
## 5215                                     Curacao    CW   CUW 2020       
## 5216                                     Curacao    CW   CUW 2014       
## 5217                                     Curacao    CW   CUW 1962       
## 5218                                     Curacao    CW   CUW 1965       
## 5219                                     Curacao    CW   CUW 2005       
## 5220                                     Curacao    CW   CUW 1964       
## 5221                                     Curacao    CW   CUW 1994       
## 5222                                     Curacao    CW   CUW 2009       
## 5223                                     Curacao    CW   CUW 1991       
## 5224                                     Curacao    CW   CUW 1963       
## 5225                                     Curacao    CW   CUW 2013       
## 5226                                     Curacao    CW   CUW 1993       
## 5227                                     Curacao    CW   CUW 1992       
## 5228                                     Curacao    CW   CUW 2010       
## 5229                                      Cyprus    CY   CYP 2013       
## 5230                                      Cyprus    CY   CYP 2007       
## 5231                                      Cyprus    CY   CYP 2008       
## 5232                                      Cyprus    CY   CYP 2009       
## 5233                                      Cyprus    CY   CYP 1966       
## 5234                                      Cyprus    CY   CYP 2014       
## 5235                                      Cyprus    CY   CYP 2010       
## 5236                                      Cyprus    CY   CYP 2011       
## 5237                                      Cyprus    CY   CYP 1971       
## 5238                                      Cyprus    CY   CYP 1967       
## 5239                                      Cyprus    CY   CYP 1961       
## 5240                                      Cyprus    CY   CYP 1969       
## 5241                                      Cyprus    CY   CYP 1968       
## 5242                                      Cyprus    CY   CYP 1972       
## 5243                                      Cyprus    CY   CYP 1973       
## 5244                                      Cyprus    CY   CYP 1970       
## 5245                                      Cyprus    CY   CYP 1999       
## 5246                                      Cyprus    CY   CYP 1976       
## 5247                                      Cyprus    CY   CYP 1965       
## 5248                                      Cyprus    CY   CYP 1964       
## 5249                                      Cyprus    CY   CYP 2006       
## 5250                                      Cyprus    CY   CYP 1995       
## 5251                                      Cyprus    CY   CYP 1998       
## 5252                                      Cyprus    CY   CYP 2015       
## 5253                                      Cyprus    CY   CYP 2012       
## 5254                                      Cyprus    CY   CYP 2000       
## 5255                                      Cyprus    CY   CYP 2017       
## 5256                                      Cyprus    CY   CYP 1975       
## 5257                                      Cyprus    CY   CYP 1980       
## 5258                                      Cyprus    CY   CYP 1960       
## 5259                                      Cyprus    CY   CYP 1982       
## 5260                                      Cyprus    CY   CYP 2002       
## 5261                                      Cyprus    CY   CYP 1974       
## 5262                                      Cyprus    CY   CYP 1988       
## 5263                                      Cyprus    CY   CYP 1997       
## 5264                                      Cyprus    CY   CYP 1996       
## 5265                                      Cyprus    CY   CYP 1994       
## 5266                                      Cyprus    CY   CYP 1990       
## 5267                                      Cyprus    CY   CYP 2016       
## 5268                                      Cyprus    CY   CYP 1978       
## 5269                                      Cyprus    CY   CYP 1981       
## 5270                                      Cyprus    CY   CYP 2021       
## 5271                                      Cyprus    CY   CYP 1963       
## 5272                                      Cyprus    CY   CYP 2001       
## 5273                                      Cyprus    CY   CYP 1993       
## 5274                                      Cyprus    CY   CYP 1979       
## 5275                                      Cyprus    CY   CYP 2020       
## 5276                                      Cyprus    CY   CYP 2022       
## 5277                                      Cyprus    CY   CYP 1962       
## 5278                                      Cyprus    CY   CYP 2004       
## 5279                                      Cyprus    CY   CYP 1985       
## 5280                                      Cyprus    CY   CYP 1977       
## 5281                                      Cyprus    CY   CYP 1983       
## 5282                                      Cyprus    CY   CYP 1992       
## 5283                                      Cyprus    CY   CYP 1991       
## 5284                                      Cyprus    CY   CYP 1984       
## 5285                                      Cyprus    CY   CYP 2003       
## 5286                                      Cyprus    CY   CYP 2005       
## 5287                                      Cyprus    CY   CYP 1987       
## 5288                                      Cyprus    CY   CYP 1989       
## 5289                                      Cyprus    CY   CYP 1986       
## 5290                                      Cyprus    CY   CYP 2018       
## 5291                                      Cyprus    CY   CYP 2019       
## 5292                                      Cyprus   CYP       2008       
## 5293                                      Cyprus   CYP       2009       
## 5294                                      Cyprus   CYP       2010       
## 5295                                      Cyprus   CYP       2011       
## 5296                                      Cyprus   CYP       2012       
## 5297                                      Cyprus   CYP       2013       
## 5298                                      Cyprus   CYP       2014       
## 5299                                      Cyprus   CYP       2015       
## 5300                                      Cyprus   CYP       2016       
## 5301                                      Cyprus   CYP       2017       
## 5302                                      Cyprus   CYP       2018       
## 5303                                      Cyprus   CYP       2019       
## 5304                                      Cyprus   CYP       2020       
## 5305                                      Cyprus   CYP       2006       
## 5306                                      Cyprus   CYP       2007       
## 5307                                      Cyprus   CYP       1987       
## 5308                                      Cyprus   CYP       1988       
## 5309                                      Cyprus   CYP       1989       
## 5310                                      Cyprus   CYP       1990       
## 5311                                      Cyprus   CYP       1991       
## 5312                                      Cyprus   CYP       1992       
## 5313                                      Cyprus   CYP       1993       
## 5314                                      Cyprus   CYP       1994       
## 5315                                      Cyprus   CYP       1995       
## 5316                                      Cyprus   CYP       1996       
## 5317                                      Cyprus   CYP       1997       
## 5318                                      Cyprus   CYP       1998       
## 5319                                      Cyprus   CYP       1999       
## 5320                                      Cyprus   CYP       2000       
## 5321                                      Cyprus   CYP       2001       
## 5322                                      Cyprus   CYP       2002       
## 5323                                      Cyprus   CYP       2003       
## 5324                                      Cyprus   CYP       2004       
## 5325                                      Cyprus   CYP       2005       
## 5326                              Czech Republic   CZE       1987       
## 5327                              Czech Republic   CZE       1988       
## 5328                              Czech Republic   CZE       1989       
## 5329                              Czech Republic   CZE       1990       
## 5330                              Czech Republic   CZE       1991       
## 5331                              Czech Republic   CZE       1992       
## 5332                              Czech Republic   CZE       1993       
## 5333                              Czech Republic   CZE       1994       
## 5334                              Czech Republic   CZE       1995       
## 5335                              Czech Republic   CZE       1996       
## 5336                              Czech Republic   CZE       1997       
## 5337                              Czech Republic   CZE       1998       
## 5338                              Czech Republic   CZE       1999       
## 5339                              Czech Republic   CZE       2000       
## 5340                              Czech Republic   CZE       2001       
## 5341                              Czech Republic   CZE       2002       
## 5342                              Czech Republic   CZE       2003       
## 5343                              Czech Republic   CZE       2004       
## 5344                              Czech Republic   CZE       2005       
## 5345                              Czech Republic   CZE       2006       
## 5346                              Czech Republic   CZE       2007       
## 5347                              Czech Republic   CZE       2008       
## 5348                              Czech Republic   CZE       2009       
## 5349                              Czech Republic   CZE       2010       
## 5350                              Czech Republic   CZE       2011       
## 5351                              Czech Republic   CZE       2012       
## 5352                              Czech Republic   CZE       2013       
## 5353                              Czech Republic   CZE       2014       
## 5354                              Czech Republic   CZE       2015       
## 5355                              Czech Republic   CZE       2016       
## 5356                              Czech Republic   CZE       2017       
## 5357                              Czech Republic   CZE       2018       
## 5358                              Czech Republic   CZE       2019       
## 5359                              Czech Republic   CZE       2020       
## 5360                                     Czechia    CZ   CZE 2010       
## 5361                                     Czechia    CZ   CZE 2008       
## 5362                                     Czechia    CZ   CZE 2005       
## 5363                                     Czechia    CZ   CZE 1995       
## 5364                                     Czechia    CZ   CZE 2007       
## 5365                                     Czechia    CZ   CZE 2002       
## 5366                                     Czechia    CZ   CZE 2011       
## 5367                                     Czechia    CZ   CZE 2006       
## 5368                                     Czechia    CZ   CZE 1993       
## 5369                                     Czechia    CZ   CZE 2003       
## 5370                                     Czechia    CZ   CZE 1971       
## 5371                                     Czechia    CZ   CZE 1968       
## 5372                                     Czechia    CZ   CZE 1988       
## 5373                                     Czechia    CZ   CZE 2001       
## 5374                                     Czechia    CZ   CZE 2000       
## 5375                                     Czechia    CZ   CZE 1982       
## 5376                                     Czechia    CZ   CZE 1996       
## 5377                                     Czechia    CZ   CZE 2009       
## 5378                                     Czechia    CZ   CZE 1970       
## 5379                                     Czechia    CZ   CZE 1967       
## 5380                                     Czechia    CZ   CZE 1969       
## 5381                                     Czechia    CZ   CZE 1974       
## 5382                                     Czechia    CZ   CZE 2004       
## 5383                                     Czechia    CZ   CZE 1983       
## 5384                                     Czechia    CZ   CZE 1999       
## 5385                                     Czechia    CZ   CZE 1994       
## 5386                                     Czechia    CZ   CZE 1966       
## 5387                                     Czechia    CZ   CZE 1977       
## 5388                                     Czechia    CZ   CZE 1975       
## 5389                                     Czechia    CZ   CZE 2019       
## 5390                                     Czechia    CZ   CZE 1972       
## 5391                                     Czechia    CZ   CZE 1986       
## 5392                                     Czechia    CZ   CZE 1997       
## 5393                                     Czechia    CZ   CZE 1976       
## 5394                                     Czechia    CZ   CZE 1998       
## 5395                                     Czechia    CZ   CZE 1973       
## 5396                                     Czechia    CZ   CZE 1984       
## 5397                                     Czechia    CZ   CZE 1960       
## 5398                                     Czechia    CZ   CZE 2014       
## 5399                                     Czechia    CZ   CZE 1985       
## 5400                                     Czechia    CZ   CZE 1979       
## 5401                                     Czechia    CZ   CZE 1981       
## 5402                                     Czechia    CZ   CZE 1980       
## 5403                                     Czechia    CZ   CZE 1965       
## 5404                                     Czechia    CZ   CZE 1987       
## 5405                                     Czechia    CZ   CZE 1991       
## 5406                                     Czechia    CZ   CZE 1962       
## 5407                                     Czechia    CZ   CZE 1990       
## 5408                                     Czechia    CZ   CZE 1978       
## 5409                                     Czechia    CZ   CZE 1964       
## 5410                                     Czechia    CZ   CZE 2016       
## 5411                                     Czechia    CZ   CZE 2017       
## 5412                                     Czechia    CZ   CZE 2021       
## 5413                                     Czechia    CZ   CZE 1992       
## 5414                                     Czechia    CZ   CZE 2013       
## 5415                                     Czechia    CZ   CZE 2018       
## 5416                                     Czechia    CZ   CZE 1963       
## 5417                                     Czechia    CZ   CZE 2012       
## 5418                                     Czechia    CZ   CZE 1961       
## 5419                                     Czechia    CZ   CZE 2020       
## 5420                                     Czechia    CZ   CZE 1989       
## 5421                                     Czechia    CZ   CZE 2022       
## 5422                                     Czechia    CZ   CZE 2015       
## 5423                                     Denmark    DK   DNK 1967       
## 5424                                     Denmark    DK   DNK 1979       
## 5425                                     Denmark    DK   DNK 1981       
## 5426                                     Denmark    DK   DNK 1965       
## 5427                                     Denmark    DK   DNK 1995       
## 5428                                     Denmark    DK   DNK 1978       
## 5429                                     Denmark    DK   DNK 1964       
## 5430                                     Denmark    DK   DNK 1982       
## 5431                                     Denmark    DK   DNK 1994       
## 5432                                     Denmark    DK   DNK 1980       
## 5433                                     Denmark    DK   DNK 1992       
## 5434                                     Denmark    DK   DNK 1999       
## 5435                                     Denmark    DK   DNK 1993       
## 5436                                     Denmark    DK   DNK 1966       
## 5437                                     Denmark    DK   DNK 1972       
## 5438                                     Denmark    DK   DNK 1987       
## 5439                                     Denmark    DK   DNK 1977       
## 5440                                     Denmark    DK   DNK 1976       
## 5441                                     Denmark    DK   DNK 1985       
## 5442                                     Denmark    DK   DNK 1971       
## 5443                                     Denmark    DK   DNK 1997       
## 5444                                     Denmark    DK   DNK 1998       
## 5445                                     Denmark    DK   DNK 1996       
## 5446                                     Denmark    DK   DNK 1984       
## 5447                                     Denmark    DK   DNK 1990       
## 5448                                     Denmark    DK   DNK 1986       
## 5449                                     Denmark    DK   DNK 1988       
## 5450                                     Denmark    DK   DNK 2021       
## 5451                                     Denmark    DK   DNK 1970       
## 5452                                     Denmark    DK   DNK 2012       
## 5453                                     Denmark    DK   DNK 2019       
## 5454                                     Denmark    DK   DNK 2003       
## 5455                                     Denmark    DK   DNK 2020       
## 5456                                     Denmark    DK   DNK 1991       
## 5457                                     Denmark    DK   DNK 2014       
## 5458                                     Denmark    DK   DNK 1989       
## 5459                                     Denmark    DK   DNK 2007       
## 5460                                     Denmark    DK   DNK 2011       
## 5461                                     Denmark    DK   DNK 2002       
## 5462                                     Denmark    DK   DNK 2006       
## 5463                                     Denmark    DK   DNK 2015       
## 5464                                     Denmark    DK   DNK 2009       
## 5465                                     Denmark    DK   DNK 2010       
## 5466                                     Denmark    DK   DNK 2005       
## 5467                                     Denmark    DK   DNK 2001       
## 5468                                     Denmark    DK   DNK 1962       
## 5469                                     Denmark    DK   DNK 2000       
## 5470                                     Denmark    DK   DNK 2004       
## 5471                                     Denmark    DK   DNK 1974       
## 5472                                     Denmark    DK   DNK 1968       
## 5473                                     Denmark    DK   DNK 2018       
## 5474                                     Denmark    DK   DNK 2008       
## 5475                                     Denmark    DK   DNK 2016       
## 5476                                     Denmark    DK   DNK 1961       
## 5477                                     Denmark    DK   DNK 1969       
## 5478                                     Denmark    DK   DNK 1973       
## 5479                                     Denmark    DK   DNK 2013       
## 5480                                     Denmark    DK   DNK 1975       
## 5481                                     Denmark    DK   DNK 2022       
## 5482                                     Denmark    DK   DNK 1963       
## 5483                                     Denmark    DK   DNK 1983       
## 5484                                     Denmark    DK   DNK 2017       
## 5485                                     Denmark    DK   DNK 1960       
## 5486                                     Denmark   DNK       2019       
## 5487                                     Denmark   DNK       2020       
## 5488                                     Denmark   DNK       1987       
## 5489                                     Denmark   DNK       1988       
## 5490                                     Denmark   DNK       1989       
## 5491                                     Denmark   DNK       1990       
## 5492                                     Denmark   DNK       1991       
## 5493                                     Denmark   DNK       1992       
## 5494                                     Denmark   DNK       1993       
## 5495                                     Denmark   DNK       1994       
## 5496                                     Denmark   DNK       1995       
## 5497                                     Denmark   DNK       1996       
## 5498                                     Denmark   DNK       1997       
## 5499                                     Denmark   DNK       1998       
## 5500                                     Denmark   DNK       1999       
## 5501                                     Denmark   DNK       2000       
## 5502                                     Denmark   DNK       2001       
## 5503                                     Denmark   DNK       2002       
## 5504                                     Denmark   DNK       2003       
## 5505                                     Denmark   DNK       2004       
## 5506                                     Denmark   DNK       2005       
## 5507                                     Denmark   DNK       2006       
## 5508                                     Denmark   DNK       2007       
## 5509                                     Denmark   DNK       2008       
## 5510                                     Denmark   DNK       2009       
## 5511                                     Denmark   DNK       2010       
## 5512                                     Denmark   DNK       2011       
## 5513                                     Denmark   DNK       2012       
## 5514                                     Denmark   DNK       2013       
## 5515                                     Denmark   DNK       2014       
## 5516                                     Denmark   DNK       2015       
## 5517                                     Denmark   DNK       2016       
## 5518                                     Denmark   DNK       2017       
## 5519                                     Denmark   DNK       2018       
## 5520                        Developing Countries   DEV       1987       
## 5521                        Developing Countries   DEV       1988       
## 5522                        Developing Countries   DEV       1989       
## 5523                        Developing Countries   DEV       1990       
## 5524                        Developing Countries   DEV       1991       
## 5525                        Developing Countries   DEV       1992       
## 5526                        Developing Countries   DEV       1993       
## 5527                        Developing Countries   DEV       1994       
## 5528                        Developing Countries   DEV       1995       
## 5529                        Developing Countries   DEV       1996       
## 5530                        Developing Countries   DEV       1997       
## 5531                        Developing Countries   DEV       1998       
## 5532                        Developing Countries   DEV       1999       
## 5533                        Developing Countries   DEV       2000       
## 5534                        Developing Countries   DEV       2001       
## 5535                        Developing Countries   DEV       2002       
## 5536                        Developing Countries   DEV       2003       
## 5537                        Developing Countries   DEV       2004       
## 5538                        Developing Countries   DEV       2005       
## 5539                        Developing Countries   DEV       2006       
## 5540                        Developing Countries   DEV       2007       
## 5541                        Developing Countries   DEV       2008       
## 5542                        Developing Countries   DEV       2009       
## 5543                        Developing Countries   DEV       2010       
## 5544                        Developing Countries   DEV       2011       
## 5545                        Developing Countries   DEV       2012       
## 5546                        Developing Countries   DEV       2013       
## 5547                        Developing Countries   DEV       2014       
## 5548                        Developing Countries   DEV       2015       
## 5549                        Developing Countries   DEV       2016       
## 5550                        Developing Countries   DEV       2017       
## 5551                        Developing Countries   DEV       2018       
## 5552                        Developing Countries   DEV       2019       
## 5553                        Developing Countries   DEV       2020       
## 5554                                    Djibouti    DJ   DJI 2004       
## 5555                                    Djibouti    DJ   DJI 2003       
## 5556                                    Djibouti    DJ   DJI 1999       
## 5557                                    Djibouti    DJ   DJI 2009       
## 5558                                    Djibouti    DJ   DJI 2010       
## 5559                                    Djibouti    DJ   DJI 1983       
## 5560                                    Djibouti    DJ   DJI 2005       
## 5561                                    Djibouti    DJ   DJI 1969       
## 5562                                    Djibouti    DJ   DJI 1984       
## 5563                                    Djibouti    DJ   DJI 2001       
## 5564                                    Djibouti    DJ   DJI 1980       
## 5565                                    Djibouti    DJ   DJI 2014       
## 5566                                    Djibouti    DJ   DJI 1994       
## 5567                                    Djibouti    DJ   DJI 2007       
## 5568                                    Djibouti    DJ   DJI 2006       
## 5569                                    Djibouti    DJ   DJI 1970       
## 5570                                    Djibouti    DJ   DJI 1990       
## 5571                                    Djibouti    DJ   DJI 1971       
## 5572                                    Djibouti    DJ   DJI 2000       
## 5573                                    Djibouti    DJ   DJI 2002       
## 5574                                    Djibouti    DJ   DJI 2012       
## 5575                                    Djibouti    DJ   DJI 2017       
## 5576                                    Djibouti    DJ   DJI 1977       
## 5577                                    Djibouti    DJ   DJI 1998       
## 5578                                    Djibouti    DJ   DJI 1997       
## 5579                                    Djibouti    DJ   DJI 1968       
## 5580                                    Djibouti    DJ   DJI 1993       
## 5581                                    Djibouti    DJ   DJI 2015       
## 5582                                    Djibouti    DJ   DJI 2013       
## 5583                                    Djibouti    DJ   DJI 2018       
## 5584                                    Djibouti    DJ   DJI 1964       
## 5585                                    Djibouti    DJ   DJI 1989       
## 5586                                    Djibouti    DJ   DJI 2008       
## 5587                                    Djibouti    DJ   DJI 1979       
## 5588                                    Djibouti    DJ   DJI 1960       
## 5589                                    Djibouti    DJ   DJI 1987       
## 5590                                    Djibouti    DJ   DJI 1982       
## 5591                                    Djibouti    DJ   DJI 2019       
## 5592                                    Djibouti    DJ   DJI 1992       
## 5593                                    Djibouti    DJ   DJI 2016       
## 5594                                    Djibouti    DJ   DJI 2011       
## 5595                                    Djibouti    DJ   DJI 1963       
## 5596                                    Djibouti    DJ   DJI 1962       
## 5597                                    Djibouti    DJ   DJI 1961       
## 5598                                    Djibouti    DJ   DJI 1986       
## 5599                                    Djibouti    DJ   DJI 1966       
## 5600                                    Djibouti    DJ   DJI 1991       
## 5601                                    Djibouti    DJ   DJI 1988       
## 5602                                    Djibouti    DJ   DJI 1981       
## 5603                                    Djibouti    DJ   DJI 2020       
## 5604                                    Djibouti    DJ   DJI 1972       
## 5605                                    Djibouti    DJ   DJI 1976       
## 5606                                    Djibouti    DJ   DJI 1996       
## 5607                                    Djibouti    DJ   DJI 2022       
## 5608                                    Djibouti    DJ   DJI 1995       
## 5609                                    Djibouti    DJ   DJI 1974       
## 5610                                    Djibouti    DJ   DJI 1967       
## 5611                                    Djibouti    DJ   DJI 1965       
## 5612                                    Djibouti    DJ   DJI 2021       
## 5613                                    Djibouti    DJ   DJI 1975       
## 5614                                    Djibouti    DJ   DJI 1973       
## 5615                                    Djibouti    DJ   DJI 1985       
## 5616                                    Djibouti    DJ   DJI 1978       
## 5617                                    Djibouti   DJI       1987       
## 5618                                    Djibouti   DJI       1988       
## 5619                                    Djibouti   DJI       1989       
## 5620                                    Djibouti   DJI       1990       
## 5621                                    Djibouti   DJI       1991       
## 5622                                    Djibouti   DJI       1992       
## 5623                                    Djibouti   DJI       1993       
## 5624                                    Djibouti   DJI       1994       
## 5625                                    Djibouti   DJI       1995       
## 5626                                    Djibouti   DJI       1996       
## 5627                                    Djibouti   DJI       1997       
## 5628                                    Djibouti   DJI       1998       
## 5629                                    Djibouti   DJI       1999       
## 5630                                    Djibouti   DJI       2000       
## 5631                                    Djibouti   DJI       2001       
## 5632                                    Djibouti   DJI       2002       
## 5633                                    Djibouti   DJI       2003       
## 5634                                    Djibouti   DJI       2004       
## 5635                                    Djibouti   DJI       2005       
## 5636                                    Djibouti   DJI       2006       
## 5637                                    Djibouti   DJI       2007       
## 5638                                    Djibouti   DJI       2008       
## 5639                                    Djibouti   DJI       2009       
## 5640                                    Djibouti   DJI       2010       
## 5641                                    Djibouti   DJI       2011       
## 5642                                    Djibouti   DJI       2012       
## 5643                                    Djibouti   DJI       2013       
## 5644                                    Djibouti   DJI       2014       
## 5645                                    Djibouti   DJI       2015       
## 5646                                    Djibouti   DJI       2016       
## 5647                                    Djibouti   DJI       2017       
## 5648                                    Djibouti   DJI       2018       
## 5649                                    Djibouti   DJI       2019       
## 5650                                    Djibouti   DJI       2020       
## 5651                                    Dominica    DM   DMA 1966       
## 5652                                    Dominica    DM   DMA 1987       
## 5653                                    Dominica    DM   DMA 2020       
## 5654                                    Dominica    DM   DMA 2014       
## 5655                                    Dominica    DM   DMA 2021       
## 5656                                    Dominica    DM   DMA 2019       
## 5657                                    Dominica    DM   DMA 1996       
## 5658                                    Dominica    DM   DMA 1986       
## 5659                                    Dominica    DM   DMA 2018       
## 5660                                    Dominica    DM   DMA 2022       
## 5661                                    Dominica    DM   DMA 1985       
## 5662                                    Dominica    DM   DMA 1967       
## 5663                                    Dominica    DM   DMA 2016       
## 5664                                    Dominica    DM   DMA 1988       
## 5665                                    Dominica    DM   DMA 1989       
## 5666                                    Dominica    DM   DMA 1991       
## 5667                                    Dominica    DM   DMA 1969       
## 5668                                    Dominica    DM   DMA 1995       
## 5669                                    Dominica    DM   DMA 2000       
## 5670                                    Dominica    DM   DMA 2017       
## 5671                                    Dominica    DM   DMA 1981       
## 5672                                    Dominica    DM   DMA 2003       
## 5673                                    Dominica    DM   DMA 1994       
## 5674                                    Dominica    DM   DMA 1975       
## 5675                                    Dominica    DM   DMA 1978       
## 5676                                    Dominica    DM   DMA 2015       
## 5677                                    Dominica    DM   DMA 1990       
## 5678                                    Dominica    DM   DMA 1973       
## 5679                                    Dominica    DM   DMA 1992       
## 5680                                    Dominica    DM   DMA 2004       
## 5681                                    Dominica    DM   DMA 2001       
## 5682                                    Dominica    DM   DMA 1968       
## 5683                                    Dominica    DM   DMA 1983       
## 5684                                    Dominica    DM   DMA 1980       
## 5685                                    Dominica    DM   DMA 1965       
## 5686                                    Dominica    DM   DMA 1999       
## 5687                                    Dominica    DM   DMA 1972       
## 5688                                    Dominica    DM   DMA 1993       
## 5689                                    Dominica    DM   DMA 2007       
## 5690                                    Dominica    DM   DMA 1984       
## 5691                                    Dominica    DM   DMA 2013       
## 5692                                    Dominica    DM   DMA 2009       
## 5693                                    Dominica    DM   DMA 1982       
## 5694                                    Dominica    DM   DMA 1960       
## 5695                                    Dominica    DM   DMA 1961       
## 5696                                    Dominica    DM   DMA 1979       
## 5697                                    Dominica    DM   DMA 1970       
## 5698                                    Dominica    DM   DMA 2011       
## 5699                                    Dominica    DM   DMA 2012       
## 5700                                    Dominica    DM   DMA 1962       
## 5701                                    Dominica    DM   DMA 2008       
## 5702                                    Dominica    DM   DMA 1998       
## 5703                                    Dominica    DM   DMA 1964       
## 5704                                    Dominica    DM   DMA 1976       
## 5705                                    Dominica    DM   DMA 1971       
## 5706                                    Dominica    DM   DMA 2002       
## 5707                                    Dominica    DM   DMA 2006       
## 5708                                    Dominica    DM   DMA 1963       
## 5709                                    Dominica    DM   DMA 2010       
## 5710                                    Dominica    DM   DMA 1974       
## 5711                                    Dominica    DM   DMA 1997       
## 5712                                    Dominica    DM   DMA 2005       
## 5713                                    Dominica    DM   DMA 1977       
## 5714                                    Dominica   DMA       1987       
## 5715                                    Dominica   DMA       1988       
## 5716                                    Dominica   DMA       1989       
## 5717                                    Dominica   DMA       1990       
## 5718                                    Dominica   DMA       1991       
## 5719                                    Dominica   DMA       1992       
## 5720                                    Dominica   DMA       1993       
## 5721                                    Dominica   DMA       1994       
## 5722                                    Dominica   DMA       1995       
## 5723                                    Dominica   DMA       1996       
## 5724                                    Dominica   DMA       1997       
## 5725                                    Dominica   DMA       1998       
## 5726                                    Dominica   DMA       1999       
## 5727                                    Dominica   DMA       2000       
## 5728                                    Dominica   DMA       2001       
## 5729                                    Dominica   DMA       2002       
## 5730                                    Dominica   DMA       2019       
## 5731                                    Dominica   DMA       2020       
## 5732                                    Dominica   DMA       2018       
## 5733                                    Dominica   DMA       2005       
## 5734                                    Dominica   DMA       2004       
## 5735                                    Dominica   DMA       2006       
## 5736                                    Dominica   DMA       2007       
## 5737                                    Dominica   DMA       2008       
## 5738                                    Dominica   DMA       2015       
## 5739                                    Dominica   DMA       2003       
## 5740                                    Dominica   DMA       2009       
## 5741                                    Dominica   DMA       2010       
## 5742                                    Dominica   DMA       2011       
## 5743                                    Dominica   DMA       2012       
## 5744                                    Dominica   DMA       2013       
## 5745                                    Dominica   DMA       2014       
## 5746                                    Dominica   DMA       2016       
## 5747                                    Dominica   DMA       2017       
## 5748                          Dominican Republic    DO   DOM 1981       
## 5749                          Dominican Republic    DO   DOM 1986       
## 5750                          Dominican Republic    DO   DOM 1978       
## 5751                          Dominican Republic    DO   DOM 1985       
## 5752                          Dominican Republic    DO   DOM 1983       
## 5753                          Dominican Republic    DO   DOM 2011       
## 5754                          Dominican Republic    DO   DOM 1963       
## 5755                          Dominican Republic    DO   DOM 1976       
## 5756                          Dominican Republic    DO   DOM 2013       
## 5757                          Dominican Republic    DO   DOM 1982       
## 5758                          Dominican Republic    DO   DOM 2009       
## 5759                          Dominican Republic    DO   DOM 1980       
## 5760                          Dominican Republic    DO   DOM 2012       
## 5761                          Dominican Republic    DO   DOM 2016       
## 5762                          Dominican Republic    DO   DOM 1962       
## 5763                          Dominican Republic    DO   DOM 2003       
## 5764                          Dominican Republic    DO   DOM 2020       
## 5765                          Dominican Republic    DO   DOM 2010       
## 5766                          Dominican Republic    DO   DOM 1994       
## 5767                          Dominican Republic    DO   DOM 1964       
## 5768                          Dominican Republic    DO   DOM 1989       
## 5769                          Dominican Republic    DO   DOM 1996       
## 5770                          Dominican Republic    DO   DOM 1967       
## 5771                          Dominican Republic    DO   DOM 1965       
## 5772                          Dominican Republic    DO   DOM 2000       
## 5773                          Dominican Republic    DO   DOM 1979       
## 5774                          Dominican Republic    DO   DOM 1998       
## 5775                          Dominican Republic    DO   DOM 1984       
## 5776                          Dominican Republic    DO   DOM 1977       
## 5777                          Dominican Republic    DO   DOM 1992       
## 5778                          Dominican Republic    DO   DOM 1961       
## 5779                          Dominican Republic    DO   DOM 2015       
## 5780                          Dominican Republic    DO   DOM 1966       
## 5781                          Dominican Republic    DO   DOM 1999       
## 5782                          Dominican Republic    DO   DOM 2008       
## 5783                          Dominican Republic    DO   DOM 1975       
## 5784                          Dominican Republic    DO   DOM 1997       
## 5785                          Dominican Republic    DO   DOM 1995       
## 5786                          Dominican Republic    DO   DOM 2019       
## 5787                          Dominican Republic    DO   DOM 1988       
## 5788                          Dominican Republic    DO   DOM 1990       
## 5789                          Dominican Republic    DO   DOM 1960       
## 5790                          Dominican Republic    DO   DOM 1993       
## 5791                          Dominican Republic    DO   DOM 1974       
## 5792                          Dominican Republic    DO   DOM 1973       
## 5793                          Dominican Republic    DO   DOM 2007       
## 5794                          Dominican Republic    DO   DOM 1972       
## 5795                          Dominican Republic    DO   DOM 2018       
## 5796                          Dominican Republic    DO   DOM 1991       
## 5797                          Dominican Republic    DO   DOM 2014       
## 5798                          Dominican Republic    DO   DOM 2022       
## 5799                          Dominican Republic    DO   DOM 1968       
## 5800                          Dominican Republic    DO   DOM 1969       
## 5801                          Dominican Republic    DO   DOM 2001       
## 5802                          Dominican Republic    DO   DOM 1971       
## 5803                          Dominican Republic    DO   DOM 2021       
## 5804                          Dominican Republic    DO   DOM 2017       
## 5805                          Dominican Republic    DO   DOM 1987       
## 5806                          Dominican Republic    DO   DOM 2002       
## 5807                          Dominican Republic    DO   DOM 2005       
## 5808                          Dominican Republic    DO   DOM 2004       
## 5809                          Dominican Republic    DO   DOM 2006       
## 5810                          Dominican Republic    DO   DOM 1970       
## 5811                          Dominican Republic   DOM       1987       
## 5812                          Dominican Republic   DOM       1988       
## 5813                          Dominican Republic   DOM       1989       
## 5814                          Dominican Republic   DOM       1990       
## 5815                          Dominican Republic   DOM       1991       
## 5816                          Dominican Republic   DOM       1992       
## 5817                          Dominican Republic   DOM       1993       
## 5818                          Dominican Republic   DOM       1994       
## 5819                          Dominican Republic   DOM       1995       
## 5820                          Dominican Republic   DOM       1996       
## 5821                          Dominican Republic   DOM       1997       
## 5822                          Dominican Republic   DOM       1998       
## 5823                          Dominican Republic   DOM       1999       
## 5824                          Dominican Republic   DOM       2000       
## 5825                          Dominican Republic   DOM       2001       
## 5826                          Dominican Republic   DOM       2002       
## 5827                          Dominican Republic   DOM       2012       
## 5828                          Dominican Republic   DOM       2013       
## 5829                          Dominican Republic   DOM       2014       
## 5830                          Dominican Republic   DOM       2015       
## 5831                          Dominican Republic   DOM       2016       
## 5832                          Dominican Republic   DOM       2017       
## 5833                          Dominican Republic   DOM       2018       
## 5834                          Dominican Republic   DOM       2019       
## 5835                          Dominican Republic   DOM       2011       
## 5836                          Dominican Republic   DOM       2020       
## 5837                          Dominican Republic   DOM       2003       
## 5838                          Dominican Republic   DOM       2004       
## 5839                          Dominican Republic   DOM       2005       
## 5840                          Dominican Republic   DOM       2006       
## 5841                          Dominican Republic   DOM       2007       
## 5842                          Dominican Republic   DOM       2008       
## 5843                          Dominican Republic   DOM       2009       
## 5844                          Dominican Republic   DOM       2010       
## 5845                  EMDE East Asia and Pacific   EAA       2003       
## 5846                  EMDE East Asia and Pacific   EAA       2004       
## 5847                  EMDE East Asia and Pacific   EAA       2005       
## 5848                  EMDE East Asia and Pacific   EAA       2006       
## 5849                  EMDE East Asia and Pacific   EAA       2007       
## 5850                  EMDE East Asia and Pacific   EAA       2008       
## 5851                  EMDE East Asia and Pacific   EAA       2009       
## 5852                  EMDE East Asia and Pacific   EAA       2010       
## 5853                  EMDE East Asia and Pacific   EAA       2011       
## 5854                  EMDE East Asia and Pacific   EAA       2012       
## 5855                  EMDE East Asia and Pacific   EAA       2013       
## 5856                  EMDE East Asia and Pacific   EAA       2014       
## 5857                  EMDE East Asia and Pacific   EAA       2015       
## 5858                  EMDE East Asia and Pacific   EAA       2016       
## 5859                  EMDE East Asia and Pacific   EAA       2017       
## 5860                  EMDE East Asia and Pacific   EAA       2018       
## 5861                  EMDE East Asia and Pacific   EAA       2019       
## 5862                  EMDE East Asia and Pacific   EAA       2020       
## 5863                  EMDE East Asia and Pacific   EAA       1988       
## 5864                  EMDE East Asia and Pacific   EAA       1989       
## 5865                  EMDE East Asia and Pacific   EAA       1987       
## 5866                  EMDE East Asia and Pacific   EAA       1990       
## 5867                  EMDE East Asia and Pacific   EAA       2002       
## 5868                  EMDE East Asia and Pacific   EAA       1995       
## 5869                  EMDE East Asia and Pacific   EAA       1991       
## 5870                  EMDE East Asia and Pacific   EAA       1992       
## 5871                  EMDE East Asia and Pacific   EAA       1994       
## 5872                  EMDE East Asia and Pacific   EAA       1996       
## 5873                  EMDE East Asia and Pacific   EAA       1997       
## 5874                  EMDE East Asia and Pacific   EAA       1998       
## 5875                  EMDE East Asia and Pacific   EAA       1993       
## 5876                  EMDE East Asia and Pacific   EAA       1999       
## 5877                  EMDE East Asia and Pacific   EAA       2000       
## 5878                  EMDE East Asia and Pacific   EAA       2001       
## 5879                EMDE Europe and Central Asia   ECH       1987       
## 5880                EMDE Europe and Central Asia   ECH       1988       
## 5881                EMDE Europe and Central Asia   ECH       1989       
## 5882                EMDE Europe and Central Asia   ECH       1990       
## 5883                EMDE Europe and Central Asia   ECH       1991       
## 5884                EMDE Europe and Central Asia   ECH       1992       
## 5885                EMDE Europe and Central Asia   ECH       1993       
## 5886                EMDE Europe and Central Asia   ECH       1994       
## 5887                EMDE Europe and Central Asia   ECH       1995       
## 5888                EMDE Europe and Central Asia   ECH       1996       
## 5889                EMDE Europe and Central Asia   ECH       1997       
## 5890                EMDE Europe and Central Asia   ECH       1998       
## 5891                EMDE Europe and Central Asia   ECH       1999       
## 5892                EMDE Europe and Central Asia   ECH       2000       
## 5893                EMDE Europe and Central Asia   ECH       2001       
## 5894                EMDE Europe and Central Asia   ECH       2002       
## 5895                EMDE Europe and Central Asia   ECH       2003       
## 5896                EMDE Europe and Central Asia   ECH       2004       
## 5897                EMDE Europe and Central Asia   ECH       2005       
## 5898                EMDE Europe and Central Asia   ECH       2006       
## 5899                EMDE Europe and Central Asia   ECH       2007       
## 5900                EMDE Europe and Central Asia   ECH       2008       
## 5901                EMDE Europe and Central Asia   ECH       2009       
## 5902                EMDE Europe and Central Asia   ECH       2010       
## 5903                EMDE Europe and Central Asia   ECH       2011       
## 5904                EMDE Europe and Central Asia   ECH       2012       
## 5905                EMDE Europe and Central Asia   ECH       2013       
## 5906                EMDE Europe and Central Asia   ECH       2014       
## 5907                EMDE Europe and Central Asia   ECH       2015       
## 5908                EMDE Europe and Central Asia   ECH       2016       
## 5909                EMDE Europe and Central Asia   ECH       2017       
## 5910                EMDE Europe and Central Asia   ECH       2018       
## 5911                EMDE Europe and Central Asia   ECH       2019       
## 5912                EMDE Europe and Central Asia   ECH       2020       
## 5913        EMDE Latin America and the Caribbean   LAP       1987       
## 5914        EMDE Latin America and the Caribbean   LAP       1988       
## 5915        EMDE Latin America and the Caribbean   LAP       1989       
## 5916        EMDE Latin America and the Caribbean   LAP       1990       
## 5917        EMDE Latin America and the Caribbean   LAP       1991       
## 5918        EMDE Latin America and the Caribbean   LAP       1992       
## 5919        EMDE Latin America and the Caribbean   LAP       1993       
## 5920        EMDE Latin America and the Caribbean   LAP       1994       
## 5921        EMDE Latin America and the Caribbean   LAP       1995       
## 5922        EMDE Latin America and the Caribbean   LAP       1996       
## 5923        EMDE Latin America and the Caribbean   LAP       1997       
## 5924        EMDE Latin America and the Caribbean   LAP       2003       
## 5925        EMDE Latin America and the Caribbean   LAP       2004       
## 5926        EMDE Latin America and the Caribbean   LAP       2005       
## 5927        EMDE Latin America and the Caribbean   LAP       2006       
## 5928        EMDE Latin America and the Caribbean   LAP       2007       
## 5929        EMDE Latin America and the Caribbean   LAP       2001       
## 5930        EMDE Latin America and the Caribbean   LAP       2002       
## 5931        EMDE Latin America and the Caribbean   LAP       2008       
## 5932        EMDE Latin America and the Caribbean   LAP       2009       
## 5933        EMDE Latin America and the Caribbean   LAP       2010       
## 5934        EMDE Latin America and the Caribbean   LAP       2011       
## 5935        EMDE Latin America and the Caribbean   LAP       2012       
## 5936        EMDE Latin America and the Caribbean   LAP       2013       
## 5937        EMDE Latin America and the Caribbean   LAP       2014       
## 5938        EMDE Latin America and the Caribbean   LAP       2015       
## 5939        EMDE Latin America and the Caribbean   LAP       2016       
## 5940        EMDE Latin America and the Caribbean   LAP       2017       
## 5941        EMDE Latin America and the Caribbean   LAP       2018       
## 5942        EMDE Latin America and the Caribbean   LAP       2019       
## 5943        EMDE Latin America and the Caribbean   LAP       2020       
## 5944        EMDE Latin America and the Caribbean   LAP       1998       
## 5945        EMDE Latin America and the Caribbean   LAP       1999       
## 5946        EMDE Latin America and the Caribbean   LAP       2000       
## 5947           EMDE Middle East and North Africa   MNH       2018       
## 5948           EMDE Middle East and North Africa   MNH       2019       
## 5949           EMDE Middle East and North Africa   MNH       2020       
## 5950           EMDE Middle East and North Africa   MNH       1998       
## 5951           EMDE Middle East and North Africa   MNH       1999       
## 5952           EMDE Middle East and North Africa   MNH       2000       
## 5953           EMDE Middle East and North Africa   MNH       2001       
## 5954           EMDE Middle East and North Africa   MNH       2002       
## 5955           EMDE Middle East and North Africa   MNH       2003       
## 5956           EMDE Middle East and North Africa   MNH       2004       
## 5957           EMDE Middle East and North Africa   MNH       2005       
## 5958           EMDE Middle East and North Africa   MNH       2006       
## 5959           EMDE Middle East and North Africa   MNH       2007       
## 5960           EMDE Middle East and North Africa   MNH       2008       
## 5961           EMDE Middle East and North Africa   MNH       2009       
## 5962           EMDE Middle East and North Africa   MNH       2010       
## 5963           EMDE Middle East and North Africa   MNH       2011       
## 5964           EMDE Middle East and North Africa   MNH       2012       
## 5965           EMDE Middle East and North Africa   MNH       2013       
## 5966           EMDE Middle East and North Africa   MNH       2014       
## 5967           EMDE Middle East and North Africa   MNH       2015       
## 5968           EMDE Middle East and North Africa   MNH       2016       
## 5969           EMDE Middle East and North Africa   MNH       2017       
## 5970           EMDE Middle East and North Africa   MNH       1995       
## 5971           EMDE Middle East and North Africa   MNH       1996       
## 5972           EMDE Middle East and North Africa   MNH       1997       
## 5973           EMDE Middle East and North Africa   MNH       1992       
## 5974           EMDE Middle East and North Africa   MNH       1993       
## 5975           EMDE Middle East and North Africa   MNH       1994       
## 5976           EMDE Middle East and North Africa   MNH       1991       
## 5977           EMDE Middle East and North Africa   MNH       1987       
## 5978           EMDE Middle East and North Africa   MNH       1988       
## 5979           EMDE Middle East and North Africa   MNH       1989       
## 5980           EMDE Middle East and North Africa   MNH       1990       
## 5981                             EMDE South Asia   SAP       1999       
## 5982                             EMDE South Asia   SAP       2000       
## 5983                             EMDE South Asia   SAP       2001       
## 5984                             EMDE South Asia   SAP       2002       
## 5985                             EMDE South Asia   SAP       2003       
## 5986                             EMDE South Asia   SAP       2004       
## 5987                             EMDE South Asia   SAP       2005       
## 5988                             EMDE South Asia   SAP       2006       
## 5989                             EMDE South Asia   SAP       2007       
## 5990                             EMDE South Asia   SAP       2008       
## 5991                             EMDE South Asia   SAP       2009       
## 5992                             EMDE South Asia   SAP       2010       
## 5993                             EMDE South Asia   SAP       2011       
## 5994                             EMDE South Asia   SAP       2012       
## 5995                             EMDE South Asia   SAP       2013       
## 5996                             EMDE South Asia   SAP       2014       
## 5997                             EMDE South Asia   SAP       2015       
## 5998                             EMDE South Asia   SAP       2016       
## 5999                             EMDE South Asia   SAP       2017       
## 6000                             EMDE South Asia   SAP       2018       
## 6001                             EMDE South Asia   SAP       2019       
## 6002                             EMDE South Asia   SAP       2020       
## 6003                             EMDE South Asia   SAP       1987       
## 6004                             EMDE South Asia   SAP       1988       
## 6005                             EMDE South Asia   SAP       1989       
## 6006                             EMDE South Asia   SAP       1990       
## 6007                             EMDE South Asia   SAP       1991       
## 6008                             EMDE South Asia   SAP       1992       
## 6009                             EMDE South Asia   SAP       1993       
## 6010                             EMDE South Asia   SAP       1994       
## 6011                             EMDE South Asia   SAP       1995       
## 6012                             EMDE South Asia   SAP       1996       
## 6013                             EMDE South Asia   SAP       1997       
## 6014                             EMDE South Asia   SAP       1998       
## 6015                     EMDE Sub-Saharan Africa   SSP       1987       
## 6016                     EMDE Sub-Saharan Africa   SSP       1988       
## 6017                     EMDE Sub-Saharan Africa   SSP       1989       
## 6018                     EMDE Sub-Saharan Africa   SSP       1990       
## 6019                     EMDE Sub-Saharan Africa   SSP       1991       
## 6020                     EMDE Sub-Saharan Africa   SSP       1992       
## 6021                     EMDE Sub-Saharan Africa   SSP       1993       
## 6022                     EMDE Sub-Saharan Africa   SSP       1994       
## 6023                     EMDE Sub-Saharan Africa   SSP       1995       
## 6024                     EMDE Sub-Saharan Africa   SSP       1996       
## 6025                     EMDE Sub-Saharan Africa   SSP       1997       
## 6026                     EMDE Sub-Saharan Africa   SSP       1998       
## 6027                     EMDE Sub-Saharan Africa   SSP       1999       
## 6028                     EMDE Sub-Saharan Africa   SSP       2000       
## 6029                     EMDE Sub-Saharan Africa   SSP       2001       
## 6030                     EMDE Sub-Saharan Africa   SSP       2002       
## 6031                     EMDE Sub-Saharan Africa   SSP       2008       
## 6032                     EMDE Sub-Saharan Africa   SSP       2009       
## 6033                     EMDE Sub-Saharan Africa   SSP       2010       
## 6034                     EMDE Sub-Saharan Africa   SSP       2011       
## 6035                     EMDE Sub-Saharan Africa   SSP       2012       
## 6036                     EMDE Sub-Saharan Africa   SSP       2013       
## 6037                     EMDE Sub-Saharan Africa   SSP       2014       
## 6038                     EMDE Sub-Saharan Africa   SSP       2003       
## 6039                     EMDE Sub-Saharan Africa   SSP       2004       
## 6040                     EMDE Sub-Saharan Africa   SSP       2005       
## 6041                     EMDE Sub-Saharan Africa   SSP       2006       
## 6042                     EMDE Sub-Saharan Africa   SSP       2007       
## 6043                     EMDE Sub-Saharan Africa   SSP       2015       
## 6044                     EMDE Sub-Saharan Africa   SSP       2016       
## 6045                     EMDE Sub-Saharan Africa   SSP       2017       
## 6046                     EMDE Sub-Saharan Africa   SSP       2018       
## 6047                     EMDE Sub-Saharan Africa   SSP       2019       
## 6048                     EMDE Sub-Saharan Africa   SSP       2020       
## 6049                  Early-demographic dividend    V2   EAR 1988       
## 6050                  Early-demographic dividend    V2   EAR 1987       
## 6051                  Early-demographic dividend    V2   EAR 1984       
## 6052                  Early-demographic dividend    V2   EAR 2000       
## 6053                  Early-demographic dividend    V2   EAR 1989       
## 6054                  Early-demographic dividend    V2   EAR 1996       
## 6055                  Early-demographic dividend    V2   EAR 1997       
## 6056                  Early-demographic dividend    V2   EAR 1962       
## 6057                  Early-demographic dividend    V2   EAR 1991       
## 6058                  Early-demographic dividend    V2   EAR 1993       
## 6059                  Early-demographic dividend    V2   EAR 1995       
## 6060                  Early-demographic dividend    V2   EAR 1999       
## 6061                  Early-demographic dividend    V2   EAR 2014       
## 6062                  Early-demographic dividend    V2   EAR 1994       
## 6063                  Early-demographic dividend    V2   EAR 1992       
## 6064                  Early-demographic dividend    V2   EAR 2001       
## 6065                  Early-demographic dividend    V2   EAR 2012       
## 6066                  Early-demographic dividend    V2   EAR 1961       
## 6067                  Early-demographic dividend    V2   EAR 2010       
## 6068                  Early-demographic dividend    V2   EAR 2006       
## 6069                  Early-demographic dividend    V2   EAR 1960       
## 6070                  Early-demographic dividend    V2   EAR 2015       
## 6071                  Early-demographic dividend    V2   EAR 2007       
## 6072                  Early-demographic dividend    V2   EAR 2019       
## 6073                  Early-demographic dividend    V2   EAR 2016       
## 6074                  Early-demographic dividend    V2   EAR 1998       
## 6075                  Early-demographic dividend    V2   EAR 2013       
## 6076                  Early-demographic dividend    V2   EAR 1968       
## 6077                  Early-demographic dividend    V2   EAR 1990       
## 6078                  Early-demographic dividend    V2   EAR 2002       
## 6079                  Early-demographic dividend    V2   EAR 1963       
## 6080                  Early-demographic dividend    V2   EAR 2009       
## 6081                  Early-demographic dividend    V2   EAR 1972       
## 6082                  Early-demographic dividend    V2   EAR 2018       
## 6083                  Early-demographic dividend    V2   EAR 2021       
## 6084                  Early-demographic dividend    V2   EAR 1964       
## 6085                  Early-demographic dividend    V2   EAR 2017       
## 6086                  Early-demographic dividend    V2   EAR 1976       
## 6087                  Early-demographic dividend    V2   EAR 1975       
## 6088                  Early-demographic dividend    V2   EAR 2022       
## 6089                  Early-demographic dividend    V2   EAR 1973       
## 6090                  Early-demographic dividend    V2   EAR 1966       
## 6091                  Early-demographic dividend    V2   EAR 1986       
## 6092                  Early-demographic dividend    V2   EAR 1974       
## 6093                  Early-demographic dividend    V2   EAR 1967       
## 6094                  Early-demographic dividend    V2   EAR 1970       
## 6095                  Early-demographic dividend    V2   EAR 2005       
## 6096                  Early-demographic dividend    V2   EAR 1969       
## 6097                  Early-demographic dividend    V2   EAR 1985       
## 6098                  Early-demographic dividend    V2   EAR 1979       
## 6099                  Early-demographic dividend    V2   EAR 1965       
## 6100                  Early-demographic dividend    V2   EAR 1971       
## 6101                  Early-demographic dividend    V2   EAR 2004       
## 6102                  Early-demographic dividend    V2   EAR 2020       
## 6103                  Early-demographic dividend    V2   EAR 2011       
## 6104                  Early-demographic dividend    V2   EAR 1977       
## 6105                  Early-demographic dividend    V2   EAR 1980       
## 6106                  Early-demographic dividend    V2   EAR 1983       
## 6107                  Early-demographic dividend    V2   EAR 1981       
## 6108                  Early-demographic dividend    V2   EAR 1982       
## 6109                  Early-demographic dividend    V2   EAR 2003       
## 6110                  Early-demographic dividend    V2   EAR 1978       
## 6111                  Early-demographic dividend    V2   EAR 2008       
## 6112                         East Asia & Pacific    Z4   EAS 1977       
## 6113                         East Asia & Pacific    Z4   EAS 2013       
## 6114                         East Asia & Pacific    Z4   EAS 1965       
## 6115                         East Asia & Pacific    Z4   EAS 1984       
## 6116                         East Asia & Pacific    Z4   EAS 2012       
## 6117                         East Asia & Pacific    Z4   EAS 1979       
## 6118                         East Asia & Pacific    Z4   EAS 2017       
## 6119                         East Asia & Pacific    Z4   EAS 1987       
## 6120                         East Asia & Pacific    Z4   EAS 1978       
## 6121                         East Asia & Pacific    Z4   EAS 1999       
## 6122                         East Asia & Pacific    Z4   EAS 1985       
## 6123                         East Asia & Pacific    Z4   EAS 1989       
## 6124                         East Asia & Pacific    Z4   EAS 1975       
## 6125                         East Asia & Pacific    Z4   EAS 1983       
## 6126                         East Asia & Pacific    Z4   EAS 2011       
## 6127                         East Asia & Pacific    Z4   EAS 1993       
## 6128                         East Asia & Pacific    Z4   EAS 1963       
## 6129                         East Asia & Pacific    Z4   EAS 2005       
## 6130                         East Asia & Pacific    Z4   EAS 2010       
## 6131                         East Asia & Pacific    Z4   EAS 2007       
## 6132                         East Asia & Pacific    Z4   EAS 1976       
## 6133                         East Asia & Pacific    Z4   EAS 1988       
## 6134                         East Asia & Pacific    Z4   EAS 2001       
## 6135                         East Asia & Pacific    Z4   EAS 2016       
## 6136                         East Asia & Pacific    Z4   EAS 1986       
## 6137                         East Asia & Pacific    Z4   EAS 1982       
## 6138                         East Asia & Pacific    Z4   EAS 1980       
## 6139                         East Asia & Pacific    Z4   EAS 2014       
## 6140                         East Asia & Pacific    Z4   EAS 2004       
## 6141                         East Asia & Pacific    Z4   EAS 1969       
## 6142                         East Asia & Pacific    Z4   EAS 1996       
## 6143                         East Asia & Pacific    Z4   EAS 1966       
## 6144                         East Asia & Pacific    Z4   EAS 1998       
## 6145                         East Asia & Pacific    Z4   EAS 2019       
## 6146                         East Asia & Pacific    Z4   EAS 1960       
## 6147                         East Asia & Pacific    Z4   EAS 2009       
## 6148                         East Asia & Pacific    Z4   EAS 2022       
## 6149                         East Asia & Pacific    Z4   EAS 2015       
## 6150                         East Asia & Pacific    Z4   EAS 1990       
## 6151                         East Asia & Pacific    Z4   EAS 1981       
## 6152                         East Asia & Pacific    Z4   EAS 2018       
## 6153                         East Asia & Pacific    Z4   EAS 2002       
## 6154                         East Asia & Pacific    Z4   EAS 1971       
## 6155                         East Asia & Pacific    Z4   EAS 1973       
## 6156                         East Asia & Pacific    Z4   EAS 1974       
## 6157                         East Asia & Pacific    Z4   EAS 1962       
## 6158                         East Asia & Pacific    Z4   EAS 2020       
## 6159                         East Asia & Pacific    Z4   EAS 2021       
## 6160                         East Asia & Pacific    Z4   EAS 1964       
## 6161                         East Asia & Pacific    Z4   EAS 2003       
## 6162                         East Asia & Pacific    Z4   EAS 1970       
## 6163                         East Asia & Pacific    Z4   EAS 2000       
## 6164                         East Asia & Pacific    Z4   EAS 1967       
## 6165                         East Asia & Pacific    Z4   EAS 1991       
## 6166                         East Asia & Pacific    Z4   EAS 1997       
## 6167                         East Asia & Pacific    Z4   EAS 2006       
## 6168                         East Asia & Pacific    Z4   EAS 1972       
## 6169                         East Asia & Pacific    Z4   EAS 1968       
## 6170                         East Asia & Pacific    Z4   EAS 1992       
## 6171                         East Asia & Pacific    Z4   EAS 2008       
## 6172                         East Asia & Pacific    Z4   EAS 1961       
## 6173                         East Asia & Pacific    Z4   EAS 1995       
## 6174                         East Asia & Pacific    Z4   EAS 1994       
## 6175  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975       
## 6176  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982       
## 6177  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988       
## 6178  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978       
## 6179  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977       
## 6180  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012       
## 6181  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987       
## 6182  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992       
## 6183  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974       
## 6184  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980       
## 6185  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984       
## 6186  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985       
## 6187  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994       
## 6188  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986       
## 6189  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008       
## 6190  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972       
## 6191  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983       
## 6192  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007       
## 6193  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979       
## 6194  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998       
## 6195  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996       
## 6196  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981       
## 6197  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011       
## 6198  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010       
## 6199  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006       
## 6200  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976       
## 6201  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2022       
## 6202  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962       
## 6203  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997       
## 6204  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991       
## 6205  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000       
## 6206  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989       
## 6207  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990       
## 6208  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014       
## 6209  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973       
## 6210  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993       
## 6211  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963       
## 6212  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960       
## 6213  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965       
## 6214  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964       
## 6215  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999       
## 6216  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016       
## 6217  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961       
## 6218  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019       
## 6219  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971       
## 6220  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021       
## 6221  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004       
## 6222  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995       
## 6223  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013       
## 6224  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966       
## 6225  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967       
## 6226  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970       
## 6227  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009       
## 6228  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018       
## 6229  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015       
## 6230  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002       
## 6231  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003       
## 6232  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005       
## 6233  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969       
## 6234  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968       
## 6235  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020       
## 6236  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017       
## 6237  East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001       
## 6238 East Asia & Pacific (excluding high income)    4E   EAP 1975       
## 6239 East Asia & Pacific (excluding high income)    4E   EAP 1971       
## 6240 East Asia & Pacific (excluding high income)    4E   EAP 1995       
## 6241 East Asia & Pacific (excluding high income)    4E   EAP 1974       
## 6242 East Asia & Pacific (excluding high income)    4E   EAP 1983       
## 6243 East Asia & Pacific (excluding high income)    4E   EAP 1996       
## 6244 East Asia & Pacific (excluding high income)    4E   EAP 2000       
## 6245 East Asia & Pacific (excluding high income)    4E   EAP 2002       
## 6246 East Asia & Pacific (excluding high income)    4E   EAP 1978       
## 6247 East Asia & Pacific (excluding high income)    4E   EAP 1998       
## 6248 East Asia & Pacific (excluding high income)    4E   EAP 1976       
## 6249 East Asia & Pacific (excluding high income)    4E   EAP 2004       
## 6250 East Asia & Pacific (excluding high income)    4E   EAP 1972       
## 6251 East Asia & Pacific (excluding high income)    4E   EAP 1981       
## 6252 East Asia & Pacific (excluding high income)    4E   EAP 1970       
## 6253 East Asia & Pacific (excluding high income)    4E   EAP 1986       
## 6254 East Asia & Pacific (excluding high income)    4E   EAP 1977       
## 6255 East Asia & Pacific (excluding high income)    4E   EAP 2009       
## 6256 East Asia & Pacific (excluding high income)    4E   EAP 1989       
## 6257 East Asia & Pacific (excluding high income)    4E   EAP 1980       
## 6258 East Asia & Pacific (excluding high income)    4E   EAP 1979       
## 6259 East Asia & Pacific (excluding high income)    4E   EAP 2006       
## 6260 East Asia & Pacific (excluding high income)    4E   EAP 1985       
## 6261 East Asia & Pacific (excluding high income)    4E   EAP 2005       
## 6262 East Asia & Pacific (excluding high income)    4E   EAP 1964       
## 6263 East Asia & Pacific (excluding high income)    4E   EAP 1973       
## 6264 East Asia & Pacific (excluding high income)    4E   EAP 1993       
## 6265 East Asia & Pacific (excluding high income)    4E   EAP 1982       
## 6266 East Asia & Pacific (excluding high income)    4E   EAP 1967       
## 6267 East Asia & Pacific (excluding high income)    4E   EAP 1988       
## 6268 East Asia & Pacific (excluding high income)    4E   EAP 1961       
## 6269 East Asia & Pacific (excluding high income)    4E   EAP 1960       
## 6270 East Asia & Pacific (excluding high income)    4E   EAP 1966       
## 6271 East Asia & Pacific (excluding high income)    4E   EAP 2003       
## 6272 East Asia & Pacific (excluding high income)    4E   EAP 2007       
## 6273 East Asia & Pacific (excluding high income)    4E   EAP 1963       
## 6274 East Asia & Pacific (excluding high income)    4E   EAP 1984       
## 6275 East Asia & Pacific (excluding high income)    4E   EAP 2022       
## 6276 East Asia & Pacific (excluding high income)    4E   EAP 1962       
## 6277 East Asia & Pacific (excluding high income)    4E   EAP 1987       
## 6278 East Asia & Pacific (excluding high income)    4E   EAP 1997       
## 6279 East Asia & Pacific (excluding high income)    4E   EAP 1991       
## 6280 East Asia & Pacific (excluding high income)    4E   EAP 2017       
## 6281 East Asia & Pacific (excluding high income)    4E   EAP 1992       
## 6282 East Asia & Pacific (excluding high income)    4E   EAP 2010       
## 6283 East Asia & Pacific (excluding high income)    4E   EAP 1969       
## 6284 East Asia & Pacific (excluding high income)    4E   EAP 2020       
## 6285 East Asia & Pacific (excluding high income)    4E   EAP 2021       
## 6286 East Asia & Pacific (excluding high income)    4E   EAP 1990       
## 6287 East Asia & Pacific (excluding high income)    4E   EAP 2014       
## 6288 East Asia & Pacific (excluding high income)    4E   EAP 1968       
## 6289 East Asia & Pacific (excluding high income)    4E   EAP 1965       
## 6290 East Asia & Pacific (excluding high income)    4E   EAP 1999       
## 6291 East Asia & Pacific (excluding high income)    4E   EAP 2015       
## 6292 East Asia & Pacific (excluding high income)    4E   EAP 2013       
## 6293 East Asia & Pacific (excluding high income)    4E   EAP 2008       
## 6294 East Asia & Pacific (excluding high income)    4E   EAP 2019       
## 6295 East Asia & Pacific (excluding high income)    4E   EAP 2001       
## 6296 East Asia & Pacific (excluding high income)    4E   EAP 2016       
## 6297 East Asia & Pacific (excluding high income)    4E   EAP 2011       
## 6298 East Asia & Pacific (excluding high income)    4E   EAP 2018       
## 6299 East Asia & Pacific (excluding high income)    4E   EAP 1994       
## 6300 East Asia & Pacific (excluding high income)    4E   EAP 2012       
## 6301              East Asia & Pacific developing   EAP       2004       
## 6302              East Asia & Pacific developing   EAP       2005       
## 6303              East Asia & Pacific developing   EAP       2006       
## 6304              East Asia & Pacific developing   EAP       2007       
## 6305              East Asia & Pacific developing   EAP       2008       
## 6306              East Asia & Pacific developing   EAP       2009       
## 6307              East Asia & Pacific developing   EAP       2010       
## 6308              East Asia & Pacific developing   EAP       2011       
## 6309              East Asia & Pacific developing   EAP       2012       
## 6310              East Asia & Pacific developing   EAP       2013       
## 6311              East Asia & Pacific developing   EAP       2014       
## 6312              East Asia & Pacific developing   EAP       2015       
## 6313              East Asia & Pacific developing   EAP       2016       
## 6314              East Asia & Pacific developing   EAP       2017       
## 6315              East Asia & Pacific developing   EAP       2018       
## 6316              East Asia & Pacific developing   EAP       2019       
## 6317              East Asia & Pacific developing   EAP       2020       
## 6318              East Asia & Pacific developing   EAP       2000       
## 6319              East Asia & Pacific developing   EAP       2001       
## 6320              East Asia & Pacific developing   EAP       2002       
## 6321              East Asia & Pacific developing   EAP       2003       
## 6322              East Asia & Pacific developing   EAP       1998       
## 6323              East Asia & Pacific developing   EAP       1999       
## 6324              East Asia & Pacific developing   EAP       1989       
## 6325              East Asia & Pacific developing   EAP       1990       
## 6326              East Asia & Pacific developing   EAP       1991       
## 6327              East Asia & Pacific developing   EAP       1992       
## 6328              East Asia & Pacific developing   EAP       1993       
## 6329              East Asia & Pacific developing   EAP       1994       
## 6330              East Asia & Pacific developing   EAP       1995       
## 6331              East Asia & Pacific developing   EAP       1996       
## 6332              East Asia & Pacific developing   EAP       1997       
## 6333              East Asia & Pacific developing   EAP       1987       
## 6334              East Asia & Pacific developing   EAP       1988       
## 6335                                     Ecuador    EC   ECU 2000       
## 6336                                     Ecuador    EC   ECU 1997       
## 6337                                     Ecuador    EC   ECU 1996       
## 6338                                     Ecuador    EC   ECU 1993       
## 6339                                     Ecuador    EC   ECU 1998       
## 6340                                     Ecuador    EC   ECU 1995       
## 6341                                     Ecuador    EC   ECU 1994       
## 6342                                     Ecuador    EC   ECU 1968       
## 6343                                     Ecuador    EC   ECU 1999       
## 6344                                     Ecuador    EC   ECU 1964       
## 6345                                     Ecuador    EC   ECU 1965       
## 6346                                     Ecuador    EC   ECU 1962       
## 6347                                     Ecuador    EC   ECU 2019       
## 6348                                     Ecuador    EC   ECU 2018       
## 6349                                     Ecuador    EC   ECU 1960       
## 6350                                     Ecuador    EC   ECU 1963       
## 6351                                     Ecuador    EC   ECU 1967       
## 6352                                     Ecuador    EC   ECU 1978       
## 6353                                     Ecuador    EC   ECU 1966       
## 6354                                     Ecuador    EC   ECU 1979       
## 6355                                     Ecuador    EC   ECU 1986       
## 6356                                     Ecuador    EC   ECU 1974       
## 6357                                     Ecuador    EC   ECU 1988       
## 6358                                     Ecuador    EC   ECU 2003       
## 6359                                     Ecuador    EC   ECU 1987       
## 6360                                     Ecuador    EC   ECU 2005       
## 6361                                     Ecuador    EC   ECU 1977       
## 6362                                     Ecuador    EC   ECU 2001       
## 6363                                     Ecuador    EC   ECU 2017       
## 6364                                     Ecuador    EC   ECU 2016       
## 6365                                     Ecuador    EC   ECU 1992       
## 6366                                     Ecuador    EC   ECU 2015       
## 6367                                     Ecuador    EC   ECU 2004       
## 6368                                     Ecuador    EC   ECU 2002       
## 6369                                     Ecuador    EC   ECU 1969       
## 6370                                     Ecuador    EC   ECU 2009       
## 6371                                     Ecuador    EC   ECU 2020       
## 6372                                     Ecuador    EC   ECU 2006       
## 6373                                     Ecuador    EC   ECU 1990       
## 6374                                     Ecuador    EC   ECU 1981       
## 6375                                     Ecuador    EC   ECU 2008       
## 6376                                     Ecuador    EC   ECU 1983       
## 6377                                     Ecuador    EC   ECU 1961       
## 6378                                     Ecuador    EC   ECU 1991       
## 6379                                     Ecuador    EC   ECU 2022       
## 6380                                     Ecuador    EC   ECU 1980       
## 6381                                     Ecuador    EC   ECU 1985       
## 6382                                     Ecuador    EC   ECU 1984       
## 6383                                     Ecuador    EC   ECU 2007       
## 6384                                     Ecuador    EC   ECU 2012       
## 6385                                     Ecuador    EC   ECU 2013       
## 6386                                     Ecuador    EC   ECU 1982       
## 6387                                     Ecuador    EC   ECU 1976       
## 6388                                     Ecuador    EC   ECU 1975       
## 6389                                     Ecuador    EC   ECU 2021       
## 6390                                     Ecuador    EC   ECU 1970       
## 6391                                     Ecuador    EC   ECU 1971       
## 6392                                     Ecuador    EC   ECU 2010       
## 6393                                     Ecuador    EC   ECU 2014       
## 6394                                     Ecuador    EC   ECU 1972       
## 6395                                     Ecuador    EC   ECU 1973       
## 6396                                     Ecuador    EC   ECU 1989       
## 6397                                     Ecuador    EC   ECU 2011       
## 6398                                     Ecuador   ECU       2004       
## 6399                                     Ecuador   ECU       2005       
## 6400                                     Ecuador   ECU       2006       
## 6401                                     Ecuador   ECU       2007       
## 6402                                     Ecuador   ECU       2008       
## 6403                                     Ecuador   ECU       1993       
## 6404                                     Ecuador   ECU       1994       
## 6405                                     Ecuador   ECU       2000       
## 6406                                     Ecuador   ECU       2001       
## 6407                                     Ecuador   ECU       2002       
## 6408                                     Ecuador   ECU       2003       
## 6409                                     Ecuador   ECU       2009       
## 6410                                     Ecuador   ECU       2010       
## 6411                                     Ecuador   ECU       2011       
## 6412                                     Ecuador   ECU       2012       
## 6413                                     Ecuador   ECU       2013       
## 6414                                     Ecuador   ECU       2014       
## 6415                                     Ecuador   ECU       2015       
## 6416                                     Ecuador   ECU       2016       
## 6417                                     Ecuador   ECU       2017       
## 6418                                     Ecuador   ECU       2018       
## 6419                                     Ecuador   ECU       2019       
## 6420                                     Ecuador   ECU       2020       
## 6421                                     Ecuador   ECU       1990       
## 6422                                     Ecuador   ECU       1991       
## 6423                                     Ecuador   ECU       1992       
## 6424                                     Ecuador   ECU       1995       
## 6425                                     Ecuador   ECU       1987       
## 6426                                     Ecuador   ECU       1988       
## 6427                                     Ecuador   ECU       1989       
## 6428                                     Ecuador   ECU       1996       
## 6429                                     Ecuador   ECU       1997       
## 6430                                     Ecuador   ECU       1998       
## 6431                                     Ecuador   ECU       1999       
## 6432                             Egypt Arab Rep.   EGY       1998       
## 6433                             Egypt Arab Rep.   EGY       1999       
## 6434                             Egypt Arab Rep.   EGY       2000       
## 6435                             Egypt Arab Rep.   EGY       2001       
## 6436                             Egypt Arab Rep.   EGY       2002       
## 6437                             Egypt Arab Rep.   EGY       2003       
## 6438                             Egypt Arab Rep.   EGY       2004       
## 6439                             Egypt Arab Rep.   EGY       2005       
## 6440                             Egypt Arab Rep.   EGY       2006       
## 6441                             Egypt Arab Rep.   EGY       2007       
## 6442                             Egypt Arab Rep.   EGY       2008       
## 6443                             Egypt Arab Rep.   EGY       2009       
## 6444                             Egypt Arab Rep.   EGY       2010       
## 6445                             Egypt Arab Rep.   EGY       2011       
## 6446                             Egypt Arab Rep.   EGY       2012       
## 6447                             Egypt Arab Rep.   EGY       2013       
## 6448                             Egypt Arab Rep.   EGY       2014       
## 6449                             Egypt Arab Rep.   EGY       2015       
## 6450                             Egypt Arab Rep.   EGY       2016       
## 6451                             Egypt Arab Rep.   EGY       2017       
## 6452                             Egypt Arab Rep.   EGY       2018       
## 6453                             Egypt Arab Rep.   EGY       2019       
## 6454                             Egypt Arab Rep.   EGY       2020       
## 6455                             Egypt Arab Rep.   EGY       1987       
## 6456                             Egypt Arab Rep.   EGY       1988       
## 6457                             Egypt Arab Rep.   EGY       1989       
## 6458                             Egypt Arab Rep.   EGY       1990       
## 6459                             Egypt Arab Rep.   EGY       1991       
## 6460                             Egypt Arab Rep.   EGY       1992       
## 6461                             Egypt Arab Rep.   EGY       1993       
## 6462                             Egypt Arab Rep.   EGY       1994       
## 6463                             Egypt Arab Rep.   EGY       1995       
## 6464                             Egypt Arab Rep.   EGY       1996       
## 6465                             Egypt Arab Rep.   EGY       1997       
## 6466                            Egypt, Arab Rep.    EG   EGY 1987       
## 6467                            Egypt, Arab Rep.    EG   EGY 1990       
## 6468                            Egypt, Arab Rep.    EG   EGY 1983       
## 6469                            Egypt, Arab Rep.    EG   EGY 1981       
## 6470                            Egypt, Arab Rep.    EG   EGY 1984       
## 6471                            Egypt, Arab Rep.    EG   EGY 1979       
## 6472                            Egypt, Arab Rep.    EG   EGY 1982       
## 6473                            Egypt, Arab Rep.    EG   EGY 1980       
## 6474                            Egypt, Arab Rep.    EG   EGY 1988       
## 6475                            Egypt, Arab Rep.    EG   EGY 1985       
## 6476                            Egypt, Arab Rep.    EG   EGY 1996       
## 6477                            Egypt, Arab Rep.    EG   EGY 1972       
## 6478                            Egypt, Arab Rep.    EG   EGY 1986       
## 6479                            Egypt, Arab Rep.    EG   EGY 2022       
## 6480                            Egypt, Arab Rep.    EG   EGY 1994       
## 6481                            Egypt, Arab Rep.    EG   EGY 2020       
## 6482                            Egypt, Arab Rep.    EG   EGY 2007       
## 6483                            Egypt, Arab Rep.    EG   EGY 1992       
## 6484                            Egypt, Arab Rep.    EG   EGY 2021       
## 6485                            Egypt, Arab Rep.    EG   EGY 1995       
## 6486                            Egypt, Arab Rep.    EG   EGY 1991       
## 6487                            Egypt, Arab Rep.    EG   EGY 1989       
## 6488                            Egypt, Arab Rep.    EG   EGY 1969       
## 6489                            Egypt, Arab Rep.    EG   EGY 1962       
## 6490                            Egypt, Arab Rep.    EG   EGY 1961       
## 6491                            Egypt, Arab Rep.    EG   EGY 2010       
## 6492                            Egypt, Arab Rep.    EG   EGY 1960       
## 6493                            Egypt, Arab Rep.    EG   EGY 1973       
## 6494                            Egypt, Arab Rep.    EG   EGY 2019       
## 6495                            Egypt, Arab Rep.    EG   EGY 2011       
## 6496                            Egypt, Arab Rep.    EG   EGY 1978       
## 6497                            Egypt, Arab Rep.    EG   EGY 1964       
## 6498                            Egypt, Arab Rep.    EG   EGY 1966       
## 6499                            Egypt, Arab Rep.    EG   EGY 1963       
## 6500                            Egypt, Arab Rep.    EG   EGY 1993       
## 6501                            Egypt, Arab Rep.    EG   EGY 2002       
## 6502                            Egypt, Arab Rep.    EG   EGY 1976       
## 6503                            Egypt, Arab Rep.    EG   EGY 1971       
## 6504                            Egypt, Arab Rep.    EG   EGY 1998       
## 6505                            Egypt, Arab Rep.    EG   EGY 1968       
## 6506                            Egypt, Arab Rep.    EG   EGY 1974       
## 6507                            Egypt, Arab Rep.    EG   EGY 2014       
## 6508                            Egypt, Arab Rep.    EG   EGY 2008       
## 6509                            Egypt, Arab Rep.    EG   EGY 2001       
## 6510                            Egypt, Arab Rep.    EG   EGY 2004       
## 6511                            Egypt, Arab Rep.    EG   EGY 1967       
## 6512                            Egypt, Arab Rep.    EG   EGY 2009       
## 6513                            Egypt, Arab Rep.    EG   EGY 1970       
## 6514                            Egypt, Arab Rep.    EG   EGY 2005       
## 6515                            Egypt, Arab Rep.    EG   EGY 2000       
## 6516                            Egypt, Arab Rep.    EG   EGY 1975       
## 6517                            Egypt, Arab Rep.    EG   EGY 1965       
## 6518                            Egypt, Arab Rep.    EG   EGY 2006       
## 6519                            Egypt, Arab Rep.    EG   EGY 1977       
## 6520                            Egypt, Arab Rep.    EG   EGY 2013       
## 6521                            Egypt, Arab Rep.    EG   EGY 1999       
## 6522                            Egypt, Arab Rep.    EG   EGY 2015       
## 6523                            Egypt, Arab Rep.    EG   EGY 2016       
## 6524                            Egypt, Arab Rep.    EG   EGY 2017       
## 6525                            Egypt, Arab Rep.    EG   EGY 2018       
## 6526                            Egypt, Arab Rep.    EG   EGY 2003       
## 6527                            Egypt, Arab Rep.    EG   EGY 1997       
## 6528                            Egypt, Arab Rep.    EG   EGY 2012       
## 6529                                 El Salvador   SLV       1987       
## 6530                                 El Salvador   SLV       1988       
## 6531                                 El Salvador   SLV       1989       
## 6532                                 El Salvador   SLV       1990       
## 6533                                 El Salvador   SLV       1991       
## 6534                                 El Salvador   SLV       1992       
## 6535                                 El Salvador   SLV       1993       
## 6536                                 El Salvador   SLV       1994       
## 6537                                 El Salvador   SLV       1995       
## 6538                                 El Salvador   SLV       1996       
## 6539                                 El Salvador   SLV       1997       
## 6540                                 El Salvador   SLV       1998       
## 6541                                 El Salvador   SLV       1999       
## 6542                                 El Salvador   SLV       2000       
## 6543                                 El Salvador   SLV       2001       
## 6544                                 El Salvador   SLV       2002       
## 6545                                 El Salvador   SLV       2003       
## 6546                                 El Salvador   SLV       2004       
## 6547                                 El Salvador   SLV       2005       
## 6548                                 El Salvador   SLV       2006       
## 6549                                 El Salvador   SLV       2007       
## 6550                                 El Salvador   SLV       2008       
## 6551                                 El Salvador   SLV       2009       
## 6552                                 El Salvador   SLV       2010       
## 6553                                 El Salvador   SLV       2011       
## 6554                                 El Salvador   SLV       2012       
## 6555                                 El Salvador   SLV       2013       
## 6556                                 El Salvador   SLV       2014       
## 6557                                 El Salvador   SLV       2015       
## 6558                                 El Salvador   SLV       2016       
## 6559                                 El Salvador   SLV       2017       
## 6560                                 El Salvador   SLV       2018       
## 6561                                 El Salvador   SLV       2019       
## 6562                                 El Salvador   SLV       2020       
## 6563                                 El Salvador    SV   SLV 2019       
## 6564                                 El Salvador    SV   SLV 1961       
## 6565                                 El Salvador    SV   SLV 1987       
## 6566                                 El Salvador    SV   SLV 1998       
## 6567                                 El Salvador    SV   SLV 1984       
## 6568                                 El Salvador    SV   SLV 2020       
## 6569                                 El Salvador    SV   SLV 1999       
## 6570                                 El Salvador    SV   SLV 2022       
## 6571                                 El Salvador    SV   SLV 1978       
## 6572                                 El Salvador    SV   SLV 1967       
## 6573                                 El Salvador    SV   SLV 1974       
## 6574                                 El Salvador    SV   SLV 2016       
## 6575                                 El Salvador    SV   SLV 2021       
## 6576                                 El Salvador    SV   SLV 2004       
## 6577                                 El Salvador    SV   SLV 1988       
## 6578                                 El Salvador    SV   SLV 2013       
## 6579                                 El Salvador    SV   SLV 2012       
## 6580                                 El Salvador    SV   SLV 2003       
## 6581                                 El Salvador    SV   SLV 2000       
## 6582                                 El Salvador    SV   SLV 1977       
## 6583                                 El Salvador    SV   SLV 1989       
## 6584                                 El Salvador    SV   SLV 1990       
## 6585                                 El Salvador    SV   SLV 2018       
## 6586                                 El Salvador    SV   SLV 1973       
## 6587                                 El Salvador    SV   SLV 2017       
## 6588                                 El Salvador    SV   SLV 1972       
## 6589                                 El Salvador    SV   SLV 2015       
## 6590                                 El Salvador    SV   SLV 1979       
## 6591                                 El Salvador    SV   SLV 2014       
## 6592                                 El Salvador    SV   SLV 2006       
## 6593                                 El Salvador    SV   SLV 2008       
## 6594                                 El Salvador    SV   SLV 1985       
## 6595                                 El Salvador    SV   SLV 1970       
## 6596                                 El Salvador    SV   SLV 1983       
## 6597                                 El Salvador    SV   SLV 2009       
## 6598                                 El Salvador    SV   SLV 1975       
## 6599                                 El Salvador    SV   SLV 1963       
## 6600                                 El Salvador    SV   SLV 1965       
## 6601                                 El Salvador    SV   SLV 1969       
## 6602                                 El Salvador    SV   SLV 1966       
## 6603                                 El Salvador    SV   SLV 1976       
## 6604                                 El Salvador    SV   SLV 2011       
## 6605                                 El Salvador    SV   SLV 1962       
## 6606                                 El Salvador    SV   SLV 1982       
## 6607                                 El Salvador    SV   SLV 1968       
## 6608                                 El Salvador    SV   SLV 2010       
## 6609                                 El Salvador    SV   SLV 2005       
## 6610                                 El Salvador    SV   SLV 1960       
## 6611                                 El Salvador    SV   SLV 1994       
## 6612                                 El Salvador    SV   SLV 1971       
## 6613                                 El Salvador    SV   SLV 1996       
## 6614                                 El Salvador    SV   SLV 2002       
## 6615                                 El Salvador    SV   SLV 2007       
## 6616                                 El Salvador    SV   SLV 1981       
## 6617                                 El Salvador    SV   SLV 2001       
## 6618                                 El Salvador    SV   SLV 1986       
## 6619                                 El Salvador    SV   SLV 1991       
## 6620                                 El Salvador    SV   SLV 1964       
## 6621                                 El Salvador    SV   SLV 1993       
## 6622                                 El Salvador    SV   SLV 1992       
## 6623                                 El Salvador    SV   SLV 1997       
## 6624                                 El Salvador    SV   SLV 1980       
## 6625                                 El Salvador    SV   SLV 1995       
## 6626    Emerging Market and Developing Economies   EMD       1987       
## 6627    Emerging Market and Developing Economies   EMD       1988       
## 6628    Emerging Market and Developing Economies   EMD       1989       
## 6629    Emerging Market and Developing Economies   EMD       1990       
## 6630    Emerging Market and Developing Economies   EMD       1991       
## 6631    Emerging Market and Developing Economies   EMD       1992       
## 6632    Emerging Market and Developing Economies   EMD       1993       
## 6633    Emerging Market and Developing Economies   EMD       1994       
## 6634    Emerging Market and Developing Economies   EMD       1995       
## 6635    Emerging Market and Developing Economies   EMD       1996       
## 6636    Emerging Market and Developing Economies   EMD       1997       
## 6637    Emerging Market and Developing Economies   EMD       1998       
## 6638    Emerging Market and Developing Economies   EMD       1999       
## 6639    Emerging Market and Developing Economies   EMD       2000       
## 6640    Emerging Market and Developing Economies   EMD       2001       
## 6641    Emerging Market and Developing Economies   EMD       2002       
## 6642    Emerging Market and Developing Economies   EMD       2003       
## 6643    Emerging Market and Developing Economies   EMD       2004       
## 6644    Emerging Market and Developing Economies   EMD       2005       
## 6645    Emerging Market and Developing Economies   EMD       2006       
## 6646    Emerging Market and Developing Economies   EMD       2007       
## 6647    Emerging Market and Developing Economies   EMD       2008       
## 6648    Emerging Market and Developing Economies   EMD       2009       
## 6649    Emerging Market and Developing Economies   EMD       2010       
## 6650    Emerging Market and Developing Economies   EMD       2011       
## 6651    Emerging Market and Developing Economies   EMD       2012       
## 6652    Emerging Market and Developing Economies   EMD       2013       
## 6653    Emerging Market and Developing Economies   EMD       2014       
## 6654    Emerging Market and Developing Economies   EMD       2015       
## 6655    Emerging Market and Developing Economies   EMD       2016       
## 6656    Emerging Market and Developing Economies   EMD       2017       
## 6657    Emerging Market and Developing Economies   EMD       2018       
## 6658    Emerging Market and Developing Economies   EMD       2019       
## 6659    Emerging Market and Developing Economies   EMD       2020       
## 6660                           Equatorial Guinea   GNQ       2019       
## 6661                           Equatorial Guinea   GNQ       2020       
## 6662                           Equatorial Guinea   GNQ       1993       
## 6663                           Equatorial Guinea   GNQ       1994       
## 6664                           Equatorial Guinea   GNQ       1995       
## 6665                           Equatorial Guinea   GNQ       1996       
## 6666                           Equatorial Guinea   GNQ       1997       
## 6667                           Equatorial Guinea   GNQ       1998       
## 6668                           Equatorial Guinea   GNQ       2014       
## 6669                           Equatorial Guinea   GNQ       2015       
## 6670                           Equatorial Guinea   GNQ       2016       
## 6671                           Equatorial Guinea   GNQ       2017       
## 6672                           Equatorial Guinea   GNQ       2018       
## 6673                           Equatorial Guinea   GNQ       1999       
## 6674                           Equatorial Guinea   GNQ       2000       
## 6675                           Equatorial Guinea   GNQ       2001       
## 6676                           Equatorial Guinea   GNQ       2002       
## 6677                           Equatorial Guinea   GNQ       2003       
## 6678                           Equatorial Guinea   GNQ       2004       
## 6679                           Equatorial Guinea   GNQ       2005       
## 6680                           Equatorial Guinea   GNQ       2006       
## 6681                           Equatorial Guinea   GNQ       2007       
## 6682                           Equatorial Guinea   GNQ       2008       
## 6683                           Equatorial Guinea   GNQ       2009       
## 6684                           Equatorial Guinea   GNQ       2010       
## 6685                           Equatorial Guinea   GNQ       2011       
## 6686                           Equatorial Guinea   GNQ       2012       
## 6687                           Equatorial Guinea   GNQ       2013       
## 6688                           Equatorial Guinea   GNQ       1992       
## 6689                           Equatorial Guinea   GNQ       1991       
## 6690                           Equatorial Guinea   GNQ       1987       
## 6691                           Equatorial Guinea   GNQ       1988       
## 6692                           Equatorial Guinea   GNQ       1989       
## 6693                           Equatorial Guinea   GNQ       1990       
## 6694                           Equatorial Guinea    GQ   GNQ 2002       
## 6695                           Equatorial Guinea    GQ   GNQ 2001       
## 6696                           Equatorial Guinea    GQ   GNQ 2016       
## 6697                           Equatorial Guinea    GQ   GNQ 2017       
## 6698                           Equatorial Guinea    GQ   GNQ 1992       
## 6699                           Equatorial Guinea    GQ   GNQ 1994       
## 6700                           Equatorial Guinea    GQ   GNQ 1991       
## 6701                           Equatorial Guinea    GQ   GNQ 1996       
## 6702                           Equatorial Guinea    GQ   GNQ 1998       
## 6703                           Equatorial Guinea    GQ   GNQ 1968       
## 6704                           Equatorial Guinea    GQ   GNQ 2014       
## 6705                           Equatorial Guinea    GQ   GNQ 2006       
## 6706                           Equatorial Guinea    GQ   GNQ 2000       
## 6707                           Equatorial Guinea    GQ   GNQ 2005       
## 6708                           Equatorial Guinea    GQ   GNQ 1979       
## 6709                           Equatorial Guinea    GQ   GNQ 2008       
## 6710                           Equatorial Guinea    GQ   GNQ 1961       
## 6711                           Equatorial Guinea    GQ   GNQ 2004       
## 6712                           Equatorial Guinea    GQ   GNQ 1962       
## 6713                           Equatorial Guinea    GQ   GNQ 1993       
## 6714                           Equatorial Guinea    GQ   GNQ 2015       
## 6715                           Equatorial Guinea    GQ   GNQ 1960       
## 6716                           Equatorial Guinea    GQ   GNQ 1973       
## 6717                           Equatorial Guinea    GQ   GNQ 1997       
## 6718                           Equatorial Guinea    GQ   GNQ 2022       
## 6719                           Equatorial Guinea    GQ   GNQ 2010       
## 6720                           Equatorial Guinea    GQ   GNQ 1970       
## 6721                           Equatorial Guinea    GQ   GNQ 1969       
## 6722                           Equatorial Guinea    GQ   GNQ 2013       
## 6723                           Equatorial Guinea    GQ   GNQ 2003       
## 6724                           Equatorial Guinea    GQ   GNQ 1974       
## 6725                           Equatorial Guinea    GQ   GNQ 1980       
## 6726                           Equatorial Guinea    GQ   GNQ 1975       
## 6727                           Equatorial Guinea    GQ   GNQ 2011       
## 6728                           Equatorial Guinea    GQ   GNQ 1967       
## 6729                           Equatorial Guinea    GQ   GNQ 1963       
## 6730                           Equatorial Guinea    GQ   GNQ 1995       
## 6731                           Equatorial Guinea    GQ   GNQ 2009       
## 6732                           Equatorial Guinea    GQ   GNQ 1999       
## 6733                           Equatorial Guinea    GQ   GNQ 2007       
## 6734                           Equatorial Guinea    GQ   GNQ 2018       
## 6735                           Equatorial Guinea    GQ   GNQ 2020       
## 6736                           Equatorial Guinea    GQ   GNQ 1982       
## 6737                           Equatorial Guinea    GQ   GNQ 1965       
## 6738                           Equatorial Guinea    GQ   GNQ 1985       
## 6739                           Equatorial Guinea    GQ   GNQ 1984       
## 6740                           Equatorial Guinea    GQ   GNQ 1978       
## 6741                           Equatorial Guinea    GQ   GNQ 1966       
## 6742                           Equatorial Guinea    GQ   GNQ 1964       
## 6743                           Equatorial Guinea    GQ   GNQ 1987       
## 6744                           Equatorial Guinea    GQ   GNQ 1983       
## 6745                           Equatorial Guinea    GQ   GNQ 2012       
## 6746                           Equatorial Guinea    GQ   GNQ 1972       
## 6747                           Equatorial Guinea    GQ   GNQ 1971       
## 6748                           Equatorial Guinea    GQ   GNQ 1989       
## 6749                           Equatorial Guinea    GQ   GNQ 1986       
## 6750                           Equatorial Guinea    GQ   GNQ 2021       
## 6751                           Equatorial Guinea    GQ   GNQ 2019       
## 6752                           Equatorial Guinea    GQ   GNQ 1990       
## 6753                           Equatorial Guinea    GQ   GNQ 1988       
## 6754                           Equatorial Guinea    GQ   GNQ 1981       
## 6755                           Equatorial Guinea    GQ   GNQ 1976       
## 6756                           Equatorial Guinea    GQ   GNQ 1977       
## 6757                                     Eritrea    ER   ERI 1976       
## 6758                                     Eritrea    ER   ERI 1989       
## 6759                                     Eritrea    ER   ERI 1979       
## 6760                                     Eritrea    ER   ERI 1990       
## 6761                                     Eritrea    ER   ERI 1978       
## 6762                                     Eritrea    ER   ERI 2017       
## 6763                                     Eritrea    ER   ERI 1981       
## 6764                                     Eritrea    ER   ERI 1994       
## 6765                                     Eritrea    ER   ERI 1991       
## 6766                                     Eritrea    ER   ERI 1992       
## 6767                                     Eritrea    ER   ERI 1988       
## 6768                                     Eritrea    ER   ERI 2013       
## 6769                                     Eritrea    ER   ERI 1960       
## 6770                                     Eritrea    ER   ERI 1977       
## 6771                                     Eritrea    ER   ERI 1993       
## 6772                                     Eritrea    ER   ERI 1972       
## 6773                                     Eritrea    ER   ERI 2003       
## 6774                                     Eritrea    ER   ERI 2006       
## 6775                                     Eritrea    ER   ERI 2014       
## 6776                                     Eritrea    ER   ERI 1962       
## 6777                                     Eritrea    ER   ERI 1987       
## 6778                                     Eritrea    ER   ERI 1980       
## 6779                                     Eritrea    ER   ERI 2005       
## 6780                                     Eritrea    ER   ERI 1965       
## 6781                                     Eritrea    ER   ERI 2022       
## 6782                                     Eritrea    ER   ERI 1975       
## 6783                                     Eritrea    ER   ERI 2020       
## 6784                                     Eritrea    ER   ERI 1973       
## 6785                                     Eritrea    ER   ERI 1982       
## 6786                                     Eritrea    ER   ERI 1964       
## 6787                                     Eritrea    ER   ERI 1963       
## 6788                                     Eritrea    ER   ERI 2016       
## 6789                                     Eritrea    ER   ERI 1983       
## 6790                                     Eritrea    ER   ERI 1961       
## 6791                                     Eritrea    ER   ERI 1995       
## 6792                                     Eritrea    ER   ERI 1966       
## 6793                                     Eritrea    ER   ERI 1968       
## 6794                                     Eritrea    ER   ERI 1969       
## 6795                                     Eritrea    ER   ERI 1967       
## 6796                                     Eritrea    ER   ERI 2009       
## 6797                                     Eritrea    ER   ERI 1970       
## 6798                                     Eritrea    ER   ERI 2011       
## 6799                                     Eritrea    ER   ERI 2008       
## 6800                                     Eritrea    ER   ERI 2012       
## 6801                                     Eritrea    ER   ERI 2015       
## 6802                                     Eritrea    ER   ERI 1971       
## 6803                                     Eritrea    ER   ERI 2002       
## 6804                                     Eritrea    ER   ERI 1997       
## 6805                                     Eritrea    ER   ERI 2018       
## 6806                                     Eritrea    ER   ERI 2007       
## 6807                                     Eritrea    ER   ERI 1974       
## 6808                                     Eritrea    ER   ERI 2021       
## 6809                                     Eritrea    ER   ERI 2004       
## 6810                                     Eritrea    ER   ERI 2010       
## 6811                                     Eritrea    ER   ERI 1999       
## 6812                                     Eritrea    ER   ERI 1985       
## 6813                                     Eritrea    ER   ERI 1998       
## 6814                                     Eritrea    ER   ERI 2001       
## 6815                                     Eritrea    ER   ERI 2019       
## 6816                                     Eritrea    ER   ERI 1996       
## 6817                                     Eritrea    ER   ERI 1984       
## 6818                                     Eritrea    ER   ERI 1986       
## 6819                                     Eritrea    ER   ERI 2000       
## 6820                                     Eritrea   ERI       1987       
## 6821                                     Eritrea   ERI       1988       
## 6822                                     Eritrea   ERI       1989       
## 6823                                     Eritrea   ERI       1990       
## 6824                                     Eritrea   ERI       1991       
## 6825                                     Eritrea   ERI       1992       
## 6826                                     Eritrea   ERI       1993       
## 6827                                     Eritrea   ERI       1994       
## 6828                                     Eritrea   ERI       1995       
## 6829                                     Eritrea   ERI       1996       
## 6830                                     Eritrea   ERI       1997       
## 6831                                     Eritrea   ERI       1998       
## 6832                                     Eritrea   ERI       1999       
## 6833                                     Eritrea   ERI       2000       
## 6834                                     Eritrea   ERI       2001       
## 6835                                     Eritrea   ERI       2002       
## 6836                                     Eritrea   ERI       2003       
## 6837                                     Eritrea   ERI       2004       
## 6838                                     Eritrea   ERI       2005       
## 6839                                     Eritrea   ERI       2006       
## 6840                                     Eritrea   ERI       2007       
## 6841                                     Eritrea   ERI       2008       
## 6842                                     Eritrea   ERI       2009       
## 6843                                     Eritrea   ERI       2010       
## 6844                                     Eritrea   ERI       2011       
## 6845                                     Eritrea   ERI       2012       
## 6846                                     Eritrea   ERI       2013       
## 6847                                     Eritrea   ERI       2014       
## 6848                                     Eritrea   ERI       2015       
## 6849                                     Eritrea   ERI       2016       
## 6850                                     Eritrea   ERI       2017       
## 6851                                     Eritrea   ERI       2018       
## 6852                                     Eritrea   ERI       2019       
## 6853                                     Eritrea   ERI       2020       
## 6854                                     Estonia    EE   EST 1965       
## 6855                                     Estonia    EE   EST 1970       
## 6856                                     Estonia    EE   EST 1969       
## 6857                                     Estonia    EE   EST 1984       
## 6858                                     Estonia    EE   EST 2012       
## 6859                                     Estonia    EE   EST 2009       
## 6860                                     Estonia    EE   EST 1966       
## 6861                                     Estonia    EE   EST 1991       
## 6862                                     Estonia    EE   EST 1964       
## 6863                                     Estonia    EE   EST 1985       
## 6864                                     Estonia    EE   EST 2010       
## 6865                                     Estonia    EE   EST 2008       
## 6866                                     Estonia    EE   EST 1999       
## 6867                                     Estonia    EE   EST 2016       
## 6868                                     Estonia    EE   EST 1992       
## 6869                                     Estonia    EE   EST 2011       
## 6870                                     Estonia    EE   EST 1982       
## 6871                                     Estonia    EE   EST 2005       
## 6872                                     Estonia    EE   EST 1971       
## 6873                                     Estonia    EE   EST 1979       
## 6874                                     Estonia    EE   EST 1974       
## 6875                                     Estonia    EE   EST 1960       
## 6876                                     Estonia    EE   EST 1978       
## 6877                                     Estonia    EE   EST 2004       
## 6878                                     Estonia    EE   EST 2007       
## 6879                                     Estonia    EE   EST 1997       
## 6880                                     Estonia    EE   EST 2006       
## 6881                                     Estonia    EE   EST 2017       
## 6882                                     Estonia    EE   EST 1983       
## 6883                                     Estonia    EE   EST 1993       
## 6884                                     Estonia    EE   EST 1994       
## 6885                                     Estonia    EE   EST 1961       
## 6886                                     Estonia    EE   EST 2019       
## 6887                                     Estonia    EE   EST 1968       
## 6888                                     Estonia    EE   EST 1987       
## 6889                                     Estonia    EE   EST 1981       
## 6890                                     Estonia    EE   EST 2003       
## 6891                                     Estonia    EE   EST 2018       
## 6892                                     Estonia    EE   EST 2015       
## 6893                                     Estonia    EE   EST 1975       
## 6894                                     Estonia    EE   EST 2021       
## 6895                                     Estonia    EE   EST 1962       
## 6896                                     Estonia    EE   EST 1990       
## 6897                                     Estonia    EE   EST 1967       
## 6898                                     Estonia    EE   EST 1972       
## 6899                                     Estonia    EE   EST 1989       
## 6900                                     Estonia    EE   EST 2022       
## 6901                                     Estonia    EE   EST 1973       
## 6902                                     Estonia    EE   EST 2002       
## 6903                                     Estonia    EE   EST 2013       
## 6904                                     Estonia    EE   EST 1995       
## 6905                                     Estonia    EE   EST 1996       
## 6906                                     Estonia    EE   EST 1986       
## 6907                                     Estonia    EE   EST 2020       
## 6908                                     Estonia    EE   EST 2000       
## 6909                                     Estonia    EE   EST 1988       
## 6910                                     Estonia    EE   EST 1963       
## 6911                                     Estonia    EE   EST 1998       
## 6912                                     Estonia    EE   EST 1977       
## 6913                                     Estonia    EE   EST 1980       
## 6914                                     Estonia    EE   EST 1976       
## 6915                                     Estonia    EE   EST 2014       
## 6916                                     Estonia    EE   EST 2001       
## 6917                                     Estonia   EST       1987       
## 6918                                     Estonia   EST       1988       
## 6919                                     Estonia   EST       1989       
## 6920                                     Estonia   EST       1990       
## 6921                                     Estonia   EST       1991       
## 6922                                     Estonia   EST       1992       
## 6923                                     Estonia   EST       1993       
## 6924                                     Estonia   EST       1994       
## 6925                                     Estonia   EST       1995       
## 6926                                     Estonia   EST       1996       
## 6927                                     Estonia   EST       1997       
## 6928                                     Estonia   EST       1998       
## 6929                                     Estonia   EST       1999       
## 6930                                     Estonia   EST       2000       
## 6931                                     Estonia   EST       2001       
## 6932                                     Estonia   EST       2002       
## 6933                                     Estonia   EST       2003       
## 6934                                     Estonia   EST       2004       
## 6935                                     Estonia   EST       2005       
## 6936                                     Estonia   EST       2006       
## 6937                                     Estonia   EST       2007       
## 6938                                     Estonia   EST       2008       
## 6939                                     Estonia   EST       2009       
## 6940                                     Estonia   EST       2010       
## 6941                                     Estonia   EST       2011       
## 6942                                     Estonia   EST       2012       
## 6943                                     Estonia   EST       2013       
## 6944                                     Estonia   EST       2014       
## 6945                                     Estonia   EST       2015       
## 6946                                     Estonia   EST       2016       
## 6947                                     Estonia   EST       2017       
## 6948                                     Estonia   EST       2018       
## 6949                                     Estonia   EST       2019       
## 6950                                     Estonia   EST       2020       
## 6951                                    Eswatini    SZ   SWZ 1994       
## 6952                                    Eswatini    SZ   SWZ 2004       
## 6953                                    Eswatini    SZ   SWZ 1965       
## 6954                                    Eswatini    SZ   SWZ 1988       
## 6955                                    Eswatini    SZ   SWZ 2022       
## 6956                                    Eswatini    SZ   SWZ 2018       
## 6957                                    Eswatini    SZ   SWZ 1993       
## 6958                                    Eswatini    SZ   SWZ 1991       
## 6959                                    Eswatini    SZ   SWZ 2021       
## 6960                                    Eswatini    SZ   SWZ 1992       
## 6961                                    Eswatini    SZ   SWZ 2003       
## 6962                                    Eswatini    SZ   SWZ 1989       
## 6963                                    Eswatini    SZ   SWZ 1986       
## 6964                                    Eswatini    SZ   SWZ 2001       
## 6965                                    Eswatini    SZ   SWZ 1984       
## 6966                                    Eswatini    SZ   SWZ 1979       
## 6967                                    Eswatini    SZ   SWZ 1975       
## 6968                                    Eswatini    SZ   SWZ 1997       
## 6969                                    Eswatini    SZ   SWZ 2000       
## 6970                                    Eswatini    SZ   SWZ 1982       
## 6971                                    Eswatini    SZ   SWZ 2012       
## 6972                                    Eswatini    SZ   SWZ 1962       
## 6973                                    Eswatini    SZ   SWZ 2002       
## 6974                                    Eswatini    SZ   SWZ 2020       
## 6975                                    Eswatini    SZ   SWZ 1980       
## 6976                                    Eswatini    SZ   SWZ 2016       
## 6977                                    Eswatini    SZ   SWZ 1985       
## 6978                                    Eswatini    SZ   SWZ 2015       
## 6979                                    Eswatini    SZ   SWZ 1963       
## 6980                                    Eswatini    SZ   SWZ 1966       
## 6981                                    Eswatini    SZ   SWZ 1987       
## 6982                                    Eswatini    SZ   SWZ 1983       
## 6983                                    Eswatini    SZ   SWZ 1981       
## 6984                                    Eswatini    SZ   SWZ 1996       
## 6985                                    Eswatini    SZ   SWZ 2008       
## 6986                                    Eswatini    SZ   SWZ 1978       
## 6987                                    Eswatini    SZ   SWZ 2019       
## 6988                                    Eswatini    SZ   SWZ 2011       
## 6989                                    Eswatini    SZ   SWZ 1976       
## 6990                                    Eswatini    SZ   SWZ 1974       
## 6991                                    Eswatini    SZ   SWZ 2017       
## 6992                                    Eswatini    SZ   SWZ 1995       
## 6993                                    Eswatini    SZ   SWZ 1971       
## 6994                                    Eswatini    SZ   SWZ 1967       
## 6995                                    Eswatini    SZ   SWZ 1999       
## 6996                                    Eswatini    SZ   SWZ 2010       
## 6997                                    Eswatini    SZ   SWZ 1990       
## 6998                                    Eswatini    SZ   SWZ 1973       
## 6999                                    Eswatini    SZ   SWZ 1964       
## 7000                                    Eswatini    SZ   SWZ 2009       
## 7001                                    Eswatini    SZ   SWZ 1972       
## 7002                                    Eswatini    SZ   SWZ 2014       
## 7003                                    Eswatini    SZ   SWZ 1998       
## 7004                                    Eswatini    SZ   SWZ 1970       
## 7005                                    Eswatini    SZ   SWZ 2007       
## 7006                                    Eswatini    SZ   SWZ 2006       
## 7007                                    Eswatini    SZ   SWZ 1961       
## 7008                                    Eswatini    SZ   SWZ 1968       
## 7009                                    Eswatini    SZ   SWZ 1960       
## 7010                                    Eswatini    SZ   SWZ 1977       
## 7011                                    Eswatini    SZ   SWZ 1969       
## 7012                                    Eswatini    SZ   SWZ 2005       
## 7013                                    Eswatini    SZ   SWZ 2013       
## 7014                                    Ethiopia    ET   ETH 1975       
## 7015                                    Ethiopia    ET   ETH 1982       
## 7016                                    Ethiopia    ET   ETH 1974       
## 7017                                    Ethiopia    ET   ETH 2011       
## 7018                                    Ethiopia    ET   ETH 1997       
## 7019                                    Ethiopia    ET   ETH 1979       
## 7020                                    Ethiopia    ET   ETH 2001       
## 7021                                    Ethiopia    ET   ETH 1977       
## 7022                                    Ethiopia    ET   ETH 1972       
## 7023                                    Ethiopia    ET   ETH 1998       
## 7024                                    Ethiopia    ET   ETH 1978       
## 7025                                    Ethiopia    ET   ETH 2012       
## 7026                                    Ethiopia    ET   ETH 2004       
## 7027                                    Ethiopia    ET   ETH 2010       
## 7028                                    Ethiopia    ET   ETH 1981       
## 7029                                    Ethiopia    ET   ETH 2016       
## 7030                                    Ethiopia    ET   ETH 1980       
## 7031                                    Ethiopia    ET   ETH 1963       
## 7032                                    Ethiopia    ET   ETH 2000       
## 7033                                    Ethiopia    ET   ETH 1999       
## 7034                                    Ethiopia    ET   ETH 2002       
## 7035                                    Ethiopia    ET   ETH 1962       
## 7036                                    Ethiopia    ET   ETH 1976       
## 7037                                    Ethiopia    ET   ETH 2005       
## 7038                                    Ethiopia    ET   ETH 1996       
## 7039                                    Ethiopia    ET   ETH 1971       
## 7040                                    Ethiopia    ET   ETH 2003       
## 7041                                    Ethiopia    ET   ETH 1995       
## 7042                                    Ethiopia    ET   ETH 2009       
## 7043                                    Ethiopia    ET   ETH 1960       
## 7044                                    Ethiopia    ET   ETH 1988       
## 7045                                    Ethiopia    ET   ETH 1968       
## 7046                                    Ethiopia    ET   ETH 2006       
## 7047                                    Ethiopia    ET   ETH 2007       
## 7048                                    Ethiopia    ET   ETH 1961       
## 7049                                    Ethiopia    ET   ETH 2008       
## 7050                                    Ethiopia    ET   ETH 1985       
## 7051                                    Ethiopia    ET   ETH 1989       
## 7052                                    Ethiopia    ET   ETH 1987       
## 7053                                    Ethiopia    ET   ETH 1993       
## 7054                                    Ethiopia    ET   ETH 1969       
## 7055                                    Ethiopia    ET   ETH 1973       
## 7056                                    Ethiopia    ET   ETH 2020       
## 7057                                    Ethiopia    ET   ETH 1991       
## 7058                                    Ethiopia    ET   ETH 2015       
## 7059                                    Ethiopia    ET   ETH 2013       
## 7060                                    Ethiopia    ET   ETH 2017       
## 7061                                    Ethiopia    ET   ETH 1990       
## 7062                                    Ethiopia    ET   ETH 2014       
## 7063                                    Ethiopia    ET   ETH 1994       
## 7064                                    Ethiopia    ET   ETH 1967       
## 7065                                    Ethiopia    ET   ETH 1966       
## 7066                                    Ethiopia    ET   ETH 1992       
## 7067                                    Ethiopia    ET   ETH 1983       
## 7068                                    Ethiopia    ET   ETH 1984       
## 7069                                    Ethiopia    ET   ETH 1970       
## 7070                                    Ethiopia    ET   ETH 2021       
## 7071                                    Ethiopia    ET   ETH 2022       
## 7072                                    Ethiopia    ET   ETH 2018       
## 7073                                    Ethiopia    ET   ETH 2019       
## 7074                                    Ethiopia    ET   ETH 1986       
## 7075                                    Ethiopia    ET   ETH 1965       
## 7076                                    Ethiopia    ET   ETH 1964       
## 7077                                    Ethiopia   ETH       1998       
## 7078                                    Ethiopia   ETH       1999       
## 7079                                    Ethiopia   ETH       2000       
## 7080                                    Ethiopia   ETH       2001       
## 7081                                    Ethiopia   ETH       2002       
## 7082                                    Ethiopia   ETH       2003       
## 7083                                    Ethiopia   ETH       2004       
## 7084                                    Ethiopia   ETH       2005       
## 7085                                    Ethiopia   ETH       2006       
## 7086                                    Ethiopia   ETH       2007       
## 7087                                    Ethiopia   ETH       2008       
## 7088                                    Ethiopia   ETH       2009       
## 7089                                    Ethiopia   ETH       2010       
## 7090                                    Ethiopia   ETH       2011       
## 7091                                    Ethiopia   ETH       2012       
## 7092                                    Ethiopia   ETH       2013       
## 7093                                    Ethiopia   ETH       2014       
## 7094                                    Ethiopia   ETH       2015       
## 7095                                    Ethiopia   ETH       2016       
## 7096                                    Ethiopia   ETH       2017       
## 7097                                    Ethiopia   ETH       2018       
## 7098                                    Ethiopia   ETH       2019       
## 7099                                    Ethiopia   ETH       2020       
## 7100                                    Ethiopia   ETH       1996       
## 7101                                    Ethiopia   ETH       1997       
## 7102                                    Ethiopia   ETH       1987       
## 7103                                    Ethiopia   ETH       1988       
## 7104                                    Ethiopia   ETH       1989       
## 7105                                    Ethiopia   ETH       1990       
## 7106                                    Ethiopia   ETH       1991       
## 7107                                    Ethiopia   ETH       1992       
## 7108                                    Ethiopia   ETH       1993       
## 7109                                    Ethiopia   ETH       1994       
## 7110                                    Ethiopia   ETH       1995       
## 7111                                   Euro area    XC   EMU 1993       
## 7112                                   Euro area    XC   EMU 1977       
## 7113                                   Euro area    XC   EMU 1978       
## 7114                                   Euro area    XC   EMU 1976       
## 7115                                   Euro area    XC   EMU 1982       
## 7116                                   Euro area    XC   EMU 1995       
## 7117                                   Euro area    XC   EMU 1979       
## 7118                                   Euro area    XC   EMU 1981       
## 7119                                   Euro area    XC   EMU 1975       
## 7120                                   Euro area    XC   EMU 2018       
## 7121                                   Euro area    XC   EMU 1986       
## 7122                                   Euro area    XC   EMU 1994       
## 7123                                   Euro area    XC   EMU 1984       
## 7124                                   Euro area    XC   EMU 2019       
## 7125                                   Euro area    XC   EMU 2022       
## 7126                                   Euro area    XC   EMU 2017       
## 7127                                   Euro area    XC   EMU 1966       
## 7128                                   Euro area    XC   EMU 2016       
## 7129                                   Euro area    XC   EMU 1965       
## 7130                                   Euro area    XC   EMU 1997       
## 7131                                   Euro area    XC   EMU 2021       
## 7132                                   Euro area    XC   EMU 1983       
## 7133                                   Euro area    XC   EMU 1988       
## 7134                                   Euro area    XC   EMU 1990       
## 7135                                   Euro area    XC   EMU 1963       
## 7136                                   Euro area    XC   EMU 1962       
## 7137                                   Euro area    XC   EMU 2020       
## 7138                                   Euro area    XC   EMU 1980       
## 7139                                   Euro area    XC   EMU 2013       
## 7140                                   Euro area    XC   EMU 2012       
## 7141                                   Euro area    XC   EMU 2011       
## 7142                                   Euro area    XC   EMU 1999       
##      lastupdated  gdp_deflator    cpi_price                     region
## 1     2020-07-27            NA 5.870908e+01                       <NA>
## 2     2020-07-27            NA 6.050998e+01                       <NA>
## 3     2020-07-27            NA 6.301621e+01                       <NA>
## 4     2020-07-27            NA 6.603611e+01                       <NA>
## 5     2020-07-27            NA 6.910801e+01                       <NA>
## 6     2020-07-27            NA 7.143190e+01                       <NA>
## 7     2020-07-27            NA 7.358393e+01                       <NA>
## 8     2020-07-27            NA 7.535083e+01                       <NA>
## 9     2020-07-27            NA 7.712737e+01                       <NA>
## 10    2020-07-27            NA 7.885534e+01                       <NA>
## 11    2020-07-27            NA 8.052183e+01                       <NA>
## 12    2020-07-27            NA 8.171230e+01                       <NA>
## 13    2020-07-27            NA 8.275686e+01                       <NA>
## 14    2020-07-27            NA 8.441567e+01                       <NA>
## 15    2020-07-27            NA 8.611039e+01                       <NA>
## 16    2020-07-27            NA 8.729647e+01                       <NA>
## 17    2020-07-27            NA 8.879353e+01                       <NA>
## 18    2020-07-27            NA 9.043791e+01                       <NA>
## 19    2020-07-27            NA 9.235435e+01                       <NA>
## 20    2020-07-27            NA 9.437385e+01                       <NA>
## 21    2020-07-27            NA 9.632303e+01                       <NA>
## 22    2020-07-27            NA 9.945036e+01                       <NA>
## 23    2020-07-27            NA 9.947089e+01                       <NA>
## 24    2020-07-27            NA 1.008756e+02                       <NA>
## 25    2020-07-27            NA 1.034483e+02                       <NA>
## 26    2020-07-27            NA 1.053756e+02                       <NA>
## 27    2020-07-27            NA 1.067307e+02                       <NA>
## 28    2020-07-27            NA 1.081908e+02                       <NA>
## 29    2020-07-27            NA 1.084950e+02                       <NA>
## 30    2020-07-27            NA 1.092632e+02                       <NA>
## 31    2020-07-27            NA 1.110602e+02                       <NA>
## 32    2020-07-27            NA 1.131841e+02                       <NA>
## 33    2020-07-27            NA 1.147626e+02                       <NA>
## 34    2020-07-27            NA 1.153092e+02                       <NA>
## 35    2023-05-10            NA           NA                 South Asia
## 36    2023-05-10  1.091277e+01           NA                 South Asia
## 37    2023-05-10            NA           NA                 South Asia
## 38    2023-05-10            NA           NA                 South Asia
## 39    2023-05-10            NA           NA                 South Asia
## 40    2023-05-10            NA           NA                 South Asia
## 41    2023-05-10            NA           NA                 South Asia
## 42    2023-05-10            NA           NA                 South Asia
## 43    2023-05-10            NA           NA                 South Asia
## 44    2023-05-10            NA           NA                 South Asia
## 45    2023-05-10            NA           NA                 South Asia
## 46    2023-05-10  1.127143e+01           NA                 South Asia
## 47    2023-05-10            NA           NA                 South Asia
## 48    2023-05-10            NA           NA                 South Asia
## 49    2023-05-10            NA           NA                 South Asia
## 50    2023-05-10            NA           NA                 South Asia
## 51    2023-05-10  5.245165e-01           NA                 South Asia
## 52    2023-05-10            NA           NA                 South Asia
## 53    2023-05-10            NA           NA                 South Asia
## 54    2023-05-10            NA           NA                 South Asia
## 55    2023-05-10            NA           NA                 South Asia
## 56    2023-05-10            NA           NA                 South Asia
## 57    2023-05-10            NA           NA                 South Asia
## 58    2023-05-10            NA           NA                 South Asia
## 59    2023-05-10  2.447563e+00           NA                 South Asia
## 60    2023-05-10  3.814630e+00           NA                 South Asia
## 61    2023-05-10  2.252776e+01           NA                 South Asia
## 62    2023-05-10  7.199751e+00           NA                 South Asia
## 63    2023-05-10            NA           NA                 South Asia
## 64    2023-05-10            NA           NA                 South Asia
## 65    2023-05-10            NA           NA                 South Asia
## 66    2023-05-10            NA           NA                 South Asia
## 67    2023-05-10            NA           NA                 South Asia
## 68    2023-05-10            NA           NA                 South Asia
## 69    2023-05-10            NA           NA                 South Asia
## 70    2023-05-10            NA           NA                 South Asia
## 71    2023-05-10            NA           NA                 South Asia
## 72    2023-05-10            NA           NA                 South Asia
## 73    2023-05-10            NA           NA                 South Asia
## 74    2023-05-10            NA           NA                 South Asia
## 75    2023-05-10            NA           NA                 South Asia
## 76    2023-05-10            NA           NA                 South Asia
## 77    2023-05-10            NA           NA                 South Asia
## 78    2023-05-10            NA           NA                 South Asia
## 79    2023-05-10  7.301756e+00           NA                 South Asia
## 80    2023-05-10  5.669445e-01           NA                 South Asia
## 81    2023-05-10  1.165524e+01           NA                 South Asia
## 82    2023-05-10            NA           NA                 South Asia
## 83    2023-05-10            NA           NA                 South Asia
## 84    2023-05-10 -2.197526e+00           NA                 South Asia
## 85    2023-05-10  2.403656e+00           NA                 South Asia
## 86    2023-05-10 -2.163404e+00           NA                 South Asia
## 87    2023-05-10            NA           NA                 South Asia
## 88    2023-05-10            NA           NA                 South Asia
## 89    2023-05-10  2.071349e+00           NA                 South Asia
## 90    2023-05-10  4.822785e+00           NA                 South Asia
## 91    2023-05-10            NA           NA                 South Asia
## 92    2023-05-10  7.821667e+00           NA                 South Asia
## 93    2023-05-10            NA           NA                 South Asia
## 94    2023-05-10  1.659335e+01           NA                 South Asia
## 95    2023-05-10            NA           NA                 South Asia
## 96    2023-05-10  2.096289e+00           NA                 South Asia
## 97    2023-05-10  6.521480e+00           NA                 South Asia
## 98    2020-07-27            NA           NA                       <NA>
## 99    2020-07-27            NA           NA                       <NA>
## 100   2020-07-27            NA           NA                       <NA>
## 101   2020-07-27            NA           NA                       <NA>
## 102   2020-07-27            NA           NA                       <NA>
## 103   2020-07-27            NA           NA                       <NA>
## 104   2020-07-27            NA           NA                       <NA>
## 105   2020-07-27            NA           NA                       <NA>
## 106   2020-07-27            NA           NA                       <NA>
## 107   2020-07-27            NA           NA                       <NA>
## 108   2020-07-27            NA           NA                       <NA>
## 109   2020-07-27            NA           NA                       <NA>
## 110   2020-07-27            NA           NA                       <NA>
## 111   2020-07-27            NA           NA                       <NA>
## 112   2020-07-27            NA           NA                       <NA>
## 113   2020-07-27            NA           NA                       <NA>
## 114   2020-07-27            NA           NA                       <NA>
## 115   2020-07-27            NA 6.713728e+01                       <NA>
## 116   2020-07-27            NA 7.408618e+01                       <NA>
## 117   2020-07-27            NA 7.911264e+01                       <NA>
## 118   2020-07-27            NA 8.598007e+01                       <NA>
## 119   2020-07-27            NA 1.086948e+02                       <NA>
## 120   2020-07-27            NA 1.012915e+02                       <NA>
## 121   2020-07-27            NA 1.034981e+02                       <NA>
## 122   2020-07-27            NA 1.157152e+02                       <NA>
## 123   2020-07-27            NA 1.231687e+02                       <NA>
## 124   2020-07-27            NA 1.322657e+02                       <NA>
## 125   2020-07-27            NA 1.384478e+02                       <NA>
## 126   2020-07-27            NA 1.375316e+02                       <NA>
## 127   2020-07-27            NA 1.435609e+02                       <NA>
## 128   2020-07-27            NA 1.507044e+02                       <NA>
## 129   2020-07-27            NA 1.516480e+02                       <NA>
## 130   2020-07-27            NA 1.551395e+02                       <NA>
## 131   2020-07-27            NA 1.591228e+02                       <NA>
## 132   2023-05-10  1.193375e+01           NA                 Aggregates
## 133   2023-05-10  5.685690e+00           NA                 Aggregates
## 134   2023-05-10  1.481761e+01           NA                 Aggregates
## 135   2023-05-10  8.006813e+00           NA                 Aggregates
## 136   2023-05-10  1.018140e+01           NA                 Aggregates
## 137   2023-05-10  1.097043e+01           NA                 Aggregates
## 138   2023-05-10  8.112712e+00           NA                 Aggregates
## 139   2023-05-10  7.697472e+00           NA                 Aggregates
## 140   2023-05-10  8.629984e+00           NA                 Aggregates
## 141   2023-05-10  1.155684e+01           NA                 Aggregates
## 142   2023-05-10  1.190088e+01           NA                 Aggregates
## 143   2023-05-10  5.173392e+00           NA                 Aggregates
## 144   2023-05-10  9.459265e+00           NA                 Aggregates
## 145   2023-05-10  1.425314e+01           NA                 Aggregates
## 146   2023-05-10  1.003771e+01           NA                 Aggregates
## 147   2023-05-10  6.128432e+00           NA                 Aggregates
## 148   2023-05-10  7.899823e+00           NA                 Aggregates
## 149   2023-05-10  1.065588e+01           NA                 Aggregates
## 150   2023-05-10  1.253196e+01           NA                 Aggregates
## 151   2023-05-10  3.397723e+00           NA                 Aggregates
## 152   2023-05-10  9.798780e-01           NA                 Aggregates
## 153   2023-05-10  4.664180e+00           NA                 Aggregates
## 154   2023-05-10  9.839591e+00           NA                 Aggregates
## 155   2023-05-10  1.035130e+01           NA                 Aggregates
## 156   2023-05-10  1.111731e+01           NA                 Aggregates
## 157   2023-05-10  1.337686e+01           NA                 Aggregates
## 158   2023-05-10  8.592553e+00           NA                 Aggregates
## 159   2023-05-10  6.400900e+00           NA                 Aggregates
## 160   2023-05-10  1.192630e+01           NA                 Aggregates
## 161   2023-05-10  2.008110e+01           NA                 Aggregates
## 162   2023-05-10  7.124924e+00           NA                 Aggregates
## 163   2023-05-10  5.545065e+00           NA                 Aggregates
## 164   2023-05-10  1.115054e+01           NA                 Aggregates
## 165   2023-05-10  1.614433e+01           NA                 Aggregates
## 166   2023-05-10  5.197024e+00           NA                 Aggregates
## 167   2023-05-10  9.018941e+00           NA                 Aggregates
## 168   2023-05-10  8.269555e+00           NA                 Aggregates
## 169   2023-05-10            NA           NA                 Aggregates
## 170   2023-05-10  1.350928e+01           NA                 Aggregates
## 171   2023-05-10  7.407529e+00           NA                 Aggregates
## 172   2023-05-10  8.259570e+00           NA                 Aggregates
## 173   2023-05-10  1.173578e+01           NA                 Aggregates
## 174   2023-05-10  1.356485e+00           NA                 Aggregates
## 175   2023-05-10  5.648207e+00           NA                 Aggregates
## 176   2023-05-10  1.457124e+01           NA                 Aggregates
## 177   2023-05-10  1.146304e+01           NA                 Aggregates
## 178   2023-05-10  1.861701e+00           NA                 Aggregates
## 179   2023-05-10  3.726978e+00           NA                 Aggregates
## 180   2023-05-10  1.281652e+01           NA                 Aggregates
## 181   2023-05-10  3.569951e+00           NA                 Aggregates
## 182   2023-05-10  4.456658e+00           NA                 Aggregates
## 183   2023-05-10  1.086390e+01           NA                 Aggregates
## 184   2023-05-10  3.980391e+00           NA                 Aggregates
## 185   2023-05-10  9.430270e+00           NA                 Aggregates
## 186   2023-05-10  5.217431e+00           NA                 Aggregates
## 187   2023-05-10  3.928524e+00           NA                 Aggregates
## 188   2023-05-10  1.920529e+01           NA                 Aggregates
## 189   2023-05-10  5.221106e+00           NA                 Aggregates
## 190   2023-05-10  3.150053e+00           NA                 Aggregates
## 191   2023-05-10  4.937524e+00           NA                 Aggregates
## 192   2023-05-10            NA           NA                 Aggregates
## 193   2023-05-10  1.479823e+01           NA                 Aggregates
## 194   2023-05-10  1.445311e+01           NA                 Aggregates
## 195   2023-05-10  4.189196e+00           NA                 Aggregates
## 196   2023-05-10  2.752432e+00           NA                 Aggregates
## 197   2023-05-10  7.198996e+00           NA                 Aggregates
## 198   2023-05-10  2.031465e+00           NA                 Aggregates
## 199   2023-05-10  3.336148e+00           NA                 Aggregates
## 200   2023-05-10  3.365101e+00           NA                 Aggregates
## 201   2023-05-10  3.710455e+00           NA                 Aggregates
## 202   2023-05-10  3.013917e+00           NA                 Aggregates
## 203   2023-05-10  1.342264e+01           NA                 Aggregates
## 204   2023-05-10  1.205477e+01           NA                 Aggregates
## 205   2023-05-10  5.145811e+00           NA                 Aggregates
## 206   2023-05-10  8.586772e+00           NA                 Aggregates
## 207   2023-05-10  6.454910e+00           NA                 Aggregates
## 208   2023-05-10  1.118208e+00           NA                 Aggregates
## 209   2023-05-10  1.582290e+00           NA                 Aggregates
## 210   2023-05-10  1.759172e+00           NA                 Aggregates
## 211   2023-05-10  5.681951e+00           NA                 Aggregates
## 212   2023-05-10            NA           NA                 Aggregates
## 213   2023-05-10  1.684563e+00           NA                 Aggregates
## 214   2023-05-10  1.197825e+01           NA                 Aggregates
## 215   2023-05-10  1.117394e+01           NA                 Aggregates
## 216   2023-05-10  2.046779e-02           NA                 Aggregates
## 217   2023-05-10  2.906178e+00           NA                 Aggregates
## 218   2023-05-10  1.992846e+00           NA                 Aggregates
## 219   2023-05-10            NA           NA                 Aggregates
## 220   2023-05-10  1.573135e+00           NA                 Aggregates
## 221   2023-05-10  4.643322e+00           NA                 Aggregates
## 222   2023-05-10  5.387361e+00           NA                 Aggregates
## 223   2023-05-10  7.612078e+00           NA                 Aggregates
## 224   2023-05-10  1.396219e+00           NA                 Aggregates
## 225   2023-05-10  3.584859e+00           NA                 Aggregates
## 226   2023-05-10  4.319957e+00           NA                 Aggregates
## 227   2023-05-10  2.378322e+00           NA                 Aggregates
## 228   2023-05-10  6.668942e+00           NA                 Aggregates
## 229   2023-05-10  9.927936e+00           NA                 Aggregates
## 230   2023-05-10  4.838561e+00           NA                 Aggregates
## 231   2023-05-10  4.143079e+00           NA                 Aggregates
## 232   2023-05-10  1.784172e+00           NA                 Aggregates
## 233   2023-05-10  4.761878e+00           NA                 Aggregates
## 234   2023-05-10  6.688934e+00           NA                 Aggregates
## 235   2023-05-10  3.408557e+00           NA                 Aggregates
## 236   2023-05-10  9.576757e+00           NA                 Aggregates
## 237   2023-05-10  7.680834e+00           NA                 Aggregates
## 238   2023-05-10  1.718822e+00           NA                 Aggregates
## 239   2023-05-10  2.240061e+00           NA                 Aggregates
## 240   2023-05-10  2.506204e+01           NA                 Aggregates
## 241   2023-05-10  3.667509e+00           NA                 Aggregates
## 242   2023-05-10  1.062529e+01           NA                 Aggregates
## 243   2023-05-10  7.667392e+00           NA                 Aggregates
## 244   2023-05-10  1.280375e+00           NA                 Aggregates
## 245   2023-05-10  2.807881e-01           NA                 Aggregates
## 246   2023-05-10  2.432663e+00           NA                 Aggregates
## 247   2023-05-10  7.388168e-01           NA                 Aggregates
## 248   2023-05-10  5.289805e+00           NA                 Aggregates
## 249   2023-05-10  5.004665e+00           NA                 Aggregates
## 250   2023-05-10  6.907294e+00           NA                 Aggregates
## 251   2023-05-10  3.073499e+00           NA                 Aggregates
## 252   2023-05-10  1.104311e+01           NA                 Aggregates
## 253   2023-05-10  1.382056e+01           NA                 Aggregates
## 254   2023-05-10  5.297214e+00           NA                 Aggregates
## 255   2023-05-10  4.730095e+00           NA                 Aggregates
## 256   2023-05-10  8.789839e+00           NA                 Aggregates
## 257   2023-05-10  1.131505e+01           NA                 Aggregates
## 258   2023-05-10            NA           NA      Europe & Central Asia
## 259   2023-05-10            NA           NA      Europe & Central Asia
## 260   2023-05-10  3.817206e+01           NA      Europe & Central Asia
## 261   2023-05-10            NA           NA      Europe & Central Asia
## 262   2023-05-10  5.198635e+00           NA      Europe & Central Asia
## 263   2023-05-10  3.584248e+01           NA      Europe & Central Asia
## 264   2023-05-10  2.329847e+02           NA      Europe & Central Asia
## 265   2023-05-10  3.306818e+00           NA      Europe & Central Asia
## 266   2023-05-10  2.478189e+00           NA      Europe & Central Asia
## 267   2023-05-10  3.810857e+00           NA      Europe & Central Asia
## 268   2023-05-10  3.647476e+00           NA      Europe & Central Asia
## 269   2023-05-10            NA           NA      Europe & Central Asia
## 270   2023-05-10  4.117085e+00           NA      Europe & Central Asia
## 271   2023-05-10            NA           NA      Europe & Central Asia
## 272   2023-05-10            NA           NA      Europe & Central Asia
## 273   2023-05-10            NA           NA      Europe & Central Asia
## 274   2023-05-10  3.152369e+00           NA      Europe & Central Asia
## 275   2023-05-10  1.123964e+01           NA      Europe & Central Asia
## 276   2023-05-10  1.256508e+02           NA      Europe & Central Asia
## 277   2023-05-10  3.551425e+01           NA      Europe & Central Asia
## 278   2023-05-10 -2.417300e+00           NA      Europe & Central Asia
## 279   2023-05-10            NA           NA      Europe & Central Asia
## 280   2023-05-10  5.647471e+00           NA      Europe & Central Asia
## 281   2023-05-10  2.102850e+00           NA      Europe & Central Asia
## 282   2023-05-10  9.970663e+00           NA      Europe & Central Asia
## 283   2023-05-10            NA           NA      Europe & Central Asia
## 284   2023-05-10  1.473058e+00           NA      Europe & Central Asia
## 285   2023-05-10  1.042715e+00           NA      Europe & Central Asia
## 286   2023-05-10  4.386709e+00           NA      Europe & Central Asia
## 287   2023-05-10  1.256590e+00           NA      Europe & Central Asia
## 288   2023-05-10 -2.836026e-02           NA      Europe & Central Asia
## 289   2023-05-10            NA           NA      Europe & Central Asia
## 290   2023-05-10            NA           NA      Europe & Central Asia
## 291   2023-05-10  6.730860e+00           NA      Europe & Central Asia
## 292   2023-05-10            NA           NA      Europe & Central Asia
## 293   2023-05-10            NA           NA      Europe & Central Asia
## 294   2023-05-10            NA           NA      Europe & Central Asia
## 295   2023-05-10  1.549917e+00           NA      Europe & Central Asia
## 296   2023-05-10 -1.771910e-02           NA      Europe & Central Asia
## 297   2023-05-10            NA           NA      Europe & Central Asia
## 298   2023-05-10  2.887460e-01           NA      Europe & Central Asia
## 299   2023-05-10 -4.313688e-01           NA      Europe & Central Asia
## 300   2023-05-10  2.314744e+00           NA      Europe & Central Asia
## 301   2023-05-10  3.679160e-03           NA      Europe & Central Asia
## 302   2023-05-10            NA           NA      Europe & Central Asia
## 303   2023-05-10  4.493143e+00           NA      Europe & Central Asia
## 304   2023-05-10 -1.675517e-02           NA      Europe & Central Asia
## 305   2023-05-10  3.512223e-01           NA      Europe & Central Asia
## 306   2023-05-10            NA           NA      Europe & Central Asia
## 307   2023-05-10 -6.326534e-01           NA      Europe & Central Asia
## 308   2023-05-10  5.639914e-01           NA      Europe & Central Asia
## 309   2023-05-10            NA           NA      Europe & Central Asia
## 310   2023-05-10  1.451063e+00           NA      Europe & Central Asia
## 311   2023-05-10 -5.785793e-04           NA      Europe & Central Asia
## 312   2023-05-10            NA           NA      Europe & Central Asia
## 313   2023-05-10 -3.060929e-04           NA      Europe & Central Asia
## 314   2023-05-10  5.928014e+00           NA      Europe & Central Asia
## 315   2023-05-10            NA           NA      Europe & Central Asia
## 316   2023-05-10  2.418336e+00           NA      Europe & Central Asia
## 317   2023-05-10 -2.139572e+00           NA      Europe & Central Asia
## 318   2023-05-10            NA           NA      Europe & Central Asia
## 319   2023-05-10            NA           NA      Europe & Central Asia
## 320   2023-05-10  6.784862e-01           NA      Europe & Central Asia
## 321   2020-07-27            NA           NA                       <NA>
## 322   2020-07-27            NA           NA                       <NA>
## 323   2020-07-27            NA           NA                       <NA>
## 324   2020-07-27            NA           NA                       <NA>
## 325   2020-07-27            NA 5.118359e+00                       <NA>
## 326   2020-07-27            NA 1.668378e+01                       <NA>
## 327   2020-07-27            NA 3.087162e+01                       <NA>
## 328   2020-07-27            NA 3.783909e+01                       <NA>
## 329   2020-07-27            NA 4.079339e+01                       <NA>
## 330   2020-07-27            NA 4.600520e+01                       <NA>
## 331   2020-07-27            NA 6.124117e+01                       <NA>
## 332   2020-07-27            NA 7.389446e+01                       <NA>
## 333   2020-07-27            NA 7.420104e+01                       <NA>
## 334   2020-07-27            NA 7.422891e+01                       <NA>
## 335   2020-07-27            NA 7.651431e+01                       <NA>
## 336   2020-07-27            NA 8.048123e+01                       <NA>
## 337   2020-07-27            NA 8.240431e+01                       <NA>
## 338   2020-07-27            NA 8.475474e+01                       <NA>
## 339   2020-07-27            NA 8.674285e+01                       <NA>
## 340   2020-07-27            NA 8.882386e+01                       <NA>
## 341   2020-07-27            NA 9.140654e+01                       <NA>
## 342   2020-07-27            NA 9.450019e+01                       <NA>
## 343   2020-07-27            NA 9.664623e+01                       <NA>
## 344   2020-07-27            NA 1.000929e+02                       <NA>
## 345   2020-07-27            NA 1.035117e+02                       <NA>
## 346   2020-07-27            NA 1.056299e+02                       <NA>
## 347   2020-07-27            NA 1.076737e+02                       <NA>
## 348   2020-07-27            NA 1.094389e+02                       <NA>
## 349   2020-07-27            NA 1.115292e+02                       <NA>
## 350   2020-07-27            NA 1.129599e+02                       <NA>
## 351   2020-07-27            NA 1.152081e+02                       <NA>
## 352   2020-07-27            NA 1.175399e+02                       <NA>
## 353   2020-07-27            NA 1.191843e+02                       <NA>
## 354   2020-07-27            NA 1.217763e+02                       <NA>
## 355   2023-05-10  2.405343e+00           NA Middle East & North Africa
## 356   2023-05-10  2.351279e+00           NA Middle East & North Africa
## 357   2023-05-10 -5.508488e+00           NA Middle East & North Africa
## 358   2023-05-10  4.972526e+00           NA Middle East & North Africa
## 359   2023-05-10  8.433506e+00           NA Middle East & North Africa
## 360   2023-05-10  1.398784e+01           NA Middle East & North Africa
## 361   2023-05-10  1.008512e+01           NA Middle East & North Africa
## 362   2023-05-10  3.025960e+01           NA Middle East & North Africa
## 363   2023-05-10  1.054670e+01           NA Middle East & North Africa
## 364   2023-05-10  8.330734e+00           NA Middle East & North Africa
## 365   2023-05-10            NA           NA Middle East & North Africa
## 366   2023-05-10  9.627612e+00           NA Middle East & North Africa
## 367   2023-05-10  1.573674e+01           NA Middle East & North Africa
## 368   2023-05-10  1.531058e+01           NA Middle East & North Africa
## 369   2023-05-10  9.060963e+00           NA Middle East & North Africa
## 370   2023-05-10  1.612535e+01           NA Middle East & North Africa
## 371   2023-05-10  1.939794e+00           NA Middle East & North Africa
## 372   2023-05-10  2.586204e+01           NA Middle East & North Africa
## 373   2023-05-10 -3.131089e+00           NA Middle East & North Africa
## 374   2023-05-10  2.267801e+01           NA Middle East & North Africa
## 375   2023-05-10  1.435400e+01           NA Middle East & North Africa
## 376   2023-05-10  2.402190e+01           NA Middle East & North Africa
## 377   2023-05-10  7.001963e+00           NA Middle East & North Africa
## 378   2023-05-10  6.804796e+00           NA Middle East & North Africa
## 379   2023-05-10  5.493319e-01           NA Middle East & North Africa
## 380   2023-05-10  1.715196e+01           NA Middle East & North Africa
## 381   2023-05-10  1.224763e+01           NA Middle East & North Africa
## 382   2023-05-10  8.842020e+00           NA Middle East & North Africa
## 383   2023-05-10 -9.330438e-02           NA Middle East & North Africa
## 384   2023-05-10  2.907765e+01           NA Middle East & North Africa
## 385   2023-05-10  1.320428e+00           NA Middle East & North Africa
## 386   2023-05-10 -4.734020e-01           NA Middle East & North Africa
## 387   2023-05-10  1.601137e+01           NA Middle East & North Africa
## 388   2023-05-10  1.192710e+01           NA Middle East & North Africa
## 389   2023-05-10  1.695183e+00           NA Middle East & North Africa
## 390   2023-05-10 -4.606461e+00           NA Middle East & North Africa
## 391   2023-05-10  2.192611e+01           NA Middle East & North Africa
## 392   2023-05-10  4.889659e+01           NA Middle East & North Africa
## 393   2023-05-10  5.914022e+00           NA Middle East & North Africa
## 394   2023-05-10  1.362442e+01           NA Middle East & North Africa
## 395   2023-05-10  6.395337e+00           NA Middle East & North Africa
## 396   2023-05-10  5.378860e+01           NA Middle East & North Africa
## 397   2023-05-10  7.458337e+00           NA Middle East & North Africa
## 398   2023-05-10  1.085634e+01           NA Middle East & North Africa
## 399   2023-05-10  2.857704e+01           NA Middle East & North Africa
## 400   2023-05-10 -1.116162e+01           NA Middle East & North Africa
## 401   2023-05-10  6.757341e+00           NA Middle East & North Africa
## 402   2023-05-10  1.817815e+00           NA Middle East & North Africa
## 403   2023-05-10  1.501331e+00           NA Middle East & North Africa
## 404   2023-05-10  1.921085e+00           NA Middle East & North Africa
## 405   2023-05-10  4.940446e+00           NA Middle East & North Africa
## 406   2023-05-10  1.822801e+01           NA Middle East & North Africa
## 407   2023-05-10            NA           NA Middle East & North Africa
## 408   2023-05-10  3.471720e+00           NA Middle East & North Africa
## 409   2023-05-10  6.390655e+00           NA Middle East & North Africa
## 410   2023-05-10  3.142056e+00           NA Middle East & North Africa
## 411   2023-05-10  1.611998e+01           NA Middle East & North Africa
## 412   2023-05-10  1.548881e+00           NA Middle East & North Africa
## 413   2023-05-10 -4.680249e-01           NA Middle East & North Africa
## 414   2023-05-10 -6.455650e+00           NA Middle East & North Africa
## 415   2023-05-10  1.084059e+01           NA Middle East & North Africa
## 416   2023-05-10 -3.005804e-01           NA Middle East & North Africa
## 417   2023-05-10  1.312041e+00           NA Middle East & North Africa
## 418   2020-07-27            NA 1.135315e+01                       <NA>
## 419   2020-07-27            NA 1.202194e+01                       <NA>
## 420   2020-07-27            NA 1.313870e+01                       <NA>
## 421   2020-07-27            NA 1.532269e+01                       <NA>
## 422   2020-07-27            NA 1.928873e+01                       <NA>
## 423   2020-07-27            NA 2.538813e+01                       <NA>
## 424   2020-07-27            NA 3.061742e+01                       <NA>
## 425   2020-07-27            NA 3.949406e+01                       <NA>
## 426   2020-07-27            NA 5.127135e+01                       <NA>
## 427   2020-07-27            NA 6.085876e+01                       <NA>
## 428   2020-07-27            NA 6.436291e+01                       <NA>
## 429   2020-07-27            NA 6.755017e+01                       <NA>
## 430   2020-07-27            NA 6.934120e+01                       <NA>
## 431   2020-07-27            NA 6.958353e+01                       <NA>
## 432   2020-07-27            NA 7.250682e+01                       <NA>
## 433   2020-07-27            NA 7.355097e+01                       <NA>
## 434   2020-07-27            NA 7.542964e+01                       <NA>
## 435   2020-07-27            NA 7.813061e+01                       <NA>
## 436   2020-07-27            NA 8.105567e+01                       <NA>
## 437   2020-07-27            NA 8.260319e+01                       <NA>
## 438   2020-07-27            NA 8.582549e+01                       <NA>
## 439   2020-07-27            NA 8.961501e+01                       <NA>
## 440   2020-07-27            NA 9.798455e+01                       <NA>
## 441   2020-07-27            NA 1.020879e+02                       <NA>
## 442   2020-07-27            NA 1.079471e+02                       <NA>
## 443   2020-07-27            NA 1.184166e+02                       <NA>
## 444   2020-07-27            NA 1.232802e+02                       <NA>
## 445   2020-07-27            NA 1.280473e+02                       <NA>
## 446   2020-07-27            NA 1.336833e+02                       <NA>
## 447   2020-07-27            NA 1.414313e+02                       <NA>
## 448   2020-07-27            NA 1.498190e+02                       <NA>
## 449   2020-07-27            NA 1.550748e+02                       <NA>
## 450   2020-07-27            NA 1.587376e+02                       <NA>
## 451   2020-07-27            NA 1.613565e+02                       <NA>
## 452   2023-05-10 -5.235602e-01           NA        East Asia & Pacific
## 453   2023-05-10 -9.621603e-01           NA        East Asia & Pacific
## 454   2023-05-10  1.469733e+00           NA        East Asia & Pacific
## 455   2023-05-10  1.748289e+00           NA        East Asia & Pacific
## 456   2023-05-10  1.105934e+01           NA        East Asia & Pacific
## 457   2023-05-10            NA           NA        East Asia & Pacific
## 458   2023-05-10 -1.536489e+01           NA        East Asia & Pacific
## 459   2023-05-10            NA           NA        East Asia & Pacific
## 460   2023-05-10  1.736842e+01           NA        East Asia & Pacific
## 461   2023-05-10            NA           NA        East Asia & Pacific
## 462   2023-05-10            NA           NA        East Asia & Pacific
## 463   2023-05-10            NA           NA        East Asia & Pacific
## 464   2023-05-10            NA           NA        East Asia & Pacific
## 465   2023-05-10            NA           NA        East Asia & Pacific
## 466   2023-05-10            NA           NA        East Asia & Pacific
## 467   2023-05-10            NA           NA        East Asia & Pacific
## 468   2023-05-10  5.329298e+00           NA        East Asia & Pacific
## 469   2023-05-10  1.365053e+00           NA        East Asia & Pacific
## 470   2023-05-10            NA           NA        East Asia & Pacific
## 471   2023-05-10            NA           NA        East Asia & Pacific
## 472   2023-05-10            NA           NA        East Asia & Pacific
## 473   2023-05-10            NA           NA        East Asia & Pacific
## 474   2023-05-10            NA           NA        East Asia & Pacific
## 475   2023-05-10  2.577640e+01           NA        East Asia & Pacific
## 476   2023-05-10            NA           NA        East Asia & Pacific
## 477   2023-05-10            NA           NA        East Asia & Pacific
## 478   2023-05-10            NA           NA        East Asia & Pacific
## 479   2023-05-10            NA           NA        East Asia & Pacific
## 480   2023-05-10 -1.940890e+00           NA        East Asia & Pacific
## 481   2023-05-10            NA           NA        East Asia & Pacific
## 482   2023-05-10            NA           NA        East Asia & Pacific
## 483   2023-05-10            NA           NA        East Asia & Pacific
## 484   2023-05-10            NA           NA        East Asia & Pacific
## 485   2023-05-10 -3.259075e+00           NA        East Asia & Pacific
## 486   2023-05-10            NA           NA        East Asia & Pacific
## 487   2023-05-10  9.054972e-01           NA        East Asia & Pacific
## 488   2023-05-10            NA           NA        East Asia & Pacific
## 489   2023-05-10            NA           NA        East Asia & Pacific
## 490   2023-05-10 -1.365583e+00           NA        East Asia & Pacific
## 491   2023-05-10            NA           NA        East Asia & Pacific
## 492   2023-05-10            NA           NA        East Asia & Pacific
## 493   2023-05-10            NA           NA        East Asia & Pacific
## 494   2023-05-10            NA           NA        East Asia & Pacific
## 495   2023-05-10  2.243590e+00           NA        East Asia & Pacific
## 496   2023-05-10  3.160612e+00           NA        East Asia & Pacific
## 497   2023-05-10  1.695361e+00           NA        East Asia & Pacific
## 498   2023-05-10            NA           NA        East Asia & Pacific
## 499   2023-05-10            NA           NA        East Asia & Pacific
## 500   2023-05-10            NA           NA        East Asia & Pacific
## 501   2023-05-10            NA           NA        East Asia & Pacific
## 502   2023-05-10            NA           NA        East Asia & Pacific
## 503   2023-05-10  1.405822e+00           NA        East Asia & Pacific
## 504   2023-05-10            NA           NA        East Asia & Pacific
## 505   2023-05-10            NA           NA        East Asia & Pacific
## 506   2023-05-10  2.813675e+00           NA        East Asia & Pacific
## 507   2023-05-10            NA           NA        East Asia & Pacific
## 508   2023-05-10            NA           NA        East Asia & Pacific
## 509   2023-05-10            NA           NA        East Asia & Pacific
## 510   2023-05-10            NA           NA        East Asia & Pacific
## 511   2023-05-10            NA           NA        East Asia & Pacific
## 512   2023-05-10            NA           NA        East Asia & Pacific
## 513   2023-05-10            NA           NA        East Asia & Pacific
## 514   2023-05-10            NA           NA        East Asia & Pacific
## 515   2023-05-10  2.338309e+01           NA      Europe & Central Asia
## 516   2023-05-10  7.326244e+00           NA      Europe & Central Asia
## 517   2023-05-10  3.080535e+00           NA      Europe & Central Asia
## 518   2023-05-10            NA           NA      Europe & Central Asia
## 519   2023-05-10  2.096461e+00           NA      Europe & Central Asia
## 520   2023-05-10  5.944199e+00           NA      Europe & Central Asia
## 521   2023-05-10            NA           NA      Europe & Central Asia
## 522   2023-05-10  1.087882e+01           NA      Europe & Central Asia
## 523   2023-05-10  1.648986e+01           NA      Europe & Central Asia
## 524   2023-05-10  6.896207e+00           NA      Europe & Central Asia
## 525   2023-05-10  3.477954e-01           NA      Europe & Central Asia
## 526   2023-05-10  1.184943e+01           NA      Europe & Central Asia
## 527   2023-05-10            NA           NA      Europe & Central Asia
## 528   2023-05-10  4.933121e+00           NA      Europe & Central Asia
## 529   2023-05-10            NA           NA      Europe & Central Asia
## 530   2023-05-10  3.239532e+00           NA      Europe & Central Asia
## 531   2023-05-10            NA           NA      Europe & Central Asia
## 532   2023-05-10  2.731980e+00           NA      Europe & Central Asia
## 533   2023-05-10  2.874155e+01           NA      Europe & Central Asia
## 534   2023-05-10  7.845871e+00           NA      Europe & Central Asia
## 535   2023-05-10  1.374754e+00           NA      Europe & Central Asia
## 536   2023-05-10            NA           NA      Europe & Central Asia
## 537   2023-05-10  5.936125e+00           NA      Europe & Central Asia
## 538   2023-05-10  7.971777e-01           NA      Europe & Central Asia
## 539   2023-05-10            NA           NA      Europe & Central Asia
## 540   2023-05-10  8.595464e+00           NA      Europe & Central Asia
## 541   2023-05-10  1.678180e+01           NA      Europe & Central Asia
## 542   2023-05-10  8.518078e+00           NA      Europe & Central Asia
## 543   2023-05-10            NA           NA      Europe & Central Asia
## 544   2023-05-10  6.710769e+00           NA      Europe & Central Asia
## 545   2023-05-10  4.537232e+00           NA      Europe & Central Asia
## 546   2023-05-10            NA           NA      Europe & Central Asia
## 547   2023-05-10  1.594520e+01           NA      Europe & Central Asia
## 548   2023-05-10  3.879858e+00           NA      Europe & Central Asia
## 549   2023-05-10  1.113786e+00           NA      Europe & Central Asia
## 550   2023-05-10  3.396102e+00           NA      Europe & Central Asia
## 551   2023-05-10            NA           NA      Europe & Central Asia
## 552   2023-05-10            NA           NA      Europe & Central Asia
## 553   2023-05-10  1.321361e-01           NA      Europe & Central Asia
## 554   2023-05-10  1.499554e+00           NA      Europe & Central Asia
## 555   2023-05-10  6.935148e+00           NA      Europe & Central Asia
## 556   2023-05-10  3.177484e+00           NA      Europe & Central Asia
## 557   2023-05-10  3.457184e+00           NA      Europe & Central Asia
## 558   2023-05-10  2.274338e+00           NA      Europe & Central Asia
## 559   2023-05-10  1.188424e+01           NA      Europe & Central Asia
## 560   2023-05-10  1.012478e+00           NA      Europe & Central Asia
## 561   2023-05-10  2.228160e+00           NA      Europe & Central Asia
## 562   2023-05-10            NA           NA      Europe & Central Asia
## 563   2023-05-10  3.743138e-01           NA      Europe & Central Asia
## 564   2023-05-10  1.967642e-01           NA      Europe & Central Asia
## 565   2023-05-10  1.235117e+01           NA      Europe & Central Asia
## 566   2023-05-10  1.086473e+01           NA      Europe & Central Asia
## 567   2023-05-10  3.211227e+00           NA      Europe & Central Asia
## 568   2023-05-10  1.136509e+00           NA      Europe & Central Asia
## 569   2023-05-10  2.063104e+01           NA      Europe & Central Asia
## 570   2023-05-10  1.335481e+01           NA      Europe & Central Asia
## 571   2023-05-10  1.358235e+01           NA      Europe & Central Asia
## 572   2023-05-10  1.745569e-01           NA      Europe & Central Asia
## 573   2023-05-10  6.605890e-01           NA      Europe & Central Asia
## 574   2023-05-10 -8.401932e-02           NA      Europe & Central Asia
## 575   2023-05-10  3.042424e+00           NA      Europe & Central Asia
## 576   2023-05-10  4.484922e-01           NA      Europe & Central Asia
## 577   2023-05-10  1.693169e+01           NA      Europe & Central Asia
## 578   2020-07-27            NA           NA                       <NA>
## 579   2020-07-27            NA           NA                       <NA>
## 580   2020-07-27            NA           NA                       <NA>
## 581   2020-07-27            NA           NA                       <NA>
## 582   2020-07-27            NA           NA                       <NA>
## 583   2020-07-27            NA           NA                       <NA>
## 584   2020-07-27            NA           NA                       <NA>
## 585   2020-07-27            NA           NA                       <NA>
## 586   2020-07-27            NA           NA                       <NA>
## 587   2020-07-27            NA           NA                       <NA>
## 588   2020-07-27            NA           NA                       <NA>
## 589   2020-07-27            NA           NA                       <NA>
## 590   2020-07-27            NA           NA                       <NA>
## 591   2020-07-27            NA           NA                       <NA>
## 592   2020-07-27            NA           NA                       <NA>
## 593   2020-07-27            NA           NA                       <NA>
## 594   2020-07-27            NA           NA                       <NA>
## 595   2020-07-27            NA           NA                       <NA>
## 596   2020-07-27            NA           NA                       <NA>
## 597   2020-07-27            NA           NA                       <NA>
## 598   2020-07-27            NA           NA                       <NA>
## 599   2020-07-27            NA           NA                       <NA>
## 600   2020-07-27            NA           NA                       <NA>
## 601   2020-07-27            NA           NA                       <NA>
## 602   2020-07-27            NA           NA                       <NA>
## 603   2020-07-27            NA           NA                       <NA>
## 604   2020-07-27            NA           NA                       <NA>
## 605   2020-07-27            NA           NA                       <NA>
## 606   2020-07-27            NA           NA                       <NA>
## 607   2020-07-27            NA           NA                       <NA>
## 608   2020-07-27            NA           NA                       <NA>
## 609   2020-07-27            NA           NA                       <NA>
## 610   2020-07-27            NA           NA                       <NA>
## 611   2020-07-27            NA           NA                       <NA>
## 612   2023-05-10            NA           NA         Sub-Saharan Africa
## 613   2023-05-10  7.257832e+00           NA         Sub-Saharan Africa
## 614   2023-05-10            NA           NA         Sub-Saharan Africa
## 615   2023-05-10  4.237425e+01           NA         Sub-Saharan Africa
## 616   2023-05-10            NA           NA         Sub-Saharan Africa
## 617   2023-05-10            NA           NA         Sub-Saharan Africa
## 618   2023-05-10 -1.676214e+01           NA         Sub-Saharan Africa
## 619   2023-05-10            NA           NA         Sub-Saharan Africa
## 620   2023-05-10  4.800532e+03           NA         Sub-Saharan Africa
## 621   2023-05-10  3.563413e+00           NA         Sub-Saharan Africa
## 622   2023-05-10  3.935935e+01           NA         Sub-Saharan Africa
## 623   2023-05-10  3.177407e+01           NA         Sub-Saharan Africa
## 624   2023-05-10            NA           NA         Sub-Saharan Africa
## 625   2023-05-10            NA           NA         Sub-Saharan Africa
## 626   2023-05-10            NA           NA         Sub-Saharan Africa
## 627   2023-05-10  3.361859e+01           NA         Sub-Saharan Africa
## 628   2023-05-10  1.711567e+01           NA         Sub-Saharan Africa
## 629   2023-05-10  1.918428e+01           NA         Sub-Saharan Africa
## 630   2023-05-10  4.765158e+02           NA         Sub-Saharan Africa
## 631   2023-05-10  1.936577e+01           NA         Sub-Saharan Africa
## 632   2023-05-10  2.844244e+00           NA         Sub-Saharan Africa
## 633   2023-05-10 -3.514972e+00           NA         Sub-Saharan Africa
## 634   2023-05-10            NA           NA         Sub-Saharan Africa
## 635   2023-05-10  3.168818e+01           NA         Sub-Saharan Africa
## 636   2023-05-10            NA           NA         Sub-Saharan Africa
## 637   2023-05-10            NA           NA         Sub-Saharan Africa
## 638   2023-05-10  2.816703e+01           NA         Sub-Saharan Africa
## 639   2023-05-10  1.825495e+03           NA         Sub-Saharan Africa
## 640   2023-05-10  4.308432e+00           NA         Sub-Saharan Africa
## 641   2023-05-10  1.276356e-02           NA         Sub-Saharan Africa
## 642   2023-05-10            NA           NA         Sub-Saharan Africa
## 643   2023-05-10            NA           NA         Sub-Saharan Africa
## 644   2023-05-10  1.627966e+01           NA         Sub-Saharan Africa
## 645   2023-05-10  9.545302e+01           NA         Sub-Saharan Africa
## 646   2023-05-10  3.344359e+01           NA         Sub-Saharan Africa
## 647   2023-05-10  1.063521e+02           NA         Sub-Saharan Africa
## 648   2023-05-10  4.180190e+02           NA         Sub-Saharan Africa
## 649   2023-05-10            NA           NA         Sub-Saharan Africa
## 650   2023-05-10  2.213774e+00           NA         Sub-Saharan Africa
## 651   2023-05-10  9.823311e+00           NA         Sub-Saharan Africa
## 652   2023-05-10  5.575011e+02           NA         Sub-Saharan Africa
## 653   2023-05-10  0.000000e+00           NA         Sub-Saharan Africa
## 654   2023-05-10            NA           NA         Sub-Saharan Africa
## 655   2023-05-10  2.261794e+01           NA         Sub-Saharan Africa
## 656   2023-05-10            NA           NA         Sub-Saharan Africa
## 657   2023-05-10  1.063100e+02           NA         Sub-Saharan Africa
## 658   2023-05-10  9.177835e+02           NA         Sub-Saharan Africa
## 659   2023-05-10  1.400744e+01           NA         Sub-Saharan Africa
## 660   2023-05-10  1.903521e+01           NA         Sub-Saharan Africa
## 661   2023-05-10 -9.013062e+00           NA         Sub-Saharan Africa
## 662   2023-05-10            NA           NA         Sub-Saharan Africa
## 663   2023-05-10            NA           NA         Sub-Saharan Africa
## 664   2023-05-10            NA           NA         Sub-Saharan Africa
## 665   2023-05-10  1.969841e+02           NA         Sub-Saharan Africa
## 666   2023-05-10  1.816181e+01           NA         Sub-Saharan Africa
## 667   2023-05-10  1.188110e-03           NA         Sub-Saharan Africa
## 668   2023-05-10  2.175979e+03           NA         Sub-Saharan Africa
## 669   2023-05-10  9.392657e+01           NA         Sub-Saharan Africa
## 670   2023-05-10            NA           NA         Sub-Saharan Africa
## 671   2023-05-10 -2.100306e+00           NA         Sub-Saharan Africa
## 672   2023-05-10            NA           NA         Sub-Saharan Africa
## 673   2023-05-10            NA           NA         Sub-Saharan Africa
## 674   2023-05-10  2.177417e+01           NA         Sub-Saharan Africa
## 675   2023-05-10  1.650480e+00           NA  Latin America & Caribbean
## 676   2023-05-10  1.983975e+00           NA  Latin America & Caribbean
## 677   2023-05-10            NA           NA  Latin America & Caribbean
## 678   2023-05-10  8.635282e+00           NA  Latin America & Caribbean
## 679   2023-05-10  1.015415e+00           NA  Latin America & Caribbean
## 680   2023-05-10            NA           NA  Latin America & Caribbean
## 681   2023-05-10            NA           NA  Latin America & Caribbean
## 682   2023-05-10  1.473357e+00           NA  Latin America & Caribbean
## 683   2023-05-10            NA           NA  Latin America & Caribbean
## 684   2023-05-10            NA           NA  Latin America & Caribbean
## 685   2023-05-10            NA           NA  Latin America & Caribbean
## 686   2023-05-10            NA           NA  Latin America & Caribbean
## 687   2023-05-10            NA           NA  Latin America & Caribbean
## 688   2023-05-10            NA           NA  Latin America & Caribbean
## 689   2023-05-10  1.911504e+00           NA  Latin America & Caribbean
## 690   2023-05-10            NA           NA  Latin America & Caribbean
## 691   2023-05-10  1.139878e+01           NA  Latin America & Caribbean
## 692   2023-05-10  2.606402e+00           NA  Latin America & Caribbean
## 693   2023-05-10  1.836936e+00           NA  Latin America & Caribbean
## 694   2023-05-10  3.734130e+00           NA  Latin America & Caribbean
## 695   2023-05-10  4.076756e-01           NA  Latin America & Caribbean
## 696   2023-05-10            NA           NA  Latin America & Caribbean
## 697   2023-05-10  1.127270e+01           NA  Latin America & Caribbean
## 698   2023-05-10            NA           NA  Latin America & Caribbean
## 699   2023-05-10            NA           NA  Latin America & Caribbean
## 700   2023-05-10 -9.465445e-01           NA  Latin America & Caribbean
## 701   2023-05-10  1.744986e+00           NA  Latin America & Caribbean
## 702   2023-05-10  4.580707e+00           NA  Latin America & Caribbean
## 703   2023-05-10  4.461643e+00           NA  Latin America & Caribbean
## 704   2023-05-10  7.018023e-01           NA  Latin America & Caribbean
## 705   2023-05-10  2.109907e+00           NA  Latin America & Caribbean
## 706   2023-05-10            NA           NA  Latin America & Caribbean
## 707   2023-05-10  7.411260e+00           NA  Latin America & Caribbean
## 708   2023-05-10            NA           NA  Latin America & Caribbean
## 709   2023-05-10            NA           NA  Latin America & Caribbean
## 710   2023-05-10  1.827289e+00           NA  Latin America & Caribbean
## 711   2023-05-10  3.017504e+00           NA  Latin America & Caribbean
## 712   2023-05-10  2.035712e+00           NA  Latin America & Caribbean
## 713   2023-05-10  1.484549e+01           NA  Latin America & Caribbean
## 714   2023-05-10  1.873672e+00           NA  Latin America & Caribbean
## 715   2023-05-10            NA           NA  Latin America & Caribbean
## 716   2023-05-10  1.813234e+00           NA  Latin America & Caribbean
## 717   2023-05-10  1.482588e+00           NA  Latin America & Caribbean
## 718   2023-05-10  1.504215e+00           NA  Latin America & Caribbean
## 719   2023-05-10  2.977184e+00           NA  Latin America & Caribbean
## 720   2023-05-10  2.403364e+00           NA  Latin America & Caribbean
## 721   2023-05-10  3.844240e+00           NA  Latin America & Caribbean
## 722   2023-05-10  8.876445e+00           NA  Latin America & Caribbean
## 723   2023-05-10  1.237059e+01           NA  Latin America & Caribbean
## 724   2023-05-10  2.461299e+00           NA  Latin America & Caribbean
## 725   2023-05-10  8.352613e+00           NA  Latin America & Caribbean
## 726   2023-05-10 -9.298622e-01           NA  Latin America & Caribbean
## 727   2023-05-10            NA           NA  Latin America & Caribbean
## 728   2023-05-10  4.380667e+00           NA  Latin America & Caribbean
## 729   2023-05-10  3.244588e+00           NA  Latin America & Caribbean
## 730   2023-05-10  2.080770e-01           NA  Latin America & Caribbean
## 731   2023-05-10  1.553300e+00           NA  Latin America & Caribbean
## 732   2023-05-10 -8.648814e-01           NA  Latin America & Caribbean
## 733   2023-05-10  8.124940e+00           NA  Latin America & Caribbean
## 734   2023-05-10  5.172482e+00           NA  Latin America & Caribbean
## 735   2023-05-10  2.352816e+00           NA  Latin America & Caribbean
## 736   2023-05-10  1.539517e+00           NA  Latin America & Caribbean
## 737   2023-05-10            NA           NA  Latin America & Caribbean
## 738   2020-07-27            NA           NA                       <NA>
## 739   2020-07-27            NA           NA                       <NA>
## 740   2020-07-27            NA           NA                       <NA>
## 741   2020-07-27            NA           NA                       <NA>
## 742   2020-07-27            NA           NA                       <NA>
## 743   2020-07-27            NA           NA                       <NA>
## 744   2020-07-27            NA           NA                       <NA>
## 745   2020-07-27            NA           NA                       <NA>
## 746   2020-07-27            NA           NA                       <NA>
## 747   2020-07-27            NA           NA                       <NA>
## 748   2020-07-27            NA           NA                       <NA>
## 749   2020-07-27            NA 8.059185e+01                       <NA>
## 750   2020-07-27            NA 8.149921e+01                       <NA>
## 751   2020-07-27            NA 8.212296e+01                       <NA>
## 752   2020-07-27            NA 8.327678e+01                       <NA>
## 753   2020-07-27            NA 8.528225e+01                       <NA>
## 754   2020-07-27            NA 8.698302e+01                       <NA>
## 755   2020-07-27            NA 8.874793e+01                       <NA>
## 756   2020-07-27            NA 9.061160e+01                       <NA>
## 757   2020-07-27            NA 9.223049e+01                       <NA>
## 758   2020-07-27            NA 9.353709e+01                       <NA>
## 759   2020-07-27            NA 9.852544e+01                       <NA>
## 760   2020-07-27            NA 9.798440e+01                       <NA>
## 761   2020-07-27            NA 1.012863e+02                       <NA>
## 762   2020-07-27            NA 1.047866e+02                       <NA>
## 763   2020-07-27            NA 1.083266e+02                       <NA>
## 764   2020-07-27            NA 1.094728e+02                       <NA>
## 765   2020-07-27            NA 1.106688e+02                       <NA>
## 766   2020-07-27            NA 1.117382e+02                       <NA>
## 767   2020-07-27            NA 1.111938e+02                       <NA>
## 768   2020-07-27            NA 1.138948e+02                       <NA>
## 769   2020-07-27            NA 1.152731e+02                       <NA>
## 770   2020-07-27            NA 1.157793e+02                       <NA>
## 771   2020-07-27            NA           NA                       <NA>
## 772   2023-05-10  2.439473e+01           NA                 Aggregates
## 773   2023-05-10  6.561873e+00           NA                 Aggregates
## 774   2023-05-10  9.794715e+00           NA                 Aggregates
## 775   2023-05-10  1.488202e+01           NA                 Aggregates
## 776   2023-05-10  4.972526e+00           NA                 Aggregates
## 777   2023-05-10  1.139404e+01           NA                 Aggregates
## 778   2023-05-10  2.886724e+00           NA                 Aggregates
## 779   2023-05-10  1.398784e+01           NA                 Aggregates
## 780   2023-05-10            NA           NA                 Aggregates
## 781   2023-05-10  8.888893e+00           NA                 Aggregates
## 782   2023-05-10  5.064820e+00           NA                 Aggregates
## 783   2023-05-10  6.529706e+00           NA                 Aggregates
## 784   2023-05-10  8.417213e+00           NA                 Aggregates
## 785   2023-05-10  7.260252e+00           NA                 Aggregates
## 786   2023-05-10  5.914022e+00           NA                 Aggregates
## 787   2023-05-10  7.873717e+00           NA                 Aggregates
## 788   2023-05-10  6.678313e+00           NA                 Aggregates
## 789   2023-05-10  8.349756e+00           NA                 Aggregates
## 790   2023-05-10            NA           NA                 Aggregates
## 791   2023-05-10  1.112976e+00           NA                 Aggregates
## 792   2023-05-10  7.982051e+00           NA                 Aggregates
## 793   2023-05-10            NA           NA                 Aggregates
## 794   2023-05-10  3.970748e+00           NA                 Aggregates
## 795   2023-05-10  1.102378e+01           NA                 Aggregates
## 796   2023-05-10  7.131137e-01           NA                 Aggregates
## 797   2023-05-10  1.535530e+01           NA                 Aggregates
## 798   2023-05-10  6.981203e+00           NA                 Aggregates
## 799   2023-05-10  3.467698e+00           NA                 Aggregates
## 800   2023-05-10  6.626779e+00           NA                 Aggregates
## 801   2023-05-10  3.108423e+00           NA                 Aggregates
## 802   2023-05-10  1.780754e+00           NA                 Aggregates
## 803   2023-05-10 -5.742747e+00           NA                 Aggregates
## 804   2023-05-10  5.716744e+00           NA                 Aggregates
## 805   2023-05-10  4.691343e+00           NA                 Aggregates
## 806   2023-05-10  4.701617e-01           NA                 Aggregates
## 807   2023-05-10  1.469505e-01           NA                 Aggregates
## 808   2023-05-10  5.016240e+00           NA                 Aggregates
## 809   2023-05-10            NA           NA                 Aggregates
## 810   2023-05-10  1.482656e+01           NA                 Aggregates
## 811   2023-05-10            NA           NA                 Aggregates
## 812   2023-05-10  1.141075e+01           NA                 Aggregates
## 813   2023-05-10  8.842020e+00           NA                 Aggregates
## 814   2023-05-10            NA           NA                 Aggregates
## 815   2023-05-10  1.257198e+01           NA                 Aggregates
## 816   2023-05-10            NA           NA                 Aggregates
## 817   2023-05-10 -2.114936e+00           NA                 Aggregates
## 818   2023-05-10            NA           NA                 Aggregates
## 819   2023-05-10  9.205895e-01           NA                 Aggregates
## 820   2023-05-10  1.179676e+01           NA                 Aggregates
## 821   2023-05-10  1.044234e+01           NA                 Aggregates
## 822   2023-05-10 -1.924401e+00           NA                 Aggregates
## 823   2023-05-10  1.647924e+01           NA                 Aggregates
## 824   2023-05-10  4.670768e+00           NA                 Aggregates
## 825   2023-05-10  9.821605e+00           NA                 Aggregates
## 826   2023-05-10  1.434829e+01           NA                 Aggregates
## 827   2023-05-10  5.383195e+00           NA                 Aggregates
## 828   2023-05-10  5.252949e+00           NA                 Aggregates
## 829   2023-05-10  1.529725e+00           NA                 Aggregates
## 830   2023-05-10  7.347044e+00           NA                 Aggregates
## 831   2023-05-10            NA           NA                 Aggregates
## 832   2023-05-10  8.703415e+00           NA                 Aggregates
## 833   2023-05-10  7.255799e+00           NA                 Aggregates
## 834   2023-05-10            NA           NA                 Aggregates
## 835   2023-05-10  6.111963e+02           NA  Latin America & Caribbean
## 836   2023-05-10  1.493993e+01           NA  Latin America & Caribbean
## 837   2023-05-10  4.919558e+01           NA  Latin America & Caribbean
## 838   2023-05-10  2.600638e+01           NA  Latin America & Caribbean
## 839   2023-05-10  4.007688e+01           NA  Latin America & Caribbean
## 840   2023-05-10 -1.836558e+00           NA  Latin America & Caribbean
## 841   2023-05-10 -4.639131e-01           NA  Latin America & Caribbean
## 842   2023-05-10  2.317116e+01           NA  Latin America & Caribbean
## 843   2023-05-10  4.203367e+01           NA  Latin America & Caribbean
## 844   2023-05-10  4.111938e+01           NA  Latin America & Caribbean
## 845   2023-05-10  3.055520e+01           NA  Latin America & Caribbean
## 846   2023-05-10 -1.095768e+00           NA  Latin America & Caribbean
## 847   2023-05-10  1.374105e+01           NA  Latin America & Caribbean
## 848   2023-05-10 -3.561096e+00           NA  Latin America & Caribbean
## 849   2023-05-10  4.028297e+01           NA  Latin America & Caribbean
## 850   2023-05-10  2.394880e+01           NA  Latin America & Caribbean
## 851   2023-05-10  7.795830e+00           NA  Latin America & Caribbean
## 852   2023-05-10  2.091512e+01           NA  Latin America & Caribbean
## 853   2023-05-10  2.849340e+00           NA  Latin America & Caribbean
## 854   2023-05-10  1.607199e+01           NA  Latin America & Caribbean
## 855   2023-05-10  6.074475e+02           NA  Latin America & Caribbean
## 856   2023-05-10  3.801585e+02           NA  Latin America & Caribbean
## 857   2023-05-10  1.037287e+00           NA  Latin America & Caribbean
## 858   2023-05-10 -1.705280e+00           NA  Latin America & Caribbean
## 859   2023-05-10            NA           NA  Latin America & Caribbean
## 860   2023-05-10  3.127106e+01           NA  Latin America & Caribbean
## 861   2023-05-10  2.123293e+01           NA  Latin America & Caribbean
## 862   2023-05-10  2.370347e+01           NA  Latin America & Caribbean
## 863   2023-05-10  2.231488e+01           NA  Latin America & Caribbean
## 864   2023-05-10  2.657999e+01           NA  Latin America & Caribbean
## 865   2023-05-10  5.415241e+01           NA  Latin America & Caribbean
## 866   2023-05-10  1.537765e+01           NA  Latin America & Caribbean
## 867   2023-05-10  3.165123e+00           NA  Latin America & Caribbean
## 868   2023-05-10 -5.237550e-02           NA  Latin America & Caribbean
## 869   2023-05-10  1.031751e+01           NA  Latin America & Caribbean
## 870   2023-05-10  1.052764e+02           NA  Latin America & Caribbean
## 871   2023-05-10  6.467875e+00           NA  Latin America & Caribbean
## 872   2023-05-10  4.383228e+02           NA  Latin America & Caribbean
## 873   2023-05-10  2.078317e+03           NA  Latin America & Caribbean
## 874   2023-05-10  1.027531e+01           NA  Latin America & Caribbean
## 875   2023-05-10            NA           NA  Latin America & Caribbean
## 876   2023-05-10  2.887184e+01           NA  Latin America & Caribbean
## 877   2023-05-10  1.405024e+02           NA  Latin America & Caribbean
## 878   2023-05-10  6.424479e+01           NA  Latin America & Caribbean
## 879   2023-05-10  3.063044e+01           NA  Latin America & Caribbean
## 880   2023-05-10  1.836335e+01           NA  Latin America & Caribbean
## 881   2023-05-10  1.473770e+02           NA  Latin America & Caribbean
## 882   2023-05-10  1.594272e+02           NA  Latin America & Caribbean
## 883   2023-05-10  1.976974e+02           NA  Latin America & Caribbean
## 884   2023-05-10  2.031070e+01           NA  Latin America & Caribbean
## 885   2023-05-10  2.559115e+01           NA  Latin America & Caribbean
## 886   2023-05-10  1.945353e+02           NA  Latin America & Caribbean
## 887   2023-05-10  3.812463e+02           NA  Latin America & Caribbean
## 888   2023-05-10  2.877462e+01           NA  Latin America & Caribbean
## 889   2023-05-10  1.049570e+01           NA  Latin America & Caribbean
## 890   2023-05-10  2.901826e+01           NA  Latin America & Caribbean
## 891   2023-05-10  6.553529e+01           NA  Latin America & Caribbean
## 892   2023-05-10  1.275399e+02           NA  Latin America & Caribbean
## 893   2023-05-10  9.579042e+01           NA  Latin America & Caribbean
## 894   2023-05-10  1.613722e+02           NA  Latin America & Caribbean
## 895   2023-05-10  2.560346e+01           NA  Latin America & Caribbean
## 896   2023-05-10  3.046091e+03           NA  Latin America & Caribbean
## 897   2023-05-10  7.729224e+01           NA  Latin America & Caribbean
## 898   2020-07-27            NA           NA                       <NA>
## 899   2020-07-27            NA           NA                       <NA>
## 900   2020-07-27            NA           NA                       <NA>
## 901   2020-07-27            NA           NA                       <NA>
## 902   2020-07-27            NA           NA                       <NA>
## 903   2020-07-27            NA           NA                       <NA>
## 904   2020-07-27            NA           NA                       <NA>
## 905   2020-07-27            NA           NA                       <NA>
## 906   2020-07-27            NA           NA                       <NA>
## 907   2020-07-27            NA           NA                       <NA>
## 908   2020-07-27            NA           NA                       <NA>
## 909   2020-07-27            NA           NA                       <NA>
## 910   2020-07-27            NA           NA                       <NA>
## 911   2020-07-27            NA           NA                       <NA>
## 912   2020-07-27            NA           NA                       <NA>
## 913   2020-07-27            NA           NA                       <NA>
## 914   2020-07-27            NA           NA                       <NA>
## 915   2020-07-27            NA           NA                       <NA>
## 916   2020-07-27            NA           NA                       <NA>
## 917   2020-07-27            NA           NA                       <NA>
## 918   2020-07-27            NA           NA                       <NA>
## 919   2020-07-27            NA           NA                       <NA>
## 920   2020-07-27            NA           NA                       <NA>
## 921   2020-07-27            NA           NA                       <NA>
## 922   2020-07-27            NA           NA                       <NA>
## 923   2020-07-27            NA           NA                       <NA>
## 924   2020-07-27            NA           NA                       <NA>
## 925   2020-07-27            NA           NA                       <NA>
## 926   2020-07-27            NA           NA                       <NA>
## 927   2020-07-27            NA           NA                       <NA>
## 928   2020-07-27            NA           NA                       <NA>
## 929   2020-07-27            NA           NA                       <NA>
## 930   2020-07-27            NA           NA                       <NA>
## 931   2020-07-27            NA           NA                       <NA>
## 932   2023-05-10  2.787710e+00           NA      Europe & Central Asia
## 933   2023-05-10            NA           NA      Europe & Central Asia
## 934   2023-05-10            NA           NA      Europe & Central Asia
## 935   2023-05-10            NA           NA      Europe & Central Asia
## 936   2023-05-10  1.069850e+01           NA      Europe & Central Asia
## 937   2023-05-10  2.685751e-01           NA      Europe & Central Asia
## 938   2023-05-10            NA           NA      Europe & Central Asia
## 939   2023-05-10            NA           NA      Europe & Central Asia
## 940   2023-05-10  3.366825e+00           NA      Europe & Central Asia
## 941   2023-05-10            NA           NA      Europe & Central Asia
## 942   2023-05-10            NA           NA      Europe & Central Asia
## 943   2023-05-10            NA           NA      Europe & Central Asia
## 944   2023-05-10            NA           NA      Europe & Central Asia
## 945   2023-05-10  1.065623e+00           NA      Europe & Central Asia
## 946   2023-05-10  7.768715e+00           NA      Europe & Central Asia
## 947   2023-05-10  2.309182e+00           NA      Europe & Central Asia
## 948   2023-05-10            NA           NA      Europe & Central Asia
## 949   2023-05-10  5.345804e+00           NA      Europe & Central Asia
## 950   2023-05-10 -1.373676e+00           NA      Europe & Central Asia
## 951   2023-05-10            NA           NA      Europe & Central Asia
## 952   2023-05-10            NA           NA      Europe & Central Asia
## 953   2023-05-10  5.989562e+00           NA      Europe & Central Asia
## 954   2023-05-10            NA           NA      Europe & Central Asia
## 955   2023-05-10  1.773599e+01           NA      Europe & Central Asia
## 956   2023-05-10            NA           NA      Europe & Central Asia
## 957   2023-05-10            NA           NA      Europe & Central Asia
## 958   2023-05-10  6.866741e+00           NA      Europe & Central Asia
## 959   2023-05-10  4.281550e+00           NA      Europe & Central Asia
## 960   2023-05-10  4.277876e+00           NA      Europe & Central Asia
## 961   2023-05-10  3.208757e+00           NA      Europe & Central Asia
## 962   2023-05-10            NA           NA      Europe & Central Asia
## 963   2023-05-10  4.107297e+03           NA      Europe & Central Asia
## 964   2023-05-10            NA           NA      Europe & Central Asia
## 965   2023-05-10            NA           NA      Europe & Central Asia
## 966   2023-05-10            NA           NA      Europe & Central Asia
## 967   2023-05-10  2.150642e+00           NA      Europe & Central Asia
## 968   2023-05-10            NA           NA      Europe & Central Asia
## 969   2023-05-10  1.806593e+00           NA      Europe & Central Asia
## 970   2023-05-10            NA           NA      Europe & Central Asia
## 971   2023-05-10            NA           NA      Europe & Central Asia
## 972   2023-05-10  4.618013e+00           NA      Europe & Central Asia
## 973   2023-05-10  4.027969e+00           NA      Europe & Central Asia
## 974   2023-05-10  2.497253e+00           NA      Europe & Central Asia
## 975   2023-05-10  1.611639e+02           NA      Europe & Central Asia
## 976   2023-05-10            NA           NA      Europe & Central Asia
## 977   2023-05-10  5.380408e-02           NA      Europe & Central Asia
## 978   2023-05-10            NA           NA      Europe & Central Asia
## 979   2023-05-10            NA           NA      Europe & Central Asia
## 980   2023-05-10  6.278594e+00           NA      Europe & Central Asia
## 981   2023-05-10  1.213910e+00           NA      Europe & Central Asia
## 982   2023-05-10            NA           NA      Europe & Central Asia
## 983   2023-05-10  1.959177e+01           NA      Europe & Central Asia
## 984   2023-05-10  7.938610e+01           NA      Europe & Central Asia
## 985   2023-05-10            NA           NA      Europe & Central Asia
## 986   2023-05-10  1.391167e+03           NA      Europe & Central Asia
## 987   2023-05-10            NA           NA      Europe & Central Asia
## 988   2023-05-10            NA           NA      Europe & Central Asia
## 989   2023-05-10            NA           NA      Europe & Central Asia
## 990   2023-05-10            NA           NA      Europe & Central Asia
## 991   2023-05-10  5.688073e+02           NA      Europe & Central Asia
## 992   2023-05-10            NA           NA      Europe & Central Asia
## 993   2023-05-10  2.357399e+00           NA      Europe & Central Asia
## 994   2023-05-10  4.598516e+00           NA      Europe & Central Asia
## 995   2020-07-27            NA           NA                       <NA>
## 996   2020-07-27            NA           NA                       <NA>
## 997   2020-07-27            NA           NA                       <NA>
## 998   2020-07-27            NA           NA                       <NA>
## 999   2020-07-27            NA           NA                       <NA>
## 1000  2020-07-27            NA 1.920320e-02                       <NA>
## 1001  2020-07-27            NA 3.267744e-01                       <NA>
## 1002  2020-07-27            NA 1.654611e+01                       <NA>
## 1003  2020-07-27            NA 4.559244e+01                       <NA>
## 1004  2020-07-27            NA 5.408761e+01                       <NA>
## 1005  2020-07-27            NA 6.153493e+01                       <NA>
## 1006  2020-07-27            NA 6.688036e+01                       <NA>
## 1007  2020-07-27            NA 6.736374e+01                       <NA>
## 1008  2020-07-27            NA 6.684227e+01                       <NA>
## 1009  2020-07-27            NA 6.895441e+01                       <NA>
## 1010  2020-07-27            NA 6.967015e+01                       <NA>
## 1011  2020-07-27            NA 7.293224e+01                       <NA>
## 1012  2020-07-27            NA 7.795623e+01                       <NA>
## 1013  2020-07-27            NA 7.839971e+01                       <NA>
## 1014  2020-07-27            NA 8.067241e+01                       <NA>
## 1015  2020-07-27            NA 8.422948e+01                       <NA>
## 1016  2020-07-27            NA 9.190713e+01                       <NA>
## 1017  2020-07-27            NA 9.513860e+01                       <NA>
## 1018  2020-07-27            NA 1.028943e+02                       <NA>
## 1019  2020-07-27            NA 1.106054e+02                       <NA>
## 1020  2020-07-27            NA 1.133619e+02                       <NA>
## 1021  2020-07-27            NA 1.198390e+02                       <NA>
## 1022  2020-07-27            NA 1.234581e+02                       <NA>
## 1023  2020-07-27            NA 1.280211e+02                       <NA>
## 1024  2020-07-27            NA 1.261977e+02                       <NA>
## 1025  2020-07-27            NA 1.273832e+02                       <NA>
## 1026  2020-07-27            NA 1.305854e+02                       <NA>
## 1027  2020-07-27            NA 1.324867e+02                       <NA>
## 1028  2020-07-27            NA 1.357674e+02                       <NA>
## 1029  2020-07-27            NA           NA                       <NA>
## 1030  2020-07-27            NA           NA                       <NA>
## 1031  2020-07-27            NA           NA                       <NA>
## 1032  2020-07-27            NA           NA                       <NA>
## 1033  2020-07-27            NA           NA                       <NA>
## 1034  2020-07-27            NA           NA                       <NA>
## 1035  2020-07-27            NA           NA                       <NA>
## 1036  2020-07-27            NA           NA                       <NA>
## 1037  2020-07-27            NA           NA                       <NA>
## 1038  2020-07-27            NA           NA                       <NA>
## 1039  2020-07-27            NA           NA                       <NA>
## 1040  2020-07-27            NA           NA                       <NA>
## 1041  2020-07-27            NA           NA                       <NA>
## 1042  2020-07-27            NA           NA                       <NA>
## 1043  2020-07-27            NA           NA                       <NA>
## 1044  2020-07-27            NA           NA                       <NA>
## 1045  2020-07-27            NA           NA                       <NA>
## 1046  2020-07-27            NA           NA                       <NA>
## 1047  2020-07-27            NA           NA                       <NA>
## 1048  2020-07-27            NA           NA                       <NA>
## 1049  2020-07-27            NA           NA                       <NA>
## 1050  2020-07-27            NA           NA                       <NA>
## 1051  2020-07-27            NA           NA                       <NA>
## 1052  2020-07-27            NA           NA                       <NA>
## 1053  2020-07-27            NA           NA                       <NA>
## 1054  2020-07-27            NA           NA                       <NA>
## 1055  2020-07-27            NA           NA                       <NA>
## 1056  2020-07-27            NA           NA                       <NA>
## 1057  2020-07-27            NA           NA                       <NA>
## 1058  2020-07-27            NA           NA                       <NA>
## 1059  2020-07-27            NA           NA                       <NA>
## 1060  2020-07-27            NA           NA                       <NA>
## 1061  2020-07-27            NA           NA                       <NA>
## 1062  2020-07-27            NA           NA                       <NA>
## 1063  2023-05-10            NA           NA  Latin America & Caribbean
## 1064  2023-05-10  3.962543e+00           NA  Latin America & Caribbean
## 1065  2023-05-10            NA           NA  Latin America & Caribbean
## 1066  2023-05-10            NA           NA  Latin America & Caribbean
## 1067  2023-05-10            NA           NA  Latin America & Caribbean
## 1068  2023-05-10            NA           NA  Latin America & Caribbean
## 1069  2023-05-10  4.011814e+00           NA  Latin America & Caribbean
## 1070  2023-05-10  1.703838e+00           NA  Latin America & Caribbean
## 1071  2023-05-10  5.157937e+00           NA  Latin America & Caribbean
## 1072  2023-05-10            NA           NA  Latin America & Caribbean
## 1073  2023-05-10            NA           NA  Latin America & Caribbean
## 1074  2023-05-10            NA           NA  Latin America & Caribbean
## 1075  2023-05-10  1.027583e+00           NA  Latin America & Caribbean
## 1076  2023-05-10 -1.986755e+00           NA  Latin America & Caribbean
## 1077  2023-05-10  3.485226e+00           NA  Latin America & Caribbean
## 1078  2023-05-10  5.062491e+00           NA  Latin America & Caribbean
## 1079  2023-05-10            NA           NA  Latin America & Caribbean
## 1080  2023-05-10 -1.216642e+00           NA  Latin America & Caribbean
## 1081  2023-05-10            NA           NA  Latin America & Caribbean
## 1082  2023-05-10  4.542973e+00           NA  Latin America & Caribbean
## 1083  2023-05-10 -1.753935e+00           NA  Latin America & Caribbean
## 1084  2023-05-10  3.108439e+00           NA  Latin America & Caribbean
## 1085  2023-05-10  5.300314e+00           NA  Latin America & Caribbean
## 1086  2023-05-10            NA           NA  Latin America & Caribbean
## 1087  2023-05-10  2.817214e+00           NA  Latin America & Caribbean
## 1088  2023-05-10            NA           NA  Latin America & Caribbean
## 1089  2023-05-10  4.264063e+00           NA  Latin America & Caribbean
## 1090  2023-05-10            NA           NA  Latin America & Caribbean
## 1091  2023-05-10  3.822335e+00           NA  Latin America & Caribbean
## 1092  2023-05-10            NA           NA  Latin America & Caribbean
## 1093  2023-05-10  5.769870e+00           NA  Latin America & Caribbean
## 1094  2023-05-10  2.216017e+00           NA  Latin America & Caribbean
## 1095  2023-05-10            NA           NA  Latin America & Caribbean
## 1096  2023-05-10            NA           NA  Latin America & Caribbean
## 1097  2023-05-10            NA           NA  Latin America & Caribbean
## 1098  2023-05-10            NA           NA  Latin America & Caribbean
## 1099  2023-05-10  3.030798e+00           NA  Latin America & Caribbean
## 1100  2023-05-10 -4.837191e+00           NA  Latin America & Caribbean
## 1101  2023-05-10 -1.613834e+00           NA  Latin America & Caribbean
## 1102  2023-05-10  5.614860e+00           NA  Latin America & Caribbean
## 1103  2023-05-10            NA           NA  Latin America & Caribbean
## 1104  2023-05-10            NA           NA  Latin America & Caribbean
## 1105  2023-05-10  2.190061e+00           NA  Latin America & Caribbean
## 1106  2023-05-10            NA           NA  Latin America & Caribbean
## 1107  2023-05-10            NA           NA  Latin America & Caribbean
## 1108  2023-05-10  3.704238e+00           NA  Latin America & Caribbean
## 1109  2023-05-10  2.335109e+00           NA  Latin America & Caribbean
## 1110  2023-05-10            NA           NA  Latin America & Caribbean
## 1111  2023-05-10  2.531592e+00           NA  Latin America & Caribbean
## 1112  2023-05-10            NA           NA  Latin America & Caribbean
## 1113  2023-05-10            NA           NA  Latin America & Caribbean
## 1114  2023-05-10  3.591970e+00           NA  Latin America & Caribbean
## 1115  2023-05-10  6.592951e+00           NA  Latin America & Caribbean
## 1116  2023-05-10 -1.389713e+00           NA  Latin America & Caribbean
## 1117  2023-05-10  3.375837e+00           NA  Latin America & Caribbean
## 1118  2023-05-10            NA           NA  Latin America & Caribbean
## 1119  2023-05-10  4.446604e+00           NA  Latin America & Caribbean
## 1120  2023-05-10  1.688474e-01           NA  Latin America & Caribbean
## 1121  2023-05-10            NA           NA  Latin America & Caribbean
## 1122  2023-05-10  6.287975e+00           NA  Latin America & Caribbean
## 1123  2023-05-10  3.259486e+00           NA  Latin America & Caribbean
## 1124  2023-05-10 -2.824825e+00           NA  Latin America & Caribbean
## 1125  2023-05-10            NA           NA  Latin America & Caribbean
## 1126  2023-05-10  5.132483e+00           NA        East Asia & Pacific
## 1127  2023-05-10  4.752800e+00           NA        East Asia & Pacific
## 1128  2023-05-10  5.117377e+00           NA        East Asia & Pacific
## 1129  2023-05-10  2.252326e+00           NA        East Asia & Pacific
## 1130  2023-05-10  2.560384e+00           NA        East Asia & Pacific
## 1131  2023-05-10  4.867916e+00           NA        East Asia & Pacific
## 1132  2023-05-10  2.979753e+00           NA        East Asia & Pacific
## 1133  2023-05-10  2.683662e+00           NA        East Asia & Pacific
## 1134  2023-05-10  8.659195e-01           NA        East Asia & Pacific
## 1135  2023-05-10  3.237062e+00           NA        East Asia & Pacific
## 1136  2023-05-10  1.649110e+01           NA        East Asia & Pacific
## 1137  2023-05-10  1.637813e+01           NA        East Asia & Pacific
## 1138  2023-05-10  4.999305e+00           NA        East Asia & Pacific
## 1139  2023-05-10  3.824360e+00           NA        East Asia & Pacific
## 1140  2023-05-10  6.191416e+00           NA        East Asia & Pacific
## 1141  2023-05-10  1.425804e+00           NA        East Asia & Pacific
## 1142  2023-05-10  1.157826e+00           NA        East Asia & Pacific
## 1143  2023-05-10  3.288526e+00           NA        East Asia & Pacific
## 1144  2023-05-10  4.793388e-01           NA        East Asia & Pacific
## 1145  2023-05-10  6.096848e+00           NA        East Asia & Pacific
## 1146  2023-05-10  1.478895e+00           NA        East Asia & Pacific
## 1147  2023-05-10  2.717494e+00           NA        East Asia & Pacific
## 1148  2023-05-10  4.981686e+00           NA        East Asia & Pacific
## 1149  2023-05-10  1.274311e+00           NA        East Asia & Pacific
## 1150  2023-05-10 -5.943361e-01           NA        East Asia & Pacific
## 1151  2023-05-10  1.170947e+01           NA        East Asia & Pacific
## 1152  2023-05-10 -7.592040e-02           NA        East Asia & Pacific
## 1153  2023-05-10  1.187133e+00           NA        East Asia & Pacific
## 1154  2023-05-10  2.844065e+00           NA        East Asia & Pacific
## 1155  2023-05-10  9.233775e+00           NA        East Asia & Pacific
## 1156  2023-05-10  7.175273e+00           NA        East Asia & Pacific
## 1157  2023-05-10  1.790430e+00           NA        East Asia & Pacific
## 1158  2023-05-10  3.221980e+00           NA        East Asia & Pacific
## 1159  2023-05-10  2.280091e+00           NA        East Asia & Pacific
## 1160  2023-05-10            NA           NA        East Asia & Pacific
## 1161  2023-05-10  4.616743e+00           NA        East Asia & Pacific
## 1162  2023-05-10  1.739728e+00           NA        East Asia & Pacific
## 1163  2023-05-10  1.829154e+00           NA        East Asia & Pacific
## 1164  2023-05-10  6.547234e+00           NA        East Asia & Pacific
## 1165  2023-05-10  6.231416e+00           NA        East Asia & Pacific
## 1166  2023-05-10  8.634045e+00           NA        East Asia & Pacific
## 1167  2023-05-10  1.017784e+00           NA        East Asia & Pacific
## 1168  2023-05-10  1.401950e+01           NA        East Asia & Pacific
## 1169  2023-05-10  7.862807e+00           NA        East Asia & Pacific
## 1170  2023-05-10  7.032967e+00           NA        East Asia & Pacific
## 1171  2023-05-10            NA           NA        East Asia & Pacific
## 1172  2023-05-10 -1.536105e-01           NA        East Asia & Pacific
## 1173  2023-05-10  1.141782e+01           NA        East Asia & Pacific
## 1174  2023-05-10  2.800900e+00           NA        East Asia & Pacific
## 1175  2023-05-10  3.397723e+00           NA        East Asia & Pacific
## 1176  2023-05-10  4.620333e+00           NA        East Asia & Pacific
## 1177  2023-05-10  3.021727e+00           NA        East Asia & Pacific
## 1178  2023-05-10  4.680436e+00           NA        East Asia & Pacific
## 1179  2023-05-10  1.015795e+01           NA        East Asia & Pacific
## 1180  2023-05-10  5.185971e+00           NA        East Asia & Pacific
## 1181  2023-05-10  1.001604e+01           NA        East Asia & Pacific
## 1182  2023-05-10 -6.051775e-01           NA        East Asia & Pacific
## 1183  2023-05-10  8.236644e+00           NA        East Asia & Pacific
## 1184  2023-05-10  1.793168e+00           NA        East Asia & Pacific
## 1185  2023-05-10  8.982022e+00           NA        East Asia & Pacific
## 1186  2023-05-10  3.743259e+00           NA        East Asia & Pacific
## 1187  2023-05-10  2.967938e+00           NA        East Asia & Pacific
## 1188  2023-05-10  9.525572e+00           NA        East Asia & Pacific
## 1189  2020-07-27            NA           NA                       <NA>
## 1190  2020-07-27            NA           NA                       <NA>
## 1191  2020-07-27            NA           NA                       <NA>
## 1192  2020-07-27            NA           NA                       <NA>
## 1193  2020-07-27            NA           NA                       <NA>
## 1194  2020-07-27            NA           NA                       <NA>
## 1195  2020-07-27            NA           NA                       <NA>
## 1196  2020-07-27            NA           NA                       <NA>
## 1197  2020-07-27            NA           NA                       <NA>
## 1198  2020-07-27            NA           NA                       <NA>
## 1199  2020-07-27            NA           NA                       <NA>
## 1200  2020-07-27            NA           NA                       <NA>
## 1201  2020-07-27            NA           NA                       <NA>
## 1202  2020-07-27            NA           NA                       <NA>
## 1203  2020-07-27            NA           NA                       <NA>
## 1204  2020-07-27            NA           NA                       <NA>
## 1205  2020-07-27            NA           NA                       <NA>
## 1206  2020-07-27            NA           NA                       <NA>
## 1207  2020-07-27            NA           NA                       <NA>
## 1208  2020-07-27            NA           NA                       <NA>
## 1209  2020-07-27            NA           NA                       <NA>
## 1210  2020-07-27            NA           NA                       <NA>
## 1211  2020-07-27            NA           NA                       <NA>
## 1212  2020-07-27            NA           NA                       <NA>
## 1213  2020-07-27            NA           NA                       <NA>
## 1214  2020-07-27            NA           NA                       <NA>
## 1215  2020-07-27            NA           NA                       <NA>
## 1216  2020-07-27            NA           NA                       <NA>
## 1217  2020-07-27            NA           NA                       <NA>
## 1218  2020-07-27            NA           NA                       <NA>
## 1219  2020-07-27            NA           NA                       <NA>
## 1220  2020-07-27            NA           NA                       <NA>
## 1221  2020-07-27            NA           NA                       <NA>
## 1222  2020-07-27            NA           NA                       <NA>
## 1223  2023-05-10  1.833410e+00           NA      Europe & Central Asia
## 1224  2023-05-10  2.221176e+00           NA      Europe & Central Asia
## 1225  2023-05-10  1.848295e+00           NA      Europe & Central Asia
## 1226  2023-05-10  2.558602e+00           NA      Europe & Central Asia
## 1227  2023-05-10  1.005534e+00           NA      Europe & Central Asia
## 1228  2023-05-10  3.479093e+00           NA      Europe & Central Asia
## 1229  2023-05-10  2.300979e+00           NA      Europe & Central Asia
## 1230  2023-05-10  2.054236e+00           NA      Europe & Central Asia
## 1231  2023-05-10  1.546672e+00           NA      Europe & Central Asia
## 1232  2023-05-10  2.524943e+00           NA      Europe & Central Asia
## 1233  2023-05-10  2.964761e+00           NA      Europe & Central Asia
## 1234  2023-05-10  1.266996e+00           NA      Europe & Central Asia
## 1235  2023-05-10  6.457776e+00           NA      Europe & Central Asia
## 1236  2023-05-10  4.114371e+00           NA      Europe & Central Asia
## 1237  2023-05-10  1.892161e+00           NA      Europe & Central Asia
## 1238  2023-05-10  2.999681e+00           NA      Europe & Central Asia
## 1239  2023-05-10  1.145596e+00           NA      Europe & Central Asia
## 1240  2023-05-10  1.838064e+00           NA      Europe & Central Asia
## 1241  2023-05-10  1.813918e+00           NA      Europe & Central Asia
## 1242  2023-05-10  5.624919e+00           NA      Europe & Central Asia
## 1243  2023-05-10  2.537794e+00           NA      Europe & Central Asia
## 1244  2023-05-10  2.175707e+00           NA      Europe & Central Asia
## 1245  2023-05-10  5.198712e+00           NA      Europe & Central Asia
## 1246  2023-05-10  6.716668e+00           NA      Europe & Central Asia
## 1247  2023-05-10  1.307553e+00           NA      Europe & Central Asia
## 1248  2023-05-10  9.502140e+00           NA      Europe & Central Asia
## 1249  2023-05-10  3.641872e+00           NA      Europe & Central Asia
## 1250  2023-05-10            NA           NA      Europe & Central Asia
## 1251  2023-05-10  3.340203e+00           NA      Europe & Central Asia
## 1252  2023-05-10  9.862055e-01           NA      Europe & Central Asia
## 1253  2023-05-10  1.623888e+00           NA      Europe & Central Asia
## 1254  2023-05-10  1.947105e+00           NA      Europe & Central Asia
## 1255  2023-05-10  1.739719e+00           NA      Europe & Central Asia
## 1256  2023-05-10  8.045542e+00           NA      Europe & Central Asia
## 1257  2023-05-10  3.678266e+00           NA      Europe & Central Asia
## 1258  2023-05-10  2.757085e+00           NA      Europe & Central Asia
## 1259  2023-05-10  2.563497e-01           NA      Europe & Central Asia
## 1260  2023-05-10  5.993017e+00           NA      Europe & Central Asia
## 1261  2023-05-10  1.526855e+00           NA      Europe & Central Asia
## 1262  2023-05-10  3.183788e+00           NA      Europe & Central Asia
## 1263  2023-05-10  5.087154e+00           NA      Europe & Central Asia
## 1264  2023-05-10  5.580629e+00           NA      Europe & Central Asia
## 1265  2023-05-10  6.204375e+00           NA      Europe & Central Asia
## 1266  2023-05-10  1.943407e+00           NA      Europe & Central Asia
## 1267  2023-05-10  8.730550e-01           NA      Europe & Central Asia
## 1268  2023-05-10  5.321415e+00           NA      Europe & Central Asia
## 1269  2023-05-10            NA           NA      Europe & Central Asia
## 1270  2023-05-10  2.436948e+00           NA      Europe & Central Asia
## 1271  2023-05-10  5.355289e+00           NA      Europe & Central Asia
## 1272  2023-05-10  7.599932e+00           NA      Europe & Central Asia
## 1273  2023-05-10  1.364041e+00           NA      Europe & Central Asia
## 1274  2023-05-10  4.949773e+00           NA      Europe & Central Asia
## 1275  2023-05-10  1.889264e+00           NA      Europe & Central Asia
## 1276  2023-05-10  2.838032e+00           NA      Europe & Central Asia
## 1277  2023-05-10  2.950997e+00           NA      Europe & Central Asia
## 1278  2023-05-10  3.122366e+00           NA      Europe & Central Asia
## 1279  2023-05-10  2.962996e+00           NA      Europe & Central Asia
## 1280  2023-05-10  6.451390e+00           NA      Europe & Central Asia
## 1281  2023-05-10  4.419052e-01           NA      Europe & Central Asia
## 1282  2023-05-10  3.247763e+00           NA      Europe & Central Asia
## 1283  2023-05-10  1.956322e+00           NA      Europe & Central Asia
## 1284  2023-05-10  3.472783e+00           NA      Europe & Central Asia
## 1285  2023-05-10  2.733573e+00           NA      Europe & Central Asia
## 1286  2020-07-27            NA 6.174710e+01                       <NA>
## 1287  2020-07-27            NA 6.293490e+01                       <NA>
## 1288  2020-07-27            NA 6.449682e+01                       <NA>
## 1289  2020-07-27            NA 6.660120e+01                       <NA>
## 1290  2020-07-27            NA 6.885522e+01                       <NA>
## 1291  2020-07-27            NA 7.159559e+01                       <NA>
## 1292  2020-07-27            NA 7.424242e+01                       <NA>
## 1293  2020-07-27            NA 7.643098e+01                       <NA>
## 1294  2020-07-27            NA 7.813318e+01                       <NA>
## 1295  2020-07-27            NA 7.959222e+01                       <NA>
## 1296  2020-07-27            NA 8.059297e+01                       <NA>
## 1297  2020-07-27            NA 8.141601e+01                       <NA>
## 1298  2020-07-27            NA 8.185559e+01                       <NA>
## 1299  2020-07-27            NA 8.376356e+01                       <NA>
## 1300  2020-07-27            NA 8.598017e+01                       <NA>
## 1301  2020-07-27            NA 8.755144e+01                       <NA>
## 1302  2020-07-27            NA 8.872989e+01                       <NA>
## 1303  2020-07-27            NA 9.058174e+01                       <NA>
## 1304  2020-07-27            NA 9.265806e+01                       <NA>
## 1305  2020-07-27            NA 9.398616e+01                       <NA>
## 1306  2020-07-27            NA 9.602507e+01                       <NA>
## 1307  2020-07-27            NA 9.910213e+01                       <NA>
## 1308  2020-07-27            NA 9.961654e+01                       <NA>
## 1309  2020-07-27            NA 1.014123e+02                       <NA>
## 1310  2020-07-27            NA 1.047138e+02                       <NA>
## 1311  2020-07-27            NA 1.073139e+02                       <NA>
## 1312  2020-07-27            NA 1.094650e+02                       <NA>
## 1313  2020-07-27            NA 1.112233e+02                       <NA>
## 1314  2020-07-27            NA 1.122428e+02                       <NA>
## 1315  2020-07-27            NA 1.132435e+02                       <NA>
## 1316  2020-07-27            NA 1.156004e+02                       <NA>
## 1317  2020-07-27            NA 1.179106e+02                       <NA>
## 1318  2020-07-27            NA 1.197157e+02                       <NA>
## 1319  2020-07-27            NA 1.210251e+02                       <NA>
## 1320  2023-05-10  2.515010e+00           NA      Europe & Central Asia
## 1321  2023-05-10  1.249277e+01           NA      Europe & Central Asia
## 1322  2023-05-10  2.777746e+01           NA      Europe & Central Asia
## 1323  2023-05-10  1.386067e+03           NA      Europe & Central Asia
## 1324  2023-05-10            NA           NA      Europe & Central Asia
## 1325  2023-05-10            NA           NA      Europe & Central Asia
## 1326  2023-05-10 -8.849693e+00           NA      Europe & Central Asia
## 1327  2023-05-10  9.251965e+00           NA      Europe & Central Asia
## 1328  2023-05-10 -1.884496e+01           NA      Europe & Central Asia
## 1329  2023-05-10  2.882933e+00           NA      Europe & Central Asia
## 1330  2023-05-10            NA           NA      Europe & Central Asia
## 1331  2023-05-10  1.130122e+01           NA      Europe & Central Asia
## 1332  2023-05-10  6.961466e+00           NA      Europe & Central Asia
## 1333  2023-05-10  1.472350e+01           NA      Europe & Central Asia
## 1334  2023-05-10  2.162142e+00           NA      Europe & Central Asia
## 1335  2023-05-10  8.354951e+01           NA      Europe & Central Asia
## 1336  2023-05-10  1.617240e+01           NA      Europe & Central Asia
## 1337  2023-05-10            NA           NA      Europe & Central Asia
## 1338  2023-05-10            NA           NA      Europe & Central Asia
## 1339  2023-05-10 -9.651334e-01           NA      Europe & Central Asia
## 1340  2023-05-10  4.450645e-01           NA      Europe & Central Asia
## 1341  2023-05-10            NA           NA      Europe & Central Asia
## 1342  2023-05-10  2.102933e+01           NA      Europe & Central Asia
## 1343  2023-05-10            NA           NA      Europe & Central Asia
## 1344  2023-05-10  9.242504e+00           NA      Europe & Central Asia
## 1345  2023-05-10  5.456564e+02           NA      Europe & Central Asia
## 1346  2023-05-10  1.065329e+03           NA      Europe & Central Asia
## 1347  2023-05-10            NA           NA      Europe & Central Asia
## 1348  2023-05-10  4.214386e+00           NA      Europe & Central Asia
## 1349  2023-05-10            NA           NA      Europe & Central Asia
## 1350  2023-05-10            NA           NA      Europe & Central Asia
## 1351  2023-05-10            NA           NA      Europe & Central Asia
## 1352  2023-05-10            NA           NA      Europe & Central Asia
## 1353  2023-05-10            NA           NA      Europe & Central Asia
## 1354  2023-05-10  7.471245e+02           NA      Europe & Central Asia
## 1355  2023-05-10            NA           NA      Europe & Central Asia
## 1356  2023-05-10            NA           NA      Europe & Central Asia
## 1357  2023-05-10            NA           NA      Europe & Central Asia
## 1358  2023-05-10            NA           NA      Europe & Central Asia
## 1359  2023-05-10 -7.395966e+00           NA      Europe & Central Asia
## 1360  2023-05-10            NA           NA      Europe & Central Asia
## 1361  2023-05-10            NA           NA      Europe & Central Asia
## 1362  2023-05-10            NA           NA      Europe & Central Asia
## 1363  2023-05-10            NA           NA      Europe & Central Asia
## 1364  2023-05-10            NA           NA      Europe & Central Asia
## 1365  2023-05-10            NA           NA      Europe & Central Asia
## 1366  2023-05-10  1.467140e+01           NA      Europe & Central Asia
## 1367  2023-05-10 -1.284996e+00           NA      Europe & Central Asia
## 1368  2023-05-10 -2.413079e-01           NA      Europe & Central Asia
## 1369  2023-05-10  2.115693e+01           NA      Europe & Central Asia
## 1370  2023-05-10  2.641916e+01           NA      Europe & Central Asia
## 1371  2023-05-10            NA           NA      Europe & Central Asia
## 1372  2023-05-10            NA           NA      Europe & Central Asia
## 1373  2023-05-10            NA           NA      Europe & Central Asia
## 1374  2023-05-10  1.354582e+01           NA      Europe & Central Asia
## 1375  2023-05-10            NA           NA      Europe & Central Asia
## 1376  2023-05-10            NA           NA      Europe & Central Asia
## 1377  2023-05-10            NA           NA      Europe & Central Asia
## 1378  2023-05-10  2.252436e+01           NA      Europe & Central Asia
## 1379  2023-05-10            NA           NA      Europe & Central Asia
## 1380  2023-05-10            NA           NA      Europe & Central Asia
## 1381  2023-05-10  1.218488e+01           NA      Europe & Central Asia
## 1382  2023-05-10            NA           NA      Europe & Central Asia
## 1383  2020-07-27            NA           NA                       <NA>
## 1384  2020-07-27            NA           NA                       <NA>
## 1385  2020-07-27            NA           NA                       <NA>
## 1386  2020-07-27            NA           NA                       <NA>
## 1387  2020-07-27            NA           NA                       <NA>
## 1388  2020-07-27            NA 3.986623e-02                       <NA>
## 1389  2020-07-27            NA 4.882975e-01                       <NA>
## 1390  2020-07-27            NA 8.605217e+00                       <NA>
## 1391  2020-07-27            NA 4.403431e+01                       <NA>
## 1392  2020-07-27            NA 5.274910e+01                       <NA>
## 1393  2020-07-27            NA 5.468713e+01                       <NA>
## 1394  2020-07-27            NA 5.426479e+01                       <NA>
## 1395  2020-07-27            NA 4.963857e+01                       <NA>
## 1396  2020-07-27            NA 5.053449e+01                       <NA>
## 1397  2020-07-27            NA 5.132244e+01                       <NA>
## 1398  2020-07-27            NA 5.273777e+01                       <NA>
## 1399  2020-07-27            NA 5.385650e+01                       <NA>
## 1400  2020-07-27            NA 5.746960e+01                       <NA>
## 1401  2020-07-27            NA 6.297343e+01                       <NA>
## 1402  2020-07-27            NA 6.815410e+01                       <NA>
## 1403  2020-07-27            NA 7.945789e+01                       <NA>
## 1404  2020-07-27            NA 9.597159e+01                       <NA>
## 1405  2020-07-27            NA 9.726711e+01                       <NA>
## 1406  2020-07-27            NA 1.027766e+02                       <NA>
## 1407  2020-07-27            NA 1.107457e+02                       <NA>
## 1408  2020-07-27            NA 1.118604e+02                       <NA>
## 1409  2020-07-27            NA 1.145717e+02                       <NA>
## 1410  2020-07-27            NA 1.162303e+02                       <NA>
## 1411  2020-07-27            NA 1.209357e+02                       <NA>
## 1412  2020-07-27            NA 1.359781e+02                       <NA>
## 1413  2020-07-27            NA 1.534437e+02                       <NA>
## 1414  2020-07-27            NA 1.570254e+02                       <NA>
## 1415  2020-07-27            NA 1.612844e+02                       <NA>
## 1416  2020-07-27            NA 1.659132e+02                       <NA>
## 1417  2020-07-27            NA 5.465860e+01                       <NA>
## 1418  2020-07-27            NA 5.706492e+01                       <NA>
## 1419  2020-07-27            NA 6.013938e+01                       <NA>
## 1420  2020-07-27            NA 6.294748e+01                       <NA>
## 1421  2020-07-27            NA 6.742600e+01                       <NA>
## 1422  2020-07-27            NA 7.129502e+01                       <NA>
## 1423  2020-07-27            NA 7.323630e+01                       <NA>
## 1424  2020-07-27            NA 7.426114e+01                       <NA>
## 1425  2020-07-27            NA 7.579611e+01                       <NA>
## 1426  2020-07-27            NA 7.684143e+01                       <NA>
## 1427  2020-07-27            NA 7.725958e+01                       <NA>
## 1428  2020-07-27            NA 7.829224e+01                       <NA>
## 1429  2020-07-27            NA 7.927422e+01                       <NA>
## 1430  2020-07-27            NA 8.054763e+01                       <NA>
## 1431  2020-07-27            NA 8.219480e+01                       <NA>
## 1432  2020-07-27            NA 8.398139e+01                       <NA>
## 1433  2020-07-27            NA 8.652187e+01                       <NA>
## 1434  2020-07-27            NA 8.737143e+01                       <NA>
## 1435  2020-07-27            NA 8.876205e+01                       <NA>
## 1436  2020-07-27            NA 9.088328e+01                       <NA>
## 1437  2020-07-27            NA 9.314864e+01                       <NA>
## 1438  2020-07-27            NA 9.733059e+01                       <NA>
## 1439  2020-07-27            NA 9.933827e+01                       <NA>
## 1440  2020-07-27            NA 1.006734e+02                       <NA>
## 1441  2020-07-27            NA 1.038937e+02                       <NA>
## 1442  2020-07-27            NA 1.059439e+02                       <NA>
## 1443  2020-07-27            NA 1.070401e+02                       <NA>
## 1444  2020-07-27            NA 1.581795e+02                       <NA>
## 1445  2020-07-27            NA 1.103410e+02                       <NA>
## 1446  2020-07-27            NA 1.099769e+02                       <NA>
## 1447  2020-07-27            NA 1.116264e+02                       <NA>
## 1448  2020-07-27            NA 1.141576e+02                       <NA>
## 1449  2020-07-27            NA 1.170015e+02                       <NA>
## 1450  2020-07-27            NA           NA                       <NA>
## 1451  2023-05-10  8.279371e-01           NA  Latin America & Caribbean
## 1452  2023-05-10  5.056846e+00           NA  Latin America & Caribbean
## 1453  2023-05-10  3.960763e+00           NA  Latin America & Caribbean
## 1454  2023-05-10  1.154479e+00           NA  Latin America & Caribbean
## 1455  2023-05-10  8.460727e+00           NA  Latin America & Caribbean
## 1456  2023-05-10  6.586348e+00           NA  Latin America & Caribbean
## 1457  2023-05-10  3.539821e-01           NA  Latin America & Caribbean
## 1458  2023-05-10  3.905565e+00           NA  Latin America & Caribbean
## 1459  2023-05-10  5.073711e+00           NA  Latin America & Caribbean
## 1460  2023-05-10  3.695008e+00           NA  Latin America & Caribbean
## 1461  2023-05-10  3.171435e+00           NA  Latin America & Caribbean
## 1462  2023-05-10 -8.519834e-01           NA  Latin America & Caribbean
## 1463  2023-05-10  6.417219e+01           NA  Latin America & Caribbean
## 1464  2023-05-10  9.842436e-01           NA  Latin America & Caribbean
## 1465  2023-05-10  2.947322e+00           NA  Latin America & Caribbean
## 1466  2023-05-10  1.194630e+00           NA  Latin America & Caribbean
## 1467  2023-05-10  8.925373e+00           NA  Latin America & Caribbean
## 1468  2023-05-10  4.582552e+00           NA  Latin America & Caribbean
## 1469  2023-05-10  9.219179e-01           NA  Latin America & Caribbean
## 1470  2023-05-10            NA           NA  Latin America & Caribbean
## 1471  2023-05-10  2.556540e+00           NA  Latin America & Caribbean
## 1472  2023-05-10  5.976967e+00           NA  Latin America & Caribbean
## 1473  2023-05-10  3.267288e+00           NA  Latin America & Caribbean
## 1474  2023-05-10  1.768833e+01           NA  Latin America & Caribbean
## 1475  2023-05-10  2.183367e+00           NA  Latin America & Caribbean
## 1476  2023-05-10  6.145346e+00           NA  Latin America & Caribbean
## 1477  2023-05-10            NA           NA  Latin America & Caribbean
## 1478  2023-05-10  1.728703e+00           NA  Latin America & Caribbean
## 1479  2023-05-10  2.389665e+00           NA  Latin America & Caribbean
## 1480  2023-05-10  1.813171e+00           NA  Latin America & Caribbean
## 1481  2023-05-10  1.433321e+00           NA  Latin America & Caribbean
## 1482  2023-05-10  5.088783e+00           NA  Latin America & Caribbean
## 1483  2023-05-10  4.660387e+00           NA  Latin America & Caribbean
## 1484  2023-05-10  1.089633e+00           NA  Latin America & Caribbean
## 1485  2023-05-10  1.616957e+00           NA  Latin America & Caribbean
## 1486  2023-05-10  4.713073e+00           NA  Latin America & Caribbean
## 1487  2023-05-10  8.554097e+00           NA  Latin America & Caribbean
## 1488  2023-05-10  2.247884e+00           NA  Latin America & Caribbean
## 1489  2023-05-10  1.328565e+00           NA  Latin America & Caribbean
## 1490  2023-05-10  1.000687e+01           NA  Latin America & Caribbean
## 1491  2023-05-10  1.501262e+00           NA  Latin America & Caribbean
## 1492  2023-05-10  1.343764e+00           NA  Latin America & Caribbean
## 1493  2023-05-10  1.160601e+00           NA  Latin America & Caribbean
## 1494  2023-05-10  6.786659e+00           NA  Latin America & Caribbean
## 1495  2023-05-10  3.887116e+00           NA  Latin America & Caribbean
## 1496  2023-05-10 -3.486900e+00           NA  Latin America & Caribbean
## 1497  2023-05-10  5.163481e+00           NA  Latin America & Caribbean
## 1498  2023-05-10  3.771319e+00           NA  Latin America & Caribbean
## 1499  2023-05-10  2.239129e-01           NA  Latin America & Caribbean
## 1500  2023-05-10 -1.035990e+00           NA  Latin America & Caribbean
## 1501  2023-05-10  8.024353e-01           NA  Latin America & Caribbean
## 1502  2023-05-10  1.065638e+01           NA  Latin America & Caribbean
## 1503  2023-05-10  6.329442e-01           NA  Latin America & Caribbean
## 1504  2023-05-10 -3.922943e-01           NA  Latin America & Caribbean
## 1505  2023-05-10  1.484311e+00           NA  Latin America & Caribbean
## 1506  2023-05-10  1.366284e+00           NA  Latin America & Caribbean
## 1507  2023-05-10  1.505301e+00           NA  Latin America & Caribbean
## 1508  2023-05-10  2.011728e+00           NA  Latin America & Caribbean
## 1509  2023-05-10  1.299853e+01           NA  Latin America & Caribbean
## 1510  2023-05-10 -8.588156e-01           NA  Latin America & Caribbean
## 1511  2023-05-10  1.488464e+00           NA  Latin America & Caribbean
## 1512  2023-05-10  1.323271e+01           NA  Latin America & Caribbean
## 1513  2023-05-10  5.551023e+00           NA  Latin America & Caribbean
## 1514  2023-05-10  7.331189e+00           NA Middle East & North Africa
## 1515  2023-05-10            NA           NA Middle East & North Africa
## 1516  2023-05-10  2.009428e+00           NA Middle East & North Africa
## 1517  2023-05-10 -3.025815e+00           NA Middle East & North Africa
## 1518  2023-05-10            NA           NA Middle East & North Africa
## 1519  2023-05-10            NA           NA Middle East & North Africa
## 1520  2023-05-10            NA           NA Middle East & North Africa
## 1521  2023-05-10 -1.882525e+00           NA Middle East & North Africa
## 1522  2023-05-10  6.590485e-01           NA Middle East & North Africa
## 1523  2023-05-10            NA           NA Middle East & North Africa
## 1524  2023-05-10 -3.532652e+00           NA Middle East & North Africa
## 1525  2023-05-10            NA           NA Middle East & North Africa
## 1526  2023-05-10  2.656434e+00           NA Middle East & North Africa
## 1527  2023-05-10            NA           NA Middle East & North Africa
## 1528  2023-05-10            NA           NA Middle East & North Africa
## 1529  2023-05-10 -1.824995e+00           NA Middle East & North Africa
## 1530  2023-05-10  8.435633e+00           NA Middle East & North Africa
## 1531  2023-05-10  1.136509e+01           NA Middle East & North Africa
## 1532  2023-05-10 -7.057411e+00           NA Middle East & North Africa
## 1533  2023-05-10            NA           NA Middle East & North Africa
## 1534  2023-05-10  8.326178e-02           NA Middle East & North Africa
## 1535  2023-05-10  3.014766e+00           NA Middle East & North Africa
## 1536  2023-05-10            NA           NA Middle East & North Africa
## 1537  2023-05-10            NA           NA Middle East & North Africa
## 1538  2023-05-10  3.974660e+00           NA Middle East & North Africa
## 1539  2023-05-10  4.360062e+00           NA Middle East & North Africa
## 1540  2023-05-10            NA           NA Middle East & North Africa
## 1541  2023-05-10  1.099108e+01           NA Middle East & North Africa
## 1542  2023-05-10            NA           NA Middle East & North Africa
## 1543  2023-05-10  1.090668e+00           NA Middle East & North Africa
## 1544  2023-05-10  8.602581e+00           NA Middle East & North Africa
## 1545  2023-05-10            NA           NA Middle East & North Africa
## 1546  2023-05-10 -1.739265e+01           NA Middle East & North Africa
## 1547  2023-05-10 -4.184801e-01           NA Middle East & North Africa
## 1548  2023-05-10 -1.299394e+01           NA Middle East & North Africa
## 1549  2023-05-10 -3.363828e+00           NA Middle East & North Africa
## 1550  2023-05-10            NA           NA Middle East & North Africa
## 1551  2023-05-10  4.826696e+00           NA Middle East & North Africa
## 1552  2023-05-10  7.441126e+00           NA Middle East & North Africa
## 1553  2023-05-10 -3.689967e+00           NA Middle East & North Africa
## 1554  2023-05-10  9.317151e-01           NA Middle East & North Africa
## 1555  2023-05-10 -5.502965e+00           NA Middle East & North Africa
## 1556  2023-05-10  9.501301e+00           NA Middle East & North Africa
## 1557  2023-05-10  8.842437e+00           NA Middle East & North Africa
## 1558  2023-05-10            NA           NA Middle East & North Africa
## 1559  2023-05-10            NA           NA Middle East & North Africa
## 1560  2023-05-10            NA           NA Middle East & North Africa
## 1561  2023-05-10 -1.670883e+00           NA Middle East & North Africa
## 1562  2023-05-10  2.999128e+01           NA Middle East & North Africa
## 1563  2023-05-10  1.373497e+01           NA Middle East & North Africa
## 1564  2023-05-10            NA           NA Middle East & North Africa
## 1565  2023-05-10  1.372399e+01           NA Middle East & North Africa
## 1566  2023-05-10            NA           NA Middle East & North Africa
## 1567  2023-05-10 -9.255157e+00           NA Middle East & North Africa
## 1568  2023-05-10  1.891177e+01           NA Middle East & North Africa
## 1569  2023-05-10  5.519685e+00           NA Middle East & North Africa
## 1570  2023-05-10  3.414350e+00           NA Middle East & North Africa
## 1571  2023-05-10  1.967219e-01           NA Middle East & North Africa
## 1572  2023-05-10            NA           NA Middle East & North Africa
## 1573  2023-05-10  9.736753e+00           NA Middle East & North Africa
## 1574  2023-05-10            NA           NA Middle East & North Africa
## 1575  2023-05-10  3.841400e-01           NA Middle East & North Africa
## 1576  2023-05-10  2.472787e-01           NA Middle East & North Africa
## 1577  2020-07-27            NA 7.637916e+01                       <NA>
## 1578  2020-07-27            NA 7.661118e+01                       <NA>
## 1579  2020-07-27            NA 7.775085e+01                       <NA>
## 1580  2020-07-27            NA 7.847332e+01                       <NA>
## 1581  2020-07-27            NA 7.907062e+01                       <NA>
## 1582  2020-07-27            NA 7.893641e+01                       <NA>
## 1583  2020-07-27            NA 8.093936e+01                       <NA>
## 1584  2020-07-27            NA 8.160249e+01                       <NA>
## 1585  2020-07-27            NA 8.380763e+01                       <NA>
## 1586  2020-07-27            NA 8.342831e+01                       <NA>
## 1587  2020-07-27            NA 8.545585e+01                       <NA>
## 1588  2020-07-27            NA 8.526545e+01                       <NA>
## 1589  2020-07-27            NA 8.404761e+01                       <NA>
## 1590  2020-07-27            NA 8.345463e+01                       <NA>
## 1591  2020-07-27            NA 8.346256e+01                       <NA>
## 1592  2020-07-27            NA 8.475960e+01                       <NA>
## 1593  2020-07-27            NA 8.571835e+01                       <NA>
## 1594  2020-07-27            NA 8.667710e+01                       <NA>
## 1595  2020-07-27            NA 8.751508e+01                       <NA>
## 1596  2020-07-27            NA 8.930768e+01                       <NA>
## 1597  2020-07-27            NA 9.261407e+01                       <NA>
## 1598  2020-07-27            NA 9.587069e+01                       <NA>
## 1599  2020-07-27            NA 9.855051e+01                       <NA>
## 1600  2020-07-27            NA 1.004842e+02                       <NA>
## 1601  2020-07-27            NA 1.001464e+02                       <NA>
## 1602  2020-07-27            NA 1.029070e+02                       <NA>
## 1603  2020-07-27            NA 1.063050e+02                       <NA>
## 1604  2020-07-27            NA 1.091174e+02                       <NA>
## 1605  2020-07-27            NA 1.111347e+02                       <NA>
## 1606  2020-07-27            NA 1.142339e+02                       <NA>
## 1607  2020-07-27            NA 1.158169e+02                       <NA>
## 1608  2020-07-27            NA 1.182387e+02                       <NA>
## 1609  2020-07-27            NA 1.194292e+02                       <NA>
## 1610  2020-07-27            NA 1.173700e+02                       <NA>
## 1611  2023-05-10  3.781038e+00           NA                 South Asia
## 1612  2023-05-10  6.471260e+00           NA                 South Asia
## 1613  2023-05-10  6.764355e+00           NA                 South Asia
## 1614  2023-05-10  1.479196e+01           NA                 South Asia
## 1615  2023-05-10  8.164574e+00           NA                 South Asia
## 1616  2023-05-10  8.056976e+01           NA                 South Asia
## 1617  2023-05-10  6.296189e+00           NA                 South Asia
## 1618  2023-05-10  7.144939e+00           NA                 South Asia
## 1619  2023-05-10  2.785074e+01           NA                 South Asia
## 1620  2023-05-10  3.800232e+00           NA                 South Asia
## 1621  2023-05-10  5.047598e+00           NA                 South Asia
## 1622  2023-05-10  5.103090e-01           NA                 South Asia
## 1623  2023-05-10  7.931705e+00           NA                 South Asia
## 1624  2023-05-10 -5.769584e+00           NA                 South Asia
## 1625  2023-05-10  7.860966e+00           NA                 South Asia
## 1626  2023-05-10  2.963255e+00           NA                 South Asia
## 1627  2023-05-10  4.121175e+00           NA                 South Asia
## 1628  2023-05-10 -1.763042e+01           NA                 South Asia
## 1629  2023-05-10  4.736213e+00           NA                 South Asia
## 1630  2023-05-10  1.914321e+01           NA                 South Asia
## 1631  2023-05-10            NA           NA                 South Asia
## 1632  2023-05-10 -8.743225e+00           NA                 South Asia
## 1633  2023-05-10  6.532735e+00           NA                 South Asia
## 1634  2023-05-10  7.859451e+00           NA                 South Asia
## 1635  2023-05-10  1.182772e+01           NA                 South Asia
## 1636  2023-05-10  5.164059e+00           NA                 South Asia
## 1637  2023-05-10  3.658148e+00           NA                 South Asia
## 1638  2023-05-10  3.841052e+00           NA                 South Asia
## 1639  2023-05-10  5.668789e+00           NA                 South Asia
## 1640  2023-05-10  4.562136e+00           NA                 South Asia
## 1641  2023-05-10  2.222350e-02           NA                 South Asia
## 1642  2023-05-10  7.144663e+00           NA                 South Asia
## 1643  2023-05-10  3.446659e+00           NA                 South Asia
## 1644  2023-05-10  7.174953e+00           NA                 South Asia
## 1645  2023-05-10  1.755507e+01           NA                 South Asia
## 1646  2023-05-10            NA           NA                 South Asia
## 1647  2023-05-10  5.872777e+00           NA                 South Asia
## 1648  2023-05-10  4.402020e+00           NA                 South Asia
## 1649  2023-05-10  4.454272e+01           NA                 South Asia
## 1650  2023-05-10  7.495835e+00           NA                 South Asia
## 1651  2023-05-10  1.256451e+01           NA                 South Asia
## 1652  2023-05-10  3.966216e+00           NA                 South Asia
## 1653  2023-05-10  8.487756e+00           NA                 South Asia
## 1654  2023-05-10  1.555182e-01           NA                 South Asia
## 1655  2023-05-10  8.337973e+00           NA                 South Asia
## 1656  2023-05-10  6.140578e+01           NA                 South Asia
## 1657  2023-05-10  1.849512e+01           NA                 South Asia
## 1658  2023-05-10  3.892867e+00           NA                 South Asia
## 1659  2023-05-10  9.855812e+00           NA                 South Asia
## 1660  2023-05-10  3.261160e+00           NA                 South Asia
## 1661  2023-05-10  1.111963e+01           NA                 South Asia
## 1662  2023-05-10  6.257482e+00           NA                 South Asia
## 1663  2023-05-10  4.586361e+00           NA                 South Asia
## 1664  2023-05-10  2.729532e+00           NA                 South Asia
## 1665  2023-05-10  2.561889e+01           NA                 South Asia
## 1666  2023-05-10  7.875566e+00           NA                 South Asia
## 1667  2023-05-10  2.582162e+00           NA                 South Asia
## 1668  2023-05-10  5.875936e+00           NA                 South Asia
## 1669  2023-05-10  8.254405e+00           NA                 South Asia
## 1670  2023-05-10 -3.210156e+00           NA                 South Asia
## 1671  2023-05-10  5.815817e+00           NA                 South Asia
## 1672  2023-05-10  5.805539e+00           NA                 South Asia
## 1673  2023-05-10  9.894690e+00           NA                 South Asia
## 1674  2020-07-27            NA           NA                       <NA>
## 1675  2020-07-27            NA           NA                       <NA>
## 1676  2020-07-27            NA           NA                       <NA>
## 1677  2020-07-27            NA           NA                       <NA>
## 1678  2020-07-27            NA           NA                       <NA>
## 1679  2020-07-27            NA           NA                       <NA>
## 1680  2020-07-27            NA 3.783771e+01                       <NA>
## 1681  2020-07-27            NA 3.984088e+01                       <NA>
## 1682  2020-07-27            NA 4.395006e+01                       <NA>
## 1683  2020-07-27            NA 4.499468e+01                       <NA>
## 1684  2020-07-27            NA 4.733585e+01                       <NA>
## 1685  2020-07-27            NA 5.125898e+01                       <NA>
## 1686  2020-07-27            NA 5.445180e+01                       <NA>
## 1687  2020-07-27            NA 5.574545e+01                       <NA>
## 1688  2020-07-27            NA 5.682533e+01                       <NA>
## 1689  2020-07-27            NA 5.874356e+01                       <NA>
## 1690  2020-07-27            NA 6.204384e+01                       <NA>
## 1691  2020-07-27            NA 6.675276e+01                       <NA>
## 1692  2020-07-27            NA 7.145358e+01                       <NA>
## 1693  2020-07-27            NA 7.629018e+01                       <NA>
## 1694  2020-07-27            NA 8.323973e+01                       <NA>
## 1695  2020-07-27            NA 9.064342e+01                       <NA>
## 1696  2020-07-27            NA 9.555975e+01                       <NA>
## 1697  2020-07-27            NA 1.033286e+02                       <NA>
## 1698  2020-07-27            NA 1.139297e+02                       <NA>
## 1699  2020-07-27            NA 1.213952e+02                       <NA>
## 1700  2020-07-27            NA 1.305363e+02                       <NA>
## 1701  2020-07-27            NA 1.396629e+02                       <NA>
## 1702  2020-07-27            NA 1.483140e+02                       <NA>
## 1703  2020-07-27            NA 1.564914e+02                       <NA>
## 1704  2020-07-27            NA 1.654146e+02                       <NA>
## 1705  2020-07-27            NA 1.745857e+02                       <NA>
## 1706  2020-07-27            NA 1.843473e+02                       <NA>
## 1707  2020-07-27            NA 1.914373e+02                       <NA>
## 1708  2023-05-10            NA           NA  Latin America & Caribbean
## 1709  2023-05-10  4.495283e+00           NA  Latin America & Caribbean
## 1710  2023-05-10  2.936073e+01           NA  Latin America & Caribbean
## 1711  2023-05-10  3.532676e+00           NA  Latin America & Caribbean
## 1712  2023-05-10  3.728308e+00           NA  Latin America & Caribbean
## 1713  2023-05-10 -5.919198e-01           NA  Latin America & Caribbean
## 1714  2023-05-10            NA           NA  Latin America & Caribbean
## 1715  2023-05-10            NA           NA  Latin America & Caribbean
## 1716  2023-05-10            NA           NA  Latin America & Caribbean
## 1717  2023-05-10            NA           NA  Latin America & Caribbean
## 1718  2023-05-10  2.209843e+00           NA  Latin America & Caribbean
## 1719  2023-05-10  2.946693e+00           NA  Latin America & Caribbean
## 1720  2023-05-10  1.721954e+00           NA  Latin America & Caribbean
## 1721  2023-05-10            NA           NA  Latin America & Caribbean
## 1722  2023-05-10            NA           NA  Latin America & Caribbean
## 1723  2023-05-10            NA           NA  Latin America & Caribbean
## 1724  2023-05-10            NA           NA  Latin America & Caribbean
## 1725  2023-05-10  6.823578e+00           NA  Latin America & Caribbean
## 1726  2023-05-10  3.514327e+00           NA  Latin America & Caribbean
## 1727  2023-05-10  3.896553e+00           NA  Latin America & Caribbean
## 1728  2023-05-10  2.757355e+00           NA  Latin America & Caribbean
## 1729  2023-05-10  5.195366e+00           NA  Latin America & Caribbean
## 1730  2023-05-10 -1.742034e+00           NA  Latin America & Caribbean
## 1731  2023-05-10  6.667725e+00           NA  Latin America & Caribbean
## 1732  2023-05-10            NA           NA  Latin America & Caribbean
## 1733  2023-05-10  7.337770e+00           NA  Latin America & Caribbean
## 1734  2023-05-10            NA           NA  Latin America & Caribbean
## 1735  2023-05-10            NA           NA  Latin America & Caribbean
## 1736  2023-05-10  4.473495e+00           NA  Latin America & Caribbean
## 1737  2023-05-10  1.237833e+01           NA  Latin America & Caribbean
## 1738  2023-05-10  5.664289e+00           NA  Latin America & Caribbean
## 1739  2023-05-10  2.122394e+00           NA  Latin America & Caribbean
## 1740  2023-05-10            NA           NA  Latin America & Caribbean
## 1741  2023-05-10  5.183243e+00           NA  Latin America & Caribbean
## 1742  2023-05-10  1.220029e+01           NA  Latin America & Caribbean
## 1743  2023-05-10  1.016149e+00           NA  Latin America & Caribbean
## 1744  2023-05-10  9.078562e-01           NA  Latin America & Caribbean
## 1745  2023-05-10  8.569720e+00           NA  Latin America & Caribbean
## 1746  2023-05-10  3.384339e+00           NA  Latin America & Caribbean
## 1747  2023-05-10            NA           NA  Latin America & Caribbean
## 1748  2023-05-10            NA           NA  Latin America & Caribbean
## 1749  2023-05-10  3.878278e+00           NA  Latin America & Caribbean
## 1750  2023-05-10  5.828144e+00           NA  Latin America & Caribbean
## 1751  2023-05-10  4.467810e+01           NA  Latin America & Caribbean
## 1752  2023-05-10            NA           NA  Latin America & Caribbean
## 1753  2023-05-10  2.255389e+00           NA  Latin America & Caribbean
## 1754  2023-05-10  4.058148e+00           NA  Latin America & Caribbean
## 1755  2023-05-10  9.168985e-01           NA  Latin America & Caribbean
## 1756  2023-05-10  1.115872e+00           NA  Latin America & Caribbean
## 1757  2023-05-10  6.717506e+00           NA  Latin America & Caribbean
## 1758  2023-05-10  4.589868e+00           NA  Latin America & Caribbean
## 1759  2023-05-10  2.610279e+00           NA  Latin America & Caribbean
## 1760  2023-05-10 -2.385668e-01           NA  Latin America & Caribbean
## 1761  2023-05-10  9.845767e+00           NA  Latin America & Caribbean
## 1762  2023-05-10 -1.322839e+00           NA  Latin America & Caribbean
## 1763  2023-05-10  4.433424e+00           NA  Latin America & Caribbean
## 1764  2023-05-10  9.750336e+00           NA  Latin America & Caribbean
## 1765  2023-05-10  4.959711e-01           NA  Latin America & Caribbean
## 1766  2023-05-10 -1.823927e+00           NA  Latin America & Caribbean
## 1767  2023-05-10  3.020983e+00           NA  Latin America & Caribbean
## 1768  2023-05-10  2.538416e+00           NA  Latin America & Caribbean
## 1769  2023-05-10  1.218971e+00           NA  Latin America & Caribbean
## 1770  2023-05-10  8.703256e+00           NA  Latin America & Caribbean
## 1771  2020-07-27            NA 4.583638e+01                       <NA>
## 1772  2020-07-27            NA 4.806351e+01                       <NA>
## 1773  2020-07-27            NA 5.103870e+01                       <NA>
## 1774  2020-07-27            NA 5.260792e+01                       <NA>
## 1775  2020-07-27            NA 5.589987e+01                       <NA>
## 1776  2020-07-27            NA 5.930635e+01                       <NA>
## 1777  2020-07-27            NA 5.996669e+01                       <NA>
## 1778  2020-07-27            NA 6.001299e+01                       <NA>
## 1779  2020-07-27            NA 6.114055e+01                       <NA>
## 1780  2020-07-27            NA 6.259946e+01                       <NA>
## 1781  2020-07-27            NA 6.742621e+01                       <NA>
## 1782  2020-07-27            NA 6.657065e+01                       <NA>
## 1783  2020-07-27            NA 6.760919e+01                       <NA>
## 1784  2020-07-27            NA 6.925603e+01                       <NA>
## 1785  2020-07-27            NA 7.104133e+01                       <NA>
## 1786  2020-07-27            NA 7.114831e+01                       <NA>
## 1787  2020-07-27            NA 7.227022e+01                       <NA>
## 1788  2020-07-27            NA 7.330214e+01                       <NA>
## 1789  2020-07-27            NA 7.774778e+01                       <NA>
## 1790  2020-07-27            NA 8.342933e+01                       <NA>
## 1791  2020-07-27            NA 8.679506e+01                       <NA>
## 1792  2020-07-27            NA 9.383250e+01                       <NA>
## 1793  2020-07-27            NA 9.725222e+01                       <NA>
## 1794  2020-07-27            NA 1.029158e+02                       <NA>
## 1795  2020-07-27            NA 1.126230e+02                       <NA>
## 1796  2020-07-27            NA 1.177286e+02                       <NA>
## 1797  2020-07-27            NA 1.198643e+02                       <NA>
## 1798  2020-07-27            NA 1.219853e+02                       <NA>
## 1799  2020-07-27            NA 1.206279e+02                       <NA>
## 1800  2020-07-27            NA 1.221742e+02                       <NA>
## 1801  2020-07-27            NA 1.278678e+02                       <NA>
## 1802  2020-07-27            NA 1.325654e+02                       <NA>
## 1803  2020-07-27            NA 1.380010e+02                       <NA>
## 1804  2020-07-27            NA 1.426206e+02                       <NA>
## 1805  2020-07-27            NA 6.889918e+01                       <NA>
## 1806  2020-07-27            NA 7.462444e+01                       <NA>
## 1807  2020-07-27            NA 8.565692e+01                       <NA>
## 1808  2020-07-27            NA 9.669633e+01                       <NA>
## 1809  2020-07-27            NA 1.040799e+02                       <NA>
## 1810  2020-07-27            NA 1.594817e+02                       <NA>
## 1811  2020-07-27            NA 2.539221e+02                       <NA>
## 1812  2020-07-27            NA           NA                       <NA>
## 1813  2020-07-27            NA           NA                       <NA>
## 1814  2020-07-27            NA           NA                       <NA>
## 1815  2020-07-27            NA           NA                       <NA>
## 1816  2020-07-27            NA           NA                       <NA>
## 1817  2020-07-27            NA           NA                       <NA>
## 1818  2020-07-27            NA 2.706258e-03                       <NA>
## 1819  2020-07-27            NA 4.510130e-02                       <NA>
## 1820  2020-07-27            NA 3.625451e-01                       <NA>
## 1821  2020-07-27            NA 5.542256e-01                       <NA>
## 1822  2020-07-27            NA 9.098321e-01                       <NA>
## 1823  2020-07-27            NA 1.577678e+00                       <NA>
## 1824  2020-07-27            NA 6.207501e+00                       <NA>
## 1825  2020-07-27            NA 1.667187e+01                       <NA>
## 1826  2020-07-27            NA 2.690293e+01                       <NA>
## 1827  2020-07-27            NA 3.840723e+01                       <NA>
## 1828  2020-07-27            NA 4.935817e+01                       <NA>
## 1829  2020-07-27            NA 5.837410e+01                       <NA>
## 1830  2020-07-27            NA 6.442114e+01                       <NA>
## 1831  2020-07-27            NA 3.003972e+02                       <NA>
## 1832  2020-07-27            NA 3.547894e+02                       <NA>
## 1833  2020-07-27            NA 4.027677e+02                       <NA>
## 1834  2020-07-27            NA 4.504102e+02                       <NA>
## 1835  2020-07-27            NA 4.775786e+02                       <NA>
## 1836  2020-07-27            NA 5.008231e+02                       <NA>
## 1837  2020-07-27            NA 5.288692e+02                       <NA>
## 1838  2020-07-27            NA 5.512524e+02                       <NA>
## 1839  2023-05-10            NA           NA      Europe & Central Asia
## 1840  2023-05-10  1.852908e+02           NA      Europe & Central Asia
## 1841  2023-05-10            NA           NA      Europe & Central Asia
## 1842  2023-05-10  1.897216e+01           NA      Europe & Central Asia
## 1843  2023-05-10            NA           NA      Europe & Central Asia
## 1844  2023-05-10  5.371433e+01           NA      Europe & Central Asia
## 1845  2023-05-10  1.190788e+01           NA      Europe & Central Asia
## 1846  2023-05-10  3.167934e+02           NA      Europe & Central Asia
## 1847  2023-05-10  2.267512e+01           NA      Europe & Central Asia
## 1848  2023-05-10  7.527737e+01           NA      Europe & Central Asia
## 1849  2023-05-10  1.287270e+01           NA      Europe & Central Asia
## 1850  2023-05-10            NA           NA      Europe & Central Asia
## 1851  2023-05-10  1.074862e+01           NA      Europe & Central Asia
## 1852  2023-05-10  7.658045e+01           NA      Europe & Central Asia
## 1853  2023-05-10  7.164957e+01           NA      Europe & Central Asia
## 1854  2023-05-10            NA           NA      Europe & Central Asia
## 1855  2023-05-10            NA           NA      Europe & Central Asia
## 1856  2023-05-10  2.121354e+01           NA      Europe & Central Asia
## 1857  2023-05-10            NA           NA      Europe & Central Asia
## 1858  2023-05-10            NA           NA      Europe & Central Asia
## 1859  2023-05-10            NA           NA      Europe & Central Asia
## 1860  2023-05-10  2.125730e+01           NA      Europe & Central Asia
## 1861  2023-05-10  8.623147e+00           NA      Europe & Central Asia
## 1862  2023-05-10            NA           NA      Europe & Central Asia
## 1863  2023-05-10            NA           NA      Europe & Central Asia
## 1864  2023-05-10  6.615041e+02           NA      Europe & Central Asia
## 1865  2023-05-10  1.305042e+01           NA      Europe & Central Asia
## 1866  2023-05-10            NA           NA      Europe & Central Asia
## 1867  2023-05-10            NA           NA      Europe & Central Asia
## 1868  2023-05-10            NA           NA      Europe & Central Asia
## 1869  2023-05-10  7.953457e+01           NA      Europe & Central Asia
## 1870  2023-05-10            NA           NA      Europe & Central Asia
## 1871  2023-05-10            NA           NA      Europe & Central Asia
## 1872  2023-05-10            NA           NA      Europe & Central Asia
## 1873  2023-05-10  7.103882e+01           NA      Europe & Central Asia
## 1874  2023-05-10            NA           NA      Europe & Central Asia
## 1875  2023-05-10  1.103767e+02           NA      Europe & Central Asia
## 1876  2023-05-10            NA           NA      Europe & Central Asia
## 1877  2023-05-10  1.602249e+01           NA      Europe & Central Asia
## 1878  2023-05-10            NA           NA      Europe & Central Asia
## 1879  2023-05-10  4.489374e+01           NA      Europe & Central Asia
## 1880  2023-05-10            NA           NA      Europe & Central Asia
## 1881  2023-05-10  8.341917e+00           NA      Europe & Central Asia
## 1882  2023-05-10  1.810516e+01           NA      Europe & Central Asia
## 1883  2023-05-10  1.945749e+03           NA      Europe & Central Asia
## 1884  2023-05-10            NA           NA      Europe & Central Asia
## 1885  2023-05-10  3.068532e+01           NA      Europe & Central Asia
## 1886  2023-05-10  1.058714e+03           NA      Europe & Central Asia
## 1887  2023-05-10            NA           NA      Europe & Central Asia
## 1888  2023-05-10  1.030777e+03           NA      Europe & Central Asia
## 1889  2023-05-10            NA           NA      Europe & Central Asia
## 1890  2023-05-10  1.213923e+01           NA      Europe & Central Asia
## 1891  2023-05-10            NA           NA      Europe & Central Asia
## 1892  2023-05-10            NA           NA      Europe & Central Asia
## 1893  2023-05-10            NA           NA      Europe & Central Asia
## 1894  2023-05-10  8.626733e+00           NA      Europe & Central Asia
## 1895  2023-05-10  9.258662e+00           NA      Europe & Central Asia
## 1896  2023-05-10            NA           NA      Europe & Central Asia
## 1897  2023-05-10            NA           NA      Europe & Central Asia
## 1898  2023-05-10            NA           NA      Europe & Central Asia
## 1899  2023-05-10            NA           NA      Europe & Central Asia
## 1900  2023-05-10            NA           NA      Europe & Central Asia
## 1901  2023-05-10  1.129047e+01           NA      Europe & Central Asia
## 1902  2023-05-10            NA           NA      Europe & Central Asia
## 1903  2023-05-10  1.920851e+00           NA      Europe & Central Asia
## 1904  2023-05-10  1.510721e+00           NA      Europe & Central Asia
## 1905  2023-05-10  1.549832e+00           NA      Europe & Central Asia
## 1906  2023-05-10  2.926076e+00           NA      Europe & Central Asia
## 1907  2023-05-10            NA           NA      Europe & Central Asia
## 1908  2023-05-10  4.023826e+00           NA      Europe & Central Asia
## 1909  2023-05-10  1.330386e+00           NA      Europe & Central Asia
## 1910  2023-05-10  3.193431e+00           NA      Europe & Central Asia
## 1911  2023-05-10  1.931721e+00           NA      Europe & Central Asia
## 1912  2023-05-10  1.667692e+00           NA      Europe & Central Asia
## 1913  2023-05-10  1.982803e+00           NA      Europe & Central Asia
## 1914  2023-05-10  9.826456e-01           NA      Europe & Central Asia
## 1915  2023-05-10  1.805644e+00           NA      Europe & Central Asia
## 1916  2023-05-10  1.807299e+00           NA      Europe & Central Asia
## 1917  2023-05-10  7.576244e-01           NA      Europe & Central Asia
## 1918  2023-05-10  1.761441e+00           NA      Europe & Central Asia
## 1919  2023-05-10  4.086015e+00           NA      Europe & Central Asia
## 1920  2023-05-10  4.642427e+00           NA      Europe & Central Asia
## 1921  2023-05-10  5.100713e+00           NA      Europe & Central Asia
## 1922  2023-05-10  5.331794e-01           NA      Europe & Central Asia
## 1923  2023-05-10  1.271258e+00           NA      Europe & Central Asia
## 1924  2023-05-10  2.620289e+00           NA      Europe & Central Asia
## 1925  2023-05-10  1.892078e+00           NA      Europe & Central Asia
## 1926  2023-05-10  6.680472e+00           NA      Europe & Central Asia
## 1927  2023-05-10  1.220770e+00           NA      Europe & Central Asia
## 1928  2023-05-10  4.766197e-01           NA      Europe & Central Asia
## 1929  2023-05-10  2.094305e+00           NA      Europe & Central Asia
## 1930  2023-05-10  1.830273e+00           NA      Europe & Central Asia
## 1931  2023-05-10  5.988978e-01           NA      Europe & Central Asia
## 1932  2023-05-10  1.315469e+00           NA      Europe & Central Asia
## 1933  2023-05-10  7.575263e+00           NA      Europe & Central Asia
## 1934  2023-05-10  7.570416e+00           NA      Europe & Central Asia
## 1935  2023-05-10  1.908845e+00           NA      Europe & Central Asia
## 1936  2023-05-10  2.264707e+00           NA      Europe & Central Asia
## 1937  2023-05-10  1.640008e+00           NA      Europe & Central Asia
## 1938  2023-05-10  2.014617e+00           NA      Europe & Central Asia
## 1939  2023-05-10  4.423250e+00           NA      Europe & Central Asia
## 1940  2023-05-10  5.438717e+00           NA      Europe & Central Asia
## 1941  2023-05-10  4.126597e+00           NA      Europe & Central Asia
## 1942  2023-05-10  5.358218e+00           NA      Europe & Central Asia
## 1943  2023-05-10  4.627742e+00           NA      Europe & Central Asia
## 1944  2023-05-10  1.961119e+00           NA      Europe & Central Asia
## 1945  2023-05-10  3.025797e+00           NA      Europe & Central Asia
## 1946  2023-05-10  2.083074e+00           NA      Europe & Central Asia
## 1947  2023-05-10  5.612850e+00           NA      Europe & Central Asia
## 1948  2023-05-10  2.796781e+00           NA      Europe & Central Asia
## 1949  2023-05-10  1.216834e+01           NA      Europe & Central Asia
## 1950  2023-05-10  6.317819e+00           NA      Europe & Central Asia
## 1951  2023-05-10  1.914991e+00           NA      Europe & Central Asia
## 1952  2023-05-10  2.168990e+00           NA      Europe & Central Asia
## 1953  2023-05-10  4.797457e+00           NA      Europe & Central Asia
## 1954  2023-05-10  1.288972e+01           NA      Europe & Central Asia
## 1955  2023-05-10  6.806986e+00           NA      Europe & Central Asia
## 1956  2023-05-10  1.850089e+00           NA      Europe & Central Asia
## 1957  2023-05-10  7.478060e+00           NA      Europe & Central Asia
## 1958  2023-05-10  4.505241e+00           NA      Europe & Central Asia
## 1959  2023-05-10  3.993232e+00           NA      Europe & Central Asia
## 1960  2023-05-10  2.876624e+00           NA      Europe & Central Asia
## 1961  2023-05-10  5.139197e+00           NA      Europe & Central Asia
## 1962  2023-05-10  3.424525e+00           NA      Europe & Central Asia
## 1963  2023-05-10  1.684111e+00           NA      Europe & Central Asia
## 1964  2023-05-10  2.812404e+00           NA      Europe & Central Asia
## 1965  2020-07-27            NA 6.249454e+01                       <NA>
## 1966  2020-07-27            NA 6.322191e+01                       <NA>
## 1967  2020-07-27            NA 6.518189e+01                       <NA>
## 1968  2020-07-27            NA 6.743136e+01                       <NA>
## 1969  2020-07-27            NA 6.959526e+01                       <NA>
## 1970  2020-07-27            NA 7.128760e+01                       <NA>
## 1971  2020-07-27            NA 7.325031e+01                       <NA>
## 1972  2020-07-27            NA 7.499181e+01                       <NA>
## 1973  2020-07-27            NA 7.609333e+01                       <NA>
## 1974  2020-07-27            NA 7.766277e+01                       <NA>
## 1975  2020-07-27            NA 7.892724e+01                       <NA>
## 1976  2020-07-27            NA 7.967646e+01                       <NA>
## 1977  2020-07-27            NA 8.056951e+01                       <NA>
## 1978  2020-07-27            NA 8.261962e+01                       <NA>
## 1979  2020-07-27            NA 8.465971e+01                       <NA>
## 1980  2020-07-27            NA 8.605255e+01                       <NA>
## 1981  2020-07-27            NA 8.741989e+01                       <NA>
## 1982  2020-07-27            NA 8.925333e+01                       <NA>
## 1983  2020-07-27            NA 9.173585e+01                       <NA>
## 1984  2020-07-27            NA 9.337903e+01                       <NA>
## 1985  2020-07-27            NA 9.508139e+01                       <NA>
## 1986  2020-07-27            NA 9.935001e+01                       <NA>
## 1987  2020-07-27            NA 9.929721e+01                       <NA>
## 1988  2020-07-27            NA 1.014711e+02                       <NA>
## 1989  2020-07-27            NA 1.050552e+02                       <NA>
## 1990  2020-07-27            NA 1.080384e+02                       <NA>
## 1991  2020-07-27            NA 1.092410e+02                       <NA>
## 1992  2020-07-27            NA 1.096124e+02                       <NA>
## 1993  2020-07-27            NA 1.102278e+02                       <NA>
## 1994  2020-07-27            NA 1.124035e+02                       <NA>
## 1995  2020-07-27            NA 1.147932e+02                       <NA>
## 1996  2020-07-27            NA 1.171501e+02                       <NA>
## 1997  2020-07-27            NA 1.188333e+02                       <NA>
## 1998  2020-07-27            NA 1.196981e+02                       <NA>
## 1999  2020-07-27            NA           NA                       <NA>
## 2000  2020-07-27            NA           NA                       <NA>
## 2001  2020-07-27            NA           NA                       <NA>
## 2002  2020-07-27            NA 6.575227e+01                       <NA>
## 2003  2020-07-27            NA 6.706777e+01                       <NA>
## 2004  2020-07-27            NA 6.868058e+01                       <NA>
## 2005  2020-07-27            NA 6.969875e+01                       <NA>
## 2006  2020-07-27            NA 7.150230e+01                       <NA>
## 2007  2020-07-27            NA 7.356951e+01                       <NA>
## 2008  2020-07-27            NA 7.822843e+01                       <NA>
## 2009  2020-07-27            NA 7.908953e+01                       <NA>
## 2010  2020-07-27            NA 7.837989e+01                       <NA>
## 2011  2020-07-27            NA 7.745709e+01                       <NA>
## 2012  2020-07-27            NA 7.793111e+01                       <NA>
## 2013  2020-07-27            NA 7.883709e+01                       <NA>
## 2014  2020-07-27            NA 8.058734e+01                       <NA>
## 2015  2020-07-27            NA 8.268260e+01                       <NA>
## 2016  2020-07-27            NA 8.520700e+01                       <NA>
## 2017  2020-07-27            NA 8.834848e+01                       <NA>
## 2018  2020-07-27            NA 9.208179e+01                       <NA>
## 2019  2020-07-27            NA 9.420229e+01                       <NA>
## 2020  2020-07-27            NA 1.001402e+02                       <NA>
## 2021  2020-07-27            NA 9.915853e+01                       <NA>
## 2022  2020-07-27            NA 1.000421e+02                       <NA>
## 2023  2020-07-27            NA 1.016100e+02                       <NA>
## 2024  2020-07-27            NA 1.029704e+02                       <NA>
## 2025  2020-07-27            NA 1.034837e+02                       <NA>
## 2026  2020-07-27            NA 1.047290e+02                       <NA>
## 2027  2020-07-27            NA 1.038371e+02                       <NA>
## 2028  2020-07-27            NA 1.045103e+02                       <NA>
## 2029  2020-07-27            NA 1.057304e+02                       <NA>
## 2030  2020-07-27            NA 1.059912e+02                       <NA>
## 2031  2020-07-27            NA 1.061848e+02                       <NA>
## 2032  2020-07-27            NA 1.062874e+02                       <NA>
## 2033  2023-05-10            NA           NA  Latin America & Caribbean
## 2034  2023-05-10  3.872373e+00           NA  Latin America & Caribbean
## 2035  2023-05-10 -7.906810e-01           NA  Latin America & Caribbean
## 2036  2023-05-10 -1.125309e-01           NA  Latin America & Caribbean
## 2037  2023-05-10  1.320609e+00           NA  Latin America & Caribbean
## 2038  2023-05-10  1.288216e+00           NA  Latin America & Caribbean
## 2039  2023-05-10  1.356965e+00           NA  Latin America & Caribbean
## 2040  2023-05-10 -3.713359e+00           NA  Latin America & Caribbean
## 2041  2023-05-10  2.311516e+00           NA  Latin America & Caribbean
## 2042  2023-05-10  8.618085e-01           NA  Latin America & Caribbean
## 2043  2023-05-10  1.157484e+00           NA  Latin America & Caribbean
## 2044  2023-05-10  5.417275e+00           NA  Latin America & Caribbean
## 2045  2023-05-10  3.955286e+00           NA  Latin America & Caribbean
## 2046  2023-05-10 -6.029527e-01           NA  Latin America & Caribbean
## 2047  2023-05-10 -1.588842e+00           NA  Latin America & Caribbean
## 2048  2023-05-10  1.763027e+00           NA  Latin America & Caribbean
## 2049  2023-05-10  2.962754e+00           NA  Latin America & Caribbean
## 2050  2023-05-10 -2.090745e+00           NA  Latin America & Caribbean
## 2051  2023-05-10  1.687729e+01           NA  Latin America & Caribbean
## 2052  2023-05-10  7.036718e-01           NA  Latin America & Caribbean
## 2053  2023-05-10  2.973815e+00           NA  Latin America & Caribbean
## 2054  2023-05-10  2.262443e-02           NA  Latin America & Caribbean
## 2055  2023-05-10  2.167770e+00           NA  Latin America & Caribbean
## 2056  2023-05-10  9.376593e-01           NA  Latin America & Caribbean
## 2057  2023-05-10  2.056006e+00           NA  Latin America & Caribbean
## 2058  2023-05-10  2.136171e+00           NA  Latin America & Caribbean
## 2059  2023-05-10 -1.235235e+00           NA  Latin America & Caribbean
## 2060  2023-05-10  3.519159e+00           NA  Latin America & Caribbean
## 2061  2023-05-10  5.610614e+00           NA  Latin America & Caribbean
## 2062  2023-05-10  1.633408e-01           NA  Latin America & Caribbean
## 2063  2023-05-10  2.171062e+01           NA  Latin America & Caribbean
## 2064  2023-05-10  1.467627e+01           NA  Latin America & Caribbean
## 2065  2023-05-10 -2.363413e+00           NA  Latin America & Caribbean
## 2066  2023-05-10  2.026358e+00           NA  Latin America & Caribbean
## 2067  2023-05-10            NA           NA  Latin America & Caribbean
## 2068  2023-05-10  3.726336e+00           NA  Latin America & Caribbean
## 2069  2023-05-10  1.679358e+00           NA  Latin America & Caribbean
## 2070  2023-05-10  3.122444e+00           NA  Latin America & Caribbean
## 2071  2023-05-10  4.769822e+00           NA  Latin America & Caribbean
## 2072  2023-05-10  1.207194e+00           NA  Latin America & Caribbean
## 2073  2023-05-10  4.202361e+00           NA  Latin America & Caribbean
## 2074  2023-05-10 -1.805037e+00           NA  Latin America & Caribbean
## 2075  2023-05-10  2.159322e-01           NA  Latin America & Caribbean
## 2076  2023-05-10  5.773934e+00           NA  Latin America & Caribbean
## 2077  2023-05-10  5.063904e+00           NA  Latin America & Caribbean
## 2078  2023-05-10  7.369642e+00           NA  Latin America & Caribbean
## 2079  2023-05-10  2.527370e+00           NA  Latin America & Caribbean
## 2080  2023-05-10  2.045386e+00           NA  Latin America & Caribbean
## 2081  2023-05-10  3.433744e+00           NA  Latin America & Caribbean
## 2082  2023-05-10  9.581537e+00           NA  Latin America & Caribbean
## 2083  2023-05-10  7.740755e+00           NA  Latin America & Caribbean
## 2084  2023-05-10  2.919107e+00           NA  Latin America & Caribbean
## 2085  2023-05-10  3.357632e+01           NA  Latin America & Caribbean
## 2086  2023-05-10  2.242495e+00           NA  Latin America & Caribbean
## 2087  2023-05-10  1.933772e+00           NA  Latin America & Caribbean
## 2088  2023-05-10  7.349182e+00           NA  Latin America & Caribbean
## 2089  2023-05-10 -6.979994e+00           NA  Latin America & Caribbean
## 2090  2023-05-10 -2.044402e+00           NA  Latin America & Caribbean
## 2091  2023-05-10  9.439080e+00           NA  Latin America & Caribbean
## 2092  2023-05-10  3.337017e+00           NA  Latin America & Caribbean
## 2093  2023-05-10  3.585434e+00           NA  Latin America & Caribbean
## 2094  2023-05-10 -2.193474e+00           NA  Latin America & Caribbean
## 2095  2023-05-10  1.494878e+01           NA  Latin America & Caribbean
## 2096  2020-07-27            NA           NA                       <NA>
## 2097  2020-07-27            NA           NA                       <NA>
## 2098  2020-07-27            NA           NA                       <NA>
## 2099  2020-07-27            NA           NA                       <NA>
## 2100  2020-07-27            NA 3.890282e+01                       <NA>
## 2101  2020-07-27            NA 4.042889e+01                       <NA>
## 2102  2020-07-27            NA 4.060425e+01                       <NA>
## 2103  2020-07-27            NA 5.625154e+01                       <NA>
## 2104  2020-07-27            NA 6.438777e+01                       <NA>
## 2105  2020-07-27            NA 6.754985e+01                       <NA>
## 2106  2020-07-27            NA 6.989250e+01                       <NA>
## 2107  2020-07-27            NA 7.391314e+01                       <NA>
## 2108  2020-07-27            NA 7.415507e+01                       <NA>
## 2109  2020-07-27            NA 7.724238e+01                       <NA>
## 2110  2020-07-27            NA 8.032028e+01                       <NA>
## 2111  2020-07-27            NA 8.231709e+01                       <NA>
## 2112  2020-07-27            NA 8.354523e+01                       <NA>
## 2113  2020-07-27            NA 8.427505e+01                       <NA>
## 2114  2020-07-27            NA 8.879494e+01                       <NA>
## 2115  2020-07-27            NA 9.215642e+01                       <NA>
## 2116  2020-07-27            NA 9.335217e+01                       <NA>
## 2117  2020-07-27            NA 9.857411e+01                       <NA>
## 2118  2020-07-27            NA 9.945680e+01                       <NA>
## 2119  2020-07-27            NA 1.018023e+02                       <NA>
## 2120  2020-07-27            NA 1.047566e+02                       <NA>
## 2121  2020-07-27            NA 1.116221e+02                       <NA>
## 2122  2020-07-27            NA 1.127276e+02                       <NA>
## 2123  2020-07-27            NA 1.114734e+02                       <NA>
## 2124  2020-07-27            NA 1.117800e+02                       <NA>
## 2125  2020-07-27            NA 1.108510e+02                       <NA>
## 2126  2020-07-27            NA 1.109996e+02                       <NA>
## 2127  2020-07-27            NA 1.136659e+02                       <NA>
## 2128  2020-07-27            NA 1.127276e+02                       <NA>
## 2129  2020-07-27            NA 1.158305e+02                       <NA>
## 2130  2023-05-10  4.822740e+00           NA         Sub-Saharan Africa
## 2131  2023-05-10  2.176597e+00           NA         Sub-Saharan Africa
## 2132  2023-05-10  2.094317e+00           NA         Sub-Saharan Africa
## 2133  2023-05-10  3.028460e+00           NA         Sub-Saharan Africa
## 2134  2023-05-10  1.509945e+01           NA         Sub-Saharan Africa
## 2135  2023-05-10  1.492071e+01           NA         Sub-Saharan Africa
## 2136  2023-05-10  1.041436e+00           NA         Sub-Saharan Africa
## 2137  2023-05-10  1.573284e+00           NA         Sub-Saharan Africa
## 2138  2023-05-10  3.273525e+00           NA         Sub-Saharan Africa
## 2139  2023-05-10 -3.604173e+00           NA         Sub-Saharan Africa
## 2140  2023-05-10  7.698908e+00           NA         Sub-Saharan Africa
## 2141  2023-05-10  1.397298e+00           NA         Sub-Saharan Africa
## 2142  2023-05-10  5.176887e+00           NA         Sub-Saharan Africa
## 2143  2023-05-10  2.539692e+00           NA         Sub-Saharan Africa
## 2144  2023-05-10  5.317226e+00           NA         Sub-Saharan Africa
## 2145  2023-05-10 -6.105069e-01           NA         Sub-Saharan Africa
## 2146  2023-05-10  4.293664e+00           NA         Sub-Saharan Africa
## 2147  2023-05-10  3.061704e+00           NA         Sub-Saharan Africa
## 2148  2023-05-10  2.057620e+00           NA         Sub-Saharan Africa
## 2149  2023-05-10  3.901532e-01           NA         Sub-Saharan Africa
## 2150  2023-05-10  1.424694e+01           NA         Sub-Saharan Africa
## 2151  2023-05-10  2.549041e+00           NA         Sub-Saharan Africa
## 2152  2023-05-10 -2.477827e-01           NA         Sub-Saharan Africa
## 2153  2023-05-10  6.434152e+00           NA         Sub-Saharan Africa
## 2154  2023-05-10  8.808857e-01           NA         Sub-Saharan Africa
## 2155  2023-05-10            NA           NA         Sub-Saharan Africa
## 2156  2023-05-10 -3.975545e-01           NA         Sub-Saharan Africa
## 2157  2023-05-10  3.503011e+01           NA         Sub-Saharan Africa
## 2158  2023-05-10            NA           NA         Sub-Saharan Africa
## 2159  2023-05-10  6.907294e+00           NA         Sub-Saharan Africa
## 2160  2023-05-10  1.410724e-01           NA         Sub-Saharan Africa
## 2161  2023-05-10  1.403543e+01           NA         Sub-Saharan Africa
## 2162  2023-05-10  3.733083e+00           NA         Sub-Saharan Africa
## 2163  2023-05-10  5.047047e+00           NA         Sub-Saharan Africa
## 2164  2023-05-10  6.835911e-01           NA         Sub-Saharan Africa
## 2165  2023-05-10 -3.678916e-01           NA         Sub-Saharan Africa
## 2166  2023-05-10  6.704421e-01           NA         Sub-Saharan Africa
## 2167  2023-05-10  8.515043e-01           NA         Sub-Saharan Africa
## 2168  2023-05-10  3.025134e+00           NA         Sub-Saharan Africa
## 2169  2023-05-10  1.136666e+00           NA         Sub-Saharan Africa
## 2170  2023-05-10  3.780561e+00           NA         Sub-Saharan Africa
## 2171  2023-05-10 -4.876982e+00           NA         Sub-Saharan Africa
## 2172  2023-05-10  3.454196e+00           NA         Sub-Saharan Africa
## 2173  2023-05-10 -1.513168e+00           NA         Sub-Saharan Africa
## 2174  2023-05-10  4.834254e+01           NA         Sub-Saharan Africa
## 2175  2023-05-10 -3.636720e-01           NA         Sub-Saharan Africa
## 2176  2023-05-10  2.878299e+00           NA         Sub-Saharan Africa
## 2177  2023-05-10  7.697110e-01           NA         Sub-Saharan Africa
## 2178  2023-05-10  1.953581e+00           NA         Sub-Saharan Africa
## 2179  2023-05-10  5.231605e+00           NA         Sub-Saharan Africa
## 2180  2023-05-10  3.667509e+00           NA         Sub-Saharan Africa
## 2181  2023-05-10  1.233446e+01           NA         Sub-Saharan Africa
## 2182  2023-05-10  7.566202e-01           NA         Sub-Saharan Africa
## 2183  2023-05-10  2.224934e+00           NA         Sub-Saharan Africa
## 2184  2023-05-10  1.614828e+01           NA         Sub-Saharan Africa
## 2185  2023-05-10  1.970286e+00           NA         Sub-Saharan Africa
## 2186  2023-05-10  4.746210e+00           NA         Sub-Saharan Africa
## 2187  2023-05-10  1.300469e+01           NA         Sub-Saharan Africa
## 2188  2023-05-10  4.341056e+00           NA         Sub-Saharan Africa
## 2189  2023-05-10  3.554213e+00           NA         Sub-Saharan Africa
## 2190  2023-05-10  1.018782e+01           NA         Sub-Saharan Africa
## 2191  2023-05-10  2.378322e+00           NA         Sub-Saharan Africa
## 2192  2023-05-10  7.468948e+00           NA         Sub-Saharan Africa
## 2193  2023-05-10 -9.483374e-02           NA              North America
## 2194  2023-05-10  4.373204e+00           NA              North America
## 2195  2023-05-10  5.636713e+00           NA              North America
## 2196  2023-05-10  2.952020e+00           NA              North America
## 2197  2023-05-10  1.657273e+00           NA              North America
## 2198  2023-05-10  1.281221e+01           NA              North America
## 2199  2023-05-10  9.854087e+00           NA              North America
## 2200  2023-05-10  7.614088e+00           NA              North America
## 2201  2023-05-10  4.893014e+00           NA              North America
## 2202  2023-05-10  1.029655e+01           NA              North America
## 2203  2023-05-10  1.099738e+01           NA              North America
## 2204  2023-05-10  4.918710e+00           NA              North America
## 2205  2023-05-10  6.415363e+00           NA              North America
## 2206  2023-05-10  1.498395e+01           NA              North America
## 2207  2023-05-10  5.835137e+00           NA              North America
## 2208  2023-05-10 -4.150579e-01           NA              North America
## 2209  2023-05-10  6.430591e+00           NA              North America
## 2210  2023-05-10  2.419352e+00           NA              North America
## 2211  2023-05-10  5.108914e+00           NA              North America
## 2212  2023-05-10  9.269101e+00           NA              North America
## 2213  2023-05-10  2.608611e+00           NA              North America
## 2214  2023-05-10  9.546212e+00           NA              North America
## 2215  2023-05-10  3.011891e+00           NA              North America
## 2216  2023-05-10            NA           NA              North America
## 2217  2023-05-10  1.770939e+01           NA              North America
## 2218  2023-05-10  2.783649e+00           NA              North America
## 2219  2023-05-10  1.611117e+00           NA              North America
## 2220  2023-05-10  9.525771e+00           NA              North America
## 2221  2023-05-10 -1.151256e+00           NA              North America
## 2222  2023-05-10  8.580442e+00           NA              North America
## 2223  2023-05-10  1.959568e+00           NA              North America
## 2224  2023-05-10  6.357027e+00           NA              North America
## 2225  2023-05-10  3.480336e+00           NA              North America
## 2226  2023-05-10  9.390365e-01           NA              North America
## 2227  2023-05-10  3.666945e-01           NA              North America
## 2228  2023-05-10  6.033572e+00           NA              North America
## 2229  2023-05-10  1.043583e+00           NA              North America
## 2230  2023-05-10  6.281063e+00           NA              North America
## 2231  2023-05-10  2.236222e+00           NA              North America
## 2232  2023-05-10  6.698204e+00           NA              North America
## 2233  2023-05-10  6.488154e+00           NA              North America
## 2234  2023-05-10  1.220859e+01           NA              North America
## 2235  2023-05-10  6.762375e+00           NA              North America
## 2236  2023-05-10 -4.236356e+00           NA              North America
## 2237  2023-05-10  8.981615e+00           NA              North America
## 2238  2023-05-10  1.461123e+00           NA              North America
## 2239  2023-05-10  1.270801e+00           NA              North America
## 2240  2023-05-10  9.765445e-01           NA              North America
## 2241  2023-05-10  4.023903e+00           NA              North America
## 2242  2023-05-10  5.196305e+00           NA              North America
## 2243  2023-05-10  1.957916e+01           NA              North America
## 2244  2023-05-10  4.692143e+00           NA              North America
## 2245  2023-05-10  4.610530e-01           NA              North America
## 2246  2023-05-10 -1.369196e+00           NA              North America
## 2247  2023-05-10  2.712151e+00           NA              North America
## 2248  2023-05-10  2.936470e+01           NA              North America
## 2249  2023-05-10  2.813881e+00           NA              North America
## 2250  2023-05-10  2.824740e+00           NA              North America
## 2251  2023-05-10  4.178464e+00           NA              North America
## 2252  2023-05-10            NA           NA              North America
## 2253  2023-05-10  6.269519e+00           NA              North America
## 2254  2023-05-10  2.741551e+00           NA              North America
## 2255  2023-05-10  6.574895e+00           NA              North America
## 2256  2020-07-27            NA           NA                       <NA>
## 2257  2020-07-27            NA           NA                       <NA>
## 2258  2020-07-27            NA           NA                       <NA>
## 2259  2020-07-27            NA           NA                       <NA>
## 2260  2020-07-27            NA           NA                       <NA>
## 2261  2020-07-27            NA           NA                       <NA>
## 2262  2020-07-27            NA           NA                       <NA>
## 2263  2020-07-27            NA           NA                       <NA>
## 2264  2020-07-27            NA           NA                       <NA>
## 2265  2020-07-27            NA           NA                       <NA>
## 2266  2020-07-27            NA           NA                       <NA>
## 2267  2020-07-27            NA           NA                       <NA>
## 2268  2020-07-27            NA           NA                       <NA>
## 2269  2020-07-27            NA           NA                       <NA>
## 2270  2020-07-27            NA           NA                       <NA>
## 2271  2020-07-27            NA           NA                       <NA>
## 2272  2020-07-27            NA           NA                       <NA>
## 2273  2020-07-27            NA           NA                       <NA>
## 2274  2020-07-27            NA           NA                       <NA>
## 2275  2020-07-27            NA           NA                       <NA>
## 2276  2020-07-27            NA           NA                       <NA>
## 2277  2020-07-27            NA           NA                       <NA>
## 2278  2020-07-27            NA           NA                       <NA>
## 2279  2020-07-27            NA           NA                       <NA>
## 2280  2020-07-27            NA           NA                       <NA>
## 2281  2020-07-27            NA           NA                       <NA>
## 2282  2020-07-27            NA           NA                       <NA>
## 2283  2020-07-27            NA           NA                       <NA>
## 2284  2020-07-27            NA           NA                       <NA>
## 2285  2020-07-27            NA           NA                       <NA>
## 2286  2020-07-27            NA           NA                       <NA>
## 2287  2020-07-27            NA           NA                       <NA>
## 2288  2020-07-27            NA           NA                       <NA>
## 2289  2020-07-27            NA           NA                       <NA>
## 2290  2023-05-10  2.953441e+00           NA                 South Asia
## 2291  2023-05-10  5.104921e+00           NA                 South Asia
## 2292  2023-05-10            NA           NA                 South Asia
## 2293  2023-05-10  7.223305e+00           NA                 South Asia
## 2294  2023-05-10  1.759331e+00           NA                 South Asia
## 2295  2023-05-10  7.350196e+00           NA                 South Asia
## 2296  2023-05-10  4.755220e+00           NA                 South Asia
## 2297  2023-05-10  8.990539e-01           NA                 South Asia
## 2298  2023-05-10  3.557068e+00           NA                 South Asia
## 2299  2023-05-10  3.066148e+00           NA                 South Asia
## 2300  2023-05-10  4.383411e+00           NA                 South Asia
## 2301  2023-05-10  5.869843e+00           NA                 South Asia
## 2302  2023-05-10  9.179930e+00           NA                 South Asia
## 2303  2023-05-10  8.923289e+00           NA                 South Asia
## 2304  2023-05-10            NA           NA                 South Asia
## 2305  2023-05-10            NA           NA                 South Asia
## 2306  2023-05-10  5.607915e+00           NA                 South Asia
## 2307  2023-05-10  5.358776e+00           NA                 South Asia
## 2308  2023-05-10  8.510299e+00           NA                 South Asia
## 2309  2023-05-10  6.920961e+00           NA                 South Asia
## 2310  2023-05-10  4.756286e+00           NA                 South Asia
## 2311  2023-05-10  4.703274e+00           NA                 South Asia
## 2312  2023-05-10  3.704945e+00           NA                 South Asia
## 2313  2023-05-10  1.016369e+01           NA                 South Asia
## 2314  2023-05-10  7.287149e+00           NA                 South Asia
## 2315  2023-05-10  5.510470e+00           NA                 South Asia
## 2316  2023-05-10            NA           NA                 South Asia
## 2317  2023-05-10  5.854311e+00           NA                 South Asia
## 2318  2023-05-10            NA           NA                 South Asia
## 2319  2023-05-10            NA           NA                 South Asia
## 2320  2023-05-10  5.419861e+00           NA                 South Asia
## 2321  2023-05-10  5.902775e+00           NA                 South Asia
## 2322  2023-05-10            NA           NA                 South Asia
## 2323  2023-05-10            NA           NA                 South Asia
## 2324  2023-05-10            NA           NA                 South Asia
## 2325  2023-05-10            NA           NA                 South Asia
## 2326  2023-05-10  1.496487e+01           NA                 South Asia
## 2327  2023-05-10  1.290687e+01           NA                 South Asia
## 2328  2023-05-10  6.205353e+00           NA                 South Asia
## 2329  2023-05-10  8.941284e+00           NA                 South Asia
## 2330  2023-05-10            NA           NA                 South Asia
## 2331  2023-05-10            NA           NA                 South Asia
## 2332  2023-05-10  3.462555e+00           NA                 South Asia
## 2333  2023-05-10            NA           NA                 South Asia
## 2334  2023-05-10            NA           NA                 South Asia
## 2335  2023-05-10  7.158359e+00           NA                 South Asia
## 2336  2023-05-10  6.170259e+00           NA                 South Asia
## 2337  2023-05-10  7.185438e+00           NA                 South Asia
## 2338  2023-05-10            NA           NA                 South Asia
## 2339  2023-05-10            NA           NA                 South Asia
## 2340  2023-05-10            NA           NA                 South Asia
## 2341  2023-05-10            NA           NA                 South Asia
## 2342  2023-05-10  1.069627e+01           NA                 South Asia
## 2343  2023-05-10  8.513451e+00           NA                 South Asia
## 2344  2023-05-10  8.284383e+00           NA                 South Asia
## 2345  2023-05-10  1.101173e+00           NA                 South Asia
## 2346  2023-05-10            NA           NA                 South Asia
## 2347  2023-05-10  1.234126e+01           NA                 South Asia
## 2348  2023-05-10            NA           NA                 South Asia
## 2349  2023-05-10            NA           NA                 South Asia
## 2350  2023-05-10  6.508615e+00           NA                 South Asia
## 2351  2023-05-10            NA           NA                 South Asia
## 2352  2023-05-10  8.112633e+00           NA                 South Asia
## 2353  2020-07-27            NA           NA                       <NA>
## 2354  2020-07-27            NA           NA                       <NA>
## 2355  2020-07-27            NA           NA                       <NA>
## 2356  2020-07-27            NA           NA                       <NA>
## 2357  2020-07-27            NA           NA                       <NA>
## 2358  2020-07-27            NA           NA                       <NA>
## 2359  2020-07-27            NA           NA                       <NA>
## 2360  2020-07-27            NA           NA                       <NA>
## 2361  2020-07-27            NA           NA                       <NA>
## 2362  2020-07-27            NA           NA                       <NA>
## 2363  2020-07-27            NA           NA                       <NA>
## 2364  2020-07-27            NA           NA                       <NA>
## 2365  2020-07-27            NA           NA                       <NA>
## 2366  2020-07-27            NA           NA                       <NA>
## 2367  2020-07-27            NA           NA                       <NA>
## 2368  2020-07-27            NA           NA                       <NA>
## 2369  2020-07-27            NA           NA                       <NA>
## 2370  2020-07-27            NA           NA                       <NA>
## 2371  2020-07-27            NA           NA                       <NA>
## 2372  2020-07-27            NA           NA                       <NA>
## 2373  2020-07-27            NA           NA                       <NA>
## 2374  2020-07-27            NA           NA                       <NA>
## 2375  2020-07-27            NA           NA                       <NA>
## 2376  2020-07-27            NA           NA                       <NA>
## 2377  2020-07-27            NA           NA                       <NA>
## 2378  2020-07-27            NA           NA                       <NA>
## 2379  2020-07-27            NA           NA                       <NA>
## 2380  2020-07-27            NA           NA                       <NA>
## 2381  2020-07-27            NA           NA                       <NA>
## 2382  2020-07-27            NA           NA                       <NA>
## 2383  2020-07-27            NA           NA                       <NA>
## 2384  2020-07-27            NA           NA                       <NA>
## 2385  2020-07-27            NA           NA                       <NA>
## 2386  2020-07-27            NA           NA                       <NA>
## 2387  2023-05-10  3.056266e+00           NA  Latin America & Caribbean
## 2388  2023-05-10  6.548173e+00           NA  Latin America & Caribbean
## 2389  2023-05-10  4.294451e+01           NA  Latin America & Caribbean
## 2390  2023-05-10  8.777508e+00           NA  Latin America & Caribbean
## 2391  2023-05-10  8.598921e+00           NA  Latin America & Caribbean
## 2392  2023-05-10 -2.419894e+00           NA  Latin America & Caribbean
## 2393  2023-05-10  7.100276e+00           NA  Latin America & Caribbean
## 2394  2023-05-10  6.154596e+01           NA  Latin America & Caribbean
## 2395  2023-05-10  2.651980e+02           NA  Latin America & Caribbean
## 2396  2023-05-10 -4.620602e+00           NA  Latin America & Caribbean
## 2397  2023-05-10  2.049498e+00           NA  Latin America & Caribbean
## 2398  2023-05-10  1.582827e+02           NA  Latin America & Caribbean
## 2399  2023-05-10  1.979717e+01           NA  Latin America & Caribbean
## 2400  2023-05-10  6.061400e+00           NA  Latin America & Caribbean
## 2401  2023-05-10  5.995388e+00           NA  Latin America & Caribbean
## 2402  2023-05-10  1.254062e+01           NA  Latin America & Caribbean
## 2403  2023-05-10  2.504894e+01           NA  Latin America & Caribbean
## 2404  2023-05-10  2.948604e+01           NA  Latin America & Caribbean
## 2405  2023-05-10 -6.930034e-01           NA  Latin America & Caribbean
## 2406  2023-05-10            NA           NA  Latin America & Caribbean
## 2407  2023-05-10  3.561471e+00           NA  Latin America & Caribbean
## 2408  2023-05-10  2.538632e+00           NA  Latin America & Caribbean
## 2409  2023-05-10  8.242147e-01           NA  Latin America & Caribbean
## 2410  2023-05-10  8.385943e+00           NA  Latin America & Caribbean
## 2411  2023-05-10  1.460235e+01           NA  Latin America & Caribbean
## 2412  2023-05-10  6.695278e+00           NA  Latin America & Caribbean
## 2413  2023-05-10            NA           NA  Latin America & Caribbean
## 2414  2023-05-10 -1.854387e+00           NA  Latin America & Caribbean
## 2415  2023-05-10  1.410381e+01           NA  Latin America & Caribbean
## 2416  2023-05-10  3.719008e+00           NA  Latin America & Caribbean
## 2417  2023-05-10  1.897775e+01           NA  Latin America & Caribbean
## 2418  2023-05-10  1.443397e+03           NA  Latin America & Caribbean
## 2419  2023-05-10  3.315876e+00           NA  Latin America & Caribbean
## 2420  2023-05-10  1.038118e+01           NA  Latin America & Caribbean
## 2421  2023-05-10  4.588484e+00           NA  Latin America & Caribbean
## 2422  2023-05-10  6.232459e+00           NA  Latin America & Caribbean
## 2423  2023-05-10  7.051127e+00           NA  Latin America & Caribbean
## 2424  2023-05-10  5.891025e+00           NA  Latin America & Caribbean
## 2425  2023-05-10  5.195405e+00           NA  Latin America & Caribbean
## 2426  2023-05-10  3.966970e+00           NA  Latin America & Caribbean
## 2427  2023-05-10  6.557158e+00           NA  Latin America & Caribbean
## 2428  2023-05-10  1.870094e+00           NA  Latin America & Caribbean
## 2429  2023-05-10  7.373354e+00           NA  Latin America & Caribbean
## 2430  2023-05-10  1.366368e+01           NA  Latin America & Caribbean
## 2431  2023-05-10  5.940798e+00           NA  Latin America & Caribbean
## 2432  2023-05-10  2.820757e+00           NA  Latin America & Caribbean
## 2433  2023-05-10  7.967710e+00           NA  Latin America & Caribbean
## 2434  2023-05-10  6.329992e+00           NA  Latin America & Caribbean
## 2435  2023-05-10  5.705043e+00           NA  Latin America & Caribbean
## 2436  2023-05-10  7.952208e+00           NA  Latin America & Caribbean
## 2437  2023-05-10 -1.354871e+00           NA  Latin America & Caribbean
## 2438  2023-05-10  2.411566e+00           NA  Latin America & Caribbean
## 2439  2023-05-10  1.142728e+01           NA  Latin America & Caribbean
## 2440  2023-05-10  1.458419e+01           NA  Latin America & Caribbean
## 2441  2023-05-10  1.768944e+01           NA  Latin America & Caribbean
## 2442  2023-05-10  1.319920e+01           NA  Latin America & Caribbean
## 2443  2023-05-10  1.158021e+01           NA  Latin America & Caribbean
## 2444  2023-05-10  1.752334e+01           NA  Latin America & Caribbean
## 2445  2023-05-10  1.233866e+04           NA  Latin America & Caribbean
## 2446  2023-05-10  3.960561e+00           NA  Latin America & Caribbean
## 2447  2023-05-10  1.626794e+01           NA  Latin America & Caribbean
## 2448  2023-05-10  2.301052e+02           NA  Latin America & Caribbean
## 2449  2023-05-10  1.318642e+01           NA  Latin America & Caribbean
## 2450  2020-07-27            NA 1.747054e+01                       <NA>
## 2451  2020-07-27            NA 2.026657e+01                       <NA>
## 2452  2020-07-27            NA 2.334118e+01                       <NA>
## 2453  2020-07-27            NA 2.733801e+01                       <NA>
## 2454  2020-07-27            NA 3.319931e+01                       <NA>
## 2455  2020-07-27            NA 3.720437e+01                       <NA>
## 2456  2020-07-27            NA 4.037642e+01                       <NA>
## 2457  2020-07-27            NA 4.355588e+01                       <NA>
## 2458  2020-07-27            NA 4.799515e+01                       <NA>
## 2459  2020-07-27            NA 5.396075e+01                       <NA>
## 2460  2020-07-27            NA 5.650179e+01                       <NA>
## 2461  2020-07-27            NA 6.083758e+01                       <NA>
## 2462  2020-07-27            NA 6.215229e+01                       <NA>
## 2463  2020-07-27            NA 6.501200e+01                       <NA>
## 2464  2020-07-27            NA 6.604949e+01                       <NA>
## 2465  2020-07-27            NA 6.665909e+01                       <NA>
## 2466  2020-07-27            NA 6.888422e+01                       <NA>
## 2467  2020-07-27            NA 7.194043e+01                       <NA>
## 2468  2020-07-27            NA 7.582364e+01                       <NA>
## 2469  2020-07-27            NA 7.759589e+01                       <NA>
## 2470  2020-07-27            NA 8.434955e+01                       <NA>
## 2471  2020-07-27            NA 9.616463e+01                       <NA>
## 2472  2020-07-27            NA 9.938169e+01                       <NA>
## 2473  2020-07-27            NA 1.018679e+02                       <NA>
## 2474  2020-07-27            NA 1.119361e+02                       <NA>
## 2475  2020-07-27            NA 1.169927e+02                       <NA>
## 2476  2020-07-27            NA 1.237042e+02                       <NA>
## 2477  2020-07-27            NA 1.308353e+02                       <NA>
## 2478  2020-07-27            NA 1.361485e+02                       <NA>
## 2479  2020-07-27            NA 1.410833e+02                       <NA>
## 2480  2020-07-27            NA 1.450653e+02                       <NA>
## 2481  2020-07-27            NA 1.483607e+02                       <NA>
## 2482  2020-07-27            NA 1.510894e+02                       <NA>
## 2483  2020-07-27            NA 1.521157e+02                       <NA>
## 2484  2023-05-10            NA           NA      Europe & Central Asia
## 2485  2023-05-10  4.726118e+00           NA      Europe & Central Asia
## 2486  2023-05-10  6.189016e+00           NA      Europe & Central Asia
## 2487  2023-05-10            NA           NA      Europe & Central Asia
## 2488  2023-05-10            NA           NA      Europe & Central Asia
## 2489  2023-05-10            NA           NA      Europe & Central Asia
## 2490  2023-05-10            NA           NA      Europe & Central Asia
## 2491  2023-05-10  2.161972e+00           NA      Europe & Central Asia
## 2492  2023-05-10            NA           NA      Europe & Central Asia
## 2493  2023-05-10            NA           NA      Europe & Central Asia
## 2494  2023-05-10            NA           NA      Europe & Central Asia
## 2495  2023-05-10            NA           NA      Europe & Central Asia
## 2496  2023-05-10            NA           NA      Europe & Central Asia
## 2497  2023-05-10  2.183624e+01           NA      Europe & Central Asia
## 2498  2023-05-10 -1.581925e+00           NA      Europe & Central Asia
## 2499  2023-05-10            NA           NA      Europe & Central Asia
## 2500  2023-05-10            NA           NA      Europe & Central Asia
## 2501  2023-05-10            NA           NA      Europe & Central Asia
## 2502  2023-05-10            NA           NA      Europe & Central Asia
## 2503  2023-05-10            NA           NA      Europe & Central Asia
## 2504  2023-05-10            NA           NA      Europe & Central Asia
## 2505  2023-05-10  8.847433e+00           NA      Europe & Central Asia
## 2506  2023-05-10            NA           NA      Europe & Central Asia
## 2507  2023-05-10  8.355729e+00           NA      Europe & Central Asia
## 2508  2023-05-10            NA           NA      Europe & Central Asia
## 2509  2023-05-10            NA           NA      Europe & Central Asia
## 2510  2023-05-10  1.410861e+00           NA      Europe & Central Asia
## 2511  2023-05-10            NA           NA      Europe & Central Asia
## 2512  2023-05-10            NA           NA      Europe & Central Asia
## 2513  2023-05-10            NA           NA      Europe & Central Asia
## 2514  2023-05-10            NA           NA      Europe & Central Asia
## 2515  2023-05-10            NA           NA      Europe & Central Asia
## 2516  2023-05-10 -1.705676e+01           NA      Europe & Central Asia
## 2517  2023-05-10            NA           NA      Europe & Central Asia
## 2518  2023-05-10            NA           NA      Europe & Central Asia
## 2519  2023-05-10  1.301148e+01           NA      Europe & Central Asia
## 2520  2023-05-10  1.760036e-01           NA      Europe & Central Asia
## 2521  2023-05-10            NA           NA      Europe & Central Asia
## 2522  2023-05-10            NA           NA      Europe & Central Asia
## 2523  2023-05-10  5.007866e+00           NA      Europe & Central Asia
## 2524  2023-05-10  7.957733e-01           NA      Europe & Central Asia
## 2525  2023-05-10            NA           NA      Europe & Central Asia
## 2526  2023-05-10            NA           NA      Europe & Central Asia
## 2527  2023-05-10            NA           NA      Europe & Central Asia
## 2528  2023-05-10  7.800127e+00           NA      Europe & Central Asia
## 2529  2023-05-10  1.406294e+00           NA      Europe & Central Asia
## 2530  2023-05-10            NA           NA      Europe & Central Asia
## 2531  2023-05-10  2.432528e+00           NA      Europe & Central Asia
## 2532  2023-05-10            NA           NA      Europe & Central Asia
## 2533  2023-05-10            NA           NA      Europe & Central Asia
## 2534  2023-05-10  4.878606e+00           NA      Europe & Central Asia
## 2535  2023-05-10            NA           NA      Europe & Central Asia
## 2536  2023-05-10  1.696362e+00           NA      Europe & Central Asia
## 2537  2023-05-10  1.365731e+00           NA      Europe & Central Asia
## 2538  2023-05-10  2.747630e+00           NA      Europe & Central Asia
## 2539  2023-05-10  1.000337e+00           NA      Europe & Central Asia
## 2540  2023-05-10  1.854665e-01           NA      Europe & Central Asia
## 2541  2023-05-10  7.335351e+00           NA      Europe & Central Asia
## 2542  2023-05-10  1.406962e+00           NA      Europe & Central Asia
## 2543  2023-05-10            NA           NA      Europe & Central Asia
## 2544  2023-05-10 -2.241220e-01           NA      Europe & Central Asia
## 2545  2023-05-10  6.197569e+00           NA      Europe & Central Asia
## 2546  2023-05-10  2.631140e+00           NA      Europe & Central Asia
## 2547  2020-07-27            NA           NA                       <NA>
## 2548  2020-07-27            NA           NA                       <NA>
## 2549  2020-07-27            NA           NA                       <NA>
## 2550  2020-07-27            NA           NA                       <NA>
## 2551  2020-07-27            NA           NA                       <NA>
## 2552  2020-07-27            NA           NA                       <NA>
## 2553  2020-07-27            NA           NA                       <NA>
## 2554  2020-07-27            NA           NA                       <NA>
## 2555  2020-07-27            NA           NA                       <NA>
## 2556  2020-07-27            NA           NA                       <NA>
## 2557  2020-07-27            NA           NA                       <NA>
## 2558  2020-07-27            NA           NA                       <NA>
## 2559  2020-07-27            NA           NA                       <NA>
## 2560  2020-07-27            NA           NA                       <NA>
## 2561  2020-07-27            NA           NA                       <NA>
## 2562  2020-07-27            NA           NA                       <NA>
## 2563  2020-07-27            NA           NA                       <NA>
## 2564  2020-07-27            NA           NA                       <NA>
## 2565  2020-07-27            NA 8.464546e+01                       <NA>
## 2566  2020-07-27            NA 8.975495e+01                       <NA>
## 2567  2020-07-27            NA 9.116267e+01                       <NA>
## 2568  2020-07-27            NA 9.820994e+01                       <NA>
## 2569  2020-07-27            NA 9.799270e+01                       <NA>
## 2570  2020-07-27            NA 1.001130e+02                       <NA>
## 2571  2020-07-27            NA 1.042318e+02                       <NA>
## 2572  2020-07-27            NA 1.065954e+02                       <NA>
## 2573  2020-07-27            NA 1.065954e+02                       <NA>
## 2574  2020-07-27            NA 1.055092e+02                       <NA>
## 2575  2020-07-27            NA 1.042666e+02                       <NA>
## 2576  2020-07-27            NA 1.026330e+02                       <NA>
## 2577  2020-07-27            NA 1.034585e+02                       <NA>
## 2578  2020-07-27            NA 1.049357e+02                       <NA>
## 2579  2020-07-27            NA 1.055092e+02                       <NA>
## 2580  2020-07-27            NA 1.053597e+02                       <NA>
## 2581  2023-05-10  6.639281e+00           NA         Sub-Saharan Africa
## 2582  2023-05-10  7.581551e+00           NA         Sub-Saharan Africa
## 2583  2023-05-10  1.542699e+01           NA         Sub-Saharan Africa
## 2584  2023-05-10  5.788742e+00           NA         Sub-Saharan Africa
## 2585  2023-05-10  7.155295e+00           NA         Sub-Saharan Africa
## 2586  2023-05-10  5.978593e+00           NA         Sub-Saharan Africa
## 2587  2023-05-10  1.584355e+00           NA         Sub-Saharan Africa
## 2588  2023-05-10  1.269407e+01           NA         Sub-Saharan Africa
## 2589  2023-05-10  1.532121e+00           NA         Sub-Saharan Africa
## 2590  2023-05-10  7.683061e+00           NA         Sub-Saharan Africa
## 2591  2023-05-10  5.177710e+00           NA         Sub-Saharan Africa
## 2592  2023-05-10  4.990608e+00           NA         Sub-Saharan Africa
## 2593  2023-05-10  8.745485e+00           NA         Sub-Saharan Africa
## 2594  2023-05-10  3.729943e+00           NA         Sub-Saharan Africa
## 2595  2023-05-10  1.423521e+01           NA         Sub-Saharan Africa
## 2596  2023-05-10  2.269706e+01           NA         Sub-Saharan Africa
## 2597  2023-05-10  1.406125e+01           NA         Sub-Saharan Africa
## 2598  2023-05-10  3.846276e+00           NA         Sub-Saharan Africa
## 2599  2023-05-10  1.611220e+01           NA         Sub-Saharan Africa
## 2600  2023-05-10  5.552548e-02           NA         Sub-Saharan Africa
## 2601  2023-05-10  6.300018e+00           NA         Sub-Saharan Africa
## 2602  2023-05-10  1.417097e+01           NA         Sub-Saharan Africa
## 2603  2023-05-10  3.011842e+00           NA         Sub-Saharan Africa
## 2604  2023-05-10  3.695418e+00           NA         Sub-Saharan Africa
## 2605  2023-05-10  1.510893e+01           NA         Sub-Saharan Africa
## 2606  2023-05-10  1.360735e+00           NA         Sub-Saharan Africa
## 2607  2023-05-10  9.601734e+00           NA         Sub-Saharan Africa
## 2608  2023-05-10  1.265332e+01           NA         Sub-Saharan Africa
## 2609  2023-05-10  2.547499e+00           NA         Sub-Saharan Africa
## 2610  2023-05-10  9.967271e+00           NA         Sub-Saharan Africa
## 2611  2023-05-10  9.372730e+00           NA         Sub-Saharan Africa
## 2612  2023-05-10  2.289366e+01           NA         Sub-Saharan Africa
## 2613  2023-05-10  1.547171e+01           NA         Sub-Saharan Africa
## 2614  2023-05-10  4.664180e+00           NA         Sub-Saharan Africa
## 2615  2023-05-10  1.933947e+00           NA         Sub-Saharan Africa
## 2616  2023-05-10  1.176827e+00           NA         Sub-Saharan Africa
## 2617  2023-05-10  1.364878e+01           NA         Sub-Saharan Africa
## 2618  2023-05-10            NA           NA         Sub-Saharan Africa
## 2619  2023-05-10  5.154398e+00           NA         Sub-Saharan Africa
## 2620  2023-05-10  3.273587e-01           NA         Sub-Saharan Africa
## 2621  2023-05-10  2.166149e+00           NA         Sub-Saharan Africa
## 2622  2023-05-10 -2.648697e+00           NA         Sub-Saharan Africa
## 2623  2023-05-10 -8.832284e-02           NA         Sub-Saharan Africa
## 2624  2023-05-10  1.007879e+01           NA         Sub-Saharan Africa
## 2625  2023-05-10  1.279692e+01           NA         Sub-Saharan Africa
## 2626  2023-05-10  1.190763e+01           NA         Sub-Saharan Africa
## 2627  2023-05-10  8.312825e+00           NA         Sub-Saharan Africa
## 2628  2023-05-10  1.131553e+01           NA         Sub-Saharan Africa
## 2629  2023-05-10  1.306470e+01           NA         Sub-Saharan Africa
## 2630  2023-05-10  9.463805e+00           NA         Sub-Saharan Africa
## 2631  2023-05-10  2.185636e+01           NA         Sub-Saharan Africa
## 2632  2023-05-10  1.187371e+00           NA         Sub-Saharan Africa
## 2633  2023-05-10  1.077542e+01           NA         Sub-Saharan Africa
## 2634  2023-05-10            NA           NA         Sub-Saharan Africa
## 2635  2023-05-10  4.937383e+00           NA         Sub-Saharan Africa
## 2636  2023-05-10  1.246681e+01           NA         Sub-Saharan Africa
## 2637  2023-05-10  9.906612e+00           NA         Sub-Saharan Africa
## 2638  2023-05-10  1.019028e+01           NA         Sub-Saharan Africa
## 2639  2023-05-10  3.259084e+00           NA         Sub-Saharan Africa
## 2640  2023-05-10  6.029198e+00           NA         Sub-Saharan Africa
## 2641  2023-05-10  1.646728e+01           NA         Sub-Saharan Africa
## 2642  2023-05-10  2.525641e+00           NA         Sub-Saharan Africa
## 2643  2023-05-10  4.351819e+00           NA         Sub-Saharan Africa
## 2644  2020-07-27            NA 1.257589e+01                       <NA>
## 2645  2020-07-27            NA 1.362607e+01                       <NA>
## 2646  2020-07-27            NA 1.520336e+01                       <NA>
## 2647  2020-07-27            NA 1.693564e+01                       <NA>
## 2648  2020-07-27            NA 1.892846e+01                       <NA>
## 2649  2020-07-27            NA 2.198841e+01                       <NA>
## 2650  2020-07-27            NA 2.513983e+01                       <NA>
## 2651  2020-07-27            NA 2.779047e+01                       <NA>
## 2652  2020-07-27            NA 3.071298e+01                       <NA>
## 2653  2020-07-27            NA 3.380870e+01                       <NA>
## 2654  2020-07-27            NA 3.675683e+01                       <NA>
## 2655  2020-07-27            NA 3.920563e+01                       <NA>
## 2656  2020-07-27            NA 4.224359e+01                       <NA>
## 2657  2020-07-27            NA 4.589744e+01                       <NA>
## 2658  2020-07-27            NA 4.888462e+01                       <NA>
## 2659  2020-07-27            NA 5.279487e+01                       <NA>
## 2660  2020-07-27            NA 5.764103e+01                       <NA>
## 2661  2020-07-27            NA 6.165385e+01                       <NA>
## 2662  2020-07-27            NA 6.700000e+01                       <NA>
## 2663  2020-07-27            NA 7.470513e+01                       <NA>
## 2664  2020-07-27            NA 8.000000e+01                       <NA>
## 2665  2020-07-27            NA 9.010256e+01                       <NA>
## 2666  2020-07-27            NA 9.738462e+01                       <NA>
## 2667  2020-07-27            NA 1.041538e+02                       <NA>
## 2668  2020-07-27            NA 1.129872e+02                       <NA>
## 2669  2020-07-27            NA 1.215000e+02                       <NA>
## 2670  2020-07-27            NA 1.286410e+02                       <NA>
## 2671  2020-07-27            NA 1.343205e+02                       <NA>
## 2672  2020-07-27            NA 1.384487e+02                       <NA>
## 2673  2020-07-27            NA 1.423462e+02                       <NA>
## 2674  2020-07-27            NA 1.470000e+02                       <NA>
## 2675  2020-07-27            NA 1.517564e+02                       <NA>
## 2676  2020-07-27            NA 1.559872e+02                       <NA>
## 2677  2020-07-27            NA 1.584359e+02                       <NA>
## 2678  2023-05-10  1.938459e+01           NA  Latin America & Caribbean
## 2679  2023-05-10  2.005178e+01           NA  Latin America & Caribbean
## 2680  2023-05-10  2.670672e+01           NA  Latin America & Caribbean
## 2681  2023-05-10  9.690130e+02           NA  Latin America & Caribbean
## 2682  2023-05-10  6.279515e+02           NA  Latin America & Caribbean
## 2683  2023-05-10  9.798112e+00           NA  Latin America & Caribbean
## 2684  2023-05-10  3.822761e+01           NA  Latin America & Caribbean
## 2685  2023-05-10  6.774274e+00           NA  Latin America & Caribbean
## 2686  2023-05-10  2.958036e+01           NA  Latin America & Caribbean
## 2687  2023-05-10  5.140222e+00           NA  Latin America & Caribbean
## 2688  2023-05-10  4.224259e+00           NA  Latin America & Caribbean
## 2689  2023-05-10  8.225094e+00           NA  Latin America & Caribbean
## 2690  2023-05-10  7.566175e+00           NA  Latin America & Caribbean
## 2691  2023-05-10  1.996150e+03           NA  Latin America & Caribbean
## 2692  2023-05-10  1.986709e+01           NA  Latin America & Caribbean
## 2693  2023-05-10  3.460585e+01           NA  Latin America & Caribbean
## 2694  2023-05-10  7.504565e+00           NA  Latin America & Caribbean
## 2695  2023-05-10  7.313483e+00           NA  Latin America & Caribbean
## 2696  2023-05-10  7.943127e+00           NA  Latin America & Caribbean
## 2697  2023-05-10  4.166781e+02           NA  Latin America & Caribbean
## 2698  2023-05-10  1.109637e+01           NA  Latin America & Caribbean
## 2699  2023-05-10  3.392944e+01           NA  Latin America & Caribbean
## 2700  2023-05-10  5.606065e+00           NA  Latin America & Caribbean
## 2701  2023-05-10            NA           NA  Latin America & Caribbean
## 2702  2023-05-10  3.793610e+01           NA  Latin America & Caribbean
## 2703  2023-05-10  1.304424e+03           NA  Latin America & Caribbean
## 2704  2023-05-10  8.953367e+01           NA  Latin America & Caribbean
## 2705  2023-05-10  8.423338e+00           NA  Latin America & Caribbean
## 2706  2023-05-10  9.214194e+01           NA  Latin America & Caribbean
## 2707  2023-05-10  8.318592e+00           NA  Latin America & Caribbean
## 2708  2023-05-10  4.924362e+00           NA  Latin America & Caribbean
## 2709  2023-05-10  8.010501e+00           NA  Latin America & Caribbean
## 2710  2023-05-10  2.240169e+03           NA  Latin America & Caribbean
## 2711  2023-05-10  2.062087e+02           NA  Latin America & Caribbean
## 2712  2023-05-10            NA           NA  Latin America & Caribbean
## 2713  2023-05-10  7.846710e+00           NA  Latin America & Caribbean
## 2714  2023-05-10  5.436596e+01           NA  Latin America & Caribbean
## 2715  2023-05-10  5.024945e+01           NA  Latin America & Caribbean
## 2716  2023-05-10  8.778553e+00           NA  Latin America & Caribbean
## 2717  2023-05-10  4.539806e+01           NA  Latin America & Caribbean
## 2718  2023-05-10  7.752061e+00           NA  Latin America & Caribbean
## 2719  2023-05-10  3.461780e+01           NA  Latin America & Caribbean
## 2720  2023-05-10  1.491793e+02           NA  Latin America & Caribbean
## 2721  2023-05-10  4.120362e+01           NA  Latin America & Caribbean
## 2722  2023-05-10  1.010344e+02           NA  Latin America & Caribbean
## 2723  2023-05-10  7.729023e+00           NA  Latin America & Caribbean
## 2724  2023-05-10  9.397804e+01           NA  Latin America & Caribbean
## 2725  2023-05-10  2.736971e+03           NA  Latin America & Caribbean
## 2726  2023-05-10  4.493534e+00           NA  Latin America & Caribbean
## 2727  2023-05-10  1.409102e+01           NA  Latin America & Caribbean
## 2728  2023-05-10  6.439038e+00           NA  Latin America & Caribbean
## 2729  2023-05-10  5.893318e+01           NA  Latin America & Caribbean
## 2730  2023-05-10  2.652894e+01           NA  Latin America & Caribbean
## 2731  2023-05-10  8.103604e+00           NA  Latin America & Caribbean
## 2732  2023-05-10  7.431225e+00           NA  Latin America & Caribbean
## 2733  2023-05-10  2.485437e+02           NA  Latin America & Caribbean
## 2734  2023-05-10  1.314840e+02           NA  Latin America & Caribbean
## 2735  2023-05-10  1.005289e+02           NA  Latin America & Caribbean
## 2736  2023-05-10  2.017403e+02           NA  Latin America & Caribbean
## 2737  2023-05-10  1.845624e+01           NA  Latin America & Caribbean
## 2738  2023-05-10  1.625511e+01           NA  Latin America & Caribbean
## 2739  2023-05-10  7.841743e+01           NA  Latin America & Caribbean
## 2740  2023-05-10  3.671385e+00           NA  Latin America & Caribbean
## 2741  2020-07-27            NA 7.153027e+01                       <NA>
## 2742  2020-07-27            NA 7.624925e+01                       <NA>
## 2743  2020-07-27            NA 8.148722e+01                       <NA>
## 2744  2020-07-27            NA 8.489630e+01                       <NA>
## 2745  2020-07-27            NA 8.798760e+01                       <NA>
## 2746  2020-07-27            NA 9.298406e+01                       <NA>
## 2747  2020-07-27            NA 9.752915e+01                       <NA>
## 2748  2020-07-27            NA           NA                       <NA>
## 2749  2020-07-27            NA 1.108731e-05                       <NA>
## 2750  2020-07-27            NA 3.214343e-05                       <NA>
## 2751  2020-07-27            NA 9.593604e-04                       <NA>
## 2752  2020-07-27            NA 4.906443e-03                       <NA>
## 2753  2020-07-27            NA 5.128467e-02                       <NA>
## 2754  2020-07-27            NA 1.039152e+00                       <NA>
## 2755  2020-07-27            NA 2.261084e+01                       <NA>
## 2756  2020-07-27            NA 3.753558e+01                       <NA>
## 2757  2020-07-27            NA 4.345031e+01                       <NA>
## 2758  2020-07-27            NA 4.645999e+01                       <NA>
## 2759  2020-07-27            NA 4.794442e+01                       <NA>
## 2760  2020-07-27            NA 5.027377e+01                       <NA>
## 2761  2020-07-27            NA 5.381513e+01                       <NA>
## 2762  2020-07-27            NA 5.749628e+01                       <NA>
## 2763  2020-07-27            NA 6.235481e+01                       <NA>
## 2764  2020-07-27            NA 1.024434e+02                       <NA>
## 2765  2020-07-27            NA 1.092420e+02                       <NA>
## 2766  2020-07-27            NA 1.151449e+02                       <NA>
## 2767  2020-07-27            NA 1.222888e+02                       <NA>
## 2768  2020-07-27            NA 1.300285e+02                       <NA>
## 2769  2020-07-27            NA 1.417700e+02                       <NA>
## 2770  2020-07-27            NA 1.541595e+02                       <NA>
## 2771  2020-07-27            NA 1.594724e+02                       <NA>
## 2772  2020-07-27            NA 1.653168e+02                       <NA>
## 2773  2020-07-27            NA 1.714880e+02                       <NA>
## 2774  2020-07-27            NA 1.753913e+02                       <NA>
## 2775  2023-05-10            NA           NA  Latin America & Caribbean
## 2776  2023-05-10            NA           NA  Latin America & Caribbean
## 2777  2023-05-10            NA           NA  Latin America & Caribbean
## 2778  2023-05-10            NA           NA  Latin America & Caribbean
## 2779  2023-05-10            NA           NA  Latin America & Caribbean
## 2780  2023-05-10            NA           NA  Latin America & Caribbean
## 2781  2023-05-10            NA           NA  Latin America & Caribbean
## 2782  2023-05-10            NA           NA  Latin America & Caribbean
## 2783  2023-05-10            NA           NA  Latin America & Caribbean
## 2784  2023-05-10            NA           NA  Latin America & Caribbean
## 2785  2023-05-10            NA           NA  Latin America & Caribbean
## 2786  2023-05-10            NA           NA  Latin America & Caribbean
## 2787  2023-05-10            NA           NA  Latin America & Caribbean
## 2788  2023-05-10            NA           NA  Latin America & Caribbean
## 2789  2023-05-10            NA           NA  Latin America & Caribbean
## 2790  2023-05-10            NA           NA  Latin America & Caribbean
## 2791  2023-05-10            NA           NA  Latin America & Caribbean
## 2792  2023-05-10            NA           NA  Latin America & Caribbean
## 2793  2023-05-10            NA           NA  Latin America & Caribbean
## 2794  2023-05-10            NA           NA  Latin America & Caribbean
## 2795  2023-05-10            NA           NA  Latin America & Caribbean
## 2796  2023-05-10            NA           NA  Latin America & Caribbean
## 2797  2023-05-10            NA           NA  Latin America & Caribbean
## 2798  2023-05-10            NA           NA  Latin America & Caribbean
## 2799  2023-05-10            NA           NA  Latin America & Caribbean
## 2800  2023-05-10            NA           NA  Latin America & Caribbean
## 2801  2023-05-10            NA           NA  Latin America & Caribbean
## 2802  2023-05-10            NA           NA  Latin America & Caribbean
## 2803  2023-05-10            NA           NA  Latin America & Caribbean
## 2804  2023-05-10            NA           NA  Latin America & Caribbean
## 2805  2023-05-10            NA           NA  Latin America & Caribbean
## 2806  2023-05-10            NA           NA  Latin America & Caribbean
## 2807  2023-05-10            NA           NA  Latin America & Caribbean
## 2808  2023-05-10            NA           NA  Latin America & Caribbean
## 2809  2023-05-10            NA           NA  Latin America & Caribbean
## 2810  2023-05-10            NA           NA  Latin America & Caribbean
## 2811  2023-05-10            NA           NA  Latin America & Caribbean
## 2812  2023-05-10            NA           NA  Latin America & Caribbean
## 2813  2023-05-10            NA           NA  Latin America & Caribbean
## 2814  2023-05-10            NA           NA  Latin America & Caribbean
## 2815  2023-05-10            NA           NA  Latin America & Caribbean
## 2816  2023-05-10            NA           NA  Latin America & Caribbean
## 2817  2023-05-10            NA           NA  Latin America & Caribbean
## 2818  2023-05-10            NA           NA  Latin America & Caribbean
## 2819  2023-05-10            NA           NA  Latin America & Caribbean
## 2820  2023-05-10            NA           NA  Latin America & Caribbean
## 2821  2023-05-10            NA           NA  Latin America & Caribbean
## 2822  2023-05-10            NA           NA  Latin America & Caribbean
## 2823  2023-05-10            NA           NA  Latin America & Caribbean
## 2824  2023-05-10            NA           NA  Latin America & Caribbean
## 2825  2023-05-10            NA           NA  Latin America & Caribbean
## 2826  2023-05-10            NA           NA  Latin America & Caribbean
## 2827  2023-05-10            NA           NA  Latin America & Caribbean
## 2828  2023-05-10            NA           NA  Latin America & Caribbean
## 2829  2023-05-10            NA           NA  Latin America & Caribbean
## 2830  2023-05-10            NA           NA  Latin America & Caribbean
## 2831  2023-05-10            NA           NA  Latin America & Caribbean
## 2832  2023-05-10            NA           NA  Latin America & Caribbean
## 2833  2023-05-10            NA           NA  Latin America & Caribbean
## 2834  2023-05-10            NA           NA  Latin America & Caribbean
## 2835  2023-05-10            NA           NA  Latin America & Caribbean
## 2836  2023-05-10            NA           NA  Latin America & Caribbean
## 2837  2023-05-10            NA           NA  Latin America & Caribbean
## 2838  2020-07-27            NA           NA                       <NA>
## 2839  2020-07-27            NA           NA                       <NA>
## 2840  2020-07-27            NA           NA                       <NA>
## 2841  2020-07-27            NA           NA                       <NA>
## 2842  2020-07-27            NA           NA                       <NA>
## 2843  2020-07-27            NA           NA                       <NA>
## 2844  2020-07-27            NA           NA                       <NA>
## 2845  2020-07-27            NA           NA                       <NA>
## 2846  2020-07-27            NA           NA                       <NA>
## 2847  2020-07-27            NA           NA                       <NA>
## 2848  2020-07-27            NA           NA                       <NA>
## 2849  2020-07-27            NA           NA                       <NA>
## 2850  2020-07-27            NA           NA                       <NA>
## 2851  2020-07-27            NA           NA                       <NA>
## 2852  2020-07-27            NA           NA                       <NA>
## 2853  2020-07-27            NA           NA                       <NA>
## 2854  2020-07-27            NA           NA                       <NA>
## 2855  2020-07-27            NA           NA                       <NA>
## 2856  2020-07-27            NA           NA                       <NA>
## 2857  2020-07-27            NA           NA                       <NA>
## 2858  2020-07-27            NA           NA                       <NA>
## 2859  2020-07-27            NA           NA                       <NA>
## 2860  2020-07-27            NA           NA                       <NA>
## 2861  2020-07-27            NA           NA                       <NA>
## 2862  2020-07-27            NA           NA                       <NA>
## 2863  2020-07-27            NA           NA                       <NA>
## 2864  2020-07-27            NA           NA                       <NA>
## 2865  2020-07-27            NA           NA                       <NA>
## 2866  2020-07-27            NA           NA                       <NA>
## 2867  2020-07-27            NA           NA                       <NA>
## 2868  2020-07-27            NA           NA                       <NA>
## 2869  2020-07-27            NA           NA                       <NA>
## 2870  2020-07-27            NA           NA                       <NA>
## 2871  2020-07-27            NA           NA                       <NA>
## 2872  2023-05-10            NA           NA        East Asia & Pacific
## 2873  2023-05-10            NA           NA        East Asia & Pacific
## 2874  2023-05-10            NA           NA        East Asia & Pacific
## 2875  2023-05-10 -9.167862e+00           NA        East Asia & Pacific
## 2876  2023-05-10  1.159398e+01           NA        East Asia & Pacific
## 2877  2023-05-10  9.217653e+00           NA        East Asia & Pacific
## 2878  2023-05-10 -3.190475e+01           NA        East Asia & Pacific
## 2879  2023-05-10  1.218703e+00           NA        East Asia & Pacific
## 2880  2023-05-10  2.018051e+01           NA        East Asia & Pacific
## 2881  2023-05-10            NA           NA        East Asia & Pacific
## 2882  2023-05-10  4.953690e+00           NA        East Asia & Pacific
## 2883  2023-05-10 -1.761280e+01           NA        East Asia & Pacific
## 2884  2023-05-10  2.901571e+01           NA        East Asia & Pacific
## 2885  2023-05-10 -1.142004e+01           NA        East Asia & Pacific
## 2886  2023-05-10  4.488756e+00           NA        East Asia & Pacific
## 2887  2023-05-10  8.409964e+00           NA        East Asia & Pacific
## 2888  2023-05-10 -4.838443e+00           NA        East Asia & Pacific
## 2889  2023-05-10  9.021595e+00           NA        East Asia & Pacific
## 2890  2023-05-10  1.004772e+01           NA        East Asia & Pacific
## 2891  2023-05-10  3.742095e-01           NA        East Asia & Pacific
## 2892  2023-05-10 -5.591898e+00           NA        East Asia & Pacific
## 2893  2023-05-10            NA           NA        East Asia & Pacific
## 2894  2023-05-10  1.876632e+01           NA        East Asia & Pacific
## 2895  2023-05-10            NA           NA        East Asia & Pacific
## 2896  2023-05-10 -2.837281e+00           NA        East Asia & Pacific
## 2897  2023-05-10  1.546593e+01           NA        East Asia & Pacific
## 2898  2023-05-10  8.584853e+00           NA        East Asia & Pacific
## 2899  2023-05-10 -1.086376e+01           NA        East Asia & Pacific
## 2900  2023-05-10  1.588616e+01           NA        East Asia & Pacific
## 2901  2023-05-10 -2.171429e+00           NA        East Asia & Pacific
## 2902  2023-05-10            NA           NA        East Asia & Pacific
## 2903  2023-05-10  1.120448e+00           NA        East Asia & Pacific
## 2904  2023-05-10  1.269273e+01           NA        East Asia & Pacific
## 2905  2023-05-10  6.104611e+00           NA        East Asia & Pacific
## 2906  2023-05-10  1.668828e+01           NA        East Asia & Pacific
## 2907  2023-05-10 -2.209142e+01           NA        East Asia & Pacific
## 2908  2023-05-10 -7.669073e+00           NA        East Asia & Pacific
## 2909  2023-05-10  1.726875e+00           NA        East Asia & Pacific
## 2910  2023-05-10 -1.164857e+01           NA        East Asia & Pacific
## 2911  2023-05-10 -3.335768e+00           NA        East Asia & Pacific
## 2912  2023-05-10  8.381099e+00           NA        East Asia & Pacific
## 2913  2023-05-10  1.267189e+01           NA        East Asia & Pacific
## 2914  2023-05-10            NA           NA        East Asia & Pacific
## 2915  2023-05-10  8.611397e+01           NA        East Asia & Pacific
## 2916  2023-05-10  2.872998e+00           NA        East Asia & Pacific
## 2917  2023-05-10 -1.846457e+00           NA        East Asia & Pacific
## 2918  2023-05-10  8.698050e+00           NA        East Asia & Pacific
## 2919  2023-05-10            NA           NA        East Asia & Pacific
## 2920  2023-05-10  5.518964e+00           NA        East Asia & Pacific
## 2921  2023-05-10  1.072996e+01           NA        East Asia & Pacific
## 2922  2023-05-10 -8.763627e+00           NA        East Asia & Pacific
## 2923  2023-05-10 -2.821321e+00           NA        East Asia & Pacific
## 2924  2023-05-10  5.627127e+00           NA        East Asia & Pacific
## 2925  2023-05-10 -2.951490e+00           NA        East Asia & Pacific
## 2926  2023-05-10            NA           NA        East Asia & Pacific
## 2927  2023-05-10            NA           NA        East Asia & Pacific
## 2928  2023-05-10            NA           NA        East Asia & Pacific
## 2929  2023-05-10            NA           NA        East Asia & Pacific
## 2930  2023-05-10            NA           NA        East Asia & Pacific
## 2931  2023-05-10 -1.274172e+00           NA        East Asia & Pacific
## 2932  2023-05-10 -2.464941e+00           NA        East Asia & Pacific
## 2933  2023-05-10            NA           NA        East Asia & Pacific
## 2934  2023-05-10            NA           NA        East Asia & Pacific
## 2935  2023-05-10  3.395103e+01           NA      Europe & Central Asia
## 2936  2023-05-10            NA           NA      Europe & Central Asia
## 2937  2023-05-10  3.319137e+00           NA      Europe & Central Asia
## 2938  2023-05-10  5.236782e+00           NA      Europe & Central Asia
## 2939  2023-05-10  6.117733e+00           NA      Europe & Central Asia
## 2940  2023-05-10            NA           NA      Europe & Central Asia
## 2941  2023-05-10  7.380840e+00           NA      Europe & Central Asia
## 2942  2023-05-10  4.257861e+00           NA      Europe & Central Asia
## 2943  2023-05-10  7.270497e+01           NA      Europe & Central Asia
## 2944  2023-05-10            NA           NA      Europe & Central Asia
## 2945  2023-05-10  6.594259e+00           NA      Europe & Central Asia
## 2946  2023-05-10            NA           NA      Europe & Central Asia
## 2947  2023-05-10            NA           NA      Europe & Central Asia
## 2948  2023-05-10  5.109105e+01           NA      Europe & Central Asia
## 2949  2023-05-10            NA           NA      Europe & Central Asia
## 2950  2023-05-10  4.232647e+00           NA      Europe & Central Asia
## 2951  2023-05-10            NA           NA      Europe & Central Asia
## 2952  2023-05-10            NA           NA      Europe & Central Asia
## 2953  2023-05-10 -5.389744e+00           NA      Europe & Central Asia
## 2954  2023-05-10            NA           NA      Europe & Central Asia
## 2955  2023-05-10            NA           NA      Europe & Central Asia
## 2956  2023-05-10  9.132131e+02           NA      Europe & Central Asia
## 2957  2023-05-10            NA           NA      Europe & Central Asia
## 2958  2023-05-10  6.296624e+01           NA      Europe & Central Asia
## 2959  2023-05-10  8.103455e+00           NA      Europe & Central Asia
## 2960  2023-05-10            NA           NA      Europe & Central Asia
## 2961  2023-05-10  2.820938e+00           NA      Europe & Central Asia
## 2962  2023-05-10  2.265379e+02           NA      Europe & Central Asia
## 2963  2023-05-10  7.132682e+00           NA      Europe & Central Asia
## 2964  2023-05-10  3.848378e+00           NA      Europe & Central Asia
## 2965  2023-05-10            NA           NA      Europe & Central Asia
## 2966  2023-05-10            NA           NA      Europe & Central Asia
## 2967  2023-05-10  1.105143e+01           NA      Europe & Central Asia
## 2968  2023-05-10            NA           NA      Europe & Central Asia
## 2969  2023-05-10  7.642320e-01           NA      Europe & Central Asia
## 2970  2023-05-10  5.581558e+00           NA      Europe & Central Asia
## 2971  2023-05-10  1.359574e+02           NA      Europe & Central Asia
## 2972  2023-05-10            NA           NA      Europe & Central Asia
## 2973  2023-05-10  1.340740e+00           NA      Europe & Central Asia
## 2974  2023-05-10  5.957865e+01           NA      Europe & Central Asia
## 2975  2023-05-10  2.618800e+01           NA      Europe & Central Asia
## 2976  2023-05-10  1.345490e+00           NA      Europe & Central Asia
## 2977  2023-05-10            NA           NA      Europe & Central Asia
## 2978  2023-05-10            NA           NA      Europe & Central Asia
## 2979  2023-05-10  1.112137e+00           NA      Europe & Central Asia
## 2980  2023-05-10            NA           NA      Europe & Central Asia
## 2981  2023-05-10            NA           NA      Europe & Central Asia
## 2982  2023-05-10  3.938019e+00           NA      Europe & Central Asia
## 2983  2023-05-10  6.112980e+00           NA      Europe & Central Asia
## 2984  2023-05-10            NA           NA      Europe & Central Asia
## 2985  2023-05-10  6.383880e-02           NA      Europe & Central Asia
## 2986  2023-05-10  6.729684e+00           NA      Europe & Central Asia
## 2987  2023-05-10  2.291771e-01           NA      Europe & Central Asia
## 2988  2023-05-10 -6.452717e-01           NA      Europe & Central Asia
## 2989  2023-05-10            NA           NA      Europe & Central Asia
## 2990  2023-05-10  7.196201e-02           NA      Europe & Central Asia
## 2991  2023-05-10  6.756475e+00           NA      Europe & Central Asia
## 2992  2023-05-10  1.916473e+00           NA      Europe & Central Asia
## 2993  2023-05-10  2.189409e+00           NA      Europe & Central Asia
## 2994  2023-05-10  3.322082e+00           NA      Europe & Central Asia
## 2995  2023-05-10  4.810288e+00           NA      Europe & Central Asia
## 2996  2023-05-10  2.736748e+00           NA      Europe & Central Asia
## 2997  2023-05-10  2.946786e+00           NA      Europe & Central Asia
## 2998  2020-07-27            NA           NA                       <NA>
## 2999  2020-07-27            NA           NA                       <NA>
## 3000  2020-07-27            NA           NA                       <NA>
## 3001  2020-07-27            NA 3.034975e-02                       <NA>
## 3002  2020-07-27            NA 1.575622e-01                       <NA>
## 3003  2020-07-27            NA 3.014149e-01                       <NA>
## 3004  2020-07-27            NA 5.209178e-01                       <NA>
## 3005  2020-07-27            NA 1.020982e+00                       <NA>
## 3006  2020-07-27            NA 1.655065e+00                       <NA>
## 3007  2020-07-27            NA 3.667747e+00                       <NA>
## 3008  2020-07-27            NA 4.248623e+01                       <NA>
## 3009  2020-07-27            NA 5.041937e+01                       <NA>
## 3010  2020-07-27            NA 5.171666e+01                       <NA>
## 3011  2020-07-27            NA 5.705189e+01                       <NA>
## 3012  2020-07-27            NA 6.125145e+01                       <NA>
## 3013  2020-07-27            NA 6.481024e+01                       <NA>
## 3014  2020-07-27            NA 6.633238e+01                       <NA>
## 3015  2020-07-27            NA 7.040993e+01                       <NA>
## 3016  2020-07-27            NA 7.395776e+01                       <NA>
## 3017  2020-07-27            NA 7.932830e+01                       <NA>
## 3018  2020-07-27            NA 8.599385e+01                       <NA>
## 3019  2020-07-27            NA 9.661303e+01                       <NA>
## 3020  2020-07-27            NA 9.927297e+01                       <NA>
## 3021  2020-07-27            NA 1.016942e+02                       <NA>
## 3022  2020-07-27            NA 1.059856e+02                       <NA>
## 3023  2020-07-27            NA 1.091170e+02                       <NA>
## 3024  2020-07-27            NA 1.100883e+02                       <NA>
## 3025  2020-07-27            NA 1.085270e+02                       <NA>
## 3026  2020-07-27            NA 1.084135e+02                       <NA>
## 3027  2020-07-27            NA 1.075476e+02                       <NA>
## 3028  2020-07-27            NA 1.097648e+02                       <NA>
## 3029  2020-07-27            NA 1.128542e+02                       <NA>
## 3030  2020-07-27            NA 1.163569e+02                       <NA>
## 3031  2020-07-27            NA 1.186252e+02                       <NA>
## 3032  2023-05-10  2.270596e-01           NA         Sub-Saharan Africa
## 3033  2023-05-10  6.835015e+00           NA         Sub-Saharan Africa
## 3034  2023-05-10  6.738005e+00           NA         Sub-Saharan Africa
## 3035  2023-05-10  5.409317e+00           NA         Sub-Saharan Africa
## 3036  2023-05-10  1.358462e+01           NA         Sub-Saharan Africa
## 3037  2023-05-10  5.823999e+00           NA         Sub-Saharan Africa
## 3038  2023-05-10            NA           NA         Sub-Saharan Africa
## 3039  2023-05-10 -3.967781e+00           NA         Sub-Saharan Africa
## 3040  2023-05-10  9.046516e+00           NA         Sub-Saharan Africa
## 3041  2023-05-10  7.570667e-01           NA         Sub-Saharan Africa
## 3042  2023-05-10  2.492349e+00           NA         Sub-Saharan Africa
## 3043  2023-05-10  1.237323e+00           NA         Sub-Saharan Africa
## 3044  2023-05-10  3.408557e+00           NA         Sub-Saharan Africa
## 3045  2023-05-10            NA           NA         Sub-Saharan Africa
## 3046  2023-05-10  1.453233e+01           NA         Sub-Saharan Africa
## 3047  2023-05-10  6.501085e+00           NA         Sub-Saharan Africa
## 3048  2023-05-10  1.073967e+00           NA         Sub-Saharan Africa
## 3049  2023-05-10  1.416297e+00           NA         Sub-Saharan Africa
## 3050  2023-05-10 -2.129171e+00           NA         Sub-Saharan Africa
## 3051  2023-05-10 -8.166101e-01           NA         Sub-Saharan Africa
## 3052  2023-05-10  5.147525e+00           NA         Sub-Saharan Africa
## 3053  2023-05-10  3.779619e+00           NA         Sub-Saharan Africa
## 3054  2023-05-10  1.810015e+00           NA         Sub-Saharan Africa
## 3055  2023-05-10 -8.197732e-01           NA         Sub-Saharan Africa
## 3056  2023-05-10 -6.628268e-01           NA         Sub-Saharan Africa
## 3057  2023-05-10  1.484729e+00           NA         Sub-Saharan Africa
## 3058  2023-05-10 -6.345677e+00           NA         Sub-Saharan Africa
## 3059  2023-05-10  1.617094e+00           NA         Sub-Saharan Africa
## 3060  2023-05-10  6.725506e+00           NA         Sub-Saharan Africa
## 3061  2023-05-10  7.753526e+00           NA         Sub-Saharan Africa
## 3062  2023-05-10  8.694369e+00           NA         Sub-Saharan Africa
## 3063  2023-05-10 -2.638787e-01           NA         Sub-Saharan Africa
## 3064  2023-05-10  2.303117e+00           NA         Sub-Saharan Africa
## 3065  2023-05-10  9.064859e-02           NA         Sub-Saharan Africa
## 3066  2023-05-10  4.831620e+00           NA         Sub-Saharan Africa
## 3067  2023-05-10  2.405505e+00           NA         Sub-Saharan Africa
## 3068  2023-05-10  1.739082e+01           NA         Sub-Saharan Africa
## 3069  2023-05-10  1.866198e+01           NA         Sub-Saharan Africa
## 3070  2023-05-10 -4.411008e+00           NA         Sub-Saharan Africa
## 3071  2023-05-10  3.056986e+00           NA         Sub-Saharan Africa
## 3072  2023-05-10 -1.441840e+00           NA         Sub-Saharan Africa
## 3073  2023-05-10  1.812217e+00           NA         Sub-Saharan Africa
## 3074  2023-05-10  7.940316e+00           NA         Sub-Saharan Africa
## 3075  2023-05-10  1.900608e+00           NA         Sub-Saharan Africa
## 3076  2023-05-10 -6.560720e-01           NA         Sub-Saharan Africa
## 3077  2023-05-10 -6.203869e-01           NA         Sub-Saharan Africa
## 3078  2023-05-10  2.677859e+00           NA         Sub-Saharan Africa
## 3079  2023-05-10  3.739385e+00           NA         Sub-Saharan Africa
## 3080  2023-05-10  9.159800e+00           NA         Sub-Saharan Africa
## 3081  2023-05-10  6.769569e+00           NA         Sub-Saharan Africa
## 3082  2023-05-10  7.296645e+00           NA         Sub-Saharan Africa
## 3083  2023-05-10  8.176156e+00           NA         Sub-Saharan Africa
## 3084  2023-05-10  3.487052e-01           NA         Sub-Saharan Africa
## 3085  2023-05-10  1.101471e+01           NA         Sub-Saharan Africa
## 3086  2023-05-10  6.913154e+00           NA         Sub-Saharan Africa
## 3087  2023-05-10  1.463896e+01           NA         Sub-Saharan Africa
## 3088  2023-05-10  2.010372e+00           NA         Sub-Saharan Africa
## 3089  2023-05-10  1.556200e+00           NA         Sub-Saharan Africa
## 3090  2023-05-10  1.783427e+00           NA         Sub-Saharan Africa
## 3091  2023-05-10  3.961553e+00           NA         Sub-Saharan Africa
## 3092  2023-05-10  2.604299e+00           NA         Sub-Saharan Africa
## 3093  2023-05-10  3.377475e+00           NA         Sub-Saharan Africa
## 3094  2023-05-10 -2.223954e+00           NA         Sub-Saharan Africa
## 3095  2020-07-27            NA 4.784111e+01                       <NA>
## 3096  2020-07-27            NA 4.987704e+01                       <NA>
## 3097  2020-07-27            NA 4.963673e+01                       <NA>
## 3098  2020-07-27            NA 4.938638e+01                       <NA>
## 3099  2020-07-27            NA 5.045444e+01                       <NA>
## 3100  2020-07-27            NA 4.944982e+01                       <NA>
## 3101  2020-07-27            NA 4.972350e+01                       <NA>
## 3102  2020-07-27            NA 6.224282e+01                       <NA>
## 3103  2020-07-27            NA 6.688542e+01                       <NA>
## 3104  2020-07-27            NA 7.096395e+01                       <NA>
## 3105  2020-07-27            NA 7.260940e+01                       <NA>
## 3106  2020-07-27            NA 7.630111e+01                       <NA>
## 3107  2020-07-27            NA 7.548268e+01                       <NA>
## 3108  2020-07-27            NA 7.525306e+01                       <NA>
## 3109  2020-07-27            NA 7.902130e+01                       <NA>
## 3110  2020-07-27            NA 8.074056e+01                       <NA>
## 3111  2020-07-27            NA 8.238329e+01                       <NA>
## 3112  2020-07-27            NA 8.205356e+01                       <NA>
## 3113  2020-07-27            NA 8.731733e+01                       <NA>
## 3114  2020-07-27            NA 8.935453e+01                       <NA>
## 3115  2020-07-27            NA 8.914845e+01                       <NA>
## 3116  2020-07-27            NA 9.865150e+01                       <NA>
## 3117  2020-07-27            NA 1.012245e+02                       <NA>
## 3118  2020-07-27            NA 1.004509e+02                       <NA>
## 3119  2020-07-27            NA 1.032231e+02                       <NA>
## 3120  2020-07-27            NA 1.071644e+02                       <NA>
## 3121  2020-07-27            NA 1.077363e+02                       <NA>
## 3122  2020-07-27            NA 1.074583e+02                       <NA>
## 3123  2020-07-27            NA 1.082372e+02                       <NA>
## 3124  2020-07-27            NA 1.087146e+02                       <NA>
## 3125  2020-07-27            NA 1.103268e+02                       <NA>
## 3126  2020-07-27            NA 1.124847e+02                       <NA>
## 3127  2020-07-27            NA 1.088477e+02                       <NA>
## 3128  2020-07-27            NA 1.083375e+02                       <NA>
## 3129  2020-07-27            NA 8.566388e+00                       <NA>
## 3130  2020-07-27            NA 8.950742e+00                       <NA>
## 3131  2020-07-27            NA 9.994543e+00                       <NA>
## 3132  2020-07-27            NA 1.069438e+01                       <NA>
## 3133  2020-07-27            NA 1.165655e+01                       <NA>
## 3134  2020-07-27            NA 1.186908e+01                       <NA>
## 3135  2020-07-27            NA 1.301793e+01                       <NA>
## 3136  2020-07-27            NA 1.495146e+01                       <NA>
## 3137  2020-07-27            NA 1.783160e+01                       <NA>
## 3138  2020-07-27            NA 2.254570e+01                       <NA>
## 3139  2020-07-27            NA 2.956003e+01                       <NA>
## 3140  2020-07-27            NA 3.325515e+01                       <NA>
## 3141  2020-07-27            NA 3.440066e+01                       <NA>
## 3142  2020-07-27            NA 4.280544e+01                       <NA>
## 3143  2020-07-27            NA 4.678471e+01                       <NA>
## 3144  2020-07-27            NA 4.614579e+01                       <NA>
## 3145  2020-07-27            NA 5.105914e+01                       <NA>
## 3146  2020-07-27            NA 5.523395e+01                       <NA>
## 3147  2020-07-27            NA 6.255360e+01                       <NA>
## 3148  2020-07-27            NA 6.427096e+01                       <NA>
## 3149  2020-07-27            NA 6.967747e+01                       <NA>
## 3150  2020-07-27            NA 8.668361e+01                       <NA>
## 3151  2020-07-27            NA 9.583345e+01                       <NA>
## 3152  2020-07-27            NA 1.020562e+02                       <NA>
## 3153  2020-07-27            NA 1.118456e+02                       <NA>
## 3154  2020-07-27            NA 1.321579e+02                       <NA>
## 3155  2020-07-27            NA 1.426485e+02                       <NA>
## 3156  2020-07-27            NA 1.489327e+02                       <NA>
## 3157  2020-07-27            NA 1.571905e+02                       <NA>
## 3158  2020-07-27            NA 1.659267e+02                       <NA>
## 3159  2020-07-27            NA 1.925622e+02                       <NA>
## 3160  2020-07-27            NA 1.871421e+02                       <NA>
## 3161  2020-07-27            NA 1.858569e+02                       <NA>
## 3162  2020-07-27            NA 1.937918e+02                       <NA>
## 3163  2023-05-10  5.305656e+00           NA         Sub-Saharan Africa
## 3164  2023-05-10  2.007744e+01           NA         Sub-Saharan Africa
## 3165  2023-05-10  8.364250e+00           NA         Sub-Saharan Africa
## 3166  2023-05-10  7.953104e+00           NA         Sub-Saharan Africa
## 3167  2023-05-10  2.131875e+01           NA         Sub-Saharan Africa
## 3168  2023-05-10  2.845666e+00           NA         Sub-Saharan Africa
## 3169  2023-05-10  1.445311e+01           NA         Sub-Saharan Africa
## 3170  2023-05-10  1.144918e+01           NA         Sub-Saharan Africa
## 3171  2023-05-10 -2.850859e+00           NA         Sub-Saharan Africa
## 3172  2023-05-10  1.194575e+01           NA         Sub-Saharan Africa
## 3173  2023-05-10            NA           NA         Sub-Saharan Africa
## 3174  2023-05-10  1.045880e+01           NA         Sub-Saharan Africa
## 3175  2023-05-10  8.273376e+00           NA         Sub-Saharan Africa
## 3176  2023-05-10  3.152034e+00           NA         Sub-Saharan Africa
## 3177  2023-05-10  5.184512e+00           NA         Sub-Saharan Africa
## 3178  2023-05-10  1.429407e+01           NA         Sub-Saharan Africa
## 3179  2023-05-10  8.561555e+00           NA         Sub-Saharan Africa
## 3180  2023-05-10  5.510442e+00           NA         Sub-Saharan Africa
## 3181  2023-05-10  1.027859e+00           NA         Sub-Saharan Africa
## 3182  2023-05-10  5.401761e+00           NA         Sub-Saharan Africa
## 3183  2023-05-10 -3.417795e+00           NA         Sub-Saharan Africa
## 3184  2023-05-10  3.239779e+01           NA         Sub-Saharan Africa
## 3185  2023-05-10  1.884159e+01           NA         Sub-Saharan Africa
## 3186  2023-05-10  7.742646e+00           NA         Sub-Saharan Africa
## 3187  2023-05-10  1.380219e+00           NA         Sub-Saharan Africa
## 3188  2023-05-10  2.421579e+01           NA         Sub-Saharan Africa
## 3189  2023-05-10  2.108691e+01           NA         Sub-Saharan Africa
## 3190  2023-05-10  1.610271e+01           NA         Sub-Saharan Africa
## 3191  2023-05-10  3.894489e+01           NA         Sub-Saharan Africa
## 3192  2023-05-10  9.907567e+00           NA         Sub-Saharan Africa
## 3193  2023-05-10 -1.029364e+00           NA         Sub-Saharan Africa
## 3194  2023-05-10  1.250771e+01           NA         Sub-Saharan Africa
## 3195  2023-05-10  4.093141e+00           NA         Sub-Saharan Africa
## 3196  2023-05-10  9.731764e-01           NA         Sub-Saharan Africa
## 3197  2023-05-10  6.638445e+00           NA         Sub-Saharan Africa
## 3198  2023-05-10  1.475718e+01           NA         Sub-Saharan Africa
## 3199  2023-05-10  1.430413e+01           NA         Sub-Saharan Africa
## 3200  2023-05-10  1.721619e+01           NA         Sub-Saharan Africa
## 3201  2023-05-10  2.613071e+01           NA         Sub-Saharan Africa
## 3202  2023-05-10  3.056813e+00           NA         Sub-Saharan Africa
## 3203  2023-05-10  5.361880e+00           NA         Sub-Saharan Africa
## 3204  2023-05-10 -3.567416e+00           NA         Sub-Saharan Africa
## 3205  2023-05-10  3.491223e+00           NA         Sub-Saharan Africa
## 3206  2023-05-10  5.985562e+00           NA         Sub-Saharan Africa
## 3207  2023-05-10  5.417218e+00           NA         Sub-Saharan Africa
## 3208  2023-05-10  8.518674e-01           NA         Sub-Saharan Africa
## 3209  2023-05-10 -6.063315e+00           NA         Sub-Saharan Africa
## 3210  2023-05-10  1.314616e+01           NA         Sub-Saharan Africa
## 3211  2023-05-10  1.371641e+01           NA         Sub-Saharan Africa
## 3212  2023-05-10  5.068839e+00           NA         Sub-Saharan Africa
## 3213  2023-05-10            NA           NA         Sub-Saharan Africa
## 3214  2023-05-10  8.074948e+00           NA         Sub-Saharan Africa
## 3215  2023-05-10  4.290810e+00           NA         Sub-Saharan Africa
## 3216  2023-05-10  6.428549e+00           NA         Sub-Saharan Africa
## 3217  2023-05-10  5.672022e+00           NA         Sub-Saharan Africa
## 3218  2023-05-10 -5.317986e+00           NA         Sub-Saharan Africa
## 3219  2023-05-10  1.495414e+01           NA         Sub-Saharan Africa
## 3220  2023-05-10  1.245518e+01           NA         Sub-Saharan Africa
## 3221  2023-05-10  4.687149e+00           NA         Sub-Saharan Africa
## 3222  2023-05-10  5.966502e+00           NA         Sub-Saharan Africa
## 3223  2023-05-10 -4.257414e+00           NA         Sub-Saharan Africa
## 3224  2023-05-10  1.145056e+01           NA         Sub-Saharan Africa
## 3225  2023-05-10  1.638402e+01           NA         Sub-Saharan Africa
## 3226  2023-05-10  2.676411e+00           NA         Sub-Saharan Africa
## 3227  2023-05-10  1.428411e+00           NA         Sub-Saharan Africa
## 3228  2023-05-10  2.330491e+00           NA         Sub-Saharan Africa
## 3229  2023-05-10  4.921100e+00           NA         Sub-Saharan Africa
## 3230  2023-05-10 -1.794883e+00           NA         Sub-Saharan Africa
## 3231  2023-05-10  8.751419e+00           NA         Sub-Saharan Africa
## 3232  2023-05-10  5.529960e-01           NA         Sub-Saharan Africa
## 3233  2023-05-10            NA           NA         Sub-Saharan Africa
## 3234  2023-05-10 -1.467742e-01           NA         Sub-Saharan Africa
## 3235  2023-05-10  1.523827e+00           NA         Sub-Saharan Africa
## 3236  2023-05-10  5.050860e-01           NA         Sub-Saharan Africa
## 3237  2023-05-10            NA           NA         Sub-Saharan Africa
## 3238  2023-05-10  4.639771e+00           NA         Sub-Saharan Africa
## 3239  2023-05-10  5.629806e-01           NA         Sub-Saharan Africa
## 3240  2023-05-10 -2.316868e-01           NA         Sub-Saharan Africa
## 3241  2023-05-10  5.155335e+00           NA         Sub-Saharan Africa
## 3242  2023-05-10  7.612078e+00           NA         Sub-Saharan Africa
## 3243  2023-05-10  3.545933e+00           NA         Sub-Saharan Africa
## 3244  2023-05-10 -8.620898e-01           NA         Sub-Saharan Africa
## 3245  2023-05-10 -5.461359e-01           NA         Sub-Saharan Africa
## 3246  2023-05-10  1.739335e+01           NA         Sub-Saharan Africa
## 3247  2023-05-10            NA           NA         Sub-Saharan Africa
## 3248  2023-05-10  6.851484e-01           NA         Sub-Saharan Africa
## 3249  2023-05-10            NA           NA         Sub-Saharan Africa
## 3250  2023-05-10 -7.901103e+00           NA         Sub-Saharan Africa
## 3251  2023-05-10 -3.359905e-01           NA         Sub-Saharan Africa
## 3252  2023-05-10  2.174621e+00           NA         Sub-Saharan Africa
## 3253  2023-05-10  9.577975e+00           NA         Sub-Saharan Africa
## 3254  2023-05-10            NA           NA         Sub-Saharan Africa
## 3255  2023-05-10  1.736266e+00           NA         Sub-Saharan Africa
## 3256  2023-05-10            NA           NA         Sub-Saharan Africa
## 3257  2023-05-10            NA           NA         Sub-Saharan Africa
## 3258  2023-05-10  1.769340e+01           NA         Sub-Saharan Africa
## 3259  2023-05-10            NA           NA         Sub-Saharan Africa
## 3260  2023-05-10  1.056382e+01           NA         Sub-Saharan Africa
## 3261  2023-05-10            NA           NA         Sub-Saharan Africa
## 3262  2023-05-10            NA           NA         Sub-Saharan Africa
## 3263  2023-05-10 -8.352914e-01           NA         Sub-Saharan Africa
## 3264  2023-05-10 -4.115845e+00           NA         Sub-Saharan Africa
## 3265  2023-05-10 -1.546899e+00           NA         Sub-Saharan Africa
## 3266  2023-05-10 -2.917246e+01           NA         Sub-Saharan Africa
## 3267  2023-05-10  3.666658e+00           NA         Sub-Saharan Africa
## 3268  2023-05-10            NA           NA         Sub-Saharan Africa
## 3269  2023-05-10 -3.632089e-01           NA         Sub-Saharan Africa
## 3270  2023-05-10 -6.332547e+00           NA         Sub-Saharan Africa
## 3271  2023-05-10            NA           NA         Sub-Saharan Africa
## 3272  2023-05-10            NA           NA         Sub-Saharan Africa
## 3273  2023-05-10            NA           NA         Sub-Saharan Africa
## 3274  2023-05-10            NA           NA         Sub-Saharan Africa
## 3275  2023-05-10            NA           NA         Sub-Saharan Africa
## 3276  2023-05-10  6.962385e+00           NA         Sub-Saharan Africa
## 3277  2023-05-10  4.935409e+01           NA         Sub-Saharan Africa
## 3278  2023-05-10  8.766594e+00           NA         Sub-Saharan Africa
## 3279  2023-05-10  3.584859e+00           NA         Sub-Saharan Africa
## 3280  2023-05-10            NA           NA         Sub-Saharan Africa
## 3281  2023-05-10            NA           NA         Sub-Saharan Africa
## 3282  2023-05-10  4.792419e+00           NA         Sub-Saharan Africa
## 3283  2023-05-10            NA           NA         Sub-Saharan Africa
## 3284  2023-05-10            NA           NA         Sub-Saharan Africa
## 3285  2023-05-10            NA           NA         Sub-Saharan Africa
## 3286  2023-05-10  2.345310e+00           NA         Sub-Saharan Africa
## 3287  2023-05-10            NA           NA         Sub-Saharan Africa
## 3288  2023-05-10  5.411608e+00           NA         Sub-Saharan Africa
## 3289  2023-05-10  1.440518e+00           NA        East Asia & Pacific
## 3290  2023-05-10 -4.283227e+00           NA        East Asia & Pacific
## 3291  2023-05-10  3.120593e+00           NA        East Asia & Pacific
## 3292  2023-05-10  3.364066e+00           NA        East Asia & Pacific
## 3293  2023-05-10            NA           NA        East Asia & Pacific
## 3294  2023-05-10  7.813876e-01           NA        East Asia & Pacific
## 3295  2023-05-10  6.518034e+00           NA        East Asia & Pacific
## 3296  2023-05-10            NA           NA        East Asia & Pacific
## 3297  2023-05-10            NA           NA        East Asia & Pacific
## 3298  2023-05-10            NA           NA        East Asia & Pacific
## 3299  2023-05-10  1.225379e+01           NA        East Asia & Pacific
## 3300  2023-05-10            NA           NA        East Asia & Pacific
## 3301  2023-05-10            NA           NA        East Asia & Pacific
## 3302  2023-05-10            NA           NA        East Asia & Pacific
## 3303  2023-05-10  2.504385e+00           NA        East Asia & Pacific
## 3304  2023-05-10            NA           NA        East Asia & Pacific
## 3305  2023-05-10            NA           NA        East Asia & Pacific
## 3306  2023-05-10            NA           NA        East Asia & Pacific
## 3307  2023-05-10            NA           NA        East Asia & Pacific
## 3308  2023-05-10            NA           NA        East Asia & Pacific
## 3309  2023-05-10  1.035774e+01           NA        East Asia & Pacific
## 3310  2023-05-10            NA           NA        East Asia & Pacific
## 3311  2023-05-10  7.131412e-01           NA        East Asia & Pacific
## 3312  2023-05-10            NA           NA        East Asia & Pacific
## 3313  2023-05-10            NA           NA        East Asia & Pacific
## 3314  2023-05-10            NA           NA        East Asia & Pacific
## 3315  2023-05-10            NA           NA        East Asia & Pacific
## 3316  2023-05-10            NA           NA        East Asia & Pacific
## 3317  2023-05-10  3.111821e+00           NA        East Asia & Pacific
## 3318  2023-05-10  6.005076e+00           NA        East Asia & Pacific
## 3319  2023-05-10            NA           NA        East Asia & Pacific
## 3320  2023-05-10  1.261552e+00           NA        East Asia & Pacific
## 3321  2023-05-10            NA           NA        East Asia & Pacific
## 3322  2023-05-10            NA           NA        East Asia & Pacific
## 3323  2023-05-10  4.823738e+00           NA        East Asia & Pacific
## 3324  2023-05-10            NA           NA        East Asia & Pacific
## 3325  2023-05-10            NA           NA        East Asia & Pacific
## 3326  2023-05-10  1.786112e+00           NA        East Asia & Pacific
## 3327  2023-05-10            NA           NA        East Asia & Pacific
## 3328  2023-05-10            NA           NA        East Asia & Pacific
## 3329  2023-05-10            NA           NA        East Asia & Pacific
## 3330  2023-05-10            NA           NA        East Asia & Pacific
## 3331  2023-05-10            NA           NA        East Asia & Pacific
## 3332  2023-05-10  5.996529e+01           NA        East Asia & Pacific
## 3333  2023-05-10  8.004180e+00           NA        East Asia & Pacific
## 3334  2023-05-10            NA           NA        East Asia & Pacific
## 3335  2023-05-10            NA           NA        East Asia & Pacific
## 3336  2023-05-10  6.076679e+00           NA        East Asia & Pacific
## 3337  2023-05-10  3.032502e+00           NA        East Asia & Pacific
## 3338  2023-05-10  3.475255e+00           NA        East Asia & Pacific
## 3339  2023-05-10  2.632196e+00           NA        East Asia & Pacific
## 3340  2023-05-10            NA           NA        East Asia & Pacific
## 3341  2023-05-10            NA           NA        East Asia & Pacific
## 3342  2023-05-10 -6.718565e-01           NA        East Asia & Pacific
## 3343  2023-05-10            NA           NA        East Asia & Pacific
## 3344  2023-05-10  1.291945e+00           NA        East Asia & Pacific
## 3345  2023-05-10  1.797518e+00           NA        East Asia & Pacific
## 3346  2023-05-10  3.341042e+00           NA        East Asia & Pacific
## 3347  2023-05-10  3.235372e+00           NA        East Asia & Pacific
## 3348  2023-05-10  2.646541e+00           NA        East Asia & Pacific
## 3349  2023-05-10            NA           NA        East Asia & Pacific
## 3350  2023-05-10            NA           NA        East Asia & Pacific
## 3351  2023-05-10  4.631109e+00           NA        East Asia & Pacific
## 3352  2020-07-27            NA           NA                       <NA>
## 3353  2020-07-27            NA           NA                       <NA>
## 3354  2020-07-27            NA           NA                       <NA>
## 3355  2020-07-27            NA           NA                       <NA>
## 3356  2020-07-27            NA           NA                       <NA>
## 3357  2020-07-27            NA           NA                       <NA>
## 3358  2020-07-27            NA           NA                       <NA>
## 3359  2020-07-27            NA 4.367772e+01                       <NA>
## 3360  2020-07-27            NA 4.318645e+01                       <NA>
## 3361  2020-07-27            NA 4.627711e+01                       <NA>
## 3362  2020-07-27            NA 4.997030e+01                       <NA>
## 3363  2020-07-27            NA 5.736533e+01                       <NA>
## 3364  2020-07-27            NA 5.964475e+01                       <NA>
## 3365  2020-07-27            NA 5.917253e+01                       <NA>
## 3366  2020-07-27            NA 5.881491e+01                       <NA>
## 3367  2020-07-27            NA 6.070910e+01                       <NA>
## 3368  2020-07-27            NA 6.144119e+01                       <NA>
## 3369  2020-07-27            NA 6.399249e+01                       <NA>
## 3370  2020-07-27            NA 6.920657e+01                       <NA>
## 3371  2020-07-27            NA 7.245698e+01                       <NA>
## 3372  2020-07-27            NA 8.022508e+01                       <NA>
## 3373  2020-07-27            NA 9.727753e+01                       <NA>
## 3374  2020-07-27            NA 9.781130e+01                       <NA>
## 3375  2020-07-27            NA 1.017200e+02                       <NA>
## 3376  2020-07-27            NA 1.071983e+02                       <NA>
## 3377  2020-07-27            NA 1.104394e+02                       <NA>
## 3378  2020-07-27            NA 1.136891e+02                       <NA>
## 3379  2020-07-27            NA 1.180721e+02                       <NA>
## 3380  2020-07-27            NA 1.195143e+02                       <NA>
## 3381  2020-07-27            NA 1.231258e+02                       <NA>
## 3382  2020-07-27            NA 1.267113e+02                       <NA>
## 3383  2020-07-27            NA 1.298287e+02                       <NA>
## 3384  2020-07-27            NA 1.323506e+02                       <NA>
## 3385  2020-07-27            NA 1.349963e+02                       <NA>
## 3386  2023-05-10  1.643098e+00           NA         Sub-Saharan Africa
## 3387  2023-05-10 -2.392309e+00           NA         Sub-Saharan Africa
## 3388  2023-05-10  6.634514e+00           NA         Sub-Saharan Africa
## 3389  2023-05-10  5.884774e+00           NA         Sub-Saharan Africa
## 3390  2023-05-10  3.053459e+00           NA         Sub-Saharan Africa
## 3391  2023-05-10  1.276307e+01           NA         Sub-Saharan Africa
## 3392  2023-05-10  1.792357e-01           NA         Sub-Saharan Africa
## 3393  2023-05-10  7.976383e+00           NA         Sub-Saharan Africa
## 3394  2023-05-10  3.409807e+00           NA         Sub-Saharan Africa
## 3395  2023-05-10  3.568714e+00           NA         Sub-Saharan Africa
## 3396  2023-05-10 -1.277671e+00           NA         Sub-Saharan Africa
## 3397  2023-05-10  1.248195e+01           NA         Sub-Saharan Africa
## 3398  2023-05-10  6.529533e+00           NA         Sub-Saharan Africa
## 3399  2023-05-10  3.603515e+00           NA         Sub-Saharan Africa
## 3400  2023-05-10  8.138987e-01           NA         Sub-Saharan Africa
## 3401  2023-05-10  1.118713e+01           NA         Sub-Saharan Africa
## 3402  2023-05-10  6.881871e-01           NA         Sub-Saharan Africa
## 3403  2023-05-10  1.065870e+00           NA         Sub-Saharan Africa
## 3404  2023-05-10 -1.819083e+00           NA         Sub-Saharan Africa
## 3405  2023-05-10  4.105591e-01           NA         Sub-Saharan Africa
## 3406  2023-05-10  1.285277e+01           NA         Sub-Saharan Africa
## 3407  2023-05-10  5.882472e+00           NA         Sub-Saharan Africa
## 3408  2023-05-10  1.355219e+01           NA         Sub-Saharan Africa
## 3409  2023-05-10  8.800194e+00           NA         Sub-Saharan Africa
## 3410  2023-05-10  1.424589e+01           NA         Sub-Saharan Africa
## 3411  2023-05-10            NA           NA         Sub-Saharan Africa
## 3412  2023-05-10  4.940537e+00           NA         Sub-Saharan Africa
## 3413  2023-05-10  2.774493e+00           NA         Sub-Saharan Africa
## 3414  2023-05-10  2.469359e+00           NA         Sub-Saharan Africa
## 3415  2023-05-10  1.896992e+00           NA         Sub-Saharan Africa
## 3416  2023-05-10  2.187789e+00           NA         Sub-Saharan Africa
## 3417  2023-05-10  1.942285e+00           NA         Sub-Saharan Africa
## 3418  2023-05-10  2.589044e+00           NA         Sub-Saharan Africa
## 3419  2023-05-10  2.752432e+00           NA         Sub-Saharan Africa
## 3420  2023-05-10  1.952914e+00           NA         Sub-Saharan Africa
## 3421  2023-05-10  5.301961e+00           NA         Sub-Saharan Africa
## 3422  2023-05-10            NA           NA         Sub-Saharan Africa
## 3423  2023-05-10  1.967444e+01           NA         Sub-Saharan Africa
## 3424  2023-05-10  1.025141e+00           NA         Sub-Saharan Africa
## 3425  2023-05-10  7.884003e+00           NA         Sub-Saharan Africa
## 3426  2023-05-10  4.907080e-01           NA         Sub-Saharan Africa
## 3427  2023-05-10  3.097917e-01           NA         Sub-Saharan Africa
## 3428  2023-05-10  5.064449e+00           NA         Sub-Saharan Africa
## 3429  2023-05-10  2.014213e+00           NA         Sub-Saharan Africa
## 3430  2023-05-10  6.163811e+00           NA         Sub-Saharan Africa
## 3431  2023-05-10  3.109959e+00           NA         Sub-Saharan Africa
## 3432  2023-05-10  1.169772e+00           NA         Sub-Saharan Africa
## 3433  2023-05-10  5.750730e+00           NA         Sub-Saharan Africa
## 3434  2023-05-10  5.575538e+01           NA         Sub-Saharan Africa
## 3435  2023-05-10  5.990073e+00           NA         Sub-Saharan Africa
## 3436  2023-05-10 -2.641190e-01           NA         Sub-Saharan Africa
## 3437  2023-05-10  1.394878e-01           NA         Sub-Saharan Africa
## 3438  2023-05-10  3.440125e+00           NA         Sub-Saharan Africa
## 3439  2023-05-10  7.055720e-01           NA         Sub-Saharan Africa
## 3440  2023-05-10  1.531563e+00           NA         Sub-Saharan Africa
## 3441  2023-05-10  2.299675e+00           NA         Sub-Saharan Africa
## 3442  2023-05-10  6.618090e-01           NA         Sub-Saharan Africa
## 3443  2023-05-10  1.883767e-01           NA         Sub-Saharan Africa
## 3444  2023-05-10  2.362919e+01           NA         Sub-Saharan Africa
## 3445  2023-05-10  1.065609e+01           NA         Sub-Saharan Africa
## 3446  2023-05-10  1.357142e+00           NA         Sub-Saharan Africa
## 3447  2023-05-10  4.421033e+00           NA         Sub-Saharan Africa
## 3448  2023-05-10  3.356132e+00           NA         Sub-Saharan Africa
## 3449  2020-07-27            NA           NA                       <NA>
## 3450  2020-07-27            NA           NA                       <NA>
## 3451  2020-07-27            NA           NA                       <NA>
## 3452  2020-07-27            NA           NA                       <NA>
## 3453  2020-07-27            NA           NA                       <NA>
## 3454  2020-07-27            NA           NA                       <NA>
## 3455  2020-07-27            NA           NA                       <NA>
## 3456  2020-07-27            NA           NA                       <NA>
## 3457  2020-07-27            NA           NA                       <NA>
## 3458  2020-07-27            NA           NA                       <NA>
## 3459  2020-07-27            NA           NA                       <NA>
## 3460  2020-07-27            NA           NA                       <NA>
## 3461  2020-07-27            NA           NA                       <NA>
## 3462  2020-07-27            NA           NA                       <NA>
## 3463  2020-07-27            NA           NA                       <NA>
## 3464  2020-07-27            NA           NA                       <NA>
## 3465  2020-07-27            NA           NA                       <NA>
## 3466  2020-07-27            NA           NA                       <NA>
## 3467  2020-07-27            NA           NA                       <NA>
## 3468  2020-07-27            NA           NA                       <NA>
## 3469  2020-07-27            NA           NA                       <NA>
## 3470  2020-07-27            NA           NA                       <NA>
## 3471  2020-07-27            NA           NA                       <NA>
## 3472  2020-07-27            NA           NA                       <NA>
## 3473  2020-07-27            NA           NA                       <NA>
## 3474  2020-07-27            NA           NA                       <NA>
## 3475  2020-07-27            NA           NA                       <NA>
## 3476  2020-07-27            NA           NA                       <NA>
## 3477  2020-07-27            NA           NA                       <NA>
## 3478  2020-07-27            NA           NA                       <NA>
## 3479  2020-07-27            NA           NA                       <NA>
## 3480  2020-07-27            NA           NA                       <NA>
## 3481  2020-07-27            NA           NA                       <NA>
## 3482  2020-07-27            NA           NA                       <NA>
## 3483  2023-05-10  2.444427e+00           NA              North America
## 3484  2023-05-10            NA           NA              North America
## 3485  2023-05-10  4.335401e+00           NA              North America
## 3486  2023-05-10  3.234759e+00           NA              North America
## 3487  2023-05-10  3.266266e+00           NA              North America
## 3488  2023-05-10  2.144432e+00           NA              North America
## 3489  2023-05-10  1.306771e+00           NA              North America
## 3490  2023-05-10            NA           NA              North America
## 3491  2023-05-10 -8.767175e-01           NA              North America
## 3492  2023-05-10            NA           NA              North America
## 3493  2023-05-10  3.122887e+00           NA              North America
## 3494  2023-05-10  1.239049e+00           NA              North America
## 3495  2023-05-10  1.902620e+00           NA              North America
## 3496  2023-05-10            NA           NA              North America
## 3497  2023-05-10  4.951354e+00           NA              North America
## 3498  2023-05-10            NA           NA              North America
## 3499  2023-05-10            NA           NA              North America
## 3500  2023-05-10            NA           NA              North America
## 3501  2023-05-10            NA           NA              North America
## 3502  2023-05-10            NA           NA              North America
## 3503  2023-05-10            NA           NA              North America
## 3504  2023-05-10            NA           NA              North America
## 3505  2023-05-10  1.475198e+00           NA              North America
## 3506  2023-05-10 -2.311525e+00           NA              North America
## 3507  2023-05-10  1.737448e+00           NA              North America
## 3508  2023-05-10  3.254673e+00           NA              North America
## 3509  2023-05-10  3.785067e+00           NA              North America
## 3510  2023-05-10  1.658621e+00           NA              North America
## 3511  2023-05-10            NA           NA              North America
## 3512  2023-05-10            NA           NA              North America
## 3513  2023-05-10  4.058721e+00           NA              North America
## 3514  2023-05-10  2.573810e+00           NA              North America
## 3515  2023-05-10  2.564997e+00           NA              North America
## 3516  2023-05-10            NA           NA              North America
## 3517  2023-05-10  7.496805e-01           NA              North America
## 3518  2023-05-10            NA           NA              North America
## 3519  2023-05-10            NA           NA              North America
## 3520  2023-05-10  3.983739e+00           NA              North America
## 3521  2023-05-10  7.540300e-01           NA              North America
## 3522  2023-05-10            NA           NA              North America
## 3523  2023-05-10  1.944599e+00           NA              North America
## 3524  2023-05-10  2.833783e+00           NA              North America
## 3525  2023-05-10            NA           NA              North America
## 3526  2023-05-10  2.849946e+00           NA              North America
## 3527  2023-05-10            NA           NA              North America
## 3528  2023-05-10            NA           NA              North America
## 3529  2023-05-10  1.617414e+00           NA              North America
## 3530  2023-05-10 -1.793626e-01           NA              North America
## 3531  2023-05-10  1.211918e+00           NA              North America
## 3532  2023-05-10            NA           NA              North America
## 3533  2023-05-10            NA           NA              North America
## 3534  2023-05-10  8.069385e+00           NA              North America
## 3535  2023-05-10  3.280805e+00           NA              North America
## 3536  2023-05-10  4.828163e+00           NA              North America
## 3537  2023-05-10            NA           NA              North America
## 3538  2023-05-10            NA           NA              North America
## 3539  2023-05-10            NA           NA              North America
## 3540  2023-05-10  4.409082e+00           NA              North America
## 3541  2023-05-10            NA           NA              North America
## 3542  2023-05-10            NA           NA              North America
## 3543  2023-05-10            NA           NA              North America
## 3544  2023-05-10            NA           NA              North America
## 3545  2023-05-10            NA           NA              North America
## 3546  2020-07-27            NA 5.949175e+01                       <NA>
## 3547  2020-07-27            NA 6.188821e+01                       <NA>
## 3548  2020-07-27            NA 6.497249e+01                       <NA>
## 3549  2020-07-27            NA 6.807848e+01                       <NA>
## 3550  2020-07-27            NA 7.190849e+01                       <NA>
## 3551  2020-07-27            NA 7.298002e+01                       <NA>
## 3552  2020-07-27            NA 7.434115e+01                       <NA>
## 3553  2020-07-27            NA 7.446423e+01                       <NA>
## 3554  2020-07-27            NA 7.606429e+01                       <NA>
## 3555  2020-07-27            NA 7.725891e+01                       <NA>
## 3556  2020-07-27            NA 7.851144e+01                       <NA>
## 3557  2020-07-27            NA 7.929337e+01                       <NA>
## 3558  2020-07-27            NA 8.066898e+01                       <NA>
## 3559  2020-07-27            NA 8.286273e+01                       <NA>
## 3560  2020-07-27            NA 8.495511e+01                       <NA>
## 3561  2020-07-27            NA 8.687373e+01                       <NA>
## 3562  2020-07-27            NA 8.927020e+01                       <NA>
## 3563  2020-07-27            NA 9.092818e+01                       <NA>
## 3564  2020-07-27            NA 9.294092e+01                       <NA>
## 3565  2020-07-27            NA 9.480162e+01                       <NA>
## 3566  2020-07-27            NA 9.682884e+01                       <NA>
## 3567  2020-07-27            NA 9.912395e+01                       <NA>
## 3568  2020-07-27            NA 9.942079e+01                       <NA>
## 3569  2020-07-27            NA 1.011874e+02                       <NA>
## 3570  2020-07-27            NA 1.041341e+02                       <NA>
## 3571  2020-07-27            NA 1.057124e+02                       <NA>
## 3572  2020-07-27            NA 1.067043e+02                       <NA>
## 3573  2020-07-27            NA 1.087388e+02                       <NA>
## 3574  2020-07-27            NA 1.099624e+02                       <NA>
## 3575  2020-07-27            NA 1.115334e+02                       <NA>
## 3576  2020-07-27            NA 1.133145e+02                       <NA>
## 3577  2020-07-27            NA 1.158847e+02                       <NA>
## 3578  2020-07-27            NA 1.181436e+02                       <NA>
## 3579  2020-07-27            NA 1.187084e+02                       <NA>
## 3580  2020-07-27            NA           NA                       <NA>
## 3581  2020-07-27            NA           NA                       <NA>
## 3582  2020-07-27            NA           NA                       <NA>
## 3583  2020-07-27            NA           NA                       <NA>
## 3584  2020-07-27            NA           NA                       <NA>
## 3585  2020-07-27            NA 5.544514e+01                       <NA>
## 3586  2020-07-27            NA 5.865449e+01                       <NA>
## 3587  2020-07-27            NA 6.067927e+01                       <NA>
## 3588  2020-07-27            NA 6.574689e+01                       <NA>
## 3589  2020-07-27            NA 6.966780e+01                       <NA>
## 3590  2020-07-27            NA 7.562863e+01                       <NA>
## 3591  2020-07-27            NA 7.895194e+01                       <NA>
## 3592  2020-07-27            NA 8.239141e+01                       <NA>
## 3593  2020-07-27            NA 8.035022e+01                       <NA>
## 3594  2020-07-27            NA 8.304191e+01                       <NA>
## 3595  2020-07-27            NA 8.460686e+01                       <NA>
## 3596  2020-07-27            NA 8.561213e+01                       <NA>
## 3597  2020-07-27            NA 8.399336e+01                       <NA>
## 3598  2020-07-27            NA 8.435763e+01                       <NA>
## 3599  2020-07-27            NA 8.844262e+01                       <NA>
## 3600  2020-07-27            NA 9.234382e+01                       <NA>
## 3601  2020-07-27            NA 9.859959e+01                       <NA>
## 3602  2020-07-27            NA 9.957682e+01                       <NA>
## 3603  2020-07-27            NA 1.016467e+02                       <NA>
## 3604  2020-07-27            NA 1.061942e+02                       <NA>
## 3605  2020-07-27            NA 1.088920e+02                       <NA>
## 3606  2020-07-27            NA 1.105325e+02                       <NA>
## 3607  2020-07-27            NA 1.102686e+02                       <NA>
## 3608  2020-07-27            NA 1.104132e+02                       <NA>
## 3609  2020-07-27            NA 1.088588e+02                       <NA>
## 3610  2020-07-27            NA 1.097127e+02                       <NA>
## 3611  2020-07-27            NA 1.110918e+02                       <NA>
## 3612  2020-07-27            NA 1.123212e+02                       <NA>
## 3613  2020-07-27            NA 1.133581e+02                       <NA>
## 3614  2023-05-10            NA           NA                 Aggregates
## 3615  2023-05-10  4.609524e+00           NA                 Aggregates
## 3616  2023-05-10  6.823578e+00           NA                 Aggregates
## 3617  2023-05-10            NA           NA                 Aggregates
## 3618  2023-05-10  1.154479e+00           NA                 Aggregates
## 3619  2023-05-10  3.792007e+00           NA                 Aggregates
## 3620  2023-05-10  2.026358e+00           NA                 Aggregates
## 3621  2023-05-10  2.409320e+00           NA                 Aggregates
## 3622  2023-05-10  2.144177e+00           NA                 Aggregates
## 3623  2023-05-10  3.004190e+00           NA                 Aggregates
## 3624  2023-05-10  4.450868e+00           NA                 Aggregates
## 3625  2023-05-10  8.618085e-01           NA                 Aggregates
## 3626  2023-05-10  2.973815e+00           NA                 Aggregates
## 3627  2023-05-10            NA           NA                 Aggregates
## 3628  2023-05-10  1.207194e+00           NA                 Aggregates
## 3629  2023-05-10  7.337770e+00           NA                 Aggregates
## 3630  2023-05-10  2.505768e+00           NA                 Aggregates
## 3631  2023-05-10  2.536390e+00           NA                 Aggregates
## 3632  2023-05-10  1.553300e+00           NA                 Aggregates
## 3633  2023-05-10  1.989406e+00           NA                 Aggregates
## 3634  2023-05-10  6.010707e+00           NA                 Aggregates
## 3635  2023-05-10            NA           NA                 Aggregates
## 3636  2023-05-10  5.664289e+00           NA                 Aggregates
## 3637  2023-05-10  4.583563e+00           NA                 Aggregates
## 3638  2023-05-10  3.905565e+00           NA                 Aggregates
## 3639  2023-05-10  3.896553e+00           NA                 Aggregates
## 3640  2023-05-10  3.025697e+00           NA                 Aggregates
## 3641  2023-05-10  1.366284e+00           NA                 Aggregates
## 3642  2023-05-10  2.610279e+00           NA                 Aggregates
## 3643  2023-05-10  4.058148e+00           NA                 Aggregates
## 3644  2023-05-10  5.056846e+00           NA                 Aggregates
## 3645  2023-05-10  7.603026e+00           NA                 Aggregates
## 3646  2023-05-10  4.826656e+00           NA                 Aggregates
## 3647  2023-05-10  1.990850e+00           NA                 Aggregates
## 3648  2023-05-10  3.053151e+00           NA                 Aggregates
## 3649  2023-05-10            NA           NA                 Aggregates
## 3650  2023-05-10  1.351533e+00           NA                 Aggregates
## 3651  2023-05-10            NA           NA                 Aggregates
## 3652  2023-05-10  5.063904e+00           NA                 Aggregates
## 3653  2023-05-10  7.355999e+00           NA                 Aggregates
## 3654  2023-05-10            NA           NA                 Aggregates
## 3655  2023-05-10  4.498859e+00           NA                 Aggregates
## 3656  2023-05-10  1.467627e+01           NA                 Aggregates
## 3657  2023-05-10            NA           NA                 Aggregates
## 3658  2023-05-10  2.800182e+00           NA                 Aggregates
## 3659  2023-05-10  6.324377e+00           NA                 Aggregates
## 3660  2023-05-10  3.184365e-01           NA                 Aggregates
## 3661  2023-05-10  2.705324e+00           NA                 Aggregates
## 3662  2023-05-10  3.089865e+00           NA                 Aggregates
## 3663  2023-05-10 -6.029527e-01           NA                 Aggregates
## 3664  2023-05-10  6.363189e+00           NA                 Aggregates
## 3665  2023-05-10  1.241617e+01           NA                 Aggregates
## 3666  2023-05-10  3.310624e+00           NA                 Aggregates
## 3667  2023-05-10  2.949617e+00           NA                 Aggregates
## 3668  2023-05-10  1.493700e+00           NA                 Aggregates
## 3669  2023-05-10  1.150193e+01           NA                 Aggregates
## 3670  2023-05-10  2.544763e+01           NA                 Aggregates
## 3671  2023-05-10  3.244588e+00           NA                 Aggregates
## 3672  2023-05-10  5.766829e+00           NA                 Aggregates
## 3673  2023-05-10  3.519159e+00           NA                 Aggregates
## 3674  2023-05-10  8.094919e+00           NA                 Aggregates
## 3675  2023-05-10  1.111842e+01           NA                 Aggregates
## 3676  2023-05-10  1.617322e+01           NA                 Aggregates
## 3677  2020-07-27            NA           NA                       <NA>
## 3678  2020-07-27            NA           NA                       <NA>
## 3679  2020-07-27            NA           NA                       <NA>
## 3680  2020-07-27            NA           NA                       <NA>
## 3681  2020-07-27            NA           NA                       <NA>
## 3682  2020-07-27            NA           NA                       <NA>
## 3683  2020-07-27            NA           NA                       <NA>
## 3684  2020-07-27            NA           NA                       <NA>
## 3685  2020-07-27            NA           NA                       <NA>
## 3686  2020-07-27            NA           NA                       <NA>
## 3687  2020-07-27            NA           NA                       <NA>
## 3688  2020-07-27            NA           NA                       <NA>
## 3689  2020-07-27            NA           NA                       <NA>
## 3690  2020-07-27            NA           NA                       <NA>
## 3691  2020-07-27            NA           NA                       <NA>
## 3692  2020-07-27            NA           NA                       <NA>
## 3693  2020-07-27            NA           NA                       <NA>
## 3694  2020-07-27            NA           NA                       <NA>
## 3695  2020-07-27            NA           NA                       <NA>
## 3696  2020-07-27            NA           NA                       <NA>
## 3697  2020-07-27            NA           NA                       <NA>
## 3698  2020-07-27            NA           NA                       <NA>
## 3699  2020-07-27            NA           NA                       <NA>
## 3700  2020-07-27            NA           NA                       <NA>
## 3701  2020-07-27            NA           NA                       <NA>
## 3702  2020-07-27            NA           NA                       <NA>
## 3703  2020-07-27            NA           NA                       <NA>
## 3704  2020-07-27            NA           NA                       <NA>
## 3705  2020-07-27            NA           NA                       <NA>
## 3706  2020-07-27            NA           NA                       <NA>
## 3707  2020-07-27            NA           NA                       <NA>
## 3708  2020-07-27            NA           NA                       <NA>
## 3709  2020-07-27            NA           NA                       <NA>
## 3710  2020-07-27            NA           NA                       <NA>
## 3711  2023-05-10            NA           NA  Latin America & Caribbean
## 3712  2023-05-10            NA           NA  Latin America & Caribbean
## 3713  2023-05-10            NA           NA  Latin America & Caribbean
## 3714  2023-05-10            NA           NA  Latin America & Caribbean
## 3715  2023-05-10            NA           NA  Latin America & Caribbean
## 3716  2023-05-10            NA           NA  Latin America & Caribbean
## 3717  2023-05-10            NA           NA  Latin America & Caribbean
## 3718  2023-05-10            NA           NA  Latin America & Caribbean
## 3719  2023-05-10            NA           NA  Latin America & Caribbean
## 3720  2023-05-10            NA           NA  Latin America & Caribbean
## 3721  2023-05-10            NA           NA  Latin America & Caribbean
## 3722  2023-05-10            NA           NA  Latin America & Caribbean
## 3723  2023-05-10            NA           NA  Latin America & Caribbean
## 3724  2023-05-10            NA           NA  Latin America & Caribbean
## 3725  2023-05-10  3.261411e+00           NA  Latin America & Caribbean
## 3726  2023-05-10            NA           NA  Latin America & Caribbean
## 3727  2023-05-10            NA           NA  Latin America & Caribbean
## 3728  2023-05-10            NA           NA  Latin America & Caribbean
## 3729  2023-05-10            NA           NA  Latin America & Caribbean
## 3730  2023-05-10            NA           NA  Latin America & Caribbean
## 3731  2023-05-10  5.765950e-02           NA  Latin America & Caribbean
## 3732  2023-05-10            NA           NA  Latin America & Caribbean
## 3733  2023-05-10            NA           NA  Latin America & Caribbean
## 3734  2023-05-10            NA           NA  Latin America & Caribbean
## 3735  2023-05-10            NA           NA  Latin America & Caribbean
## 3736  2023-05-10            NA           NA  Latin America & Caribbean
## 3737  2023-05-10  1.986798e+00           NA  Latin America & Caribbean
## 3738  2023-05-10  1.378203e+00           NA  Latin America & Caribbean
## 3739  2023-05-10  1.261413e+00           NA  Latin America & Caribbean
## 3740  2023-05-10            NA           NA  Latin America & Caribbean
## 3741  2023-05-10            NA           NA  Latin America & Caribbean
## 3742  2023-05-10            NA           NA  Latin America & Caribbean
## 3743  2023-05-10            NA           NA  Latin America & Caribbean
## 3744  2023-05-10            NA           NA  Latin America & Caribbean
## 3745  2023-05-10            NA           NA  Latin America & Caribbean
## 3746  2023-05-10  6.103758e-01           NA  Latin America & Caribbean
## 3747  2023-05-10            NA           NA  Latin America & Caribbean
## 3748  2023-05-10            NA           NA  Latin America & Caribbean
## 3749  2023-05-10 -2.064058e-01           NA  Latin America & Caribbean
## 3750  2023-05-10            NA           NA  Latin America & Caribbean
## 3751  2023-05-10  8.867284e-01           NA  Latin America & Caribbean
## 3752  2023-05-10 -4.604530e-01           NA  Latin America & Caribbean
## 3753  2023-05-10            NA           NA  Latin America & Caribbean
## 3754  2023-05-10  3.464415e+00           NA  Latin America & Caribbean
## 3755  2023-05-10            NA           NA  Latin America & Caribbean
## 3756  2023-05-10            NA           NA  Latin America & Caribbean
## 3757  2023-05-10            NA           NA  Latin America & Caribbean
## 3758  2023-05-10  3.419006e-01           NA  Latin America & Caribbean
## 3759  2023-05-10            NA           NA  Latin America & Caribbean
## 3760  2023-05-10            NA           NA  Latin America & Caribbean
## 3761  2023-05-10  3.047727e+00           NA  Latin America & Caribbean
## 3762  2023-05-10  3.072849e+00           NA  Latin America & Caribbean
## 3763  2023-05-10  1.000092e+00           NA  Latin America & Caribbean
## 3764  2023-05-10            NA           NA  Latin America & Caribbean
## 3765  2023-05-10            NA           NA  Latin America & Caribbean
## 3766  2023-05-10            NA           NA  Latin America & Caribbean
## 3767  2023-05-10            NA           NA  Latin America & Caribbean
## 3768  2023-05-10  2.662799e+00           NA  Latin America & Caribbean
## 3769  2023-05-10            NA           NA  Latin America & Caribbean
## 3770  2023-05-10            NA           NA  Latin America & Caribbean
## 3771  2023-05-10            NA           NA  Latin America & Caribbean
## 3772  2023-05-10            NA           NA  Latin America & Caribbean
## 3773  2023-05-10            NA           NA  Latin America & Caribbean
## 3774  2020-07-27            NA 5.129662e+01                       <NA>
## 3775  2020-07-27            NA 4.926298e+01                       <NA>
## 3776  2020-07-27            NA 4.960245e+01                       <NA>
## 3777  2020-07-27            NA 4.959633e+01                       <NA>
## 3778  2020-07-27            NA 4.822629e+01                       <NA>
## 3779  2020-07-27            NA 4.772782e+01                       <NA>
## 3780  2020-07-27            NA 4.633639e+01                       <NA>
## 3781  2020-07-27            NA 5.772170e+01                       <NA>
## 3782  2020-07-27            NA 6.879815e+01                       <NA>
## 3783  2020-07-27            NA 7.136087e+01                       <NA>
## 3784  2020-07-27            NA 7.251070e+01                       <NA>
## 3785  2020-07-27            NA 7.114372e+01                       <NA>
## 3786  2020-07-27            NA 7.013760e+01                       <NA>
## 3787  2020-07-27            NA 7.238440e+01                       <NA>
## 3788  2020-07-27            NA 7.516023e+01                       <NA>
## 3789  2020-07-27            NA 7.691284e+01                       <NA>
## 3790  2020-07-27            NA 8.009295e+01                       <NA>
## 3791  2020-07-27            NA 7.843791e+01                       <NA>
## 3792  2020-07-27            NA 8.069969e+01                       <NA>
## 3793  2020-07-27            NA 8.610274e+01                       <NA>
## 3794  2020-07-27            NA 8.690212e+01                       <NA>
## 3795  2020-07-27            NA 9.496023e+01                       <NA>
## 3796  2020-07-27            NA 9.830274e+01                       <NA>
## 3797  2020-07-27            NA 9.977063e+01                       <NA>
## 3798  2020-07-27            NA 1.010682e+02                       <NA>
## 3799  2020-07-27            NA 1.069021e+02                       <NA>
## 3800  2020-07-27            NA 1.085076e+02                       <NA>
## 3801  2020-07-27            NA 1.359414e+02                       <NA>
## 3802  2020-07-27            NA 1.864331e+02                       <NA>
## 3803  2020-07-27            NA 2.126032e+02                       <NA>
## 3804  2020-07-27            NA 2.214916e+02                       <NA>
## 3805  2020-07-27            NA 2.250624e+02                       <NA>
## 3806  2020-07-27            NA 2.311061e+02                       <NA>
## 3807  2020-07-27            NA 2.322331e+02                       <NA>
## 3808  2023-05-10  4.888747e+00           NA         Sub-Saharan Africa
## 3809  2023-05-10  7.116284e-01           NA         Sub-Saharan Africa
## 3810  2023-05-10  1.982161e+00           NA         Sub-Saharan Africa
## 3811  2023-05-10  1.110288e+01           NA         Sub-Saharan Africa
## 3812  2023-05-10  4.674476e+00           NA         Sub-Saharan Africa
## 3813  2023-05-10  5.381000e+00           NA         Sub-Saharan Africa
## 3814  2023-05-10  4.635019e+00           NA         Sub-Saharan Africa
## 3815  2023-05-10  1.137246e+01           NA         Sub-Saharan Africa
## 3816  2023-05-10  2.599663e+01           NA         Sub-Saharan Africa
## 3817  2023-05-10  2.327837e+00           NA         Sub-Saharan Africa
## 3818  2023-05-10  7.077071e+00           NA         Sub-Saharan Africa
## 3819  2023-05-10  2.456205e+00           NA         Sub-Saharan Africa
## 3820  2023-05-10  9.228394e+00           NA         Sub-Saharan Africa
## 3821  2023-05-10  1.419401e+00           NA         Sub-Saharan Africa
## 3822  2023-05-10  3.414518e+01           NA         Sub-Saharan Africa
## 3823  2023-05-10  8.506601e+00           NA         Sub-Saharan Africa
## 3824  2023-05-10            NA           NA         Sub-Saharan Africa
## 3825  2023-05-10  3.270565e+00           NA         Sub-Saharan Africa
## 3826  2023-05-10  4.490880e+00           NA         Sub-Saharan Africa
## 3827  2023-05-10 -2.371882e+00           NA         Sub-Saharan Africa
## 3828  2023-05-10 -2.303351e+00           NA         Sub-Saharan Africa
## 3829  2023-05-10  1.387275e+01           NA         Sub-Saharan Africa
## 3830  2023-05-10  2.624056e+00           NA         Sub-Saharan Africa
## 3831  2023-05-10  2.487487e+00           NA         Sub-Saharan Africa
## 3832  2023-05-10  2.199490e+00           NA         Sub-Saharan Africa
## 3833  2023-05-10  9.897976e+00           NA         Sub-Saharan Africa
## 3834  2023-05-10 -3.433020e+00           NA         Sub-Saharan Africa
## 3835  2023-05-10  1.836645e+00           NA         Sub-Saharan Africa
## 3836  2023-05-10  6.443706e+00           NA         Sub-Saharan Africa
## 3837  2023-05-10  1.932622e+01           NA         Sub-Saharan Africa
## 3838  2023-05-10  2.091423e+01           NA         Sub-Saharan Africa
## 3839  2023-05-10 -3.429037e+00           NA         Sub-Saharan Africa
## 3840  2023-05-10  1.189380e+01           NA         Sub-Saharan Africa
## 3841  2023-05-10  6.181036e+00           NA         Sub-Saharan Africa
## 3842  2023-05-10  1.826538e+01           NA         Sub-Saharan Africa
## 3843  2023-05-10  7.541971e+00           NA         Sub-Saharan Africa
## 3844  2023-05-10  2.441257e+01           NA         Sub-Saharan Africa
## 3845  2023-05-10            NA           NA         Sub-Saharan Africa
## 3846  2023-05-10  4.084715e+00           NA         Sub-Saharan Africa
## 3847  2023-05-10 -4.141541e-01           NA         Sub-Saharan Africa
## 3848  2023-05-10  4.259387e-01           NA         Sub-Saharan Africa
## 3849  2023-05-10  1.617240e+01           NA         Sub-Saharan Africa
## 3850  2023-05-10 -4.439786e+00           NA         Sub-Saharan Africa
## 3851  2023-05-10  8.233810e-01           NA         Sub-Saharan Africa
## 3852  2023-05-10  2.980114e+00           NA         Sub-Saharan Africa
## 3853  2023-05-10 -1.224117e+00           NA         Sub-Saharan Africa
## 3854  2023-05-10  3.334046e+00           NA         Sub-Saharan Africa
## 3855  2023-05-10  4.009115e+00           NA         Sub-Saharan Africa
## 3856  2023-05-10  4.211309e+00           NA         Sub-Saharan Africa
## 3857  2023-05-10  2.782647e+00           NA         Sub-Saharan Africa
## 3858  2023-05-10  4.475411e+00           NA         Sub-Saharan Africa
## 3859  2023-05-10  1.336419e+00           NA         Sub-Saharan Africa
## 3860  2023-05-10  4.938268e+00           NA         Sub-Saharan Africa
## 3861  2023-05-10  1.092663e+01           NA         Sub-Saharan Africa
## 3862  2023-05-10  1.838232e+00           NA         Sub-Saharan Africa
## 3863  2023-05-10 -3.543046e+00           NA         Sub-Saharan Africa
## 3864  2023-05-10  2.708263e+00           NA         Sub-Saharan Africa
## 3865  2023-05-10 -3.852688e+00           NA         Sub-Saharan Africa
## 3866  2023-05-10 -7.744172e-01           NA         Sub-Saharan Africa
## 3867  2023-05-10  5.039139e+00           NA         Sub-Saharan Africa
## 3868  2023-05-10 -3.898156e-01           NA         Sub-Saharan Africa
## 3869  2023-05-10  4.188437e+00           NA         Sub-Saharan Africa
## 3870  2023-05-10  4.644237e+00           NA         Sub-Saharan Africa
## 3871  2023-05-10            NA           NA                 Aggregates
## 3872  2023-05-10  3.923499e+00           NA                 Aggregates
## 3873  2023-05-10  3.527174e+00           NA                 Aggregates
## 3874  2023-05-10            NA           NA                 Aggregates
## 3875  2023-05-10  3.937823e+00           NA                 Aggregates
## 3876  2023-05-10  1.795234e+01           NA                 Aggregates
## 3877  2023-05-10            NA           NA                 Aggregates
## 3878  2023-05-10  1.364705e+00           NA                 Aggregates
## 3879  2023-05-10  2.370658e+00           NA                 Aggregates
## 3880  2023-05-10  5.443677e+00           NA                 Aggregates
## 3881  2023-05-10  3.032537e+00           NA                 Aggregates
## 3882  2023-05-10  5.508801e+00           NA                 Aggregates
## 3883  2023-05-10  4.335846e+00           NA                 Aggregates
## 3884  2023-05-10            NA           NA                 Aggregates
## 3885  2023-05-10  5.416598e+00           NA                 Aggregates
## 3886  2023-05-10            NA           NA                 Aggregates
## 3887  2023-05-10            NA           NA                 Aggregates
## 3888  2023-05-10            NA           NA                 Aggregates
## 3889  2023-05-10  2.596063e+01           NA                 Aggregates
## 3890  2023-05-10  2.836255e+01           NA                 Aggregates
## 3891  2023-05-10            NA           NA                 Aggregates
## 3892  2023-05-10  3.116064e+00           NA                 Aggregates
## 3893  2023-05-10  2.224248e+00           NA                 Aggregates
## 3894  2023-05-10  3.160044e+00           NA                 Aggregates
## 3895  2023-05-10  4.916628e+00           NA                 Aggregates
## 3896  2023-05-10            NA           NA                 Aggregates
## 3897  2023-05-10            NA           NA                 Aggregates
## 3898  2023-05-10  6.164510e+00           NA                 Aggregates
## 3899  2023-05-10            NA           NA                 Aggregates
## 3900  2023-05-10            NA           NA                 Aggregates
## 3901  2023-05-10  2.733522e+01           NA                 Aggregates
## 3902  2023-05-10            NA           NA                 Aggregates
## 3903  2023-05-10            NA           NA                 Aggregates
## 3904  2023-05-10  9.282396e-01           NA                 Aggregates
## 3905  2023-05-10  1.340740e+00           NA                 Aggregates
## 3906  2023-05-10  1.141451e+00           NA                 Aggregates
## 3907  2023-05-10  2.979021e+00           NA                 Aggregates
## 3908  2023-05-10            NA           NA                 Aggregates
## 3909  2023-05-10            NA           NA                 Aggregates
## 3910  2023-05-10            NA           NA                 Aggregates
## 3911  2023-05-10            NA           NA                 Aggregates
## 3912  2023-05-10            NA           NA                 Aggregates
## 3913  2023-05-10  5.565268e+00           NA                 Aggregates
## 3914  2023-05-10            NA           NA                 Aggregates
## 3915  2023-05-10            NA           NA                 Aggregates
## 3916  2023-05-10  1.005043e+00           NA                 Aggregates
## 3917  2023-05-10            NA           NA                 Aggregates
## 3918  2023-05-10            NA           NA                 Aggregates
## 3919  2023-05-10  8.094959e+00           NA                 Aggregates
## 3920  2023-05-10            NA           NA                 Aggregates
## 3921  2023-05-10  5.121488e+00           NA                 Aggregates
## 3922  2023-05-10            NA           NA                 Aggregates
## 3923  2023-05-10            NA           NA                 Aggregates
## 3924  2023-05-10            NA           NA                 Aggregates
## 3925  2023-05-10            NA           NA                 Aggregates
## 3926  2023-05-10  2.947877e+00           NA                 Aggregates
## 3927  2023-05-10            NA           NA                 Aggregates
## 3928  2023-05-10            NA           NA                 Aggregates
## 3929  2023-05-10            NA           NA                 Aggregates
## 3930  2023-05-10            NA           NA                 Aggregates
## 3931  2023-05-10            NA           NA                 Aggregates
## 3932  2023-05-10  9.922473e+00           NA                 Aggregates
## 3933  2023-05-10            NA           NA                 Aggregates
## 3934  2020-07-27            NA 4.178027e+01                       <NA>
## 3935  2020-07-27            NA 4.667014e+01                       <NA>
## 3936  2020-07-27            NA 4.494840e+01                       <NA>
## 3937  2020-07-27            NA 4.461656e+01                       <NA>
## 3938  2020-07-27            NA 4.604157e+01                       <NA>
## 3939  2020-07-27            NA 4.460826e+01                       <NA>
## 3940  2020-07-27            NA 4.084871e+01                       <NA>
## 3941  2020-07-27            NA 5.789279e+01                       <NA>
## 3942  2020-07-27            NA 6.323650e+01                       <NA>
## 3943  2020-07-27            NA 7.040175e+01                       <NA>
## 3944  2020-07-27            NA 7.432471e+01                       <NA>
## 3945  2020-07-27            NA 7.749010e+01                       <NA>
## 3946  2020-07-27            NA 7.127148e+01                       <NA>
## 3947  2020-07-27            NA 7.399587e+01                       <NA>
## 3948  2020-07-27            NA 8.319453e+01                       <NA>
## 3949  2020-07-27            NA 8.751384e+01                       <NA>
## 3950  2020-07-27            NA 8.598010e+01                       <NA>
## 3951  2020-07-27            NA 8.137552e+01                       <NA>
## 3952  2020-07-27            NA 8.779634e+01                       <NA>
## 3953  2020-07-27            NA 9.485194e+01                       <NA>
## 3954  2020-07-27            NA 8.633921e+01                       <NA>
## 3955  2020-07-27            NA 9.522953e+01                       <NA>
## 3956  2020-07-27            NA 1.047072e+02                       <NA>
## 3957  2020-07-27            NA 1.025315e+02                       <NA>
## 3958  2020-07-27            NA 9.873342e+01                       <NA>
## 3959  2020-07-27            NA 1.125741e+02                       <NA>
## 3960  2020-07-27            NA 1.127378e+02                       <NA>
## 3961  2020-07-27            NA 1.146328e+02                       <NA>
## 3962  2020-07-27            NA 1.188397e+02                       <NA>
## 3963  2020-07-27            NA 1.146327e+02                       <NA>
## 3964  2020-07-27            NA           NA                       <NA>
## 3965  2020-07-27            NA           NA                       <NA>
## 3966  2020-07-27            NA           NA                       <NA>
## 3967  2020-07-27            NA           NA                       <NA>
## 3968  2023-05-10 -8.480017e+00           NA         Sub-Saharan Africa
## 3969  2023-05-10  5.665702e+00           NA         Sub-Saharan Africa
## 3970  2023-05-10 -5.454896e+00           NA         Sub-Saharan Africa
## 3971  2023-05-10            NA           NA         Sub-Saharan Africa
## 3972  2023-05-10  2.825191e-02           NA         Sub-Saharan Africa
## 3973  2023-05-10 -7.572866e+00           NA         Sub-Saharan Africa
## 3974  2023-05-10  1.907819e+00           NA         Sub-Saharan Africa
## 3975  2023-05-10  2.856034e+00           NA         Sub-Saharan Africa
## 3976  2023-05-10  7.900469e-02           NA         Sub-Saharan Africa
## 3977  2023-05-10  3.735693e+00           NA         Sub-Saharan Africa
## 3978  2023-05-10  2.067340e+00           NA         Sub-Saharan Africa
## 3979  2023-05-10  6.749409e+00           NA         Sub-Saharan Africa
## 3980  2023-05-10  1.212695e-02           NA         Sub-Saharan Africa
## 3981  2023-05-10  8.449525e+00           NA         Sub-Saharan Africa
## 3982  2023-05-10  5.289805e+00           NA         Sub-Saharan Africa
## 3983  2023-05-10  9.899776e+00           NA         Sub-Saharan Africa
## 3984  2023-05-10  2.031465e+00           NA         Sub-Saharan Africa
## 3985  2023-05-10  1.097246e+00           NA         Sub-Saharan Africa
## 3986  2023-05-10  8.580399e+00           NA         Sub-Saharan Africa
## 3987  2023-05-10  9.984428e+00           NA         Sub-Saharan Africa
## 3988  2023-05-10  2.811193e+01           NA         Sub-Saharan Africa
## 3989  2023-05-10 -9.558754e+00           NA         Sub-Saharan Africa
## 3990  2023-05-10  3.279288e+00           NA         Sub-Saharan Africa
## 3991  2023-05-10  8.833127e+00           NA         Sub-Saharan Africa
## 3992  2023-05-10  3.301934e+00           NA         Sub-Saharan Africa
## 3993  2023-05-10  8.189758e+00           NA         Sub-Saharan Africa
## 3994  2023-05-10  8.734904e+00           NA         Sub-Saharan Africa
## 3995  2023-05-10  5.553684e+00           NA         Sub-Saharan Africa
## 3996  2023-05-10  1.145845e+01           NA         Sub-Saharan Africa
## 3997  2023-05-10  6.457853e-01           NA         Sub-Saharan Africa
## 3998  2023-05-10  5.642065e+00           NA         Sub-Saharan Africa
## 3999  2023-05-10 -1.314604e+00           NA         Sub-Saharan Africa
## 4000  2023-05-10 -1.400839e+00           NA         Sub-Saharan Africa
## 4001  2023-05-10  5.982875e+00           NA         Sub-Saharan Africa
## 4002  2023-05-10  1.379765e+01           NA         Sub-Saharan Africa
## 4003  2023-05-10  5.014658e+00           NA         Sub-Saharan Africa
## 4004  2023-05-10  3.073499e+00           NA         Sub-Saharan Africa
## 4005  2023-05-10  7.199988e+00           NA         Sub-Saharan Africa
## 4006  2023-05-10  8.618019e+00           NA         Sub-Saharan Africa
## 4007  2023-05-10  9.734256e+00           NA         Sub-Saharan Africa
## 4008  2023-05-10  8.991749e+00           NA         Sub-Saharan Africa
## 4009  2023-05-10  8.231252e+00           NA         Sub-Saharan Africa
## 4010  2023-05-10  8.220701e+00           NA         Sub-Saharan Africa
## 4011  2023-05-10  6.713594e+00           NA         Sub-Saharan Africa
## 4012  2023-05-10  8.012329e+00           NA         Sub-Saharan Africa
## 4013  2023-05-10  8.054758e+00           NA         Sub-Saharan Africa
## 4014  2023-05-10 -1.290655e+01           NA         Sub-Saharan Africa
## 4015  2023-05-10  3.859552e+00           NA         Sub-Saharan Africa
## 4016  2023-05-10            NA           NA         Sub-Saharan Africa
## 4017  2023-05-10  3.782785e+00           NA         Sub-Saharan Africa
## 4018  2023-05-10 -4.141367e+00           NA         Sub-Saharan Africa
## 4019  2023-05-10  1.534580e+00           NA         Sub-Saharan Africa
## 4020  2023-05-10  4.354496e+01           NA         Sub-Saharan Africa
## 4021  2023-05-10 -1.252611e+00           NA         Sub-Saharan Africa
## 4022  2023-05-10 -5.113195e+00           NA         Sub-Saharan Africa
## 4023  2023-05-10 -3.133082e+00           NA         Sub-Saharan Africa
## 4024  2023-05-10  6.391195e+00           NA         Sub-Saharan Africa
## 4025  2023-05-10  8.648820e+00           NA         Sub-Saharan Africa
## 4026  2023-05-10  5.062828e+00           NA         Sub-Saharan Africa
## 4027  2023-05-10  9.220784e+00           NA         Sub-Saharan Africa
## 4028  2023-05-10  2.406635e+01           NA         Sub-Saharan Africa
## 4029  2023-05-10 -1.693283e+01           NA         Sub-Saharan Africa
## 4030  2023-05-10  9.361930e+00           NA         Sub-Saharan Africa
## 4031  2023-05-10            NA           NA      Europe & Central Asia
## 4032  2023-05-10  3.892318e+00           NA      Europe & Central Asia
## 4033  2023-05-10            NA           NA      Europe & Central Asia
## 4034  2023-05-10            NA           NA      Europe & Central Asia
## 4035  2023-05-10            NA           NA      Europe & Central Asia
## 4036  2023-05-10            NA           NA      Europe & Central Asia
## 4037  2023-05-10            NA           NA      Europe & Central Asia
## 4038  2023-05-10            NA           NA      Europe & Central Asia
## 4039  2023-05-10            NA           NA      Europe & Central Asia
## 4040  2023-05-10  3.797572e+00           NA      Europe & Central Asia
## 4041  2023-05-10            NA           NA      Europe & Central Asia
## 4042  2023-05-10  3.336334e+00           NA      Europe & Central Asia
## 4043  2023-05-10  3.301635e+00           NA      Europe & Central Asia
## 4044  2023-05-10            NA           NA      Europe & Central Asia
## 4045  2023-05-10            NA           NA      Europe & Central Asia
## 4046  2023-05-10            NA           NA      Europe & Central Asia
## 4047  2023-05-10            NA           NA      Europe & Central Asia
## 4048  2023-05-10            NA           NA      Europe & Central Asia
## 4049  2023-05-10            NA           NA      Europe & Central Asia
## 4050  2023-05-10            NA           NA      Europe & Central Asia
## 4051  2023-05-10            NA           NA      Europe & Central Asia
## 4052  2023-05-10            NA           NA      Europe & Central Asia
## 4053  2023-05-10            NA           NA      Europe & Central Asia
## 4054  2023-05-10            NA           NA      Europe & Central Asia
## 4055  2023-05-10            NA           NA      Europe & Central Asia
## 4056  2023-05-10            NA           NA      Europe & Central Asia
## 4057  2023-05-10            NA           NA      Europe & Central Asia
## 4058  2023-05-10            NA           NA      Europe & Central Asia
## 4059  2023-05-10            NA           NA      Europe & Central Asia
## 4060  2023-05-10  2.504710e+00           NA      Europe & Central Asia
## 4061  2023-05-10            NA           NA      Europe & Central Asia
## 4062  2023-05-10            NA           NA      Europe & Central Asia
## 4063  2023-05-10            NA           NA      Europe & Central Asia
## 4064  2023-05-10            NA           NA      Europe & Central Asia
## 4065  2023-05-10            NA           NA      Europe & Central Asia
## 4066  2023-05-10            NA           NA      Europe & Central Asia
## 4067  2023-05-10            NA           NA      Europe & Central Asia
## 4068  2023-05-10  3.278931e+00           NA      Europe & Central Asia
## 4069  2023-05-10            NA           NA      Europe & Central Asia
## 4070  2023-05-10            NA           NA      Europe & Central Asia
## 4071  2023-05-10            NA           NA      Europe & Central Asia
## 4072  2023-05-10            NA           NA      Europe & Central Asia
## 4073  2023-05-10            NA           NA      Europe & Central Asia
## 4074  2023-05-10            NA           NA      Europe & Central Asia
## 4075  2023-05-10  4.353714e+00           NA      Europe & Central Asia
## 4076  2023-05-10            NA           NA      Europe & Central Asia
## 4077  2023-05-10            NA           NA      Europe & Central Asia
## 4078  2023-05-10            NA           NA      Europe & Central Asia
## 4079  2023-05-10            NA           NA      Europe & Central Asia
## 4080  2023-05-10            NA           NA      Europe & Central Asia
## 4081  2023-05-10            NA           NA      Europe & Central Asia
## 4082  2023-05-10            NA           NA      Europe & Central Asia
## 4083  2023-05-10  3.909630e+00           NA      Europe & Central Asia
## 4084  2023-05-10  4.382726e+00           NA      Europe & Central Asia
## 4085  2023-05-10            NA           NA      Europe & Central Asia
## 4086  2023-05-10            NA           NA      Europe & Central Asia
## 4087  2023-05-10            NA           NA      Europe & Central Asia
## 4088  2023-05-10            NA           NA      Europe & Central Asia
## 4089  2023-05-10            NA           NA      Europe & Central Asia
## 4090  2023-05-10            NA           NA      Europe & Central Asia
## 4091  2023-05-10            NA           NA      Europe & Central Asia
## 4092  2023-05-10            NA           NA      Europe & Central Asia
## 4093  2023-05-10            NA           NA      Europe & Central Asia
## 4094  2020-07-27            NA 1.777510e+01                       <NA>
## 4095  2020-07-27            NA 2.038527e+01                       <NA>
## 4096  2020-07-27            NA 2.385644e+01                       <NA>
## 4097  2020-07-27            NA 3.006785e+01                       <NA>
## 4098  2020-07-27            NA 3.661796e+01                       <NA>
## 4099  2020-07-27            NA 4.226659e+01                       <NA>
## 4100  2020-07-27            NA 4.764616e+01                       <NA>
## 4101  2020-07-27            NA 5.309836e+01                       <NA>
## 4102  2020-07-27            NA 5.746977e+01                       <NA>
## 4103  2020-07-27            NA 6.169900e+01                       <NA>
## 4104  2020-07-27            NA 6.548356e+01                       <NA>
## 4105  2020-07-27            NA 6.882992e+01                       <NA>
## 4106  2020-07-27            NA 7.112669e+01                       <NA>
## 4107  2020-07-27            NA 7.386031e+01                       <NA>
## 4108  2020-07-27            NA 7.649644e+01                       <NA>
## 4109  2020-07-27            NA 7.840072e+01                       <NA>
## 4110  2020-07-27            NA 8.060395e+01                       <NA>
## 4111  2020-07-27            NA 8.145410e+01                       <NA>
## 4112  2020-07-27            NA 8.394022e+01                       <NA>
## 4113  2020-07-27            NA 8.678764e+01                       <NA>
## 4114  2020-07-27            NA 9.061347e+01                       <NA>
## 4115  2020-07-27            NA 9.851137e+01                       <NA>
## 4116  2020-07-27            NA 9.997370e+01                       <NA>
## 4117  2020-07-27            NA 1.013830e+02                       <NA>
## 4118  2020-07-27            NA 1.047705e+02                       <NA>
## 4119  2020-07-27            NA 1.079202e+02                       <NA>
## 4120  2020-07-27            NA 1.098559e+02                       <NA>
## 4121  2020-07-27            NA 1.150359e+02                       <NA>
## 4122  2020-07-27            NA 1.200387e+02                       <NA>
## 4123  2020-07-27            NA 1.245841e+02                       <NA>
## 4124  2020-07-27            NA 1.273031e+02                       <NA>
## 4125  2020-07-27            NA 1.302554e+02                       <NA>
## 4126  2020-07-27            NA 1.331915e+02                       <NA>
## 4127  2020-07-27            NA 1.365217e+02                       <NA>
## 4128  2023-05-10  7.789902e-01           NA  Latin America & Caribbean
## 4129  2023-05-10  1.375603e+01           NA  Latin America & Caribbean
## 4130  2023-05-10  2.584842e+01           NA  Latin America & Caribbean
## 4131  2023-05-10  3.330581e+00           NA  Latin America & Caribbean
## 4132  2023-05-10  2.171788e+01           NA  Latin America & Caribbean
## 4133  2023-05-10  7.559883e+00           NA  Latin America & Caribbean
## 4134  2023-05-10  4.277147e+00           NA  Latin America & Caribbean
## 4135  2023-05-10  8.817322e+00           NA  Latin America & Caribbean
## 4136  2023-05-10  4.560043e+00           NA  Latin America & Caribbean
## 4137  2023-05-10  4.079776e+00           NA  Latin America & Caribbean
## 4138  2023-05-10  1.346438e+01           NA  Latin America & Caribbean
## 4139  2023-05-10  2.578359e+00           NA  Latin America & Caribbean
## 4140  2023-05-10  3.340660e+00           NA  Latin America & Caribbean
## 4141  2023-05-10  4.300301e+00           NA  Latin America & Caribbean
## 4142  2023-05-10  1.168072e+01           NA  Latin America & Caribbean
## 4143  2023-05-10  1.216442e+01           NA  Latin America & Caribbean
## 4144  2023-05-10            NA           NA  Latin America & Caribbean
## 4145  2023-05-10  4.797769e+01           NA  Latin America & Caribbean
## 4146  2023-05-10  1.446398e+01           NA  Latin America & Caribbean
## 4147  2023-05-10  2.139098e+01           NA  Latin America & Caribbean
## 4148  2023-05-10  2.187768e+00           NA  Latin America & Caribbean
## 4149  2023-05-10  7.024762e+00           NA  Latin America & Caribbean
## 4150  2023-05-10  3.111325e-01           NA  Latin America & Caribbean
## 4151  2023-05-10  1.294852e+01           NA  Latin America & Caribbean
## 4152  2023-05-10  8.857441e+00           NA  Latin America & Caribbean
## 4153  2023-05-10  3.346867e+01           NA  Latin America & Caribbean
## 4154  2023-05-10  3.577795e+00           NA  Latin America & Caribbean
## 4155  2023-05-10  7.656347e+00           NA  Latin America & Caribbean
## 4156  2023-05-10  2.473085e+02           NA  Latin America & Caribbean
## 4157  2023-05-10  7.120315e+00           NA  Latin America & Caribbean
## 4158  2023-05-10  4.382043e+01           NA  Latin America & Caribbean
## 4159  2023-05-10  5.088757e+00           NA  Latin America & Caribbean
## 4160  2023-05-10  5.628464e+01           NA  Latin America & Caribbean
## 4161  2023-05-10  6.786085e+02           NA  Latin America & Caribbean
## 4162  2023-05-10  3.884010e+01           NA  Latin America & Caribbean
## 4163  2023-05-10  4.148103e+02           NA  Latin America & Caribbean
## 4164  2023-05-10  4.057579e+01           NA  Latin America & Caribbean
## 4165  2023-05-10  4.016053e+01           NA  Latin America & Caribbean
## 4166  2023-05-10  1.017736e+02           NA  Latin America & Caribbean
## 4167  2023-05-10  3.096367e+01           NA  Latin America & Caribbean
## 4168  2023-05-10  4.168191e+01           NA  Latin America & Caribbean
## 4169  2023-05-10  1.573753e+01           NA  Latin America & Caribbean
## 4170  2023-05-10  1.234990e+01           NA  Latin America & Caribbean
## 4171  2023-05-10  2.247094e+01           NA  Latin America & Caribbean
## 4172  2023-05-10  1.590200e+00           NA  Latin America & Caribbean
## 4173  2023-05-10  8.759486e+01           NA  Latin America & Caribbean
## 4174  2023-05-10  2.145490e+01           NA  Latin America & Caribbean
## 4175  2023-05-10  2.514489e+01           NA  Latin America & Caribbean
## 4176  2023-05-10  1.156885e+01           NA  Latin America & Caribbean
## 4177  2023-05-10  6.568982e+00           NA  Latin America & Caribbean
## 4178  2023-05-10  4.828192e+00           NA  Latin America & Caribbean
## 4179  2023-05-10  4.793436e+01           NA  Latin America & Caribbean
## 4180  2023-05-10  3.472012e+02           NA  Latin America & Caribbean
## 4181  2023-05-10  2.858136e+01           NA  Latin America & Caribbean
## 4182  2023-05-10  4.954366e+00           NA  Latin America & Caribbean
## 4183  2023-05-10            NA           NA  Latin America & Caribbean
## 4184  2023-05-10  2.911766e+01           NA  Latin America & Caribbean
## 4185  2023-05-10  7.634667e-01           NA  Latin America & Caribbean
## 4186  2023-05-10  5.852892e+00           NA  Latin America & Caribbean
## 4187  2023-05-10  1.767167e+01           NA  Latin America & Caribbean
## 4188  2023-05-10  3.260515e+00           NA  Latin America & Caribbean
## 4189  2023-05-10  2.260771e+00           NA  Latin America & Caribbean
## 4190  2023-05-10  4.560656e+00           NA  Latin America & Caribbean
## 4191  2020-07-27            NA 9.891266e+01                       <NA>
## 4192  2020-07-27            NA 9.819166e+01                       <NA>
## 4193  2020-07-27            NA 1.013060e+02                       <NA>
## 4194  2020-07-27            NA 1.069049e+02                       <NA>
## 4195  2020-07-27            NA 1.097005e+02                       <NA>
## 4196  2020-07-27            NA 1.125185e+02                       <NA>
## 4197  2020-07-27            NA 1.148350e+02                       <NA>
## 4198  2020-07-27            NA 1.166035e+02                       <NA>
## 4199  2020-07-27            NA 1.190775e+02                       <NA>
## 4200  2020-07-27            NA 1.208839e+02                       <NA>
## 4201  2020-07-27            NA 1.232140e+02                       <NA>
## 4202  2020-07-27            NA 1.267840e+02                       <NA>
## 4203  2020-07-27            NA 1.302764e+02                       <NA>
## 4204  2020-07-27            NA 2.829991e+01                       <NA>
## 4205  2020-07-27            NA 3.362484e+01                       <NA>
## 4206  2020-07-27            NA 3.975824e+01                       <NA>
## 4207  2020-07-27            NA 4.096995e+01                       <NA>
## 4208  2020-07-27            NA 4.242848e+01                       <NA>
## 4209  2020-07-27            NA 4.512593e+01                       <NA>
## 4210  2020-07-27            NA 5.171603e+01                       <NA>
## 4211  2020-07-27            NA 6.425976e+01                       <NA>
## 4212  2020-07-27            NA 7.505053e+01                       <NA>
## 4213  2020-07-27            NA 8.128984e+01                       <NA>
## 4214  2020-07-27            NA 8.355391e+01                       <NA>
## 4215  2020-07-27            NA 8.290870e+01                       <NA>
## 4216  2020-07-27            NA 8.174460e+01                       <NA>
## 4217  2020-07-27            NA 8.203805e+01                       <NA>
## 4218  2020-07-27            NA 8.262010e+01                       <NA>
## 4219  2020-07-27            NA 8.201570e+01                       <NA>
## 4220  2020-07-27            NA 8.293882e+01                       <NA>
## 4221  2020-07-27            NA 8.611144e+01                       <NA>
## 4222  2020-07-27            NA 8.764187e+01                       <NA>
## 4223  2020-07-27            NA 8.908776e+01                       <NA>
## 4224  2020-07-27            NA 9.337881e+01                       <NA>
## 4225  2023-05-10 -2.944094e-03           NA        East Asia & Pacific
## 4226  2023-05-10  6.951993e+00           NA        East Asia & Pacific
## 4227  2023-05-10  4.914484e-01           NA        East Asia & Pacific
## 4228  2023-05-10  1.031064e+00           NA        East Asia & Pacific
## 4229  2023-05-10  4.371787e+00           NA        East Asia & Pacific
## 4230  2023-05-10            NA           NA        East Asia & Pacific
## 4231  2023-05-10  8.602465e+00           NA        East Asia & Pacific
## 4232  2023-05-10  4.232682e+00           NA        East Asia & Pacific
## 4233  2023-05-10  1.407346e+00           NA        East Asia & Pacific
## 4234  2023-05-10  1.286700e+00           NA        East Asia & Pacific
## 4235  2023-05-10  6.881380e+00           NA        East Asia & Pacific
## 4236  2023-05-10  4.944163e+00           NA        East Asia & Pacific
## 4237  2023-05-10  5.711224e+00           NA        East Asia & Pacific
## 4238  2023-05-10 -1.562071e+00           NA        East Asia & Pacific
## 4239  2023-05-10  2.603178e+00           NA        East Asia & Pacific
## 4240  2023-05-10  3.600055e+00           NA        East Asia & Pacific
## 4241  2023-05-10  6.020991e-01           NA        East Asia & Pacific
## 4242  2023-05-10  8.075684e+00           NA        East Asia & Pacific
## 4243  2023-05-10  7.795346e+00           NA        East Asia & Pacific
## 4244  2023-05-10  1.156795e+00           NA        East Asia & Pacific
## 4245  2023-05-10 -3.792529e+00           NA        East Asia & Pacific
## 4246  2023-05-10  6.714537e+00           NA        East Asia & Pacific
## 4247  2023-05-10  1.518586e+01           NA        East Asia & Pacific
## 4248  2023-05-10  2.062793e+00           NA        East Asia & Pacific
## 4249  2023-05-10  1.210766e+01           NA        East Asia & Pacific
## 4250  2023-05-10  2.047049e+00           NA        East Asia & Pacific
## 4251  2023-05-10  2.084650e-01           NA        East Asia & Pacific
## 4252  2023-05-10            NA           NA        East Asia & Pacific
## 4253  2023-05-10  5.082516e+00           NA        East Asia & Pacific
## 4254  2023-05-10  7.749686e+00           NA        East Asia & Pacific
## 4255  2023-05-10  2.163370e+00           NA        East Asia & Pacific
## 4256  2023-05-10  2.331218e+00           NA        East Asia & Pacific
## 4257  2023-05-10 -9.002516e-01           NA        East Asia & Pacific
## 4258  2023-05-10 -1.062862e-01           NA        East Asia & Pacific
## 4259  2023-05-10 -1.403551e-01           NA        East Asia & Pacific
## 4260  2023-05-10  2.357871e+00           NA        East Asia & Pacific
## 4261  2023-05-10  1.525399e+01           NA        East Asia & Pacific
## 4262  2023-05-10  6.506731e+00           NA        East Asia & Pacific
## 4263  2023-05-10  4.669021e+00           NA        East Asia & Pacific
## 4264  2023-05-10  1.020940e+01           NA        East Asia & Pacific
## 4265  2023-05-10  3.903744e+00           NA        East Asia & Pacific
## 4266  2023-05-10 -2.614570e+00           NA        East Asia & Pacific
## 4267  2023-05-10 -1.131175e+00           NA        East Asia & Pacific
## 4268  2023-05-10 -2.095334e-01           NA        East Asia & Pacific
## 4269  2023-05-10 -2.621611e+00           NA        East Asia & Pacific
## 4270  2023-05-10 -1.263059e+00           NA        East Asia & Pacific
## 4271  2023-05-10  1.675142e+00           NA        East Asia & Pacific
## 4272  2023-05-10  1.363576e+00           NA        East Asia & Pacific
## 4273  2023-05-10  3.926549e+00           NA        East Asia & Pacific
## 4274  2023-05-10 -1.149649e-01           NA        East Asia & Pacific
## 4275  2023-05-10  1.616569e+00           NA        East Asia & Pacific
## 4276  2023-05-10  6.659374e-01           NA        East Asia & Pacific
## 4277  2023-05-10  2.777357e-01           NA        East Asia & Pacific
## 4278  2023-05-10  1.093772e+00           NA        East Asia & Pacific
## 4279  2023-05-10  8.190323e+00           NA        East Asia & Pacific
## 4280  2023-05-10  3.499748e+00           NA        East Asia & Pacific
## 4281  2023-05-10  2.061699e+01           NA        East Asia & Pacific
## 4282  2023-05-10  7.418562e-02           NA        East Asia & Pacific
## 4283  2023-05-10  3.751777e+00           NA        East Asia & Pacific
## 4284  2023-05-10  1.366570e+01           NA        East Asia & Pacific
## 4285  2023-05-10 -3.620385e-01           NA        East Asia & Pacific
## 4286  2023-05-10  8.134973e-01           NA        East Asia & Pacific
## 4287  2023-05-10  8.697808e-01           NA        East Asia & Pacific
## 4288  2023-05-10  2.218023e+01           NA  Latin America & Caribbean
## 4289  2023-05-10  2.322062e+01           NA  Latin America & Caribbean
## 4290  2023-05-10  1.633988e+01           NA  Latin America & Caribbean
## 4291  2023-05-10  2.916893e+01           NA  Latin America & Caribbean
## 4292  2023-05-10  2.700577e+01           NA  Latin America & Caribbean
## 4293  2023-05-10  2.488351e+01           NA  Latin America & Caribbean
## 4294  2023-05-10  5.148334e+00           NA  Latin America & Caribbean
## 4295  2023-05-10  2.276588e+01           NA  Latin America & Caribbean
## 4296  2023-05-10  2.266438e+01           NA  Latin America & Caribbean
## 4297  2023-05-10  3.367537e+01           NA  Latin America & Caribbean
## 4298  2023-05-10  2.449328e+00           NA  Latin America & Caribbean
## 4299  2023-05-10  5.807661e+00           NA  Latin America & Caribbean
## 4300  2023-05-10  6.829015e+00           NA  Latin America & Caribbean
## 4301  2023-05-10  1.512735e+01           NA  Latin America & Caribbean
## 4302  2023-05-10  5.968191e+00           NA  Latin America & Caribbean
## 4303  2023-05-10  6.648036e+00           NA  Latin America & Caribbean
## 4304  2023-05-10  3.616655e+00           NA  Latin America & Caribbean
## 4305  2023-05-10  5.133736e+00           NA  Latin America & Caribbean
## 4306  2023-05-10  1.686838e+01           NA  Latin America & Caribbean
## 4307  2023-05-10  2.016110e+01           NA  Latin America & Caribbean
## 4308  2023-05-10  8.229368e+00           NA  Latin America & Caribbean
## 4309  2023-05-10            NA           NA  Latin America & Caribbean
## 4310  2023-05-10  2.775006e+01           NA  Latin America & Caribbean
## 4311  2023-05-10  8.604479e+00           NA  Latin America & Caribbean
## 4312  2023-05-10  1.188580e+01           NA  Latin America & Caribbean
## 4313  2023-05-10  2.280696e+01           NA  Latin America & Caribbean
## 4314  2023-05-10  2.468582e+01           NA  Latin America & Caribbean
## 4315  2023-05-10  2.537715e+01           NA  Latin America & Caribbean
## 4316  2023-05-10  2.337694e+01           NA  Latin America & Caribbean
## 4317  2023-05-10  1.907676e+00           NA  Latin America & Caribbean
## 4318  2023-05-10  2.476646e+01           NA  Latin America & Caribbean
## 4319  2023-05-10  6.502215e+00           NA  Latin America & Caribbean
## 4320  2023-05-10  2.209638e+01           NA  Latin America & Caribbean
## 4321  2023-05-10  2.404063e+01           NA  Latin America & Caribbean
## 4322  2023-05-10  6.518448e+00           NA  Latin America & Caribbean
## 4323  2023-05-10  2.545756e+01           NA  Latin America & Caribbean
## 4324  2023-05-10  2.915282e+01           NA  Latin America & Caribbean
## 4325  2023-05-10  8.444658e+00           NA  Latin America & Caribbean
## 4326  2023-05-10  8.472376e+00           NA  Latin America & Caribbean
## 4327  2023-05-10  1.709993e+01           NA  Latin America & Caribbean
## 4328  2023-05-10  1.297231e+01           NA  Latin America & Caribbean
## 4329  2023-05-10  1.262294e+01           NA  Latin America & Caribbean
## 4330  2023-05-10  5.202034e+00           NA  Latin America & Caribbean
## 4331  2023-05-10  1.477305e+01           NA  Latin America & Caribbean
## 4332  2023-05-10  2.484158e+01           NA  Latin America & Caribbean
## 4333  2023-05-10  4.753196e+00           NA  Latin America & Caribbean
## 4334  2023-05-10  4.002621e+00           NA  Latin America & Caribbean
## 4335  2023-05-10  5.233610e+01           NA  Latin America & Caribbean
## 4336  2023-05-10            NA           NA  Latin America & Caribbean
## 4337  2023-05-10  1.073018e+01           NA  Latin America & Caribbean
## 4338  2023-05-10  3.804860e+00           NA  Latin America & Caribbean
## 4339  2023-05-10  2.040258e+01           NA  Latin America & Caribbean
## 4340  2023-05-10  1.080740e+01           NA  Latin America & Caribbean
## 4341  2023-05-10  4.064225e+00           NA  Latin America & Caribbean
## 4342  2023-05-10  4.630580e+00           NA  Latin America & Caribbean
## 4343  2023-05-10  2.235632e+00           NA  Latin America & Caribbean
## 4344  2023-05-10  1.683985e+01           NA  Latin America & Caribbean
## 4345  2023-05-10  2.761594e+01           NA  Latin America & Caribbean
## 4346  2023-05-10  1.885096e+01           NA  Latin America & Caribbean
## 4347  2023-05-10  7.677383e+00           NA  Latin America & Caribbean
## 4348  2023-05-10  1.356488e+00           NA  Latin America & Caribbean
## 4349  2023-05-10  7.283033e+00           NA  Latin America & Caribbean
## 4350  2023-05-10  6.386803e+00           NA  Latin America & Caribbean
## 4351  2020-07-27            NA 4.581067e+00                       <NA>
## 4352  2020-07-27            NA 5.870182e+00                       <NA>
## 4353  2020-07-27            NA 7.389455e+00                       <NA>
## 4354  2020-07-27            NA 9.542242e+00                       <NA>
## 4355  2020-07-27            NA 1.243665e+01                       <NA>
## 4356  2020-07-27            NA 1.579951e+01                       <NA>
## 4357  2020-07-27            NA 1.934486e+01                       <NA>
## 4358  2020-07-27            NA 2.376552e+01                       <NA>
## 4359  2020-07-27            NA 2.873134e+01                       <NA>
## 4360  2020-07-27            NA 3.470614e+01                       <NA>
## 4361  2020-07-27            NA 4.111801e+01                       <NA>
## 4362  2020-07-27            NA 4.879574e+01                       <NA>
## 4363  2020-07-27            NA 5.410215e+01                       <NA>
## 4364  2020-07-27            NA 5.909355e+01                       <NA>
## 4365  2020-07-27            NA 6.379900e+01                       <NA>
## 4366  2020-07-27            NA 6.785000e+01                       <NA>
## 4367  2020-07-27            NA 7.268447e+01                       <NA>
## 4368  2020-07-27            NA 7.697610e+01                       <NA>
## 4369  2020-07-27            NA 8.085972e+01                       <NA>
## 4370  2020-07-27            NA 8.433533e+01                       <NA>
## 4371  2020-07-27            NA 8.901055e+01                       <NA>
## 4372  2020-07-27            NA 9.523992e+01                       <NA>
## 4373  2020-07-27            NA 9.924211e+01                       <NA>
## 4374  2020-07-27            NA 1.014937e+02                       <NA>
## 4375  2020-07-27            NA 1.049612e+02                       <NA>
## 4376  2020-07-27            NA 1.082880e+02                       <NA>
## 4377  2020-07-27            NA 1.104733e+02                       <NA>
## 4378  2020-07-27            NA 1.136781e+02                       <NA>
## 4379  2020-07-27            NA 1.193472e+02                       <NA>
## 4380  2020-07-27            NA 1.283140e+02                       <NA>
## 4381  2020-07-27            NA 1.338518e+02                       <NA>
## 4382  2020-07-27            NA 1.381899e+02                       <NA>
## 4383  2020-07-27            NA 1.430546e+02                       <NA>
## 4384  2020-07-27            NA 1.466360e+02                       <NA>
## 4385  2020-07-27            NA           NA                       <NA>
## 4386  2020-07-27            NA           NA                       <NA>
## 4387  2020-07-27            NA 1.277790e+01                       <NA>
## 4388  2020-07-27            NA 1.375005e+01                       <NA>
## 4389  2020-07-27            NA 1.523073e+01                       <NA>
## 4390  2020-07-27            NA 1.655604e+01                       <NA>
## 4391  2020-07-27            NA 1.840634e+01                       <NA>
## 4392  2020-07-27            NA 2.681281e+01                       <NA>
## 4393  2020-07-27            NA 3.447455e+01                       <NA>
## 4394  2020-07-27            NA 3.866130e+01                       <NA>
## 4395  2020-07-27            NA 4.124513e+01                       <NA>
## 4396  2020-07-27            NA 4.481984e+01                       <NA>
## 4397  2020-07-27            NA 4.940142e+01                       <NA>
## 4398  2020-07-27            NA 5.273759e+01                       <NA>
## 4399  2020-07-27            NA 5.683978e+01                       <NA>
## 4400  2020-07-27            NA 6.107233e+01                       <NA>
## 4401  2020-07-27            NA 6.643292e+01                       <NA>
## 4402  2020-07-27            NA 7.025355e+01                       <NA>
## 4403  2020-07-27            NA 7.527809e+01                       <NA>
## 4404  2020-07-27            NA 7.980863e+01                       <NA>
## 4405  2020-07-27            NA 8.413277e+01                       <NA>
## 4406  2020-07-27            NA 9.195919e+01                       <NA>
## 4407  2020-07-27            NA 9.757211e+01                       <NA>
## 4408  2020-07-27            NA 1.024673e+02                       <NA>
## 4409  2020-07-27            NA 1.088992e+02                       <NA>
## 4410  2020-07-27            NA 1.143190e+02                       <NA>
## 4411  2020-07-27            NA 1.204848e+02                       <NA>
## 4412  2020-07-27            NA 1.273774e+02                       <NA>
## 4413  2020-07-27            NA 1.376787e+02                       <NA>
## 4414  2020-07-27            NA 1.471924e+02                       <NA>
## 4415  2020-07-27            NA 1.535723e+02                       <NA>
## 4416  2020-07-27            NA 1.594476e+02                       <NA>
## 4417  2020-07-27            NA 1.653011e+02                       <NA>
## 4418  2020-07-27            NA 1.695299e+02                       <NA>
## 4419  2020-07-27            NA 3.848359e+01                       <NA>
## 4420  2020-07-27            NA 4.637911e+01                       <NA>
## 4421  2020-07-27            NA 5.393058e+01                       <NA>
## 4422  2020-07-27            NA 5.926805e+01                       <NA>
## 4423  2020-07-27            NA 6.259048e+01                       <NA>
## 4424  2020-07-27            NA 6.486384e+01                       <NA>
## 4425  2020-07-27            NA 6.628343e+01                       <NA>
## 4426  2020-07-27            NA 6.846357e+01                       <NA>
## 4427  2020-07-27            NA 7.086057e+01                       <NA>
## 4428  2020-07-27            NA 7.271816e+01                       <NA>
## 4429  2020-07-27            NA 7.512937e+01                       <NA>
## 4430  2020-07-27            NA 7.861190e+01                       <NA>
## 4431  2020-07-27            NA 8.112095e+01                       <NA>
## 4432  2020-07-27            NA 8.389650e+01                       <NA>
## 4433  2020-07-27            NA 2.024880e+01                       <NA>
## 4434  2020-07-27            NA 2.382347e+01                       <NA>
## 4435  2020-07-27            NA 2.762007e+01                       <NA>
## 4436  2020-07-27            NA 2.929365e+01                       <NA>
## 4437  2020-07-27            NA 3.137410e+01                       <NA>
## 4438  2020-07-27            NA 3.395580e+01                       <NA>
## 4439  2020-07-27            NA 8.819249e+01                       <NA>
## 4440  2020-07-27            NA 9.451686e+01                       <NA>
## 4441  2020-07-27            NA 9.694943e+01                       <NA>
## 4442  2020-07-27            NA 1.018402e+02                       <NA>
## 4443  2020-07-27            NA 1.082299e+02                       <NA>
## 4444  2020-07-27            NA 1.136510e+02                       <NA>
## 4445  2020-07-27            NA 1.188979e+02                       <NA>
## 4446  2020-07-27            NA 1.234739e+02                       <NA>
## 4447  2020-07-27            NA 1.268916e+02                       <NA>
## 4448  2020-07-27            NA 1.310996e+02                       <NA>
## 4449  2020-07-27            NA 1.363015e+02                       <NA>
## 4450  2020-07-27            NA 1.423143e+02                       <NA>
## 4451  2020-07-27            NA 1.488456e+02                       <NA>
## 4452  2020-07-27            NA 1.544036e+02                       <NA>
## 4453  2020-07-27            NA 1.199957e+01                       <NA>
## 4454  2020-07-27            NA 1.375972e+01                       <NA>
## 4455  2020-07-27            NA 1.510872e+01                       <NA>
## 4456  2020-07-27            NA 1.732806e+01                       <NA>
## 4457  2020-07-27            NA 2.013882e+01                       <NA>
## 4458  2020-07-27            NA 2.266028e+01                       <NA>
## 4459  2020-07-27            NA 2.506209e+01                       <NA>
## 4460  2020-07-27            NA 2.816870e+01                       <NA>
## 4461  2020-07-27            NA 3.238288e+01                       <NA>
## 4462  2020-07-27            NA 3.680397e+01                       <NA>
## 4463  2020-07-27            NA 4.121361e+01                       <NA>
## 4464  2020-07-27            NA 4.647596e+01                       <NA>
## 4465  2020-07-27            NA 5.054034e+01                       <NA>
## 4466  2020-07-27            NA 5.465250e+01                       <NA>
## 4467  2020-07-27            NA 5.890814e+01                       <NA>
## 4468  2020-07-27            NA 6.328554e+01                       <NA>
## 4469  2020-07-27            NA 1.253351e+02                       <NA>
## 4470  2020-07-27            NA 1.321909e+02                       <NA>
## 4471  2020-07-27            NA 1.372728e+02                       <NA>
## 4472  2020-07-27            NA 1.432307e+02                       <NA>
## 4473  2020-07-27            NA 1.518593e+02                       <NA>
## 4474  2020-07-27            NA 1.615885e+02                       <NA>
## 4475  2020-07-27            NA 6.722114e+01                       <NA>
## 4476  2020-07-27            NA 7.102289e+01                       <NA>
## 4477  2020-07-27            NA 7.452990e+01                       <NA>
## 4478  2020-07-27            NA 7.865767e+01                       <NA>
## 4479  2020-07-27            NA 8.296051e+01                       <NA>
## 4480  2020-07-27            NA 9.008130e+01                       <NA>
## 4481  2020-07-27            NA 9.569596e+01                       <NA>
## 4482  2020-07-27            NA 1.023792e+02                       <NA>
## 4483  2020-07-27            NA 1.095669e+02                       <NA>
## 4484  2020-07-27            NA 1.176372e+02                       <NA>
## 4485  2020-07-27            NA 1.711083e+02                       <NA>
## 4486  2020-07-27            NA 1.787643e+02                       <NA>
## 4487  2020-07-27            NA 7.906794e+01                       <NA>
## 4488  2020-07-27            NA 8.260618e+01                       <NA>
## 4489  2020-07-27            NA 8.509557e+01                       <NA>
## 4490  2020-07-27            NA 8.796692e+01                       <NA>
## 4491  2020-07-27            NA 9.189551e+01                       <NA>
## 4492  2020-07-27            NA 9.345845e+01                       <NA>
## 4493  2020-07-27            NA 9.753563e+01                       <NA>
## 4494  2020-07-27            NA 1.007373e+02                       <NA>
## 4495  2020-07-27            NA 1.025936e+02                       <NA>
## 4496  2020-07-27            NA 1.090721e+02                       <NA>
## 4497  2020-07-27            NA 1.043874e+02                       <NA>
## 4498  2020-07-27            NA 1.125224e+02                       <NA>
## 4499  2020-07-27            NA           NA                       <NA>
## 4500  2020-07-27            NA           NA                       <NA>
## 4501  2020-07-27            NA           NA                       <NA>
## 4502  2020-07-27            NA           NA                       <NA>
## 4503  2020-07-27            NA           NA                       <NA>
## 4504  2020-07-27            NA           NA                       <NA>
## 4505  2020-07-27            NA 7.172177e+01                       <NA>
## 4506  2020-07-27            NA 6.970298e+01                       <NA>
## 4507  2020-07-27            NA 7.357473e+01                       <NA>
## 4508  2020-07-27            NA 7.617409e+01                       <NA>
## 4509  2020-07-27            NA 8.823224e+01                       <NA>
## 4510  2020-07-27            NA 8.514507e+01                       <NA>
## 4511  2020-07-27            NA 8.067064e+01                       <NA>
## 4512  2020-07-27            NA 7.619621e+01                       <NA>
## 4513  2020-07-27            NA           NA                       <NA>
## 4514  2020-07-27            NA           NA                       <NA>
## 4515  2020-07-27            NA           NA                       <NA>
## 4516  2020-07-27            NA           NA                       <NA>
## 4517  2020-07-27            NA           NA                       <NA>
## 4518  2020-07-27            NA           NA                       <NA>
## 4519  2020-07-27            NA           NA                       <NA>
## 4520  2020-07-27            NA           NA                       <NA>
## 4521  2023-05-10  3.223220e+00           NA         Sub-Saharan Africa
## 4522  2023-05-10            NA           NA         Sub-Saharan Africa
## 4523  2023-05-10            NA           NA         Sub-Saharan Africa
## 4524  2023-05-10  7.392276e+00           NA         Sub-Saharan Africa
## 4525  2023-05-10  6.159664e+00           NA         Sub-Saharan Africa
## 4526  2023-05-10  6.696684e-01           NA         Sub-Saharan Africa
## 4527  2023-05-10            NA           NA         Sub-Saharan Africa
## 4528  2023-05-10  1.752157e+00           NA         Sub-Saharan Africa
## 4529  2023-05-10  1.937306e+00           NA         Sub-Saharan Africa
## 4530  2023-05-10  8.629984e+00           NA         Sub-Saharan Africa
## 4531  2023-05-10            NA           NA         Sub-Saharan Africa
## 4532  2023-05-10            NA           NA         Sub-Saharan Africa
## 4533  2023-05-10  5.957740e-02           NA         Sub-Saharan Africa
## 4534  2023-05-10            NA           NA         Sub-Saharan Africa
## 4535  2023-05-10  7.071355e+00           NA         Sub-Saharan Africa
## 4536  2023-05-10  1.520747e+01           NA         Sub-Saharan Africa
## 4537  2023-05-10  8.350449e-01           NA         Sub-Saharan Africa
## 4538  2023-05-10  4.270483e+00           NA         Sub-Saharan Africa
## 4539  2023-05-10 -6.764529e+00           NA         Sub-Saharan Africa
## 4540  2023-05-10  5.960655e+00           NA         Sub-Saharan Africa
## 4541  2023-05-10  3.158817e-01           NA         Sub-Saharan Africa
## 4542  2023-05-10  4.170656e+00           NA         Sub-Saharan Africa
## 4543  2023-05-10  3.144290e+00           NA         Sub-Saharan Africa
## 4544  2023-05-10 -4.460025e+00           NA         Sub-Saharan Africa
## 4545  2023-05-10            NA           NA         Sub-Saharan Africa
## 4546  2023-05-10            NA           NA         Sub-Saharan Africa
## 4547  2023-05-10  2.175912e+00           NA         Sub-Saharan Africa
## 4548  2023-05-10            NA           NA         Sub-Saharan Africa
## 4549  2023-05-10 -5.228599e-01           NA         Sub-Saharan Africa
## 4550  2023-05-10  1.714987e+00           NA         Sub-Saharan Africa
## 4551  2023-05-10  3.045689e+00           NA         Sub-Saharan Africa
## 4552  2023-05-10  1.456752e+01           NA         Sub-Saharan Africa
## 4553  2023-05-10  8.118905e+00           NA         Sub-Saharan Africa
## 4554  2023-05-10            NA           NA         Sub-Saharan Africa
## 4555  2023-05-10  1.835668e+00           NA         Sub-Saharan Africa
## 4556  2023-05-10  2.832824e+00           NA         Sub-Saharan Africa
## 4557  2023-05-10            NA           NA         Sub-Saharan Africa
## 4558  2023-05-10  4.209106e+00           NA         Sub-Saharan Africa
## 4559  2023-05-10            NA           NA         Sub-Saharan Africa
## 4560  2023-05-10            NA           NA         Sub-Saharan Africa
## 4561  2023-05-10  3.110764e+00           NA         Sub-Saharan Africa
## 4562  2023-05-10            NA           NA         Sub-Saharan Africa
## 4563  2023-05-10            NA           NA         Sub-Saharan Africa
## 4564  2023-05-10  6.529706e+00           NA         Sub-Saharan Africa
## 4565  2023-05-10            NA           NA         Sub-Saharan Africa
## 4566  2023-05-10            NA           NA         Sub-Saharan Africa
## 4567  2023-05-10  3.198700e+00           NA         Sub-Saharan Africa
## 4568  2023-05-10            NA           NA         Sub-Saharan Africa
## 4569  2023-05-10  8.320974e+00           NA         Sub-Saharan Africa
## 4570  2023-05-10            NA           NA         Sub-Saharan Africa
## 4571  2023-05-10  3.388362e+00           NA         Sub-Saharan Africa
## 4572  2023-05-10            NA           NA         Sub-Saharan Africa
## 4573  2023-05-10            NA           NA         Sub-Saharan Africa
## 4574  2023-05-10  9.243665e-01           NA         Sub-Saharan Africa
## 4575  2023-05-10  1.346654e+00           NA         Sub-Saharan Africa
## 4576  2023-05-10            NA           NA         Sub-Saharan Africa
## 4577  2023-05-10  5.111829e+00           NA         Sub-Saharan Africa
## 4578  2023-05-10  1.675152e+00           NA         Sub-Saharan Africa
## 4579  2023-05-10  4.024941e-01           NA         Sub-Saharan Africa
## 4580  2023-05-10  9.860411e-01           NA         Sub-Saharan Africa
## 4581  2023-05-10  9.416919e+00           NA         Sub-Saharan Africa
## 4582  2023-05-10  5.811360e+00           NA         Sub-Saharan Africa
## 4583  2023-05-10  3.544923e+00           NA         Sub-Saharan Africa
## 4584  2020-07-27            NA 7.866681e+01                       <NA>
## 4585  2020-07-27            NA 8.057823e+01                       <NA>
## 4586  2020-07-27            NA 8.300187e+01                       <NA>
## 4587  2020-07-27            NA 8.843667e+01                       <NA>
## 4588  2020-07-27            NA 9.078435e+01                       <NA>
## 4589  2020-07-27            NA 9.528610e+01                       <NA>
## 4590  2020-07-27            NA 9.949300e+01                       <NA>
## 4591  2020-07-27            NA 9.988254e+01                       <NA>
## 4592  2020-07-27            NA 1.016401e+02                       <NA>
## 4593  2020-07-27            NA 1.067324e+02                       <NA>
## 4594  2020-07-27            NA 1.116759e+02                       <NA>
## 4595  2020-07-27            NA 1.126945e+02                       <NA>
## 4596  2020-07-27            NA 1.162659e+02                       <NA>
## 4597  2020-07-27            NA 1.199754e+02                       <NA>
## 4598  2020-07-27            NA 1.205154e+02                       <NA>
## 4599  2020-07-27            NA 1.219047e+02                       <NA>
## 4600  2020-07-27            NA 1.245940e+02                       <NA>
## 4601  2020-07-27            NA           NA                       <NA>
## 4602  2020-07-27            NA 3.609715e+01                       <NA>
## 4603  2020-07-27            NA 3.675197e+01                       <NA>
## 4604  2020-07-27            NA 3.740680e+01                       <NA>
## 4605  2020-07-27            NA 3.784186e+01                       <NA>
## 4606  2020-07-27            NA 3.720674e+01                       <NA>
## 4607  2020-07-27            NA 3.574248e+01                       <NA>
## 4608  2020-07-27            NA 3.750231e+01                       <NA>
## 4609  2020-07-27            NA 5.341820e+01                       <NA>
## 4610  2020-07-27            NA 5.844911e+01                       <NA>
## 4611  2020-07-27            NA 6.431222e+01                       <NA>
## 4612  2020-07-27            NA 6.960235e+01                       <NA>
## 4613  2020-07-27            NA 7.343579e+01                       <NA>
## 4614  2020-07-27            NA 7.647801e+01                       <NA>
## 4615  2020-07-27            NA 7.580346e+01                       <NA>
## 4616  2020-07-27            NA 7.584592e+01                       <NA>
## 4617  2020-07-27            NA 7.916702e+01                       <NA>
## 4618  2020-07-27            NA 0.000000e+00                       <NA>
## 4619  2020-07-27            NA 0.000000e+00                       <NA>
## 4620  2020-07-27            NA 0.000000e+00                       <NA>
## 4621  2020-07-27            NA 0.000000e+00                       <NA>
## 4622  2020-07-27            NA 0.000000e+00                       <NA>
## 4623  2020-07-27            NA 0.000000e+00                       <NA>
## 4624  2020-07-27            NA 6.852040e-06                       <NA>
## 4625  2020-07-27            NA 2.015356e-03                       <NA>
## 4626  2020-07-27            NA 1.294779e-02                       <NA>
## 4627  2020-07-27            NA 9.824969e-02                       <NA>
## 4628  2020-07-27            NA 2.289841e-01                       <NA>
## 4629  2020-07-27            NA 2.957298e-01                       <NA>
## 4630  2020-07-27            NA 1.138250e+00                       <NA>
## 4631  2020-07-27            NA 6.987784e+00                       <NA>
## 4632  2020-07-27            NA 3.213938e+01                       <NA>
## 4633  2020-07-27            NA 4.227054e+01                       <NA>
## 4634  2020-07-27            NA 4.771244e+01                       <NA>
## 4635  2020-07-27            NA 4.961826e+01                       <NA>
## 4636  2020-07-27            NA 6.019529e+01                       <NA>
## 4637  2020-07-27            NA 6.805240e+01                       <NA>
## 4638  2020-07-27            NA 7.958394e+01                       <NA>
## 4639  2020-07-27            NA 9.335307e+01                       <NA>
## 4640  2020-07-27            NA 1.253126e+02                       <NA>
## 4641  2020-07-27            NA 1.027806e+02                       <NA>
## 4642  2020-07-27            NA 1.185230e+02                       <NA>
## 4643  2020-07-27            NA 1.286739e+02                       <NA>
## 4644  2020-07-27            NA 1.297139e+02                       <NA>
## 4645  2020-07-27            NA 1.313263e+02                       <NA>
## 4646  2020-07-27            NA 1.323036e+02                       <NA>
## 4647  2020-07-27            NA 1.361217e+02                       <NA>
## 4648  2020-07-27            NA 1.505937e+02                       <NA>
## 4649  2020-07-27            NA           NA                       <NA>
## 4650  2020-07-27            NA           NA                       <NA>
## 4651  2020-07-27            NA           NA                       <NA>
## 4652  2023-05-10  9.158619e+01           NA         Sub-Saharan Africa
## 4653  2023-05-10  2.027146e+01           NA         Sub-Saharan Africa
## 4654  2023-05-10  2.581091e+01           NA         Sub-Saharan Africa
## 4655  2023-05-10  7.376740e+01           NA         Sub-Saharan Africa
## 4656  2023-05-10  5.140755e+01           NA         Sub-Saharan Africa
## 4657  2023-05-10  7.821547e+01           NA         Sub-Saharan Africa
## 4658  2023-05-10  2.845326e+01           NA         Sub-Saharan Africa
## 4659  2023-05-10  1.017700e+02           NA         Sub-Saharan Africa
## 4660  2023-05-10  2.338450e+03           NA         Sub-Saharan Africa
## 4661  2023-05-10  4.973821e+00           NA         Sub-Saharan Africa
## 4662  2023-05-10            NA           NA         Sub-Saharan Africa
## 4663  2023-05-10  4.348528e+01           NA         Sub-Saharan Africa
## 4664  2023-05-10  3.323022e+01           NA         Sub-Saharan Africa
## 4665  2023-05-10  2.078633e+01           NA         Sub-Saharan Africa
## 4666  2023-05-10  8.960322e+01           NA         Sub-Saharan Africa
## 4667  2023-05-10  2.771291e+00           NA         Sub-Saharan Africa
## 4668  2023-05-10  7.305971e+01           NA         Sub-Saharan Africa
## 4669  2023-05-10  2.986955e+01           NA         Sub-Saharan Africa
## 4670  2023-05-10  2.630123e+03           NA         Sub-Saharan Africa
## 4671  2023-05-10  3.265793e+01           NA         Sub-Saharan Africa
## 4672  2023-05-10  2.841430e+01           NA         Sub-Saharan Africa
## 4673  2023-05-10  1.332523e+01           NA         Sub-Saharan Africa
## 4674  2023-05-10 -1.155879e+00           NA         Sub-Saharan Africa
## 4675  2023-05-10  3.099861e+01           NA         Sub-Saharan Africa
## 4676  2023-05-10  5.939992e+00           NA         Sub-Saharan Africa
## 4677  2023-05-10  1.089553e+02           NA         Sub-Saharan Africa
## 4678  2023-05-10  5.895405e+00           NA         Sub-Saharan Africa
## 4679  2023-05-10  3.901550e+00           NA         Sub-Saharan Africa
## 4680  2023-05-10  4.306866e+01           NA         Sub-Saharan Africa
## 4681  2023-05-10  3.547978e+00           NA         Sub-Saharan Africa
## 4682  2023-05-10  3.895212e+01           NA         Sub-Saharan Africa
## 4683  2023-05-10            NA           NA         Sub-Saharan Africa
## 4684  2023-05-10  1.788705e+01           NA         Sub-Saharan Africa
## 4685  2023-05-10  1.497543e+01           NA         Sub-Saharan Africa
## 4686  2023-05-10  2.046532e+01           NA         Sub-Saharan Africa
## 4687  2023-05-10  1.102622e+02           NA         Sub-Saharan Africa
## 4688  2023-05-10  9.936307e-01           NA         Sub-Saharan Africa
## 4689  2023-05-10  4.664074e+02           NA         Sub-Saharan Africa
## 4690  2023-05-10  2.676586e+04           NA         Sub-Saharan Africa
## 4691  2023-05-10  6.099478e+00           NA         Sub-Saharan Africa
## 4692  2023-05-10  2.124077e+01           NA         Sub-Saharan Africa
## 4693  2023-05-10  1.226542e+01           NA         Sub-Saharan Africa
## 4694  2023-05-10  5.739543e+01           NA         Sub-Saharan Africa
## 4695  2023-05-10  8.203697e+00           NA         Sub-Saharan Africa
## 4696  2023-05-10  3.727165e+01           NA         Sub-Saharan Africa
## 4697  2023-05-10  1.379166e+01           NA         Sub-Saharan Africa
## 4698  2023-05-10  2.693538e+01           NA         Sub-Saharan Africa
## 4699  2023-05-10  1.823832e+01           NA         Sub-Saharan Africa
## 4700  2023-05-10  8.784920e+01           NA         Sub-Saharan Africa
## 4701  2023-05-10  5.988278e+01           NA         Sub-Saharan Africa
## 4702  2023-05-10  1.773106e+01           NA         Sub-Saharan Africa
## 4703  2023-05-10  1.018140e+01           NA         Sub-Saharan Africa
## 4704  2023-05-10 -2.836949e+00           NA         Sub-Saharan Africa
## 4705  2023-05-10  6.381888e+02           NA         Sub-Saharan Africa
## 4706  2023-05-10  4.419025e+02           NA         Sub-Saharan Africa
## 4707  2023-05-10  1.341545e+01           NA         Sub-Saharan Africa
## 4708  2023-05-10  5.857441e+01           NA         Sub-Saharan Africa
## 4709  2023-05-10  6.365458e+00           NA         Sub-Saharan Africa
## 4710  2023-05-10  3.171946e+01           NA         Sub-Saharan Africa
## 4711  2023-05-10  4.349229e+00           NA         Sub-Saharan Africa
## 4712  2023-05-10  3.855308e+03           NA         Sub-Saharan Africa
## 4713  2023-05-10  1.926428e+02           NA         Sub-Saharan Africa
## 4714  2023-05-10  1.657642e+03           NA         Sub-Saharan Africa
## 4715  2023-05-10  6.044738e+00           NA         Sub-Saharan Africa
## 4716  2023-05-10 -8.283431e-01           NA         Sub-Saharan Africa
## 4717  2023-05-10  1.452453e+01           NA         Sub-Saharan Africa
## 4718  2023-05-10 -1.029068e+00           NA         Sub-Saharan Africa
## 4719  2023-05-10  6.338372e+00           NA         Sub-Saharan Africa
## 4720  2023-05-10 -1.738928e+00           NA         Sub-Saharan Africa
## 4721  2023-05-10  1.799192e+01           NA         Sub-Saharan Africa
## 4722  2023-05-10  8.675751e+00           NA         Sub-Saharan Africa
## 4723  2023-05-10 -1.759471e+01           NA         Sub-Saharan Africa
## 4724  2023-05-10  2.778913e+01           NA         Sub-Saharan Africa
## 4725  2023-05-10  1.211139e+01           NA         Sub-Saharan Africa
## 4726  2023-05-10  4.704008e+01           NA         Sub-Saharan Africa
## 4727  2023-05-10            NA           NA         Sub-Saharan Africa
## 4728  2023-05-10  7.773897e+00           NA         Sub-Saharan Africa
## 4729  2023-05-10  2.498540e+00           NA         Sub-Saharan Africa
## 4730  2023-05-10 -1.569268e+00           NA         Sub-Saharan Africa
## 4731  2023-05-10  2.014401e+01           NA         Sub-Saharan Africa
## 4732  2023-05-10 -1.392521e+01           NA         Sub-Saharan Africa
## 4733  2023-05-10  1.274406e+01           NA         Sub-Saharan Africa
## 4734  2023-05-10  3.675283e+01           NA         Sub-Saharan Africa
## 4735  2023-05-10  7.626522e+00           NA         Sub-Saharan Africa
## 4736  2023-05-10 -2.917266e+01           NA         Sub-Saharan Africa
## 4737  2023-05-10 -1.526593e+00           NA         Sub-Saharan Africa
## 4738  2023-05-10  3.395930e+00           NA         Sub-Saharan Africa
## 4739  2023-05-10 -1.130829e+00           NA         Sub-Saharan Africa
## 4740  2023-05-10 -1.822209e+01           NA         Sub-Saharan Africa
## 4741  2023-05-10  8.304805e+00           NA         Sub-Saharan Africa
## 4742  2023-05-10 -6.226353e+00           NA         Sub-Saharan Africa
## 4743  2023-05-10  1.002736e+01           NA         Sub-Saharan Africa
## 4744  2023-05-10  1.710160e+01           NA         Sub-Saharan Africa
## 4745  2023-05-10  5.516052e+00           NA         Sub-Saharan Africa
## 4746  2023-05-10  2.560115e+01           NA         Sub-Saharan Africa
## 4747  2023-05-10  1.136409e+01           NA         Sub-Saharan Africa
## 4748  2023-05-10  7.427774e+00           NA         Sub-Saharan Africa
## 4749  2023-05-10 -1.385542e+01           NA         Sub-Saharan Africa
## 4750  2023-05-10  2.996893e+00           NA         Sub-Saharan Africa
## 4751  2023-05-10            NA           NA         Sub-Saharan Africa
## 4752  2023-05-10  4.964518e+00           NA         Sub-Saharan Africa
## 4753  2023-05-10 -1.480636e+00           NA         Sub-Saharan Africa
## 4754  2023-05-10  2.941768e+01           NA         Sub-Saharan Africa
## 4755  2023-05-10  2.935534e+01           NA         Sub-Saharan Africa
## 4756  2023-05-10  6.293957e+00           NA         Sub-Saharan Africa
## 4757  2023-05-10  8.313019e+00           NA         Sub-Saharan Africa
## 4758  2023-05-10  3.710455e+00           NA         Sub-Saharan Africa
## 4759  2023-05-10 -3.437643e+00           NA         Sub-Saharan Africa
## 4760  2023-05-10  2.381108e+01           NA         Sub-Saharan Africa
## 4761  2023-05-10  1.125358e+01           NA         Sub-Saharan Africa
## 4762  2023-05-10  1.138030e+01           NA         Sub-Saharan Africa
## 4763  2023-05-10  3.249874e+01           NA         Sub-Saharan Africa
## 4764  2023-05-10 -1.044732e+00           NA         Sub-Saharan Africa
## 4765  2023-05-10  3.025485e+00           NA         Sub-Saharan Africa
## 4766  2023-05-10  1.626920e+01           NA         Sub-Saharan Africa
## 4767  2023-05-10  6.740117e+00           NA         Sub-Saharan Africa
## 4768  2023-05-10  1.095333e+01           NA         Sub-Saharan Africa
## 4769  2023-05-10  1.680724e+01           NA         Sub-Saharan Africa
## 4770  2023-05-10  8.113741e+00           NA         Sub-Saharan Africa
## 4771  2023-05-10  4.253820e+00           NA         Sub-Saharan Africa
## 4772  2023-05-10  3.855943e+00           NA         Sub-Saharan Africa
## 4773  2023-05-10 -6.559910e+00           NA         Sub-Saharan Africa
## 4774  2023-05-10 -1.104562e+00           NA         Sub-Saharan Africa
## 4775  2023-05-10  7.838579e+00           NA         Sub-Saharan Africa
## 4776  2023-05-10 -4.251537e+00           NA         Sub-Saharan Africa
## 4777  2023-05-10 -2.116523e+01           NA         Sub-Saharan Africa
## 4778  2023-05-10  4.110215e+01           NA  Latin America & Caribbean
## 4779  2023-05-10  2.893151e+01           NA  Latin America & Caribbean
## 4780  2023-05-10  1.693878e+01           NA  Latin America & Caribbean
## 4781  2023-05-10  1.467989e+01           NA  Latin America & Caribbean
## 4782  2023-05-10  9.701331e+00           NA  Latin America & Caribbean
## 4783  2023-05-10  2.858884e+00           NA  Latin America & Caribbean
## 4784  2023-05-10  1.298431e+01           NA  Latin America & Caribbean
## 4785  2023-05-10  9.786886e+00           NA  Latin America & Caribbean
## 4786  2023-05-10  1.524832e+01           NA  Latin America & Caribbean
## 4787  2023-05-10  1.660178e+01           NA  Latin America & Caribbean
## 4788  2023-05-10  2.454089e+01           NA  Latin America & Caribbean
## 4789  2023-05-10  2.192478e+00           NA  Latin America & Caribbean
## 4790  2023-05-10  9.389714e+00           NA  Latin America & Caribbean
## 4791  2023-05-10  2.029140e+00           NA  Latin America & Caribbean
## 4792  2023-05-10  1.051679e+01           NA  Latin America & Caribbean
## 4793  2023-05-10  2.566792e+00           NA  Latin America & Caribbean
## 4794  2023-05-10  2.321303e+01           NA  Latin America & Caribbean
## 4795  2023-05-10  4.590212e+00           NA  Latin America & Caribbean
## 4796  2023-05-10  6.344994e-01           NA  Latin America & Caribbean
## 4797  2023-05-10  1.484042e+01           NA  Latin America & Caribbean
## 4798  2023-05-10  6.413089e+00           NA  Latin America & Caribbean
## 4799  2023-05-10  1.193819e+01           NA  Latin America & Caribbean
## 4800  2023-05-10  1.142379e+01           NA  Latin America & Caribbean
## 4801  2023-05-10  4.593225e+00           NA  Latin America & Caribbean
## 4802  2023-05-10  1.883927e+01           NA  Latin America & Caribbean
## 4803  2023-05-10  1.102947e+01           NA  Latin America & Caribbean
## 4804  2023-05-10  1.972885e+01           NA  Latin America & Caribbean
## 4805  2023-05-10  3.168806e+00           NA  Latin America & Caribbean
## 4806  2023-05-10  1.301333e+01           NA  Latin America & Caribbean
## 4807  2023-05-10  2.049118e+00           NA  Latin America & Caribbean
## 4808  2023-05-10  6.628845e+00           NA  Latin America & Caribbean
## 4809  2023-05-10  2.443550e+00           NA  Latin America & Caribbean
## 4810  2023-05-10  7.908482e+00           NA  Latin America & Caribbean
## 4811  2023-05-10  9.149968e+00           NA  Latin America & Caribbean
## 4812  2023-05-10  5.162136e-01           NA  Latin America & Caribbean
## 4813  2023-05-10  6.206920e+00           NA  Latin America & Caribbean
## 4814  2023-05-10  1.992529e+00           NA  Latin America & Caribbean
## 4815  2023-05-10  1.669451e+01           NA  Latin America & Caribbean
## 4816  2023-05-10  9.720938e+00           NA  Latin America & Caribbean
## 4817  2023-05-10  1.014438e+01           NA  Latin America & Caribbean
## 4818  2023-05-10  2.054521e+01           NA  Latin America & Caribbean
## 4819  2023-05-10  7.317473e+00           NA  Latin America & Caribbean
## 4820  2023-05-10  1.064824e+01           NA  Latin America & Caribbean
## 4821  2023-05-10  1.561100e-01           NA  Latin America & Caribbean
## 4822  2023-05-10  1.882958e+01           NA  Latin America & Caribbean
## 4823  2023-05-10  6.477469e+01           NA  Latin America & Caribbean
## 4824  2023-05-10  2.251177e+00           NA  Latin America & Caribbean
## 4825  2023-05-10  1.335035e+01           NA  Latin America & Caribbean
## 4826  2023-05-10  1.804992e+01           NA  Latin America & Caribbean
## 4827  2023-05-10 -6.579071e-02           NA  Latin America & Caribbean
## 4828  2023-05-10  2.277801e+00           NA  Latin America & Caribbean
## 4829  2023-05-10            NA           NA  Latin America & Caribbean
## 4830  2023-05-10  1.507507e+01           NA  Latin America & Caribbean
## 4831  2023-05-10  4.733633e+00           NA  Latin America & Caribbean
## 4832  2023-05-10  1.854790e+01           NA  Latin America & Caribbean
## 4833  2023-05-10            NA           NA  Latin America & Caribbean
## 4834  2023-05-10  1.958765e+00           NA  Latin America & Caribbean
## 4835  2023-05-10  3.955215e+00           NA  Latin America & Caribbean
## 4836  2023-05-10  8.417189e+01           NA  Latin America & Caribbean
## 4837  2023-05-10  2.123624e+01           NA  Latin America & Caribbean
## 4838  2023-05-10  1.043557e+01           NA  Latin America & Caribbean
## 4839  2023-05-10  1.567048e+01           NA  Latin America & Caribbean
## 4840  2023-05-10  4.568062e+00           NA  Latin America & Caribbean
## 4841  2020-07-27            NA 5.201078e+00                       <NA>
## 4842  2020-07-27            NA 6.283167e+00                       <NA>
## 4843  2020-07-27            NA 7.320688e+00                       <NA>
## 4844  2020-07-27            NA 8.715796e+00                       <NA>
## 4845  2020-07-27            NA 1.121683e+01                       <NA>
## 4846  2020-07-27            NA 1.366294e+01                       <NA>
## 4847  2020-07-27            NA 1.499896e+01                       <NA>
## 4848  2020-07-27            NA 1.703047e+01                       <NA>
## 4849  2020-07-27            NA 2.097740e+01                       <NA>
## 4850  2020-07-27            NA 2.464967e+01                       <NA>
## 4851  2020-07-27            NA 2.791563e+01                       <NA>
## 4852  2020-07-27            NA 3.117330e+01                       <NA>
## 4853  2020-07-27            NA 3.430452e+01                       <NA>
## 4854  2020-07-27            NA 3.806177e+01                       <NA>
## 4855  2020-07-27            NA 4.234764e+01                       <NA>
## 4856  2020-07-27            NA 4.623031e+01                       <NA>
## 4857  2020-07-27            NA 9.642620e+01                       <NA>
## 4858  2020-07-27            NA 1.018874e+02                       <NA>
## 4859  2020-07-27            NA 1.068595e+02                       <NA>
## 4860  2020-07-27            NA 1.116625e+02                       <NA>
## 4861  2020-07-27            NA 1.175041e+02                       <NA>
## 4862  2020-07-27            NA 1.228141e+02                       <NA>
## 4863  2020-07-27            NA 1.237977e+02                       <NA>
## 4864  2020-07-27            NA 1.237759e+02                       <NA>
## 4865  2020-07-27            NA 1.257908e+02                       <NA>
## 4866  2020-07-27            NA 1.285831e+02                       <NA>
## 4867  2020-07-27            NA 1.312790e+02                       <NA>
## 4868  2020-07-27            NA 1.320564e+02                       <NA>
## 4869  2020-07-27            NA 6.466729e+01                       <NA>
## 4870  2020-07-27            NA 7.208644e+01                       <NA>
## 4871  2020-07-27            NA 7.883188e+01                       <NA>
## 4872  2020-07-27            NA 8.941646e+01                       <NA>
## 4873  2020-07-27            NA 5.059598e+01                       <NA>
## 4874  2020-07-27            NA 5.682836e+01                       <NA>
## 4875  2023-05-10  2.990848e+00           NA         Sub-Saharan Africa
## 4876  2023-05-10  1.359538e+00           NA         Sub-Saharan Africa
## 4877  2023-05-10  3.278121e+00           NA         Sub-Saharan Africa
## 4878  2023-05-10 -1.012407e+00           NA         Sub-Saharan Africa
## 4879  2023-05-10  3.088549e+00           NA         Sub-Saharan Africa
## 4880  2023-05-10  1.215135e+00           NA         Sub-Saharan Africa
## 4881  2023-05-10  1.790990e+01           NA         Sub-Saharan Africa
## 4882  2023-05-10 -2.503358e+00           NA         Sub-Saharan Africa
## 4883  2023-05-10            NA           NA         Sub-Saharan Africa
## 4884  2023-05-10  5.793800e+00           NA         Sub-Saharan Africa
## 4885  2023-05-10  1.104379e+01           NA         Sub-Saharan Africa
## 4886  2023-05-10  4.582137e+00           NA         Sub-Saharan Africa
## 4887  2023-05-10  6.634893e-01           NA         Sub-Saharan Africa
## 4888  2023-05-10  5.628378e+01           NA         Sub-Saharan Africa
## 4889  2023-05-10 -4.523274e+00           NA         Sub-Saharan Africa
## 4890  2023-05-10  2.876730e+00           NA         Sub-Saharan Africa
## 4891  2023-05-10 -2.383714e-02           NA         Sub-Saharan Africa
## 4892  2023-05-10  1.227752e+00           NA         Sub-Saharan Africa
## 4893  2023-05-10  1.853918e+00           NA         Sub-Saharan Africa
## 4894  2023-05-10 -4.075207e+00           NA         Sub-Saharan Africa
## 4895  2023-05-10 -3.809260e-01           NA         Sub-Saharan Africa
## 4896  2023-05-10  1.601017e+00           NA         Sub-Saharan Africa
## 4897  2023-05-10  2.004921e-01           NA         Sub-Saharan Africa
## 4898  2023-05-10  3.078868e+00           NA         Sub-Saharan Africa
## 4899  2023-05-10  6.875969e+00           NA         Sub-Saharan Africa
## 4900  2023-05-10 -2.020405e+00           NA         Sub-Saharan Africa
## 4901  2023-05-10  9.046782e+00           NA         Sub-Saharan Africa
## 4902  2023-05-10  4.638607e+01           NA         Sub-Saharan Africa
## 4903  2023-05-10  5.372933e+00           NA         Sub-Saharan Africa
## 4904  2023-05-10 -7.759119e-01           NA         Sub-Saharan Africa
## 4905  2023-05-10  5.387361e+00           NA         Sub-Saharan Africa
## 4906  2023-05-10 -2.090361e+00           NA         Sub-Saharan Africa
## 4907  2023-05-10  6.348439e-01           NA         Sub-Saharan Africa
## 4908  2023-05-10 -1.837602e+00           NA         Sub-Saharan Africa
## 4909  2023-05-10 -4.040984e-01           NA         Sub-Saharan Africa
## 4910  2023-05-10  4.160322e-02           NA         Sub-Saharan Africa
## 4911  2023-05-10  6.541397e+00           NA         Sub-Saharan Africa
## 4912  2023-05-10  6.154194e+00           NA         Sub-Saharan Africa
## 4913  2023-05-10  3.921474e+00           NA         Sub-Saharan Africa
## 4914  2023-05-10  2.990063e+00           NA         Sub-Saharan Africa
## 4915  2023-05-10            NA           NA         Sub-Saharan Africa
## 4916  2023-05-10  2.875129e+01           NA         Sub-Saharan Africa
## 4917  2023-05-10  3.013917e+00           NA         Sub-Saharan Africa
## 4918  2023-05-10  4.407332e+00           NA         Sub-Saharan Africa
## 4919  2023-05-10  2.976991e+00           NA         Sub-Saharan Africa
## 4920  2023-05-10  2.763518e+00           NA         Sub-Saharan Africa
## 4921  2023-05-10  8.301318e+00           NA         Sub-Saharan Africa
## 4922  2023-05-10  4.775682e+00           NA         Sub-Saharan Africa
## 4923  2023-05-10  3.004820e+00           NA         Sub-Saharan Africa
## 4924  2023-05-10  1.822297e+01           NA         Sub-Saharan Africa
## 4925  2023-05-10  4.313954e+00           NA         Sub-Saharan Africa
## 4926  2023-05-10  4.433305e+00           NA         Sub-Saharan Africa
## 4927  2023-05-10  2.906178e+00           NA         Sub-Saharan Africa
## 4928  2023-05-10  2.669417e+01           NA         Sub-Saharan Africa
## 4929  2023-05-10  5.709320e+00           NA         Sub-Saharan Africa
## 4930  2023-05-10  1.516218e+00           NA         Sub-Saharan Africa
## 4931  2023-05-10  3.436571e-01           NA         Sub-Saharan Africa
## 4932  2023-05-10  2.414368e+01           NA         Sub-Saharan Africa
## 4933  2023-05-10  1.207779e+00           NA         Sub-Saharan Africa
## 4934  2023-05-10 -9.410939e-01           NA         Sub-Saharan Africa
## 4935  2023-05-10  9.542583e-01           NA         Sub-Saharan Africa
## 4936  2023-05-10  1.322797e+01           NA         Sub-Saharan Africa
## 4937  2023-05-10  2.511616e+00           NA         Sub-Saharan Africa
## 4938  2020-07-27            NA 4.606976e+01                       <NA>
## 4939  2020-07-27            NA 5.808547e+01                       <NA>
## 4940  2020-07-27            NA 6.638883e+01                       <NA>
## 4941  2020-07-27            NA 6.803581e+01                       <NA>
## 4942  2020-07-27            NA 7.077141e+01                       <NA>
## 4943  2020-07-27            NA 7.403500e+01                       <NA>
## 4944  2020-07-27            NA 7.455500e+01                       <NA>
## 4945  2020-07-27            NA 3.969576e+01                       <NA>
## 4946  2020-07-27            NA 4.244694e+01                       <NA>
## 4947  2020-07-27            NA 4.289243e+01                       <NA>
## 4948  2020-07-27            NA 4.254677e+01                       <NA>
## 4949  2020-07-27            NA 4.326298e+01                       <NA>
## 4950  2020-07-27            NA 4.509361e+01                       <NA>
## 4951  2020-07-27            NA 7.644182e+01                       <NA>
## 4952  2020-07-27            NA 7.977586e+01                       <NA>
## 4953  2020-07-27            NA 8.223077e+01                       <NA>
## 4954  2020-07-27            NA 8.494176e+01                       <NA>
## 4955  2020-07-27            NA 8.618020e+01                       <NA>
## 4956  2020-07-27            NA 8.952902e+01                       <NA>
## 4957  2020-07-27            NA 9.173787e+01                       <NA>
## 4958  2020-07-27            NA 9.347356e+01                       <NA>
## 4959  2020-07-27            NA 9.937036e+01                       <NA>
## 4960  2020-07-27            NA 1.003834e+02                       <NA>
## 4961  2020-07-27            NA 1.016146e+02                       <NA>
## 4962  2020-07-27            NA 1.066064e+02                       <NA>
## 4963  2020-07-27            NA 1.079970e+02                       <NA>
## 4964  2020-07-27            NA 1.107846e+02                       <NA>
## 4965  2020-07-27            NA 1.112817e+02                       <NA>
## 4966  2020-07-27            NA 1.126744e+02                       <NA>
## 4967  2020-07-27            NA 1.134892e+02                       <NA>
## 4968  2020-07-27            NA 1.142676e+02                       <NA>
## 4969  2020-07-27            NA 1.146783e+02                       <NA>
## 4970  2020-07-27            NA 1.134090e+02                       <NA>
## 4971  2020-07-27            NA 1.156383e+02                       <NA>
## 4972  2023-05-10            NA           NA      Europe & Central Asia
## 4973  2023-05-10            NA           NA      Europe & Central Asia
## 4974  2023-05-10            NA           NA      Europe & Central Asia
## 4975  2023-05-10            NA           NA      Europe & Central Asia
## 4976  2023-05-10            NA           NA      Europe & Central Asia
## 4977  2023-05-10            NA           NA      Europe & Central Asia
## 4978  2023-05-10            NA           NA      Europe & Central Asia
## 4979  2023-05-10  7.341314e-01           NA      Europe & Central Asia
## 4980  2023-05-10  2.000334e+00           NA      Europe & Central Asia
## 4981  2023-05-10            NA           NA      Europe & Central Asia
## 4982  2023-05-10            NA           NA      Europe & Central Asia
## 4983  2023-05-10            NA           NA      Europe & Central Asia
## 4984  2023-05-10            NA           NA      Europe & Central Asia
## 4985  2023-05-10            NA           NA      Europe & Central Asia
## 4986  2023-05-10  9.282396e-01           NA      Europe & Central Asia
## 4987  2023-05-10  1.667866e+00           NA      Europe & Central Asia
## 4988  2023-05-10            NA           NA      Europe & Central Asia
## 4989  2023-05-10            NA           NA      Europe & Central Asia
## 4990  2023-05-10            NA           NA      Europe & Central Asia
## 4991  2023-05-10            NA           NA      Europe & Central Asia
## 4992  2023-05-10  6.886576e+00           NA      Europe & Central Asia
## 4993  2023-05-10  3.651835e+00           NA      Europe & Central Asia
## 4994  2023-05-10            NA           NA      Europe & Central Asia
## 4995  2023-05-10            NA           NA      Europe & Central Asia
## 4996  2023-05-10  2.034956e+00           NA      Europe & Central Asia
## 4997  2023-05-10  2.023500e+00           NA      Europe & Central Asia
## 4998  2023-05-10  1.164171e+00           NA      Europe & Central Asia
## 4999  2023-05-10            NA           NA      Europe & Central Asia
## 5000  2023-05-10            NA           NA      Europe & Central Asia
## 5001  2023-05-10  4.235762e+00           NA      Europe & Central Asia
## 5002  2023-05-10            NA           NA      Europe & Central Asia
## 5003  2023-05-10            NA           NA      Europe & Central Asia
## 5004  2023-05-10            NA           NA      Europe & Central Asia
## 5005  2023-05-10            NA           NA      Europe & Central Asia
## 5006  2023-05-10  1.508411e-01           NA      Europe & Central Asia
## 5007  2023-05-10            NA           NA      Europe & Central Asia
## 5008  2023-05-10            NA           NA      Europe & Central Asia
## 5009  2023-05-10  1.414906e+00           NA      Europe & Central Asia
## 5010  2023-05-10  4.273713e+00           NA      Europe & Central Asia
## 5011  2023-05-10            NA           NA      Europe & Central Asia
## 5012  2023-05-10  3.923499e+00           NA      Europe & Central Asia
## 5013  2023-05-10            NA           NA      Europe & Central Asia
## 5014  2023-05-10  8.094959e+00           NA      Europe & Central Asia
## 5015  2023-05-10  4.432767e+00           NA      Europe & Central Asia
## 5016  2023-05-10 -6.397295e-02           NA      Europe & Central Asia
## 5017  2023-05-10  5.508801e+00           NA      Europe & Central Asia
## 5018  2023-05-10            NA           NA      Europe & Central Asia
## 5019  2023-05-10            NA           NA      Europe & Central Asia
## 5020  2023-05-10  3.160044e+00           NA      Europe & Central Asia
## 5021  2023-05-10            NA           NA      Europe & Central Asia
## 5022  2023-05-10  3.900282e+00           NA      Europe & Central Asia
## 5023  2023-05-10  3.398919e+00           NA      Europe & Central Asia
## 5024  2023-05-10  7.414434e-01           NA      Europe & Central Asia
## 5025  2023-05-10  2.979021e+00           NA      Europe & Central Asia
## 5026  2023-05-10            NA           NA      Europe & Central Asia
## 5027  2023-05-10  3.655608e+00           NA      Europe & Central Asia
## 5028  2023-05-10            NA           NA      Europe & Central Asia
## 5029  2023-05-10  8.101212e-02           NA      Europe & Central Asia
## 5030  2023-05-10            NA           NA      Europe & Central Asia
## 5031  2023-05-10            NA           NA      Europe & Central Asia
## 5032  2023-05-10  4.335846e+00           NA      Europe & Central Asia
## 5033  2023-05-10            NA           NA      Europe & Central Asia
## 5034  2023-05-10            NA           NA      Europe & Central Asia
## 5035  2020-07-27            NA 4.290839e-04                       <NA>
## 5036  2020-07-27            NA 1.273836e-03                       <NA>
## 5037  2020-07-27            NA 1.657769e-02                       <NA>
## 5038  2020-07-27            NA 1.142345e-01                       <NA>
## 5039  2020-07-27            NA 2.566859e-01                       <NA>
## 5040  2020-07-27            NA 1.880643e+00                       <NA>
## 5041  2020-07-27            NA 3.043879e+01                       <NA>
## 5042  2020-07-27            NA 6.011827e+01                       <NA>
## 5043  2020-07-27            NA 6.129830e+01                       <NA>
## 5044  2020-07-27            NA 6.353196e+01                       <NA>
## 5045  2020-07-27            NA 6.588841e+01                       <NA>
## 5046  2020-07-27            NA 7.029614e+01                       <NA>
## 5047  2020-07-27            NA 7.313109e+01                       <NA>
## 5048  2020-07-27            NA 7.649874e+01                       <NA>
## 5049  2020-07-27            NA 7.938787e+01                       <NA>
## 5050  2020-07-27            NA 8.071506e+01                       <NA>
## 5051  2020-07-27            NA 1.031961e+02                       <NA>
## 5052  2020-07-27            NA 1.067172e+02                       <NA>
## 5053  2020-07-27            NA 1.090827e+02                       <NA>
## 5054  2020-07-27            NA 1.088480e+02                       <NA>
## 5055  2020-07-27            NA 1.083424e+02                       <NA>
## 5056  2020-07-27            NA 1.071235e+02                       <NA>
## 5057  2020-07-27            NA 1.083333e+02                       <NA>
## 5058  2020-07-27            NA 1.099585e+02                       <NA>
## 5059  2020-07-27            NA 1.108072e+02                       <NA>
## 5060  2020-07-27            NA 1.109787e+02                       <NA>
## 5061  2020-07-27            NA 9.755327e+01                       <NA>
## 5062  2020-07-27            NA 9.987360e+01                       <NA>
## 5063  2020-07-27            NA 1.009029e+02                       <NA>
## 5064  2020-07-27            NA 8.214157e+01                       <NA>
## 5065  2020-07-27            NA 8.382990e+01                       <NA>
## 5066  2020-07-27            NA 8.661069e+01                       <NA>
## 5067  2020-07-27            NA 8.937342e+01                       <NA>
## 5068  2020-07-27            NA 9.196461e+01                       <NA>
## 5069  2023-05-10  1.299105e+00           NA  Latin America & Caribbean
## 5070  2023-05-10            NA           NA  Latin America & Caribbean
## 5071  2023-05-10 -1.352587e+00           NA  Latin America & Caribbean
## 5072  2023-05-10            NA           NA  Latin America & Caribbean
## 5073  2023-05-10  4.549391e-01           NA  Latin America & Caribbean
## 5074  2023-05-10  4.329206e+00           NA  Latin America & Caribbean
## 5075  2023-05-10  1.185718e+01           NA  Latin America & Caribbean
## 5076  2023-05-10  1.233220e+00           NA  Latin America & Caribbean
## 5077  2023-05-10  3.463247e+00           NA  Latin America & Caribbean
## 5078  2023-05-10  3.789096e+00           NA  Latin America & Caribbean
## 5079  2023-05-10            NA           NA  Latin America & Caribbean
## 5080  2023-05-10  3.439604e+00           NA  Latin America & Caribbean
## 5081  2023-05-10  4.533176e+00           NA  Latin America & Caribbean
## 5082  2023-05-10  2.973511e+00           NA  Latin America & Caribbean
## 5083  2023-05-10  6.958654e+00           NA  Latin America & Caribbean
## 5084  2023-05-10  6.248440e-01           NA  Latin America & Caribbean
## 5085  2023-05-10            NA           NA  Latin America & Caribbean
## 5086  2023-05-10  2.657830e+00           NA  Latin America & Caribbean
## 5087  2023-05-10 -3.914061e+00           NA  Latin America & Caribbean
## 5088  2023-05-10  2.584390e+00           NA  Latin America & Caribbean
## 5089  2023-05-10  2.628203e+01           NA  Latin America & Caribbean
## 5090  2023-05-10  2.914058e+00           NA  Latin America & Caribbean
## 5091  2023-05-10  6.104854e-01           NA  Latin America & Caribbean
## 5092  2023-05-10  1.741164e+00           NA  Latin America & Caribbean
## 5093  2023-05-10 -4.193924e+00           NA  Latin America & Caribbean
## 5094  2023-05-10  5.231939e-01           NA  Latin America & Caribbean
## 5095  2023-05-10            NA           NA  Latin America & Caribbean
## 5096  2023-05-10  1.596604e+00           NA  Latin America & Caribbean
## 5097  2023-05-10 -2.671617e+00           NA  Latin America & Caribbean
## 5098  2023-05-10  3.589775e+00           NA  Latin America & Caribbean
## 5099  2023-05-10            NA           NA  Latin America & Caribbean
## 5100  2023-05-10            NA           NA  Latin America & Caribbean
## 5101  2023-05-10 -2.536948e+00           NA  Latin America & Caribbean
## 5102  2023-05-10            NA           NA  Latin America & Caribbean
## 5103  2023-05-10  1.050867e+01           NA  Latin America & Caribbean
## 5104  2023-05-10 -2.157535e+00           NA  Latin America & Caribbean
## 5105  2023-05-10  1.036556e+01           NA  Latin America & Caribbean
## 5106  2023-05-10  1.897549e+01           NA  Latin America & Caribbean
## 5107  2023-05-10  5.395329e+00           NA  Latin America & Caribbean
## 5108  2023-05-10  9.321215e+00           NA  Latin America & Caribbean
## 5109  2023-05-10  2.928014e+00           NA  Latin America & Caribbean
## 5110  2023-05-10  5.261275e+00           NA  Latin America & Caribbean
## 5111  2023-05-10  4.323767e+00           NA  Latin America & Caribbean
## 5112  2023-05-10  6.341750e-01           NA  Latin America & Caribbean
## 5113  2023-05-10  1.185888e+01           NA  Latin America & Caribbean
## 5114  2023-05-10 -2.227550e+00           NA  Latin America & Caribbean
## 5115  2023-05-10 -3.445326e-01           NA  Latin America & Caribbean
## 5116  2023-05-10  1.202049e+00           NA  Latin America & Caribbean
## 5117  2023-05-10  3.745721e+00           NA  Latin America & Caribbean
## 5118  2023-05-10  3.800807e-01           NA  Latin America & Caribbean
## 5119  2023-05-10 -7.387843e+00           NA  Latin America & Caribbean
## 5120  2023-05-10  3.251544e+00           NA  Latin America & Caribbean
## 5121  2023-05-10            NA           NA  Latin America & Caribbean
## 5122  2023-05-10  4.326691e+00           NA  Latin America & Caribbean
## 5123  2023-05-10  3.546999e+00           NA  Latin America & Caribbean
## 5124  2023-05-10            NA           NA  Latin America & Caribbean
## 5125  2023-05-10  4.115186e+00           NA  Latin America & Caribbean
## 5126  2023-05-10  1.031342e+00           NA  Latin America & Caribbean
## 5127  2023-05-10            NA           NA  Latin America & Caribbean
## 5128  2023-05-10  1.655476e+01           NA  Latin America & Caribbean
## 5129  2023-05-10  4.015883e+02           NA  Latin America & Caribbean
## 5130  2023-05-10  6.059786e-01           NA  Latin America & Caribbean
## 5131  2023-05-10            NA           NA  Latin America & Caribbean
## 5132  2020-07-27            NA           NA                       <NA>
## 5133  2020-07-27            NA           NA                       <NA>
## 5134  2020-07-27            NA           NA                       <NA>
## 5135  2020-07-27            NA           NA                       <NA>
## 5136  2020-07-27            NA           NA                       <NA>
## 5137  2020-07-27            NA           NA                       <NA>
## 5138  2020-07-27            NA           NA                       <NA>
## 5139  2020-07-27            NA           NA                       <NA>
## 5140  2020-07-27            NA           NA                       <NA>
## 5141  2020-07-27            NA           NA                       <NA>
## 5142  2020-07-27            NA           NA                       <NA>
## 5143  2020-07-27            NA           NA                       <NA>
## 5144  2020-07-27            NA           NA                       <NA>
## 5145  2020-07-27            NA           NA                       <NA>
## 5146  2020-07-27            NA           NA                       <NA>
## 5147  2020-07-27            NA           NA                       <NA>
## 5148  2020-07-27            NA           NA                       <NA>
## 5149  2020-07-27            NA           NA                       <NA>
## 5150  2020-07-27            NA           NA                       <NA>
## 5151  2020-07-27            NA           NA                       <NA>
## 5152  2020-07-27            NA           NA                       <NA>
## 5153  2020-07-27            NA           NA                       <NA>
## 5154  2020-07-27            NA           NA                       <NA>
## 5155  2020-07-27            NA           NA                       <NA>
## 5156  2020-07-27            NA           NA                       <NA>
## 5157  2020-07-27            NA           NA                       <NA>
## 5158  2020-07-27            NA           NA                       <NA>
## 5159  2020-07-27            NA           NA                       <NA>
## 5160  2020-07-27            NA           NA                       <NA>
## 5161  2020-07-27            NA           NA                       <NA>
## 5162  2020-07-27            NA           NA                       <NA>
## 5163  2020-07-27            NA           NA                       <NA>
## 5164  2020-07-27            NA           NA                       <NA>
## 5165  2020-07-27            NA           NA                       <NA>
## 5166  2023-05-10 -1.222273e+00           NA  Latin America & Caribbean
## 5167  2023-05-10            NA           NA  Latin America & Caribbean
## 5168  2023-05-10            NA           NA  Latin America & Caribbean
## 5169  2023-05-10 -4.764885e-01           NA  Latin America & Caribbean
## 5170  2023-05-10            NA           NA  Latin America & Caribbean
## 5171  2023-05-10  1.380000e+00           NA  Latin America & Caribbean
## 5172  2023-05-10            NA           NA  Latin America & Caribbean
## 5173  2023-05-10            NA           NA  Latin America & Caribbean
## 5174  2023-05-10  1.789999e+00           NA  Latin America & Caribbean
## 5175  2023-05-10            NA           NA  Latin America & Caribbean
## 5176  2023-05-10  1.620000e+00           NA  Latin America & Caribbean
## 5177  2023-05-10  2.584799e+00           NA  Latin America & Caribbean
## 5178  2023-05-10            NA           NA  Latin America & Caribbean
## 5179  2023-05-10  6.900003e+00           NA  Latin America & Caribbean
## 5180  2023-05-10            NA           NA  Latin America & Caribbean
## 5181  2023-05-10  2.999997e+00           NA  Latin America & Caribbean
## 5182  2023-05-10            NA           NA  Latin America & Caribbean
## 5183  2023-05-10            NA           NA  Latin America & Caribbean
## 5184  2023-05-10            NA           NA  Latin America & Caribbean
## 5185  2023-05-10 -4.726180e-02           NA  Latin America & Caribbean
## 5186  2023-05-10            NA           NA  Latin America & Caribbean
## 5187  2023-05-10            NA           NA  Latin America & Caribbean
## 5188  2023-05-10  4.100012e-01           NA  Latin America & Caribbean
## 5189  2023-05-10  1.585500e+00           NA  Latin America & Caribbean
## 5190  2023-05-10            NA           NA  Latin America & Caribbean
## 5191  2023-05-10            NA           NA  Latin America & Caribbean
## 5192  2023-05-10            NA           NA  Latin America & Caribbean
## 5193  2023-05-10            NA           NA  Latin America & Caribbean
## 5194  2023-05-10            NA           NA  Latin America & Caribbean
## 5195  2023-05-10            NA           NA  Latin America & Caribbean
## 5196  2023-05-10            NA           NA  Latin America & Caribbean
## 5197  2023-05-10            NA           NA  Latin America & Caribbean
## 5198  2023-05-10            NA           NA  Latin America & Caribbean
## 5199  2023-05-10  3.758499e+00           NA  Latin America & Caribbean
## 5200  2023-05-10            NA           NA  Latin America & Caribbean
## 5201  2023-05-10            NA           NA  Latin America & Caribbean
## 5202  2023-05-10  3.130001e+00           NA  Latin America & Caribbean
## 5203  2023-05-10            NA           NA  Latin America & Caribbean
## 5204  2023-05-10  2.625899e+00           NA  Latin America & Caribbean
## 5205  2023-05-10            NA           NA  Latin America & Caribbean
## 5206  2023-05-10            NA           NA  Latin America & Caribbean
## 5207  2023-05-10            NA           NA  Latin America & Caribbean
## 5208  2023-05-10            NA           NA  Latin America & Caribbean
## 5209  2023-05-10            NA           NA  Latin America & Caribbean
## 5210  2023-05-10            NA           NA  Latin America & Caribbean
## 5211  2023-05-10            NA           NA  Latin America & Caribbean
## 5212  2023-05-10            NA           NA  Latin America & Caribbean
## 5213  2023-05-10            NA           NA  Latin America & Caribbean
## 5214  2023-05-10  3.184000e+00           NA  Latin America & Caribbean
## 5215  2023-05-10  2.180003e+00           NA  Latin America & Caribbean
## 5216  2023-05-10  1.498701e+00           NA  Latin America & Caribbean
## 5217  2023-05-10            NA           NA  Latin America & Caribbean
## 5218  2023-05-10            NA           NA  Latin America & Caribbean
## 5219  2023-05-10  4.100001e+00           NA  Latin America & Caribbean
## 5220  2023-05-10            NA           NA  Latin America & Caribbean
## 5221  2023-05-10            NA           NA  Latin America & Caribbean
## 5222  2023-05-10  1.799998e+00           NA  Latin America & Caribbean
## 5223  2023-05-10            NA           NA  Latin America & Caribbean
## 5224  2023-05-10            NA           NA  Latin America & Caribbean
## 5225  2023-05-10  1.332300e+00           NA  Latin America & Caribbean
## 5226  2023-05-10            NA           NA  Latin America & Caribbean
## 5227  2023-05-10            NA           NA  Latin America & Caribbean
## 5228  2023-05-10  2.780000e+00           NA  Latin America & Caribbean
## 5229  2023-05-10 -9.377339e-01           NA      Europe & Central Asia
## 5230  2023-05-10  4.138208e+00           NA      Europe & Central Asia
## 5231  2023-05-10  4.734840e+00           NA      Europe & Central Asia
## 5232  2023-05-10  2.631191e-01           NA      Europe & Central Asia
## 5233  2023-05-10            NA           NA      Europe & Central Asia
## 5234  2023-05-10 -1.338262e+00           NA      Europe & Central Asia
## 5235  2023-05-10  1.880282e+00           NA      Europe & Central Asia
## 5236  2023-05-10  1.616249e+00           NA      Europe & Central Asia
## 5237  2023-05-10            NA           NA      Europe & Central Asia
## 5238  2023-05-10            NA           NA      Europe & Central Asia
## 5239  2023-05-10            NA           NA      Europe & Central Asia
## 5240  2023-05-10            NA           NA      Europe & Central Asia
## 5241  2023-05-10            NA           NA      Europe & Central Asia
## 5242  2023-05-10            NA           NA      Europe & Central Asia
## 5243  2023-05-10            NA           NA      Europe & Central Asia
## 5244  2023-05-10            NA           NA      Europe & Central Asia
## 5245  2023-05-10  2.301992e+00           NA      Europe & Central Asia
## 5246  2023-05-10  8.028744e+00           NA      Europe & Central Asia
## 5247  2023-05-10            NA           NA      Europe & Central Asia
## 5248  2023-05-10            NA           NA      Europe & Central Asia
## 5249  2023-05-10  3.086230e+00           NA      Europe & Central Asia
## 5250  2023-05-10  1.359781e+01           NA      Europe & Central Asia
## 5251  2023-05-10  1.965680e+00           NA      Europe & Central Asia
## 5252  2023-05-10 -7.542341e-01           NA      Europe & Central Asia
## 5253  2023-05-10  1.678779e+00           NA      Europe & Central Asia
## 5254  2023-05-10  2.743406e+00           NA      Europe & Central Asia
## 5255  2023-05-10  1.036976e+00           NA      Europe & Central Asia
## 5256  2023-05-10            NA           NA      Europe & Central Asia
## 5257  2023-05-10  1.415334e+01           NA      Europe & Central Asia
## 5258  2023-05-10            NA           NA      Europe & Central Asia
## 5259  2023-05-10  1.035260e+01           NA      Europe & Central Asia
## 5260  2023-05-10  2.964052e-01           NA      Europe & Central Asia
## 5261  2023-05-10            NA           NA      Europe & Central Asia
## 5262  2023-05-10  3.193693e+00           NA      Europe & Central Asia
## 5263  2023-05-10  2.236907e+00           NA      Europe & Central Asia
## 5264  2023-05-10  2.641011e+00           NA      Europe & Central Asia
## 5265  2023-05-10  5.270982e+00           NA      Europe & Central Asia
## 5266  2023-05-10  5.433125e+00           NA      Europe & Central Asia
## 5267  2023-05-10 -5.747326e-01           NA      Europe & Central Asia
## 5268  2023-05-10  1.107304e+01           NA      Europe & Central Asia
## 5269  2023-05-10  1.238885e+01           NA      Europe & Central Asia
## 5270  2023-05-10  2.871145e+00           NA      Europe & Central Asia
## 5271  2023-05-10            NA           NA      Europe & Central Asia
## 5272  2023-05-10  3.660305e+00           NA      Europe & Central Asia
## 5273  2023-05-10  4.803133e+00           NA      Europe & Central Asia
## 5274  2023-05-10  1.313670e+01           NA      Europe & Central Asia
## 5275  2023-05-10 -1.209025e+00           NA      Europe & Central Asia
## 5276  2023-05-10            NA           NA      Europe & Central Asia
## 5277  2023-05-10            NA           NA      Europe & Central Asia
## 5278  2023-05-10  2.709268e+00           NA      Europe & Central Asia
## 5279  2023-05-10  5.667709e+00           NA      Europe & Central Asia
## 5280  2023-05-10  8.896886e+00           NA      Europe & Central Asia
## 5281  2023-05-10  5.044604e+00           NA      Europe & Central Asia
## 5282  2023-05-10  6.041382e+00           NA      Europe & Central Asia
## 5283  2023-05-10  3.888006e+00           NA      Europe & Central Asia
## 5284  2023-05-10  8.181920e+00           NA      Europe & Central Asia
## 5285  2023-05-10  5.387674e+00           NA      Europe & Central Asia
## 5286  2023-05-10  2.019495e+00           NA      Europe & Central Asia
## 5287  2023-05-10  3.861849e+00           NA      Europe & Central Asia
## 5288  2023-05-10  4.751744e+00           NA      Europe & Central Asia
## 5289  2023-05-10  4.150669e+00           NA      Europe & Central Asia
## 5290  2023-05-10  1.003907e+00           NA      Europe & Central Asia
## 5291  2023-05-10  1.323019e+00           NA      Europe & Central Asia
## 5292  2020-07-27            NA 9.949813e+01                       <NA>
## 5293  2020-07-27            NA 9.982404e+01                       <NA>
## 5294  2020-07-27            NA 1.022493e+02                       <NA>
## 5295  2020-07-27            NA 1.056133e+02                       <NA>
## 5296  2020-07-27            NA 1.081357e+02                       <NA>
## 5297  2020-07-27            NA 1.077023e+02                       <NA>
## 5298  2020-07-27            NA 1.062444e+02                       <NA>
## 5299  2020-07-27            NA 1.040150e+02                       <NA>
## 5300  2020-07-27            NA 1.025284e+02                       <NA>
## 5301  2020-07-27            NA 1.030736e+02                       <NA>
## 5302  2020-07-27            NA 1.045533e+02                       <NA>
## 5303  2020-07-27            NA 1.048150e+02                       <NA>
## 5304  2020-07-27            NA 1.043929e+02                       <NA>
## 5305  2020-07-27            NA 9.285764e+01                       <NA>
## 5306  2020-07-27            NA 9.505842e+01                       <NA>
## 5307  2020-07-27            NA 4.839990e+01                       <NA>
## 5308  2020-07-27            NA 5.006241e+01                       <NA>
## 5309  2020-07-27            NA 5.194508e+01                       <NA>
## 5310  2020-07-27            NA 5.428455e+01                       <NA>
## 5311  2020-07-27            NA 5.702101e+01                       <NA>
## 5312  2020-07-27            NA 6.072741e+01                       <NA>
## 5313  2020-07-27            NA 6.369531e+01                       <NA>
## 5314  2020-07-27            NA 6.666580e+01                       <NA>
## 5315  2020-07-27            NA 6.840718e+01                       <NA>
## 5316  2020-07-27            NA 7.044414e+01                       <NA>
## 5317  2020-07-27            NA 7.298558e+01                       <NA>
## 5318  2020-07-27            NA 7.461081e+01                       <NA>
## 5319  2020-07-27            NA 7.591533e+01                       <NA>
## 5320  2020-07-27            NA 7.910512e+01                       <NA>
## 5321  2020-07-27            NA 8.066622e+01                       <NA>
## 5322  2020-07-27            NA 8.292507e+01                       <NA>
## 5323  2020-07-27            NA 8.635930e+01                       <NA>
## 5324  2020-07-27            NA 8.833125e+01                       <NA>
## 5325  2020-07-27            NA 9.059531e+01                       <NA>
## 5326  2020-07-27            NA           NA                       <NA>
## 5327  2020-07-27            NA           NA                       <NA>
## 5328  2020-07-27            NA           NA                       <NA>
## 5329  2020-07-27            NA           NA                       <NA>
## 5330  2020-07-27            NA 3.510811e+01                       <NA>
## 5331  2020-07-27            NA 3.898198e+01                       <NA>
## 5332  2020-07-27            NA 4.703604e+01                       <NA>
## 5333  2020-07-27            NA 5.170270e+01                       <NA>
## 5334  2020-07-27            NA 5.646847e+01                       <NA>
## 5335  2020-07-27            NA 6.141441e+01                       <NA>
## 5336  2020-07-27            NA 6.669369e+01                       <NA>
## 5337  2020-07-27            NA 7.382883e+01                       <NA>
## 5338  2020-07-27            NA 7.540541e+01                       <NA>
## 5339  2020-07-27            NA 7.825225e+01                       <NA>
## 5340  2020-07-27            NA 8.190090e+01                       <NA>
## 5341  2020-07-27            NA 8.345946e+01                       <NA>
## 5342  2020-07-27            NA 8.355856e+01                       <NA>
## 5343  2020-07-27            NA 8.586486e+01                       <NA>
## 5344  2020-07-27            NA 8.745946e+01                       <NA>
## 5345  2020-07-27            NA 8.967568e+01                       <NA>
## 5346  2020-07-27            NA 9.223423e+01                       <NA>
## 5347  2020-07-27            NA 9.809910e+01                       <NA>
## 5348  2020-07-27            NA 9.909910e+01                       <NA>
## 5349  2020-07-27            NA 1.005586e+02                       <NA>
## 5350  2020-07-27            NA 1.024865e+02                       <NA>
## 5351  2020-07-27            NA 1.058559e+02                       <NA>
## 5352  2020-07-27            NA 1.073784e+02                       <NA>
## 5353  2020-07-27            NA 1.077477e+02                       <NA>
## 5354  2020-07-27            NA 1.080811e+02                       <NA>
## 5355  2020-07-27            NA 1.088198e+02                       <NA>
## 5356  2020-07-27            NA 1.114865e+02                       <NA>
## 5357  2020-07-27            NA 1.138829e+02                       <NA>
## 5358  2020-07-27            NA 1.171261e+02                       <NA>
## 5359  2020-07-27            NA 1.203604e+02                       <NA>
## 5360  2023-05-10 -1.425314e+00           NA      Europe & Central Asia
## 5361  2023-05-10  2.009581e+00           NA      Europe & Central Asia
## 5362  2023-05-10  9.494427e-02           NA      Europe & Central Asia
## 5363  2023-05-10  8.821121e+00           NA      Europe & Central Asia
## 5364  2023-05-10  3.540382e+00           NA      Europe & Central Asia
## 5365  2023-05-10  2.724349e+00           NA      Europe & Central Asia
## 5366  2023-05-10 -2.057196e-02           NA      Europe & Central Asia
## 5367  2023-05-10  6.541053e-01           NA      Europe & Central Asia
## 5368  2023-05-10  2.100880e+01           NA      Europe & Central Asia
## 5369  2023-05-10  1.292723e+00           NA      Europe & Central Asia
## 5370  2023-05-10            NA           NA      Europe & Central Asia
## 5371  2023-05-10            NA           NA      Europe & Central Asia
## 5372  2023-05-10            NA           NA      Europe & Central Asia
## 5373  2023-05-10  4.889285e+00           NA      Europe & Central Asia
## 5374  2023-05-10  1.842134e+00           NA      Europe & Central Asia
## 5375  2023-05-10            NA           NA      Europe & Central Asia
## 5376  2023-05-10  9.905094e+00           NA      Europe & Central Asia
## 5377  2023-05-10  2.587821e+00           NA      Europe & Central Asia
## 5378  2023-05-10            NA           NA      Europe & Central Asia
## 5379  2023-05-10            NA           NA      Europe & Central Asia
## 5380  2023-05-10            NA           NA      Europe & Central Asia
## 5381  2023-05-10            NA           NA      Europe & Central Asia
## 5382  2023-05-10  4.049045e+00           NA      Europe & Central Asia
## 5383  2023-05-10            NA           NA      Europe & Central Asia
## 5384  2023-05-10  3.041796e+00           NA      Europe & Central Asia
## 5385  2023-05-10  1.234197e+01           NA      Europe & Central Asia
## 5386  2023-05-10            NA           NA      Europe & Central Asia
## 5387  2023-05-10            NA           NA      Europe & Central Asia
## 5388  2023-05-10            NA           NA      Europe & Central Asia
## 5389  2023-05-10  3.888953e+00           NA      Europe & Central Asia
## 5390  2023-05-10            NA           NA      Europe & Central Asia
## 5391  2023-05-10            NA           NA      Europe & Central Asia
## 5392  2023-05-10  8.311507e+00           NA      Europe & Central Asia
## 5393  2023-05-10            NA           NA      Europe & Central Asia
## 5394  2023-05-10  9.807964e+00           NA      Europe & Central Asia
## 5395  2023-05-10            NA           NA      Europe & Central Asia
## 5396  2023-05-10            NA           NA      Europe & Central Asia
## 5397  2023-05-10            NA           NA      Europe & Central Asia
## 5398  2023-05-10  2.578536e+00           NA      Europe & Central Asia
## 5399  2023-05-10            NA           NA      Europe & Central Asia
## 5400  2023-05-10            NA           NA      Europe & Central Asia
## 5401  2023-05-10            NA           NA      Europe & Central Asia
## 5402  2023-05-10            NA           NA      Europe & Central Asia
## 5403  2023-05-10            NA           NA      Europe & Central Asia
## 5404  2023-05-10            NA           NA      Europe & Central Asia
## 5405  2023-05-10  3.619239e+01           NA      Europe & Central Asia
## 5406  2023-05-10            NA           NA      Europe & Central Asia
## 5407  2023-05-10            NA           NA      Europe & Central Asia
## 5408  2023-05-10            NA           NA      Europe & Central Asia
## 5409  2023-05-10            NA           NA      Europe & Central Asia
## 5410  2023-05-10  1.141451e+00           NA      Europe & Central Asia
## 5411  2023-05-10  1.306944e+00           NA      Europe & Central Asia
## 5412  2023-05-10  3.331700e+00           NA      Europe & Central Asia
## 5413  2023-05-10  1.235726e+01           NA      Europe & Central Asia
## 5414  2023-05-10  1.364705e+00           NA      Europe & Central Asia
## 5415  2023-05-10  2.567574e+00           NA      Europe & Central Asia
## 5416  2023-05-10            NA           NA      Europe & Central Asia
## 5417  2023-05-10  1.450921e+00           NA      Europe & Central Asia
## 5418  2023-05-10            NA           NA      Europe & Central Asia
## 5419  2023-05-10  4.318403e+00           NA      Europe & Central Asia
## 5420  2023-05-10            NA           NA      Europe & Central Asia
## 5421  2023-05-10            NA           NA      Europe & Central Asia
## 5422  2023-05-10  9.922762e-01           NA      Europe & Central Asia
## 5423  2023-05-10  4.454221e+00           NA      Europe & Central Asia
## 5424  2023-05-10  7.068545e+00           NA      Europe & Central Asia
## 5425  2023-05-10  1.069396e+01           NA      Europe & Central Asia
## 5426  2023-05-10            NA           NA      Europe & Central Asia
## 5427  2023-05-10  1.282391e+00           NA      Europe & Central Asia
## 5428  2023-05-10  8.954735e+00           NA      Europe & Central Asia
## 5429  2023-05-10            NA           NA      Europe & Central Asia
## 5430  2023-05-10  1.014454e+01           NA      Europe & Central Asia
## 5431  2023-05-10  1.565502e+00           NA      Europe & Central Asia
## 5432  2023-05-10  8.810550e+00           NA      Europe & Central Asia
## 5433  2023-05-10  1.655911e+00           NA      Europe & Central Asia
## 5434  2023-05-10  1.684754e+00           NA      Europe & Central Asia
## 5435  2023-05-10  5.799178e-01           NA      Europe & Central Asia
## 5436  2023-05-10            NA           NA      Europe & Central Asia
## 5437  2023-05-10  9.601150e+00           NA      Europe & Central Asia
## 5438  2023-05-10  4.754689e+00           NA      Europe & Central Asia
## 5439  2023-05-10  8.875874e+00           NA      Europe & Central Asia
## 5440  2023-05-10  9.380088e+00           NA      Europe & Central Asia
## 5441  2023-05-10  4.290954e+00           NA      Europe & Central Asia
## 5442  2023-05-10  7.445787e+00           NA      Europe & Central Asia
## 5443  2023-05-10  2.013920e+00           NA      Europe & Central Asia
## 5444  2023-05-10  1.232143e+00           NA      Europe & Central Asia
## 5445  2023-05-10  2.014184e+00           NA      Europe & Central Asia
## 5446  2023-05-10  5.959391e+00           NA      Europe & Central Asia
## 5447  2023-05-10  2.602447e+00           NA      Europe & Central Asia
## 5448  2023-05-10  2.315586e+00           NA      Europe & Central Asia
## 5449  2023-05-10  3.944579e+00           NA      Europe & Central Asia
## 5450  2023-05-10  2.766608e+00           NA      Europe & Central Asia
## 5451  2023-05-10  9.031345e+00           NA      Europe & Central Asia
## 5452  2023-05-10  2.375184e+00           NA      Europe & Central Asia
## 5453  2023-05-10  1.048794e+00           NA      Europe & Central Asia
## 5454  2023-05-10  1.481830e+00           NA      Europe & Central Asia
## 5455  2023-05-10  2.607621e+00           NA      Europe & Central Asia
## 5456  2023-05-10  2.659453e+00           NA      Europe & Central Asia
## 5457  2023-05-10  1.032109e+00           NA      Europe & Central Asia
## 5458  2023-05-10  4.965285e+00           NA      Europe & Central Asia
## 5459  2023-05-10  2.432281e+00           NA      Europe & Central Asia
## 5460  2023-05-10  6.386435e-01           NA      Europe & Central Asia
## 5461  2023-05-10  2.347647e+00           NA      Europe & Central Asia
## 5462  2023-05-10  2.076180e+00           NA      Europe & Central Asia
## 5463  2023-05-10  4.330608e-01           NA      Europe & Central Asia
## 5464  2023-05-10  5.290223e-01           NA      Europe & Central Asia
## 5465  2023-05-10  3.224073e+00           NA      Europe & Central Asia
## 5466  2023-05-10  2.906424e+00           NA      Europe & Central Asia
## 5467  2023-05-10  2.518414e+00           NA      Europe & Central Asia
## 5468  2023-05-10            NA           NA      Europe & Central Asia
## 5469  2023-05-10  3.017974e+00           NA      Europe & Central Asia
## 5470  2023-05-10  2.095733e+00           NA      Europe & Central Asia
## 5471  2023-05-10  1.326644e+01           NA      Europe & Central Asia
## 5472  2023-05-10  5.632591e+00           NA      Europe & Central Asia
## 5473  2023-05-10  7.478568e-01           NA      Europe & Central Asia
## 5474  2023-05-10  4.134693e+00           NA      Europe & Central Asia
## 5475  2023-05-10  2.545952e-01           NA      Europe & Central Asia
## 5476  2023-05-10            NA           NA      Europe & Central Asia
## 5477  2023-05-10  7.161902e+00           NA      Europe & Central Asia
## 5478  2023-05-10  1.062030e+01           NA      Europe & Central Asia
## 5479  2023-05-10  8.881709e-01           NA      Europe & Central Asia
## 5480  2023-05-10  1.335581e+01           NA      Europe & Central Asia
## 5481  2023-05-10            NA           NA      Europe & Central Asia
## 5482  2023-05-10            NA           NA      Europe & Central Asia
## 5483  2023-05-10  7.385841e+00           NA      Europe & Central Asia
## 5484  2023-05-10  1.184662e+00           NA      Europe & Central Asia
## 5485  2023-05-10            NA           NA      Europe & Central Asia
## 5486  2020-07-27            NA 1.124454e+02                       <NA>
## 5487  2020-07-27            NA 1.127001e+02                       <NA>
## 5488  2020-07-27            NA 5.990721e+01                       <NA>
## 5489  2020-07-27            NA 6.261827e+01                       <NA>
## 5490  2020-07-27            NA 6.561135e+01                       <NA>
## 5491  2020-07-27            NA 6.734898e+01                       <NA>
## 5492  2020-07-27            NA 6.896834e+01                       <NA>
## 5493  2020-07-27            NA 7.042394e+01                       <NA>
## 5494  2020-07-27            NA 7.127911e+01                       <NA>
## 5495  2020-07-27            NA 7.270742e+01                       <NA>
## 5496  2020-07-27            NA 7.421761e+01                       <NA>
## 5497  2020-07-27            NA 7.581878e+01                       <NA>
## 5498  2020-07-27            NA 7.747453e+01                       <NA>
## 5499  2020-07-27            NA 7.888464e+01                       <NA>
## 5500  2020-07-27            NA 8.084061e+01                       <NA>
## 5501  2020-07-27            NA 8.320597e+01                       <NA>
## 5502  2020-07-27            NA 8.518013e+01                       <NA>
## 5503  2020-07-27            NA 8.724527e+01                       <NA>
## 5504  2020-07-27            NA 8.905568e+01                       <NA>
## 5505  2020-07-27            NA 9.008370e+01                       <NA>
## 5506  2020-07-27            NA 9.172125e+01                       <NA>
## 5507  2020-07-27            NA 9.348617e+01                       <NA>
## 5508  2020-07-27            NA 9.506914e+01                       <NA>
## 5509  2020-07-27            NA 9.831696e+01                       <NA>
## 5510  2020-07-27            NA 9.959971e+01                       <NA>
## 5511  2020-07-27            NA 1.019014e+02                       <NA>
## 5512  2020-07-27            NA 1.047125e+02                       <NA>
## 5513  2020-07-27            NA 1.072234e+02                       <NA>
## 5514  2020-07-27            NA 1.080695e+02                       <NA>
## 5515  2020-07-27            NA 1.086790e+02                       <NA>
## 5516  2020-07-27            NA 1.091703e+02                       <NA>
## 5517  2020-07-27            NA 1.094432e+02                       <NA>
## 5518  2020-07-27            NA 1.106987e+02                       <NA>
## 5519  2020-07-27            NA 1.115993e+02                       <NA>
## 5520  2020-07-27            NA 1.582169e+01                       <NA>
## 5521  2020-07-27            NA 1.834900e+01                       <NA>
## 5522  2020-07-27            NA 2.104523e+01                       <NA>
## 5523  2020-07-27            NA 2.226634e+01                       <NA>
## 5524  2020-07-27            NA 2.391942e+01                       <NA>
## 5525  2020-07-27            NA 2.594061e+01                       <NA>
## 5526  2020-07-27            NA 2.932436e+01                       <NA>
## 5527  2020-07-27            NA 3.773053e+01                       <NA>
## 5528  2020-07-27            NA 4.554715e+01                       <NA>
## 5529  2020-07-27            NA 5.049716e+01                       <NA>
## 5530  2020-07-27            NA 5.342912e+01                       <NA>
## 5531  2020-07-27            NA 5.613689e+01                       <NA>
## 5532  2020-07-27            NA 5.882076e+01                       <NA>
## 5533  2020-07-27            NA 6.135636e+01                       <NA>
## 5534  2020-07-27            NA 6.444106e+01                       <NA>
## 5535  2020-07-27            NA 6.730218e+01                       <NA>
## 5536  2020-07-27            NA 7.104641e+01                       <NA>
## 5537  2020-07-27            NA 7.478229e+01                       <NA>
## 5538  2020-07-27            NA 7.840975e+01                       <NA>
## 5539  2020-07-27            NA 8.196402e+01                       <NA>
## 5540  2020-07-27            NA 8.635560e+01                       <NA>
## 5541  2020-07-27            NA 9.325898e+01                       <NA>
## 5542  2020-07-27            NA 9.703456e+01                       <NA>
## 5543  2020-07-27            NA 1.021404e+02                       <NA>
## 5544  2020-07-27            NA 1.088778e+02                       <NA>
## 5545  2020-07-27            NA 1.145481e+02                       <NA>
## 5546  2020-07-27            NA 1.205258e+02                       <NA>
## 5547  2020-07-27            NA 1.264239e+02                       <NA>
## 5548  2020-07-27            NA 1.332265e+02                       <NA>
## 5549  2020-07-27            NA 1.401772e+02                       <NA>
## 5550  2020-07-27            NA 1.463672e+02                       <NA>
## 5551  2020-07-27            NA 1.526996e+02                       <NA>
## 5552  2020-07-27            NA 1.596313e+02                       <NA>
## 5553  2020-07-27            NA 1.650735e+02                       <NA>
## 5554  2023-05-10            NA           NA Middle East & North Africa
## 5555  2023-05-10            NA           NA Middle East & North Africa
## 5556  2023-05-10            NA           NA Middle East & North Africa
## 5557  2023-05-10            NA           NA Middle East & North Africa
## 5558  2023-05-10            NA           NA Middle East & North Africa
## 5559  2023-05-10            NA           NA Middle East & North Africa
## 5560  2023-05-10            NA           NA Middle East & North Africa
## 5561  2023-05-10            NA           NA Middle East & North Africa
## 5562  2023-05-10            NA           NA Middle East & North Africa
## 5563  2023-05-10            NA           NA Middle East & North Africa
## 5564  2023-05-10            NA           NA Middle East & North Africa
## 5565  2023-05-10  1.262304e+00           NA Middle East & North Africa
## 5566  2023-05-10            NA           NA Middle East & North Africa
## 5567  2023-05-10            NA           NA Middle East & North Africa
## 5568  2023-05-10            NA           NA Middle East & North Africa
## 5569  2023-05-10            NA           NA Middle East & North Africa
## 5570  2023-05-10            NA           NA Middle East & North Africa
## 5571  2023-05-10            NA           NA Middle East & North Africa
## 5572  2023-05-10            NA           NA Middle East & North Africa
## 5573  2023-05-10            NA           NA Middle East & North Africa
## 5574  2023-05-10            NA           NA Middle East & North Africa
## 5575  2023-05-10  5.622315e-01           NA Middle East & North Africa
## 5576  2023-05-10            NA           NA Middle East & North Africa
## 5577  2023-05-10            NA           NA Middle East & North Africa
## 5578  2023-05-10            NA           NA Middle East & North Africa
## 5579  2023-05-10            NA           NA Middle East & North Africa
## 5580  2023-05-10            NA           NA Middle East & North Africa
## 5581  2023-05-10  1.807101e+00           NA Middle East & North Africa
## 5582  2023-05-10            NA           NA Middle East & North Africa
## 5583  2023-05-10  6.560162e-01           NA Middle East & North Africa
## 5584  2023-05-10            NA           NA Middle East & North Africa
## 5585  2023-05-10            NA           NA Middle East & North Africa
## 5586  2023-05-10            NA           NA Middle East & North Africa
## 5587  2023-05-10            NA           NA Middle East & North Africa
## 5588  2023-05-10            NA           NA Middle East & North Africa
## 5589  2023-05-10            NA           NA Middle East & North Africa
## 5590  2023-05-10            NA           NA Middle East & North Africa
## 5591  2023-05-10  4.497974e-01           NA Middle East & North Africa
## 5592  2023-05-10            NA           NA Middle East & North Africa
## 5593  2023-05-10  3.027823e-01           NA Middle East & North Africa
## 5594  2023-05-10            NA           NA Middle East & North Africa
## 5595  2023-05-10            NA           NA Middle East & North Africa
## 5596  2023-05-10            NA           NA Middle East & North Africa
## 5597  2023-05-10            NA           NA Middle East & North Africa
## 5598  2023-05-10            NA           NA Middle East & North Africa
## 5599  2023-05-10            NA           NA Middle East & North Africa
## 5600  2023-05-10            NA           NA Middle East & North Africa
## 5601  2023-05-10            NA           NA Middle East & North Africa
## 5602  2023-05-10            NA           NA Middle East & North Africa
## 5603  2023-05-10  1.762288e+00           NA Middle East & North Africa
## 5604  2023-05-10            NA           NA Middle East & North Africa
## 5605  2023-05-10            NA           NA Middle East & North Africa
## 5606  2023-05-10            NA           NA Middle East & North Africa
## 5607  2023-05-10            NA           NA Middle East & North Africa
## 5608  2023-05-10            NA           NA Middle East & North Africa
## 5609  2023-05-10            NA           NA Middle East & North Africa
## 5610  2023-05-10            NA           NA Middle East & North Africa
## 5611  2023-05-10            NA           NA Middle East & North Africa
## 5612  2023-05-10  4.463731e+00           NA Middle East & North Africa
## 5613  2023-05-10            NA           NA Middle East & North Africa
## 5614  2023-05-10            NA           NA Middle East & North Africa
## 5615  2023-05-10            NA           NA Middle East & North Africa
## 5616  2023-05-10            NA           NA Middle East & North Africa
## 5617  2020-07-27            NA 1.253346e+02                       <NA>
## 5618  2020-07-27            NA 1.266628e+02                       <NA>
## 5619  2020-07-27            NA 1.214914e+02                       <NA>
## 5620  2020-07-27            NA 1.163200e+02                       <NA>
## 5621  2020-07-27            NA 1.111486e+02                       <NA>
## 5622  2020-07-27            NA 1.059772e+02                       <NA>
## 5623  2020-07-27            NA 1.008058e+02                       <NA>
## 5624  2020-07-27            NA 9.563446e+01                       <NA>
## 5625  2020-07-27            NA 9.046308e+01                       <NA>
## 5626  2020-07-27            NA 8.529170e+01                       <NA>
## 5627  2020-07-27            NA 8.012031e+01                       <NA>
## 5628  2020-07-27            NA 7.494893e+01                       <NA>
## 5629  2020-07-27            NA 7.042044e+01                       <NA>
## 5630  2020-07-27            NA 7.141680e+01                       <NA>
## 5631  2020-07-27            NA 7.266527e+01                       <NA>
## 5632  2020-07-27            NA 7.312899e+01                       <NA>
## 5633  2020-07-27            NA 7.457875e+01                       <NA>
## 5634  2020-07-27            NA 7.689988e+01                       <NA>
## 5635  2020-07-27            NA 7.928982e+01                       <NA>
## 5636  2020-07-27            NA 8.205429e+01                       <NA>
## 5637  2020-07-27            NA 8.612838e+01                       <NA>
## 5638  2020-07-27            NA 9.642614e+01                       <NA>
## 5639  2020-07-27            NA 9.804406e+01                       <NA>
## 5640  2020-07-27            NA 1.019143e+02                       <NA>
## 5641  2020-07-27            NA 1.070815e+02                       <NA>
## 5642  2020-07-27            NA 1.110783e+02                       <NA>
## 5643  2020-07-27            NA 1.140839e+02                       <NA>
## 5644  2020-07-27            NA 1.156144e+02                       <NA>
## 5645  2020-07-27            NA 1.146351e+02                       <NA>
## 5646  2020-07-27            NA 1.177725e+02                       <NA>
## 5647  2020-07-27            NA 1.184426e+02                       <NA>
## 5648  2020-07-27            NA 1.186167e+02                       <NA>
## 5649  2020-07-27            NA 1.225532e+02                       <NA>
## 5650  2020-07-27            NA 1.244802e+02                       <NA>
## 5651  2023-05-10            NA           NA  Latin America & Caribbean
## 5652  2023-05-10  5.693870e+00           NA  Latin America & Caribbean
## 5653  2023-05-10 -1.132771e+00           NA  Latin America & Caribbean
## 5654  2023-05-10 -3.403994e-01           NA  Latin America & Caribbean
## 5655  2023-05-10  3.025697e+00           NA  Latin America & Caribbean
## 5656  2023-05-10  4.483286e+00           NA  Latin America & Caribbean
## 5657  2023-05-10  3.264948e+00           NA  Latin America & Caribbean
## 5658  2023-05-10  5.641479e+00           NA  Latin America & Caribbean
## 5659  2023-05-10  2.724916e+00           NA  Latin America & Caribbean
## 5660  2023-05-10            NA           NA  Latin America & Caribbean
## 5661  2023-05-10  7.934209e+00           NA  Latin America & Caribbean
## 5662  2023-05-10            NA           NA  Latin America & Caribbean
## 5663  2023-05-10  3.697899e+00           NA  Latin America & Caribbean
## 5664  2023-05-10  4.498859e+00           NA  Latin America & Caribbean
## 5665  2023-05-10  8.407412e+00           NA  Latin America & Caribbean
## 5666  2023-05-10  7.650728e+00           NA  Latin America & Caribbean
## 5667  2023-05-10            NA           NA  Latin America & Caribbean
## 5668  2023-05-10  7.839339e-01           NA  Latin America & Caribbean
## 5669  2023-05-10 -1.782731e+00           NA  Latin America & Caribbean
## 5670  2023-05-10 -3.073315e+00           NA  Latin America & Caribbean
## 5671  2023-05-10  1.757963e+00           NA  Latin America & Caribbean
## 5672  2023-05-10 -3.119273e+00           NA  Latin America & Caribbean
## 5673  2023-05-10  7.639527e+00           NA  Latin America & Caribbean
## 5674  2023-05-10            NA           NA  Latin America & Caribbean
## 5675  2023-05-10  1.266953e+01           NA  Latin America & Caribbean
## 5676  2023-05-10  6.865465e+00           NA  Latin America & Caribbean
## 5677  2023-05-10  3.208355e+00           NA  Latin America & Caribbean
## 5678  2023-05-10            NA           NA  Latin America & Caribbean
## 5679  2023-05-10  4.386877e+00           NA  Latin America & Caribbean
## 5680  2023-05-10  3.792007e+00           NA  Latin America & Caribbean
## 5681  2023-05-10  2.084345e+00           NA  Latin America & Caribbean
## 5682  2023-05-10            NA           NA  Latin America & Caribbean
## 5683  2023-05-10  7.459475e+00           NA  Latin America & Caribbean
## 5684  2023-05-10  1.670987e+01           NA  Latin America & Caribbean
## 5685  2023-05-10            NA           NA  Latin America & Caribbean
## 5686  2023-05-10  2.536390e+00           NA  Latin America & Caribbean
## 5687  2023-05-10            NA           NA  Latin America & Caribbean
## 5688  2023-05-10  2.679710e+00           NA  Latin America & Caribbean
## 5689  2023-05-10  1.525049e+00           NA  Latin America & Caribbean
## 5690  2023-05-10  6.177909e+00           NA  Latin America & Caribbean
## 5691  2023-05-10  3.566487e+00           NA  Latin America & Caribbean
## 5692  2023-05-10  8.003914e+00           NA  Latin America & Caribbean
## 5693  2023-05-10  4.714873e+00           NA  Latin America & Caribbean
## 5694  2023-05-10            NA           NA  Latin America & Caribbean
## 5695  2023-05-10            NA           NA  Latin America & Caribbean
## 5696  2023-05-10  1.795877e+01           NA  Latin America & Caribbean
## 5697  2023-05-10            NA           NA  Latin America & Caribbean
## 5698  2023-05-10  1.685322e+00           NA  Latin America & Caribbean
## 5699  2023-05-10 -1.961543e+00           NA  Latin America & Caribbean
## 5700  2023-05-10            NA           NA  Latin America & Caribbean
## 5701  2023-05-10  1.508378e+00           NA  Latin America & Caribbean
## 5702  2023-05-10  2.540113e+00           NA  Latin America & Caribbean
## 5703  2023-05-10            NA           NA  Latin America & Caribbean
## 5704  2023-05-10            NA           NA  Latin America & Caribbean
## 5705  2023-05-10            NA           NA  Latin America & Caribbean
## 5706  2023-05-10  7.905886e-01           NA  Latin America & Caribbean
## 5707  2023-05-10  2.367080e+00           NA  Latin America & Caribbean
## 5708  2023-05-10            NA           NA  Latin America & Caribbean
## 5709  2023-05-10  2.969697e-01           NA  Latin America & Caribbean
## 5710  2023-05-10            NA           NA  Latin America & Caribbean
## 5711  2023-05-10  1.444868e+00           NA  Latin America & Caribbean
## 5712  2023-05-10 -1.448228e+00           NA  Latin America & Caribbean
## 5713  2023-05-10            NA           NA  Latin America & Caribbean
## 5714  2020-07-27            NA 5.829711e+01                       <NA>
## 5715  2020-07-27            NA 6.000207e+01                       <NA>
## 5716  2020-07-27            NA 6.373331e+01                       <NA>
## 5717  2020-07-27            NA 6.576699e+01                       <NA>
## 5718  2020-07-27            NA 6.942170e+01                       <NA>
## 5719  2020-07-27            NA 7.322033e+01                       <NA>
## 5720  2020-07-27            NA 7.436918e+01                       <NA>
## 5721  2020-07-27            NA 7.438044e+01                       <NA>
## 5722  2020-07-27            NA 7.536043e+01                       <NA>
## 5723  2020-07-27            NA 7.662435e+01                       <NA>
## 5724  2020-07-27            NA 7.849114e+01                       <NA>
## 5725  2020-07-27            NA 7.927538e+01                       <NA>
## 5726  2020-07-27            NA 8.021042e+01                       <NA>
## 5727  2020-07-27            NA 8.089778e+01                       <NA>
## 5728  2020-07-27            NA 8.195260e+01                       <NA>
## 5729  2020-07-27            NA 8.209197e+01                       <NA>
## 5730  2020-07-27            NA 1.060416e+02                       <NA>
## 5731  2020-07-27            NA           NA                       <NA>
## 5732  2020-07-27            NA 1.045129e+02                       <NA>
## 5733  2020-07-27            NA 8.671331e+01                       <NA>
## 5734  2020-07-27            NA 8.527900e+01                       <NA>
## 5735  2020-07-27            NA 8.862308e+01                       <NA>
## 5736  2020-07-27            NA 9.184206e+01                       <NA>
## 5737  2020-07-27            NA 9.768314e+01                       <NA>
## 5738  2020-07-27            NA 1.030374e+02                       <NA>
## 5739  2020-07-27            NA 8.328507e+01                       <NA>
## 5740  2020-07-27            NA 9.768926e+01                       <NA>
## 5741  2020-07-27            NA 1.006193e+02                       <NA>
## 5742  2020-07-27            NA 1.017576e+02                       <NA>
## 5743  2020-07-27            NA 1.031382e+02                       <NA>
## 5744  2020-07-27            NA 1.030903e+02                       <NA>
## 5745  2020-07-27            NA 1.039143e+02                       <NA>
## 5746  2020-07-27            NA 1.031835e+02                       <NA>
## 5747  2020-07-27            NA 1.034892e+02                       <NA>
## 5748  2023-05-10  7.242219e+00           NA  Latin America & Caribbean
## 5749  2023-05-10  9.387271e+00           NA  Latin America & Caribbean
## 5750  2023-05-10  1.048059e+00           NA  Latin America & Caribbean
## 5751  2023-05-10  3.836729e+01           NA  Latin America & Caribbean
## 5752  2023-05-10  6.596398e+00           NA  Latin America & Caribbean
## 5753  2023-05-10  8.060755e+00           NA  Latin America & Caribbean
## 5754  2023-05-10  7.190403e+00           NA  Latin America & Caribbean
## 5755  2023-05-10  2.867251e+00           NA  Latin America & Caribbean
## 5756  2023-05-10  4.692819e+00           NA  Latin America & Caribbean
## 5757  2023-05-10  7.512025e+00           NA  Latin America & Caribbean
## 5758  2023-05-10  3.498147e+00           NA  Latin America & Caribbean
## 5759  2023-05-10  1.388440e+01           NA  Latin America & Caribbean
## 5760  2023-05-10  5.098182e+00           NA  Latin America & Caribbean
## 5761  2023-05-10  1.993678e+00           NA  Latin America & Caribbean
## 5762  2023-05-10  7.640189e+00           NA  Latin America & Caribbean
## 5763  2023-05-10  3.346154e+01           NA  Latin America & Caribbean
## 5764  2023-05-10  4.723504e+00           NA  Latin America & Caribbean
## 5765  2023-05-10  5.443413e+00           NA  Latin America & Caribbean
## 5766  2023-05-10  1.013588e+01           NA  Latin America & Caribbean
## 5767  2023-05-10  2.106256e+00           NA  Latin America & Caribbean
## 5768  2023-05-10  2.360881e+01           NA  Latin America & Caribbean
## 5769  2023-05-10  3.669737e+00           NA  Latin America & Caribbean
## 5770  2023-05-10  1.786308e+00           NA  Latin America & Caribbean
## 5771  2023-05-10 -1.056859e+00           NA  Latin America & Caribbean
## 5772  2023-05-10  7.207763e+00           NA  Latin America & Caribbean
## 5773  2023-05-10  1.111078e+01           NA  Latin America & Caribbean
## 5774  2023-05-10  6.504701e+00           NA  Latin America & Caribbean
## 5775  2023-05-10  2.418429e+01           NA  Latin America & Caribbean
## 5776  2023-05-10  1.057636e+01           NA  Latin America & Caribbean
## 5777  2023-05-10  5.568290e+00           NA  Latin America & Caribbean
## 5778  2023-05-10 -4.179404e-01           NA  Latin America & Caribbean
## 5779  2023-05-10  2.471886e+00           NA  Latin America & Caribbean
## 5780  2023-05-10 -2.358710e+00           NA  Latin America & Caribbean
## 5781  2023-05-10  3.834154e+00           NA  Latin America & Caribbean
## 5782  2023-05-10  1.039169e+01           NA  Latin America & Caribbean
## 5783  2023-05-10  1.694679e+01           NA  Latin America & Caribbean
## 5784  2023-05-10  9.451333e+00           NA  Latin America & Caribbean
## 5785  2023-05-10  9.652386e+00           NA  Latin America & Caribbean
## 5786  2023-05-10  2.525619e+00           NA  Latin America & Caribbean
## 5787  2023-05-10  4.353587e+01           NA  Latin America & Caribbean
## 5788  2023-05-10  5.045926e+01           NA  Latin America & Caribbean
## 5789  2023-05-10            NA           NA  Latin America & Caribbean
## 5790  2023-05-10  4.983763e+00           NA  Latin America & Caribbean
## 5791  2023-05-10  1.770918e+01           NA  Latin America & Caribbean
## 5792  2023-05-10  4.506397e+00           NA  Latin America & Caribbean
## 5793  2023-05-10  7.636627e+00           NA  Latin America & Caribbean
## 5794  2023-05-10  8.027382e+00           NA  Latin America & Caribbean
## 5795  2023-05-10  4.121490e+00           NA  Latin America & Caribbean
## 5796  2023-05-10  1.029614e+02           NA  Latin America & Caribbean
## 5797  2023-05-10  4.321289e+00           NA  Latin America & Caribbean
## 5798  2023-05-10            NA           NA  Latin America & Caribbean
## 5799  2023-05-10  4.032528e+00           NA  Latin America & Caribbean
## 5800  2023-05-10  2.830484e+00           NA  Latin America & Caribbean
## 5801  2023-05-10  6.040739e+00           NA  Latin America & Caribbean
## 5802  2023-05-10  1.184239e+00           NA  Latin America & Caribbean
## 5803  2023-05-10  7.777158e+00           NA  Latin America & Caribbean
## 5804  2023-05-10  4.181375e+00           NA  Latin America & Caribbean
## 5805  2023-05-10  1.442295e+01           NA  Latin America & Caribbean
## 5806  2023-05-10  6.920669e+00           NA  Latin America & Caribbean
## 5807  2023-05-10  5.781252e+00           NA  Latin America & Caribbean
## 5808  2023-05-10  4.516631e+01           NA  Latin America & Caribbean
## 5809  2023-05-10  6.641245e+00           NA  Latin America & Caribbean
## 5810  2023-05-10  2.111706e+00           NA  Latin America & Caribbean
## 5811  2020-07-27            NA 3.956061e+00                       <NA>
## 5812  2020-07-27            NA 5.693338e+00                       <NA>
## 5813  2020-07-27            NA 8.006502e+00                       <NA>
## 5814  2020-07-27            NA 1.204820e+01                       <NA>
## 5815  2020-07-27            NA 1.771882e+01                       <NA>
## 5816  2020-07-27            NA 1.847385e+01                       <NA>
## 5817  2020-07-27            NA 1.944299e+01                       <NA>
## 5818  2020-07-27            NA 2.104918e+01                       <NA>
## 5819  2020-07-27            NA 2.368830e+01                       <NA>
## 5820  2020-07-27            NA 2.496679e+01                       <NA>
## 5821  2020-07-27            NA 2.703877e+01                       <NA>
## 5822  2020-07-27            NA 2.834522e+01                       <NA>
## 5823  2020-07-27            NA 3.017862e+01                       <NA>
## 5824  2020-07-27            NA 3.251101e+01                       <NA>
## 5825  2020-07-27            NA 3.539919e+01                       <NA>
## 5826  2020-07-27            NA 3.724920e+01                       <NA>
## 5827  2020-07-27            NA 1.148123e+02                       <NA>
## 5828  2020-07-27            NA 1.203588e+02                       <NA>
## 5829  2020-07-27            NA 1.239679e+02                       <NA>
## 5830  2020-07-27            NA 1.250052e+02                       <NA>
## 5831  2020-07-27            NA 1.270230e+02                       <NA>
## 5832  2020-07-27            NA 1.311888e+02                       <NA>
## 5833  2020-07-27            NA 1.358650e+02                       <NA>
## 5834  2020-07-27            NA 1.383249e+02                       <NA>
## 5835  2020-07-27            NA 1.107217e+02                       <NA>
## 5836  2020-07-27            NA 1.405079e+02                       <NA>
## 5837  2020-07-27            NA 4.747099e+01                       <NA>
## 5838  2020-07-27            NA 7.190034e+01                       <NA>
## 5839  2020-07-27            NA 7.491436e+01                       <NA>
## 5840  2020-07-27            NA 8.058847e+01                       <NA>
## 5841  2020-07-27            NA 8.553726e+01                       <NA>
## 5842  2020-07-27            NA 9.464311e+01                       <NA>
## 5843  2020-07-27            NA 9.600898e+01                       <NA>
## 5844  2020-07-27            NA 1.020851e+02                       <NA>
## 5845  2020-07-27            NA 7.985707e+01                       <NA>
## 5846  2020-07-27            NA 8.301547e+01                       <NA>
## 5847  2020-07-27            NA 8.534843e+01                       <NA>
## 5848  2020-07-27            NA 8.786794e+01                       <NA>
## 5849  2020-07-27            NA 9.202866e+01                       <NA>
## 5850  2020-07-27            NA 9.806803e+01                       <NA>
## 5851  2020-07-27            NA 9.809720e+01                       <NA>
## 5852  2020-07-27            NA 1.014714e+02                       <NA>
## 5853  2020-07-27            NA 1.070967e+02                       <NA>
## 5854  2020-07-27            NA 1.101721e+02                       <NA>
## 5855  2020-07-27            NA 1.134820e+02                       <NA>
## 5856  2020-07-27            NA 1.164577e+02                       <NA>
## 5857  2020-07-27            NA 1.187042e+02                       <NA>
## 5858  2020-07-27            NA 1.212959e+02                       <NA>
## 5859  2020-07-27            NA 1.235861e+02                       <NA>
## 5860  2020-07-27            NA 1.262325e+02                       <NA>
## 5861  2020-07-27            NA 1.296696e+02                       <NA>
## 5862  2020-07-27            NA 1.327291e+02                       <NA>
## 5863  2020-07-27            NA 3.204766e+01                       <NA>
## 5864  2020-07-27            NA 3.719364e+01                       <NA>
## 5865  2020-07-27            NA 2.756720e+01                       <NA>
## 5866  2020-07-27            NA 3.850116e+01                       <NA>
## 5867  2020-07-27            NA 7.857488e+01                       <NA>
## 5868  2020-07-27            NA 6.757310e+01                       <NA>
## 5869  2020-07-27            NA 4.012182e+01                       <NA>
## 5870  2020-07-27            NA 4.262678e+01                       <NA>
## 5871  2020-07-27            NA 5.856693e+01                       <NA>
## 5872  2020-07-27            NA 7.298449e+01                       <NA>
## 5873  2020-07-27            NA 7.521798e+01                       <NA>
## 5874  2020-07-27            NA 7.658198e+01                       <NA>
## 5875  2020-07-27            NA 4.820377e+01                       <NA>
## 5876  2020-07-27            NA 7.661565e+01                       <NA>
## 5877  2020-07-27            NA 7.715285e+01                       <NA>
## 5878  2020-07-27            NA 7.830477e+01                       <NA>
## 5879  2020-07-27            NA           NA                       <NA>
## 5880  2020-07-27            NA           NA                       <NA>
## 5881  2020-07-27            NA           NA                       <NA>
## 5882  2020-07-27            NA           NA                       <NA>
## 5883  2020-07-27            NA 2.248052e+00                       <NA>
## 5884  2020-07-27            NA 3.257677e+00                       <NA>
## 5885  2020-07-27            NA 5.172408e+00                       <NA>
## 5886  2020-07-27            NA 8.430802e+00                       <NA>
## 5887  2020-07-27            NA 1.329315e+01                       <NA>
## 5888  2020-07-27            NA 1.698131e+01                       <NA>
## 5889  2020-07-27            NA 2.054551e+01                       <NA>
## 5890  2020-07-27            NA 2.448124e+01                       <NA>
## 5891  2020-07-27            NA 3.231188e+01                       <NA>
## 5892  2020-07-27            NA 3.858944e+01                       <NA>
## 5893  2020-07-27            NA 4.600051e+01                       <NA>
## 5894  2020-07-27            NA 5.307558e+01                       <NA>
## 5895  2020-07-27            NA 5.931396e+01                       <NA>
## 5896  2020-07-27            NA 6.425944e+01                       <NA>
## 5897  2020-07-27            NA 6.969974e+01                       <NA>
## 5898  2020-07-27            NA 7.489154e+01                       <NA>
## 5899  2020-07-27            NA 8.054246e+01                       <NA>
## 5900  2020-07-27            NA 8.949717e+01                       <NA>
## 5901  2020-07-27            NA 9.653903e+01                       <NA>
## 5902  2020-07-27            NA 1.026465e+02                       <NA>
## 5903  2020-07-27            NA 1.105870e+02                       <NA>
## 5904  2020-07-27            NA 1.181037e+02                       <NA>
## 5905  2020-07-27            NA 1.251947e+02                       <NA>
## 5906  2020-07-27            NA 1.332414e+02                       <NA>
## 5907  2020-07-27            NA 1.456635e+02                       <NA>
## 5908  2020-07-27            NA 1.545833e+02                       <NA>
## 5909  2020-07-27            NA 1.629654e+02                       <NA>
## 5910  2020-07-27            NA 1.731743e+02                       <NA>
## 5911  2020-07-27            NA 1.853239e+02                       <NA>
## 5912  2020-07-27            NA 1.934194e+02                       <NA>
## 5913  2020-07-27            NA           NA                       <NA>
## 5914  2020-07-27            NA           NA                       <NA>
## 5915  2020-07-27            NA 5.493116e+00                       <NA>
## 5916  2020-07-27            NA 6.908385e+00                       <NA>
## 5917  2020-07-27            NA 8.832738e+00                       <NA>
## 5918  2020-07-27            NA 1.052741e+01                       <NA>
## 5919  2020-07-27            NA 1.263229e+01                       <NA>
## 5920  2020-07-27            NA 2.509877e+01                       <NA>
## 5921  2020-07-27            NA 3.543749e+01                       <NA>
## 5922  2020-07-27            NA 4.182826e+01                       <NA>
## 5923  2020-07-27            NA 4.625127e+01                       <NA>
## 5924  2020-07-27            NA 7.260357e+01                       <NA>
## 5925  2020-07-27            NA 7.690757e+01                       <NA>
## 5926  2020-07-27            NA 8.116925e+01                       <NA>
## 5927  2020-07-27            NA 8.450801e+01                       <NA>
## 5928  2020-07-27            NA 8.793355e+01                       <NA>
## 5929  2020-07-27            NA 6.205524e+01                       <NA>
## 5930  2020-07-27            NA 6.611755e+01                       <NA>
## 5931  2020-07-27            NA 9.343702e+01                       <NA>
## 5932  2020-07-27            NA 9.773659e+01                       <NA>
## 5933  2020-07-27            NA 1.019700e+02                       <NA>
## 5934  2020-07-27            NA 1.074414e+02                       <NA>
## 5935  2020-07-27            NA 1.125335e+02                       <NA>
## 5936  2020-07-27            NA 1.180304e+02                       <NA>
## 5937  2020-07-27            NA 1.243036e+02                       <NA>
## 5938  2020-07-27            NA 1.320722e+02                       <NA>
## 5939  2020-07-27            NA 1.406298e+02                       <NA>
## 5940  2020-07-27            NA 1.462125e+02                       <NA>
## 5941  2020-07-27            NA 1.516798e+02                       <NA>
## 5942  2020-07-27            NA 1.570239e+02                       <NA>
## 5943  2020-07-27            NA 1.606793e+02                       <NA>
## 5944  2020-07-27            NA 4.981068e+01                       <NA>
## 5945  2020-07-27            NA 5.387860e+01                       <NA>
## 5946  2020-07-27            NA 5.817947e+01                       <NA>
## 5947  2020-07-27            NA 1.477560e+02                       <NA>
## 5948  2020-07-27            NA 1.507234e+02                       <NA>
## 5949  2020-07-27            NA 1.536902e+02                       <NA>
## 5950  2020-07-27            NA 7.112751e+01                       <NA>
## 5951  2020-07-27            NA 7.139004e+01                       <NA>
## 5952  2020-07-27            NA 7.171878e+01                       <NA>
## 5953  2020-07-27            NA 7.203576e+01                       <NA>
## 5954  2020-07-27            NA 7.238529e+01                       <NA>
## 5955  2020-07-27            NA 7.358654e+01                       <NA>
## 5956  2020-07-27            NA 7.569130e+01                       <NA>
## 5957  2020-07-27            NA 7.787985e+01                       <NA>
## 5958  2020-07-27            NA 8.105493e+01                       <NA>
## 5959  2020-07-27            NA 8.509854e+01                       <NA>
## 5960  2020-07-27            NA 9.384045e+01                       <NA>
## 5961  2020-07-27            NA 9.819280e+01                       <NA>
## 5962  2020-07-27            NA 1.022683e+02                       <NA>
## 5963  2020-07-27            NA 1.071847e+02                       <NA>
## 5964  2020-07-27            NA 1.115250e+02                       <NA>
## 5965  2020-07-27            NA 1.160725e+02                       <NA>
## 5966  2020-07-27            NA 1.203011e+02                       <NA>
## 5967  2020-07-27            NA 1.251392e+02                       <NA>
## 5968  2020-07-27            NA 1.309842e+02                       <NA>
## 5969  2020-07-27            NA 1.400730e+02                       <NA>
## 5970  2020-07-27            NA 6.583912e+01                       <NA>
## 5971  2020-07-27            NA 6.864358e+01                       <NA>
## 5972  2020-07-27            NA 6.993079e+01                       <NA>
## 5973  2020-07-27            NA 5.605014e+01                       <NA>
## 5974  2020-07-27            NA 5.836922e+01                       <NA>
## 5975  2020-07-27            NA 6.085683e+01                       <NA>
## 5976  2020-07-27            NA 5.399727e+01                       <NA>
## 5977  2020-07-27            NA 4.518883e+01                       <NA>
## 5978  2020-07-27            NA 4.641609e+01                       <NA>
## 5979  2020-07-27            NA 4.810183e+01                       <NA>
## 5980  2020-07-27            NA 5.034165e+01                       <NA>
## 5981  2020-07-27            NA 5.362951e+01                       <NA>
## 5982  2020-07-27            NA 5.573050e+01                       <NA>
## 5983  2020-07-27            NA 5.776009e+01                       <NA>
## 5984  2020-07-27            NA 6.062799e+01                       <NA>
## 5985  2020-07-27            NA 6.323030e+01                       <NA>
## 5986  2020-07-27            NA 6.597392e+01                       <NA>
## 5987  2020-07-27            NA 6.888943e+01                       <NA>
## 5988  2020-07-27            NA 7.318946e+01                       <NA>
## 5989  2020-07-27            NA 7.779677e+01                       <NA>
## 5990  2020-07-27            NA 8.531274e+01                       <NA>
## 5991  2020-07-27            NA 9.342665e+01                       <NA>
## 5992  2020-07-27            NA 1.031063e+02                       <NA>
## 5993  2020-07-27            NA 1.121694e+02                       <NA>
## 5994  2020-07-27            NA 1.225160e+02                       <NA>
## 5995  2020-07-27            NA 1.343856e+02                       <NA>
## 5996  2020-07-27            NA 1.431428e+02                       <NA>
## 5997  2020-07-27            NA 1.499225e+02                       <NA>
## 5998  2020-07-27            NA 1.572848e+02                       <NA>
## 5999  2020-07-27            NA 1.629973e+02                       <NA>
## 6000  2020-07-27            NA 1.697410e+02                       <NA>
## 6001  2020-07-27            NA 1.771433e+02                       <NA>
## 6002  2020-07-27            NA 1.852508e+02                       <NA>
## 6003  2020-07-27            NA 1.859070e+01                       <NA>
## 6004  2020-07-27            NA 2.032591e+01                       <NA>
## 6005  2020-07-27            NA 2.177870e+01                       <NA>
## 6006  2020-07-27            NA 2.373048e+01                       <NA>
## 6007  2020-07-27            NA 2.698638e+01                       <NA>
## 6008  2020-07-27            NA 3.014577e+01                       <NA>
## 6009  2020-07-27            NA 3.213677e+01                       <NA>
## 6010  2020-07-27            NA 3.541908e+01                       <NA>
## 6011  2020-07-27            NA 3.908534e+01                       <NA>
## 6012  2020-07-27            NA 4.246539e+01                       <NA>
## 6013  2020-07-27            NA 4.558159e+01                       <NA>
## 6014  2020-07-27            NA 5.120170e+01                       <NA>
## 6015  2020-07-27            NA 1.298222e+01                       <NA>
## 6016  2020-07-27            NA 1.407476e+01                       <NA>
## 6017  2020-07-27            NA 1.568466e+01                       <NA>
## 6018  2020-07-27            NA 1.729761e+01                       <NA>
## 6019  2020-07-27            NA 1.904136e+01                       <NA>
## 6020  2020-07-27            NA 2.132803e+01                       <NA>
## 6021  2020-07-27            NA 2.394797e+01                       <NA>
## 6022  2020-07-27            NA 2.866602e+01                       <NA>
## 6023  2020-07-27            NA 3.377071e+01                       <NA>
## 6024  2020-07-27            NA 3.758178e+01                       <NA>
## 6025  2020-07-27            NA 4.071659e+01                       <NA>
## 6026  2020-07-27            NA 4.337766e+01                       <NA>
## 6027  2020-07-27            NA 4.554167e+01                       <NA>
## 6028  2020-07-27            NA 4.819436e+01                       <NA>
## 6029  2020-07-27            NA 5.273259e+01                       <NA>
## 6030  2020-07-27            NA 5.746854e+01                       <NA>
## 6031  2020-07-27            NA 8.814732e+01                       <NA>
## 6032  2020-07-27            NA 9.625199e+01                       <NA>
## 6033  2020-07-27            NA 1.031506e+02                       <NA>
## 6034  2020-07-27            NA 1.113400e+02                       <NA>
## 6035  2020-07-27            NA 1.206379e+02                       <NA>
## 6036  2020-07-27            NA 1.287160e+02                       <NA>
## 6037  2020-07-27            NA 1.373213e+02                       <NA>
## 6038  2020-07-27            NA 6.207074e+01                       <NA>
## 6039  2020-07-27            NA 6.542473e+01                       <NA>
## 6040  2020-07-27            NA 7.097515e+01                       <NA>
## 6041  2020-07-27            NA 7.512119e+01                       <NA>
## 6042  2020-07-27            NA 7.956439e+01                       <NA>
## 6043  2020-07-27            NA 1.465407e+02                       <NA>
## 6044  2020-07-27            NA 1.617984e+02                       <NA>
## 6045  2020-07-27            NA 1.783627e+02                       <NA>
## 6046  2020-07-27            NA 1.924333e+02                       <NA>
## 6047  2020-07-27            NA 2.068092e+02                       <NA>
## 6048  2020-07-27            NA 2.187399e+02                       <NA>
## 6049  2023-05-10  9.796055e+00           NA                 Aggregates
## 6050  2023-05-10  9.399948e+00           NA                 Aggregates
## 6051  2023-05-10  1.036171e+01           NA                 Aggregates
## 6052  2023-05-10  7.993447e+00           NA                 Aggregates
## 6053  2023-05-10  8.996391e+00           NA                 Aggregates
## 6054  2023-05-10  8.788257e+00           NA                 Aggregates
## 6055  2023-05-10  7.196132e+00           NA                 Aggregates
## 6056  2023-05-10  1.524180e+00           NA                 Aggregates
## 6057  2023-05-10  1.275820e+01           NA                 Aggregates
## 6058  2023-05-10  1.084176e+01           NA                 Aggregates
## 6059  2023-05-10  9.767216e+00           NA                 Aggregates
## 6060  2023-05-10  6.837045e+00           NA                 Aggregates
## 6061  2023-05-10  4.231548e+00           NA                 Aggregates
## 6062  2023-05-10  1.097043e+01           NA                 Aggregates
## 6063  2023-05-10  8.944221e+00           NA                 Aggregates
## 6064  2023-05-10  5.618862e+00           NA                 Aggregates
## 6065  2023-05-10  5.098182e+00           NA                 Aggregates
## 6066  2023-05-10  2.688000e+00           NA                 Aggregates
## 6067  2023-05-10  6.138946e+00           NA                 Aggregates
## 6068  2023-05-10  8.343721e+00           NA                 Aggregates
## 6069  2023-05-10            NA           NA                 Aggregates
## 6070  2023-05-10  2.835086e+00           NA                 Aggregates
## 6071  2023-05-10  7.115351e+00           NA                 Aggregates
## 6072  2023-05-10  2.793749e+00           NA                 Aggregates
## 6073  2023-05-10  3.022306e+00           NA                 Aggregates
## 6074  2023-05-10  7.151937e+00           NA                 Aggregates
## 6075  2023-05-10  4.039791e+00           NA                 Aggregates
## 6076  2023-05-10  2.415384e+00           NA                 Aggregates
## 6077  2023-05-10  1.224775e+01           NA                 Aggregates
## 6078  2023-05-10  4.759817e+00           NA                 Aggregates
## 6079  2023-05-10  2.845416e+00           NA                 Aggregates
## 6080  2023-05-10  4.756286e+00           NA                 Aggregates
## 6081  2023-05-10  6.576832e+00           NA                 Aggregates
## 6082  2023-05-10  3.745754e+00           NA                 Aggregates
## 6083  2023-05-10  4.752914e+00           NA                 Aggregates
## 6084  2023-05-10  2.685892e+00           NA                 Aggregates
## 6085  2023-05-10  4.181375e+00           NA                 Aggregates
## 6086  2023-05-10  1.043400e+01           NA                 Aggregates
## 6087  2023-05-10  1.179694e+01           NA                 Aggregates
## 6088  2023-05-10            NA           NA                 Aggregates
## 6089  2023-05-10  1.530147e+01           NA                 Aggregates
## 6090  2023-05-10  4.120047e+00           NA                 Aggregates
## 6091  2023-05-10  7.474872e+00           NA                 Aggregates
## 6092  2023-05-10  2.171062e+01           NA                 Aggregates
## 6093  2023-05-10  2.621120e+00           NA                 Aggregates
## 6094  2023-05-10  3.708353e+00           NA                 Aggregates
## 6095  2023-05-10  7.085416e+00           NA                 Aggregates
## 6096  2023-05-10  2.735138e+00           NA                 Aggregates
## 6097  2023-05-10  7.193785e+00           NA                 Aggregates
## 6098  2023-05-10  1.494097e+01           NA                 Aggregates
## 6099  2023-05-10  2.998538e+00           NA                 Aggregates
## 6100  2023-05-10  5.324841e+00           NA                 Aggregates
## 6101  2023-05-10  7.765279e+00           NA                 Aggregates
## 6102  2023-05-10  2.728638e+00           NA                 Aggregates
## 6103  2023-05-10  8.060755e+00           NA                 Aggregates
## 6104  2023-05-10  1.054151e+01           NA                 Aggregates
## 6105  2023-05-10  1.558848e+01           NA                 Aggregates
## 6106  2023-05-10  8.060348e+00           NA                 Aggregates
## 6107  2023-05-10  1.007734e+01           NA                 Aggregates
## 6108  2023-05-10  7.512025e+00           NA                 Aggregates
## 6109  2023-05-10  5.539337e+00           NA                 Aggregates
## 6110  2023-05-10  9.356153e+00           NA                 Aggregates
## 6111  2023-05-10  1.105004e+01           NA                 Aggregates
## 6112  2023-05-10            NA           NA                 Aggregates
## 6113  2023-05-10  1.936764e+00           NA                 Aggregates
## 6114  2023-05-10            NA           NA                 Aggregates
## 6115  2023-05-10  6.976338e+00           NA                 Aggregates
## 6116  2023-05-10  2.881098e+00           NA                 Aggregates
## 6117  2023-05-10  1.078601e+01           NA                 Aggregates
## 6118  2023-05-10  2.841222e+00           NA                 Aggregates
## 6119  2023-05-10  7.497126e+00           NA                 Aggregates
## 6120  2023-05-10  5.959670e+00           NA                 Aggregates
## 6121  2023-05-10  3.078639e+00           NA                 Aggregates
## 6122  2023-05-10  3.685778e+00           NA                 Aggregates
## 6123  2023-05-10  6.065126e+00           NA                 Aggregates
## 6124  2023-05-10            NA           NA                 Aggregates
## 6125  2023-05-10  6.363571e+00           NA                 Aggregates
## 6126  2023-05-10  3.820489e+00           NA                 Aggregates
## 6127  2023-05-10  3.734077e+00           NA                 Aggregates
## 6128  2023-05-10            NA           NA                 Aggregates
## 6129  2023-05-10  3.949439e+00           NA                 Aggregates
## 6130  2023-05-10  2.908278e+00           NA                 Aggregates
## 6131  2023-05-10  3.177188e+00           NA                 Aggregates
## 6132  2023-05-10            NA           NA                 Aggregates
## 6133  2023-05-10  7.328016e+00           NA                 Aggregates
## 6134  2023-05-10  2.987418e+00           NA                 Aggregates
## 6135  2023-05-10  1.902784e+00           NA                 Aggregates
## 6136  2023-05-10  3.368438e+00           NA                 Aggregates
## 6137  2023-05-10  6.918343e+00           NA                 Aggregates
## 6138  2023-05-10  1.330757e+01           NA                 Aggregates
## 6139  2023-05-10  2.272645e+00           NA                 Aggregates
## 6140  2023-05-10  3.127880e+00           NA                 Aggregates
## 6141  2023-05-10            NA           NA                 Aggregates
## 6142  2023-05-10  3.679903e+00           NA                 Aggregates
## 6143  2023-05-10            NA           NA                 Aggregates
## 6144  2023-05-10  3.413641e+00           NA                 Aggregates
## 6145  2023-05-10  1.548987e+00           NA                 Aggregates
## 6146  2023-05-10            NA           NA                 Aggregates
## 6147  2023-05-10  1.795679e+00           NA                 Aggregates
## 6148  2023-05-10            NA           NA                 Aggregates
## 6149  2023-05-10  2.435482e+00           NA                 Aggregates
## 6150  2023-05-10  6.096848e+00           NA                 Aggregates
## 6151  2023-05-10  9.525572e+00           NA                 Aggregates
## 6152  2023-05-10  3.159233e+00           NA                 Aggregates
## 6153  2023-05-10  3.081011e+00           NA                 Aggregates
## 6154  2023-05-10            NA           NA                 Aggregates
## 6155  2023-05-10            NA           NA                 Aggregates
## 6156  2023-05-10            NA           NA                 Aggregates
## 6157  2023-05-10            NA           NA                 Aggregates
## 6158  2023-05-10  1.223609e+00           NA                 Aggregates
## 6159  2023-05-10  2.800900e+00           NA                 Aggregates
## 6160  2023-05-10            NA           NA                 Aggregates
## 6161  2023-05-10  2.603178e+00           NA                 Aggregates
## 6162  2023-05-10            NA           NA                 Aggregates
## 6163  2023-05-10  2.849796e+00           NA                 Aggregates
## 6164  2023-05-10            NA           NA                 Aggregates
## 6165  2023-05-10  6.412955e+00           NA                 Aggregates
## 6166  2023-05-10  4.003286e+00           NA                 Aggregates
## 6167  2023-05-10  4.053958e+00           NA                 Aggregates
## 6168  2023-05-10            NA           NA                 Aggregates
## 6169  2023-05-10            NA           NA                 Aggregates
## 6170  2023-05-10  5.812316e+00           NA                 Aggregates
## 6171  2023-05-10  7.171893e+00           NA                 Aggregates
## 6172  2023-05-10            NA           NA                 Aggregates
## 6173  2023-05-10  3.633420e+00           NA                 Aggregates
## 6174  2023-05-10  6.321238e+00           NA                 Aggregates
## 6175  2023-05-10            NA           NA                 Aggregates
## 6176  2023-05-10  6.218123e+00           NA                 Aggregates
## 6177  2023-05-10  8.496710e+00           NA                 Aggregates
## 6178  2023-05-10            NA           NA                 Aggregates
## 6179  2023-05-10            NA           NA                 Aggregates
## 6180  2023-05-10  4.026475e+00           NA                 Aggregates
## 6181  2023-05-10  7.590921e+00           NA                 Aggregates
## 6182  2023-05-10  7.288856e+00           NA                 Aggregates
## 6183  2023-05-10            NA           NA                 Aggregates
## 6184  2023-05-10            NA           NA                 Aggregates
## 6185  2023-05-10  6.514383e+00           NA                 Aggregates
## 6186  2023-05-10  2.931491e+00           NA                 Aggregates
## 6187  2023-05-10  7.738584e+00           NA                 Aggregates
## 6188  2023-05-10  2.453881e+00           NA                 Aggregates
## 6189  2023-05-10  7.795346e+00           NA                 Aggregates
## 6190  2023-05-10            NA           NA                 Aggregates
## 6191  2023-05-10  6.816755e+00           NA                 Aggregates
## 6192  2023-05-10  5.776960e+00           NA                 Aggregates
## 6193  2023-05-10            NA           NA                 Aggregates
## 6194  2023-05-10  7.755832e+00           NA                 Aggregates
## 6195  2023-05-10  5.548391e+00           NA                 Aggregates
## 6196  2023-05-10            NA           NA                 Aggregates
## 6197  2023-05-10  5.412408e+00           NA                 Aggregates
## 6198  2023-05-10  4.229785e+00           NA                 Aggregates
## 6199  2023-05-10  4.631109e+00           NA                 Aggregates
## 6200  2023-05-10            NA           NA                 Aggregates
## 6201  2023-05-10            NA           NA                 Aggregates
## 6202  2023-05-10            NA           NA                 Aggregates
## 6203  2023-05-10  6.132446e+00           NA                 Aggregates
## 6204  2023-05-10  7.245674e+00           NA                 Aggregates
## 6205  2023-05-10  4.483946e+00           NA                 Aggregates
## 6206  2023-05-10  6.282702e+00           NA                 Aggregates
## 6207  2023-05-10  7.842954e+00           NA                 Aggregates
## 6208  2023-05-10  3.023894e+00           NA                 Aggregates
## 6209  2023-05-10            NA           NA                 Aggregates
## 6210  2023-05-10  6.490655e+00           NA                 Aggregates
## 6211  2023-05-10            NA           NA                 Aggregates
## 6212  2023-05-10            NA           NA                 Aggregates
## 6213  2023-05-10            NA           NA                 Aggregates
## 6214  2023-05-10            NA           NA                 Aggregates
## 6215  2023-05-10  5.928048e+00           NA                 Aggregates
## 6216  2023-05-10  2.633326e+00           NA                 Aggregates
## 6217  2023-05-10            NA           NA                 Aggregates
## 6218  2023-05-10  1.499486e+00           NA                 Aggregates
## 6219  2023-05-10            NA           NA                 Aggregates
## 6220  2023-05-10  2.843315e+00           NA                 Aggregates
## 6221  2023-05-10  5.280086e+00           NA                 Aggregates
## 6222  2023-05-10  6.691270e+00           NA                 Aggregates
## 6223  2023-05-10  2.346290e+00           NA                 Aggregates
## 6224  2023-05-10            NA           NA                 Aggregates
## 6225  2023-05-10            NA           NA                 Aggregates
## 6226  2023-05-10            NA           NA                 Aggregates
## 6227  2023-05-10  1.764654e+00           NA                 Aggregates
## 6228  2023-05-10  3.499748e+00           NA                 Aggregates
## 6229  2023-05-10  2.348496e+00           NA                 Aggregates
## 6230  2023-05-10  4.465010e+00           NA                 Aggregates
## 6231  2023-05-10  3.245532e+00           NA                 Aggregates
## 6232  2023-05-10  6.076679e+00           NA                 Aggregates
## 6233  2023-05-10            NA           NA                 Aggregates
## 6234  2023-05-10            NA           NA                 Aggregates
## 6235  2023-05-10  1.033295e+00           NA                 Aggregates
## 6236  2023-05-10  3.508772e+00           NA                 Aggregates
## 6237  2023-05-10  3.495877e+00           NA                 Aggregates
## 6238  2023-05-10            NA           NA                 Aggregates
## 6239  2023-05-10            NA           NA                 Aggregates
## 6240  2023-05-10  6.691270e+00           NA                 Aggregates
## 6241  2023-05-10            NA           NA                 Aggregates
## 6242  2023-05-10  6.816755e+00           NA                 Aggregates
## 6243  2023-05-10  5.548391e+00           NA                 Aggregates
## 6244  2023-05-10  4.483946e+00           NA                 Aggregates
## 6245  2023-05-10  4.465010e+00           NA                 Aggregates
## 6246  2023-05-10            NA           NA                 Aggregates
## 6247  2023-05-10  7.755832e+00           NA                 Aggregates
## 6248  2023-05-10            NA           NA                 Aggregates
## 6249  2023-05-10  4.823738e+00           NA                 Aggregates
## 6250  2023-05-10            NA           NA                 Aggregates
## 6251  2023-05-10            NA           NA                 Aggregates
## 6252  2023-05-10            NA           NA                 Aggregates
## 6253  2023-05-10  2.453881e+00           NA                 Aggregates
## 6254  2023-05-10            NA           NA                 Aggregates
## 6255  2023-05-10  1.764654e+00           NA                 Aggregates
## 6256  2023-05-10  6.282702e+00           NA                 Aggregates
## 6257  2023-05-10            NA           NA                 Aggregates
## 6258  2023-05-10            NA           NA                 Aggregates
## 6259  2023-05-10  4.631109e+00           NA                 Aggregates
## 6260  2023-05-10  2.931491e+00           NA                 Aggregates
## 6261  2023-05-10  6.076679e+00           NA                 Aggregates
## 6262  2023-05-10            NA           NA                 Aggregates
## 6263  2023-05-10            NA           NA                 Aggregates
## 6264  2023-05-10  6.490655e+00           NA                 Aggregates
## 6265  2023-05-10  6.218123e+00           NA                 Aggregates
## 6266  2023-05-10            NA           NA                 Aggregates
## 6267  2023-05-10  8.496710e+00           NA                 Aggregates
## 6268  2023-05-10            NA           NA                 Aggregates
## 6269  2023-05-10            NA           NA                 Aggregates
## 6270  2023-05-10            NA           NA                 Aggregates
## 6271  2023-05-10  3.192131e+00           NA                 Aggregates
## 6272  2023-05-10  5.776960e+00           NA                 Aggregates
## 6273  2023-05-10            NA           NA                 Aggregates
## 6274  2023-05-10  6.514383e+00           NA                 Aggregates
## 6275  2023-05-10            NA           NA                 Aggregates
## 6276  2023-05-10            NA           NA                 Aggregates
## 6277  2023-05-10  7.590921e+00           NA                 Aggregates
## 6278  2023-05-10  6.132446e+00           NA                 Aggregates
## 6279  2023-05-10  7.245674e+00           NA                 Aggregates
## 6280  2023-05-10  3.341042e+00           NA                 Aggregates
## 6281  2023-05-10  7.288856e+00           NA                 Aggregates
## 6282  2023-05-10  4.229785e+00           NA                 Aggregates
## 6283  2023-05-10            NA           NA                 Aggregates
## 6284  2023-05-10  1.033295e+00           NA                 Aggregates
## 6285  2023-05-10  2.778273e+00           NA                 Aggregates
## 6286  2023-05-10  7.842954e+00           NA                 Aggregates
## 6287  2023-05-10  3.023894e+00           NA                 Aggregates
## 6288  2023-05-10            NA           NA                 Aggregates
## 6289  2023-05-10            NA           NA                 Aggregates
## 6290  2023-05-10  5.928048e+00           NA                 Aggregates
## 6291  2023-05-10  2.348496e+00           NA                 Aggregates
## 6292  2023-05-10  2.346290e+00           NA                 Aggregates
## 6293  2023-05-10  7.795346e+00           NA                 Aggregates
## 6294  2023-05-10  1.499486e+00           NA                 Aggregates
## 6295  2023-05-10  3.495877e+00           NA                 Aggregates
## 6296  2023-05-10  2.517846e+00           NA                 Aggregates
## 6297  2023-05-10  4.476828e+00           NA                 Aggregates
## 6298  2023-05-10  3.206645e+00           NA                 Aggregates
## 6299  2023-05-10  7.738584e+00           NA                 Aggregates
## 6300  2023-05-10  4.026475e+00           NA                 Aggregates
## 6301  2020-07-27            NA 8.301547e+01                       <NA>
## 6302  2020-07-27            NA 8.534843e+01                       <NA>
## 6303  2020-07-27            NA 8.786794e+01                       <NA>
## 6304  2020-07-27            NA 9.202866e+01                       <NA>
## 6305  2020-07-27            NA 9.806803e+01                       <NA>
## 6306  2020-07-27            NA 9.809720e+01                       <NA>
## 6307  2020-07-27            NA 1.014714e+02                       <NA>
## 6308  2020-07-27            NA 1.070967e+02                       <NA>
## 6309  2020-07-27            NA 1.101721e+02                       <NA>
## 6310  2020-07-27            NA 1.134820e+02                       <NA>
## 6311  2020-07-27            NA 1.164577e+02                       <NA>
## 6312  2020-07-27            NA 1.187042e+02                       <NA>
## 6313  2020-07-27            NA 1.212959e+02                       <NA>
## 6314  2020-07-27            NA 1.235861e+02                       <NA>
## 6315  2020-07-27            NA 1.262325e+02                       <NA>
## 6316  2020-07-27            NA 1.296696e+02                       <NA>
## 6317  2020-07-27            NA 1.327291e+02                       <NA>
## 6318  2020-07-27            NA 7.715285e+01                       <NA>
## 6319  2020-07-27            NA 7.830477e+01                       <NA>
## 6320  2020-07-27            NA 7.857488e+01                       <NA>
## 6321  2020-07-27            NA 7.985707e+01                       <NA>
## 6322  2020-07-27            NA 7.658198e+01                       <NA>
## 6323  2020-07-27            NA 7.661565e+01                       <NA>
## 6324  2020-07-27            NA 3.719364e+01                       <NA>
## 6325  2020-07-27            NA 3.850116e+01                       <NA>
## 6326  2020-07-27            NA 4.012182e+01                       <NA>
## 6327  2020-07-27            NA 4.262678e+01                       <NA>
## 6328  2020-07-27            NA 4.820377e+01                       <NA>
## 6329  2020-07-27            NA 5.856693e+01                       <NA>
## 6330  2020-07-27            NA 6.757310e+01                       <NA>
## 6331  2020-07-27            NA 7.298449e+01                       <NA>
## 6332  2020-07-27            NA 7.521798e+01                       <NA>
## 6333  2020-07-27            NA 2.756720e+01                       <NA>
## 6334  2020-07-27            NA 3.204766e+01                       <NA>
## 6335  2023-05-10 -7.714067e+00           NA  Latin America & Caribbean
## 6336  2023-05-10  7.006173e+00           NA  Latin America & Caribbean
## 6337  2023-05-10  1.490155e+00           NA  Latin America & Caribbean
## 6338  2023-05-10  2.641771e+00           NA  Latin America & Caribbean
## 6339  2023-05-10 -3.782679e+00           NA  Latin America & Caribbean
## 6340  2023-05-10  5.222553e+00           NA  Latin America & Caribbean
## 6341  2023-05-10  1.500872e+01           NA  Latin America & Caribbean
## 6342  2023-05-10 -7.752454e-01           NA  Latin America & Caribbean
## 6343  2023-05-10 -2.629999e+01           NA  Latin America & Caribbean
## 6344  2023-05-10  1.452778e+01           NA  Latin America & Caribbean
## 6345  2023-05-10  2.994578e+00           NA  Latin America & Caribbean
## 6346  2023-05-10 -9.993765e+00           NA  Latin America & Caribbean
## 6347  2023-05-10  4.954500e-01           NA  Latin America & Caribbean
## 6348  2023-05-10  1.818874e+00           NA  Latin America & Caribbean
## 6349  2023-05-10            NA           NA  Latin America & Caribbean
## 6350  2023-05-10  1.768543e+01           NA  Latin America & Caribbean
## 6351  2023-05-10  4.731875e-01           NA  Latin America & Caribbean
## 6352  2023-05-10  2.289897e+00           NA  Latin America & Caribbean
## 6353  2023-05-10  2.117154e+00           NA  Latin America & Caribbean
## 6354  2023-05-10  1.461446e+01           NA  Latin America & Caribbean
## 6355  2023-05-10 -1.369042e+01           NA  Latin America & Caribbean
## 6356  2023-05-10  5.247956e+01           NA  Latin America & Caribbean
## 6357  2023-05-10 -1.161380e+01           NA  Latin America & Caribbean
## 6358  2023-05-10  1.059309e+01           NA  Latin America & Caribbean
## 6359  2023-05-10 -8.701014e+00           NA  Latin America & Caribbean
## 6360  2023-05-10  7.732711e+00           NA  Latin America & Caribbean
## 6361  2023-05-10  1.936072e+01           NA  Latin America & Caribbean
## 6362  2023-05-10  2.841428e+01           NA  Latin America & Caribbean
## 6363  2023-05-10  1.946398e+00           NA  Latin America & Caribbean
## 6364  2023-05-10  1.901647e+00           NA  Latin America & Caribbean
## 6365  2023-05-10  4.303229e+00           NA  Latin America & Caribbean
## 6366  2023-05-10 -2.491021e+00           NA  Latin America & Caribbean
## 6367  2023-05-10  4.261846e+00           NA  Latin America & Caribbean
## 6368  2023-05-10  1.208527e+01           NA  Latin America & Caribbean
## 6369  2023-05-10  1.514820e+01           NA  Latin America & Caribbean
## 6370  2023-05-10  6.555376e-01           NA  Latin America & Caribbean
## 6371  2023-05-10 -3.990993e-01           NA  Latin America & Caribbean
## 6372  2023-05-10  8.000911e+00           NA  Latin America & Caribbean
## 6373  2023-05-10  5.813629e+00           NA  Latin America & Caribbean
## 6374  2023-05-10  1.549145e+01           NA  Latin America & Caribbean
## 6375  2023-05-10  1.384732e+01           NA  Latin America & Caribbean
## 6376  2023-05-10 -1.364483e+01           NA  Latin America & Caribbean
## 6377  2023-05-10 -1.132044e+01           NA  Latin America & Caribbean
## 6378  2023-05-10  6.889320e+00           NA  Latin America & Caribbean
## 6379  2023-05-10            NA           NA  Latin America & Caribbean
## 6380  2023-05-10  2.163569e+01           NA  Latin America & Caribbean
## 6381  2023-05-10 -2.440140e+00           NA  Latin America & Caribbean
## 6382  2023-05-10 -3.921355e+00           NA  Latin America & Caribbean
## 6383  2023-05-10  6.650502e+00           NA  Latin America & Caribbean
## 6384  2023-05-10  4.985253e+00           NA  Latin America & Caribbean
## 6385  2023-05-10  3.095049e+00           NA  Latin America & Caribbean
## 6386  2023-05-10 -9.182174e+00           NA  Latin America & Caribbean
## 6387  2023-05-10  9.493714e+00           NA  Latin America & Caribbean
## 6388  2023-05-10  5.575829e+00           NA  Latin America & Caribbean
## 6389  2023-05-10  2.579331e+00           NA  Latin America & Caribbean
## 6390  2023-05-10 -1.393638e+01           NA  Latin America & Caribbean
## 6391  2023-05-10 -9.478970e+00           NA  Latin America & Caribbean
## 6392  2023-05-10  7.465080e+00           NA  Latin America & Caribbean
## 6393  2023-05-10  3.030703e+00           NA  Latin America & Caribbean
## 6394  2023-05-10  1.014965e+01           NA  Latin America & Caribbean
## 6395  2023-05-10  7.197484e+00           NA  Latin America & Caribbean
## 6396  2023-05-10  5.367978e+00           NA  Latin America & Caribbean
## 6397  2023-05-10  5.662657e+00           NA  Latin America & Caribbean
## 6398  2020-07-27            NA 7.937467e+01                       <NA>
## 6399  2020-07-27            NA 8.109700e+01                       <NA>
## 6400  2020-07-27            NA 8.377205e+01                       <NA>
## 6401  2020-07-27            NA 8.567878e+01                       <NA>
## 6402  2020-07-27            NA 9.287609e+01                       <NA>
## 6403  2020-07-27            NA 4.471477e+00                       <NA>
## 6404  2020-07-27            NA 5.693496e+00                       <NA>
## 6405  2020-07-27            NA 4.622245e+01                       <NA>
## 6406  2020-07-27            NA 6.363622e+01                       <NA>
## 6407  2020-07-27            NA 7.158132e+01                       <NA>
## 6408  2020-07-27            NA 7.725697e+01                       <NA>
## 6409  2020-07-27            NA 9.766854e+01                       <NA>
## 6410  2020-07-27            NA 1.011398e+02                       <NA>
## 6411  2020-07-27            NA 1.056654e+02                       <NA>
## 6412  2020-07-27            NA 1.110562e+02                       <NA>
## 6413  2020-07-27            NA 1.140789e+02                       <NA>
## 6414  2020-07-27            NA 1.181737e+02                       <NA>
## 6415  2020-07-27            NA 1.228609e+02                       <NA>
## 6416  2020-07-27            NA 1.249843e+02                       <NA>
## 6417  2020-07-27            NA 1.255056e+02                       <NA>
## 6418  2020-07-27            NA 1.252246e+02                       <NA>
## 6419  2020-07-27            NA 1.255578e+02                       <NA>
## 6420  2020-07-27            NA 1.259116e+02                       <NA>
## 6421  2020-07-27            NA 1.342038e+00                       <NA>
## 6422  2020-07-27            NA 1.994707e+00                       <NA>
## 6423  2020-07-27            NA 3.084803e+00                       <NA>
## 6424  2020-07-27            NA 6.996850e+00                       <NA>
## 6425  2020-07-27            NA 3.243507e-01                       <NA>
## 6426  2020-07-27            NA 5.147952e-01                       <NA>
## 6427  2020-07-27            NA 9.036192e-01                       <NA>
## 6428  2020-07-27            NA 8.706882e+00                       <NA>
## 6429  2020-07-27            NA 1.137608e+01                       <NA>
## 6430  2020-07-27            NA 1.548353e+01                       <NA>
## 6431  2020-07-27            NA 2.357147e+01                       <NA>
## 6432  2020-07-27            NA 4.481318e+01                       <NA>
## 6433  2020-07-27            NA 4.611603e+01                       <NA>
## 6434  2020-07-27            NA 4.734513e+01                       <NA>
## 6435  2020-07-27            NA 4.842675e+01                       <NA>
## 6436  2020-07-27            NA 4.972960e+01                       <NA>
## 6437  2020-07-27            NA 5.201573e+01                       <NA>
## 6438  2020-07-27            NA 5.789086e+01                       <NA>
## 6439  2020-07-27            NA 6.066863e+01                       <NA>
## 6440  2020-07-27            NA 6.533923e+01                       <NA>
## 6441  2020-07-27            NA 7.150934e+01                       <NA>
## 6442  2020-07-27            NA 8.458702e+01                       <NA>
## 6443  2020-07-27            NA 9.459194e+01                       <NA>
## 6444  2020-07-27            NA 1.050639e+02                       <NA>
## 6445  2020-07-27            NA 1.156588e+02                       <NA>
## 6446  2020-07-27            NA 1.239430e+02                       <NA>
## 6447  2020-07-27            NA 1.356441e+02                       <NA>
## 6448  2020-07-27            NA 1.493363e+02                       <NA>
## 6449  2020-07-27            NA 1.647984e+02                       <NA>
## 6450  2020-07-27            NA 1.875860e+02                       <NA>
## 6451  2020-07-27            NA 2.429204e+02                       <NA>
## 6452  2020-07-27            NA 2.778761e+02                       <NA>
## 6453  2020-07-27            NA 3.033677e+02                       <NA>
## 6454  2020-07-27            NA 3.148476e+02                       <NA>
## 6455  2020-07-27            NA 1.202065e+01                       <NA>
## 6456  2020-07-27            NA 1.423304e+01                       <NA>
## 6457  2020-07-27            NA 1.720747e+01                       <NA>
## 6458  2020-07-27            NA 2.010816e+01                       <NA>
## 6459  2020-07-27            NA 2.411504e+01                       <NA>
## 6460  2020-07-27            NA 2.740905e+01                       <NA>
## 6461  2020-07-27            NA 3.067847e+01                       <NA>
## 6462  2020-07-27            NA 3.316126e+01                       <NA>
## 6463  2020-07-27            NA 3.842183e+01                       <NA>
## 6464  2020-07-27            NA 4.119961e+01                       <NA>
## 6465  2020-07-27            NA 4.299410e+01                       <NA>
## 6466  2023-05-10  1.246937e+01           NA Middle East & North Africa
## 6467  2023-05-10  1.774305e+01           NA Middle East & North Africa
## 6468  2023-05-10  1.271186e+01           NA Middle East & North Africa
## 6469  2023-05-10 -2.198235e+00           NA Middle East & North Africa
## 6470  2023-05-10  8.247453e+00           NA Middle East & North Africa
## 6471  2023-05-10  2.349987e+01           NA Middle East & North Africa
## 6472  2023-05-10  2.473086e+01           NA Middle East & North Africa
## 6473  2023-05-10  1.243087e+01           NA Middle East & North Africa
## 6474  2023-05-10  1.341755e+01           NA Middle East & North Africa
## 6475  2023-05-10  1.157604e+01           NA Middle East & North Africa
## 6476  2023-05-10  7.107667e+00           NA Middle East & North Africa
## 6477  2023-05-10  3.399094e+00           NA Middle East & North Africa
## 6478  2023-05-10  1.287517e+01           NA Middle East & North Africa
## 6479  2023-05-10            NA           NA Middle East & North Africa
## 6480  2023-05-10  8.448872e+00           NA Middle East & North Africa
## 6481  2023-05-10  6.221218e+00           NA Middle East & North Africa
## 6482  2023-05-10  1.259574e+01           NA Middle East & North Africa
## 6483  2023-05-10  1.835078e+01           NA Middle East & North Africa
## 6484  2023-05-10  4.813716e+00           NA Middle East & North Africa
## 6485  2023-05-10  1.139974e+01           NA Middle East & North Africa
## 6486  2023-05-10  1.612527e+01           NA Middle East & North Africa
## 6487  2023-05-10  1.913740e+01           NA Middle East & North Africa
## 6488  2023-05-10  8.063102e-01           NA Middle East & North Africa
## 6489  2023-05-10  3.960269e-01           NA Middle East & North Africa
## 6490  2023-05-10  1.609971e+00           NA Middle East & North Africa
## 6491  2023-05-10  1.010686e+01           NA Middle East & North Africa
## 6492  2023-05-10            NA           NA Middle East & North Africa
## 6493  2023-05-10  7.352615e+00           NA Middle East & North Africa
## 6494  2023-05-10  1.362257e+01           NA Middle East & North Africa
## 6495  2023-05-10  1.166298e+01           NA Middle East & North Africa
## 6496  2023-05-10  9.547622e+00           NA Middle East & North Africa
## 6497  2023-05-10  8.622951e-01           NA Middle East & North Africa
## 6498  2023-05-10  2.751198e+00           NA Middle East & North Africa
## 6499  2023-05-10  9.153711e-01           NA Middle East & North Africa
## 6500  2023-05-10  8.429105e+00           NA Middle East & North Africa
## 6501  2023-05-10  3.165579e+00           NA Middle East & North Africa
## 6502  2023-05-10  1.153328e+01           NA Middle East & North Africa
## 6503  2023-05-10  1.326730e+00           NA Middle East & North Africa
## 6504  2023-05-10  2.377681e+00           NA Middle East & North Africa
## 6505  2023-05-10  1.801431e+00           NA Middle East & North Africa
## 6506  2023-05-10  9.424980e+00           NA Middle East & North Africa
## 6507  2023-05-10  1.124762e+01           NA Middle East & North Africa
## 6508  2023-05-10  1.220398e+01           NA Middle East & North Africa
## 6509  2023-05-10  1.867700e+00           NA Middle East & North Africa
## 6510  2023-05-10  1.166991e+01           NA Middle East & North Africa
## 6511  2023-05-10  2.832013e+00           NA Middle East & North Africa
## 6512  2023-05-10  1.118554e+01           NA Middle East & North Africa
## 6513  2023-05-10  1.251617e+01           NA Middle East & North Africa
## 6514  2023-05-10  6.212730e+00           NA Middle East & North Africa
## 6515  2023-05-10  3.944407e+00           NA Middle East & North Africa
## 6516  2023-05-10  9.663879e+00           NA Middle East & North Africa
## 6517  2023-05-10  5.464558e+00           NA Middle East & North Africa
## 6518  2023-05-10  7.359978e+00           NA Middle East & North Africa
## 6519  2023-05-10  1.233792e+01           NA Middle East & North Africa
## 6520  2023-05-10  8.712675e+00           NA Middle East & North Africa
## 6521  2023-05-10  9.194354e-01           NA Middle East & North Africa
## 6522  2023-05-10  9.930890e+00           NA Middle East & North Africa
## 6523  2023-05-10  6.245663e+00           NA Middle East & North Africa
## 6524  2023-05-10  2.293255e+01           NA Middle East & North Africa
## 6525  2023-05-10  2.142623e+01           NA Middle East & North Africa
## 6526  2023-05-10  6.777494e+00           NA Middle East & North Africa
## 6527  2023-05-10  9.876277e+00           NA Middle East & North Africa
## 6528  2023-05-10  1.948288e+01           NA Middle East & North Africa
## 6529  2020-07-27            NA 1.853677e+01                       <NA>
## 6530  2020-07-27            NA 2.219816e+01                       <NA>
## 6531  2020-07-27            NA 2.611177e+01                       <NA>
## 6532  2020-07-27            NA 3.237754e+01                       <NA>
## 6533  2020-07-27            NA 3.704284e+01                       <NA>
## 6534  2020-07-27            NA 4.119956e+01                       <NA>
## 6535  2020-07-27            NA 4.882351e+01                       <NA>
## 6536  2020-07-27            NA 5.399077e+01                       <NA>
## 6537  2020-07-27            NA 5.940611e+01                       <NA>
## 6538  2020-07-27            NA 6.522219e+01                       <NA>
## 6539  2020-07-27            NA 6.815097e+01                       <NA>
## 6540  2020-07-27            NA 6.988832e+01                       <NA>
## 6541  2020-07-27            NA 7.024675e+01                       <NA>
## 6542  2020-07-27            NA 7.184389e+01                       <NA>
## 6543  2020-07-27            NA 7.453455e+01                       <NA>
## 6544  2020-07-27            NA 7.592759e+01                       <NA>
## 6545  2020-07-27            NA 7.753800e+01                       <NA>
## 6546  2020-07-27            NA 8.099031e+01                       <NA>
## 6547  2020-07-27            NA 8.478860e+01                       <NA>
## 6548  2020-07-27            NA 8.821021e+01                       <NA>
## 6549  2020-07-27            NA 9.224993e+01                       <NA>
## 6550  2020-07-27            NA 9.894547e+01                       <NA>
## 6551  2020-07-27            NA 9.947730e+01                       <NA>
## 6552  2020-07-27            NA 1.006505e+02                       <NA>
## 6553  2020-07-27            NA 1.058128e+02                       <NA>
## 6554  2020-07-27            NA 1.076430e+02                       <NA>
## 6555  2020-07-27            NA 1.084586e+02                       <NA>
## 6556  2020-07-27            NA 1.096965e+02                       <NA>
## 6557  2020-07-27            NA 1.088942e+02                       <NA>
## 6558  2020-07-27            NA 1.095521e+02                       <NA>
## 6559  2020-07-27            NA 1.106631e+02                       <NA>
## 6560  2020-07-27            NA 1.118670e+02                       <NA>
## 6561  2020-07-27            NA 1.119499e+02                       <NA>
## 6562  2020-07-27            NA 1.115857e+02                       <NA>
## 6563  2023-05-10  8.480147e-01           NA  Latin America & Caribbean
## 6564  2023-05-10            NA           NA  Latin America & Caribbean
## 6565  2023-05-10  2.373944e+00           NA  Latin America & Caribbean
## 6566  2023-05-10  4.230095e+00           NA  Latin America & Caribbean
## 6567  2023-05-10  3.054087e+00           NA  Latin America & Caribbean
## 6568  2023-05-10 -4.861268e-01           NA  Latin America & Caribbean
## 6569  2023-05-10  9.941052e-01           NA  Latin America & Caribbean
## 6570  2023-05-10            NA           NA  Latin America & Caribbean
## 6571  2023-05-10  9.600131e-01           NA  Latin America & Caribbean
## 6572  2023-05-10 -3.935076e-01           NA  Latin America & Caribbean
## 6573  2023-05-10  9.649148e+00           NA  Latin America & Caribbean
## 6574  2023-05-10  6.577461e-01           NA  Latin America & Caribbean
## 6575  2023-05-10  6.088425e+00           NA  Latin America & Caribbean
## 6576  2023-05-10  2.717673e+00           NA  Latin America & Caribbean
## 6577  2023-05-10  3.905756e+00           NA  Latin America & Caribbean
## 6578  2023-05-10  5.794662e-01           NA  Latin America & Caribbean
## 6579  2023-05-10  2.540407e+00           NA  Latin America & Caribbean
## 6580  2023-05-10  2.965671e+00           NA  Latin America & Caribbean
## 6581  2023-05-10  3.272632e+00           NA  Latin America & Caribbean
## 6582  2023-05-10  1.832163e+01           NA  Latin America & Caribbean
## 6583  2023-05-10  3.355395e+00           NA  Latin America & Caribbean
## 6584  2023-05-10  5.105728e+00           NA  Latin America & Caribbean
## 6585  2023-05-10  1.716263e+00           NA  Latin America & Caribbean
## 6586  2023-05-10  8.841366e+00           NA  Latin America & Caribbean
## 6587  2023-05-10  9.865665e-01           NA  Latin America & Caribbean
## 6588  2023-05-10  4.003165e-01           NA  Latin America & Caribbean
## 6589  2023-05-10  1.307618e+00           NA  Latin America & Caribbean
## 6590  2023-05-10  1.556241e+01           NA  Latin America & Caribbean
## 6591  2023-05-10  1.013779e+00           NA  Latin America & Caribbean
## 6592  2023-05-10  4.321343e+00           NA  Latin America & Caribbean
## 6593  2023-05-10  3.526469e+00           NA  Latin America & Caribbean
## 6594  2023-05-10  3.153781e+00           NA  Latin America & Caribbean
## 6595  2023-05-10  4.837512e+00           NA  Latin America & Caribbean
## 6596  2023-05-10  1.588998e+00           NA  Latin America & Caribbean
## 6597  2023-05-10 -5.703126e-02           NA  Latin America & Caribbean
## 6598  2023-05-10  9.887979e+00           NA  Latin America & Caribbean
## 6599  2023-05-10            NA           NA  Latin America & Caribbean
## 6600  2023-05-10            NA           NA  Latin America & Caribbean
## 6601  2023-05-10  4.254282e-01           NA  Latin America & Caribbean
## 6602  2023-05-10 -1.175317e+00           NA  Latin America & Caribbean
## 6603  2023-05-10  1.763421e+01           NA  Latin America & Caribbean
## 6604  2023-05-10  5.919358e+00           NA  Latin America & Caribbean
## 6605  2023-05-10            NA           NA  Latin America & Caribbean
## 6606  2023-05-10  5.552901e+00           NA  Latin America & Caribbean
## 6607  2023-05-10  1.948319e-01           NA  Latin America & Caribbean
## 6608  2023-05-10  2.644451e+00           NA  Latin America & Caribbean
## 6609  2023-05-10  4.269749e+00           NA  Latin America & Caribbean
## 6610  2023-05-10            NA           NA  Latin America & Caribbean
## 6611  2023-05-10  9.804128e+00           NA  Latin America & Caribbean
## 6612  2023-05-10  8.064575e-01           NA  Latin America & Caribbean
## 6613  2023-05-10  6.581719e+00           NA  Latin America & Caribbean
## 6614  2023-05-10  1.510633e+00           NA  Latin America & Caribbean
## 6615  2023-05-10  4.384210e+00           NA  Latin America & Caribbean
## 6616  2023-05-10  2.009388e+00           NA  Latin America & Caribbean
## 6617  2023-05-10  3.313632e+00           NA  Latin America & Caribbean
## 6618  2023-05-10 -9.481592e-01           NA  Latin America & Caribbean
## 6619  2023-05-10  7.420398e+00           NA  Latin America & Caribbean
## 6620  2023-05-10            NA           NA  Latin America & Caribbean
## 6621  2023-05-10  8.593284e+00           NA  Latin America & Caribbean
## 6622  2023-05-10  3.419923e+00           NA  Latin America & Caribbean
## 6623  2023-05-10  3.383808e+00           NA  Latin America & Caribbean
## 6624  2023-05-10  2.260129e+01           NA  Latin America & Caribbean
## 6625  2023-05-10  1.092903e+01           NA  Latin America & Caribbean
## 6626  2020-07-27            NA 1.681304e+01                       <NA>
## 6627  2020-07-27            NA 1.917709e+01                       <NA>
## 6628  2020-07-27            NA 2.172749e+01                       <NA>
## 6629  2020-07-27            NA 2.312248e+01                       <NA>
## 6630  2020-07-27            NA 2.496463e+01                       <NA>
## 6631  2020-07-27            NA 2.704742e+01                       <NA>
## 6632  2020-07-27            NA 3.051226e+01                       <NA>
## 6633  2020-07-27            NA 3.859987e+01                       <NA>
## 6634  2020-07-27            NA 4.618363e+01                       <NA>
## 6635  2020-07-27            NA 5.105844e+01                       <NA>
## 6636  2020-07-27            NA 5.408416e+01                       <NA>
## 6637  2020-07-27            NA 5.686553e+01                       <NA>
## 6638  2020-07-27            NA 5.952757e+01                       <NA>
## 6639  2020-07-27            NA 6.215955e+01                       <NA>
## 6640  2020-07-27            NA 6.522809e+01                       <NA>
## 6641  2020-07-27            NA 6.802654e+01                       <NA>
## 6642  2020-07-27            NA 7.161243e+01                       <NA>
## 6643  2020-07-27            NA 7.522937e+01                       <NA>
## 6644  2020-07-27            NA 7.874614e+01                       <NA>
## 6645  2020-07-27            NA 8.222396e+01                       <NA>
## 6646  2020-07-27            NA 8.653097e+01                       <NA>
## 6647  2020-07-27            NA 9.347009e+01                       <NA>
## 6648  2020-07-27            NA 9.720427e+01                       <NA>
## 6649  2020-07-27            NA 1.020969e+02                       <NA>
## 6650  2020-07-27            NA 1.085038e+02                       <NA>
## 6651  2020-07-27            NA 1.139244e+02                       <NA>
## 6652  2020-07-27            NA 1.195474e+02                       <NA>
## 6653  2020-07-27            NA 1.250707e+02                       <NA>
## 6654  2020-07-27            NA 1.312919e+02                       <NA>
## 6655  2020-07-27            NA 1.376572e+02                       <NA>
## 6656  2020-07-27            NA 1.433382e+02                       <NA>
## 6657  2020-07-27            NA 1.493017e+02                       <NA>
## 6658  2020-07-27            NA 1.555684e+02                       <NA>
## 6659  2020-07-27            NA 1.605971e+02                       <NA>
## 6660  2020-07-27            NA 1.263804e+02                       <NA>
## 6661  2020-07-27            NA 1.325203e+02                       <NA>
## 6662  2020-07-27            NA 2.945461e+01                       <NA>
## 6663  2020-07-27            NA 3.882961e+01                       <NA>
## 6664  2020-07-27            NA 4.655318e+01                       <NA>
## 6665  2020-07-27            NA 4.866192e+01                       <NA>
## 6666  2020-07-27            NA 5.014397e+01                       <NA>
## 6667  2020-07-27            NA 5.409045e+01                       <NA>
## 6668  2020-07-27            NA 1.185637e+02                       <NA>
## 6669  2020-07-27            NA 1.205454e+02                       <NA>
## 6670  2020-07-27            NA 1.222561e+02                       <NA>
## 6671  2020-07-27            NA 1.231453e+02                       <NA>
## 6672  2020-07-27            NA 1.248222e+02                       <NA>
## 6673  2020-07-27            NA 5.429370e+01                       <NA>
## 6674  2020-07-27            NA 5.691057e+01                       <NA>
## 6675  2020-07-27            NA 6.193259e+01                       <NA>
## 6676  2020-07-27            NA 6.664126e+01                       <NA>
## 6677  2020-07-27            NA 7.152778e+01                       <NA>
## 6678  2020-07-27            NA 7.453421e+01                       <NA>
## 6679  2020-07-27            NA 7.875169e+01                       <NA>
## 6680  2020-07-27            NA 8.221545e+01                       <NA>
## 6681  2020-07-27            NA 8.452744e+01                       <NA>
## 6682  2020-07-27            NA 9.006606e+01                       <NA>
## 6683  2020-07-27            NA 9.428354e+01                       <NA>
## 6684  2020-07-27            NA 1.016345e+02                       <NA>
## 6685  2020-07-27            NA 1.065125e+02                       <NA>
## 6686  2020-07-27            NA 1.104082e+02                       <NA>
## 6687  2020-07-27            NA 1.136687e+02                       <NA>
## 6688  2020-07-27            NA 2.793869e+01                       <NA>
## 6689  2020-07-27            NA 2.916667e+01                       <NA>
## 6690  2020-07-27            NA 2.751524e+01                       <NA>
## 6691  2020-07-27            NA 2.820969e+01                       <NA>
## 6692  2020-07-27            NA 2.997121e+01                       <NA>
## 6693  2020-07-27            NA 3.022527e+01                       <NA>
## 6694  2023-05-10 -1.582890e+00           NA         Sub-Saharan Africa
## 6695  2023-05-10 -1.197153e+01           NA         Sub-Saharan Africa
## 6696  2023-05-10 -6.285422e+00           NA         Sub-Saharan Africa
## 6697  2023-05-10  1.274238e+01           NA         Sub-Saharan Africa
## 6698  2023-05-10 -1.542370e+01           NA         Sub-Saharan Africa
## 6699  2023-05-10  2.452635e+01           NA         Sub-Saharan Africa
## 6700  2023-05-10  3.552113e+00           NA         Sub-Saharan Africa
## 6701  2023-05-10  8.211964e-01           NA         Sub-Saharan Africa
## 6702  2023-05-10 -3.156591e+01           NA         Sub-Saharan Africa
## 6703  2023-05-10            NA           NA         Sub-Saharan Africa
## 6704  2023-05-10 -1.273843e+00           NA         Sub-Saharan Africa
## 6705  2023-05-10  1.297637e+01           NA         Sub-Saharan Africa
## 6706  2023-05-10  6.473502e+01           NA         Sub-Saharan Africa
## 6707  2023-05-10  5.932905e+01           NA         Sub-Saharan Africa
## 6708  2023-05-10            NA           NA         Sub-Saharan Africa
## 6709  2023-05-10  1.984004e+01           NA         Sub-Saharan Africa
## 6710  2023-05-10            NA           NA         Sub-Saharan Africa
## 6711  2023-05-10  1.692276e+01           NA         Sub-Saharan Africa
## 6712  2023-05-10            NA           NA         Sub-Saharan Africa
## 6713  2023-05-10 -2.693115e+00           NA         Sub-Saharan Africa
## 6714  2023-05-10 -2.019275e+01           NA         Sub-Saharan Africa
## 6715  2023-05-10            NA           NA         Sub-Saharan Africa
## 6716  2023-05-10            NA           NA         Sub-Saharan Africa
## 6717  2023-05-10 -1.314717e+01           NA         Sub-Saharan Africa
## 6718  2023-05-10            NA           NA         Sub-Saharan Africa
## 6719  2023-05-10  2.490653e+01           NA         Sub-Saharan Africa
## 6720  2023-05-10            NA           NA         Sub-Saharan Africa
## 6721  2023-05-10            NA           NA         Sub-Saharan Africa
## 6722  2023-05-10 -1.072674e+00           NA         Sub-Saharan Africa
## 6723  2023-05-10  6.356219e-01           NA         Sub-Saharan Africa
## 6724  2023-05-10            NA           NA         Sub-Saharan Africa
## 6725  2023-05-10            NA           NA         Sub-Saharan Africa
## 6726  2023-05-10            NA           NA         Sub-Saharan Africa
## 6727  2023-05-10  1.704511e+01           NA         Sub-Saharan Africa
## 6728  2023-05-10            NA           NA         Sub-Saharan Africa
## 6729  2023-05-10            NA           NA         Sub-Saharan Africa
## 6730  2023-05-10  7.680834e+00           NA         Sub-Saharan Africa
## 6731  2023-05-10 -2.083023e+01           NA         Sub-Saharan Africa
## 6732  2023-05-10  3.915763e+01           NA         Sub-Saharan Africa
## 6733  2023-05-10  3.037654e+00           NA         Sub-Saharan Africa
## 6734  2023-05-10  9.513834e+00           NA         Sub-Saharan Africa
## 6735  2023-05-10 -8.830414e+00           NA         Sub-Saharan Africa
## 6736  2023-05-10  4.041801e+01           NA         Sub-Saharan Africa
## 6737  2023-05-10            NA           NA         Sub-Saharan Africa
## 6738  2023-05-10  5.277479e+01           NA         Sub-Saharan Africa
## 6739  2023-05-10  2.563717e+01           NA         Sub-Saharan Africa
## 6740  2023-05-10            NA           NA         Sub-Saharan Africa
## 6741  2023-05-10            NA           NA         Sub-Saharan Africa
## 6742  2023-05-10            NA           NA         Sub-Saharan Africa
## 6743  2023-05-10  1.518171e+00           NA         Sub-Saharan Africa
## 6744  2023-05-10  2.474977e+01           NA         Sub-Saharan Africa
## 6745  2023-05-10  4.854782e+00           NA         Sub-Saharan Africa
## 6746  2023-05-10            NA           NA         Sub-Saharan Africa
## 6747  2023-05-10            NA           NA         Sub-Saharan Africa
## 6748  2023-05-10 -4.795861e+00           NA         Sub-Saharan Africa
## 6749  2023-05-10 -2.923410e+00           NA         Sub-Saharan Africa
## 6750  2023-05-10  1.816220e+01           NA         Sub-Saharan Africa
## 6751  2023-05-10 -3.163690e+00           NA         Sub-Saharan Africa
## 6752  2023-05-10  1.035253e+01           NA         Sub-Saharan Africa
## 6753  2023-05-10  3.976985e+00           NA         Sub-Saharan Africa
## 6754  2023-05-10  1.444283e+01           NA         Sub-Saharan Africa
## 6755  2023-05-10            NA           NA         Sub-Saharan Africa
## 6756  2023-05-10            NA           NA         Sub-Saharan Africa
## 6757  2023-05-10            NA           NA         Sub-Saharan Africa
## 6758  2023-05-10            NA           NA         Sub-Saharan Africa
## 6759  2023-05-10            NA           NA         Sub-Saharan Africa
## 6760  2023-05-10            NA           NA         Sub-Saharan Africa
## 6761  2023-05-10            NA           NA         Sub-Saharan Africa
## 6762  2023-05-10            NA           NA         Sub-Saharan Africa
## 6763  2023-05-10            NA           NA         Sub-Saharan Africa
## 6764  2023-05-10  1.043215e+01           NA         Sub-Saharan Africa
## 6765  2023-05-10            NA           NA         Sub-Saharan Africa
## 6766  2023-05-10            NA           NA         Sub-Saharan Africa
## 6767  2023-05-10            NA           NA         Sub-Saharan Africa
## 6768  2023-05-10            NA           NA         Sub-Saharan Africa
## 6769  2023-05-10            NA           NA         Sub-Saharan Africa
## 6770  2023-05-10            NA           NA         Sub-Saharan Africa
## 6771  2023-05-10 -1.383171e+00           NA         Sub-Saharan Africa
## 6772  2023-05-10            NA           NA         Sub-Saharan Africa
## 6773  2023-05-10  2.187284e+01           NA         Sub-Saharan Africa
## 6774  2023-05-10  1.139400e+01           NA         Sub-Saharan Africa
## 6775  2023-05-10            NA           NA         Sub-Saharan Africa
## 6776  2023-05-10            NA           NA         Sub-Saharan Africa
## 6777  2023-05-10            NA           NA         Sub-Saharan Africa
## 6778  2023-05-10            NA           NA         Sub-Saharan Africa
## 6779  2023-05-10  7.623689e+00           NA         Sub-Saharan Africa
## 6780  2023-05-10            NA           NA         Sub-Saharan Africa
## 6781  2023-05-10            NA           NA         Sub-Saharan Africa
## 6782  2023-05-10            NA           NA         Sub-Saharan Africa
## 6783  2023-05-10            NA           NA         Sub-Saharan Africa
## 6784  2023-05-10            NA           NA         Sub-Saharan Africa
## 6785  2023-05-10            NA           NA         Sub-Saharan Africa
## 6786  2023-05-10            NA           NA         Sub-Saharan Africa
## 6787  2023-05-10            NA           NA         Sub-Saharan Africa
## 6788  2023-05-10            NA           NA         Sub-Saharan Africa
## 6789  2023-05-10            NA           NA         Sub-Saharan Africa
## 6790  2023-05-10            NA           NA         Sub-Saharan Africa
## 6791  2023-05-10  9.810040e+00           NA         Sub-Saharan Africa
## 6792  2023-05-10            NA           NA         Sub-Saharan Africa
## 6793  2023-05-10            NA           NA         Sub-Saharan Africa
## 6794  2023-05-10            NA           NA         Sub-Saharan Africa
## 6795  2023-05-10            NA           NA         Sub-Saharan Africa
## 6796  2023-05-10  2.950451e+01           NA         Sub-Saharan Africa
## 6797  2023-05-10            NA           NA         Sub-Saharan Africa
## 6798  2023-05-10  1.953823e+01           NA         Sub-Saharan Africa
## 6799  2023-05-10  1.607622e+01           NA         Sub-Saharan Africa
## 6800  2023-05-10            NA           NA         Sub-Saharan Africa
## 6801  2023-05-10            NA           NA         Sub-Saharan Africa
## 6802  2023-05-10            NA           NA         Sub-Saharan Africa
## 6803  2023-05-10  1.614867e+01           NA         Sub-Saharan Africa
## 6804  2023-05-10  3.897152e+00           NA         Sub-Saharan Africa
## 6805  2023-05-10            NA           NA         Sub-Saharan Africa
## 6806  2023-05-10  7.288208e+00           NA         Sub-Saharan Africa
## 6807  2023-05-10            NA           NA         Sub-Saharan Africa
## 6808  2023-05-10            NA           NA         Sub-Saharan Africa
## 6809  2023-05-10  2.479929e+01           NA         Sub-Saharan Africa
## 6810  2023-05-10 -1.622820e+01           NA         Sub-Saharan Africa
## 6811  2023-05-10  2.318561e+00           NA         Sub-Saharan Africa
## 6812  2023-05-10            NA           NA         Sub-Saharan Africa
## 6813  2023-05-10  9.109173e+00           NA         Sub-Saharan Africa
## 6814  2023-05-10  1.507727e+01           NA         Sub-Saharan Africa
## 6815  2023-05-10            NA           NA         Sub-Saharan Africa
## 6816  2023-05-10  9.074835e+00           NA         Sub-Saharan Africa
## 6817  2023-05-10            NA           NA         Sub-Saharan Africa
## 6818  2023-05-10            NA           NA         Sub-Saharan Africa
## 6819  2023-05-10  2.497759e+01           NA         Sub-Saharan Africa
## 6820  2020-07-27            NA           NA                       <NA>
## 6821  2020-07-27            NA           NA                       <NA>
## 6822  2020-07-27            NA           NA                       <NA>
## 6823  2020-07-27            NA           NA                       <NA>
## 6824  2020-07-27            NA           NA                       <NA>
## 6825  2020-07-27            NA           NA                       <NA>
## 6826  2020-07-27            NA           NA                       <NA>
## 6827  2020-07-27            NA           NA                       <NA>
## 6828  2020-07-27            NA           NA                       <NA>
## 6829  2020-07-27            NA           NA                       <NA>
## 6830  2020-07-27            NA           NA                       <NA>
## 6831  2020-07-27            NA           NA                       <NA>
## 6832  2020-07-27            NA           NA                       <NA>
## 6833  2020-07-27            NA           NA                       <NA>
## 6834  2020-07-27            NA           NA                       <NA>
## 6835  2020-07-27            NA           NA                       <NA>
## 6836  2020-07-27            NA           NA                       <NA>
## 6837  2020-07-27            NA           NA                       <NA>
## 6838  2020-07-27            NA           NA                       <NA>
## 6839  2020-07-27            NA           NA                       <NA>
## 6840  2020-07-27            NA           NA                       <NA>
## 6841  2020-07-27            NA           NA                       <NA>
## 6842  2020-07-27            NA           NA                       <NA>
## 6843  2020-07-27            NA           NA                       <NA>
## 6844  2020-07-27            NA           NA                       <NA>
## 6845  2020-07-27            NA           NA                       <NA>
## 6846  2020-07-27            NA           NA                       <NA>
## 6847  2020-07-27            NA           NA                       <NA>
## 6848  2020-07-27            NA           NA                       <NA>
## 6849  2020-07-27            NA           NA                       <NA>
## 6850  2020-07-27            NA           NA                       <NA>
## 6851  2020-07-27            NA           NA                       <NA>
## 6852  2020-07-27            NA           NA                       <NA>
## 6853  2020-07-27            NA           NA                       <NA>
## 6854  2023-05-10            NA           NA      Europe & Central Asia
## 6855  2023-05-10            NA           NA      Europe & Central Asia
## 6856  2023-05-10            NA           NA      Europe & Central Asia
## 6857  2023-05-10            NA           NA      Europe & Central Asia
## 6858  2023-05-10  4.072176e+00           NA      Europe & Central Asia
## 6859  2023-05-10 -3.886817e-01           NA      Europe & Central Asia
## 6860  2023-05-10            NA           NA      Europe & Central Asia
## 6861  2023-05-10            NA           NA      Europe & Central Asia
## 6862  2023-05-10            NA           NA      Europe & Central Asia
## 6863  2023-05-10            NA           NA      Europe & Central Asia
## 6864  2023-05-10  1.822352e+00           NA      Europe & Central Asia
## 6865  2023-05-10  6.802523e+00           NA      Europe & Central Asia
## 6866  2023-05-10  6.461018e+00           NA      Europe & Central Asia
## 6867  2023-05-10  2.187310e+00           NA      Europe & Central Asia
## 6868  2023-05-10            NA           NA      Europe & Central Asia
## 6869  2023-05-10  5.473737e+00           NA      Europe & Central Asia
## 6870  2023-05-10            NA           NA      Europe & Central Asia
## 6871  2023-05-10  5.923750e+00           NA      Europe & Central Asia
## 6872  2023-05-10            NA           NA      Europe & Central Asia
## 6873  2023-05-10            NA           NA      Europe & Central Asia
## 6874  2023-05-10            NA           NA      Europe & Central Asia
## 6875  2023-05-10            NA           NA      Europe & Central Asia
## 6876  2023-05-10            NA           NA      Europe & Central Asia
## 6877  2023-05-10  4.690469e+00           NA      Europe & Central Asia
## 6878  2023-05-10  1.235839e+01           NA      Europe & Central Asia
## 6879  2023-05-10  9.922473e+00           NA      Europe & Central Asia
## 6880  2023-05-10  8.978579e+00           NA      Europe & Central Asia
## 6881  2023-05-10  3.590365e+00           NA      Europe & Central Asia
## 6882  2023-05-10            NA           NA      Europe & Central Asia
## 6883  2023-05-10            NA           NA      Europe & Central Asia
## 6884  2023-05-10            NA           NA      Europe & Central Asia
## 6885  2023-05-10            NA           NA      Europe & Central Asia
## 6886  2023-05-10  3.207058e+00           NA      Europe & Central Asia
## 6887  2023-05-10            NA           NA      Europe & Central Asia
## 6888  2023-05-10            NA           NA      Europe & Central Asia
## 6889  2023-05-10            NA           NA      Europe & Central Asia
## 6890  2023-05-10  3.888614e+00           NA      Europe & Central Asia
## 6891  2023-05-10  4.837779e+00           NA      Europe & Central Asia
## 6892  2023-05-10  1.036441e+00           NA      Europe & Central Asia
## 6893  2023-05-10            NA           NA      Europe & Central Asia
## 6894  2023-05-10  5.996906e+00           NA      Europe & Central Asia
## 6895  2023-05-10            NA           NA      Europe & Central Asia
## 6896  2023-05-10            NA           NA      Europe & Central Asia
## 6897  2023-05-10            NA           NA      Europe & Central Asia
## 6898  2023-05-10            NA           NA      Europe & Central Asia
## 6899  2023-05-10            NA           NA      Europe & Central Asia
## 6900  2023-05-10            NA           NA      Europe & Central Asia
## 6901  2023-05-10            NA           NA      Europe & Central Asia
## 6902  2023-05-10  4.857663e+00           NA      Europe & Central Asia
## 6903  2023-05-10  4.031250e+00           NA      Europe & Central Asia
## 6904  2023-05-10            NA           NA      Europe & Central Asia
## 6905  2023-05-10  2.253948e+01           NA      Europe & Central Asia
## 6906  2023-05-10            NA           NA      Europe & Central Asia
## 6907  2023-05-10 -5.315095e-01           NA      Europe & Central Asia
## 6908  2023-05-10  3.684706e+00           NA      Europe & Central Asia
## 6909  2023-05-10            NA           NA      Europe & Central Asia
## 6910  2023-05-10            NA           NA      Europe & Central Asia
## 6911  2023-05-10  6.894505e+00           NA      Europe & Central Asia
## 6912  2023-05-10            NA           NA      Europe & Central Asia
## 6913  2023-05-10            NA           NA      Europe & Central Asia
## 6914  2023-05-10            NA           NA      Europe & Central Asia
## 6915  2023-05-10  2.915613e+00           NA      Europe & Central Asia
## 6916  2023-05-10  6.800473e+00           NA      Europe & Central Asia
## 6917  2020-07-27            NA           NA                       <NA>
## 6918  2020-07-27            NA           NA                       <NA>
## 6919  2020-07-27            NA           NA                       <NA>
## 6920  2020-07-27            NA           NA                       <NA>
## 6921  2020-07-27            NA           NA                       <NA>
## 6922  2020-07-27            NA 1.194955e+01                       <NA>
## 6923  2020-07-27            NA 2.268130e+01                       <NA>
## 6924  2020-07-27            NA 3.349620e+01                       <NA>
## 6925  2020-07-27            NA 4.312362e+01                       <NA>
## 6926  2020-07-27            NA 5.307139e+01                       <NA>
## 6927  2020-07-27            NA 5.868938e+01                       <NA>
## 6928  2020-07-27            NA 6.350578e+01                       <NA>
## 6929  2020-07-27            NA 6.560538e+01                       <NA>
## 6930  2020-07-27            NA 6.823659e+01                       <NA>
## 6931  2020-07-27            NA 7.216190e+01                       <NA>
## 6932  2020-07-27            NA 7.473297e+01                       <NA>
## 6933  2020-07-27            NA 7.573410e+01                       <NA>
## 6934  2020-07-27            NA 7.804253e+01                       <NA>
## 6935  2020-07-27            NA 8.123423e+01                       <NA>
## 6936  2020-07-27            NA 8.483283e+01                       <NA>
## 6937  2020-07-27            NA 9.042980e+01                       <NA>
## 6938  2020-07-27            NA 9.980339e+01                       <NA>
## 6939  2020-07-27            NA 9.971878e+01                       <NA>
## 6940  2020-07-27            NA 1.026860e+02                       <NA>
## 6941  2020-07-27            NA 1.077973e+02                       <NA>
## 6942  2020-07-27            NA 1.120390e+02                       <NA>
## 6943  2020-07-27            NA 1.151633e+02                       <NA>
## 6944  2020-07-27            NA 1.150356e+02                       <NA>
## 6945  2020-07-27            NA 1.144712e+02                       <NA>
## 6946  2020-07-27            NA 1.146419e+02                       <NA>
## 6947  2020-07-27            NA 1.185564e+02                       <NA>
## 6948  2020-07-27            NA 1.226265e+02                       <NA>
## 6949  2020-07-27            NA 1.254319e+02                       <NA>
## 6950  2020-07-27            NA 1.248244e+02                       <NA>
## 6951  2023-05-10  1.097043e+01           NA         Sub-Saharan Africa
## 6952  2023-05-10  3.871288e+00           NA         Sub-Saharan Africa
## 6953  2023-05-10            NA           NA         Sub-Saharan Africa
## 6954  2023-05-10  2.413261e+01           NA         Sub-Saharan Africa
## 6955  2023-05-10            NA           NA         Sub-Saharan Africa
## 6956  2023-05-10  2.811430e+00           NA         Sub-Saharan Africa
## 6957  2023-05-10  1.738976e+01           NA         Sub-Saharan Africa
## 6958  2023-05-10  8.777750e+00           NA         Sub-Saharan Africa
## 6959  2023-05-10 -8.993570e-01           NA         Sub-Saharan Africa
## 6960  2023-05-10  1.118825e+01           NA         Sub-Saharan Africa
## 6961  2023-05-10  6.005496e+00           NA         Sub-Saharan Africa
## 6962  2023-05-10  2.891737e+00           NA         Sub-Saharan Africa
## 6963  2023-05-10  1.391658e+01           NA         Sub-Saharan Africa
## 6964  2023-05-10  8.942619e+00           NA         Sub-Saharan Africa
## 6965  2023-05-10  1.106497e+01           NA         Sub-Saharan Africa
## 6966  2023-05-10  1.358771e+01           NA         Sub-Saharan Africa
## 6967  2023-05-10  4.213732e+00           NA         Sub-Saharan Africa
## 6968  2023-05-10  1.134484e+01           NA         Sub-Saharan Africa
## 6969  2023-05-10  2.534294e+01           NA         Sub-Saharan Africa
## 6970  2023-05-10  1.517969e+01           NA         Sub-Saharan Africa
## 6971  2023-05-10  8.748374e+00           NA         Sub-Saharan Africa
## 6972  2023-05-10            NA           NA         Sub-Saharan Africa
## 6973  2023-05-10  8.914928e+00           NA         Sub-Saharan Africa
## 6974  2023-05-10  2.559779e+00           NA         Sub-Saharan Africa
## 6975  2023-05-10  8.209538e+00           NA         Sub-Saharan Africa
## 6976  2023-05-10  7.241779e+00           NA         Sub-Saharan Africa
## 6977  2023-05-10  5.987372e+00           NA         Sub-Saharan Africa
## 6978  2023-05-10  5.545065e+00           NA         Sub-Saharan Africa
## 6979  2023-05-10            NA           NA         Sub-Saharan Africa
## 6980  2023-05-10            NA           NA         Sub-Saharan Africa
## 6981  2023-05-10  1.113117e+00           NA         Sub-Saharan Africa
## 6982  2023-05-10  4.736921e+00           NA         Sub-Saharan Africa
## 6983  2023-05-10  3.510345e+00           NA         Sub-Saharan Africa
## 6984  2023-05-10  7.682365e+00           NA         Sub-Saharan Africa
## 6985  2023-05-10  1.042558e+01           NA         Sub-Saharan Africa
## 6986  2023-05-10  1.055996e+01           NA         Sub-Saharan Africa
## 6987  2023-05-10  2.406296e+00           NA         Sub-Saharan Africa
## 6988  2023-05-10  5.340945e+00           NA         Sub-Saharan Africa
## 6989  2023-05-10  1.357028e+01           NA         Sub-Saharan Africa
## 6990  2023-05-10  1.028895e+01           NA         Sub-Saharan Africa
## 6991  2023-05-10  2.478130e+00           NA         Sub-Saharan Africa
## 6992  2023-05-10  1.664938e+01           NA         Sub-Saharan Africa
## 6993  2023-05-10  7.124844e+00           NA         Sub-Saharan Africa
## 6994  2023-05-10            NA           NA         Sub-Saharan Africa
## 6995  2023-05-10  5.370059e+00           NA         Sub-Saharan Africa
## 6996  2023-05-10  3.197175e+00           NA         Sub-Saharan Africa
## 6997  2023-05-10  3.038491e+01           NA         Sub-Saharan Africa
## 6998  2023-05-10  2.523068e+01           NA         Sub-Saharan Africa
## 6999  2023-05-10            NA           NA         Sub-Saharan Africa
## 7000  2023-05-10  9.769924e+00           NA         Sub-Saharan Africa
## 7001  2023-05-10  9.627265e+00           NA         Sub-Saharan Africa
## 7002  2023-05-10  7.146736e+00           NA         Sub-Saharan Africa
## 7003  2023-05-10  7.405278e+00           NA         Sub-Saharan Africa
## 7004  2023-05-10            NA           NA         Sub-Saharan Africa
## 7005  2023-05-10  5.014298e+00           NA         Sub-Saharan Africa
## 7006  2023-05-10  4.041162e+00           NA         Sub-Saharan Africa
## 7007  2023-05-10            NA           NA         Sub-Saharan Africa
## 7008  2023-05-10            NA           NA         Sub-Saharan Africa
## 7009  2023-05-10            NA           NA         Sub-Saharan Africa
## 7010  2023-05-10  1.044613e+01           NA         Sub-Saharan Africa
## 7011  2023-05-10            NA           NA         Sub-Saharan Africa
## 7012  2023-05-10  6.556823e+00           NA         Sub-Saharan Africa
## 7013  2023-05-10  6.532998e+00           NA         Sub-Saharan Africa
## 7014  2023-05-10            NA           NA         Sub-Saharan Africa
## 7015  2023-05-10  4.270532e+00           NA         Sub-Saharan Africa
## 7016  2023-05-10            NA           NA         Sub-Saharan Africa
## 7017  2023-05-10  2.006188e+01           NA         Sub-Saharan Africa
## 7018  2023-05-10  2.066556e-01           NA         Sub-Saharan Africa
## 7019  2023-05-10            NA           NA         Sub-Saharan Africa
## 7020  2023-05-10 -5.755335e+00           NA         Sub-Saharan Africa
## 7021  2023-05-10            NA           NA         Sub-Saharan Africa
## 7022  2023-05-10            NA           NA         Sub-Saharan Africa
## 7023  2023-05-10 -1.501468e-01           NA         Sub-Saharan Africa
## 7024  2023-05-10            NA           NA         Sub-Saharan Africa
## 7025  2023-05-10  3.354141e+01           NA         Sub-Saharan Africa
## 7026  2023-05-10  3.911362e+00           NA         Sub-Saharan Africa
## 7027  2023-05-10  1.444572e+00           NA         Sub-Saharan Africa
## 7028  2023-05-10            NA           NA         Sub-Saharan Africa
## 7029  2023-05-10  1.039793e+01           NA         Sub-Saharan Africa
## 7030  2023-05-10            NA           NA         Sub-Saharan Africa
## 7031  2023-05-10            NA           NA         Sub-Saharan Africa
## 7032  2023-05-10  9.464719e+00           NA         Sub-Saharan Africa
## 7033  2023-05-10  2.222723e+00           NA         Sub-Saharan Africa
## 7034  2023-05-10 -3.621434e+00           NA         Sub-Saharan Africa
## 7035  2023-05-10            NA           NA         Sub-Saharan Africa
## 7036  2023-05-10            NA           NA         Sub-Saharan Africa
## 7037  2023-05-10  9.875512e+00           NA         Sub-Saharan Africa
## 7038  2023-05-10  2.391379e-01           NA         Sub-Saharan Africa
## 7039  2023-05-10            NA           NA         Sub-Saharan Africa
## 7040  2023-05-10  1.276798e+01           NA         Sub-Saharan Africa
## 7041  2023-05-10  1.270637e+01           NA         Sub-Saharan Africa
## 7042  2023-05-10  2.414642e+01           NA         Sub-Saharan Africa
## 7043  2023-05-10            NA           NA         Sub-Saharan Africa
## 7044  2023-05-10  3.105504e+00           NA         Sub-Saharan Africa
## 7045  2023-05-10            NA           NA         Sub-Saharan Africa
## 7046  2023-05-10  1.155235e+01           NA         Sub-Saharan Africa
## 7047  2023-05-10  1.722058e+01           NA         Sub-Saharan Africa
## 7048  2023-05-10            NA           NA         Sub-Saharan Africa
## 7049  2023-05-10  3.031167e+01           NA         Sub-Saharan Africa
## 7050  2023-05-10  3.178776e+01           NA         Sub-Saharan Africa
## 7051  2023-05-10  5.584732e+00           NA         Sub-Saharan Africa
## 7052  2023-05-10 -6.119492e+00           NA         Sub-Saharan Africa
## 7053  2023-05-10  1.337686e+01           NA         Sub-Saharan Africa
## 7054  2023-05-10            NA           NA         Sub-Saharan Africa
## 7055  2023-05-10            NA           NA         Sub-Saharan Africa
## 7056  2023-05-10  1.825459e+01           NA         Sub-Saharan Africa
## 7057  2023-05-10  1.908429e+01           NA         Sub-Saharan Africa
## 7058  2023-05-10  1.083654e+01           NA         Sub-Saharan Africa
## 7059  2023-05-10  4.901979e+00           NA         Sub-Saharan Africa
## 7060  2023-05-10  6.676855e+00           NA         Sub-Saharan Africa
## 7061  2023-05-10  3.271375e+00           NA         Sub-Saharan Africa
## 7062  2023-05-10  1.098179e+01           NA         Sub-Saharan Africa
## 7063  2023-05-10  2.931082e+00           NA         Sub-Saharan Africa
## 7064  2023-05-10            NA           NA         Sub-Saharan Africa
## 7065  2023-05-10            NA           NA         Sub-Saharan Africa
## 7066  2023-05-10  1.553223e+01           NA         Sub-Saharan Africa
## 7067  2023-05-10  2.702878e+00           NA         Sub-Saharan Africa
## 7068  2023-05-10 -2.733980e+00           NA         Sub-Saharan Africa
## 7069  2023-05-10            NA           NA         Sub-Saharan Africa
## 7070  2023-05-10  2.177832e+01           NA         Sub-Saharan Africa
## 7071  2023-05-10            NA           NA         Sub-Saharan Africa
## 7072  2023-05-10  1.238229e+01           NA         Sub-Saharan Africa
## 7073  2023-05-10  1.286040e+01           NA         Sub-Saharan Africa
## 7074  2023-05-10 -5.273155e+00           NA         Sub-Saharan Africa
## 7075  2023-05-10            NA           NA         Sub-Saharan Africa
## 7076  2023-05-10            NA           NA         Sub-Saharan Africa
## 7077  2020-07-27            NA           NA                       <NA>
## 7078  2020-07-27            NA           NA                       <NA>
## 7079  2020-07-27            NA           NA                       <NA>
## 7080  2020-07-27            NA           NA                       <NA>
## 7081  2020-07-27            NA           NA                       <NA>
## 7082  2020-07-27            NA           NA                       <NA>
## 7083  2020-07-27            NA           NA                       <NA>
## 7084  2020-07-27            NA           NA                       <NA>
## 7085  2020-07-27            NA           NA                       <NA>
## 7086  2020-07-27            NA           NA                       <NA>
## 7087  2020-07-27            NA           NA                       <NA>
## 7088  2020-07-27            NA           NA                       <NA>
## 7089  2020-07-27            NA           NA                       <NA>
## 7090  2020-07-27            NA           NA                       <NA>
## 7091  2020-07-27            NA           NA                       <NA>
## 7092  2020-07-27            NA           NA                       <NA>
## 7093  2020-07-27            NA           NA                       <NA>
## 7094  2020-07-27            NA           NA                       <NA>
## 7095  2020-07-27            NA           NA                       <NA>
## 7096  2020-07-27            NA           NA                       <NA>
## 7097  2020-07-27            NA           NA                       <NA>
## 7098  2020-07-27            NA           NA                       <NA>
## 7099  2020-07-27            NA           NA                       <NA>
## 7100  2020-07-27            NA           NA                       <NA>
## 7101  2020-07-27            NA           NA                       <NA>
## 7102  2020-07-27            NA           NA                       <NA>
## 7103  2020-07-27            NA           NA                       <NA>
## 7104  2020-07-27            NA           NA                       <NA>
## 7105  2020-07-27            NA           NA                       <NA>
## 7106  2020-07-27            NA           NA                       <NA>
## 7107  2020-07-27            NA           NA                       <NA>
## 7108  2020-07-27            NA           NA                       <NA>
## 7109  2020-07-27            NA           NA                       <NA>
## 7110  2020-07-27            NA           NA                       <NA>
## 7111  2023-05-10  3.993232e+00           NA                 Aggregates
## 7112  2023-05-10  8.836022e+00           NA                 Aggregates
## 7113  2023-05-10  8.366640e+00           NA                 Aggregates
## 7114  2023-05-10  1.148245e+01           NA                 Aggregates
## 7115  2023-05-10  1.058199e+01           NA                 Aggregates
## 7116  2023-05-10  3.033996e+00           NA                 Aggregates
## 7117  2023-05-10  9.307637e+00           NA                 Aggregates
## 7118  2023-05-10  1.166289e+01           NA                 Aggregates
## 7119  2023-05-10  1.312002e+01           NA                 Aggregates
## 7120  2023-05-10  2.001836e+00           NA                 Aggregates
## 7121  2023-05-10  4.450423e+00           NA                 Aggregates
## 7122  2023-05-10  3.542377e+00           NA                 Aggregates
## 7123  2023-05-10  6.723399e+00           NA                 Aggregates
## 7124  2023-05-10  1.761441e+00           NA                 Aggregates
## 7125  2023-05-10            NA           NA                 Aggregates
## 7126  2023-05-10  1.299212e+00           NA                 Aggregates
## 7127  2023-05-10  4.404929e+00           NA                 Aggregates
## 7128  2023-05-10  8.633925e-01           NA                 Aggregates
## 7129  2023-05-10  4.137605e+00           NA                 Aggregates
## 7130  2023-05-10  2.642792e+00           NA                 Aggregates
## 7131  2023-05-10  2.524821e+00           NA                 Aggregates
## 7132  2023-05-10  7.504559e+00           NA                 Aggregates
## 7133  2023-05-10  3.193547e+00           NA                 Aggregates
## 7134  2023-05-10  3.273847e+00           NA                 Aggregates
## 7135  2023-05-10  4.188868e+00           NA                 Aggregates
## 7136  2023-05-10  3.934306e+00           NA                 Aggregates
## 7137  2023-05-10  1.517155e+00           NA                 Aggregates
## 7138  2023-05-10  1.203975e+01           NA                 Aggregates
## 7139  2023-05-10  1.281332e+00           NA                 Aggregates
## 7140  2023-05-10  1.678779e+00           NA                 Aggregates
## 7141  2023-05-10  1.616249e+00           NA                 Aggregates
## 7142  2023-05-10  2.301992e+00           NA                 Aggregates
##                  capital  longitude  latitude              income
## 1                   <NA>       <NA>      <NA>                <NA>
## 2                   <NA>       <NA>      <NA>                <NA>
## 3                   <NA>       <NA>      <NA>                <NA>
## 4                   <NA>       <NA>      <NA>                <NA>
## 5                   <NA>       <NA>      <NA>                <NA>
## 6                   <NA>       <NA>      <NA>                <NA>
## 7                   <NA>       <NA>      <NA>                <NA>
## 8                   <NA>       <NA>      <NA>                <NA>
## 9                   <NA>       <NA>      <NA>                <NA>
## 10                  <NA>       <NA>      <NA>                <NA>
## 11                  <NA>       <NA>      <NA>                <NA>
## 12                  <NA>       <NA>      <NA>                <NA>
## 13                  <NA>       <NA>      <NA>                <NA>
## 14                  <NA>       <NA>      <NA>                <NA>
## 15                  <NA>       <NA>      <NA>                <NA>
## 16                  <NA>       <NA>      <NA>                <NA>
## 17                  <NA>       <NA>      <NA>                <NA>
## 18                  <NA>       <NA>      <NA>                <NA>
## 19                  <NA>       <NA>      <NA>                <NA>
## 20                  <NA>       <NA>      <NA>                <NA>
## 21                  <NA>       <NA>      <NA>                <NA>
## 22                  <NA>       <NA>      <NA>                <NA>
## 23                  <NA>       <NA>      <NA>                <NA>
## 24                  <NA>       <NA>      <NA>                <NA>
## 25                  <NA>       <NA>      <NA>                <NA>
## 26                  <NA>       <NA>      <NA>                <NA>
## 27                  <NA>       <NA>      <NA>                <NA>
## 28                  <NA>       <NA>      <NA>                <NA>
## 29                  <NA>       <NA>      <NA>                <NA>
## 30                  <NA>       <NA>      <NA>                <NA>
## 31                  <NA>       <NA>      <NA>                <NA>
## 32                  <NA>       <NA>      <NA>                <NA>
## 33                  <NA>       <NA>      <NA>                <NA>
## 34                  <NA>       <NA>      <NA>                <NA>
## 35                 Kabul    69.1761   34.5228          Low income
## 36                 Kabul    69.1761   34.5228          Low income
## 37                 Kabul    69.1761   34.5228          Low income
## 38                 Kabul    69.1761   34.5228          Low income
## 39                 Kabul    69.1761   34.5228          Low income
## 40                 Kabul    69.1761   34.5228          Low income
## 41                 Kabul    69.1761   34.5228          Low income
## 42                 Kabul    69.1761   34.5228          Low income
## 43                 Kabul    69.1761   34.5228          Low income
## 44                 Kabul    69.1761   34.5228          Low income
## 45                 Kabul    69.1761   34.5228          Low income
## 46                 Kabul    69.1761   34.5228          Low income
## 47                 Kabul    69.1761   34.5228          Low income
## 48                 Kabul    69.1761   34.5228          Low income
## 49                 Kabul    69.1761   34.5228          Low income
## 50                 Kabul    69.1761   34.5228          Low income
## 51                 Kabul    69.1761   34.5228          Low income
## 52                 Kabul    69.1761   34.5228          Low income
## 53                 Kabul    69.1761   34.5228          Low income
## 54                 Kabul    69.1761   34.5228          Low income
## 55                 Kabul    69.1761   34.5228          Low income
## 56                 Kabul    69.1761   34.5228          Low income
## 57                 Kabul    69.1761   34.5228          Low income
## 58                 Kabul    69.1761   34.5228          Low income
## 59                 Kabul    69.1761   34.5228          Low income
## 60                 Kabul    69.1761   34.5228          Low income
## 61                 Kabul    69.1761   34.5228          Low income
## 62                 Kabul    69.1761   34.5228          Low income
## 63                 Kabul    69.1761   34.5228          Low income
## 64                 Kabul    69.1761   34.5228          Low income
## 65                 Kabul    69.1761   34.5228          Low income
## 66                 Kabul    69.1761   34.5228          Low income
## 67                 Kabul    69.1761   34.5228          Low income
## 68                 Kabul    69.1761   34.5228          Low income
## 69                 Kabul    69.1761   34.5228          Low income
## 70                 Kabul    69.1761   34.5228          Low income
## 71                 Kabul    69.1761   34.5228          Low income
## 72                 Kabul    69.1761   34.5228          Low income
## 73                 Kabul    69.1761   34.5228          Low income
## 74                 Kabul    69.1761   34.5228          Low income
## 75                 Kabul    69.1761   34.5228          Low income
## 76                 Kabul    69.1761   34.5228          Low income
## 77                 Kabul    69.1761   34.5228          Low income
## 78                 Kabul    69.1761   34.5228          Low income
## 79                 Kabul    69.1761   34.5228          Low income
## 80                 Kabul    69.1761   34.5228          Low income
## 81                 Kabul    69.1761   34.5228          Low income
## 82                 Kabul    69.1761   34.5228          Low income
## 83                 Kabul    69.1761   34.5228          Low income
## 84                 Kabul    69.1761   34.5228          Low income
## 85                 Kabul    69.1761   34.5228          Low income
## 86                 Kabul    69.1761   34.5228          Low income
## 87                 Kabul    69.1761   34.5228          Low income
## 88                 Kabul    69.1761   34.5228          Low income
## 89                 Kabul    69.1761   34.5228          Low income
## 90                 Kabul    69.1761   34.5228          Low income
## 91                 Kabul    69.1761   34.5228          Low income
## 92                 Kabul    69.1761   34.5228          Low income
## 93                 Kabul    69.1761   34.5228          Low income
## 94                 Kabul    69.1761   34.5228          Low income
## 95                 Kabul    69.1761   34.5228          Low income
## 96                 Kabul    69.1761   34.5228          Low income
## 97                 Kabul    69.1761   34.5228          Low income
## 98                  <NA>       <NA>      <NA>                <NA>
## 99                  <NA>       <NA>      <NA>                <NA>
## 100                 <NA>       <NA>      <NA>                <NA>
## 101                 <NA>       <NA>      <NA>                <NA>
## 102                 <NA>       <NA>      <NA>                <NA>
## 103                 <NA>       <NA>      <NA>                <NA>
## 104                 <NA>       <NA>      <NA>                <NA>
## 105                 <NA>       <NA>      <NA>                <NA>
## 106                 <NA>       <NA>      <NA>                <NA>
## 107                 <NA>       <NA>      <NA>                <NA>
## 108                 <NA>       <NA>      <NA>                <NA>
## 109                 <NA>       <NA>      <NA>                <NA>
## 110                 <NA>       <NA>      <NA>                <NA>
## 111                 <NA>       <NA>      <NA>                <NA>
## 112                 <NA>       <NA>      <NA>                <NA>
## 113                 <NA>       <NA>      <NA>                <NA>
## 114                 <NA>       <NA>      <NA>                <NA>
## 115                 <NA>       <NA>      <NA>                <NA>
## 116                 <NA>       <NA>      <NA>                <NA>
## 117                 <NA>       <NA>      <NA>                <NA>
## 118                 <NA>       <NA>      <NA>                <NA>
## 119                 <NA>       <NA>      <NA>                <NA>
## 120                 <NA>       <NA>      <NA>                <NA>
## 121                 <NA>       <NA>      <NA>                <NA>
## 122                 <NA>       <NA>      <NA>                <NA>
## 123                 <NA>       <NA>      <NA>                <NA>
## 124                 <NA>       <NA>      <NA>                <NA>
## 125                 <NA>       <NA>      <NA>                <NA>
## 126                 <NA>       <NA>      <NA>                <NA>
## 127                 <NA>       <NA>      <NA>                <NA>
## 128                 <NA>       <NA>      <NA>                <NA>
## 129                 <NA>       <NA>      <NA>                <NA>
## 130                 <NA>       <NA>      <NA>                <NA>
## 131                 <NA>       <NA>      <NA>                <NA>
## 132                                                    Aggregates
## 133                                                    Aggregates
## 134                                                    Aggregates
## 135                                                    Aggregates
## 136                                                    Aggregates
## 137                                                    Aggregates
## 138                                                    Aggregates
## 139                                                    Aggregates
## 140                                                    Aggregates
## 141                                                    Aggregates
## 142                                                    Aggregates
## 143                                                    Aggregates
## 144                                                    Aggregates
## 145                                                    Aggregates
## 146                                                    Aggregates
## 147                                                    Aggregates
## 148                                                    Aggregates
## 149                                                    Aggregates
## 150                                                    Aggregates
## 151                                                    Aggregates
## 152                                                    Aggregates
## 153                                                    Aggregates
## 154                                                    Aggregates
## 155                                                    Aggregates
## 156                                                    Aggregates
## 157                                                    Aggregates
## 158                                                    Aggregates
## 159                                                    Aggregates
## 160                                                    Aggregates
## 161                                                    Aggregates
## 162                                                    Aggregates
## 163                                                    Aggregates
## 164                                                    Aggregates
## 165                                                    Aggregates
## 166                                                    Aggregates
## 167                                                    Aggregates
## 168                                                    Aggregates
## 169                                                    Aggregates
## 170                                                    Aggregates
## 171                                                    Aggregates
## 172                                                    Aggregates
## 173                                                    Aggregates
## 174                                                    Aggregates
## 175                                                    Aggregates
## 176                                                    Aggregates
## 177                                                    Aggregates
## 178                                                    Aggregates
## 179                                                    Aggregates
## 180                                                    Aggregates
## 181                                                    Aggregates
## 182                                                    Aggregates
## 183                                                    Aggregates
## 184                                                    Aggregates
## 185                                                    Aggregates
## 186                                                    Aggregates
## 187                                                    Aggregates
## 188                                                    Aggregates
## 189                                                    Aggregates
## 190                                                    Aggregates
## 191                                                    Aggregates
## 192                                                    Aggregates
## 193                                                    Aggregates
## 194                                                    Aggregates
## 195                                                    Aggregates
## 196                                                    Aggregates
## 197                                                    Aggregates
## 198                                                    Aggregates
## 199                                                    Aggregates
## 200                                                    Aggregates
## 201                                                    Aggregates
## 202                                                    Aggregates
## 203                                                    Aggregates
## 204                                                    Aggregates
## 205                                                    Aggregates
## 206                                                    Aggregates
## 207                                                    Aggregates
## 208                                                    Aggregates
## 209                                                    Aggregates
## 210                                                    Aggregates
## 211                                                    Aggregates
## 212                                                    Aggregates
## 213                                                    Aggregates
## 214                                                    Aggregates
## 215                                                    Aggregates
## 216                                                    Aggregates
## 217                                                    Aggregates
## 218                                                    Aggregates
## 219                                                    Aggregates
## 220                                                    Aggregates
## 221                                                    Aggregates
## 222                                                    Aggregates
## 223                                                    Aggregates
## 224                                                    Aggregates
## 225                                                    Aggregates
## 226                                                    Aggregates
## 227                                                    Aggregates
## 228                                                    Aggregates
## 229                                                    Aggregates
## 230                                                    Aggregates
## 231                                                    Aggregates
## 232                                                    Aggregates
## 233                                                    Aggregates
## 234                                                    Aggregates
## 235                                                    Aggregates
## 236                                                    Aggregates
## 237                                                    Aggregates
## 238                                                    Aggregates
## 239                                                    Aggregates
## 240                                                    Aggregates
## 241                                                    Aggregates
## 242                                                    Aggregates
## 243                                                    Aggregates
## 244                                                    Aggregates
## 245                                                    Aggregates
## 246                                                    Aggregates
## 247                                                    Aggregates
## 248                                                    Aggregates
## 249                                                    Aggregates
## 250                                                    Aggregates
## 251                                                    Aggregates
## 252                                                    Aggregates
## 253                                                    Aggregates
## 254                                                    Aggregates
## 255                                                    Aggregates
## 256                                                    Aggregates
## 257                                                    Aggregates
## 258               Tirane    19.8172   41.3317 Upper middle income
## 259               Tirane    19.8172   41.3317 Upper middle income
## 260               Tirane    19.8172   41.3317 Upper middle income
## 261               Tirane    19.8172   41.3317 Upper middle income
## 262               Tirane    19.8172   41.3317 Upper middle income
## 263               Tirane    19.8172   41.3317 Upper middle income
## 264               Tirane    19.8172   41.3317 Upper middle income
## 265               Tirane    19.8172   41.3317 Upper middle income
## 266               Tirane    19.8172   41.3317 Upper middle income
## 267               Tirane    19.8172   41.3317 Upper middle income
## 268               Tirane    19.8172   41.3317 Upper middle income
## 269               Tirane    19.8172   41.3317 Upper middle income
## 270               Tirane    19.8172   41.3317 Upper middle income
## 271               Tirane    19.8172   41.3317 Upper middle income
## 272               Tirane    19.8172   41.3317 Upper middle income
## 273               Tirane    19.8172   41.3317 Upper middle income
## 274               Tirane    19.8172   41.3317 Upper middle income
## 275               Tirane    19.8172   41.3317 Upper middle income
## 276               Tirane    19.8172   41.3317 Upper middle income
## 277               Tirane    19.8172   41.3317 Upper middle income
## 278               Tirane    19.8172   41.3317 Upper middle income
## 279               Tirane    19.8172   41.3317 Upper middle income
## 280               Tirane    19.8172   41.3317 Upper middle income
## 281               Tirane    19.8172   41.3317 Upper middle income
## 282               Tirane    19.8172   41.3317 Upper middle income
## 283               Tirane    19.8172   41.3317 Upper middle income
## 284               Tirane    19.8172   41.3317 Upper middle income
## 285               Tirane    19.8172   41.3317 Upper middle income
## 286               Tirane    19.8172   41.3317 Upper middle income
## 287               Tirane    19.8172   41.3317 Upper middle income
## 288               Tirane    19.8172   41.3317 Upper middle income
## 289               Tirane    19.8172   41.3317 Upper middle income
## 290               Tirane    19.8172   41.3317 Upper middle income
## 291               Tirane    19.8172   41.3317 Upper middle income
## 292               Tirane    19.8172   41.3317 Upper middle income
## 293               Tirane    19.8172   41.3317 Upper middle income
## 294               Tirane    19.8172   41.3317 Upper middle income
## 295               Tirane    19.8172   41.3317 Upper middle income
## 296               Tirane    19.8172   41.3317 Upper middle income
## 297               Tirane    19.8172   41.3317 Upper middle income
## 298               Tirane    19.8172   41.3317 Upper middle income
## 299               Tirane    19.8172   41.3317 Upper middle income
## 300               Tirane    19.8172   41.3317 Upper middle income
## 301               Tirane    19.8172   41.3317 Upper middle income
## 302               Tirane    19.8172   41.3317 Upper middle income
## 303               Tirane    19.8172   41.3317 Upper middle income
## 304               Tirane    19.8172   41.3317 Upper middle income
## 305               Tirane    19.8172   41.3317 Upper middle income
## 306               Tirane    19.8172   41.3317 Upper middle income
## 307               Tirane    19.8172   41.3317 Upper middle income
## 308               Tirane    19.8172   41.3317 Upper middle income
## 309               Tirane    19.8172   41.3317 Upper middle income
## 310               Tirane    19.8172   41.3317 Upper middle income
## 311               Tirane    19.8172   41.3317 Upper middle income
## 312               Tirane    19.8172   41.3317 Upper middle income
## 313               Tirane    19.8172   41.3317 Upper middle income
## 314               Tirane    19.8172   41.3317 Upper middle income
## 315               Tirane    19.8172   41.3317 Upper middle income
## 316               Tirane    19.8172   41.3317 Upper middle income
## 317               Tirane    19.8172   41.3317 Upper middle income
## 318               Tirane    19.8172   41.3317 Upper middle income
## 319               Tirane    19.8172   41.3317 Upper middle income
## 320               Tirane    19.8172   41.3317 Upper middle income
## 321                 <NA>       <NA>      <NA>                <NA>
## 322                 <NA>       <NA>      <NA>                <NA>
## 323                 <NA>       <NA>      <NA>                <NA>
## 324                 <NA>       <NA>      <NA>                <NA>
## 325                 <NA>       <NA>      <NA>                <NA>
## 326                 <NA>       <NA>      <NA>                <NA>
## 327                 <NA>       <NA>      <NA>                <NA>
## 328                 <NA>       <NA>      <NA>                <NA>
## 329                 <NA>       <NA>      <NA>                <NA>
## 330                 <NA>       <NA>      <NA>                <NA>
## 331                 <NA>       <NA>      <NA>                <NA>
## 332                 <NA>       <NA>      <NA>                <NA>
## 333                 <NA>       <NA>      <NA>                <NA>
## 334                 <NA>       <NA>      <NA>                <NA>
## 335                 <NA>       <NA>      <NA>                <NA>
## 336                 <NA>       <NA>      <NA>                <NA>
## 337                 <NA>       <NA>      <NA>                <NA>
## 338                 <NA>       <NA>      <NA>                <NA>
## 339                 <NA>       <NA>      <NA>                <NA>
## 340                 <NA>       <NA>      <NA>                <NA>
## 341                 <NA>       <NA>      <NA>                <NA>
## 342                 <NA>       <NA>      <NA>                <NA>
## 343                 <NA>       <NA>      <NA>                <NA>
## 344                 <NA>       <NA>      <NA>                <NA>
## 345                 <NA>       <NA>      <NA>                <NA>
## 346                 <NA>       <NA>      <NA>                <NA>
## 347                 <NA>       <NA>      <NA>                <NA>
## 348                 <NA>       <NA>      <NA>                <NA>
## 349                 <NA>       <NA>      <NA>                <NA>
## 350                 <NA>       <NA>      <NA>                <NA>
## 351                 <NA>       <NA>      <NA>                <NA>
## 352                 <NA>       <NA>      <NA>                <NA>
## 353                 <NA>       <NA>      <NA>                <NA>
## 354                 <NA>       <NA>      <NA>                <NA>
## 355              Algiers    3.05097   36.7397 Lower middle income
## 356              Algiers    3.05097   36.7397 Lower middle income
## 357              Algiers    3.05097   36.7397 Lower middle income
## 358              Algiers    3.05097   36.7397 Lower middle income
## 359              Algiers    3.05097   36.7397 Lower middle income
## 360              Algiers    3.05097   36.7397 Lower middle income
## 361              Algiers    3.05097   36.7397 Lower middle income
## 362              Algiers    3.05097   36.7397 Lower middle income
## 363              Algiers    3.05097   36.7397 Lower middle income
## 364              Algiers    3.05097   36.7397 Lower middle income
## 365              Algiers    3.05097   36.7397 Lower middle income
## 366              Algiers    3.05097   36.7397 Lower middle income
## 367              Algiers    3.05097   36.7397 Lower middle income
## 368              Algiers    3.05097   36.7397 Lower middle income
## 369              Algiers    3.05097   36.7397 Lower middle income
## 370              Algiers    3.05097   36.7397 Lower middle income
## 371              Algiers    3.05097   36.7397 Lower middle income
## 372              Algiers    3.05097   36.7397 Lower middle income
## 373              Algiers    3.05097   36.7397 Lower middle income
## 374              Algiers    3.05097   36.7397 Lower middle income
## 375              Algiers    3.05097   36.7397 Lower middle income
## 376              Algiers    3.05097   36.7397 Lower middle income
## 377              Algiers    3.05097   36.7397 Lower middle income
## 378              Algiers    3.05097   36.7397 Lower middle income
## 379              Algiers    3.05097   36.7397 Lower middle income
## 380              Algiers    3.05097   36.7397 Lower middle income
## 381              Algiers    3.05097   36.7397 Lower middle income
## 382              Algiers    3.05097   36.7397 Lower middle income
## 383              Algiers    3.05097   36.7397 Lower middle income
## 384              Algiers    3.05097   36.7397 Lower middle income
## 385              Algiers    3.05097   36.7397 Lower middle income
## 386              Algiers    3.05097   36.7397 Lower middle income
## 387              Algiers    3.05097   36.7397 Lower middle income
## 388              Algiers    3.05097   36.7397 Lower middle income
## 389              Algiers    3.05097   36.7397 Lower middle income
## 390              Algiers    3.05097   36.7397 Lower middle income
## 391              Algiers    3.05097   36.7397 Lower middle income
## 392              Algiers    3.05097   36.7397 Lower middle income
## 393              Algiers    3.05097   36.7397 Lower middle income
## 394              Algiers    3.05097   36.7397 Lower middle income
## 395              Algiers    3.05097   36.7397 Lower middle income
## 396              Algiers    3.05097   36.7397 Lower middle income
## 397              Algiers    3.05097   36.7397 Lower middle income
## 398              Algiers    3.05097   36.7397 Lower middle income
## 399              Algiers    3.05097   36.7397 Lower middle income
## 400              Algiers    3.05097   36.7397 Lower middle income
## 401              Algiers    3.05097   36.7397 Lower middle income
## 402              Algiers    3.05097   36.7397 Lower middle income
## 403              Algiers    3.05097   36.7397 Lower middle income
## 404              Algiers    3.05097   36.7397 Lower middle income
## 405              Algiers    3.05097   36.7397 Lower middle income
## 406              Algiers    3.05097   36.7397 Lower middle income
## 407              Algiers    3.05097   36.7397 Lower middle income
## 408              Algiers    3.05097   36.7397 Lower middle income
## 409              Algiers    3.05097   36.7397 Lower middle income
## 410              Algiers    3.05097   36.7397 Lower middle income
## 411              Algiers    3.05097   36.7397 Lower middle income
## 412              Algiers    3.05097   36.7397 Lower middle income
## 413              Algiers    3.05097   36.7397 Lower middle income
## 414              Algiers    3.05097   36.7397 Lower middle income
## 415              Algiers    3.05097   36.7397 Lower middle income
## 416              Algiers    3.05097   36.7397 Lower middle income
## 417              Algiers    3.05097   36.7397 Lower middle income
## 418                 <NA>       <NA>      <NA>                <NA>
## 419                 <NA>       <NA>      <NA>                <NA>
## 420                 <NA>       <NA>      <NA>                <NA>
## 421                 <NA>       <NA>      <NA>                <NA>
## 422                 <NA>       <NA>      <NA>                <NA>
## 423                 <NA>       <NA>      <NA>                <NA>
## 424                 <NA>       <NA>      <NA>                <NA>
## 425                 <NA>       <NA>      <NA>                <NA>
## 426                 <NA>       <NA>      <NA>                <NA>
## 427                 <NA>       <NA>      <NA>                <NA>
## 428                 <NA>       <NA>      <NA>                <NA>
## 429                 <NA>       <NA>      <NA>                <NA>
## 430                 <NA>       <NA>      <NA>                <NA>
## 431                 <NA>       <NA>      <NA>                <NA>
## 432                 <NA>       <NA>      <NA>                <NA>
## 433                 <NA>       <NA>      <NA>                <NA>
## 434                 <NA>       <NA>      <NA>                <NA>
## 435                 <NA>       <NA>      <NA>                <NA>
## 436                 <NA>       <NA>      <NA>                <NA>
## 437                 <NA>       <NA>      <NA>                <NA>
## 438                 <NA>       <NA>      <NA>                <NA>
## 439                 <NA>       <NA>      <NA>                <NA>
## 440                 <NA>       <NA>      <NA>                <NA>
## 441                 <NA>       <NA>      <NA>                <NA>
## 442                 <NA>       <NA>      <NA>                <NA>
## 443                 <NA>       <NA>      <NA>                <NA>
## 444                 <NA>       <NA>      <NA>                <NA>
## 445                 <NA>       <NA>      <NA>                <NA>
## 446                 <NA>       <NA>      <NA>                <NA>
## 447                 <NA>       <NA>      <NA>                <NA>
## 448                 <NA>       <NA>      <NA>                <NA>
## 449                 <NA>       <NA>      <NA>                <NA>
## 450                 <NA>       <NA>      <NA>                <NA>
## 451                 <NA>       <NA>      <NA>                <NA>
## 452            Pago Pago   -170.691  -14.2846 Upper middle income
## 453            Pago Pago   -170.691  -14.2846 Upper middle income
## 454            Pago Pago   -170.691  -14.2846 Upper middle income
## 455            Pago Pago   -170.691  -14.2846 Upper middle income
## 456            Pago Pago   -170.691  -14.2846 Upper middle income
## 457            Pago Pago   -170.691  -14.2846 Upper middle income
## 458            Pago Pago   -170.691  -14.2846 Upper middle income
## 459            Pago Pago   -170.691  -14.2846 Upper middle income
## 460            Pago Pago   -170.691  -14.2846 Upper middle income
## 461            Pago Pago   -170.691  -14.2846 Upper middle income
## 462            Pago Pago   -170.691  -14.2846 Upper middle income
## 463            Pago Pago   -170.691  -14.2846 Upper middle income
## 464            Pago Pago   -170.691  -14.2846 Upper middle income
## 465            Pago Pago   -170.691  -14.2846 Upper middle income
## 466            Pago Pago   -170.691  -14.2846 Upper middle income
## 467            Pago Pago   -170.691  -14.2846 Upper middle income
## 468            Pago Pago   -170.691  -14.2846 Upper middle income
## 469            Pago Pago   -170.691  -14.2846 Upper middle income
## 470            Pago Pago   -170.691  -14.2846 Upper middle income
## 471            Pago Pago   -170.691  -14.2846 Upper middle income
## 472            Pago Pago   -170.691  -14.2846 Upper middle income
## 473            Pago Pago   -170.691  -14.2846 Upper middle income
## 474            Pago Pago   -170.691  -14.2846 Upper middle income
## 475            Pago Pago   -170.691  -14.2846 Upper middle income
## 476            Pago Pago   -170.691  -14.2846 Upper middle income
## 477            Pago Pago   -170.691  -14.2846 Upper middle income
## 478            Pago Pago   -170.691  -14.2846 Upper middle income
## 479            Pago Pago   -170.691  -14.2846 Upper middle income
## 480            Pago Pago   -170.691  -14.2846 Upper middle income
## 481            Pago Pago   -170.691  -14.2846 Upper middle income
## 482            Pago Pago   -170.691  -14.2846 Upper middle income
## 483            Pago Pago   -170.691  -14.2846 Upper middle income
## 484            Pago Pago   -170.691  -14.2846 Upper middle income
## 485            Pago Pago   -170.691  -14.2846 Upper middle income
## 486            Pago Pago   -170.691  -14.2846 Upper middle income
## 487            Pago Pago   -170.691  -14.2846 Upper middle income
## 488            Pago Pago   -170.691  -14.2846 Upper middle income
## 489            Pago Pago   -170.691  -14.2846 Upper middle income
## 490            Pago Pago   -170.691  -14.2846 Upper middle income
## 491            Pago Pago   -170.691  -14.2846 Upper middle income
## 492            Pago Pago   -170.691  -14.2846 Upper middle income
## 493            Pago Pago   -170.691  -14.2846 Upper middle income
## 494            Pago Pago   -170.691  -14.2846 Upper middle income
## 495            Pago Pago   -170.691  -14.2846 Upper middle income
## 496            Pago Pago   -170.691  -14.2846 Upper middle income
## 497            Pago Pago   -170.691  -14.2846 Upper middle income
## 498            Pago Pago   -170.691  -14.2846 Upper middle income
## 499            Pago Pago   -170.691  -14.2846 Upper middle income
## 500            Pago Pago   -170.691  -14.2846 Upper middle income
## 501            Pago Pago   -170.691  -14.2846 Upper middle income
## 502            Pago Pago   -170.691  -14.2846 Upper middle income
## 503            Pago Pago   -170.691  -14.2846 Upper middle income
## 504            Pago Pago   -170.691  -14.2846 Upper middle income
## 505            Pago Pago   -170.691  -14.2846 Upper middle income
## 506            Pago Pago   -170.691  -14.2846 Upper middle income
## 507            Pago Pago   -170.691  -14.2846 Upper middle income
## 508            Pago Pago   -170.691  -14.2846 Upper middle income
## 509            Pago Pago   -170.691  -14.2846 Upper middle income
## 510            Pago Pago   -170.691  -14.2846 Upper middle income
## 511            Pago Pago   -170.691  -14.2846 Upper middle income
## 512            Pago Pago   -170.691  -14.2846 Upper middle income
## 513            Pago Pago   -170.691  -14.2846 Upper middle income
## 514            Pago Pago   -170.691  -14.2846 Upper middle income
## 515     Andorra la Vella     1.5218   42.5075         High income
## 516     Andorra la Vella     1.5218   42.5075         High income
## 517     Andorra la Vella     1.5218   42.5075         High income
## 518     Andorra la Vella     1.5218   42.5075         High income
## 519     Andorra la Vella     1.5218   42.5075         High income
## 520     Andorra la Vella     1.5218   42.5075         High income
## 521     Andorra la Vella     1.5218   42.5075         High income
## 522     Andorra la Vella     1.5218   42.5075         High income
## 523     Andorra la Vella     1.5218   42.5075         High income
## 524     Andorra la Vella     1.5218   42.5075         High income
## 525     Andorra la Vella     1.5218   42.5075         High income
## 526     Andorra la Vella     1.5218   42.5075         High income
## 527     Andorra la Vella     1.5218   42.5075         High income
## 528     Andorra la Vella     1.5218   42.5075         High income
## 529     Andorra la Vella     1.5218   42.5075         High income
## 530     Andorra la Vella     1.5218   42.5075         High income
## 531     Andorra la Vella     1.5218   42.5075         High income
## 532     Andorra la Vella     1.5218   42.5075         High income
## 533     Andorra la Vella     1.5218   42.5075         High income
## 534     Andorra la Vella     1.5218   42.5075         High income
## 535     Andorra la Vella     1.5218   42.5075         High income
## 536     Andorra la Vella     1.5218   42.5075         High income
## 537     Andorra la Vella     1.5218   42.5075         High income
## 538     Andorra la Vella     1.5218   42.5075         High income
## 539     Andorra la Vella     1.5218   42.5075         High income
## 540     Andorra la Vella     1.5218   42.5075         High income
## 541     Andorra la Vella     1.5218   42.5075         High income
## 542     Andorra la Vella     1.5218   42.5075         High income
## 543     Andorra la Vella     1.5218   42.5075         High income
## 544     Andorra la Vella     1.5218   42.5075         High income
## 545     Andorra la Vella     1.5218   42.5075         High income
## 546     Andorra la Vella     1.5218   42.5075         High income
## 547     Andorra la Vella     1.5218   42.5075         High income
## 548     Andorra la Vella     1.5218   42.5075         High income
## 549     Andorra la Vella     1.5218   42.5075         High income
## 550     Andorra la Vella     1.5218   42.5075         High income
## 551     Andorra la Vella     1.5218   42.5075         High income
## 552     Andorra la Vella     1.5218   42.5075         High income
## 553     Andorra la Vella     1.5218   42.5075         High income
## 554     Andorra la Vella     1.5218   42.5075         High income
## 555     Andorra la Vella     1.5218   42.5075         High income
## 556     Andorra la Vella     1.5218   42.5075         High income
## 557     Andorra la Vella     1.5218   42.5075         High income
## 558     Andorra la Vella     1.5218   42.5075         High income
## 559     Andorra la Vella     1.5218   42.5075         High income
## 560     Andorra la Vella     1.5218   42.5075         High income
## 561     Andorra la Vella     1.5218   42.5075         High income
## 562     Andorra la Vella     1.5218   42.5075         High income
## 563     Andorra la Vella     1.5218   42.5075         High income
## 564     Andorra la Vella     1.5218   42.5075         High income
## 565     Andorra la Vella     1.5218   42.5075         High income
## 566     Andorra la Vella     1.5218   42.5075         High income
## 567     Andorra la Vella     1.5218   42.5075         High income
## 568     Andorra la Vella     1.5218   42.5075         High income
## 569     Andorra la Vella     1.5218   42.5075         High income
## 570     Andorra la Vella     1.5218   42.5075         High income
## 571     Andorra la Vella     1.5218   42.5075         High income
## 572     Andorra la Vella     1.5218   42.5075         High income
## 573     Andorra la Vella     1.5218   42.5075         High income
## 574     Andorra la Vella     1.5218   42.5075         High income
## 575     Andorra la Vella     1.5218   42.5075         High income
## 576     Andorra la Vella     1.5218   42.5075         High income
## 577     Andorra la Vella     1.5218   42.5075         High income
## 578                 <NA>       <NA>      <NA>                <NA>
## 579                 <NA>       <NA>      <NA>                <NA>
## 580                 <NA>       <NA>      <NA>                <NA>
## 581                 <NA>       <NA>      <NA>                <NA>
## 582                 <NA>       <NA>      <NA>                <NA>
## 583                 <NA>       <NA>      <NA>                <NA>
## 584                 <NA>       <NA>      <NA>                <NA>
## 585                 <NA>       <NA>      <NA>                <NA>
## 586                 <NA>       <NA>      <NA>                <NA>
## 587                 <NA>       <NA>      <NA>                <NA>
## 588                 <NA>       <NA>      <NA>                <NA>
## 589                 <NA>       <NA>      <NA>                <NA>
## 590                 <NA>       <NA>      <NA>                <NA>
## 591                 <NA>       <NA>      <NA>                <NA>
## 592                 <NA>       <NA>      <NA>                <NA>
## 593                 <NA>       <NA>      <NA>                <NA>
## 594                 <NA>       <NA>      <NA>                <NA>
## 595                 <NA>       <NA>      <NA>                <NA>
## 596                 <NA>       <NA>      <NA>                <NA>
## 597                 <NA>       <NA>      <NA>                <NA>
## 598                 <NA>       <NA>      <NA>                <NA>
## 599                 <NA>       <NA>      <NA>                <NA>
## 600                 <NA>       <NA>      <NA>                <NA>
## 601                 <NA>       <NA>      <NA>                <NA>
## 602                 <NA>       <NA>      <NA>                <NA>
## 603                 <NA>       <NA>      <NA>                <NA>
## 604                 <NA>       <NA>      <NA>                <NA>
## 605                 <NA>       <NA>      <NA>                <NA>
## 606                 <NA>       <NA>      <NA>                <NA>
## 607                 <NA>       <NA>      <NA>                <NA>
## 608                 <NA>       <NA>      <NA>                <NA>
## 609                 <NA>       <NA>      <NA>                <NA>
## 610                 <NA>       <NA>      <NA>                <NA>
## 611                 <NA>       <NA>      <NA>                <NA>
## 612               Luanda     13.242  -8.81155 Lower middle income
## 613               Luanda     13.242  -8.81155 Lower middle income
## 614               Luanda     13.242  -8.81155 Lower middle income
## 615               Luanda     13.242  -8.81155 Lower middle income
## 616               Luanda     13.242  -8.81155 Lower middle income
## 617               Luanda     13.242  -8.81155 Lower middle income
## 618               Luanda     13.242  -8.81155 Lower middle income
## 619               Luanda     13.242  -8.81155 Lower middle income
## 620               Luanda     13.242  -8.81155 Lower middle income
## 621               Luanda     13.242  -8.81155 Lower middle income
## 622               Luanda     13.242  -8.81155 Lower middle income
## 623               Luanda     13.242  -8.81155 Lower middle income
## 624               Luanda     13.242  -8.81155 Lower middle income
## 625               Luanda     13.242  -8.81155 Lower middle income
## 626               Luanda     13.242  -8.81155 Lower middle income
## 627               Luanda     13.242  -8.81155 Lower middle income
## 628               Luanda     13.242  -8.81155 Lower middle income
## 629               Luanda     13.242  -8.81155 Lower middle income
## 630               Luanda     13.242  -8.81155 Lower middle income
## 631               Luanda     13.242  -8.81155 Lower middle income
## 632               Luanda     13.242  -8.81155 Lower middle income
## 633               Luanda     13.242  -8.81155 Lower middle income
## 634               Luanda     13.242  -8.81155 Lower middle income
## 635               Luanda     13.242  -8.81155 Lower middle income
## 636               Luanda     13.242  -8.81155 Lower middle income
## 637               Luanda     13.242  -8.81155 Lower middle income
## 638               Luanda     13.242  -8.81155 Lower middle income
## 639               Luanda     13.242  -8.81155 Lower middle income
## 640               Luanda     13.242  -8.81155 Lower middle income
## 641               Luanda     13.242  -8.81155 Lower middle income
## 642               Luanda     13.242  -8.81155 Lower middle income
## 643               Luanda     13.242  -8.81155 Lower middle income
## 644               Luanda     13.242  -8.81155 Lower middle income
## 645               Luanda     13.242  -8.81155 Lower middle income
## 646               Luanda     13.242  -8.81155 Lower middle income
## 647               Luanda     13.242  -8.81155 Lower middle income
## 648               Luanda     13.242  -8.81155 Lower middle income
## 649               Luanda     13.242  -8.81155 Lower middle income
## 650               Luanda     13.242  -8.81155 Lower middle income
## 651               Luanda     13.242  -8.81155 Lower middle income
## 652               Luanda     13.242  -8.81155 Lower middle income
## 653               Luanda     13.242  -8.81155 Lower middle income
## 654               Luanda     13.242  -8.81155 Lower middle income
## 655               Luanda     13.242  -8.81155 Lower middle income
## 656               Luanda     13.242  -8.81155 Lower middle income
## 657               Luanda     13.242  -8.81155 Lower middle income
## 658               Luanda     13.242  -8.81155 Lower middle income
## 659               Luanda     13.242  -8.81155 Lower middle income
## 660               Luanda     13.242  -8.81155 Lower middle income
## 661               Luanda     13.242  -8.81155 Lower middle income
## 662               Luanda     13.242  -8.81155 Lower middle income
## 663               Luanda     13.242  -8.81155 Lower middle income
## 664               Luanda     13.242  -8.81155 Lower middle income
## 665               Luanda     13.242  -8.81155 Lower middle income
## 666               Luanda     13.242  -8.81155 Lower middle income
## 667               Luanda     13.242  -8.81155 Lower middle income
## 668               Luanda     13.242  -8.81155 Lower middle income
## 669               Luanda     13.242  -8.81155 Lower middle income
## 670               Luanda     13.242  -8.81155 Lower middle income
## 671               Luanda     13.242  -8.81155 Lower middle income
## 672               Luanda     13.242  -8.81155 Lower middle income
## 673               Luanda     13.242  -8.81155 Lower middle income
## 674               Luanda     13.242  -8.81155 Lower middle income
## 675         Saint John's   -61.8456   17.1175         High income
## 676         Saint John's   -61.8456   17.1175         High income
## 677         Saint John's   -61.8456   17.1175         High income
## 678         Saint John's   -61.8456   17.1175         High income
## 679         Saint John's   -61.8456   17.1175         High income
## 680         Saint John's   -61.8456   17.1175         High income
## 681         Saint John's   -61.8456   17.1175         High income
## 682         Saint John's   -61.8456   17.1175         High income
## 683         Saint John's   -61.8456   17.1175         High income
## 684         Saint John's   -61.8456   17.1175         High income
## 685         Saint John's   -61.8456   17.1175         High income
## 686         Saint John's   -61.8456   17.1175         High income
## 687         Saint John's   -61.8456   17.1175         High income
## 688         Saint John's   -61.8456   17.1175         High income
## 689         Saint John's   -61.8456   17.1175         High income
## 690         Saint John's   -61.8456   17.1175         High income
## 691         Saint John's   -61.8456   17.1175         High income
## 692         Saint John's   -61.8456   17.1175         High income
## 693         Saint John's   -61.8456   17.1175         High income
## 694         Saint John's   -61.8456   17.1175         High income
## 695         Saint John's   -61.8456   17.1175         High income
## 696         Saint John's   -61.8456   17.1175         High income
## 697         Saint John's   -61.8456   17.1175         High income
## 698         Saint John's   -61.8456   17.1175         High income
## 699         Saint John's   -61.8456   17.1175         High income
## 700         Saint John's   -61.8456   17.1175         High income
## 701         Saint John's   -61.8456   17.1175         High income
## 702         Saint John's   -61.8456   17.1175         High income
## 703         Saint John's   -61.8456   17.1175         High income
## 704         Saint John's   -61.8456   17.1175         High income
## 705         Saint John's   -61.8456   17.1175         High income
## 706         Saint John's   -61.8456   17.1175         High income
## 707         Saint John's   -61.8456   17.1175         High income
## 708         Saint John's   -61.8456   17.1175         High income
## 709         Saint John's   -61.8456   17.1175         High income
## 710         Saint John's   -61.8456   17.1175         High income
## 711         Saint John's   -61.8456   17.1175         High income
## 712         Saint John's   -61.8456   17.1175         High income
## 713         Saint John's   -61.8456   17.1175         High income
## 714         Saint John's   -61.8456   17.1175         High income
## 715         Saint John's   -61.8456   17.1175         High income
## 716         Saint John's   -61.8456   17.1175         High income
## 717         Saint John's   -61.8456   17.1175         High income
## 718         Saint John's   -61.8456   17.1175         High income
## 719         Saint John's   -61.8456   17.1175         High income
## 720         Saint John's   -61.8456   17.1175         High income
## 721         Saint John's   -61.8456   17.1175         High income
## 722         Saint John's   -61.8456   17.1175         High income
## 723         Saint John's   -61.8456   17.1175         High income
## 724         Saint John's   -61.8456   17.1175         High income
## 725         Saint John's   -61.8456   17.1175         High income
## 726         Saint John's   -61.8456   17.1175         High income
## 727         Saint John's   -61.8456   17.1175         High income
## 728         Saint John's   -61.8456   17.1175         High income
## 729         Saint John's   -61.8456   17.1175         High income
## 730         Saint John's   -61.8456   17.1175         High income
## 731         Saint John's   -61.8456   17.1175         High income
## 732         Saint John's   -61.8456   17.1175         High income
## 733         Saint John's   -61.8456   17.1175         High income
## 734         Saint John's   -61.8456   17.1175         High income
## 735         Saint John's   -61.8456   17.1175         High income
## 736         Saint John's   -61.8456   17.1175         High income
## 737         Saint John's   -61.8456   17.1175         High income
## 738                 <NA>       <NA>      <NA>                <NA>
## 739                 <NA>       <NA>      <NA>                <NA>
## 740                 <NA>       <NA>      <NA>                <NA>
## 741                 <NA>       <NA>      <NA>                <NA>
## 742                 <NA>       <NA>      <NA>                <NA>
## 743                 <NA>       <NA>      <NA>                <NA>
## 744                 <NA>       <NA>      <NA>                <NA>
## 745                 <NA>       <NA>      <NA>                <NA>
## 746                 <NA>       <NA>      <NA>                <NA>
## 747                 <NA>       <NA>      <NA>                <NA>
## 748                 <NA>       <NA>      <NA>                <NA>
## 749                 <NA>       <NA>      <NA>                <NA>
## 750                 <NA>       <NA>      <NA>                <NA>
## 751                 <NA>       <NA>      <NA>                <NA>
## 752                 <NA>       <NA>      <NA>                <NA>
## 753                 <NA>       <NA>      <NA>                <NA>
## 754                 <NA>       <NA>      <NA>                <NA>
## 755                 <NA>       <NA>      <NA>                <NA>
## 756                 <NA>       <NA>      <NA>                <NA>
## 757                 <NA>       <NA>      <NA>                <NA>
## 758                 <NA>       <NA>      <NA>                <NA>
## 759                 <NA>       <NA>      <NA>                <NA>
## 760                 <NA>       <NA>      <NA>                <NA>
## 761                 <NA>       <NA>      <NA>                <NA>
## 762                 <NA>       <NA>      <NA>                <NA>
## 763                 <NA>       <NA>      <NA>                <NA>
## 764                 <NA>       <NA>      <NA>                <NA>
## 765                 <NA>       <NA>      <NA>                <NA>
## 766                 <NA>       <NA>      <NA>                <NA>
## 767                 <NA>       <NA>      <NA>                <NA>
## 768                 <NA>       <NA>      <NA>                <NA>
## 769                 <NA>       <NA>      <NA>                <NA>
## 770                 <NA>       <NA>      <NA>                <NA>
## 771                 <NA>       <NA>      <NA>                <NA>
## 772                                                    Aggregates
## 773                                                    Aggregates
## 774                                                    Aggregates
## 775                                                    Aggregates
## 776                                                    Aggregates
## 777                                                    Aggregates
## 778                                                    Aggregates
## 779                                                    Aggregates
## 780                                                    Aggregates
## 781                                                    Aggregates
## 782                                                    Aggregates
## 783                                                    Aggregates
## 784                                                    Aggregates
## 785                                                    Aggregates
## 786                                                    Aggregates
## 787                                                    Aggregates
## 788                                                    Aggregates
## 789                                                    Aggregates
## 790                                                    Aggregates
## 791                                                    Aggregates
## 792                                                    Aggregates
## 793                                                    Aggregates
## 794                                                    Aggregates
## 795                                                    Aggregates
## 796                                                    Aggregates
## 797                                                    Aggregates
## 798                                                    Aggregates
## 799                                                    Aggregates
## 800                                                    Aggregates
## 801                                                    Aggregates
## 802                                                    Aggregates
## 803                                                    Aggregates
## 804                                                    Aggregates
## 805                                                    Aggregates
## 806                                                    Aggregates
## 807                                                    Aggregates
## 808                                                    Aggregates
## 809                                                    Aggregates
## 810                                                    Aggregates
## 811                                                    Aggregates
## 812                                                    Aggregates
## 813                                                    Aggregates
## 814                                                    Aggregates
## 815                                                    Aggregates
## 816                                                    Aggregates
## 817                                                    Aggregates
## 818                                                    Aggregates
## 819                                                    Aggregates
## 820                                                    Aggregates
## 821                                                    Aggregates
## 822                                                    Aggregates
## 823                                                    Aggregates
## 824                                                    Aggregates
## 825                                                    Aggregates
## 826                                                    Aggregates
## 827                                                    Aggregates
## 828                                                    Aggregates
## 829                                                    Aggregates
## 830                                                    Aggregates
## 831                                                    Aggregates
## 832                                                    Aggregates
## 833                                                    Aggregates
## 834                                                    Aggregates
## 835         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 836         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 837         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 838         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 839         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 840         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 841         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 842         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 843         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 844         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 845         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 846         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 847         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 848         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 849         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 850         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 851         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 852         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 853         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 854         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 855         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 856         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 857         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 858         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 859         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 860         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 861         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 862         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 863         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 864         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 865         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 866         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 867         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 868         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 869         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 870         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 871         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 872         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 873         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 874         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 875         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 876         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 877         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 878         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 879         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 880         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 881         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 882         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 883         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 884         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 885         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 886         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 887         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 888         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 889         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 890         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 891         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 892         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 893         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 894         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 895         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 896         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 897         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 898                 <NA>       <NA>      <NA>                <NA>
## 899                 <NA>       <NA>      <NA>                <NA>
## 900                 <NA>       <NA>      <NA>                <NA>
## 901                 <NA>       <NA>      <NA>                <NA>
## 902                 <NA>       <NA>      <NA>                <NA>
## 903                 <NA>       <NA>      <NA>                <NA>
## 904                 <NA>       <NA>      <NA>                <NA>
## 905                 <NA>       <NA>      <NA>                <NA>
## 906                 <NA>       <NA>      <NA>                <NA>
## 907                 <NA>       <NA>      <NA>                <NA>
## 908                 <NA>       <NA>      <NA>                <NA>
## 909                 <NA>       <NA>      <NA>                <NA>
## 910                 <NA>       <NA>      <NA>                <NA>
## 911                 <NA>       <NA>      <NA>                <NA>
## 912                 <NA>       <NA>      <NA>                <NA>
## 913                 <NA>       <NA>      <NA>                <NA>
## 914                 <NA>       <NA>      <NA>                <NA>
## 915                 <NA>       <NA>      <NA>                <NA>
## 916                 <NA>       <NA>      <NA>                <NA>
## 917                 <NA>       <NA>      <NA>                <NA>
## 918                 <NA>       <NA>      <NA>                <NA>
## 919                 <NA>       <NA>      <NA>                <NA>
## 920                 <NA>       <NA>      <NA>                <NA>
## 921                 <NA>       <NA>      <NA>                <NA>
## 922                 <NA>       <NA>      <NA>                <NA>
## 923                 <NA>       <NA>      <NA>                <NA>
## 924                 <NA>       <NA>      <NA>                <NA>
## 925                 <NA>       <NA>      <NA>                <NA>
## 926                 <NA>       <NA>      <NA>                <NA>
## 927                 <NA>       <NA>      <NA>                <NA>
## 928                 <NA>       <NA>      <NA>                <NA>
## 929                 <NA>       <NA>      <NA>                <NA>
## 930                 <NA>       <NA>      <NA>                <NA>
## 931                 <NA>       <NA>      <NA>                <NA>
## 932              Yerevan     44.509   40.1596 Upper middle income
## 933              Yerevan     44.509   40.1596 Upper middle income
## 934              Yerevan     44.509   40.1596 Upper middle income
## 935              Yerevan     44.509   40.1596 Upper middle income
## 936              Yerevan     44.509   40.1596 Upper middle income
## 937              Yerevan     44.509   40.1596 Upper middle income
## 938              Yerevan     44.509   40.1596 Upper middle income
## 939              Yerevan     44.509   40.1596 Upper middle income
## 940              Yerevan     44.509   40.1596 Upper middle income
## 941              Yerevan     44.509   40.1596 Upper middle income
## 942              Yerevan     44.509   40.1596 Upper middle income
## 943              Yerevan     44.509   40.1596 Upper middle income
## 944              Yerevan     44.509   40.1596 Upper middle income
## 945              Yerevan     44.509   40.1596 Upper middle income
## 946              Yerevan     44.509   40.1596 Upper middle income
## 947              Yerevan     44.509   40.1596 Upper middle income
## 948              Yerevan     44.509   40.1596 Upper middle income
## 949              Yerevan     44.509   40.1596 Upper middle income
## 950              Yerevan     44.509   40.1596 Upper middle income
## 951              Yerevan     44.509   40.1596 Upper middle income
## 952              Yerevan     44.509   40.1596 Upper middle income
## 953              Yerevan     44.509   40.1596 Upper middle income
## 954              Yerevan     44.509   40.1596 Upper middle income
## 955              Yerevan     44.509   40.1596 Upper middle income
## 956              Yerevan     44.509   40.1596 Upper middle income
## 957              Yerevan     44.509   40.1596 Upper middle income
## 958              Yerevan     44.509   40.1596 Upper middle income
## 959              Yerevan     44.509   40.1596 Upper middle income
## 960              Yerevan     44.509   40.1596 Upper middle income
## 961              Yerevan     44.509   40.1596 Upper middle income
## 962              Yerevan     44.509   40.1596 Upper middle income
## 963              Yerevan     44.509   40.1596 Upper middle income
## 964              Yerevan     44.509   40.1596 Upper middle income
## 965              Yerevan     44.509   40.1596 Upper middle income
## 966              Yerevan     44.509   40.1596 Upper middle income
## 967              Yerevan     44.509   40.1596 Upper middle income
## 968              Yerevan     44.509   40.1596 Upper middle income
## 969              Yerevan     44.509   40.1596 Upper middle income
## 970              Yerevan     44.509   40.1596 Upper middle income
## 971              Yerevan     44.509   40.1596 Upper middle income
## 972              Yerevan     44.509   40.1596 Upper middle income
## 973              Yerevan     44.509   40.1596 Upper middle income
## 974              Yerevan     44.509   40.1596 Upper middle income
## 975              Yerevan     44.509   40.1596 Upper middle income
## 976              Yerevan     44.509   40.1596 Upper middle income
## 977              Yerevan     44.509   40.1596 Upper middle income
## 978              Yerevan     44.509   40.1596 Upper middle income
## 979              Yerevan     44.509   40.1596 Upper middle income
## 980              Yerevan     44.509   40.1596 Upper middle income
## 981              Yerevan     44.509   40.1596 Upper middle income
## 982              Yerevan     44.509   40.1596 Upper middle income
## 983              Yerevan     44.509   40.1596 Upper middle income
## 984              Yerevan     44.509   40.1596 Upper middle income
## 985              Yerevan     44.509   40.1596 Upper middle income
## 986              Yerevan     44.509   40.1596 Upper middle income
## 987              Yerevan     44.509   40.1596 Upper middle income
## 988              Yerevan     44.509   40.1596 Upper middle income
## 989              Yerevan     44.509   40.1596 Upper middle income
## 990              Yerevan     44.509   40.1596 Upper middle income
## 991              Yerevan     44.509   40.1596 Upper middle income
## 992              Yerevan     44.509   40.1596 Upper middle income
## 993              Yerevan     44.509   40.1596 Upper middle income
## 994              Yerevan     44.509   40.1596 Upper middle income
## 995                 <NA>       <NA>      <NA>                <NA>
## 996                 <NA>       <NA>      <NA>                <NA>
## 997                 <NA>       <NA>      <NA>                <NA>
## 998                 <NA>       <NA>      <NA>                <NA>
## 999                 <NA>       <NA>      <NA>                <NA>
## 1000                <NA>       <NA>      <NA>                <NA>
## 1001                <NA>       <NA>      <NA>                <NA>
## 1002                <NA>       <NA>      <NA>                <NA>
## 1003                <NA>       <NA>      <NA>                <NA>
## 1004                <NA>       <NA>      <NA>                <NA>
## 1005                <NA>       <NA>      <NA>                <NA>
## 1006                <NA>       <NA>      <NA>                <NA>
## 1007                <NA>       <NA>      <NA>                <NA>
## 1008                <NA>       <NA>      <NA>                <NA>
## 1009                <NA>       <NA>      <NA>                <NA>
## 1010                <NA>       <NA>      <NA>                <NA>
## 1011                <NA>       <NA>      <NA>                <NA>
## 1012                <NA>       <NA>      <NA>                <NA>
## 1013                <NA>       <NA>      <NA>                <NA>
## 1014                <NA>       <NA>      <NA>                <NA>
## 1015                <NA>       <NA>      <NA>                <NA>
## 1016                <NA>       <NA>      <NA>                <NA>
## 1017                <NA>       <NA>      <NA>                <NA>
## 1018                <NA>       <NA>      <NA>                <NA>
## 1019                <NA>       <NA>      <NA>                <NA>
## 1020                <NA>       <NA>      <NA>                <NA>
## 1021                <NA>       <NA>      <NA>                <NA>
## 1022                <NA>       <NA>      <NA>                <NA>
## 1023                <NA>       <NA>      <NA>                <NA>
## 1024                <NA>       <NA>      <NA>                <NA>
## 1025                <NA>       <NA>      <NA>                <NA>
## 1026                <NA>       <NA>      <NA>                <NA>
## 1027                <NA>       <NA>      <NA>                <NA>
## 1028                <NA>       <NA>      <NA>                <NA>
## 1029                <NA>       <NA>      <NA>                <NA>
## 1030                <NA>       <NA>      <NA>                <NA>
## 1031                <NA>       <NA>      <NA>                <NA>
## 1032                <NA>       <NA>      <NA>                <NA>
## 1033                <NA>       <NA>      <NA>                <NA>
## 1034                <NA>       <NA>      <NA>                <NA>
## 1035                <NA>       <NA>      <NA>                <NA>
## 1036                <NA>       <NA>      <NA>                <NA>
## 1037                <NA>       <NA>      <NA>                <NA>
## 1038                <NA>       <NA>      <NA>                <NA>
## 1039                <NA>       <NA>      <NA>                <NA>
## 1040                <NA>       <NA>      <NA>                <NA>
## 1041                <NA>       <NA>      <NA>                <NA>
## 1042                <NA>       <NA>      <NA>                <NA>
## 1043                <NA>       <NA>      <NA>                <NA>
## 1044                <NA>       <NA>      <NA>                <NA>
## 1045                <NA>       <NA>      <NA>                <NA>
## 1046                <NA>       <NA>      <NA>                <NA>
## 1047                <NA>       <NA>      <NA>                <NA>
## 1048                <NA>       <NA>      <NA>                <NA>
## 1049                <NA>       <NA>      <NA>                <NA>
## 1050                <NA>       <NA>      <NA>                <NA>
## 1051                <NA>       <NA>      <NA>                <NA>
## 1052                <NA>       <NA>      <NA>                <NA>
## 1053                <NA>       <NA>      <NA>                <NA>
## 1054                <NA>       <NA>      <NA>                <NA>
## 1055                <NA>       <NA>      <NA>                <NA>
## 1056                <NA>       <NA>      <NA>                <NA>
## 1057                <NA>       <NA>      <NA>                <NA>
## 1058                <NA>       <NA>      <NA>                <NA>
## 1059                <NA>       <NA>      <NA>                <NA>
## 1060                <NA>       <NA>      <NA>                <NA>
## 1061                <NA>       <NA>      <NA>                <NA>
## 1062                <NA>       <NA>      <NA>                <NA>
## 1063          Oranjestad   -70.0167   12.5167         High income
## 1064          Oranjestad   -70.0167   12.5167         High income
## 1065          Oranjestad   -70.0167   12.5167         High income
## 1066          Oranjestad   -70.0167   12.5167         High income
## 1067          Oranjestad   -70.0167   12.5167         High income
## 1068          Oranjestad   -70.0167   12.5167         High income
## 1069          Oranjestad   -70.0167   12.5167         High income
## 1070          Oranjestad   -70.0167   12.5167         High income
## 1071          Oranjestad   -70.0167   12.5167         High income
## 1072          Oranjestad   -70.0167   12.5167         High income
## 1073          Oranjestad   -70.0167   12.5167         High income
## 1074          Oranjestad   -70.0167   12.5167         High income
## 1075          Oranjestad   -70.0167   12.5167         High income
## 1076          Oranjestad   -70.0167   12.5167         High income
## 1077          Oranjestad   -70.0167   12.5167         High income
## 1078          Oranjestad   -70.0167   12.5167         High income
## 1079          Oranjestad   -70.0167   12.5167         High income
## 1080          Oranjestad   -70.0167   12.5167         High income
## 1081          Oranjestad   -70.0167   12.5167         High income
## 1082          Oranjestad   -70.0167   12.5167         High income
## 1083          Oranjestad   -70.0167   12.5167         High income
## 1084          Oranjestad   -70.0167   12.5167         High income
## 1085          Oranjestad   -70.0167   12.5167         High income
## 1086          Oranjestad   -70.0167   12.5167         High income
## 1087          Oranjestad   -70.0167   12.5167         High income
## 1088          Oranjestad   -70.0167   12.5167         High income
## 1089          Oranjestad   -70.0167   12.5167         High income
## 1090          Oranjestad   -70.0167   12.5167         High income
## 1091          Oranjestad   -70.0167   12.5167         High income
## 1092          Oranjestad   -70.0167   12.5167         High income
## 1093          Oranjestad   -70.0167   12.5167         High income
## 1094          Oranjestad   -70.0167   12.5167         High income
## 1095          Oranjestad   -70.0167   12.5167         High income
## 1096          Oranjestad   -70.0167   12.5167         High income
## 1097          Oranjestad   -70.0167   12.5167         High income
## 1098          Oranjestad   -70.0167   12.5167         High income
## 1099          Oranjestad   -70.0167   12.5167         High income
## 1100          Oranjestad   -70.0167   12.5167         High income
## 1101          Oranjestad   -70.0167   12.5167         High income
## 1102          Oranjestad   -70.0167   12.5167         High income
## 1103          Oranjestad   -70.0167   12.5167         High income
## 1104          Oranjestad   -70.0167   12.5167         High income
## 1105          Oranjestad   -70.0167   12.5167         High income
## 1106          Oranjestad   -70.0167   12.5167         High income
## 1107          Oranjestad   -70.0167   12.5167         High income
## 1108          Oranjestad   -70.0167   12.5167         High income
## 1109          Oranjestad   -70.0167   12.5167         High income
## 1110          Oranjestad   -70.0167   12.5167         High income
## 1111          Oranjestad   -70.0167   12.5167         High income
## 1112          Oranjestad   -70.0167   12.5167         High income
## 1113          Oranjestad   -70.0167   12.5167         High income
## 1114          Oranjestad   -70.0167   12.5167         High income
## 1115          Oranjestad   -70.0167   12.5167         High income
## 1116          Oranjestad   -70.0167   12.5167         High income
## 1117          Oranjestad   -70.0167   12.5167         High income
## 1118          Oranjestad   -70.0167   12.5167         High income
## 1119          Oranjestad   -70.0167   12.5167         High income
## 1120          Oranjestad   -70.0167   12.5167         High income
## 1121          Oranjestad   -70.0167   12.5167         High income
## 1122          Oranjestad   -70.0167   12.5167         High income
## 1123          Oranjestad   -70.0167   12.5167         High income
## 1124          Oranjestad   -70.0167   12.5167         High income
## 1125          Oranjestad   -70.0167   12.5167         High income
## 1126            Canberra    149.129   -35.282         High income
## 1127            Canberra    149.129   -35.282         High income
## 1128            Canberra    149.129   -35.282         High income
## 1129            Canberra    149.129   -35.282         High income
## 1130            Canberra    149.129   -35.282         High income
## 1131            Canberra    149.129   -35.282         High income
## 1132            Canberra    149.129   -35.282         High income
## 1133            Canberra    149.129   -35.282         High income
## 1134            Canberra    149.129   -35.282         High income
## 1135            Canberra    149.129   -35.282         High income
## 1136            Canberra    149.129   -35.282         High income
## 1137            Canberra    149.129   -35.282         High income
## 1138            Canberra    149.129   -35.282         High income
## 1139            Canberra    149.129   -35.282         High income
## 1140            Canberra    149.129   -35.282         High income
## 1141            Canberra    149.129   -35.282         High income
## 1142            Canberra    149.129   -35.282         High income
## 1143            Canberra    149.129   -35.282         High income
## 1144            Canberra    149.129   -35.282         High income
## 1145            Canberra    149.129   -35.282         High income
## 1146            Canberra    149.129   -35.282         High income
## 1147            Canberra    149.129   -35.282         High income
## 1148            Canberra    149.129   -35.282         High income
## 1149            Canberra    149.129   -35.282         High income
## 1150            Canberra    149.129   -35.282         High income
## 1151            Canberra    149.129   -35.282         High income
## 1152            Canberra    149.129   -35.282         High income
## 1153            Canberra    149.129   -35.282         High income
## 1154            Canberra    149.129   -35.282         High income
## 1155            Canberra    149.129   -35.282         High income
## 1156            Canberra    149.129   -35.282         High income
## 1157            Canberra    149.129   -35.282         High income
## 1158            Canberra    149.129   -35.282         High income
## 1159            Canberra    149.129   -35.282         High income
## 1160            Canberra    149.129   -35.282         High income
## 1161            Canberra    149.129   -35.282         High income
## 1162            Canberra    149.129   -35.282         High income
## 1163            Canberra    149.129   -35.282         High income
## 1164            Canberra    149.129   -35.282         High income
## 1165            Canberra    149.129   -35.282         High income
## 1166            Canberra    149.129   -35.282         High income
## 1167            Canberra    149.129   -35.282         High income
## 1168            Canberra    149.129   -35.282         High income
## 1169            Canberra    149.129   -35.282         High income
## 1170            Canberra    149.129   -35.282         High income
## 1171            Canberra    149.129   -35.282         High income
## 1172            Canberra    149.129   -35.282         High income
## 1173            Canberra    149.129   -35.282         High income
## 1174            Canberra    149.129   -35.282         High income
## 1175            Canberra    149.129   -35.282         High income
## 1176            Canberra    149.129   -35.282         High income
## 1177            Canberra    149.129   -35.282         High income
## 1178            Canberra    149.129   -35.282         High income
## 1179            Canberra    149.129   -35.282         High income
## 1180            Canberra    149.129   -35.282         High income
## 1181            Canberra    149.129   -35.282         High income
## 1182            Canberra    149.129   -35.282         High income
## 1183            Canberra    149.129   -35.282         High income
## 1184            Canberra    149.129   -35.282         High income
## 1185            Canberra    149.129   -35.282         High income
## 1186            Canberra    149.129   -35.282         High income
## 1187            Canberra    149.129   -35.282         High income
## 1188            Canberra    149.129   -35.282         High income
## 1189                <NA>       <NA>      <NA>                <NA>
## 1190                <NA>       <NA>      <NA>                <NA>
## 1191                <NA>       <NA>      <NA>                <NA>
## 1192                <NA>       <NA>      <NA>                <NA>
## 1193                <NA>       <NA>      <NA>                <NA>
## 1194                <NA>       <NA>      <NA>                <NA>
## 1195                <NA>       <NA>      <NA>                <NA>
## 1196                <NA>       <NA>      <NA>                <NA>
## 1197                <NA>       <NA>      <NA>                <NA>
## 1198                <NA>       <NA>      <NA>                <NA>
## 1199                <NA>       <NA>      <NA>                <NA>
## 1200                <NA>       <NA>      <NA>                <NA>
## 1201                <NA>       <NA>      <NA>                <NA>
## 1202                <NA>       <NA>      <NA>                <NA>
## 1203                <NA>       <NA>      <NA>                <NA>
## 1204                <NA>       <NA>      <NA>                <NA>
## 1205                <NA>       <NA>      <NA>                <NA>
## 1206                <NA>       <NA>      <NA>                <NA>
## 1207                <NA>       <NA>      <NA>                <NA>
## 1208                <NA>       <NA>      <NA>                <NA>
## 1209                <NA>       <NA>      <NA>                <NA>
## 1210                <NA>       <NA>      <NA>                <NA>
## 1211                <NA>       <NA>      <NA>                <NA>
## 1212                <NA>       <NA>      <NA>                <NA>
## 1213                <NA>       <NA>      <NA>                <NA>
## 1214                <NA>       <NA>      <NA>                <NA>
## 1215                <NA>       <NA>      <NA>                <NA>
## 1216                <NA>       <NA>      <NA>                <NA>
## 1217                <NA>       <NA>      <NA>                <NA>
## 1218                <NA>       <NA>      <NA>                <NA>
## 1219                <NA>       <NA>      <NA>                <NA>
## 1220                <NA>       <NA>      <NA>                <NA>
## 1221                <NA>       <NA>      <NA>                <NA>
## 1222                <NA>       <NA>      <NA>                <NA>
## 1223              Vienna    16.3798   48.2201         High income
## 1224              Vienna    16.3798   48.2201         High income
## 1225              Vienna    16.3798   48.2201         High income
## 1226              Vienna    16.3798   48.2201         High income
## 1227              Vienna    16.3798   48.2201         High income
## 1228              Vienna    16.3798   48.2201         High income
## 1229              Vienna    16.3798   48.2201         High income
## 1230              Vienna    16.3798   48.2201         High income
## 1231              Vienna    16.3798   48.2201         High income
## 1232              Vienna    16.3798   48.2201         High income
## 1233              Vienna    16.3798   48.2201         High income
## 1234              Vienna    16.3798   48.2201         High income
## 1235              Vienna    16.3798   48.2201         High income
## 1236              Vienna    16.3798   48.2201         High income
## 1237              Vienna    16.3798   48.2201         High income
## 1238              Vienna    16.3798   48.2201         High income
## 1239              Vienna    16.3798   48.2201         High income
## 1240              Vienna    16.3798   48.2201         High income
## 1241              Vienna    16.3798   48.2201         High income
## 1242              Vienna    16.3798   48.2201         High income
## 1243              Vienna    16.3798   48.2201         High income
## 1244              Vienna    16.3798   48.2201         High income
## 1245              Vienna    16.3798   48.2201         High income
## 1246              Vienna    16.3798   48.2201         High income
## 1247              Vienna    16.3798   48.2201         High income
## 1248              Vienna    16.3798   48.2201         High income
## 1249              Vienna    16.3798   48.2201         High income
## 1250              Vienna    16.3798   48.2201         High income
## 1251              Vienna    16.3798   48.2201         High income
## 1252              Vienna    16.3798   48.2201         High income
## 1253              Vienna    16.3798   48.2201         High income
## 1254              Vienna    16.3798   48.2201         High income
## 1255              Vienna    16.3798   48.2201         High income
## 1256              Vienna    16.3798   48.2201         High income
## 1257              Vienna    16.3798   48.2201         High income
## 1258              Vienna    16.3798   48.2201         High income
## 1259              Vienna    16.3798   48.2201         High income
## 1260              Vienna    16.3798   48.2201         High income
## 1261              Vienna    16.3798   48.2201         High income
## 1262              Vienna    16.3798   48.2201         High income
## 1263              Vienna    16.3798   48.2201         High income
## 1264              Vienna    16.3798   48.2201         High income
## 1265              Vienna    16.3798   48.2201         High income
## 1266              Vienna    16.3798   48.2201         High income
## 1267              Vienna    16.3798   48.2201         High income
## 1268              Vienna    16.3798   48.2201         High income
## 1269              Vienna    16.3798   48.2201         High income
## 1270              Vienna    16.3798   48.2201         High income
## 1271              Vienna    16.3798   48.2201         High income
## 1272              Vienna    16.3798   48.2201         High income
## 1273              Vienna    16.3798   48.2201         High income
## 1274              Vienna    16.3798   48.2201         High income
## 1275              Vienna    16.3798   48.2201         High income
## 1276              Vienna    16.3798   48.2201         High income
## 1277              Vienna    16.3798   48.2201         High income
## 1278              Vienna    16.3798   48.2201         High income
## 1279              Vienna    16.3798   48.2201         High income
## 1280              Vienna    16.3798   48.2201         High income
## 1281              Vienna    16.3798   48.2201         High income
## 1282              Vienna    16.3798   48.2201         High income
## 1283              Vienna    16.3798   48.2201         High income
## 1284              Vienna    16.3798   48.2201         High income
## 1285              Vienna    16.3798   48.2201         High income
## 1286                <NA>       <NA>      <NA>                <NA>
## 1287                <NA>       <NA>      <NA>                <NA>
## 1288                <NA>       <NA>      <NA>                <NA>
## 1289                <NA>       <NA>      <NA>                <NA>
## 1290                <NA>       <NA>      <NA>                <NA>
## 1291                <NA>       <NA>      <NA>                <NA>
## 1292                <NA>       <NA>      <NA>                <NA>
## 1293                <NA>       <NA>      <NA>                <NA>
## 1294                <NA>       <NA>      <NA>                <NA>
## 1295                <NA>       <NA>      <NA>                <NA>
## 1296                <NA>       <NA>      <NA>                <NA>
## 1297                <NA>       <NA>      <NA>                <NA>
## 1298                <NA>       <NA>      <NA>                <NA>
## 1299                <NA>       <NA>      <NA>                <NA>
## 1300                <NA>       <NA>      <NA>                <NA>
## 1301                <NA>       <NA>      <NA>                <NA>
## 1302                <NA>       <NA>      <NA>                <NA>
## 1303                <NA>       <NA>      <NA>                <NA>
## 1304                <NA>       <NA>      <NA>                <NA>
## 1305                <NA>       <NA>      <NA>                <NA>
## 1306                <NA>       <NA>      <NA>                <NA>
## 1307                <NA>       <NA>      <NA>                <NA>
## 1308                <NA>       <NA>      <NA>                <NA>
## 1309                <NA>       <NA>      <NA>                <NA>
## 1310                <NA>       <NA>      <NA>                <NA>
## 1311                <NA>       <NA>      <NA>                <NA>
## 1312                <NA>       <NA>      <NA>                <NA>
## 1313                <NA>       <NA>      <NA>                <NA>
## 1314                <NA>       <NA>      <NA>                <NA>
## 1315                <NA>       <NA>      <NA>                <NA>
## 1316                <NA>       <NA>      <NA>                <NA>
## 1317                <NA>       <NA>      <NA>                <NA>
## 1318                <NA>       <NA>      <NA>                <NA>
## 1319                <NA>       <NA>      <NA>                <NA>
## 1320                Baku    49.8932   40.3834 Upper middle income
## 1321                Baku    49.8932   40.3834 Upper middle income
## 1322                Baku    49.8932   40.3834 Upper middle income
## 1323                Baku    49.8932   40.3834 Upper middle income
## 1324                Baku    49.8932   40.3834 Upper middle income
## 1325                Baku    49.8932   40.3834 Upper middle income
## 1326                Baku    49.8932   40.3834 Upper middle income
## 1327                Baku    49.8932   40.3834 Upper middle income
## 1328                Baku    49.8932   40.3834 Upper middle income
## 1329                Baku    49.8932   40.3834 Upper middle income
## 1330                Baku    49.8932   40.3834 Upper middle income
## 1331                Baku    49.8932   40.3834 Upper middle income
## 1332                Baku    49.8932   40.3834 Upper middle income
## 1333                Baku    49.8932   40.3834 Upper middle income
## 1334                Baku    49.8932   40.3834 Upper middle income
## 1335                Baku    49.8932   40.3834 Upper middle income
## 1336                Baku    49.8932   40.3834 Upper middle income
## 1337                Baku    49.8932   40.3834 Upper middle income
## 1338                Baku    49.8932   40.3834 Upper middle income
## 1339                Baku    49.8932   40.3834 Upper middle income
## 1340                Baku    49.8932   40.3834 Upper middle income
## 1341                Baku    49.8932   40.3834 Upper middle income
## 1342                Baku    49.8932   40.3834 Upper middle income
## 1343                Baku    49.8932   40.3834 Upper middle income
## 1344                Baku    49.8932   40.3834 Upper middle income
## 1345                Baku    49.8932   40.3834 Upper middle income
## 1346                Baku    49.8932   40.3834 Upper middle income
## 1347                Baku    49.8932   40.3834 Upper middle income
## 1348                Baku    49.8932   40.3834 Upper middle income
## 1349                Baku    49.8932   40.3834 Upper middle income
## 1350                Baku    49.8932   40.3834 Upper middle income
## 1351                Baku    49.8932   40.3834 Upper middle income
## 1352                Baku    49.8932   40.3834 Upper middle income
## 1353                Baku    49.8932   40.3834 Upper middle income
## 1354                Baku    49.8932   40.3834 Upper middle income
## 1355                Baku    49.8932   40.3834 Upper middle income
## 1356                Baku    49.8932   40.3834 Upper middle income
## 1357                Baku    49.8932   40.3834 Upper middle income
## 1358                Baku    49.8932   40.3834 Upper middle income
## 1359                Baku    49.8932   40.3834 Upper middle income
## 1360                Baku    49.8932   40.3834 Upper middle income
## 1361                Baku    49.8932   40.3834 Upper middle income
## 1362                Baku    49.8932   40.3834 Upper middle income
## 1363                Baku    49.8932   40.3834 Upper middle income
## 1364                Baku    49.8932   40.3834 Upper middle income
## 1365                Baku    49.8932   40.3834 Upper middle income
## 1366                Baku    49.8932   40.3834 Upper middle income
## 1367                Baku    49.8932   40.3834 Upper middle income
## 1368                Baku    49.8932   40.3834 Upper middle income
## 1369                Baku    49.8932   40.3834 Upper middle income
## 1370                Baku    49.8932   40.3834 Upper middle income
## 1371                Baku    49.8932   40.3834 Upper middle income
## 1372                Baku    49.8932   40.3834 Upper middle income
## 1373                Baku    49.8932   40.3834 Upper middle income
## 1374                Baku    49.8932   40.3834 Upper middle income
## 1375                Baku    49.8932   40.3834 Upper middle income
## 1376                Baku    49.8932   40.3834 Upper middle income
## 1377                Baku    49.8932   40.3834 Upper middle income
## 1378                Baku    49.8932   40.3834 Upper middle income
## 1379                Baku    49.8932   40.3834 Upper middle income
## 1380                Baku    49.8932   40.3834 Upper middle income
## 1381                Baku    49.8932   40.3834 Upper middle income
## 1382                Baku    49.8932   40.3834 Upper middle income
## 1383                <NA>       <NA>      <NA>                <NA>
## 1384                <NA>       <NA>      <NA>                <NA>
## 1385                <NA>       <NA>      <NA>                <NA>
## 1386                <NA>       <NA>      <NA>                <NA>
## 1387                <NA>       <NA>      <NA>                <NA>
## 1388                <NA>       <NA>      <NA>                <NA>
## 1389                <NA>       <NA>      <NA>                <NA>
## 1390                <NA>       <NA>      <NA>                <NA>
## 1391                <NA>       <NA>      <NA>                <NA>
## 1392                <NA>       <NA>      <NA>                <NA>
## 1393                <NA>       <NA>      <NA>                <NA>
## 1394                <NA>       <NA>      <NA>                <NA>
## 1395                <NA>       <NA>      <NA>                <NA>
## 1396                <NA>       <NA>      <NA>                <NA>
## 1397                <NA>       <NA>      <NA>                <NA>
## 1398                <NA>       <NA>      <NA>                <NA>
## 1399                <NA>       <NA>      <NA>                <NA>
## 1400                <NA>       <NA>      <NA>                <NA>
## 1401                <NA>       <NA>      <NA>                <NA>
## 1402                <NA>       <NA>      <NA>                <NA>
## 1403                <NA>       <NA>      <NA>                <NA>
## 1404                <NA>       <NA>      <NA>                <NA>
## 1405                <NA>       <NA>      <NA>                <NA>
## 1406                <NA>       <NA>      <NA>                <NA>
## 1407                <NA>       <NA>      <NA>                <NA>
## 1408                <NA>       <NA>      <NA>                <NA>
## 1409                <NA>       <NA>      <NA>                <NA>
## 1410                <NA>       <NA>      <NA>                <NA>
## 1411                <NA>       <NA>      <NA>                <NA>
## 1412                <NA>       <NA>      <NA>                <NA>
## 1413                <NA>       <NA>      <NA>                <NA>
## 1414                <NA>       <NA>      <NA>                <NA>
## 1415                <NA>       <NA>      <NA>                <NA>
## 1416                <NA>       <NA>      <NA>                <NA>
## 1417                <NA>       <NA>      <NA>                <NA>
## 1418                <NA>       <NA>      <NA>                <NA>
## 1419                <NA>       <NA>      <NA>                <NA>
## 1420                <NA>       <NA>      <NA>                <NA>
## 1421                <NA>       <NA>      <NA>                <NA>
## 1422                <NA>       <NA>      <NA>                <NA>
## 1423                <NA>       <NA>      <NA>                <NA>
## 1424                <NA>       <NA>      <NA>                <NA>
## 1425                <NA>       <NA>      <NA>                <NA>
## 1426                <NA>       <NA>      <NA>                <NA>
## 1427                <NA>       <NA>      <NA>                <NA>
## 1428                <NA>       <NA>      <NA>                <NA>
## 1429                <NA>       <NA>      <NA>                <NA>
## 1430                <NA>       <NA>      <NA>                <NA>
## 1431                <NA>       <NA>      <NA>                <NA>
## 1432                <NA>       <NA>      <NA>                <NA>
## 1433                <NA>       <NA>      <NA>                <NA>
## 1434                <NA>       <NA>      <NA>                <NA>
## 1435                <NA>       <NA>      <NA>                <NA>
## 1436                <NA>       <NA>      <NA>                <NA>
## 1437                <NA>       <NA>      <NA>                <NA>
## 1438                <NA>       <NA>      <NA>                <NA>
## 1439                <NA>       <NA>      <NA>                <NA>
## 1440                <NA>       <NA>      <NA>                <NA>
## 1441                <NA>       <NA>      <NA>                <NA>
## 1442                <NA>       <NA>      <NA>                <NA>
## 1443                <NA>       <NA>      <NA>                <NA>
## 1444                <NA>       <NA>      <NA>                <NA>
## 1445                <NA>       <NA>      <NA>                <NA>
## 1446                <NA>       <NA>      <NA>                <NA>
## 1447                <NA>       <NA>      <NA>                <NA>
## 1448                <NA>       <NA>      <NA>                <NA>
## 1449                <NA>       <NA>      <NA>                <NA>
## 1450                <NA>       <NA>      <NA>                <NA>
## 1451              Nassau    -77.339   25.0661         High income
## 1452              Nassau    -77.339   25.0661         High income
## 1453              Nassau    -77.339   25.0661         High income
## 1454              Nassau    -77.339   25.0661         High income
## 1455              Nassau    -77.339   25.0661         High income
## 1456              Nassau    -77.339   25.0661         High income
## 1457              Nassau    -77.339   25.0661         High income
## 1458              Nassau    -77.339   25.0661         High income
## 1459              Nassau    -77.339   25.0661         High income
## 1460              Nassau    -77.339   25.0661         High income
## 1461              Nassau    -77.339   25.0661         High income
## 1462              Nassau    -77.339   25.0661         High income
## 1463              Nassau    -77.339   25.0661         High income
## 1464              Nassau    -77.339   25.0661         High income
## 1465              Nassau    -77.339   25.0661         High income
## 1466              Nassau    -77.339   25.0661         High income
## 1467              Nassau    -77.339   25.0661         High income
## 1468              Nassau    -77.339   25.0661         High income
## 1469              Nassau    -77.339   25.0661         High income
## 1470              Nassau    -77.339   25.0661         High income
## 1471              Nassau    -77.339   25.0661         High income
## 1472              Nassau    -77.339   25.0661         High income
## 1473              Nassau    -77.339   25.0661         High income
## 1474              Nassau    -77.339   25.0661         High income
## 1475              Nassau    -77.339   25.0661         High income
## 1476              Nassau    -77.339   25.0661         High income
## 1477              Nassau    -77.339   25.0661         High income
## 1478              Nassau    -77.339   25.0661         High income
## 1479              Nassau    -77.339   25.0661         High income
## 1480              Nassau    -77.339   25.0661         High income
## 1481              Nassau    -77.339   25.0661         High income
## 1482              Nassau    -77.339   25.0661         High income
## 1483              Nassau    -77.339   25.0661         High income
## 1484              Nassau    -77.339   25.0661         High income
## 1485              Nassau    -77.339   25.0661         High income
## 1486              Nassau    -77.339   25.0661         High income
## 1487              Nassau    -77.339   25.0661         High income
## 1488              Nassau    -77.339   25.0661         High income
## 1489              Nassau    -77.339   25.0661         High income
## 1490              Nassau    -77.339   25.0661         High income
## 1491              Nassau    -77.339   25.0661         High income
## 1492              Nassau    -77.339   25.0661         High income
## 1493              Nassau    -77.339   25.0661         High income
## 1494              Nassau    -77.339   25.0661         High income
## 1495              Nassau    -77.339   25.0661         High income
## 1496              Nassau    -77.339   25.0661         High income
## 1497              Nassau    -77.339   25.0661         High income
## 1498              Nassau    -77.339   25.0661         High income
## 1499              Nassau    -77.339   25.0661         High income
## 1500              Nassau    -77.339   25.0661         High income
## 1501              Nassau    -77.339   25.0661         High income
## 1502              Nassau    -77.339   25.0661         High income
## 1503              Nassau    -77.339   25.0661         High income
## 1504              Nassau    -77.339   25.0661         High income
## 1505              Nassau    -77.339   25.0661         High income
## 1506              Nassau    -77.339   25.0661         High income
## 1507              Nassau    -77.339   25.0661         High income
## 1508              Nassau    -77.339   25.0661         High income
## 1509              Nassau    -77.339   25.0661         High income
## 1510              Nassau    -77.339   25.0661         High income
## 1511              Nassau    -77.339   25.0661         High income
## 1512              Nassau    -77.339   25.0661         High income
## 1513              Nassau    -77.339   25.0661         High income
## 1514              Manama    50.5354   26.1921         High income
## 1515              Manama    50.5354   26.1921         High income
## 1516              Manama    50.5354   26.1921         High income
## 1517              Manama    50.5354   26.1921         High income
## 1518              Manama    50.5354   26.1921         High income
## 1519              Manama    50.5354   26.1921         High income
## 1520              Manama    50.5354   26.1921         High income
## 1521              Manama    50.5354   26.1921         High income
## 1522              Manama    50.5354   26.1921         High income
## 1523              Manama    50.5354   26.1921         High income
## 1524              Manama    50.5354   26.1921         High income
## 1525              Manama    50.5354   26.1921         High income
## 1526              Manama    50.5354   26.1921         High income
## 1527              Manama    50.5354   26.1921         High income
## 1528              Manama    50.5354   26.1921         High income
## 1529              Manama    50.5354   26.1921         High income
## 1530              Manama    50.5354   26.1921         High income
## 1531              Manama    50.5354   26.1921         High income
## 1532              Manama    50.5354   26.1921         High income
## 1533              Manama    50.5354   26.1921         High income
## 1534              Manama    50.5354   26.1921         High income
## 1535              Manama    50.5354   26.1921         High income
## 1536              Manama    50.5354   26.1921         High income
## 1537              Manama    50.5354   26.1921         High income
## 1538              Manama    50.5354   26.1921         High income
## 1539              Manama    50.5354   26.1921         High income
## 1540              Manama    50.5354   26.1921         High income
## 1541              Manama    50.5354   26.1921         High income
## 1542              Manama    50.5354   26.1921         High income
## 1543              Manama    50.5354   26.1921         High income
## 1544              Manama    50.5354   26.1921         High income
## 1545              Manama    50.5354   26.1921         High income
## 1546              Manama    50.5354   26.1921         High income
## 1547              Manama    50.5354   26.1921         High income
## 1548              Manama    50.5354   26.1921         High income
## 1549              Manama    50.5354   26.1921         High income
## 1550              Manama    50.5354   26.1921         High income
## 1551              Manama    50.5354   26.1921         High income
## 1552              Manama    50.5354   26.1921         High income
## 1553              Manama    50.5354   26.1921         High income
## 1554              Manama    50.5354   26.1921         High income
## 1555              Manama    50.5354   26.1921         High income
## 1556              Manama    50.5354   26.1921         High income
## 1557              Manama    50.5354   26.1921         High income
## 1558              Manama    50.5354   26.1921         High income
## 1559              Manama    50.5354   26.1921         High income
## 1560              Manama    50.5354   26.1921         High income
## 1561              Manama    50.5354   26.1921         High income
## 1562              Manama    50.5354   26.1921         High income
## 1563              Manama    50.5354   26.1921         High income
## 1564              Manama    50.5354   26.1921         High income
## 1565              Manama    50.5354   26.1921         High income
## 1566              Manama    50.5354   26.1921         High income
## 1567              Manama    50.5354   26.1921         High income
## 1568              Manama    50.5354   26.1921         High income
## 1569              Manama    50.5354   26.1921         High income
## 1570              Manama    50.5354   26.1921         High income
## 1571              Manama    50.5354   26.1921         High income
## 1572              Manama    50.5354   26.1921         High income
## 1573              Manama    50.5354   26.1921         High income
## 1574              Manama    50.5354   26.1921         High income
## 1575              Manama    50.5354   26.1921         High income
## 1576              Manama    50.5354   26.1921         High income
## 1577                <NA>       <NA>      <NA>                <NA>
## 1578                <NA>       <NA>      <NA>                <NA>
## 1579                <NA>       <NA>      <NA>                <NA>
## 1580                <NA>       <NA>      <NA>                <NA>
## 1581                <NA>       <NA>      <NA>                <NA>
## 1582                <NA>       <NA>      <NA>                <NA>
## 1583                <NA>       <NA>      <NA>                <NA>
## 1584                <NA>       <NA>      <NA>                <NA>
## 1585                <NA>       <NA>      <NA>                <NA>
## 1586                <NA>       <NA>      <NA>                <NA>
## 1587                <NA>       <NA>      <NA>                <NA>
## 1588                <NA>       <NA>      <NA>                <NA>
## 1589                <NA>       <NA>      <NA>                <NA>
## 1590                <NA>       <NA>      <NA>                <NA>
## 1591                <NA>       <NA>      <NA>                <NA>
## 1592                <NA>       <NA>      <NA>                <NA>
## 1593                <NA>       <NA>      <NA>                <NA>
## 1594                <NA>       <NA>      <NA>                <NA>
## 1595                <NA>       <NA>      <NA>                <NA>
## 1596                <NA>       <NA>      <NA>                <NA>
## 1597                <NA>       <NA>      <NA>                <NA>
## 1598                <NA>       <NA>      <NA>                <NA>
## 1599                <NA>       <NA>      <NA>                <NA>
## 1600                <NA>       <NA>      <NA>                <NA>
## 1601                <NA>       <NA>      <NA>                <NA>
## 1602                <NA>       <NA>      <NA>                <NA>
## 1603                <NA>       <NA>      <NA>                <NA>
## 1604                <NA>       <NA>      <NA>                <NA>
## 1605                <NA>       <NA>      <NA>                <NA>
## 1606                <NA>       <NA>      <NA>                <NA>
## 1607                <NA>       <NA>      <NA>                <NA>
## 1608                <NA>       <NA>      <NA>                <NA>
## 1609                <NA>       <NA>      <NA>                <NA>
## 1610                <NA>       <NA>      <NA>                <NA>
## 1611               Dhaka    90.4113   23.7055 Lower middle income
## 1612               Dhaka    90.4113   23.7055 Lower middle income
## 1613               Dhaka    90.4113   23.7055 Lower middle income
## 1614               Dhaka    90.4113   23.7055 Lower middle income
## 1615               Dhaka    90.4113   23.7055 Lower middle income
## 1616               Dhaka    90.4113   23.7055 Lower middle income
## 1617               Dhaka    90.4113   23.7055 Lower middle income
## 1618               Dhaka    90.4113   23.7055 Lower middle income
## 1619               Dhaka    90.4113   23.7055 Lower middle income
## 1620               Dhaka    90.4113   23.7055 Lower middle income
## 1621               Dhaka    90.4113   23.7055 Lower middle income
## 1622               Dhaka    90.4113   23.7055 Lower middle income
## 1623               Dhaka    90.4113   23.7055 Lower middle income
## 1624               Dhaka    90.4113   23.7055 Lower middle income
## 1625               Dhaka    90.4113   23.7055 Lower middle income
## 1626               Dhaka    90.4113   23.7055 Lower middle income
## 1627               Dhaka    90.4113   23.7055 Lower middle income
## 1628               Dhaka    90.4113   23.7055 Lower middle income
## 1629               Dhaka    90.4113   23.7055 Lower middle income
## 1630               Dhaka    90.4113   23.7055 Lower middle income
## 1631               Dhaka    90.4113   23.7055 Lower middle income
## 1632               Dhaka    90.4113   23.7055 Lower middle income
## 1633               Dhaka    90.4113   23.7055 Lower middle income
## 1634               Dhaka    90.4113   23.7055 Lower middle income
## 1635               Dhaka    90.4113   23.7055 Lower middle income
## 1636               Dhaka    90.4113   23.7055 Lower middle income
## 1637               Dhaka    90.4113   23.7055 Lower middle income
## 1638               Dhaka    90.4113   23.7055 Lower middle income
## 1639               Dhaka    90.4113   23.7055 Lower middle income
## 1640               Dhaka    90.4113   23.7055 Lower middle income
## 1641               Dhaka    90.4113   23.7055 Lower middle income
## 1642               Dhaka    90.4113   23.7055 Lower middle income
## 1643               Dhaka    90.4113   23.7055 Lower middle income
## 1644               Dhaka    90.4113   23.7055 Lower middle income
## 1645               Dhaka    90.4113   23.7055 Lower middle income
## 1646               Dhaka    90.4113   23.7055 Lower middle income
## 1647               Dhaka    90.4113   23.7055 Lower middle income
## 1648               Dhaka    90.4113   23.7055 Lower middle income
## 1649               Dhaka    90.4113   23.7055 Lower middle income
## 1650               Dhaka    90.4113   23.7055 Lower middle income
## 1651               Dhaka    90.4113   23.7055 Lower middle income
## 1652               Dhaka    90.4113   23.7055 Lower middle income
## 1653               Dhaka    90.4113   23.7055 Lower middle income
## 1654               Dhaka    90.4113   23.7055 Lower middle income
## 1655               Dhaka    90.4113   23.7055 Lower middle income
## 1656               Dhaka    90.4113   23.7055 Lower middle income
## 1657               Dhaka    90.4113   23.7055 Lower middle income
## 1658               Dhaka    90.4113   23.7055 Lower middle income
## 1659               Dhaka    90.4113   23.7055 Lower middle income
## 1660               Dhaka    90.4113   23.7055 Lower middle income
## 1661               Dhaka    90.4113   23.7055 Lower middle income
## 1662               Dhaka    90.4113   23.7055 Lower middle income
## 1663               Dhaka    90.4113   23.7055 Lower middle income
## 1664               Dhaka    90.4113   23.7055 Lower middle income
## 1665               Dhaka    90.4113   23.7055 Lower middle income
## 1666               Dhaka    90.4113   23.7055 Lower middle income
## 1667               Dhaka    90.4113   23.7055 Lower middle income
## 1668               Dhaka    90.4113   23.7055 Lower middle income
## 1669               Dhaka    90.4113   23.7055 Lower middle income
## 1670               Dhaka    90.4113   23.7055 Lower middle income
## 1671               Dhaka    90.4113   23.7055 Lower middle income
## 1672               Dhaka    90.4113   23.7055 Lower middle income
## 1673               Dhaka    90.4113   23.7055 Lower middle income
## 1674                <NA>       <NA>      <NA>                <NA>
## 1675                <NA>       <NA>      <NA>                <NA>
## 1676                <NA>       <NA>      <NA>                <NA>
## 1677                <NA>       <NA>      <NA>                <NA>
## 1678                <NA>       <NA>      <NA>                <NA>
## 1679                <NA>       <NA>      <NA>                <NA>
## 1680                <NA>       <NA>      <NA>                <NA>
## 1681                <NA>       <NA>      <NA>                <NA>
## 1682                <NA>       <NA>      <NA>                <NA>
## 1683                <NA>       <NA>      <NA>                <NA>
## 1684                <NA>       <NA>      <NA>                <NA>
## 1685                <NA>       <NA>      <NA>                <NA>
## 1686                <NA>       <NA>      <NA>                <NA>
## 1687                <NA>       <NA>      <NA>                <NA>
## 1688                <NA>       <NA>      <NA>                <NA>
## 1689                <NA>       <NA>      <NA>                <NA>
## 1690                <NA>       <NA>      <NA>                <NA>
## 1691                <NA>       <NA>      <NA>                <NA>
## 1692                <NA>       <NA>      <NA>                <NA>
## 1693                <NA>       <NA>      <NA>                <NA>
## 1694                <NA>       <NA>      <NA>                <NA>
## 1695                <NA>       <NA>      <NA>                <NA>
## 1696                <NA>       <NA>      <NA>                <NA>
## 1697                <NA>       <NA>      <NA>                <NA>
## 1698                <NA>       <NA>      <NA>                <NA>
## 1699                <NA>       <NA>      <NA>                <NA>
## 1700                <NA>       <NA>      <NA>                <NA>
## 1701                <NA>       <NA>      <NA>                <NA>
## 1702                <NA>       <NA>      <NA>                <NA>
## 1703                <NA>       <NA>      <NA>                <NA>
## 1704                <NA>       <NA>      <NA>                <NA>
## 1705                <NA>       <NA>      <NA>                <NA>
## 1706                <NA>       <NA>      <NA>                <NA>
## 1707                <NA>       <NA>      <NA>                <NA>
## 1708          Bridgetown   -59.6105   13.0935         High income
## 1709          Bridgetown   -59.6105   13.0935         High income
## 1710          Bridgetown   -59.6105   13.0935         High income
## 1711          Bridgetown   -59.6105   13.0935         High income
## 1712          Bridgetown   -59.6105   13.0935         High income
## 1713          Bridgetown   -59.6105   13.0935         High income
## 1714          Bridgetown   -59.6105   13.0935         High income
## 1715          Bridgetown   -59.6105   13.0935         High income
## 1716          Bridgetown   -59.6105   13.0935         High income
## 1717          Bridgetown   -59.6105   13.0935         High income
## 1718          Bridgetown   -59.6105   13.0935         High income
## 1719          Bridgetown   -59.6105   13.0935         High income
## 1720          Bridgetown   -59.6105   13.0935         High income
## 1721          Bridgetown   -59.6105   13.0935         High income
## 1722          Bridgetown   -59.6105   13.0935         High income
## 1723          Bridgetown   -59.6105   13.0935         High income
## 1724          Bridgetown   -59.6105   13.0935         High income
## 1725          Bridgetown   -59.6105   13.0935         High income
## 1726          Bridgetown   -59.6105   13.0935         High income
## 1727          Bridgetown   -59.6105   13.0935         High income
## 1728          Bridgetown   -59.6105   13.0935         High income
## 1729          Bridgetown   -59.6105   13.0935         High income
## 1730          Bridgetown   -59.6105   13.0935         High income
## 1731          Bridgetown   -59.6105   13.0935         High income
## 1732          Bridgetown   -59.6105   13.0935         High income
## 1733          Bridgetown   -59.6105   13.0935         High income
## 1734          Bridgetown   -59.6105   13.0935         High income
## 1735          Bridgetown   -59.6105   13.0935         High income
## 1736          Bridgetown   -59.6105   13.0935         High income
## 1737          Bridgetown   -59.6105   13.0935         High income
## 1738          Bridgetown   -59.6105   13.0935         High income
## 1739          Bridgetown   -59.6105   13.0935         High income
## 1740          Bridgetown   -59.6105   13.0935         High income
## 1741          Bridgetown   -59.6105   13.0935         High income
## 1742          Bridgetown   -59.6105   13.0935         High income
## 1743          Bridgetown   -59.6105   13.0935         High income
## 1744          Bridgetown   -59.6105   13.0935         High income
## 1745          Bridgetown   -59.6105   13.0935         High income
## 1746          Bridgetown   -59.6105   13.0935         High income
## 1747          Bridgetown   -59.6105   13.0935         High income
## 1748          Bridgetown   -59.6105   13.0935         High income
## 1749          Bridgetown   -59.6105   13.0935         High income
## 1750          Bridgetown   -59.6105   13.0935         High income
## 1751          Bridgetown   -59.6105   13.0935         High income
## 1752          Bridgetown   -59.6105   13.0935         High income
## 1753          Bridgetown   -59.6105   13.0935         High income
## 1754          Bridgetown   -59.6105   13.0935         High income
## 1755          Bridgetown   -59.6105   13.0935         High income
## 1756          Bridgetown   -59.6105   13.0935         High income
## 1757          Bridgetown   -59.6105   13.0935         High income
## 1758          Bridgetown   -59.6105   13.0935         High income
## 1759          Bridgetown   -59.6105   13.0935         High income
## 1760          Bridgetown   -59.6105   13.0935         High income
## 1761          Bridgetown   -59.6105   13.0935         High income
## 1762          Bridgetown   -59.6105   13.0935         High income
## 1763          Bridgetown   -59.6105   13.0935         High income
## 1764          Bridgetown   -59.6105   13.0935         High income
## 1765          Bridgetown   -59.6105   13.0935         High income
## 1766          Bridgetown   -59.6105   13.0935         High income
## 1767          Bridgetown   -59.6105   13.0935         High income
## 1768          Bridgetown   -59.6105   13.0935         High income
## 1769          Bridgetown   -59.6105   13.0935         High income
## 1770          Bridgetown   -59.6105   13.0935         High income
## 1771                <NA>       <NA>      <NA>                <NA>
## 1772                <NA>       <NA>      <NA>                <NA>
## 1773                <NA>       <NA>      <NA>                <NA>
## 1774                <NA>       <NA>      <NA>                <NA>
## 1775                <NA>       <NA>      <NA>                <NA>
## 1776                <NA>       <NA>      <NA>                <NA>
## 1777                <NA>       <NA>      <NA>                <NA>
## 1778                <NA>       <NA>      <NA>                <NA>
## 1779                <NA>       <NA>      <NA>                <NA>
## 1780                <NA>       <NA>      <NA>                <NA>
## 1781                <NA>       <NA>      <NA>                <NA>
## 1782                <NA>       <NA>      <NA>                <NA>
## 1783                <NA>       <NA>      <NA>                <NA>
## 1784                <NA>       <NA>      <NA>                <NA>
## 1785                <NA>       <NA>      <NA>                <NA>
## 1786                <NA>       <NA>      <NA>                <NA>
## 1787                <NA>       <NA>      <NA>                <NA>
## 1788                <NA>       <NA>      <NA>                <NA>
## 1789                <NA>       <NA>      <NA>                <NA>
## 1790                <NA>       <NA>      <NA>                <NA>
## 1791                <NA>       <NA>      <NA>                <NA>
## 1792                <NA>       <NA>      <NA>                <NA>
## 1793                <NA>       <NA>      <NA>                <NA>
## 1794                <NA>       <NA>      <NA>                <NA>
## 1795                <NA>       <NA>      <NA>                <NA>
## 1796                <NA>       <NA>      <NA>                <NA>
## 1797                <NA>       <NA>      <NA>                <NA>
## 1798                <NA>       <NA>      <NA>                <NA>
## 1799                <NA>       <NA>      <NA>                <NA>
## 1800                <NA>       <NA>      <NA>                <NA>
## 1801                <NA>       <NA>      <NA>                <NA>
## 1802                <NA>       <NA>      <NA>                <NA>
## 1803                <NA>       <NA>      <NA>                <NA>
## 1804                <NA>       <NA>      <NA>                <NA>
## 1805                <NA>       <NA>      <NA>                <NA>
## 1806                <NA>       <NA>      <NA>                <NA>
## 1807                <NA>       <NA>      <NA>                <NA>
## 1808                <NA>       <NA>      <NA>                <NA>
## 1809                <NA>       <NA>      <NA>                <NA>
## 1810                <NA>       <NA>      <NA>                <NA>
## 1811                <NA>       <NA>      <NA>                <NA>
## 1812                <NA>       <NA>      <NA>                <NA>
## 1813                <NA>       <NA>      <NA>                <NA>
## 1814                <NA>       <NA>      <NA>                <NA>
## 1815                <NA>       <NA>      <NA>                <NA>
## 1816                <NA>       <NA>      <NA>                <NA>
## 1817                <NA>       <NA>      <NA>                <NA>
## 1818                <NA>       <NA>      <NA>                <NA>
## 1819                <NA>       <NA>      <NA>                <NA>
## 1820                <NA>       <NA>      <NA>                <NA>
## 1821                <NA>       <NA>      <NA>                <NA>
## 1822                <NA>       <NA>      <NA>                <NA>
## 1823                <NA>       <NA>      <NA>                <NA>
## 1824                <NA>       <NA>      <NA>                <NA>
## 1825                <NA>       <NA>      <NA>                <NA>
## 1826                <NA>       <NA>      <NA>                <NA>
## 1827                <NA>       <NA>      <NA>                <NA>
## 1828                <NA>       <NA>      <NA>                <NA>
## 1829                <NA>       <NA>      <NA>                <NA>
## 1830                <NA>       <NA>      <NA>                <NA>
## 1831                <NA>       <NA>      <NA>                <NA>
## 1832                <NA>       <NA>      <NA>                <NA>
## 1833                <NA>       <NA>      <NA>                <NA>
## 1834                <NA>       <NA>      <NA>                <NA>
## 1835                <NA>       <NA>      <NA>                <NA>
## 1836                <NA>       <NA>      <NA>                <NA>
## 1837                <NA>       <NA>      <NA>                <NA>
## 1838                <NA>       <NA>      <NA>                <NA>
## 1839               Minsk    27.5766   53.9678 Upper middle income
## 1840               Minsk    27.5766   53.9678 Upper middle income
## 1841               Minsk    27.5766   53.9678 Upper middle income
## 1842               Minsk    27.5766   53.9678 Upper middle income
## 1843               Minsk    27.5766   53.9678 Upper middle income
## 1844               Minsk    27.5766   53.9678 Upper middle income
## 1845               Minsk    27.5766   53.9678 Upper middle income
## 1846               Minsk    27.5766   53.9678 Upper middle income
## 1847               Minsk    27.5766   53.9678 Upper middle income
## 1848               Minsk    27.5766   53.9678 Upper middle income
## 1849               Minsk    27.5766   53.9678 Upper middle income
## 1850               Minsk    27.5766   53.9678 Upper middle income
## 1851               Minsk    27.5766   53.9678 Upper middle income
## 1852               Minsk    27.5766   53.9678 Upper middle income
## 1853               Minsk    27.5766   53.9678 Upper middle income
## 1854               Minsk    27.5766   53.9678 Upper middle income
## 1855               Minsk    27.5766   53.9678 Upper middle income
## 1856               Minsk    27.5766   53.9678 Upper middle income
## 1857               Minsk    27.5766   53.9678 Upper middle income
## 1858               Minsk    27.5766   53.9678 Upper middle income
## 1859               Minsk    27.5766   53.9678 Upper middle income
## 1860               Minsk    27.5766   53.9678 Upper middle income
## 1861               Minsk    27.5766   53.9678 Upper middle income
## 1862               Minsk    27.5766   53.9678 Upper middle income
## 1863               Minsk    27.5766   53.9678 Upper middle income
## 1864               Minsk    27.5766   53.9678 Upper middle income
## 1865               Minsk    27.5766   53.9678 Upper middle income
## 1866               Minsk    27.5766   53.9678 Upper middle income
## 1867               Minsk    27.5766   53.9678 Upper middle income
## 1868               Minsk    27.5766   53.9678 Upper middle income
## 1869               Minsk    27.5766   53.9678 Upper middle income
## 1870               Minsk    27.5766   53.9678 Upper middle income
## 1871               Minsk    27.5766   53.9678 Upper middle income
## 1872               Minsk    27.5766   53.9678 Upper middle income
## 1873               Minsk    27.5766   53.9678 Upper middle income
## 1874               Minsk    27.5766   53.9678 Upper middle income
## 1875               Minsk    27.5766   53.9678 Upper middle income
## 1876               Minsk    27.5766   53.9678 Upper middle income
## 1877               Minsk    27.5766   53.9678 Upper middle income
## 1878               Minsk    27.5766   53.9678 Upper middle income
## 1879               Minsk    27.5766   53.9678 Upper middle income
## 1880               Minsk    27.5766   53.9678 Upper middle income
## 1881               Minsk    27.5766   53.9678 Upper middle income
## 1882               Minsk    27.5766   53.9678 Upper middle income
## 1883               Minsk    27.5766   53.9678 Upper middle income
## 1884               Minsk    27.5766   53.9678 Upper middle income
## 1885               Minsk    27.5766   53.9678 Upper middle income
## 1886               Minsk    27.5766   53.9678 Upper middle income
## 1887               Minsk    27.5766   53.9678 Upper middle income
## 1888               Minsk    27.5766   53.9678 Upper middle income
## 1889               Minsk    27.5766   53.9678 Upper middle income
## 1890               Minsk    27.5766   53.9678 Upper middle income
## 1891               Minsk    27.5766   53.9678 Upper middle income
## 1892               Minsk    27.5766   53.9678 Upper middle income
## 1893               Minsk    27.5766   53.9678 Upper middle income
## 1894               Minsk    27.5766   53.9678 Upper middle income
## 1895               Minsk    27.5766   53.9678 Upper middle income
## 1896               Minsk    27.5766   53.9678 Upper middle income
## 1897               Minsk    27.5766   53.9678 Upper middle income
## 1898               Minsk    27.5766   53.9678 Upper middle income
## 1899               Minsk    27.5766   53.9678 Upper middle income
## 1900               Minsk    27.5766   53.9678 Upper middle income
## 1901               Minsk    27.5766   53.9678 Upper middle income
## 1902            Brussels    4.36761   50.8371         High income
## 1903            Brussels    4.36761   50.8371         High income
## 1904            Brussels    4.36761   50.8371         High income
## 1905            Brussels    4.36761   50.8371         High income
## 1906            Brussels    4.36761   50.8371         High income
## 1907            Brussels    4.36761   50.8371         High income
## 1908            Brussels    4.36761   50.8371         High income
## 1909            Brussels    4.36761   50.8371         High income
## 1910            Brussels    4.36761   50.8371         High income
## 1911            Brussels    4.36761   50.8371         High income
## 1912            Brussels    4.36761   50.8371         High income
## 1913            Brussels    4.36761   50.8371         High income
## 1914            Brussels    4.36761   50.8371         High income
## 1915            Brussels    4.36761   50.8371         High income
## 1916            Brussels    4.36761   50.8371         High income
## 1917            Brussels    4.36761   50.8371         High income
## 1918            Brussels    4.36761   50.8371         High income
## 1919            Brussels    4.36761   50.8371         High income
## 1920            Brussels    4.36761   50.8371         High income
## 1921            Brussels    4.36761   50.8371         High income
## 1922            Brussels    4.36761   50.8371         High income
## 1923            Brussels    4.36761   50.8371         High income
## 1924            Brussels    4.36761   50.8371         High income
## 1925            Brussels    4.36761   50.8371         High income
## 1926            Brussels    4.36761   50.8371         High income
## 1927            Brussels    4.36761   50.8371         High income
## 1928            Brussels    4.36761   50.8371         High income
## 1929            Brussels    4.36761   50.8371         High income
## 1930            Brussels    4.36761   50.8371         High income
## 1931            Brussels    4.36761   50.8371         High income
## 1932            Brussels    4.36761   50.8371         High income
## 1933            Brussels    4.36761   50.8371         High income
## 1934            Brussels    4.36761   50.8371         High income
## 1935            Brussels    4.36761   50.8371         High income
## 1936            Brussels    4.36761   50.8371         High income
## 1937            Brussels    4.36761   50.8371         High income
## 1938            Brussels    4.36761   50.8371         High income
## 1939            Brussels    4.36761   50.8371         High income
## 1940            Brussels    4.36761   50.8371         High income
## 1941            Brussels    4.36761   50.8371         High income
## 1942            Brussels    4.36761   50.8371         High income
## 1943            Brussels    4.36761   50.8371         High income
## 1944            Brussels    4.36761   50.8371         High income
## 1945            Brussels    4.36761   50.8371         High income
## 1946            Brussels    4.36761   50.8371         High income
## 1947            Brussels    4.36761   50.8371         High income
## 1948            Brussels    4.36761   50.8371         High income
## 1949            Brussels    4.36761   50.8371         High income
## 1950            Brussels    4.36761   50.8371         High income
## 1951            Brussels    4.36761   50.8371         High income
## 1952            Brussels    4.36761   50.8371         High income
## 1953            Brussels    4.36761   50.8371         High income
## 1954            Brussels    4.36761   50.8371         High income
## 1955            Brussels    4.36761   50.8371         High income
## 1956            Brussels    4.36761   50.8371         High income
## 1957            Brussels    4.36761   50.8371         High income
## 1958            Brussels    4.36761   50.8371         High income
## 1959            Brussels    4.36761   50.8371         High income
## 1960            Brussels    4.36761   50.8371         High income
## 1961            Brussels    4.36761   50.8371         High income
## 1962            Brussels    4.36761   50.8371         High income
## 1963            Brussels    4.36761   50.8371         High income
## 1964            Brussels    4.36761   50.8371         High income
## 1965                <NA>       <NA>      <NA>                <NA>
## 1966                <NA>       <NA>      <NA>                <NA>
## 1967                <NA>       <NA>      <NA>                <NA>
## 1968                <NA>       <NA>      <NA>                <NA>
## 1969                <NA>       <NA>      <NA>                <NA>
## 1970                <NA>       <NA>      <NA>                <NA>
## 1971                <NA>       <NA>      <NA>                <NA>
## 1972                <NA>       <NA>      <NA>                <NA>
## 1973                <NA>       <NA>      <NA>                <NA>
## 1974                <NA>       <NA>      <NA>                <NA>
## 1975                <NA>       <NA>      <NA>                <NA>
## 1976                <NA>       <NA>      <NA>                <NA>
## 1977                <NA>       <NA>      <NA>                <NA>
## 1978                <NA>       <NA>      <NA>                <NA>
## 1979                <NA>       <NA>      <NA>                <NA>
## 1980                <NA>       <NA>      <NA>                <NA>
## 1981                <NA>       <NA>      <NA>                <NA>
## 1982                <NA>       <NA>      <NA>                <NA>
## 1983                <NA>       <NA>      <NA>                <NA>
## 1984                <NA>       <NA>      <NA>                <NA>
## 1985                <NA>       <NA>      <NA>                <NA>
## 1986                <NA>       <NA>      <NA>                <NA>
## 1987                <NA>       <NA>      <NA>                <NA>
## 1988                <NA>       <NA>      <NA>                <NA>
## 1989                <NA>       <NA>      <NA>                <NA>
## 1990                <NA>       <NA>      <NA>                <NA>
## 1991                <NA>       <NA>      <NA>                <NA>
## 1992                <NA>       <NA>      <NA>                <NA>
## 1993                <NA>       <NA>      <NA>                <NA>
## 1994                <NA>       <NA>      <NA>                <NA>
## 1995                <NA>       <NA>      <NA>                <NA>
## 1996                <NA>       <NA>      <NA>                <NA>
## 1997                <NA>       <NA>      <NA>                <NA>
## 1998                <NA>       <NA>      <NA>                <NA>
## 1999                <NA>       <NA>      <NA>                <NA>
## 2000                <NA>       <NA>      <NA>                <NA>
## 2001                <NA>       <NA>      <NA>                <NA>
## 2002                <NA>       <NA>      <NA>                <NA>
## 2003                <NA>       <NA>      <NA>                <NA>
## 2004                <NA>       <NA>      <NA>                <NA>
## 2005                <NA>       <NA>      <NA>                <NA>
## 2006                <NA>       <NA>      <NA>                <NA>
## 2007                <NA>       <NA>      <NA>                <NA>
## 2008                <NA>       <NA>      <NA>                <NA>
## 2009                <NA>       <NA>      <NA>                <NA>
## 2010                <NA>       <NA>      <NA>                <NA>
## 2011                <NA>       <NA>      <NA>                <NA>
## 2012                <NA>       <NA>      <NA>                <NA>
## 2013                <NA>       <NA>      <NA>                <NA>
## 2014                <NA>       <NA>      <NA>                <NA>
## 2015                <NA>       <NA>      <NA>                <NA>
## 2016                <NA>       <NA>      <NA>                <NA>
## 2017                <NA>       <NA>      <NA>                <NA>
## 2018                <NA>       <NA>      <NA>                <NA>
## 2019                <NA>       <NA>      <NA>                <NA>
## 2020                <NA>       <NA>      <NA>                <NA>
## 2021                <NA>       <NA>      <NA>                <NA>
## 2022                <NA>       <NA>      <NA>                <NA>
## 2023                <NA>       <NA>      <NA>                <NA>
## 2024                <NA>       <NA>      <NA>                <NA>
## 2025                <NA>       <NA>      <NA>                <NA>
## 2026                <NA>       <NA>      <NA>                <NA>
## 2027                <NA>       <NA>      <NA>                <NA>
## 2028                <NA>       <NA>      <NA>                <NA>
## 2029                <NA>       <NA>      <NA>                <NA>
## 2030                <NA>       <NA>      <NA>                <NA>
## 2031                <NA>       <NA>      <NA>                <NA>
## 2032                <NA>       <NA>      <NA>                <NA>
## 2033            Belmopan   -88.7713   17.2534 Upper middle income
## 2034            Belmopan   -88.7713   17.2534 Upper middle income
## 2035            Belmopan   -88.7713   17.2534 Upper middle income
## 2036            Belmopan   -88.7713   17.2534 Upper middle income
## 2037            Belmopan   -88.7713   17.2534 Upper middle income
## 2038            Belmopan   -88.7713   17.2534 Upper middle income
## 2039            Belmopan   -88.7713   17.2534 Upper middle income
## 2040            Belmopan   -88.7713   17.2534 Upper middle income
## 2041            Belmopan   -88.7713   17.2534 Upper middle income
## 2042            Belmopan   -88.7713   17.2534 Upper middle income
## 2043            Belmopan   -88.7713   17.2534 Upper middle income
## 2044            Belmopan   -88.7713   17.2534 Upper middle income
## 2045            Belmopan   -88.7713   17.2534 Upper middle income
## 2046            Belmopan   -88.7713   17.2534 Upper middle income
## 2047            Belmopan   -88.7713   17.2534 Upper middle income
## 2048            Belmopan   -88.7713   17.2534 Upper middle income
## 2049            Belmopan   -88.7713   17.2534 Upper middle income
## 2050            Belmopan   -88.7713   17.2534 Upper middle income
## 2051            Belmopan   -88.7713   17.2534 Upper middle income
## 2052            Belmopan   -88.7713   17.2534 Upper middle income
## 2053            Belmopan   -88.7713   17.2534 Upper middle income
## 2054            Belmopan   -88.7713   17.2534 Upper middle income
## 2055            Belmopan   -88.7713   17.2534 Upper middle income
## 2056            Belmopan   -88.7713   17.2534 Upper middle income
## 2057            Belmopan   -88.7713   17.2534 Upper middle income
## 2058            Belmopan   -88.7713   17.2534 Upper middle income
## 2059            Belmopan   -88.7713   17.2534 Upper middle income
## 2060            Belmopan   -88.7713   17.2534 Upper middle income
## 2061            Belmopan   -88.7713   17.2534 Upper middle income
## 2062            Belmopan   -88.7713   17.2534 Upper middle income
## 2063            Belmopan   -88.7713   17.2534 Upper middle income
## 2064            Belmopan   -88.7713   17.2534 Upper middle income
## 2065            Belmopan   -88.7713   17.2534 Upper middle income
## 2066            Belmopan   -88.7713   17.2534 Upper middle income
## 2067            Belmopan   -88.7713   17.2534 Upper middle income
## 2068            Belmopan   -88.7713   17.2534 Upper middle income
## 2069            Belmopan   -88.7713   17.2534 Upper middle income
## 2070            Belmopan   -88.7713   17.2534 Upper middle income
## 2071            Belmopan   -88.7713   17.2534 Upper middle income
## 2072            Belmopan   -88.7713   17.2534 Upper middle income
## 2073            Belmopan   -88.7713   17.2534 Upper middle income
## 2074            Belmopan   -88.7713   17.2534 Upper middle income
## 2075            Belmopan   -88.7713   17.2534 Upper middle income
## 2076            Belmopan   -88.7713   17.2534 Upper middle income
## 2077            Belmopan   -88.7713   17.2534 Upper middle income
## 2078            Belmopan   -88.7713   17.2534 Upper middle income
## 2079            Belmopan   -88.7713   17.2534 Upper middle income
## 2080            Belmopan   -88.7713   17.2534 Upper middle income
## 2081            Belmopan   -88.7713   17.2534 Upper middle income
## 2082            Belmopan   -88.7713   17.2534 Upper middle income
## 2083            Belmopan   -88.7713   17.2534 Upper middle income
## 2084            Belmopan   -88.7713   17.2534 Upper middle income
## 2085            Belmopan   -88.7713   17.2534 Upper middle income
## 2086            Belmopan   -88.7713   17.2534 Upper middle income
## 2087            Belmopan   -88.7713   17.2534 Upper middle income
## 2088            Belmopan   -88.7713   17.2534 Upper middle income
## 2089            Belmopan   -88.7713   17.2534 Upper middle income
## 2090            Belmopan   -88.7713   17.2534 Upper middle income
## 2091            Belmopan   -88.7713   17.2534 Upper middle income
## 2092            Belmopan   -88.7713   17.2534 Upper middle income
## 2093            Belmopan   -88.7713   17.2534 Upper middle income
## 2094            Belmopan   -88.7713   17.2534 Upper middle income
## 2095            Belmopan   -88.7713   17.2534 Upper middle income
## 2096                <NA>       <NA>      <NA>                <NA>
## 2097                <NA>       <NA>      <NA>                <NA>
## 2098                <NA>       <NA>      <NA>                <NA>
## 2099                <NA>       <NA>      <NA>                <NA>
## 2100                <NA>       <NA>      <NA>                <NA>
## 2101                <NA>       <NA>      <NA>                <NA>
## 2102                <NA>       <NA>      <NA>                <NA>
## 2103                <NA>       <NA>      <NA>                <NA>
## 2104                <NA>       <NA>      <NA>                <NA>
## 2105                <NA>       <NA>      <NA>                <NA>
## 2106                <NA>       <NA>      <NA>                <NA>
## 2107                <NA>       <NA>      <NA>                <NA>
## 2108                <NA>       <NA>      <NA>                <NA>
## 2109                <NA>       <NA>      <NA>                <NA>
## 2110                <NA>       <NA>      <NA>                <NA>
## 2111                <NA>       <NA>      <NA>                <NA>
## 2112                <NA>       <NA>      <NA>                <NA>
## 2113                <NA>       <NA>      <NA>                <NA>
## 2114                <NA>       <NA>      <NA>                <NA>
## 2115                <NA>       <NA>      <NA>                <NA>
## 2116                <NA>       <NA>      <NA>                <NA>
## 2117                <NA>       <NA>      <NA>                <NA>
## 2118                <NA>       <NA>      <NA>                <NA>
## 2119                <NA>       <NA>      <NA>                <NA>
## 2120                <NA>       <NA>      <NA>                <NA>
## 2121                <NA>       <NA>      <NA>                <NA>
## 2122                <NA>       <NA>      <NA>                <NA>
## 2123                <NA>       <NA>      <NA>                <NA>
## 2124                <NA>       <NA>      <NA>                <NA>
## 2125                <NA>       <NA>      <NA>                <NA>
## 2126                <NA>       <NA>      <NA>                <NA>
## 2127                <NA>       <NA>      <NA>                <NA>
## 2128                <NA>       <NA>      <NA>                <NA>
## 2129                <NA>       <NA>      <NA>                <NA>
## 2130          Porto-Novo     2.6323    6.4779 Lower middle income
## 2131          Porto-Novo     2.6323    6.4779 Lower middle income
## 2132          Porto-Novo     2.6323    6.4779 Lower middle income
## 2133          Porto-Novo     2.6323    6.4779 Lower middle income
## 2134          Porto-Novo     2.6323    6.4779 Lower middle income
## 2135          Porto-Novo     2.6323    6.4779 Lower middle income
## 2136          Porto-Novo     2.6323    6.4779 Lower middle income
## 2137          Porto-Novo     2.6323    6.4779 Lower middle income
## 2138          Porto-Novo     2.6323    6.4779 Lower middle income
## 2139          Porto-Novo     2.6323    6.4779 Lower middle income
## 2140          Porto-Novo     2.6323    6.4779 Lower middle income
## 2141          Porto-Novo     2.6323    6.4779 Lower middle income
## 2142          Porto-Novo     2.6323    6.4779 Lower middle income
## 2143          Porto-Novo     2.6323    6.4779 Lower middle income
## 2144          Porto-Novo     2.6323    6.4779 Lower middle income
## 2145          Porto-Novo     2.6323    6.4779 Lower middle income
## 2146          Porto-Novo     2.6323    6.4779 Lower middle income
## 2147          Porto-Novo     2.6323    6.4779 Lower middle income
## 2148          Porto-Novo     2.6323    6.4779 Lower middle income
## 2149          Porto-Novo     2.6323    6.4779 Lower middle income
## 2150          Porto-Novo     2.6323    6.4779 Lower middle income
## 2151          Porto-Novo     2.6323    6.4779 Lower middle income
## 2152          Porto-Novo     2.6323    6.4779 Lower middle income
## 2153          Porto-Novo     2.6323    6.4779 Lower middle income
## 2154          Porto-Novo     2.6323    6.4779 Lower middle income
## 2155          Porto-Novo     2.6323    6.4779 Lower middle income
## 2156          Porto-Novo     2.6323    6.4779 Lower middle income
## 2157          Porto-Novo     2.6323    6.4779 Lower middle income
## 2158          Porto-Novo     2.6323    6.4779 Lower middle income
## 2159          Porto-Novo     2.6323    6.4779 Lower middle income
## 2160          Porto-Novo     2.6323    6.4779 Lower middle income
## 2161          Porto-Novo     2.6323    6.4779 Lower middle income
## 2162          Porto-Novo     2.6323    6.4779 Lower middle income
## 2163          Porto-Novo     2.6323    6.4779 Lower middle income
## 2164          Porto-Novo     2.6323    6.4779 Lower middle income
## 2165          Porto-Novo     2.6323    6.4779 Lower middle income
## 2166          Porto-Novo     2.6323    6.4779 Lower middle income
## 2167          Porto-Novo     2.6323    6.4779 Lower middle income
## 2168          Porto-Novo     2.6323    6.4779 Lower middle income
## 2169          Porto-Novo     2.6323    6.4779 Lower middle income
## 2170          Porto-Novo     2.6323    6.4779 Lower middle income
## 2171          Porto-Novo     2.6323    6.4779 Lower middle income
## 2172          Porto-Novo     2.6323    6.4779 Lower middle income
## 2173          Porto-Novo     2.6323    6.4779 Lower middle income
## 2174          Porto-Novo     2.6323    6.4779 Lower middle income
## 2175          Porto-Novo     2.6323    6.4779 Lower middle income
## 2176          Porto-Novo     2.6323    6.4779 Lower middle income
## 2177          Porto-Novo     2.6323    6.4779 Lower middle income
## 2178          Porto-Novo     2.6323    6.4779 Lower middle income
## 2179          Porto-Novo     2.6323    6.4779 Lower middle income
## 2180          Porto-Novo     2.6323    6.4779 Lower middle income
## 2181          Porto-Novo     2.6323    6.4779 Lower middle income
## 2182          Porto-Novo     2.6323    6.4779 Lower middle income
## 2183          Porto-Novo     2.6323    6.4779 Lower middle income
## 2184          Porto-Novo     2.6323    6.4779 Lower middle income
## 2185          Porto-Novo     2.6323    6.4779 Lower middle income
## 2186          Porto-Novo     2.6323    6.4779 Lower middle income
## 2187          Porto-Novo     2.6323    6.4779 Lower middle income
## 2188          Porto-Novo     2.6323    6.4779 Lower middle income
## 2189          Porto-Novo     2.6323    6.4779 Lower middle income
## 2190          Porto-Novo     2.6323    6.4779 Lower middle income
## 2191          Porto-Novo     2.6323    6.4779 Lower middle income
## 2192          Porto-Novo     2.6323    6.4779 Lower middle income
## 2193            Hamilton    -64.706   32.3293         High income
## 2194            Hamilton    -64.706   32.3293         High income
## 2195            Hamilton    -64.706   32.3293         High income
## 2196            Hamilton    -64.706   32.3293         High income
## 2197            Hamilton    -64.706   32.3293         High income
## 2198            Hamilton    -64.706   32.3293         High income
## 2199            Hamilton    -64.706   32.3293         High income
## 2200            Hamilton    -64.706   32.3293         High income
## 2201            Hamilton    -64.706   32.3293         High income
## 2202            Hamilton    -64.706   32.3293         High income
## 2203            Hamilton    -64.706   32.3293         High income
## 2204            Hamilton    -64.706   32.3293         High income
## 2205            Hamilton    -64.706   32.3293         High income
## 2206            Hamilton    -64.706   32.3293         High income
## 2207            Hamilton    -64.706   32.3293         High income
## 2208            Hamilton    -64.706   32.3293         High income
## 2209            Hamilton    -64.706   32.3293         High income
## 2210            Hamilton    -64.706   32.3293         High income
## 2211            Hamilton    -64.706   32.3293         High income
## 2212            Hamilton    -64.706   32.3293         High income
## 2213            Hamilton    -64.706   32.3293         High income
## 2214            Hamilton    -64.706   32.3293         High income
## 2215            Hamilton    -64.706   32.3293         High income
## 2216            Hamilton    -64.706   32.3293         High income
## 2217            Hamilton    -64.706   32.3293         High income
## 2218            Hamilton    -64.706   32.3293         High income
## 2219            Hamilton    -64.706   32.3293         High income
## 2220            Hamilton    -64.706   32.3293         High income
## 2221            Hamilton    -64.706   32.3293         High income
## 2222            Hamilton    -64.706   32.3293         High income
## 2223            Hamilton    -64.706   32.3293         High income
## 2224            Hamilton    -64.706   32.3293         High income
## 2225            Hamilton    -64.706   32.3293         High income
## 2226            Hamilton    -64.706   32.3293         High income
## 2227            Hamilton    -64.706   32.3293         High income
## 2228            Hamilton    -64.706   32.3293         High income
## 2229            Hamilton    -64.706   32.3293         High income
## 2230            Hamilton    -64.706   32.3293         High income
## 2231            Hamilton    -64.706   32.3293         High income
## 2232            Hamilton    -64.706   32.3293         High income
## 2233            Hamilton    -64.706   32.3293         High income
## 2234            Hamilton    -64.706   32.3293         High income
## 2235            Hamilton    -64.706   32.3293         High income
## 2236            Hamilton    -64.706   32.3293         High income
## 2237            Hamilton    -64.706   32.3293         High income
## 2238            Hamilton    -64.706   32.3293         High income
## 2239            Hamilton    -64.706   32.3293         High income
## 2240            Hamilton    -64.706   32.3293         High income
## 2241            Hamilton    -64.706   32.3293         High income
## 2242            Hamilton    -64.706   32.3293         High income
## 2243            Hamilton    -64.706   32.3293         High income
## 2244            Hamilton    -64.706   32.3293         High income
## 2245            Hamilton    -64.706   32.3293         High income
## 2246            Hamilton    -64.706   32.3293         High income
## 2247            Hamilton    -64.706   32.3293         High income
## 2248            Hamilton    -64.706   32.3293         High income
## 2249            Hamilton    -64.706   32.3293         High income
## 2250            Hamilton    -64.706   32.3293         High income
## 2251            Hamilton    -64.706   32.3293         High income
## 2252            Hamilton    -64.706   32.3293         High income
## 2253            Hamilton    -64.706   32.3293         High income
## 2254            Hamilton    -64.706   32.3293         High income
## 2255            Hamilton    -64.706   32.3293         High income
## 2256                <NA>       <NA>      <NA>                <NA>
## 2257                <NA>       <NA>      <NA>                <NA>
## 2258                <NA>       <NA>      <NA>                <NA>
## 2259                <NA>       <NA>      <NA>                <NA>
## 2260                <NA>       <NA>      <NA>                <NA>
## 2261                <NA>       <NA>      <NA>                <NA>
## 2262                <NA>       <NA>      <NA>                <NA>
## 2263                <NA>       <NA>      <NA>                <NA>
## 2264                <NA>       <NA>      <NA>                <NA>
## 2265                <NA>       <NA>      <NA>                <NA>
## 2266                <NA>       <NA>      <NA>                <NA>
## 2267                <NA>       <NA>      <NA>                <NA>
## 2268                <NA>       <NA>      <NA>                <NA>
## 2269                <NA>       <NA>      <NA>                <NA>
## 2270                <NA>       <NA>      <NA>                <NA>
## 2271                <NA>       <NA>      <NA>                <NA>
## 2272                <NA>       <NA>      <NA>                <NA>
## 2273                <NA>       <NA>      <NA>                <NA>
## 2274                <NA>       <NA>      <NA>                <NA>
## 2275                <NA>       <NA>      <NA>                <NA>
## 2276                <NA>       <NA>      <NA>                <NA>
## 2277                <NA>       <NA>      <NA>                <NA>
## 2278                <NA>       <NA>      <NA>                <NA>
## 2279                <NA>       <NA>      <NA>                <NA>
## 2280                <NA>       <NA>      <NA>                <NA>
## 2281                <NA>       <NA>      <NA>                <NA>
## 2282                <NA>       <NA>      <NA>                <NA>
## 2283                <NA>       <NA>      <NA>                <NA>
## 2284                <NA>       <NA>      <NA>                <NA>
## 2285                <NA>       <NA>      <NA>                <NA>
## 2286                <NA>       <NA>      <NA>                <NA>
## 2287                <NA>       <NA>      <NA>                <NA>
## 2288                <NA>       <NA>      <NA>                <NA>
## 2289                <NA>       <NA>      <NA>                <NA>
## 2290             Thimphu    89.6177   27.5768 Lower middle income
## 2291             Thimphu    89.6177   27.5768 Lower middle income
## 2292             Thimphu    89.6177   27.5768 Lower middle income
## 2293             Thimphu    89.6177   27.5768 Lower middle income
## 2294             Thimphu    89.6177   27.5768 Lower middle income
## 2295             Thimphu    89.6177   27.5768 Lower middle income
## 2296             Thimphu    89.6177   27.5768 Lower middle income
## 2297             Thimphu    89.6177   27.5768 Lower middle income
## 2298             Thimphu    89.6177   27.5768 Lower middle income
## 2299             Thimphu    89.6177   27.5768 Lower middle income
## 2300             Thimphu    89.6177   27.5768 Lower middle income
## 2301             Thimphu    89.6177   27.5768 Lower middle income
## 2302             Thimphu    89.6177   27.5768 Lower middle income
## 2303             Thimphu    89.6177   27.5768 Lower middle income
## 2304             Thimphu    89.6177   27.5768 Lower middle income
## 2305             Thimphu    89.6177   27.5768 Lower middle income
## 2306             Thimphu    89.6177   27.5768 Lower middle income
## 2307             Thimphu    89.6177   27.5768 Lower middle income
## 2308             Thimphu    89.6177   27.5768 Lower middle income
## 2309             Thimphu    89.6177   27.5768 Lower middle income
## 2310             Thimphu    89.6177   27.5768 Lower middle income
## 2311             Thimphu    89.6177   27.5768 Lower middle income
## 2312             Thimphu    89.6177   27.5768 Lower middle income
## 2313             Thimphu    89.6177   27.5768 Lower middle income
## 2314             Thimphu    89.6177   27.5768 Lower middle income
## 2315             Thimphu    89.6177   27.5768 Lower middle income
## 2316             Thimphu    89.6177   27.5768 Lower middle income
## 2317             Thimphu    89.6177   27.5768 Lower middle income
## 2318             Thimphu    89.6177   27.5768 Lower middle income
## 2319             Thimphu    89.6177   27.5768 Lower middle income
## 2320             Thimphu    89.6177   27.5768 Lower middle income
## 2321             Thimphu    89.6177   27.5768 Lower middle income
## 2322             Thimphu    89.6177   27.5768 Lower middle income
## 2323             Thimphu    89.6177   27.5768 Lower middle income
## 2324             Thimphu    89.6177   27.5768 Lower middle income
## 2325             Thimphu    89.6177   27.5768 Lower middle income
## 2326             Thimphu    89.6177   27.5768 Lower middle income
## 2327             Thimphu    89.6177   27.5768 Lower middle income
## 2328             Thimphu    89.6177   27.5768 Lower middle income
## 2329             Thimphu    89.6177   27.5768 Lower middle income
## 2330             Thimphu    89.6177   27.5768 Lower middle income
## 2331             Thimphu    89.6177   27.5768 Lower middle income
## 2332             Thimphu    89.6177   27.5768 Lower middle income
## 2333             Thimphu    89.6177   27.5768 Lower middle income
## 2334             Thimphu    89.6177   27.5768 Lower middle income
## 2335             Thimphu    89.6177   27.5768 Lower middle income
## 2336             Thimphu    89.6177   27.5768 Lower middle income
## 2337             Thimphu    89.6177   27.5768 Lower middle income
## 2338             Thimphu    89.6177   27.5768 Lower middle income
## 2339             Thimphu    89.6177   27.5768 Lower middle income
## 2340             Thimphu    89.6177   27.5768 Lower middle income
## 2341             Thimphu    89.6177   27.5768 Lower middle income
## 2342             Thimphu    89.6177   27.5768 Lower middle income
## 2343             Thimphu    89.6177   27.5768 Lower middle income
## 2344             Thimphu    89.6177   27.5768 Lower middle income
## 2345             Thimphu    89.6177   27.5768 Lower middle income
## 2346             Thimphu    89.6177   27.5768 Lower middle income
## 2347             Thimphu    89.6177   27.5768 Lower middle income
## 2348             Thimphu    89.6177   27.5768 Lower middle income
## 2349             Thimphu    89.6177   27.5768 Lower middle income
## 2350             Thimphu    89.6177   27.5768 Lower middle income
## 2351             Thimphu    89.6177   27.5768 Lower middle income
## 2352             Thimphu    89.6177   27.5768 Lower middle income
## 2353                <NA>       <NA>      <NA>                <NA>
## 2354                <NA>       <NA>      <NA>                <NA>
## 2355                <NA>       <NA>      <NA>                <NA>
## 2356                <NA>       <NA>      <NA>                <NA>
## 2357                <NA>       <NA>      <NA>                <NA>
## 2358                <NA>       <NA>      <NA>                <NA>
## 2359                <NA>       <NA>      <NA>                <NA>
## 2360                <NA>       <NA>      <NA>                <NA>
## 2361                <NA>       <NA>      <NA>                <NA>
## 2362                <NA>       <NA>      <NA>                <NA>
## 2363                <NA>       <NA>      <NA>                <NA>
## 2364                <NA>       <NA>      <NA>                <NA>
## 2365                <NA>       <NA>      <NA>                <NA>
## 2366                <NA>       <NA>      <NA>                <NA>
## 2367                <NA>       <NA>      <NA>                <NA>
## 2368                <NA>       <NA>      <NA>                <NA>
## 2369                <NA>       <NA>      <NA>                <NA>
## 2370                <NA>       <NA>      <NA>                <NA>
## 2371                <NA>       <NA>      <NA>                <NA>
## 2372                <NA>       <NA>      <NA>                <NA>
## 2373                <NA>       <NA>      <NA>                <NA>
## 2374                <NA>       <NA>      <NA>                <NA>
## 2375                <NA>       <NA>      <NA>                <NA>
## 2376                <NA>       <NA>      <NA>                <NA>
## 2377                <NA>       <NA>      <NA>                <NA>
## 2378                <NA>       <NA>      <NA>                <NA>
## 2379                <NA>       <NA>      <NA>                <NA>
## 2380                <NA>       <NA>      <NA>                <NA>
## 2381                <NA>       <NA>      <NA>                <NA>
## 2382                <NA>       <NA>      <NA>                <NA>
## 2383                <NA>       <NA>      <NA>                <NA>
## 2384                <NA>       <NA>      <NA>                <NA>
## 2385                <NA>       <NA>      <NA>                <NA>
## 2386                <NA>       <NA>      <NA>                <NA>
## 2387              La Paz   -66.1936  -13.9908 Lower middle income
## 2388              La Paz   -66.1936  -13.9908 Lower middle income
## 2389              La Paz   -66.1936  -13.9908 Lower middle income
## 2390              La Paz   -66.1936  -13.9908 Lower middle income
## 2391              La Paz   -66.1936  -13.9908 Lower middle income
## 2392              La Paz   -66.1936  -13.9908 Lower middle income
## 2393              La Paz   -66.1936  -13.9908 Lower middle income
## 2394              La Paz   -66.1936  -13.9908 Lower middle income
## 2395              La Paz   -66.1936  -13.9908 Lower middle income
## 2396              La Paz   -66.1936  -13.9908 Lower middle income
## 2397              La Paz   -66.1936  -13.9908 Lower middle income
## 2398              La Paz   -66.1936  -13.9908 Lower middle income
## 2399              La Paz   -66.1936  -13.9908 Lower middle income
## 2400              La Paz   -66.1936  -13.9908 Lower middle income
## 2401              La Paz   -66.1936  -13.9908 Lower middle income
## 2402              La Paz   -66.1936  -13.9908 Lower middle income
## 2403              La Paz   -66.1936  -13.9908 Lower middle income
## 2404              La Paz   -66.1936  -13.9908 Lower middle income
## 2405              La Paz   -66.1936  -13.9908 Lower middle income
## 2406              La Paz   -66.1936  -13.9908 Lower middle income
## 2407              La Paz   -66.1936  -13.9908 Lower middle income
## 2408              La Paz   -66.1936  -13.9908 Lower middle income
## 2409              La Paz   -66.1936  -13.9908 Lower middle income
## 2410              La Paz   -66.1936  -13.9908 Lower middle income
## 2411              La Paz   -66.1936  -13.9908 Lower middle income
## 2412              La Paz   -66.1936  -13.9908 Lower middle income
## 2413              La Paz   -66.1936  -13.9908 Lower middle income
## 2414              La Paz   -66.1936  -13.9908 Lower middle income
## 2415              La Paz   -66.1936  -13.9908 Lower middle income
## 2416              La Paz   -66.1936  -13.9908 Lower middle income
## 2417              La Paz   -66.1936  -13.9908 Lower middle income
## 2418              La Paz   -66.1936  -13.9908 Lower middle income
## 2419              La Paz   -66.1936  -13.9908 Lower middle income
## 2420              La Paz   -66.1936  -13.9908 Lower middle income
## 2421              La Paz   -66.1936  -13.9908 Lower middle income
## 2422              La Paz   -66.1936  -13.9908 Lower middle income
## 2423              La Paz   -66.1936  -13.9908 Lower middle income
## 2424              La Paz   -66.1936  -13.9908 Lower middle income
## 2425              La Paz   -66.1936  -13.9908 Lower middle income
## 2426              La Paz   -66.1936  -13.9908 Lower middle income
## 2427              La Paz   -66.1936  -13.9908 Lower middle income
## 2428              La Paz   -66.1936  -13.9908 Lower middle income
## 2429              La Paz   -66.1936  -13.9908 Lower middle income
## 2430              La Paz   -66.1936  -13.9908 Lower middle income
## 2431              La Paz   -66.1936  -13.9908 Lower middle income
## 2432              La Paz   -66.1936  -13.9908 Lower middle income
## 2433              La Paz   -66.1936  -13.9908 Lower middle income
## 2434              La Paz   -66.1936  -13.9908 Lower middle income
## 2435              La Paz   -66.1936  -13.9908 Lower middle income
## 2436              La Paz   -66.1936  -13.9908 Lower middle income
## 2437              La Paz   -66.1936  -13.9908 Lower middle income
## 2438              La Paz   -66.1936  -13.9908 Lower middle income
## 2439              La Paz   -66.1936  -13.9908 Lower middle income
## 2440              La Paz   -66.1936  -13.9908 Lower middle income
## 2441              La Paz   -66.1936  -13.9908 Lower middle income
## 2442              La Paz   -66.1936  -13.9908 Lower middle income
## 2443              La Paz   -66.1936  -13.9908 Lower middle income
## 2444              La Paz   -66.1936  -13.9908 Lower middle income
## 2445              La Paz   -66.1936  -13.9908 Lower middle income
## 2446              La Paz   -66.1936  -13.9908 Lower middle income
## 2447              La Paz   -66.1936  -13.9908 Lower middle income
## 2448              La Paz   -66.1936  -13.9908 Lower middle income
## 2449              La Paz   -66.1936  -13.9908 Lower middle income
## 2450                <NA>       <NA>      <NA>                <NA>
## 2451                <NA>       <NA>      <NA>                <NA>
## 2452                <NA>       <NA>      <NA>                <NA>
## 2453                <NA>       <NA>      <NA>                <NA>
## 2454                <NA>       <NA>      <NA>                <NA>
## 2455                <NA>       <NA>      <NA>                <NA>
## 2456                <NA>       <NA>      <NA>                <NA>
## 2457                <NA>       <NA>      <NA>                <NA>
## 2458                <NA>       <NA>      <NA>                <NA>
## 2459                <NA>       <NA>      <NA>                <NA>
## 2460                <NA>       <NA>      <NA>                <NA>
## 2461                <NA>       <NA>      <NA>                <NA>
## 2462                <NA>       <NA>      <NA>                <NA>
## 2463                <NA>       <NA>      <NA>                <NA>
## 2464                <NA>       <NA>      <NA>                <NA>
## 2465                <NA>       <NA>      <NA>                <NA>
## 2466                <NA>       <NA>      <NA>                <NA>
## 2467                <NA>       <NA>      <NA>                <NA>
## 2468                <NA>       <NA>      <NA>                <NA>
## 2469                <NA>       <NA>      <NA>                <NA>
## 2470                <NA>       <NA>      <NA>                <NA>
## 2471                <NA>       <NA>      <NA>                <NA>
## 2472                <NA>       <NA>      <NA>                <NA>
## 2473                <NA>       <NA>      <NA>                <NA>
## 2474                <NA>       <NA>      <NA>                <NA>
## 2475                <NA>       <NA>      <NA>                <NA>
## 2476                <NA>       <NA>      <NA>                <NA>
## 2477                <NA>       <NA>      <NA>                <NA>
## 2478                <NA>       <NA>      <NA>                <NA>
## 2479                <NA>       <NA>      <NA>                <NA>
## 2480                <NA>       <NA>      <NA>                <NA>
## 2481                <NA>       <NA>      <NA>                <NA>
## 2482                <NA>       <NA>      <NA>                <NA>
## 2483                <NA>       <NA>      <NA>                <NA>
## 2484            Sarajevo    18.4214   43.8607 Upper middle income
## 2485            Sarajevo    18.4214   43.8607 Upper middle income
## 2486            Sarajevo    18.4214   43.8607 Upper middle income
## 2487            Sarajevo    18.4214   43.8607 Upper middle income
## 2488            Sarajevo    18.4214   43.8607 Upper middle income
## 2489            Sarajevo    18.4214   43.8607 Upper middle income
## 2490            Sarajevo    18.4214   43.8607 Upper middle income
## 2491            Sarajevo    18.4214   43.8607 Upper middle income
## 2492            Sarajevo    18.4214   43.8607 Upper middle income
## 2493            Sarajevo    18.4214   43.8607 Upper middle income
## 2494            Sarajevo    18.4214   43.8607 Upper middle income
## 2495            Sarajevo    18.4214   43.8607 Upper middle income
## 2496            Sarajevo    18.4214   43.8607 Upper middle income
## 2497            Sarajevo    18.4214   43.8607 Upper middle income
## 2498            Sarajevo    18.4214   43.8607 Upper middle income
## 2499            Sarajevo    18.4214   43.8607 Upper middle income
## 2500            Sarajevo    18.4214   43.8607 Upper middle income
## 2501            Sarajevo    18.4214   43.8607 Upper middle income
## 2502            Sarajevo    18.4214   43.8607 Upper middle income
## 2503            Sarajevo    18.4214   43.8607 Upper middle income
## 2504            Sarajevo    18.4214   43.8607 Upper middle income
## 2505            Sarajevo    18.4214   43.8607 Upper middle income
## 2506            Sarajevo    18.4214   43.8607 Upper middle income
## 2507            Sarajevo    18.4214   43.8607 Upper middle income
## 2508            Sarajevo    18.4214   43.8607 Upper middle income
## 2509            Sarajevo    18.4214   43.8607 Upper middle income
## 2510            Sarajevo    18.4214   43.8607 Upper middle income
## 2511            Sarajevo    18.4214   43.8607 Upper middle income
## 2512            Sarajevo    18.4214   43.8607 Upper middle income
## 2513            Sarajevo    18.4214   43.8607 Upper middle income
## 2514            Sarajevo    18.4214   43.8607 Upper middle income
## 2515            Sarajevo    18.4214   43.8607 Upper middle income
## 2516            Sarajevo    18.4214   43.8607 Upper middle income
## 2517            Sarajevo    18.4214   43.8607 Upper middle income
## 2518            Sarajevo    18.4214   43.8607 Upper middle income
## 2519            Sarajevo    18.4214   43.8607 Upper middle income
## 2520            Sarajevo    18.4214   43.8607 Upper middle income
## 2521            Sarajevo    18.4214   43.8607 Upper middle income
## 2522            Sarajevo    18.4214   43.8607 Upper middle income
## 2523            Sarajevo    18.4214   43.8607 Upper middle income
## 2524            Sarajevo    18.4214   43.8607 Upper middle income
## 2525            Sarajevo    18.4214   43.8607 Upper middle income
## 2526            Sarajevo    18.4214   43.8607 Upper middle income
## 2527            Sarajevo    18.4214   43.8607 Upper middle income
## 2528            Sarajevo    18.4214   43.8607 Upper middle income
## 2529            Sarajevo    18.4214   43.8607 Upper middle income
## 2530            Sarajevo    18.4214   43.8607 Upper middle income
## 2531            Sarajevo    18.4214   43.8607 Upper middle income
## 2532            Sarajevo    18.4214   43.8607 Upper middle income
## 2533            Sarajevo    18.4214   43.8607 Upper middle income
## 2534            Sarajevo    18.4214   43.8607 Upper middle income
## 2535            Sarajevo    18.4214   43.8607 Upper middle income
## 2536            Sarajevo    18.4214   43.8607 Upper middle income
## 2537            Sarajevo    18.4214   43.8607 Upper middle income
## 2538            Sarajevo    18.4214   43.8607 Upper middle income
## 2539            Sarajevo    18.4214   43.8607 Upper middle income
## 2540            Sarajevo    18.4214   43.8607 Upper middle income
## 2541            Sarajevo    18.4214   43.8607 Upper middle income
## 2542            Sarajevo    18.4214   43.8607 Upper middle income
## 2543            Sarajevo    18.4214   43.8607 Upper middle income
## 2544            Sarajevo    18.4214   43.8607 Upper middle income
## 2545            Sarajevo    18.4214   43.8607 Upper middle income
## 2546            Sarajevo    18.4214   43.8607 Upper middle income
## 2547                <NA>       <NA>      <NA>                <NA>
## 2548                <NA>       <NA>      <NA>                <NA>
## 2549                <NA>       <NA>      <NA>                <NA>
## 2550                <NA>       <NA>      <NA>                <NA>
## 2551                <NA>       <NA>      <NA>                <NA>
## 2552                <NA>       <NA>      <NA>                <NA>
## 2553                <NA>       <NA>      <NA>                <NA>
## 2554                <NA>       <NA>      <NA>                <NA>
## 2555                <NA>       <NA>      <NA>                <NA>
## 2556                <NA>       <NA>      <NA>                <NA>
## 2557                <NA>       <NA>      <NA>                <NA>
## 2558                <NA>       <NA>      <NA>                <NA>
## 2559                <NA>       <NA>      <NA>                <NA>
## 2560                <NA>       <NA>      <NA>                <NA>
## 2561                <NA>       <NA>      <NA>                <NA>
## 2562                <NA>       <NA>      <NA>                <NA>
## 2563                <NA>       <NA>      <NA>                <NA>
## 2564                <NA>       <NA>      <NA>                <NA>
## 2565                <NA>       <NA>      <NA>                <NA>
## 2566                <NA>       <NA>      <NA>                <NA>
## 2567                <NA>       <NA>      <NA>                <NA>
## 2568                <NA>       <NA>      <NA>                <NA>
## 2569                <NA>       <NA>      <NA>                <NA>
## 2570                <NA>       <NA>      <NA>                <NA>
## 2571                <NA>       <NA>      <NA>                <NA>
## 2572                <NA>       <NA>      <NA>                <NA>
## 2573                <NA>       <NA>      <NA>                <NA>
## 2574                <NA>       <NA>      <NA>                <NA>
## 2575                <NA>       <NA>      <NA>                <NA>
## 2576                <NA>       <NA>      <NA>                <NA>
## 2577                <NA>       <NA>      <NA>                <NA>
## 2578                <NA>       <NA>      <NA>                <NA>
## 2579                <NA>       <NA>      <NA>                <NA>
## 2580                <NA>       <NA>      <NA>                <NA>
## 2581            Gaborone    25.9201  -24.6544 Upper middle income
## 2582            Gaborone    25.9201  -24.6544 Upper middle income
## 2583            Gaborone    25.9201  -24.6544 Upper middle income
## 2584            Gaborone    25.9201  -24.6544 Upper middle income
## 2585            Gaborone    25.9201  -24.6544 Upper middle income
## 2586            Gaborone    25.9201  -24.6544 Upper middle income
## 2587            Gaborone    25.9201  -24.6544 Upper middle income
## 2588            Gaborone    25.9201  -24.6544 Upper middle income
## 2589            Gaborone    25.9201  -24.6544 Upper middle income
## 2590            Gaborone    25.9201  -24.6544 Upper middle income
## 2591            Gaborone    25.9201  -24.6544 Upper middle income
## 2592            Gaborone    25.9201  -24.6544 Upper middle income
## 2593            Gaborone    25.9201  -24.6544 Upper middle income
## 2594            Gaborone    25.9201  -24.6544 Upper middle income
## 2595            Gaborone    25.9201  -24.6544 Upper middle income
## 2596            Gaborone    25.9201  -24.6544 Upper middle income
## 2597            Gaborone    25.9201  -24.6544 Upper middle income
## 2598            Gaborone    25.9201  -24.6544 Upper middle income
## 2599            Gaborone    25.9201  -24.6544 Upper middle income
## 2600            Gaborone    25.9201  -24.6544 Upper middle income
## 2601            Gaborone    25.9201  -24.6544 Upper middle income
## 2602            Gaborone    25.9201  -24.6544 Upper middle income
## 2603            Gaborone    25.9201  -24.6544 Upper middle income
## 2604            Gaborone    25.9201  -24.6544 Upper middle income
## 2605            Gaborone    25.9201  -24.6544 Upper middle income
## 2606            Gaborone    25.9201  -24.6544 Upper middle income
## 2607            Gaborone    25.9201  -24.6544 Upper middle income
## 2608            Gaborone    25.9201  -24.6544 Upper middle income
## 2609            Gaborone    25.9201  -24.6544 Upper middle income
## 2610            Gaborone    25.9201  -24.6544 Upper middle income
## 2611            Gaborone    25.9201  -24.6544 Upper middle income
## 2612            Gaborone    25.9201  -24.6544 Upper middle income
## 2613            Gaborone    25.9201  -24.6544 Upper middle income
## 2614            Gaborone    25.9201  -24.6544 Upper middle income
## 2615            Gaborone    25.9201  -24.6544 Upper middle income
## 2616            Gaborone    25.9201  -24.6544 Upper middle income
## 2617            Gaborone    25.9201  -24.6544 Upper middle income
## 2618            Gaborone    25.9201  -24.6544 Upper middle income
## 2619            Gaborone    25.9201  -24.6544 Upper middle income
## 2620            Gaborone    25.9201  -24.6544 Upper middle income
## 2621            Gaborone    25.9201  -24.6544 Upper middle income
## 2622            Gaborone    25.9201  -24.6544 Upper middle income
## 2623            Gaborone    25.9201  -24.6544 Upper middle income
## 2624            Gaborone    25.9201  -24.6544 Upper middle income
## 2625            Gaborone    25.9201  -24.6544 Upper middle income
## 2626            Gaborone    25.9201  -24.6544 Upper middle income
## 2627            Gaborone    25.9201  -24.6544 Upper middle income
## 2628            Gaborone    25.9201  -24.6544 Upper middle income
## 2629            Gaborone    25.9201  -24.6544 Upper middle income
## 2630            Gaborone    25.9201  -24.6544 Upper middle income
## 2631            Gaborone    25.9201  -24.6544 Upper middle income
## 2632            Gaborone    25.9201  -24.6544 Upper middle income
## 2633            Gaborone    25.9201  -24.6544 Upper middle income
## 2634            Gaborone    25.9201  -24.6544 Upper middle income
## 2635            Gaborone    25.9201  -24.6544 Upper middle income
## 2636            Gaborone    25.9201  -24.6544 Upper middle income
## 2637            Gaborone    25.9201  -24.6544 Upper middle income
## 2638            Gaborone    25.9201  -24.6544 Upper middle income
## 2639            Gaborone    25.9201  -24.6544 Upper middle income
## 2640            Gaborone    25.9201  -24.6544 Upper middle income
## 2641            Gaborone    25.9201  -24.6544 Upper middle income
## 2642            Gaborone    25.9201  -24.6544 Upper middle income
## 2643            Gaborone    25.9201  -24.6544 Upper middle income
## 2644                <NA>       <NA>      <NA>                <NA>
## 2645                <NA>       <NA>      <NA>                <NA>
## 2646                <NA>       <NA>      <NA>                <NA>
## 2647                <NA>       <NA>      <NA>                <NA>
## 2648                <NA>       <NA>      <NA>                <NA>
## 2649                <NA>       <NA>      <NA>                <NA>
## 2650                <NA>       <NA>      <NA>                <NA>
## 2651                <NA>       <NA>      <NA>                <NA>
## 2652                <NA>       <NA>      <NA>                <NA>
## 2653                <NA>       <NA>      <NA>                <NA>
## 2654                <NA>       <NA>      <NA>                <NA>
## 2655                <NA>       <NA>      <NA>                <NA>
## 2656                <NA>       <NA>      <NA>                <NA>
## 2657                <NA>       <NA>      <NA>                <NA>
## 2658                <NA>       <NA>      <NA>                <NA>
## 2659                <NA>       <NA>      <NA>                <NA>
## 2660                <NA>       <NA>      <NA>                <NA>
## 2661                <NA>       <NA>      <NA>                <NA>
## 2662                <NA>       <NA>      <NA>                <NA>
## 2663                <NA>       <NA>      <NA>                <NA>
## 2664                <NA>       <NA>      <NA>                <NA>
## 2665                <NA>       <NA>      <NA>                <NA>
## 2666                <NA>       <NA>      <NA>                <NA>
## 2667                <NA>       <NA>      <NA>                <NA>
## 2668                <NA>       <NA>      <NA>                <NA>
## 2669                <NA>       <NA>      <NA>                <NA>
## 2670                <NA>       <NA>      <NA>                <NA>
## 2671                <NA>       <NA>      <NA>                <NA>
## 2672                <NA>       <NA>      <NA>                <NA>
## 2673                <NA>       <NA>      <NA>                <NA>
## 2674                <NA>       <NA>      <NA>                <NA>
## 2675                <NA>       <NA>      <NA>                <NA>
## 2676                <NA>       <NA>      <NA>                <NA>
## 2677                <NA>       <NA>      <NA>                <NA>
## 2678            Brasilia   -47.9292  -15.7801 Upper middle income
## 2679            Brasilia   -47.9292  -15.7801 Upper middle income
## 2680            Brasilia   -47.9292  -15.7801 Upper middle income
## 2681            Brasilia   -47.9292  -15.7801 Upper middle income
## 2682            Brasilia   -47.9292  -15.7801 Upper middle income
## 2683            Brasilia   -47.9292  -15.7801 Upper middle income
## 2684            Brasilia   -47.9292  -15.7801 Upper middle income
## 2685            Brasilia   -47.9292  -15.7801 Upper middle income
## 2686            Brasilia   -47.9292  -15.7801 Upper middle income
## 2687            Brasilia   -47.9292  -15.7801 Upper middle income
## 2688            Brasilia   -47.9292  -15.7801 Upper middle income
## 2689            Brasilia   -47.9292  -15.7801 Upper middle income
## 2690            Brasilia   -47.9292  -15.7801 Upper middle income
## 2691            Brasilia   -47.9292  -15.7801 Upper middle income
## 2692            Brasilia   -47.9292  -15.7801 Upper middle income
## 2693            Brasilia   -47.9292  -15.7801 Upper middle income
## 2694            Brasilia   -47.9292  -15.7801 Upper middle income
## 2695            Brasilia   -47.9292  -15.7801 Upper middle income
## 2696            Brasilia   -47.9292  -15.7801 Upper middle income
## 2697            Brasilia   -47.9292  -15.7801 Upper middle income
## 2698            Brasilia   -47.9292  -15.7801 Upper middle income
## 2699            Brasilia   -47.9292  -15.7801 Upper middle income
## 2700            Brasilia   -47.9292  -15.7801 Upper middle income
## 2701            Brasilia   -47.9292  -15.7801 Upper middle income
## 2702            Brasilia   -47.9292  -15.7801 Upper middle income
## 2703            Brasilia   -47.9292  -15.7801 Upper middle income
## 2704            Brasilia   -47.9292  -15.7801 Upper middle income
## 2705            Brasilia   -47.9292  -15.7801 Upper middle income
## 2706            Brasilia   -47.9292  -15.7801 Upper middle income
## 2707            Brasilia   -47.9292  -15.7801 Upper middle income
## 2708            Brasilia   -47.9292  -15.7801 Upper middle income
## 2709            Brasilia   -47.9292  -15.7801 Upper middle income
## 2710            Brasilia   -47.9292  -15.7801 Upper middle income
## 2711            Brasilia   -47.9292  -15.7801 Upper middle income
## 2712            Brasilia   -47.9292  -15.7801 Upper middle income
## 2713            Brasilia   -47.9292  -15.7801 Upper middle income
## 2714            Brasilia   -47.9292  -15.7801 Upper middle income
## 2715            Brasilia   -47.9292  -15.7801 Upper middle income
## 2716            Brasilia   -47.9292  -15.7801 Upper middle income
## 2717            Brasilia   -47.9292  -15.7801 Upper middle income
## 2718            Brasilia   -47.9292  -15.7801 Upper middle income
## 2719            Brasilia   -47.9292  -15.7801 Upper middle income
## 2720            Brasilia   -47.9292  -15.7801 Upper middle income
## 2721            Brasilia   -47.9292  -15.7801 Upper middle income
## 2722            Brasilia   -47.9292  -15.7801 Upper middle income
## 2723            Brasilia   -47.9292  -15.7801 Upper middle income
## 2724            Brasilia   -47.9292  -15.7801 Upper middle income
## 2725            Brasilia   -47.9292  -15.7801 Upper middle income
## 2726            Brasilia   -47.9292  -15.7801 Upper middle income
## 2727            Brasilia   -47.9292  -15.7801 Upper middle income
## 2728            Brasilia   -47.9292  -15.7801 Upper middle income
## 2729            Brasilia   -47.9292  -15.7801 Upper middle income
## 2730            Brasilia   -47.9292  -15.7801 Upper middle income
## 2731            Brasilia   -47.9292  -15.7801 Upper middle income
## 2732            Brasilia   -47.9292  -15.7801 Upper middle income
## 2733            Brasilia   -47.9292  -15.7801 Upper middle income
## 2734            Brasilia   -47.9292  -15.7801 Upper middle income
## 2735            Brasilia   -47.9292  -15.7801 Upper middle income
## 2736            Brasilia   -47.9292  -15.7801 Upper middle income
## 2737            Brasilia   -47.9292  -15.7801 Upper middle income
## 2738            Brasilia   -47.9292  -15.7801 Upper middle income
## 2739            Brasilia   -47.9292  -15.7801 Upper middle income
## 2740            Brasilia   -47.9292  -15.7801 Upper middle income
## 2741                <NA>       <NA>      <NA>                <NA>
## 2742                <NA>       <NA>      <NA>                <NA>
## 2743                <NA>       <NA>      <NA>                <NA>
## 2744                <NA>       <NA>      <NA>                <NA>
## 2745                <NA>       <NA>      <NA>                <NA>
## 2746                <NA>       <NA>      <NA>                <NA>
## 2747                <NA>       <NA>      <NA>                <NA>
## 2748                <NA>       <NA>      <NA>                <NA>
## 2749                <NA>       <NA>      <NA>                <NA>
## 2750                <NA>       <NA>      <NA>                <NA>
## 2751                <NA>       <NA>      <NA>                <NA>
## 2752                <NA>       <NA>      <NA>                <NA>
## 2753                <NA>       <NA>      <NA>                <NA>
## 2754                <NA>       <NA>      <NA>                <NA>
## 2755                <NA>       <NA>      <NA>                <NA>
## 2756                <NA>       <NA>      <NA>                <NA>
## 2757                <NA>       <NA>      <NA>                <NA>
## 2758                <NA>       <NA>      <NA>                <NA>
## 2759                <NA>       <NA>      <NA>                <NA>
## 2760                <NA>       <NA>      <NA>                <NA>
## 2761                <NA>       <NA>      <NA>                <NA>
## 2762                <NA>       <NA>      <NA>                <NA>
## 2763                <NA>       <NA>      <NA>                <NA>
## 2764                <NA>       <NA>      <NA>                <NA>
## 2765                <NA>       <NA>      <NA>                <NA>
## 2766                <NA>       <NA>      <NA>                <NA>
## 2767                <NA>       <NA>      <NA>                <NA>
## 2768                <NA>       <NA>      <NA>                <NA>
## 2769                <NA>       <NA>      <NA>                <NA>
## 2770                <NA>       <NA>      <NA>                <NA>
## 2771                <NA>       <NA>      <NA>                <NA>
## 2772                <NA>       <NA>      <NA>                <NA>
## 2773                <NA>       <NA>      <NA>                <NA>
## 2774                <NA>       <NA>      <NA>                <NA>
## 2775           Road Town -64.623056 18.431389         High income
## 2776           Road Town -64.623056 18.431389         High income
## 2777           Road Town -64.623056 18.431389         High income
## 2778           Road Town -64.623056 18.431389         High income
## 2779           Road Town -64.623056 18.431389         High income
## 2780           Road Town -64.623056 18.431389         High income
## 2781           Road Town -64.623056 18.431389         High income
## 2782           Road Town -64.623056 18.431389         High income
## 2783           Road Town -64.623056 18.431389         High income
## 2784           Road Town -64.623056 18.431389         High income
## 2785           Road Town -64.623056 18.431389         High income
## 2786           Road Town -64.623056 18.431389         High income
## 2787           Road Town -64.623056 18.431389         High income
## 2788           Road Town -64.623056 18.431389         High income
## 2789           Road Town -64.623056 18.431389         High income
## 2790           Road Town -64.623056 18.431389         High income
## 2791           Road Town -64.623056 18.431389         High income
## 2792           Road Town -64.623056 18.431389         High income
## 2793           Road Town -64.623056 18.431389         High income
## 2794           Road Town -64.623056 18.431389         High income
## 2795           Road Town -64.623056 18.431389         High income
## 2796           Road Town -64.623056 18.431389         High income
## 2797           Road Town -64.623056 18.431389         High income
## 2798           Road Town -64.623056 18.431389         High income
## 2799           Road Town -64.623056 18.431389         High income
## 2800           Road Town -64.623056 18.431389         High income
## 2801           Road Town -64.623056 18.431389         High income
## 2802           Road Town -64.623056 18.431389         High income
## 2803           Road Town -64.623056 18.431389         High income
## 2804           Road Town -64.623056 18.431389         High income
## 2805           Road Town -64.623056 18.431389         High income
## 2806           Road Town -64.623056 18.431389         High income
## 2807           Road Town -64.623056 18.431389         High income
## 2808           Road Town -64.623056 18.431389         High income
## 2809           Road Town -64.623056 18.431389         High income
## 2810           Road Town -64.623056 18.431389         High income
## 2811           Road Town -64.623056 18.431389         High income
## 2812           Road Town -64.623056 18.431389         High income
## 2813           Road Town -64.623056 18.431389         High income
## 2814           Road Town -64.623056 18.431389         High income
## 2815           Road Town -64.623056 18.431389         High income
## 2816           Road Town -64.623056 18.431389         High income
## 2817           Road Town -64.623056 18.431389         High income
## 2818           Road Town -64.623056 18.431389         High income
## 2819           Road Town -64.623056 18.431389         High income
## 2820           Road Town -64.623056 18.431389         High income
## 2821           Road Town -64.623056 18.431389         High income
## 2822           Road Town -64.623056 18.431389         High income
## 2823           Road Town -64.623056 18.431389         High income
## 2824           Road Town -64.623056 18.431389         High income
## 2825           Road Town -64.623056 18.431389         High income
## 2826           Road Town -64.623056 18.431389         High income
## 2827           Road Town -64.623056 18.431389         High income
## 2828           Road Town -64.623056 18.431389         High income
## 2829           Road Town -64.623056 18.431389         High income
## 2830           Road Town -64.623056 18.431389         High income
## 2831           Road Town -64.623056 18.431389         High income
## 2832           Road Town -64.623056 18.431389         High income
## 2833           Road Town -64.623056 18.431389         High income
## 2834           Road Town -64.623056 18.431389         High income
## 2835           Road Town -64.623056 18.431389         High income
## 2836           Road Town -64.623056 18.431389         High income
## 2837           Road Town -64.623056 18.431389         High income
## 2838                <NA>       <NA>      <NA>                <NA>
## 2839                <NA>       <NA>      <NA>                <NA>
## 2840                <NA>       <NA>      <NA>                <NA>
## 2841                <NA>       <NA>      <NA>                <NA>
## 2842                <NA>       <NA>      <NA>                <NA>
## 2843                <NA>       <NA>      <NA>                <NA>
## 2844                <NA>       <NA>      <NA>                <NA>
## 2845                <NA>       <NA>      <NA>                <NA>
## 2846                <NA>       <NA>      <NA>                <NA>
## 2847                <NA>       <NA>      <NA>                <NA>
## 2848                <NA>       <NA>      <NA>                <NA>
## 2849                <NA>       <NA>      <NA>                <NA>
## 2850                <NA>       <NA>      <NA>                <NA>
## 2851                <NA>       <NA>      <NA>                <NA>
## 2852                <NA>       <NA>      <NA>                <NA>
## 2853                <NA>       <NA>      <NA>                <NA>
## 2854                <NA>       <NA>      <NA>                <NA>
## 2855                <NA>       <NA>      <NA>                <NA>
## 2856                <NA>       <NA>      <NA>                <NA>
## 2857                <NA>       <NA>      <NA>                <NA>
## 2858                <NA>       <NA>      <NA>                <NA>
## 2859                <NA>       <NA>      <NA>                <NA>
## 2860                <NA>       <NA>      <NA>                <NA>
## 2861                <NA>       <NA>      <NA>                <NA>
## 2862                <NA>       <NA>      <NA>                <NA>
## 2863                <NA>       <NA>      <NA>                <NA>
## 2864                <NA>       <NA>      <NA>                <NA>
## 2865                <NA>       <NA>      <NA>                <NA>
## 2866                <NA>       <NA>      <NA>                <NA>
## 2867                <NA>       <NA>      <NA>                <NA>
## 2868                <NA>       <NA>      <NA>                <NA>
## 2869                <NA>       <NA>      <NA>                <NA>
## 2870                <NA>       <NA>      <NA>                <NA>
## 2871                <NA>       <NA>      <NA>                <NA>
## 2872 Bandar Seri Begawan    114.946   4.94199         High income
## 2873 Bandar Seri Begawan    114.946   4.94199         High income
## 2874 Bandar Seri Begawan    114.946   4.94199         High income
## 2875 Bandar Seri Begawan    114.946   4.94199         High income
## 2876 Bandar Seri Begawan    114.946   4.94199         High income
## 2877 Bandar Seri Begawan    114.946   4.94199         High income
## 2878 Bandar Seri Begawan    114.946   4.94199         High income
## 2879 Bandar Seri Begawan    114.946   4.94199         High income
## 2880 Bandar Seri Begawan    114.946   4.94199         High income
## 2881 Bandar Seri Begawan    114.946   4.94199         High income
## 2882 Bandar Seri Begawan    114.946   4.94199         High income
## 2883 Bandar Seri Begawan    114.946   4.94199         High income
## 2884 Bandar Seri Begawan    114.946   4.94199         High income
## 2885 Bandar Seri Begawan    114.946   4.94199         High income
## 2886 Bandar Seri Begawan    114.946   4.94199         High income
## 2887 Bandar Seri Begawan    114.946   4.94199         High income
## 2888 Bandar Seri Begawan    114.946   4.94199         High income
## 2889 Bandar Seri Begawan    114.946   4.94199         High income
## 2890 Bandar Seri Begawan    114.946   4.94199         High income
## 2891 Bandar Seri Begawan    114.946   4.94199         High income
## 2892 Bandar Seri Begawan    114.946   4.94199         High income
## 2893 Bandar Seri Begawan    114.946   4.94199         High income
## 2894 Bandar Seri Begawan    114.946   4.94199         High income
## 2895 Bandar Seri Begawan    114.946   4.94199         High income
## 2896 Bandar Seri Begawan    114.946   4.94199         High income
## 2897 Bandar Seri Begawan    114.946   4.94199         High income
## 2898 Bandar Seri Begawan    114.946   4.94199         High income
## 2899 Bandar Seri Begawan    114.946   4.94199         High income
## 2900 Bandar Seri Begawan    114.946   4.94199         High income
## 2901 Bandar Seri Begawan    114.946   4.94199         High income
## 2902 Bandar Seri Begawan    114.946   4.94199         High income
## 2903 Bandar Seri Begawan    114.946   4.94199         High income
## 2904 Bandar Seri Begawan    114.946   4.94199         High income
## 2905 Bandar Seri Begawan    114.946   4.94199         High income
## 2906 Bandar Seri Begawan    114.946   4.94199         High income
## 2907 Bandar Seri Begawan    114.946   4.94199         High income
## 2908 Bandar Seri Begawan    114.946   4.94199         High income
## 2909 Bandar Seri Begawan    114.946   4.94199         High income
## 2910 Bandar Seri Begawan    114.946   4.94199         High income
## 2911 Bandar Seri Begawan    114.946   4.94199         High income
## 2912 Bandar Seri Begawan    114.946   4.94199         High income
## 2913 Bandar Seri Begawan    114.946   4.94199         High income
## 2914 Bandar Seri Begawan    114.946   4.94199         High income
## 2915 Bandar Seri Begawan    114.946   4.94199         High income
## 2916 Bandar Seri Begawan    114.946   4.94199         High income
## 2917 Bandar Seri Begawan    114.946   4.94199         High income
## 2918 Bandar Seri Begawan    114.946   4.94199         High income
## 2919 Bandar Seri Begawan    114.946   4.94199         High income
## 2920 Bandar Seri Begawan    114.946   4.94199         High income
## 2921 Bandar Seri Begawan    114.946   4.94199         High income
## 2922 Bandar Seri Begawan    114.946   4.94199         High income
## 2923 Bandar Seri Begawan    114.946   4.94199         High income
## 2924 Bandar Seri Begawan    114.946   4.94199         High income
## 2925 Bandar Seri Begawan    114.946   4.94199         High income
## 2926 Bandar Seri Begawan    114.946   4.94199         High income
## 2927 Bandar Seri Begawan    114.946   4.94199         High income
## 2928 Bandar Seri Begawan    114.946   4.94199         High income
## 2929 Bandar Seri Begawan    114.946   4.94199         High income
## 2930 Bandar Seri Begawan    114.946   4.94199         High income
## 2931 Bandar Seri Begawan    114.946   4.94199         High income
## 2932 Bandar Seri Begawan    114.946   4.94199         High income
## 2933 Bandar Seri Begawan    114.946   4.94199         High income
## 2934 Bandar Seri Begawan    114.946   4.94199         High income
## 2935               Sofia    23.3238   42.7105 Upper middle income
## 2936               Sofia    23.3238   42.7105 Upper middle income
## 2937               Sofia    23.3238   42.7105 Upper middle income
## 2938               Sofia    23.3238   42.7105 Upper middle income
## 2939               Sofia    23.3238   42.7105 Upper middle income
## 2940               Sofia    23.3238   42.7105 Upper middle income
## 2941               Sofia    23.3238   42.7105 Upper middle income
## 2942               Sofia    23.3238   42.7105 Upper middle income
## 2943               Sofia    23.3238   42.7105 Upper middle income
## 2944               Sofia    23.3238   42.7105 Upper middle income
## 2945               Sofia    23.3238   42.7105 Upper middle income
## 2946               Sofia    23.3238   42.7105 Upper middle income
## 2947               Sofia    23.3238   42.7105 Upper middle income
## 2948               Sofia    23.3238   42.7105 Upper middle income
## 2949               Sofia    23.3238   42.7105 Upper middle income
## 2950               Sofia    23.3238   42.7105 Upper middle income
## 2951               Sofia    23.3238   42.7105 Upper middle income
## 2952               Sofia    23.3238   42.7105 Upper middle income
## 2953               Sofia    23.3238   42.7105 Upper middle income
## 2954               Sofia    23.3238   42.7105 Upper middle income
## 2955               Sofia    23.3238   42.7105 Upper middle income
## 2956               Sofia    23.3238   42.7105 Upper middle income
## 2957               Sofia    23.3238   42.7105 Upper middle income
## 2958               Sofia    23.3238   42.7105 Upper middle income
## 2959               Sofia    23.3238   42.7105 Upper middle income
## 2960               Sofia    23.3238   42.7105 Upper middle income
## 2961               Sofia    23.3238   42.7105 Upper middle income
## 2962               Sofia    23.3238   42.7105 Upper middle income
## 2963               Sofia    23.3238   42.7105 Upper middle income
## 2964               Sofia    23.3238   42.7105 Upper middle income
## 2965               Sofia    23.3238   42.7105 Upper middle income
## 2966               Sofia    23.3238   42.7105 Upper middle income
## 2967               Sofia    23.3238   42.7105 Upper middle income
## 2968               Sofia    23.3238   42.7105 Upper middle income
## 2969               Sofia    23.3238   42.7105 Upper middle income
## 2970               Sofia    23.3238   42.7105 Upper middle income
## 2971               Sofia    23.3238   42.7105 Upper middle income
## 2972               Sofia    23.3238   42.7105 Upper middle income
## 2973               Sofia    23.3238   42.7105 Upper middle income
## 2974               Sofia    23.3238   42.7105 Upper middle income
## 2975               Sofia    23.3238   42.7105 Upper middle income
## 2976               Sofia    23.3238   42.7105 Upper middle income
## 2977               Sofia    23.3238   42.7105 Upper middle income
## 2978               Sofia    23.3238   42.7105 Upper middle income
## 2979               Sofia    23.3238   42.7105 Upper middle income
## 2980               Sofia    23.3238   42.7105 Upper middle income
## 2981               Sofia    23.3238   42.7105 Upper middle income
## 2982               Sofia    23.3238   42.7105 Upper middle income
## 2983               Sofia    23.3238   42.7105 Upper middle income
## 2984               Sofia    23.3238   42.7105 Upper middle income
## 2985               Sofia    23.3238   42.7105 Upper middle income
## 2986               Sofia    23.3238   42.7105 Upper middle income
## 2987               Sofia    23.3238   42.7105 Upper middle income
## 2988               Sofia    23.3238   42.7105 Upper middle income
## 2989               Sofia    23.3238   42.7105 Upper middle income
## 2990               Sofia    23.3238   42.7105 Upper middle income
## 2991               Sofia    23.3238   42.7105 Upper middle income
## 2992               Sofia    23.3238   42.7105 Upper middle income
## 2993               Sofia    23.3238   42.7105 Upper middle income
## 2994               Sofia    23.3238   42.7105 Upper middle income
## 2995               Sofia    23.3238   42.7105 Upper middle income
## 2996               Sofia    23.3238   42.7105 Upper middle income
## 2997               Sofia    23.3238   42.7105 Upper middle income
## 2998                <NA>       <NA>      <NA>                <NA>
## 2999                <NA>       <NA>      <NA>                <NA>
## 3000                <NA>       <NA>      <NA>                <NA>
## 3001                <NA>       <NA>      <NA>                <NA>
## 3002                <NA>       <NA>      <NA>                <NA>
## 3003                <NA>       <NA>      <NA>                <NA>
## 3004                <NA>       <NA>      <NA>                <NA>
## 3005                <NA>       <NA>      <NA>                <NA>
## 3006                <NA>       <NA>      <NA>                <NA>
## 3007                <NA>       <NA>      <NA>                <NA>
## 3008                <NA>       <NA>      <NA>                <NA>
## 3009                <NA>       <NA>      <NA>                <NA>
## 3010                <NA>       <NA>      <NA>                <NA>
## 3011                <NA>       <NA>      <NA>                <NA>
## 3012                <NA>       <NA>      <NA>                <NA>
## 3013                <NA>       <NA>      <NA>                <NA>
## 3014                <NA>       <NA>      <NA>                <NA>
## 3015                <NA>       <NA>      <NA>                <NA>
## 3016                <NA>       <NA>      <NA>                <NA>
## 3017                <NA>       <NA>      <NA>                <NA>
## 3018                <NA>       <NA>      <NA>                <NA>
## 3019                <NA>       <NA>      <NA>                <NA>
## 3020                <NA>       <NA>      <NA>                <NA>
## 3021                <NA>       <NA>      <NA>                <NA>
## 3022                <NA>       <NA>      <NA>                <NA>
## 3023                <NA>       <NA>      <NA>                <NA>
## 3024                <NA>       <NA>      <NA>                <NA>
## 3025                <NA>       <NA>      <NA>                <NA>
## 3026                <NA>       <NA>      <NA>                <NA>
## 3027                <NA>       <NA>      <NA>                <NA>
## 3028                <NA>       <NA>      <NA>                <NA>
## 3029                <NA>       <NA>      <NA>                <NA>
## 3030                <NA>       <NA>      <NA>                <NA>
## 3031                <NA>       <NA>      <NA>                <NA>
## 3032         Ouagadougou   -1.53395   12.3605          Low income
## 3033         Ouagadougou   -1.53395   12.3605          Low income
## 3034         Ouagadougou   -1.53395   12.3605          Low income
## 3035         Ouagadougou   -1.53395   12.3605          Low income
## 3036         Ouagadougou   -1.53395   12.3605          Low income
## 3037         Ouagadougou   -1.53395   12.3605          Low income
## 3038         Ouagadougou   -1.53395   12.3605          Low income
## 3039         Ouagadougou   -1.53395   12.3605          Low income
## 3040         Ouagadougou   -1.53395   12.3605          Low income
## 3041         Ouagadougou   -1.53395   12.3605          Low income
## 3042         Ouagadougou   -1.53395   12.3605          Low income
## 3043         Ouagadougou   -1.53395   12.3605          Low income
## 3044         Ouagadougou   -1.53395   12.3605          Low income
## 3045         Ouagadougou   -1.53395   12.3605          Low income
## 3046         Ouagadougou   -1.53395   12.3605          Low income
## 3047         Ouagadougou   -1.53395   12.3605          Low income
## 3048         Ouagadougou   -1.53395   12.3605          Low income
## 3049         Ouagadougou   -1.53395   12.3605          Low income
## 3050         Ouagadougou   -1.53395   12.3605          Low income
## 3051         Ouagadougou   -1.53395   12.3605          Low income
## 3052         Ouagadougou   -1.53395   12.3605          Low income
## 3053         Ouagadougou   -1.53395   12.3605          Low income
## 3054         Ouagadougou   -1.53395   12.3605          Low income
## 3055         Ouagadougou   -1.53395   12.3605          Low income
## 3056         Ouagadougou   -1.53395   12.3605          Low income
## 3057         Ouagadougou   -1.53395   12.3605          Low income
## 3058         Ouagadougou   -1.53395   12.3605          Low income
## 3059         Ouagadougou   -1.53395   12.3605          Low income
## 3060         Ouagadougou   -1.53395   12.3605          Low income
## 3061         Ouagadougou   -1.53395   12.3605          Low income
## 3062         Ouagadougou   -1.53395   12.3605          Low income
## 3063         Ouagadougou   -1.53395   12.3605          Low income
## 3064         Ouagadougou   -1.53395   12.3605          Low income
## 3065         Ouagadougou   -1.53395   12.3605          Low income
## 3066         Ouagadougou   -1.53395   12.3605          Low income
## 3067         Ouagadougou   -1.53395   12.3605          Low income
## 3068         Ouagadougou   -1.53395   12.3605          Low income
## 3069         Ouagadougou   -1.53395   12.3605          Low income
## 3070         Ouagadougou   -1.53395   12.3605          Low income
## 3071         Ouagadougou   -1.53395   12.3605          Low income
## 3072         Ouagadougou   -1.53395   12.3605          Low income
## 3073         Ouagadougou   -1.53395   12.3605          Low income
## 3074         Ouagadougou   -1.53395   12.3605          Low income
## 3075         Ouagadougou   -1.53395   12.3605          Low income
## 3076         Ouagadougou   -1.53395   12.3605          Low income
## 3077         Ouagadougou   -1.53395   12.3605          Low income
## 3078         Ouagadougou   -1.53395   12.3605          Low income
## 3079         Ouagadougou   -1.53395   12.3605          Low income
## 3080         Ouagadougou   -1.53395   12.3605          Low income
## 3081         Ouagadougou   -1.53395   12.3605          Low income
## 3082         Ouagadougou   -1.53395   12.3605          Low income
## 3083         Ouagadougou   -1.53395   12.3605          Low income
## 3084         Ouagadougou   -1.53395   12.3605          Low income
## 3085         Ouagadougou   -1.53395   12.3605          Low income
## 3086         Ouagadougou   -1.53395   12.3605          Low income
## 3087         Ouagadougou   -1.53395   12.3605          Low income
## 3088         Ouagadougou   -1.53395   12.3605          Low income
## 3089         Ouagadougou   -1.53395   12.3605          Low income
## 3090         Ouagadougou   -1.53395   12.3605          Low income
## 3091         Ouagadougou   -1.53395   12.3605          Low income
## 3092         Ouagadougou   -1.53395   12.3605          Low income
## 3093         Ouagadougou   -1.53395   12.3605          Low income
## 3094         Ouagadougou   -1.53395   12.3605          Low income
## 3095                <NA>       <NA>      <NA>                <NA>
## 3096                <NA>       <NA>      <NA>                <NA>
## 3097                <NA>       <NA>      <NA>                <NA>
## 3098                <NA>       <NA>      <NA>                <NA>
## 3099                <NA>       <NA>      <NA>                <NA>
## 3100                <NA>       <NA>      <NA>                <NA>
## 3101                <NA>       <NA>      <NA>                <NA>
## 3102                <NA>       <NA>      <NA>                <NA>
## 3103                <NA>       <NA>      <NA>                <NA>
## 3104                <NA>       <NA>      <NA>                <NA>
## 3105                <NA>       <NA>      <NA>                <NA>
## 3106                <NA>       <NA>      <NA>                <NA>
## 3107                <NA>       <NA>      <NA>                <NA>
## 3108                <NA>       <NA>      <NA>                <NA>
## 3109                <NA>       <NA>      <NA>                <NA>
## 3110                <NA>       <NA>      <NA>                <NA>
## 3111                <NA>       <NA>      <NA>                <NA>
## 3112                <NA>       <NA>      <NA>                <NA>
## 3113                <NA>       <NA>      <NA>                <NA>
## 3114                <NA>       <NA>      <NA>                <NA>
## 3115                <NA>       <NA>      <NA>                <NA>
## 3116                <NA>       <NA>      <NA>                <NA>
## 3117                <NA>       <NA>      <NA>                <NA>
## 3118                <NA>       <NA>      <NA>                <NA>
## 3119                <NA>       <NA>      <NA>                <NA>
## 3120                <NA>       <NA>      <NA>                <NA>
## 3121                <NA>       <NA>      <NA>                <NA>
## 3122                <NA>       <NA>      <NA>                <NA>
## 3123                <NA>       <NA>      <NA>                <NA>
## 3124                <NA>       <NA>      <NA>                <NA>
## 3125                <NA>       <NA>      <NA>                <NA>
## 3126                <NA>       <NA>      <NA>                <NA>
## 3127                <NA>       <NA>      <NA>                <NA>
## 3128                <NA>       <NA>      <NA>                <NA>
## 3129                <NA>       <NA>      <NA>                <NA>
## 3130                <NA>       <NA>      <NA>                <NA>
## 3131                <NA>       <NA>      <NA>                <NA>
## 3132                <NA>       <NA>      <NA>                <NA>
## 3133                <NA>       <NA>      <NA>                <NA>
## 3134                <NA>       <NA>      <NA>                <NA>
## 3135                <NA>       <NA>      <NA>                <NA>
## 3136                <NA>       <NA>      <NA>                <NA>
## 3137                <NA>       <NA>      <NA>                <NA>
## 3138                <NA>       <NA>      <NA>                <NA>
## 3139                <NA>       <NA>      <NA>                <NA>
## 3140                <NA>       <NA>      <NA>                <NA>
## 3141                <NA>       <NA>      <NA>                <NA>
## 3142                <NA>       <NA>      <NA>                <NA>
## 3143                <NA>       <NA>      <NA>                <NA>
## 3144                <NA>       <NA>      <NA>                <NA>
## 3145                <NA>       <NA>      <NA>                <NA>
## 3146                <NA>       <NA>      <NA>                <NA>
## 3147                <NA>       <NA>      <NA>                <NA>
## 3148                <NA>       <NA>      <NA>                <NA>
## 3149                <NA>       <NA>      <NA>                <NA>
## 3150                <NA>       <NA>      <NA>                <NA>
## 3151                <NA>       <NA>      <NA>                <NA>
## 3152                <NA>       <NA>      <NA>                <NA>
## 3153                <NA>       <NA>      <NA>                <NA>
## 3154                <NA>       <NA>      <NA>                <NA>
## 3155                <NA>       <NA>      <NA>                <NA>
## 3156                <NA>       <NA>      <NA>                <NA>
## 3157                <NA>       <NA>      <NA>                <NA>
## 3158                <NA>       <NA>      <NA>                <NA>
## 3159                <NA>       <NA>      <NA>                <NA>
## 3160                <NA>       <NA>      <NA>                <NA>
## 3161                <NA>       <NA>      <NA>                <NA>
## 3162                <NA>       <NA>      <NA>                <NA>
## 3163           Bujumbura    29.3639   -3.3784          Low income
## 3164           Bujumbura    29.3639   -3.3784          Low income
## 3165           Bujumbura    29.3639   -3.3784          Low income
## 3166           Bujumbura    29.3639   -3.3784          Low income
## 3167           Bujumbura    29.3639   -3.3784          Low income
## 3168           Bujumbura    29.3639   -3.3784          Low income
## 3169           Bujumbura    29.3639   -3.3784          Low income
## 3170           Bujumbura    29.3639   -3.3784          Low income
## 3171           Bujumbura    29.3639   -3.3784          Low income
## 3172           Bujumbura    29.3639   -3.3784          Low income
## 3173           Bujumbura    29.3639   -3.3784          Low income
## 3174           Bujumbura    29.3639   -3.3784          Low income
## 3175           Bujumbura    29.3639   -3.3784          Low income
## 3176           Bujumbura    29.3639   -3.3784          Low income
## 3177           Bujumbura    29.3639   -3.3784          Low income
## 3178           Bujumbura    29.3639   -3.3784          Low income
## 3179           Bujumbura    29.3639   -3.3784          Low income
## 3180           Bujumbura    29.3639   -3.3784          Low income
## 3181           Bujumbura    29.3639   -3.3784          Low income
## 3182           Bujumbura    29.3639   -3.3784          Low income
## 3183           Bujumbura    29.3639   -3.3784          Low income
## 3184           Bujumbura    29.3639   -3.3784          Low income
## 3185           Bujumbura    29.3639   -3.3784          Low income
## 3186           Bujumbura    29.3639   -3.3784          Low income
## 3187           Bujumbura    29.3639   -3.3784          Low income
## 3188           Bujumbura    29.3639   -3.3784          Low income
## 3189           Bujumbura    29.3639   -3.3784          Low income
## 3190           Bujumbura    29.3639   -3.3784          Low income
## 3191           Bujumbura    29.3639   -3.3784          Low income
## 3192           Bujumbura    29.3639   -3.3784          Low income
## 3193           Bujumbura    29.3639   -3.3784          Low income
## 3194           Bujumbura    29.3639   -3.3784          Low income
## 3195           Bujumbura    29.3639   -3.3784          Low income
## 3196           Bujumbura    29.3639   -3.3784          Low income
## 3197           Bujumbura    29.3639   -3.3784          Low income
## 3198           Bujumbura    29.3639   -3.3784          Low income
## 3199           Bujumbura    29.3639   -3.3784          Low income
## 3200           Bujumbura    29.3639   -3.3784          Low income
## 3201           Bujumbura    29.3639   -3.3784          Low income
## 3202           Bujumbura    29.3639   -3.3784          Low income
## 3203           Bujumbura    29.3639   -3.3784          Low income
## 3204           Bujumbura    29.3639   -3.3784          Low income
## 3205           Bujumbura    29.3639   -3.3784          Low income
## 3206           Bujumbura    29.3639   -3.3784          Low income
## 3207           Bujumbura    29.3639   -3.3784          Low income
## 3208           Bujumbura    29.3639   -3.3784          Low income
## 3209           Bujumbura    29.3639   -3.3784          Low income
## 3210           Bujumbura    29.3639   -3.3784          Low income
## 3211           Bujumbura    29.3639   -3.3784          Low income
## 3212           Bujumbura    29.3639   -3.3784          Low income
## 3213           Bujumbura    29.3639   -3.3784          Low income
## 3214           Bujumbura    29.3639   -3.3784          Low income
## 3215           Bujumbura    29.3639   -3.3784          Low income
## 3216           Bujumbura    29.3639   -3.3784          Low income
## 3217           Bujumbura    29.3639   -3.3784          Low income
## 3218           Bujumbura    29.3639   -3.3784          Low income
## 3219           Bujumbura    29.3639   -3.3784          Low income
## 3220           Bujumbura    29.3639   -3.3784          Low income
## 3221           Bujumbura    29.3639   -3.3784          Low income
## 3222           Bujumbura    29.3639   -3.3784          Low income
## 3223           Bujumbura    29.3639   -3.3784          Low income
## 3224           Bujumbura    29.3639   -3.3784          Low income
## 3225           Bujumbura    29.3639   -3.3784          Low income
## 3226               Praia   -23.5087   14.9218 Lower middle income
## 3227               Praia   -23.5087   14.9218 Lower middle income
## 3228               Praia   -23.5087   14.9218 Lower middle income
## 3229               Praia   -23.5087   14.9218 Lower middle income
## 3230               Praia   -23.5087   14.9218 Lower middle income
## 3231               Praia   -23.5087   14.9218 Lower middle income
## 3232               Praia   -23.5087   14.9218 Lower middle income
## 3233               Praia   -23.5087   14.9218 Lower middle income
## 3234               Praia   -23.5087   14.9218 Lower middle income
## 3235               Praia   -23.5087   14.9218 Lower middle income
## 3236               Praia   -23.5087   14.9218 Lower middle income
## 3237               Praia   -23.5087   14.9218 Lower middle income
## 3238               Praia   -23.5087   14.9218 Lower middle income
## 3239               Praia   -23.5087   14.9218 Lower middle income
## 3240               Praia   -23.5087   14.9218 Lower middle income
## 3241               Praia   -23.5087   14.9218 Lower middle income
## 3242               Praia   -23.5087   14.9218 Lower middle income
## 3243               Praia   -23.5087   14.9218 Lower middle income
## 3244               Praia   -23.5087   14.9218 Lower middle income
## 3245               Praia   -23.5087   14.9218 Lower middle income
## 3246               Praia   -23.5087   14.9218 Lower middle income
## 3247               Praia   -23.5087   14.9218 Lower middle income
## 3248               Praia   -23.5087   14.9218 Lower middle income
## 3249               Praia   -23.5087   14.9218 Lower middle income
## 3250               Praia   -23.5087   14.9218 Lower middle income
## 3251               Praia   -23.5087   14.9218 Lower middle income
## 3252               Praia   -23.5087   14.9218 Lower middle income
## 3253               Praia   -23.5087   14.9218 Lower middle income
## 3254               Praia   -23.5087   14.9218 Lower middle income
## 3255               Praia   -23.5087   14.9218 Lower middle income
## 3256               Praia   -23.5087   14.9218 Lower middle income
## 3257               Praia   -23.5087   14.9218 Lower middle income
## 3258               Praia   -23.5087   14.9218 Lower middle income
## 3259               Praia   -23.5087   14.9218 Lower middle income
## 3260               Praia   -23.5087   14.9218 Lower middle income
## 3261               Praia   -23.5087   14.9218 Lower middle income
## 3262               Praia   -23.5087   14.9218 Lower middle income
## 3263               Praia   -23.5087   14.9218 Lower middle income
## 3264               Praia   -23.5087   14.9218 Lower middle income
## 3265               Praia   -23.5087   14.9218 Lower middle income
## 3266               Praia   -23.5087   14.9218 Lower middle income
## 3267               Praia   -23.5087   14.9218 Lower middle income
## 3268               Praia   -23.5087   14.9218 Lower middle income
## 3269               Praia   -23.5087   14.9218 Lower middle income
## 3270               Praia   -23.5087   14.9218 Lower middle income
## 3271               Praia   -23.5087   14.9218 Lower middle income
## 3272               Praia   -23.5087   14.9218 Lower middle income
## 3273               Praia   -23.5087   14.9218 Lower middle income
## 3274               Praia   -23.5087   14.9218 Lower middle income
## 3275               Praia   -23.5087   14.9218 Lower middle income
## 3276               Praia   -23.5087   14.9218 Lower middle income
## 3277               Praia   -23.5087   14.9218 Lower middle income
## 3278               Praia   -23.5087   14.9218 Lower middle income
## 3279               Praia   -23.5087   14.9218 Lower middle income
## 3280               Praia   -23.5087   14.9218 Lower middle income
## 3281               Praia   -23.5087   14.9218 Lower middle income
## 3282               Praia   -23.5087   14.9218 Lower middle income
## 3283               Praia   -23.5087   14.9218 Lower middle income
## 3284               Praia   -23.5087   14.9218 Lower middle income
## 3285               Praia   -23.5087   14.9218 Lower middle income
## 3286               Praia   -23.5087   14.9218 Lower middle income
## 3287               Praia   -23.5087   14.9218 Lower middle income
## 3288               Praia   -23.5087   14.9218 Lower middle income
## 3289          Phnom Penh    104.874   11.5556 Lower middle income
## 3290          Phnom Penh    104.874   11.5556 Lower middle income
## 3291          Phnom Penh    104.874   11.5556 Lower middle income
## 3292          Phnom Penh    104.874   11.5556 Lower middle income
## 3293          Phnom Penh    104.874   11.5556 Lower middle income
## 3294          Phnom Penh    104.874   11.5556 Lower middle income
## 3295          Phnom Penh    104.874   11.5556 Lower middle income
## 3296          Phnom Penh    104.874   11.5556 Lower middle income
## 3297          Phnom Penh    104.874   11.5556 Lower middle income
## 3298          Phnom Penh    104.874   11.5556 Lower middle income
## 3299          Phnom Penh    104.874   11.5556 Lower middle income
## 3300          Phnom Penh    104.874   11.5556 Lower middle income
## 3301          Phnom Penh    104.874   11.5556 Lower middle income
## 3302          Phnom Penh    104.874   11.5556 Lower middle income
## 3303          Phnom Penh    104.874   11.5556 Lower middle income
## 3304          Phnom Penh    104.874   11.5556 Lower middle income
## 3305          Phnom Penh    104.874   11.5556 Lower middle income
## 3306          Phnom Penh    104.874   11.5556 Lower middle income
## 3307          Phnom Penh    104.874   11.5556 Lower middle income
## 3308          Phnom Penh    104.874   11.5556 Lower middle income
## 3309          Phnom Penh    104.874   11.5556 Lower middle income
## 3310          Phnom Penh    104.874   11.5556 Lower middle income
## 3311          Phnom Penh    104.874   11.5556 Lower middle income
## 3312          Phnom Penh    104.874   11.5556 Lower middle income
## 3313          Phnom Penh    104.874   11.5556 Lower middle income
## 3314          Phnom Penh    104.874   11.5556 Lower middle income
## 3315          Phnom Penh    104.874   11.5556 Lower middle income
## 3316          Phnom Penh    104.874   11.5556 Lower middle income
## 3317          Phnom Penh    104.874   11.5556 Lower middle income
## 3318          Phnom Penh    104.874   11.5556 Lower middle income
## 3319          Phnom Penh    104.874   11.5556 Lower middle income
## 3320          Phnom Penh    104.874   11.5556 Lower middle income
## 3321          Phnom Penh    104.874   11.5556 Lower middle income
## 3322          Phnom Penh    104.874   11.5556 Lower middle income
## 3323          Phnom Penh    104.874   11.5556 Lower middle income
## 3324          Phnom Penh    104.874   11.5556 Lower middle income
## 3325          Phnom Penh    104.874   11.5556 Lower middle income
## 3326          Phnom Penh    104.874   11.5556 Lower middle income
## 3327          Phnom Penh    104.874   11.5556 Lower middle income
## 3328          Phnom Penh    104.874   11.5556 Lower middle income
## 3329          Phnom Penh    104.874   11.5556 Lower middle income
## 3330          Phnom Penh    104.874   11.5556 Lower middle income
## 3331          Phnom Penh    104.874   11.5556 Lower middle income
## 3332          Phnom Penh    104.874   11.5556 Lower middle income
## 3333          Phnom Penh    104.874   11.5556 Lower middle income
## 3334          Phnom Penh    104.874   11.5556 Lower middle income
## 3335          Phnom Penh    104.874   11.5556 Lower middle income
## 3336          Phnom Penh    104.874   11.5556 Lower middle income
## 3337          Phnom Penh    104.874   11.5556 Lower middle income
## 3338          Phnom Penh    104.874   11.5556 Lower middle income
## 3339          Phnom Penh    104.874   11.5556 Lower middle income
## 3340          Phnom Penh    104.874   11.5556 Lower middle income
## 3341          Phnom Penh    104.874   11.5556 Lower middle income
## 3342          Phnom Penh    104.874   11.5556 Lower middle income
## 3343          Phnom Penh    104.874   11.5556 Lower middle income
## 3344          Phnom Penh    104.874   11.5556 Lower middle income
## 3345          Phnom Penh    104.874   11.5556 Lower middle income
## 3346          Phnom Penh    104.874   11.5556 Lower middle income
## 3347          Phnom Penh    104.874   11.5556 Lower middle income
## 3348          Phnom Penh    104.874   11.5556 Lower middle income
## 3349          Phnom Penh    104.874   11.5556 Lower middle income
## 3350          Phnom Penh    104.874   11.5556 Lower middle income
## 3351          Phnom Penh    104.874   11.5556 Lower middle income
## 3352                <NA>       <NA>      <NA>                <NA>
## 3353                <NA>       <NA>      <NA>                <NA>
## 3354                <NA>       <NA>      <NA>                <NA>
## 3355                <NA>       <NA>      <NA>                <NA>
## 3356                <NA>       <NA>      <NA>                <NA>
## 3357                <NA>       <NA>      <NA>                <NA>
## 3358                <NA>       <NA>      <NA>                <NA>
## 3359                <NA>       <NA>      <NA>                <NA>
## 3360                <NA>       <NA>      <NA>                <NA>
## 3361                <NA>       <NA>      <NA>                <NA>
## 3362                <NA>       <NA>      <NA>                <NA>
## 3363                <NA>       <NA>      <NA>                <NA>
## 3364                <NA>       <NA>      <NA>                <NA>
## 3365                <NA>       <NA>      <NA>                <NA>
## 3366                <NA>       <NA>      <NA>                <NA>
## 3367                <NA>       <NA>      <NA>                <NA>
## 3368                <NA>       <NA>      <NA>                <NA>
## 3369                <NA>       <NA>      <NA>                <NA>
## 3370                <NA>       <NA>      <NA>                <NA>
## 3371                <NA>       <NA>      <NA>                <NA>
## 3372                <NA>       <NA>      <NA>                <NA>
## 3373                <NA>       <NA>      <NA>                <NA>
## 3374                <NA>       <NA>      <NA>                <NA>
## 3375                <NA>       <NA>      <NA>                <NA>
## 3376                <NA>       <NA>      <NA>                <NA>
## 3377                <NA>       <NA>      <NA>                <NA>
## 3378                <NA>       <NA>      <NA>                <NA>
## 3379                <NA>       <NA>      <NA>                <NA>
## 3380                <NA>       <NA>      <NA>                <NA>
## 3381                <NA>       <NA>      <NA>                <NA>
## 3382                <NA>       <NA>      <NA>                <NA>
## 3383                <NA>       <NA>      <NA>                <NA>
## 3384                <NA>       <NA>      <NA>                <NA>
## 3385                <NA>       <NA>      <NA>                <NA>
## 3386             Yaounde    11.5174    3.8721 Lower middle income
## 3387             Yaounde    11.5174    3.8721 Lower middle income
## 3388             Yaounde    11.5174    3.8721 Lower middle income
## 3389             Yaounde    11.5174    3.8721 Lower middle income
## 3390             Yaounde    11.5174    3.8721 Lower middle income
## 3391             Yaounde    11.5174    3.8721 Lower middle income
## 3392             Yaounde    11.5174    3.8721 Lower middle income
## 3393             Yaounde    11.5174    3.8721 Lower middle income
## 3394             Yaounde    11.5174    3.8721 Lower middle income
## 3395             Yaounde    11.5174    3.8721 Lower middle income
## 3396             Yaounde    11.5174    3.8721 Lower middle income
## 3397             Yaounde    11.5174    3.8721 Lower middle income
## 3398             Yaounde    11.5174    3.8721 Lower middle income
## 3399             Yaounde    11.5174    3.8721 Lower middle income
## 3400             Yaounde    11.5174    3.8721 Lower middle income
## 3401             Yaounde    11.5174    3.8721 Lower middle income
## 3402             Yaounde    11.5174    3.8721 Lower middle income
## 3403             Yaounde    11.5174    3.8721 Lower middle income
## 3404             Yaounde    11.5174    3.8721 Lower middle income
## 3405             Yaounde    11.5174    3.8721 Lower middle income
## 3406             Yaounde    11.5174    3.8721 Lower middle income
## 3407             Yaounde    11.5174    3.8721 Lower middle income
## 3408             Yaounde    11.5174    3.8721 Lower middle income
## 3409             Yaounde    11.5174    3.8721 Lower middle income
## 3410             Yaounde    11.5174    3.8721 Lower middle income
## 3411             Yaounde    11.5174    3.8721 Lower middle income
## 3412             Yaounde    11.5174    3.8721 Lower middle income
## 3413             Yaounde    11.5174    3.8721 Lower middle income
## 3414             Yaounde    11.5174    3.8721 Lower middle income
## 3415             Yaounde    11.5174    3.8721 Lower middle income
## 3416             Yaounde    11.5174    3.8721 Lower middle income
## 3417             Yaounde    11.5174    3.8721 Lower middle income
## 3418             Yaounde    11.5174    3.8721 Lower middle income
## 3419             Yaounde    11.5174    3.8721 Lower middle income
## 3420             Yaounde    11.5174    3.8721 Lower middle income
## 3421             Yaounde    11.5174    3.8721 Lower middle income
## 3422             Yaounde    11.5174    3.8721 Lower middle income
## 3423             Yaounde    11.5174    3.8721 Lower middle income
## 3424             Yaounde    11.5174    3.8721 Lower middle income
## 3425             Yaounde    11.5174    3.8721 Lower middle income
## 3426             Yaounde    11.5174    3.8721 Lower middle income
## 3427             Yaounde    11.5174    3.8721 Lower middle income
## 3428             Yaounde    11.5174    3.8721 Lower middle income
## 3429             Yaounde    11.5174    3.8721 Lower middle income
## 3430             Yaounde    11.5174    3.8721 Lower middle income
## 3431             Yaounde    11.5174    3.8721 Lower middle income
## 3432             Yaounde    11.5174    3.8721 Lower middle income
## 3433             Yaounde    11.5174    3.8721 Lower middle income
## 3434             Yaounde    11.5174    3.8721 Lower middle income
## 3435             Yaounde    11.5174    3.8721 Lower middle income
## 3436             Yaounde    11.5174    3.8721 Lower middle income
## 3437             Yaounde    11.5174    3.8721 Lower middle income
## 3438             Yaounde    11.5174    3.8721 Lower middle income
## 3439             Yaounde    11.5174    3.8721 Lower middle income
## 3440             Yaounde    11.5174    3.8721 Lower middle income
## 3441             Yaounde    11.5174    3.8721 Lower middle income
## 3442             Yaounde    11.5174    3.8721 Lower middle income
## 3443             Yaounde    11.5174    3.8721 Lower middle income
## 3444             Yaounde    11.5174    3.8721 Lower middle income
## 3445             Yaounde    11.5174    3.8721 Lower middle income
## 3446             Yaounde    11.5174    3.8721 Lower middle income
## 3447             Yaounde    11.5174    3.8721 Lower middle income
## 3448             Yaounde    11.5174    3.8721 Lower middle income
## 3449                <NA>       <NA>      <NA>                <NA>
## 3450                <NA>       <NA>      <NA>                <NA>
## 3451                <NA>       <NA>      <NA>                <NA>
## 3452                <NA>       <NA>      <NA>                <NA>
## 3453                <NA>       <NA>      <NA>                <NA>
## 3454                <NA>       <NA>      <NA>                <NA>
## 3455                <NA>       <NA>      <NA>                <NA>
## 3456                <NA>       <NA>      <NA>                <NA>
## 3457                <NA>       <NA>      <NA>                <NA>
## 3458                <NA>       <NA>      <NA>                <NA>
## 3459                <NA>       <NA>      <NA>                <NA>
## 3460                <NA>       <NA>      <NA>                <NA>
## 3461                <NA>       <NA>      <NA>                <NA>
## 3462                <NA>       <NA>      <NA>                <NA>
## 3463                <NA>       <NA>      <NA>                <NA>
## 3464                <NA>       <NA>      <NA>                <NA>
## 3465                <NA>       <NA>      <NA>                <NA>
## 3466                <NA>       <NA>      <NA>                <NA>
## 3467                <NA>       <NA>      <NA>                <NA>
## 3468                <NA>       <NA>      <NA>                <NA>
## 3469                <NA>       <NA>      <NA>                <NA>
## 3470                <NA>       <NA>      <NA>                <NA>
## 3471                <NA>       <NA>      <NA>                <NA>
## 3472                <NA>       <NA>      <NA>                <NA>
## 3473                <NA>       <NA>      <NA>                <NA>
## 3474                <NA>       <NA>      <NA>                <NA>
## 3475                <NA>       <NA>      <NA>                <NA>
## 3476                <NA>       <NA>      <NA>                <NA>
## 3477                <NA>       <NA>      <NA>                <NA>
## 3478                <NA>       <NA>      <NA>                <NA>
## 3479                <NA>       <NA>      <NA>                <NA>
## 3480                <NA>       <NA>      <NA>                <NA>
## 3481                <NA>       <NA>      <NA>                <NA>
## 3482                <NA>       <NA>      <NA>                <NA>
## 3483              Ottawa   -75.6919   45.4215         High income
## 3484              Ottawa   -75.6919   45.4215         High income
## 3485              Ottawa   -75.6919   45.4215         High income
## 3486              Ottawa   -75.6919   45.4215         High income
## 3487              Ottawa   -75.6919   45.4215         High income
## 3488              Ottawa   -75.6919   45.4215         High income
## 3489              Ottawa   -75.6919   45.4215         High income
## 3490              Ottawa   -75.6919   45.4215         High income
## 3491              Ottawa   -75.6919   45.4215         High income
## 3492              Ottawa   -75.6919   45.4215         High income
## 3493              Ottawa   -75.6919   45.4215         High income
## 3494              Ottawa   -75.6919   45.4215         High income
## 3495              Ottawa   -75.6919   45.4215         High income
## 3496              Ottawa   -75.6919   45.4215         High income
## 3497              Ottawa   -75.6919   45.4215         High income
## 3498              Ottawa   -75.6919   45.4215         High income
## 3499              Ottawa   -75.6919   45.4215         High income
## 3500              Ottawa   -75.6919   45.4215         High income
## 3501              Ottawa   -75.6919   45.4215         High income
## 3502              Ottawa   -75.6919   45.4215         High income
## 3503              Ottawa   -75.6919   45.4215         High income
## 3504              Ottawa   -75.6919   45.4215         High income
## 3505              Ottawa   -75.6919   45.4215         High income
## 3506              Ottawa   -75.6919   45.4215         High income
## 3507              Ottawa   -75.6919   45.4215         High income
## 3508              Ottawa   -75.6919   45.4215         High income
## 3509              Ottawa   -75.6919   45.4215         High income
## 3510              Ottawa   -75.6919   45.4215         High income
## 3511              Ottawa   -75.6919   45.4215         High income
## 3512              Ottawa   -75.6919   45.4215         High income
## 3513              Ottawa   -75.6919   45.4215         High income
## 3514              Ottawa   -75.6919   45.4215         High income
## 3515              Ottawa   -75.6919   45.4215         High income
## 3516              Ottawa   -75.6919   45.4215         High income
## 3517              Ottawa   -75.6919   45.4215         High income
## 3518              Ottawa   -75.6919   45.4215         High income
## 3519              Ottawa   -75.6919   45.4215         High income
## 3520              Ottawa   -75.6919   45.4215         High income
## 3521              Ottawa   -75.6919   45.4215         High income
## 3522              Ottawa   -75.6919   45.4215         High income
## 3523              Ottawa   -75.6919   45.4215         High income
## 3524              Ottawa   -75.6919   45.4215         High income
## 3525              Ottawa   -75.6919   45.4215         High income
## 3526              Ottawa   -75.6919   45.4215         High income
## 3527              Ottawa   -75.6919   45.4215         High income
## 3528              Ottawa   -75.6919   45.4215         High income
## 3529              Ottawa   -75.6919   45.4215         High income
## 3530              Ottawa   -75.6919   45.4215         High income
## 3531              Ottawa   -75.6919   45.4215         High income
## 3532              Ottawa   -75.6919   45.4215         High income
## 3533              Ottawa   -75.6919   45.4215         High income
## 3534              Ottawa   -75.6919   45.4215         High income
## 3535              Ottawa   -75.6919   45.4215         High income
## 3536              Ottawa   -75.6919   45.4215         High income
## 3537              Ottawa   -75.6919   45.4215         High income
## 3538              Ottawa   -75.6919   45.4215         High income
## 3539              Ottawa   -75.6919   45.4215         High income
## 3540              Ottawa   -75.6919   45.4215         High income
## 3541              Ottawa   -75.6919   45.4215         High income
## 3542              Ottawa   -75.6919   45.4215         High income
## 3543              Ottawa   -75.6919   45.4215         High income
## 3544              Ottawa   -75.6919   45.4215         High income
## 3545              Ottawa   -75.6919   45.4215         High income
## 3546                <NA>       <NA>      <NA>                <NA>
## 3547                <NA>       <NA>      <NA>                <NA>
## 3548                <NA>       <NA>      <NA>                <NA>
## 3549                <NA>       <NA>      <NA>                <NA>
## 3550                <NA>       <NA>      <NA>                <NA>
## 3551                <NA>       <NA>      <NA>                <NA>
## 3552                <NA>       <NA>      <NA>                <NA>
## 3553                <NA>       <NA>      <NA>                <NA>
## 3554                <NA>       <NA>      <NA>                <NA>
## 3555                <NA>       <NA>      <NA>                <NA>
## 3556                <NA>       <NA>      <NA>                <NA>
## 3557                <NA>       <NA>      <NA>                <NA>
## 3558                <NA>       <NA>      <NA>                <NA>
## 3559                <NA>       <NA>      <NA>                <NA>
## 3560                <NA>       <NA>      <NA>                <NA>
## 3561                <NA>       <NA>      <NA>                <NA>
## 3562                <NA>       <NA>      <NA>                <NA>
## 3563                <NA>       <NA>      <NA>                <NA>
## 3564                <NA>       <NA>      <NA>                <NA>
## 3565                <NA>       <NA>      <NA>                <NA>
## 3566                <NA>       <NA>      <NA>                <NA>
## 3567                <NA>       <NA>      <NA>                <NA>
## 3568                <NA>       <NA>      <NA>                <NA>
## 3569                <NA>       <NA>      <NA>                <NA>
## 3570                <NA>       <NA>      <NA>                <NA>
## 3571                <NA>       <NA>      <NA>                <NA>
## 3572                <NA>       <NA>      <NA>                <NA>
## 3573                <NA>       <NA>      <NA>                <NA>
## 3574                <NA>       <NA>      <NA>                <NA>
## 3575                <NA>       <NA>      <NA>                <NA>
## 3576                <NA>       <NA>      <NA>                <NA>
## 3577                <NA>       <NA>      <NA>                <NA>
## 3578                <NA>       <NA>      <NA>                <NA>
## 3579                <NA>       <NA>      <NA>                <NA>
## 3580                <NA>       <NA>      <NA>                <NA>
## 3581                <NA>       <NA>      <NA>                <NA>
## 3582                <NA>       <NA>      <NA>                <NA>
## 3583                <NA>       <NA>      <NA>                <NA>
## 3584                <NA>       <NA>      <NA>                <NA>
## 3585                <NA>       <NA>      <NA>                <NA>
## 3586                <NA>       <NA>      <NA>                <NA>
## 3587                <NA>       <NA>      <NA>                <NA>
## 3588                <NA>       <NA>      <NA>                <NA>
## 3589                <NA>       <NA>      <NA>                <NA>
## 3590                <NA>       <NA>      <NA>                <NA>
## 3591                <NA>       <NA>      <NA>                <NA>
## 3592                <NA>       <NA>      <NA>                <NA>
## 3593                <NA>       <NA>      <NA>                <NA>
## 3594                <NA>       <NA>      <NA>                <NA>
## 3595                <NA>       <NA>      <NA>                <NA>
## 3596                <NA>       <NA>      <NA>                <NA>
## 3597                <NA>       <NA>      <NA>                <NA>
## 3598                <NA>       <NA>      <NA>                <NA>
## 3599                <NA>       <NA>      <NA>                <NA>
## 3600                <NA>       <NA>      <NA>                <NA>
## 3601                <NA>       <NA>      <NA>                <NA>
## 3602                <NA>       <NA>      <NA>                <NA>
## 3603                <NA>       <NA>      <NA>                <NA>
## 3604                <NA>       <NA>      <NA>                <NA>
## 3605                <NA>       <NA>      <NA>                <NA>
## 3606                <NA>       <NA>      <NA>                <NA>
## 3607                <NA>       <NA>      <NA>                <NA>
## 3608                <NA>       <NA>      <NA>                <NA>
## 3609                <NA>       <NA>      <NA>                <NA>
## 3610                <NA>       <NA>      <NA>                <NA>
## 3611                <NA>       <NA>      <NA>                <NA>
## 3612                <NA>       <NA>      <NA>                <NA>
## 3613                <NA>       <NA>      <NA>                <NA>
## 3614                                                   Aggregates
## 3615                                                   Aggregates
## 3616                                                   Aggregates
## 3617                                                   Aggregates
## 3618                                                   Aggregates
## 3619                                                   Aggregates
## 3620                                                   Aggregates
## 3621                                                   Aggregates
## 3622                                                   Aggregates
## 3623                                                   Aggregates
## 3624                                                   Aggregates
## 3625                                                   Aggregates
## 3626                                                   Aggregates
## 3627                                                   Aggregates
## 3628                                                   Aggregates
## 3629                                                   Aggregates
## 3630                                                   Aggregates
## 3631                                                   Aggregates
## 3632                                                   Aggregates
## 3633                                                   Aggregates
## 3634                                                   Aggregates
## 3635                                                   Aggregates
## 3636                                                   Aggregates
## 3637                                                   Aggregates
## 3638                                                   Aggregates
## 3639                                                   Aggregates
## 3640                                                   Aggregates
## 3641                                                   Aggregates
## 3642                                                   Aggregates
## 3643                                                   Aggregates
## 3644                                                   Aggregates
## 3645                                                   Aggregates
## 3646                                                   Aggregates
## 3647                                                   Aggregates
## 3648                                                   Aggregates
## 3649                                                   Aggregates
## 3650                                                   Aggregates
## 3651                                                   Aggregates
## 3652                                                   Aggregates
## 3653                                                   Aggregates
## 3654                                                   Aggregates
## 3655                                                   Aggregates
## 3656                                                   Aggregates
## 3657                                                   Aggregates
## 3658                                                   Aggregates
## 3659                                                   Aggregates
## 3660                                                   Aggregates
## 3661                                                   Aggregates
## 3662                                                   Aggregates
## 3663                                                   Aggregates
## 3664                                                   Aggregates
## 3665                                                   Aggregates
## 3666                                                   Aggregates
## 3667                                                   Aggregates
## 3668                                                   Aggregates
## 3669                                                   Aggregates
## 3670                                                   Aggregates
## 3671                                                   Aggregates
## 3672                                                   Aggregates
## 3673                                                   Aggregates
## 3674                                                   Aggregates
## 3675                                                   Aggregates
## 3676                                                   Aggregates
## 3677                <NA>       <NA>      <NA>                <NA>
## 3678                <NA>       <NA>      <NA>                <NA>
## 3679                <NA>       <NA>      <NA>                <NA>
## 3680                <NA>       <NA>      <NA>                <NA>
## 3681                <NA>       <NA>      <NA>                <NA>
## 3682                <NA>       <NA>      <NA>                <NA>
## 3683                <NA>       <NA>      <NA>                <NA>
## 3684                <NA>       <NA>      <NA>                <NA>
## 3685                <NA>       <NA>      <NA>                <NA>
## 3686                <NA>       <NA>      <NA>                <NA>
## 3687                <NA>       <NA>      <NA>                <NA>
## 3688                <NA>       <NA>      <NA>                <NA>
## 3689                <NA>       <NA>      <NA>                <NA>
## 3690                <NA>       <NA>      <NA>                <NA>
## 3691                <NA>       <NA>      <NA>                <NA>
## 3692                <NA>       <NA>      <NA>                <NA>
## 3693                <NA>       <NA>      <NA>                <NA>
## 3694                <NA>       <NA>      <NA>                <NA>
## 3695                <NA>       <NA>      <NA>                <NA>
## 3696                <NA>       <NA>      <NA>                <NA>
## 3697                <NA>       <NA>      <NA>                <NA>
## 3698                <NA>       <NA>      <NA>                <NA>
## 3699                <NA>       <NA>      <NA>                <NA>
## 3700                <NA>       <NA>      <NA>                <NA>
## 3701                <NA>       <NA>      <NA>                <NA>
## 3702                <NA>       <NA>      <NA>                <NA>
## 3703                <NA>       <NA>      <NA>                <NA>
## 3704                <NA>       <NA>      <NA>                <NA>
## 3705                <NA>       <NA>      <NA>                <NA>
## 3706                <NA>       <NA>      <NA>                <NA>
## 3707                <NA>       <NA>      <NA>                <NA>
## 3708                <NA>       <NA>      <NA>                <NA>
## 3709                <NA>       <NA>      <NA>                <NA>
## 3710                <NA>       <NA>      <NA>                <NA>
## 3711         George Town   -81.3857   19.3022         High income
## 3712         George Town   -81.3857   19.3022         High income
## 3713         George Town   -81.3857   19.3022         High income
## 3714         George Town   -81.3857   19.3022         High income
## 3715         George Town   -81.3857   19.3022         High income
## 3716         George Town   -81.3857   19.3022         High income
## 3717         George Town   -81.3857   19.3022         High income
## 3718         George Town   -81.3857   19.3022         High income
## 3719         George Town   -81.3857   19.3022         High income
## 3720         George Town   -81.3857   19.3022         High income
## 3721         George Town   -81.3857   19.3022         High income
## 3722         George Town   -81.3857   19.3022         High income
## 3723         George Town   -81.3857   19.3022         High income
## 3724         George Town   -81.3857   19.3022         High income
## 3725         George Town   -81.3857   19.3022         High income
## 3726         George Town   -81.3857   19.3022         High income
## 3727         George Town   -81.3857   19.3022         High income
## 3728         George Town   -81.3857   19.3022         High income
## 3729         George Town   -81.3857   19.3022         High income
## 3730         George Town   -81.3857   19.3022         High income
## 3731         George Town   -81.3857   19.3022         High income
## 3732         George Town   -81.3857   19.3022         High income
## 3733         George Town   -81.3857   19.3022         High income
## 3734         George Town   -81.3857   19.3022         High income
## 3735         George Town   -81.3857   19.3022         High income
## 3736         George Town   -81.3857   19.3022         High income
## 3737         George Town   -81.3857   19.3022         High income
## 3738         George Town   -81.3857   19.3022         High income
## 3739         George Town   -81.3857   19.3022         High income
## 3740         George Town   -81.3857   19.3022         High income
## 3741         George Town   -81.3857   19.3022         High income
## 3742         George Town   -81.3857   19.3022         High income
## 3743         George Town   -81.3857   19.3022         High income
## 3744         George Town   -81.3857   19.3022         High income
## 3745         George Town   -81.3857   19.3022         High income
## 3746         George Town   -81.3857   19.3022         High income
## 3747         George Town   -81.3857   19.3022         High income
## 3748         George Town   -81.3857   19.3022         High income
## 3749         George Town   -81.3857   19.3022         High income
## 3750         George Town   -81.3857   19.3022         High income
## 3751         George Town   -81.3857   19.3022         High income
## 3752         George Town   -81.3857   19.3022         High income
## 3753         George Town   -81.3857   19.3022         High income
## 3754         George Town   -81.3857   19.3022         High income
## 3755         George Town   -81.3857   19.3022         High income
## 3756         George Town   -81.3857   19.3022         High income
## 3757         George Town   -81.3857   19.3022         High income
## 3758         George Town   -81.3857   19.3022         High income
## 3759         George Town   -81.3857   19.3022         High income
## 3760         George Town   -81.3857   19.3022         High income
## 3761         George Town   -81.3857   19.3022         High income
## 3762         George Town   -81.3857   19.3022         High income
## 3763         George Town   -81.3857   19.3022         High income
## 3764         George Town   -81.3857   19.3022         High income
## 3765         George Town   -81.3857   19.3022         High income
## 3766         George Town   -81.3857   19.3022         High income
## 3767         George Town   -81.3857   19.3022         High income
## 3768         George Town   -81.3857   19.3022         High income
## 3769         George Town   -81.3857   19.3022         High income
## 3770         George Town   -81.3857   19.3022         High income
## 3771         George Town   -81.3857   19.3022         High income
## 3772         George Town   -81.3857   19.3022         High income
## 3773         George Town   -81.3857   19.3022         High income
## 3774                <NA>       <NA>      <NA>                <NA>
## 3775                <NA>       <NA>      <NA>                <NA>
## 3776                <NA>       <NA>      <NA>                <NA>
## 3777                <NA>       <NA>      <NA>                <NA>
## 3778                <NA>       <NA>      <NA>                <NA>
## 3779                <NA>       <NA>      <NA>                <NA>
## 3780                <NA>       <NA>      <NA>                <NA>
## 3781                <NA>       <NA>      <NA>                <NA>
## 3782                <NA>       <NA>      <NA>                <NA>
## 3783                <NA>       <NA>      <NA>                <NA>
## 3784                <NA>       <NA>      <NA>                <NA>
## 3785                <NA>       <NA>      <NA>                <NA>
## 3786                <NA>       <NA>      <NA>                <NA>
## 3787                <NA>       <NA>      <NA>                <NA>
## 3788                <NA>       <NA>      <NA>                <NA>
## 3789                <NA>       <NA>      <NA>                <NA>
## 3790                <NA>       <NA>      <NA>                <NA>
## 3791                <NA>       <NA>      <NA>                <NA>
## 3792                <NA>       <NA>      <NA>                <NA>
## 3793                <NA>       <NA>      <NA>                <NA>
## 3794                <NA>       <NA>      <NA>                <NA>
## 3795                <NA>       <NA>      <NA>                <NA>
## 3796                <NA>       <NA>      <NA>                <NA>
## 3797                <NA>       <NA>      <NA>                <NA>
## 3798                <NA>       <NA>      <NA>                <NA>
## 3799                <NA>       <NA>      <NA>                <NA>
## 3800                <NA>       <NA>      <NA>                <NA>
## 3801                <NA>       <NA>      <NA>                <NA>
## 3802                <NA>       <NA>      <NA>                <NA>
## 3803                <NA>       <NA>      <NA>                <NA>
## 3804                <NA>       <NA>      <NA>                <NA>
## 3805                <NA>       <NA>      <NA>                <NA>
## 3806                <NA>       <NA>      <NA>                <NA>
## 3807                <NA>       <NA>      <NA>                <NA>
## 3808              Bangui    21.6407   5.63056          Low income
## 3809              Bangui    21.6407   5.63056          Low income
## 3810              Bangui    21.6407   5.63056          Low income
## 3811              Bangui    21.6407   5.63056          Low income
## 3812              Bangui    21.6407   5.63056          Low income
## 3813              Bangui    21.6407   5.63056          Low income
## 3814              Bangui    21.6407   5.63056          Low income
## 3815              Bangui    21.6407   5.63056          Low income
## 3816              Bangui    21.6407   5.63056          Low income
## 3817              Bangui    21.6407   5.63056          Low income
## 3818              Bangui    21.6407   5.63056          Low income
## 3819              Bangui    21.6407   5.63056          Low income
## 3820              Bangui    21.6407   5.63056          Low income
## 3821              Bangui    21.6407   5.63056          Low income
## 3822              Bangui    21.6407   5.63056          Low income
## 3823              Bangui    21.6407   5.63056          Low income
## 3824              Bangui    21.6407   5.63056          Low income
## 3825              Bangui    21.6407   5.63056          Low income
## 3826              Bangui    21.6407   5.63056          Low income
## 3827              Bangui    21.6407   5.63056          Low income
## 3828              Bangui    21.6407   5.63056          Low income
## 3829              Bangui    21.6407   5.63056          Low income
## 3830              Bangui    21.6407   5.63056          Low income
## 3831              Bangui    21.6407   5.63056          Low income
## 3832              Bangui    21.6407   5.63056          Low income
## 3833              Bangui    21.6407   5.63056          Low income
## 3834              Bangui    21.6407   5.63056          Low income
## 3835              Bangui    21.6407   5.63056          Low income
## 3836              Bangui    21.6407   5.63056          Low income
## 3837              Bangui    21.6407   5.63056          Low income
## 3838              Bangui    21.6407   5.63056          Low income
## 3839              Bangui    21.6407   5.63056          Low income
## 3840              Bangui    21.6407   5.63056          Low income
## 3841              Bangui    21.6407   5.63056          Low income
## 3842              Bangui    21.6407   5.63056          Low income
## 3843              Bangui    21.6407   5.63056          Low income
## 3844              Bangui    21.6407   5.63056          Low income
## 3845              Bangui    21.6407   5.63056          Low income
## 3846              Bangui    21.6407   5.63056          Low income
## 3847              Bangui    21.6407   5.63056          Low income
## 3848              Bangui    21.6407   5.63056          Low income
## 3849              Bangui    21.6407   5.63056          Low income
## 3850              Bangui    21.6407   5.63056          Low income
## 3851              Bangui    21.6407   5.63056          Low income
## 3852              Bangui    21.6407   5.63056          Low income
## 3853              Bangui    21.6407   5.63056          Low income
## 3854              Bangui    21.6407   5.63056          Low income
## 3855              Bangui    21.6407   5.63056          Low income
## 3856              Bangui    21.6407   5.63056          Low income
## 3857              Bangui    21.6407   5.63056          Low income
## 3858              Bangui    21.6407   5.63056          Low income
## 3859              Bangui    21.6407   5.63056          Low income
## 3860              Bangui    21.6407   5.63056          Low income
## 3861              Bangui    21.6407   5.63056          Low income
## 3862              Bangui    21.6407   5.63056          Low income
## 3863              Bangui    21.6407   5.63056          Low income
## 3864              Bangui    21.6407   5.63056          Low income
## 3865              Bangui    21.6407   5.63056          Low income
## 3866              Bangui    21.6407   5.63056          Low income
## 3867              Bangui    21.6407   5.63056          Low income
## 3868              Bangui    21.6407   5.63056          Low income
## 3869              Bangui    21.6407   5.63056          Low income
## 3870              Bangui    21.6407   5.63056          Low income
## 3871                                                   Aggregates
## 3872                                                   Aggregates
## 3873                                                   Aggregates
## 3874                                                   Aggregates
## 3875                                                   Aggregates
## 3876                                                   Aggregates
## 3877                                                   Aggregates
## 3878                                                   Aggregates
## 3879                                                   Aggregates
## 3880                                                   Aggregates
## 3881                                                   Aggregates
## 3882                                                   Aggregates
## 3883                                                   Aggregates
## 3884                                                   Aggregates
## 3885                                                   Aggregates
## 3886                                                   Aggregates
## 3887                                                   Aggregates
## 3888                                                   Aggregates
## 3889                                                   Aggregates
## 3890                                                   Aggregates
## 3891                                                   Aggregates
## 3892                                                   Aggregates
## 3893                                                   Aggregates
## 3894                                                   Aggregates
## 3895                                                   Aggregates
## 3896                                                   Aggregates
## 3897                                                   Aggregates
## 3898                                                   Aggregates
## 3899                                                   Aggregates
## 3900                                                   Aggregates
## 3901                                                   Aggregates
## 3902                                                   Aggregates
## 3903                                                   Aggregates
## 3904                                                   Aggregates
## 3905                                                   Aggregates
## 3906                                                   Aggregates
## 3907                                                   Aggregates
## 3908                                                   Aggregates
## 3909                                                   Aggregates
## 3910                                                   Aggregates
## 3911                                                   Aggregates
## 3912                                                   Aggregates
## 3913                                                   Aggregates
## 3914                                                   Aggregates
## 3915                                                   Aggregates
## 3916                                                   Aggregates
## 3917                                                   Aggregates
## 3918                                                   Aggregates
## 3919                                                   Aggregates
## 3920                                                   Aggregates
## 3921                                                   Aggregates
## 3922                                                   Aggregates
## 3923                                                   Aggregates
## 3924                                                   Aggregates
## 3925                                                   Aggregates
## 3926                                                   Aggregates
## 3927                                                   Aggregates
## 3928                                                   Aggregates
## 3929                                                   Aggregates
## 3930                                                   Aggregates
## 3931                                                   Aggregates
## 3932                                                   Aggregates
## 3933                                                   Aggregates
## 3934                <NA>       <NA>      <NA>                <NA>
## 3935                <NA>       <NA>      <NA>                <NA>
## 3936                <NA>       <NA>      <NA>                <NA>
## 3937                <NA>       <NA>      <NA>                <NA>
## 3938                <NA>       <NA>      <NA>                <NA>
## 3939                <NA>       <NA>      <NA>                <NA>
## 3940                <NA>       <NA>      <NA>                <NA>
## 3941                <NA>       <NA>      <NA>                <NA>
## 3942                <NA>       <NA>      <NA>                <NA>
## 3943                <NA>       <NA>      <NA>                <NA>
## 3944                <NA>       <NA>      <NA>                <NA>
## 3945                <NA>       <NA>      <NA>                <NA>
## 3946                <NA>       <NA>      <NA>                <NA>
## 3947                <NA>       <NA>      <NA>                <NA>
## 3948                <NA>       <NA>      <NA>                <NA>
## 3949                <NA>       <NA>      <NA>                <NA>
## 3950                <NA>       <NA>      <NA>                <NA>
## 3951                <NA>       <NA>      <NA>                <NA>
## 3952                <NA>       <NA>      <NA>                <NA>
## 3953                <NA>       <NA>      <NA>                <NA>
## 3954                <NA>       <NA>      <NA>                <NA>
## 3955                <NA>       <NA>      <NA>                <NA>
## 3956                <NA>       <NA>      <NA>                <NA>
## 3957                <NA>       <NA>      <NA>                <NA>
## 3958                <NA>       <NA>      <NA>                <NA>
## 3959                <NA>       <NA>      <NA>                <NA>
## 3960                <NA>       <NA>      <NA>                <NA>
## 3961                <NA>       <NA>      <NA>                <NA>
## 3962                <NA>       <NA>      <NA>                <NA>
## 3963                <NA>       <NA>      <NA>                <NA>
## 3964                <NA>       <NA>      <NA>                <NA>
## 3965                <NA>       <NA>      <NA>                <NA>
## 3966                <NA>       <NA>      <NA>                <NA>
## 3967                <NA>       <NA>      <NA>                <NA>
## 3968           N'Djamena    15.0445   12.1048          Low income
## 3969           N'Djamena    15.0445   12.1048          Low income
## 3970           N'Djamena    15.0445   12.1048          Low income
## 3971           N'Djamena    15.0445   12.1048          Low income
## 3972           N'Djamena    15.0445   12.1048          Low income
## 3973           N'Djamena    15.0445   12.1048          Low income
## 3974           N'Djamena    15.0445   12.1048          Low income
## 3975           N'Djamena    15.0445   12.1048          Low income
## 3976           N'Djamena    15.0445   12.1048          Low income
## 3977           N'Djamena    15.0445   12.1048          Low income
## 3978           N'Djamena    15.0445   12.1048          Low income
## 3979           N'Djamena    15.0445   12.1048          Low income
## 3980           N'Djamena    15.0445   12.1048          Low income
## 3981           N'Djamena    15.0445   12.1048          Low income
## 3982           N'Djamena    15.0445   12.1048          Low income
## 3983           N'Djamena    15.0445   12.1048          Low income
## 3984           N'Djamena    15.0445   12.1048          Low income
## 3985           N'Djamena    15.0445   12.1048          Low income
## 3986           N'Djamena    15.0445   12.1048          Low income
## 3987           N'Djamena    15.0445   12.1048          Low income
## 3988           N'Djamena    15.0445   12.1048          Low income
## 3989           N'Djamena    15.0445   12.1048          Low income
## 3990           N'Djamena    15.0445   12.1048          Low income
## 3991           N'Djamena    15.0445   12.1048          Low income
## 3992           N'Djamena    15.0445   12.1048          Low income
## 3993           N'Djamena    15.0445   12.1048          Low income
## 3994           N'Djamena    15.0445   12.1048          Low income
## 3995           N'Djamena    15.0445   12.1048          Low income
## 3996           N'Djamena    15.0445   12.1048          Low income
## 3997           N'Djamena    15.0445   12.1048          Low income
## 3998           N'Djamena    15.0445   12.1048          Low income
## 3999           N'Djamena    15.0445   12.1048          Low income
## 4000           N'Djamena    15.0445   12.1048          Low income
## 4001           N'Djamena    15.0445   12.1048          Low income
## 4002           N'Djamena    15.0445   12.1048          Low income
## 4003           N'Djamena    15.0445   12.1048          Low income
## 4004           N'Djamena    15.0445   12.1048          Low income
## 4005           N'Djamena    15.0445   12.1048          Low income
## 4006           N'Djamena    15.0445   12.1048          Low income
## 4007           N'Djamena    15.0445   12.1048          Low income
## 4008           N'Djamena    15.0445   12.1048          Low income
## 4009           N'Djamena    15.0445   12.1048          Low income
## 4010           N'Djamena    15.0445   12.1048          Low income
## 4011           N'Djamena    15.0445   12.1048          Low income
## 4012           N'Djamena    15.0445   12.1048          Low income
## 4013           N'Djamena    15.0445   12.1048          Low income
## 4014           N'Djamena    15.0445   12.1048          Low income
## 4015           N'Djamena    15.0445   12.1048          Low income
## 4016           N'Djamena    15.0445   12.1048          Low income
## 4017           N'Djamena    15.0445   12.1048          Low income
## 4018           N'Djamena    15.0445   12.1048          Low income
## 4019           N'Djamena    15.0445   12.1048          Low income
## 4020           N'Djamena    15.0445   12.1048          Low income
## 4021           N'Djamena    15.0445   12.1048          Low income
## 4022           N'Djamena    15.0445   12.1048          Low income
## 4023           N'Djamena    15.0445   12.1048          Low income
## 4024           N'Djamena    15.0445   12.1048          Low income
## 4025           N'Djamena    15.0445   12.1048          Low income
## 4026           N'Djamena    15.0445   12.1048          Low income
## 4027           N'Djamena    15.0445   12.1048          Low income
## 4028           N'Djamena    15.0445   12.1048          Low income
## 4029           N'Djamena    15.0445   12.1048          Low income
## 4030           N'Djamena    15.0445   12.1048          Low income
## 4031                                                  High income
## 4032                                                  High income
## 4033                                                  High income
## 4034                                                  High income
## 4035                                                  High income
## 4036                                                  High income
## 4037                                                  High income
## 4038                                                  High income
## 4039                                                  High income
## 4040                                                  High income
## 4041                                                  High income
## 4042                                                  High income
## 4043                                                  High income
## 4044                                                  High income
## 4045                                                  High income
## 4046                                                  High income
## 4047                                                  High income
## 4048                                                  High income
## 4049                                                  High income
## 4050                                                  High income
## 4051                                                  High income
## 4052                                                  High income
## 4053                                                  High income
## 4054                                                  High income
## 4055                                                  High income
## 4056                                                  High income
## 4057                                                  High income
## 4058                                                  High income
## 4059                                                  High income
## 4060                                                  High income
## 4061                                                  High income
## 4062                                                  High income
## 4063                                                  High income
## 4064                                                  High income
## 4065                                                  High income
## 4066                                                  High income
## 4067                                                  High income
## 4068                                                  High income
## 4069                                                  High income
## 4070                                                  High income
## 4071                                                  High income
## 4072                                                  High income
## 4073                                                  High income
## 4074                                                  High income
## 4075                                                  High income
## 4076                                                  High income
## 4077                                                  High income
## 4078                                                  High income
## 4079                                                  High income
## 4080                                                  High income
## 4081                                                  High income
## 4082                                                  High income
## 4083                                                  High income
## 4084                                                  High income
## 4085                                                  High income
## 4086                                                  High income
## 4087                                                  High income
## 4088                                                  High income
## 4089                                                  High income
## 4090                                                  High income
## 4091                                                  High income
## 4092                                                  High income
## 4093                                                  High income
## 4094                <NA>       <NA>      <NA>                <NA>
## 4095                <NA>       <NA>      <NA>                <NA>
## 4096                <NA>       <NA>      <NA>                <NA>
## 4097                <NA>       <NA>      <NA>                <NA>
## 4098                <NA>       <NA>      <NA>                <NA>
## 4099                <NA>       <NA>      <NA>                <NA>
## 4100                <NA>       <NA>      <NA>                <NA>
## 4101                <NA>       <NA>      <NA>                <NA>
## 4102                <NA>       <NA>      <NA>                <NA>
## 4103                <NA>       <NA>      <NA>                <NA>
## 4104                <NA>       <NA>      <NA>                <NA>
## 4105                <NA>       <NA>      <NA>                <NA>
## 4106                <NA>       <NA>      <NA>                <NA>
## 4107                <NA>       <NA>      <NA>                <NA>
## 4108                <NA>       <NA>      <NA>                <NA>
## 4109                <NA>       <NA>      <NA>                <NA>
## 4110                <NA>       <NA>      <NA>                <NA>
## 4111                <NA>       <NA>      <NA>                <NA>
## 4112                <NA>       <NA>      <NA>                <NA>
## 4113                <NA>       <NA>      <NA>                <NA>
## 4114                <NA>       <NA>      <NA>                <NA>
## 4115                <NA>       <NA>      <NA>                <NA>
## 4116                <NA>       <NA>      <NA>                <NA>
## 4117                <NA>       <NA>      <NA>                <NA>
## 4118                <NA>       <NA>      <NA>                <NA>
## 4119                <NA>       <NA>      <NA>                <NA>
## 4120                <NA>       <NA>      <NA>                <NA>
## 4121                <NA>       <NA>      <NA>                <NA>
## 4122                <NA>       <NA>      <NA>                <NA>
## 4123                <NA>       <NA>      <NA>                <NA>
## 4124                <NA>       <NA>      <NA>                <NA>
## 4125                <NA>       <NA>      <NA>                <NA>
## 4126                <NA>       <NA>      <NA>                <NA>
## 4127                <NA>       <NA>      <NA>                <NA>
## 4128            Santiago   -70.6475   -33.475         High income
## 4129            Santiago   -70.6475   -33.475         High income
## 4130            Santiago   -70.6475   -33.475         High income
## 4131            Santiago   -70.6475   -33.475         High income
## 4132            Santiago   -70.6475   -33.475         High income
## 4133            Santiago   -70.6475   -33.475         High income
## 4134            Santiago   -70.6475   -33.475         High income
## 4135            Santiago   -70.6475   -33.475         High income
## 4136            Santiago   -70.6475   -33.475         High income
## 4137            Santiago   -70.6475   -33.475         High income
## 4138            Santiago   -70.6475   -33.475         High income
## 4139            Santiago   -70.6475   -33.475         High income
## 4140            Santiago   -70.6475   -33.475         High income
## 4141            Santiago   -70.6475   -33.475         High income
## 4142            Santiago   -70.6475   -33.475         High income
## 4143            Santiago   -70.6475   -33.475         High income
## 4144            Santiago   -70.6475   -33.475         High income
## 4145            Santiago   -70.6475   -33.475         High income
## 4146            Santiago   -70.6475   -33.475         High income
## 4147            Santiago   -70.6475   -33.475         High income
## 4148            Santiago   -70.6475   -33.475         High income
## 4149            Santiago   -70.6475   -33.475         High income
## 4150            Santiago   -70.6475   -33.475         High income
## 4151            Santiago   -70.6475   -33.475         High income
## 4152            Santiago   -70.6475   -33.475         High income
## 4153            Santiago   -70.6475   -33.475         High income
## 4154            Santiago   -70.6475   -33.475         High income
## 4155            Santiago   -70.6475   -33.475         High income
## 4156            Santiago   -70.6475   -33.475         High income
## 4157            Santiago   -70.6475   -33.475         High income
## 4158            Santiago   -70.6475   -33.475         High income
## 4159            Santiago   -70.6475   -33.475         High income
## 4160            Santiago   -70.6475   -33.475         High income
## 4161            Santiago   -70.6475   -33.475         High income
## 4162            Santiago   -70.6475   -33.475         High income
## 4163            Santiago   -70.6475   -33.475         High income
## 4164            Santiago   -70.6475   -33.475         High income
## 4165            Santiago   -70.6475   -33.475         High income
## 4166            Santiago   -70.6475   -33.475         High income
## 4167            Santiago   -70.6475   -33.475         High income
## 4168            Santiago   -70.6475   -33.475         High income
## 4169            Santiago   -70.6475   -33.475         High income
## 4170            Santiago   -70.6475   -33.475         High income
## 4171            Santiago   -70.6475   -33.475         High income
## 4172            Santiago   -70.6475   -33.475         High income
## 4173            Santiago   -70.6475   -33.475         High income
## 4174            Santiago   -70.6475   -33.475         High income
## 4175            Santiago   -70.6475   -33.475         High income
## 4176            Santiago   -70.6475   -33.475         High income
## 4177            Santiago   -70.6475   -33.475         High income
## 4178            Santiago   -70.6475   -33.475         High income
## 4179            Santiago   -70.6475   -33.475         High income
## 4180            Santiago   -70.6475   -33.475         High income
## 4181            Santiago   -70.6475   -33.475         High income
## 4182            Santiago   -70.6475   -33.475         High income
## 4183            Santiago   -70.6475   -33.475         High income
## 4184            Santiago   -70.6475   -33.475         High income
## 4185            Santiago   -70.6475   -33.475         High income
## 4186            Santiago   -70.6475   -33.475         High income
## 4187            Santiago   -70.6475   -33.475         High income
## 4188            Santiago   -70.6475   -33.475         High income
## 4189            Santiago   -70.6475   -33.475         High income
## 4190            Santiago   -70.6475   -33.475         High income
## 4191                <NA>       <NA>      <NA>                <NA>
## 4192                <NA>       <NA>      <NA>                <NA>
## 4193                <NA>       <NA>      <NA>                <NA>
## 4194                <NA>       <NA>      <NA>                <NA>
## 4195                <NA>       <NA>      <NA>                <NA>
## 4196                <NA>       <NA>      <NA>                <NA>
## 4197                <NA>       <NA>      <NA>                <NA>
## 4198                <NA>       <NA>      <NA>                <NA>
## 4199                <NA>       <NA>      <NA>                <NA>
## 4200                <NA>       <NA>      <NA>                <NA>
## 4201                <NA>       <NA>      <NA>                <NA>
## 4202                <NA>       <NA>      <NA>                <NA>
## 4203                <NA>       <NA>      <NA>                <NA>
## 4204                <NA>       <NA>      <NA>                <NA>
## 4205                <NA>       <NA>      <NA>                <NA>
## 4206                <NA>       <NA>      <NA>                <NA>
## 4207                <NA>       <NA>      <NA>                <NA>
## 4208                <NA>       <NA>      <NA>                <NA>
## 4209                <NA>       <NA>      <NA>                <NA>
## 4210                <NA>       <NA>      <NA>                <NA>
## 4211                <NA>       <NA>      <NA>                <NA>
## 4212                <NA>       <NA>      <NA>                <NA>
## 4213                <NA>       <NA>      <NA>                <NA>
## 4214                <NA>       <NA>      <NA>                <NA>
## 4215                <NA>       <NA>      <NA>                <NA>
## 4216                <NA>       <NA>      <NA>                <NA>
## 4217                <NA>       <NA>      <NA>                <NA>
## 4218                <NA>       <NA>      <NA>                <NA>
## 4219                <NA>       <NA>      <NA>                <NA>
## 4220                <NA>       <NA>      <NA>                <NA>
## 4221                <NA>       <NA>      <NA>                <NA>
## 4222                <NA>       <NA>      <NA>                <NA>
## 4223                <NA>       <NA>      <NA>                <NA>
## 4224                <NA>       <NA>      <NA>                <NA>
## 4225             Beijing    116.286   40.0495 Upper middle income
## 4226             Beijing    116.286   40.0495 Upper middle income
## 4227             Beijing    116.286   40.0495 Upper middle income
## 4228             Beijing    116.286   40.0495 Upper middle income
## 4229             Beijing    116.286   40.0495 Upper middle income
## 4230             Beijing    116.286   40.0495 Upper middle income
## 4231             Beijing    116.286   40.0495 Upper middle income
## 4232             Beijing    116.286   40.0495 Upper middle income
## 4233             Beijing    116.286   40.0495 Upper middle income
## 4234             Beijing    116.286   40.0495 Upper middle income
## 4235             Beijing    116.286   40.0495 Upper middle income
## 4236             Beijing    116.286   40.0495 Upper middle income
## 4237             Beijing    116.286   40.0495 Upper middle income
## 4238             Beijing    116.286   40.0495 Upper middle income
## 4239             Beijing    116.286   40.0495 Upper middle income
## 4240             Beijing    116.286   40.0495 Upper middle income
## 4241             Beijing    116.286   40.0495 Upper middle income
## 4242             Beijing    116.286   40.0495 Upper middle income
## 4243             Beijing    116.286   40.0495 Upper middle income
## 4244             Beijing    116.286   40.0495 Upper middle income
## 4245             Beijing    116.286   40.0495 Upper middle income
## 4246             Beijing    116.286   40.0495 Upper middle income
## 4247             Beijing    116.286   40.0495 Upper middle income
## 4248             Beijing    116.286   40.0495 Upper middle income
## 4249             Beijing    116.286   40.0495 Upper middle income
## 4250             Beijing    116.286   40.0495 Upper middle income
## 4251             Beijing    116.286   40.0495 Upper middle income
## 4252             Beijing    116.286   40.0495 Upper middle income
## 4253             Beijing    116.286   40.0495 Upper middle income
## 4254             Beijing    116.286   40.0495 Upper middle income
## 4255             Beijing    116.286   40.0495 Upper middle income
## 4256             Beijing    116.286   40.0495 Upper middle income
## 4257             Beijing    116.286   40.0495 Upper middle income
## 4258             Beijing    116.286   40.0495 Upper middle income
## 4259             Beijing    116.286   40.0495 Upper middle income
## 4260             Beijing    116.286   40.0495 Upper middle income
## 4261             Beijing    116.286   40.0495 Upper middle income
## 4262             Beijing    116.286   40.0495 Upper middle income
## 4263             Beijing    116.286   40.0495 Upper middle income
## 4264             Beijing    116.286   40.0495 Upper middle income
## 4265             Beijing    116.286   40.0495 Upper middle income
## 4266             Beijing    116.286   40.0495 Upper middle income
## 4267             Beijing    116.286   40.0495 Upper middle income
## 4268             Beijing    116.286   40.0495 Upper middle income
## 4269             Beijing    116.286   40.0495 Upper middle income
## 4270             Beijing    116.286   40.0495 Upper middle income
## 4271             Beijing    116.286   40.0495 Upper middle income
## 4272             Beijing    116.286   40.0495 Upper middle income
## 4273             Beijing    116.286   40.0495 Upper middle income
## 4274             Beijing    116.286   40.0495 Upper middle income
## 4275             Beijing    116.286   40.0495 Upper middle income
## 4276             Beijing    116.286   40.0495 Upper middle income
## 4277             Beijing    116.286   40.0495 Upper middle income
## 4278             Beijing    116.286   40.0495 Upper middle income
## 4279             Beijing    116.286   40.0495 Upper middle income
## 4280             Beijing    116.286   40.0495 Upper middle income
## 4281             Beijing    116.286   40.0495 Upper middle income
## 4282             Beijing    116.286   40.0495 Upper middle income
## 4283             Beijing    116.286   40.0495 Upper middle income
## 4284             Beijing    116.286   40.0495 Upper middle income
## 4285             Beijing    116.286   40.0495 Upper middle income
## 4286             Beijing    116.286   40.0495 Upper middle income
## 4287             Beijing    116.286   40.0495 Upper middle income
## 4288              Bogota    -74.082   4.60987 Upper middle income
## 4289              Bogota    -74.082   4.60987 Upper middle income
## 4290              Bogota    -74.082   4.60987 Upper middle income
## 4291              Bogota    -74.082   4.60987 Upper middle income
## 4292              Bogota    -74.082   4.60987 Upper middle income
## 4293              Bogota    -74.082   4.60987 Upper middle income
## 4294              Bogota    -74.082   4.60987 Upper middle income
## 4295              Bogota    -74.082   4.60987 Upper middle income
## 4296              Bogota    -74.082   4.60987 Upper middle income
## 4297              Bogota    -74.082   4.60987 Upper middle income
## 4298              Bogota    -74.082   4.60987 Upper middle income
## 4299              Bogota    -74.082   4.60987 Upper middle income
## 4300              Bogota    -74.082   4.60987 Upper middle income
## 4301              Bogota    -74.082   4.60987 Upper middle income
## 4302              Bogota    -74.082   4.60987 Upper middle income
## 4303              Bogota    -74.082   4.60987 Upper middle income
## 4304              Bogota    -74.082   4.60987 Upper middle income
## 4305              Bogota    -74.082   4.60987 Upper middle income
## 4306              Bogota    -74.082   4.60987 Upper middle income
## 4307              Bogota    -74.082   4.60987 Upper middle income
## 4308              Bogota    -74.082   4.60987 Upper middle income
## 4309              Bogota    -74.082   4.60987 Upper middle income
## 4310              Bogota    -74.082   4.60987 Upper middle income
## 4311              Bogota    -74.082   4.60987 Upper middle income
## 4312              Bogota    -74.082   4.60987 Upper middle income
## 4313              Bogota    -74.082   4.60987 Upper middle income
## 4314              Bogota    -74.082   4.60987 Upper middle income
## 4315              Bogota    -74.082   4.60987 Upper middle income
## 4316              Bogota    -74.082   4.60987 Upper middle income
## 4317              Bogota    -74.082   4.60987 Upper middle income
## 4318              Bogota    -74.082   4.60987 Upper middle income
## 4319              Bogota    -74.082   4.60987 Upper middle income
## 4320              Bogota    -74.082   4.60987 Upper middle income
## 4321              Bogota    -74.082   4.60987 Upper middle income
## 4322              Bogota    -74.082   4.60987 Upper middle income
## 4323              Bogota    -74.082   4.60987 Upper middle income
## 4324              Bogota    -74.082   4.60987 Upper middle income
## 4325              Bogota    -74.082   4.60987 Upper middle income
## 4326              Bogota    -74.082   4.60987 Upper middle income
## 4327              Bogota    -74.082   4.60987 Upper middle income
## 4328              Bogota    -74.082   4.60987 Upper middle income
## 4329              Bogota    -74.082   4.60987 Upper middle income
## 4330              Bogota    -74.082   4.60987 Upper middle income
## 4331              Bogota    -74.082   4.60987 Upper middle income
## 4332              Bogota    -74.082   4.60987 Upper middle income
## 4333              Bogota    -74.082   4.60987 Upper middle income
## 4334              Bogota    -74.082   4.60987 Upper middle income
## 4335              Bogota    -74.082   4.60987 Upper middle income
## 4336              Bogota    -74.082   4.60987 Upper middle income
## 4337              Bogota    -74.082   4.60987 Upper middle income
## 4338              Bogota    -74.082   4.60987 Upper middle income
## 4339              Bogota    -74.082   4.60987 Upper middle income
## 4340              Bogota    -74.082   4.60987 Upper middle income
## 4341              Bogota    -74.082   4.60987 Upper middle income
## 4342              Bogota    -74.082   4.60987 Upper middle income
## 4343              Bogota    -74.082   4.60987 Upper middle income
## 4344              Bogota    -74.082   4.60987 Upper middle income
## 4345              Bogota    -74.082   4.60987 Upper middle income
## 4346              Bogota    -74.082   4.60987 Upper middle income
## 4347              Bogota    -74.082   4.60987 Upper middle income
## 4348              Bogota    -74.082   4.60987 Upper middle income
## 4349              Bogota    -74.082   4.60987 Upper middle income
## 4350              Bogota    -74.082   4.60987 Upper middle income
## 4351                <NA>       <NA>      <NA>                <NA>
## 4352                <NA>       <NA>      <NA>                <NA>
## 4353                <NA>       <NA>      <NA>                <NA>
## 4354                <NA>       <NA>      <NA>                <NA>
## 4355                <NA>       <NA>      <NA>                <NA>
## 4356                <NA>       <NA>      <NA>                <NA>
## 4357                <NA>       <NA>      <NA>                <NA>
## 4358                <NA>       <NA>      <NA>                <NA>
## 4359                <NA>       <NA>      <NA>                <NA>
## 4360                <NA>       <NA>      <NA>                <NA>
## 4361                <NA>       <NA>      <NA>                <NA>
## 4362                <NA>       <NA>      <NA>                <NA>
## 4363                <NA>       <NA>      <NA>                <NA>
## 4364                <NA>       <NA>      <NA>                <NA>
## 4365                <NA>       <NA>      <NA>                <NA>
## 4366                <NA>       <NA>      <NA>                <NA>
## 4367                <NA>       <NA>      <NA>                <NA>
## 4368                <NA>       <NA>      <NA>                <NA>
## 4369                <NA>       <NA>      <NA>                <NA>
## 4370                <NA>       <NA>      <NA>                <NA>
## 4371                <NA>       <NA>      <NA>                <NA>
## 4372                <NA>       <NA>      <NA>                <NA>
## 4373                <NA>       <NA>      <NA>                <NA>
## 4374                <NA>       <NA>      <NA>                <NA>
## 4375                <NA>       <NA>      <NA>                <NA>
## 4376                <NA>       <NA>      <NA>                <NA>
## 4377                <NA>       <NA>      <NA>                <NA>
## 4378                <NA>       <NA>      <NA>                <NA>
## 4379                <NA>       <NA>      <NA>                <NA>
## 4380                <NA>       <NA>      <NA>                <NA>
## 4381                <NA>       <NA>      <NA>                <NA>
## 4382                <NA>       <NA>      <NA>                <NA>
## 4383                <NA>       <NA>      <NA>                <NA>
## 4384                <NA>       <NA>      <NA>                <NA>
## 4385                <NA>       <NA>      <NA>                <NA>
## 4386                <NA>       <NA>      <NA>                <NA>
## 4387                <NA>       <NA>      <NA>                <NA>
## 4388                <NA>       <NA>      <NA>                <NA>
## 4389                <NA>       <NA>      <NA>                <NA>
## 4390                <NA>       <NA>      <NA>                <NA>
## 4391                <NA>       <NA>      <NA>                <NA>
## 4392                <NA>       <NA>      <NA>                <NA>
## 4393                <NA>       <NA>      <NA>                <NA>
## 4394                <NA>       <NA>      <NA>                <NA>
## 4395                <NA>       <NA>      <NA>                <NA>
## 4396                <NA>       <NA>      <NA>                <NA>
## 4397                <NA>       <NA>      <NA>                <NA>
## 4398                <NA>       <NA>      <NA>                <NA>
## 4399                <NA>       <NA>      <NA>                <NA>
## 4400                <NA>       <NA>      <NA>                <NA>
## 4401                <NA>       <NA>      <NA>                <NA>
## 4402                <NA>       <NA>      <NA>                <NA>
## 4403                <NA>       <NA>      <NA>                <NA>
## 4404                <NA>       <NA>      <NA>                <NA>
## 4405                <NA>       <NA>      <NA>                <NA>
## 4406                <NA>       <NA>      <NA>                <NA>
## 4407                <NA>       <NA>      <NA>                <NA>
## 4408                <NA>       <NA>      <NA>                <NA>
## 4409                <NA>       <NA>      <NA>                <NA>
## 4410                <NA>       <NA>      <NA>                <NA>
## 4411                <NA>       <NA>      <NA>                <NA>
## 4412                <NA>       <NA>      <NA>                <NA>
## 4413                <NA>       <NA>      <NA>                <NA>
## 4414                <NA>       <NA>      <NA>                <NA>
## 4415                <NA>       <NA>      <NA>                <NA>
## 4416                <NA>       <NA>      <NA>                <NA>
## 4417                <NA>       <NA>      <NA>                <NA>
## 4418                <NA>       <NA>      <NA>                <NA>
## 4419                <NA>       <NA>      <NA>                <NA>
## 4420                <NA>       <NA>      <NA>                <NA>
## 4421                <NA>       <NA>      <NA>                <NA>
## 4422                <NA>       <NA>      <NA>                <NA>
## 4423                <NA>       <NA>      <NA>                <NA>
## 4424                <NA>       <NA>      <NA>                <NA>
## 4425                <NA>       <NA>      <NA>                <NA>
## 4426                <NA>       <NA>      <NA>                <NA>
## 4427                <NA>       <NA>      <NA>                <NA>
## 4428                <NA>       <NA>      <NA>                <NA>
## 4429                <NA>       <NA>      <NA>                <NA>
## 4430                <NA>       <NA>      <NA>                <NA>
## 4431                <NA>       <NA>      <NA>                <NA>
## 4432                <NA>       <NA>      <NA>                <NA>
## 4433                <NA>       <NA>      <NA>                <NA>
## 4434                <NA>       <NA>      <NA>                <NA>
## 4435                <NA>       <NA>      <NA>                <NA>
## 4436                <NA>       <NA>      <NA>                <NA>
## 4437                <NA>       <NA>      <NA>                <NA>
## 4438                <NA>       <NA>      <NA>                <NA>
## 4439                <NA>       <NA>      <NA>                <NA>
## 4440                <NA>       <NA>      <NA>                <NA>
## 4441                <NA>       <NA>      <NA>                <NA>
## 4442                <NA>       <NA>      <NA>                <NA>
## 4443                <NA>       <NA>      <NA>                <NA>
## 4444                <NA>       <NA>      <NA>                <NA>
## 4445                <NA>       <NA>      <NA>                <NA>
## 4446                <NA>       <NA>      <NA>                <NA>
## 4447                <NA>       <NA>      <NA>                <NA>
## 4448                <NA>       <NA>      <NA>                <NA>
## 4449                <NA>       <NA>      <NA>                <NA>
## 4450                <NA>       <NA>      <NA>                <NA>
## 4451                <NA>       <NA>      <NA>                <NA>
## 4452                <NA>       <NA>      <NA>                <NA>
## 4453                <NA>       <NA>      <NA>                <NA>
## 4454                <NA>       <NA>      <NA>                <NA>
## 4455                <NA>       <NA>      <NA>                <NA>
## 4456                <NA>       <NA>      <NA>                <NA>
## 4457                <NA>       <NA>      <NA>                <NA>
## 4458                <NA>       <NA>      <NA>                <NA>
## 4459                <NA>       <NA>      <NA>                <NA>
## 4460                <NA>       <NA>      <NA>                <NA>
## 4461                <NA>       <NA>      <NA>                <NA>
## 4462                <NA>       <NA>      <NA>                <NA>
## 4463                <NA>       <NA>      <NA>                <NA>
## 4464                <NA>       <NA>      <NA>                <NA>
## 4465                <NA>       <NA>      <NA>                <NA>
## 4466                <NA>       <NA>      <NA>                <NA>
## 4467                <NA>       <NA>      <NA>                <NA>
## 4468                <NA>       <NA>      <NA>                <NA>
## 4469                <NA>       <NA>      <NA>                <NA>
## 4470                <NA>       <NA>      <NA>                <NA>
## 4471                <NA>       <NA>      <NA>                <NA>
## 4472                <NA>       <NA>      <NA>                <NA>
## 4473                <NA>       <NA>      <NA>                <NA>
## 4474                <NA>       <NA>      <NA>                <NA>
## 4475                <NA>       <NA>      <NA>                <NA>
## 4476                <NA>       <NA>      <NA>                <NA>
## 4477                <NA>       <NA>      <NA>                <NA>
## 4478                <NA>       <NA>      <NA>                <NA>
## 4479                <NA>       <NA>      <NA>                <NA>
## 4480                <NA>       <NA>      <NA>                <NA>
## 4481                <NA>       <NA>      <NA>                <NA>
## 4482                <NA>       <NA>      <NA>                <NA>
## 4483                <NA>       <NA>      <NA>                <NA>
## 4484                <NA>       <NA>      <NA>                <NA>
## 4485                <NA>       <NA>      <NA>                <NA>
## 4486                <NA>       <NA>      <NA>                <NA>
## 4487                <NA>       <NA>      <NA>                <NA>
## 4488                <NA>       <NA>      <NA>                <NA>
## 4489                <NA>       <NA>      <NA>                <NA>
## 4490                <NA>       <NA>      <NA>                <NA>
## 4491                <NA>       <NA>      <NA>                <NA>
## 4492                <NA>       <NA>      <NA>                <NA>
## 4493                <NA>       <NA>      <NA>                <NA>
## 4494                <NA>       <NA>      <NA>                <NA>
## 4495                <NA>       <NA>      <NA>                <NA>
## 4496                <NA>       <NA>      <NA>                <NA>
## 4497                <NA>       <NA>      <NA>                <NA>
## 4498                <NA>       <NA>      <NA>                <NA>
## 4499                <NA>       <NA>      <NA>                <NA>
## 4500                <NA>       <NA>      <NA>                <NA>
## 4501                <NA>       <NA>      <NA>                <NA>
## 4502                <NA>       <NA>      <NA>                <NA>
## 4503                <NA>       <NA>      <NA>                <NA>
## 4504                <NA>       <NA>      <NA>                <NA>
## 4505                <NA>       <NA>      <NA>                <NA>
## 4506                <NA>       <NA>      <NA>                <NA>
## 4507                <NA>       <NA>      <NA>                <NA>
## 4508                <NA>       <NA>      <NA>                <NA>
## 4509                <NA>       <NA>      <NA>                <NA>
## 4510                <NA>       <NA>      <NA>                <NA>
## 4511                <NA>       <NA>      <NA>                <NA>
## 4512                <NA>       <NA>      <NA>                <NA>
## 4513                <NA>       <NA>      <NA>                <NA>
## 4514                <NA>       <NA>      <NA>                <NA>
## 4515                <NA>       <NA>      <NA>                <NA>
## 4516                <NA>       <NA>      <NA>                <NA>
## 4517                <NA>       <NA>      <NA>                <NA>
## 4518                <NA>       <NA>      <NA>                <NA>
## 4519                <NA>       <NA>      <NA>                <NA>
## 4520                <NA>       <NA>      <NA>                <NA>
## 4521              Moroni    43.2418  -11.6986 Lower middle income
## 4522              Moroni    43.2418  -11.6986 Lower middle income
## 4523              Moroni    43.2418  -11.6986 Lower middle income
## 4524              Moroni    43.2418  -11.6986 Lower middle income
## 4525              Moroni    43.2418  -11.6986 Lower middle income
## 4526              Moroni    43.2418  -11.6986 Lower middle income
## 4527              Moroni    43.2418  -11.6986 Lower middle income
## 4528              Moroni    43.2418  -11.6986 Lower middle income
## 4529              Moroni    43.2418  -11.6986 Lower middle income
## 4530              Moroni    43.2418  -11.6986 Lower middle income
## 4531              Moroni    43.2418  -11.6986 Lower middle income
## 4532              Moroni    43.2418  -11.6986 Lower middle income
## 4533              Moroni    43.2418  -11.6986 Lower middle income
## 4534              Moroni    43.2418  -11.6986 Lower middle income
## 4535              Moroni    43.2418  -11.6986 Lower middle income
## 4536              Moroni    43.2418  -11.6986 Lower middle income
## 4537              Moroni    43.2418  -11.6986 Lower middle income
## 4538              Moroni    43.2418  -11.6986 Lower middle income
## 4539              Moroni    43.2418  -11.6986 Lower middle income
## 4540              Moroni    43.2418  -11.6986 Lower middle income
## 4541              Moroni    43.2418  -11.6986 Lower middle income
## 4542              Moroni    43.2418  -11.6986 Lower middle income
## 4543              Moroni    43.2418  -11.6986 Lower middle income
## 4544              Moroni    43.2418  -11.6986 Lower middle income
## 4545              Moroni    43.2418  -11.6986 Lower middle income
## 4546              Moroni    43.2418  -11.6986 Lower middle income
## 4547              Moroni    43.2418  -11.6986 Lower middle income
## 4548              Moroni    43.2418  -11.6986 Lower middle income
## 4549              Moroni    43.2418  -11.6986 Lower middle income
## 4550              Moroni    43.2418  -11.6986 Lower middle income
## 4551              Moroni    43.2418  -11.6986 Lower middle income
## 4552              Moroni    43.2418  -11.6986 Lower middle income
## 4553              Moroni    43.2418  -11.6986 Lower middle income
## 4554              Moroni    43.2418  -11.6986 Lower middle income
## 4555              Moroni    43.2418  -11.6986 Lower middle income
## 4556              Moroni    43.2418  -11.6986 Lower middle income
## 4557              Moroni    43.2418  -11.6986 Lower middle income
## 4558              Moroni    43.2418  -11.6986 Lower middle income
## 4559              Moroni    43.2418  -11.6986 Lower middle income
## 4560              Moroni    43.2418  -11.6986 Lower middle income
## 4561              Moroni    43.2418  -11.6986 Lower middle income
## 4562              Moroni    43.2418  -11.6986 Lower middle income
## 4563              Moroni    43.2418  -11.6986 Lower middle income
## 4564              Moroni    43.2418  -11.6986 Lower middle income
## 4565              Moroni    43.2418  -11.6986 Lower middle income
## 4566              Moroni    43.2418  -11.6986 Lower middle income
## 4567              Moroni    43.2418  -11.6986 Lower middle income
## 4568              Moroni    43.2418  -11.6986 Lower middle income
## 4569              Moroni    43.2418  -11.6986 Lower middle income
## 4570              Moroni    43.2418  -11.6986 Lower middle income
## 4571              Moroni    43.2418  -11.6986 Lower middle income
## 4572              Moroni    43.2418  -11.6986 Lower middle income
## 4573              Moroni    43.2418  -11.6986 Lower middle income
## 4574              Moroni    43.2418  -11.6986 Lower middle income
## 4575              Moroni    43.2418  -11.6986 Lower middle income
## 4576              Moroni    43.2418  -11.6986 Lower middle income
## 4577              Moroni    43.2418  -11.6986 Lower middle income
## 4578              Moroni    43.2418  -11.6986 Lower middle income
## 4579              Moroni    43.2418  -11.6986 Lower middle income
## 4580              Moroni    43.2418  -11.6986 Lower middle income
## 4581              Moroni    43.2418  -11.6986 Lower middle income
## 4582              Moroni    43.2418  -11.6986 Lower middle income
## 4583              Moroni    43.2418  -11.6986 Lower middle income
## 4584                <NA>       <NA>      <NA>                <NA>
## 4585                <NA>       <NA>      <NA>                <NA>
## 4586                <NA>       <NA>      <NA>                <NA>
## 4587                <NA>       <NA>      <NA>                <NA>
## 4588                <NA>       <NA>      <NA>                <NA>
## 4589                <NA>       <NA>      <NA>                <NA>
## 4590                <NA>       <NA>      <NA>                <NA>
## 4591                <NA>       <NA>      <NA>                <NA>
## 4592                <NA>       <NA>      <NA>                <NA>
## 4593                <NA>       <NA>      <NA>                <NA>
## 4594                <NA>       <NA>      <NA>                <NA>
## 4595                <NA>       <NA>      <NA>                <NA>
## 4596                <NA>       <NA>      <NA>                <NA>
## 4597                <NA>       <NA>      <NA>                <NA>
## 4598                <NA>       <NA>      <NA>                <NA>
## 4599                <NA>       <NA>      <NA>                <NA>
## 4600                <NA>       <NA>      <NA>                <NA>
## 4601                <NA>       <NA>      <NA>                <NA>
## 4602                <NA>       <NA>      <NA>                <NA>
## 4603                <NA>       <NA>      <NA>                <NA>
## 4604                <NA>       <NA>      <NA>                <NA>
## 4605                <NA>       <NA>      <NA>                <NA>
## 4606                <NA>       <NA>      <NA>                <NA>
## 4607                <NA>       <NA>      <NA>                <NA>
## 4608                <NA>       <NA>      <NA>                <NA>
## 4609                <NA>       <NA>      <NA>                <NA>
## 4610                <NA>       <NA>      <NA>                <NA>
## 4611                <NA>       <NA>      <NA>                <NA>
## 4612                <NA>       <NA>      <NA>                <NA>
## 4613                <NA>       <NA>      <NA>                <NA>
## 4614                <NA>       <NA>      <NA>                <NA>
## 4615                <NA>       <NA>      <NA>                <NA>
## 4616                <NA>       <NA>      <NA>                <NA>
## 4617                <NA>       <NA>      <NA>                <NA>
## 4618                <NA>       <NA>      <NA>                <NA>
## 4619                <NA>       <NA>      <NA>                <NA>
## 4620                <NA>       <NA>      <NA>                <NA>
## 4621                <NA>       <NA>      <NA>                <NA>
## 4622                <NA>       <NA>      <NA>                <NA>
## 4623                <NA>       <NA>      <NA>                <NA>
## 4624                <NA>       <NA>      <NA>                <NA>
## 4625                <NA>       <NA>      <NA>                <NA>
## 4626                <NA>       <NA>      <NA>                <NA>
## 4627                <NA>       <NA>      <NA>                <NA>
## 4628                <NA>       <NA>      <NA>                <NA>
## 4629                <NA>       <NA>      <NA>                <NA>
## 4630                <NA>       <NA>      <NA>                <NA>
## 4631                <NA>       <NA>      <NA>                <NA>
## 4632                <NA>       <NA>      <NA>                <NA>
## 4633                <NA>       <NA>      <NA>                <NA>
## 4634                <NA>       <NA>      <NA>                <NA>
## 4635                <NA>       <NA>      <NA>                <NA>
## 4636                <NA>       <NA>      <NA>                <NA>
## 4637                <NA>       <NA>      <NA>                <NA>
## 4638                <NA>       <NA>      <NA>                <NA>
## 4639                <NA>       <NA>      <NA>                <NA>
## 4640                <NA>       <NA>      <NA>                <NA>
## 4641                <NA>       <NA>      <NA>                <NA>
## 4642                <NA>       <NA>      <NA>                <NA>
## 4643                <NA>       <NA>      <NA>                <NA>
## 4644                <NA>       <NA>      <NA>                <NA>
## 4645                <NA>       <NA>      <NA>                <NA>
## 4646                <NA>       <NA>      <NA>                <NA>
## 4647                <NA>       <NA>      <NA>                <NA>
## 4648                <NA>       <NA>      <NA>                <NA>
## 4649                <NA>       <NA>      <NA>                <NA>
## 4650                <NA>       <NA>      <NA>                <NA>
## 4651                <NA>       <NA>      <NA>                <NA>
## 4652            Kinshasa    15.3222    -4.325          Low income
## 4653            Kinshasa    15.3222    -4.325          Low income
## 4654            Kinshasa    15.3222    -4.325          Low income
## 4655            Kinshasa    15.3222    -4.325          Low income
## 4656            Kinshasa    15.3222    -4.325          Low income
## 4657            Kinshasa    15.3222    -4.325          Low income
## 4658            Kinshasa    15.3222    -4.325          Low income
## 4659            Kinshasa    15.3222    -4.325          Low income
## 4660            Kinshasa    15.3222    -4.325          Low income
## 4661            Kinshasa    15.3222    -4.325          Low income
## 4662            Kinshasa    15.3222    -4.325          Low income
## 4663            Kinshasa    15.3222    -4.325          Low income
## 4664            Kinshasa    15.3222    -4.325          Low income
## 4665            Kinshasa    15.3222    -4.325          Low income
## 4666            Kinshasa    15.3222    -4.325          Low income
## 4667            Kinshasa    15.3222    -4.325          Low income
## 4668            Kinshasa    15.3222    -4.325          Low income
## 4669            Kinshasa    15.3222    -4.325          Low income
## 4670            Kinshasa    15.3222    -4.325          Low income
## 4671            Kinshasa    15.3222    -4.325          Low income
## 4672            Kinshasa    15.3222    -4.325          Low income
## 4673            Kinshasa    15.3222    -4.325          Low income
## 4674            Kinshasa    15.3222    -4.325          Low income
## 4675            Kinshasa    15.3222    -4.325          Low income
## 4676            Kinshasa    15.3222    -4.325          Low income
## 4677            Kinshasa    15.3222    -4.325          Low income
## 4678            Kinshasa    15.3222    -4.325          Low income
## 4679            Kinshasa    15.3222    -4.325          Low income
## 4680            Kinshasa    15.3222    -4.325          Low income
## 4681            Kinshasa    15.3222    -4.325          Low income
## 4682            Kinshasa    15.3222    -4.325          Low income
## 4683            Kinshasa    15.3222    -4.325          Low income
## 4684            Kinshasa    15.3222    -4.325          Low income
## 4685            Kinshasa    15.3222    -4.325          Low income
## 4686            Kinshasa    15.3222    -4.325          Low income
## 4687            Kinshasa    15.3222    -4.325          Low income
## 4688            Kinshasa    15.3222    -4.325          Low income
## 4689            Kinshasa    15.3222    -4.325          Low income
## 4690            Kinshasa    15.3222    -4.325          Low income
## 4691            Kinshasa    15.3222    -4.325          Low income
## 4692            Kinshasa    15.3222    -4.325          Low income
## 4693            Kinshasa    15.3222    -4.325          Low income
## 4694            Kinshasa    15.3222    -4.325          Low income
## 4695            Kinshasa    15.3222    -4.325          Low income
## 4696            Kinshasa    15.3222    -4.325          Low income
## 4697            Kinshasa    15.3222    -4.325          Low income
## 4698            Kinshasa    15.3222    -4.325          Low income
## 4699            Kinshasa    15.3222    -4.325          Low income
## 4700            Kinshasa    15.3222    -4.325          Low income
## 4701            Kinshasa    15.3222    -4.325          Low income
## 4702            Kinshasa    15.3222    -4.325          Low income
## 4703            Kinshasa    15.3222    -4.325          Low income
## 4704            Kinshasa    15.3222    -4.325          Low income
## 4705            Kinshasa    15.3222    -4.325          Low income
## 4706            Kinshasa    15.3222    -4.325          Low income
## 4707            Kinshasa    15.3222    -4.325          Low income
## 4708            Kinshasa    15.3222    -4.325          Low income
## 4709            Kinshasa    15.3222    -4.325          Low income
## 4710            Kinshasa    15.3222    -4.325          Low income
## 4711            Kinshasa    15.3222    -4.325          Low income
## 4712            Kinshasa    15.3222    -4.325          Low income
## 4713            Kinshasa    15.3222    -4.325          Low income
## 4714            Kinshasa    15.3222    -4.325          Low income
## 4715         Brazzaville    15.2662   -4.2767 Lower middle income
## 4716         Brazzaville    15.2662   -4.2767 Lower middle income
## 4717         Brazzaville    15.2662   -4.2767 Lower middle income
## 4718         Brazzaville    15.2662   -4.2767 Lower middle income
## 4719         Brazzaville    15.2662   -4.2767 Lower middle income
## 4720         Brazzaville    15.2662   -4.2767 Lower middle income
## 4721         Brazzaville    15.2662   -4.2767 Lower middle income
## 4722         Brazzaville    15.2662   -4.2767 Lower middle income
## 4723         Brazzaville    15.2662   -4.2767 Lower middle income
## 4724         Brazzaville    15.2662   -4.2767 Lower middle income
## 4725         Brazzaville    15.2662   -4.2767 Lower middle income
## 4726         Brazzaville    15.2662   -4.2767 Lower middle income
## 4727         Brazzaville    15.2662   -4.2767 Lower middle income
## 4728         Brazzaville    15.2662   -4.2767 Lower middle income
## 4729         Brazzaville    15.2662   -4.2767 Lower middle income
## 4730         Brazzaville    15.2662   -4.2767 Lower middle income
## 4731         Brazzaville    15.2662   -4.2767 Lower middle income
## 4732         Brazzaville    15.2662   -4.2767 Lower middle income
## 4733         Brazzaville    15.2662   -4.2767 Lower middle income
## 4734         Brazzaville    15.2662   -4.2767 Lower middle income
## 4735         Brazzaville    15.2662   -4.2767 Lower middle income
## 4736         Brazzaville    15.2662   -4.2767 Lower middle income
## 4737         Brazzaville    15.2662   -4.2767 Lower middle income
## 4738         Brazzaville    15.2662   -4.2767 Lower middle income
## 4739         Brazzaville    15.2662   -4.2767 Lower middle income
## 4740         Brazzaville    15.2662   -4.2767 Lower middle income
## 4741         Brazzaville    15.2662   -4.2767 Lower middle income
## 4742         Brazzaville    15.2662   -4.2767 Lower middle income
## 4743         Brazzaville    15.2662   -4.2767 Lower middle income
## 4744         Brazzaville    15.2662   -4.2767 Lower middle income
## 4745         Brazzaville    15.2662   -4.2767 Lower middle income
## 4746         Brazzaville    15.2662   -4.2767 Lower middle income
## 4747         Brazzaville    15.2662   -4.2767 Lower middle income
## 4748         Brazzaville    15.2662   -4.2767 Lower middle income
## 4749         Brazzaville    15.2662   -4.2767 Lower middle income
## 4750         Brazzaville    15.2662   -4.2767 Lower middle income
## 4751         Brazzaville    15.2662   -4.2767 Lower middle income
## 4752         Brazzaville    15.2662   -4.2767 Lower middle income
## 4753         Brazzaville    15.2662   -4.2767 Lower middle income
## 4754         Brazzaville    15.2662   -4.2767 Lower middle income
## 4755         Brazzaville    15.2662   -4.2767 Lower middle income
## 4756         Brazzaville    15.2662   -4.2767 Lower middle income
## 4757         Brazzaville    15.2662   -4.2767 Lower middle income
## 4758         Brazzaville    15.2662   -4.2767 Lower middle income
## 4759         Brazzaville    15.2662   -4.2767 Lower middle income
## 4760         Brazzaville    15.2662   -4.2767 Lower middle income
## 4761         Brazzaville    15.2662   -4.2767 Lower middle income
## 4762         Brazzaville    15.2662   -4.2767 Lower middle income
## 4763         Brazzaville    15.2662   -4.2767 Lower middle income
## 4764         Brazzaville    15.2662   -4.2767 Lower middle income
## 4765         Brazzaville    15.2662   -4.2767 Lower middle income
## 4766         Brazzaville    15.2662   -4.2767 Lower middle income
## 4767         Brazzaville    15.2662   -4.2767 Lower middle income
## 4768         Brazzaville    15.2662   -4.2767 Lower middle income
## 4769         Brazzaville    15.2662   -4.2767 Lower middle income
## 4770         Brazzaville    15.2662   -4.2767 Lower middle income
## 4771         Brazzaville    15.2662   -4.2767 Lower middle income
## 4772         Brazzaville    15.2662   -4.2767 Lower middle income
## 4773         Brazzaville    15.2662   -4.2767 Lower middle income
## 4774         Brazzaville    15.2662   -4.2767 Lower middle income
## 4775         Brazzaville    15.2662   -4.2767 Lower middle income
## 4776         Brazzaville    15.2662   -4.2767 Lower middle income
## 4777         Brazzaville    15.2662   -4.2767 Lower middle income
## 4778            San Jose   -84.0089   9.63701 Upper middle income
## 4779            San Jose   -84.0089   9.63701 Upper middle income
## 4780            San Jose   -84.0089   9.63701 Upper middle income
## 4781            San Jose   -84.0089   9.63701 Upper middle income
## 4782            San Jose   -84.0089   9.63701 Upper middle income
## 4783            San Jose   -84.0089   9.63701 Upper middle income
## 4784            San Jose   -84.0089   9.63701 Upper middle income
## 4785            San Jose   -84.0089   9.63701 Upper middle income
## 4786            San Jose   -84.0089   9.63701 Upper middle income
## 4787            San Jose   -84.0089   9.63701 Upper middle income
## 4788            San Jose   -84.0089   9.63701 Upper middle income
## 4789            San Jose   -84.0089   9.63701 Upper middle income
## 4790            San Jose   -84.0089   9.63701 Upper middle income
## 4791            San Jose   -84.0089   9.63701 Upper middle income
## 4792            San Jose   -84.0089   9.63701 Upper middle income
## 4793            San Jose   -84.0089   9.63701 Upper middle income
## 4794            San Jose   -84.0089   9.63701 Upper middle income
## 4795            San Jose   -84.0089   9.63701 Upper middle income
## 4796            San Jose   -84.0089   9.63701 Upper middle income
## 4797            San Jose   -84.0089   9.63701 Upper middle income
## 4798            San Jose   -84.0089   9.63701 Upper middle income
## 4799            San Jose   -84.0089   9.63701 Upper middle income
## 4800            San Jose   -84.0089   9.63701 Upper middle income
## 4801            San Jose   -84.0089   9.63701 Upper middle income
## 4802            San Jose   -84.0089   9.63701 Upper middle income
## 4803            San Jose   -84.0089   9.63701 Upper middle income
## 4804            San Jose   -84.0089   9.63701 Upper middle income
## 4805            San Jose   -84.0089   9.63701 Upper middle income
## 4806            San Jose   -84.0089   9.63701 Upper middle income
## 4807            San Jose   -84.0089   9.63701 Upper middle income
## 4808            San Jose   -84.0089   9.63701 Upper middle income
## 4809            San Jose   -84.0089   9.63701 Upper middle income
## 4810            San Jose   -84.0089   9.63701 Upper middle income
## 4811            San Jose   -84.0089   9.63701 Upper middle income
## 4812            San Jose   -84.0089   9.63701 Upper middle income
## 4813            San Jose   -84.0089   9.63701 Upper middle income
## 4814            San Jose   -84.0089   9.63701 Upper middle income
## 4815            San Jose   -84.0089   9.63701 Upper middle income
## 4816            San Jose   -84.0089   9.63701 Upper middle income
## 4817            San Jose   -84.0089   9.63701 Upper middle income
## 4818            San Jose   -84.0089   9.63701 Upper middle income
## 4819            San Jose   -84.0089   9.63701 Upper middle income
## 4820            San Jose   -84.0089   9.63701 Upper middle income
## 4821            San Jose   -84.0089   9.63701 Upper middle income
## 4822            San Jose   -84.0089   9.63701 Upper middle income
## 4823            San Jose   -84.0089   9.63701 Upper middle income
## 4824            San Jose   -84.0089   9.63701 Upper middle income
## 4825            San Jose   -84.0089   9.63701 Upper middle income
## 4826            San Jose   -84.0089   9.63701 Upper middle income
## 4827            San Jose   -84.0089   9.63701 Upper middle income
## 4828            San Jose   -84.0089   9.63701 Upper middle income
## 4829            San Jose   -84.0089   9.63701 Upper middle income
## 4830            San Jose   -84.0089   9.63701 Upper middle income
## 4831            San Jose   -84.0089   9.63701 Upper middle income
## 4832            San Jose   -84.0089   9.63701 Upper middle income
## 4833            San Jose   -84.0089   9.63701 Upper middle income
## 4834            San Jose   -84.0089   9.63701 Upper middle income
## 4835            San Jose   -84.0089   9.63701 Upper middle income
## 4836            San Jose   -84.0089   9.63701 Upper middle income
## 4837            San Jose   -84.0089   9.63701 Upper middle income
## 4838            San Jose   -84.0089   9.63701 Upper middle income
## 4839            San Jose   -84.0089   9.63701 Upper middle income
## 4840            San Jose   -84.0089   9.63701 Upper middle income
## 4841                <NA>       <NA>      <NA>                <NA>
## 4842                <NA>       <NA>      <NA>                <NA>
## 4843                <NA>       <NA>      <NA>                <NA>
## 4844                <NA>       <NA>      <NA>                <NA>
## 4845                <NA>       <NA>      <NA>                <NA>
## 4846                <NA>       <NA>      <NA>                <NA>
## 4847                <NA>       <NA>      <NA>                <NA>
## 4848                <NA>       <NA>      <NA>                <NA>
## 4849                <NA>       <NA>      <NA>                <NA>
## 4850                <NA>       <NA>      <NA>                <NA>
## 4851                <NA>       <NA>      <NA>                <NA>
## 4852                <NA>       <NA>      <NA>                <NA>
## 4853                <NA>       <NA>      <NA>                <NA>
## 4854                <NA>       <NA>      <NA>                <NA>
## 4855                <NA>       <NA>      <NA>                <NA>
## 4856                <NA>       <NA>      <NA>                <NA>
## 4857                <NA>       <NA>      <NA>                <NA>
## 4858                <NA>       <NA>      <NA>                <NA>
## 4859                <NA>       <NA>      <NA>                <NA>
## 4860                <NA>       <NA>      <NA>                <NA>
## 4861                <NA>       <NA>      <NA>                <NA>
## 4862                <NA>       <NA>      <NA>                <NA>
## 4863                <NA>       <NA>      <NA>                <NA>
## 4864                <NA>       <NA>      <NA>                <NA>
## 4865                <NA>       <NA>      <NA>                <NA>
## 4866                <NA>       <NA>      <NA>                <NA>
## 4867                <NA>       <NA>      <NA>                <NA>
## 4868                <NA>       <NA>      <NA>                <NA>
## 4869                <NA>       <NA>      <NA>                <NA>
## 4870                <NA>       <NA>      <NA>                <NA>
## 4871                <NA>       <NA>      <NA>                <NA>
## 4872                <NA>       <NA>      <NA>                <NA>
## 4873                <NA>       <NA>      <NA>                <NA>
## 4874                <NA>       <NA>      <NA>                <NA>
## 4875        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4876        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4877        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4878        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4879        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4880        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4881        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4882        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4883        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4884        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4885        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4886        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4887        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4888        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4889        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4890        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4891        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4892        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4893        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4894        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4895        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4896        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4897        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4898        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4899        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4900        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4901        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4902        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4903        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4904        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4905        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4906        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4907        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4908        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4909        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4910        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4911        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4912        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4913        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4914        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4915        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4916        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4917        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4918        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4919        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4920        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4921        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4922        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4923        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4924        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4925        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4926        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4927        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4928        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4929        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4930        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4931        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4932        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4933        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4934        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4935        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4936        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4937        Yamoussoukro    -4.0305     5.332 Lower middle income
## 4938                <NA>       <NA>      <NA>                <NA>
## 4939                <NA>       <NA>      <NA>                <NA>
## 4940                <NA>       <NA>      <NA>                <NA>
## 4941                <NA>       <NA>      <NA>                <NA>
## 4942                <NA>       <NA>      <NA>                <NA>
## 4943                <NA>       <NA>      <NA>                <NA>
## 4944                <NA>       <NA>      <NA>                <NA>
## 4945                <NA>       <NA>      <NA>                <NA>
## 4946                <NA>       <NA>      <NA>                <NA>
## 4947                <NA>       <NA>      <NA>                <NA>
## 4948                <NA>       <NA>      <NA>                <NA>
## 4949                <NA>       <NA>      <NA>                <NA>
## 4950                <NA>       <NA>      <NA>                <NA>
## 4951                <NA>       <NA>      <NA>                <NA>
## 4952                <NA>       <NA>      <NA>                <NA>
## 4953                <NA>       <NA>      <NA>                <NA>
## 4954                <NA>       <NA>      <NA>                <NA>
## 4955                <NA>       <NA>      <NA>                <NA>
## 4956                <NA>       <NA>      <NA>                <NA>
## 4957                <NA>       <NA>      <NA>                <NA>
## 4958                <NA>       <NA>      <NA>                <NA>
## 4959                <NA>       <NA>      <NA>                <NA>
## 4960                <NA>       <NA>      <NA>                <NA>
## 4961                <NA>       <NA>      <NA>                <NA>
## 4962                <NA>       <NA>      <NA>                <NA>
## 4963                <NA>       <NA>      <NA>                <NA>
## 4964                <NA>       <NA>      <NA>                <NA>
## 4965                <NA>       <NA>      <NA>                <NA>
## 4966                <NA>       <NA>      <NA>                <NA>
## 4967                <NA>       <NA>      <NA>                <NA>
## 4968                <NA>       <NA>      <NA>                <NA>
## 4969                <NA>       <NA>      <NA>                <NA>
## 4970                <NA>       <NA>      <NA>                <NA>
## 4971                <NA>       <NA>      <NA>                <NA>
## 4972              Zagreb    15.9614   45.8069         High income
## 4973              Zagreb    15.9614   45.8069         High income
## 4974              Zagreb    15.9614   45.8069         High income
## 4975              Zagreb    15.9614   45.8069         High income
## 4976              Zagreb    15.9614   45.8069         High income
## 4977              Zagreb    15.9614   45.8069         High income
## 4978              Zagreb    15.9614   45.8069         High income
## 4979              Zagreb    15.9614   45.8069         High income
## 4980              Zagreb    15.9614   45.8069         High income
## 4981              Zagreb    15.9614   45.8069         High income
## 4982              Zagreb    15.9614   45.8069         High income
## 4983              Zagreb    15.9614   45.8069         High income
## 4984              Zagreb    15.9614   45.8069         High income
## 4985              Zagreb    15.9614   45.8069         High income
## 4986              Zagreb    15.9614   45.8069         High income
## 4987              Zagreb    15.9614   45.8069         High income
## 4988              Zagreb    15.9614   45.8069         High income
## 4989              Zagreb    15.9614   45.8069         High income
## 4990              Zagreb    15.9614   45.8069         High income
## 4991              Zagreb    15.9614   45.8069         High income
## 4992              Zagreb    15.9614   45.8069         High income
## 4993              Zagreb    15.9614   45.8069         High income
## 4994              Zagreb    15.9614   45.8069         High income
## 4995              Zagreb    15.9614   45.8069         High income
## 4996              Zagreb    15.9614   45.8069         High income
## 4997              Zagreb    15.9614   45.8069         High income
## 4998              Zagreb    15.9614   45.8069         High income
## 4999              Zagreb    15.9614   45.8069         High income
## 5000              Zagreb    15.9614   45.8069         High income
## 5001              Zagreb    15.9614   45.8069         High income
## 5002              Zagreb    15.9614   45.8069         High income
## 5003              Zagreb    15.9614   45.8069         High income
## 5004              Zagreb    15.9614   45.8069         High income
## 5005              Zagreb    15.9614   45.8069         High income
## 5006              Zagreb    15.9614   45.8069         High income
## 5007              Zagreb    15.9614   45.8069         High income
## 5008              Zagreb    15.9614   45.8069         High income
## 5009              Zagreb    15.9614   45.8069         High income
## 5010              Zagreb    15.9614   45.8069         High income
## 5011              Zagreb    15.9614   45.8069         High income
## 5012              Zagreb    15.9614   45.8069         High income
## 5013              Zagreb    15.9614   45.8069         High income
## 5014              Zagreb    15.9614   45.8069         High income
## 5015              Zagreb    15.9614   45.8069         High income
## 5016              Zagreb    15.9614   45.8069         High income
## 5017              Zagreb    15.9614   45.8069         High income
## 5018              Zagreb    15.9614   45.8069         High income
## 5019              Zagreb    15.9614   45.8069         High income
## 5020              Zagreb    15.9614   45.8069         High income
## 5021              Zagreb    15.9614   45.8069         High income
## 5022              Zagreb    15.9614   45.8069         High income
## 5023              Zagreb    15.9614   45.8069         High income
## 5024              Zagreb    15.9614   45.8069         High income
## 5025              Zagreb    15.9614   45.8069         High income
## 5026              Zagreb    15.9614   45.8069         High income
## 5027              Zagreb    15.9614   45.8069         High income
## 5028              Zagreb    15.9614   45.8069         High income
## 5029              Zagreb    15.9614   45.8069         High income
## 5030              Zagreb    15.9614   45.8069         High income
## 5031              Zagreb    15.9614   45.8069         High income
## 5032              Zagreb    15.9614   45.8069         High income
## 5033              Zagreb    15.9614   45.8069         High income
## 5034              Zagreb    15.9614   45.8069         High income
## 5035                <NA>       <NA>      <NA>                <NA>
## 5036                <NA>       <NA>      <NA>                <NA>
## 5037                <NA>       <NA>      <NA>                <NA>
## 5038                <NA>       <NA>      <NA>                <NA>
## 5039                <NA>       <NA>      <NA>                <NA>
## 5040                <NA>       <NA>      <NA>                <NA>
## 5041                <NA>       <NA>      <NA>                <NA>
## 5042                <NA>       <NA>      <NA>                <NA>
## 5043                <NA>       <NA>      <NA>                <NA>
## 5044                <NA>       <NA>      <NA>                <NA>
## 5045                <NA>       <NA>      <NA>                <NA>
## 5046                <NA>       <NA>      <NA>                <NA>
## 5047                <NA>       <NA>      <NA>                <NA>
## 5048                <NA>       <NA>      <NA>                <NA>
## 5049                <NA>       <NA>      <NA>                <NA>
## 5050                <NA>       <NA>      <NA>                <NA>
## 5051                <NA>       <NA>      <NA>                <NA>
## 5052                <NA>       <NA>      <NA>                <NA>
## 5053                <NA>       <NA>      <NA>                <NA>
## 5054                <NA>       <NA>      <NA>                <NA>
## 5055                <NA>       <NA>      <NA>                <NA>
## 5056                <NA>       <NA>      <NA>                <NA>
## 5057                <NA>       <NA>      <NA>                <NA>
## 5058                <NA>       <NA>      <NA>                <NA>
## 5059                <NA>       <NA>      <NA>                <NA>
## 5060                <NA>       <NA>      <NA>                <NA>
## 5061                <NA>       <NA>      <NA>                <NA>
## 5062                <NA>       <NA>      <NA>                <NA>
## 5063                <NA>       <NA>      <NA>                <NA>
## 5064                <NA>       <NA>      <NA>                <NA>
## 5065                <NA>       <NA>      <NA>                <NA>
## 5066                <NA>       <NA>      <NA>                <NA>
## 5067                <NA>       <NA>      <NA>                <NA>
## 5068                <NA>       <NA>      <NA>                <NA>
## 5069              Havana   -82.3667   23.1333 Upper middle income
## 5070              Havana   -82.3667   23.1333 Upper middle income
## 5071              Havana   -82.3667   23.1333 Upper middle income
## 5072              Havana   -82.3667   23.1333 Upper middle income
## 5073              Havana   -82.3667   23.1333 Upper middle income
## 5074              Havana   -82.3667   23.1333 Upper middle income
## 5075              Havana   -82.3667   23.1333 Upper middle income
## 5076              Havana   -82.3667   23.1333 Upper middle income
## 5077              Havana   -82.3667   23.1333 Upper middle income
## 5078              Havana   -82.3667   23.1333 Upper middle income
## 5079              Havana   -82.3667   23.1333 Upper middle income
## 5080              Havana   -82.3667   23.1333 Upper middle income
## 5081              Havana   -82.3667   23.1333 Upper middle income
## 5082              Havana   -82.3667   23.1333 Upper middle income
## 5083              Havana   -82.3667   23.1333 Upper middle income
## 5084              Havana   -82.3667   23.1333 Upper middle income
## 5085              Havana   -82.3667   23.1333 Upper middle income
## 5086              Havana   -82.3667   23.1333 Upper middle income
## 5087              Havana   -82.3667   23.1333 Upper middle income
## 5088              Havana   -82.3667   23.1333 Upper middle income
## 5089              Havana   -82.3667   23.1333 Upper middle income
## 5090              Havana   -82.3667   23.1333 Upper middle income
## 5091              Havana   -82.3667   23.1333 Upper middle income
## 5092              Havana   -82.3667   23.1333 Upper middle income
## 5093              Havana   -82.3667   23.1333 Upper middle income
## 5094              Havana   -82.3667   23.1333 Upper middle income
## 5095              Havana   -82.3667   23.1333 Upper middle income
## 5096              Havana   -82.3667   23.1333 Upper middle income
## 5097              Havana   -82.3667   23.1333 Upper middle income
## 5098              Havana   -82.3667   23.1333 Upper middle income
## 5099              Havana   -82.3667   23.1333 Upper middle income
## 5100              Havana   -82.3667   23.1333 Upper middle income
## 5101              Havana   -82.3667   23.1333 Upper middle income
## 5102              Havana   -82.3667   23.1333 Upper middle income
## 5103              Havana   -82.3667   23.1333 Upper middle income
## 5104              Havana   -82.3667   23.1333 Upper middle income
## 5105              Havana   -82.3667   23.1333 Upper middle income
## 5106              Havana   -82.3667   23.1333 Upper middle income
## 5107              Havana   -82.3667   23.1333 Upper middle income
## 5108              Havana   -82.3667   23.1333 Upper middle income
## 5109              Havana   -82.3667   23.1333 Upper middle income
## 5110              Havana   -82.3667   23.1333 Upper middle income
## 5111              Havana   -82.3667   23.1333 Upper middle income
## 5112              Havana   -82.3667   23.1333 Upper middle income
## 5113              Havana   -82.3667   23.1333 Upper middle income
## 5114              Havana   -82.3667   23.1333 Upper middle income
## 5115              Havana   -82.3667   23.1333 Upper middle income
## 5116              Havana   -82.3667   23.1333 Upper middle income
## 5117              Havana   -82.3667   23.1333 Upper middle income
## 5118              Havana   -82.3667   23.1333 Upper middle income
## 5119              Havana   -82.3667   23.1333 Upper middle income
## 5120              Havana   -82.3667   23.1333 Upper middle income
## 5121              Havana   -82.3667   23.1333 Upper middle income
## 5122              Havana   -82.3667   23.1333 Upper middle income
## 5123              Havana   -82.3667   23.1333 Upper middle income
## 5124              Havana   -82.3667   23.1333 Upper middle income
## 5125              Havana   -82.3667   23.1333 Upper middle income
## 5126              Havana   -82.3667   23.1333 Upper middle income
## 5127              Havana   -82.3667   23.1333 Upper middle income
## 5128              Havana   -82.3667   23.1333 Upper middle income
## 5129              Havana   -82.3667   23.1333 Upper middle income
## 5130              Havana   -82.3667   23.1333 Upper middle income
## 5131              Havana   -82.3667   23.1333 Upper middle income
## 5132                <NA>       <NA>      <NA>                <NA>
## 5133                <NA>       <NA>      <NA>                <NA>
## 5134                <NA>       <NA>      <NA>                <NA>
## 5135                <NA>       <NA>      <NA>                <NA>
## 5136                <NA>       <NA>      <NA>                <NA>
## 5137                <NA>       <NA>      <NA>                <NA>
## 5138                <NA>       <NA>      <NA>                <NA>
## 5139                <NA>       <NA>      <NA>                <NA>
## 5140                <NA>       <NA>      <NA>                <NA>
## 5141                <NA>       <NA>      <NA>                <NA>
## 5142                <NA>       <NA>      <NA>                <NA>
## 5143                <NA>       <NA>      <NA>                <NA>
## 5144                <NA>       <NA>      <NA>                <NA>
## 5145                <NA>       <NA>      <NA>                <NA>
## 5146                <NA>       <NA>      <NA>                <NA>
## 5147                <NA>       <NA>      <NA>                <NA>
## 5148                <NA>       <NA>      <NA>                <NA>
## 5149                <NA>       <NA>      <NA>                <NA>
## 5150                <NA>       <NA>      <NA>                <NA>
## 5151                <NA>       <NA>      <NA>                <NA>
## 5152                <NA>       <NA>      <NA>                <NA>
## 5153                <NA>       <NA>      <NA>                <NA>
## 5154                <NA>       <NA>      <NA>                <NA>
## 5155                <NA>       <NA>      <NA>                <NA>
## 5156                <NA>       <NA>      <NA>                <NA>
## 5157                <NA>       <NA>      <NA>                <NA>
## 5158                <NA>       <NA>      <NA>                <NA>
## 5159                <NA>       <NA>      <NA>                <NA>
## 5160                <NA>       <NA>      <NA>                <NA>
## 5161                <NA>       <NA>      <NA>                <NA>
## 5162                <NA>       <NA>      <NA>                <NA>
## 5163                <NA>       <NA>      <NA>                <NA>
## 5164                <NA>       <NA>      <NA>                <NA>
## 5165                <NA>       <NA>      <NA>                <NA>
## 5166          Willemstad                              High income
## 5167          Willemstad                              High income
## 5168          Willemstad                              High income
## 5169          Willemstad                              High income
## 5170          Willemstad                              High income
## 5171          Willemstad                              High income
## 5172          Willemstad                              High income
## 5173          Willemstad                              High income
## 5174          Willemstad                              High income
## 5175          Willemstad                              High income
## 5176          Willemstad                              High income
## 5177          Willemstad                              High income
## 5178          Willemstad                              High income
## 5179          Willemstad                              High income
## 5180          Willemstad                              High income
## 5181          Willemstad                              High income
## 5182          Willemstad                              High income
## 5183          Willemstad                              High income
## 5184          Willemstad                              High income
## 5185          Willemstad                              High income
## 5186          Willemstad                              High income
## 5187          Willemstad                              High income
## 5188          Willemstad                              High income
## 5189          Willemstad                              High income
## 5190          Willemstad                              High income
## 5191          Willemstad                              High income
## 5192          Willemstad                              High income
## 5193          Willemstad                              High income
## 5194          Willemstad                              High income
## 5195          Willemstad                              High income
## 5196          Willemstad                              High income
## 5197          Willemstad                              High income
## 5198          Willemstad                              High income
## 5199          Willemstad                              High income
## 5200          Willemstad                              High income
## 5201          Willemstad                              High income
## 5202          Willemstad                              High income
## 5203          Willemstad                              High income
## 5204          Willemstad                              High income
## 5205          Willemstad                              High income
## 5206          Willemstad                              High income
## 5207          Willemstad                              High income
## 5208          Willemstad                              High income
## 5209          Willemstad                              High income
## 5210          Willemstad                              High income
## 5211          Willemstad                              High income
## 5212          Willemstad                              High income
## 5213          Willemstad                              High income
## 5214          Willemstad                              High income
## 5215          Willemstad                              High income
## 5216          Willemstad                              High income
## 5217          Willemstad                              High income
## 5218          Willemstad                              High income
## 5219          Willemstad                              High income
## 5220          Willemstad                              High income
## 5221          Willemstad                              High income
## 5222          Willemstad                              High income
## 5223          Willemstad                              High income
## 5224          Willemstad                              High income
## 5225          Willemstad                              High income
## 5226          Willemstad                              High income
## 5227          Willemstad                              High income
## 5228          Willemstad                              High income
## 5229             Nicosia    33.3736   35.1676         High income
## 5230             Nicosia    33.3736   35.1676         High income
## 5231             Nicosia    33.3736   35.1676         High income
## 5232             Nicosia    33.3736   35.1676         High income
## 5233             Nicosia    33.3736   35.1676         High income
## 5234             Nicosia    33.3736   35.1676         High income
## 5235             Nicosia    33.3736   35.1676         High income
## 5236             Nicosia    33.3736   35.1676         High income
## 5237             Nicosia    33.3736   35.1676         High income
## 5238             Nicosia    33.3736   35.1676         High income
## 5239             Nicosia    33.3736   35.1676         High income
## 5240             Nicosia    33.3736   35.1676         High income
## 5241             Nicosia    33.3736   35.1676         High income
## 5242             Nicosia    33.3736   35.1676         High income
## 5243             Nicosia    33.3736   35.1676         High income
## 5244             Nicosia    33.3736   35.1676         High income
## 5245             Nicosia    33.3736   35.1676         High income
## 5246             Nicosia    33.3736   35.1676         High income
## 5247             Nicosia    33.3736   35.1676         High income
## 5248             Nicosia    33.3736   35.1676         High income
## 5249             Nicosia    33.3736   35.1676         High income
## 5250             Nicosia    33.3736   35.1676         High income
## 5251             Nicosia    33.3736   35.1676         High income
## 5252             Nicosia    33.3736   35.1676         High income
## 5253             Nicosia    33.3736   35.1676         High income
## 5254             Nicosia    33.3736   35.1676         High income
## 5255             Nicosia    33.3736   35.1676         High income
## 5256             Nicosia    33.3736   35.1676         High income
## 5257             Nicosia    33.3736   35.1676         High income
## 5258             Nicosia    33.3736   35.1676         High income
## 5259             Nicosia    33.3736   35.1676         High income
## 5260             Nicosia    33.3736   35.1676         High income
## 5261             Nicosia    33.3736   35.1676         High income
## 5262             Nicosia    33.3736   35.1676         High income
## 5263             Nicosia    33.3736   35.1676         High income
## 5264             Nicosia    33.3736   35.1676         High income
## 5265             Nicosia    33.3736   35.1676         High income
## 5266             Nicosia    33.3736   35.1676         High income
## 5267             Nicosia    33.3736   35.1676         High income
## 5268             Nicosia    33.3736   35.1676         High income
## 5269             Nicosia    33.3736   35.1676         High income
## 5270             Nicosia    33.3736   35.1676         High income
## 5271             Nicosia    33.3736   35.1676         High income
## 5272             Nicosia    33.3736   35.1676         High income
## 5273             Nicosia    33.3736   35.1676         High income
## 5274             Nicosia    33.3736   35.1676         High income
## 5275             Nicosia    33.3736   35.1676         High income
## 5276             Nicosia    33.3736   35.1676         High income
## 5277             Nicosia    33.3736   35.1676         High income
## 5278             Nicosia    33.3736   35.1676         High income
## 5279             Nicosia    33.3736   35.1676         High income
## 5280             Nicosia    33.3736   35.1676         High income
## 5281             Nicosia    33.3736   35.1676         High income
## 5282             Nicosia    33.3736   35.1676         High income
## 5283             Nicosia    33.3736   35.1676         High income
## 5284             Nicosia    33.3736   35.1676         High income
## 5285             Nicosia    33.3736   35.1676         High income
## 5286             Nicosia    33.3736   35.1676         High income
## 5287             Nicosia    33.3736   35.1676         High income
## 5288             Nicosia    33.3736   35.1676         High income
## 5289             Nicosia    33.3736   35.1676         High income
## 5290             Nicosia    33.3736   35.1676         High income
## 5291             Nicosia    33.3736   35.1676         High income
## 5292                <NA>       <NA>      <NA>                <NA>
## 5293                <NA>       <NA>      <NA>                <NA>
## 5294                <NA>       <NA>      <NA>                <NA>
## 5295                <NA>       <NA>      <NA>                <NA>
## 5296                <NA>       <NA>      <NA>                <NA>
## 5297                <NA>       <NA>      <NA>                <NA>
## 5298                <NA>       <NA>      <NA>                <NA>
## 5299                <NA>       <NA>      <NA>                <NA>
## 5300                <NA>       <NA>      <NA>                <NA>
## 5301                <NA>       <NA>      <NA>                <NA>
## 5302                <NA>       <NA>      <NA>                <NA>
## 5303                <NA>       <NA>      <NA>                <NA>
## 5304                <NA>       <NA>      <NA>                <NA>
## 5305                <NA>       <NA>      <NA>                <NA>
## 5306                <NA>       <NA>      <NA>                <NA>
## 5307                <NA>       <NA>      <NA>                <NA>
## 5308                <NA>       <NA>      <NA>                <NA>
## 5309                <NA>       <NA>      <NA>                <NA>
## 5310                <NA>       <NA>      <NA>                <NA>
## 5311                <NA>       <NA>      <NA>                <NA>
## 5312                <NA>       <NA>      <NA>                <NA>
## 5313                <NA>       <NA>      <NA>                <NA>
## 5314                <NA>       <NA>      <NA>                <NA>
## 5315                <NA>       <NA>      <NA>                <NA>
## 5316                <NA>       <NA>      <NA>                <NA>
## 5317                <NA>       <NA>      <NA>                <NA>
## 5318                <NA>       <NA>      <NA>                <NA>
## 5319                <NA>       <NA>      <NA>                <NA>
## 5320                <NA>       <NA>      <NA>                <NA>
## 5321                <NA>       <NA>      <NA>                <NA>
## 5322                <NA>       <NA>      <NA>                <NA>
## 5323                <NA>       <NA>      <NA>                <NA>
## 5324                <NA>       <NA>      <NA>                <NA>
## 5325                <NA>       <NA>      <NA>                <NA>
## 5326                <NA>       <NA>      <NA>                <NA>
## 5327                <NA>       <NA>      <NA>                <NA>
## 5328                <NA>       <NA>      <NA>                <NA>
## 5329                <NA>       <NA>      <NA>                <NA>
## 5330                <NA>       <NA>      <NA>                <NA>
## 5331                <NA>       <NA>      <NA>                <NA>
## 5332                <NA>       <NA>      <NA>                <NA>
## 5333                <NA>       <NA>      <NA>                <NA>
## 5334                <NA>       <NA>      <NA>                <NA>
## 5335                <NA>       <NA>      <NA>                <NA>
## 5336                <NA>       <NA>      <NA>                <NA>
## 5337                <NA>       <NA>      <NA>                <NA>
## 5338                <NA>       <NA>      <NA>                <NA>
## 5339                <NA>       <NA>      <NA>                <NA>
## 5340                <NA>       <NA>      <NA>                <NA>
## 5341                <NA>       <NA>      <NA>                <NA>
## 5342                <NA>       <NA>      <NA>                <NA>
## 5343                <NA>       <NA>      <NA>                <NA>
## 5344                <NA>       <NA>      <NA>                <NA>
## 5345                <NA>       <NA>      <NA>                <NA>
## 5346                <NA>       <NA>      <NA>                <NA>
## 5347                <NA>       <NA>      <NA>                <NA>
## 5348                <NA>       <NA>      <NA>                <NA>
## 5349                <NA>       <NA>      <NA>                <NA>
## 5350                <NA>       <NA>      <NA>                <NA>
## 5351                <NA>       <NA>      <NA>                <NA>
## 5352                <NA>       <NA>      <NA>                <NA>
## 5353                <NA>       <NA>      <NA>                <NA>
## 5354                <NA>       <NA>      <NA>                <NA>
## 5355                <NA>       <NA>      <NA>                <NA>
## 5356                <NA>       <NA>      <NA>                <NA>
## 5357                <NA>       <NA>      <NA>                <NA>
## 5358                <NA>       <NA>      <NA>                <NA>
## 5359                <NA>       <NA>      <NA>                <NA>
## 5360              Prague    14.4205   50.0878         High income
## 5361              Prague    14.4205   50.0878         High income
## 5362              Prague    14.4205   50.0878         High income
## 5363              Prague    14.4205   50.0878         High income
## 5364              Prague    14.4205   50.0878         High income
## 5365              Prague    14.4205   50.0878         High income
## 5366              Prague    14.4205   50.0878         High income
## 5367              Prague    14.4205   50.0878         High income
## 5368              Prague    14.4205   50.0878         High income
## 5369              Prague    14.4205   50.0878         High income
## 5370              Prague    14.4205   50.0878         High income
## 5371              Prague    14.4205   50.0878         High income
## 5372              Prague    14.4205   50.0878         High income
## 5373              Prague    14.4205   50.0878         High income
## 5374              Prague    14.4205   50.0878         High income
## 5375              Prague    14.4205   50.0878         High income
## 5376              Prague    14.4205   50.0878         High income
## 5377              Prague    14.4205   50.0878         High income
## 5378              Prague    14.4205   50.0878         High income
## 5379              Prague    14.4205   50.0878         High income
## 5380              Prague    14.4205   50.0878         High income
## 5381              Prague    14.4205   50.0878         High income
## 5382              Prague    14.4205   50.0878         High income
## 5383              Prague    14.4205   50.0878         High income
## 5384              Prague    14.4205   50.0878         High income
## 5385              Prague    14.4205   50.0878         High income
## 5386              Prague    14.4205   50.0878         High income
## 5387              Prague    14.4205   50.0878         High income
## 5388              Prague    14.4205   50.0878         High income
## 5389              Prague    14.4205   50.0878         High income
## 5390              Prague    14.4205   50.0878         High income
## 5391              Prague    14.4205   50.0878         High income
## 5392              Prague    14.4205   50.0878         High income
## 5393              Prague    14.4205   50.0878         High income
## 5394              Prague    14.4205   50.0878         High income
## 5395              Prague    14.4205   50.0878         High income
## 5396              Prague    14.4205   50.0878         High income
## 5397              Prague    14.4205   50.0878         High income
## 5398              Prague    14.4205   50.0878         High income
## 5399              Prague    14.4205   50.0878         High income
## 5400              Prague    14.4205   50.0878         High income
## 5401              Prague    14.4205   50.0878         High income
## 5402              Prague    14.4205   50.0878         High income
## 5403              Prague    14.4205   50.0878         High income
## 5404              Prague    14.4205   50.0878         High income
## 5405              Prague    14.4205   50.0878         High income
## 5406              Prague    14.4205   50.0878         High income
## 5407              Prague    14.4205   50.0878         High income
## 5408              Prague    14.4205   50.0878         High income
## 5409              Prague    14.4205   50.0878         High income
## 5410              Prague    14.4205   50.0878         High income
## 5411              Prague    14.4205   50.0878         High income
## 5412              Prague    14.4205   50.0878         High income
## 5413              Prague    14.4205   50.0878         High income
## 5414              Prague    14.4205   50.0878         High income
## 5415              Prague    14.4205   50.0878         High income
## 5416              Prague    14.4205   50.0878         High income
## 5417              Prague    14.4205   50.0878         High income
## 5418              Prague    14.4205   50.0878         High income
## 5419              Prague    14.4205   50.0878         High income
## 5420              Prague    14.4205   50.0878         High income
## 5421              Prague    14.4205   50.0878         High income
## 5422              Prague    14.4205   50.0878         High income
## 5423          Copenhagen    12.5681   55.6763         High income
## 5424          Copenhagen    12.5681   55.6763         High income
## 5425          Copenhagen    12.5681   55.6763         High income
## 5426          Copenhagen    12.5681   55.6763         High income
## 5427          Copenhagen    12.5681   55.6763         High income
## 5428          Copenhagen    12.5681   55.6763         High income
## 5429          Copenhagen    12.5681   55.6763         High income
## 5430          Copenhagen    12.5681   55.6763         High income
## 5431          Copenhagen    12.5681   55.6763         High income
## 5432          Copenhagen    12.5681   55.6763         High income
## 5433          Copenhagen    12.5681   55.6763         High income
## 5434          Copenhagen    12.5681   55.6763         High income
## 5435          Copenhagen    12.5681   55.6763         High income
## 5436          Copenhagen    12.5681   55.6763         High income
## 5437          Copenhagen    12.5681   55.6763         High income
## 5438          Copenhagen    12.5681   55.6763         High income
## 5439          Copenhagen    12.5681   55.6763         High income
## 5440          Copenhagen    12.5681   55.6763         High income
## 5441          Copenhagen    12.5681   55.6763         High income
## 5442          Copenhagen    12.5681   55.6763         High income
## 5443          Copenhagen    12.5681   55.6763         High income
## 5444          Copenhagen    12.5681   55.6763         High income
## 5445          Copenhagen    12.5681   55.6763         High income
## 5446          Copenhagen    12.5681   55.6763         High income
## 5447          Copenhagen    12.5681   55.6763         High income
## 5448          Copenhagen    12.5681   55.6763         High income
## 5449          Copenhagen    12.5681   55.6763         High income
## 5450          Copenhagen    12.5681   55.6763         High income
## 5451          Copenhagen    12.5681   55.6763         High income
## 5452          Copenhagen    12.5681   55.6763         High income
## 5453          Copenhagen    12.5681   55.6763         High income
## 5454          Copenhagen    12.5681   55.6763         High income
## 5455          Copenhagen    12.5681   55.6763         High income
## 5456          Copenhagen    12.5681   55.6763         High income
## 5457          Copenhagen    12.5681   55.6763         High income
## 5458          Copenhagen    12.5681   55.6763         High income
## 5459          Copenhagen    12.5681   55.6763         High income
## 5460          Copenhagen    12.5681   55.6763         High income
## 5461          Copenhagen    12.5681   55.6763         High income
## 5462          Copenhagen    12.5681   55.6763         High income
## 5463          Copenhagen    12.5681   55.6763         High income
## 5464          Copenhagen    12.5681   55.6763         High income
## 5465          Copenhagen    12.5681   55.6763         High income
## 5466          Copenhagen    12.5681   55.6763         High income
## 5467          Copenhagen    12.5681   55.6763         High income
## 5468          Copenhagen    12.5681   55.6763         High income
## 5469          Copenhagen    12.5681   55.6763         High income
## 5470          Copenhagen    12.5681   55.6763         High income
## 5471          Copenhagen    12.5681   55.6763         High income
## 5472          Copenhagen    12.5681   55.6763         High income
## 5473          Copenhagen    12.5681   55.6763         High income
## 5474          Copenhagen    12.5681   55.6763         High income
## 5475          Copenhagen    12.5681   55.6763         High income
## 5476          Copenhagen    12.5681   55.6763         High income
## 5477          Copenhagen    12.5681   55.6763         High income
## 5478          Copenhagen    12.5681   55.6763         High income
## 5479          Copenhagen    12.5681   55.6763         High income
## 5480          Copenhagen    12.5681   55.6763         High income
## 5481          Copenhagen    12.5681   55.6763         High income
## 5482          Copenhagen    12.5681   55.6763         High income
## 5483          Copenhagen    12.5681   55.6763         High income
## 5484          Copenhagen    12.5681   55.6763         High income
## 5485          Copenhagen    12.5681   55.6763         High income
## 5486                <NA>       <NA>      <NA>                <NA>
## 5487                <NA>       <NA>      <NA>                <NA>
## 5488                <NA>       <NA>      <NA>                <NA>
## 5489                <NA>       <NA>      <NA>                <NA>
## 5490                <NA>       <NA>      <NA>                <NA>
## 5491                <NA>       <NA>      <NA>                <NA>
## 5492                <NA>       <NA>      <NA>                <NA>
## 5493                <NA>       <NA>      <NA>                <NA>
## 5494                <NA>       <NA>      <NA>                <NA>
## 5495                <NA>       <NA>      <NA>                <NA>
## 5496                <NA>       <NA>      <NA>                <NA>
## 5497                <NA>       <NA>      <NA>                <NA>
## 5498                <NA>       <NA>      <NA>                <NA>
## 5499                <NA>       <NA>      <NA>                <NA>
## 5500                <NA>       <NA>      <NA>                <NA>
## 5501                <NA>       <NA>      <NA>                <NA>
## 5502                <NA>       <NA>      <NA>                <NA>
## 5503                <NA>       <NA>      <NA>                <NA>
## 5504                <NA>       <NA>      <NA>                <NA>
## 5505                <NA>       <NA>      <NA>                <NA>
## 5506                <NA>       <NA>      <NA>                <NA>
## 5507                <NA>       <NA>      <NA>                <NA>
## 5508                <NA>       <NA>      <NA>                <NA>
## 5509                <NA>       <NA>      <NA>                <NA>
## 5510                <NA>       <NA>      <NA>                <NA>
## 5511                <NA>       <NA>      <NA>                <NA>
## 5512                <NA>       <NA>      <NA>                <NA>
## 5513                <NA>       <NA>      <NA>                <NA>
## 5514                <NA>       <NA>      <NA>                <NA>
## 5515                <NA>       <NA>      <NA>                <NA>
## 5516                <NA>       <NA>      <NA>                <NA>
## 5517                <NA>       <NA>      <NA>                <NA>
## 5518                <NA>       <NA>      <NA>                <NA>
## 5519                <NA>       <NA>      <NA>                <NA>
## 5520                <NA>       <NA>      <NA>                <NA>
## 5521                <NA>       <NA>      <NA>                <NA>
## 5522                <NA>       <NA>      <NA>                <NA>
## 5523                <NA>       <NA>      <NA>                <NA>
## 5524                <NA>       <NA>      <NA>                <NA>
## 5525                <NA>       <NA>      <NA>                <NA>
## 5526                <NA>       <NA>      <NA>                <NA>
## 5527                <NA>       <NA>      <NA>                <NA>
## 5528                <NA>       <NA>      <NA>                <NA>
## 5529                <NA>       <NA>      <NA>                <NA>
## 5530                <NA>       <NA>      <NA>                <NA>
## 5531                <NA>       <NA>      <NA>                <NA>
## 5532                <NA>       <NA>      <NA>                <NA>
## 5533                <NA>       <NA>      <NA>                <NA>
## 5534                <NA>       <NA>      <NA>                <NA>
## 5535                <NA>       <NA>      <NA>                <NA>
## 5536                <NA>       <NA>      <NA>                <NA>
## 5537                <NA>       <NA>      <NA>                <NA>
## 5538                <NA>       <NA>      <NA>                <NA>
## 5539                <NA>       <NA>      <NA>                <NA>
## 5540                <NA>       <NA>      <NA>                <NA>
## 5541                <NA>       <NA>      <NA>                <NA>
## 5542                <NA>       <NA>      <NA>                <NA>
## 5543                <NA>       <NA>      <NA>                <NA>
## 5544                <NA>       <NA>      <NA>                <NA>
## 5545                <NA>       <NA>      <NA>                <NA>
## 5546                <NA>       <NA>      <NA>                <NA>
## 5547                <NA>       <NA>      <NA>                <NA>
## 5548                <NA>       <NA>      <NA>                <NA>
## 5549                <NA>       <NA>      <NA>                <NA>
## 5550                <NA>       <NA>      <NA>                <NA>
## 5551                <NA>       <NA>      <NA>                <NA>
## 5552                <NA>       <NA>      <NA>                <NA>
## 5553                <NA>       <NA>      <NA>                <NA>
## 5554            Djibouti    43.1425   11.5806 Lower middle income
## 5555            Djibouti    43.1425   11.5806 Lower middle income
## 5556            Djibouti    43.1425   11.5806 Lower middle income
## 5557            Djibouti    43.1425   11.5806 Lower middle income
## 5558            Djibouti    43.1425   11.5806 Lower middle income
## 5559            Djibouti    43.1425   11.5806 Lower middle income
## 5560            Djibouti    43.1425   11.5806 Lower middle income
## 5561            Djibouti    43.1425   11.5806 Lower middle income
## 5562            Djibouti    43.1425   11.5806 Lower middle income
## 5563            Djibouti    43.1425   11.5806 Lower middle income
## 5564            Djibouti    43.1425   11.5806 Lower middle income
## 5565            Djibouti    43.1425   11.5806 Lower middle income
## 5566            Djibouti    43.1425   11.5806 Lower middle income
## 5567            Djibouti    43.1425   11.5806 Lower middle income
## 5568            Djibouti    43.1425   11.5806 Lower middle income
## 5569            Djibouti    43.1425   11.5806 Lower middle income
## 5570            Djibouti    43.1425   11.5806 Lower middle income
## 5571            Djibouti    43.1425   11.5806 Lower middle income
## 5572            Djibouti    43.1425   11.5806 Lower middle income
## 5573            Djibouti    43.1425   11.5806 Lower middle income
## 5574            Djibouti    43.1425   11.5806 Lower middle income
## 5575            Djibouti    43.1425   11.5806 Lower middle income
## 5576            Djibouti    43.1425   11.5806 Lower middle income
## 5577            Djibouti    43.1425   11.5806 Lower middle income
## 5578            Djibouti    43.1425   11.5806 Lower middle income
## 5579            Djibouti    43.1425   11.5806 Lower middle income
## 5580            Djibouti    43.1425   11.5806 Lower middle income
## 5581            Djibouti    43.1425   11.5806 Lower middle income
## 5582            Djibouti    43.1425   11.5806 Lower middle income
## 5583            Djibouti    43.1425   11.5806 Lower middle income
## 5584            Djibouti    43.1425   11.5806 Lower middle income
## 5585            Djibouti    43.1425   11.5806 Lower middle income
## 5586            Djibouti    43.1425   11.5806 Lower middle income
## 5587            Djibouti    43.1425   11.5806 Lower middle income
## 5588            Djibouti    43.1425   11.5806 Lower middle income
## 5589            Djibouti    43.1425   11.5806 Lower middle income
## 5590            Djibouti    43.1425   11.5806 Lower middle income
## 5591            Djibouti    43.1425   11.5806 Lower middle income
## 5592            Djibouti    43.1425   11.5806 Lower middle income
## 5593            Djibouti    43.1425   11.5806 Lower middle income
## 5594            Djibouti    43.1425   11.5806 Lower middle income
## 5595            Djibouti    43.1425   11.5806 Lower middle income
## 5596            Djibouti    43.1425   11.5806 Lower middle income
## 5597            Djibouti    43.1425   11.5806 Lower middle income
## 5598            Djibouti    43.1425   11.5806 Lower middle income
## 5599            Djibouti    43.1425   11.5806 Lower middle income
## 5600            Djibouti    43.1425   11.5806 Lower middle income
## 5601            Djibouti    43.1425   11.5806 Lower middle income
## 5602            Djibouti    43.1425   11.5806 Lower middle income
## 5603            Djibouti    43.1425   11.5806 Lower middle income
## 5604            Djibouti    43.1425   11.5806 Lower middle income
## 5605            Djibouti    43.1425   11.5806 Lower middle income
## 5606            Djibouti    43.1425   11.5806 Lower middle income
## 5607            Djibouti    43.1425   11.5806 Lower middle income
## 5608            Djibouti    43.1425   11.5806 Lower middle income
## 5609            Djibouti    43.1425   11.5806 Lower middle income
## 5610            Djibouti    43.1425   11.5806 Lower middle income
## 5611            Djibouti    43.1425   11.5806 Lower middle income
## 5612            Djibouti    43.1425   11.5806 Lower middle income
## 5613            Djibouti    43.1425   11.5806 Lower middle income
## 5614            Djibouti    43.1425   11.5806 Lower middle income
## 5615            Djibouti    43.1425   11.5806 Lower middle income
## 5616            Djibouti    43.1425   11.5806 Lower middle income
## 5617                <NA>       <NA>      <NA>                <NA>
## 5618                <NA>       <NA>      <NA>                <NA>
## 5619                <NA>       <NA>      <NA>                <NA>
## 5620                <NA>       <NA>      <NA>                <NA>
## 5621                <NA>       <NA>      <NA>                <NA>
## 5622                <NA>       <NA>      <NA>                <NA>
## 5623                <NA>       <NA>      <NA>                <NA>
## 5624                <NA>       <NA>      <NA>                <NA>
## 5625                <NA>       <NA>      <NA>                <NA>
## 5626                <NA>       <NA>      <NA>                <NA>
## 5627                <NA>       <NA>      <NA>                <NA>
## 5628                <NA>       <NA>      <NA>                <NA>
## 5629                <NA>       <NA>      <NA>                <NA>
## 5630                <NA>       <NA>      <NA>                <NA>
## 5631                <NA>       <NA>      <NA>                <NA>
## 5632                <NA>       <NA>      <NA>                <NA>
## 5633                <NA>       <NA>      <NA>                <NA>
## 5634                <NA>       <NA>      <NA>                <NA>
## 5635                <NA>       <NA>      <NA>                <NA>
## 5636                <NA>       <NA>      <NA>                <NA>
## 5637                <NA>       <NA>      <NA>                <NA>
## 5638                <NA>       <NA>      <NA>                <NA>
## 5639                <NA>       <NA>      <NA>                <NA>
## 5640                <NA>       <NA>      <NA>                <NA>
## 5641                <NA>       <NA>      <NA>                <NA>
## 5642                <NA>       <NA>      <NA>                <NA>
## 5643                <NA>       <NA>      <NA>                <NA>
## 5644                <NA>       <NA>      <NA>                <NA>
## 5645                <NA>       <NA>      <NA>                <NA>
## 5646                <NA>       <NA>      <NA>                <NA>
## 5647                <NA>       <NA>      <NA>                <NA>
## 5648                <NA>       <NA>      <NA>                <NA>
## 5649                <NA>       <NA>      <NA>                <NA>
## 5650                <NA>       <NA>      <NA>                <NA>
## 5651              Roseau     -61.39   15.2976 Upper middle income
## 5652              Roseau     -61.39   15.2976 Upper middle income
## 5653              Roseau     -61.39   15.2976 Upper middle income
## 5654              Roseau     -61.39   15.2976 Upper middle income
## 5655              Roseau     -61.39   15.2976 Upper middle income
## 5656              Roseau     -61.39   15.2976 Upper middle income
## 5657              Roseau     -61.39   15.2976 Upper middle income
## 5658              Roseau     -61.39   15.2976 Upper middle income
## 5659              Roseau     -61.39   15.2976 Upper middle income
## 5660              Roseau     -61.39   15.2976 Upper middle income
## 5661              Roseau     -61.39   15.2976 Upper middle income
## 5662              Roseau     -61.39   15.2976 Upper middle income
## 5663              Roseau     -61.39   15.2976 Upper middle income
## 5664              Roseau     -61.39   15.2976 Upper middle income
## 5665              Roseau     -61.39   15.2976 Upper middle income
## 5666              Roseau     -61.39   15.2976 Upper middle income
## 5667              Roseau     -61.39   15.2976 Upper middle income
## 5668              Roseau     -61.39   15.2976 Upper middle income
## 5669              Roseau     -61.39   15.2976 Upper middle income
## 5670              Roseau     -61.39   15.2976 Upper middle income
## 5671              Roseau     -61.39   15.2976 Upper middle income
## 5672              Roseau     -61.39   15.2976 Upper middle income
## 5673              Roseau     -61.39   15.2976 Upper middle income
## 5674              Roseau     -61.39   15.2976 Upper middle income
## 5675              Roseau     -61.39   15.2976 Upper middle income
## 5676              Roseau     -61.39   15.2976 Upper middle income
## 5677              Roseau     -61.39   15.2976 Upper middle income
## 5678              Roseau     -61.39   15.2976 Upper middle income
## 5679              Roseau     -61.39   15.2976 Upper middle income
## 5680              Roseau     -61.39   15.2976 Upper middle income
## 5681              Roseau     -61.39   15.2976 Upper middle income
## 5682              Roseau     -61.39   15.2976 Upper middle income
## 5683              Roseau     -61.39   15.2976 Upper middle income
## 5684              Roseau     -61.39   15.2976 Upper middle income
## 5685              Roseau     -61.39   15.2976 Upper middle income
## 5686              Roseau     -61.39   15.2976 Upper middle income
## 5687              Roseau     -61.39   15.2976 Upper middle income
## 5688              Roseau     -61.39   15.2976 Upper middle income
## 5689              Roseau     -61.39   15.2976 Upper middle income
## 5690              Roseau     -61.39   15.2976 Upper middle income
## 5691              Roseau     -61.39   15.2976 Upper middle income
## 5692              Roseau     -61.39   15.2976 Upper middle income
## 5693              Roseau     -61.39   15.2976 Upper middle income
## 5694              Roseau     -61.39   15.2976 Upper middle income
## 5695              Roseau     -61.39   15.2976 Upper middle income
## 5696              Roseau     -61.39   15.2976 Upper middle income
## 5697              Roseau     -61.39   15.2976 Upper middle income
## 5698              Roseau     -61.39   15.2976 Upper middle income
## 5699              Roseau     -61.39   15.2976 Upper middle income
## 5700              Roseau     -61.39   15.2976 Upper middle income
## 5701              Roseau     -61.39   15.2976 Upper middle income
## 5702              Roseau     -61.39   15.2976 Upper middle income
## 5703              Roseau     -61.39   15.2976 Upper middle income
## 5704              Roseau     -61.39   15.2976 Upper middle income
## 5705              Roseau     -61.39   15.2976 Upper middle income
## 5706              Roseau     -61.39   15.2976 Upper middle income
## 5707              Roseau     -61.39   15.2976 Upper middle income
## 5708              Roseau     -61.39   15.2976 Upper middle income
## 5709              Roseau     -61.39   15.2976 Upper middle income
## 5710              Roseau     -61.39   15.2976 Upper middle income
## 5711              Roseau     -61.39   15.2976 Upper middle income
## 5712              Roseau     -61.39   15.2976 Upper middle income
## 5713              Roseau     -61.39   15.2976 Upper middle income
## 5714                <NA>       <NA>      <NA>                <NA>
## 5715                <NA>       <NA>      <NA>                <NA>
## 5716                <NA>       <NA>      <NA>                <NA>
## 5717                <NA>       <NA>      <NA>                <NA>
## 5718                <NA>       <NA>      <NA>                <NA>
## 5719                <NA>       <NA>      <NA>                <NA>
## 5720                <NA>       <NA>      <NA>                <NA>
## 5721                <NA>       <NA>      <NA>                <NA>
## 5722                <NA>       <NA>      <NA>                <NA>
## 5723                <NA>       <NA>      <NA>                <NA>
## 5724                <NA>       <NA>      <NA>                <NA>
## 5725                <NA>       <NA>      <NA>                <NA>
## 5726                <NA>       <NA>      <NA>                <NA>
## 5727                <NA>       <NA>      <NA>                <NA>
## 5728                <NA>       <NA>      <NA>                <NA>
## 5729                <NA>       <NA>      <NA>                <NA>
## 5730                <NA>       <NA>      <NA>                <NA>
## 5731                <NA>       <NA>      <NA>                <NA>
## 5732                <NA>       <NA>      <NA>                <NA>
## 5733                <NA>       <NA>      <NA>                <NA>
## 5734                <NA>       <NA>      <NA>                <NA>
## 5735                <NA>       <NA>      <NA>                <NA>
## 5736                <NA>       <NA>      <NA>                <NA>
## 5737                <NA>       <NA>      <NA>                <NA>
## 5738                <NA>       <NA>      <NA>                <NA>
## 5739                <NA>       <NA>      <NA>                <NA>
## 5740                <NA>       <NA>      <NA>                <NA>
## 5741                <NA>       <NA>      <NA>                <NA>
## 5742                <NA>       <NA>      <NA>                <NA>
## 5743                <NA>       <NA>      <NA>                <NA>
## 5744                <NA>       <NA>      <NA>                <NA>
## 5745                <NA>       <NA>      <NA>                <NA>
## 5746                <NA>       <NA>      <NA>                <NA>
## 5747                <NA>       <NA>      <NA>                <NA>
## 5748       Santo Domingo   -69.8908    18.479 Upper middle income
## 5749       Santo Domingo   -69.8908    18.479 Upper middle income
## 5750       Santo Domingo   -69.8908    18.479 Upper middle income
## 5751       Santo Domingo   -69.8908    18.479 Upper middle income
## 5752       Santo Domingo   -69.8908    18.479 Upper middle income
## 5753       Santo Domingo   -69.8908    18.479 Upper middle income
## 5754       Santo Domingo   -69.8908    18.479 Upper middle income
## 5755       Santo Domingo   -69.8908    18.479 Upper middle income
## 5756       Santo Domingo   -69.8908    18.479 Upper middle income
## 5757       Santo Domingo   -69.8908    18.479 Upper middle income
## 5758       Santo Domingo   -69.8908    18.479 Upper middle income
## 5759       Santo Domingo   -69.8908    18.479 Upper middle income
## 5760       Santo Domingo   -69.8908    18.479 Upper middle income
## 5761       Santo Domingo   -69.8908    18.479 Upper middle income
## 5762       Santo Domingo   -69.8908    18.479 Upper middle income
## 5763       Santo Domingo   -69.8908    18.479 Upper middle income
## 5764       Santo Domingo   -69.8908    18.479 Upper middle income
## 5765       Santo Domingo   -69.8908    18.479 Upper middle income
## 5766       Santo Domingo   -69.8908    18.479 Upper middle income
## 5767       Santo Domingo   -69.8908    18.479 Upper middle income
## 5768       Santo Domingo   -69.8908    18.479 Upper middle income
## 5769       Santo Domingo   -69.8908    18.479 Upper middle income
## 5770       Santo Domingo   -69.8908    18.479 Upper middle income
## 5771       Santo Domingo   -69.8908    18.479 Upper middle income
## 5772       Santo Domingo   -69.8908    18.479 Upper middle income
## 5773       Santo Domingo   -69.8908    18.479 Upper middle income
## 5774       Santo Domingo   -69.8908    18.479 Upper middle income
## 5775       Santo Domingo   -69.8908    18.479 Upper middle income
## 5776       Santo Domingo   -69.8908    18.479 Upper middle income
## 5777       Santo Domingo   -69.8908    18.479 Upper middle income
## 5778       Santo Domingo   -69.8908    18.479 Upper middle income
## 5779       Santo Domingo   -69.8908    18.479 Upper middle income
## 5780       Santo Domingo   -69.8908    18.479 Upper middle income
## 5781       Santo Domingo   -69.8908    18.479 Upper middle income
## 5782       Santo Domingo   -69.8908    18.479 Upper middle income
## 5783       Santo Domingo   -69.8908    18.479 Upper middle income
## 5784       Santo Domingo   -69.8908    18.479 Upper middle income
## 5785       Santo Domingo   -69.8908    18.479 Upper middle income
## 5786       Santo Domingo   -69.8908    18.479 Upper middle income
## 5787       Santo Domingo   -69.8908    18.479 Upper middle income
## 5788       Santo Domingo   -69.8908    18.479 Upper middle income
## 5789       Santo Domingo   -69.8908    18.479 Upper middle income
## 5790       Santo Domingo   -69.8908    18.479 Upper middle income
## 5791       Santo Domingo   -69.8908    18.479 Upper middle income
## 5792       Santo Domingo   -69.8908    18.479 Upper middle income
## 5793       Santo Domingo   -69.8908    18.479 Upper middle income
## 5794       Santo Domingo   -69.8908    18.479 Upper middle income
## 5795       Santo Domingo   -69.8908    18.479 Upper middle income
## 5796       Santo Domingo   -69.8908    18.479 Upper middle income
## 5797       Santo Domingo   -69.8908    18.479 Upper middle income
## 5798       Santo Domingo   -69.8908    18.479 Upper middle income
## 5799       Santo Domingo   -69.8908    18.479 Upper middle income
## 5800       Santo Domingo   -69.8908    18.479 Upper middle income
## 5801       Santo Domingo   -69.8908    18.479 Upper middle income
## 5802       Santo Domingo   -69.8908    18.479 Upper middle income
## 5803       Santo Domingo   -69.8908    18.479 Upper middle income
## 5804       Santo Domingo   -69.8908    18.479 Upper middle income
## 5805       Santo Domingo   -69.8908    18.479 Upper middle income
## 5806       Santo Domingo   -69.8908    18.479 Upper middle income
## 5807       Santo Domingo   -69.8908    18.479 Upper middle income
## 5808       Santo Domingo   -69.8908    18.479 Upper middle income
## 5809       Santo Domingo   -69.8908    18.479 Upper middle income
## 5810       Santo Domingo   -69.8908    18.479 Upper middle income
## 5811                <NA>       <NA>      <NA>                <NA>
## 5812                <NA>       <NA>      <NA>                <NA>
## 5813                <NA>       <NA>      <NA>                <NA>
## 5814                <NA>       <NA>      <NA>                <NA>
## 5815                <NA>       <NA>      <NA>                <NA>
## 5816                <NA>       <NA>      <NA>                <NA>
## 5817                <NA>       <NA>      <NA>                <NA>
## 5818                <NA>       <NA>      <NA>                <NA>
## 5819                <NA>       <NA>      <NA>                <NA>
## 5820                <NA>       <NA>      <NA>                <NA>
## 5821                <NA>       <NA>      <NA>                <NA>
## 5822                <NA>       <NA>      <NA>                <NA>
## 5823                <NA>       <NA>      <NA>                <NA>
## 5824                <NA>       <NA>      <NA>                <NA>
## 5825                <NA>       <NA>      <NA>                <NA>
## 5826                <NA>       <NA>      <NA>                <NA>
## 5827                <NA>       <NA>      <NA>                <NA>
## 5828                <NA>       <NA>      <NA>                <NA>
## 5829                <NA>       <NA>      <NA>                <NA>
## 5830                <NA>       <NA>      <NA>                <NA>
## 5831                <NA>       <NA>      <NA>                <NA>
## 5832                <NA>       <NA>      <NA>                <NA>
## 5833                <NA>       <NA>      <NA>                <NA>
## 5834                <NA>       <NA>      <NA>                <NA>
## 5835                <NA>       <NA>      <NA>                <NA>
## 5836                <NA>       <NA>      <NA>                <NA>
## 5837                <NA>       <NA>      <NA>                <NA>
## 5838                <NA>       <NA>      <NA>                <NA>
## 5839                <NA>       <NA>      <NA>                <NA>
## 5840                <NA>       <NA>      <NA>                <NA>
## 5841                <NA>       <NA>      <NA>                <NA>
## 5842                <NA>       <NA>      <NA>                <NA>
## 5843                <NA>       <NA>      <NA>                <NA>
## 5844                <NA>       <NA>      <NA>                <NA>
## 5845                <NA>       <NA>      <NA>                <NA>
## 5846                <NA>       <NA>      <NA>                <NA>
## 5847                <NA>       <NA>      <NA>                <NA>
## 5848                <NA>       <NA>      <NA>                <NA>
## 5849                <NA>       <NA>      <NA>                <NA>
## 5850                <NA>       <NA>      <NA>                <NA>
## 5851                <NA>       <NA>      <NA>                <NA>
## 5852                <NA>       <NA>      <NA>                <NA>
## 5853                <NA>       <NA>      <NA>                <NA>
## 5854                <NA>       <NA>      <NA>                <NA>
## 5855                <NA>       <NA>      <NA>                <NA>
## 5856                <NA>       <NA>      <NA>                <NA>
## 5857                <NA>       <NA>      <NA>                <NA>
## 5858                <NA>       <NA>      <NA>                <NA>
## 5859                <NA>       <NA>      <NA>                <NA>
## 5860                <NA>       <NA>      <NA>                <NA>
## 5861                <NA>       <NA>      <NA>                <NA>
## 5862                <NA>       <NA>      <NA>                <NA>
## 5863                <NA>       <NA>      <NA>                <NA>
## 5864                <NA>       <NA>      <NA>                <NA>
## 5865                <NA>       <NA>      <NA>                <NA>
## 5866                <NA>       <NA>      <NA>                <NA>
## 5867                <NA>       <NA>      <NA>                <NA>
## 5868                <NA>       <NA>      <NA>                <NA>
## 5869                <NA>       <NA>      <NA>                <NA>
## 5870                <NA>       <NA>      <NA>                <NA>
## 5871                <NA>       <NA>      <NA>                <NA>
## 5872                <NA>       <NA>      <NA>                <NA>
## 5873                <NA>       <NA>      <NA>                <NA>
## 5874                <NA>       <NA>      <NA>                <NA>
## 5875                <NA>       <NA>      <NA>                <NA>
## 5876                <NA>       <NA>      <NA>                <NA>
## 5877                <NA>       <NA>      <NA>                <NA>
## 5878                <NA>       <NA>      <NA>                <NA>
## 5879                <NA>       <NA>      <NA>                <NA>
## 5880                <NA>       <NA>      <NA>                <NA>
## 5881                <NA>       <NA>      <NA>                <NA>
## 5882                <NA>       <NA>      <NA>                <NA>
## 5883                <NA>       <NA>      <NA>                <NA>
## 5884                <NA>       <NA>      <NA>                <NA>
## 5885                <NA>       <NA>      <NA>                <NA>
## 5886                <NA>       <NA>      <NA>                <NA>
## 5887                <NA>       <NA>      <NA>                <NA>
## 5888                <NA>       <NA>      <NA>                <NA>
## 5889                <NA>       <NA>      <NA>                <NA>
## 5890                <NA>       <NA>      <NA>                <NA>
## 5891                <NA>       <NA>      <NA>                <NA>
## 5892                <NA>       <NA>      <NA>                <NA>
## 5893                <NA>       <NA>      <NA>                <NA>
## 5894                <NA>       <NA>      <NA>                <NA>
## 5895                <NA>       <NA>      <NA>                <NA>
## 5896                <NA>       <NA>      <NA>                <NA>
## 5897                <NA>       <NA>      <NA>                <NA>
## 5898                <NA>       <NA>      <NA>                <NA>
## 5899                <NA>       <NA>      <NA>                <NA>
## 5900                <NA>       <NA>      <NA>                <NA>
## 5901                <NA>       <NA>      <NA>                <NA>
## 5902                <NA>       <NA>      <NA>                <NA>
## 5903                <NA>       <NA>      <NA>                <NA>
## 5904                <NA>       <NA>      <NA>                <NA>
## 5905                <NA>       <NA>      <NA>                <NA>
## 5906                <NA>       <NA>      <NA>                <NA>
## 5907                <NA>       <NA>      <NA>                <NA>
## 5908                <NA>       <NA>      <NA>                <NA>
## 5909                <NA>       <NA>      <NA>                <NA>
## 5910                <NA>       <NA>      <NA>                <NA>
## 5911                <NA>       <NA>      <NA>                <NA>
## 5912                <NA>       <NA>      <NA>                <NA>
## 5913                <NA>       <NA>      <NA>                <NA>
## 5914                <NA>       <NA>      <NA>                <NA>
## 5915                <NA>       <NA>      <NA>                <NA>
## 5916                <NA>       <NA>      <NA>                <NA>
## 5917                <NA>       <NA>      <NA>                <NA>
## 5918                <NA>       <NA>      <NA>                <NA>
## 5919                <NA>       <NA>      <NA>                <NA>
## 5920                <NA>       <NA>      <NA>                <NA>
## 5921                <NA>       <NA>      <NA>                <NA>
## 5922                <NA>       <NA>      <NA>                <NA>
## 5923                <NA>       <NA>      <NA>                <NA>
## 5924                <NA>       <NA>      <NA>                <NA>
## 5925                <NA>       <NA>      <NA>                <NA>
## 5926                <NA>       <NA>      <NA>                <NA>
## 5927                <NA>       <NA>      <NA>                <NA>
## 5928                <NA>       <NA>      <NA>                <NA>
## 5929                <NA>       <NA>      <NA>                <NA>
## 5930                <NA>       <NA>      <NA>                <NA>
## 5931                <NA>       <NA>      <NA>                <NA>
## 5932                <NA>       <NA>      <NA>                <NA>
## 5933                <NA>       <NA>      <NA>                <NA>
## 5934                <NA>       <NA>      <NA>                <NA>
## 5935                <NA>       <NA>      <NA>                <NA>
## 5936                <NA>       <NA>      <NA>                <NA>
## 5937                <NA>       <NA>      <NA>                <NA>
## 5938                <NA>       <NA>      <NA>                <NA>
## 5939                <NA>       <NA>      <NA>                <NA>
## 5940                <NA>       <NA>      <NA>                <NA>
## 5941                <NA>       <NA>      <NA>                <NA>
## 5942                <NA>       <NA>      <NA>                <NA>
## 5943                <NA>       <NA>      <NA>                <NA>
## 5944                <NA>       <NA>      <NA>                <NA>
## 5945                <NA>       <NA>      <NA>                <NA>
## 5946                <NA>       <NA>      <NA>                <NA>
## 5947                <NA>       <NA>      <NA>                <NA>
## 5948                <NA>       <NA>      <NA>                <NA>
## 5949                <NA>       <NA>      <NA>                <NA>
## 5950                <NA>       <NA>      <NA>                <NA>
## 5951                <NA>       <NA>      <NA>                <NA>
## 5952                <NA>       <NA>      <NA>                <NA>
## 5953                <NA>       <NA>      <NA>                <NA>
## 5954                <NA>       <NA>      <NA>                <NA>
## 5955                <NA>       <NA>      <NA>                <NA>
## 5956                <NA>       <NA>      <NA>                <NA>
## 5957                <NA>       <NA>      <NA>                <NA>
## 5958                <NA>       <NA>      <NA>                <NA>
## 5959                <NA>       <NA>      <NA>                <NA>
## 5960                <NA>       <NA>      <NA>                <NA>
## 5961                <NA>       <NA>      <NA>                <NA>
## 5962                <NA>       <NA>      <NA>                <NA>
## 5963                <NA>       <NA>      <NA>                <NA>
## 5964                <NA>       <NA>      <NA>                <NA>
## 5965                <NA>       <NA>      <NA>                <NA>
## 5966                <NA>       <NA>      <NA>                <NA>
## 5967                <NA>       <NA>      <NA>                <NA>
## 5968                <NA>       <NA>      <NA>                <NA>
## 5969                <NA>       <NA>      <NA>                <NA>
## 5970                <NA>       <NA>      <NA>                <NA>
## 5971                <NA>       <NA>      <NA>                <NA>
## 5972                <NA>       <NA>      <NA>                <NA>
## 5973                <NA>       <NA>      <NA>                <NA>
## 5974                <NA>       <NA>      <NA>                <NA>
## 5975                <NA>       <NA>      <NA>                <NA>
## 5976                <NA>       <NA>      <NA>                <NA>
## 5977                <NA>       <NA>      <NA>                <NA>
## 5978                <NA>       <NA>      <NA>                <NA>
## 5979                <NA>       <NA>      <NA>                <NA>
## 5980                <NA>       <NA>      <NA>                <NA>
## 5981                <NA>       <NA>      <NA>                <NA>
## 5982                <NA>       <NA>      <NA>                <NA>
## 5983                <NA>       <NA>      <NA>                <NA>
## 5984                <NA>       <NA>      <NA>                <NA>
## 5985                <NA>       <NA>      <NA>                <NA>
## 5986                <NA>       <NA>      <NA>                <NA>
## 5987                <NA>       <NA>      <NA>                <NA>
## 5988                <NA>       <NA>      <NA>                <NA>
## 5989                <NA>       <NA>      <NA>                <NA>
## 5990                <NA>       <NA>      <NA>                <NA>
## 5991                <NA>       <NA>      <NA>                <NA>
## 5992                <NA>       <NA>      <NA>                <NA>
## 5993                <NA>       <NA>      <NA>                <NA>
## 5994                <NA>       <NA>      <NA>                <NA>
## 5995                <NA>       <NA>      <NA>                <NA>
## 5996                <NA>       <NA>      <NA>                <NA>
## 5997                <NA>       <NA>      <NA>                <NA>
## 5998                <NA>       <NA>      <NA>                <NA>
## 5999                <NA>       <NA>      <NA>                <NA>
## 6000                <NA>       <NA>      <NA>                <NA>
## 6001                <NA>       <NA>      <NA>                <NA>
## 6002                <NA>       <NA>      <NA>                <NA>
## 6003                <NA>       <NA>      <NA>                <NA>
## 6004                <NA>       <NA>      <NA>                <NA>
## 6005                <NA>       <NA>      <NA>                <NA>
## 6006                <NA>       <NA>      <NA>                <NA>
## 6007                <NA>       <NA>      <NA>                <NA>
## 6008                <NA>       <NA>      <NA>                <NA>
## 6009                <NA>       <NA>      <NA>                <NA>
## 6010                <NA>       <NA>      <NA>                <NA>
## 6011                <NA>       <NA>      <NA>                <NA>
## 6012                <NA>       <NA>      <NA>                <NA>
## 6013                <NA>       <NA>      <NA>                <NA>
## 6014                <NA>       <NA>      <NA>                <NA>
## 6015                <NA>       <NA>      <NA>                <NA>
## 6016                <NA>       <NA>      <NA>                <NA>
## 6017                <NA>       <NA>      <NA>                <NA>
## 6018                <NA>       <NA>      <NA>                <NA>
## 6019                <NA>       <NA>      <NA>                <NA>
## 6020                <NA>       <NA>      <NA>                <NA>
## 6021                <NA>       <NA>      <NA>                <NA>
## 6022                <NA>       <NA>      <NA>                <NA>
## 6023                <NA>       <NA>      <NA>                <NA>
## 6024                <NA>       <NA>      <NA>                <NA>
## 6025                <NA>       <NA>      <NA>                <NA>
## 6026                <NA>       <NA>      <NA>                <NA>
## 6027                <NA>       <NA>      <NA>                <NA>
## 6028                <NA>       <NA>      <NA>                <NA>
## 6029                <NA>       <NA>      <NA>                <NA>
## 6030                <NA>       <NA>      <NA>                <NA>
## 6031                <NA>       <NA>      <NA>                <NA>
## 6032                <NA>       <NA>      <NA>                <NA>
## 6033                <NA>       <NA>      <NA>                <NA>
## 6034                <NA>       <NA>      <NA>                <NA>
## 6035                <NA>       <NA>      <NA>                <NA>
## 6036                <NA>       <NA>      <NA>                <NA>
## 6037                <NA>       <NA>      <NA>                <NA>
## 6038                <NA>       <NA>      <NA>                <NA>
## 6039                <NA>       <NA>      <NA>                <NA>
## 6040                <NA>       <NA>      <NA>                <NA>
## 6041                <NA>       <NA>      <NA>                <NA>
## 6042                <NA>       <NA>      <NA>                <NA>
## 6043                <NA>       <NA>      <NA>                <NA>
## 6044                <NA>       <NA>      <NA>                <NA>
## 6045                <NA>       <NA>      <NA>                <NA>
## 6046                <NA>       <NA>      <NA>                <NA>
## 6047                <NA>       <NA>      <NA>                <NA>
## 6048                <NA>       <NA>      <NA>                <NA>
## 6049                                                   Aggregates
## 6050                                                   Aggregates
## 6051                                                   Aggregates
## 6052                                                   Aggregates
## 6053                                                   Aggregates
## 6054                                                   Aggregates
## 6055                                                   Aggregates
## 6056                                                   Aggregates
## 6057                                                   Aggregates
## 6058                                                   Aggregates
## 6059                                                   Aggregates
## 6060                                                   Aggregates
## 6061                                                   Aggregates
## 6062                                                   Aggregates
## 6063                                                   Aggregates
## 6064                                                   Aggregates
## 6065                                                   Aggregates
## 6066                                                   Aggregates
## 6067                                                   Aggregates
## 6068                                                   Aggregates
## 6069                                                   Aggregates
## 6070                                                   Aggregates
## 6071                                                   Aggregates
## 6072                                                   Aggregates
## 6073                                                   Aggregates
## 6074                                                   Aggregates
## 6075                                                   Aggregates
## 6076                                                   Aggregates
## 6077                                                   Aggregates
## 6078                                                   Aggregates
## 6079                                                   Aggregates
## 6080                                                   Aggregates
## 6081                                                   Aggregates
## 6082                                                   Aggregates
## 6083                                                   Aggregates
## 6084                                                   Aggregates
## 6085                                                   Aggregates
## 6086                                                   Aggregates
## 6087                                                   Aggregates
## 6088                                                   Aggregates
## 6089                                                   Aggregates
## 6090                                                   Aggregates
## 6091                                                   Aggregates
## 6092                                                   Aggregates
## 6093                                                   Aggregates
## 6094                                                   Aggregates
## 6095                                                   Aggregates
## 6096                                                   Aggregates
## 6097                                                   Aggregates
## 6098                                                   Aggregates
## 6099                                                   Aggregates
## 6100                                                   Aggregates
## 6101                                                   Aggregates
## 6102                                                   Aggregates
## 6103                                                   Aggregates
## 6104                                                   Aggregates
## 6105                                                   Aggregates
## 6106                                                   Aggregates
## 6107                                                   Aggregates
## 6108                                                   Aggregates
## 6109                                                   Aggregates
## 6110                                                   Aggregates
## 6111                                                   Aggregates
## 6112                                                   Aggregates
## 6113                                                   Aggregates
## 6114                                                   Aggregates
## 6115                                                   Aggregates
## 6116                                                   Aggregates
## 6117                                                   Aggregates
## 6118                                                   Aggregates
## 6119                                                   Aggregates
## 6120                                                   Aggregates
## 6121                                                   Aggregates
## 6122                                                   Aggregates
## 6123                                                   Aggregates
## 6124                                                   Aggregates
## 6125                                                   Aggregates
## 6126                                                   Aggregates
## 6127                                                   Aggregates
## 6128                                                   Aggregates
## 6129                                                   Aggregates
## 6130                                                   Aggregates
## 6131                                                   Aggregates
## 6132                                                   Aggregates
## 6133                                                   Aggregates
## 6134                                                   Aggregates
## 6135                                                   Aggregates
## 6136                                                   Aggregates
## 6137                                                   Aggregates
## 6138                                                   Aggregates
## 6139                                                   Aggregates
## 6140                                                   Aggregates
## 6141                                                   Aggregates
## 6142                                                   Aggregates
## 6143                                                   Aggregates
## 6144                                                   Aggregates
## 6145                                                   Aggregates
## 6146                                                   Aggregates
## 6147                                                   Aggregates
## 6148                                                   Aggregates
## 6149                                                   Aggregates
## 6150                                                   Aggregates
## 6151                                                   Aggregates
## 6152                                                   Aggregates
## 6153                                                   Aggregates
## 6154                                                   Aggregates
## 6155                                                   Aggregates
## 6156                                                   Aggregates
## 6157                                                   Aggregates
## 6158                                                   Aggregates
## 6159                                                   Aggregates
## 6160                                                   Aggregates
## 6161                                                   Aggregates
## 6162                                                   Aggregates
## 6163                                                   Aggregates
## 6164                                                   Aggregates
## 6165                                                   Aggregates
## 6166                                                   Aggregates
## 6167                                                   Aggregates
## 6168                                                   Aggregates
## 6169                                                   Aggregates
## 6170                                                   Aggregates
## 6171                                                   Aggregates
## 6172                                                   Aggregates
## 6173                                                   Aggregates
## 6174                                                   Aggregates
## 6175                                                   Aggregates
## 6176                                                   Aggregates
## 6177                                                   Aggregates
## 6178                                                   Aggregates
## 6179                                                   Aggregates
## 6180                                                   Aggregates
## 6181                                                   Aggregates
## 6182                                                   Aggregates
## 6183                                                   Aggregates
## 6184                                                   Aggregates
## 6185                                                   Aggregates
## 6186                                                   Aggregates
## 6187                                                   Aggregates
## 6188                                                   Aggregates
## 6189                                                   Aggregates
## 6190                                                   Aggregates
## 6191                                                   Aggregates
## 6192                                                   Aggregates
## 6193                                                   Aggregates
## 6194                                                   Aggregates
## 6195                                                   Aggregates
## 6196                                                   Aggregates
## 6197                                                   Aggregates
## 6198                                                   Aggregates
## 6199                                                   Aggregates
## 6200                                                   Aggregates
## 6201                                                   Aggregates
## 6202                                                   Aggregates
## 6203                                                   Aggregates
## 6204                                                   Aggregates
## 6205                                                   Aggregates
## 6206                                                   Aggregates
## 6207                                                   Aggregates
## 6208                                                   Aggregates
## 6209                                                   Aggregates
## 6210                                                   Aggregates
## 6211                                                   Aggregates
## 6212                                                   Aggregates
## 6213                                                   Aggregates
## 6214                                                   Aggregates
## 6215                                                   Aggregates
## 6216                                                   Aggregates
## 6217                                                   Aggregates
## 6218                                                   Aggregates
## 6219                                                   Aggregates
## 6220                                                   Aggregates
## 6221                                                   Aggregates
## 6222                                                   Aggregates
## 6223                                                   Aggregates
## 6224                                                   Aggregates
## 6225                                                   Aggregates
## 6226                                                   Aggregates
## 6227                                                   Aggregates
## 6228                                                   Aggregates
## 6229                                                   Aggregates
## 6230                                                   Aggregates
## 6231                                                   Aggregates
## 6232                                                   Aggregates
## 6233                                                   Aggregates
## 6234                                                   Aggregates
## 6235                                                   Aggregates
## 6236                                                   Aggregates
## 6237                                                   Aggregates
## 6238                                                   Aggregates
## 6239                                                   Aggregates
## 6240                                                   Aggregates
## 6241                                                   Aggregates
## 6242                                                   Aggregates
## 6243                                                   Aggregates
## 6244                                                   Aggregates
## 6245                                                   Aggregates
## 6246                                                   Aggregates
## 6247                                                   Aggregates
## 6248                                                   Aggregates
## 6249                                                   Aggregates
## 6250                                                   Aggregates
## 6251                                                   Aggregates
## 6252                                                   Aggregates
## 6253                                                   Aggregates
## 6254                                                   Aggregates
## 6255                                                   Aggregates
## 6256                                                   Aggregates
## 6257                                                   Aggregates
## 6258                                                   Aggregates
## 6259                                                   Aggregates
## 6260                                                   Aggregates
## 6261                                                   Aggregates
## 6262                                                   Aggregates
## 6263                                                   Aggregates
## 6264                                                   Aggregates
## 6265                                                   Aggregates
## 6266                                                   Aggregates
## 6267                                                   Aggregates
## 6268                                                   Aggregates
## 6269                                                   Aggregates
## 6270                                                   Aggregates
## 6271                                                   Aggregates
## 6272                                                   Aggregates
## 6273                                                   Aggregates
## 6274                                                   Aggregates
## 6275                                                   Aggregates
## 6276                                                   Aggregates
## 6277                                                   Aggregates
## 6278                                                   Aggregates
## 6279                                                   Aggregates
## 6280                                                   Aggregates
## 6281                                                   Aggregates
## 6282                                                   Aggregates
## 6283                                                   Aggregates
## 6284                                                   Aggregates
## 6285                                                   Aggregates
## 6286                                                   Aggregates
## 6287                                                   Aggregates
## 6288                                                   Aggregates
## 6289                                                   Aggregates
## 6290                                                   Aggregates
## 6291                                                   Aggregates
## 6292                                                   Aggregates
## 6293                                                   Aggregates
## 6294                                                   Aggregates
## 6295                                                   Aggregates
## 6296                                                   Aggregates
## 6297                                                   Aggregates
## 6298                                                   Aggregates
## 6299                                                   Aggregates
## 6300                                                   Aggregates
## 6301                <NA>       <NA>      <NA>                <NA>
## 6302                <NA>       <NA>      <NA>                <NA>
## 6303                <NA>       <NA>      <NA>                <NA>
## 6304                <NA>       <NA>      <NA>                <NA>
## 6305                <NA>       <NA>      <NA>                <NA>
## 6306                <NA>       <NA>      <NA>                <NA>
## 6307                <NA>       <NA>      <NA>                <NA>
## 6308                <NA>       <NA>      <NA>                <NA>
## 6309                <NA>       <NA>      <NA>                <NA>
## 6310                <NA>       <NA>      <NA>                <NA>
## 6311                <NA>       <NA>      <NA>                <NA>
## 6312                <NA>       <NA>      <NA>                <NA>
## 6313                <NA>       <NA>      <NA>                <NA>
## 6314                <NA>       <NA>      <NA>                <NA>
## 6315                <NA>       <NA>      <NA>                <NA>
## 6316                <NA>       <NA>      <NA>                <NA>
## 6317                <NA>       <NA>      <NA>                <NA>
## 6318                <NA>       <NA>      <NA>                <NA>
## 6319                <NA>       <NA>      <NA>                <NA>
## 6320                <NA>       <NA>      <NA>                <NA>
## 6321                <NA>       <NA>      <NA>                <NA>
## 6322                <NA>       <NA>      <NA>                <NA>
## 6323                <NA>       <NA>      <NA>                <NA>
## 6324                <NA>       <NA>      <NA>                <NA>
## 6325                <NA>       <NA>      <NA>                <NA>
## 6326                <NA>       <NA>      <NA>                <NA>
## 6327                <NA>       <NA>      <NA>                <NA>
## 6328                <NA>       <NA>      <NA>                <NA>
## 6329                <NA>       <NA>      <NA>                <NA>
## 6330                <NA>       <NA>      <NA>                <NA>
## 6331                <NA>       <NA>      <NA>                <NA>
## 6332                <NA>       <NA>      <NA>                <NA>
## 6333                <NA>       <NA>      <NA>                <NA>
## 6334                <NA>       <NA>      <NA>                <NA>
## 6335               Quito   -78.5243 -0.229498 Upper middle income
## 6336               Quito   -78.5243 -0.229498 Upper middle income
## 6337               Quito   -78.5243 -0.229498 Upper middle income
## 6338               Quito   -78.5243 -0.229498 Upper middle income
## 6339               Quito   -78.5243 -0.229498 Upper middle income
## 6340               Quito   -78.5243 -0.229498 Upper middle income
## 6341               Quito   -78.5243 -0.229498 Upper middle income
## 6342               Quito   -78.5243 -0.229498 Upper middle income
## 6343               Quito   -78.5243 -0.229498 Upper middle income
## 6344               Quito   -78.5243 -0.229498 Upper middle income
## 6345               Quito   -78.5243 -0.229498 Upper middle income
## 6346               Quito   -78.5243 -0.229498 Upper middle income
## 6347               Quito   -78.5243 -0.229498 Upper middle income
## 6348               Quito   -78.5243 -0.229498 Upper middle income
## 6349               Quito   -78.5243 -0.229498 Upper middle income
## 6350               Quito   -78.5243 -0.229498 Upper middle income
## 6351               Quito   -78.5243 -0.229498 Upper middle income
## 6352               Quito   -78.5243 -0.229498 Upper middle income
## 6353               Quito   -78.5243 -0.229498 Upper middle income
## 6354               Quito   -78.5243 -0.229498 Upper middle income
## 6355               Quito   -78.5243 -0.229498 Upper middle income
## 6356               Quito   -78.5243 -0.229498 Upper middle income
## 6357               Quito   -78.5243 -0.229498 Upper middle income
## 6358               Quito   -78.5243 -0.229498 Upper middle income
## 6359               Quito   -78.5243 -0.229498 Upper middle income
## 6360               Quito   -78.5243 -0.229498 Upper middle income
## 6361               Quito   -78.5243 -0.229498 Upper middle income
## 6362               Quito   -78.5243 -0.229498 Upper middle income
## 6363               Quito   -78.5243 -0.229498 Upper middle income
## 6364               Quito   -78.5243 -0.229498 Upper middle income
## 6365               Quito   -78.5243 -0.229498 Upper middle income
## 6366               Quito   -78.5243 -0.229498 Upper middle income
## 6367               Quito   -78.5243 -0.229498 Upper middle income
## 6368               Quito   -78.5243 -0.229498 Upper middle income
## 6369               Quito   -78.5243 -0.229498 Upper middle income
## 6370               Quito   -78.5243 -0.229498 Upper middle income
## 6371               Quito   -78.5243 -0.229498 Upper middle income
## 6372               Quito   -78.5243 -0.229498 Upper middle income
## 6373               Quito   -78.5243 -0.229498 Upper middle income
## 6374               Quito   -78.5243 -0.229498 Upper middle income
## 6375               Quito   -78.5243 -0.229498 Upper middle income
## 6376               Quito   -78.5243 -0.229498 Upper middle income
## 6377               Quito   -78.5243 -0.229498 Upper middle income
## 6378               Quito   -78.5243 -0.229498 Upper middle income
## 6379               Quito   -78.5243 -0.229498 Upper middle income
## 6380               Quito   -78.5243 -0.229498 Upper middle income
## 6381               Quito   -78.5243 -0.229498 Upper middle income
## 6382               Quito   -78.5243 -0.229498 Upper middle income
## 6383               Quito   -78.5243 -0.229498 Upper middle income
## 6384               Quito   -78.5243 -0.229498 Upper middle income
## 6385               Quito   -78.5243 -0.229498 Upper middle income
## 6386               Quito   -78.5243 -0.229498 Upper middle income
## 6387               Quito   -78.5243 -0.229498 Upper middle income
## 6388               Quito   -78.5243 -0.229498 Upper middle income
## 6389               Quito   -78.5243 -0.229498 Upper middle income
## 6390               Quito   -78.5243 -0.229498 Upper middle income
## 6391               Quito   -78.5243 -0.229498 Upper middle income
## 6392               Quito   -78.5243 -0.229498 Upper middle income
## 6393               Quito   -78.5243 -0.229498 Upper middle income
## 6394               Quito   -78.5243 -0.229498 Upper middle income
## 6395               Quito   -78.5243 -0.229498 Upper middle income
## 6396               Quito   -78.5243 -0.229498 Upper middle income
## 6397               Quito   -78.5243 -0.229498 Upper middle income
## 6398                <NA>       <NA>      <NA>                <NA>
## 6399                <NA>       <NA>      <NA>                <NA>
## 6400                <NA>       <NA>      <NA>                <NA>
## 6401                <NA>       <NA>      <NA>                <NA>
## 6402                <NA>       <NA>      <NA>                <NA>
## 6403                <NA>       <NA>      <NA>                <NA>
## 6404                <NA>       <NA>      <NA>                <NA>
## 6405                <NA>       <NA>      <NA>                <NA>
## 6406                <NA>       <NA>      <NA>                <NA>
## 6407                <NA>       <NA>      <NA>                <NA>
## 6408                <NA>       <NA>      <NA>                <NA>
## 6409                <NA>       <NA>      <NA>                <NA>
## 6410                <NA>       <NA>      <NA>                <NA>
## 6411                <NA>       <NA>      <NA>                <NA>
## 6412                <NA>       <NA>      <NA>                <NA>
## 6413                <NA>       <NA>      <NA>                <NA>
## 6414                <NA>       <NA>      <NA>                <NA>
## 6415                <NA>       <NA>      <NA>                <NA>
## 6416                <NA>       <NA>      <NA>                <NA>
## 6417                <NA>       <NA>      <NA>                <NA>
## 6418                <NA>       <NA>      <NA>                <NA>
## 6419                <NA>       <NA>      <NA>                <NA>
## 6420                <NA>       <NA>      <NA>                <NA>
## 6421                <NA>       <NA>      <NA>                <NA>
## 6422                <NA>       <NA>      <NA>                <NA>
## 6423                <NA>       <NA>      <NA>                <NA>
## 6424                <NA>       <NA>      <NA>                <NA>
## 6425                <NA>       <NA>      <NA>                <NA>
## 6426                <NA>       <NA>      <NA>                <NA>
## 6427                <NA>       <NA>      <NA>                <NA>
## 6428                <NA>       <NA>      <NA>                <NA>
## 6429                <NA>       <NA>      <NA>                <NA>
## 6430                <NA>       <NA>      <NA>                <NA>
## 6431                <NA>       <NA>      <NA>                <NA>
## 6432                <NA>       <NA>      <NA>                <NA>
## 6433                <NA>       <NA>      <NA>                <NA>
## 6434                <NA>       <NA>      <NA>                <NA>
## 6435                <NA>       <NA>      <NA>                <NA>
## 6436                <NA>       <NA>      <NA>                <NA>
## 6437                <NA>       <NA>      <NA>                <NA>
## 6438                <NA>       <NA>      <NA>                <NA>
## 6439                <NA>       <NA>      <NA>                <NA>
## 6440                <NA>       <NA>      <NA>                <NA>
## 6441                <NA>       <NA>      <NA>                <NA>
## 6442                <NA>       <NA>      <NA>                <NA>
## 6443                <NA>       <NA>      <NA>                <NA>
## 6444                <NA>       <NA>      <NA>                <NA>
## 6445                <NA>       <NA>      <NA>                <NA>
## 6446                <NA>       <NA>      <NA>                <NA>
## 6447                <NA>       <NA>      <NA>                <NA>
## 6448                <NA>       <NA>      <NA>                <NA>
## 6449                <NA>       <NA>      <NA>                <NA>
## 6450                <NA>       <NA>      <NA>                <NA>
## 6451                <NA>       <NA>      <NA>                <NA>
## 6452                <NA>       <NA>      <NA>                <NA>
## 6453                <NA>       <NA>      <NA>                <NA>
## 6454                <NA>       <NA>      <NA>                <NA>
## 6455                <NA>       <NA>      <NA>                <NA>
## 6456                <NA>       <NA>      <NA>                <NA>
## 6457                <NA>       <NA>      <NA>                <NA>
## 6458                <NA>       <NA>      <NA>                <NA>
## 6459                <NA>       <NA>      <NA>                <NA>
## 6460                <NA>       <NA>      <NA>                <NA>
## 6461                <NA>       <NA>      <NA>                <NA>
## 6462                <NA>       <NA>      <NA>                <NA>
## 6463                <NA>       <NA>      <NA>                <NA>
## 6464                <NA>       <NA>      <NA>                <NA>
## 6465                <NA>       <NA>      <NA>                <NA>
## 6466               Cairo    31.2461   30.0982 Lower middle income
## 6467               Cairo    31.2461   30.0982 Lower middle income
## 6468               Cairo    31.2461   30.0982 Lower middle income
## 6469               Cairo    31.2461   30.0982 Lower middle income
## 6470               Cairo    31.2461   30.0982 Lower middle income
## 6471               Cairo    31.2461   30.0982 Lower middle income
## 6472               Cairo    31.2461   30.0982 Lower middle income
## 6473               Cairo    31.2461   30.0982 Lower middle income
## 6474               Cairo    31.2461   30.0982 Lower middle income
## 6475               Cairo    31.2461   30.0982 Lower middle income
## 6476               Cairo    31.2461   30.0982 Lower middle income
## 6477               Cairo    31.2461   30.0982 Lower middle income
## 6478               Cairo    31.2461   30.0982 Lower middle income
## 6479               Cairo    31.2461   30.0982 Lower middle income
## 6480               Cairo    31.2461   30.0982 Lower middle income
## 6481               Cairo    31.2461   30.0982 Lower middle income
## 6482               Cairo    31.2461   30.0982 Lower middle income
## 6483               Cairo    31.2461   30.0982 Lower middle income
## 6484               Cairo    31.2461   30.0982 Lower middle income
## 6485               Cairo    31.2461   30.0982 Lower middle income
## 6486               Cairo    31.2461   30.0982 Lower middle income
## 6487               Cairo    31.2461   30.0982 Lower middle income
## 6488               Cairo    31.2461   30.0982 Lower middle income
## 6489               Cairo    31.2461   30.0982 Lower middle income
## 6490               Cairo    31.2461   30.0982 Lower middle income
## 6491               Cairo    31.2461   30.0982 Lower middle income
## 6492               Cairo    31.2461   30.0982 Lower middle income
## 6493               Cairo    31.2461   30.0982 Lower middle income
## 6494               Cairo    31.2461   30.0982 Lower middle income
## 6495               Cairo    31.2461   30.0982 Lower middle income
## 6496               Cairo    31.2461   30.0982 Lower middle income
## 6497               Cairo    31.2461   30.0982 Lower middle income
## 6498               Cairo    31.2461   30.0982 Lower middle income
## 6499               Cairo    31.2461   30.0982 Lower middle income
## 6500               Cairo    31.2461   30.0982 Lower middle income
## 6501               Cairo    31.2461   30.0982 Lower middle income
## 6502               Cairo    31.2461   30.0982 Lower middle income
## 6503               Cairo    31.2461   30.0982 Lower middle income
## 6504               Cairo    31.2461   30.0982 Lower middle income
## 6505               Cairo    31.2461   30.0982 Lower middle income
## 6506               Cairo    31.2461   30.0982 Lower middle income
## 6507               Cairo    31.2461   30.0982 Lower middle income
## 6508               Cairo    31.2461   30.0982 Lower middle income
## 6509               Cairo    31.2461   30.0982 Lower middle income
## 6510               Cairo    31.2461   30.0982 Lower middle income
## 6511               Cairo    31.2461   30.0982 Lower middle income
## 6512               Cairo    31.2461   30.0982 Lower middle income
## 6513               Cairo    31.2461   30.0982 Lower middle income
## 6514               Cairo    31.2461   30.0982 Lower middle income
## 6515               Cairo    31.2461   30.0982 Lower middle income
## 6516               Cairo    31.2461   30.0982 Lower middle income
## 6517               Cairo    31.2461   30.0982 Lower middle income
## 6518               Cairo    31.2461   30.0982 Lower middle income
## 6519               Cairo    31.2461   30.0982 Lower middle income
## 6520               Cairo    31.2461   30.0982 Lower middle income
## 6521               Cairo    31.2461   30.0982 Lower middle income
## 6522               Cairo    31.2461   30.0982 Lower middle income
## 6523               Cairo    31.2461   30.0982 Lower middle income
## 6524               Cairo    31.2461   30.0982 Lower middle income
## 6525               Cairo    31.2461   30.0982 Lower middle income
## 6526               Cairo    31.2461   30.0982 Lower middle income
## 6527               Cairo    31.2461   30.0982 Lower middle income
## 6528               Cairo    31.2461   30.0982 Lower middle income
## 6529                <NA>       <NA>      <NA>                <NA>
## 6530                <NA>       <NA>      <NA>                <NA>
## 6531                <NA>       <NA>      <NA>                <NA>
## 6532                <NA>       <NA>      <NA>                <NA>
## 6533                <NA>       <NA>      <NA>                <NA>
## 6534                <NA>       <NA>      <NA>                <NA>
## 6535                <NA>       <NA>      <NA>                <NA>
## 6536                <NA>       <NA>      <NA>                <NA>
## 6537                <NA>       <NA>      <NA>                <NA>
## 6538                <NA>       <NA>      <NA>                <NA>
## 6539                <NA>       <NA>      <NA>                <NA>
## 6540                <NA>       <NA>      <NA>                <NA>
## 6541                <NA>       <NA>      <NA>                <NA>
## 6542                <NA>       <NA>      <NA>                <NA>
## 6543                <NA>       <NA>      <NA>                <NA>
## 6544                <NA>       <NA>      <NA>                <NA>
## 6545                <NA>       <NA>      <NA>                <NA>
## 6546                <NA>       <NA>      <NA>                <NA>
## 6547                <NA>       <NA>      <NA>                <NA>
## 6548                <NA>       <NA>      <NA>                <NA>
## 6549                <NA>       <NA>      <NA>                <NA>
## 6550                <NA>       <NA>      <NA>                <NA>
## 6551                <NA>       <NA>      <NA>                <NA>
## 6552                <NA>       <NA>      <NA>                <NA>
## 6553                <NA>       <NA>      <NA>                <NA>
## 6554                <NA>       <NA>      <NA>                <NA>
## 6555                <NA>       <NA>      <NA>                <NA>
## 6556                <NA>       <NA>      <NA>                <NA>
## 6557                <NA>       <NA>      <NA>                <NA>
## 6558                <NA>       <NA>      <NA>                <NA>
## 6559                <NA>       <NA>      <NA>                <NA>
## 6560                <NA>       <NA>      <NA>                <NA>
## 6561                <NA>       <NA>      <NA>                <NA>
## 6562                <NA>       <NA>      <NA>                <NA>
## 6563        San Salvador   -89.2073   13.7034 Lower middle income
## 6564        San Salvador   -89.2073   13.7034 Lower middle income
## 6565        San Salvador   -89.2073   13.7034 Lower middle income
## 6566        San Salvador   -89.2073   13.7034 Lower middle income
## 6567        San Salvador   -89.2073   13.7034 Lower middle income
## 6568        San Salvador   -89.2073   13.7034 Lower middle income
## 6569        San Salvador   -89.2073   13.7034 Lower middle income
## 6570        San Salvador   -89.2073   13.7034 Lower middle income
## 6571        San Salvador   -89.2073   13.7034 Lower middle income
## 6572        San Salvador   -89.2073   13.7034 Lower middle income
## 6573        San Salvador   -89.2073   13.7034 Lower middle income
## 6574        San Salvador   -89.2073   13.7034 Lower middle income
## 6575        San Salvador   -89.2073   13.7034 Lower middle income
## 6576        San Salvador   -89.2073   13.7034 Lower middle income
## 6577        San Salvador   -89.2073   13.7034 Lower middle income
## 6578        San Salvador   -89.2073   13.7034 Lower middle income
## 6579        San Salvador   -89.2073   13.7034 Lower middle income
## 6580        San Salvador   -89.2073   13.7034 Lower middle income
## 6581        San Salvador   -89.2073   13.7034 Lower middle income
## 6582        San Salvador   -89.2073   13.7034 Lower middle income
## 6583        San Salvador   -89.2073   13.7034 Lower middle income
## 6584        San Salvador   -89.2073   13.7034 Lower middle income
## 6585        San Salvador   -89.2073   13.7034 Lower middle income
## 6586        San Salvador   -89.2073   13.7034 Lower middle income
## 6587        San Salvador   -89.2073   13.7034 Lower middle income
## 6588        San Salvador   -89.2073   13.7034 Lower middle income
## 6589        San Salvador   -89.2073   13.7034 Lower middle income
## 6590        San Salvador   -89.2073   13.7034 Lower middle income
## 6591        San Salvador   -89.2073   13.7034 Lower middle income
## 6592        San Salvador   -89.2073   13.7034 Lower middle income
## 6593        San Salvador   -89.2073   13.7034 Lower middle income
## 6594        San Salvador   -89.2073   13.7034 Lower middle income
## 6595        San Salvador   -89.2073   13.7034 Lower middle income
## 6596        San Salvador   -89.2073   13.7034 Lower middle income
## 6597        San Salvador   -89.2073   13.7034 Lower middle income
## 6598        San Salvador   -89.2073   13.7034 Lower middle income
## 6599        San Salvador   -89.2073   13.7034 Lower middle income
## 6600        San Salvador   -89.2073   13.7034 Lower middle income
## 6601        San Salvador   -89.2073   13.7034 Lower middle income
## 6602        San Salvador   -89.2073   13.7034 Lower middle income
## 6603        San Salvador   -89.2073   13.7034 Lower middle income
## 6604        San Salvador   -89.2073   13.7034 Lower middle income
## 6605        San Salvador   -89.2073   13.7034 Lower middle income
## 6606        San Salvador   -89.2073   13.7034 Lower middle income
## 6607        San Salvador   -89.2073   13.7034 Lower middle income
## 6608        San Salvador   -89.2073   13.7034 Lower middle income
## 6609        San Salvador   -89.2073   13.7034 Lower middle income
## 6610        San Salvador   -89.2073   13.7034 Lower middle income
## 6611        San Salvador   -89.2073   13.7034 Lower middle income
## 6612        San Salvador   -89.2073   13.7034 Lower middle income
## 6613        San Salvador   -89.2073   13.7034 Lower middle income
## 6614        San Salvador   -89.2073   13.7034 Lower middle income
## 6615        San Salvador   -89.2073   13.7034 Lower middle income
## 6616        San Salvador   -89.2073   13.7034 Lower middle income
## 6617        San Salvador   -89.2073   13.7034 Lower middle income
## 6618        San Salvador   -89.2073   13.7034 Lower middle income
## 6619        San Salvador   -89.2073   13.7034 Lower middle income
## 6620        San Salvador   -89.2073   13.7034 Lower middle income
## 6621        San Salvador   -89.2073   13.7034 Lower middle income
## 6622        San Salvador   -89.2073   13.7034 Lower middle income
## 6623        San Salvador   -89.2073   13.7034 Lower middle income
## 6624        San Salvador   -89.2073   13.7034 Lower middle income
## 6625        San Salvador   -89.2073   13.7034 Lower middle income
## 6626                <NA>       <NA>      <NA>                <NA>
## 6627                <NA>       <NA>      <NA>                <NA>
## 6628                <NA>       <NA>      <NA>                <NA>
## 6629                <NA>       <NA>      <NA>                <NA>
## 6630                <NA>       <NA>      <NA>                <NA>
## 6631                <NA>       <NA>      <NA>                <NA>
## 6632                <NA>       <NA>      <NA>                <NA>
## 6633                <NA>       <NA>      <NA>                <NA>
## 6634                <NA>       <NA>      <NA>                <NA>
## 6635                <NA>       <NA>      <NA>                <NA>
## 6636                <NA>       <NA>      <NA>                <NA>
## 6637                <NA>       <NA>      <NA>                <NA>
## 6638                <NA>       <NA>      <NA>                <NA>
## 6639                <NA>       <NA>      <NA>                <NA>
## 6640                <NA>       <NA>      <NA>                <NA>
## 6641                <NA>       <NA>      <NA>                <NA>
## 6642                <NA>       <NA>      <NA>                <NA>
## 6643                <NA>       <NA>      <NA>                <NA>
## 6644                <NA>       <NA>      <NA>                <NA>
## 6645                <NA>       <NA>      <NA>                <NA>
## 6646                <NA>       <NA>      <NA>                <NA>
## 6647                <NA>       <NA>      <NA>                <NA>
## 6648                <NA>       <NA>      <NA>                <NA>
## 6649                <NA>       <NA>      <NA>                <NA>
## 6650                <NA>       <NA>      <NA>                <NA>
## 6651                <NA>       <NA>      <NA>                <NA>
## 6652                <NA>       <NA>      <NA>                <NA>
## 6653                <NA>       <NA>      <NA>                <NA>
## 6654                <NA>       <NA>      <NA>                <NA>
## 6655                <NA>       <NA>      <NA>                <NA>
## 6656                <NA>       <NA>      <NA>                <NA>
## 6657                <NA>       <NA>      <NA>                <NA>
## 6658                <NA>       <NA>      <NA>                <NA>
## 6659                <NA>       <NA>      <NA>                <NA>
## 6660                <NA>       <NA>      <NA>                <NA>
## 6661                <NA>       <NA>      <NA>                <NA>
## 6662                <NA>       <NA>      <NA>                <NA>
## 6663                <NA>       <NA>      <NA>                <NA>
## 6664                <NA>       <NA>      <NA>                <NA>
## 6665                <NA>       <NA>      <NA>                <NA>
## 6666                <NA>       <NA>      <NA>                <NA>
## 6667                <NA>       <NA>      <NA>                <NA>
## 6668                <NA>       <NA>      <NA>                <NA>
## 6669                <NA>       <NA>      <NA>                <NA>
## 6670                <NA>       <NA>      <NA>                <NA>
## 6671                <NA>       <NA>      <NA>                <NA>
## 6672                <NA>       <NA>      <NA>                <NA>
## 6673                <NA>       <NA>      <NA>                <NA>
## 6674                <NA>       <NA>      <NA>                <NA>
## 6675                <NA>       <NA>      <NA>                <NA>
## 6676                <NA>       <NA>      <NA>                <NA>
## 6677                <NA>       <NA>      <NA>                <NA>
## 6678                <NA>       <NA>      <NA>                <NA>
## 6679                <NA>       <NA>      <NA>                <NA>
## 6680                <NA>       <NA>      <NA>                <NA>
## 6681                <NA>       <NA>      <NA>                <NA>
## 6682                <NA>       <NA>      <NA>                <NA>
## 6683                <NA>       <NA>      <NA>                <NA>
## 6684                <NA>       <NA>      <NA>                <NA>
## 6685                <NA>       <NA>      <NA>                <NA>
## 6686                <NA>       <NA>      <NA>                <NA>
## 6687                <NA>       <NA>      <NA>                <NA>
## 6688                <NA>       <NA>      <NA>                <NA>
## 6689                <NA>       <NA>      <NA>                <NA>
## 6690                <NA>       <NA>      <NA>                <NA>
## 6691                <NA>       <NA>      <NA>                <NA>
## 6692                <NA>       <NA>      <NA>                <NA>
## 6693                <NA>       <NA>      <NA>                <NA>
## 6694              Malabo     8.7741    3.7523 Upper middle income
## 6695              Malabo     8.7741    3.7523 Upper middle income
## 6696              Malabo     8.7741    3.7523 Upper middle income
## 6697              Malabo     8.7741    3.7523 Upper middle income
## 6698              Malabo     8.7741    3.7523 Upper middle income
## 6699              Malabo     8.7741    3.7523 Upper middle income
## 6700              Malabo     8.7741    3.7523 Upper middle income
## 6701              Malabo     8.7741    3.7523 Upper middle income
## 6702              Malabo     8.7741    3.7523 Upper middle income
## 6703              Malabo     8.7741    3.7523 Upper middle income
## 6704              Malabo     8.7741    3.7523 Upper middle income
## 6705              Malabo     8.7741    3.7523 Upper middle income
## 6706              Malabo     8.7741    3.7523 Upper middle income
## 6707              Malabo     8.7741    3.7523 Upper middle income
## 6708              Malabo     8.7741    3.7523 Upper middle income
## 6709              Malabo     8.7741    3.7523 Upper middle income
## 6710              Malabo     8.7741    3.7523 Upper middle income
## 6711              Malabo     8.7741    3.7523 Upper middle income
## 6712              Malabo     8.7741    3.7523 Upper middle income
## 6713              Malabo     8.7741    3.7523 Upper middle income
## 6714              Malabo     8.7741    3.7523 Upper middle income
## 6715              Malabo     8.7741    3.7523 Upper middle income
## 6716              Malabo     8.7741    3.7523 Upper middle income
## 6717              Malabo     8.7741    3.7523 Upper middle income
## 6718              Malabo     8.7741    3.7523 Upper middle income
## 6719              Malabo     8.7741    3.7523 Upper middle income
## 6720              Malabo     8.7741    3.7523 Upper middle income
## 6721              Malabo     8.7741    3.7523 Upper middle income
## 6722              Malabo     8.7741    3.7523 Upper middle income
## 6723              Malabo     8.7741    3.7523 Upper middle income
## 6724              Malabo     8.7741    3.7523 Upper middle income
## 6725              Malabo     8.7741    3.7523 Upper middle income
## 6726              Malabo     8.7741    3.7523 Upper middle income
## 6727              Malabo     8.7741    3.7523 Upper middle income
## 6728              Malabo     8.7741    3.7523 Upper middle income
## 6729              Malabo     8.7741    3.7523 Upper middle income
## 6730              Malabo     8.7741    3.7523 Upper middle income
## 6731              Malabo     8.7741    3.7523 Upper middle income
## 6732              Malabo     8.7741    3.7523 Upper middle income
## 6733              Malabo     8.7741    3.7523 Upper middle income
## 6734              Malabo     8.7741    3.7523 Upper middle income
## 6735              Malabo     8.7741    3.7523 Upper middle income
## 6736              Malabo     8.7741    3.7523 Upper middle income
## 6737              Malabo     8.7741    3.7523 Upper middle income
## 6738              Malabo     8.7741    3.7523 Upper middle income
## 6739              Malabo     8.7741    3.7523 Upper middle income
## 6740              Malabo     8.7741    3.7523 Upper middle income
## 6741              Malabo     8.7741    3.7523 Upper middle income
## 6742              Malabo     8.7741    3.7523 Upper middle income
## 6743              Malabo     8.7741    3.7523 Upper middle income
## 6744              Malabo     8.7741    3.7523 Upper middle income
## 6745              Malabo     8.7741    3.7523 Upper middle income
## 6746              Malabo     8.7741    3.7523 Upper middle income
## 6747              Malabo     8.7741    3.7523 Upper middle income
## 6748              Malabo     8.7741    3.7523 Upper middle income
## 6749              Malabo     8.7741    3.7523 Upper middle income
## 6750              Malabo     8.7741    3.7523 Upper middle income
## 6751              Malabo     8.7741    3.7523 Upper middle income
## 6752              Malabo     8.7741    3.7523 Upper middle income
## 6753              Malabo     8.7741    3.7523 Upper middle income
## 6754              Malabo     8.7741    3.7523 Upper middle income
## 6755              Malabo     8.7741    3.7523 Upper middle income
## 6756              Malabo     8.7741    3.7523 Upper middle income
## 6757              Asmara    38.9183   15.3315          Low income
## 6758              Asmara    38.9183   15.3315          Low income
## 6759              Asmara    38.9183   15.3315          Low income
## 6760              Asmara    38.9183   15.3315          Low income
## 6761              Asmara    38.9183   15.3315          Low income
## 6762              Asmara    38.9183   15.3315          Low income
## 6763              Asmara    38.9183   15.3315          Low income
## 6764              Asmara    38.9183   15.3315          Low income
## 6765              Asmara    38.9183   15.3315          Low income
## 6766              Asmara    38.9183   15.3315          Low income
## 6767              Asmara    38.9183   15.3315          Low income
## 6768              Asmara    38.9183   15.3315          Low income
## 6769              Asmara    38.9183   15.3315          Low income
## 6770              Asmara    38.9183   15.3315          Low income
## 6771              Asmara    38.9183   15.3315          Low income
## 6772              Asmara    38.9183   15.3315          Low income
## 6773              Asmara    38.9183   15.3315          Low income
## 6774              Asmara    38.9183   15.3315          Low income
## 6775              Asmara    38.9183   15.3315          Low income
## 6776              Asmara    38.9183   15.3315          Low income
## 6777              Asmara    38.9183   15.3315          Low income
## 6778              Asmara    38.9183   15.3315          Low income
## 6779              Asmara    38.9183   15.3315          Low income
## 6780              Asmara    38.9183   15.3315          Low income
## 6781              Asmara    38.9183   15.3315          Low income
## 6782              Asmara    38.9183   15.3315          Low income
## 6783              Asmara    38.9183   15.3315          Low income
## 6784              Asmara    38.9183   15.3315          Low income
## 6785              Asmara    38.9183   15.3315          Low income
## 6786              Asmara    38.9183   15.3315          Low income
## 6787              Asmara    38.9183   15.3315          Low income
## 6788              Asmara    38.9183   15.3315          Low income
## 6789              Asmara    38.9183   15.3315          Low income
## 6790              Asmara    38.9183   15.3315          Low income
## 6791              Asmara    38.9183   15.3315          Low income
## 6792              Asmara    38.9183   15.3315          Low income
## 6793              Asmara    38.9183   15.3315          Low income
## 6794              Asmara    38.9183   15.3315          Low income
## 6795              Asmara    38.9183   15.3315          Low income
## 6796              Asmara    38.9183   15.3315          Low income
## 6797              Asmara    38.9183   15.3315          Low income
## 6798              Asmara    38.9183   15.3315          Low income
## 6799              Asmara    38.9183   15.3315          Low income
## 6800              Asmara    38.9183   15.3315          Low income
## 6801              Asmara    38.9183   15.3315          Low income
## 6802              Asmara    38.9183   15.3315          Low income
## 6803              Asmara    38.9183   15.3315          Low income
## 6804              Asmara    38.9183   15.3315          Low income
## 6805              Asmara    38.9183   15.3315          Low income
## 6806              Asmara    38.9183   15.3315          Low income
## 6807              Asmara    38.9183   15.3315          Low income
## 6808              Asmara    38.9183   15.3315          Low income
## 6809              Asmara    38.9183   15.3315          Low income
## 6810              Asmara    38.9183   15.3315          Low income
## 6811              Asmara    38.9183   15.3315          Low income
## 6812              Asmara    38.9183   15.3315          Low income
## 6813              Asmara    38.9183   15.3315          Low income
## 6814              Asmara    38.9183   15.3315          Low income
## 6815              Asmara    38.9183   15.3315          Low income
## 6816              Asmara    38.9183   15.3315          Low income
## 6817              Asmara    38.9183   15.3315          Low income
## 6818              Asmara    38.9183   15.3315          Low income
## 6819              Asmara    38.9183   15.3315          Low income
## 6820                <NA>       <NA>      <NA>                <NA>
## 6821                <NA>       <NA>      <NA>                <NA>
## 6822                <NA>       <NA>      <NA>                <NA>
## 6823                <NA>       <NA>      <NA>                <NA>
## 6824                <NA>       <NA>      <NA>                <NA>
## 6825                <NA>       <NA>      <NA>                <NA>
## 6826                <NA>       <NA>      <NA>                <NA>
## 6827                <NA>       <NA>      <NA>                <NA>
## 6828                <NA>       <NA>      <NA>                <NA>
## 6829                <NA>       <NA>      <NA>                <NA>
## 6830                <NA>       <NA>      <NA>                <NA>
## 6831                <NA>       <NA>      <NA>                <NA>
## 6832                <NA>       <NA>      <NA>                <NA>
## 6833                <NA>       <NA>      <NA>                <NA>
## 6834                <NA>       <NA>      <NA>                <NA>
## 6835                <NA>       <NA>      <NA>                <NA>
## 6836                <NA>       <NA>      <NA>                <NA>
## 6837                <NA>       <NA>      <NA>                <NA>
## 6838                <NA>       <NA>      <NA>                <NA>
## 6839                <NA>       <NA>      <NA>                <NA>
## 6840                <NA>       <NA>      <NA>                <NA>
## 6841                <NA>       <NA>      <NA>                <NA>
## 6842                <NA>       <NA>      <NA>                <NA>
## 6843                <NA>       <NA>      <NA>                <NA>
## 6844                <NA>       <NA>      <NA>                <NA>
## 6845                <NA>       <NA>      <NA>                <NA>
## 6846                <NA>       <NA>      <NA>                <NA>
## 6847                <NA>       <NA>      <NA>                <NA>
## 6848                <NA>       <NA>      <NA>                <NA>
## 6849                <NA>       <NA>      <NA>                <NA>
## 6850                <NA>       <NA>      <NA>                <NA>
## 6851                <NA>       <NA>      <NA>                <NA>
## 6852                <NA>       <NA>      <NA>                <NA>
## 6853                <NA>       <NA>      <NA>                <NA>
## 6854             Tallinn    24.7586   59.4392         High income
## 6855             Tallinn    24.7586   59.4392         High income
## 6856             Tallinn    24.7586   59.4392         High income
## 6857             Tallinn    24.7586   59.4392         High income
## 6858             Tallinn    24.7586   59.4392         High income
## 6859             Tallinn    24.7586   59.4392         High income
## 6860             Tallinn    24.7586   59.4392         High income
## 6861             Tallinn    24.7586   59.4392         High income
## 6862             Tallinn    24.7586   59.4392         High income
## 6863             Tallinn    24.7586   59.4392         High income
## 6864             Tallinn    24.7586   59.4392         High income
## 6865             Tallinn    24.7586   59.4392         High income
## 6866             Tallinn    24.7586   59.4392         High income
## 6867             Tallinn    24.7586   59.4392         High income
## 6868             Tallinn    24.7586   59.4392         High income
## 6869             Tallinn    24.7586   59.4392         High income
## 6870             Tallinn    24.7586   59.4392         High income
## 6871             Tallinn    24.7586   59.4392         High income
## 6872             Tallinn    24.7586   59.4392         High income
## 6873             Tallinn    24.7586   59.4392         High income
## 6874             Tallinn    24.7586   59.4392         High income
## 6875             Tallinn    24.7586   59.4392         High income
## 6876             Tallinn    24.7586   59.4392         High income
## 6877             Tallinn    24.7586   59.4392         High income
## 6878             Tallinn    24.7586   59.4392         High income
## 6879             Tallinn    24.7586   59.4392         High income
## 6880             Tallinn    24.7586   59.4392         High income
## 6881             Tallinn    24.7586   59.4392         High income
## 6882             Tallinn    24.7586   59.4392         High income
## 6883             Tallinn    24.7586   59.4392         High income
## 6884             Tallinn    24.7586   59.4392         High income
## 6885             Tallinn    24.7586   59.4392         High income
## 6886             Tallinn    24.7586   59.4392         High income
## 6887             Tallinn    24.7586   59.4392         High income
## 6888             Tallinn    24.7586   59.4392         High income
## 6889             Tallinn    24.7586   59.4392         High income
## 6890             Tallinn    24.7586   59.4392         High income
## 6891             Tallinn    24.7586   59.4392         High income
## 6892             Tallinn    24.7586   59.4392         High income
## 6893             Tallinn    24.7586   59.4392         High income
## 6894             Tallinn    24.7586   59.4392         High income
## 6895             Tallinn    24.7586   59.4392         High income
## 6896             Tallinn    24.7586   59.4392         High income
## 6897             Tallinn    24.7586   59.4392         High income
## 6898             Tallinn    24.7586   59.4392         High income
## 6899             Tallinn    24.7586   59.4392         High income
## 6900             Tallinn    24.7586   59.4392         High income
## 6901             Tallinn    24.7586   59.4392         High income
## 6902             Tallinn    24.7586   59.4392         High income
## 6903             Tallinn    24.7586   59.4392         High income
## 6904             Tallinn    24.7586   59.4392         High income
## 6905             Tallinn    24.7586   59.4392         High income
## 6906             Tallinn    24.7586   59.4392         High income
## 6907             Tallinn    24.7586   59.4392         High income
## 6908             Tallinn    24.7586   59.4392         High income
## 6909             Tallinn    24.7586   59.4392         High income
## 6910             Tallinn    24.7586   59.4392         High income
## 6911             Tallinn    24.7586   59.4392         High income
## 6912             Tallinn    24.7586   59.4392         High income
## 6913             Tallinn    24.7586   59.4392         High income
## 6914             Tallinn    24.7586   59.4392         High income
## 6915             Tallinn    24.7586   59.4392         High income
## 6916             Tallinn    24.7586   59.4392         High income
## 6917                <NA>       <NA>      <NA>                <NA>
## 6918                <NA>       <NA>      <NA>                <NA>
## 6919                <NA>       <NA>      <NA>                <NA>
## 6920                <NA>       <NA>      <NA>                <NA>
## 6921                <NA>       <NA>      <NA>                <NA>
## 6922                <NA>       <NA>      <NA>                <NA>
## 6923                <NA>       <NA>      <NA>                <NA>
## 6924                <NA>       <NA>      <NA>                <NA>
## 6925                <NA>       <NA>      <NA>                <NA>
## 6926                <NA>       <NA>      <NA>                <NA>
## 6927                <NA>       <NA>      <NA>                <NA>
## 6928                <NA>       <NA>      <NA>                <NA>
## 6929                <NA>       <NA>      <NA>                <NA>
## 6930                <NA>       <NA>      <NA>                <NA>
## 6931                <NA>       <NA>      <NA>                <NA>
## 6932                <NA>       <NA>      <NA>                <NA>
## 6933                <NA>       <NA>      <NA>                <NA>
## 6934                <NA>       <NA>      <NA>                <NA>
## 6935                <NA>       <NA>      <NA>                <NA>
## 6936                <NA>       <NA>      <NA>                <NA>
## 6937                <NA>       <NA>      <NA>                <NA>
## 6938                <NA>       <NA>      <NA>                <NA>
## 6939                <NA>       <NA>      <NA>                <NA>
## 6940                <NA>       <NA>      <NA>                <NA>
## 6941                <NA>       <NA>      <NA>                <NA>
## 6942                <NA>       <NA>      <NA>                <NA>
## 6943                <NA>       <NA>      <NA>                <NA>
## 6944                <NA>       <NA>      <NA>                <NA>
## 6945                <NA>       <NA>      <NA>                <NA>
## 6946                <NA>       <NA>      <NA>                <NA>
## 6947                <NA>       <NA>      <NA>                <NA>
## 6948                <NA>       <NA>      <NA>                <NA>
## 6949                <NA>       <NA>      <NA>                <NA>
## 6950                <NA>       <NA>      <NA>                <NA>
## 6951             Mbabane    31.4659  -26.5225 Lower middle income
## 6952             Mbabane    31.4659  -26.5225 Lower middle income
## 6953             Mbabane    31.4659  -26.5225 Lower middle income
## 6954             Mbabane    31.4659  -26.5225 Lower middle income
## 6955             Mbabane    31.4659  -26.5225 Lower middle income
## 6956             Mbabane    31.4659  -26.5225 Lower middle income
## 6957             Mbabane    31.4659  -26.5225 Lower middle income
## 6958             Mbabane    31.4659  -26.5225 Lower middle income
## 6959             Mbabane    31.4659  -26.5225 Lower middle income
## 6960             Mbabane    31.4659  -26.5225 Lower middle income
## 6961             Mbabane    31.4659  -26.5225 Lower middle income
## 6962             Mbabane    31.4659  -26.5225 Lower middle income
## 6963             Mbabane    31.4659  -26.5225 Lower middle income
## 6964             Mbabane    31.4659  -26.5225 Lower middle income
## 6965             Mbabane    31.4659  -26.5225 Lower middle income
## 6966             Mbabane    31.4659  -26.5225 Lower middle income
## 6967             Mbabane    31.4659  -26.5225 Lower middle income
## 6968             Mbabane    31.4659  -26.5225 Lower middle income
## 6969             Mbabane    31.4659  -26.5225 Lower middle income
## 6970             Mbabane    31.4659  -26.5225 Lower middle income
## 6971             Mbabane    31.4659  -26.5225 Lower middle income
## 6972             Mbabane    31.4659  -26.5225 Lower middle income
## 6973             Mbabane    31.4659  -26.5225 Lower middle income
## 6974             Mbabane    31.4659  -26.5225 Lower middle income
## 6975             Mbabane    31.4659  -26.5225 Lower middle income
## 6976             Mbabane    31.4659  -26.5225 Lower middle income
## 6977             Mbabane    31.4659  -26.5225 Lower middle income
## 6978             Mbabane    31.4659  -26.5225 Lower middle income
## 6979             Mbabane    31.4659  -26.5225 Lower middle income
## 6980             Mbabane    31.4659  -26.5225 Lower middle income
## 6981             Mbabane    31.4659  -26.5225 Lower middle income
## 6982             Mbabane    31.4659  -26.5225 Lower middle income
## 6983             Mbabane    31.4659  -26.5225 Lower middle income
## 6984             Mbabane    31.4659  -26.5225 Lower middle income
## 6985             Mbabane    31.4659  -26.5225 Lower middle income
## 6986             Mbabane    31.4659  -26.5225 Lower middle income
## 6987             Mbabane    31.4659  -26.5225 Lower middle income
## 6988             Mbabane    31.4659  -26.5225 Lower middle income
## 6989             Mbabane    31.4659  -26.5225 Lower middle income
## 6990             Mbabane    31.4659  -26.5225 Lower middle income
## 6991             Mbabane    31.4659  -26.5225 Lower middle income
## 6992             Mbabane    31.4659  -26.5225 Lower middle income
## 6993             Mbabane    31.4659  -26.5225 Lower middle income
## 6994             Mbabane    31.4659  -26.5225 Lower middle income
## 6995             Mbabane    31.4659  -26.5225 Lower middle income
## 6996             Mbabane    31.4659  -26.5225 Lower middle income
## 6997             Mbabane    31.4659  -26.5225 Lower middle income
## 6998             Mbabane    31.4659  -26.5225 Lower middle income
## 6999             Mbabane    31.4659  -26.5225 Lower middle income
## 7000             Mbabane    31.4659  -26.5225 Lower middle income
## 7001             Mbabane    31.4659  -26.5225 Lower middle income
## 7002             Mbabane    31.4659  -26.5225 Lower middle income
## 7003             Mbabane    31.4659  -26.5225 Lower middle income
## 7004             Mbabane    31.4659  -26.5225 Lower middle income
## 7005             Mbabane    31.4659  -26.5225 Lower middle income
## 7006             Mbabane    31.4659  -26.5225 Lower middle income
## 7007             Mbabane    31.4659  -26.5225 Lower middle income
## 7008             Mbabane    31.4659  -26.5225 Lower middle income
## 7009             Mbabane    31.4659  -26.5225 Lower middle income
## 7010             Mbabane    31.4659  -26.5225 Lower middle income
## 7011             Mbabane    31.4659  -26.5225 Lower middle income
## 7012             Mbabane    31.4659  -26.5225 Lower middle income
## 7013             Mbabane    31.4659  -26.5225 Lower middle income
## 7014         Addis Ababa    38.7468   9.02274          Low income
## 7015         Addis Ababa    38.7468   9.02274          Low income
## 7016         Addis Ababa    38.7468   9.02274          Low income
## 7017         Addis Ababa    38.7468   9.02274          Low income
## 7018         Addis Ababa    38.7468   9.02274          Low income
## 7019         Addis Ababa    38.7468   9.02274          Low income
## 7020         Addis Ababa    38.7468   9.02274          Low income
## 7021         Addis Ababa    38.7468   9.02274          Low income
## 7022         Addis Ababa    38.7468   9.02274          Low income
## 7023         Addis Ababa    38.7468   9.02274          Low income
## 7024         Addis Ababa    38.7468   9.02274          Low income
## 7025         Addis Ababa    38.7468   9.02274          Low income
## 7026         Addis Ababa    38.7468   9.02274          Low income
## 7027         Addis Ababa    38.7468   9.02274          Low income
## 7028         Addis Ababa    38.7468   9.02274          Low income
## 7029         Addis Ababa    38.7468   9.02274          Low income
## 7030         Addis Ababa    38.7468   9.02274          Low income
## 7031         Addis Ababa    38.7468   9.02274          Low income
## 7032         Addis Ababa    38.7468   9.02274          Low income
## 7033         Addis Ababa    38.7468   9.02274          Low income
## 7034         Addis Ababa    38.7468   9.02274          Low income
## 7035         Addis Ababa    38.7468   9.02274          Low income
## 7036         Addis Ababa    38.7468   9.02274          Low income
## 7037         Addis Ababa    38.7468   9.02274          Low income
## 7038         Addis Ababa    38.7468   9.02274          Low income
## 7039         Addis Ababa    38.7468   9.02274          Low income
## 7040         Addis Ababa    38.7468   9.02274          Low income
## 7041         Addis Ababa    38.7468   9.02274          Low income
## 7042         Addis Ababa    38.7468   9.02274          Low income
## 7043         Addis Ababa    38.7468   9.02274          Low income
## 7044         Addis Ababa    38.7468   9.02274          Low income
## 7045         Addis Ababa    38.7468   9.02274          Low income
## 7046         Addis Ababa    38.7468   9.02274          Low income
## 7047         Addis Ababa    38.7468   9.02274          Low income
## 7048         Addis Ababa    38.7468   9.02274          Low income
## 7049         Addis Ababa    38.7468   9.02274          Low income
## 7050         Addis Ababa    38.7468   9.02274          Low income
## 7051         Addis Ababa    38.7468   9.02274          Low income
## 7052         Addis Ababa    38.7468   9.02274          Low income
## 7053         Addis Ababa    38.7468   9.02274          Low income
## 7054         Addis Ababa    38.7468   9.02274          Low income
## 7055         Addis Ababa    38.7468   9.02274          Low income
## 7056         Addis Ababa    38.7468   9.02274          Low income
## 7057         Addis Ababa    38.7468   9.02274          Low income
## 7058         Addis Ababa    38.7468   9.02274          Low income
## 7059         Addis Ababa    38.7468   9.02274          Low income
## 7060         Addis Ababa    38.7468   9.02274          Low income
## 7061         Addis Ababa    38.7468   9.02274          Low income
## 7062         Addis Ababa    38.7468   9.02274          Low income
## 7063         Addis Ababa    38.7468   9.02274          Low income
## 7064         Addis Ababa    38.7468   9.02274          Low income
## 7065         Addis Ababa    38.7468   9.02274          Low income
## 7066         Addis Ababa    38.7468   9.02274          Low income
## 7067         Addis Ababa    38.7468   9.02274          Low income
## 7068         Addis Ababa    38.7468   9.02274          Low income
## 7069         Addis Ababa    38.7468   9.02274          Low income
## 7070         Addis Ababa    38.7468   9.02274          Low income
## 7071         Addis Ababa    38.7468   9.02274          Low income
## 7072         Addis Ababa    38.7468   9.02274          Low income
## 7073         Addis Ababa    38.7468   9.02274          Low income
## 7074         Addis Ababa    38.7468   9.02274          Low income
## 7075         Addis Ababa    38.7468   9.02274          Low income
## 7076         Addis Ababa    38.7468   9.02274          Low income
## 7077                <NA>       <NA>      <NA>                <NA>
## 7078                <NA>       <NA>      <NA>                <NA>
## 7079                <NA>       <NA>      <NA>                <NA>
## 7080                <NA>       <NA>      <NA>                <NA>
## 7081                <NA>       <NA>      <NA>                <NA>
## 7082                <NA>       <NA>      <NA>                <NA>
## 7083                <NA>       <NA>      <NA>                <NA>
## 7084                <NA>       <NA>      <NA>                <NA>
## 7085                <NA>       <NA>      <NA>                <NA>
## 7086                <NA>       <NA>      <NA>                <NA>
## 7087                <NA>       <NA>      <NA>                <NA>
## 7088                <NA>       <NA>      <NA>                <NA>
## 7089                <NA>       <NA>      <NA>                <NA>
## 7090                <NA>       <NA>      <NA>                <NA>
## 7091                <NA>       <NA>      <NA>                <NA>
## 7092                <NA>       <NA>      <NA>                <NA>
## 7093                <NA>       <NA>      <NA>                <NA>
## 7094                <NA>       <NA>      <NA>                <NA>
## 7095                <NA>       <NA>      <NA>                <NA>
## 7096                <NA>       <NA>      <NA>                <NA>
## 7097                <NA>       <NA>      <NA>                <NA>
## 7098                <NA>       <NA>      <NA>                <NA>
## 7099                <NA>       <NA>      <NA>                <NA>
## 7100                <NA>       <NA>      <NA>                <NA>
## 7101                <NA>       <NA>      <NA>                <NA>
## 7102                <NA>       <NA>      <NA>                <NA>
## 7103                <NA>       <NA>      <NA>                <NA>
## 7104                <NA>       <NA>      <NA>                <NA>
## 7105                <NA>       <NA>      <NA>                <NA>
## 7106                <NA>       <NA>      <NA>                <NA>
## 7107                <NA>       <NA>      <NA>                <NA>
## 7108                <NA>       <NA>      <NA>                <NA>
## 7109                <NA>       <NA>      <NA>                <NA>
## 7110                <NA>       <NA>      <NA>                <NA>
## 7111                                                   Aggregates
## 7112                                                   Aggregates
## 7113                                                   Aggregates
## 7114                                                   Aggregates
## 7115                                                   Aggregates
## 7116                                                   Aggregates
## 7117                                                   Aggregates
## 7118                                                   Aggregates
## 7119                                                   Aggregates
## 7120                                                   Aggregates
## 7121                                                   Aggregates
## 7122                                                   Aggregates
## 7123                                                   Aggregates
## 7124                                                   Aggregates
## 7125                                                   Aggregates
## 7126                                                   Aggregates
## 7127                                                   Aggregates
## 7128                                                   Aggregates
## 7129                                                   Aggregates
## 7130                                                   Aggregates
## 7131                                                   Aggregates
## 7132                                                   Aggregates
## 7133                                                   Aggregates
## 7134                                                   Aggregates
## 7135                                                   Aggregates
## 7136                                                   Aggregates
## 7137                                                   Aggregates
## 7138                                                   Aggregates
## 7139                                                   Aggregates
## 7140                                                   Aggregates
## 7141                                                   Aggregates
## 7142                                                   Aggregates
##             lending
## 1              <NA>
## 2              <NA>
## 3              <NA>
## 4              <NA>
## 5              <NA>
## 6              <NA>
## 7              <NA>
## 8              <NA>
## 9              <NA>
## 10             <NA>
## 11             <NA>
## 12             <NA>
## 13             <NA>
## 14             <NA>
## 15             <NA>
## 16             <NA>
## 17             <NA>
## 18             <NA>
## 19             <NA>
## 20             <NA>
## 21             <NA>
## 22             <NA>
## 23             <NA>
## 24             <NA>
## 25             <NA>
## 26             <NA>
## 27             <NA>
## 28             <NA>
## 29             <NA>
## 30             <NA>
## 31             <NA>
## 32             <NA>
## 33             <NA>
## 34             <NA>
## 35              IDA
## 36              IDA
## 37              IDA
## 38              IDA
## 39              IDA
## 40              IDA
## 41              IDA
## 42              IDA
## 43              IDA
## 44              IDA
## 45              IDA
## 46              IDA
## 47              IDA
## 48              IDA
## 49              IDA
## 50              IDA
## 51              IDA
## 52              IDA
## 53              IDA
## 54              IDA
## 55              IDA
## 56              IDA
## 57              IDA
## 58              IDA
## 59              IDA
## 60              IDA
## 61              IDA
## 62              IDA
## 63              IDA
## 64              IDA
## 65              IDA
## 66              IDA
## 67              IDA
## 68              IDA
## 69              IDA
## 70              IDA
## 71              IDA
## 72              IDA
## 73              IDA
## 74              IDA
## 75              IDA
## 76              IDA
## 77              IDA
## 78              IDA
## 79              IDA
## 80              IDA
## 81              IDA
## 82              IDA
## 83              IDA
## 84              IDA
## 85              IDA
## 86              IDA
## 87              IDA
## 88              IDA
## 89              IDA
## 90              IDA
## 91              IDA
## 92              IDA
## 93              IDA
## 94              IDA
## 95              IDA
## 96              IDA
## 97              IDA
## 98             <NA>
## 99             <NA>
## 100            <NA>
## 101            <NA>
## 102            <NA>
## 103            <NA>
## 104            <NA>
## 105            <NA>
## 106            <NA>
## 107            <NA>
## 108            <NA>
## 109            <NA>
## 110            <NA>
## 111            <NA>
## 112            <NA>
## 113            <NA>
## 114            <NA>
## 115            <NA>
## 116            <NA>
## 117            <NA>
## 118            <NA>
## 119            <NA>
## 120            <NA>
## 121            <NA>
## 122            <NA>
## 123            <NA>
## 124            <NA>
## 125            <NA>
## 126            <NA>
## 127            <NA>
## 128            <NA>
## 129            <NA>
## 130            <NA>
## 131            <NA>
## 132      Aggregates
## 133      Aggregates
## 134      Aggregates
## 135      Aggregates
## 136      Aggregates
## 137      Aggregates
## 138      Aggregates
## 139      Aggregates
## 140      Aggregates
## 141      Aggregates
## 142      Aggregates
## 143      Aggregates
## 144      Aggregates
## 145      Aggregates
## 146      Aggregates
## 147      Aggregates
## 148      Aggregates
## 149      Aggregates
## 150      Aggregates
## 151      Aggregates
## 152      Aggregates
## 153      Aggregates
## 154      Aggregates
## 155      Aggregates
## 156      Aggregates
## 157      Aggregates
## 158      Aggregates
## 159      Aggregates
## 160      Aggregates
## 161      Aggregates
## 162      Aggregates
## 163      Aggregates
## 164      Aggregates
## 165      Aggregates
## 166      Aggregates
## 167      Aggregates
## 168      Aggregates
## 169      Aggregates
## 170      Aggregates
## 171      Aggregates
## 172      Aggregates
## 173      Aggregates
## 174      Aggregates
## 175      Aggregates
## 176      Aggregates
## 177      Aggregates
## 178      Aggregates
## 179      Aggregates
## 180      Aggregates
## 181      Aggregates
## 182      Aggregates
## 183      Aggregates
## 184      Aggregates
## 185      Aggregates
## 186      Aggregates
## 187      Aggregates
## 188      Aggregates
## 189      Aggregates
## 190      Aggregates
## 191      Aggregates
## 192      Aggregates
## 193      Aggregates
## 194      Aggregates
## 195      Aggregates
## 196      Aggregates
## 197      Aggregates
## 198      Aggregates
## 199      Aggregates
## 200      Aggregates
## 201      Aggregates
## 202      Aggregates
## 203      Aggregates
## 204      Aggregates
## 205      Aggregates
## 206      Aggregates
## 207      Aggregates
## 208      Aggregates
## 209      Aggregates
## 210      Aggregates
## 211      Aggregates
## 212      Aggregates
## 213      Aggregates
## 214      Aggregates
## 215      Aggregates
## 216      Aggregates
## 217      Aggregates
## 218      Aggregates
## 219      Aggregates
## 220      Aggregates
## 221      Aggregates
## 222      Aggregates
## 223      Aggregates
## 224      Aggregates
## 225      Aggregates
## 226      Aggregates
## 227      Aggregates
## 228      Aggregates
## 229      Aggregates
## 230      Aggregates
## 231      Aggregates
## 232      Aggregates
## 233      Aggregates
## 234      Aggregates
## 235      Aggregates
## 236      Aggregates
## 237      Aggregates
## 238      Aggregates
## 239      Aggregates
## 240      Aggregates
## 241      Aggregates
## 242      Aggregates
## 243      Aggregates
## 244      Aggregates
## 245      Aggregates
## 246      Aggregates
## 247      Aggregates
## 248      Aggregates
## 249      Aggregates
## 250      Aggregates
## 251      Aggregates
## 252      Aggregates
## 253      Aggregates
## 254      Aggregates
## 255      Aggregates
## 256      Aggregates
## 257      Aggregates
## 258            IBRD
## 259            IBRD
## 260            IBRD
## 261            IBRD
## 262            IBRD
## 263            IBRD
## 264            IBRD
## 265            IBRD
## 266            IBRD
## 267            IBRD
## 268            IBRD
## 269            IBRD
## 270            IBRD
## 271            IBRD
## 272            IBRD
## 273            IBRD
## 274            IBRD
## 275            IBRD
## 276            IBRD
## 277            IBRD
## 278            IBRD
## 279            IBRD
## 280            IBRD
## 281            IBRD
## 282            IBRD
## 283            IBRD
## 284            IBRD
## 285            IBRD
## 286            IBRD
## 287            IBRD
## 288            IBRD
## 289            IBRD
## 290            IBRD
## 291            IBRD
## 292            IBRD
## 293            IBRD
## 294            IBRD
## 295            IBRD
## 296            IBRD
## 297            IBRD
## 298            IBRD
## 299            IBRD
## 300            IBRD
## 301            IBRD
## 302            IBRD
## 303            IBRD
## 304            IBRD
## 305            IBRD
## 306            IBRD
## 307            IBRD
## 308            IBRD
## 309            IBRD
## 310            IBRD
## 311            IBRD
## 312            IBRD
## 313            IBRD
## 314            IBRD
## 315            IBRD
## 316            IBRD
## 317            IBRD
## 318            IBRD
## 319            IBRD
## 320            IBRD
## 321            <NA>
## 322            <NA>
## 323            <NA>
## 324            <NA>
## 325            <NA>
## 326            <NA>
## 327            <NA>
## 328            <NA>
## 329            <NA>
## 330            <NA>
## 331            <NA>
## 332            <NA>
## 333            <NA>
## 334            <NA>
## 335            <NA>
## 336            <NA>
## 337            <NA>
## 338            <NA>
## 339            <NA>
## 340            <NA>
## 341            <NA>
## 342            <NA>
## 343            <NA>
## 344            <NA>
## 345            <NA>
## 346            <NA>
## 347            <NA>
## 348            <NA>
## 349            <NA>
## 350            <NA>
## 351            <NA>
## 352            <NA>
## 353            <NA>
## 354            <NA>
## 355            IBRD
## 356            IBRD
## 357            IBRD
## 358            IBRD
## 359            IBRD
## 360            IBRD
## 361            IBRD
## 362            IBRD
## 363            IBRD
## 364            IBRD
## 365            IBRD
## 366            IBRD
## 367            IBRD
## 368            IBRD
## 369            IBRD
## 370            IBRD
## 371            IBRD
## 372            IBRD
## 373            IBRD
## 374            IBRD
## 375            IBRD
## 376            IBRD
## 377            IBRD
## 378            IBRD
## 379            IBRD
## 380            IBRD
## 381            IBRD
## 382            IBRD
## 383            IBRD
## 384            IBRD
## 385            IBRD
## 386            IBRD
## 387            IBRD
## 388            IBRD
## 389            IBRD
## 390            IBRD
## 391            IBRD
## 392            IBRD
## 393            IBRD
## 394            IBRD
## 395            IBRD
## 396            IBRD
## 397            IBRD
## 398            IBRD
## 399            IBRD
## 400            IBRD
## 401            IBRD
## 402            IBRD
## 403            IBRD
## 404            IBRD
## 405            IBRD
## 406            IBRD
## 407            IBRD
## 408            IBRD
## 409            IBRD
## 410            IBRD
## 411            IBRD
## 412            IBRD
## 413            IBRD
## 414            IBRD
## 415            IBRD
## 416            IBRD
## 417            IBRD
## 418            <NA>
## 419            <NA>
## 420            <NA>
## 421            <NA>
## 422            <NA>
## 423            <NA>
## 424            <NA>
## 425            <NA>
## 426            <NA>
## 427            <NA>
## 428            <NA>
## 429            <NA>
## 430            <NA>
## 431            <NA>
## 432            <NA>
## 433            <NA>
## 434            <NA>
## 435            <NA>
## 436            <NA>
## 437            <NA>
## 438            <NA>
## 439            <NA>
## 440            <NA>
## 441            <NA>
## 442            <NA>
## 443            <NA>
## 444            <NA>
## 445            <NA>
## 446            <NA>
## 447            <NA>
## 448            <NA>
## 449            <NA>
## 450            <NA>
## 451            <NA>
## 452  Not classified
## 453  Not classified
## 454  Not classified
## 455  Not classified
## 456  Not classified
## 457  Not classified
## 458  Not classified
## 459  Not classified
## 460  Not classified
## 461  Not classified
## 462  Not classified
## 463  Not classified
## 464  Not classified
## 465  Not classified
## 466  Not classified
## 467  Not classified
## 468  Not classified
## 469  Not classified
## 470  Not classified
## 471  Not classified
## 472  Not classified
## 473  Not classified
## 474  Not classified
## 475  Not classified
## 476  Not classified
## 477  Not classified
## 478  Not classified
## 479  Not classified
## 480  Not classified
## 481  Not classified
## 482  Not classified
## 483  Not classified
## 484  Not classified
## 485  Not classified
## 486  Not classified
## 487  Not classified
## 488  Not classified
## 489  Not classified
## 490  Not classified
## 491  Not classified
## 492  Not classified
## 493  Not classified
## 494  Not classified
## 495  Not classified
## 496  Not classified
## 497  Not classified
## 498  Not classified
## 499  Not classified
## 500  Not classified
## 501  Not classified
## 502  Not classified
## 503  Not classified
## 504  Not classified
## 505  Not classified
## 506  Not classified
## 507  Not classified
## 508  Not classified
## 509  Not classified
## 510  Not classified
## 511  Not classified
## 512  Not classified
## 513  Not classified
## 514  Not classified
## 515  Not classified
## 516  Not classified
## 517  Not classified
## 518  Not classified
## 519  Not classified
## 520  Not classified
## 521  Not classified
## 522  Not classified
## 523  Not classified
## 524  Not classified
## 525  Not classified
## 526  Not classified
## 527  Not classified
## 528  Not classified
## 529  Not classified
## 530  Not classified
## 531  Not classified
## 532  Not classified
## 533  Not classified
## 534  Not classified
## 535  Not classified
## 536  Not classified
## 537  Not classified
## 538  Not classified
## 539  Not classified
## 540  Not classified
## 541  Not classified
## 542  Not classified
## 543  Not classified
## 544  Not classified
## 545  Not classified
## 546  Not classified
## 547  Not classified
## 548  Not classified
## 549  Not classified
## 550  Not classified
## 551  Not classified
## 552  Not classified
## 553  Not classified
## 554  Not classified
## 555  Not classified
## 556  Not classified
## 557  Not classified
## 558  Not classified
## 559  Not classified
## 560  Not classified
## 561  Not classified
## 562  Not classified
## 563  Not classified
## 564  Not classified
## 565  Not classified
## 566  Not classified
## 567  Not classified
## 568  Not classified
## 569  Not classified
## 570  Not classified
## 571  Not classified
## 572  Not classified
## 573  Not classified
## 574  Not classified
## 575  Not classified
## 576  Not classified
## 577  Not classified
## 578            <NA>
## 579            <NA>
## 580            <NA>
## 581            <NA>
## 582            <NA>
## 583            <NA>
## 584            <NA>
## 585            <NA>
## 586            <NA>
## 587            <NA>
## 588            <NA>
## 589            <NA>
## 590            <NA>
## 591            <NA>
## 592            <NA>
## 593            <NA>
## 594            <NA>
## 595            <NA>
## 596            <NA>
## 597            <NA>
## 598            <NA>
## 599            <NA>
## 600            <NA>
## 601            <NA>
## 602            <NA>
## 603            <NA>
## 604            <NA>
## 605            <NA>
## 606            <NA>
## 607            <NA>
## 608            <NA>
## 609            <NA>
## 610            <NA>
## 611            <NA>
## 612            IBRD
## 613            IBRD
## 614            IBRD
## 615            IBRD
## 616            IBRD
## 617            IBRD
## 618            IBRD
## 619            IBRD
## 620            IBRD
## 621            IBRD
## 622            IBRD
## 623            IBRD
## 624            IBRD
## 625            IBRD
## 626            IBRD
## 627            IBRD
## 628            IBRD
## 629            IBRD
## 630            IBRD
## 631            IBRD
## 632            IBRD
## 633            IBRD
## 634            IBRD
## 635            IBRD
## 636            IBRD
## 637            IBRD
## 638            IBRD
## 639            IBRD
## 640            IBRD
## 641            IBRD
## 642            IBRD
## 643            IBRD
## 644            IBRD
## 645            IBRD
## 646            IBRD
## 647            IBRD
## 648            IBRD
## 649            IBRD
## 650            IBRD
## 651            IBRD
## 652            IBRD
## 653            IBRD
## 654            IBRD
## 655            IBRD
## 656            IBRD
## 657            IBRD
## 658            IBRD
## 659            IBRD
## 660            IBRD
## 661            IBRD
## 662            IBRD
## 663            IBRD
## 664            IBRD
## 665            IBRD
## 666            IBRD
## 667            IBRD
## 668            IBRD
## 669            IBRD
## 670            IBRD
## 671            IBRD
## 672            IBRD
## 673            IBRD
## 674            IBRD
## 675            IBRD
## 676            IBRD
## 677            IBRD
## 678            IBRD
## 679            IBRD
## 680            IBRD
## 681            IBRD
## 682            IBRD
## 683            IBRD
## 684            IBRD
## 685            IBRD
## 686            IBRD
## 687            IBRD
## 688            IBRD
## 689            IBRD
## 690            IBRD
## 691            IBRD
## 692            IBRD
## 693            IBRD
## 694            IBRD
## 695            IBRD
## 696            IBRD
## 697            IBRD
## 698            IBRD
## 699            IBRD
## 700            IBRD
## 701            IBRD
## 702            IBRD
## 703            IBRD
## 704            IBRD
## 705            IBRD
## 706            IBRD
## 707            IBRD
## 708            IBRD
## 709            IBRD
## 710            IBRD
## 711            IBRD
## 712            IBRD
## 713            IBRD
## 714            IBRD
## 715            IBRD
## 716            IBRD
## 717            IBRD
## 718            IBRD
## 719            IBRD
## 720            IBRD
## 721            IBRD
## 722            IBRD
## 723            IBRD
## 724            IBRD
## 725            IBRD
## 726            IBRD
## 727            IBRD
## 728            IBRD
## 729            IBRD
## 730            IBRD
## 731            IBRD
## 732            IBRD
## 733            IBRD
## 734            IBRD
## 735            IBRD
## 736            IBRD
## 737            IBRD
## 738            <NA>
## 739            <NA>
## 740            <NA>
## 741            <NA>
## 742            <NA>
## 743            <NA>
## 744            <NA>
## 745            <NA>
## 746            <NA>
## 747            <NA>
## 748            <NA>
## 749            <NA>
## 750            <NA>
## 751            <NA>
## 752            <NA>
## 753            <NA>
## 754            <NA>
## 755            <NA>
## 756            <NA>
## 757            <NA>
## 758            <NA>
## 759            <NA>
## 760            <NA>
## 761            <NA>
## 762            <NA>
## 763            <NA>
## 764            <NA>
## 765            <NA>
## 766            <NA>
## 767            <NA>
## 768            <NA>
## 769            <NA>
## 770            <NA>
## 771            <NA>
## 772      Aggregates
## 773      Aggregates
## 774      Aggregates
## 775      Aggregates
## 776      Aggregates
## 777      Aggregates
## 778      Aggregates
## 779      Aggregates
## 780      Aggregates
## 781      Aggregates
## 782      Aggregates
## 783      Aggregates
## 784      Aggregates
## 785      Aggregates
## 786      Aggregates
## 787      Aggregates
## 788      Aggregates
## 789      Aggregates
## 790      Aggregates
## 791      Aggregates
## 792      Aggregates
## 793      Aggregates
## 794      Aggregates
## 795      Aggregates
## 796      Aggregates
## 797      Aggregates
## 798      Aggregates
## 799      Aggregates
## 800      Aggregates
## 801      Aggregates
## 802      Aggregates
## 803      Aggregates
## 804      Aggregates
## 805      Aggregates
## 806      Aggregates
## 807      Aggregates
## 808      Aggregates
## 809      Aggregates
## 810      Aggregates
## 811      Aggregates
## 812      Aggregates
## 813      Aggregates
## 814      Aggregates
## 815      Aggregates
## 816      Aggregates
## 817      Aggregates
## 818      Aggregates
## 819      Aggregates
## 820      Aggregates
## 821      Aggregates
## 822      Aggregates
## 823      Aggregates
## 824      Aggregates
## 825      Aggregates
## 826      Aggregates
## 827      Aggregates
## 828      Aggregates
## 829      Aggregates
## 830      Aggregates
## 831      Aggregates
## 832      Aggregates
## 833      Aggregates
## 834      Aggregates
## 835            IBRD
## 836            IBRD
## 837            IBRD
## 838            IBRD
## 839            IBRD
## 840            IBRD
## 841            IBRD
## 842            IBRD
## 843            IBRD
## 844            IBRD
## 845            IBRD
## 846            IBRD
## 847            IBRD
## 848            IBRD
## 849            IBRD
## 850            IBRD
## 851            IBRD
## 852            IBRD
## 853            IBRD
## 854            IBRD
## 855            IBRD
## 856            IBRD
## 857            IBRD
## 858            IBRD
## 859            IBRD
## 860            IBRD
## 861            IBRD
## 862            IBRD
## 863            IBRD
## 864            IBRD
## 865            IBRD
## 866            IBRD
## 867            IBRD
## 868            IBRD
## 869            IBRD
## 870            IBRD
## 871            IBRD
## 872            IBRD
## 873            IBRD
## 874            IBRD
## 875            IBRD
## 876            IBRD
## 877            IBRD
## 878            IBRD
## 879            IBRD
## 880            IBRD
## 881            IBRD
## 882            IBRD
## 883            IBRD
## 884            IBRD
## 885            IBRD
## 886            IBRD
## 887            IBRD
## 888            IBRD
## 889            IBRD
## 890            IBRD
## 891            IBRD
## 892            IBRD
## 893            IBRD
## 894            IBRD
## 895            IBRD
## 896            IBRD
## 897            IBRD
## 898            <NA>
## 899            <NA>
## 900            <NA>
## 901            <NA>
## 902            <NA>
## 903            <NA>
## 904            <NA>
## 905            <NA>
## 906            <NA>
## 907            <NA>
## 908            <NA>
## 909            <NA>
## 910            <NA>
## 911            <NA>
## 912            <NA>
## 913            <NA>
## 914            <NA>
## 915            <NA>
## 916            <NA>
## 917            <NA>
## 918            <NA>
## 919            <NA>
## 920            <NA>
## 921            <NA>
## 922            <NA>
## 923            <NA>
## 924            <NA>
## 925            <NA>
## 926            <NA>
## 927            <NA>
## 928            <NA>
## 929            <NA>
## 930            <NA>
## 931            <NA>
## 932            IBRD
## 933            IBRD
## 934            IBRD
## 935            IBRD
## 936            IBRD
## 937            IBRD
## 938            IBRD
## 939            IBRD
## 940            IBRD
## 941            IBRD
## 942            IBRD
## 943            IBRD
## 944            IBRD
## 945            IBRD
## 946            IBRD
## 947            IBRD
## 948            IBRD
## 949            IBRD
## 950            IBRD
## 951            IBRD
## 952            IBRD
## 953            IBRD
## 954            IBRD
## 955            IBRD
## 956            IBRD
## 957            IBRD
## 958            IBRD
## 959            IBRD
## 960            IBRD
## 961            IBRD
## 962            IBRD
## 963            IBRD
## 964            IBRD
## 965            IBRD
## 966            IBRD
## 967            IBRD
## 968            IBRD
## 969            IBRD
## 970            IBRD
## 971            IBRD
## 972            IBRD
## 973            IBRD
## 974            IBRD
## 975            IBRD
## 976            IBRD
## 977            IBRD
## 978            IBRD
## 979            IBRD
## 980            IBRD
## 981            IBRD
## 982            IBRD
## 983            IBRD
## 984            IBRD
## 985            IBRD
## 986            IBRD
## 987            IBRD
## 988            IBRD
## 989            IBRD
## 990            IBRD
## 991            IBRD
## 992            IBRD
## 993            IBRD
## 994            IBRD
## 995            <NA>
## 996            <NA>
## 997            <NA>
## 998            <NA>
## 999            <NA>
## 1000           <NA>
## 1001           <NA>
## 1002           <NA>
## 1003           <NA>
## 1004           <NA>
## 1005           <NA>
## 1006           <NA>
## 1007           <NA>
## 1008           <NA>
## 1009           <NA>
## 1010           <NA>
## 1011           <NA>
## 1012           <NA>
## 1013           <NA>
## 1014           <NA>
## 1015           <NA>
## 1016           <NA>
## 1017           <NA>
## 1018           <NA>
## 1019           <NA>
## 1020           <NA>
## 1021           <NA>
## 1022           <NA>
## 1023           <NA>
## 1024           <NA>
## 1025           <NA>
## 1026           <NA>
## 1027           <NA>
## 1028           <NA>
## 1029           <NA>
## 1030           <NA>
## 1031           <NA>
## 1032           <NA>
## 1033           <NA>
## 1034           <NA>
## 1035           <NA>
## 1036           <NA>
## 1037           <NA>
## 1038           <NA>
## 1039           <NA>
## 1040           <NA>
## 1041           <NA>
## 1042           <NA>
## 1043           <NA>
## 1044           <NA>
## 1045           <NA>
## 1046           <NA>
## 1047           <NA>
## 1048           <NA>
## 1049           <NA>
## 1050           <NA>
## 1051           <NA>
## 1052           <NA>
## 1053           <NA>
## 1054           <NA>
## 1055           <NA>
## 1056           <NA>
## 1057           <NA>
## 1058           <NA>
## 1059           <NA>
## 1060           <NA>
## 1061           <NA>
## 1062           <NA>
## 1063 Not classified
## 1064 Not classified
## 1065 Not classified
## 1066 Not classified
## 1067 Not classified
## 1068 Not classified
## 1069 Not classified
## 1070 Not classified
## 1071 Not classified
## 1072 Not classified
## 1073 Not classified
## 1074 Not classified
## 1075 Not classified
## 1076 Not classified
## 1077 Not classified
## 1078 Not classified
## 1079 Not classified
## 1080 Not classified
## 1081 Not classified
## 1082 Not classified
## 1083 Not classified
## 1084 Not classified
## 1085 Not classified
## 1086 Not classified
## 1087 Not classified
## 1088 Not classified
## 1089 Not classified
## 1090 Not classified
## 1091 Not classified
## 1092 Not classified
## 1093 Not classified
## 1094 Not classified
## 1095 Not classified
## 1096 Not classified
## 1097 Not classified
## 1098 Not classified
## 1099 Not classified
## 1100 Not classified
## 1101 Not classified
## 1102 Not classified
## 1103 Not classified
## 1104 Not classified
## 1105 Not classified
## 1106 Not classified
## 1107 Not classified
## 1108 Not classified
## 1109 Not classified
## 1110 Not classified
## 1111 Not classified
## 1112 Not classified
## 1113 Not classified
## 1114 Not classified
## 1115 Not classified
## 1116 Not classified
## 1117 Not classified
## 1118 Not classified
## 1119 Not classified
## 1120 Not classified
## 1121 Not classified
## 1122 Not classified
## 1123 Not classified
## 1124 Not classified
## 1125 Not classified
## 1126 Not classified
## 1127 Not classified
## 1128 Not classified
## 1129 Not classified
## 1130 Not classified
## 1131 Not classified
## 1132 Not classified
## 1133 Not classified
## 1134 Not classified
## 1135 Not classified
## 1136 Not classified
## 1137 Not classified
## 1138 Not classified
## 1139 Not classified
## 1140 Not classified
## 1141 Not classified
## 1142 Not classified
## 1143 Not classified
## 1144 Not classified
## 1145 Not classified
## 1146 Not classified
## 1147 Not classified
## 1148 Not classified
## 1149 Not classified
## 1150 Not classified
## 1151 Not classified
## 1152 Not classified
## 1153 Not classified
## 1154 Not classified
## 1155 Not classified
## 1156 Not classified
## 1157 Not classified
## 1158 Not classified
## 1159 Not classified
## 1160 Not classified
## 1161 Not classified
## 1162 Not classified
## 1163 Not classified
## 1164 Not classified
## 1165 Not classified
## 1166 Not classified
## 1167 Not classified
## 1168 Not classified
## 1169 Not classified
## 1170 Not classified
## 1171 Not classified
## 1172 Not classified
## 1173 Not classified
## 1174 Not classified
## 1175 Not classified
## 1176 Not classified
## 1177 Not classified
## 1178 Not classified
## 1179 Not classified
## 1180 Not classified
## 1181 Not classified
## 1182 Not classified
## 1183 Not classified
## 1184 Not classified
## 1185 Not classified
## 1186 Not classified
## 1187 Not classified
## 1188 Not classified
## 1189           <NA>
## 1190           <NA>
## 1191           <NA>
## 1192           <NA>
## 1193           <NA>
## 1194           <NA>
## 1195           <NA>
## 1196           <NA>
## 1197           <NA>
## 1198           <NA>
## 1199           <NA>
## 1200           <NA>
## 1201           <NA>
## 1202           <NA>
## 1203           <NA>
## 1204           <NA>
## 1205           <NA>
## 1206           <NA>
## 1207           <NA>
## 1208           <NA>
## 1209           <NA>
## 1210           <NA>
## 1211           <NA>
## 1212           <NA>
## 1213           <NA>
## 1214           <NA>
## 1215           <NA>
## 1216           <NA>
## 1217           <NA>
## 1218           <NA>
## 1219           <NA>
## 1220           <NA>
## 1221           <NA>
## 1222           <NA>
## 1223 Not classified
## 1224 Not classified
## 1225 Not classified
## 1226 Not classified
## 1227 Not classified
## 1228 Not classified
## 1229 Not classified
## 1230 Not classified
## 1231 Not classified
## 1232 Not classified
## 1233 Not classified
## 1234 Not classified
## 1235 Not classified
## 1236 Not classified
## 1237 Not classified
## 1238 Not classified
## 1239 Not classified
## 1240 Not classified
## 1241 Not classified
## 1242 Not classified
## 1243 Not classified
## 1244 Not classified
## 1245 Not classified
## 1246 Not classified
## 1247 Not classified
## 1248 Not classified
## 1249 Not classified
## 1250 Not classified
## 1251 Not classified
## 1252 Not classified
## 1253 Not classified
## 1254 Not classified
## 1255 Not classified
## 1256 Not classified
## 1257 Not classified
## 1258 Not classified
## 1259 Not classified
## 1260 Not classified
## 1261 Not classified
## 1262 Not classified
## 1263 Not classified
## 1264 Not classified
## 1265 Not classified
## 1266 Not classified
## 1267 Not classified
## 1268 Not classified
## 1269 Not classified
## 1270 Not classified
## 1271 Not classified
## 1272 Not classified
## 1273 Not classified
## 1274 Not classified
## 1275 Not classified
## 1276 Not classified
## 1277 Not classified
## 1278 Not classified
## 1279 Not classified
## 1280 Not classified
## 1281 Not classified
## 1282 Not classified
## 1283 Not classified
## 1284 Not classified
## 1285 Not classified
## 1286           <NA>
## 1287           <NA>
## 1288           <NA>
## 1289           <NA>
## 1290           <NA>
## 1291           <NA>
## 1292           <NA>
## 1293           <NA>
## 1294           <NA>
## 1295           <NA>
## 1296           <NA>
## 1297           <NA>
## 1298           <NA>
## 1299           <NA>
## 1300           <NA>
## 1301           <NA>
## 1302           <NA>
## 1303           <NA>
## 1304           <NA>
## 1305           <NA>
## 1306           <NA>
## 1307           <NA>
## 1308           <NA>
## 1309           <NA>
## 1310           <NA>
## 1311           <NA>
## 1312           <NA>
## 1313           <NA>
## 1314           <NA>
## 1315           <NA>
## 1316           <NA>
## 1317           <NA>
## 1318           <NA>
## 1319           <NA>
## 1320           IBRD
## 1321           IBRD
## 1322           IBRD
## 1323           IBRD
## 1324           IBRD
## 1325           IBRD
## 1326           IBRD
## 1327           IBRD
## 1328           IBRD
## 1329           IBRD
## 1330           IBRD
## 1331           IBRD
## 1332           IBRD
## 1333           IBRD
## 1334           IBRD
## 1335           IBRD
## 1336           IBRD
## 1337           IBRD
## 1338           IBRD
## 1339           IBRD
## 1340           IBRD
## 1341           IBRD
## 1342           IBRD
## 1343           IBRD
## 1344           IBRD
## 1345           IBRD
## 1346           IBRD
## 1347           IBRD
## 1348           IBRD
## 1349           IBRD
## 1350           IBRD
## 1351           IBRD
## 1352           IBRD
## 1353           IBRD
## 1354           IBRD
## 1355           IBRD
## 1356           IBRD
## 1357           IBRD
## 1358           IBRD
## 1359           IBRD
## 1360           IBRD
## 1361           IBRD
## 1362           IBRD
## 1363           IBRD
## 1364           IBRD
## 1365           IBRD
## 1366           IBRD
## 1367           IBRD
## 1368           IBRD
## 1369           IBRD
## 1370           IBRD
## 1371           IBRD
## 1372           IBRD
## 1373           IBRD
## 1374           IBRD
## 1375           IBRD
## 1376           IBRD
## 1377           IBRD
## 1378           IBRD
## 1379           IBRD
## 1380           IBRD
## 1381           IBRD
## 1382           IBRD
## 1383           <NA>
## 1384           <NA>
## 1385           <NA>
## 1386           <NA>
## 1387           <NA>
## 1388           <NA>
## 1389           <NA>
## 1390           <NA>
## 1391           <NA>
## 1392           <NA>
## 1393           <NA>
## 1394           <NA>
## 1395           <NA>
## 1396           <NA>
## 1397           <NA>
## 1398           <NA>
## 1399           <NA>
## 1400           <NA>
## 1401           <NA>
## 1402           <NA>
## 1403           <NA>
## 1404           <NA>
## 1405           <NA>
## 1406           <NA>
## 1407           <NA>
## 1408           <NA>
## 1409           <NA>
## 1410           <NA>
## 1411           <NA>
## 1412           <NA>
## 1413           <NA>
## 1414           <NA>
## 1415           <NA>
## 1416           <NA>
## 1417           <NA>
## 1418           <NA>
## 1419           <NA>
## 1420           <NA>
## 1421           <NA>
## 1422           <NA>
## 1423           <NA>
## 1424           <NA>
## 1425           <NA>
## 1426           <NA>
## 1427           <NA>
## 1428           <NA>
## 1429           <NA>
## 1430           <NA>
## 1431           <NA>
## 1432           <NA>
## 1433           <NA>
## 1434           <NA>
## 1435           <NA>
## 1436           <NA>
## 1437           <NA>
## 1438           <NA>
## 1439           <NA>
## 1440           <NA>
## 1441           <NA>
## 1442           <NA>
## 1443           <NA>
## 1444           <NA>
## 1445           <NA>
## 1446           <NA>
## 1447           <NA>
## 1448           <NA>
## 1449           <NA>
## 1450           <NA>
## 1451 Not classified
## 1452 Not classified
## 1453 Not classified
## 1454 Not classified
## 1455 Not classified
## 1456 Not classified
## 1457 Not classified
## 1458 Not classified
## 1459 Not classified
## 1460 Not classified
## 1461 Not classified
## 1462 Not classified
## 1463 Not classified
## 1464 Not classified
## 1465 Not classified
## 1466 Not classified
## 1467 Not classified
## 1468 Not classified
## 1469 Not classified
## 1470 Not classified
## 1471 Not classified
## 1472 Not classified
## 1473 Not classified
## 1474 Not classified
## 1475 Not classified
## 1476 Not classified
## 1477 Not classified
## 1478 Not classified
## 1479 Not classified
## 1480 Not classified
## 1481 Not classified
## 1482 Not classified
## 1483 Not classified
## 1484 Not classified
## 1485 Not classified
## 1486 Not classified
## 1487 Not classified
## 1488 Not classified
## 1489 Not classified
## 1490 Not classified
## 1491 Not classified
## 1492 Not classified
## 1493 Not classified
## 1494 Not classified
## 1495 Not classified
## 1496 Not classified
## 1497 Not classified
## 1498 Not classified
## 1499 Not classified
## 1500 Not classified
## 1501 Not classified
## 1502 Not classified
## 1503 Not classified
## 1504 Not classified
## 1505 Not classified
## 1506 Not classified
## 1507 Not classified
## 1508 Not classified
## 1509 Not classified
## 1510 Not classified
## 1511 Not classified
## 1512 Not classified
## 1513 Not classified
## 1514 Not classified
## 1515 Not classified
## 1516 Not classified
## 1517 Not classified
## 1518 Not classified
## 1519 Not classified
## 1520 Not classified
## 1521 Not classified
## 1522 Not classified
## 1523 Not classified
## 1524 Not classified
## 1525 Not classified
## 1526 Not classified
## 1527 Not classified
## 1528 Not classified
## 1529 Not classified
## 1530 Not classified
## 1531 Not classified
## 1532 Not classified
## 1533 Not classified
## 1534 Not classified
## 1535 Not classified
## 1536 Not classified
## 1537 Not classified
## 1538 Not classified
## 1539 Not classified
## 1540 Not classified
## 1541 Not classified
## 1542 Not classified
## 1543 Not classified
## 1544 Not classified
## 1545 Not classified
## 1546 Not classified
## 1547 Not classified
## 1548 Not classified
## 1549 Not classified
## 1550 Not classified
## 1551 Not classified
## 1552 Not classified
## 1553 Not classified
## 1554 Not classified
## 1555 Not classified
## 1556 Not classified
## 1557 Not classified
## 1558 Not classified
## 1559 Not classified
## 1560 Not classified
## 1561 Not classified
## 1562 Not classified
## 1563 Not classified
## 1564 Not classified
## 1565 Not classified
## 1566 Not classified
## 1567 Not classified
## 1568 Not classified
## 1569 Not classified
## 1570 Not classified
## 1571 Not classified
## 1572 Not classified
## 1573 Not classified
## 1574 Not classified
## 1575 Not classified
## 1576 Not classified
## 1577           <NA>
## 1578           <NA>
## 1579           <NA>
## 1580           <NA>
## 1581           <NA>
## 1582           <NA>
## 1583           <NA>
## 1584           <NA>
## 1585           <NA>
## 1586           <NA>
## 1587           <NA>
## 1588           <NA>
## 1589           <NA>
## 1590           <NA>
## 1591           <NA>
## 1592           <NA>
## 1593           <NA>
## 1594           <NA>
## 1595           <NA>
## 1596           <NA>
## 1597           <NA>
## 1598           <NA>
## 1599           <NA>
## 1600           <NA>
## 1601           <NA>
## 1602           <NA>
## 1603           <NA>
## 1604           <NA>
## 1605           <NA>
## 1606           <NA>
## 1607           <NA>
## 1608           <NA>
## 1609           <NA>
## 1610           <NA>
## 1611            IDA
## 1612            IDA
## 1613            IDA
## 1614            IDA
## 1615            IDA
## 1616            IDA
## 1617            IDA
## 1618            IDA
## 1619            IDA
## 1620            IDA
## 1621            IDA
## 1622            IDA
## 1623            IDA
## 1624            IDA
## 1625            IDA
## 1626            IDA
## 1627            IDA
## 1628            IDA
## 1629            IDA
## 1630            IDA
## 1631            IDA
## 1632            IDA
## 1633            IDA
## 1634            IDA
## 1635            IDA
## 1636            IDA
## 1637            IDA
## 1638            IDA
## 1639            IDA
## 1640            IDA
## 1641            IDA
## 1642            IDA
## 1643            IDA
## 1644            IDA
## 1645            IDA
## 1646            IDA
## 1647            IDA
## 1648            IDA
## 1649            IDA
## 1650            IDA
## 1651            IDA
## 1652            IDA
## 1653            IDA
## 1654            IDA
## 1655            IDA
## 1656            IDA
## 1657            IDA
## 1658            IDA
## 1659            IDA
## 1660            IDA
## 1661            IDA
## 1662            IDA
## 1663            IDA
## 1664            IDA
## 1665            IDA
## 1666            IDA
## 1667            IDA
## 1668            IDA
## 1669            IDA
## 1670            IDA
## 1671            IDA
## 1672            IDA
## 1673            IDA
## 1674           <NA>
## 1675           <NA>
## 1676           <NA>
## 1677           <NA>
## 1678           <NA>
## 1679           <NA>
## 1680           <NA>
## 1681           <NA>
## 1682           <NA>
## 1683           <NA>
## 1684           <NA>
## 1685           <NA>
## 1686           <NA>
## 1687           <NA>
## 1688           <NA>
## 1689           <NA>
## 1690           <NA>
## 1691           <NA>
## 1692           <NA>
## 1693           <NA>
## 1694           <NA>
## 1695           <NA>
## 1696           <NA>
## 1697           <NA>
## 1698           <NA>
## 1699           <NA>
## 1700           <NA>
## 1701           <NA>
## 1702           <NA>
## 1703           <NA>
## 1704           <NA>
## 1705           <NA>
## 1706           <NA>
## 1707           <NA>
## 1708 Not classified
## 1709 Not classified
## 1710 Not classified
## 1711 Not classified
## 1712 Not classified
## 1713 Not classified
## 1714 Not classified
## 1715 Not classified
## 1716 Not classified
## 1717 Not classified
## 1718 Not classified
## 1719 Not classified
## 1720 Not classified
## 1721 Not classified
## 1722 Not classified
## 1723 Not classified
## 1724 Not classified
## 1725 Not classified
## 1726 Not classified
## 1727 Not classified
## 1728 Not classified
## 1729 Not classified
## 1730 Not classified
## 1731 Not classified
## 1732 Not classified
## 1733 Not classified
## 1734 Not classified
## 1735 Not classified
## 1736 Not classified
## 1737 Not classified
## 1738 Not classified
## 1739 Not classified
## 1740 Not classified
## 1741 Not classified
## 1742 Not classified
## 1743 Not classified
## 1744 Not classified
## 1745 Not classified
## 1746 Not classified
## 1747 Not classified
## 1748 Not classified
## 1749 Not classified
## 1750 Not classified
## 1751 Not classified
## 1752 Not classified
## 1753 Not classified
## 1754 Not classified
## 1755 Not classified
## 1756 Not classified
## 1757 Not classified
## 1758 Not classified
## 1759 Not classified
## 1760 Not classified
## 1761 Not classified
## 1762 Not classified
## 1763 Not classified
## 1764 Not classified
## 1765 Not classified
## 1766 Not classified
## 1767 Not classified
## 1768 Not classified
## 1769 Not classified
## 1770 Not classified
## 1771           <NA>
## 1772           <NA>
## 1773           <NA>
## 1774           <NA>
## 1775           <NA>
## 1776           <NA>
## 1777           <NA>
## 1778           <NA>
## 1779           <NA>
## 1780           <NA>
## 1781           <NA>
## 1782           <NA>
## 1783           <NA>
## 1784           <NA>
## 1785           <NA>
## 1786           <NA>
## 1787           <NA>
## 1788           <NA>
## 1789           <NA>
## 1790           <NA>
## 1791           <NA>
## 1792           <NA>
## 1793           <NA>
## 1794           <NA>
## 1795           <NA>
## 1796           <NA>
## 1797           <NA>
## 1798           <NA>
## 1799           <NA>
## 1800           <NA>
## 1801           <NA>
## 1802           <NA>
## 1803           <NA>
## 1804           <NA>
## 1805           <NA>
## 1806           <NA>
## 1807           <NA>
## 1808           <NA>
## 1809           <NA>
## 1810           <NA>
## 1811           <NA>
## 1812           <NA>
## 1813           <NA>
## 1814           <NA>
## 1815           <NA>
## 1816           <NA>
## 1817           <NA>
## 1818           <NA>
## 1819           <NA>
## 1820           <NA>
## 1821           <NA>
## 1822           <NA>
## 1823           <NA>
## 1824           <NA>
## 1825           <NA>
## 1826           <NA>
## 1827           <NA>
## 1828           <NA>
## 1829           <NA>
## 1830           <NA>
## 1831           <NA>
## 1832           <NA>
## 1833           <NA>
## 1834           <NA>
## 1835           <NA>
## 1836           <NA>
## 1837           <NA>
## 1838           <NA>
## 1839           IBRD
## 1840           IBRD
## 1841           IBRD
## 1842           IBRD
## 1843           IBRD
## 1844           IBRD
## 1845           IBRD
## 1846           IBRD
## 1847           IBRD
## 1848           IBRD
## 1849           IBRD
## 1850           IBRD
## 1851           IBRD
## 1852           IBRD
## 1853           IBRD
## 1854           IBRD
## 1855           IBRD
## 1856           IBRD
## 1857           IBRD
## 1858           IBRD
## 1859           IBRD
## 1860           IBRD
## 1861           IBRD
## 1862           IBRD
## 1863           IBRD
## 1864           IBRD
## 1865           IBRD
## 1866           IBRD
## 1867           IBRD
## 1868           IBRD
## 1869           IBRD
## 1870           IBRD
## 1871           IBRD
## 1872           IBRD
## 1873           IBRD
## 1874           IBRD
## 1875           IBRD
## 1876           IBRD
## 1877           IBRD
## 1878           IBRD
## 1879           IBRD
## 1880           IBRD
## 1881           IBRD
## 1882           IBRD
## 1883           IBRD
## 1884           IBRD
## 1885           IBRD
## 1886           IBRD
## 1887           IBRD
## 1888           IBRD
## 1889           IBRD
## 1890           IBRD
## 1891           IBRD
## 1892           IBRD
## 1893           IBRD
## 1894           IBRD
## 1895           IBRD
## 1896           IBRD
## 1897           IBRD
## 1898           IBRD
## 1899           IBRD
## 1900           IBRD
## 1901           IBRD
## 1902 Not classified
## 1903 Not classified
## 1904 Not classified
## 1905 Not classified
## 1906 Not classified
## 1907 Not classified
## 1908 Not classified
## 1909 Not classified
## 1910 Not classified
## 1911 Not classified
## 1912 Not classified
## 1913 Not classified
## 1914 Not classified
## 1915 Not classified
## 1916 Not classified
## 1917 Not classified
## 1918 Not classified
## 1919 Not classified
## 1920 Not classified
## 1921 Not classified
## 1922 Not classified
## 1923 Not classified
## 1924 Not classified
## 1925 Not classified
## 1926 Not classified
## 1927 Not classified
## 1928 Not classified
## 1929 Not classified
## 1930 Not classified
## 1931 Not classified
## 1932 Not classified
## 1933 Not classified
## 1934 Not classified
## 1935 Not classified
## 1936 Not classified
## 1937 Not classified
## 1938 Not classified
## 1939 Not classified
## 1940 Not classified
## 1941 Not classified
## 1942 Not classified
## 1943 Not classified
## 1944 Not classified
## 1945 Not classified
## 1946 Not classified
## 1947 Not classified
## 1948 Not classified
## 1949 Not classified
## 1950 Not classified
## 1951 Not classified
## 1952 Not classified
## 1953 Not classified
## 1954 Not classified
## 1955 Not classified
## 1956 Not classified
## 1957 Not classified
## 1958 Not classified
## 1959 Not classified
## 1960 Not classified
## 1961 Not classified
## 1962 Not classified
## 1963 Not classified
## 1964 Not classified
## 1965           <NA>
## 1966           <NA>
## 1967           <NA>
## 1968           <NA>
## 1969           <NA>
## 1970           <NA>
## 1971           <NA>
## 1972           <NA>
## 1973           <NA>
## 1974           <NA>
## 1975           <NA>
## 1976           <NA>
## 1977           <NA>
## 1978           <NA>
## 1979           <NA>
## 1980           <NA>
## 1981           <NA>
## 1982           <NA>
## 1983           <NA>
## 1984           <NA>
## 1985           <NA>
## 1986           <NA>
## 1987           <NA>
## 1988           <NA>
## 1989           <NA>
## 1990           <NA>
## 1991           <NA>
## 1992           <NA>
## 1993           <NA>
## 1994           <NA>
## 1995           <NA>
## 1996           <NA>
## 1997           <NA>
## 1998           <NA>
## 1999           <NA>
## 2000           <NA>
## 2001           <NA>
## 2002           <NA>
## 2003           <NA>
## 2004           <NA>
## 2005           <NA>
## 2006           <NA>
## 2007           <NA>
## 2008           <NA>
## 2009           <NA>
## 2010           <NA>
## 2011           <NA>
## 2012           <NA>
## 2013           <NA>
## 2014           <NA>
## 2015           <NA>
## 2016           <NA>
## 2017           <NA>
## 2018           <NA>
## 2019           <NA>
## 2020           <NA>
## 2021           <NA>
## 2022           <NA>
## 2023           <NA>
## 2024           <NA>
## 2025           <NA>
## 2026           <NA>
## 2027           <NA>
## 2028           <NA>
## 2029           <NA>
## 2030           <NA>
## 2031           <NA>
## 2032           <NA>
## 2033           IBRD
## 2034           IBRD
## 2035           IBRD
## 2036           IBRD
## 2037           IBRD
## 2038           IBRD
## 2039           IBRD
## 2040           IBRD
## 2041           IBRD
## 2042           IBRD
## 2043           IBRD
## 2044           IBRD
## 2045           IBRD
## 2046           IBRD
## 2047           IBRD
## 2048           IBRD
## 2049           IBRD
## 2050           IBRD
## 2051           IBRD
## 2052           IBRD
## 2053           IBRD
## 2054           IBRD
## 2055           IBRD
## 2056           IBRD
## 2057           IBRD
## 2058           IBRD
## 2059           IBRD
## 2060           IBRD
## 2061           IBRD
## 2062           IBRD
## 2063           IBRD
## 2064           IBRD
## 2065           IBRD
## 2066           IBRD
## 2067           IBRD
## 2068           IBRD
## 2069           IBRD
## 2070           IBRD
## 2071           IBRD
## 2072           IBRD
## 2073           IBRD
## 2074           IBRD
## 2075           IBRD
## 2076           IBRD
## 2077           IBRD
## 2078           IBRD
## 2079           IBRD
## 2080           IBRD
## 2081           IBRD
## 2082           IBRD
## 2083           IBRD
## 2084           IBRD
## 2085           IBRD
## 2086           IBRD
## 2087           IBRD
## 2088           IBRD
## 2089           IBRD
## 2090           IBRD
## 2091           IBRD
## 2092           IBRD
## 2093           IBRD
## 2094           IBRD
## 2095           IBRD
## 2096           <NA>
## 2097           <NA>
## 2098           <NA>
## 2099           <NA>
## 2100           <NA>
## 2101           <NA>
## 2102           <NA>
## 2103           <NA>
## 2104           <NA>
## 2105           <NA>
## 2106           <NA>
## 2107           <NA>
## 2108           <NA>
## 2109           <NA>
## 2110           <NA>
## 2111           <NA>
## 2112           <NA>
## 2113           <NA>
## 2114           <NA>
## 2115           <NA>
## 2116           <NA>
## 2117           <NA>
## 2118           <NA>
## 2119           <NA>
## 2120           <NA>
## 2121           <NA>
## 2122           <NA>
## 2123           <NA>
## 2124           <NA>
## 2125           <NA>
## 2126           <NA>
## 2127           <NA>
## 2128           <NA>
## 2129           <NA>
## 2130            IDA
## 2131            IDA
## 2132            IDA
## 2133            IDA
## 2134            IDA
## 2135            IDA
## 2136            IDA
## 2137            IDA
## 2138            IDA
## 2139            IDA
## 2140            IDA
## 2141            IDA
## 2142            IDA
## 2143            IDA
## 2144            IDA
## 2145            IDA
## 2146            IDA
## 2147            IDA
## 2148            IDA
## 2149            IDA
## 2150            IDA
## 2151            IDA
## 2152            IDA
## 2153            IDA
## 2154            IDA
## 2155            IDA
## 2156            IDA
## 2157            IDA
## 2158            IDA
## 2159            IDA
## 2160            IDA
## 2161            IDA
## 2162            IDA
## 2163            IDA
## 2164            IDA
## 2165            IDA
## 2166            IDA
## 2167            IDA
## 2168            IDA
## 2169            IDA
## 2170            IDA
## 2171            IDA
## 2172            IDA
## 2173            IDA
## 2174            IDA
## 2175            IDA
## 2176            IDA
## 2177            IDA
## 2178            IDA
## 2179            IDA
## 2180            IDA
## 2181            IDA
## 2182            IDA
## 2183            IDA
## 2184            IDA
## 2185            IDA
## 2186            IDA
## 2187            IDA
## 2188            IDA
## 2189            IDA
## 2190            IDA
## 2191            IDA
## 2192            IDA
## 2193 Not classified
## 2194 Not classified
## 2195 Not classified
## 2196 Not classified
## 2197 Not classified
## 2198 Not classified
## 2199 Not classified
## 2200 Not classified
## 2201 Not classified
## 2202 Not classified
## 2203 Not classified
## 2204 Not classified
## 2205 Not classified
## 2206 Not classified
## 2207 Not classified
## 2208 Not classified
## 2209 Not classified
## 2210 Not classified
## 2211 Not classified
## 2212 Not classified
## 2213 Not classified
## 2214 Not classified
## 2215 Not classified
## 2216 Not classified
## 2217 Not classified
## 2218 Not classified
## 2219 Not classified
## 2220 Not classified
## 2221 Not classified
## 2222 Not classified
## 2223 Not classified
## 2224 Not classified
## 2225 Not classified
## 2226 Not classified
## 2227 Not classified
## 2228 Not classified
## 2229 Not classified
## 2230 Not classified
## 2231 Not classified
## 2232 Not classified
## 2233 Not classified
## 2234 Not classified
## 2235 Not classified
## 2236 Not classified
## 2237 Not classified
## 2238 Not classified
## 2239 Not classified
## 2240 Not classified
## 2241 Not classified
## 2242 Not classified
## 2243 Not classified
## 2244 Not classified
## 2245 Not classified
## 2246 Not classified
## 2247 Not classified
## 2248 Not classified
## 2249 Not classified
## 2250 Not classified
## 2251 Not classified
## 2252 Not classified
## 2253 Not classified
## 2254 Not classified
## 2255 Not classified
## 2256           <NA>
## 2257           <NA>
## 2258           <NA>
## 2259           <NA>
## 2260           <NA>
## 2261           <NA>
## 2262           <NA>
## 2263           <NA>
## 2264           <NA>
## 2265           <NA>
## 2266           <NA>
## 2267           <NA>
## 2268           <NA>
## 2269           <NA>
## 2270           <NA>
## 2271           <NA>
## 2272           <NA>
## 2273           <NA>
## 2274           <NA>
## 2275           <NA>
## 2276           <NA>
## 2277           <NA>
## 2278           <NA>
## 2279           <NA>
## 2280           <NA>
## 2281           <NA>
## 2282           <NA>
## 2283           <NA>
## 2284           <NA>
## 2285           <NA>
## 2286           <NA>
## 2287           <NA>
## 2288           <NA>
## 2289           <NA>
## 2290            IDA
## 2291            IDA
## 2292            IDA
## 2293            IDA
## 2294            IDA
## 2295            IDA
## 2296            IDA
## 2297            IDA
## 2298            IDA
## 2299            IDA
## 2300            IDA
## 2301            IDA
## 2302            IDA
## 2303            IDA
## 2304            IDA
## 2305            IDA
## 2306            IDA
## 2307            IDA
## 2308            IDA
## 2309            IDA
## 2310            IDA
## 2311            IDA
## 2312            IDA
## 2313            IDA
## 2314            IDA
## 2315            IDA
## 2316            IDA
## 2317            IDA
## 2318            IDA
## 2319            IDA
## 2320            IDA
## 2321            IDA
## 2322            IDA
## 2323            IDA
## 2324            IDA
## 2325            IDA
## 2326            IDA
## 2327            IDA
## 2328            IDA
## 2329            IDA
## 2330            IDA
## 2331            IDA
## 2332            IDA
## 2333            IDA
## 2334            IDA
## 2335            IDA
## 2336            IDA
## 2337            IDA
## 2338            IDA
## 2339            IDA
## 2340            IDA
## 2341            IDA
## 2342            IDA
## 2343            IDA
## 2344            IDA
## 2345            IDA
## 2346            IDA
## 2347            IDA
## 2348            IDA
## 2349            IDA
## 2350            IDA
## 2351            IDA
## 2352            IDA
## 2353           <NA>
## 2354           <NA>
## 2355           <NA>
## 2356           <NA>
## 2357           <NA>
## 2358           <NA>
## 2359           <NA>
## 2360           <NA>
## 2361           <NA>
## 2362           <NA>
## 2363           <NA>
## 2364           <NA>
## 2365           <NA>
## 2366           <NA>
## 2367           <NA>
## 2368           <NA>
## 2369           <NA>
## 2370           <NA>
## 2371           <NA>
## 2372           <NA>
## 2373           <NA>
## 2374           <NA>
## 2375           <NA>
## 2376           <NA>
## 2377           <NA>
## 2378           <NA>
## 2379           <NA>
## 2380           <NA>
## 2381           <NA>
## 2382           <NA>
## 2383           <NA>
## 2384           <NA>
## 2385           <NA>
## 2386           <NA>
## 2387           IBRD
## 2388           IBRD
## 2389           IBRD
## 2390           IBRD
## 2391           IBRD
## 2392           IBRD
## 2393           IBRD
## 2394           IBRD
## 2395           IBRD
## 2396           IBRD
## 2397           IBRD
## 2398           IBRD
## 2399           IBRD
## 2400           IBRD
## 2401           IBRD
## 2402           IBRD
## 2403           IBRD
## 2404           IBRD
## 2405           IBRD
## 2406           IBRD
## 2407           IBRD
## 2408           IBRD
## 2409           IBRD
## 2410           IBRD
## 2411           IBRD
## 2412           IBRD
## 2413           IBRD
## 2414           IBRD
## 2415           IBRD
## 2416           IBRD
## 2417           IBRD
## 2418           IBRD
## 2419           IBRD
## 2420           IBRD
## 2421           IBRD
## 2422           IBRD
## 2423           IBRD
## 2424           IBRD
## 2425           IBRD
## 2426           IBRD
## 2427           IBRD
## 2428           IBRD
## 2429           IBRD
## 2430           IBRD
## 2431           IBRD
## 2432           IBRD
## 2433           IBRD
## 2434           IBRD
## 2435           IBRD
## 2436           IBRD
## 2437           IBRD
## 2438           IBRD
## 2439           IBRD
## 2440           IBRD
## 2441           IBRD
## 2442           IBRD
## 2443           IBRD
## 2444           IBRD
## 2445           IBRD
## 2446           IBRD
## 2447           IBRD
## 2448           IBRD
## 2449           IBRD
## 2450           <NA>
## 2451           <NA>
## 2452           <NA>
## 2453           <NA>
## 2454           <NA>
## 2455           <NA>
## 2456           <NA>
## 2457           <NA>
## 2458           <NA>
## 2459           <NA>
## 2460           <NA>
## 2461           <NA>
## 2462           <NA>
## 2463           <NA>
## 2464           <NA>
## 2465           <NA>
## 2466           <NA>
## 2467           <NA>
## 2468           <NA>
## 2469           <NA>
## 2470           <NA>
## 2471           <NA>
## 2472           <NA>
## 2473           <NA>
## 2474           <NA>
## 2475           <NA>
## 2476           <NA>
## 2477           <NA>
## 2478           <NA>
## 2479           <NA>
## 2480           <NA>
## 2481           <NA>
## 2482           <NA>
## 2483           <NA>
## 2484           IBRD
## 2485           IBRD
## 2486           IBRD
## 2487           IBRD
## 2488           IBRD
## 2489           IBRD
## 2490           IBRD
## 2491           IBRD
## 2492           IBRD
## 2493           IBRD
## 2494           IBRD
## 2495           IBRD
## 2496           IBRD
## 2497           IBRD
## 2498           IBRD
## 2499           IBRD
## 2500           IBRD
## 2501           IBRD
## 2502           IBRD
## 2503           IBRD
## 2504           IBRD
## 2505           IBRD
## 2506           IBRD
## 2507           IBRD
## 2508           IBRD
## 2509           IBRD
## 2510           IBRD
## 2511           IBRD
## 2512           IBRD
## 2513           IBRD
## 2514           IBRD
## 2515           IBRD
## 2516           IBRD
## 2517           IBRD
## 2518           IBRD
## 2519           IBRD
## 2520           IBRD
## 2521           IBRD
## 2522           IBRD
## 2523           IBRD
## 2524           IBRD
## 2525           IBRD
## 2526           IBRD
## 2527           IBRD
## 2528           IBRD
## 2529           IBRD
## 2530           IBRD
## 2531           IBRD
## 2532           IBRD
## 2533           IBRD
## 2534           IBRD
## 2535           IBRD
## 2536           IBRD
## 2537           IBRD
## 2538           IBRD
## 2539           IBRD
## 2540           IBRD
## 2541           IBRD
## 2542           IBRD
## 2543           IBRD
## 2544           IBRD
## 2545           IBRD
## 2546           IBRD
## 2547           <NA>
## 2548           <NA>
## 2549           <NA>
## 2550           <NA>
## 2551           <NA>
## 2552           <NA>
## 2553           <NA>
## 2554           <NA>
## 2555           <NA>
## 2556           <NA>
## 2557           <NA>
## 2558           <NA>
## 2559           <NA>
## 2560           <NA>
## 2561           <NA>
## 2562           <NA>
## 2563           <NA>
## 2564           <NA>
## 2565           <NA>
## 2566           <NA>
## 2567           <NA>
## 2568           <NA>
## 2569           <NA>
## 2570           <NA>
## 2571           <NA>
## 2572           <NA>
## 2573           <NA>
## 2574           <NA>
## 2575           <NA>
## 2576           <NA>
## 2577           <NA>
## 2578           <NA>
## 2579           <NA>
## 2580           <NA>
## 2581           IBRD
## 2582           IBRD
## 2583           IBRD
## 2584           IBRD
## 2585           IBRD
## 2586           IBRD
## 2587           IBRD
## 2588           IBRD
## 2589           IBRD
## 2590           IBRD
## 2591           IBRD
## 2592           IBRD
## 2593           IBRD
## 2594           IBRD
## 2595           IBRD
## 2596           IBRD
## 2597           IBRD
## 2598           IBRD
## 2599           IBRD
## 2600           IBRD
## 2601           IBRD
## 2602           IBRD
## 2603           IBRD
## 2604           IBRD
## 2605           IBRD
## 2606           IBRD
## 2607           IBRD
## 2608           IBRD
## 2609           IBRD
## 2610           IBRD
## 2611           IBRD
## 2612           IBRD
## 2613           IBRD
## 2614           IBRD
## 2615           IBRD
## 2616           IBRD
## 2617           IBRD
## 2618           IBRD
## 2619           IBRD
## 2620           IBRD
## 2621           IBRD
## 2622           IBRD
## 2623           IBRD
## 2624           IBRD
## 2625           IBRD
## 2626           IBRD
## 2627           IBRD
## 2628           IBRD
## 2629           IBRD
## 2630           IBRD
## 2631           IBRD
## 2632           IBRD
## 2633           IBRD
## 2634           IBRD
## 2635           IBRD
## 2636           IBRD
## 2637           IBRD
## 2638           IBRD
## 2639           IBRD
## 2640           IBRD
## 2641           IBRD
## 2642           IBRD
## 2643           IBRD
## 2644           <NA>
## 2645           <NA>
## 2646           <NA>
## 2647           <NA>
## 2648           <NA>
## 2649           <NA>
## 2650           <NA>
## 2651           <NA>
## 2652           <NA>
## 2653           <NA>
## 2654           <NA>
## 2655           <NA>
## 2656           <NA>
## 2657           <NA>
## 2658           <NA>
## 2659           <NA>
## 2660           <NA>
## 2661           <NA>
## 2662           <NA>
## 2663           <NA>
## 2664           <NA>
## 2665           <NA>
## 2666           <NA>
## 2667           <NA>
## 2668           <NA>
## 2669           <NA>
## 2670           <NA>
## 2671           <NA>
## 2672           <NA>
## 2673           <NA>
## 2674           <NA>
## 2675           <NA>
## 2676           <NA>
## 2677           <NA>
## 2678           IBRD
## 2679           IBRD
## 2680           IBRD
## 2681           IBRD
## 2682           IBRD
## 2683           IBRD
## 2684           IBRD
## 2685           IBRD
## 2686           IBRD
## 2687           IBRD
## 2688           IBRD
## 2689           IBRD
## 2690           IBRD
## 2691           IBRD
## 2692           IBRD
## 2693           IBRD
## 2694           IBRD
## 2695           IBRD
## 2696           IBRD
## 2697           IBRD
## 2698           IBRD
## 2699           IBRD
## 2700           IBRD
## 2701           IBRD
## 2702           IBRD
## 2703           IBRD
## 2704           IBRD
## 2705           IBRD
## 2706           IBRD
## 2707           IBRD
## 2708           IBRD
## 2709           IBRD
## 2710           IBRD
## 2711           IBRD
## 2712           IBRD
## 2713           IBRD
## 2714           IBRD
## 2715           IBRD
## 2716           IBRD
## 2717           IBRD
## 2718           IBRD
## 2719           IBRD
## 2720           IBRD
## 2721           IBRD
## 2722           IBRD
## 2723           IBRD
## 2724           IBRD
## 2725           IBRD
## 2726           IBRD
## 2727           IBRD
## 2728           IBRD
## 2729           IBRD
## 2730           IBRD
## 2731           IBRD
## 2732           IBRD
## 2733           IBRD
## 2734           IBRD
## 2735           IBRD
## 2736           IBRD
## 2737           IBRD
## 2738           IBRD
## 2739           IBRD
## 2740           IBRD
## 2741           <NA>
## 2742           <NA>
## 2743           <NA>
## 2744           <NA>
## 2745           <NA>
## 2746           <NA>
## 2747           <NA>
## 2748           <NA>
## 2749           <NA>
## 2750           <NA>
## 2751           <NA>
## 2752           <NA>
## 2753           <NA>
## 2754           <NA>
## 2755           <NA>
## 2756           <NA>
## 2757           <NA>
## 2758           <NA>
## 2759           <NA>
## 2760           <NA>
## 2761           <NA>
## 2762           <NA>
## 2763           <NA>
## 2764           <NA>
## 2765           <NA>
## 2766           <NA>
## 2767           <NA>
## 2768           <NA>
## 2769           <NA>
## 2770           <NA>
## 2771           <NA>
## 2772           <NA>
## 2773           <NA>
## 2774           <NA>
## 2775 Not classified
## 2776 Not classified
## 2777 Not classified
## 2778 Not classified
## 2779 Not classified
## 2780 Not classified
## 2781 Not classified
## 2782 Not classified
## 2783 Not classified
## 2784 Not classified
## 2785 Not classified
## 2786 Not classified
## 2787 Not classified
## 2788 Not classified
## 2789 Not classified
## 2790 Not classified
## 2791 Not classified
## 2792 Not classified
## 2793 Not classified
## 2794 Not classified
## 2795 Not classified
## 2796 Not classified
## 2797 Not classified
## 2798 Not classified
## 2799 Not classified
## 2800 Not classified
## 2801 Not classified
## 2802 Not classified
## 2803 Not classified
## 2804 Not classified
## 2805 Not classified
## 2806 Not classified
## 2807 Not classified
## 2808 Not classified
## 2809 Not classified
## 2810 Not classified
## 2811 Not classified
## 2812 Not classified
## 2813 Not classified
## 2814 Not classified
## 2815 Not classified
## 2816 Not classified
## 2817 Not classified
## 2818 Not classified
## 2819 Not classified
## 2820 Not classified
## 2821 Not classified
## 2822 Not classified
## 2823 Not classified
## 2824 Not classified
## 2825 Not classified
## 2826 Not classified
## 2827 Not classified
## 2828 Not classified
## 2829 Not classified
## 2830 Not classified
## 2831 Not classified
## 2832 Not classified
## 2833 Not classified
## 2834 Not classified
## 2835 Not classified
## 2836 Not classified
## 2837 Not classified
## 2838           <NA>
## 2839           <NA>
## 2840           <NA>
## 2841           <NA>
## 2842           <NA>
## 2843           <NA>
## 2844           <NA>
## 2845           <NA>
## 2846           <NA>
## 2847           <NA>
## 2848           <NA>
## 2849           <NA>
## 2850           <NA>
## 2851           <NA>
## 2852           <NA>
## 2853           <NA>
## 2854           <NA>
## 2855           <NA>
## 2856           <NA>
## 2857           <NA>
## 2858           <NA>
## 2859           <NA>
## 2860           <NA>
## 2861           <NA>
## 2862           <NA>
## 2863           <NA>
## 2864           <NA>
## 2865           <NA>
## 2866           <NA>
## 2867           <NA>
## 2868           <NA>
## 2869           <NA>
## 2870           <NA>
## 2871           <NA>
## 2872 Not classified
## 2873 Not classified
## 2874 Not classified
## 2875 Not classified
## 2876 Not classified
## 2877 Not classified
## 2878 Not classified
## 2879 Not classified
## 2880 Not classified
## 2881 Not classified
## 2882 Not classified
## 2883 Not classified
## 2884 Not classified
## 2885 Not classified
## 2886 Not classified
## 2887 Not classified
## 2888 Not classified
## 2889 Not classified
## 2890 Not classified
## 2891 Not classified
## 2892 Not classified
## 2893 Not classified
## 2894 Not classified
## 2895 Not classified
## 2896 Not classified
## 2897 Not classified
## 2898 Not classified
## 2899 Not classified
## 2900 Not classified
## 2901 Not classified
## 2902 Not classified
## 2903 Not classified
## 2904 Not classified
## 2905 Not classified
## 2906 Not classified
## 2907 Not classified
## 2908 Not classified
## 2909 Not classified
## 2910 Not classified
## 2911 Not classified
## 2912 Not classified
## 2913 Not classified
## 2914 Not classified
## 2915 Not classified
## 2916 Not classified
## 2917 Not classified
## 2918 Not classified
## 2919 Not classified
## 2920 Not classified
## 2921 Not classified
## 2922 Not classified
## 2923 Not classified
## 2924 Not classified
## 2925 Not classified
## 2926 Not classified
## 2927 Not classified
## 2928 Not classified
## 2929 Not classified
## 2930 Not classified
## 2931 Not classified
## 2932 Not classified
## 2933 Not classified
## 2934 Not classified
## 2935           IBRD
## 2936           IBRD
## 2937           IBRD
## 2938           IBRD
## 2939           IBRD
## 2940           IBRD
## 2941           IBRD
## 2942           IBRD
## 2943           IBRD
## 2944           IBRD
## 2945           IBRD
## 2946           IBRD
## 2947           IBRD
## 2948           IBRD
## 2949           IBRD
## 2950           IBRD
## 2951           IBRD
## 2952           IBRD
## 2953           IBRD
## 2954           IBRD
## 2955           IBRD
## 2956           IBRD
## 2957           IBRD
## 2958           IBRD
## 2959           IBRD
## 2960           IBRD
## 2961           IBRD
## 2962           IBRD
## 2963           IBRD
## 2964           IBRD
## 2965           IBRD
## 2966           IBRD
## 2967           IBRD
## 2968           IBRD
## 2969           IBRD
## 2970           IBRD
## 2971           IBRD
## 2972           IBRD
## 2973           IBRD
## 2974           IBRD
## 2975           IBRD
## 2976           IBRD
## 2977           IBRD
## 2978           IBRD
## 2979           IBRD
## 2980           IBRD
## 2981           IBRD
## 2982           IBRD
## 2983           IBRD
## 2984           IBRD
## 2985           IBRD
## 2986           IBRD
## 2987           IBRD
## 2988           IBRD
## 2989           IBRD
## 2990           IBRD
## 2991           IBRD
## 2992           IBRD
## 2993           IBRD
## 2994           IBRD
## 2995           IBRD
## 2996           IBRD
## 2997           IBRD
## 2998           <NA>
## 2999           <NA>
## 3000           <NA>
## 3001           <NA>
## 3002           <NA>
## 3003           <NA>
## 3004           <NA>
## 3005           <NA>
## 3006           <NA>
## 3007           <NA>
## 3008           <NA>
## 3009           <NA>
## 3010           <NA>
## 3011           <NA>
## 3012           <NA>
## 3013           <NA>
## 3014           <NA>
## 3015           <NA>
## 3016           <NA>
## 3017           <NA>
## 3018           <NA>
## 3019           <NA>
## 3020           <NA>
## 3021           <NA>
## 3022           <NA>
## 3023           <NA>
## 3024           <NA>
## 3025           <NA>
## 3026           <NA>
## 3027           <NA>
## 3028           <NA>
## 3029           <NA>
## 3030           <NA>
## 3031           <NA>
## 3032            IDA
## 3033            IDA
## 3034            IDA
## 3035            IDA
## 3036            IDA
## 3037            IDA
## 3038            IDA
## 3039            IDA
## 3040            IDA
## 3041            IDA
## 3042            IDA
## 3043            IDA
## 3044            IDA
## 3045            IDA
## 3046            IDA
## 3047            IDA
## 3048            IDA
## 3049            IDA
## 3050            IDA
## 3051            IDA
## 3052            IDA
## 3053            IDA
## 3054            IDA
## 3055            IDA
## 3056            IDA
## 3057            IDA
## 3058            IDA
## 3059            IDA
## 3060            IDA
## 3061            IDA
## 3062            IDA
## 3063            IDA
## 3064            IDA
## 3065            IDA
## 3066            IDA
## 3067            IDA
## 3068            IDA
## 3069            IDA
## 3070            IDA
## 3071            IDA
## 3072            IDA
## 3073            IDA
## 3074            IDA
## 3075            IDA
## 3076            IDA
## 3077            IDA
## 3078            IDA
## 3079            IDA
## 3080            IDA
## 3081            IDA
## 3082            IDA
## 3083            IDA
## 3084            IDA
## 3085            IDA
## 3086            IDA
## 3087            IDA
## 3088            IDA
## 3089            IDA
## 3090            IDA
## 3091            IDA
## 3092            IDA
## 3093            IDA
## 3094            IDA
## 3095           <NA>
## 3096           <NA>
## 3097           <NA>
## 3098           <NA>
## 3099           <NA>
## 3100           <NA>
## 3101           <NA>
## 3102           <NA>
## 3103           <NA>
## 3104           <NA>
## 3105           <NA>
## 3106           <NA>
## 3107           <NA>
## 3108           <NA>
## 3109           <NA>
## 3110           <NA>
## 3111           <NA>
## 3112           <NA>
## 3113           <NA>
## 3114           <NA>
## 3115           <NA>
## 3116           <NA>
## 3117           <NA>
## 3118           <NA>
## 3119           <NA>
## 3120           <NA>
## 3121           <NA>
## 3122           <NA>
## 3123           <NA>
## 3124           <NA>
## 3125           <NA>
## 3126           <NA>
## 3127           <NA>
## 3128           <NA>
## 3129           <NA>
## 3130           <NA>
## 3131           <NA>
## 3132           <NA>
## 3133           <NA>
## 3134           <NA>
## 3135           <NA>
## 3136           <NA>
## 3137           <NA>
## 3138           <NA>
## 3139           <NA>
## 3140           <NA>
## 3141           <NA>
## 3142           <NA>
## 3143           <NA>
## 3144           <NA>
## 3145           <NA>
## 3146           <NA>
## 3147           <NA>
## 3148           <NA>
## 3149           <NA>
## 3150           <NA>
## 3151           <NA>
## 3152           <NA>
## 3153           <NA>
## 3154           <NA>
## 3155           <NA>
## 3156           <NA>
## 3157           <NA>
## 3158           <NA>
## 3159           <NA>
## 3160           <NA>
## 3161           <NA>
## 3162           <NA>
## 3163            IDA
## 3164            IDA
## 3165            IDA
## 3166            IDA
## 3167            IDA
## 3168            IDA
## 3169            IDA
## 3170            IDA
## 3171            IDA
## 3172            IDA
## 3173            IDA
## 3174            IDA
## 3175            IDA
## 3176            IDA
## 3177            IDA
## 3178            IDA
## 3179            IDA
## 3180            IDA
## 3181            IDA
## 3182            IDA
## 3183            IDA
## 3184            IDA
## 3185            IDA
## 3186            IDA
## 3187            IDA
## 3188            IDA
## 3189            IDA
## 3190            IDA
## 3191            IDA
## 3192            IDA
## 3193            IDA
## 3194            IDA
## 3195            IDA
## 3196            IDA
## 3197            IDA
## 3198            IDA
## 3199            IDA
## 3200            IDA
## 3201            IDA
## 3202            IDA
## 3203            IDA
## 3204            IDA
## 3205            IDA
## 3206            IDA
## 3207            IDA
## 3208            IDA
## 3209            IDA
## 3210            IDA
## 3211            IDA
## 3212            IDA
## 3213            IDA
## 3214            IDA
## 3215            IDA
## 3216            IDA
## 3217            IDA
## 3218            IDA
## 3219            IDA
## 3220            IDA
## 3221            IDA
## 3222            IDA
## 3223            IDA
## 3224            IDA
## 3225            IDA
## 3226          Blend
## 3227          Blend
## 3228          Blend
## 3229          Blend
## 3230          Blend
## 3231          Blend
## 3232          Blend
## 3233          Blend
## 3234          Blend
## 3235          Blend
## 3236          Blend
## 3237          Blend
## 3238          Blend
## 3239          Blend
## 3240          Blend
## 3241          Blend
## 3242          Blend
## 3243          Blend
## 3244          Blend
## 3245          Blend
## 3246          Blend
## 3247          Blend
## 3248          Blend
## 3249          Blend
## 3250          Blend
## 3251          Blend
## 3252          Blend
## 3253          Blend
## 3254          Blend
## 3255          Blend
## 3256          Blend
## 3257          Blend
## 3258          Blend
## 3259          Blend
## 3260          Blend
## 3261          Blend
## 3262          Blend
## 3263          Blend
## 3264          Blend
## 3265          Blend
## 3266          Blend
## 3267          Blend
## 3268          Blend
## 3269          Blend
## 3270          Blend
## 3271          Blend
## 3272          Blend
## 3273          Blend
## 3274          Blend
## 3275          Blend
## 3276          Blend
## 3277          Blend
## 3278          Blend
## 3279          Blend
## 3280          Blend
## 3281          Blend
## 3282          Blend
## 3283          Blend
## 3284          Blend
## 3285          Blend
## 3286          Blend
## 3287          Blend
## 3288          Blend
## 3289            IDA
## 3290            IDA
## 3291            IDA
## 3292            IDA
## 3293            IDA
## 3294            IDA
## 3295            IDA
## 3296            IDA
## 3297            IDA
## 3298            IDA
## 3299            IDA
## 3300            IDA
## 3301            IDA
## 3302            IDA
## 3303            IDA
## 3304            IDA
## 3305            IDA
## 3306            IDA
## 3307            IDA
## 3308            IDA
## 3309            IDA
## 3310            IDA
## 3311            IDA
## 3312            IDA
## 3313            IDA
## 3314            IDA
## 3315            IDA
## 3316            IDA
## 3317            IDA
## 3318            IDA
## 3319            IDA
## 3320            IDA
## 3321            IDA
## 3322            IDA
## 3323            IDA
## 3324            IDA
## 3325            IDA
## 3326            IDA
## 3327            IDA
## 3328            IDA
## 3329            IDA
## 3330            IDA
## 3331            IDA
## 3332            IDA
## 3333            IDA
## 3334            IDA
## 3335            IDA
## 3336            IDA
## 3337            IDA
## 3338            IDA
## 3339            IDA
## 3340            IDA
## 3341            IDA
## 3342            IDA
## 3343            IDA
## 3344            IDA
## 3345            IDA
## 3346            IDA
## 3347            IDA
## 3348            IDA
## 3349            IDA
## 3350            IDA
## 3351            IDA
## 3352           <NA>
## 3353           <NA>
## 3354           <NA>
## 3355           <NA>
## 3356           <NA>
## 3357           <NA>
## 3358           <NA>
## 3359           <NA>
## 3360           <NA>
## 3361           <NA>
## 3362           <NA>
## 3363           <NA>
## 3364           <NA>
## 3365           <NA>
## 3366           <NA>
## 3367           <NA>
## 3368           <NA>
## 3369           <NA>
## 3370           <NA>
## 3371           <NA>
## 3372           <NA>
## 3373           <NA>
## 3374           <NA>
## 3375           <NA>
## 3376           <NA>
## 3377           <NA>
## 3378           <NA>
## 3379           <NA>
## 3380           <NA>
## 3381           <NA>
## 3382           <NA>
## 3383           <NA>
## 3384           <NA>
## 3385           <NA>
## 3386          Blend
## 3387          Blend
## 3388          Blend
## 3389          Blend
## 3390          Blend
## 3391          Blend
## 3392          Blend
## 3393          Blend
## 3394          Blend
## 3395          Blend
## 3396          Blend
## 3397          Blend
## 3398          Blend
## 3399          Blend
## 3400          Blend
## 3401          Blend
## 3402          Blend
## 3403          Blend
## 3404          Blend
## 3405          Blend
## 3406          Blend
## 3407          Blend
## 3408          Blend
## 3409          Blend
## 3410          Blend
## 3411          Blend
## 3412          Blend
## 3413          Blend
## 3414          Blend
## 3415          Blend
## 3416          Blend
## 3417          Blend
## 3418          Blend
## 3419          Blend
## 3420          Blend
## 3421          Blend
## 3422          Blend
## 3423          Blend
## 3424          Blend
## 3425          Blend
## 3426          Blend
## 3427          Blend
## 3428          Blend
## 3429          Blend
## 3430          Blend
## 3431          Blend
## 3432          Blend
## 3433          Blend
## 3434          Blend
## 3435          Blend
## 3436          Blend
## 3437          Blend
## 3438          Blend
## 3439          Blend
## 3440          Blend
## 3441          Blend
## 3442          Blend
## 3443          Blend
## 3444          Blend
## 3445          Blend
## 3446          Blend
## 3447          Blend
## 3448          Blend
## 3449           <NA>
## 3450           <NA>
## 3451           <NA>
## 3452           <NA>
## 3453           <NA>
## 3454           <NA>
## 3455           <NA>
## 3456           <NA>
## 3457           <NA>
## 3458           <NA>
## 3459           <NA>
## 3460           <NA>
## 3461           <NA>
## 3462           <NA>
## 3463           <NA>
## 3464           <NA>
## 3465           <NA>
## 3466           <NA>
## 3467           <NA>
## 3468           <NA>
## 3469           <NA>
## 3470           <NA>
## 3471           <NA>
## 3472           <NA>
## 3473           <NA>
## 3474           <NA>
## 3475           <NA>
## 3476           <NA>
## 3477           <NA>
## 3478           <NA>
## 3479           <NA>
## 3480           <NA>
## 3481           <NA>
## 3482           <NA>
## 3483 Not classified
## 3484 Not classified
## 3485 Not classified
## 3486 Not classified
## 3487 Not classified
## 3488 Not classified
## 3489 Not classified
## 3490 Not classified
## 3491 Not classified
## 3492 Not classified
## 3493 Not classified
## 3494 Not classified
## 3495 Not classified
## 3496 Not classified
## 3497 Not classified
## 3498 Not classified
## 3499 Not classified
## 3500 Not classified
## 3501 Not classified
## 3502 Not classified
## 3503 Not classified
## 3504 Not classified
## 3505 Not classified
## 3506 Not classified
## 3507 Not classified
## 3508 Not classified
## 3509 Not classified
## 3510 Not classified
## 3511 Not classified
## 3512 Not classified
## 3513 Not classified
## 3514 Not classified
## 3515 Not classified
## 3516 Not classified
## 3517 Not classified
## 3518 Not classified
## 3519 Not classified
## 3520 Not classified
## 3521 Not classified
## 3522 Not classified
## 3523 Not classified
## 3524 Not classified
## 3525 Not classified
## 3526 Not classified
## 3527 Not classified
## 3528 Not classified
## 3529 Not classified
## 3530 Not classified
## 3531 Not classified
## 3532 Not classified
## 3533 Not classified
## 3534 Not classified
## 3535 Not classified
## 3536 Not classified
## 3537 Not classified
## 3538 Not classified
## 3539 Not classified
## 3540 Not classified
## 3541 Not classified
## 3542 Not classified
## 3543 Not classified
## 3544 Not classified
## 3545 Not classified
## 3546           <NA>
## 3547           <NA>
## 3548           <NA>
## 3549           <NA>
## 3550           <NA>
## 3551           <NA>
## 3552           <NA>
## 3553           <NA>
## 3554           <NA>
## 3555           <NA>
## 3556           <NA>
## 3557           <NA>
## 3558           <NA>
## 3559           <NA>
## 3560           <NA>
## 3561           <NA>
## 3562           <NA>
## 3563           <NA>
## 3564           <NA>
## 3565           <NA>
## 3566           <NA>
## 3567           <NA>
## 3568           <NA>
## 3569           <NA>
## 3570           <NA>
## 3571           <NA>
## 3572           <NA>
## 3573           <NA>
## 3574           <NA>
## 3575           <NA>
## 3576           <NA>
## 3577           <NA>
## 3578           <NA>
## 3579           <NA>
## 3580           <NA>
## 3581           <NA>
## 3582           <NA>
## 3583           <NA>
## 3584           <NA>
## 3585           <NA>
## 3586           <NA>
## 3587           <NA>
## 3588           <NA>
## 3589           <NA>
## 3590           <NA>
## 3591           <NA>
## 3592           <NA>
## 3593           <NA>
## 3594           <NA>
## 3595           <NA>
## 3596           <NA>
## 3597           <NA>
## 3598           <NA>
## 3599           <NA>
## 3600           <NA>
## 3601           <NA>
## 3602           <NA>
## 3603           <NA>
## 3604           <NA>
## 3605           <NA>
## 3606           <NA>
## 3607           <NA>
## 3608           <NA>
## 3609           <NA>
## 3610           <NA>
## 3611           <NA>
## 3612           <NA>
## 3613           <NA>
## 3614     Aggregates
## 3615     Aggregates
## 3616     Aggregates
## 3617     Aggregates
## 3618     Aggregates
## 3619     Aggregates
## 3620     Aggregates
## 3621     Aggregates
## 3622     Aggregates
## 3623     Aggregates
## 3624     Aggregates
## 3625     Aggregates
## 3626     Aggregates
## 3627     Aggregates
## 3628     Aggregates
## 3629     Aggregates
## 3630     Aggregates
## 3631     Aggregates
## 3632     Aggregates
## 3633     Aggregates
## 3634     Aggregates
## 3635     Aggregates
## 3636     Aggregates
## 3637     Aggregates
## 3638     Aggregates
## 3639     Aggregates
## 3640     Aggregates
## 3641     Aggregates
## 3642     Aggregates
## 3643     Aggregates
## 3644     Aggregates
## 3645     Aggregates
## 3646     Aggregates
## 3647     Aggregates
## 3648     Aggregates
## 3649     Aggregates
## 3650     Aggregates
## 3651     Aggregates
## 3652     Aggregates
## 3653     Aggregates
## 3654     Aggregates
## 3655     Aggregates
## 3656     Aggregates
## 3657     Aggregates
## 3658     Aggregates
## 3659     Aggregates
## 3660     Aggregates
## 3661     Aggregates
## 3662     Aggregates
## 3663     Aggregates
## 3664     Aggregates
## 3665     Aggregates
## 3666     Aggregates
## 3667     Aggregates
## 3668     Aggregates
## 3669     Aggregates
## 3670     Aggregates
## 3671     Aggregates
## 3672     Aggregates
## 3673     Aggregates
## 3674     Aggregates
## 3675     Aggregates
## 3676     Aggregates
## 3677           <NA>
## 3678           <NA>
## 3679           <NA>
## 3680           <NA>
## 3681           <NA>
## 3682           <NA>
## 3683           <NA>
## 3684           <NA>
## 3685           <NA>
## 3686           <NA>
## 3687           <NA>
## 3688           <NA>
## 3689           <NA>
## 3690           <NA>
## 3691           <NA>
## 3692           <NA>
## 3693           <NA>
## 3694           <NA>
## 3695           <NA>
## 3696           <NA>
## 3697           <NA>
## 3698           <NA>
## 3699           <NA>
## 3700           <NA>
## 3701           <NA>
## 3702           <NA>
## 3703           <NA>
## 3704           <NA>
## 3705           <NA>
## 3706           <NA>
## 3707           <NA>
## 3708           <NA>
## 3709           <NA>
## 3710           <NA>
## 3711 Not classified
## 3712 Not classified
## 3713 Not classified
## 3714 Not classified
## 3715 Not classified
## 3716 Not classified
## 3717 Not classified
## 3718 Not classified
## 3719 Not classified
## 3720 Not classified
## 3721 Not classified
## 3722 Not classified
## 3723 Not classified
## 3724 Not classified
## 3725 Not classified
## 3726 Not classified
## 3727 Not classified
## 3728 Not classified
## 3729 Not classified
## 3730 Not classified
## 3731 Not classified
## 3732 Not classified
## 3733 Not classified
## 3734 Not classified
## 3735 Not classified
## 3736 Not classified
## 3737 Not classified
## 3738 Not classified
## 3739 Not classified
## 3740 Not classified
## 3741 Not classified
## 3742 Not classified
## 3743 Not classified
## 3744 Not classified
## 3745 Not classified
## 3746 Not classified
## 3747 Not classified
## 3748 Not classified
## 3749 Not classified
## 3750 Not classified
## 3751 Not classified
## 3752 Not classified
## 3753 Not classified
## 3754 Not classified
## 3755 Not classified
## 3756 Not classified
## 3757 Not classified
## 3758 Not classified
## 3759 Not classified
## 3760 Not classified
## 3761 Not classified
## 3762 Not classified
## 3763 Not classified
## 3764 Not classified
## 3765 Not classified
## 3766 Not classified
## 3767 Not classified
## 3768 Not classified
## 3769 Not classified
## 3770 Not classified
## 3771 Not classified
## 3772 Not classified
## 3773 Not classified
## 3774           <NA>
## 3775           <NA>
## 3776           <NA>
## 3777           <NA>
## 3778           <NA>
## 3779           <NA>
## 3780           <NA>
## 3781           <NA>
## 3782           <NA>
## 3783           <NA>
## 3784           <NA>
## 3785           <NA>
## 3786           <NA>
## 3787           <NA>
## 3788           <NA>
## 3789           <NA>
## 3790           <NA>
## 3791           <NA>
## 3792           <NA>
## 3793           <NA>
## 3794           <NA>
## 3795           <NA>
## 3796           <NA>
## 3797           <NA>
## 3798           <NA>
## 3799           <NA>
## 3800           <NA>
## 3801           <NA>
## 3802           <NA>
## 3803           <NA>
## 3804           <NA>
## 3805           <NA>
## 3806           <NA>
## 3807           <NA>
## 3808            IDA
## 3809            IDA
## 3810            IDA
## 3811            IDA
## 3812            IDA
## 3813            IDA
## 3814            IDA
## 3815            IDA
## 3816            IDA
## 3817            IDA
## 3818            IDA
## 3819            IDA
## 3820            IDA
## 3821            IDA
## 3822            IDA
## 3823            IDA
## 3824            IDA
## 3825            IDA
## 3826            IDA
## 3827            IDA
## 3828            IDA
## 3829            IDA
## 3830            IDA
## 3831            IDA
## 3832            IDA
## 3833            IDA
## 3834            IDA
## 3835            IDA
## 3836            IDA
## 3837            IDA
## 3838            IDA
## 3839            IDA
## 3840            IDA
## 3841            IDA
## 3842            IDA
## 3843            IDA
## 3844            IDA
## 3845            IDA
## 3846            IDA
## 3847            IDA
## 3848            IDA
## 3849            IDA
## 3850            IDA
## 3851            IDA
## 3852            IDA
## 3853            IDA
## 3854            IDA
## 3855            IDA
## 3856            IDA
## 3857            IDA
## 3858            IDA
## 3859            IDA
## 3860            IDA
## 3861            IDA
## 3862            IDA
## 3863            IDA
## 3864            IDA
## 3865            IDA
## 3866            IDA
## 3867            IDA
## 3868            IDA
## 3869            IDA
## 3870            IDA
## 3871     Aggregates
## 3872     Aggregates
## 3873     Aggregates
## 3874     Aggregates
## 3875     Aggregates
## 3876     Aggregates
## 3877     Aggregates
## 3878     Aggregates
## 3879     Aggregates
## 3880     Aggregates
## 3881     Aggregates
## 3882     Aggregates
## 3883     Aggregates
## 3884     Aggregates
## 3885     Aggregates
## 3886     Aggregates
## 3887     Aggregates
## 3888     Aggregates
## 3889     Aggregates
## 3890     Aggregates
## 3891     Aggregates
## 3892     Aggregates
## 3893     Aggregates
## 3894     Aggregates
## 3895     Aggregates
## 3896     Aggregates
## 3897     Aggregates
## 3898     Aggregates
## 3899     Aggregates
## 3900     Aggregates
## 3901     Aggregates
## 3902     Aggregates
## 3903     Aggregates
## 3904     Aggregates
## 3905     Aggregates
## 3906     Aggregates
## 3907     Aggregates
## 3908     Aggregates
## 3909     Aggregates
## 3910     Aggregates
## 3911     Aggregates
## 3912     Aggregates
## 3913     Aggregates
## 3914     Aggregates
## 3915     Aggregates
## 3916     Aggregates
## 3917     Aggregates
## 3918     Aggregates
## 3919     Aggregates
## 3920     Aggregates
## 3921     Aggregates
## 3922     Aggregates
## 3923     Aggregates
## 3924     Aggregates
## 3925     Aggregates
## 3926     Aggregates
## 3927     Aggregates
## 3928     Aggregates
## 3929     Aggregates
## 3930     Aggregates
## 3931     Aggregates
## 3932     Aggregates
## 3933     Aggregates
## 3934           <NA>
## 3935           <NA>
## 3936           <NA>
## 3937           <NA>
## 3938           <NA>
## 3939           <NA>
## 3940           <NA>
## 3941           <NA>
## 3942           <NA>
## 3943           <NA>
## 3944           <NA>
## 3945           <NA>
## 3946           <NA>
## 3947           <NA>
## 3948           <NA>
## 3949           <NA>
## 3950           <NA>
## 3951           <NA>
## 3952           <NA>
## 3953           <NA>
## 3954           <NA>
## 3955           <NA>
## 3956           <NA>
## 3957           <NA>
## 3958           <NA>
## 3959           <NA>
## 3960           <NA>
## 3961           <NA>
## 3962           <NA>
## 3963           <NA>
## 3964           <NA>
## 3965           <NA>
## 3966           <NA>
## 3967           <NA>
## 3968            IDA
## 3969            IDA
## 3970            IDA
## 3971            IDA
## 3972            IDA
## 3973            IDA
## 3974            IDA
## 3975            IDA
## 3976            IDA
## 3977            IDA
## 3978            IDA
## 3979            IDA
## 3980            IDA
## 3981            IDA
## 3982            IDA
## 3983            IDA
## 3984            IDA
## 3985            IDA
## 3986            IDA
## 3987            IDA
## 3988            IDA
## 3989            IDA
## 3990            IDA
## 3991            IDA
## 3992            IDA
## 3993            IDA
## 3994            IDA
## 3995            IDA
## 3996            IDA
## 3997            IDA
## 3998            IDA
## 3999            IDA
## 4000            IDA
## 4001            IDA
## 4002            IDA
## 4003            IDA
## 4004            IDA
## 4005            IDA
## 4006            IDA
## 4007            IDA
## 4008            IDA
## 4009            IDA
## 4010            IDA
## 4011            IDA
## 4012            IDA
## 4013            IDA
## 4014            IDA
## 4015            IDA
## 4016            IDA
## 4017            IDA
## 4018            IDA
## 4019            IDA
## 4020            IDA
## 4021            IDA
## 4022            IDA
## 4023            IDA
## 4024            IDA
## 4025            IDA
## 4026            IDA
## 4027            IDA
## 4028            IDA
## 4029            IDA
## 4030            IDA
## 4031 Not classified
## 4032 Not classified
## 4033 Not classified
## 4034 Not classified
## 4035 Not classified
## 4036 Not classified
## 4037 Not classified
## 4038 Not classified
## 4039 Not classified
## 4040 Not classified
## 4041 Not classified
## 4042 Not classified
## 4043 Not classified
## 4044 Not classified
## 4045 Not classified
## 4046 Not classified
## 4047 Not classified
## 4048 Not classified
## 4049 Not classified
## 4050 Not classified
## 4051 Not classified
## 4052 Not classified
## 4053 Not classified
## 4054 Not classified
## 4055 Not classified
## 4056 Not classified
## 4057 Not classified
## 4058 Not classified
## 4059 Not classified
## 4060 Not classified
## 4061 Not classified
## 4062 Not classified
## 4063 Not classified
## 4064 Not classified
## 4065 Not classified
## 4066 Not classified
## 4067 Not classified
## 4068 Not classified
## 4069 Not classified
## 4070 Not classified
## 4071 Not classified
## 4072 Not classified
## 4073 Not classified
## 4074 Not classified
## 4075 Not classified
## 4076 Not classified
## 4077 Not classified
## 4078 Not classified
## 4079 Not classified
## 4080 Not classified
## 4081 Not classified
## 4082 Not classified
## 4083 Not classified
## 4084 Not classified
## 4085 Not classified
## 4086 Not classified
## 4087 Not classified
## 4088 Not classified
## 4089 Not classified
## 4090 Not classified
## 4091 Not classified
## 4092 Not classified
## 4093 Not classified
## 4094           <NA>
## 4095           <NA>
## 4096           <NA>
## 4097           <NA>
## 4098           <NA>
## 4099           <NA>
## 4100           <NA>
## 4101           <NA>
## 4102           <NA>
## 4103           <NA>
## 4104           <NA>
## 4105           <NA>
## 4106           <NA>
## 4107           <NA>
## 4108           <NA>
## 4109           <NA>
## 4110           <NA>
## 4111           <NA>
## 4112           <NA>
## 4113           <NA>
## 4114           <NA>
## 4115           <NA>
## 4116           <NA>
## 4117           <NA>
## 4118           <NA>
## 4119           <NA>
## 4120           <NA>
## 4121           <NA>
## 4122           <NA>
## 4123           <NA>
## 4124           <NA>
## 4125           <NA>
## 4126           <NA>
## 4127           <NA>
## 4128           IBRD
## 4129           IBRD
## 4130           IBRD
## 4131           IBRD
## 4132           IBRD
## 4133           IBRD
## 4134           IBRD
## 4135           IBRD
## 4136           IBRD
## 4137           IBRD
## 4138           IBRD
## 4139           IBRD
## 4140           IBRD
## 4141           IBRD
## 4142           IBRD
## 4143           IBRD
## 4144           IBRD
## 4145           IBRD
## 4146           IBRD
## 4147           IBRD
## 4148           IBRD
## 4149           IBRD
## 4150           IBRD
## 4151           IBRD
## 4152           IBRD
## 4153           IBRD
## 4154           IBRD
## 4155           IBRD
## 4156           IBRD
## 4157           IBRD
## 4158           IBRD
## 4159           IBRD
## 4160           IBRD
## 4161           IBRD
## 4162           IBRD
## 4163           IBRD
## 4164           IBRD
## 4165           IBRD
## 4166           IBRD
## 4167           IBRD
## 4168           IBRD
## 4169           IBRD
## 4170           IBRD
## 4171           IBRD
## 4172           IBRD
## 4173           IBRD
## 4174           IBRD
## 4175           IBRD
## 4176           IBRD
## 4177           IBRD
## 4178           IBRD
## 4179           IBRD
## 4180           IBRD
## 4181           IBRD
## 4182           IBRD
## 4183           IBRD
## 4184           IBRD
## 4185           IBRD
## 4186           IBRD
## 4187           IBRD
## 4188           IBRD
## 4189           IBRD
## 4190           IBRD
## 4191           <NA>
## 4192           <NA>
## 4193           <NA>
## 4194           <NA>
## 4195           <NA>
## 4196           <NA>
## 4197           <NA>
## 4198           <NA>
## 4199           <NA>
## 4200           <NA>
## 4201           <NA>
## 4202           <NA>
## 4203           <NA>
## 4204           <NA>
## 4205           <NA>
## 4206           <NA>
## 4207           <NA>
## 4208           <NA>
## 4209           <NA>
## 4210           <NA>
## 4211           <NA>
## 4212           <NA>
## 4213           <NA>
## 4214           <NA>
## 4215           <NA>
## 4216           <NA>
## 4217           <NA>
## 4218           <NA>
## 4219           <NA>
## 4220           <NA>
## 4221           <NA>
## 4222           <NA>
## 4223           <NA>
## 4224           <NA>
## 4225           IBRD
## 4226           IBRD
## 4227           IBRD
## 4228           IBRD
## 4229           IBRD
## 4230           IBRD
## 4231           IBRD
## 4232           IBRD
## 4233           IBRD
## 4234           IBRD
## 4235           IBRD
## 4236           IBRD
## 4237           IBRD
## 4238           IBRD
## 4239           IBRD
## 4240           IBRD
## 4241           IBRD
## 4242           IBRD
## 4243           IBRD
## 4244           IBRD
## 4245           IBRD
## 4246           IBRD
## 4247           IBRD
## 4248           IBRD
## 4249           IBRD
## 4250           IBRD
## 4251           IBRD
## 4252           IBRD
## 4253           IBRD
## 4254           IBRD
## 4255           IBRD
## 4256           IBRD
## 4257           IBRD
## 4258           IBRD
## 4259           IBRD
## 4260           IBRD
## 4261           IBRD
## 4262           IBRD
## 4263           IBRD
## 4264           IBRD
## 4265           IBRD
## 4266           IBRD
## 4267           IBRD
## 4268           IBRD
## 4269           IBRD
## 4270           IBRD
## 4271           IBRD
## 4272           IBRD
## 4273           IBRD
## 4274           IBRD
## 4275           IBRD
## 4276           IBRD
## 4277           IBRD
## 4278           IBRD
## 4279           IBRD
## 4280           IBRD
## 4281           IBRD
## 4282           IBRD
## 4283           IBRD
## 4284           IBRD
## 4285           IBRD
## 4286           IBRD
## 4287           IBRD
## 4288           IBRD
## 4289           IBRD
## 4290           IBRD
## 4291           IBRD
## 4292           IBRD
## 4293           IBRD
## 4294           IBRD
## 4295           IBRD
## 4296           IBRD
## 4297           IBRD
## 4298           IBRD
## 4299           IBRD
## 4300           IBRD
## 4301           IBRD
## 4302           IBRD
## 4303           IBRD
## 4304           IBRD
## 4305           IBRD
## 4306           IBRD
## 4307           IBRD
## 4308           IBRD
## 4309           IBRD
## 4310           IBRD
## 4311           IBRD
## 4312           IBRD
## 4313           IBRD
## 4314           IBRD
## 4315           IBRD
## 4316           IBRD
## 4317           IBRD
## 4318           IBRD
## 4319           IBRD
## 4320           IBRD
## 4321           IBRD
## 4322           IBRD
## 4323           IBRD
## 4324           IBRD
## 4325           IBRD
## 4326           IBRD
## 4327           IBRD
## 4328           IBRD
## 4329           IBRD
## 4330           IBRD
## 4331           IBRD
## 4332           IBRD
## 4333           IBRD
## 4334           IBRD
## 4335           IBRD
## 4336           IBRD
## 4337           IBRD
## 4338           IBRD
## 4339           IBRD
## 4340           IBRD
## 4341           IBRD
## 4342           IBRD
## 4343           IBRD
## 4344           IBRD
## 4345           IBRD
## 4346           IBRD
## 4347           IBRD
## 4348           IBRD
## 4349           IBRD
## 4350           IBRD
## 4351           <NA>
## 4352           <NA>
## 4353           <NA>
## 4354           <NA>
## 4355           <NA>
## 4356           <NA>
## 4357           <NA>
## 4358           <NA>
## 4359           <NA>
## 4360           <NA>
## 4361           <NA>
## 4362           <NA>
## 4363           <NA>
## 4364           <NA>
## 4365           <NA>
## 4366           <NA>
## 4367           <NA>
## 4368           <NA>
## 4369           <NA>
## 4370           <NA>
## 4371           <NA>
## 4372           <NA>
## 4373           <NA>
## 4374           <NA>
## 4375           <NA>
## 4376           <NA>
## 4377           <NA>
## 4378           <NA>
## 4379           <NA>
## 4380           <NA>
## 4381           <NA>
## 4382           <NA>
## 4383           <NA>
## 4384           <NA>
## 4385           <NA>
## 4386           <NA>
## 4387           <NA>
## 4388           <NA>
## 4389           <NA>
## 4390           <NA>
## 4391           <NA>
## 4392           <NA>
## 4393           <NA>
## 4394           <NA>
## 4395           <NA>
## 4396           <NA>
## 4397           <NA>
## 4398           <NA>
## 4399           <NA>
## 4400           <NA>
## 4401           <NA>
## 4402           <NA>
## 4403           <NA>
## 4404           <NA>
## 4405           <NA>
## 4406           <NA>
## 4407           <NA>
## 4408           <NA>
## 4409           <NA>
## 4410           <NA>
## 4411           <NA>
## 4412           <NA>
## 4413           <NA>
## 4414           <NA>
## 4415           <NA>
## 4416           <NA>
## 4417           <NA>
## 4418           <NA>
## 4419           <NA>
## 4420           <NA>
## 4421           <NA>
## 4422           <NA>
## 4423           <NA>
## 4424           <NA>
## 4425           <NA>
## 4426           <NA>
## 4427           <NA>
## 4428           <NA>
## 4429           <NA>
## 4430           <NA>
## 4431           <NA>
## 4432           <NA>
## 4433           <NA>
## 4434           <NA>
## 4435           <NA>
## 4436           <NA>
## 4437           <NA>
## 4438           <NA>
## 4439           <NA>
## 4440           <NA>
## 4441           <NA>
## 4442           <NA>
## 4443           <NA>
## 4444           <NA>
## 4445           <NA>
## 4446           <NA>
## 4447           <NA>
## 4448           <NA>
## 4449           <NA>
## 4450           <NA>
## 4451           <NA>
## 4452           <NA>
## 4453           <NA>
## 4454           <NA>
## 4455           <NA>
## 4456           <NA>
## 4457           <NA>
## 4458           <NA>
## 4459           <NA>
## 4460           <NA>
## 4461           <NA>
## 4462           <NA>
## 4463           <NA>
## 4464           <NA>
## 4465           <NA>
## 4466           <NA>
## 4467           <NA>
## 4468           <NA>
## 4469           <NA>
## 4470           <NA>
## 4471           <NA>
## 4472           <NA>
## 4473           <NA>
## 4474           <NA>
## 4475           <NA>
## 4476           <NA>
## 4477           <NA>
## 4478           <NA>
## 4479           <NA>
## 4480           <NA>
## 4481           <NA>
## 4482           <NA>
## 4483           <NA>
## 4484           <NA>
## 4485           <NA>
## 4486           <NA>
## 4487           <NA>
## 4488           <NA>
## 4489           <NA>
## 4490           <NA>
## 4491           <NA>
## 4492           <NA>
## 4493           <NA>
## 4494           <NA>
## 4495           <NA>
## 4496           <NA>
## 4497           <NA>
## 4498           <NA>
## 4499           <NA>
## 4500           <NA>
## 4501           <NA>
## 4502           <NA>
## 4503           <NA>
## 4504           <NA>
## 4505           <NA>
## 4506           <NA>
## 4507           <NA>
## 4508           <NA>
## 4509           <NA>
## 4510           <NA>
## 4511           <NA>
## 4512           <NA>
## 4513           <NA>
## 4514           <NA>
## 4515           <NA>
## 4516           <NA>
## 4517           <NA>
## 4518           <NA>
## 4519           <NA>
## 4520           <NA>
## 4521            IDA
## 4522            IDA
## 4523            IDA
## 4524            IDA
## 4525            IDA
## 4526            IDA
## 4527            IDA
## 4528            IDA
## 4529            IDA
## 4530            IDA
## 4531            IDA
## 4532            IDA
## 4533            IDA
## 4534            IDA
## 4535            IDA
## 4536            IDA
## 4537            IDA
## 4538            IDA
## 4539            IDA
## 4540            IDA
## 4541            IDA
## 4542            IDA
## 4543            IDA
## 4544            IDA
## 4545            IDA
## 4546            IDA
## 4547            IDA
## 4548            IDA
## 4549            IDA
## 4550            IDA
## 4551            IDA
## 4552            IDA
## 4553            IDA
## 4554            IDA
## 4555            IDA
## 4556            IDA
## 4557            IDA
## 4558            IDA
## 4559            IDA
## 4560            IDA
## 4561            IDA
## 4562            IDA
## 4563            IDA
## 4564            IDA
## 4565            IDA
## 4566            IDA
## 4567            IDA
## 4568            IDA
## 4569            IDA
## 4570            IDA
## 4571            IDA
## 4572            IDA
## 4573            IDA
## 4574            IDA
## 4575            IDA
## 4576            IDA
## 4577            IDA
## 4578            IDA
## 4579            IDA
## 4580            IDA
## 4581            IDA
## 4582            IDA
## 4583            IDA
## 4584           <NA>
## 4585           <NA>
## 4586           <NA>
## 4587           <NA>
## 4588           <NA>
## 4589           <NA>
## 4590           <NA>
## 4591           <NA>
## 4592           <NA>
## 4593           <NA>
## 4594           <NA>
## 4595           <NA>
## 4596           <NA>
## 4597           <NA>
## 4598           <NA>
## 4599           <NA>
## 4600           <NA>
## 4601           <NA>
## 4602           <NA>
## 4603           <NA>
## 4604           <NA>
## 4605           <NA>
## 4606           <NA>
## 4607           <NA>
## 4608           <NA>
## 4609           <NA>
## 4610           <NA>
## 4611           <NA>
## 4612           <NA>
## 4613           <NA>
## 4614           <NA>
## 4615           <NA>
## 4616           <NA>
## 4617           <NA>
## 4618           <NA>
## 4619           <NA>
## 4620           <NA>
## 4621           <NA>
## 4622           <NA>
## 4623           <NA>
## 4624           <NA>
## 4625           <NA>
## 4626           <NA>
## 4627           <NA>
## 4628           <NA>
## 4629           <NA>
## 4630           <NA>
## 4631           <NA>
## 4632           <NA>
## 4633           <NA>
## 4634           <NA>
## 4635           <NA>
## 4636           <NA>
## 4637           <NA>
## 4638           <NA>
## 4639           <NA>
## 4640           <NA>
## 4641           <NA>
## 4642           <NA>
## 4643           <NA>
## 4644           <NA>
## 4645           <NA>
## 4646           <NA>
## 4647           <NA>
## 4648           <NA>
## 4649           <NA>
## 4650           <NA>
## 4651           <NA>
## 4652            IDA
## 4653            IDA
## 4654            IDA
## 4655            IDA
## 4656            IDA
## 4657            IDA
## 4658            IDA
## 4659            IDA
## 4660            IDA
## 4661            IDA
## 4662            IDA
## 4663            IDA
## 4664            IDA
## 4665            IDA
## 4666            IDA
## 4667            IDA
## 4668            IDA
## 4669            IDA
## 4670            IDA
## 4671            IDA
## 4672            IDA
## 4673            IDA
## 4674            IDA
## 4675            IDA
## 4676            IDA
## 4677            IDA
## 4678            IDA
## 4679            IDA
## 4680            IDA
## 4681            IDA
## 4682            IDA
## 4683            IDA
## 4684            IDA
## 4685            IDA
## 4686            IDA
## 4687            IDA
## 4688            IDA
## 4689            IDA
## 4690            IDA
## 4691            IDA
## 4692            IDA
## 4693            IDA
## 4694            IDA
## 4695            IDA
## 4696            IDA
## 4697            IDA
## 4698            IDA
## 4699            IDA
## 4700            IDA
## 4701            IDA
## 4702            IDA
## 4703            IDA
## 4704            IDA
## 4705            IDA
## 4706            IDA
## 4707            IDA
## 4708            IDA
## 4709            IDA
## 4710            IDA
## 4711            IDA
## 4712            IDA
## 4713            IDA
## 4714            IDA
## 4715          Blend
## 4716          Blend
## 4717          Blend
## 4718          Blend
## 4719          Blend
## 4720          Blend
## 4721          Blend
## 4722          Blend
## 4723          Blend
## 4724          Blend
## 4725          Blend
## 4726          Blend
## 4727          Blend
## 4728          Blend
## 4729          Blend
## 4730          Blend
## 4731          Blend
## 4732          Blend
## 4733          Blend
## 4734          Blend
## 4735          Blend
## 4736          Blend
## 4737          Blend
## 4738          Blend
## 4739          Blend
## 4740          Blend
## 4741          Blend
## 4742          Blend
## 4743          Blend
## 4744          Blend
## 4745          Blend
## 4746          Blend
## 4747          Blend
## 4748          Blend
## 4749          Blend
## 4750          Blend
## 4751          Blend
## 4752          Blend
## 4753          Blend
## 4754          Blend
## 4755          Blend
## 4756          Blend
## 4757          Blend
## 4758          Blend
## 4759          Blend
## 4760          Blend
## 4761          Blend
## 4762          Blend
## 4763          Blend
## 4764          Blend
## 4765          Blend
## 4766          Blend
## 4767          Blend
## 4768          Blend
## 4769          Blend
## 4770          Blend
## 4771          Blend
## 4772          Blend
## 4773          Blend
## 4774          Blend
## 4775          Blend
## 4776          Blend
## 4777          Blend
## 4778           IBRD
## 4779           IBRD
## 4780           IBRD
## 4781           IBRD
## 4782           IBRD
## 4783           IBRD
## 4784           IBRD
## 4785           IBRD
## 4786           IBRD
## 4787           IBRD
## 4788           IBRD
## 4789           IBRD
## 4790           IBRD
## 4791           IBRD
## 4792           IBRD
## 4793           IBRD
## 4794           IBRD
## 4795           IBRD
## 4796           IBRD
## 4797           IBRD
## 4798           IBRD
## 4799           IBRD
## 4800           IBRD
## 4801           IBRD
## 4802           IBRD
## 4803           IBRD
## 4804           IBRD
## 4805           IBRD
## 4806           IBRD
## 4807           IBRD
## 4808           IBRD
## 4809           IBRD
## 4810           IBRD
## 4811           IBRD
## 4812           IBRD
## 4813           IBRD
## 4814           IBRD
## 4815           IBRD
## 4816           IBRD
## 4817           IBRD
## 4818           IBRD
## 4819           IBRD
## 4820           IBRD
## 4821           IBRD
## 4822           IBRD
## 4823           IBRD
## 4824           IBRD
## 4825           IBRD
## 4826           IBRD
## 4827           IBRD
## 4828           IBRD
## 4829           IBRD
## 4830           IBRD
## 4831           IBRD
## 4832           IBRD
## 4833           IBRD
## 4834           IBRD
## 4835           IBRD
## 4836           IBRD
## 4837           IBRD
## 4838           IBRD
## 4839           IBRD
## 4840           IBRD
## 4841           <NA>
## 4842           <NA>
## 4843           <NA>
## 4844           <NA>
## 4845           <NA>
## 4846           <NA>
## 4847           <NA>
## 4848           <NA>
## 4849           <NA>
## 4850           <NA>
## 4851           <NA>
## 4852           <NA>
## 4853           <NA>
## 4854           <NA>
## 4855           <NA>
## 4856           <NA>
## 4857           <NA>
## 4858           <NA>
## 4859           <NA>
## 4860           <NA>
## 4861           <NA>
## 4862           <NA>
## 4863           <NA>
## 4864           <NA>
## 4865           <NA>
## 4866           <NA>
## 4867           <NA>
## 4868           <NA>
## 4869           <NA>
## 4870           <NA>
## 4871           <NA>
## 4872           <NA>
## 4873           <NA>
## 4874           <NA>
## 4875            IDA
## 4876            IDA
## 4877            IDA
## 4878            IDA
## 4879            IDA
## 4880            IDA
## 4881            IDA
## 4882            IDA
## 4883            IDA
## 4884            IDA
## 4885            IDA
## 4886            IDA
## 4887            IDA
## 4888            IDA
## 4889            IDA
## 4890            IDA
## 4891            IDA
## 4892            IDA
## 4893            IDA
## 4894            IDA
## 4895            IDA
## 4896            IDA
## 4897            IDA
## 4898            IDA
## 4899            IDA
## 4900            IDA
## 4901            IDA
## 4902            IDA
## 4903            IDA
## 4904            IDA
## 4905            IDA
## 4906            IDA
## 4907            IDA
## 4908            IDA
## 4909            IDA
## 4910            IDA
## 4911            IDA
## 4912            IDA
## 4913            IDA
## 4914            IDA
## 4915            IDA
## 4916            IDA
## 4917            IDA
## 4918            IDA
## 4919            IDA
## 4920            IDA
## 4921            IDA
## 4922            IDA
## 4923            IDA
## 4924            IDA
## 4925            IDA
## 4926            IDA
## 4927            IDA
## 4928            IDA
## 4929            IDA
## 4930            IDA
## 4931            IDA
## 4932            IDA
## 4933            IDA
## 4934            IDA
## 4935            IDA
## 4936            IDA
## 4937            IDA
## 4938           <NA>
## 4939           <NA>
## 4940           <NA>
## 4941           <NA>
## 4942           <NA>
## 4943           <NA>
## 4944           <NA>
## 4945           <NA>
## 4946           <NA>
## 4947           <NA>
## 4948           <NA>
## 4949           <NA>
## 4950           <NA>
## 4951           <NA>
## 4952           <NA>
## 4953           <NA>
## 4954           <NA>
## 4955           <NA>
## 4956           <NA>
## 4957           <NA>
## 4958           <NA>
## 4959           <NA>
## 4960           <NA>
## 4961           <NA>
## 4962           <NA>
## 4963           <NA>
## 4964           <NA>
## 4965           <NA>
## 4966           <NA>
## 4967           <NA>
## 4968           <NA>
## 4969           <NA>
## 4970           <NA>
## 4971           <NA>
## 4972           IBRD
## 4973           IBRD
## 4974           IBRD
## 4975           IBRD
## 4976           IBRD
## 4977           IBRD
## 4978           IBRD
## 4979           IBRD
## 4980           IBRD
## 4981           IBRD
## 4982           IBRD
## 4983           IBRD
## 4984           IBRD
## 4985           IBRD
## 4986           IBRD
## 4987           IBRD
## 4988           IBRD
## 4989           IBRD
## 4990           IBRD
## 4991           IBRD
## 4992           IBRD
## 4993           IBRD
## 4994           IBRD
## 4995           IBRD
## 4996           IBRD
## 4997           IBRD
## 4998           IBRD
## 4999           IBRD
## 5000           IBRD
## 5001           IBRD
## 5002           IBRD
## 5003           IBRD
## 5004           IBRD
## 5005           IBRD
## 5006           IBRD
## 5007           IBRD
## 5008           IBRD
## 5009           IBRD
## 5010           IBRD
## 5011           IBRD
## 5012           IBRD
## 5013           IBRD
## 5014           IBRD
## 5015           IBRD
## 5016           IBRD
## 5017           IBRD
## 5018           IBRD
## 5019           IBRD
## 5020           IBRD
## 5021           IBRD
## 5022           IBRD
## 5023           IBRD
## 5024           IBRD
## 5025           IBRD
## 5026           IBRD
## 5027           IBRD
## 5028           IBRD
## 5029           IBRD
## 5030           IBRD
## 5031           IBRD
## 5032           IBRD
## 5033           IBRD
## 5034           IBRD
## 5035           <NA>
## 5036           <NA>
## 5037           <NA>
## 5038           <NA>
## 5039           <NA>
## 5040           <NA>
## 5041           <NA>
## 5042           <NA>
## 5043           <NA>
## 5044           <NA>
## 5045           <NA>
## 5046           <NA>
## 5047           <NA>
## 5048           <NA>
## 5049           <NA>
## 5050           <NA>
## 5051           <NA>
## 5052           <NA>
## 5053           <NA>
## 5054           <NA>
## 5055           <NA>
## 5056           <NA>
## 5057           <NA>
## 5058           <NA>
## 5059           <NA>
## 5060           <NA>
## 5061           <NA>
## 5062           <NA>
## 5063           <NA>
## 5064           <NA>
## 5065           <NA>
## 5066           <NA>
## 5067           <NA>
## 5068           <NA>
## 5069 Not classified
## 5070 Not classified
## 5071 Not classified
## 5072 Not classified
## 5073 Not classified
## 5074 Not classified
## 5075 Not classified
## 5076 Not classified
## 5077 Not classified
## 5078 Not classified
## 5079 Not classified
## 5080 Not classified
## 5081 Not classified
## 5082 Not classified
## 5083 Not classified
## 5084 Not classified
## 5085 Not classified
## 5086 Not classified
## 5087 Not classified
## 5088 Not classified
## 5089 Not classified
## 5090 Not classified
## 5091 Not classified
## 5092 Not classified
## 5093 Not classified
## 5094 Not classified
## 5095 Not classified
## 5096 Not classified
## 5097 Not classified
## 5098 Not classified
## 5099 Not classified
## 5100 Not classified
## 5101 Not classified
## 5102 Not classified
## 5103 Not classified
## 5104 Not classified
## 5105 Not classified
## 5106 Not classified
## 5107 Not classified
## 5108 Not classified
## 5109 Not classified
## 5110 Not classified
## 5111 Not classified
## 5112 Not classified
## 5113 Not classified
## 5114 Not classified
## 5115 Not classified
## 5116 Not classified
## 5117 Not classified
## 5118 Not classified
## 5119 Not classified
## 5120 Not classified
## 5121 Not classified
## 5122 Not classified
## 5123 Not classified
## 5124 Not classified
## 5125 Not classified
## 5126 Not classified
## 5127 Not classified
## 5128 Not classified
## 5129 Not classified
## 5130 Not classified
## 5131 Not classified
## 5132           <NA>
## 5133           <NA>
## 5134           <NA>
## 5135           <NA>
## 5136           <NA>
## 5137           <NA>
## 5138           <NA>
## 5139           <NA>
## 5140           <NA>
## 5141           <NA>
## 5142           <NA>
## 5143           <NA>
## 5144           <NA>
## 5145           <NA>
## 5146           <NA>
## 5147           <NA>
## 5148           <NA>
## 5149           <NA>
## 5150           <NA>
## 5151           <NA>
## 5152           <NA>
## 5153           <NA>
## 5154           <NA>
## 5155           <NA>
## 5156           <NA>
## 5157           <NA>
## 5158           <NA>
## 5159           <NA>
## 5160           <NA>
## 5161           <NA>
## 5162           <NA>
## 5163           <NA>
## 5164           <NA>
## 5165           <NA>
## 5166 Not classified
## 5167 Not classified
## 5168 Not classified
## 5169 Not classified
## 5170 Not classified
## 5171 Not classified
## 5172 Not classified
## 5173 Not classified
## 5174 Not classified
## 5175 Not classified
## 5176 Not classified
## 5177 Not classified
## 5178 Not classified
## 5179 Not classified
## 5180 Not classified
## 5181 Not classified
## 5182 Not classified
## 5183 Not classified
## 5184 Not classified
## 5185 Not classified
## 5186 Not classified
## 5187 Not classified
## 5188 Not classified
## 5189 Not classified
## 5190 Not classified
## 5191 Not classified
## 5192 Not classified
## 5193 Not classified
## 5194 Not classified
## 5195 Not classified
## 5196 Not classified
## 5197 Not classified
## 5198 Not classified
## 5199 Not classified
## 5200 Not classified
## 5201 Not classified
## 5202 Not classified
## 5203 Not classified
## 5204 Not classified
## 5205 Not classified
## 5206 Not classified
## 5207 Not classified
## 5208 Not classified
## 5209 Not classified
## 5210 Not classified
## 5211 Not classified
## 5212 Not classified
## 5213 Not classified
## 5214 Not classified
## 5215 Not classified
## 5216 Not classified
## 5217 Not classified
## 5218 Not classified
## 5219 Not classified
## 5220 Not classified
## 5221 Not classified
## 5222 Not classified
## 5223 Not classified
## 5224 Not classified
## 5225 Not classified
## 5226 Not classified
## 5227 Not classified
## 5228 Not classified
## 5229 Not classified
## 5230 Not classified
## 5231 Not classified
## 5232 Not classified
## 5233 Not classified
## 5234 Not classified
## 5235 Not classified
## 5236 Not classified
## 5237 Not classified
## 5238 Not classified
## 5239 Not classified
## 5240 Not classified
## 5241 Not classified
## 5242 Not classified
## 5243 Not classified
## 5244 Not classified
## 5245 Not classified
## 5246 Not classified
## 5247 Not classified
## 5248 Not classified
## 5249 Not classified
## 5250 Not classified
## 5251 Not classified
## 5252 Not classified
## 5253 Not classified
## 5254 Not classified
## 5255 Not classified
## 5256 Not classified
## 5257 Not classified
## 5258 Not classified
## 5259 Not classified
## 5260 Not classified
## 5261 Not classified
## 5262 Not classified
## 5263 Not classified
## 5264 Not classified
## 5265 Not classified
## 5266 Not classified
## 5267 Not classified
## 5268 Not classified
## 5269 Not classified
## 5270 Not classified
## 5271 Not classified
## 5272 Not classified
## 5273 Not classified
## 5274 Not classified
## 5275 Not classified
## 5276 Not classified
## 5277 Not classified
## 5278 Not classified
## 5279 Not classified
## 5280 Not classified
## 5281 Not classified
## 5282 Not classified
## 5283 Not classified
## 5284 Not classified
## 5285 Not classified
## 5286 Not classified
## 5287 Not classified
## 5288 Not classified
## 5289 Not classified
## 5290 Not classified
## 5291 Not classified
## 5292           <NA>
## 5293           <NA>
## 5294           <NA>
## 5295           <NA>
## 5296           <NA>
## 5297           <NA>
## 5298           <NA>
## 5299           <NA>
## 5300           <NA>
## 5301           <NA>
## 5302           <NA>
## 5303           <NA>
## 5304           <NA>
## 5305           <NA>
## 5306           <NA>
## 5307           <NA>
## 5308           <NA>
## 5309           <NA>
## 5310           <NA>
## 5311           <NA>
## 5312           <NA>
## 5313           <NA>
## 5314           <NA>
## 5315           <NA>
## 5316           <NA>
## 5317           <NA>
## 5318           <NA>
## 5319           <NA>
## 5320           <NA>
## 5321           <NA>
## 5322           <NA>
## 5323           <NA>
## 5324           <NA>
## 5325           <NA>
## 5326           <NA>
## 5327           <NA>
## 5328           <NA>
## 5329           <NA>
## 5330           <NA>
## 5331           <NA>
## 5332           <NA>
## 5333           <NA>
## 5334           <NA>
## 5335           <NA>
## 5336           <NA>
## 5337           <NA>
## 5338           <NA>
## 5339           <NA>
## 5340           <NA>
## 5341           <NA>
## 5342           <NA>
## 5343           <NA>
## 5344           <NA>
## 5345           <NA>
## 5346           <NA>
## 5347           <NA>
## 5348           <NA>
## 5349           <NA>
## 5350           <NA>
## 5351           <NA>
## 5352           <NA>
## 5353           <NA>
## 5354           <NA>
## 5355           <NA>
## 5356           <NA>
## 5357           <NA>
## 5358           <NA>
## 5359           <NA>
## 5360 Not classified
## 5361 Not classified
## 5362 Not classified
## 5363 Not classified
## 5364 Not classified
## 5365 Not classified
## 5366 Not classified
## 5367 Not classified
## 5368 Not classified
## 5369 Not classified
## 5370 Not classified
## 5371 Not classified
## 5372 Not classified
## 5373 Not classified
## 5374 Not classified
## 5375 Not classified
## 5376 Not classified
## 5377 Not classified
## 5378 Not classified
## 5379 Not classified
## 5380 Not classified
## 5381 Not classified
## 5382 Not classified
## 5383 Not classified
## 5384 Not classified
## 5385 Not classified
## 5386 Not classified
## 5387 Not classified
## 5388 Not classified
## 5389 Not classified
## 5390 Not classified
## 5391 Not classified
## 5392 Not classified
## 5393 Not classified
## 5394 Not classified
## 5395 Not classified
## 5396 Not classified
## 5397 Not classified
## 5398 Not classified
## 5399 Not classified
## 5400 Not classified
## 5401 Not classified
## 5402 Not classified
## 5403 Not classified
## 5404 Not classified
## 5405 Not classified
## 5406 Not classified
## 5407 Not classified
## 5408 Not classified
## 5409 Not classified
## 5410 Not classified
## 5411 Not classified
## 5412 Not classified
## 5413 Not classified
## 5414 Not classified
## 5415 Not classified
## 5416 Not classified
## 5417 Not classified
## 5418 Not classified
## 5419 Not classified
## 5420 Not classified
## 5421 Not classified
## 5422 Not classified
## 5423 Not classified
## 5424 Not classified
## 5425 Not classified
## 5426 Not classified
## 5427 Not classified
## 5428 Not classified
## 5429 Not classified
## 5430 Not classified
## 5431 Not classified
## 5432 Not classified
## 5433 Not classified
## 5434 Not classified
## 5435 Not classified
## 5436 Not classified
## 5437 Not classified
## 5438 Not classified
## 5439 Not classified
## 5440 Not classified
## 5441 Not classified
## 5442 Not classified
## 5443 Not classified
## 5444 Not classified
## 5445 Not classified
## 5446 Not classified
## 5447 Not classified
## 5448 Not classified
## 5449 Not classified
## 5450 Not classified
## 5451 Not classified
## 5452 Not classified
## 5453 Not classified
## 5454 Not classified
## 5455 Not classified
## 5456 Not classified
## 5457 Not classified
## 5458 Not classified
## 5459 Not classified
## 5460 Not classified
## 5461 Not classified
## 5462 Not classified
## 5463 Not classified
## 5464 Not classified
## 5465 Not classified
## 5466 Not classified
## 5467 Not classified
## 5468 Not classified
## 5469 Not classified
## 5470 Not classified
## 5471 Not classified
## 5472 Not classified
## 5473 Not classified
## 5474 Not classified
## 5475 Not classified
## 5476 Not classified
## 5477 Not classified
## 5478 Not classified
## 5479 Not classified
## 5480 Not classified
## 5481 Not classified
## 5482 Not classified
## 5483 Not classified
## 5484 Not classified
## 5485 Not classified
## 5486           <NA>
## 5487           <NA>
## 5488           <NA>
## 5489           <NA>
## 5490           <NA>
## 5491           <NA>
## 5492           <NA>
## 5493           <NA>
## 5494           <NA>
## 5495           <NA>
## 5496           <NA>
## 5497           <NA>
## 5498           <NA>
## 5499           <NA>
## 5500           <NA>
## 5501           <NA>
## 5502           <NA>
## 5503           <NA>
## 5504           <NA>
## 5505           <NA>
## 5506           <NA>
## 5507           <NA>
## 5508           <NA>
## 5509           <NA>
## 5510           <NA>
## 5511           <NA>
## 5512           <NA>
## 5513           <NA>
## 5514           <NA>
## 5515           <NA>
## 5516           <NA>
## 5517           <NA>
## 5518           <NA>
## 5519           <NA>
## 5520           <NA>
## 5521           <NA>
## 5522           <NA>
## 5523           <NA>
## 5524           <NA>
## 5525           <NA>
## 5526           <NA>
## 5527           <NA>
## 5528           <NA>
## 5529           <NA>
## 5530           <NA>
## 5531           <NA>
## 5532           <NA>
## 5533           <NA>
## 5534           <NA>
## 5535           <NA>
## 5536           <NA>
## 5537           <NA>
## 5538           <NA>
## 5539           <NA>
## 5540           <NA>
## 5541           <NA>
## 5542           <NA>
## 5543           <NA>
## 5544           <NA>
## 5545           <NA>
## 5546           <NA>
## 5547           <NA>
## 5548           <NA>
## 5549           <NA>
## 5550           <NA>
## 5551           <NA>
## 5552           <NA>
## 5553           <NA>
## 5554            IDA
## 5555            IDA
## 5556            IDA
## 5557            IDA
## 5558            IDA
## 5559            IDA
## 5560            IDA
## 5561            IDA
## 5562            IDA
## 5563            IDA
## 5564            IDA
## 5565            IDA
## 5566            IDA
## 5567            IDA
## 5568            IDA
## 5569            IDA
## 5570            IDA
## 5571            IDA
## 5572            IDA
## 5573            IDA
## 5574            IDA
## 5575            IDA
## 5576            IDA
## 5577            IDA
## 5578            IDA
## 5579            IDA
## 5580            IDA
## 5581            IDA
## 5582            IDA
## 5583            IDA
## 5584            IDA
## 5585            IDA
## 5586            IDA
## 5587            IDA
## 5588            IDA
## 5589            IDA
## 5590            IDA
## 5591            IDA
## 5592            IDA
## 5593            IDA
## 5594            IDA
## 5595            IDA
## 5596            IDA
## 5597            IDA
## 5598            IDA
## 5599            IDA
## 5600            IDA
## 5601            IDA
## 5602            IDA
## 5603            IDA
## 5604            IDA
## 5605            IDA
## 5606            IDA
## 5607            IDA
## 5608            IDA
## 5609            IDA
## 5610            IDA
## 5611            IDA
## 5612            IDA
## 5613            IDA
## 5614            IDA
## 5615            IDA
## 5616            IDA
## 5617           <NA>
## 5618           <NA>
## 5619           <NA>
## 5620           <NA>
## 5621           <NA>
## 5622           <NA>
## 5623           <NA>
## 5624           <NA>
## 5625           <NA>
## 5626           <NA>
## 5627           <NA>
## 5628           <NA>
## 5629           <NA>
## 5630           <NA>
## 5631           <NA>
## 5632           <NA>
## 5633           <NA>
## 5634           <NA>
## 5635           <NA>
## 5636           <NA>
## 5637           <NA>
## 5638           <NA>
## 5639           <NA>
## 5640           <NA>
## 5641           <NA>
## 5642           <NA>
## 5643           <NA>
## 5644           <NA>
## 5645           <NA>
## 5646           <NA>
## 5647           <NA>
## 5648           <NA>
## 5649           <NA>
## 5650           <NA>
## 5651          Blend
## 5652          Blend
## 5653          Blend
## 5654          Blend
## 5655          Blend
## 5656          Blend
## 5657          Blend
## 5658          Blend
## 5659          Blend
## 5660          Blend
## 5661          Blend
## 5662          Blend
## 5663          Blend
## 5664          Blend
## 5665          Blend
## 5666          Blend
## 5667          Blend
## 5668          Blend
## 5669          Blend
## 5670          Blend
## 5671          Blend
## 5672          Blend
## 5673          Blend
## 5674          Blend
## 5675          Blend
## 5676          Blend
## 5677          Blend
## 5678          Blend
## 5679          Blend
## 5680          Blend
## 5681          Blend
## 5682          Blend
## 5683          Blend
## 5684          Blend
## 5685          Blend
## 5686          Blend
## 5687          Blend
## 5688          Blend
## 5689          Blend
## 5690          Blend
## 5691          Blend
## 5692          Blend
## 5693          Blend
## 5694          Blend
## 5695          Blend
## 5696          Blend
## 5697          Blend
## 5698          Blend
## 5699          Blend
## 5700          Blend
## 5701          Blend
## 5702          Blend
## 5703          Blend
## 5704          Blend
## 5705          Blend
## 5706          Blend
## 5707          Blend
## 5708          Blend
## 5709          Blend
## 5710          Blend
## 5711          Blend
## 5712          Blend
## 5713          Blend
## 5714           <NA>
## 5715           <NA>
## 5716           <NA>
## 5717           <NA>
## 5718           <NA>
## 5719           <NA>
## 5720           <NA>
## 5721           <NA>
## 5722           <NA>
## 5723           <NA>
## 5724           <NA>
## 5725           <NA>
## 5726           <NA>
## 5727           <NA>
## 5728           <NA>
## 5729           <NA>
## 5730           <NA>
## 5731           <NA>
## 5732           <NA>
## 5733           <NA>
## 5734           <NA>
## 5735           <NA>
## 5736           <NA>
## 5737           <NA>
## 5738           <NA>
## 5739           <NA>
## 5740           <NA>
## 5741           <NA>
## 5742           <NA>
## 5743           <NA>
## 5744           <NA>
## 5745           <NA>
## 5746           <NA>
## 5747           <NA>
## 5748           IBRD
## 5749           IBRD
## 5750           IBRD
## 5751           IBRD
## 5752           IBRD
## 5753           IBRD
## 5754           IBRD
## 5755           IBRD
## 5756           IBRD
## 5757           IBRD
## 5758           IBRD
## 5759           IBRD
## 5760           IBRD
## 5761           IBRD
## 5762           IBRD
## 5763           IBRD
## 5764           IBRD
## 5765           IBRD
## 5766           IBRD
## 5767           IBRD
## 5768           IBRD
## 5769           IBRD
## 5770           IBRD
## 5771           IBRD
## 5772           IBRD
## 5773           IBRD
## 5774           IBRD
## 5775           IBRD
## 5776           IBRD
## 5777           IBRD
## 5778           IBRD
## 5779           IBRD
## 5780           IBRD
## 5781           IBRD
## 5782           IBRD
## 5783           IBRD
## 5784           IBRD
## 5785           IBRD
## 5786           IBRD
## 5787           IBRD
## 5788           IBRD
## 5789           IBRD
## 5790           IBRD
## 5791           IBRD
## 5792           IBRD
## 5793           IBRD
## 5794           IBRD
## 5795           IBRD
## 5796           IBRD
## 5797           IBRD
## 5798           IBRD
## 5799           IBRD
## 5800           IBRD
## 5801           IBRD
## 5802           IBRD
## 5803           IBRD
## 5804           IBRD
## 5805           IBRD
## 5806           IBRD
## 5807           IBRD
## 5808           IBRD
## 5809           IBRD
## 5810           IBRD
## 5811           <NA>
## 5812           <NA>
## 5813           <NA>
## 5814           <NA>
## 5815           <NA>
## 5816           <NA>
## 5817           <NA>
## 5818           <NA>
## 5819           <NA>
## 5820           <NA>
## 5821           <NA>
## 5822           <NA>
## 5823           <NA>
## 5824           <NA>
## 5825           <NA>
## 5826           <NA>
## 5827           <NA>
## 5828           <NA>
## 5829           <NA>
## 5830           <NA>
## 5831           <NA>
## 5832           <NA>
## 5833           <NA>
## 5834           <NA>
## 5835           <NA>
## 5836           <NA>
## 5837           <NA>
## 5838           <NA>
## 5839           <NA>
## 5840           <NA>
## 5841           <NA>
## 5842           <NA>
## 5843           <NA>
## 5844           <NA>
## 5845           <NA>
## 5846           <NA>
## 5847           <NA>
## 5848           <NA>
## 5849           <NA>
## 5850           <NA>
## 5851           <NA>
## 5852           <NA>
## 5853           <NA>
## 5854           <NA>
## 5855           <NA>
## 5856           <NA>
## 5857           <NA>
## 5858           <NA>
## 5859           <NA>
## 5860           <NA>
## 5861           <NA>
## 5862           <NA>
## 5863           <NA>
## 5864           <NA>
## 5865           <NA>
## 5866           <NA>
## 5867           <NA>
## 5868           <NA>
## 5869           <NA>
## 5870           <NA>
## 5871           <NA>
## 5872           <NA>
## 5873           <NA>
## 5874           <NA>
## 5875           <NA>
## 5876           <NA>
## 5877           <NA>
## 5878           <NA>
## 5879           <NA>
## 5880           <NA>
## 5881           <NA>
## 5882           <NA>
## 5883           <NA>
## 5884           <NA>
## 5885           <NA>
## 5886           <NA>
## 5887           <NA>
## 5888           <NA>
## 5889           <NA>
## 5890           <NA>
## 5891           <NA>
## 5892           <NA>
## 5893           <NA>
## 5894           <NA>
## 5895           <NA>
## 5896           <NA>
## 5897           <NA>
## 5898           <NA>
## 5899           <NA>
## 5900           <NA>
## 5901           <NA>
## 5902           <NA>
## 5903           <NA>
## 5904           <NA>
## 5905           <NA>
## 5906           <NA>
## 5907           <NA>
## 5908           <NA>
## 5909           <NA>
## 5910           <NA>
## 5911           <NA>
## 5912           <NA>
## 5913           <NA>
## 5914           <NA>
## 5915           <NA>
## 5916           <NA>
## 5917           <NA>
## 5918           <NA>
## 5919           <NA>
## 5920           <NA>
## 5921           <NA>
## 5922           <NA>
## 5923           <NA>
## 5924           <NA>
## 5925           <NA>
## 5926           <NA>
## 5927           <NA>
## 5928           <NA>
## 5929           <NA>
## 5930           <NA>
## 5931           <NA>
## 5932           <NA>
## 5933           <NA>
## 5934           <NA>
## 5935           <NA>
## 5936           <NA>
## 5937           <NA>
## 5938           <NA>
## 5939           <NA>
## 5940           <NA>
## 5941           <NA>
## 5942           <NA>
## 5943           <NA>
## 5944           <NA>
## 5945           <NA>
## 5946           <NA>
## 5947           <NA>
## 5948           <NA>
## 5949           <NA>
## 5950           <NA>
## 5951           <NA>
## 5952           <NA>
## 5953           <NA>
## 5954           <NA>
## 5955           <NA>
## 5956           <NA>
## 5957           <NA>
## 5958           <NA>
## 5959           <NA>
## 5960           <NA>
## 5961           <NA>
## 5962           <NA>
## 5963           <NA>
## 5964           <NA>
## 5965           <NA>
## 5966           <NA>
## 5967           <NA>
## 5968           <NA>
## 5969           <NA>
## 5970           <NA>
## 5971           <NA>
## 5972           <NA>
## 5973           <NA>
## 5974           <NA>
## 5975           <NA>
## 5976           <NA>
## 5977           <NA>
## 5978           <NA>
## 5979           <NA>
## 5980           <NA>
## 5981           <NA>
## 5982           <NA>
## 5983           <NA>
## 5984           <NA>
## 5985           <NA>
## 5986           <NA>
## 5987           <NA>
## 5988           <NA>
## 5989           <NA>
## 5990           <NA>
## 5991           <NA>
## 5992           <NA>
## 5993           <NA>
## 5994           <NA>
## 5995           <NA>
## 5996           <NA>
## 5997           <NA>
## 5998           <NA>
## 5999           <NA>
## 6000           <NA>
## 6001           <NA>
## 6002           <NA>
## 6003           <NA>
## 6004           <NA>
## 6005           <NA>
## 6006           <NA>
## 6007           <NA>
## 6008           <NA>
## 6009           <NA>
## 6010           <NA>
## 6011           <NA>
## 6012           <NA>
## 6013           <NA>
## 6014           <NA>
## 6015           <NA>
## 6016           <NA>
## 6017           <NA>
## 6018           <NA>
## 6019           <NA>
## 6020           <NA>
## 6021           <NA>
## 6022           <NA>
## 6023           <NA>
## 6024           <NA>
## 6025           <NA>
## 6026           <NA>
## 6027           <NA>
## 6028           <NA>
## 6029           <NA>
## 6030           <NA>
## 6031           <NA>
## 6032           <NA>
## 6033           <NA>
## 6034           <NA>
## 6035           <NA>
## 6036           <NA>
## 6037           <NA>
## 6038           <NA>
## 6039           <NA>
## 6040           <NA>
## 6041           <NA>
## 6042           <NA>
## 6043           <NA>
## 6044           <NA>
## 6045           <NA>
## 6046           <NA>
## 6047           <NA>
## 6048           <NA>
## 6049     Aggregates
## 6050     Aggregates
## 6051     Aggregates
## 6052     Aggregates
## 6053     Aggregates
## 6054     Aggregates
## 6055     Aggregates
## 6056     Aggregates
## 6057     Aggregates
## 6058     Aggregates
## 6059     Aggregates
## 6060     Aggregates
## 6061     Aggregates
## 6062     Aggregates
## 6063     Aggregates
## 6064     Aggregates
## 6065     Aggregates
## 6066     Aggregates
## 6067     Aggregates
## 6068     Aggregates
## 6069     Aggregates
## 6070     Aggregates
## 6071     Aggregates
## 6072     Aggregates
## 6073     Aggregates
## 6074     Aggregates
## 6075     Aggregates
## 6076     Aggregates
## 6077     Aggregates
## 6078     Aggregates
## 6079     Aggregates
## 6080     Aggregates
## 6081     Aggregates
## 6082     Aggregates
## 6083     Aggregates
## 6084     Aggregates
## 6085     Aggregates
## 6086     Aggregates
## 6087     Aggregates
## 6088     Aggregates
## 6089     Aggregates
## 6090     Aggregates
## 6091     Aggregates
## 6092     Aggregates
## 6093     Aggregates
## 6094     Aggregates
## 6095     Aggregates
## 6096     Aggregates
## 6097     Aggregates
## 6098     Aggregates
## 6099     Aggregates
## 6100     Aggregates
## 6101     Aggregates
## 6102     Aggregates
## 6103     Aggregates
## 6104     Aggregates
## 6105     Aggregates
## 6106     Aggregates
## 6107     Aggregates
## 6108     Aggregates
## 6109     Aggregates
## 6110     Aggregates
## 6111     Aggregates
## 6112     Aggregates
## 6113     Aggregates
## 6114     Aggregates
## 6115     Aggregates
## 6116     Aggregates
## 6117     Aggregates
## 6118     Aggregates
## 6119     Aggregates
## 6120     Aggregates
## 6121     Aggregates
## 6122     Aggregates
## 6123     Aggregates
## 6124     Aggregates
## 6125     Aggregates
## 6126     Aggregates
## 6127     Aggregates
## 6128     Aggregates
## 6129     Aggregates
## 6130     Aggregates
## 6131     Aggregates
## 6132     Aggregates
## 6133     Aggregates
## 6134     Aggregates
## 6135     Aggregates
## 6136     Aggregates
## 6137     Aggregates
## 6138     Aggregates
## 6139     Aggregates
## 6140     Aggregates
## 6141     Aggregates
## 6142     Aggregates
## 6143     Aggregates
## 6144     Aggregates
## 6145     Aggregates
## 6146     Aggregates
## 6147     Aggregates
## 6148     Aggregates
## 6149     Aggregates
## 6150     Aggregates
## 6151     Aggregates
## 6152     Aggregates
## 6153     Aggregates
## 6154     Aggregates
## 6155     Aggregates
## 6156     Aggregates
## 6157     Aggregates
## 6158     Aggregates
## 6159     Aggregates
## 6160     Aggregates
## 6161     Aggregates
## 6162     Aggregates
## 6163     Aggregates
## 6164     Aggregates
## 6165     Aggregates
## 6166     Aggregates
## 6167     Aggregates
## 6168     Aggregates
## 6169     Aggregates
## 6170     Aggregates
## 6171     Aggregates
## 6172     Aggregates
## 6173     Aggregates
## 6174     Aggregates
## 6175     Aggregates
## 6176     Aggregates
## 6177     Aggregates
## 6178     Aggregates
## 6179     Aggregates
## 6180     Aggregates
## 6181     Aggregates
## 6182     Aggregates
## 6183     Aggregates
## 6184     Aggregates
## 6185     Aggregates
## 6186     Aggregates
## 6187     Aggregates
## 6188     Aggregates
## 6189     Aggregates
## 6190     Aggregates
## 6191     Aggregates
## 6192     Aggregates
## 6193     Aggregates
## 6194     Aggregates
## 6195     Aggregates
## 6196     Aggregates
## 6197     Aggregates
## 6198     Aggregates
## 6199     Aggregates
## 6200     Aggregates
## 6201     Aggregates
## 6202     Aggregates
## 6203     Aggregates
## 6204     Aggregates
## 6205     Aggregates
## 6206     Aggregates
## 6207     Aggregates
## 6208     Aggregates
## 6209     Aggregates
## 6210     Aggregates
## 6211     Aggregates
## 6212     Aggregates
## 6213     Aggregates
## 6214     Aggregates
## 6215     Aggregates
## 6216     Aggregates
## 6217     Aggregates
## 6218     Aggregates
## 6219     Aggregates
## 6220     Aggregates
## 6221     Aggregates
## 6222     Aggregates
## 6223     Aggregates
## 6224     Aggregates
## 6225     Aggregates
## 6226     Aggregates
## 6227     Aggregates
## 6228     Aggregates
## 6229     Aggregates
## 6230     Aggregates
## 6231     Aggregates
## 6232     Aggregates
## 6233     Aggregates
## 6234     Aggregates
## 6235     Aggregates
## 6236     Aggregates
## 6237     Aggregates
## 6238     Aggregates
## 6239     Aggregates
## 6240     Aggregates
## 6241     Aggregates
## 6242     Aggregates
## 6243     Aggregates
## 6244     Aggregates
## 6245     Aggregates
## 6246     Aggregates
## 6247     Aggregates
## 6248     Aggregates
## 6249     Aggregates
## 6250     Aggregates
## 6251     Aggregates
## 6252     Aggregates
## 6253     Aggregates
## 6254     Aggregates
## 6255     Aggregates
## 6256     Aggregates
## 6257     Aggregates
## 6258     Aggregates
## 6259     Aggregates
## 6260     Aggregates
## 6261     Aggregates
## 6262     Aggregates
## 6263     Aggregates
## 6264     Aggregates
## 6265     Aggregates
## 6266     Aggregates
## 6267     Aggregates
## 6268     Aggregates
## 6269     Aggregates
## 6270     Aggregates
## 6271     Aggregates
## 6272     Aggregates
## 6273     Aggregates
## 6274     Aggregates
## 6275     Aggregates
## 6276     Aggregates
## 6277     Aggregates
## 6278     Aggregates
## 6279     Aggregates
## 6280     Aggregates
## 6281     Aggregates
## 6282     Aggregates
## 6283     Aggregates
## 6284     Aggregates
## 6285     Aggregates
## 6286     Aggregates
## 6287     Aggregates
## 6288     Aggregates
## 6289     Aggregates
## 6290     Aggregates
## 6291     Aggregates
## 6292     Aggregates
## 6293     Aggregates
## 6294     Aggregates
## 6295     Aggregates
## 6296     Aggregates
## 6297     Aggregates
## 6298     Aggregates
## 6299     Aggregates
## 6300     Aggregates
## 6301           <NA>
## 6302           <NA>
## 6303           <NA>
## 6304           <NA>
## 6305           <NA>
## 6306           <NA>
## 6307           <NA>
## 6308           <NA>
## 6309           <NA>
## 6310           <NA>
## 6311           <NA>
## 6312           <NA>
## 6313           <NA>
## 6314           <NA>
## 6315           <NA>
## 6316           <NA>
## 6317           <NA>
## 6318           <NA>
## 6319           <NA>
## 6320           <NA>
## 6321           <NA>
## 6322           <NA>
## 6323           <NA>
## 6324           <NA>
## 6325           <NA>
## 6326           <NA>
## 6327           <NA>
## 6328           <NA>
## 6329           <NA>
## 6330           <NA>
## 6331           <NA>
## 6332           <NA>
## 6333           <NA>
## 6334           <NA>
## 6335           IBRD
## 6336           IBRD
## 6337           IBRD
## 6338           IBRD
## 6339           IBRD
## 6340           IBRD
## 6341           IBRD
## 6342           IBRD
## 6343           IBRD
## 6344           IBRD
## 6345           IBRD
## 6346           IBRD
## 6347           IBRD
## 6348           IBRD
## 6349           IBRD
## 6350           IBRD
## 6351           IBRD
## 6352           IBRD
## 6353           IBRD
## 6354           IBRD
## 6355           IBRD
## 6356           IBRD
## 6357           IBRD
## 6358           IBRD
## 6359           IBRD
## 6360           IBRD
## 6361           IBRD
## 6362           IBRD
## 6363           IBRD
## 6364           IBRD
## 6365           IBRD
## 6366           IBRD
## 6367           IBRD
## 6368           IBRD
## 6369           IBRD
## 6370           IBRD
## 6371           IBRD
## 6372           IBRD
## 6373           IBRD
## 6374           IBRD
## 6375           IBRD
## 6376           IBRD
## 6377           IBRD
## 6378           IBRD
## 6379           IBRD
## 6380           IBRD
## 6381           IBRD
## 6382           IBRD
## 6383           IBRD
## 6384           IBRD
## 6385           IBRD
## 6386           IBRD
## 6387           IBRD
## 6388           IBRD
## 6389           IBRD
## 6390           IBRD
## 6391           IBRD
## 6392           IBRD
## 6393           IBRD
## 6394           IBRD
## 6395           IBRD
## 6396           IBRD
## 6397           IBRD
## 6398           <NA>
## 6399           <NA>
## 6400           <NA>
## 6401           <NA>
## 6402           <NA>
## 6403           <NA>
## 6404           <NA>
## 6405           <NA>
## 6406           <NA>
## 6407           <NA>
## 6408           <NA>
## 6409           <NA>
## 6410           <NA>
## 6411           <NA>
## 6412           <NA>
## 6413           <NA>
## 6414           <NA>
## 6415           <NA>
## 6416           <NA>
## 6417           <NA>
## 6418           <NA>
## 6419           <NA>
## 6420           <NA>
## 6421           <NA>
## 6422           <NA>
## 6423           <NA>
## 6424           <NA>
## 6425           <NA>
## 6426           <NA>
## 6427           <NA>
## 6428           <NA>
## 6429           <NA>
## 6430           <NA>
## 6431           <NA>
## 6432           <NA>
## 6433           <NA>
## 6434           <NA>
## 6435           <NA>
## 6436           <NA>
## 6437           <NA>
## 6438           <NA>
## 6439           <NA>
## 6440           <NA>
## 6441           <NA>
## 6442           <NA>
## 6443           <NA>
## 6444           <NA>
## 6445           <NA>
## 6446           <NA>
## 6447           <NA>
## 6448           <NA>
## 6449           <NA>
## 6450           <NA>
## 6451           <NA>
## 6452           <NA>
## 6453           <NA>
## 6454           <NA>
## 6455           <NA>
## 6456           <NA>
## 6457           <NA>
## 6458           <NA>
## 6459           <NA>
## 6460           <NA>
## 6461           <NA>
## 6462           <NA>
## 6463           <NA>
## 6464           <NA>
## 6465           <NA>
## 6466           IBRD
## 6467           IBRD
## 6468           IBRD
## 6469           IBRD
## 6470           IBRD
## 6471           IBRD
## 6472           IBRD
## 6473           IBRD
## 6474           IBRD
## 6475           IBRD
## 6476           IBRD
## 6477           IBRD
## 6478           IBRD
## 6479           IBRD
## 6480           IBRD
## 6481           IBRD
## 6482           IBRD
## 6483           IBRD
## 6484           IBRD
## 6485           IBRD
## 6486           IBRD
## 6487           IBRD
## 6488           IBRD
## 6489           IBRD
## 6490           IBRD
## 6491           IBRD
## 6492           IBRD
## 6493           IBRD
## 6494           IBRD
## 6495           IBRD
## 6496           IBRD
## 6497           IBRD
## 6498           IBRD
## 6499           IBRD
## 6500           IBRD
## 6501           IBRD
## 6502           IBRD
## 6503           IBRD
## 6504           IBRD
## 6505           IBRD
## 6506           IBRD
## 6507           IBRD
## 6508           IBRD
## 6509           IBRD
## 6510           IBRD
## 6511           IBRD
## 6512           IBRD
## 6513           IBRD
## 6514           IBRD
## 6515           IBRD
## 6516           IBRD
## 6517           IBRD
## 6518           IBRD
## 6519           IBRD
## 6520           IBRD
## 6521           IBRD
## 6522           IBRD
## 6523           IBRD
## 6524           IBRD
## 6525           IBRD
## 6526           IBRD
## 6527           IBRD
## 6528           IBRD
## 6529           <NA>
## 6530           <NA>
## 6531           <NA>
## 6532           <NA>
## 6533           <NA>
## 6534           <NA>
## 6535           <NA>
## 6536           <NA>
## 6537           <NA>
## 6538           <NA>
## 6539           <NA>
## 6540           <NA>
## 6541           <NA>
## 6542           <NA>
## 6543           <NA>
## 6544           <NA>
## 6545           <NA>
## 6546           <NA>
## 6547           <NA>
## 6548           <NA>
## 6549           <NA>
## 6550           <NA>
## 6551           <NA>
## 6552           <NA>
## 6553           <NA>
## 6554           <NA>
## 6555           <NA>
## 6556           <NA>
## 6557           <NA>
## 6558           <NA>
## 6559           <NA>
## 6560           <NA>
## 6561           <NA>
## 6562           <NA>
## 6563           IBRD
## 6564           IBRD
## 6565           IBRD
## 6566           IBRD
## 6567           IBRD
## 6568           IBRD
## 6569           IBRD
## 6570           IBRD
## 6571           IBRD
## 6572           IBRD
## 6573           IBRD
## 6574           IBRD
## 6575           IBRD
## 6576           IBRD
## 6577           IBRD
## 6578           IBRD
## 6579           IBRD
## 6580           IBRD
## 6581           IBRD
## 6582           IBRD
## 6583           IBRD
## 6584           IBRD
## 6585           IBRD
## 6586           IBRD
## 6587           IBRD
## 6588           IBRD
## 6589           IBRD
## 6590           IBRD
## 6591           IBRD
## 6592           IBRD
## 6593           IBRD
## 6594           IBRD
## 6595           IBRD
## 6596           IBRD
## 6597           IBRD
## 6598           IBRD
## 6599           IBRD
## 6600           IBRD
## 6601           IBRD
## 6602           IBRD
## 6603           IBRD
## 6604           IBRD
## 6605           IBRD
## 6606           IBRD
## 6607           IBRD
## 6608           IBRD
## 6609           IBRD
## 6610           IBRD
## 6611           IBRD
## 6612           IBRD
## 6613           IBRD
## 6614           IBRD
## 6615           IBRD
## 6616           IBRD
## 6617           IBRD
## 6618           IBRD
## 6619           IBRD
## 6620           IBRD
## 6621           IBRD
## 6622           IBRD
## 6623           IBRD
## 6624           IBRD
## 6625           IBRD
## 6626           <NA>
## 6627           <NA>
## 6628           <NA>
## 6629           <NA>
## 6630           <NA>
## 6631           <NA>
## 6632           <NA>
## 6633           <NA>
## 6634           <NA>
## 6635           <NA>
## 6636           <NA>
## 6637           <NA>
## 6638           <NA>
## 6639           <NA>
## 6640           <NA>
## 6641           <NA>
## 6642           <NA>
## 6643           <NA>
## 6644           <NA>
## 6645           <NA>
## 6646           <NA>
## 6647           <NA>
## 6648           <NA>
## 6649           <NA>
## 6650           <NA>
## 6651           <NA>
## 6652           <NA>
## 6653           <NA>
## 6654           <NA>
## 6655           <NA>
## 6656           <NA>
## 6657           <NA>
## 6658           <NA>
## 6659           <NA>
## 6660           <NA>
## 6661           <NA>
## 6662           <NA>
## 6663           <NA>
## 6664           <NA>
## 6665           <NA>
## 6666           <NA>
## 6667           <NA>
## 6668           <NA>
## 6669           <NA>
## 6670           <NA>
## 6671           <NA>
## 6672           <NA>
## 6673           <NA>
## 6674           <NA>
## 6675           <NA>
## 6676           <NA>
## 6677           <NA>
## 6678           <NA>
## 6679           <NA>
## 6680           <NA>
## 6681           <NA>
## 6682           <NA>
## 6683           <NA>
## 6684           <NA>
## 6685           <NA>
## 6686           <NA>
## 6687           <NA>
## 6688           <NA>
## 6689           <NA>
## 6690           <NA>
## 6691           <NA>
## 6692           <NA>
## 6693           <NA>
## 6694           IBRD
## 6695           IBRD
## 6696           IBRD
## 6697           IBRD
## 6698           IBRD
## 6699           IBRD
## 6700           IBRD
## 6701           IBRD
## 6702           IBRD
## 6703           IBRD
## 6704           IBRD
## 6705           IBRD
## 6706           IBRD
## 6707           IBRD
## 6708           IBRD
## 6709           IBRD
## 6710           IBRD
## 6711           IBRD
## 6712           IBRD
## 6713           IBRD
## 6714           IBRD
## 6715           IBRD
## 6716           IBRD
## 6717           IBRD
## 6718           IBRD
## 6719           IBRD
## 6720           IBRD
## 6721           IBRD
## 6722           IBRD
## 6723           IBRD
## 6724           IBRD
## 6725           IBRD
## 6726           IBRD
## 6727           IBRD
## 6728           IBRD
## 6729           IBRD
## 6730           IBRD
## 6731           IBRD
## 6732           IBRD
## 6733           IBRD
## 6734           IBRD
## 6735           IBRD
## 6736           IBRD
## 6737           IBRD
## 6738           IBRD
## 6739           IBRD
## 6740           IBRD
## 6741           IBRD
## 6742           IBRD
## 6743           IBRD
## 6744           IBRD
## 6745           IBRD
## 6746           IBRD
## 6747           IBRD
## 6748           IBRD
## 6749           IBRD
## 6750           IBRD
## 6751           IBRD
## 6752           IBRD
## 6753           IBRD
## 6754           IBRD
## 6755           IBRD
## 6756           IBRD
## 6757            IDA
## 6758            IDA
## 6759            IDA
## 6760            IDA
## 6761            IDA
## 6762            IDA
## 6763            IDA
## 6764            IDA
## 6765            IDA
## 6766            IDA
## 6767            IDA
## 6768            IDA
## 6769            IDA
## 6770            IDA
## 6771            IDA
## 6772            IDA
## 6773            IDA
## 6774            IDA
## 6775            IDA
## 6776            IDA
## 6777            IDA
## 6778            IDA
## 6779            IDA
## 6780            IDA
## 6781            IDA
## 6782            IDA
## 6783            IDA
## 6784            IDA
## 6785            IDA
## 6786            IDA
## 6787            IDA
## 6788            IDA
## 6789            IDA
## 6790            IDA
## 6791            IDA
## 6792            IDA
## 6793            IDA
## 6794            IDA
## 6795            IDA
## 6796            IDA
## 6797            IDA
## 6798            IDA
## 6799            IDA
## 6800            IDA
## 6801            IDA
## 6802            IDA
## 6803            IDA
## 6804            IDA
## 6805            IDA
## 6806            IDA
## 6807            IDA
## 6808            IDA
## 6809            IDA
## 6810            IDA
## 6811            IDA
## 6812            IDA
## 6813            IDA
## 6814            IDA
## 6815            IDA
## 6816            IDA
## 6817            IDA
## 6818            IDA
## 6819            IDA
## 6820           <NA>
## 6821           <NA>
## 6822           <NA>
## 6823           <NA>
## 6824           <NA>
## 6825           <NA>
## 6826           <NA>
## 6827           <NA>
## 6828           <NA>
## 6829           <NA>
## 6830           <NA>
## 6831           <NA>
## 6832           <NA>
## 6833           <NA>
## 6834           <NA>
## 6835           <NA>
## 6836           <NA>
## 6837           <NA>
## 6838           <NA>
## 6839           <NA>
## 6840           <NA>
## 6841           <NA>
## 6842           <NA>
## 6843           <NA>
## 6844           <NA>
## 6845           <NA>
## 6846           <NA>
## 6847           <NA>
## 6848           <NA>
## 6849           <NA>
## 6850           <NA>
## 6851           <NA>
## 6852           <NA>
## 6853           <NA>
## 6854 Not classified
## 6855 Not classified
## 6856 Not classified
## 6857 Not classified
## 6858 Not classified
## 6859 Not classified
## 6860 Not classified
## 6861 Not classified
## 6862 Not classified
## 6863 Not classified
## 6864 Not classified
## 6865 Not classified
## 6866 Not classified
## 6867 Not classified
## 6868 Not classified
## 6869 Not classified
## 6870 Not classified
## 6871 Not classified
## 6872 Not classified
## 6873 Not classified
## 6874 Not classified
## 6875 Not classified
## 6876 Not classified
## 6877 Not classified
## 6878 Not classified
## 6879 Not classified
## 6880 Not classified
## 6881 Not classified
## 6882 Not classified
## 6883 Not classified
## 6884 Not classified
## 6885 Not classified
## 6886 Not classified
## 6887 Not classified
## 6888 Not classified
## 6889 Not classified
## 6890 Not classified
## 6891 Not classified
## 6892 Not classified
## 6893 Not classified
## 6894 Not classified
## 6895 Not classified
## 6896 Not classified
## 6897 Not classified
## 6898 Not classified
## 6899 Not classified
## 6900 Not classified
## 6901 Not classified
## 6902 Not classified
## 6903 Not classified
## 6904 Not classified
## 6905 Not classified
## 6906 Not classified
## 6907 Not classified
## 6908 Not classified
## 6909 Not classified
## 6910 Not classified
## 6911 Not classified
## 6912 Not classified
## 6913 Not classified
## 6914 Not classified
## 6915 Not classified
## 6916 Not classified
## 6917           <NA>
## 6918           <NA>
## 6919           <NA>
## 6920           <NA>
## 6921           <NA>
## 6922           <NA>
## 6923           <NA>
## 6924           <NA>
## 6925           <NA>
## 6926           <NA>
## 6927           <NA>
## 6928           <NA>
## 6929           <NA>
## 6930           <NA>
## 6931           <NA>
## 6932           <NA>
## 6933           <NA>
## 6934           <NA>
## 6935           <NA>
## 6936           <NA>
## 6937           <NA>
## 6938           <NA>
## 6939           <NA>
## 6940           <NA>
## 6941           <NA>
## 6942           <NA>
## 6943           <NA>
## 6944           <NA>
## 6945           <NA>
## 6946           <NA>
## 6947           <NA>
## 6948           <NA>
## 6949           <NA>
## 6950           <NA>
## 6951           IBRD
## 6952           IBRD
## 6953           IBRD
## 6954           IBRD
## 6955           IBRD
## 6956           IBRD
## 6957           IBRD
## 6958           IBRD
## 6959           IBRD
## 6960           IBRD
## 6961           IBRD
## 6962           IBRD
## 6963           IBRD
## 6964           IBRD
## 6965           IBRD
## 6966           IBRD
## 6967           IBRD
## 6968           IBRD
## 6969           IBRD
## 6970           IBRD
## 6971           IBRD
## 6972           IBRD
## 6973           IBRD
## 6974           IBRD
## 6975           IBRD
## 6976           IBRD
## 6977           IBRD
## 6978           IBRD
## 6979           IBRD
## 6980           IBRD
## 6981           IBRD
## 6982           IBRD
## 6983           IBRD
## 6984           IBRD
## 6985           IBRD
## 6986           IBRD
## 6987           IBRD
## 6988           IBRD
## 6989           IBRD
## 6990           IBRD
## 6991           IBRD
## 6992           IBRD
## 6993           IBRD
## 6994           IBRD
## 6995           IBRD
## 6996           IBRD
## 6997           IBRD
## 6998           IBRD
## 6999           IBRD
## 7000           IBRD
## 7001           IBRD
## 7002           IBRD
## 7003           IBRD
## 7004           IBRD
## 7005           IBRD
## 7006           IBRD
## 7007           IBRD
## 7008           IBRD
## 7009           IBRD
## 7010           IBRD
## 7011           IBRD
## 7012           IBRD
## 7013           IBRD
## 7014            IDA
## 7015            IDA
## 7016            IDA
## 7017            IDA
## 7018            IDA
## 7019            IDA
## 7020            IDA
## 7021            IDA
## 7022            IDA
## 7023            IDA
## 7024            IDA
## 7025            IDA
## 7026            IDA
## 7027            IDA
## 7028            IDA
## 7029            IDA
## 7030            IDA
## 7031            IDA
## 7032            IDA
## 7033            IDA
## 7034            IDA
## 7035            IDA
## 7036            IDA
## 7037            IDA
## 7038            IDA
## 7039            IDA
## 7040            IDA
## 7041            IDA
## 7042            IDA
## 7043            IDA
## 7044            IDA
## 7045            IDA
## 7046            IDA
## 7047            IDA
## 7048            IDA
## 7049            IDA
## 7050            IDA
## 7051            IDA
## 7052            IDA
## 7053            IDA
## 7054            IDA
## 7055            IDA
## 7056            IDA
## 7057            IDA
## 7058            IDA
## 7059            IDA
## 7060            IDA
## 7061            IDA
## 7062            IDA
## 7063            IDA
## 7064            IDA
## 7065            IDA
## 7066            IDA
## 7067            IDA
## 7068            IDA
## 7069            IDA
## 7070            IDA
## 7071            IDA
## 7072            IDA
## 7073            IDA
## 7074            IDA
## 7075            IDA
## 7076            IDA
## 7077           <NA>
## 7078           <NA>
## 7079           <NA>
## 7080           <NA>
## 7081           <NA>
## 7082           <NA>
## 7083           <NA>
## 7084           <NA>
## 7085           <NA>
## 7086           <NA>
## 7087           <NA>
## 7088           <NA>
## 7089           <NA>
## 7090           <NA>
## 7091           <NA>
## 7092           <NA>
## 7093           <NA>
## 7094           <NA>
## 7095           <NA>
## 7096           <NA>
## 7097           <NA>
## 7098           <NA>
## 7099           <NA>
## 7100           <NA>
## 7101           <NA>
## 7102           <NA>
## 7103           <NA>
## 7104           <NA>
## 7105           <NA>
## 7106           <NA>
## 7107           <NA>
## 7108           <NA>
## 7109           <NA>
## 7110           <NA>
## 7111     Aggregates
## 7112     Aggregates
## 7113     Aggregates
## 7114     Aggregates
## 7115     Aggregates
## 7116     Aggregates
## 7117     Aggregates
## 7118     Aggregates
## 7119     Aggregates
## 7120     Aggregates
## 7121     Aggregates
## 7122     Aggregates
## 7123     Aggregates
## 7124     Aggregates
## 7125     Aggregates
## 7126     Aggregates
## 7127     Aggregates
## 7128     Aggregates
## 7129     Aggregates
## 7130     Aggregates
## 7131     Aggregates
## 7132     Aggregates
## 7133     Aggregates
## 7134     Aggregates
## 7135     Aggregates
## 7136     Aggregates
## 7137     Aggregates
## 7138     Aggregates
## 7139     Aggregates
## 7140     Aggregates
## 7141     Aggregates
## 7142     Aggregates
##  [ reached 'max' / getOption("max.print") -- omitted 17096 rows ]
str(df_gdp21)
## 'data.frame':    24238 obs. of  14 variables:
##  $ country     : chr  "Advanced Economies" "Advanced Economies" "Advanced Economies" "Advanced Economies" ...
##  $ iso2c       : chr  "AME" "AME" "AME" "AME" ...
##  $ iso3c       : chr  "" "" "" "" ...
##  $ year        : int  1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 ...
##  $ status      : chr  "" "" "" "" ...
##  $ lastupdated : chr  "2020-07-27" "2020-07-27" "2020-07-27" "2020-07-27" ...
##  $ gdp_deflator: num  NA NA NA NA NA NA NA NA NA NA ...
##   ..- attr(*, "label")= chr "Inflation, GDP deflator (annual %)"
##  $ cpi_price   : num  58.7 60.5 63 66 69.1 ...
##   ..- attr(*, "label")= chr "CPI Price,not seas.adj,,,"
##  $ region      : chr  NA NA NA NA ...
##  $ capital     : chr  NA NA NA NA ...
##  $ longitude   : chr  NA NA NA NA ...
##  $ latitude    : chr  NA NA NA NA ...
##  $ income      : chr  NA NA NA NA ...
##  $ lending     : chr  NA NA NA NA ...
summary(df_gdp21)
##    country             iso2c              iso3c                year     
##  Length:24238       Length:24238       Length:24238       Min.   :1960  
##  Class :character   Class :character   Class :character   1st Qu.:1982  
##  Mode  :character   Mode  :character   Mode  :character   Median :1997  
##                                                           Mean   :1995  
##                                                           3rd Qu.:2009  
##                                                           Max.   :2022  
##                                                                         
##     status          lastupdated         gdp_deflator         cpi_price     
##  Length:24238       Length:24238       Min.   :  -98.704   Min.   :  0.00  
##  Class :character   Class :character   1st Qu.:    2.315   1st Qu.: 55.95  
##  Mode  :character   Mode  :character   Median :    5.256   Median : 83.28  
##                                        Mean   :   25.299   Mean   : 84.18  
##                                        3rd Qu.:   10.386   3rd Qu.:108.75  
##                                        Max.   :26765.858   Max.   :551.25  
##                                        NA's   :11881       NA's   :18676   
##     region            capital           longitude           latitude        
##  Length:24238       Length:24238       Length:24238       Length:24238      
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     income            lending         
##  Length:24238       Length:24238      
##  Class :character   Class :character  
##  Mode  :character   Mode  :character  
##                                       
##                                       
##                                       
## 

右上の窓枠の、Environment も見てみましょう。

可視化 Visualization

グラフ(Chart)を描いて視覚化しよう

グラフ 1

df_gdp4 %>% ggplot(aes(year, gdp, col=country)) + geom_line()
## Warning: Removed 16 rows containing missing values (`geom_line()`).

グラフ 2

df_gdp4 %>% drop_na(gdp) %>% 
  ggplot(aes(year, gdp, col=country)) + geom_line() +
  labs(title = paste("WDI - NY.GDP.MKTP.CD: ", "gdp"))

テンプレート Templates

一つの国についての、一つの指標(WDI)と、その略称から、折線グラフを作成

Line Plot with one indicator with abbreviation and one country

chosen_indicator <- "SL.UEM.TOTL.NE.ZS"
short_name <- "unemployment"
chosen_country <- "United States"
WDI(country = "all", indicator = c(short_name = chosen_indicator), extra=TRUE, cache=wdi_cache) %>%
  filter(country == chosen_country) %>% 
  ggplot(aes(year, short_name)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator, ": ", short_name, " - ", chosen_country),
       y = short_name)

一つの国についての、一つの指標(WDI)から、折線グラフを作成

Line Plot with one indicator and one country

chosen_indicator <- "SL.UEM.TOTL.NE.ZS"
chosen_country <- "United States"
WDI(country = "all", indicator = c(chosen_indicator = chosen_indicator), 
    extra=TRUE, cache=wdi_cache) %>%
  filter(country == chosen_country) %>% 
  ggplot(aes(year, chosen_indicator)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator, " - ", chosen_country), 
       y = chosen_indicator)

いくつかの国についての、一つの指標(WDI)と、その略称から、折線グラフを作成

Line Plot with one indicator with abbreviation and several countries

chosen_indicator <- "SL.UEM.TOTL.NE.ZS"
short_name <- "unemployment"
chosen_countries <- c("United States","United Kingdom", "Japan")
WDI(country = "all", indicator = c(short_name = chosen_indicator), extra=TRUE, cache=wdi_cache) %>% drop_na(short_name) %>% 
  filter(country %in% chosen_countries) %>% 
  ggplot(aes(year, short_name, col = country)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator, ": ", short_name), y = short_name)

一つの国についての、二つの指標(WDI)と、その略称から、折線グラフを作成

Line Plot with two indicators with abbreviation and one country

chosen_indicator_1 <- "NY.GDP.DEFL.KD.ZG"
short_name_1 <- "gdp_deflator"
chosen_indicator_2 <- "CPTOTSAXNZGY"
short_name_2 <- "cpi_price"
chosen_country <- "United States"
WDI(country = "all", indicator = c(short_name_1 = chosen_indicator_1, short_name_2 = chosen_indicator_2), extra=TRUE, cache=wdi_cache) %>% 
  filter(country == chosen_country) %>% 
  pivot_longer(c(short_name_1, short_name_2), names_to = "class", values_to = "value") %>% drop_na(value) %>%
  ggplot(aes(year, value, col = class)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator_1, ": ", short_name_1, "\n", chosen_indicator_2, ": ", short_name_2, " - ", chosen_country)) +
  scale_color_manual(labels = c(short_name_1, short_name_2), values = scales::hue_pal()(2))

chosen_indicator_1 <- "SL.TLF.CACT.MA.NE.ZS"
short_name_1 <- "male"
chosen_indicator_2 <- "SL.TLF.CACT.FE.NE.ZS"
short_name_2 <- "female"
chosen_country <- "United States"
WDI(country = "all", indicator = c(short_name_1 = chosen_indicator_1, short_name_2 = chosen_indicator_2), extra=TRUE, cache=wdi_cache) %>% 
  filter(country == chosen_country) %>% 
  pivot_longer(c(short_name_1, short_name_2), names_to = "class", values_to = "value") %>% drop_na(value) %>%
  ggplot(aes(year, value, col = class)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator_1, ": ", short_name_1, "\n", chosen_indicator_2, ": ", short_name_2, " - ", chosen_country)) +
  scale_color_manual(labels = c(short_name_1, short_name_2), values = scales::hue_pal()(2))

いくつかの国についての、二つの指標(WDI)と、その略称から、折線グラフを作成

Line Plot with two indicators with abbreviation and several countries

chosen_indicator_1 <- "NY.GDP.DEFL.KD.ZG"
short_name_1 <- "gdp_deflator"
chosen_indicator_2 <- "CPTOTSAXNZGY"
short_name_2 <- "cpi_price"
chosen_countries <- c("United States", "France", "Japan")
WDI(country = "all", indicator = c(short_name_1 = chosen_indicator_1, short_name_2 = chosen_indicator_2), extra=TRUE, cache=wdi_cache) %>% 
  filter(country %in% chosen_countries) %>% 
  pivot_longer(c(short_name_1, short_name_2), names_to = "class", values_to = "value") %>% drop_na(value) %>%
  ggplot(aes(year, value, linetype = class, col = country)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator_1, ": ", short_name_1, "\n", chosen_indicator_2, ": ", short_name_2)) +
  scale_linetype_manual(labels = c(short_name_1, short_name_2), values = c("solid", "dashed"))

chosen_indicator_1 <- "SL.TLF.CACT.MA.NE.ZS"
short_name_1 <- "male"
chosen_indicator_2 <- "SL.TLF.CACT.FE.NE.ZS"
short_name_2 <- "female"
chosen_countries <- c("United States", "France", "Japan")
WDI(country = "all", indicator = c(short_name_1 = chosen_indicator_1, short_name_2 = chosen_indicator_2), extra=TRUE, cache=wdi_cache) %>% 
  filter(country %in% chosen_countries) %>% 
  pivot_longer(c(short_name_1, short_name_2), names_to = "class", values_to = "value") %>% drop_na(value) %>%
  ggplot(aes(year, value, linetype = class, col = country)) + geom_line() +
  labs(title = paste("WDI ", chosen_indicator_1, ": ", short_name_1, "\n", chosen_indicator_2, ": ", short_name_2)) +
  scale_linetype_manual(labels = c(short_name_1, short_name_2), values = c("solid", "dashed"))

練習

上のテンプレートをコピーして、下に貼り付け、指標 indicator と、略称 short_name と、いくつかの国名 chosen_countries を、入れ替えて、試してみてください。

自分で課題を考え、データを選べることは、とても大切だということだと思います。

プロジェクト

他の WDI のデータで、はじめにの部分と、同様のことをしてみましょう。

  1. 最初に、gdp = "NY.GDP.MKTP.CD" としましたが、GNI per capita, Atlas method (current US$): NY.GNP.PCAP.CD に変えてみましょう。
df_gnppcap <- WDI(country = "all", 
              indicator = c(gnppcap = "NY.GNP.PCAP.CD"), 
              extra = TRUE)
  1. World Development Indicators のサイトの下にある、Data Themes(テーマ)から自分が調べたいテーマを選び、そのテーマから、データコードを取得して、同様の分析をしてみてください。データがあまりない場合もありますので、ある程度データが多いものを選択することをお勧めします。

  2. 可能なら、3 の内容も含めて、選択した、WDI について、調べてみましょう。

参考 - 今後の学習のために

RNotebook の活用

下のリンクを開き、右上の Code ボタンから、Download Rmd を選択すると、ダウンロードできますから、ダインロードしたものを、プロジェクト・フォールダーに移動またはコピーしてください。ダウンロードできないときは、Ctrl を押しながら、Download Rmd をクリックすると、Save As で保存できると思います。ブラウザーによって仕様が異なりますから、適切な方法を選んでください。

Windows でも、Mac でも提供されている、Google Chrome の場合には、Code ボタンから、ダンロードされるはずです。

参考文献 References

練習問題 Posit Primers

R w/ Chat GPT

  • RTutor: https://rtutor.ai
    • アカウントを作成せずに、ChatGPT を使った、R プログラミングを体験できます。
    • すでに読み込んである、データと、テンプレートが、あり日本語のテンプレートもあります。ChatGPT にコード作成を依頼するときは、英語の方が良いようです。
    • 手元の、PC からデータを読み込んで試すことも可能です。

Chat GPT などの、AI の利用に興味がある方は、このリンクを参照してください。